2007-01-29 Andreia Gaita <avidigal@novell.com>
[mono.git] / mcs / class / Managed.Windows.Forms / System.Windows.Forms / ChangeLog
1 2007-01-29  Andreia Gaita  <avidigal@novell.com>
2
3         * TextBox.cs: Redraw when the password characters changes
4         * TextControl.cs: Check if textbox has a password char and draw 
5         a line of password chars instead of the text in the line. LineTag gets 
6         an extra Draw() method which allows document.Draw to override the text 
7         that will be drawn. Removes 1024 char limitation on length of passworded 
8         lines.
9
10 2007-01-29  Jackson Harper  <jackson@ximian.com>
11
12         * TextBoxBase.cs: Deleting sections of text is undoable.  Deleting
13         single chars is not.
14
15 2007-01-28  Jonathan Pobst  <monkey@jpobst.com>
16
17         * TextRenderer.cs: Fix cutting off the bottom of letters like "j" by
18         one pixel.  Fix a StackOverflowException caused by an overload wrongly
19         calling itself.
20
21 2007-01-26  Everaldo Canuto  <everaldo@simios.org>
22
23         * MenuAPI.cs: Fixed kerboard grab problem when "enter"key is pressed,
24         also remove ProcessArrowKey and put the code inside ProcessKeys.
25
26 2007-01-26  Jonathan Pobst  <monkey@jpobst.com>
27
28         * PaddingConverter.cs: Added.
29
30 2007-01-26  Rolf Bjarne Kvinge  <RKvinge@novell.com>
31         
32         * ThemeWin32Classic.cs: Only draw the text of a StatusBar if
33         ShowPanels is false (fixes #80600). Only draw up to 127 characters
34         of text (fixes #80601). For panels clip the text to draw to the
35         panel (fixes #80603).
36
37 2007-01-26  Rolf Bjarne Kvinge  <RKvinge@novell.com>
38
39         * ComboBox.cs: Fixed implementation of ResetText.
40
41 2007-01-25  Jackson Harper  <jackson@ximian.com>
42
43         * TextControl.cs: For the last char of a line we need to use the
44         line size, not that chars width, since it won't actually be
45         computed since the right side of a char is based on the start of
46         the left side of the next char, and the next char does not exist.
47
48 2007-01-25  Chris Toshok  <toshok@ximian.com>
49
50         * Splitter.cs: fix the new unit tests, and reindent some switch
51         statements.
52
53 2007-01-25  Rolf Bjarne Kvinge  <RKvinge@novell.com>
54
55         * ComboBox.cs: Implemented 2.0 methods and events.
56         * TextBoxBase.cs: Added OnTextUpdate, so that
57         ComboBox.ComboTextBox can inform ComboBox of it.
58
59 2007-01-25  Jackson Harper  <jackson@ximian.com>
60
61         * TextControl.cs: Respect ShowSelection when deciding whether or
62         not to display the caret, this allows comboboxes to have carets
63         when the combotextbox does not have focus.
64
65 2007-01-25  Jackson Harper  <jackson@ximian.com>
66
67         * TextControl.cs: Add a Suspend/Resume for updating, basically the
68         same as the Suspend/Resume for recalc, except this will do actual
69         Invalidates.
70         - New Undo manager, works much like the MS version.
71         - Implemented Redo
72         * TextBoxBase.cs: The Cut operation is undoable.
73
74 2007-01-25  Rolf Bjarne Kvinge  <RKvinge@novell.com>
75         
76         * TextBoxBase.cs: Don't antialias text. Makes it look way better
77         on Windows (no difference on Linux).    
78
79 2007-01-25  Rolf Bjarne Kvinge  <RKvinge@novell.com>
80
81         * XplatUIWin32.cs: Set SWP_NOACTIVATE in RequestNCRecalc as well,
82         we don't want to activate any windows. Fixes #79433.
83
84 2007-01-25  Jonathan Pobst  <monkey@jpobst.com>
85
86         - ButtonBase.cs: Fix capitalization of parameter: disposing.
87         [Fixes bug #80609]
88
89 2007-01-25  Alexander Olk  <alex.olk@googlemail.com>
90
91         * FileDialog.cs:
92         - Move to using System.ComponentModel.EventHandlerList
93         - Replace Refresh with Invalidate
94         - Clear the mime filecache on closing
95         - Some other memory reducing work. After beeing closed FD now uses
96           only about 300 KB for the fdo mime stuff plus the memory of the
97           cached icons.
98         * Mime.cs: Changed coding style and removed unnecessary commented
99         code. Some more memory memory reducing work.
100
101 2007-01-25  Rolf Bjarne Kvinge  <RKvinge@novell.com>
102
103         * ComboBox.cs: Implemented FlatStyle and DropDownHeight, and added
104         a few other missing 2.0 properties.
105         * Theme.cs: Added DrawFlatStyleComboBox.
106         * ThemeWin32Classic.cs: Implemented DrawFlatStyleComboBox.
107
108 2007-01-24  Chris Toshok  <toshok@ximian.com>
109
110         * XplatUIX11.cs: fix the wake_waiting logic - we always clear the
111         wake_waiting flag, not just when there's data to be read.  if we
112         don't, then future wakeup's won't reach us and we'll be doomed to
113         wait for the entire 1 second timeout forever (unless there are X
114         events to be had).
115
116 2007-01-24  Jonathan Pobst  <monkey@jpobst.com>
117
118         * ComboBox.cs: FindStringExactMaxException doesn't throw AOORE on 2.0
119         until you pass Items.Count, not Items.Count - 1 like 1.1.
120
121 2007-01-24  Gert Driesen  <drieseng@users.sourceforge.net>
122
123         * ColumnHeader.cs: Fixed ParamName in ArgumentOutOfRangeException.
124
125 2007-01-24  Jonathan Pobst  <monkey@jpobst.com>
126
127         * ToolStripContainer.cs: The recent Dock fix exposed that I was
128         adding the panels in the wrong order.
129
130 2007-01-24  Jackson Harper  <jackson@ximian.com>
131
132         * TextBoxBase.cs: When we move the caret we also need to move the
133         selection, this fixes some random crashing after doing select
134         text, unselect, delete a char, paste.
135
136 2007-01-24  Rolf Bjarne Kvinge  <RKvinge@novell.com>
137
138         * Form.cs: Update SizeGrip's location even if it's not visible (fixes #80592).
139
140 2007-01-23  Everaldo Canuto  <everaldo@simios.org>
141
142         * Control.cs: In OnParentBackgroundImageChanged remove conditions to call
143         OnBackgroundImageChanged, it mimics win32 behavior. Fixes #80553. 
144         * ToolBar.cs: Force redraw in BackgroundImageChanged.
145
146 2007-01-23  Everaldo Canuto  <everaldo@simios.org>
147
148         * ToolBar.cs:
149         - Implement support for vertical toolbars. Fixes #80539;
150         - Call LayoutToolBar when resize, it fix some other problems in layout.
151         - Rename requested_height to requested_size, as we can have width on it
152         when toolbar is vertical.
153         - Create a private property "Vertical" that uses Dock to verify when 
154         toolbar is vertical or not.
155         - Set ControlStyles when change Dock property.
156         - Refactory in LayoutToolBar to have better variables names and to support
157         vertical toolbars.
158         - Fixes default value for ButtonSize when button count is equal zero, size
159         must be (39, 36) test case writed.
160
161 2007-01-23  Chris Toshok  <toshok@ximian.com>
162
163         * Control.cs: fix the checks so that they work correctly for mdi
164         parents/children.
165
166 2007-01-23  Chris Toshok  <toshok@ximian.com>
167
168         * Control.cs: ControlCollection seems to have super-secret
169         abstraction breaking knowledge of Mdi containers.  allow MdiClient
170         to add toplevel controls.
171
172 2007-01-23  Chris Toshok  <toshok@ximian.com>
173
174         * Control.cs: throw an ArgumentException if a toplevel control is
175         added to our control collection from ControlCollection.Add, as
176         well as from ControlCollection.IList.Add.  This fixes the
177         ControlSetTopLevelTest.TestTopLevelAdd unit test.
178
179         Also, in ControlCollection.IList.Add, don't through an
180         ArgumentNullException, throw an ArgumentException, when value ==
181         null.  This matches MS.
182
183 2007-01-23  Chris Toshok  <toshok@ximian.com>
184
185         * BindingSource.cs: initial, incomplete, implementation of
186         BindingSource.
187
188 2007-01-23  Jackson Harper  <jackson@ximian.com>
189
190         * TextControl.cs:
191         * TextBoxBase.cs: Checking in some pieces of the undo stuff so
192         that I can fix a broken unit test (TextBoxTest::ClearUndo)
193         
194 2007-01-23  Everaldo Canuto  <everaldo@simios.org>
195
196         * ToolBar.cs: Add status fields to ToolBarButtonInfo.
197
198 2007-01-23  Andreia Gaita  <avidigal@novell.com>
199
200         * TreeNode.cs: Add new 2.0 ImageKey and SelectedImageKey properties.
201         * TreeNodeCollection.cs: New Add() methods, ContainsKey and
202         IndexOfKey() for 2.0
203
204 2007-01-23  Rolf Bjarne Kvinge  <RKvinge@novell.com>
205
206         * XplatWin32.cs: In RequestNCRecalc call SetWindowPos with SWP_NOZORDER
207         to prevent it from changing z-order.
208         * MdiWindowManager.cs: Refactor part of SetWindowState to MdiClient, only
209         leave UI updates in MdiWindowManager.
210         * InternalWindowManager.cs: Check for 0 sized nc areas and make them
211         1 sized (NC handling goes weird on Linux otherwise).
212         * MdiClient.cs: Add missing ExStyle (WS_EX_CLIENTEDGE), so it's no longer
213         necessary to handle WM_NCCALCSIZE anymore. This also made it possible to
214         remove a few NCRequestRecalcs. Changed calculations in IconicBounds
215         to use ClientSize of MdiClient instead of entire size. Refactored ActivateChild
216         and SetWindowState(s) to allow for changing the size of an activated child
217         before activating it (reduces a lot of flicker).
218
219 2007-01-22  Jonathan Pobst  <monkey@jpobst.com>
220
221         * Form.cs: Changing FormBorderStyle has different semantics based
222         on whether the Form is visible or not.  If not visible, don't change
223         the Size.  But InvalidateNC needs to be called to force the window
224         to pick up the changes and redraw itself.  [Fixes bug #80574]
225
226 2007-01-22  Jonathan Pobst  <monkey@jpobst.com>
227
228         [Moma work]
229         * ContainerControl.cs: ProcessCmdKey.
230         * ErrorProvider.cs: new constructor.
231         * Form.cs: fix AutoValidateEvent compiler warning.
232         * Label.cs: fix OnAutoSizeChanged compiler warning.
233         * MenuStrip.cs: fix CanOverflow compiler warning.
234         * TabControl.cs: SelectTab, OnSelected methods, Selected event.
235         * TextBox.cs: Dispose.
236         * ToolStrip.cs: CanOverflow, re-enable double buffering.
237         * ToolStripControlHost.cs: fix CausesValidation compiler warning.
238         * ToolStripDropDown.cs: fix ContextStripMenu compiler warning.
239         * ToolStripItem.cs: Overflow, RightToLeft properties.
240
241 2007-01-22  Rolf Bjarne Kvinge  <RKvinge@novell.com>
242
243         * Form.cs: Move the layout of the main form to MdiWindowManager.
244         * MdiWindowManager.cs: If WindowState changes from or to Maximized,
245         do a layout of the main window to update MdiClient's client area to
246         the right area. Fixes #80533. Remove the calculation of nc size, 
247         it was just wrong and the correct one is the same as for 
248         InternalWindowManager. 
249
250 2007-01-20  Jonathan Pobst  <monkey@jpobst.com>
251
252         * Control.cs: Setting Anchor or Dock needs to reset the other
253         to its default.  [Fixes bug #80556]
254
255 2007-01-20  Chris Toshok  <toshok@ximian.com>
256
257         * CheckedListBox.cs: class status changes.
258
259         * ScrollableControl.cs: same.
260
261         * RichTextBox.cs: same.
262
263         * ContainerControl.cs: same.
264
265         * ListView.cs: same.
266
267         * NotifyIcon.cs: same.
268
269         * MenuStrip.cs: same.
270
271         * RadioButton.cs: same.
272
273         * CheckBox.cs: same.
274
275         * PrintPreviewDialog.cs: same.
276
277         * Form.cs: same.
278
279 2007-01-19  Jonathan Pobst  <monkey@jpobst.com>
280
281         * TreeNode.cs: Apply Alan's patch for Name property.
282
283 2007-01-19  Rolf Bjarne Kvinge  <RKvinge@novell.com>
284         
285         * Form.cs: Implemented SizeGripStyle.
286         * SizeGrip.cs: Check for minimum and maximum size for the
287         control being resized and only resize if size has actually
288         changed.
289
290 2007-01-19  Chris Toshok  <toshok@ximian.com>
291
292         * DataGridColumnStyle.cs: stop setting _readonly in the
293         PropertyDescriptor setter.  fixes a unit test failure.
294
295         also, rename ParentReadOnly to TableStyleReadOnly, and have it
296         just consult our table style (if we have one).  We don't need to
297         consult the datagrid readonly attribute because that's passed in
298         as the _ro arg to Edit.  this simplifies things a little.
299         
300         * DataGrid.cs: use CurrentColumn instead of
301         current_cell.ColumnNumber just to simplify some of the code.
302
303         switch the order of some things in the CurrentCell setter to keep
304         the previous cell from getting a textbox again -
305         EnsureCellVisibility causes scrolling to happen, which calls Edit.
306         So we need to set the new cell before calling it.
307         
308         call Edit in OnEnter, as does Microsoft.
309         
310         also, make sure the current table style isn't the one we create
311         initially when checking to see if it's different than the one
312         we're setting it to in BindColumns (this fixes #80421).
313
314         * GridTableStylesCollection.cs: table styles can have "" for a
315         mapping name.  part of the fix for #80421.
316
317         * DataGridTextBoxColumn.cs: simplify the readonly calculation in
318         Edit significantly.
319
320 2007-01-18  Jonathan Pobst  <monkey@jpobst.com>
321
322         * TextRenderer.cs: Rewrote to be complete-er, more MS-matching-er,
323         and less GDI object leaky-er.
324
325 2007-01-18  Andreia Gaita  <avidigal@novell.com>
326
327         * LinkLabel.cs: Add opaque control style
328
329 2007-01-18  Jackson Harper  <jackson@ximian.com>
330
331         * TextControl.cs: Calculate width properly.
332         - Don't store the tag's X offset, this can be figured out very
333         easily.
334         - When getting the caret tag make sure to get the last empty tag.
335
336 2007-01-18  Jonathan Pobst  <monkey@jpobst.com>
337
338         * Form.cs: Recalculate our size after setting a new FormBorderStyle.
339         [Fixes bug #79959]
340
341         * Control.cs: Color.Empty shouldn't count for previous transparent
342         redraw changes.
343
344 2007-01-18  Jackson Harper  <jackson@ximian.com>
345
346         * TextBox.cs:
347         * RichTextBox.cs:
348         * TextControl.cs: Starting to merge in some pieces of my older
349         undo work.  Basically just some slight cleanup of the undo API.
350
351 2007-01-18  Rolf Bjarne Kvinge  <RKvinge@novell.com>
352
353         * TrackBar.cs: Fix signature of RightToLeftLayout.
354         * StatusBar.cs: Implemented missing 2.0 methods and attributes.
355         * StatusBarPanel.cs: Implemented missing 2.0 methods and attributes.
356         * Application.cs: Implemented UseWaitCursor.
357
358 2007-01-18  Jackson Harper  <jackson@ximian.com>
359
360         * TextControl.cs: We can't skip tags if any part of the tag is
361         visible.
362
363 2007-01-18  Jonathan Pobst  <monkey@jpobst.com>
364
365         * ContainerControl.cs: Override OnLayout.
366
367 2007-01-18  Jonathan Pobst  <monkey@jpobst.com>
368
369         * NotifyIcon.cs: Add ContextMenuStrip and Tag properties.
370
371         * ContextMenuStrip.cs: Make sure context menu is shown on top of 
372         everything else.
373
374 2007-01-18  Chris Toshok  <toshok@ximian.com>
375
376         * ContainerControl.cs: remove the partial handling of LBUTTONDOWN
377         (leftover from the container_selected days, I'd wager).  fixes bug
378         #80546.
379
380 2007-01-18  Jonathan Pobst  <monkey@jpobst.com>
381
382         * Control.cs: Apply patch from George to fix the new testcase on
383         bug #80451.  We can't just check for Color.Transparent, we need 
384         to check if the back color's alpha channel is < 255.
385
386 2007-01-18  Jonathan Pobst  <monkey@jpobst.com>
387
388         * Form.cs: Move setting show_icon = true to before the constructor
389         so that the base constructor has that information when it calculates
390         the form's size.  Was causing forms to be (6, 6) bigger than they
391         were supposed to be.  Thanks for catching this Rolf!
392
393 2007-01-18  Jackson Harper  <jackson@ximian.com>
394
395         * TextControl.cs: When replacing a selection we need to invalidate
396         from the initial selection start, because selection start is moved
397         to the end of the replacement.
398
399 2007-01-18  Andreia Gaita  <avidigal@novell.com>
400
401         * LinkLabel.cs: Missing ControlStyles. Fixes #80482
402
403 2007-01-18  Chris Toshok  <toshok@ximian.com>
404
405         * DataGridTextBoxColumn.cs: fix most of the NotWorking unit tests
406         I just added.
407
408 2007-01-17  Everaldo Canuto  <everaldo@simios.org>
409
410         * ToolBar.cs: Add layout methods to ToolBarButtonInfo class, every 
411         layout methods and properties from ToolBarButton must be available
412         into ToolBarButtonInfo.
413
414 2007-01-17  Jonathan Pobst  <monkey@jpobst.com>
415
416         * Control.cs: If the control has a transparent background, we
417         need to refresh it when it moves and when it's parent's background
418         image changes.  [Fixes bug #80451]
419
420 2007-01-17  Jonathan Pobst  <monkey@jpobst.com>
421
422         * XplatUIWin32.cs: Don't use 2.0 methods in 1.1 code!  Doh!
423
424 2007-01-17  Jonathan Pobst  <monkey@jpobst.com>
425
426         * XplatUIWin32.cs: Implement proper double buffering for Windows.
427         [Fixes bug #80447, and probably speeds up things as well]
428
429 2007-01-16  Rolf Bjarne Kvinge  <RKvinge@novell.com>
430
431         * XplatUIX11.cs: Caption height for MDI children is 19, not 26.
432         * XplatUIWin32.cs: We need to recalculate NC size after changing 
433         window style to toolwindow (otherwise the client rectangle will be
434         3 pixels to small for some reason).
435         * MdiWindowManager.cs: Revert NC size calculations to match how
436         they are calculated only based on window styles (to match
437         Win32AdjustWindowRectEx, since otherwise when setting size or 
438         location, Control will call Win32AdjustWindowRectEx to update client 
439         size, which would provoke a paint, then we'd get a NCCALCSIZE and 
440         calculate a different value of client size causing another paint 
441         (and flickering))
442         * InternalWindowManager.cs: When moving or resizing a window only
443         update size or location if they actually changed.
444         * ThemeWin32Classic.cs: ManagedWindowsBorderWidth is now 4 instead of 3
445         (seems to match Windows behaviour better). Cleaned up 
446         ManagedWindowDecorations to draw what's needed and nothing else
447         (was drawing borders and lines where they shouldn't be)
448         * Hwnd.cs: GetWindowRectangle now knows about MDI border sizes
449         (style = 0xFFFF) and takes into account caption height when 
450         calculating window rectangle.   
451
452 2007-01-16  Everaldo Canuto  <everaldo@simios.org>
453
454         * ToolBar.cs: Internal ToolBarButtonInfo class added, Because same button 
455         can be added to toolbar multiple times, we need to maintain a list of 
456         button information for each positions.
457
458 2007-01-16  Everaldo Canuto  <everaldo@simios.org>
459
460         * ToolBar.cs: Some small stetic changes.
461
462 2007-01-16  Jackson Harper  <jackson@ximian.com>
463
464         * TextBoxBase.cs: Use the new SuspendRecalc/ResumeRecalc methods
465         that allow us to have nested recalc = false blocks.
466         - Add paste support for images in the RichTextBox
467         * RichTextBox.cs: flush the text after the color is changed, so
468         the change takes effect.
469         - Use SuspendRecalc
470         - Some extra debugging info
471         * TextControl.cs: Tags no longer track their length, it is just
472         computed from the next tags length, this makes things a little
473         simpler and reduces places that we have to track length changes.
474         - Refactored the linetag class a little so we could make it
475         a base class for different kinds of tags
476         - Created a image tag, a tag that can have a single image inserted
477         into it
478         - Replace the norecalc flag with a Suspend/Resume Recalc pair, so
479         that we can call suspend multiple times.
480         - Add some debugging methods
481
482 2007-01-16  Rolf Bjarne Kvinge  <RKvinge@novell.com>
483
484         * MdiClient.cs: Add ActivatePreviousChild for 
485         mdi child window navigation.
486         * Form.cs: Use MdiClient.ActivateNextChild/
487         ActivatePreviousChild instead of Form.SelectNextControl
488         to select the next/previous child since 
489         SelectNextControl doesn't do it in the same order
490         as mdi children should do it.
491
492 2007-01-16  Chris Toshok  <toshok@ximian.com>
493
494         * Control.cs: remove container_selected field.
495
496 2007-01-16  Rolf Bjarne Kvinge  <RKvinge@novell.com>
497
498         * MdiClient.cs: Update main form's ActiveChild when
499         updating keyboard focus for the mdi child.
500
501 2007-01-16  Jonathan Pobst  <jpobst@novell.com>
502
503         * Control.cs: PreferredSize fix.
504
505         * Form.cs: Add several 2.0 events, properties, and methods.
506
507 2007-01-16  Gert Driesen  <drieseng@users.sourceforge.net>
508
509         * Form.cs: Provide meaningful message when MdiParent is assigned a
510         Form that is not an MdiContainer.
511
512 2007-01-16  Rolf Bjarne Kvinge  <RKvinge@novell.com>
513
514         * MdiClient.cs: Update main form's ActiveChild when
515         activating a mdi child.
516
517 2007-01-16  Rolf Bjarne Kvinge  <RKvinge@novell.com>
518
519         * MdiWindowManager.cs: Fix NRE when merging menus and main form
520         doesn't have a menu.
521
522         * Form.cs: Request NCRecalc after creating a mdi child window.
523         Implement mdi key handling (Ctrl+F4, Ctrl+Shift+F4, Ctrl+Tab, 
524         Ctrl+Shift+Tab, Ctrl+F6 and Ctrl+Shift+F6).
525         
526         * MdiClient.cs: Add new method SendFocusToActiveChild that either
527         sends keyboard focus to the active child, or to the MdiClient
528         if there are no child forms.
529         
530 2007-01-15  Chris Toshok  <toshok@ximian.com>
531
532         * ListView.cs: drop the *Internal overrides, just do our work in
533         ItemControl's WndProc instead.
534
535         * UpDownBase.cs: a few large changes.  Fix up the Selectable state
536         of the various controls, and forward the events properly (in the
537         same manner as MS) from the textbox to the UpDown.  Also the
538         ActiveControl of the UpDownBase gets set properly now.  Finally,
539         we don't call UpdateEditText from the ctor.  Fixes bug #79957.
540
541         * NumericUpDown.cs: set Text in the ctor.
542
543         * DomainUpDown.cs: call UpdateEditText in the ctor.
544         
545         * TextBox.cs: on ms.net, WM_LBUTTONDOWN sets focus on the textbox,
546         so even a Selectable = false textbox can be focused if you click
547         in it.  Go figure.
548
549         * Control.cs: remove On{Got,Lost}FocusInternal.  Subclasses can
550         just add their handling in their respective WndProc's.  Also add
551         an explicit FocusInternal method that doesn't consult CanFocus
552         before calling Select(this).
553
554         * TextBoxBase.cs: deal with removal of the FocusInternal calls -
555         do our work in WndProc instead.
556
557         * TabControl.cs: same.
558
559         * ComboBox.cs: same.
560
561 2007-01-15  Everaldo Canuto  <everaldo@simios.org>
562
563         * Menu.cs: implement MergeItems and Replace for MenuMerge method.
564         Fixes #80006.
565
566 2007-01-15 Carlos Alberto Cortez <calberto.cortez@gmail.com>
567
568         * ListViewItem.cs:
569         * ThemeWin32Classic.cs: Don't draw the item text outside
570         item bounds in Details view, as well as use trimming.
571         Fixes bug #80376.
572
573 2007-01-15  Jonathan Pobst  <jpobst@novell.com>
574
575         * Form.cs: Implement Form.ShowIcon.
576         
577         * XplatUIWin32.cs: Allow the SetIcon win32 call to set the icon to
578         null, which when combined with the DlgModalFrame window style removes
579         the icon from the title bar.
580
581 2007-01-15  Jonathan Pobst  <jpobst@novell.com>
582
583         * Control.cs: Call OnMouseClick after OnClick. (2.0)
584
585 2007-01-15  Everaldo Canuto  <everaldo@simios.org>
586
587         * MdiWindowManager.cs: In CreateMaximizedMenu fix a position of icon
588         menu when mdi child windows theres a menu, uses insert to get icon
589         at first position. Partially fix #80006.
590
591 2007-01-15  Jonathan Pobst  <jpobst@novell.com>
592
593         * Clipboard.cs: Implement 2.0 methods.
594
595 2007-01-15  Everaldo Canuto  <everaldo@simios.org>
596
597         * Menu.cs: Implement Insert method of MenuItemCollection class
598         to fix MenuMerge.
599
600 2007-01-14  Carlos Alberto Cortez <calberto.cortez@gmail.com>
601
602         * ListView.cs: Implement 2.0 FindItemWithText method.
603
604 2007-01-11  Everaldo Canuto  <everaldo@simios.org>
605
606         * Form.cs: When process WM_NCCALCSIZE message use ClienSize.Width
607         to calculate menu bar size. Fixes #80290.
608
609 2007-01-11  Everaldo Canuto  <everaldo@simios.org>
610
611         * ThemeWin32Classic.cs: Fix position of menuitem check mark.
612
613 2007-01-11  Chris Toshok  <toshok@ximian.com>
614
615         * XplatUIX11.cs: don't send duplicate WM_ACTIVATE messages to the
616         initial form.
617
618 2007-01-11  Chris Toshok  <toshok@ximian.com>
619
620         * LinkLabel.cs: make sure to call base.Select in our Select method
621         if it turns out we're going to be selected (i.e. if we have a link
622         that is going to receive focus).  That way our container's
623         ActiveControl is updated properly.
624
625 2007-01-11  Chris Toshok  <toshok@ximian.com>
626
627         * LinkLabel.cs: turns out that LinkLabels are only Selectable if
628         they have 1 or more links.  this fixes the crash gert reported.
629
630 2007-01-11  Andreia Gaita  <avidigal@novell.com>
631
632         * ContainerControl.cs: Remove ContainerSelected flag, not needed
633         anymore.
634
635         * Control.cs (Controls.Add): Check if control to be added to the collection
636         is a top level control, and throw an ArgumentException if it is.
637         Remove ContainerSelectedFlag, not needed anymore.
638
639         * XplaUIWin32.cs (SetTopMost): Add flag SWP_NOACTIVATE so that setting the
640         top most control doesn't activate the form. This fixes a problem in the
641         MessageBox, where the default button wouldn't get focus because the form
642         was activated before being Loaded - when the Owner is set, SetTopMost is
643         called, and it would activate it.
644
645 2007-01-11  Jonathan Pobst  <jpobst@novell.com>
646
647         * Button.cs: When clicked and setting the parent form's DialogResult,
648         use FindForm instead of Parent, since parent could be a container
649         control and not the Form.  Fixes bug #80495.
650
651 2007-01-10  Chris Toshok  <toshok@ximian.com>
652
653         * Form.cs: move the call to SendControlFocus into the same
654         is_loaded check.
655
656 2007-01-10  Chris Toshok  <toshok@ximian.com>
657
658         * UpDownBase.cs (.ctor): remove the ActiveControl assignment here.
659         It breaks in the face of the new ActiveControl stuff, and should
660         be unnecessary.
661
662         * Form.cs (WndProc): in the WM_ACTIVATE case, we need to set the
663         activecontrol's focus if it's not already set, after we set
664         ActiveControl, but before we call OnActivated.  Re-fixes #79667
665         after the previous focus/active control fixes regressed it.
666
667         * Control.cs: reindent some code.
668         
669 2007-01-10  Chris Toshok  <toshok@ximian.com>
670
671         * Splitter.cs: clearing some outstanding changes from my tree.
672         Replace all accesses (not writes) to the internal dock_style field
673         with the Dock property.
674
675 2007-01-10  Chris Toshok  <toshok@ximian.com>
676
677         * Control.cs: make FireEnter, FireLeave, FireValidating, and
678         FireValidated virtual.
679
680         * Form.cs: override and don't chain up calls to FireEnter and
681         FireLeave.
682
683 2007-01-10  Carlos Alberto Cortez <calberto.cortez@gmail.com>
684
685         * ListView.cs: Add more text padding space when using
686         auto resize for columns (the previous value didn't work fine).
687
688         * ThemeWin32Classic.cs: Update text position inside columns,
689         to match the appeareance of .Net.
690
691         * ColumnHeader.cs: When using auto resize, only the Width should
692         depend on the sub items, not the Height. Also, set width after
693         auto resizing (the value of Width should never remain as -1 or -2).
694
695 2007-01-10  Chris Toshok  <toshok@ximian.com>
696
697         * Application.cs: fix compilation errors when debug is enabled.
698
699 2007-01-10  Chris Toshok  <toshok@ximian.com>
700
701         * ContainerControl.cs (set_ActiveControl): rework this a bit (and
702         add some nice ascii art pictures and explanation of the process).
703         (GetMostDeeplyNestedActiveControl): new utility function we need
704         because our ActiveControl can refer to a child container with its
705         own ActiveControl.
706
707         * Form.cs (OnActivated): remove the call to SelectActiveControl
708         from here, since you can override this method and not chain up,
709         and winforms still sets the active control.
710         (OnCreateControl): also remove the unnecessary SelectActiveControl
711         call from here.
712         (WndProc): it's actually called from the WM_ACTIVATE block, just
713         before calling OnActivated.
714
715         * Control.cs (Select (Control)): move the call to XplatUI.SetFocus
716         inside the else.  the ActiveControl setter will end up setting
717         focus on @control.  This keeps us from setting it again (and
718         generating an extra LostFocus/GotFocus pair).
719         (Select (bool, bool)): reindent.
720
721 2007-01-10  Jonathan Pobst  <jpobst@novell.com>
722
723         * FlowLayoutPanel.cs, MenuStrip.cs, SplitContainer.cs, SplitterPanel.cs,
724         StatusStrip.cs, TableLayoutPanel.cs, TableLayoutStyleCollection.cs,
725         ToolStrip.cs, ToolStripComboBox.cs, ToolStripContainer.cs,
726         ToolStripContentPanel.cs, ToolStripControlHost.cs, ToolStripDropDown.cs,
727         ToolStripDropDownButton.cs, ToolStripDropDownItem.cs, ToolStripDropDownMenu.cs,
728         ToolStripItem.cs, ToolStripMenuItem.cs, ToolStripPanel.cs, ToolStripPanelRow.cs,
729         ToolStripSeparator.cs, ToolStripSplitButton.cs, ToolStripStatusLabel.cs
730         ToolStripTextBox.cs: Another wave of corcompare work.
731
732 2007-01-09  Carlos Alberto Cortez <calberto.cortez@gmail.com>
733
734         * ColumnHeader.cs: Implement 2.0 AutoResize method using
735         the Width property.
736
737         * ListView.cs: Implement 2.0 AutoResizeColumn and AutoResizeColumns
738         methods by callling Column.AutoResize method on columns.
739
740 2007-01-09  Jonathan Pobst  <monkey@jpobst.com>
741
742         * Control.cs: Provide proper implementations of PreferredSize
743         and GetPreferredSize (2.0).
744
745 2007-01-09  Jonathan Pobst  <monkey@jpobst.com>
746
747         * Form.cs: Remove one character (!) to make my previous OnClosing
748         stuff work for modal windows like MessageBox.
749
750 2007-01-09  Carlos Alberto Cortez <calberto.cortez@gmail.com>
751
752         * ListView.cs:
753         * ThemeWin32Classic.cs: Use ListView.GetReorderedColumn instead of
754         ListView.Columns to get the last displayed column. Fixes #80452.
755
756 2007-01-09  Everaldo Canuto  <everaldo@simios.org>
757
758         * Label.cs, LinkLabel.cs: Source code identation fixes.
759
760 2007-01-08  Everaldo Canuto  <everaldo@simios.org>
761
762         * ToolBarButton.cs: Remove InvalidateBorder and use Invalidate instead,
763         we dont need to invalidate only borders because when we invalidate four
764         border lines the invalidate's generates a complete redraw of button, 
765         because it now invalidate a complete rect some other redraws operations
766         are fixed. Fixes #80196.
767         
768         * Theme.cs, ThemeNice.cs, ThemeClearLooks.cs, ThemeWin32Classic.cs:
769         Remove ToolBarInvalidateEntireButton as it is not used.
770
771 2007-01-08  Jonathan Pobst  <monkey@jpobst.com>
772         
773         * Form.cs: Make sure that both OnClosing and OnFormClosing are
774         called for 2.0 profile.
775         * CloseReason.cs: Make class internal for 1.1.
776
777 2007-01-08  Jonathan Pobst  <monkey@jpobst.com>
778
779         * ToolStripManager.cs: Implement FindToolStrip functionality.
780         * ToolStrip.cs: Register and unregister with ToolStripManager.
781
782 2007-01-07  Jonathan Pobst  <monkey@jpobst.com>
783
784         * Control.cs: This was messy.  2.0 moves much of ControlCollection
785         to ArrangedElementCollection.  Implemented this with as few #if's as 
786         possible (which is still too many).
787
788 2007-01-07  Jonathan Pobst  <monkey@jpobst.com>
789
790         * Control.cs: Implement SizeFromClientSize() [2.0].
791
792 2007-01-07  Everaldo Canuto  <everaldo@simios.org>
793
794         * Hwnd.cs: On GetClientRectangle add a new parameter border_static,
795         use Theme.BorderSize to calculate area instead of static value 1, 
796         by the way use new BorderStaticSize instead     Border3DSize when 
797         border_static is true. Fixes #79537.
798         
799         * XplatUIOSX.cs: Fix call to GetClientRectangle. 
800         
801         * ThemeWin32Classic.cs: On CPDrawBorder3D dont draw inner border when
802         it is not needed.
803
804 2007-01-06  Everaldo Canuto  <everaldo@simios.org>
805
806         * Hwnd.cs: Gives more code legibility to GetWindowRectangle.
807
808 2007-01-06  Everaldo Canuto  <everaldo@simios.org>
809
810         * Label.cs: Override CreateParams to use WS_EX_STATICEDGE instead of
811         WS_EX_CLIENTEDGE in ExStyles when BorderStyle is Fixed3D, it is
812         
813         * Hwnd.cs: 
814         - border_static field added, it will used to define when a control 
815         theres 3D border but it must be static (thin).
816         - In GetWindowRectangle use Theme.BorderSize to calculate area 
817         instead of static value 1, by the way use new BorderStaticSize instead
818         Border3DSize when border_static is true.
819
820         * XplatUIX11.cs, XplatUIOSX.cs: 
821         - When WS_EX_STATICEDGE ExStyle is set define border_static as true.
822         
823         * Theme.cs: BorderStaticSize field added.
824
825 2007-01-05  Everaldo Canuto  <everaldo@simios.org>
826
827         * XplatUIX11.cs: Removed unused hwnd var in SetBorderStyle.
828
829 2007-01-05  Everaldo Canuto  <everaldo@simios.org>
830
831         * Control.cs: Under InternalBorderStyle call RecreateHangle to 
832         mimic same behavior than win32 that set border only in CreateParams,
833         it fix problems under CreateParams overrides. Fix #79442 and partial
834         fix #79537.
835         
836         * XplatUIX11.cs: Dont set hwnd.border_style in SetBorderStyle instead
837         of thi control you must call recreate handle. 
838         
839         * XplatUIWin32.cs: Remove all SetBorderStyle code, for win32 we dont
840         need to do anything as RecreateHangle will take care about borders.
841
842 2007-01-05  Mike Kestner  <mkestner@novell.com>
843
844         * ListView.cs: hack to eliminate Lost/Got focus notifications on
845         cycles between the ItemControl and parent.  Fixes #80388.
846
847 2007-01-05  Gert Driesen  <drieseng@users.sourceforge.net>
848
849         * Control.cs: Lazy init layout engine. Do not directly use 
850         layout_engine since LayoutEngine may be overridden (on 2.0 profile).
851
852 2007-01-05  Chris Toshok  <toshok@ximian.com>
853
854         * DataGrid.cs: don't forceably rebind columns in SetDataSource
855         unless our list manager has changed (i.e. unless we have reason to
856         believe our columns have changed).  Fixes #80422.
857         
858         also, disable the call do BindColumns in
859         OnListManagerMetaDataChanged.  this breaks this test in 2.0 (in
860         1.1 the event isn't raised in response to a column addition on a
861         table.)
862
863 2007-01-05  Jonathan Pobst  <monkey@jpobst.com>
864
865         * Control.cs: Move LayoutEngine.Layout to the OnLayout method, so
866         that inheritors can not call it if they choose.  Fixes bug #80456.
867
868 2007-01-05  Andreia Gaita  <avidigal@novell.com>
869
870         * XplatUIWin32.cs: Initialize MSG.refobject at 0 so it 
871         doesn't blow up with a null exception on marshalling.
872         
873 2007-01-05  Jonathan Pobst  <monkey@jpobst.com>
874
875         * Control.cs: Implement several 2.0 protected properties and methods.
876         Ensure that all necessary events are being called when properties
877         are set.
878
879 2007-01-05  Mike Kestner  <mkestner@novell.com>
880
881         * ListView.cs: implement PgUp/PgDn for Details view.  Also
882         fixes First/LastVisibleIndex to use the item_control.ClientRect 
883         instead of the parent control.  Fixes #80378.
884
885 2006-01-05  Atsushi Enomoto  <atsushi@ximian.com>
886
887         * PageSetupDialog.cs : cosmetic refactoring; use RegionInfo to
888           determine whether to use yard-pound or not (bug #78399).
889
890 2006-01-04  Alexander Olk  <alex.olk@googlemail.com>
891
892         * FileDialog.cs: Sebastien fixed the libgdiplus png alpha
893         problems. So it is time to bring back the old popupbutton colors.
894
895 2006-01-04  Carlos Alberto Cortez <calberto.cortez@gmail.com>
896
897         * ColumnHeader.cs:
898         * ListView.cs: Implement 2.0 ColumnHeader.DisplayIndex
899         property by using the internal information of the
900         columns order in ListView.
901
902 2007-01-04  Jonathan Pobst  <monkey@jpobst.com>
903
904         * CommonDialog.cs, Cursor.cs, ErrorProvider.cs, HelpProvider.cs:
905         Add 2.0 Tag properties.
906
907         * LinkArea.cs: Add 2.0 ToString method.
908
909 2007-01-03  Chris Toshok  <toshok@ximian.com>
910
911         * DataGrid.cs: the Alt+0 handling was wrong, it should have been
912         Ctrl+0.  Fixes bug #80367.  Also, don't eat the Delete keypress
913         when we're editing, which fixes #80047.
914
915 2007-01-03  Chris Toshok  <toshok@ximian.com>
916
917         * Form.cs: apply patch contributed by Dominik Seichter.  fixes
918         #80404.
919
920 2007-01-03  Jonathan Pobst  <monkey@jpobst.com>
921
922         * MenuStrip.cs, ToolStripMenuItem.cs: Add MdiWindowListItem
923         property and implementation.
924
925         * Form.cs, MdiClient.cs, MdiWindowManager.cs: Add needed hooks
926         for MdiWindowListItem property.
927
928         * ToolStripDropDown.cs: Don't consider hidden menu items while
929         laying out the menu.
930
931 2007-01-03  Andreia Gaita  <avidigal@novell.com>
932
933         * SendKeys.cs: window handle is not needed in win32, so just
934         get the active window for X after parsing keys and don't use
935         it when building the message; it is passed by parameter to the 
936         Xplat method and used there to build the message instead. Also,
937         wait for events to be processed on SendWait, as opposed to Send,
938         which doesn't wait :) Playing with threads and Send() completely 
939         hangs on ms.net, only SendWait() works.
940         
941         XplatUIX11.cs
942         X11Display.cs: Check for valid window handle.
943
944 2007-01-03  Jackson Harper  <jackson@ximian.com>
945
946         * TextControl.cs: Need to prevent wrap calculations when replacing
947         text (this was there before i removed it accidently).
948         - Don't update the cursor during the positioning, just set it to
949         selection_start at the end of the operaion.
950
951 2007-01-03  Rolf Bjarne Kvinge  <RKvinge@novell.com>
952
953         * Control.cs:
954         * NotifyIcon.cs: corcompare work, no more X's in 1.1 class status.
955         
956 2007-01-03  Rolf Bjarne Kvinge  <RKvinge@novell.com>
957
958         * MonthCalendar.cs: Added Click and DoubleClick events again,
959         but this time they only hide Control's Click and DoubleClick.
960         
961 2007-01-03  Gert Driesen  <drieseng@users.sourceforge.net>
962
963         * Theme.cs: Re-enabled DefaultFont change. Use const to refer to
964         System.Drawing assembly. Spaces to tabs. Removed extra tabs.
965
966 2007-01-02  Jackson Harper  <jackson@ximian.com>
967
968         * TextBoxBase.cs: We move the caret with the split now, so we
969         don't need to explicitly move the caret after splitting.  This
970         fixes the caret bumping down an extra line on Enter.
971
972 2007-01-02  Miguel de Icaza  <miguel@novell.com>
973
974         * ContainerControl.cs: Add AutoValidateChanged event (for PDN
975         2.72). 
976
977         * ScrollableControl.cs: Add Scroll event.
978
979 2007-01-02  Mike Kestner  <mkestner@novell.com>
980
981         * ListView.cs: one more try with help from georgegiolfan@yahoo.com 
982         to fix all hdr height padding codepaths.  Fixes #80207.
983
984 2007-01-02  Chris Toshok  <toshok@ximian.com>
985
986         * StatusBar.cs (.ctor): remove the Anchor setting, as it's just
987         setting it to the Control defaults anyway, and it being after the
988         Dock set was screwing up layout.
989         (set_Dock): don't short circuit out of setting base.Dock.  Also,
990         no need to call UpdateStatusBar here, as it'll be re-layed out if
991         it needs to be.
992
993 2007-01-02  Mike Kestner  <mkestner@novell.com>
994
995         * ListView.cs: patch from georgegiolfan@yahoo.com to add padding
996         to header height for width == -1. Fixes the rest of #80207.
997
998 2007-01-02  Mike Kestner  <mkestner@novell.com>
999
1000         * ListView.cs: rework the mouse event forwarding everaldo added
1001         to translate the coordinates to the parent control not
1002         raise the parent events until after we've done our work. Hover
1003         needs more work, in the case where HoverSelection is on, because
1004         the item control receives more than one MouseHover per Enter
1005         event, so we need to ensure only the "first" hover gets forwarded.
1006         Opening a minor bug for that.
1007
1008 2007-01-02  Gert Driesen  <drieseng@users.sourceforge.net>
1009
1010         * CheckedListBox.cs: Fixed SelectionMode to match MS.
1011         * ListControl.cs: Implemented AllowSelection property. Removed extra
1012         tabs.
1013         * ListBox.cs: Implemented AllowSelection property.
1014
1015 2007-01-02  Everaldo Canuto  <everaldo@simios.org>
1016
1017         * MenuItem.cs: In MdiWindowClickHandler uses sender instead of
1018         SelectedItem, it prevent for errors when you must disable item
1019         before perform click. Fixes #80409.
1020
1021 2007-01-02  Everaldo Canuto  <everaldo@simios.org>
1022
1023         * MenuAPI.cs: Prevent second level and beyond submenus to close
1024         until first level when move out side of popup.
1025         
1026 2007-01-02  Everaldo Canuto  <everaldo@simios.org>
1027
1028         * MenuAPI.cs:
1029         - Down submenu positin in three pixels.
1030         - Closes sub menu when mouse leaves from menu. Fixes #80402.
1031
1032 2007-01-02  Everaldo Canuto  <everaldo@simios.org>
1033
1034         * ThemeWin32Classic.cs:
1035         - Fix popup menu size adding one pixel on the top.
1036         - Down menu item border from two to one to mimic Win32.
1037         - Some source identation fixes. 
1038
1039 2007-01-01  Everaldo Canuto  <everaldo@simios.org>
1040
1041         * ThemeWin32Classic.cs: Use float numbers to calculate size and
1042         position of menu arrows, it fix wrong arrow size.
1043
1044 2007-01-01  Everaldo Canuto  <everaldo@simios.org>
1045
1046         * ThemeWin32Classic.cs: Uses CPDrawBorder3D to draw menu borders
1047         instead of line, it simplify draw operation and fix it using 3D
1048         borders to mimic Win32.
1049
1050 2007-01-01  Jonathan Pobst  <monkey@jpobst.com>
1051
1052         * StatusStrip.cs: Add implementation of the sizing grip.
1053
1054         * ToolStripRenderer.cs, ToolStripProfessionalRenderer.cs: Add
1055         StatusStrip rendering.
1056
1057 2006-12-31  Chris Toshok  <toshok@ximian.com>
1058
1059         * ToolBar.cs: don't assign to dock_style in the .ctor.  it doesn't
1060         override the layout style (anchor/dock) of the control.  assign to
1061         Dock instead.  Fixes bug #80416.
1062
1063         * ToolStrip.cs: same.
1064
1065 2006-12-31  Andreia Gaita  <avidigal@novell.com>
1066
1067         * ContainerControl.cs: Use ContainerSelected flag to check if 
1068         a Container is directly selected, or if Select is called on a 
1069         non-container. If a container is directly selected, focus events 
1070         should not be raised.
1071         Apply #80411 patch to throw exception on set_ActiveControl if 
1072         control is the same as the current one.
1073         
1074         * Control.cs: Use ContainerSelected flag (see above).
1075         Add invalidation check to raise event but not invalidate if 
1076         dimensions are 0.       
1077         Apply #80411 patch.
1078         
1079
1080 2006-12-31  Everaldo Canuto  <everaldo@simios.org>
1081
1082         * MenuAPI.cs: After click, dont close popup menu when menu is
1083         ContextMenu. Fixes #80399.
1084
1085 2006-12-30  Chris Toshok  <toshok@ximian.com>
1086
1087         * ContainerControl.cs: make sure we throw the exception if the
1088         container control doesn't contain the control we're setting
1089         ActiveControl to.
1090
1091 2006-12-30  Chris Toshok  <toshok@ximian.com>
1092
1093         * Control.cs (SetTopLevel): fix the exception raised by
1094         SetTopLevel for child controls.
1095         (set_Anchor): call UpdateDistances when setting the anchor type.
1096         This fixes bug #80336.
1097
1098 2006-12-29  Gert Driesen  <drieseng@users.sourceforge.net>
1099
1100         * Theme.cs: For now, revert back to 8pt font.
1101
1102 2006-12-29  Everaldo Canuto  <everaldo@simios.org>
1103
1104         * MenuAPI.cs: Set popup as active when open a ContextMenu. 
1105         Fixes #80395.
1106
1107 2006-12-29  Chris Toshok  <toshok@ximian.com>
1108
1109         * Control.cs: reorder the code in OnResize to give the same event
1110         ordering as MS.
1111
1112 2006-12-29  Rolf Bjarne Kvinge  <RKvinge@novell.com>
1113
1114         * MdiClient.cs: Implemented MdiLayout for ArrangeIcons,
1115         TileHorizontally and TileVertically.
1116         
1117 2006-12-29  Alexander Olk  <alex.olk@googlemail.com>
1118
1119         * ColorDialog.cs, FileDialog.cs, FolderBrowserDialog.cs,
1120         FontDialog.cs, Mime.cs, MimeIcon.cs, OpenFileDialog.cs,
1121         SaveFileDialog.cs, ThemeClearlooks.cs, ThemeNics.cs:
1122         Corrected copyright and email adress.
1123
1124 2006-12-29  Gert Driesen  <drieseng@users.sourceforge.net>
1125
1126         * TreeNode.cs: On 2.0 profile, throw InvalidOperationException instead
1127         of Exception in FullPath property if no TreeView is associated with
1128         the TreeNode.
1129
1130 2006-12-29  Gert Driesen  <drieseng@users.sourceforge.net>
1131
1132         * Theme.cs: Marked default_font as private, and initialize it in ctor
1133         with MS Sans Sarif 8.25 on 1.0 profile, and SystemFonts.DefaultFont
1134         on 2.0 profile.
1135         * ThemeGtk.cs: Removed default_font intialization.
1136         * ThemeWin32Classic.cs: Removed default_font initialization.
1137
1138 2006-12-28  Chris Toshok  <toshok@ximian.com>
1139
1140         * Control.cs: fix a couple of place where we were creating handles
1141         more aggressively than we should be.  Fixes ControlRefresh unit
1142         tests.
1143
1144 2006-12-28  Chris Toshok  <toshok@ximian.com>
1145
1146         * Control.cs: contrary to what the comment said, Control.Dock does
1147         not supercede Control.Anchor - the last one you assign to decides
1148         the layout behavior.  so we need to keep track of which was the
1149         last set.  Also, fix some of the affected property arguments in
1150         PerformLayout calls, and remove an redundant parent.PerformLayout
1151         call in OnResized.
1152
1153         Add a VisibleInternal property, which returns is_visible.  We
1154         can/should get rid of all the usage of this field elsewhere.
1155
1156 2006-12-28  Rolf Bjarne Kvinge  <RKvinge@novell.com>
1157         
1158         * Control.cs: DoubleBuffered property reflects the OptimizedDoubleBuffer
1159         control style, not DoubleBuffer. Added UseDoubleBuffering property
1160         that indicates whether doublebuffering is enabled and supported.
1161         (comment from and code based on Gert Driesen's patch in #80324).
1162         Fixes #80324.
1163
1164 2006-12-28  Rolf Bjarne Kvinge  <RKvinge@novell.com>
1165         
1166         * Control.cs: Fixed a NRE.
1167
1168 2006-12-28  Rolf Bjarne Kvinge  <RKvinge@novell.com>
1169
1170         * TrackBar.cs: Fix SmallChange and LargeChange exceptions
1171         for 2.0.
1172
1173 2006-12-28  Rolf Bjarne Kvinge  <RKvinge@novell.com>
1174
1175         * Control.cs: Rewrote double buffering, now a seperate
1176         class handles all the buffering, no Graphics is disposed of
1177         until the painting is finished (earlier implementation 
1178         would crash if the control was resized in the OnPaint, 
1179         since it would cause the double buffer to be recreated
1180         and the old one disposed), a separate Graphics is 
1181         created for every paint (MS behaviour and anyways the state
1182         of the Graphics would have to be saved and restored otherwise)
1183         
1184         * XplatUIDriver.cs: 
1185         * XplatUIX11.cs:
1186         * XplatUI.cs: Added and implemented GetOffscreenGraphics 
1187         so that we can get the graphics for the back buffer without
1188         having to create a new one and remove the offscreen_dc parameter
1189         from CreateOffscreenDrawable and DestroyOffscreenDrawable.
1190         
1191 2006-12-27  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1192
1193         * ListView.cs: Add key-related 2.0 methods for CheckedItemCollection.
1194         Also make virtual all the key-related methods.
1195
1196         * ListViewItem.cs: Make virtual the key related methods for
1197         ListViewSubItemCollection.
1198
1199 2006-12-27  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1200
1201         * ListView.cs:
1202         * ListViewItem.cs:
1203         * ThemeWin32Classic.cs:
1204         * Theme.cs: Initial support for Tile view in ListView,
1205         as well as the implementation of the required bits for it (Item
1206         and Subitem).
1207
1208 2006-12-27  Gert Driesen  <drieseng@users.sourceforge.net>
1209
1210         * MonthCalendar.cs: On 2.0, throw ArgumentOutOfRangeException instead
1211         of ArgumentException in MaxSelectionCount, MaxDate and MinDate.
1212         Provide useful exception messages.
1213
1214 2006-12-27  Rolf Bjarne Kvinge  <RKvinge@novell.com>
1215
1216         * TrackBar.cs: Remove a warning.
1217         * MonthCalendar.cs: Moved back to using Capture to hide the calendar
1218         when used by DateTimePicker, fixes #80287. This also requires that 
1219         MonthCalendar implements it's own drawing for the yearly updown control,
1220         otherwise the Capture tracking would be too complicated. Removed the Click 
1221         and DoubleClick events (according to comments they were hiding the base class
1222         event to prevent them from beeing fired - MSDN only says MonthCalendar doesn't
1223         raise these events, not that they cannot be raised. It is possible to raise 
1224         them by calling OnClick and OnDoubleClick). Added two internal fields in 
1225         HitTestInfo in order to track give more tracking info needed by MonthCalendar.
1226         * ThemeWin32Classic.cs: Implement drawing of MonthCalendar's updown part.
1227         * DateTimePicker.cs: Removed handling of MonthCalendar's LostFocus
1228         event, no longer needed.
1229         
1230 2006-12-27  Gert Driesen  <drieseng@users.sourceforge.net>
1231
1232         * ScrollableControl.cs: In AutoScrollMinSize, only set AutoScroll to
1233         true if new value differs from current value.
1234
1235 2006-12-27  Gert Driesen  <drieseng@users.sourceforge.net>
1236
1237         * Control.cs: ControlCollection.Count must be public. Fixed build of
1238         unit tests.
1239
1240 2006-12-27  Gert Driesen  <drieseng@users.sourceforge.net>
1241
1242         * ListView.cs: Redraw when FullRowSelect is changed. Fixes bug #80379.
1243
1244 2006-12-27  Gert Driesen  <drieseng@users.sourceforge.net>
1245
1246         * ComboBox.cs: Mergable=>MergableProperty. Fixes build.
1247
1248 2006-12-26  Everaldo Canuto  <everaldo@simios.org>
1249
1250         * Control.cs: Invalidates control including when Width and Height is 
1251         equal zero or is not visible, only Paint event must be care about 
1252         this. Fixes #79913.
1253
1254 2006-12-26  Chris Toshok  <toshok@ximian.com>
1255
1256         * CurrencyManager.cs, PropertyManager.cs, BindingManagerBase.cs:
1257         more corcompare work.
1258
1259         * DataGridView.cs: fix compiler warning.
1260
1261         * ColumnHeader.cs: some corcompare work, and also take the
1262         opportunity to make the internal fields private.
1263
1264         * ListView.cs: fix the fallout from the above field change.
1265
1266 2006-12-26  Jonathan Pobst  <monkey@jpobst.com>
1267
1268         * ToolStripButton.cs, ToolStripComboBox.cs, ToolStripControlHost.cs,
1269         ToolStripItem.cs, ToolStripProgressBar.cs, ToolStripSplitButton.cs,
1270         ToolStripTextBox.cs: Fixes to events and corcompare.
1271
1272 2006-12-26  Everaldo Canuto  <everaldo@simios.org>
1273
1274         * ListView.cs: Call owner.OnMousexx event to propagate events from
1275         item to ListView. Fixes #80367.
1276
1277 2006-12-26  Gert Driesen  <drieseng@users.sourceforge.net>
1278
1279         * ComboBox.cs: On 2.0, DropDownWidth throws ArgumentOutOfRangeException
1280         if value is less than one. ItemHeight should not be set to a value
1281         less than 1, and throw ArgumentOutOfRangeException on 2.0 profile. 
1282         Removed extra tabs.
1283
1284 2006-12-26  Jonathan Pobst  <monkey@jpobst.com>
1285
1286         * ToolStripMenuItem.cs: Add ShortcutDisplayString for Moma.
1287         * ToolStripStatusLabel.cs: Add Spring for Moma.
1288
1289 2006-12-26  Gert Driesen  <drieseng@users.sourceforge.net>
1290
1291         * DataGridView.cs: Fixed several NullReferenceException in On* methods.
1292         Fixed code formatting. Removed debug code.
1293         * DataGridViewTextBoxEditingControl.cs: Removed debug code.
1294
1295 2006-12-26  Gert Driesen  <drieseng@users.sourceforge.net>
1296
1297         * DataGridView.cs: Fixed GridColor, DefaultSize, DefaultCellStyle,
1298         RowHeadersDefaultStyle, RowHeadersWidth to match MS. Throw
1299         ArgumentOutOfRangeException if ColumnCount is negative. In 
1300         ColumnHeadersHeight, throw ArgumentOutOfRangeException if height is
1301         less than 4 or higher than 32768.
1302         * DataGridViewCellStyle.cs: Fixed default value for NullValue.
1303         Fixed FormatProvider to return CurrentCulture unless explicitly set.
1304         Fixed IsFormatProviderDefault to return true if FormatProvider has
1305         not been explicitly set.
1306
1307 2006-12-25  Chris Toshok  <toshok@ximian.com>
1308
1309         * Application.cs: add a couple of 2.0 events.
1310
1311 2006-12-25  Chris Toshok  <toshok@ximian.com>
1312
1313         * Control.cs: fix compiler warning.
1314
1315         * AxHost.cs: corcompare fixes.
1316
1317         * ApplicationContext.cs: corcompare fixes.
1318
1319 2006-12-25  Chris Toshok  <toshok@ximian.com>
1320
1321         * Control.cs: only update dist_right/dist_bottom if the
1322         width/height is > 0.  this fixes anchored controls being resized
1323         smaller until they disappear and then resized larger again.
1324
1325 2006-12-25  Chris Toshok  <toshok@ximian.com>
1326
1327         * Control.cs: a couple of changes.  Remove dist_left and dist_top,
1328         since they're nothing more than X/Left and Y/Top, respectively.
1329
1330         Also, move back to a per-control Bitmap/Graphics for
1331         DeviceContext, since using the static Hwnd.bmp/bmp_g is bad in the
1332         MT case.  Go with a tiny bitmap though, 1x1, instead of Width x
1333         Height.
1334
1335 2006-12-25  Miguel de Icaza  <miguel@novell.com>
1336
1337         * MessageBox.cs: Implemented overload that takes a new "bool
1338         displayHelpButton" by adding a new internal field "show_help".
1339         When clicked this will raise the HelpRequested on the owner or the
1340         main form. 
1341
1342         From: 007dbe3ff0ca4729a4f5fcd1d8ab2a2e.txt
1343         From: c935e12b95fe4dc1ae670e7f4dc5fd68.txt
1344
1345         * ListView.cs: Add support ColumnWidthChanged and
1346         ColumnWidthChanging. 
1347
1348         Add support for ColumnReordered event.
1349         (ReorderColumn): Add NET_2_0 specific support for cancelling the
1350         reorder.
1351
1352         Very nice codebase!
1353
1354         * TextBoxBase.cs (GetLineFromCharIndex): Implement this method.
1355
1356         This is used by report f4ae0a88a0a244558aaadf017c9b9efe.
1357
1358 2006-12-24  Chris Toshok  <toshok@ximian.com>
1359
1360         * GridTablesFactory.cs: 2.0 corcompare work.
1361
1362         * ToolStripContainer.cs: add "override" to
1363         ContextMenuStripChanged, and remove the local event object.
1364
1365         * ToolStripDropDown.cs: same with a couple properties.
1366
1367         * ToolStripPanel.cs: same with AutoSizeChanged event.
1368
1369         * TextBoxBase.cs: add "override" to AutoSizeChanged.
1370
1371         * Form.cs: add the remaining 2.0 events, and do some corcompare
1372         attribute work.
1373
1374         * DateTimePicker.cs: add "new" to padding.
1375
1376         * ButtonBase.cs: use Control's use_compatible_text_rendering.
1377
1378         * ToolStripContentPanel.cs: use base.AutoSizeChanged.
1379
1380         * DataGridView.cs: PaddingChanged is overridden.
1381
1382 2006-12-24  Chris Toshok  <toshok@ximian.com>
1383
1384         * Control.cs: corecompare work here too.
1385
1386         * DataGridViewElement.cs, DataGridView.cs,
1387         DataGridViewButtonCell.cs, DataGridViewRowCollection.cs,
1388         DataGridViewImageColumn.cs, DataGridViewComboBoxColumn.cs,
1389         DataGridViewImageCell.cs, DataGridViewCheckBoxCell.cs,
1390         DataGridViewHeaderCell.cs, DataGridViewCell.cs: more corcompare
1391         work.
1392
1393 2006-12-24  Miguel de Icaza  <miguel@novell.com>
1394
1395         * Control.cs: Switched the error message on the console for a
1396         todo.  A review of the code will have to cope with this anyways
1397         (since its a large feature, it is in our radar) and it was
1398         producing too much output when running PDN.
1399
1400         * ToolStripComboBox.cs: Set the text when the SelectedIndex
1401         changes.  Applications depend on this (PDN 2.72)
1402
1403 2006-12-23  Chris Toshok  <toshok@ximian.com>
1404
1405         * TableLayoutSettings.cs: finish up the corcompare work for this
1406         class.
1407
1408 2006-12-23  Chris Toshok  <toshok@ximian.com>
1409
1410         * Control.cs: make SetImplicitBounds internal, do some futzing
1411         with LayoutEngine so that it's available in 1.1, and remove the
1412         entire duplicated code mess from PerformLayout.  Use
1413         System.Windows.Forms.Layout.DefaultLayout instead.
1414
1415         * LayoutEngine.cs: make this class internal in 1.1, public in 2.0.
1416
1417 2006-12-23  Jonathan Pobst  <monkey@jpobst.com>
1418
1419         * Form.cs: Add MainMenuStrip property.
1420
1421 2006-12-23  Jonathan Pobst  <monkey@jpobst.com>
1422
1423         * Control.cs: Add ContextMenuStrip property and implementation.
1424         Fix ContextMenu implementation to show menu centered on control when
1425         activated using the keyboard instead of showing at screen (0,0).
1426
1427         * ToolStripDropDown.cs: Fix needed overload of Show ().
1428
1429 2006-12-23  Everaldo Canuto  <everaldo@simios.org>
1430
1431         * Menu.cs: Name property added for 2.0 profile.
1432         
1433 2006-12-23  Everaldo Canuto  <everaldo@simios.org>
1434
1435         * Menu.cs: Update information about FindMenuItem, method to be
1436         implemented soon.
1437
1438 2006-12-23  Everaldo Canuto  <everaldo@simios.org>
1439
1440         * MenuAPI.cs: When deselect items deselect also selected subitems.
1441         
1442 2006-12-23  Everaldo Canuto  <everaldo@simios.org>
1443
1444         * MenuAPI.cs: When hides menu set Wnd to null, it prevents
1445         FindSubItemByCoord to found itens that is not active, also an
1446         cheking added to FindSubItemByCoord to search for items only 
1447         in visible popup windows. Fixes #80274.
1448
1449 2006-12-22  Everaldo Canuto  <everaldo@simios.org>
1450
1451         * UserControl.cs: Remove MonoTodo and use InternalBorderStyle,
1452         internal property, it be care about change ExStyle. 
1453
1454 2006-12-22  Andreia Gaita  <avidigal@novell.com>
1455
1456         * ContainerControl.cs: set activeControl for parent forms up the 
1457         tree when the new activecontrol is a container.
1458         When validating the active control, if it is a container, also
1459         raise up the validation for it's active control. Fixes #80280
1460         
1461         * Control.cs: Add internal property flag and check to prevent
1462         Focus events from getting raised when Select() is called for
1463         a ContainerControl. There are still too many focus events being
1464         raised at the moment though.
1465         Cleaned up the code a bit.
1466
1467 2006-12-22  Rolf Bjarne Kvinge  <RKvinge@novell.com>
1468
1469         * Control.cs: Added all missing 2.0 events.and
1470         fixed a couple of corcompare issues.
1471         * TrackBar.cs: Implemented missing 2.0 bits.
1472         * MonthCalendar.cs, 
1473         * DateTimePicker.cs, 
1474         * MdiClient.cs: Fixed some corcompare issues.
1475
1476 2006-12-21  Jonathan Pobst  <monkey@jpobst.com>
1477
1478         * ContextMenuStrip.cs, FlowLayoutPanel.cs, SplitContainer.cs,
1479         SplitterPanel.cs: corecompare work.
1480
1481 2006-12-21  Jonathan Pobst  <monkey@jpobst.com>
1482
1483         * ToolStripContainer.cs, ToolStripDropDown.cs, StatusStrip.cs:
1484         Clean up warnings for BackgroundImageChanged and PaddingChanged
1485         events now that they are implemented in Control.cs.
1486
1487 2006-12-21  Jonathan Pobst  <monkey@jpobst.com>
1488
1489         * Control.cs: Make sure layout_engine isn't null before using it (2.0).
1490         
1491         * TableLayoutControlCollection.cs, TableLayoutPanel.cs, TableLayoutCellPosition.cs,
1492         TableLayoutSettings.cs, TableLayoutStyleCollection.cs: Initial implementation
1493         of TableLayoutPanel and supporting cast.
1494
1495 2006-12-21  Rolf Bjarne Kvinge  <RKvinge@novell.com>
1496
1497         * XplatUIWin32.cs: 
1498         - GrabWindow now confines the mouse pointer to the confine window.
1499         - Added Win32ClipCursor and Win32GetClipCursor.
1500
1501         * Control.cs: 
1502         - Added CaptureWithConfine to be able to capture and confine 
1503         mouse pointer.
1504         
1505         * InternalWindowManager.cs: 
1506         - Call CaptureWithConfine instead of Capture if we're an
1507         MdiChild (fixes #79982).
1508
1509 2006-12-21  Chris Toshok  <toshok@ximian.com>
1510
1511         * DataGrid.cs: guard against the initial state of selection, where
1512         selection_start == -1.  make sure we only select from index >= 0.
1513         Fixes bug #80291.
1514
1515 2006-12-21  Chris Toshok  <toshok@ximian.com>
1516
1517         * Control.cs: we don't need to be so draconian with
1518         UpdateDistances, and we thusly don't need to call it before
1519         calling PerformLayout in ResumeLayout.  Fixes bug #80289.
1520
1521 2006-12-21  Daniel Nauck  <dna@mono-project.de>
1522
1523         * ComboBox.cs,
1524         TextBox.cs: Implemented AutoComplete properties.
1525
1526 2006-12-20  Chris Toshok  <toshok@ximian.com>
1527
1528         * DataGridView*.cs: some corecompare work.
1529
1530 2006-12-20  Jackson Harper  <jackson@ximian.com>
1531
1532         * XplatUIX11.cs: We need to hide the caret when deleting it,
1533         otherwise you get carets left lying around everywhere.
1534         * TextBoxBase.cs: Kill then redraw the caret when scrolling.  This
1535         prevents getting some weird half drawn caret tracers when
1536         scrolling.
1537         * TextControl.cs: Attempt to reduce the number of times we need to
1538         recreate the caret.
1539
1540 2006-12-20  Gert Driesen  <drieseng@users.sourceforge.net>
1541
1542         * MonthCalendar.cs: Fixed previous month button. Removed extra tabs.
1543
1544 2006-12-19  Rolf Bjarne Kvinge  <RKvinge@novell.com>
1545
1546         * DateTimePicker.cs:
1547         - Implemented missing 2.0 bits.
1548         - Changed some default values to match MS.
1549         
1550 2006-12-20  Jackson Harper  <jackson@ximian.com>
1551
1552         * TextBoxBase.cs: When changing the font across the document we
1553         can't recalculate after changing each line, since that will cahnge
1554         the line count.
1555         - PreferredHeight is a little different than i thought.
1556         - When backspacing, move the caret before we do the actual char
1557         delete, because when that delete crosses a wrap boundary the
1558         positional information will change.
1559
1560 2006-12-19  Rolf Bjarne Kvinge  <RKvinge@novell.com>
1561
1562         * Control.cs: Added some missing 2.0 bits: 
1563         BackgroundImageLayout, BackgroundImageLayoutChanged, 
1564         OnPaddingChanged, MouseClick, MouseDoubleClick, PaddingChanged and 
1565         add IBindableComponent and IDropTarget implementation.
1566         
1567         * MonthCalendar.cs: 
1568         - Added all missing 2.0 features:
1569         BackgroundImageLayout, RightToLeftLayout, 
1570         OnHandleDestroyed, RightToLeftLayoutChanged, 
1571         BackgroundImageLayoutChanged, MouseClick, MouseDoubleClick,
1572         PaddingChanged.
1573         - Rewrote all the BoldDate code, it was completely broken.
1574         - Fixed all the tests (the tests can now be re-enabled, the
1575         problems were not with the tests, but with the control, it was
1576         mostly broken).
1577         
1578         * DateTimePicker.cs: Changed the location where the 
1579         MonthCalendar is shown.
1580         
1581 2006-12-19  Chris Toshok  <toshok@ximian.com>
1582
1583         * DataGridView.cs: add IDropTarget implementation.
1584
1585         * ToolStripPanel.cs: add IDropTarget implementation.
1586
1587 2006-12-19  Jackson Harper  <jackson@ximian.com>
1588
1589         * TextControl.cs: soft now means something different than what it
1590         used to mean, we want to move the caret regardless of whether or
1591         not this break was soft (would we really have wanted the caret
1592         to not move with the break in the old context?)
1593         * TreeView.cs: Make sure we factor in the vert scrollbar when
1594         calculating the horizontal scrollbar's maximum.
1595
1596 2006-12-19  Andreia Gaita  <avidigal@novell.org>
1597
1598         * SendKeys.cs: Fix Send() behaviour, clear keys after sending,
1599         check for keywords in alternate casing, close bug #80049.
1600
1601 2006-12-19  Chris Toshok  <toshok@ximian.com>
1602
1603         * ToolStripItem.cs: add the implementation of the 4 IDropTarget
1604         methods (which all do nothing).
1605
1606         * IDropTarget.cs: add the 4 missing methods.
1607
1608 2006-12-19  Chris Toshok  <toshok@ximian.com>
1609
1610         * TableLayoutRowStyleCollection.cs: corcompare work.
1611         
1612         * TableLayoutSettings.cs: same.
1613
1614         * TableLayoutStyle.cs: same.
1615
1616         * TableLayoutColumnStyleCollection.cs: same.
1617
1618 2006-12-19  Jonathan Pobst  <monkey@jpobst.com>
1619
1620         * ColumnStyle.cs, RowStyle.cs, TableLayoutStyle.cs: Plumbing for
1621         TableLayoutPanel I've had in my local tree for way too long.
1622
1623 2006-12-19  Miguel de Icaza  <miguel@novell.com>
1624
1625         * TableLayoutSettings.cs: Finish the public API (still needs all
1626         the logic to update on changes). 
1627
1628         * TableLayoutPanelCellPosition.cs: new file.
1629         
1630         * TableLayoutRowStyleCollection.cs,
1631         TableLayoutColumnStyleCollection, TableLayoutStyle.cs,
1632         TableLayoutSettings.cs: Track the final 2.0 table api.
1633
1634 2006-12-19  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1635
1636         * ColumnHeader.cs: Add Tag, Name, ImageKey, ImageIndex,
1637         and Image List 2.0 members for ColummnHeader.
1638         * ListView.cs: Add key-related 2.0 methods for
1639         ColumnHeaderCollection.
1640
1641 2006-12-19  Gert Driesen  <drieseng@users.sourceforge.net>
1642
1643         * ListViewItem.cs: Changed AddRange overloads to match MS: throw
1644         ArgumentNullException if items argument is null. Ignore null item in
1645         arrays. Removed extra tabs.
1646
1647 2006-12-19  Gert Driesen  <drieseng@users.sourceforge.net>
1648
1649         * MonthCalendar.cs: Fixed InvalidCastException.
1650
1651 2006-12-19  Jackson Harper  <jackson@ximian.com>
1652
1653         * TextControl.cs: Don't increment the position here.
1654         - When calculating char positions only add in the line break size
1655         for hard line breaks.
1656
1657 2006-12-19  Andreia Gaita  <avidigal@novell.org>
1658
1659         * SendKeys.cs: Changed some things to match ms.net behaviour
1660         when parsing shifted capital letters.
1661         
1662         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32, XplatUIOSX: 
1663         Add window handle as parameter to SendInput. X11 needs the 
1664         window handle, and the handle being passed      to it in the keys 
1665         queue is the active control handle (which windows needs), not 
1666         the window handle.
1667         
1668         XplatUIX11.cs, XplaUIX11-new.cs, X11Display: Implement SendInput 
1669         to support SendKeys on X.       
1670         
1671         * X11Keyboard: Implement helper method to lookup a linux keycode
1672         given the virtual keycode. Added table of keycode-2-virtualkey
1673         values to support this.
1674
1675 2006-12-19  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1676
1677         * ListView.cs: Add support for SelectedIndexCollection
1678         and SelectedItemCollection 2.0 methods. Implement support
1679         for ImageKey too.
1680         * ListViewItem.cs: Add support for ListViewSubItemCollection
1681         2.0 methods. Also, fix an incorrect behavior of AddRange method
1682         (it shouldn't call Clear).
1683         * ThemeWin32Classic.cs: Support for ListView.ImageKey 2.0 property.
1684
1685 2006-12-19  Jackson Harper  <jackson@ximian.com>
1686
1687         * RichTextBox.cs: 
1688         * TextBoxBase.cs: New args for FormatText
1689         * TextControl.cs: Rewrote the main drawing method, this version
1690         feels a little easier to understand and debug to me.  Hopefully it
1691         does to others also
1692         - Fix FormatText to OR in the new formating values.  Added
1693         FormatSpecified param, basically this works in the same way as
1694         BoundsSpecified in Control.
1695         - Set the caret properties when the caret is positioned.
1696         - When wrapping text make sure that we calculate the width of the
1697         last character
1698         - when calculating alignments we might have wrapped down to the
1699         next line, so don't search for an individual tag, search for the
1700         end of the line
1701         - We need to invalidate the selection area when we replace the
1702         selection.
1703         
1704 2006-12-19  Daniel Nauck  <dna@mono-project.de>
1705
1706         * Application.cs: add Restart () 2.0 support
1707
1708 2006-12-18  Everaldo Canuto  <everaldo@simios.org>
1709
1710         * MenuItem.cs: Invalidate menu item rectangle after change Enable
1711         property. Fixes #80268.
1712         
1713 2006-12-18  Everaldo Canuto  <everaldo@simios.org>
1714
1715         * MenuAPI.cs: Dont trigger select event when closes top menu
1716         item. Fixes #80270.
1717
1718 2006-12-18  Everaldo Canuto  <everaldo@simios.org>
1719
1720         * MenuAPI.cs: When you click on menuitem only trigger onselect
1721         event for top menu itens. Fixes #80271.
1722         
1723 2006-12-18  Rolf Bjarne Kvinge  <RKvinge@novell.com>
1724
1725         * MdiWindowManager.cs: Make IconicBounds depend on
1726         the bottom of MdiClient, not the top (fixes #80267)
1727         
1728 2006-12-18  Rolf Bjarne Kvinge  <RKvinge@novell.com>
1729
1730         * MdiClient.cs: Added missing 2.0 attribute
1731
1732 2006-12-18  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1733
1734         * ListViewItem.cs: Add Name and Tag 2.0 properties, as well
1735         as IndexOfKey, ContainsKey, RemoveByKey and indexer 2.0.
1736
1737 2006-12-18  Everaldo Canuto  <everaldo@simios.org>
1738
1739         * MenuAPI.cs: Fix click when menuitem is not popup,
1740         this regression was caused by last commit (#80272).
1741
1742 2006-12-17  Everaldo Canuto  <everaldo@simios.org>
1743
1744         * MenuAPI.cs: When a non-toplevel menuitem is clicked dont
1745         fire click event or close menu. Fixes #80272.
1746
1747 2006-12-17  Daniel Nauck  <dna@mono-project.de>
1748
1749         * ListViewHitTestInfo.cs: add
1750
1751 2006-12-17  Daniel Nauck  <dna@mono-project.de>
1752
1753         * ButtonBase.cs: Added FlatButtonAppearance 2.0 support.
1754         * FlatButtonAppearance.cs: add
1755         * DockingAttribute.cs: add
1756
1757 2006-12-17  Chris Toshok  <toshok@ximian.com>
1758
1759         * DataGrid.cs: hook up MetaDataChanged event on the list manager,
1760         and rebind our columns when it does - this way, if you make
1761         changes to the DataTable (or set the Table attribute on a DataView
1762         after setting it as the DataGrid's DataSource, the changes are
1763         made visible.)  Fixes bug #80107.
1764
1765 2006-12-17  Daniel Nauck  <dna@mono-project.de>
1766
1767         * ListViewGroup.cs: add internal Location property for layouting.
1768         * Theme.cs: add abstract ListViewGroupHeight function.
1769         * ThemeWin32Classic.cs: implement ListViewGroupHeight function.
1770
1771 2006-12-16  Andreia Gaita  <avidigal@novell.com>
1772
1773         * TabControl.cs: Fixed checks for NET_2_0-specific exceptions.
1774         Added reset of selected index to 0 when adding first tab page.
1775         Fixes #80264
1776         
1777         * NumericUpDown.cs: Fix NET_2_0 check
1778
1779 2006-12-16  Daniel Nauck  <dna@mono-project.de>
1780
1781         * ListViewGroup.cs: fixed DefaultValueAttribute value
1782
1783 2006-12-16  Daniel Nauck  <dna@mono-project.de>
1784
1785         * AutoCompleteStringCollection.cs: add new AutoCompleteStringCollection 2.0 class
1786
1787 2006-12-15  Miguel de Icaza  <miguel@novell.com>
1788
1789         * Button.cs, ComboBox.cs, ScrollBar.cs, UserControl.cs,
1790         TextBoxBase.cs, ListView.cs, ContainerControl.cs,
1791         ScrollableControl.cs: Add a handful of methods that are
1792         overwritten in 2.0 
1793
1794 2006-12-15  Chris Toshok  <toshok@ximian.com>
1795
1796         * XplatUIWin32.cs: initial implementation of the Reversible
1797         drawing functions.  there are some problems.  DrawReversibleFrame
1798         doesn't seem to work at all for Dashed FrameStyle, and in the
1799         Thick case there are drawing errors at the corners (we probably
1800         need to bind Rectangle instead of doing moveto/lineto's.)
1801
1802 2006-12-16  Andreia Gaita  <avidigal@novell.com>
1803         
1804         * SendKeys.cs: Implemented. SendKeys uses a new method in XPlatUI, SendInput, 
1805         to send blocks of key messages. Send accumulates keys to send with Flush, 
1806         while SendWait sends all keys immediately.
1807                 
1808         * XplaUI.cs, XplatUIDriver.cs, XplatUIOSX.cs, XplatUIWin32.cs, 
1809         XplatUIX11.cs,  XplatUIX11-new.cs:
1810         - Define SendInput and stubs for OSX and X11, implements Win32 with a call
1811         to Win32 SendInput.
1812         - Added INPUT support structures to XplatUIWin32 for Win32SendInput
1813         
1814         Tests:  It seems ms.net is hooking the keyboard to implement this, so doing unit
1815         testing for ms.net on this class is very tricky, as the tests run too fast 
1816         to allow the hook to release, essentially freezing the keyboard and the 
1817         test. So, barring a win32 miracle, they'll be commited in the ms-notworking     
1818         category :p
1819
1820 2006-12-16  Daniel Nauck  <dna@mono-project.de>
1821
1822         * Padding.cs: fixed serialization compability to MS ("_var" field names),
1823                         added missing attributes.
1824  
1825 2006-12-15  Daniel Nauck  <dna@mono-project.de>
1826
1827         * ListViewGroup.cs: Added missing attributes.
1828         * ListViewGroupCollection.cs: Added missing attributes.
1829
1830 2006-12-15  Daniel Nauck  <dna@mono-project.de>
1831
1832         * ListViewItem.cs: fixed ListViewSubItem text property.
1833
1834 2006-12-15  Rolf Bjarne Kvinge  <RKvinge@novell.com>
1835         
1836         * Control.cs: Added missing 2.0 attributes
1837         
1838 2006-12-15  Rolf Bjarne Kvinge  <RKvinge@novell.com>
1839         
1840         * MdiClient.cs: Added missing 2.0 attribute.
1841         * MonthCalendar.cs: Added some missing 2.0 attributes 
1842         and properties.
1843         
1844 2006-12-15  Daniel Nauck  <dna@mono-project.de>
1845
1846         * ListView.cs: implemented ListViewItemCollection Add 2.0 support.
1847
1848 2006-12-15  Jonathan Pobst  <monkey@jpobst.com>
1849
1850         * MainMenu.cs: Add the new 2.0 constructor to help out people
1851         using the MainMenu in VS2005.
1852
1853 2006-12-15  Rolf Bjarne Kvinge  <RKvinge@novell.com>
1854         
1855         * MdiChildContext.cs: Removed it, no longer used.
1856         * MdiClient.cs: Added missing 2.0 attributes.
1857         
1858 2006-12-15  Rolf Bjarne Kvinge  <RKvinge@novell.com>
1859         
1860         * InternalWindowManager.cs: Fix a NullRef with previous 
1861         changes for toolwindows.
1862         
1863 2006-12-15  Rolf Bjarne Kvinge  <RKvinge@novell.com>
1864
1865         * Control.cs: 
1866         - Added AfterTopMostControl to allow for certain controls 
1867         to always stay on top when normal controls are brought to 
1868         front.
1869         
1870         * XplatUIWin32.cs: 
1871         - (DrawInversibleRectangle): Get window rectangle from Win32 
1872         in stead of from control, since Win32 doesn't calculate
1873         screen coords correctly from control's Location if it 
1874         have docked siblings.
1875         
1876         * MdiWindowManager.cs:
1877         - Correct the control menu popup location when clicked on
1878         the maximized form icon. (fixes #80223.1)
1879         - Don't show moving rectangle if mouse hasn't moved from
1880         the original clicked point.
1881         - Removed FormGotFocus handler (not used).
1882         - Calculate the control buttons location from the main
1883         window's size and not client size (fixes #79770).
1884         - Form is now closed when the form icon is double-clicked
1885         (fixes #79775). 
1886         - Correct NCCalcSize numbers a little bit (fixes #80223.2)
1887         
1888         * InternalWindowManager.cs:
1889         - Moved some MDI-only methods to MdiWindowManager.
1890         - Removed unused properties and methods.
1891         - Unified method naming for methods handling wm messages.
1892         - Moved all message handling to seperate methods for
1893         each message.
1894         
1895         * ThemeWin32Classic.cs:
1896         - DrawManagedWindowDecorations now draws the title bar 
1897         with a gradient brush.
1898         - Add a CPDrawButtonInternal that allows us to specify
1899         light, normal and dark colors for the buttons (control 
1900         buttons for MDI children were drawn with the same light
1901         color as the background, therefore loosing the 3D effect).
1902         
1903         * SizeGrip.cs:
1904         - Add a CapturedControl property that is used to 
1905         determine the control to resize (defaults to parent). 
1906         Needed for MdiClient, since its SizeGrip's parent is
1907         MdiClient, but the control to resize is the main form.
1908         
1909         * MdiClient.cs:
1910         - Set SizeGrip's CapturedControl to the main form in order
1911         to resize the main form and not the MdiClient.
1912         - Override AfterTopMostControl to leave the scrollbars 
1913         always on top.
1914
1915 2006-12-15  Daniel Nauck  <dna@mono-project.de>
1916
1917         * ListView.cs: fixed ListViewItemCollection AddRange and
1918                         implemented ListViewItemCollection AddRange 2.0 support.
1919
1920 2006-12-15  Daniel Nauck  <dna@mono-project.de>
1921
1922         * ListViewGroup.cs: Add.
1923         * ListViewGroupCollection.cs: Add
1924         * ListView.cs: Add ListViewGroup (Group) and ShowGroups 2.0 support.
1925         * ListViewItem.cs: Add ListViewgroup (Group), ListViewGroups constructors and
1926                                 stub for ImageKey 2.0 support.
1927
1928 2006-12-14  Mike Kestner  <mkestner@novell.com>
1929
1930         * ListView.cs: add text padding to the autocalculation for columns
1931         of width -2.  Fixes #80207.
1932  
1933 2006-12-14  Mike Kestner  <mkestner@novell.com>
1934
1935         * ListView.cs: add some index guarding for partial row navigation 
1936         logic.  Fixes #80250.
1937
1938 2006-12-14  Mike Kestner  <mkestner@novell.com>
1939
1940         * ListView.cs: throw ArgumentExceptions when parented ListViewItems
1941         are added or inserted to the collection.  Fixes #81099.
1942
1943 2006-12-13  Everaldo Canuto  <everaldo@simios.org>
1944
1945         * MenuAPI.cs: Closes menu when right click out side of popup
1946         it fix problem in ContextMenu and MainMenu. Fixes #80252.
1947
1948 2006-12-13  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1949
1950         * ListViewItem.cs: Fix dumb error.
1951
1952         * ListView.cs: Add Find and ContainsKey methods in 
1953         ListViewItemCollection, and also return true for IsReadOnly
1954         and IsFixedSize (changes for 2.0). 
1955
1956 2006-12-13  Gert Driesen  <drieseng@users.sourceforge.net>
1957
1958         * Control.cs: Allow Region to be set to null.
1959
1960 2006-12-13  Rolf Bjarne Kvinge  <RKvinge@novell.com>
1961
1962         * MdiWindowManager.cs: Remove unused (commented out) code.
1963         * Form.cs: When the MdiChild is maximized, the form needs 
1964         WM_NCMOUSELEAVE, so request it.
1965         * InternalWindowManager.cs: 
1966         - Added tooltips to control buttons.
1967         - Removed duplicated control button handling code.
1968         - Removed unused (commented out) code.
1969         
1970 2006-12-12  Everaldo Canuto  <everaldo@simios.org>
1971
1972         * MenuAPI.cs: Set cursor to default in popup menus, a XplatUI.SetCursor 
1973         was used because we must set cursor without trigger ChangeCursor event
1974         and without change Cursor control property. Fixes #79963.
1975
1976 2006-12-12  Andreia Gaita  <avidigal@novell.com>
1977         
1978         * Control.cs: Check if Region setter value is null, and ignore
1979
1980 2006-12-12  Jackson Harper  <jackson@ximian.com>
1981
1982         * TextControl.cs: We were almost always drawing one more line then
1983         needed, since the GetLineByPixel will return the last line found
1984         at that pixel. In most cases though, we were invalidating up to
1985         the junction between two lines.
1986         - Improve debug code.
1987
1988 2006-12-12  Chris Toshok  <toshok@ximian.com>
1989
1990         * XplatUI.cs: add static DrawReversibleFrame, DrawReversibleLine,
1991         and FillReversibleRectangle.
1992
1993         * XplatUIDriver.cs: add abstract DrawReversibleFrame, DrawReversibleLine,
1994         and FillReversibleRectangle.
1995
1996         * XplatUIWin32.cs: add stubs which do nothing for
1997         DrawReversibleFrame, DrawReversibleLine, and
1998         FillReversibleRectangle.
1999
2000         * XplatUIOSX.cs: add stubs which raise NIE for
2001         DrawReversibleFrame, DrawReversibleLine, and
2002         FillReversibleRectangle.
2003
2004         * XplatUIX11.cs: add working implementation for
2005         DrawReversibleFrame, DrawReversibleLine, and
2006         FillReversibleRectangle.
2007         
2008         * ControlPaint.cs: implement DrawReversibleFrame,
2009         DrawReversibleLine, and FillReversibleRectangle, by calling into
2010         the appropriate XplatUI method.
2011
2012 2006-12-11  Rolf Bjarne Kvinge  <RKvinge@novell.com>
2013
2014         * Form.cs: Make MdiClient have the focus even if it's
2015         not selectable, since it should receive WM_KEY* and WM_MOUSE 
2016         messages. Fixes #79907.
2017         
2018 2006-12-11  Rolf Bjarne Kvinge  <RKvinge@novell.com>
2019
2020         * Hwnd.cs: Save the CreateParams.ExStyle so that it can be
2021         queried after the window is created.
2022         
2023         * XplatUIX11.cs: Added SendParentNotify to implement 
2024         WM_PARENTNOTIFY logic. Fixes #79965.
2025         
2026         * Control.cs: Added MakeParam.
2027         
2028 2006-12-11  Rolf Bjarne Kvinge  <RKvinge@novell.com>
2029
2030         * MdiClient.cs: Resume Layout before setting window
2031         states (fixes #80201).
2032
2033 2006-12-11  Rolf Bjarne Kvinge  <RKvinge@novell.com>
2034
2035         * MenuAPI.cs: Deselect a menu item after performing
2036         the click (fixes #80197).
2037
2038 2006-12-11  Jackson Harper  <jackson@ximian.com>
2039
2040         * TextBoxBase.cs: We need to cap this value, since Maximum -
2041         ViewPortHeight can be less than zero.
2042         - Only do selection with the left mouse button.
2043         * TextBox.cs: Don't tell the world that we have a context menu.
2044         * Control.cs: New method so that we can control whether or not the
2045         context menu is visible outside MWF.
2046
2047 2006-12-11  Everaldo Canuto  <everaldo@simios.org>
2048
2049         * ToolBarButton.cs: Fix text positon. 
2050
2051 2006-12-11  Miguel de Icaza  <miguel@novell.com>
2052
2053         * ProgressBar.cs (MarqueeAnimationSpeed): Add stub.
2054
2055         * Control.cs (DoubleBuffered): Add implementation.
2056
2057         * Application.cs (OpenForms): Add.
2058
2059 2006-12-11  Jonathan Pobst  <monkey@jpobst.com>
2060
2061         * Form.cs: Use opacity instead of Opactiy to determine if we need
2062         to set the WS_EX_LAYERED bit.  [Fixes bug #80185]
2063
2064 2006-12-11  Jonathan Pobst  <monkey@jpobst.com>
2065
2066         * Control.cs: Fix NRE if Control.Site was set to null.
2067
2068 2006-12-11  Chris Toshok  <toshok@ximian.com>
2069
2070         * Control.cs: ControlCollection.Remove should return if the arg is
2071         null, and ControlCollection.SetChildIndex should raise a ANE.
2072
2073 2006-12-11  Gert Driesen  <drieseng@users.sourceforge.net>
2074
2075         * Control.cs: Verify value set for Dock property. Code formatting
2076         updates.
2077
2078 2006-12-11  Jackson Harper  <jackson@ximian.com>
2079
2080         * TextControl.cs: Draw the caret and the selection when a flag is
2081         set on the owner.
2082         * TextBoxBase.cs: We want to draw the caret and the selection for
2083         TextBox but not for TextBoxBase.
2084         - If the window is resized and scrolling is no longer needed (the
2085         whole doc is visible) set the scroll position to zero.
2086         - The default SelectWord (the one TextBox uses) should move the
2087         caret to the end of the word.
2088         - SelectAll moves the caret to the end of the selection.
2089         * TextBox.cs: We don't selectall on focus, we just do it when the
2090         control is created.
2091         
2092 2006-12-11  Mike Kestner  <mkestner@novell.com>
2093
2094         * ComboBox.cs: stub in a 2.0 override for ProcessKeyEventArgs.
2095
2096 2006-12-11  Carlos Alberto Cortez <calberto.cortez@gmail.com>
2097
2098         * ListView.cs: Add Insert, IndexOfKey, RemoveByKey and indexer 
2099         2.0 support.
2100         * ListViewItem.cs: Add Name 2.0 property.
2101
2102 2006-12-11  Andreia Gaita  <avidigal@novell.com>
2103
2104         * TabControl.cs: Set visibility on selected or default tab 
2105         when tabcontrol handle is created, so that it's contents
2106         actually show up (duh). Fixes #80193
2107         Don't redraw the control if there is no handle created, as
2108         the selected index might be completely invalid. Added some tests
2109         to check for this.
2110
2111 2006-12-11  Everaldo Canuto  <everaldo@simios.org>
2112
2113         * ToolBar.cs: Uses maximun width and height of all buttons as 
2114         button rectangle when ButtonSize specified, it looks strange but
2115         is what happens in Win32. Fixes #80189.
2116
2117 2006-12-11  Jackson Harper  <jackson@ximian.com>
2118
2119         * TextControl.cs: Need to track undo levels ourself, since
2120         compound actions will mess them up.
2121
2122 2006-12-10  Andreia Gaita  <avidigal@novell.com>
2123
2124         * TabControl.cs: Raise SelectedIndexChanged for 1.1 if the
2125         SelectedIndex value is changed (even if it's not valid).
2126         Reset SelectedIndex to 0 when the handle is created and if
2127         the current index is invalid.
2128         Fixes SelectdeIndex unit tests and #80128
2129
2130 2006-12-08  Chris Toshok  <toshok@ximian.com>
2131
2132         * DataGrid.cs (set_CurrentCell): because EnsureCellVisibility
2133         calls EndEdit, it needs to be called before we set current_cell to
2134         its new value.  Otherwise, we end up committing the value in the
2135         textbox to the new cell as well.  Fixes bug #80160.
2136
2137 2006-12-08  Chris Toshok  <toshok@ximian.com>
2138
2139         * Form.cs (set_CancelButton): if the button's DialogResult is
2140         None, set it to Cancel.  Fixes bug 80180.
2141
2142 2006-12-08  Jackson Harper  <jackson@ximian.com>
2143
2144         * TextBoxBase.cs: Ugh, ClientSize can be 0,0 sometimes, so we need
2145         to watch ourselves when setting the canvas size and setting the
2146         scrollbar values.
2147
2148 2006-12-08  Chris Toshok  <toshok@ximian.com>
2149
2150         * DataGrid.cs: comment out the two MakeTransparent calls for the
2151         time being so people using trunk (and not 1.2.2) on windows can
2152         actually use the datagrid.  This deals with bug #80151.
2153
2154 2006-12-08  Jonathan Pobst  <monkey@jpobst.com>
2155
2156         * ThemeWin32Classic.cs: Change ButtonBase_DrawImage to use the
2157         Graphics.DrawImage (image, int, int, int, int) overload instead
2158         of Graphics.DrawImage (image, int, int).  GDI+ can't figure out
2159         the dpi difference and was blurring images it drew.
2160         [Fixes bug #79960]
2161
2162 2006-12-08  Chris Toshok  <toshok@ximian.com>
2163
2164         * ThemeWin32Classic.cs (DataGridPaintRows): handle case where
2165         rowcnt is 0 (such as with an empty datasource), and make sure we
2166         initialize not_usedarea.Y to cells.Y, so we don't draw over the
2167         other areas (caption, parent row, etc, etc).  Fixes bug #80095.
2168
2169 2006-12-08  Chris Toshok  <toshok@ximian.com>
2170
2171         * DataGridColumnStyle.cs (SetDataGrid): don't try to access a null
2172         grid.
2173
2174 2006-12-08  Chris Toshok  <toshok@ximian.com>
2175
2176         [ Fixes bug #80167 ]
2177         
2178         * ThemeWin32Classic.cs: don't draw the image if the button's flat
2179         style is FlatStyle.System.
2180
2181         * ButtonBase, ThemeClearlooks.cs, ThemeGtk.cs, ThemeNice.cs: make
2182         ButtonBase.flat_style private, and switch uses of it to the public
2183         property.
2184         
2185 2006-12-08  Chris Toshok  <toshok@ximian.com>
2186
2187         [ Fixes bug #80121 ]
2188         
2189         * ThemeWin32Classic.cs: center the caption text in the datagrid
2190         when we draw it.
2191
2192         * DataGrid.cs: lessen the amount we add to the caption height from
2193         6 to 2.  6 was making it huge.
2194
2195 2006-12-08  Andreia Gaita  <avidigal@novell.com>
2196
2197         * UpDownBase: Handle MouseWheel call directly instead of capturing
2198         the inner textbox's OnMouseWheel. Fixes #80166
2199
2200 2006-12-08  Jackson Harper  <jackson@ximian.com>
2201
2202         * TextControl.cs: We need to invalidate the textbox when we empty
2203         it (how had this not been discovered before?)
2204
2205 2006-12-08  Jackson Harper  <jackson@ximian.com>
2206
2207         * TextBoxBase.cs: Reworked the mouse down code so I could get it
2208         to behave like MS, we now ignore the eventargs.Click and just
2209         track state ourself, which we were already doing anyways.
2210         - Constrain the double click handler to the double click size.
2211         
2212 2006-12-08  Chris Toshok  <toshok@ximian.com>
2213
2214         * DataGrid.cs: the mousewheel code shouldn't try to scroll in a
2215         direction if that scrollbar isn't shown.  fixes bug #80158.
2216
2217 2006-12-08  Andreia Gaita  <avidigal@novell.com>
2218
2219         * NumericUpDown.cs: Update value on getter. Fixes #79950
2220
2221 2006-12-08  Chris Toshok  <toshok@ximian.com>
2222
2223         * MenuItem.cs: add back in the event cloning code.  I didn't know
2224         how to do it in the face of the EventHandlerList work i'd done
2225         last week.  Fixes bug #80183.
2226
2227 2006-12-08  Jonathan Pobst  <monkey@jpobst.com>
2228
2229         * Control.cs: Add an invalidate to the BackgroundImage setter.
2230         [Fixes 80184]
2231
2232 2006-12-07  Jonathan Pobst  <monkey@jpobst.com>
2233
2234         * ToolStrip*: Add some small properties reported by MoMA, fix event
2235         firing and default properties based off of unit tests, and add some
2236         attributes based off of the class status page.
2237
2238 2006-12-07  Jackson Harper  <jackson@ximian.com>
2239
2240         * TextBoxBase.cs: Take HideSelection into account when determining
2241         whether or not to show the selection.
2242         * RichTextBox.cs: After inserting the RTF into the document move
2243         the cursor to the beginning of the document.
2244
2245 2006-12-07  Jonathan Pobst  <monkey@jpobst.com>
2246
2247         * Control.cs: Remove static ArrayList "controls" which maintained
2248         a reference to every control created.
2249         * Application.cs: Create a static FormCollection to maintain a reference
2250         to every form created.  Use it in places that formerly enumerated through
2251         the controls one looking for forms.
2252         * Form.cs: Add and remove self from above FormCollection.
2253
2254 2006-12-07  Alexander Olk  <alex.olk@googlemail.com>
2255
2256         * MimeIcon.cs: gdk_pixbuf_save_to_buffer is part of libgdk-pixbuf,
2257           not libgdk (though it makes me wonder why I didn't have any
2258           problems)
2259
2260 2006-12-07  Chris Toshok  <toshok@ximian.com>
2261
2262         [ you had to know this was coming after that last commit...]
2263         
2264         * XplatUIX11.cs: implement the 3 Offscreen functions in terms of
2265         XPixmaps (CreateOffscreenDrawable maps to XCreatePixmap,
2266         DestroyOffscreenDrawable to FreePixmap, and BlitFromOffscreen to
2267         XCopyArea).
2268
2269 2006-12-07  Chris Toshok  <toshok@ximian.com>
2270
2271         * XplatUI.cs: add 3 calls (CreateOffscreenDrawable,
2272         DestroyOffscreenDrawable, and BlitFromOffscreen) that encompass
2273         all the behavior we need for double buffering.
2274
2275         * XplatUIDriver.cs: implement the 3 double buffer methods using a
2276         client side Bitmap, just like the old Control-based double buffer
2277         code did.  The methods are virtual, so each XplatUI driver
2278         subclass can replace the implementation to use a faster, platform
2279         specific approach.
2280
2281         * Control.cs: make use of the 3 Offscreen XplatUI calls in the
2282         double buffer code, and clean things up a bit in the process.
2283
2284 2006-12-06  Chris Toshok  <toshok@ximian.com>
2285
2286         * Control.cs: reindent WndProc.
2287
2288 2006-12-06  Chris Toshok  <toshok@ximian.com>
2289
2290         [ I wanna be like BenM when I grow up ]
2291         
2292         * Hwnd.cs: create a single static Graphics object on the static
2293         Bitmap we create.  use this for our text measurements.
2294
2295         * Control.cs (DeviceContext): stop using the backbuffer's dc_mem.
2296         This was causing us to allocate a backbuffer for every control,
2297         even when it wasn't flagged as double buffered.  Instead use the
2298         single graphics instance.  This might have implications for
2299         multithreaded applications.  If we run into problems we can switch
2300         to creating 1 Graphics per control, on the static Hwnd bitmap.
2301
2302         this change nets us a 7M savings in private dirty mappings when
2303         running FormsTest.exe.
2304
2305 2006-12-06  Chris Toshok  <toshok@ximian.com>
2306
2307         * ListView.cs: the BackgroundImage override is just to set
2308         attributes.  chain up to base.BackgroundImage.
2309
2310         * RichTextBox.cs: same.
2311
2312         * ToolBar.cs: same, but we need to also redraw the toolbar when it
2313         changes, so instead a handler for BackgroundImageChanged.
2314         
2315         * Control.cs: make background_image private.
2316
2317 2006-12-06  Chris Toshok  <toshok@ximian.com>
2318
2319         * ScrollBar.cs: change the assignment of cursor to Cursor.  not
2320         sure we even need this assignment, but roll with it for now.
2321
2322         * Control.cs: make the cursor field private.
2323
2324 2006-12-06  Chris Toshok  <toshok@ximian.com>
2325
2326         * Form.cs: we don't need to explicitly set ImeMode to
2327         ImeMode.NoControl - that's a natural fallout of Control.ImeMode's
2328         behavior in the face of ImeMode.Inherit.
2329
2330         * ButtonBase.cs: change DefaultImeMode to ImeMode.Disable, and
2331         change the ctor's assignment to use ImeMode instead of ime_mode.
2332
2333         * Control.cs (get_ImeMode): don't assume DefaultImeMode ==
2334         ImeModeInherit.  Only check for the parent's imemode (and return
2335         NoControl if there is no parent) if ime_Mode == ImeMode.Inherit.
2336         This fixes the button unit test, which sets both ImeMode and
2337         DefaultImeMode to ImeMode.Disable.
2338
2339         also make the ime_mode field private.
2340
2341 2006-12-06  Chris Toshok  <toshok@ximian.com>
2342
2343         * Control.cs: make control_style private.
2344
2345         * TextBoxBase.cs: fix the HandleClick override.  it was explicitly
2346         setting the styles to true, then setting them to false instead of
2347         reverting to their previous values.
2348
2349         also, call SetStyle on the scrollbars instead of using
2350         control_style directly.
2351
2352 2006-12-06  Jonathan Pobst  <monkey@jpobst.com>
2353
2354         * FormCollection.cs: Implement. [2.0]
2355
2356 2006-12-06  Chris Toshok  <toshok@ximian.com>
2357
2358         * Control.cs: make tab_stop private.
2359
2360         * Label.cs: set TabStop, not tab_stop.  reformat some event
2361         add/remove methods to make them more compact.
2362
2363 2006-12-06  Chris Toshok  <toshok@ximian.com>
2364
2365         * RadioButton.cs: fix TabStop handling.
2366
2367 2006-12-06  Chris Toshok  <toshok@ximian.com>
2368
2369         * TextBox.cs: remove the explicit assignments to has_focus.
2370         Control does that.
2371
2372         * ButtonBase.cs: remove the assignment to has_focus.  Control will
2373         manage that.
2374         
2375 2006-12-06  Chris Toshok  <toshok@ximian.com>
2376
2377         * ButtonBase.cs: remove all uses of is_enabled from this code.
2378         it's always true when any of the code containing the checks is
2379         executed.
2380
2381 2006-12-06  Chris Toshok  <toshok@ximian.com>
2382
2383         * ImageList.cs: reinstate the ShouldSerialize*/Reset* methods,
2384         with different semantics (some are present in both 1.1 and 2.0
2385         profiles) so that we match MS's behavior in our unit tests.
2386
2387 2006-12-06  Jackson Harper  <jackson@ximian.com>
2388
2389         * TextControl.cs: Make this operation undoable.
2390         * TextBoxBase.cs: Factor the border width into the preferred
2391         height.
2392         - implement Modified as per the spec.
2393
2394 2006-12-06  Chris Toshok  <toshok@ximian.com>
2395
2396         * Timer.cs, Control.cs, Menu.cs: make control_tag private.
2397
2398 2006-12-06  Chris Toshok  <toshok@ximian.com>
2399
2400         * Control.cs: make right_to_left and context_menu fields private.
2401
2402 2006-12-06  Chris Toshok  <toshok@ximian.com>
2403
2404         * AccessibleObject.cs, Control.cs, XplatUIX11GTK.cs,
2405         XplatUIX11.cs, Form.cs, RadioButton.cs, ScrollableControl.cs: make
2406         Control.child_controls private.  switch all uses over to
2407         Control.Controls.
2408
2409 2006-12-06  Chris Toshok  <toshok@ximian.com>
2410
2411         * System.Windows.Forms/GroupBox.cs,
2412         System.Windows.Forms/AccessibleObject.cs,
2413         System.Windows.Forms/ErrorProvider.cs,
2414         System.Windows.Forms/Control.cs,
2415         System.Windows.Forms/UpDownBase.cs,
2416         System.Windows.Forms/ScrollBar.cs,
2417         System.Windows.Forms/DateTimePicker.cs,
2418         System.Windows.Forms/Form.cs, System.Windows.Forms/Label.cs,
2419         System.Windows.Forms/ToolTip.cs,
2420         System.Windows.Forms/RadioButton.cs,
2421         System.Windows.Forms/LinkLabel.cs,
2422         System.Windows.Forms/Splitter.cs,
2423         System.Windows.Forms/TextBoxBase.cs,
2424         System.Windows.Forms/ToolStripTextBox.cs,
2425         System.Windows.Forms/ContainerControl.cs,
2426         System.Windows.Forms/ThemeWin32Classic.cs,
2427         System.Windows.Forms/SizeGrip.cs,
2428         System.Windows.Forms/ToolStripDropDown.cs,
2429         System.Windows.Forms/ScrollableControl.cs: Make Control.parent
2430         private.  switch all uses over to Control.Parent.
2431
2432 2006-12-06  Chris Toshok  <toshok@ximian.com>
2433
2434         * RichTextBox.cs: don't assign to has_focus in GotFocus/LostFocus.
2435         Control does this before calling emitting these events.
2436
2437         * TabControl.cs: same.
2438
2439         * ThemeWin32Classic.cs: use Control.ClientRectangle instead of
2440         Control.client_rect.
2441
2442         * ButtonBase.cs: use the ClientSize property instead of the
2443         client_size field.
2444
2445         * ScrollableControl.cs: same.
2446
2447         * Control.cs: another pass at making properties private.  also,
2448         move the initialization of tab_stop to the ctor.
2449
2450 2006-12-05  Andreia Gaita <avidigal@novell.com>
2451
2452         * TabControl.cs: Let the selected index be set freely if the 
2453         control handle is not yet created.
2454
2455 2006-12-05  Jonathan Pobst  <monkey@jpobst.com>
2456
2457         * Control.cs: Revert dist_top, dist_right, and dist_bottom to 
2458         internal until I can rewrite DefaultLayout.
2459         * ToolStrip.cs: Fix build error and some general cleaning.
2460         * ToolStripControlHost.cs, SplitterPanel.cs, DataGridView.cs:
2461         Fix build errors caused by making some of Control's fields private.
2462
2463 2006-12-05  Jackson Harper  <jackson@ximian.com>
2464
2465         * TextControl.cs: Redo Insert a little so that it use IndexOf
2466         instead of Split, this prevents it from messing up on things like
2467         \n\n\n. Also more effecient since the split array doesn't need to
2468         be created.
2469         * TextBoxBase.cs: AppendText doesnt handle multiline and non
2470         multiline text differently, this is the first of many fixes that
2471         will make multiline/non-multiline the same thing as far as the
2472         TextBoxBase is concerned.
2473         - Don't split the text and insert lines, this can lose some line
2474         endings (like is the last line a soft or hard break). Instead use
2475         the new Insert.
2476         - Fix an off by one when combining all the lines in the Text
2477         getter.
2478         - Remove separate multiline handling from the Text getter/setter.
2479
2480 2006-12-05  Chris Toshok  <toshok@ximian.com>
2481
2482         * ButtonBase.cs: a few changes:
2483
2484         - don't reinitialize internal Control fields in the ctor when they
2485         have the same values as Control sets them.
2486
2487         - don't set has_focus in OnGotFocus/OnLostFocus.  Control does
2488         this before calling those methods.
2489
2490         - we don't need to call Refresh for anything.  use Invalidate
2491         instead.
2492
2493         - OnEnabledChanged doesn't need to redraw at all - Control.cs
2494         calls Refresh in its OnEnabledChanged.
2495         
2496         - several of the events we were registered for in the ctor to
2497         redraw ourselves already include calls to Invalidate in the
2498         property setters that raise the events.  remove the extra
2499         invalidation.
2500
2501         - reformat a switch statement that was 83274658 columns wide.
2502         
2503 2006-12-05  Mike Kestner  <mkestner@novell.com>
2504
2505         * ComboBox.cs: fix a unit test regression from a TextBox
2506         SelectionLength return of -1 when there's no selection.  
2507
2508 2006-12-05  Chris Toshok  <toshok@ximian.com>
2509
2510         * Control.cs, Button.cs, ThemeGtk.cs, Form.cs, ListView.cs,
2511         ThemeWin32Classic.cs, SizeGrip.cs, ToolBar.cs: first pass at
2512         cleaning up some of the internal Control fields being used by
2513         subclasses.
2514
2515 2006-12-05  Mike Kestner  <mkestner@novell.com>
2516
2517         * ComboBox.cs: fix some Simple mode regressions.  Set Visible on the
2518         listbox after AddImplicit calls since it defaults to hidden. Add a 
2519         hack to preserve requested heights across DropDownStyle changes.
2520
2521 2006-12-05  Jonathan Pobst  <monkey@jpobst.com>
2522
2523         * PropertyGrid.cs: Hide FindFirstItem method from public API.
2524
2525 2006-12-05  Chris Toshok  <toshok@ximian.com>
2526
2527         * DataGridView.cs: fix compiler warnings.
2528
2529         * PrintControllerWithStatusDialog.cs: same.
2530
2531         * ToolBar.cs: same.
2532
2533         * FolderBrowserDialog.cs: same.
2534
2535         * Splitter.cs: same.
2536
2537         * DataGridViewComboBoxCell.cs: same.
2538
2539         * XplatUIWin32.cs: same.
2540
2541         * PictureBox.cs: same.
2542
2543         * Win32DnD.cs: same.
2544
2545         * PageSetupDialog.cs: same.
2546
2547         * FileDialog.cs: same.
2548
2549         * PrintDialog.cs: same.
2550
2551         * DataGridTextBoxColumn.cs: same.
2552
2553         * DrawTreeNodeEventArgs.cs: same (and fix corcompare)
2554
2555 2006-12-05  Chris Toshok  <toshok@ximian.com>
2556
2557         * TextBox.cs, CheckedListBox.cs, MonthCalendar.cs, Menu.cs,
2558         MainMenu.cs, ListView.cs, LabelEditTextBox.cs, ToolBar.cs: more
2559         System.ComponentModel.EventHandlerList work.
2560
2561 2006-12-05  Jonathan Chambers  <joncham@gmail.com>
2562
2563         * DrawTreeNodeEventArgs.cs: Added.
2564
2565 2006-12-05  Rolf Bjarne Kvinge  <RKvinge@novell.com>
2566         
2567         * InternalWindowManager.cs: Remove an unused field.
2568         
2569 2006-12-05  Rolf Bjarne Kvinge  <RKvinge@novell.com>
2570
2571         * InternalWindowManager.cs:
2572         - Save the point where the title bar is clicked.
2573         
2574         * MdiWindowManager.cs:
2575         - Only allow moving of the window as long as the 
2576         clicked point on the title bar does not get out of
2577         MdiClient's rectangle. Fixes #79982.
2578         
2579         * MdiClient.cs:
2580         - Added Horizontal/VerticalScrollbarVisible.
2581         - Simplified the scrollbar sizing algorithm.
2582         - Cache the difference in scrolled value in
2583         H/VBarValueChanged and move the calculation out
2584         of the for loop.
2585
2586 2006-12-05  Rolf Bjarne Kvinge  <RKvinge@novell.com>
2587
2588         * Control.cs: Make the Console.WriteLine in WndProc 
2589         write more info.
2590
2591 2006-12-05  Chris Toshok  <toshok@ximian.com>
2592
2593         * ToolStripManager.cs, ToolStripButton.cs,
2594         ToolStripContentPanel.cs, ToolStripComboBox.cs, ToolStrip.cs,
2595         ToolStripMenuItem.cs, ToolStripItem.cs, ToolStripControlHost.cs,
2596         ToolStripSplitButton.cs, ToolStripSeparator.cs,
2597         ToolStripRenderer.cs, ToolStripDropDownItem.cs,
2598         ToolStripProgressBar.cs, ToolStripContainer.cs,
2599         ToolStripTextBox.cs, ToolStripPanel.cs, ToolStripDropDown.cs: move
2600         to using System.ComponentModel.EventHandlerList.
2601
2602 2006-12-04  Chris Toshok  <toshok@ximian.com>
2603
2604         * LinkLabel.cs: fix up compiler warnings.
2605
2606         * TableLayoutSettings.cs: same.
2607
2608         * TreeView.cs: same.
2609
2610         * ToolBar.cs: same.
2611
2612         * TabControl.cs: same.
2613
2614         * RichTextBox.cs: same.
2615
2616         * ListViewItem.cs: same.
2617
2618         * PropertyGrid.cs: same.
2619
2620         * DataGridViewRowPostPaintEventArgs.cs: corcompare fix.
2621
2622         * ToolTip.cs same.
2623
2624         * TextRenderer.cs: fix up compiler warnings.
2625
2626         * Label.cs: same.
2627
2628         * Form.cs: corcompare fixes.
2629
2630         * PictureBox.cs: fix up compiler warnings.
2631
2632         * ImageListStreamer.cs: same.
2633
2634         * TrackBar.cs: corcompare fix.
2635
2636         * Control.cs: fix up compiler warnings.
2637
2638         * SplitterPanel.cs: same.
2639
2640         * NumericTextBox.cs: same.
2641
2642         * ImageList.cs: same.
2643
2644         * StatusStrip.cs: same.
2645
2646         * ProgressBar.cs: corcompare fix.
2647
2648         * ToolStripButton.cs: fix up compiler warnings.
2649
2650         * ToolStripStatusLabel.cs: same.
2651
2652         * ToolStripSplitButton.cs: same.
2653
2654         * ToolStripSeparator.cs: same.
2655
2656         * ToolStripProgressBar.cs: same.
2657
2658         * ToolStripDropDownMenu.cs: same
2659
2660         * ToolStripDropDown.cs: same.
2661
2662         * ToolStripDropDownButton.cs: same.
2663
2664         * ToolStrip.cs: same.
2665
2666         * ToolStripControlHost.cs: same.
2667
2668         * ToolStripContentPanel.cs: same.
2669
2670         * ToolStripDropDown.cs: same.
2671
2672         * ToolStripContainer.cs: same.
2673
2674         * ToolStripPanel.cs: same, and add "new" where we need it to work
2675         with the new ArrangedElementCollection.
2676
2677         * ToolStripItemCollection.cs: add "new" where we need it to work
2678         with the new ArrangedElementCollection.
2679
2680 2006-12-04  Andreia Gaita <avidigal@novell.com>
2681
2682         * TabControl.cs: Fix default tab selection to after TabControl
2683         gets focus and not before. Fixes #80128
2684
2685 2006-12-04  Chris Toshok  <toshok@ximian.com>
2686
2687         * DataGridTableStyle.cs: remove the gross calling of
2688         datagrid.Refresh from here.  It's a broken idea and it doesn't
2689         work anyway.
2690
2691         * DataGrid.cs: instead, just register/unregister from the
2692         DataGridTableStyle events in CurrentTableStyle.  we play it
2693         conservatively and EndEdit + CalcAreasAndInvalidate on any event,
2694         even though some would most likely not require it.  Fixes bug
2695         #80115 (and one portion of #80117 as a side effect).
2696
2697 2006-12-04  Chris Toshok  <toshok@ximian.com>
2698
2699         * DataGrid.cs (set_CaptionVisible): EndEdit before doing the work
2700         so the textbox (if any) goes away.  Fixes bug #80117.
2701
2702 2006-12-04  Chris Toshok  <toshok@ximian.com>
2703
2704         * DataGridColumnStyle.cs: set the column's readonly property
2705         initially based on the property descriptor's IsReadOnly.  Fixes
2706         bug #80044.
2707
2708 2006-12-04  Chris Toshok  <toshok@ximian.com>
2709
2710         * ComboBox.cs: wrap the dropdown style changing work in
2711         SuspendLayout/ResumeLayout.  Fixes bug #79968.
2712
2713 2006-12-04  Jackson Harper  <jackson@ximian.com>
2714
2715         * TextBoxBase.cs: Fix off by one, since these are one-based.
2716         * TextBox.cs: Select all the text when we get focus.  The TextBox
2717         does this but the RTB does not.
2718
2719 2006-12-04  Chris Toshok  <toshok@ximian.com>
2720
2721         * DataGridTextBoxColumn.cs: remove some spew.
2722
2723         * DataGridColumnStyle.cs (SetColumnValueAtRow): this seems right
2724         but some part of me is saying "it shouldn't be here.."  At any
2725         rate, it fixes bug #80046.  Call IEditableObject.EndEdit after
2726         setting the value.
2727
2728 2006-12-04  Chris Toshok  <toshok@ximian.com>
2729
2730         * DataGridColumnStyle.cs (SetDataGrid): call CheckValidDataSource
2731         to reassign the propertydescriptor.
2732
2733 2006-12-04  Jackson Harper  <jackson@ximian.com>
2734
2735         * TextBoxBase.cs:
2736         * TextControl.cs: Remove some unused variables.  Maybe this will
2737         patch things up between mike and I.
2738         - don't split lines less then one char wide, if the viewport is
2739         that small text won't be visible anyways.
2740         
2741 2006-12-04  Jackson Harper  <jackson@ximian.com>
2742
2743         * TextBoxBase.cs: Default selection length is -1, need to do some
2744         more testing on windows to see when this is used for the property.
2745         - Redid the Lines [] property to that we properly remove soft line
2746         breaks
2747         - added support for preserving carriage returns
2748         -  CanUndo is not a variable like 'is undo enabled' it just returns
2749         true if there is undo operations available.
2750         - AppendText doesn't need to grab the last tag itself anymore,
2751         this happens automatically when we move the cursor.
2752         * TextControl.cs: Add CompoundActions to the undo class. This
2753         allows combining the other operations into one big option.  ie a
2754         paste will combine { delete old, insert new, move cursor }
2755         - Add InsertString undo operation
2756         - New method for deleting multiline text
2757         - Add carriage returns to lines. So we can preserve carriage
2758         returns when text is 'roundtripped'
2759
2760 2006-12-04  Chris Toshok  <toshok@ximian.com>
2761
2762         * DataGrid.cs (CalcCellsArea): cells_area.Width/Height are at a
2763         minimum 0.  Fixes the scrollbar exception in bug #80136.
2764
2765 2006-12-04  Rolf Bjarne Kvinge  <RKvinge@novell.com>
2766
2767         * MdiClient.cs: 
2768         * MdiWindowManager: Removed unused fields and methods.
2769         
2770 2006-12-04  Rolf Bjarne Kvinge  <RKvinge@novell.com>
2771         
2772         * StatusBar.cs: Update all panels when a AutoSize=Contents
2773         panel needs updating.
2774         
2775         * StatusBarPanel.cs: Remove twidth and only use initialize.
2776         Fixes #80031.
2777                 
2778 2006-12-04  Rolf Bjarne Kvinge  <RKvinge@novell.com>
2779
2780         * Form.cs: When a form's MdiParent is set add it directly
2781         on top of the z-order in stead of relying on MdiClient's
2782         ActivateChild to do it. Fixes #80135.
2783         
2784         * MdiClient.cs: 
2785         - Remove original_order, mdi_child_list is already doing
2786         the same thing.
2787         - Create mdi_child_list on construction in
2788         stead of first use (avoids a few null checks).
2789
2790         * MenuItem.cs: Use an already existing list of mdi children
2791         to get the correct order of children and remove the other
2792         redundant list.
2793
2794 2006-12-04  Chris Toshok  <toshok@ximian.com>
2795
2796         * PropertyGridView.cs: cached_splitter_location is only used in
2797         !DOUBLEBUFFER code.
2798
2799         * PropertyGrid.cs: implement the ComComponentNameChanged event
2800         using Events, hoping that would fix the warning.  Looks like a
2801         compiler bug instead (#80144).
2802
2803         * PropertyManager.cs: remove unused method.
2804
2805 2006-11-04  Everaldo Canuto  <everaldo@simios.org>
2806
2807         * ThemeWin32Classic.cs: Dont draw arrow when menuitem on menubar, 
2808         include parentesis to fix expression evaluation. Fixes #79634.
2809
2810 2006-11-02  Everaldo Canuto  <everaldo@simios.org>
2811         
2812         * MenuAPI.cs:
2813         - Changes to fix behavior in Menu control, some reported in #80097
2814         and other detected during behavior refactory like a select event
2815         problems.
2816         - Remove unneded "if's" conditions.
2817         - Created an internal to flag when popup is active in control, we need 
2818         it because in .NET you can have menu active but without popup active
2819         when you active menu using popup without visible items.
2820         - Mimic win32 behavior for Select and Popup events.  
2821         - Dont open popup menu when you dont have visible subitems.
2822         - Do nothing when click on disabled menu item.
2823         - Some small changes to follow the coding style guidelines.
2824         - Unselect menu only when another control gives focus. Fixes #80097.
2825         - Remove unused code.
2826         
2827         * MenuItem.cs: internal VisibleItems method to check if menu
2828         theres visible subitems, it will be usefull to fix some 
2829         behavior in Menu control.
2830         
2831 2006-11-01  Everaldo Canuto  <everaldo@simios.org>
2832         
2833         * Timer.cs: Tag property for 2.0 profile.
2834         
2835 2006-12-01  Chris Toshok  <toshok@ximian.com>
2836
2837         [ after removing all warning suppressions, this cleans up over 100 warnings. ]
2838         
2839         * Win32DnD.cs: comment out some unused fields.
2840
2841         * XplatUIWin32.cs: comment out some unused pinvokes, and remove
2842         some unused properties/methods.
2843
2844         * XplatUIX11.cs: fix MousePosition so we override the base class's
2845         property instead of conflicting with it.
2846
2847         * PictureBox.cs: comment out some unused fields
2848
2849         * OSXStructs.cs: make some struct fields public.
2850
2851         * XplatUIOSX.cs: comment out some unused pinvokes, and fix
2852         MousePosition so we override the base class's property instead of
2853         conflicting with it.
2854
2855         * X11Dnd.cs: comment out some unused fields
2856
2857         * X11DesktopColors.cs: fix some struct field visibility to quiet
2858         the compiler.
2859
2860         * X11Dnd.cs: remove some debug code.
2861
2862         * ThemeClearlooks.cs: comment out unused field.
2863
2864         * ThemeNice.cs: mark some methods as overriding ThemeWin32Classic as needed.
2865
2866         * ThemeGtk.cs: comment out some unused pinvokes.
2867
2868         * Timer.cs: remove some unused fields.
2869
2870         * ThemeClearlooks.cs: comment out unused field.
2871
2872         * UpDownBase.cs: comment out unused field.
2873
2874         * DataObject.cs: comment out unused field.
2875
2876         * DataGridBoolColumn.cs: reomve unused field.
2877
2878         * DataGrid.cs: remove unused field.
2879
2880         * Cursor.cs: remove old ToBitmap code.
2881
2882         * ControlPaint.cs: remove unused method.
2883
2884         * ScrollBar.cs: remove unused fields.
2885
2886         * ComboBox.cs: remove unused field, and chain up to
2887         AccessibleObject ctor.
2888
2889         * ListBox.cs: remove unused field.
2890
2891         * ButtonBase.cs: wrap a couple fields in NET_2_0.
2892
2893         * GridEntry.cs: remove unused fields.
2894
2895         * Binding.cs: remove unused fields.
2896
2897         * AxHost.cs: remove unused method.
2898
2899         * ContainerControl.cs: remove unused field.
2900
2901         * ScrollableControl.cs: remove unused fields.
2902
2903 2006-12-01  Chris Toshok  <toshok@ximian.com>
2904
2905         * XplatUI.cs, XplatUIWin32.cs, XplatUIGTK.cs: nuke
2906         the Where/WhereString stuff.  it's easy enough to CWL
2907         Environment.StackTrace.
2908
2909         * XplatUIX11.cs: same, but also fix up a lot of mcs warnings about
2910         unused private fields.
2911
2912 2006-12-01  Jackson Harper  <jackson@ximian.com>
2913
2914         * TextControl.cs: Do not update the view while inserting multiline
2915         text. If we update the view we might wrap lines, before entering
2916         the new lines, which causes the new line insertion calculations to
2917         be totally fubared.
2918         - Remove an old TODO
2919         - Make debug output a little nicer
2920         
2921 2006-12-01  Chris Toshok  <toshok@ximian.com>
2922
2923         * ToolBar.cs: revert the ImeMode fix here and add an XXX comment.
2924
2925 2006-12-01  Chris Toshok  <toshok@ximian.com>
2926
2927         [ fix the majority of the CS0108 warnings we've been suppressing ]
2928         
2929         * TreeView.cs: mark BackgroundImageChanged as 'new'.
2930
2931         * ToolBar.cs: ImeMode just passes stuff to Control.  Rename Layout
2932         to "LayoutToolBar" to quiet mcs.
2933         
2934         * TabControl.cs: mark our ControlCollection class as 'new'.
2935
2936         * TextBoxBase.cs: mark some events as 'new'.
2937
2938         * Splitter.cs: TabStop is 'new'.
2939
2940         * ControlBindingsCollection.cs: mark a few methods as new since
2941         they change the visibility from protected to public.
2942
2943         * RadioButton.cs: DoubleClick -> base class, and remove unused
2944         HaveDoubleClick.
2945
2946         * MonthCalendar.cs: ImeMode property -> base class, and mark many
2947         events as new.
2948
2949         * NumericUpDown.cs: TextChanged -> base class.
2950
2951         * CheckedListBox.cs: mark our ObjectCollection class as new to
2952         quiet mcs.
2953
2954         * FolderBrowserDialog.cs: make HelpRequest event new and have it
2955         muck with the base class.
2956
2957         * StatusBar.cs: fix some mcs warnings about Update being the same
2958         name as a base class method.
2959
2960         * RichTextBox.cs: mark some events as new, and make them do things
2961         to the base class impl.
2962
2963         * UserControl.cs: mark TextChanged as new, and have it manipulate
2964         base.TextChanged.
2965
2966         * UpDownBase.cs: mark some things new.
2967
2968         * CheckBox.cs: mark DoubleClick "new", and add some text about
2969         what we need to look at.
2970
2971         * Panel.cs: make the events "new", and manipulate the base
2972         version.  these are just here for attributes.
2973
2974         * AccessibleObject.cs: make owner private.
2975
2976         * Control.cs: deal with AccessibleObject.owner being private.
2977         cache our own copy if we need it.
2978
2979         * Button.cs: add "new" to the DoubleClickEvent.
2980
2981         * ListBox.cs: no need to track our own has_focus here.  let
2982         Control.has_focus do it for us.  Also some other work to clear up
2983         warnings about not overriding base class methods of the same name.
2984         
2985         * ComboBox.cs: clear up some warnings about not override base
2986         class methods of the same name.
2987
2988 2006-12-01  Chris Toshok  <toshok@ximian.com>
2989
2990         * Form.cs: flag a few things as "new" to quiet some of the mcs
2991         warnings.
2992
2993         * AxHost.cs: same.
2994
2995         * PrintPreviewDialog.cs: same.
2996
2997         * DataGridView.cs: fix a ton of corcompare warnings.  not all, but
2998         now DGV isn't so horrible on the class status page.  also, move
2999         all events to using System.ComponentModel.EventHandlerList.  my
3000         wrists hurt.
3001
3002 2006-12-01  Rolf Bjarne Kvinge  <RKvinge@novell.com>
3003
3004         * MdiWindowManager.cs:
3005         - Set form to active mdi child if shown,
3006         and update the active mdi child to the next 
3007         remaining child in the z-order if the form is hidden.
3008
3009         * Form.cs: 
3010         - Track if the form has been visible and if its 
3011         visibility is beeing changed, so that the MdiClient
3012         can properly decide the ActiveMdiChild. The MdiClient 
3013         cannot track this since the form can change visibility 
3014         before MdiClient is created.
3015
3016         * MdiClient.cs:
3017         - Don't activate anything of the parent form is changing
3018         its visibility.
3019         - Rework ActiveMdiChild to only return visible mdi 
3020         children and take into account several other corner 
3021         cases.
3022
3023 2006-12-01  Chris Toshok  <toshok@ximian.com>
3024
3025         * IBindableComponent.cs: new 2.0 interface.
3026
3027 2006-12-01  Gert Driesen  <drieseng@users.sourceforge.net>
3028
3029         * DataGrid.cs: Font for caption area is bold by default.
3030
3031 2006-12-01  Everaldo Canuto  <everaldo@simios.org>
3032
3033         * Menu.cs: Tag property for 2.0.
3034         
3035 2006-11-01  Everaldo Canuto  <everaldo@simios.org>
3036
3037         * ThemeWin32Classic.cs: Adjust menu separator drawing. 
3038         
3039 2006-12-01  Chris Toshok  <toshok@ximian.com>
3040
3041         * TreeView.cs: doh, the Begin* events should be
3042         TreeViewCancelEventHandler.
3043
3044 2006-12-01  Chris Toshok  <toshok@ximian.com>
3045
3046         * Form.cs: Form.ControlCollection already stores off the
3047         form_owner field.  don't access the base class's internal "owner"
3048         field.
3049
3050         * Control.cs: make all the fields in Control.ControlCollection
3051         private.  there's no need for any internal fields here.
3052
3053 2006-12-01  Chris Toshok  <toshok@ximian.com>
3054
3055         * DataGrid.cs: call SetDataSource instead of CalcGridAreas in
3056         OnHandleCreated.  Fixes bug #80109.
3057
3058 2006-12-01  Chris Toshok  <toshok@ximian.com>
3059
3060         * Button.cs, PropertyGridTextBox.cs, ComboBox.cs,
3061         SplitContainer.cs, Control.cs, StatusStrip.cs,
3062         DataGridTableStyle.cs, MenuItem.cs, DomainUpDown.cs, ImageList.cs,
3063         NumericTextBox.cs, NumericUpDown.cs, Panel.cs, CommonDialog.cs,
3064         DataGrid.cs, ScrollBar.cs, TrackBar.cs, PictureBox.cs,
3065         DateTimePicker.cs, StatusBar.cs, Form.cs, PrintPreviewDialog.cs,
3066         Label.cs, UserControl.cs, CheckBox.cs, RadioButton.cs,
3067         LinkLabel.cs, ListControl.cs, PropertyGrid.cs, Splitter.cs,
3068         MenuStrip.cs, FolderBrowserDialog.cs, NotifyIcon.cs,
3069         TextBoxBase.cs, ListView.cs, DataGridBoolColumn.cs,
3070         PrintPreviewControl.cs, RichTextBox.cs, ListBox.cs, TabControl.cs,
3071         DataGridColumnStyle.cs, ContextMenu.cs, TreeView.cs:
3072
3073         do most of the work to convert our code over to use
3074         System.ComponentModel.Component.Events for
3075         adding/removing/dispatching events.
3076
3077
3078 2006-11-30  Jonathan Pobst  <monkey@jpobst.com>
3079
3080         * DataGridView.cs: Fix an ArgumentNullException reported 
3081         twice today in IRC.
3082
3083 2006-11-30  Mike Kestner  <mkestner@novell.com>
3084
3085         * ComboBox.cs: fix the scrollbar mouse event forwarding in the 
3086         grabbed listbox.  Fixes #80036 and #80101.
3087
3088 2006-11-30  Rolf Bjarne Kvinge <RKvinge@novell.com>
3089
3090         * Message.cs: Changed ToString() to match MS.
3091         
3092 2006-11-30  Jackson Harper  <jackson@ximian.com>
3093
3094         * TextBoxBase.cs: You can still change the selected text on a read
3095         only textbox.
3096         * TextControl.cs: Lower magic number for wrap calculations. This
3097         lets text get closer to the right (far) edge.
3098
3099 2006-11-30  Jonathan Pobst  <monkey@jpobst.com>
3100
3101         * Control.cs: Tweak 2.0 layout properties.
3102         * Form.cs: Switch ToolStripMenuTracker hooks to ToolStripManager.
3103         * TextRenderer.cs: Add a new overload.
3104         * ToolStrip*: Huge amount of changes and new features.
3105
3106 2006-11-30  Mike Kestner  <mkestner@novell.com>
3107
3108         * ComboBox.cs: fixes for LargeChange and Maximum to get the 
3109         scroll range correct.  Fixes #79994.
3110
3111 2006-11-30  Rolf Bjarne Kvinge <RKvinge@novell.com>
3112
3113         * MdiWindowManager.cs: Update main form's text when
3114         a form is closed. (fixes #80038)
3115         
3116 2006-11-30  Everaldo Canuto  <everaldo@simios.org>
3117
3118         * ToolBar.cs:
3119         - Fix an regression in ButtonSize.
3120         - Get ImeMode default value change to "Disable".
3121         - Get ShowTooltips default value change to true, default value is 
3122         "false" but after make a test in .NET we get "true" result as default.
3123         
3124 2006-11-29  Jonathan Pobst  <monkey@jpobst.com>
3125
3126         * ToolStripDropDown.cs: Fix for SupportsTransparency change.
3127
3128 2006-11-29  Chris Toshok  <toshok@ximian.com>
3129
3130         * XplatUIWin32.cs (GetWindowTransparency): check return value of
3131         GetLayeredWindowAttributes.  if it's 0, return 1.0, as
3132         SetWindowTransparency hasn't been called.
3133
3134 2006-11-29  Chris Toshok  <toshok@ximian.com>
3135
3136         * Form.cs (set_TransparencyKey): only call SetWindowTransparency
3137         if it's supported.
3138         (set_AllowTransparency): reorder things a little so that the
3139         WS_EX_LAYERED style is removed properly.
3140
3141 2006-11-29  Chris Toshok  <toshok@ximian.com>
3142
3143         [ totally cosmetic eye-candy feature, fixes bug #80089 ]
3144         
3145         * Form.cs: only call the XplatUI transparency method (get/set) if
3146         SupportsTransparency says it's supported. Otherwise fallback to
3147         doing nothing (in the set case) or returning the instance field we
3148         cache (in the get case).
3149
3150         * XplatUIStructs.cs: add TransparencySupport flag enum.
3151         
3152         * XplatUIDriver.cs: add abstract GetWindowTransparency, and track
3153         change to SupportsTransparency.
3154
3155         * XplatUIOSX.cs: stub out GetWindowTransparency, and return
3156         TransparencySupport.None from SupportsTransparency.
3157
3158         * XplatUIX11.cs: Stub out GetWindowTransparency, and return
3159         TransparencySupport.Set from SupportsTransparency.
3160
3161         * XplatUIWin32.cs: implement GetWindowTransparency calling
3162         GetLayeredWindowAttributes, and implement SupportsTransparency by
3163         checking whether or not both
3164         GetWindowTransparency/SetWindowTransparency are available
3165         entrypoints.  We need to do this since SetWindowTransparency is
3166         available as of win2k, but GetWindowTransparency requires winxp.
3167         yay win32 api.
3168
3169         * XplatUI.cs: Add GetWindowTransparency, and change
3170         SupportsTransparency to allow for either/both Get/Set.
3171
3172 2006-11-29  Chris Toshok  <toshok@ximian.com>
3173
3174         * DataGrid.cs: keep from going into an infinite loop redrawing a
3175         datagrid that has no datasource.  Fixes bug #80033.
3176
3177 2006-11-29  Chris Toshok  <toshok@ximian.com>
3178
3179         * MenuItem.cs: fix the NRE when we assign text (and therefore call
3180         Invalidate) before the mainmenu has been assigned to a control.
3181
3182 2006-11-29  Chris Toshok  <toshok@ximian.com>
3183
3184         * DataGrid.cs: detect when we should be double the double click
3185         row/column autosize stuff, although that codepath has yet to be
3186         written.  part of the work for bug #79891.
3187
3188 2006-11-29  Chris Toshok  <toshok@ximian.com>
3189
3190         * Binding.cs (SetControl): fix unit test.
3191
3192 2006-11-29  Carlos Alberto Cortez <calberto.cortez@gmail.com>
3193
3194         * PageSetupDialog.cs: Validate the margins and set them in
3195         PageSettings. 
3196         * NumericTextBox.cs: New class to mimic the behavior of the
3197         textboxes used in the printing dialogs.
3198
3199 2006-11-29  Andreia Gaita  <avidigal@novell.com>
3200         
3201         * Form.cs: Revert previous change (remove call UpdateBounds
3202         from form constructor), because it messes with the handle creation
3203         order, and that one needs lots and lots of love.
3204         * PrintPreviewDialog.cs: Revert change to CreateHandle (add check
3205         for valid printer and throw InvalidPrinterException if document
3206         is set but printer not valid), adding a MonoTODO. Once 
3207         handle creation is done properly, we can put this back in.
3208
3209 2006-11-28  Everaldo Canuto  <everaldo@simios.org>
3210
3211         * MenuItem.cs: Create a invalidate method for menu item, to be
3212         calling from set text, it make text changes to imadiate update
3213         on screen. Fixes #80013. 
3214         
3215 2006-11-28  Everaldo Canuto  <everaldo@simios.org>
3216
3217         * ToolBar.cs: Fixes and simplify toolbar button layout, it 
3218         fixes bug #80070 and some other problem on toolbar buttons
3219         layout.
3220
3221 2006-11-28  Everaldo Canuto  <everaldo@simios.org>
3222
3223         * ThemeWin32Classic.cs: Paint toolbar toggle button background 
3224         with dotted brush.      Fixes #79564
3225         
3226 2006-11-28  Andreia Gaita  <avidigal@novell.com>
3227
3228         * Form.cs: Removed call to UpdateBounds on Form
3229         constructor, it was causing a call to CreateHandle
3230         before it was supposed to.
3231         * PrintControllerWithStatusDialog: Applied patch
3232         by Chris Toshok to hide controller when there are
3233         no printers available.
3234         PrintDialog.cs: initialize printer settings to 
3235         null - correct DefaultValues test #5
3236         * PrintPreviewControl.cs: Move PrintController
3237         initialization to GeneratePreview
3238         * PrintPreviewDialog.cs: 
3239         - Remove Preview generation     from Document_set(). It is 
3240         called on OnPaint
3241         - Throw InvalidPrinterException on CreateHandle if
3242         a Document is set but there are no printers or 
3243         printer is not valid.
3244         * ThemeWin32Classic: don't paint PrintPreviewControl
3245         if there is nothing to paint    
3246
3247 2006-11-28  Miguel de Icaza  <miguel@novell.com>
3248
3249         * Form.cs: Add another popular method.
3250
3251         * TabPage.cs: ditto.
3252
3253 2006-11-28  Rolf Bjarne Kvinge  <RKvinge@novell.com>
3254
3255         * MenuItem.cs: Fixed a warning.
3256         * InternalWindowManager: Fixed a warning.
3257
3258 2006-11-28  Rolf Bjarne Kvinge  <RKvinge@novell.com>
3259
3260         * MenuItem.cs:
3261         - When cloning a menu also clone MdiList and clone the 
3262           window menu items properly (as the forms and menuitems
3263           are kept in an internal hashtable, these need updating 
3264           as well)
3265         - Rewrote the window menu code, menu items are added in the
3266           order the forms were added to their parent, and they are
3267           updated every time the window menu is shown (before the
3268           list was only generated once, in the current order of the
3269           forms, and would never be updated). A checkmark is shown
3270           next to the item corresponding to the active mdi child.
3271
3272 2006-11-28  Rolf Bjarne Kvinge  <RKvinge@novell.com>
3273
3274         * XplatUIStructs.cs: 
3275         - Added WM_NCMOUSEHOVER and WM_NCMOUSELEAVE.
3276         
3277         * XplatUIWin32.cs: 
3278         - Added TME_NONCLIENT to TMEFlags.
3279         - Handles WM_NCMOUSEMOVE in GetMessage to 
3280           generate WM_NCMOUSEHOVER and WM_NCMOUSELEAVE messages.
3281
3282         * MdiWindowManager:
3283         - Now merges mdi child menu to parent menu when maximized.
3284         - Recalculate NC areas of both mdi child and mdi parent. 
3285           Fixes #79757 (4).
3286           on window state and size changes.Fixes #79844 (3).
3287         - Handle WM_NCCALCSIZE to properly calculate borders.
3288
3289         * Form.cs:
3290         - Add/remove to the mdi containers list of mdi children 
3291           in the order they are added.
3292         - Pass on WM_NCLBUTTONUP, WM_NCMOUSEMOVE and WM_NCMOUSELEAVE 
3293           to the maximized mdi child.
3294         
3295         * InternalWindowManager.cs:
3296         - Only execute a click on the control buttons on the mouse up,
3297           not on the mouse down. Show the state of the button 
3298           (was only showing Normal state, never Pressed state). The
3299           pressed button now follows the mouse (if you click the Close 
3300           button and move the mouse over the Maximize button, the 
3301           Maximize button will be shown as pressed). Since Win32 does
3302           not generate WM_NCLBUTTONUP if you release the button outside
3303           of the nc area, we need to handle WM_NCMOUSELEAVE and treat
3304           it as a mouse up.
3305         
3306         * ThemeWin32Classic.cs:
3307         - Draw a missing border around mdi child forms. Fixes #79844 (2).
3308
3309         * MdiClient.cs:
3310         - Added a list of forms which contains the order the forms are
3311           added to the mdi parent.
3312         - Handle WM_NCPAINT to properly draw a 3D border. Fixes #79844 (2).
3313         - Handle WM_NCCALCSIZE to properly calculate the 3D border.
3314         - If the active form changes set the scrollbars to the top
3315           of the Z order, otherwise the form could hide them.
3316         - Scrollbars are now sized according to ClientSize, not 
3317           to Size, and they take into account the other scrollbar
3318           to determine maximum.
3319         
3320 2006-11-28  Rolf Bjarne Kvinge <RKvinge@novell.com>
3321         
3322         * XplatUI.cs:
3323         * XplatUIDriver.cs:
3324         * XplatUIX11.cs:
3325         * XplatUIWin32.cs:
3326         * XplatUIOSX.cs:
3327         - Added RequestAdditionalWM_NCMessages for windows to 
3328           opt in for WM_NCMOUSELEAVE and WM_NCMOUSEHOVER.
3329           Currently only implemented in XplatUIWin32.
3330
3331 2006-11-27  Chris Toshok  <toshok@ximian.com>
3332
3333         * Hwnd.cs: only add the hwnd to the windows hash in
3334         set_WholeWindow and set_ClientWindow if whole_window/client_window
3335         are not IntPtr.Zero.  also, remove the unused SetObjectWindow.
3336
3337 2006-11-27  Mike Kestner  <mkestner@novell.com>
3338
3339         * ComboBox.cs: remove redundant OnDropDown call.  It is called
3340         from the ComboListBox.ShowWindow code. Fixes #79969.
3341
3342 2006-11-27  Chris Toshok  <toshok@ximian.com>
3343
3344         * Hwnd.cs: remove the setters for ExposePending and
3345         NCExposePending - noone uses them.
3346
3347 2006-11-27  Jackson Harper  <jackson@ximian.com>
3348
3349         * TextControl.cs: new param for ReplaceSelection which determines
3350         whether we select the new selection, or set the cursor to the end
3351         of the new selection.
3352         * TextBoxBase.cs: Use new param for ReplaceSelection.  When
3353         pasting, select the new text.
3354         * RichTextBox.cs: Use new param for ReplaceSelection.
3355
3356 2006-11-27  Jackson Harper  <jackson@ximian.com>
3357
3358         * TextBoxBase.cs: Set the selection to the caret after the caret
3359         is moved, otherwise they get out of sync.
3360
3361 2006-11-26  Everaldo Canuto  <everaldo@simios.org>
3362
3363         * ToolBar.cs: Fixe size of ToolBar when AutoSize is false,
3364         it fixes #80015
3365
3366 2006-11-26  Everaldo Canuto  <everaldo@simios.org>
3367
3368         * ThemeWin32Classic.cs: 
3369         - Fix toolbar drop down arrow position.
3370         - Fix drop down appearance when ToolBar.Appearance is normal,
3371         it fixes #80018.
3372         
3373 2006-11-26  Gert Driesen  <drieseng@users.sourceforge.net>
3374
3375         * ProgressBar.cs: GetStyle fixes for 2.0 profile.
3376         * Control.cs: Same.
3377         * UpDownBase.cs: Same.
3378         * ButtonBase.cs: Same.
3379         * ScrollBar.cs: Same.
3380         * TrackBar.cs: Same.
3381         * PictureBox.cs: Same.
3382         * UserControl.cs: Same.
3383         * Label.cs: Same.
3384         * ListControl.cs: Same.
3385         * TextBoxBase.cs: Same.
3386         * ListView.cs: Same.
3387         * RichTextBox.cs: Same.
3388         * TreeView.cs: Same.
3389
3390 2006-11-25  Jordi Mas i Hernandez <jordimash@gmail.com>
3391
3392         * PrintDialog.cs:
3393         - Text label for where 
3394         - Text label comment was not shown
3395
3396 2006-11-23  Everaldo Canuto  <everaldo@simios.org>
3397
3398         * ThemeWin32Classic.cs: Fix toolbar drop down arrow size.
3399
3400 2006-11-23  Rolf Bjarne Kvinge  <RKvinge@novell.com> 
3401
3402         * InternalWindowManager.cs: 
3403         - Handle WM_PARENTNOTIFY to activate the form
3404         if any child control is clicked.
3405         - The form is only sizable if not minimized.
3406
3407         * MdiWindowManager.cs:
3408         - Save the IconicBounds if the form is moved.
3409         - Rework SetWindowState, now the window bounds 
3410         are stored only if the old window state is Normal.
3411         
3412         * MdiClient.cs:
3413         - In SetWindowStates store the old window state if 
3414         the window is maximized and restore window state if
3415         the window looses focus.
3416         - Don't handle any scrollbar value changes if 
3417         initializing the scroll bars. Fixes #79771.
3418         - Reworked ArrangeIconicWindows. Current algorithm
3419         tests bounds agains all other minimized windows, if
3420         any intersections create new bounds (going left to 
3421         right, bottom to top) and then test again. When 
3422         successful the bounds are saved and never computed
3423         again. Fixes #79774.
3424
3425 2006-11-23  Rolf Bjarne Kvinge  <RKvinge@novell.com> 
3426
3427         * InternalWindowManager.cs: Added HandleTitleBarUp.
3428
3429 2006-11-23  Gert Driesen  <drieseng@users.sourceforge.net>
3430
3431         * NumericUpDown.cs: In .NET 1.1, user entered text is still
3432         hexadecimal in ParseUserEdit.
3433
3434         
3435 2006-11-23  Rolf Bjarne Kvinge  <RKvinge@novell.com> 
3436
3437         * MdiWindowManager.cs: 
3438         - Handle a click on the form's icon to show the 
3439         system menu (when maximized). Fixes #79775.
3440         - Change the existing click handler for the form's
3441         icon when not maximized to show on MouseUp.
3442         Fixes #79776.
3443
3444         * Form.cs: In OnResize only layout the mdi child's
3445         parent if it actually has a parent. Might not if
3446         the window is closing.
3447
3448
3449 2006-11-23  Gert Driesen  <drieseng@users.sourceforge.net>
3450
3451         * MdiClient.cs: Ignore active MDI client for text of parent, if
3452         child has no text set.
3453
3454 2006-11-23  Gert Driesen  <drieseng@users.sourceforge.net>
3455
3456         * ToolBar.cs: Fixed ToString to match MS.
3457
3458 2006-11-22  Andreia Gaita  <avidigal@novell.com>
3459
3460         * NumericUpDown: 
3461         - Fix DecimalPlaces, Hexadecimal and ThousandsSeparator to 
3462         update inner values on set. Fixes #79966.
3463         - Override OnLostFocus to update value on NET 2. Fixes #79950.
3464         - Fix hexadecimal parsing.
3465         
3466         * UpDownBase: Override OnGotFocus and OnLostFocus to notify 
3467         parent. Fixes #79957
3468
3469 2006-11-22  Rolf Bjarne Kvinge  <RKvinge@novell.com>
3470
3471         * Control.cs: After calling SetWindowsPos in SetBoundsCore 
3472         the actual size has to be queried, since if height /
3473         width is negative Win32 changes it to 0. 
3474         Fixes #79999 on Windows.
3475         
3476         * XplatUIX11.cs: Set height / width to 0 if negative
3477         in SetWindowPos. Fixes #79999 on Linux.
3478         
3479 2006-11-22  Everaldo Canuto  <everaldo@simios.org>
3480
3481         * ThemeWin32Classic.cs: Fix text redenring when button is
3482         pressed.
3483
3484 2006-11-22  Everaldo Canuto  <everaldo@simios.org>
3485
3486         * MenuAPI.cs: Fixes behavior when menu is opened by kerboard
3487         and later navigate by mouse. Fixes #79528.
3488
3489 2006-11-21  Everaldo Canuto  <everaldo@simios.org>
3490
3491         * ToolBar.cs: Set default value for TabStop to false in
3492         constructor, it fixes remaining behavior of bug #79863.
3493
3494 2006-11-21  Rolf Bjarne Kvinge  <RKvinge@novell.com>
3495
3496         * MdiWindowManager.cs:
3497         * InternalWindowManager.cs:
3498         - Moved a few methods specific to Mdi from 
3499         InternalWindowManager to MdiWindowManager.
3500         Fixes #79996.
3501         
3502 2006-11-21  Chris Toshok  <toshok@ximian.com>
3503
3504         * XplatUIOSX.cs: stub out InvalidateNC.
3505
3506         * XplatUIWin32.cs: implement InvalidateNC using the call I found
3507         at http://www.dotnet247.com/247reference/msgs/58/292037.aspx.
3508
3509         * XplatUIX11.cs: rename InvalidateWholeWindow to InvalidateNC.
3510
3511         * XplatUIDriver.cs: add InvalidateNC abstract method.
3512
3513         * XplatUI.cs: add InvalidateNC.
3514
3515 2006-11-21  Everaldo Canuto  <everaldo@simios.org>
3516
3517         * ToolBar.cs: Invalidate complete button area when pressed status 
3518         was changed.
3519         * ToolButton.cs: Fix InvalidateBorder for DropDown buttons.
3520         * ThemeWin32Classic.cs: Increase vertical and horizontal position 
3521         by 1 when button is pressed.
3522
3523 2006-11-20  Everaldo Canuto  <everaldo@simios.org>
3524
3525         * ToolButton.cs: Invalidate middle of DropDown button when
3526         ToolBar theres DropDownArrows.
3527         * ThemeWin32Classic.cs: Change position of DropDown arrow and
3528         fix DropDown drawing operations.
3529
3530 2006-11-20  Chris Toshok  <toshok@ximian.com>
3531
3532         * NativeWindow.cs: fix the formatting of functions ('{' on the
3533         following line), and enable the thread exception dialog.
3534
3535         * Application.cs: remove the duplicate exception catching from
3536         here.
3537
3538 2006-11-20  Everaldo Canuto  <everaldo@simios.org>
3539
3540         * Toolbar.cs: Triggers button click event when click on icon
3541         of dropdown ToolBarButton. Fixes #79912.
3542         
3543 2006-11-20  Rolf Bjarne Kvinge  <RKvinge@novell.com>
3544
3545         * Theme.cs:
3546         * ThemeWin32Classic.cs:
3547         - Added a property WindowBorderFont to enable themeing
3548           of mdi child windows' Text.
3549           
3550 2006-11-20  Rolf Bjarne Kvinge  <RKvinge@novell.com>
3551
3552         * InternalWindowManager.cs:
3553         * Form.cs:
3554         * MdiClient.cs:
3555         * MdiWindowManager.cs: 
3556         - If mdi child is maximized, set mdi parent's
3557           text to "Parent - [Child]". Fixes #79770.
3558         - If there is any maximized mdi child windows, only the active 
3559           window (and any new windows) is maximized, the rest are normal.
3560         - On a WindowState change only save mdi child's window bounds 
3561           if the old window state was normal. Fixes #79774.
3562         - The scroll bars are now calculated on hopefully all
3563           necessary events. Fixed #79771 / #79844->6 / #79906.
3564         - MdiClient.SizeScrollBars() now takes into account docked 
3565           controls in the parent when calculating available space.
3566         - InternalWindowManager now always repaints the entire title
3567           area. Fixes #79844->1/4/5.
3568         - Added RequestNCRecalc on mdi child windowstate changes.
3569           Fixes #79772.
3570
3571 2006-11-20  Mike Kestner  <mkestner@novell.com>
3572
3573         * ComboBox.cs: setup LargeChange on the scrollbar. Invoke FireMouseUp
3574         in the MouseUp handler of the listbox and move the return handling
3575         code to FireMouseUp to avoid scrolling on ups.  Fixes #79952.
3576
3577 2006-11-20  Everaldo Canuto  <everaldo@simios.org>
3578
3579         * Toolbar.cs: Ignore right mouse clicks in toolbar. Fixes #79855. 
3580
3581 2006-11-17  Alexander Olk  <alex.olk@googlemail.com>
3582
3583         * MimeIcon.cs: Seems that DllImports that were fine in 1.2 are not
3584           working in 1.2.x anymore. So, updated.
3585
3586 2006-11-19  Gert Driesen  <drieseng@users.sourceforge.net>
3587
3588         * NumericUpDown.cs: Use NegativeSign, NumberDecimalSeparator and
3589         NumberGroupSeparator of current culture instead of assuming en-US.
3590         Fixed bug #79967.
3591
3592 2006-11-17  Mike Kestner  <mkestner@novell.com>
3593
3594         * Control.cs: Add the concept of implicit bounds setting so that
3595         dock/undock round trips preserve explicitly set size/locations.
3596         Fixes #79313.
3597
3598 2006-11-17  Alexander Olk  <alex.olk@googlemail.com>
3599
3600         * FileDialog.cs: Trim all filters, otherwise DirInfo.GetFiles
3601           can't handle those filters. (Fixes bug #79961)
3602
3603 2006-11-17  Chris Toshok  <toshok@ximian.com>
3604
3605         [ fixes the exit/crashes associated with #79835.  it's clearly
3606         suboptimal though, we need to figure out a better way to solve
3607         this. ]
3608         
3609         * PrintPreviewControl.cs: deal with the new invalid printer
3610         exceptions.
3611
3612         * PageSetupDialog.cs: if the printer is invalid, pop up a dialog
3613         and return false (so CommonDialog.ShowDialog doesn't actually show
3614         the form.)
3615
3616         * PrintDialog.cs: enable/disable the Ok button depending on
3617         whether or not the printer is valid.
3618
3619         * CommonDialog.cs (ShowDialog): only actually show the form if
3620         RunDialog returns true.
3621
3622 2006-11-17  Jackson Harper  <jackson@ximian.com>
3623
3624         * TextControl.cs: When soft splitting a line, mark it as a soft
3625         split line. Also carry over the current line break to the next
3626         line.
3627
3628 2006-11-17  Chris Toshok  <toshok@ximian.com>
3629
3630         * XplatUIX11.cs: when scrolling a window with an invalid area, we
3631         only want to shift the part of the invalid area that overlaps the
3632         area we're scrolling.  we also don't want to clear the invalid
3633         area unless the invalid area was entirely contained within the
3634         scrolling area.
3635
3636 2006-11-16  Chris Toshok  <toshok@ximian.com>
3637
3638         * XplatUIX11.cs: remove the handling of the TimerEvent stuff, and
3639         also make sure to free the memory returned by XGetWindowProperty
3640         in GetText().
3641
3642         * X11Structs.cs: remove the TimerEvent stuff, it's unused.
3643
3644 2006-11-16  Chris Toshok  <toshok@ximian.com>
3645
3646         * XplatUI.cs: add a new super secret way to get at the totally
3647         unsupported X11 backend.
3648
3649 2006-11-16  Gert Driesen  <drieseng@users.sourceforge.net>
3650
3651         * NumericUpDown.cs: Allow lowercase letters when in hex-mode.
3652
3653 2006-11-16  Jackson Harper  <jackson@ximian.com>
3654
3655         * TreeView.cs: Allow more explicit setting of top node position
3656         for scrollbars. Slower algo, but more accurate.
3657         - CollapseAll should maintain the current top node.
3658         * TextBoxBase.cs: When positioning the caret, use the line, pos
3659         method, since the x, y method does not grab the correct tag, and
3660         the caret height never gets set correctly. (Maybe I should just do
3661         away with the caret having its own height, and always use the
3662         carets current tag for height).
3663
3664 2006-11-16  Jonathan Pobst  <monkey@jpobst.com
3665
3666         [Fixes 79778, 79923]
3667
3668         * XplatUIWin32.cs: Don't allow a parent to be set to IntPtr.Zero.
3669         Parent to the FosterParent instead.
3670
3671 2006-11-16  Jackson Harper  <jackson@ximian.com>
3672
3673         * TreeView.cs: Need to recalc the topnode when we expand or
3674         collapse. The scrolling methods can't handle this on their own,
3675         since they use differences between the last scroll position, and
3676         those difference get completely messed up since we are expanding
3677         nodes.  This problem should probably be fixed in the scrolling
3678         methods, so they can figure out exactly where they are, but this
3679         will slow things down a little.
3680         * ThemeWin32Classic.cs: Special case for groupboxes with empty
3681         strings, makes nunit-gui look a lot nicer.
3682
3683 2006-11-16  Chris Toshok  <toshok@ximian.com>
3684
3685         * XplatUIX11.cs: nasty, nasty, nasty changes required because of
3686         the broken multithreaded event handling we have in here.  File
3687         this entry under "Why we should move to the new X11 backend".
3688
3689         Any thread can make it into UpdateMessageQueue, which gets events
3690         from the X socket - some of which could belong to hwnds being
3691         managed by a different thread.  We can also have multiple threads
3692         in UpdateMessageQueue at the same time, with each one reading from
3693         the X socket.  This leads to many problems, with the following
3694         solutions:
3695
3696         We can't use hwnd.Queue.Enqueue anywhere in here and must use
3697         EnqueueLocked.
3698
3699         The MotionNotify compression we do can't work across threads
3700         (without locking the entire queue, perhaps) since we call
3701         hwnd.Queue.Peek, so we just punt and don't compress motion events
3702         unless the owning thread is the one which got the X event.
3703
3704         ConfigureNotify is another fun one, since it modifies the hwnd's
3705         bounds and then enqueues the event.  We add a lock to Hwnd which
3706         is held when setting configure_pending to true (and enqueuing the
3707         event).
3708
3709         There is a race wrt the wake socket.  we need to make sure that
3710         only 1 thread is waiting on that socket, or else a thread could
3711         sleep waiting for data that never comes.  It's difficult (but not
3712         impossible) to make happen, because it seems to require something
3713         like the following:
3714
3715             1. Thread 1 polls on wake_receive
3716         
3717             2. poll returns saying there's data to be read on
3718                wake_receive.
3719         
3720             3. Thread 2 polls on wake_receive and immediately returns
3721                saying there's data to be read.
3722
3723             4. Thread 2 reads the wakeup byte from wake_receive
3724
3725             5. Thread 1 attempts to read the wakeup byte from
3726                wake_receive.
3727
3728             6. Thread 2 exits (due to a form closing, perhaps).
3729
3730             7. Thread 1 blocks forever.
3731         
3732         Fun, eh?
3733
3734         Fixing the Expose handling isn't done yet, and the races inherent
3735         in that piece of code are responsible for the drawing mistakes you
3736         see when generating expose events in a MT app (like NPlot).  This
3737         one is the likely to be the hardest to bandaid, and it doesn't
3738         appear to cause anything but drawing problems.  The other issues
3739         caused apps to exit or hang.
3740
3741         * XEventQueue.cs: output some spew when Dequeue/Enqueue/Peek are
3742         called from a different thread than the one that should be calling
3743         these functions.
3744
3745         * Hwnd.cs: add some locks to be used by the XplatUIX11 code.
3746
3747 2006-11-15  Chris Toshok  <toshok@ximian.com>
3748
3749         * Application.cs: null out the context's MainForm when we exit
3750         RunLoop.  Fixes a newly checked in unit test as well as the last
3751         ODE from bug #79933.
3752
3753 2006-11-15  Chris Toshok  <toshok@ximian.com>
3754
3755         * Form.cs (set_Owner): allow a null value so we can clear the
3756         form's owner.
3757         (Dispose): set all our owned_form's Owner properties to null, and
3758         clear the owned_forms collection.
3759         (WM_CLOSE): clean up this a little bit.. still not right though.
3760
3761         * ApplicationContext.cs: OnMainFormClosed should only call
3762         ExitThreadCore if the main form isn't recreating.  Fixes unit
3763         test.
3764
3765 2006-11-15  Jonathan Pobst  <monkey@jpobst.com>
3766
3767         [Fixes 78346]
3768
3769         * ComboBox.cs: Set the Hwnd.no_activate flag for the ComboListBox.
3770
3771 2006-11-15  Jonathan Pobst  <monkey@jpobst.com>
3772
3773         [Fixes 79433]
3774
3775         * Hwnd.cs: Add a flag to show a window, but not activate it, to 
3776         keep popup window types from stealing focus from the main form
3777         on Windows.
3778
3779         * XPlatUIWin32.cs: Use SW_SHOWNOACTIVATE if above field is true.
3780
3781         * MenuAPI.cs: Set above flag to true.
3782
3783 2006-11-15  Chris Toshok  <toshok@ximian.com>
3784
3785         * XplatUIX11.cs: mimic win32 behavior on BUTTONUP events, where
3786         the button being released is not in wParam.
3787
3788 2006-11-15  Jonathan Pobst  <monkey@jpobst.com>
3789
3790         * Form.cs: Add the released button to MouseEventArgs.Button
3791         for the OnMouseUp call to the MenuTracker.  Fixes menu clicking
3792         on Win32.
3793
3794 2006-11-15  Chris Toshok  <toshok@ximian.com>
3795
3796         * XplatUIX11.cs: add (untested) a _NET_WM_NAME implementation of
3797         GetText().  untested because it's unused in our implementation.
3798         Control.Text always caches the text, even if
3799         ControlStyles.CacheText is not set.
3800
3801         fixes bug #79939.
3802
3803 2006-11-15  Chris Toshok  <toshok@ximian.com>
3804
3805         [ fixes #79933 ]
3806         
3807         * Form.cs: in Close() don't do anything after we send the WM_CLOSE
3808         message.  no hiding, no disposing.
3809
3810         in the WM_CLOSE handler, hide the form if it's modal.
3811
3812 2006-11-15  Chris Toshok  <toshok@ximian.com>
3813
3814         * XplatUIX11.cs: use AddExpose instead of sending a message.
3815         fixes textbox border drawing.
3816
3817 2006-11-15  Chris Toshok  <toshok@ximian.com>
3818
3819         * PropertyGridView.cs: keep from crashing on mouse move/down when
3820         the property grid is empty.
3821
3822 2006-11-14  Jackson Harper  <jackson@ximian.com>
3823
3824         * TextControl.cs: Make PageUp and PageDown more like the MS
3825         versions.
3826         * TextBoxBase.cs: When we set the text property position the
3827         cursor at the beginning of the document.
3828
3829 2006-11-14  Rolf Bjarne Kvinge  <RKvinge@novell.com>
3830
3831         * Form.cs: if a mdi child's WindowState has changed
3832         before it's creation, it would display wrong control
3833         buttons.
3834         
3835 2006-11-14  Alexander Olk  <alex.olk@googlemail.com>
3836
3837         * TreeView.cs: De-uglify TreeView checkbox checkmarks.
3838           (Fixes bug #79927)
3839
3840 2006-11-14  Rolf Bjarne Kvinge <RKvinge@novell.com> 
3841
3842         * XplatUIX11.cs: send a WM_NCPAINT on WM_NCCALCSIZE so that 
3843         the window gets to paint its borders even if the window is
3844         getting smaller.
3845         
3846         * Form.cs: on a WM_NCPAINT invalidate the entire menu, 
3847         otherwise the old control buttons would still be painted 
3848         if the window gets bigger.
3849         
3850         * PaintEventArgs.cs: add an internal method so that the clip 
3851         rectangle can be changed.
3852         
3853 2006-11-13  Chris Toshok  <toshok@ximian.com>
3854
3855         [ fixes bug #79745 ]
3856         
3857         * NotifyIcon.cs: lots of cleanup.
3858
3859         * X11Structs.cs: add an enum for XEMBED messages.
3860
3861         * XplatUIX11.cs: reindent one of the giant switch statements, it
3862         was taking up an additional tab stop, and this file is already way
3863         too wide for my laptop's screen.
3864
3865         Also, add handling for the XEmbed EMBEDDED_NOTIFY message.  When
3866         we get it, resize the hwnd to the WMNormalHints max_width/height.
3867
3868 2006-11-13  Jackson Harper  <jackson@ximian.com>
3869
3870         * TextBoxBase.cs: Compute the value changes for the mouse wheel
3871         teh simple way.
3872
3873 2006-11-13  Chris Toshok  <toshok@ximian.com>
3874
3875         * XplatUIX11.cs, XplatUIStructs.cs: kind of a gross fix for
3876         #79898.  force a reference to the Region to stick around so the
3877         unmanaged object isn't collected (rendering our handle in the MSG
3878         stale).
3879
3880 2006-11-13  Chris Toshok  <toshok@ximian.com>
3881
3882         * XplatUIX11.cs: fix #79917 for window managers which support
3883
3884         using XStoreName on the raw utf8, and we need to convert to
3885         COMPOUND_TEXT if it's non-latin1.
3886
3887 2006-11-13  Chris Toshok  <toshok@ximian.com>
3888
3889         * Form.cs (set_DialogResult): we need to set closing to false if
3890         we're setting our result to None.  fixes bug #79908.
3891
3892 2006-11-13  Jackson Harper  <jackson@ximian.com>
3893
3894         * TextControl.cs: When formatting text, compute the adjusted tag
3895         lengths correctly, using FindTag for the end tag instead of trying
3896         to figure it out outselves.
3897         * TreeNode.cs: Use ActualItemHeight, which is the actual height of
3898         the item, ItemHeight doesn't work, because trees with large
3899         imagelists use those for their height
3900         * TreeView.cs: ActualItemHeight factors in the image height
3901         - compute left edge of checkboxes correctly
3902         - when expanding/collapsing move the bottom down one pixel, so we
3903         aren't moving part of the node
3904
3905 2006-11-13  Rolf Bjarne Kvinge  <RKvinge@novell.com>
3906
3907         * XplatUIX11.cs: The PaintEventArgs is also added to the drawing
3908         stack in PaintEventStart so that it won't get disposed by the gc
3909         before reaching PaintEventEnd.
3910
3911 2006-11-13  Jackson Harper  <jackson@ximian.com>
3912
3913         * TextBoxBase.cs: Don't select the word if we are on a line with
3914         no text.
3915         - We don't need to position the caret on mouse up, since the mouse
3916         move handler should be doing this
3917         - When double clicking a blank line, the caret is advanced to the
3918         next line.
3919
3920 2006-11-13  Gert Driesen  <drieseng@users.sourceforge.net>
3921
3922         * TreeNodeCollection.cs: Avoid duplicating indexer code.
3923
3924 2006-11-12  Gert Driesen  <drieseng@users.sourceforge.net>
3925
3926         * ColorDialog.cs: Reset size of dialog between calls to ShowDialog.
3927         Fixes part of bug #79910.
3928
3929 2006-11-11  Alexander Olk  <alex.olk@googlemail.com>
3930
3931         * ColorDialog.cs: Fix a NRE when adding a color to custom colors
3932           (bug #79903). Some minor string updates to match ms.
3933
3934 2006-11-10  Alexander Olk  <alex.olk@googlemail.com>
3935
3936         * FileDialog.cs: Don't add an extension if the filename
3937           already ends with that extension.
3938
3939 2006-11-10  Jackson Harper  <jackson@ximian.com>
3940
3941         * TreeView.cs: Use the currently highlighted node for the
3942         BeforeSelect event.
3943         * TextBoxBase.cs: There is no need to expand selection on
3944         MouseMove.
3945         - CanUndo means 'is there any undo operations', not 'is undo
3946         allowed on this textcontrol. Fixed ClearUndo unit test.
3947
3948 2006-11-10  Andreia Gaita  <shana.ufie@gmail.com>
3949
3950         * Button.cs: only perform click when button is Selectable (so as 
3951         not to activate default buttons when they're disabled)
3952         
3953         * Control.cs: Rewrite of the SelectNextControl and related 
3954         methods. HandleClick now selects next control if the current one
3955         is being disabled.
3956         
3957         * Form.cs: OnActivated selects next active control only if Load 
3958         has already occurred. If Load hasn't run, there's no point in 
3959         selecting here, Load might change the state of controls.
3960         
3961         * FocusTest.cs: Tests marked as working again for these fixes
3962
3963 2006-11-10  Chris Toshok  <toshok@ximian.com>
3964
3965         * XplatUIX11.cs: a couple of fixes.
3966
3967         - use XInternAtoms with almost all the atoms we need to register,
3968         instead of many, many calls to XInternAtom.  should help a bit on
3969         startup time, at the expense of making the code look a little
3970         worse.
3971
3972         - fall back to setting TransientFor on TOOLWINDOW's if their hwnd
3973         isn't reparented (which seems to be a clue that we're running fon
3974         compiz) and they have an Owner form.  This fixes the tool windows
3975         in paint.net when running under compiz.
3976
3977         - when setting the opacity of a window, support both the case
3978         where the window has been reparented and also when it hasn't been.
3979         Since compiz/beryl doesn't seem to reparent windows, and these are
3980         the only window managers which support translucency, I'm not sure
3981         why we need the hwnd.reparented case at all.. but leave it in.
3982         now we get translucent windows in paint.net under compiz/beryl.
3983
3984 2006-11-10  Alexander Olk  <alex.olk@googlemail.com>
3985
3986         * FileDialog.cs: Always return the value for FilterIndex that
3987           was set. Internally convert it to values that make sense.
3988
3989 2006-11-10  Everaldo Canuto  <everaldo@simios.org>
3990         
3991         * ThemeWin32Classic.cs: Fix drowp down arrow borders.
3992
3993 2006-11-10  Everaldo Canuto  <everaldo@simios.org>
3994
3995         * Toolbar.cs: Change default value of DropDownArrows to true, the 
3996         signature still using false to make it compatible with MS but the 
3997         initial value is true. Fixes #79855.
3998
3999 2006-11-10  Alexander Olk  <alex.olk@googlemail.com>
4000
4001         * MimeIcon.cs: Don't throw an exception on windows. Mime stuff is
4002           only available on Linux.
4003
4004 2006-11-09  Everaldo Canuto  <everaldo@simios.org>
4005
4006         * Toolbar.cs, ToolBarButton.cs: Fix wrong separator size and
4007         reduce number of calls to redraw method during toolbar creation.
4008
4009 2006-11-09  Mike Kestner  <mkestner@novell.com>
4010
4011         * ListView.cs : raise SelectedIndexChanged when an item is selected
4012         programmatically via the Item.Selected property.  Gert's nice 
4013         ListViewSelectedIndexChanged test fixture now runs clean.
4014
4015 2006-11-09  Mike Kestner  <mkestner@novell.com>
4016
4017         * ListView.cs : raise SelectedIndexChanged when a selected item is
4018         removed from the item collection using Remove or RemoveAt.
4019
4020 2006-11-09  Mike Kestner  <mkestner@novell.com>
4021
4022         * ListView.cs : raise SelectedIndexChanged once per selected item
4023         for compat with MS.  Fixes #79849+.
4024
4025 2006-11-09  Chris Toshok  <toshok@ximian.com>
4026
4027         * TabControl.cs: initialize row_count to 0, and set it to 1 when
4028         we need to (if we have any tab pages).  Fixes unit test.
4029
4030 2006-11-09  Chris Toshok  <toshok@ximian.com>
4031
4032         * Label.cs (CalcPreferredWidth): if Text == "", our preferred
4033         width is 0, not 3.  Fixes a unit test.
4034
4035 2006-11-09  Mike Kestner  <mkestner@novell.com>
4036
4037         * ListView.cs : use Implicit scrollbars so that focus isn't 
4038         stolen from the listview when they are clicked. Fixes #79850.
4039
4040 2006-11-09  Chris Toshok  <toshok@ximian.com>
4041
4042         * PropertyGridView.cs (OnPaint): only call DrawGridItems if we
4043         have a root item.  Fixes #79879.
4044
4045 2006-11-09  Alexander Olk  <alex.olk@googlemail.com>
4046
4047         * FileDialog.cs:
4048           - Fix ToString ()
4049           - An ArgumentException is now thrown if a wrong filter
4050             is applied (matches ms). The previous filter doesn't change
4051             anymore if an exception is thrown.
4052           - Changing the FileName property also affects FileNames
4053         * ColorDialog.cs: The length of the CustomColors array is always
4054           16. It doesn't matter if we use a smaller array or null to update
4055           or change the custom colors property.
4056         * FolderBrowserDialog.cs: Throw an InvalidEnumArgumentException if
4057           for RootFolder if we get a undefined value.
4058
4059 2006-11-09  Rolf Bjarne Kvinge  <RKvinge@novell.com>
4060
4061         * StatusBarPanel.cs: 
4062         - Width is set to MinWidth if Width is smaller than
4063         MinWidth. Fixes #79842.
4064         - MinWidth now always overrides Width (MSDN says MinWidth
4065         is set to Width when AutoSize = None, but they do not 
4066         behave like that).
4067         - Style has now the the correct default value.
4068         
4069 2006-11-09  Rolf Bjarne Kvinge  <RKvinge@novell.com>
4070  
4071         * TrackBar.cs: 
4072         - The control is completely invalidated on 
4073         Got/LostFocus to draw the focus rectangle correctly.
4074         - When AutoSize then height is always 45 (width for 
4075         vertical controls).
4076         
4077         * ThemeWin32Classic.cs: The TrackBar thumb is now centered
4078         on the mouse when moved and it doesn't move when grabbed
4079         until the mouse moves as well. Also fixed some wrong 
4080         calculations when clicking on the thumb (control thought
4081         click was outside of thumb and didn't grab it).
4082         Fixes some of the issues in #79718.
4083
4084 2006-11-08  Everaldo Canuto  <everaldo@simios.org>
4085
4086         * Toolbar.cs: Prevent disabled button to highlight. Fixes #79868.
4087
4088 2006-11-08  Chris Toshok  <toshok@ximian.com>
4089
4090         * PropertyGridView.cs: only call ToggleValue if the item is not
4091         readonly.
4092
4093 2006-11-08  Jackson Harper  <jackson@ximian.com>
4094
4095         * TextBoxBase.cs: The RichTextBox and textbox have very different
4096         word selection methods.  Implement the textbox's simple word
4097         selection here, and let the RichTextBox override and provide it's
4098         own.
4099         - Don't do extra selection on mouseup
4100         * RichTextBox.cs: Use the documents word selection algorithm, I
4101         think ideally, this function will be pulled into the
4102         RichTextBox.cs code someday.
4103
4104 2006-11-08  Chris Toshok  <toshok@ximian.com>
4105
4106         * RootGridEntry.cs: new class to represent GridItemType.Root.
4107
4108         * CategoryGridEntry.cs: reformat, and add boilerplate.
4109         
4110         * GridEntry.cs: remove the UIParent stuff - turns out .Parent
4111         returns the UI parent anyway, and we need special handling to
4112         implement the GetTarget method in the face of it.  Also, implement
4113         Select().
4114
4115         * PropertyGrid.cs, PropertyGridView.cs: a number of fixes.  create
4116         a root grid item, and use that instead of PropertyGrid.grid_items.
4117         Also, make use of TypeConverters (and add limitted support for
4118         ICustomTypeDescriptors) when initially populating the grid.
4119         Arrays now show up more or less properly.
4120
4121 2006-11-08  Chris Toshok  <toshok@ximian.com>
4122
4123         * Application.cs: set the modal dialog to non modal after we close
4124         it.  Fixes bug #79866.
4125
4126 2006-11-08  Jackson Harper  <jackson@ximian.com>
4127
4128         * TextControl.cs: When combining lines carry over the line end
4129         style from the end line.
4130         - Invalidate the selected area when setting it, if it is visible.
4131         * TextBoxBase.cs: Only rich text box can do full line selects.
4132         - Make sure to set the cursor position when there is a click,
4133         otherwise two clicks in separate areas could cause a large chunk
4134         to be selected.
4135
4136 2006-11-07  Everaldo Canuto  <everaldo@simios.org>
4137
4138         * Toolbar.cs: Release flat button borders when Toolbar lost focus. 
4139         Fixes #79863.
4140
4141 2006-11-07  Everaldo Canuto  <everaldo@simios.org>
4142
4143         * Toolbar.cs: Prevent toolbar to open more than one tooltip at same
4144         time. Remove tooltips when ToolButton click events.  Fixes #79856.
4145
4146 2006-11-07  Everaldo Canuto  <everaldo@simios.org>
4147
4148         * MenuAPI.cs: Ignore right click for menu actions and fixes
4149         menu border when clicked.  Fixes #79846.
4150
4151 2006-11-07  Everaldo Canuto  <everaldo@simios.org>
4152
4153         * XplatUIX11.cs, XplatUIX11.cs: Fix MouseRelease to only release
4154         MouseState after create wParam for message, this fixes mouse button 
4155         equal none in mouse up events.
4156         
4157 2006-11-07  Andreia Gaita  <shana.ufie@gmail.com>
4158
4159         * Control.cs : Focus() now calls Select to set the Container's
4160         Active Control and to give it focus. To avoid infinite recursion
4161         (because ActiveControl also calls Focus at one point), a check 
4162         is made in Focus with the help of a new internal variable
4163         is_focusing.
4164
4165 2006-11-07  Mike Kestner  <mkestner@novell.com>
4166
4167         * ListView.cs : raise OnSelectedIndexChanged in CreateHandle
4168         if there's a selection.  Fixes #79849.
4169
4170 2006-11-07  Gert Driesen  <drieseng@users.sourceforge.net>
4171
4172         * PropertyGrid.cs: Avoid fixed height of help description label.
4173         Fixes part of bug #79829.
4174
4175 2006-11-07  Chris Toshok  <toshok@ximian.com>
4176
4177         * XplatUIX11.cs: fix #79790 again, by using the
4178         _NET_WM_STATE_SKIP_TASKBAR atom to implement Form.ShowInTaskbar.
4179
4180 2006-11-07  Everaldo Canuto  <everaldo@simios.org>
4181
4182         * ToolBar.cs: Fix left click checking.
4183
4184 2006-11-07  Chris Toshok  <toshok@ximian.com>
4185
4186         * ProgressBar.cs: fix a typo in ToString().  fixes a unit test.
4187
4188 2006-11-07  Chris Toshok  <toshok@ximian.com>
4189
4190         * RelatedPropertyManager.cs: set property_name in our ctor.  fixes
4191         PropertyManager unit tests.
4192
4193         * PropertyManager.cs: make property_name internal.
4194
4195 2006-11-07  Chris Toshok  <toshok@ximian.com>
4196
4197         * ButtonBase.cs: initialize base.ime_mode to ImeMode.Disable to
4198         pass a unit test.  Also, don't set image_index to anything in
4199         response to setting the ImageList property.
4200
4201 2006-11-07  Everaldo Canuto  <everaldo@simios.org>
4202
4203         * ToolBar.cs: Ignore click events when mouse button is not a
4204         left button, only accepts other button for dropdown menus.  
4205         Fixes #79854.
4206
4207 2006-11-07  Chris Toshok  <toshok@ximian.com>
4208
4209         * DataGrid.cs: make the back and parent row buttons a little less
4210         ugly.
4211
4212 2006-11-07  Jackson Harper  <jackson@ximian.com>
4213
4214         * TextBoxBase.cs: When converting to Text don't put line breaks in
4215         for soft line breaks.
4216         * TextControl.cs: There is an initial "fake" line in the document,
4217         this is now a soft break line, so that an extra line feed doesn't
4218         get added to the end of documents.
4219
4220 2006-11-07  Chris Toshok  <toshok@ximian.com>
4221
4222         [ fix bug #79778 ]
4223         
4224         * CurrencyManager.cs: if the list is readonly, don't bother
4225         checking if IBindingList.AllowNew is true.
4226
4227         * ThemeWin32Classic.cs (DataGridPaintParentRow): make this work
4228         for non-DataRowView datasources..  or rather, make it not crash.
4229         (DataGridPaintRelationRow): make sure we limit the row painting to
4230         the area not covered by the row header, and make our cell width at
4231         least large enough to cover the relation area.  This allows grids
4232         that have relations but no rows to render correctly.
4233         (DataGridPaintRowContents): same type of changes here.
4234         (SetDataSource): move back to always calling
4235         CalcAreasAndInvalidate.  this fixes a crash/drawing problem when
4236         navigating back through relations.
4237         (HitTest): handle the case where we have no cells but have
4238         relations.  Right now we generate a hit in cell 0 of whatever the
4239         row is, not sure if this is strictly correct, but it works for our
4240         purposes.
4241         
4242         * DataGrid.cs (EndEdit, CancelEdit): if we have no columns, don't
4243         bother doing anything.
4244
4245 2006-11-07  Jonathan Pobst  <monkey@jpobst.com>
4246
4247         * StatusStrip.cs, ToolStripStatusLabel.cs: By request, an
4248         early version of StatusStrip.  Not responsible for eaten
4249         application or firstborn children.
4250
4251 2006-11-06  Chris Toshok  <toshok@ximian.com>
4252
4253         * TabControl.cs: in OnGotFocusInternal/OnLostFocusInternal don't
4254         call GetTabRect with a -1 index.  Fixes #79847.
4255
4256 2006-11-06  Jackson Harper  <jackson@ximian.com>
4257
4258         * TreeNodeCollection.cs: Update scrollbars after clearing.
4259
4260 2006-11-06  Chris Toshok  <toshok@ximian.com>
4261
4262         * NumericUpDown.cs: fix the ToString method for some unit test
4263         love.
4264
4265 2006-11-06  Chris Toshok  <toshok@ximian.com>
4266
4267         * PropertyGrid.cs:
4268         - set the initial SelectedGridItem if we can.
4269
4270         - Exclude non-mergable properties only if we're merging > 1
4271         object.  Merging 1 object isn't really merging, obviously.
4272
4273         - Handle PropertySort.NoSort just like Alphabetical, which is
4274         wrong of course, but at least gets things on the screen.
4275         
4276         * PropertyGridView.cs:
4277         - Add method "FindFirstItem" which finds the first property grid
4278         item, so we can select it by default.
4279
4280         - make use of GridEntry.CanResetValue.
4281
4282         - Don't call RedrawBelowItemOnExpansion here anymore, the
4283         individual GridEntry's will do that.
4284
4285         - Remove the ITypeDescriptorContextImpl internal class.
4286         
4287         * GridEntry.cs:
4288         - this class needs to implement ITypeDescriptorContext, as it's
4289         what MS's PropertyDescriptorGridEntry does, which means we can
4290         remove the ITypeDescriptorContextImpl internal class from
4291         PropertyGrid.cs.  This fixes the crashing portion of bug #79829.
4292
4293         - keep a reference to our PropertyGridView, and move the call to
4294         RedrawBelowItemOnExpansion here from PGV.  This means
4295         programmaticly setting Expanded actually does something visible.
4296
4297         - add a CanResetValue() function which takes into account our
4298         possibly multiple "selected_objects" in the merged case.  Shifting
4299         PropertyGridView to use this method fixes another unreported
4300         crasher found running the test for #79829.
4301
4302         - when Top or Bounds is updated, make sure the PropertyGridTextBox
4303         is updated to reflect this.
4304
4305         * CategoryGridEntry.cs: the ctor takes the PGV now.
4306         
4307 2006-11-06  Jackson Harper  <jackson@ximian.com>
4308
4309         * TextControl.cs: These are 1 based.
4310         * TextBoxBase.cs: When setting the selected text, don't change the
4311         selected text tags, this is done by ReplaceText, just position the
4312         cursor at the end of the new text.
4313
4314 2006-11-06  Alexander Olk  <alex.olk@googlemail.com>
4315
4316         * ListView.cs: Allow label edit only when, when LabelEdit is
4317           set to true.
4318
4319 2006-11-06  Jackson Harper  <jackson@ximian.com>
4320
4321         * TextControl.cs: If a suitable wrapping position isn't found,
4322         just wrap right in the middle of a word.
4323
4324 2006-11-06  Alexander Olk  <alex.olk@googlemail.com>
4325
4326         * ListView.cs, ListViewItem.cs: Implement LabelEdit. Fixes
4327           bug #79820.
4328
4329 2006-11-06  Jackson Harper  <jackson@ximian.com>
4330
4331         * TreeView.cs: Can't use the VisibleCount property when setting
4332         scrollbar heights, because this doesn't take into account whether
4333         or not the horz scrollbar just came visible.
4334
4335 2006-11-05  Everaldo Canuto  <everaldo@simios.org>
4336
4337         * MenuAPI.cs: Deactivate menu on mouse up when menus it is already
4338         activated.  Fixes #79369, #79832.
4339
4340 2006-11-05  Alexander Olk  <alex.olk@googlemail.com>
4341
4342         * FileDialog.cs: *sigh* Because of recent runtime changes (r67043) I
4343           had to remove support for links that point to a directory. FileInfo
4344           returns no usefull information (means, the directory they point to)
4345           for such links. Replaced some empty string ("") with String.Empty.
4346
4347 2006-11-04  Gert Driesen  <drieseng@users.sourceforge.net>
4348
4349         * TreeNodeCollection.cs: To match MS, in 1.0 profile throw 
4350         NullReferenceException when attempting to remove node that is not in
4351         collection. Throw NullReferenceException when null is passed to 
4352         Remove. Allow first element of the collection to be removed. Fixes
4353         bug #79831.  In GetEnumerator ().Current return null if positioned 
4354         before the first element of the collection. In GetEnumerator ().Reset,
4355         position before first element of the collection.
4356
4357 2006-11-04  Gert Driesen  <drieseng@users.sourceforge.net>
4358
4359         * PropertyGrid.cs: To match MS, remove default title and description
4360         for panel. Fixed tooltips for Categorized and Alphabetic toolbar
4361         buttons.
4362
4363 2006-11-04  Chris Toshok  <toshok@ximian.com>
4364
4365         * Theme.cs: add a Clamp method, just for kicks.
4366
4367         * ThemeWin32Classic.cs: clamp all color components to [0..255].
4368
4369 2006-11-04  Chris Toshok  <toshok@ximian.com>
4370
4371         * Form.cs: if the form isn't visible, Close() does nothing.
4372
4373 2006-11-03  Chris Toshok  <toshok@ximian.com>
4374
4375         * Form.cs (Close): if the form is modal, don't Dispose of it, only
4376         Hide it.
4377         (WndProc): don't Dispose after handling the WM_CLOSE message.
4378
4379         * Application.cs (RunLoop): toplevels is a list of Forms, so treat
4380         them as such, instead of using casts from Control to Form.  Also,
4381         don't Dispose of the modal dialog when we fall out of the loop -
4382         Close() it instead.
4383
4384         fixes bug #79813.
4385
4386 2006-11-03  Chris Toshok  <toshok@ximian.com>
4387
4388         * Control.cs (Dispose): only go through the dispose thing if we're
4389         @disposing, and we haven't already been disposed.  Fixes bug
4390         #79814.
4391
4392         * Form.cs: no reason to call "base.Dispose()" here instead of
4393         "Dispose()".
4394
4395 2006-11-03  Mike Kestner  <mkestner@novell.com>
4396
4397         * ComboBox.cs : use ToString instead of casts in AddItem for
4398         sorting functionality.  Fixes #79812.
4399
4400 2006-11-03  Chris Toshok  <toshok@ximian.com>
4401
4402         * Application.cs: pave the way for actually using the thread
4403         exception dialog.  it's ifdefed out at the moment.
4404
4405 2006-11-03  Chris Toshok  <toshok@ximian.com>
4406
4407         * ThreadExceptionDialog.cs: until we get a better layout, actually
4408         hide the details textbox and label when we shouldn't see them.
4409
4410 2006-11-03  Jackson Harper  <jackson@ximian.com>
4411
4412         * TextBoxBase.cs: Don't bail from the scrollbar calcs for non
4413         multiline textboxes anymore.  This method also determines the
4414         width/height of a textboxes canvas area.
4415         - Sorta a revert of the last patch.  For multiline just position
4416         the controls, then bail.  This way the scrollbar width won't be
4417         altered.
4418
4419 2006-11-03  Everaldo Canuto  <everaldo@simios.org>
4420
4421         * ThemeWin32Classic.cs: Dont paint inner lines of 3D border when
4422         it dont need.  Fixes #79537.
4423
4424 2006-11-02  Jackson Harper  <jackson@ximian.com>
4425
4426         * X11Dnd.cs: We always allow copy, since XDND implies Copy.  Also
4427         send the status after firing the DndOver event.
4428
4429 2006-11-02  Rolf Bjarne Kvinge  <RKvinge@novell.com>
4430
4431         * TrackBar.cs: Now orientation only switches height / width if
4432         the control's handle is created (Win32 does it like this). Also 
4433         fixed a typo in ToString() for a test to pass, changed the 
4434         exception thrown in set_LargeChange and set_SmallChange to 
4435         match Win32 behaviour, and added TrackBar tests to the unit 
4436         tests.
4437
4438 2006-11-02  Chris Toshok  <toshok@ximian.com>
4439
4440         * XplatUIX11.cs: the atom we want is _NET_WM_STATE_SKIP_TASKBAR,
4441         not _NET_WM_STATE_NO_TASKBAR.
4442
4443 2006-11-02  Jackson Harper  <jackson@ximian.com>
4444
4445         * TextControl.cs: Increment count by one, since in the update view
4446         count - 1 is used.
4447
4448 2006-11-02  Jackson Harper  <jackson@ximian.com>
4449
4450         * TextBoxBase.cs: Use client rectangle not bounds for checking if
4451         the mouse is in the client rectangle (duh).
4452
4453 2006-11-02  Rolf Bjarne Kvinge  <RKvinge@novell.com>
4454         
4455         * TrackBar.cs: Fixed trackbar jumping around when clicking
4456         on it - the trackbar was not detecting correctly at which
4457         side of the thumb the click was done. (fixes #79718)
4458
4459 2006-11-02  Everaldo Canuto  <everaldo@simios.org>
4460
4461         * ListBox.cs: scroll visible area when change SelectedIndex to
4462         a non visible area.  Fixes #79481.
4463
4464 2006-11-01  Jackson Harper  <jackson@ximian.com>
4465
4466         * TextControl.cs: When replacing the selection move the selection
4467         start/end/anchor to the end of the new text.
4468
4469 2006-11-01  Jackson Harper  <jackson@ximian.com>
4470
4471         * XplatUIWin32.cs: When setting the parent change the controls
4472         visibility to it's visibility flag, not to it's old parents
4473         visibility (.Visible walks the parent chain).
4474
4475 2006-11-01  Chris Toshok  <toshok@ximian.com>
4476
4477         * XplatUIX11.cs: revert the #79790 fix, as the simple.
4478         XSetTransientForHint fix breaks paint .net's tool windows.  more
4479         work needed for that one.
4480
4481 2006-11-01  Chris Toshok  <toshok@ximian.com>
4482
4483         * ScrollBar.cs: throw ArgumentException instead of Exception in
4484         LargeChange/SmallChange setters.  fixes unit tests.
4485
4486 2006-10-31      Andreia Gaita <shana.ufie@gmail.com>
4487
4488         * ContainerControl.cs: reverted rev.67183 (which was itself
4489         a reversion of rev.66853... eh).
4490         
4491         * Control.cs: Fixes Reflector hang by changing Focus() call
4492         to what it was before rev.66643 (calling Select() here sets 
4493         ActiveControl, which in some situations calls back Focus and 
4494         eventually does a stack overflow). Temp fix.    
4495         Changes to GetNextControl() to not look for children to select when
4496         parent cannot be selectable (so it looks for siblings instead)  
4497         
4498 2006-10-31  Mike Kestner  <mkestner@novell.com>
4499
4500         * CheckedListBox.cs : off by one error in returned index from
4501         ObjectCollection.Add.  Fixes #79758.
4502
4503 2006-10-31  Chris Toshok  <toshok@ximian.com>
4504
4505         * UpDownBase.cs: remove the OnGotFocusInternal/OnLostFocusInternal
4506         calls for the textbox/spinner, to keep from recursing to the point
4507         where we crash.  Fixes #79760.
4508
4509 2006-10-31  Chris Toshok  <toshok@ximian.com>
4510
4511         * ListControl.cs (set_SelectedValue): don't throw exceptions on
4512         null/"" value, just return.  matches ms's behavior and fixes some
4513         failing tests.
4514
4515 2006-10-31  Chris Toshok  <toshok@ximian.com>
4516
4517         * Control.cs (set_Capture): make a logic a little easier to
4518         follow.
4519
4520         * XplatUIX11.cs (CleanupCachedWindows): zero out the Grab window
4521         if it's being destroyed.  A necessary fix surely, but a bandaid
4522         also, to fix the stuck capture problem in bug #78413.
4523
4524 2006-10-31  Chris Toshok  <toshok@ximian.com>
4525
4526         * XplatUIX11.cs: fix a couple of compiler warnings, and follow the
4527         convention of clearing hwnd.ClientRect when we set the
4528         width/height (so it'll be recalculated by Hwnd).
4529
4530 2006-10-31      Andreia Gaita <shana.ufie@gmail.com>
4531
4532         * ContainerControl.cs: reversed Contains check from
4533         ActiveControl due to hanging problems. This fix
4534         partly regresses #79667 (button does not have
4535         initial focus), so this might be a symptom for 
4536         a larger parenting problem (set_ActiveControl
4537         is being called but the child control does
4538         not have the parent set yet?)   
4539         
4540 2006-10-31  Mike Kestner  <mkestner@novell.com>
4541
4542         * MenuAPI.cs : fix keynav when menu is click activated.
4543
4544 2006-10-31  Jonathan Pobst  <monkey@jpobst.com>
4545
4546         * ToolStrip*: Version 0.2.
4547
4548         * MenuStrip.cs: Version 0.1.
4549
4550         * Form.cs: Add a 2.0 MenuStrip tracker like the 1.1 Menu one.
4551
4552 2006-10-30  Chris Toshok  <toshok@ximian.com>
4553
4554         [ fixes the oversized notify icon issue in bug #79745 ]
4555         
4556         * NotifyIcon.cs: scale the icon down to the size we're given by
4557         the XplatUI layer (this would be faster if we did it once instead
4558         of whenever we paint..)  Also, remove the WM_NCPAINT handling,
4559         since it's never invoked.
4560
4561         * XplatUIX11.cs: the gnome and kde systrays use icons that are 24
4562         pixels high by default, so let's hardcode our systray icon to that
4563         size.  The SYSTEM_TRAY protocol should really have a way for
4564         client apps to query for the correct icon size.. but oh well.  A
4565         couple of patches to deal with the screwy client_window ==
4566         whole_window notifyicon stuff (we don't want to PerformNCCalc, for
4567         instance, and also make sure we don't XSelectInput twice).
4568
4569 2006-10-30  Chris Toshok  <toshok@ximian.com>
4570
4571         * Control.cs: ugh, the unit test fix (CH11, yesterday) breaks when
4572         recreating forms.  Control recreation is the bane of my existence.
4573         Fix it in a way that keeps everyone happy.
4574
4575 2006-10-30  Chris Toshok  <toshok@ximian.com>
4576
4577         * XplatUIX11.cs: use StructureNotifyMask on all whole_windows, not
4578         just non-CHILD ones.  otherwise sometimes scrollbars end up with
4579         client_windows not being resized to the proper size (ReportBuilder
4580         shows this extremely well).
4581
4582 2006-10-30  Chris Toshok  <toshok@ximian.com>
4583
4584         * XplatUIX11.cs (SetWMStyles): reinstate the XSetTransientForHint
4585         for non-WS_EX_APPWINDOW windows.  This is what keeps them from
4586         showing up in the gnome taskbar.  Fixes bug #79790.
4587
4588 2006-10-30  Chris Toshok  <toshok@ximian.com>
4589
4590         * ApplicationContext.cs: guard against a NRE.
4591
4592         * Application.cs: null out the old MainForm for the context, so we
4593         don't try to use it again once it's disposed.  Fixes bug #79783.
4594
4595 2006-10-30  Chris Toshok  <toshok@ximian.com>
4596
4597         * DataGrid.cs (set_DataSource, set_DataMember): if we have a
4598         BindingContext, set the data source directly, otherwise do the
4599         lazy approach - the actual ListManager will be created when we get
4600         a BindingContext. Fixes bug #79700.
4601
4602 2006-10-30  Jonathan Pobst  <monkey@jpobst.com>
4603
4604         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIOSX.cs,
4605           XplatUIX11.cs: Remove old 2 parameter SetVisible.
4606
4607         * Control.cs: Use the new 3 parameter SetVisible with activate = true.
4608
4609 2006-10-30  Jonathan Pobst  <monkey@jpobst.com>
4610
4611         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs: Add an overload
4612         of SetVisible that allows a window to be shown, but not activated.
4613         This is needed on Windows for MenuStrip, and can probably be used
4614         with MainMenu and ComboBox to fix the focus stealing issues on
4615         Windows.
4616
4617         * XplatUIOSX.cs, XplatUIX11.cs: Not needed, call existing SetVisible.
4618
4619 2006-10-30  Alexander Olk  <alex.olk@googlemail.com>
4620
4621         * PictureBox.cs: Fix the output of the ToString method.
4622
4623 2006-10-29  Chris Toshok  <toshok@ximian.com>
4624
4625         * Control.cs (get_TopLevelControl): fix bug #79781.
4626
4627 2006-10-29  Chris Toshok  <toshok@ximian.com>
4628
4629         * ListControl.cs (set_DataSource): throw Exception here, not
4630         ArgumentException, to match MS behavior.
4631
4632 2006-10-29  Chris Toshok  <toshok@ximian.com>
4633
4634         * Form.cs: remove the try-catch's around calls to GetWindowState.
4635         We can just check the return value.
4636
4637         * XplatUIX11.cs: don't throw exceptions from GetWindowState.
4638         Instead return -1.
4639
4640         * XplatUI.cs: Add note about additional return value for
4641         GetWindowState.
4642
4643 2006-10-29  Chris Toshok  <toshok@ximian.com>
4644
4645         * Control.cs (CreateHandle): when we create our handle, we also
4646         create the handles of our child controls.  Fixes one of the
4647         Control unit tests (CH11).
4648
4649 2006-10-28  Alexander Olk  <alex.olk@googlemail.com>
4650
4651         * MimeIcon.cs: If a gnome icon doesn't exist add a default icon.
4652
4653 2006-10-28  Alexander Olk  <alex.olk@googlemail.com>
4654
4655         * ThemeClearlooks.cs: A little speedup.
4656
4657 2006-10-27  Chris Toshok  <toshok@ximian.com>
4658
4659         * Control.cs: implement Control.FromChildHandle in a way that
4660         matches the docs (and fixes the failed test.)
4661
4662 2006-10-27  Chris Toshok  <toshok@ximian.com>
4663
4664         * DataGridTableStyle.cs: reproduce buggy MS behavior (with
4665         comments).
4666
4667         * DataGrid.cs: implement ResetForeColor such that the tests
4668         succeed.
4669         
4670 2006-10-27  Chris Toshok  <toshok@ximian.com>
4671
4672         * ToolBarButton.cs: setting text/tooltiptext to null results in it
4673         being set to "".  Fixes bug #79759.
4674
4675 2006-10-27  Jackson Harper  <jackson@ximian.com>
4676
4677         * TextControl.cs: We need to clear the entire selection area when
4678         setting the start, otherwise multiline selections are still
4679         visible.
4680
4681 2006-10-26  Chris Toshok  <toshok@ximian.com>
4682
4683         * PropertyGridView.cs: 
4684
4685         - ifdef all the code specific to the double
4686         buffer case, and provide some alternatives in the non-doublebuffer
4687         code, which makes heavy use of XplatUI.ScrollWindow to move things
4688         around without having to invalidate (and cause flicker).  There
4689         are still some drawing problems in the non-doublebuffered case, so
4690         DOUBLEBUFFER is defined by default.
4691
4692         - Fix the way dropdowns are handled.  now we explicitly watch for
4693         the events which might cause the dropdown to close, and break out
4694         of the nested event loop there.  This gets rid of all Capture
4695         code, at the expense of the Msg special casing.  Seems to work,
4696         though, and fixes bug #79743.
4697
4698 2006-10-27  Rolf Bjarne Kvinge <RKvinge@novell.com>
4699         * Control.cs: SetIsRecreating now recreates implicitly added
4700         child controls as well. Finally fixes #79629. The flag passed to 
4701         SetIsRecreating has also been removed since it wasn't used.
4702         
4703 2006-10-26  Carlos Alberto Cortez <calberto.cortez@gmail.com>
4704
4705         * PageSetupDialog.cs: Clean some code, fix some bits, 
4706         add some checks, and add a printer sub-dialog.
4707
4708 2006-10-26  Chris Toshok  <toshok@ximian.com>
4709
4710         * PropertyGrid.cs: make set_SelectedObject call
4711         set_SelectedObjects, and move the duplicate logic to the
4712         SelectedObjects setter.  Also, raise SelectedObjectsChanged.
4713
4714         * PropertyGridView.cs: hide the textbox when we get a
4715         SelectedObjectsChanged event.
4716
4717         Fixes bug #79748.
4718
4719 2006-10-26  Chris Toshok  <toshok@ximian.com>
4720
4721         * PropertyGridView.cs: deal with the type converter not supporting
4722         GetStandardValues() or GetStandardValues() returning null, which
4723         is does in the default case.  Fixes #79742.
4724
4725 2006-10-25  Andreia Gaita <shana.ufie@gmail.com>
4726
4727         * CheckedListBox.cs: nunit no longer crashes when selecting 
4728         Project/Edit menu option
4729         
4730 2006-10-25  Andreia Gaita <shana.ufie@gmail.com>
4731
4732         * MenuAPI.cs: prevent ExecFocusedItem from blowing up if there
4733         is no menu selected. fixes #79739
4734
4735 2006-10-25  Chris Toshok  <toshok@ximian.com>
4736
4737         * PropertyGridView.cs: factor out the splitter invalidation code
4738         into the SplitterPercent setter, and for kicks implement the
4739         Ctrl-Left/Ctrl-Right handling that moves the splitter by a small
4740         amount in either direction.
4741
4742 2006-10-25  Chris Toshok  <toshok@ximian.com>
4743
4744         * PropertyGridView.cs: do some cleanup of the brush used to draw
4745         text - read only fields should be grayed out.  not sure how to do
4746         this with the textbox, though.  but the textbox's should also be
4747         readonly now at least.  Also, hide/show the textbox when resizing
4748         the control.
4749         
4750         * CursorConverter.cs: use System.Reflection when getting the
4751         properties of Cursors, as TypeDescriptor.GetProperties isn't
4752         returning static properties.
4753
4754 2006-10-25  Chris Toshok  <toshok@ximian.com>
4755
4756         * PropertyGridView.cs: factor out the up/down handling, and reuse
4757         it for page up/down.  also add End/Home support.
4758
4759 2006-10-25  Chris Toshok  <toshok@ximian.com>
4760
4761         * PropertyGridView.cs:
4762
4763         - ensure the selected grid item is visible in the scrolled area,
4764         fixes bug #79572.
4765
4766         - fix Keys.Down handling when you're on the last item in the
4767         propertygrid.
4768
4769 2006-10-25  Mike Kestner  <mkestner@novell.com>
4770
4771         * MenuAPI.cs : set the ActiveTracker for MainMenu non-popup 
4772         clicks too.  Fixes #79725.
4773
4774 2006-10-24  Chris Toshok  <toshok@ximian.com>
4775
4776         * PropertyGrid.cs: use property.Converter instead of
4777         TypeDescriptor.GetConverter(property.PropertyType), so we catch
4778         TypeConverters declared on the property as well as on the
4779         PropertyType.  Fixes bug #79678.
4780
4781 2006-10-24  Alexander Olk  <alex.olk@googlemail.com>
4782
4783         * MimeIcon.cs, Mime.cs:
4784           Fallback to the default platform handler if no shared mime info
4785           stuff exists (fixes #79693).
4786
4787 2006-10-20 Andreia Gaita <shana.ufie@gmail.com>
4788         * ContainerControl.cs: Incorrect contains check in ActiveControl 
4789         from previous fix (duh).
4790
4791 2006-10-20  Chris Toshok  <toshok@ximian.com>
4792
4793         * PropertyGridView.cs: the dropdown should be MIN(number of items
4794         in list, 15).  Fixes #79551.
4795
4796 2006-10-20 Andreia Gaita <shana.ufie@gmail.com>
4797         Fixes #79384, #79394, #79652, #79667
4798         * Application.cs: 
4799         
4800         - Modal windows are now destroyed in the proper order for windows
4801         
4802         * ContainerControl.cs:
4803         
4804         - ActiveControl setter has more conditions on when to return:
4805                 - if we're reselecting the active control, but it actually
4806                 didn't have focus (window hidden or some such), it runs
4807                 - if the active control being selected doesn't actually 
4808                 exist in the container, it returns
4809         
4810         * Form.cs
4811         
4812         - The ShowDialog now gets the current form as the owner when
4813         invoking without parameters, and correctly activates the owner 
4814         when returning
4815         
4816         * MessageBox.cs
4817         
4818         - MessageBox now catches the Escape key to exit
4819
4820 2006-10-20  Chris Toshok  <toshok@ximian.com>
4821
4822         * PropertyGridView.cs: fix a number of issues (bug #78565, and
4823         most of bug #79676):
4824
4825         - you can navigate around the property grid with the arrow keys.
4826
4827         - the dropdown is sized properly when the pg has a vertical
4828         scrollbar.
4829
4830         - fix the indentation for subentries, and properly select the
4831         entire label rect.
4832
4833         - fix the gray bar's drawing (only draw it to the last element,
4834         not for the height of the control.  Also make sure we draw that
4835         last horizontal grid line.
4836
4837         - use the same mechanism the datagrid uses wrt the editing textbox
4838         when scrolling/resizing/etc.  Namely, we hide it first, do the
4839         operation, then show it again (if it's still visible).
4840         
4841         - aggressively remove a lot of unnecessary refreshes (and also
4842         calls to Invalidate(). call more limited variants, and only redraw
4843         what we need.)
4844         
4845         * PropertyGrid.cs:
4846
4847         - when we're populating the merged collection, fill in the UI
4848         parent with either the passed in item, or the category item we
4849         create.
4850
4851         - remove the Refresh call from the BorderHelpControl.OnSizeChanged.
4852
4853         * GridItem.cs: drop some fully qualified names.
4854         
4855         * GridEntry.cs: add a "UIParent", which is basically the parent
4856         treenode.
4857
4858         * GridItemCollection.cs: add an IndexOf method.
4859
4860 2006-10-20  Mike Kestner  <mkestner@novell.com>
4861
4862         * MainMenu.cs : go back to Draw in OnMenuChanged.  Until we get
4863         a working win32 NC invalidation mechanism, we can't invalidate
4864         menus.  [Fixes #79705]
4865
4866 2006-10-20  Mike Kestner  <mkestner@novell.com>
4867
4868         * ListBox.cs : don't update the VScrollbar if the list is empty,
4869         just hide it.  [Fixes #79692]
4870
4871 2006-10-20  Jackson Harper  <jackson@ximian.com>
4872
4873         * RichTextBox.cs: Handle some special chars better, and don't skip
4874         the entire group when we encounter a special char that we don't
4875         handle correctly.
4876
4877 2006-10-18  Chris Toshok  <toshok@ximian.com>
4878
4879         * PropertyGridView.cs: address a number of issues from bug #79676,
4880         mostly of the cosmetic variety.
4881
4882         - The highlight rectangle for indented items not extends all the
4883         way to the left.
4884
4885         - Indented items aren't indented so much.
4886
4887         - the dropdown is properly sized width-wise if the pg has a
4888         vertical scrollbar.
4889
4890 2006-10-18  Chris Toshok  <toshok@ximian.com>
4891
4892         * XplatUIX11.cs (SystrayAdd): a rather convoluted change, but the
4893         systray stuff is rather convoluted to begin with.
4894
4895         systray icons are a single window for some reason (that I haven't
4896         figured out yet), and for them, client_window == whole_window.
4897         Given the way the tests are structured elsewhere to determine
4898         which paints are pending (client vs. nc), that situation will
4899         always yield PAINT, not NCPAINT.  So, if we have a pending
4900         nc_expose and no pending expose, remove the hwnd from the paint
4901         queue, and also set nc_expose_pending to false, to keep us from
4902         blocking further expose's adding the hwnd to the paint queue.
4903
4904         phew.  like i said, a rather convoluted change.  Fixes the
4905         notifyicon repaint issues in bug #79645.
4906
4907 2006-10-18  Chris Toshok  <toshok@ximian.com>
4908
4909         * Form.cs: when getting the backcolor of the form, don't get
4910         base.BackColor, as this allows parents to influence the background
4911         color.  This breaks mdi forms.  Instead, if the background_color
4912         is empty, return the default.
4913
4914 2006-10-18  Chris Toshok  <toshok@ximian.com>
4915
4916         * XplatUIX11.cs: change some debug ifdefs, and return XGetParent
4917         to being private instead of internal static.
4918
4919         * Control.cs: remove all the stupid ParentWaitingOnRecreation
4920         crap, it wasn't working for more deeply nested controls anyway,
4921         and we already have the is_recreating flag - use that instead.
4922         Before calling DestroyHandle in RecreateHandle, recurse through
4923         the control tree setting it to true.  this returns the recreate
4924         code to much of its original simplicity, while now guaranteeing we
4925         actually recreate everything we're supposed to.  This change gets
4926         fyireporting actually showing mdi children.
4927
4928 2006-10-17  Chris Toshok  <toshok@ximian.com>
4929
4930         * Form.cs: remove some debug spew, and collapse some duplicate
4931         code at the end of SetClientSizeCore.
4932
4933         * XplatUIX11.cs: 
4934         - add some more debug spew here too wrt Destroy handling.
4935         - don't call hwnd.Dispose in DestroyWindow, it's effectively done
4936         in Control's handling of WM_DESTROY.
4937         - Remove the handling of zombie window DestroyNotifies from the
4938         event loop - we don't need it.  Now the only DestroyNotifies we
4939         actually handle are ones generated by X.
4940         - When sending _NET_ACTIVE_WINDOW, the first param should be 1, to
4941         match gtk's (functioning) handling of this. This keep metacity
4942         from leaving droppings in the form of wm borders with no window
4943         contents all over the place.
4944
4945         * Control.cs:
4946         - add a bunch of debug spew wrt control recreation.
4947         - fix a bug where we weren't tracking Visible properly on
4948         recreated hwnds.
4949         - fixed the WM_PAINT double buffer handling to support re-entrant
4950         calls (yes, i know it's gross, but it's happening to us).
4951
4952 2006-10-17  Rolf Bjarne Kvinge  <rolfkvinge@ya.com>
4953         * ThemeWin32Classic.cs: changed drawing of selected days
4954         to make them look better.
4955
4956 2006-10-16  Chris Toshok  <toshok@ximian.com>
4957
4958         * Hwnd.cs: replace the user_data/client_dc/non_client_dc with
4959         drawing_stack.  Nuke the ClientDC/NonClientDC properties.
4960
4961         * XplatUIX11.cs: move away from using hwnd.client_dc and
4962         hwnd.non_client_dc and on to a stack of dc's (and in window's
4963         case, PAINTSTRUCT's), so we can deal with nested Paint calls
4964         without puking or not disposing of Graphics objects.
4965
4966         * XplatUIOSX.cs: same.
4967
4968         * XplatUIWin32.cs: same.
4969
4970 2006-10-03  Alexander Olk  <alex.olk@googlemail.com>
4971
4972         * FileDialog.cs: Don't call on_directory_changed inside
4973           OnSelectedIndexChanged (it changes the SelectedIndex too).
4974           Instead move it to OnSelectionChangeCommitted.
4975
4976 2006-10-13  Chris Toshok  <toshok@ximian.com>
4977
4978         * XplatUIX11.cs: more Destroy work.  the current code does the
4979         following things, in order:
4980
4981         1. Enumerates all handles of all controls at or below the one
4982         being destroyed, in pre-order.  As it is doing this, it marks the
4983         handles as zombie and clears all references to them.
4984         
4985         2. calls XDestroyWindow on the window passed in.
4986
4987         3. SendMessage's WM_DESTROY to all he handles in the accumulated
4988         list.
4989
4990 2006-10-13  Chris Toshok  <toshok@ximian.com>
4991
4992         * XplatUIX11.cs: set hwnd.zombie to true before calling
4993         SendMessage (WM_DESTROY).  this keeps us from marking the new
4994         window a zombie, and also keeps us from calling sendmessage at
4995         all.
4996
4997 2006-10-13  Jackson Harper  <jackson@ximian.com>
4998
4999         * TextControl.cs: Do not show the caret and selection at the same
5000         time.  Reduces ugliness by 35%.
5001
5002 2006-10-13  Chris Toshok  <toshok@ximian.com>
5003
5004         * XplatUIX11.cs (SendWMDestroyMessages): set the hwnd to be a
5005         zombie after we do the recursive call, so we actually do call
5006         SendMessage on the children controls.
5007         (GetMessage): if we find a pending paint event for a zombie hwnd,
5008         remove the hwnd from the paint queue, or else it will always be
5009         there (and we'll effectively loop infinitely)
5010
5011 2006-10-13  Mike Kestner  <mkestner@novell.com>
5012
5013         * MenuItem.cs : add Selected format under keynav too.
5014         Fixes #79528.
5015
5016 2006-10-13  Gert Driesen  <drieseng@users.sourceforge.net>
5017
5018         * PropertyGrid.cs: Fixed some NRE's and small difference between our
5019         implementation and that of MS.
5020
5021 2006-10-13  Chris Toshok  <toshok@ximian.com>
5022
5023         * Control.cs (OnInvalidated) only futz with the invalid_region if
5024         the control is double buffered.  this fixes the apparent hang in
5025         the ListView unit tests.  Someone needs to make the
5026         BeginEndUpdateTest not call OnInvalidated 15004 times, though..
5027
5028 2006-10-13  Chris Toshok  <toshok@ximian.com>
5029
5030         * PropertyGridView.cs:
5031
5032         - do a little refactoring so that only one place calls
5033         dropdown_form.Hide, and that is CloseDropDown.  make everywhere
5034         else call that.  Also make it Refresh, since there are redraw bugs
5035         otherwise (we should take a look at that...)
5036
5037         - do a little more refactoring work to share the body of code
5038         involved with the drop down.  it was duplicated in the code
5039         dealing with the listbox handling and in the code dealing with the
5040         UITypeEditors.
5041
5042         - add a Capture to the dropdown form's control once it's
5043         displayed, and add a MouseDown handler that checks to make sure
5044         the position is inside the control.  If it's not, close the
5045         dropdown.  This fixes #78190.
5046
5047         - in SetPropertyValueFromUITypeEditor, only call SetPropertyValue
5048         if the value is different than the initial value.
5049         
5050 2006-10-13  Andreia Gaita  <shana.ufie@gmail.com>
5051
5052         * Control.cs: see #78650
5053         - Fixed GetNextControl for several cases:
5054                 - Changed FindFlatForward to return 
5055                 correct sibling control when more than one
5056                 control has same TabIndex as the currently 
5057                 focused one.
5058                 - Changed FindFlatBackward to loop children
5059                 from last to first and apply same logic as in
5060                 FindFlatForward
5061                 - Changed FindControlForward to search for
5062                 children when control is not a container
5063                 but has children, or search for siblings if
5064                 control is a container...
5065                 - Changed FindControlBackward   to continue
5066                 searching for child controls when hitting 
5067                 Panel-like parents
5068                 
5069         - Fixed Focus method to update ActiveControl
5070         (FocusTest.FocusSetsActive failure)
5071         
5072         * TabControl.cs:
5073         - Focus rectangle now refreshes when gaining
5074         or losing focus
5075         - Removed grab for Tab key on IsInputKey that 
5076         was keeping tab navigation from working (#78650)
5077
5078 2006-10-13  Chris Toshok  <toshok@ximian.com>
5079
5080         * PropertyGridView.cs:
5081         - Rewrite SetPropertyValue to loop over SelectedGridItem's
5082         SelectedObjects.
5083
5084         - Deal with GridItem.Value == null a few places.
5085
5086         * PropertyGrid.cs: 
5087         - replace the PopulateGridItemCollection with a pair of methods
5088         which compute the intersection of all the properties in the
5089         SelectedObjects array.  Fixes #79615.
5090
5091         - Throw ArgumentException from set_SelectedObjects if there's a
5092         null in the array.
5093
5094         - Add GetTarget method which can be used to traverse up the
5095         GridItem.Parent chain.  It depends on the assumption that
5096         selected_objects for different GridEntries are always in the same
5097         order (a safe assumption).  Use this method and loop over all the
5098         selected objects in the entry when calling RemoveValueChanged and
5099         AddValueChanged.
5100         
5101         * GridEntry.cs: Make this handle multiple selected objects.
5102         .Value returns null if not all the selected objects share the same
5103         value.
5104
5105 2006-10-12  Jonathan Pobst  <monkey@jpobst.com>
5106         * ToolStrip.cs, ToolStripButton.cs, ToolStripComboBox.cs,
5107           ToolStripControlHost.cs, ToolStripItem.cs, ToolStripLabel.cs,
5108           ToolStripProfessionalRenderer.cs, ToolStripProgressBar.cs,
5109           ToolStripSeparator.cs, ToolStripSplitStackLayout.cs,
5110           ToolStripTextBox.cs: Add accessibility, fix attributes/API and
5111         add additional functionality.
5112
5113 2006-10-12  Mike Kestner  <mkestner@novell.com>
5114
5115         * ErrorProvider.cs : new ToolTipWindow ctor sig.
5116         * HelpProvider.cs : new ToolTipWindow ctor sig.
5117         * ToolTip.cs : remove ToolTip param from Window sig since it is
5118         not used.
5119         * ToolBar.cs : add tooltip support.  Fixes #79565.
5120
5121 2006-10-12  Rolf Bjarne Kvinge  <rolfkvinge@ya.com>
5122
5123         * ComboBox.cs: move the events in set_SelectedIndex to 
5124         after the call to HighlightIndex in order to avoid 
5125         possible recursion and subsequent problems with the call
5126         to HighlightIndex and include a range check in 
5127         set_HighlightIndex. Fixes #79588
5128         
5129 2006-10-12  Rolf Bjarne Kvinge  <rolfkvinge@ya.com>
5130
5131         * MonthCalendar.cs: When FirstDayOfWeek is default set firstday 
5132         to ui thread's settings instead of sunday. 
5133         * ThemeWin32Classic.cs: Localize the day string. Fixes #79563
5134
5135 2006-10-12  Rolf Bjarne Kvinge  <rolfkvinge@ya.com>
5136
5137         * DateTimePicker.cs
5138         * MonthCalendar.cs
5139         * ThemeWin32Classic.cs: rewrote DateTimePicker to fix bug #78364
5140         and implement missing functionality (selecting different parts 
5141         of the date and edit them individually with the keyboard).
5142         
5143 2006-10-11  Chris Toshok  <toshok@ximian.com>
5144
5145         * Control.cs (OnInvalidated): fix NRE relating to last change.
5146
5147 2006-10-11  Chris Toshok  <toshok@ximian.com>
5148
5149         * XplatUIX11.cs (SetWMStyles): make sure we include the MAXIMIZED
5150         atoms in _NET_WM_STATE here if the window is maximized.  We need
5151         to do this because we're *replacing* the existing _NET_WM_STATE
5152         property, so those atoms will be lost otherwise, and any further
5153         call to GetWindowState will return Normal for a window which is
5154         actually maximized.  Fixes #79338.
5155
5156 2006-10-11  Jackson Harper  <jackson@ximian.com>
5157
5158         * TextControl.cs: Special case for setting selection end to
5159         selection start, we basically kill the anchor.
5160         - some todo comments.
5161
5162 2006-10-11  Chris Toshok  <toshok@ximian.com>
5163
5164         * Control.cs: switch to using an "invalid_region" to track which
5165         parts of the image buffer need updating.  This is more code than
5166         the simple fix from r66532.  That version just attempted to always
5167         fill the entire buffer on redraw, which turns out to be
5168         inefficient when invalidating small rectangles.  This version
5169         simply adds the invalid rectangle to the invalid region.  When we
5170         get any WM_PAINT message we see if it can be filled using the
5171         image buffer, and if it can't (if the paint event's clip rectangle
5172         is visible in the invalid region) we first fill the image buffer.
5173         So, the image buffer is still a cache, we just fill it lazily.
5174
5175         * PaintEventArgs.cs: remove the SetClipRectangle method, we don't
5176         need it any longer.
5177
5178 2006-10-11  Chris Toshok  <toshok@ximian.com>
5179
5180         * XplatUIX11.cs (SetWindowPos): we need to update both position as
5181         well as size after calling XMoveResizeWindow.  This keeps us from
5182         ignoring future SetWindowPos calls.  Fixes the disappearing
5183         DateTimePicker in the ToolBarDockExample from bug #72499.
5184
5185 2006-10-11  Chris Toshok  <toshok@ximian.com>
5186
5187         * TextBoxBase.cs: reorder things a bit when it comes to
5188         resizing-causing-recalculation.  we were recalculating the
5189         document when our position was changed, which shouldn't happen.
5190         We only care about size changes.  Clear up some more redundant
5191         recalculation calls while I'm at it.  This makes the toolbar dock
5192         example snappy when you're just dragging toolbars around (since it
5193         causes a relayout whenever you move one.)
5194
5195 2006-10-11  Chris Toshok  <toshok@ximian.com>
5196
5197         * ToolBarButton.cs (get_Rectangle): this only returns
5198         Rectangle.Empty if Visible == false, or Parent == null.
5199         Parent.Visible doesn't matter.
5200
5201 2006-10-10  Chris Toshok  <toshok@ximian.com>
5202
5203         * Control.cs, PaintEventArgs.cs: "internal set { .. }" isn't loved
5204         by .net 1.1, so switch to an internal method instead.
5205
5206 2006-10-10  Chris Toshok  <toshok@ximian.com>
5207
5208         * Control.cs (WM_PAINT): when a control is double buffered we draw
5209         initially to the ImageBuffer and then copy from there.  But when a
5210         parent control which has child controls is double buffered, the
5211         initial drawing doesn't encompass the entire ClientRectangle of
5212         the parent control, so we end up with uninitialized bits (this is
5213         easily seen by dragging the top toolbar in
5214         wf-apps/ToolBarDockExample to the right, quickly).  The fix is to
5215         manually set the ClipRectangle of the paint_event (only the one we
5216         use to populate the ImageBuffer) to ClientRectangle.  Fixes more
5217         of the nastiness in bug #72499.
5218
5219         * PaintEventArgs.cs: Add an internal setter for ClipRectangle,
5220         which we use in Control.cs's WM_PAINT handling.
5221
5222 2006-10-10  Jackson Harper  <jackson@ximian.com>
5223
5224         * TextBoxBase.cs: Finish off the autoscrolling stuff.
5225
5226 2006-10-10  Chris Toshok  <toshok@ximian.com>
5227
5228         * Cursor.cs: Apply a slightly different patch to the one suggested
5229         in #79609.
5230
5231 2006-10-10  Jackson Harper  <jackson@ximian.com>
5232
5233         * MenuItem.cs: Make sure to put the mdi child in the hashtable,
5234         not the parent form.
5235         * TextControl.cs: use difference in old line count vs new count to
5236         calculate how many lines were added, this takes into account soft
5237         line breaks properly.
5238
5239 2006-10-10  Chris Toshok  <toshok@ximian.com>
5240
5241         * LinkLabel.cs: don't call MeasureCharacterRanges against a
5242         rectangle located at 0,0 and the size of the text.  Use
5243         ClientRectangle instead.  This fixes rendering of non-left aligned
5244         link labels.
5245
5246 2006-10-10  Jackson Harper  <jackson@ximian.com>
5247
5248         * TextBoxBase.cs: When we set the selection start position the
5249         caret.
5250         * TextControl.cs: Need to update the caret when we decrement it to
5251         zero.
5252         - Make sure that the selection_visible flag gets reset to false if
5253         the selection isn't visible.  Before this you could get it set to
5254         visible by changing the selection start, then changing the end to
5255         equal the start.
5256
5257 2006-10-09  Jackson Harper  <jackson@ximian.com>
5258
5259         * TreeView.cs: Don't update scrollbars when we aren't visible.
5260         * TreeNodeCollection.cs: Only need to update scrollbars if being
5261         added to an expanded visible node or the root node.
5262
5263 2006-10-09  Chris Toshok  <toshok@ximian.com>
5264
5265         * XplatUIX11.cs (SendMessage): fix NRE.
5266
5267 2006-10-09  Jackson Harper  <jackson@ximian.com>
5268
5269         * TextBoxBase.cs: Implement horizontal autoscrolling.
5270         * TextControl.cs: Add a movement types that allows moving forward
5271         and backwards without wrapping.
5272
5273 2006-10-09  Mike Kestner  <mkestner@novell.com>
5274
5275         * ListViewItem.cs : layout changes for wrapped LargeIcon labels
5276         with focus "expansion" of labels.  Fixes #79532 and then some.
5277         * ThemeWin32Classic.cs : add LineLimit to ListView label format
5278         when wrapping.
5279
5280 2006-10-09  Jackson Harper  <jackson@ximian.com>
5281
5282         * TextBoxBase.cs: Set the default max values to MaxValue since
5283         we use the scrollbar for autoscrolling and the default value is
5284         100.  If we don't do this the caret won't keep up with typing
5285         after about 18 characters.
5286         * TextControl.cs: Make sure the selection is offset by the
5287         viewport x.  This fixes selection when using auto scrolling.
5288
5289 2006-10-07  Andreia Gaita <shana.ufie@gmail.com>
5290         
5291         * Form.cs: The active control should be selected after the 
5292         OnLoad so that any child control initialization that affects
5293         the selection is done. Fixes #79406
5294
5295 2006-10-06  Chris Toshok  <toshok@ximian.com>
5296
5297         * XplatUIX11.cs: This is perhaps a dangerous change, but it seems
5298         to have no evil effects.
5299
5300         - Stop selecting StructureNotifyMask on non-toplevel windows.
5301
5302           The only way children should be resized is by using the SWF api,
5303           and we already send WM_WINDOWPOSCHANGED messages in those cases.
5304           Toplevel windows can be interacted with via the window manager,
5305           and so we keep the input mask there.
5306
5307           The other event StructureNotifyMask gives us (that we care
5308           about) is DestroyNotify.  The code is already structured such
5309           that it assumes we won't be getting a DestroyNotify event for
5310           the window we pass to XDestroyWindow (which is what
5311           StructureNotifyMask is supposed to guarantee.)  So, that code
5312           shouldn't be affected by this either.
5313
5314         - Stop selecting VisibilityChangeMask altogether.
5315
5316           We weren't doing anything with the resulting events anyway.
5317         
5318         This vastly reduces the number of X requests and events we see
5319         when resizing/laying out a large ui.
5320
5321 2006-10-06  Chris Toshok  <toshok@ximian.com>
5322
5323         * ScrollableControl.cs (DisplayRectangle): we need to take into
5324         account the DockPadding regardless of whether or not auto_scroll
5325         == true.  rework this slightly to this effect, and fix bug #79606,
5326         and part of #72499 (you can now see the drag handles and drag
5327         toolbars around).
5328
5329 2006-10-06  Gert Driesen  <drieseng@users.souceforge.net>
5330
5331         * ListViewItem.cs: Collections of selected and checked items are now
5332         dynamically rebuilt. Whenever an item is (un)checked or (de)selected
5333         we mark the collection "dirty".
5334         * ListView.cs: Marked collections readonly. Modified UpdateSelection
5335         to only clear SelectedItems when a new item is selected and MultiSelect
5336         is enabled. CheckedItems and SelectedItems now subscribe to Changed
5337         event of ListViewItemCollection, and mark its list dirty whenever
5338         that event is fire. This allows us to return selected/checked items 
5339         in the same order as they are in the Items collection. This matches
5340         the MS behavior.
5341
5342 2006-10-06  Chris Toshok  <toshok@ximian.com>
5343
5344         * NotifyIcon.cs (HandleMouseUp): only show the context menu on
5345         right mouse clicks.  Fixes bug #79593.
5346
5347 2006-10-06  Chris Toshok  <toshok@ximian.com>
5348
5349         * Splitter.cs: doh, fix splitters that don't want to cancel the
5350         movement when you drag them.  Also, impose the limits on the
5351         values we send to the SplitterMovingEvent.  Fixes #79598.
5352
5353 2006-10-06  Jackson Harper  <jackson@ximian.com>
5354
5355         * TextBoxBase.cs: Ignore whether or not the scrollbar is enabled,
5356         since we use this for auto scrolling also.
5357
5358 2006-10-05  Chris Toshok  <toshok@ximian.com>
5359
5360         * DataGridBoolColumn.cs: Nuke the code from ConcedeFocus.  I'm
5361         beginning to think that most datagrid column types don't need this
5362         method.  Fixes bug #79392.
5363
5364 2006-10-05  Chris Toshok  <toshok@ximian.com>
5365
5366         * DataGrid.cs: move back to a more lazy scheme for creating the
5367         CurrencyManager, so we aren't updating it every time you set
5368         either DataSource or DataMember.  Also, don't call
5369         RecreateDataGridRows if the currency manager hasn't changed.
5370
5371 2006-10-05  Chris Toshok  <toshok@ximian.com>
5372
5373         * ComboBox.cs: by the time the OnSelectionChangeCommitted event is
5374         emitted, SelectedIndex should already be updated.  Fixes bug
5375         #78929.
5376
5377 2006-10-05  Jonathan Pobst  <monkey@jpobst.com>
5378
5379         * ToolStripComboBox.cs, ToolStripControlHost.cs, ToolStripProgressBar,
5380           ToolStripTextBox.cs: Initial commit.
5381         * ToolStripItem.cs: Fixes for OnLayout, BackColor, Parent.
5382
5383 2006-10-05  Jackson Harper  <jackson@ximian.com>
5384
5385         * TabControl.cs: We need to invalidate the tab control area when
5386         new ones are added (duh).
5387
5388 2006-10-03  Chris Toshok  <toshok@ximian.com>
5389
5390         * Form.cs (ProcessDialogKey): if the focused control is in this
5391         form and is a button, call its PerformClick method here.  Fixes
5392         #79534.
5393
5394 2006-10-04  Jackson Harper  <jackson@ximian.com>
5395
5396         * TabPage.cs: Ignore setting of Visible, and add an internal
5397         method for setting the controls visibility.  TabPage's Visible
5398         property is a little strange on MS, this seems to make us
5399         compatible, and fixes cases where people set all the tab pages to
5400         visible.
5401         * TabControl.cs: Use the new internal setting on tab pages
5402         visibility.
5403
5404 2006-10-03  Mike Kestner  <mkestner@novell.com>
5405
5406         * ComboBox.cs : raise Click on ComboTextBox clicks. Fixes #79555.
5407
5408 2006-10-03  Mike Kestner  <mkestner@novell.com>
5409
5410         * ListView.cs : use is_visible instead of Visible to check if 
5411         scrollbars should be placed/sized.  Also some max_wrap_width
5412         love for LargeIcon view.  [Fixes #79533]
5413
5414 2006-10-03  Atsushi Enomoto  <atsushi@ximian.com>
5415
5416         * TextControl.cs :
5417           Make set_TextAlign() do actually update the align. Fixed #78403.
5418
5419 2006-10-03  Chris Toshok  <toshok@ximian.com>
5420
5421         * DataGrid.cs: fix a crash when switching datasources if the
5422         vertical scrollbar is at someplace other than Value = 0.  Also,
5423         reduce the number of recalculation passes we do in SetDataSource
5424         from 2 to 1.
5425
5426 2006-10-03  Jackson Harper  <jackson@ximian.com>
5427
5428         * TextBoxBase.cs: Move the if value the same bail check up, we
5429         don't want to empty the document if it is already empty, this
5430         seems to severly mess up the caret.  TODO: I should probably fix
5431         the empty statement to update teh caret somehow.
5432
5433 2006-10-03  Chris Toshok  <toshok@ximian.com>
5434
5435         * ThemeWin32Classic.cs, DataGrid.cs: some changes so that the
5436         incredibly hacky Windows.Forms FAQ autosize rows entry (it uses
5437         reflection, an internal row type, properties on said type, etc.)
5438         will work with our datagrid.  Fixes #79531.
5439
5440 2006-10-03  Alexander Olk  <alex.olk@googlemail.com>
5441
5442         * FileDialog.cs: Don't crash if a path is not accessible
5443           (System.UnauthorizedAccessException). Fixes #79569.
5444         * MimeIcon.cs: Workaround for a Uri bug. Unix paths/files can have
5445           a ':' too. Return unknown icon for those paths/files.
5446
5447 2006-10-03  Sebastien Pouliot  <sebastien@ximian.com>
5448
5449         * ToolTip.cs: Fix rare, but possible, NRE on MouseEnter when 
5450         GetContainerControl returns null.
5451
5452 2006-10-02  Chris Toshok  <toshok@ximian.com>
5453
5454         * XplatUIX11.cs (GetWindowState): use hwnd.client_window in the
5455         call to XGetWindowAttributes instead of "handle".  fixes an X
5456         error using notifyicon after the NotifyIconWindow to Form base
5457         class switch.
5458
5459 2006-10-02  Chris Toshok  <toshok@ximian.com>
5460
5461         * XplatUIX11.cs (QueryPointer): new function, encapsulating the
5462         server grab and looping we need to do to get down to the most
5463         deeply nested child window.
5464         (SetCursorPos): use QueryPointer instead of GetCursorPos, and call
5465         QueryPointer again after the WarpPointer so we can generate a
5466         proper (fake) MotionNotify event to be enqueued in the destination
5467         window's queue.
5468         (GetCursorPos): call QueryPointer.
5469
5470         Fixes #79556.
5471
5472 2006-10-02  Jackson Harper  <jackson@ximian.com>
5473
5474         * NotifyIcon.cs: Derive the notify icon from a form, so things
5475         like FindForm work on it.
5476         - Swallow the WM_CONTEXTMENU message, since that is generated on
5477         mouse down, and context menu is a mouse up kinda guy.  I believe
5478         the correct fix here is probably to make the notify icon entirely
5479         NC area, but this seems to work fine for anyone not manipulating
5480         WndProc.
5481
5482 2006-10-02  Jonathan Pobst  <monkey@jpobst.com>
5483
5484         * ToolStrip.cs, ToolStripButton.cs, ToolStripItem.cs,
5485           ToolStripItemCollection.cs, ToolStripLabel.cs,
5486           ToolStripProfessionalRenderer.cs, ToolStripRenderer.cs,
5487           ToolStripSeparator.cs, ToolStripSplitStackLayout.cs:
5488           Initial implementation.
5489         * TextRenderer.cs: Provide padding to MeasureText.
5490
5491 2006-10-02  Sebastien Pouliot  <sebastien@ximian.com>
5492
5493         * ButtonBase.cs: Fix CreateAccessibilityInstance to return an instance
5494         of ButtonBaseAccessibleObject. Fix bug #79552.
5495
5496 2006-10-02  Jackson Harper  <jackson@ximian.com>
5497
5498         * MdiWindowManager.cs: When maximizing use the containers client
5499         rect, not it's bounds, so nc area is accounted correctly.
5500         - Use the parent form's size for the menu position, since the
5501         client isn't always the full form size.
5502
5503 2006-10-01  Chris Toshok  <toshok@ximian.com>
5504
5505         * ScrollableControl.cs: make sure neither right_edge or
5506         bottom_edge are < 0, since they're used as LargeChange for the
5507         horiz/vert scrollbars respectively.  Fixes #79539.
5508
5509 2006-10-01  Chris Toshok  <toshok@ximian.com>
5510
5511         * NotifyIcon.cs: add NotifyIconWindow.InternalRecreateHandle, so
5512         the xplatuix11 code can cause us to destroy/recreate our handle.
5513
5514         * XplatUIX11.cs
5515         (SystrayAdd):
5516         - this code can be invoked many times for the same Hwnd.  Make
5517           sure we only destroy the client window once (the first time this
5518           method is called).  This fixes bug #79544.
5519         - Remove the call to the improperly bound XSync.  why we had two
5520           bindings to this, I will never know, but this call resulted in
5521           events being discarded from the queue(!).
5522         - correct a misunderstanding of _XEMBED_INFO - the second atom is
5523           not our current state but the state we wish to be in.  So, 0 if
5524           we don't want to be mapped.  Change it to 1.
5525         (SystrayRemove): The XEMBED spec makes mention of the fact that
5526         gtk doesn't support the reparent of client windows away from the
5527         embedder.  Looking at gtksocket-x11.c seems to agree with this.
5528         The only avenue we have for removing systray icons is to destroy
5529         them.  We don't want the handle to go away for good, though, so
5530         call InternalRecreateHandle on the NotifyIconWindow.  Fixes
5531         #79545.
5532         
5533 2006-10-01  Chris Toshok  <toshok@ximian.com>
5534
5535         * Form.cs (WndProc): inline the native_enabled variable usage into
5536         the cases in which it's used.  Fixes #79536.
5537
5538 2006-09-29  Mike Kestner  <mkestner@novell.com>
5539
5540         * ListView.cs : toggle the selection state for ctrl clicks in 
5541         multiselect mode. [Fixes #79417]
5542
5543 2006-09-29  Mike Kestner  <mkestner@novell.com>
5544
5545         * ListView.cs : kill CanMultiSelect and refactor the selection
5546         code to support multiselection in the absence of mod keys. Steal
5547         arrow/home/end keys by overriding InternalPreProcessMessage to
5548         restore regressed keynav behavior.
5549         [Fixes #79416]
5550
5551 2006-09-29  Jackson Harper  <jackson@ximian.com>
5552
5553         * MdiClient.cs: Repaint the titlebars when the active window is
5554         changed.
5555
5556 2006-09-29  Chris Toshok  <toshok@ximian.com>
5557
5558         * Application.cs: when entering a runloop with a modal, make sure
5559         the hwnd is enabled.  Fixes #79480.
5560
5561 2006-09-29  Chris Toshok  <toshok@ximian.com>
5562
5563         * DataGrid.cs (CurrentCell): if we try to navigate to the add row
5564         when ListManager.CanAddRows == false, bump us back one.
5565
5566         * DataGridColumnStyle.cs (ParentReadOnly): remove the
5567         listmanager.CanAddRows check.  This makes ArrayLists uneditable
5568         using a datagrid, which is not right.
5569         (SetColumnValueAtRow): call IEditable.BeginEdit if source[rowNum]
5570         is an IEditable, but call property_descriptor.SetValue regardless.
5571         fixes #79435.
5572
5573 2006-09-29  Chris Toshok  <toshok@ximian.com>
5574
5575         * DataGridBoolColumn.cs: we need to test equality in the face of
5576         possible null values (as is the case with the default NullValue).
5577         This patch keeps us from crashing in that case.
5578
5579 2006-09-29  Jackson Harper  <jackson@ximian.com>
5580
5581         * TreeNodeCollection.cs: Don't do a recalculate/updatescrollbars
5582         here, since it will get called for every node collection in the
5583         tree. This is now done in the treeview once the sorting is
5584         finished.
5585         * TreeView.cs: Recalculate the visible order, and update the
5586         scrollbars after sorting, set the top nope to the root so that the
5587         recalc actually works.
5588
5589 2006-09-29  Chris Toshok  <toshok@ximian.com>
5590
5591         * LinkLabel.cs: more handling of the default link collection in
5592         the face of LinkArea manipulation.  The default link collection
5593         contains 1 element (start=0,length=-1).  If the user sets LinkArea
5594         to anything and the links collection is the default, clear it.
5595         Then only add the link if its nonempty.  Fixes #79518.
5596
5597 2006-09-29  Chris Toshok  <toshok@ximian.com>
5598
5599         * LinkLabel.cs (CreatePiecesFromText): calculate the length of a
5600         piece correctly when we hit a '\n'.  Fixes #79517.
5601
5602 2006-09-29  Chris Toshok  <toshok@ximian.com>
5603
5604         * MimeIcon.cs, ThemeGtk.cs, X11DesktopColors.cs, XplatUIX11GTK.cs:
5605         change the binding of gdk_init_check to take two IntPtr's, and
5606         pass IntPtr.Zero for both of them.  Fixes #79520.
5607
5608 2006-09-29  Mike Kestner  <mkestner@novell.com>
5609
5610         * ComboBox.cs : raise TextChanged on ComboTextBox.TextChanged.
5611         [Fixes #78779]
5612
5613 2006-09-28  Jackson Harper  <jackson@ximian.com>
5614
5615         * XplatUIX11.cs: When translating NC messages make sure we go from
5616         whole window to screen, not client window to screen.
5617         * MdiClient.cs: Remove the calls to PaintWindowDecorations, this
5618         method doesn't exist
5619         - Skip over controls that aren't forms when arranging.
5620
5621 2006-09-28  Jackson Harper  <jackson@ximian.com>
5622
5623         * XplatUIWin32.cs: Clip the rect to the parent window.
5624         * XplatUIStructs.cs: Add clipping modes struct.
5625         * InternalWindowManager.cs: New private method that factors title
5626         bar heights in when calculating the pos of an NC mouse message.
5627         - Use SendMessage to force a paint when the form's size is changed
5628         instead of painting the decorations immediately.
5629         - Don't let the NC button click messages get to DefWndProc,
5630         because they will attempt to handle windowing themself, and this
5631         messes up z-order (it will put them in front of the scrollbars).
5632         * XplatUIX11.cs: Make sure that we don't reset window managers if
5633         we already have one (ie the window is an MDI window).
5634
5635 2006-09-28  Chris Toshok  <toshok@ximian.com>
5636
5637         * MainMenu.cs: fix #79405 by way of a disgusting hack.  all the
5638         menu code really needs going over.
5639
5640 2006-09-27  Chris Toshok  <toshok@ximian.com>
5641
5642         * XplatUIX11.cs (SetWMStyles): more metacity wonderment.  turns
5643         out metacity ignores the MAXIMIZE_HORZ/VERT messages unless the
5644         window is maximizable.  So, we need to make sure that even if we
5645         clear the border/wm frame of those functions, they're still
5646         available (basically, we remove the decoration without removing
5647         the function).  Half the fix for #79338.
5648
5649 2006-09-27  Chris Toshok  <toshok@ximian.com>
5650
5651         * DataGrid.cs (ProcessGridKey): implement Shift-Tab handling.
5652         Fixes bug #79515.
5653
5654 2006-09-27  Chris Toshok  <toshok@ximian.com>
5655
5656         * Splitter.cs: reorder things a bit so that we don't actually
5657         draw/move the splitter until after calling OnSplitterMoving.  This
5658         lets users cancel/disallow the movement by explicitly setting
5659         event.SplitX/SplitY.  Fixes #79372.
5660
5661 2006-09-27  Jackson Harper  <jackson@ximian.com>
5662
5663         * XplatUIX11.cs: Don't hide the caret when it is being destroyed,
5664         because it is most likely on a window being destroyed, and that
5665         will give us an X11 error.
5666
5667 2006-09-27  Chris Toshok  <toshok@ximian.com>
5668
5669         * PropertyGridView.cs: half of the fix for #78190.  Clicking on
5670         the dropdown button now toggles between showing and hiding the
5671         dropdown.  Also, get rid of dropdown_form_showing and just use
5672         dropdown_form.Visible.  We still don't do a grab, but I'll leave
5673         that part to someone who has handled Capture-fu before.
5674
5675 2006-09-27  Chris Toshok  <toshok@ximian.com>
5676
5677         * DataGrid.cs: return false if alt isn't pressed when '0' is
5678         pressed.  this keeps the '0' key from being swallowed, and fixes
5679         bug #79350.
5680
5681 2006-09-27  Chris Toshok  <toshok@ximian.com>
5682
5683         * ComboBox.cs: use Invalidate when scrolling the dropdown list.
5684         Calling Refresh (in response to a scrollbar event) screws up the
5685         scrollbar painting.  Fixes bug #78923.
5686
5687 2006-09-27  Chris Toshok  <toshok@ximian.com>
5688
5689         * Theme.cs (SystemResPool): make the "if hashtable[key] == null
5690         then insert into hashtable" blocks threadsafe.
5691
5692 2006-09-27  Chris Toshok  <toshok@ximian.com>
5693
5694         * MessageBox.cs (CreateParams): the styles should be |'ed with our
5695         baseclass's, since otherwise the
5696         ControlBox/MinimizeBox/MaximizeBox assignments above have no
5697         effect.  This gets the close button back in messageboxes.
5698
5699 2006-09-27  Chris Toshok  <toshok@ximian.com>
5700
5701         * XplatUIX11.cs: make StyleSet and ExStyleSet check == with the
5702         flag, not just != 0.  this makes flags that are actually multiple
5703         bits (like WS_CAPTION) work.  fixes bug #79508.
5704
5705 2006-09-27  Jordi Mas i Hernandez <jordimash@gmail.com>
5706
5707         * PageSetupDialog.cs: add support for getting and settings the 
5708         paper size, source and orientation.
5709
5710 2006-09-26  Chris Toshok  <toshok@ximian.com>
5711
5712         * XplatUIX11.cs (SetWMStyles): turns out when SYSMENU is not set
5713         and caption == "", we need to remove the resize handles as well as
5714         the title bar.
5715
5716         * Control.cs (set_Text): turns out that setting Text on a form
5717         should change the WM styles on the window, since if ControlBox ==
5718         false, the only way to get a window border is to have a non-""
5719         Text property.  check winforms/forms/text.cs for an example.  so,
5720         call both XplatUI.SetWindowStyle and XplatUI.Text here to properly
5721         update both window styles and title.  This fixes a lot of dialogs
5722         (including the preferences dialog in MonoCalendar.)
5723
5724 2006-09-26  Chris Toshok  <toshok@ximian.com>
5725
5726         * XplatUIWin32.cs (SetParent): if parent == IntPtr.Zero (and the
5727         control isn't a Form), call Win32ShowWindow to hide the window,
5728         but don't update the control Visible property.  When we reparent
5729         back to a parent control, call SetVisible in order for the
5730         window's visibility to be reinstated.
5731
5732         * XplatUIX11.cs (SetParent): if hwnd.parent == null, reparent to
5733         the FosterParent.
5734
5735         * Control.cs (ControlCollection.Remove): remove that value.Hide()
5736         call for good, since it breaks MonoCalendar (and other things I'm
5737         sure.) Also, set all_controls to null *after* the owner calls,
5738         which end up regenerating it.
5739         (ChangeParent): allow new_parent to be == null, passing
5740         IntPtr.Zero down to XplatUI.
5741
5742         this fixes #79294 the right way.
5743
5744 2006-09-26  Mike Kestner  <mkestner@novell.com>
5745
5746         * GridEntry.cs : internal SetParent method.
5747         * PropertyGrid.cs : attach to property changed on the proper
5748         target if we have a hierarchical grid with subobjects. Setup
5749         GridItem.Parent for hierarchical items.
5750         * PropertyGridView.cs : Set value on the correct target for
5751         hierarchical grids. [Fixes #78903]
5752
5753 2006-09-26  Chris Toshok  <toshok@ximian.com>
5754
5755         * Control.cs (ChildNeedsRecreating): this should return true if
5756         either we're being recreated and the child is in our list, or our
5757         parent is waiting for our recreation.
5758
5759 2006-09-26  Chris Toshok  <toshok@ximian.com>
5760
5761         * Control.cs (ControlCollection.Remove): reinstate the
5762         value.Hide() call as suggested in bug #79294.
5763
5764 2006-09-26  Sebastien Pouliot  <sebastien@ximian.com>
5765
5766         * XplatUIX11.cs: Fixed SetCursorPos to move the cursor to screen
5767         coordinates (versus a relative move).
5768
5769 2006-09-26  Chris Toshok  <toshok@ximian.com>
5770
5771         * Control.cs: rework child recreation a little bit.  It turns out
5772         that we race between the DestroyNotify the WM_DESTROY message.  If
5773         the parent gets its DestroyNotify before the child gets the
5774         WM_DESTROY message, the child ends up not recreating (since the
5775         parent finishes its recreation on DestroyNotify, and the child
5776         checks ParentIsRecreating.)
5777
5778         So, instead we store off a list of all the child controls which
5779         need to be recreated when the parent control starts to recreate
5780         itself.  Then, when child controls get their WM_DESTROY message we
5781         check to see if they're in the parent's pending recreation list,
5782         and if so, we recreate.  This removes all dependency on ordering
5783         from the code and fixes the initial MonoCalendar upgrade dialog.
5784         
5785 2006-09-26  Jackson Harper  <jackson@ximian.com>
5786
5787         * TextControl.cs: Use the Line to get the length of the line,
5788         since soft line breaks can change the end line.
5789
5790 2006-09-26  Chris Toshok  <toshok@ximian.com>
5791
5792         * Control.cs (ControlCollection.AddImplicit): don't add the
5793         control again if it's already in one of our lists.  This keeps us
5794         from adding controls over and over again for comboboxes when their
5795         handle gets recreated (as the combobox adds implicit controls in
5796         OnHandleCreated).  Fixes the X11 errors in bug #79480.
5797
5798 2006-09-26  Jackson Harper  <jackson@ximian.com>
5799
5800         * TextControl.cs: When deleting characters make sure that any
5801         orphaned zero lengthed tags get deleted.
5802         - Fix ToString for zero lengthed tags.
5803
5804 2006-09-25  Jackson Harper  <jackson@ximian.com>
5805
5806         * TextControl.cs: When getting a tag at the location there can be
5807         multiple tags at the same spot, these are 0-lengthed tags that
5808         appear when extra formatting has been stuck in a location.  We
5809         need to pull out the last of these 0 lengthed tags.
5810
5811 2006-09-25  Jackson Harper  <jackson@ximian.com>
5812
5813         * TextControl.cs: Fix print out in debug method.
5814         * TextBoxBase.cs: When text is set bail if we are setting to the
5815         previous value.
5816         
5817 2006-09-24  Alexander Olk  <alex.olk@googlemail.com>
5818
5819         * FontDialog.cs: Fixed the up/down arrow keys issue from bug #79478.
5820           It is now possible to change the selected index in a FontXXXListBox
5821           with the up and down arrow keys from the FontXXXTextBoxes.
5822           Also, send the FontXXXTextBox mouse wheel event to the corresponding
5823           FontXXXListBoxes to match ms.
5824
5825 2006-09-22  Sebastien Pouliot  <sebastien@ximian.com>
5826
5827         * SystemInformation.cs: Return a clone of the theme's MenuFont because
5828         anyone can dispose it, anytime. All other properties returns enums, 
5829         structs or basic types so they don't need such tricks.
5830
5831 2006-09-22  Jackson Harper  <jackson@ximian.com>
5832
5833         * XplatUI.cs:
5834         * XplatUIWin32.cs:
5835         * Clipboard.cs:
5836         * DataFormats.cs:
5837         * XplatUIOSX.cs:
5838         * XplatUIDriver.cs: Update interface to add a primary selection
5839         flag, so the driver can use the primary selection buffer if
5840         needed.
5841         * XplatUIX11.cs: Allow the clipboard to retrieve from PRIMARY.
5842
5843         * RichTextBox.cs: We need to supply the data object to paste now
5844         (so we can choose to supply CLIPBOARD or PRIMARY).
5845         * TextBoxBase.cs: Supply data object to paste (see above).
5846         - Middle click uses the primary selection data object.
5847         
5848 2006-09-21  Chris Toshok  <toshok@ximian.com>
5849
5850         * XplatUIX11.cs: first little cleanup of the StyleSet (...) block
5851         of SetWMStyles.  It's still a rat's nest and is largely
5852         order-dependent which I dislike immensely.  This also fixes the X
5853         button disappearing from toplevel forms.
5854
5855 2006-09-21  Mike Kestner <mkestner@novell.com>
5856
5857         * ListBox.cs: move Jordi's click/dblclick raising code to the
5858         mouse up handler.
5859
5860 2006-09-21  Jordi Mas i Hernandez <jordimash@gmail.com>
5861
5862         * ListBox.cs: Fixes 79450
5863
5864 2006-09-21  Mike Kestner <mkestner@novell.com>
5865
5866         * TreeView.cs: guard against disposed conditions in UpdateScrollbars
5867         to deal with people updating the TreeNodeCollection after the tree
5868         is disposed.  "Fixes" 79330.
5869
5870 2006-09-20  Jackson Harper <jackson@ximian.com>
5871
5872         * TextControl.cs: Push the cursor record onto the undo stack
5873         before the delete action. This fixes 78651.
5874
5875 2006-09-20  Jonathan Chambers  <joncham@gmail.com>
5876
5877         * PropertyGridView.cs: Remove WindowStyles.WS_VISIBLE from
5878         CreateParams. Fixes 79329.
5879
5880 2006-09-19  Chris Toshok  <toshok@ximian.com>
5881
5882         * XplatUIX11.cs: a couple of blanket code massage passes to clean
5883         things up a bit.  First, get rid of the NetAtoms array (and the NA
5884         enum), and just embed the atoms as static fields.  Also, add a
5885         couple of functions (StyleSet and ExStyleSet) to clean up all the
5886         bitmask testing of styles.
5887
5888         * X11Structs.cs: remove the NA enum, not needed anymore.
5889         
5890 2006-09-19  Chris Toshok  <toshok@ximian.com>
5891
5892         * XplatUIX11.cs: apply Alexander's tool window fix for bug #79245
5893         (mapping them to _NET_WM_WINDOW_TYPE_UTILITY).  and add a little
5894         added cleanup to get MessageBox titles appearing again, which were
5895         broken by my earlier fix for caption-less/ControlBox-less windows.
5896
5897 2006-09-18  Jonathan Pobst <monkey@jpobst.com>
5898
5899         * ToolStripArrowRenderEventArgs.cs, ToolStripArrowRenderEventHandler.cs,
5900           ToolStripContentPanelRenderEventArgs.cs, ToolStripContentPanelRenderEventHandler.cs,
5901           ToolStripGripRenderEventArgs.cs, ToolStripGripRenderEventHandler.cs,
5902           ToolStripItemClickedEventArgs.cs, ToolStripItemClickedEventHandler.cs,
5903           ToolStripItemEventArgs.cs, ToolStripItemEventHandler.cs,
5904           ToolStripItemImageRenderEventArgs.cs, ToolStripItemImageRenderEventHandler.cs,
5905           ToolStripItemRenderEventArgs.cs, ToolStripItemRenderEventHandler.cs,
5906           ToolStripItemTextRenderEventArgs.cs, ToolStripItemTextRenderEventHandler.cs,
5907           ToolStripPanelRenderEventArgs.cs, ToolStripPanelRenderEventHandler.cs,
5908           ToolStripRenderEventArgs.cs, ToolStripRenderEventHandler.cs,
5909           ToolStripSeparatorRenderEventArgs.cs, ToolStripSeparatorRenderEventHandler.cs:
5910             Inital import.
5911         * ToolStripPanel.cs, ToolStripContentPanel.cs, ToolStripSeparator.cs,
5912           ToolStripButton.cs: Stubs needed for above.
5913         * ToolStrip.cs, ToolStripItem.cs: Stub a few variables/properties for above.
5914
5915 2006-09-15  Chris Toshok  <toshok@ximian.com>
5916
5917         * XplatUIX11.cs:
5918         - make the MessageQueues hashtable Synchronized.
5919         
5920         - SendMessage: if the Hwnd is owned by a different thread, use the
5921         AsyncMethod stuff to dispatch the SendMessage on the hwnd's
5922         thread.  Fixes bug #79201.
5923
5924 2006-09-15  Chris Toshok  <toshok@ximian.com>
5925
5926         * XplatUIX11.cs (SetWMStyles): rework the #79368 fix slightly.  If
5927         ControlBox == false, we disallow maximize/minimize/close.  If the
5928         form Caption is "" we also disallow move (and get rid of the Title
5929         decoration).  Unfortunately, regardless of how things are set,
5930         we're stuck with the Title and WM menu.
5931
5932 2006-09-15  Chris Toshok  <toshok@ximian.com>
5933
5934         * Application.cs: add locking around the static message_filters
5935         ArrayList, part of #79196.
5936
5937 2006-09-15  Chris Toshok  <toshok@ximian.com>
5938
5939         * XplatUIX11.cs (SetWMStyles): if Form.Text == "" and
5940         Form.ControlBox == false, the window has no titlebar nor resize
5941         handles.  fixes bug #79368.
5942
5943 2006-09-15  Chris Toshok  <toshok@ximian.com>
5944
5945         * TextBoxBase.cs: in CalculateScrollBars make sure LargeChange is
5946         >= 0.  Fixes bug #79370.
5947
5948 2006-09-15  Jonathan Pobst <monkey@jpobst.com>
5949         * FlowLayoutPanel.cs, FlowLayoutSettings.cs: Initial commit.
5950         * Control.cs:
5951             Add properties: LayoutEngine, Margin, DefaultMargin.
5952             Add method: GetPreferredSize.
5953             Move layout logic from PerformLayout to layout engines. 
5954
5955 2006-09-13  Chris Toshok  <toshok@ximian.com>
5956
5957         * XplatUIX11.cs: more destroy work.  Jackson pointed out that my
5958         fix for #79326 broke #78718, so this change addresses that.
5959
5960         - in SendWMDestroyMessages remove the call to
5961         CleanupCachedWindows, since we might be recreating the control and
5962         need to maintain the references to right Hwnd handles.  Also, set
5963         the zombie flag to true for each of the children in the hierarchy
5964         instead of calling hwnd.Dispose.  This will cause GetMessage to
5965         ignore all events for the window except for DestroyNotify.
5966
5967         - In GetMessage, ignore messages except for DestroyNotify for
5968         zombie hwnds.
5969         
5970         * Control.cs: revert the is_recreating fix from the last
5971         ChangeLog.  It's definitely "right", but it breaks switching from
5972         an MDI form to a non-MDI form.  Will need to revisit that.
5973
5974         * Hwnd.cs: add a zombie flag, which means "the
5975         client_window/whole_window handles are invalid, but we're waiting
5976         for the DestroyNotify event to come in for them".  Set the flag to
5977         false explicitly if setting WholeWindow/ClientWindow, and also
5978         when Disposing.
5979         
5980 2006-09-13  Chris Toshok  <toshok@ximian.com>
5981
5982         * XplatUIX11.cs: rework window destruction slightly.
5983
5984         - when destroying the windows associated with a control, we don't
5985         need 2 separate XDestroyWindow calls.  Just the one for the
5986         whole_window (or for client_window if whole_window is somehow
5987         IntPtr.Zero -- can this happen?) is enough.
5988
5989         - reworked SendWMDestroyMessages slightly, so we always dispose
5990         the child control hwnd's after sending the messages.
5991         
5992         - refactored out the ActiveWindow/FocusWindow/Caret clearing from
5993         the two places it was used (one was even using hwnd.Handle and the
5994         other hwnd.client_window.  ugh), adding another call in
5995         SendWMDestroyMessages.  We need this new call because now the
5996         DestroyNotify events in the queue will be ignored for the child
5997         controls (as their hwnd's were disposed, and the window id's
5998         removed from the hashtable in SendWMDestroyMessages.) fun, eh?
5999
6000         - this fixes bug #79326.
6001
6002 2006-09-13  Chris Toshok  <toshok@ximian.com>
6003
6004         * Control.cs: don't always set is_recreating to false at the end
6005         of RecreateHandle, since sometimes we're not done (and won't be
6006         until WndProc handles the WM_DESTROY message).  Also, set
6007         is_recreating to false in the WM_DESTROY handling code.  Part of
6008         the fix for bug #79326.
6009
6010 2006-09-13  Miguel de Icaza  <miguel@novell.com>
6011
6012         * X11DesktopColors.cs: Start the droppage of debugging messages.
6013
6014         * FileDialog.cs: Store the configuration file in ~/.mono/mwf_config
6015
6016 2006-09-13  Jonathan Pobst <monkey@jpobst.com>
6017
6018         * SplitContainer.cs, SplitterPanel.cs: Initial implementation [2.0].
6019
6020 2006-09-12  Chris Toshok  <toshok@ximian.com>
6021
6022         * DataGrid.cs (get_ListManager): if the list_manager is null, try
6023         to create it using SetDataSource.  Fixes bug #79151.
6024
6025 2006-09-11  Chris Toshok  <toshok@ximian.com>
6026
6027         * XEventQueue.cs: add a DispatchIdle property.
6028
6029         * XplatUIX11.cs (UpdateMessageQueue): only emit the Idle event if
6030         either the queue is null, or the queue has DispatchIdle set to
6031         true.
6032         (DoEvents): set queue.DispatchIdle to false around the
6033         peek/translate/dispatch message loop in this method.  This keeps
6034         Application.Doevents from emitting idle events.  Part of the fix
6035         for #78823.
6036
6037 2006-09-11  Chris Toshok  <toshok@ximian.com>
6038
6039         * DataGrid.cs (set_DataSource): make this work for both the
6040         winforms/datagrid test and ReportBuilder.  It seems as though when
6041         we've created a ListManager (or maybe it's if we have a
6042         BindingContext?), when we set the DataSource it clears the
6043         DataMember to "".  otherwise we reuse the datamember.  Fixes bug
6044         #79333.
6045
6046 2006-09-11  Chris Toshok  <toshok@ximian.com>
6047
6048         * XplatUIX11.cs: deal with queue being null, which happens in all
6049         the Clipboard functions.  Fixes one of the two problems mentioned
6050         in #78612.
6051
6052 2006-09-11  Chris Toshok  <toshok@ximian.com>
6053
6054         * MenuAPI.cs: rework OnMouseUp a bit so that releasing the mouse
6055         button on various spots (including outside the menu) works closer
6056         to MS, and doesn't crash.  Fixes #79343.
6057
6058 2006-09-11  Gert Driesen  <drieseng@users.sourceforge.net>
6059
6060         * ListView.cs: Do not initialize item_sorter in init. To match MS,
6061         return null for ListViewItemSorter if View is SmallIcon or LargeIcon
6062         and the internal comparer is set. When a new ListViewItemSorter is set,
6063         sort the items. Use Enum.IsDefined to verify whether a valid SortOrder
6064         was specified. No further processing is necessary if SortOrder is set
6065         to it's current value. If Sorting is modified to None, and View is
6066         neither SmallIcon nor LargeIcon then: on 2.0 profile set item_sorter
6067         (either custom or our internal ItemComparer) to null, on 1.0 profile
6068         only set item_sorter to null if its our internal IComparer. If Sorting
6069         is modified to Ascending or Descending, then use our internal IComparer
6070         if none is set, and if the current IComparer is our internal one then:
6071         on 2.0 profile always replace it with one for new Sorting, and on 1.0
6072         profile only use new Sorting if view is not SmallIcon or LargeIcon. Use
6073         Enum.IsDefined to verify whether a valid View value is specified in
6074         its setter. Automatically sort listview items when listview is
6075         created. In Sort, do nothing if ListView is not yet created, or if
6076         no item_sorter is set (no Sorting was set, Sorting was explicitly set
6077         to None or ListViewItemSorter was set to null). Added Sort overload
6078         taking a bool to indicate whether the ListView should be redrawn when
6079         items are sorted (we use this in ListViewItemCollection to avoid double
6080         redraws). Modified our internal IComparer to take the sort order into
6081         account. In Add and AddRange methods of ListViewItemCollection, also
6082         call Sort if Sorting is None (necessary for SmallIcon and LargeIcon
6083         view), but use overload with noredraw option to avoid double redraw.
6084         On 2.0 profile, throw NotSupportedException when setting CheckBoxes to
6085         true when View is Tile, and do the same when attempting to set View to
6086         Tile when CheckBoxes is true. Avoid maintaining separate ArrayLists
6087         for selected/checked indices, as it involves overhead when sorting is
6088         done while these collections are not used all that often. Instead
6089         we'll build the indices on demand. Modified IList implementation of
6090         CheckedIndexCollection to use public methods if object is int.
6091         Modified CheckedListViewItemCollection to hide checked items if
6092         ListView.CheckBoxes is false. Removed LAMESPEC remark in 
6093         ListViewItemCollection as the .NET SDK docs have been fixed. Modified
6094         IList implementation in SelectedIndexCollection to use public methods
6095         if object is int. Modified SelectedListViewItemCollection to hide
6096         selected items if listview is not yet created.
6097         * ListViewItem.cs: CheckedIndices list no longer needs to be
6098         maintained separately (see ListView changes). Also clone font, fixes
6099         test failure.
6100
6101 2006-09-11  Mike Kestner  <mkestner@novell.com>
6102
6103         * ComboBox.cs: if we are updating the contents of the currently
6104         selected index, refresh the control or the textbox selection.
6105         [Fixes #79066]
6106
6107 2006-09-11  Mike Kestner  <mkestner@novell.com>
6108
6109         * ComboBox.cs (UpdateBounds): use SetBounds not SetBoundsCore since 
6110         the 'specified' logic has been moved there.  This seems like a bug 
6111         in Control.cs, since our current SetBoundsCore completely ignores 
6112         the specified parameter.  Peter's commit seems to indicate that is 
6113         the way the MS control implementation works.  [Fixes #79325]
6114
6115 2006-09-10  Jonathan Chambers  <joncham@gmail.com>
6116
6117         * XplatUI.cs: Set default_class_name to be composed
6118         of current domain id. This allows MWF to be loaded in multiple
6119         domains on Win32.
6120
6121 2006-09-09  Miguel de Icaza  <miguel@novell.com>
6122
6123         * X11Keyboard.cs: If we are unable to obtain the input method, do
6124         not call CreateXic to create the input context.   Should fix
6125         #78944/79276.
6126
6127 2006-09-08  Alexander Olk  <alex.olk@googlemail.com>
6128
6129         * MimeIcon.cs: Rewrote major parts. Dropped KDE support for now.
6130           Simplified gnome support by adding more pinvokes to get the
6131           icon for a file or mime type.
6132
6133 2006-09-08  Jackson Harper  <jackson@ximian.com>
6134
6135         * MenuAPI.cs: Deslect popup context menu items before closing the
6136         window, so that you don't see the previously selected item
6137         selected when you reopen the menu.
6138         * TextControl.cs: Update the cursor position even if we don't have
6139         focus.  This fixes typing in things like the ComboBox.  I'm not
6140         totally sure we should always set the visibility if we don't have
6141         focus, but couldn't find any corner cases where the cursor showed
6142         up when it shouldn't.
6143
6144 2006-09-08  Chris Toshok  <toshok@ximian.com>
6145
6146         * X11Keyboard.cs: In UpdateKeyState vkey can be any integer, but
6147         our arrays are length 256.  & 0xff before indexing.  Fixes the
6148         crash in bug #78077.
6149         
6150 2006-09-08  Carlos Alberto Cortez <calberto.cortez@gmail.com>
6151
6152         * ThemeWin32Classic.cs: 
6153         * DateTimePicker.cs: Draw check box if DateTimePicker.ShowCheckBox
6154         is true. Handle that check box too.
6155
6156 2006-09-07  Chris Toshok  <toshok@ximian.com>
6157
6158         * MenuAPI.cs: move the PerformClick call to OnMouseUp.  Fixes bug
6159         79244.
6160
6161 2006-09-07  Chris Toshok  <toshok@ximian.com>
6162
6163         * Control.cs: in set_BackColor only do the work if
6164         background_color != value.
6165
6166         * XplatUIX11.cs: move the clearing of invalid areas (both client
6167         and nc) to the same block of code where we set (nc_)expose_pending
6168         to false.  That is, move it from PaintEventEnd to PaintEventStart,
6169         so things that cause invalidates from within OnPaint will trigger
6170         another call to OnPaint.  Fixes bug #79262.
6171
6172 2006-09-07  Alexander Olk  <alex.olk@googlemail.com>
6173
6174         * Theme.cs: Use correct icon for UIIcon.PlacesPersonal
6175         * FileDialog.cs: Fix typo
6176
6177 2006-09-07  Jackson Harper  <jackson@ximian.com>
6178
6179         * ThemeWin32Classic.cs:  oops, forgot to commit.  Draw the images
6180         for tab pages if they have any.
6181
6182 2006-09-06  Mike Kestner  <mkestner@novell.com>
6183
6184         * Splitter.cs: use the "current" rect when finishing drag handle
6185         to avoid an artifact demonstrated by resedit.exe.  [Fixes #79251]
6186
6187 2006-09-06  Mike Kestner  <mkestner@novell.com>
6188
6189         * Splitter.cs: draw the drag handle at X or Y instead of 0 to deal
6190         support offset splitters. [Fixes #79298]
6191
6192 2006-09-06  Alexander Olk  <alex.olk@googlemail.com>
6193
6194         * Mime.cs: Fixed a bug that could override the global mime type
6195           result.
6196
6197 2006-09-05  Jackson Harper  <jackson@ximian.com>
6198
6199         * TabControl.cs: Better calculation method for setting the slider
6200         pos. Prevents crashes on really wide tabs.
6201         - Draw Image on tab pages if an image list is used.
6202
6203 2006-09-02  Carlos Alberto Cortez <calberto.cortez@gmail.com>
6204
6205         * MonthCalendar.cs: When Font changes, the Size should be
6206         updated to fit the new font's space requirements.
6207
6208 2006-09-02  Alexander Olk  <alex.olk@googlemail.com>
6209
6210         * ListBox.cs: If the items are cleared with Items.Clear set
6211           top_index to 0.
6212
6213 2006-09-01  Carlos Alberto Cortez <calberto.cortez@gmail.com>
6214
6215         * MonthCalendar.cs: Handle arrow keys as input keys. Also
6216         fire DateChanged event instead of DateSelected event when
6217         the date was changed by keyboard interaction.
6218
6219 2006-09-01  Carlos Alberto Cortez <calberto.cortez@gmail.com>
6220
6221         * DateTimePicker.cs: Handle DateChanged for the associated
6222         month_calendar control, and set month_calendar.Font from 
6223         OnFontChanged method, as well as resize the height of the
6224         control when needed. Make PreferredHeight proportional.
6225
6226 2006-09-01  Chris Toshok  <toshok@ximian.com>
6227
6228         * DataGrid.cs: grr, stop overthinking the DataMember/DataSource
6229         properties.
6230
6231         * BindingContext.cs (HashKey.GetHashCode): use ^ instead of +.
6232
6233 2006-09-01  Peter Dennis Bartok  <pbartok@novell.com> 
6234
6235         * FileDialog.cs: Set ClientSize instead of window size, to allow space
6236           for decorations (Fixes #79219)
6237
6238 2006-09-01  Mike Kestner  <mkestner@novell.com>
6239
6240         * ComboBox.cs: first stab at sorting plus some selection handling
6241         fixes to bring us more in line with MS behavior.  Also switches back
6242         to index based selection.  Alternative patches for index-based 
6243         selection were provided by Jackson Harper, Carlos Alberto Cortez, 
6244         and latency@gmx.de on bug 78848.  I assume they were similar to this
6245         code I've had simmering in my tree forever.
6246         [Fixes #78848]
6247
6248 2006-09-01  Chris Toshok  <toshok@ximian.com>
6249
6250         * CurrencyManager.cs (ListChangedHandler): in the ItemAdded case,
6251         when setting list position guard against ending up with a -1 index
6252         (the other part of the fix for #78812).  Should probably make sure
6253         we don't need the analogous fix in the ItemDeleted case.
6254
6255         * DataGrid.cs:
6256         - in SetDataSource, work around the fact that the way
6257         OnBindingContextChanged is invoked will cause us to re-enter this
6258         method.  I'll remove the hack once I investigate
6259         OnBindingContextChanged.
6260
6261         - fix the logic in set_DataSource and set_DataMember (basically
6262         what to do if the other of the two is null.)
6263         
6264         - in OnListManagerItemChanged, we need to take into account the
6265         edit row when deciding whether or not to call RecreateDataGridRows
6266         (part of the fix for #78812).
6267
6268 2006-09-01  Jackson Harper  <jackson@ximian.com>
6269
6270         * Splitter.cs: Don't do anything if there is no control to affect
6271         (prevents us from crashing in weird tet cases).
6272         * TreeView.cs: Bounding box for the mouse movement reverting
6273         focus/selection back to previously selected node.  This matches
6274         MS, and makes the tree a lot more useable.
6275         * GroupBox.cs: Instead of drawing over the lines of the groupbox,
6276         use clipping so they are not drawn.  This fixes when the control
6277         is set to have a transparent background, or if it was over an
6278         image.
6279
6280 2006-09-01  Alexander Olk  <alex.olk@googlemail.com>
6281
6282         * MimeIcon.cs: Improved handling for reading default icons when
6283           using gnome (2.16 made it necessary). Check and read svg icons
6284           first, then 48x48 and then 32x32 icons.
6285
6286 2006-08-31  Chris Toshok  <toshok@ximian.com>
6287
6288         * DataGridTextBoxColumn.cs: only hide the textbox if it's still
6289         visible.
6290
6291         * DataGridTextBox.cs: Pass Tab's up to the datagrid by calling
6292         ProcessKeyPreview.  Fixes part of #77806.
6293
6294         * DataGrid.cs: big patch.
6295
6296         - revert the queueing up of DataSource/DataMember if inside
6297         BeginInit/EndInit calls.  That's not the way the datagrid achieves
6298         its delayed databinding.  Instead, call SetDataSource in
6299         OnBindingContextChanged.  This mimic's MS's behavior, and fixes
6300         #78811.
6301
6302         - Also, it wasn't mentioned in #78811, but the test case exhibits
6303         behavior that was lacking in our datagrid implementation - Columns
6304         that have mapping names that don't exist in the datasource's
6305         properties aren't shown.  Yuck.  To fix this I added the bound
6306         field to the column style, and basically any calculation to figure
6307         out anything about columns uses a loop to find the bound columns.
6308         still need to investigate if I can cache an array of the bound
6309         columns or if the indices must be the same.
6310
6311         - When setting CurrentCell, we no longer abort if the cell being
6312         edited was in the add row.  This fixes the other part of #77806.
6313
6314         - The new code also fixes #78807.
6315         
6316         * ThemeWin32Classic.cs: perpetrate the same disgusting
6317         column.bound field hack, and only render bound fields.
6318
6319 2006-08-31  Chris Toshok  <toshok@ximian.com>
6320
6321         * DataGridColumnStyle.cs: add bound field.  this field is true if
6322         the datasource has a property corresponding to the mapping name.
6323
6324         * DataGridTableStyle.cs: set the bound field on the column styles
6325         depending on whether or not we have a column for that property.
6326
6327 2006-08-31  Peter Dennis Bartok  <pbartok@novell.com> 
6328
6329         * Splitter.cs (SetBoundsCore): Don't ignore width/height of the 
6330           splitter control (fixes #79228)
6331
6332 2006-08-31  Chris Toshok  <toshok@ximian.com>
6333
6334         * DataGridColumnStyle.cs: we need to delay the assignment of
6335         property descriptor until the last possible moment due to the lazy
6336         databinding stuff in the datagrid.  Also, fix the exceptions
6337         thrown by CheckValidDataSource to match MS.
6338
6339 2006-08-31  Jackson Harper  <jackson@ximian.com>
6340
6341         * Form.cs: When activated select the active control, if there is
6342         no active control, we select the first control.
6343         * XplatUIX11.cs: If there is no focus control when we get a
6344         FocusIn event, find the toplevel form and activate it.  This
6345         occurs when you popup a window, it becomes the focus window, then
6346         you close that window, giving focus back to the main window.
6347
6348 2006-08-21  Carlos Alberto Cortez <calberto.cortez@gmail.com>
6349
6350         * MonthCalendar.cs: 
6351         * ThemeWin32Classic.cs: Cache Font in bold style, as well
6352         as StringFormat with Center alignments in MonthCalendar,
6353         instead of creating new ones when drawing the control. 
6354         Also, draw the month name in bold style.
6355
6356 2006-08-30  Peter Dennis Bartok  <pbartok@novell.com> 
6357
6358         * Control.cs:
6359           - PerformLayout(): It would seem MS performs the fill even if the 
6360             control is not visible (part of #79218 fix)
6361           - ResetBackColor(): Use the setter to reset the color, to allow
6362             overriders to catch the change.
6363         * Form.cs:
6364           - .ctor: Call UpdateBounds to adjust client rectangle (part of #79218 fix)
6365           - CreateHandle(): dito (part of $79218 fix)
6366           - Don't set an icon if we have a dialog
6367         * ScrollableControl.cs:
6368           - set_AutoScrollMinSize: Setting the property enables AutoScroll (#79218)
6369           - ScrollIntoView(): No need to scroll if control is already visible
6370             (resolves fixme and fixes #79218)
6371
6372 2006-08-30  Carlos Alberto Cortez <calberto.cortez@gmail.com>
6373
6374         * MonthCalendar.cs: Change proportions in SingleMonthSize
6375         to match the aspect of the original control.
6376
6377 2006-08-29  Alexander Olk  <alex.olk@googlemail.com>
6378
6379         * XplatUIX11.cs: Fix for a metacity/X problem where windows don't
6380           get updated when they get maximized.
6381
6382 2006-08-29  Peter Dennis Bartok  <pbartok@novell.com> 
6383
6384         * XplatUIX11.cs: Handle windows with no border (Fixes part of #79160)
6385
6386 2006-08-29  Chris Toshok  <toshok@ximian.com>
6387
6388         * XplatUIX11.cs: when destroying the FocusWindow, send KILLFOCUS.
6389
6390 2006-08-29  Jackson Harper  <jackson@ximian.com>
6391
6392         * TreeView.cs: Need to track selected node and highlighted node,
6393         they aren't always the same thing, when the mouse is down on a
6394         node it is hilighted, but not selected yet.
6395         - Do the HideSelection stuff right
6396         - Need to focus on rbutton mouse down. And redraw selection when
6397         right click is mouse upped.
6398
6399 2006-08-29  Mike Kestner  <mkestner@novell.com>
6400
6401         * ThemeWin32Classic.cs: draw selections for columns in FullRowSelect
6402         when SubItems.Count < Columns.Count.  [Fixes #79167]
6403
6404 2006-08-28  Peter Dennis Bartok  <pbartok@novell.com> 
6405
6406         * TextControl.cs (FindCursor): Fix math error (Fixes #78402)
6407
6408 2006-08-28  Peter Dennis Bartok  <pbartok@novell.com>
6409
6410         * XplatUIX11.cs: Preempt the roundtrip for getting the location back
6411           from X. Only send based on ConfigureNotify if we don't have the
6412           correct location in hwnd (if the window manager moved us)
6413
6414 2006-08-28  Mike Kestner  <mkestner@novell.com>
6415
6416         * ListView.cs: remove a TODO. 
6417         * ThemeWin32Classic.cs: implement HideSelection support for ListView.
6418         [Fixes ListView part of #79166]
6419
6420 2006-08-28  Mike Kestner  <mkestner@novell.com>
6421
6422         * ListView.cs: move wheel handler to parent since it is focused
6423         instead of the item_control now.  [Fixes #79177]
6424
6425 2006-08-28  Mike Kestner  <mkestner@novell.com>
6426
6427         * ThemeWin32Classic.cs: only highlight subitems in fullrowselect
6428         when the control is focused. [Fixes #79171]
6429
6430 2006-08-28  Mike Kestner  <mkestner@novell.com>
6431
6432         * ListView.cs: size the item and header controls for empty and
6433         unscrollable views.
6434         * ThemeWin32Classic.cs: draw disabled backgrounds.
6435         [Fixes #79187]
6436
6437 2006-08-28  Chris Toshok  <toshok@ximian.com>
6438
6439         * Form.cs: remove unused "active_form" static field.
6440
6441         * Hwnd.cs: lock around accesses to static windows collection.
6442
6443         * Application.cs: lock threads in Exit ().
6444
6445 2006-08-28  Chris Toshok  <toshok@ximian.com>
6446
6447         * NativeWindow.cs: lock around accesses to window_collection.
6448         
6449 2006-08-28  Chris Toshok  <toshok@ximian.com>
6450
6451         * Control.cs: err, fix this the right way, by locking on controls
6452         when using it.  not by making it synchronized.
6453
6454 2006-08-28  Chris Toshok  <toshok@ximian.com>
6455
6456         * Control.cs: make the static "controls" field synchronized, as it
6457         gets updated from multiple threads.
6458
6459 2006-08-27  Peter Dennis Bartok  <pbartok@novell.com>
6460
6461         * XplatUIX11.cs: PostQuitMessage is thread-specific not app-specific.
6462           Prevent other threads from exiting when calling thread sets quit state.
6463         * XEventQueue.cs: Added PostQuitState property
6464
6465 2006-08-27  Chris Toshok  <toshok@ximian.com>
6466
6467         * AsyncMethodData.cs: add a slot for the window handle.
6468
6469         * XplatUIX11.cs (SendAsyncMethod): send the event to the right
6470         window (the destination control's window, not the foster window).
6471
6472         * Control.cs (BeginInvokeInternal): store the window's handle in
6473         the AsyncMethodData.
6474         
6475
6476 2006-08-27  Peter Dennis Bartok  <pbartok@novell.com>
6477
6478         * XplatUIX11.cs:
6479           - PostQuitMessage: Removed resetting S.D display handle, we might have
6480             another loop started after calling PostQuitMessage (Fixes #79119)
6481           - Created destructor to reset S.D handle
6482
6483 2006-08-27  Peter Dennis Bartok  <pbartok@novell.com> 
6484
6485         * XplatUIX11.cs (SetCursor): Issue flush after setting the cursor (#79168)
6486
6487 2006-08-23  Peter Dennis Bartok  <pbartok@novell.com>
6488
6489         * TextControl.cs (Insert): Update the caret position even if we don't
6490           have a handle yet, just don't call the driver in that case.
6491         * TextBoxBase.cs (set_SelectedText): Set the Start and End selection
6492           to the end of the new selection text (Fixes #79184)
6493
6494 2006-08-23  Peter Dennis Bartok  <pbartok@novell.com> 
6495
6496         * Form.cs (Activate): Only activate if the handle is created)
6497         * Control.c:
6498           - Mark window as invisible when it's disposed
6499           - Check if window handle is created when setting window visible, 
6500             instead of relying just on the is_created variable
6501           - Check if object is disposed when creating the control (Fixes #79155)
6502
6503 2006-08-23  Peter Dennis Bartok  <pbartok@novell.com>
6504
6505         * ScrollableWindow.cs (ScrollWindow): Don't actually perform layouting
6506           when allowing layout again. Otherwise we re-generate the anchoring 
6507           distance to the border again and actually alter what the user wanted
6508           This is ugly, it'd be better if we used DisplayRectangle instead of
6509           ClientRectangle for Control.UpdateDistances, but that causes us to
6510           have other problems (initial anchoring positons would be wrong)
6511           (Fixes #78835)
6512
6513 2006-08-23  Peter Dennis Bartok  <pbartok@novell.com> 
6514
6515         * Control.cs:
6516           - The size and location setters shouldn't go directly to 
6517             SetBoundsCore, but to SetBounds, which triggers layout on the
6518             parent, then calls SetBoundsCore. (Related to fix for #78835)
6519           - SetBounds: Moved actual location update code into this function
6520             from SetBoundsCore, to match MS. Added call to PerformLayout if
6521             we have a parent (to trigger resizing of anchored parents if the 
6522             child size has changed (see testcase for #78835) 
6523         * ListBox.cs, Form.cs: Call SetBounds instead of SetBoundsCore to match 
6524           new control code
6525         * ScrollableControl.cs (CalculateCanvasSize): Use shortcut variable
6526
6527 2006-08-23  Peter Dennis Bartok  <pbartok@novell.com>
6528
6529         * XplatUIX11.cs: Don't reset the DisplayHandle that's stored in
6530           System.Drawing when a toplevel window gets closed; there might
6531           be other toplevel windows belonging to the same app (Fixes #78052)
6532
6533 2006-08-26  Alexander Olk  <alex.olk@googlemail.com>
6534
6535         * FileDialog.cs: After reading FileDialog settings from mwf_config
6536           use Desktop prefix only if a real folder doesn't exist anymore.
6537         * FontDialog.cs: Added char sets.
6538           It is now possible to select the font, size or style with the
6539           textboxes.
6540
6541 2006-08-25  Kornél Pál  <kornelpal@gmail.com>
6542
6543         * PrintPreviewDialog.cs: Use assembly name constants.
6544
6545 2006-08-23  Peter Dennis Bartok  <pbartok@novell.com>
6546
6547         * XplatUIWin32.cs (ScrollWindow): Use clipping rectangle arg (prevents
6548           scrollbar from whacking it's buttons)
6549
6550 2006-08-24  Chris Toshok  <toshok@ximian.com>
6551
6552         * ScrollableControl.cs: fix #78271.  There's a lot of misc stuff
6553         in this patch (aggregating setting Left/Top/Width/Height to
6554         setting Bounds on the scrollbars), but the crux of the fix is in
6555         Recalculate, where we scroll by the remaining scroll_position if
6556         we're hiding a scrollbar.  The 2*$5 reward in the comment is
6557         serious.
6558
6559 2006-08-24  Jackson Harper  <jackson@ximian.com>
6560
6561         * MdiClient.cs:
6562         * MdiWindowManager.cs: If the form is made a non-mdi window we
6563         need to remove the form closed event so that closing forms works
6564         correctly.
6565
6566 2006-08-24  Jackson Harper  <jackson@ximian.com>
6567
6568         * Control.cs: Make IsRecreating internal so that the driver can
6569         check it
6570         - Temporarily remove the Hide when controls are removed, its
6571         making a whole bunch of things not work because visibility isn't
6572         getting reset elsewhere correctly
6573         * Form.cs: Need to do a full handle recreation when the mdi parent
6574         is set.
6575         * XplatUIX11.cs: If we are recreating handles don't dispose the
6576         HWNDs.  What was happening is the handles were being recreated in
6577         SendWMDestroyMessages, but then flow continued on in that method
6578         and destroyed the new handles.
6579
6580 2006-08-23  Jackson Harper  <jackson@ximian.com>
6581
6582         * Form.cs: MdiClient is always at the back of the bus
6583         * Control.cs: When the order of items in the collection is changed
6584         we need to reset the all_controls array
6585         - do the same sorta setup thats done when adding a control when a
6586         control is set on the collection.
6587
6588 2006-08-23  Peter Dennis Bartok  <pbartok@novell.com>
6589
6590         * TextBoxBase.cs (get_Text): Return an empty array if our document
6591           is empty (fixes #79052)
6592
6593 2006-08-23  Peter Dennis Bartok  <pbartok@novell.com> 
6594
6595         * Control.cs: We should call IsInputChar on only on WM_CHAR but not
6596           on WM_SYSCHAR messages (fixes #79053)
6597
6598 2006-08-23  Chris Toshok  <toshok@ximian.com>
6599
6600         * DataGrid.cs: fix flickering when scrolling vertically.
6601
6602 2006-08-23  Chris Toshok  <toshok@ximian.com>
6603
6604         * DataGrid.cs (EndEdit): only invalidate the row header when we
6605         need to.
6606
6607 2006-08-23  Chris Toshok  <toshok@ximian.com>
6608
6609         * ThemeWin32Classic.cs: fix the clip munging of the datagrid paint
6610         methods.  fixes the flicker when scrolling around.
6611
6612 2006-08-23  Peter Dennis Bartok  <pbartok@novell.com> 
6613
6614         * FileDialog.cs: Making sure the control is created before we get a 
6615           chance to use it with BeginInvoke (Fixes #79096)
6616
6617 2006-08-23  Chris Toshok  <toshok@ximian.com>
6618
6619         * ThemeWin32Classic.cs (DataGridPaintRows): calculate the proper
6620         width to use when painting the rows.
6621
6622 2006-08-23  Peter Dennis Bartok  <pbartok@novell.com> 
6623
6624         * TextBoxBase.cs:
6625           - Throw ArgumentException if a negative value is passed to SelectionLength
6626           - Update the selection end if start is moved. end needs to be always
6627             after start. (Fixes #79095)
6628           - Track selection length; MS keeps the selection length even if start
6629             is changed; reset on all other operations affection selection
6630
6631 2006-08-22  Jackson Harper  <jackson@ximian.com>
6632
6633         * TreeView.cs: Make sure both scrollbars get displayed and sized
6634         correctly when the other bar is visible.
6635         - Use the original clip rectangle for checking if the area between
6636         the two scrollbars is visible, not the viewport adjusted clipping
6637         rectangle.
6638
6639 2006-08-22  Jackson Harper  <jackson@ximian.com>
6640
6641         * Binding.cs: We don't use IsBinding because it requires the
6642         control to be created, which really shouldn't be necessary just to
6643         set a property on the control.
6644
6645 2006-08-21  Carlos Alberto Cortez <calberto.cortez@gmail.com>
6646
6647         * ComboBox.cs: Some CB.ObjectCollection methods must throw
6648         ArgumentNullReferenceException when the argument is null.
6649
6650 2006-08-21  Jackson Harper  <jackson@ximian.com>
6651
6652         * Timer.cs: Track the thread that the timer is started in (NOT
6653         CREATED), this way messages for it will only be triggered on its
6654         queue.
6655         * XEventQueue.cs: Track the timers here, this makes timers per
6656         thread, like MS.
6657         * XplatUIX11.cs: The timers are moved to the XEventQueue.
6658
6659 2006-08-19  Chris Toshok  <toshok@ximian.com>
6660
6661         * XplatUIX11.cs: after further communication with pdb, we get the
6662         best of both worlds.  SetZOrder working for un-Mapped windows, and
6663         no X errors for un-mapped windows.
6664
6665 2006-08-19  Chris Toshok  <toshok@ximian.com>
6666
6667         * XplatUIX11.cs (SetZOrder): remove the if (!hwnd.mapped) check,
6668         as it was causing pdn toolbars to not have the correct stacking.
6669
6670 2006-08-18  Mike Kestner  <mkestner@novell.com> 
6671
6672         * ListView.cs : guard against negative ClientArea.Width in scrollbar
6673         calculation.  Not sure why control should ever be setting a negative
6674         width though.  Fixes #78931.
6675
6676 2006-08-18  Carlos Alberto Cortez <calberto.cortez@gmail.com>
6677
6678         * ComboBox.cs: Throw ArgumentNullException when adding/modifyng
6679         null items in ObjectCollection class.
6680         * ListBox.cs.: Likewise.
6681
6682 2006-08-18  Atsushi Enomoto  <atsushi@ximian.com>
6683
6684         * ThemeNice.cs, ThemeClearlooks.cs : remove RadioButton_DrawFocus()
6685           as the base method in ThemeWin32Classic should work fine.
6686           Fixed bug #78607.
6687
6688 2006-08-18  Jackson Harper  <jackson@ximian.com>
6689
6690         * Binding.cs: When validating if the value entered doesn't convert
6691         properly reset to the old value.
6692         * RadioButton.cs: Don't fire click when we get focus.
6693
6694 2006-08-18  Jackson Harper  <jackson@ximian.com>
6695
6696         * FileDialog.cs: Paint the selection on the directory combobox the
6697         same way as on MS. 
6698
6699 2006-08-17  Jackson Harper  <jackson@ximian.com>
6700
6701         * ErrorProvider.cs: Don't allow the error control to be selected.
6702         * Control.cs: Don't send the SetFocus messages, the control
6703         activation will do this, and if we do it blindly here validation
6704         does not work.
6705
6706 2006-08-17  Jackson Harper  <jackson@ximian.com>
6707
6708         * Control.cs:
6709         * ContainerControl.cs: Make validation events fire in the correct
6710         order.  TODO: For some reason the first validation event is not
6711         getting fired.
6712
6713 2006-08-17  Mike Kestner  <mkestner@novell.com> 
6714
6715         * ComboBox.cs : some null guarding for ComboListBox.Scroll.
6716
6717 2006-08-17  Mike Kestner  <mkestner@novell.com> 
6718
6719         * ComboBox.cs : implement scroll wheel support for popped-down
6720         state. Fixes #78945. 
6721
6722 2006-08-17  Jackson Harper  <jackson@ximian.com>
6723
6724         * TreeView.cs: Specify treeview actions (old patch that didn't get
6725         committed for some reason).
6726         - Don't let the mouse wheel scroll us too far.  Just want to make
6727         the bottom node visible, not scroll it all the ways to the top.
6728
6729 2006-08-17  Jackson Harper  <jackson@ximian.com>
6730
6731         * XplatUIX11.cs: Mouse wheel events go to the focused window.
6732
6733 2006-08-17  Mike Kestner  <mkestner@novell.com> 
6734
6735         * ComboBox.cs : don't do mouseover selection in simple mode.
6736
6737 2006-08-16  Jackson Harper  <jackson@ximian.com>
6738
6739         * Form.cs: Fire the closing events for all the mdi child windows
6740         when a window is closed.  If the cancel args are set to true, the
6741         main window still gets the event fired, but it doesn't not close.
6742         * MdiWindowManager.cs: Do this closing cleanup in a Closed
6743         handler, instead of when the button is clicked, so cancelling the
6744         close works correctly.
6745         * ComboBox.cs: Send the mouse down to the scrollbar.
6746
6747 2006-08-16  Carlos Alberto Cortez <calberto.cortez@gmail.com>
6748
6749         * ListBox.cs: When passing 'null' to SelectedItem,
6750         set SelectedIndex to -1, to unselect items. This is the
6751         observed behaviour in .Net.
6752
6753 2006-08-16  Peter Dennis Bartok  <pbartok@novell.com> 
6754
6755         * TextBoxBase.cs: Overriding HandleClick to get clicks in spite of
6756           MS flags saying there won't be any. (fixes #78800)
6757         * Control.cs (HandleClick): Made virtual
6758
6759 2006-08-16  Atsushi Enomoto  <atsushi@ximian.com>
6760
6761         * PageSetupDialog.cs : use Yard-Pound units only in en-GB and en-US
6762           cultures. Fixed bug #78399.
6763
6764 2006-08-16  Jackson Harper  <jackson@ximian.com>
6765
6766         * Form.cs: Use the MdiClients MdiChildren property to access
6767         MdiChildren instead of creating the array from the child controls.
6768         * MdiClient.cs: Maintain a separate array of the mdi children, so
6769         that insertion order is maintained when the Z-order is changed.
6770
6771 2006-08-16  Mike Kestner  <mkestner@novell.com> 
6772
6773         * ListView.cs : add an ItemComparer and default to it for sorting.
6774         Fixes #79076, but sorting needs a complete overhaul to be compat with
6775         MS.
6776
6777 2006-08-15  Peter Dennis Bartok  <pbartok@novell.com> 
6778
6779         * XplatUIX11.cs (SetZOrder): Fix debugging leftover (fixes #79080)
6780
6781 2006-08-15  Peter Dennis Bartok  <pbartok@novell.com>
6782
6783         * Hwnd.cs (Mapped): Properly traverse the tree
6784
6785 2006-08-15  Chris Toshok  <toshok@ximian.com>
6786
6787         * Binding.cs: fix PullData/SetPropertyValue.  We don't want to
6788         pass manager.Current.GetType() to ParseData.  It has to be the
6789         property type.  So, hold off doing the ParseData until we're in
6790         SetPropertyValue where we know the type.  This fixes the crash in
6791         #78821 but the textbox is still empty.
6792
6793 2006-08-15  Chris Toshok  <toshok@ximian.com>
6794
6795         * DataGrid.cs:
6796         - when we're scrolling, only call Edit() again if the
6797         current cell is still unobscured. Fixes bug #78927.
6798         - when handling mousedown on a cell, ensure the cell is visible
6799         before calling Edit.
6800         - remove the properties from DataGridRow, and remove the
6801         DataGridParentRow class altogether.
6802         
6803
6804 2006-08-15  Peter Dennis Bartok  <pbartok@novell.com>
6805
6806         * TextBoxBase.cs (set_Text): Don't use base.Text, instead just
6807           fire OnTextChanged by ourselves. There's no point calling base,
6808           we don't set the base value anywhere else. Fixes #78773.
6809
6810 2006-08-15  Carlos Alberto Cortez <calberto.cortez@gmail.com>
6811
6812         * ListBox.cs: Call CollectionChanged when modifying
6813         an item from Items indexer, to update the actual items
6814         in the list box.
6815
6816 2006-08-15  Carlos Alberto Cortez <calberto.cortez@gmail.com>
6817
6818         * PrintDialog.cs: Small fixes for focus and a pair of checks,
6819         to match .Net behaviour.
6820
6821 2006-08-15  Peter Dennis Bartok  <pbartok@novell.com>
6822
6823         * XplatUIX11.cs (SetZOrder): Handle raising toplevel windows
6824
6825 2006-08-15  Peter Dennis Bartok  <pbartok@novell.com> 
6826
6827         * Control.cs: Handle BringToFront for toplevel windows (Fixes #78737)
6828
6829 2006-08-15  Peter Dennis Bartok  <pbartok@novell.com>
6830
6831         * MessageBox.cs: Prevent potential NRE exception.
6832         * TextBoxBase.cs: AutoSize only applies if MultiLine is false. Fixes #78889
6833
6834 2006-08-14  Peter Dennis Bartok  <pbartok@novell.com>
6835
6836         * MessageBox.cs: Calculate the owner of a messagebox, also make
6837           it topmost. Fixes #78753
6838
6839 2006-08-14  Chris Toshok  <toshok@ximian.com>
6840
6841         * XplatUIX11.cs: A couple of fixes so that metacity will let us
6842         programmatically move windows.  first, set the PPosition hint as
6843         well as the USPosition hint.  Second include some code from pdb
6844         that sets the window type to NORMAL when we set the transient for
6845         hint.  This is because, in the absence of a window type, metacity
6846         thinks any window with TransientFor set is a dialog, and refuses
6847         to let us move it programmatically.  fascists.
6848
6849 2006-08-14  Peter Dennis Bartok  <pbartok@novell.com>
6850
6851         * XplatUIX11.cs: When setting normal hints, take into consideration
6852           an different hints previously set so we don't delete them (fixes #78866)
6853
6854 2006-08-12  Chris Toshok  <toshok@ximian.com>
6855
6856         * ToolBarButton.cs: make Layout return a boolean, if something to
6857         do with the button's layout changed.
6858
6859         * ToolBar.cs:
6860         - add another parameter to Redraw, @force, which all existing
6861           calls set to true.
6862         - make the Layout function return a boolean which is true if the
6863           layout has actually changed.  Redraw now uses this (and @force)
6864           to determine when to invalidate.  At present the only place
6865           where @force can be false is the call from OnResize, when
6866           background_image == null.  So, resizing a toolbar when the
6867           layout doesn't change results in no drawing.
6868
6869 2006-08-12  Chris Toshok  <toshok@ximian.com>
6870
6871         * ThemeWin32Classic.cs: fix the bottom right corner painting.  had
6872         the VScrollBar and HScrollbar reversed.  oops.
6873
6874         * DataGrid.cs: fix the logic that assigns sizes to the implicit
6875         scrollbars.  we were assigning them twice (once in
6876         Calc{Horiz,Vertical}Scrollbar, and once in CalcGridAreas),
6877         therefore causing two scrollbar resizes (and redraws?) to happen
6878         per grid resize.
6879
6880 2006-08-12  Chris Toshok  <toshok@ximian.com>
6881
6882         * ToolBarButton.cs: redraw the entire button if the theme tells us
6883         to.
6884
6885         * Theme.cs: add ToolBarInvalidateEntireButton.
6886
6887         * ThemeWin32Classic.cs: we don't need to redraw the entire toolbar
6888         buttons, just the border.
6889
6890         * ThemeNice.cs: redraw the entire toolbar button since we need to
6891         draw the highlight image.
6892
6893         * ThemeClearlooks.cs: the rounded corners of toolbar buttons mean
6894         we need to redraw the entire button (not just the border).
6895
6896 2006-08-11  Peter Dennis Bartok  <pbartok@novell.com>
6897
6898         * TextBoxBase.cs (CalculateScrollbars): Set the proper thumb size
6899           for vertical bars. Fixes the mismatches shown by #78513
6900
6901 2006-08-11  Alexander Olk  <alex.olk@googlemail.com>
6902
6903         * FileDialog.cs: If a saved/remembered path doesn't exist
6904           anymore, fall back to "Desktop".
6905
6906 2006-08-11  Peter Dennis Bartok  <pbartok@novell.com>
6907
6908         * Form.cs (CreateParams): Don't use Parent.Handle unless we have a
6909           parent. It's apparently legal to not have one
6910         * XplatUIX11.cs:
6911           - SetZOrder: Don't try to set Z-Order on an unmapped window
6912           - CreateWindow: 0,0 are legal coordinates for a window. don't move
6913             it unless the coordinates are negative
6914
6915 2006-08-10  Mike Kestner  <mkestner@novell.com>
6916
6917         * ListControl.cs: allow null for DataSource.  Clear DisplayMember
6918         when setting to null per msdn docs.  Fixes #78854.
6919
6920 2006-08-10  Chris Toshok  <toshok@ximian.com>
6921
6922         * Menu.cs, MainMenu.cs, MenuAPI.cs: get rid of most of the
6923         flickering by setting a clip rectangle on the Graphics when we
6924         need to redraw just a particular menuitem.  Also, rename "OnClick"
6925         to "OnMouseDown" to reflect what it actually is.
6926         
6927         * Form.cs: track the OnMouseDown change.
6928
6929 2006-08-10  Peter Dennis Bartok  <pbartok@novell.com>
6930
6931         * CommonDialog.cs: Properly inherit the CreateParams from the form
6932           and only change what we need. Fixes #78865
6933
6934 2006-08-10  Chris Toshok  <toshok@ximian.com>
6935
6936         * ToolBar.cs, ToolBarButton.cs: fix the redraw-on-highlight
6937         flickering in flat mode (and most of the flickering in general) by
6938         only invalidating the button border (and not the entire rectangle)
6939         when the state changes.  A couple of cases still flicker:
6940         ToggleButtons, and the dropdown arrow case when the user mouse
6941         ups.
6942
6943 2006-08-10  Alexander Olk  <alex.olk@googlemail.com>
6944
6945         * X11Keyboard.cs: Fixed handling of the Del key on the cursorblock
6946           for german keyboards. Numlock state shouldn't affect the behaviour
6947           of the Del key. Fixes bug #78291.
6948
6949 2006-08-10  Chris Toshok  <toshok@ximian.com>
6950
6951         * ListControl.cs: remove the items.Clear line from BindDataItems,
6952         as this is the first thing done by both subclasses in their
6953         SetItemsCore overrides.  Also, add a ItemChanged handler, and when
6954         passed -1, refresh the list.  This gets databinding working when
6955         the datasource is set on the list before the datasource is
6956         populated (as in wf-apps/ReportBuilder.)
6957
6958         * ComboBox.cs: remove the argument to BindDataItems.  This call
6959         should really go away, and be initiated by the ListControl code.
6960
6961         * ListBox.cs: same.
6962
6963 2006-08-09  Peter Dennis Bartok  <pbartok@novell.com>
6964
6965         * TextControl.cs (Document.ctor): Initialize caret so we don't crash
6966           if no data is in the document when the control is displayed
6967
6968 2006-08-09  Peter Dennis Bartok  <pbartok@novell.com> 
6969
6970         * TextBoxBase.cs: Don't try moving the caret if we don't have a window
6971           yes (fixes #78806)
6972         * TextControl.cs: 
6973           - PositionCaret: Allow positioning of caret but don't call methods 
6974             requiring a handle if the window isn't created yet
6975           - CharIndexToLineTag: Fix ending loop early error. Lines is 1 based
6976           - owner_HandleCreated: Don't position the caret, just update it's 
6977             location. User might have already set a different position
6978
6979 2006-08-09  Peter Dennis Bartok  <pbartok@novell.com>
6980
6981         * XplatUIWin32.cs: Don't use the desktop as basis for foster-parented
6982           windows. Screws up the returned coordinates for child windows. 
6983           Fixes #78825. I'm hoping this doesn't break something, since the
6984           code was explicitly put in 8 months ago, but no bug was attached.
6985           Menus still seem to work properly.
6986
6987 2006-08-08  Chris Toshok  <toshok@ximian.com>
6988
6989         * DataGrid.cs: make BeginInit/EndInit actually do what they're
6990         supposed to do - delay data binding until the EndInit call.  Also,
6991         make the table style collection's CollectionChangeAction.Refresh
6992         work properly.
6993
6994         * GridTableStylesCollection.cs: raise a CollectionChangeEvent
6995         (with action = Refresh) when a consituent table's MappingName is
6996         changed.
6997
6998 2006-08-08  Chris Toshok  <toshok@ximian.com>
6999
7000         * ToolBarButton.cs: in set_Text, call Parent.Redraw, not
7001         Invalidate, since changing the text can change the size of the all
7002         toolbar buttons.
7003
7004 2006-08-08  Peter Dennis Bartok  <pbartok@novell.com>
7005
7006         * Form.cs (AddOwnedForm): Still need to add the form to our listif
7007           we don't have it yet
7008
7009 2006-08-08  Chris Toshok  <toshok@ximian.com>
7010
7011         * PrintControllerWithStatusDialog.cs: don't .Close() the status
7012         dialog, as this causes X errors later on, since we actually
7013         destroy the window.  Instead, .Hide() it.
7014
7015 2006-08-08  Peter Dennis Bartok  <pbartok@novell.com>
7016
7017         * ComboBox.cs: Added focus reflection for popup window
7018         * XplatUIX11.cs: 
7019           - Removed transient setting for non-app windows for now, not sure it
7020             was needed
7021           - Fixed logic checking if we have captions when deciding 
7022             override_redirect, WS_CAPTION is two bits and a 0 check was not
7023             sufficient
7024           - Removed the WINDOW_TYPE stuff, it was unneeded and making things
7025             complicated
7026         * Form.cs: 
7027           - AddOwnedForm: Don't just add the form to the list, call the property
7028             to ensure the driver is informed about the ownership as well
7029           - CreateHandle: Set the TopMost status in the driver if we have an owner
7030         * XplatUI.cs: Fixed debug statement
7031
7032 2006-08-08  Jonathan Pobst <monkey@jpobst.com>
7033         * ButtonRenderer.cs, CheckBoxRenderer.cs, ComboBoxRenderer.cs
7034           GroupBoxRenderer.cs, ProgressBarRenderer.cs, RadioButtonRenderer.cs,
7035           ScrollBarRenderer.cs, TabRenderer.cs, TextBoxRenderer.cs, 
7036           TrackBarRenderer.cs: Make constructor private.
7037         * ProfessionalColors.cs, ProfessionalColorTable.cs: Fix misnamed properties.
7038         * ProfessionalColorTable.cs: Make properties virtual.
7039
7040 2006-08-06  Duncan Mak  <duncan@novell.com>
7041
7042         * NumericUpDown.cs (Value): Don't call OnValueChanged if the value
7043         is not changing.
7044
7045 2006-08-04  Jonathan Pobst <monkey@jpobst.com>
7046         * ButtonRenderer.cs, CheckBoxRenderer.cs, ComboBoxRenderer.cs
7047           GroupBoxRenderer.cs, ProfessionalColors.cs, ProfessionalColorTable.cs,
7048           ProgressBarRenderer.cs, RadioButtonRenderer.cs, ScrollBarRenderer.cs,
7049           TabRenderer.cs, TextBoxRenderer.cs, TextRenderer.cs, TrackBarRenderer.cs:
7050           Initial import of new 2.0 classes.
7051
7052 2006-08-04  Jonathan Pobst <monkey@jpobst.com>
7053         * Application.cs: Add 2.0 VisualStyles properties.
7054
7055 2006-08-04  Jonathan Pobst <monkey@jpobst.com>
7056         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs, XplatUIWin32.cs,
7057           XplatUIX11.cs: Create property to allow access to existing private
7058           variable "themes_enabled"
7059
7060 2006-08-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7061
7062         * ImageListStreamer.cs: generate the MemoryStreams with the exact BMP
7063         file size, as otherwise our class libraries fail using windows. Fixes
7064         bug #78759.
7065
7066 2006-08-04  Jackson Harper  <jackson@ximian.com>
7067
7068         * Form.cs:
7069         * XplatUIX11.cs: Move the toolwindow window manager creation into
7070         the X11 driver, this way on win32 we can let windows create/handle
7071         the toolwindows.
7072
7073 2006-08-04  Carlos Alberto Cortez <calberto.cortez@gmail.com>
7074
7075         * PrintDialog.cs: Remove some redundant checks, add some others,
7076         clean some code, and move the focus to the text boxes when the
7077         values are incorrect.
7078
7079 2006-08-04  Alexander Olk  <alex.olk@googlemail.com>
7080
7081         * FontDialog.cs: Remove Form.MinimumSize. It's not needed.
7082
7083 2006-08-03  Alexander Olk  <alex.olk@googlemail.com>
7084
7085         * NumericUpDown.cs: Setting the Minimum and Maximum is now
7086           handled correctly. Fixes bug #79001.
7087
7088 2006-08-03  Carlos Alberto Cortez <calberto.cortez@gmail.com>
7089
7090         * PrintDialog.cs: The "Copies" numeric up down must have
7091         set the Minimum property to 1; only if the value is bigger
7092         than 1, activate "Collate" check box. This is the behaviour of .Net.
7093         Also modify the Document elements only if it is not null.
7094
7095 2006-08-03  Jackson Harper  <jackson@ximian.com>
7096
7097         * TreeNodeCollection.cs: Fix copyto to use the correct nodes
7098         length. (We have a larger array then actual node count).
7099                 
7100 2006-08-03  Jackson Harper  <jackson@ximian.com>
7101
7102         * ComboBox.cs: Don't show selection by default.
7103         - The SelectAll isn't needed here, since the focus code should do
7104         that
7105         - DDL style lists to manual selection drawing, so when they
7106         get/lose focus they have to invalidate.
7107
7108 2006-08-03  Peter Dennis Bartok  <pbartok@novell.com>
7109
7110         * TextBoxBase.cs: Don't always show all selections by default.
7111
7112 2006-08-03  Jonathan Pobst  <monkey@jpobst.com>
7113         * ControlUpdateMode.cs, DataSourceUpdateMode.cs,
7114           HelpNavigator.cs, WebBrowserEncryptionLevel.cs:
7115           Fixed various typos.
7116
7117 2006-08-03  Alexander Olk  <alex.olk@googlemail.com>
7118
7119         * Control.cs: Removing the controls in a ControlCollection with
7120           Clear now hides the controls as expected. Fixes bug #78804. 
7121
7122 2006-08-03  Jackson Harper  <jackson@ximian.com>
7123
7124         * Control.cs: Revert previous focus patch, it breaks reflector.
7125
7126 2006-08-03  Jackson Harper  <jackson@ximian.com>
7127
7128         * ComboBox.cs: Cleanup selection and focus with the combobox.
7129         This also eliminates some duplicated keyboard code, since now
7130         everything is handled by the main class.
7131         - Make list selection work on mouse up instead of down, to match
7132         MS.
7133
7134 2006-08-02  Jackson Harper  <jackson@ximian.com>
7135
7136         * Control.cs: Setting focus needs to go through the whole
7137         selection mechanism.
7138
7139 2006-08-02  Chris Toshok  <toshok@ximian.com>
7140
7141         * PrintPreviewDialog.cs: change MinimumSize to use
7142         base.MinimumSize so it works.
7143
7144 2006-08-02  Peter Dennis Bartok  <pbartok@novell.com>
7145
7146         * TextControl.cs:
7147           - UpdateCaret: Added sanity check in case caret isn't defined yet
7148           - Line.Delete: Now updating selection and caret markers if we're
7149             transfering a node (Properly fixes #78323)
7150           - SetSelectionEnd: Added sanity check
7151         * TextBoxBase.cs: Removed broken attempt to fix #78323
7152
7153 2006-08-01  Chris Toshok  <toshok@ximian.com>
7154
7155         * PrintPreviewDialog.cs: the CancelEventArgs stuff surrounding the
7156         Close() call is handled in Form, not here.
7157
7158 2006-08-01  Chris Toshok  <toshok@ximian.com>
7159
7160         * Theme.cs, ThemeWin32Classic.cs: fix the PrintPreviewControl
7161         layout/rendering.
7162
7163         * PrintPreviewDialog.cs: add scrollbars, and add an image cache
7164         for sizes < 100% zoom.  The code now aggressively attempts to keep
7165         from calling document.Print (), and tries not to use the scaling
7166         g.DrawImage whenever possible (it still does if you scale to >
7167         100%, since usually that involves huge images).
7168
7169         * PrintPreviewControl.cs: hook up the close button.
7170
7171 2006-08-01  Jonathan Pobst  <monkey@jpobst.com>
7172         * ColumnClickEventHandler.cs, DrawItemEventHandler.cs,
7173           ItemChangedEventHandler.cs, ItemCheckEventHandler.cs,
7174           ItemDragEventHandler.cs, LabelEditEventHandler.cs,
7175           LinkClickedEventHandler.cs, LinkLabelLinkClickedEventHandler.cs,
7176           MeasureItemEventHandler.cs, MethodInvoker.cs, PaintEventHandler.cs,
7177           PropertyTabChangedEventHandler.cs, PropertyValueChangedEventHandler.cs,
7178           SelectedGridItemChangedEventHandler.cs, ToolBarButtonClickEventHandler.cs:
7179           Removed [Serializable] for 2.0 Event Handlers.
7180
7181 2006-07-31  Jackson Harper  <jackson@ximian.com>
7182
7183         * TextBoxBase.cs: Make ShowSelection invalidate when changed.
7184         * TextControl.cs: Uncomment out the body of this method.
7185
7186 2006-07-31  Alexander Olk  <alex.olk@googlemail.com>
7187
7188         * XplatUIX11.cs: Use the correct cursor shapes for arrow and default
7189           standard cursors.
7190
7191 2006-07-31  Peter Dennis Bartok  <pbartok@novell.com>
7192
7193         * TextBoxBase.cs: Added internal property ShowSelection to allow controls
7194           that embed TextBox and need selections visible even if textbox is not
7195           focused to enforce that behaviour.
7196         * TextControl.cs (Draw): Use ShowSelection instead of has_focus to determine
7197           selection drawing
7198
7199 2006-07-31  Peter Dennis Bartok  <pbartok@novell.com>
7200
7201         * TextControl.cs:
7202           - Added new SetSelectionStart/SetSelectionEnd overloads
7203           - Fixed viewport width assignment to be accurate
7204           - Adjusted alignment line shift calculations to allow cursor on right
7205             aligned lines to be always visible at the right border (like MS)
7206         * TextBoxBase.cs:
7207           - SetBoundsCore: Re-adjust caret location after resize (Fixes #78323)
7208           - TextBoxBase_SizeChanged: recalculating canvas on size changes
7209           - CalculateScrollBars: Use ViewPort size instead of window size, to
7210             properly consider space occupied by the border and scrollbars 
7211             (Fixes #78661)
7212           - hscroll_ValueChanged, vscroll_ValueChanged: Fixed scroll 
7213             calculations; no longer leaves artifacts
7214           - CaretMoved: Adjusted window scrolling to match MS and fixed several
7215             calculation bugs (Still missing right/center align calculations)
7216
7217 2006-07-31  Peter Dennis Bartok  <pbartok@novell.com> 
7218
7219         * XPlatUIWin32.cs: Made ScrollRectEx a bit more flexible, and removed
7220           use of both scroll rect and clip rect, as they do the same.
7221
7222 2006-07-31  Peter Dennis Bartok  <pbartok@novell.com>
7223
7224         * Control.cs (WM_CHAR WndProc): 2.0 profile allows changing the key 
7225           in the event handler (fixes #78912)
7226
7227 2006-07-31  Chris Toshok  <toshok@ximian.com>
7228
7229         * ThemeWin32Classic.cs: use grid.RowsCount here instead of
7230         grid.ListManager.Count, since grid.ListManager might be null.
7231         This of course begs the question "why are we drawing rows for a
7232         grid with no list manager (and therefor no rows)?"  Fixes the
7233         crash in bug #78929.
7234
7235 2006-07-31  Chris Toshok  <toshok@ximian.com>
7236
7237         * RelatedPropertyManager.cs: Don't always chain up to the parent
7238         ctor.  instead, call SetDataSource if the parent's position is !=
7239         -1.  Fixes the crash in #78822.
7240
7241 2006-07-31  Chris Toshok  <toshok@ximian.com>
7242
7243         * DataGrid.cs (get_ListManager): use field instead of property
7244         accessors for datasource and datamember.
7245         (RowsCount): make internal again.
7246         (OnMouseDown): end edits before resizing columns/rows.
7247         (OnMouseUp): restart edits after resizing columns/rows.
7248
7249 2006-07-30  Peter Dennis Bartok  <pbartok@novell.com>
7250
7251         * XplatUIX11.cs: Default cursor cannot be 0 or it will not get set.
7252           This fixes the situation where the last set cursor is displayed
7253           whenever the mouse is over scrollbars.
7254
7255 2006-07-30  Carlos Alberto Cortez <calberto.cortez@gmail.com>
7256
7257         * PrintDialog.cs: Fix the behaviour of PrinterSettings and
7258         Document properties, as well as initial values.
7259
7260 2006-07-29  Peter Dennis Bartok  <pbartok@novell.com>
7261
7262         * XplatUIWin32.cs (SetBorderStyle): Setting both border
7263           and ClientEdge results in a 3-pixel border, which is
7264           wrong.
7265
7266 2006-07-28  Jackson Harper  <jackson@ximian.com>
7267
7268         * TreeNodeCollection.cs: Fix the clear method.
7269         - Fix the Shrink also
7270
7271 2006-07-27  Jackson Harper  <jackson@ximian.com>
7272
7273         * TreeView.cs: Make sure the visible order is computed when we
7274         attempt to size the scrollbars (for trees that mess with the
7275         scrolling when they shouldn't.
7276         - Make sure to give the scrollbars valid values.
7277
7278 2006-07-26  Peter Dennis Bartok  <pbartok@novell.com> 
7279
7280         * XplatUIX11.cs: Move motion compression code to where it
7281           has less performance impact
7282
7283 2006-07-26  Jackson Harper  <jackson@ximian.com>
7284
7285         * UpDownBase.cs: When the control is selected make the child
7286         controls non selectable, so that a click on them won't do a
7287         focus/unfocus cycle.
7288         - Don't give focus to the text box when the spinner is selected.
7289         * XEventQueue.cs: Peek on both the x11 queue and the lock queue.
7290
7291 2006-07-26  Chris Toshok  <toshok@ximian.com>
7292
7293         * ThemeWin32Classic.cs: add print preview rendering.  I'm not
7294         satisfied with this solution.  If the bitmaps are small, we should
7295         just cache them in the PrintPreviewDialog and draw them here.
7296         Also, the layout is broken for the 2-up and 3-up cases.
7297
7298         * Theme.cs: add PrintPReviewControlPaint.
7299
7300         * PrintPreviewDialog.cs: first pass implementation.
7301
7302         * PrintPreviewControl.cs: first pass implementation.  No
7303         scrollbars yet.
7304
7305         * PrintDialog.cs: only validate fields if that particular portion
7306         of the UI is enabled.  Also, set the document's controller to a
7307         PrintControllerWithStatusDialog wrapping the document's print
7308         controller.
7309
7310         * PrintControllerWithStatusDialog.cs: if we're printing to a file,
7311         bring up a SaveFileDialog (i hope we don't want to match the
7312         behavior of the crappy windows file entry) and set the
7313         PrinterSettings.PrintFileName accordingly.
7314
7315 2006-07-26  Jackson Harper  <jackson@ximian.com>
7316
7317         * ContainerControl.cs: Add a field that disables auto selecting
7318         the next control in a container when the container is activated.
7319         * UpDownBase.cs: Don't select the text box when the up down is
7320         selected.
7321
7322 2006-07-26  Peter Dennis Bartok  <pbartok@novell.com> 
7323
7324         * XEventQueue.cs: Added methods for peeking (used for compression
7325           of successive events)
7326         * XplatUIX11.cs (GetMessage): We're now compressing consecutive
7327           mouse move events (fixes #78732)
7328
7329 2006-07-25  Jackson Harper  <jackson@ximian.com>
7330
7331         * UpDownBase.cs: Use an internal class for the textbox so that we
7332         can control focus.  the updown control should always have focus,
7333         if either the text area or the buttons are clicked.
7334         - Send the key messages to the textbox, since it never actually
7335         has focus
7336         - Activate and decativate the textbox caret.
7337
7338 2006-07-24  Jackson Harper  <jackson@ximian.com>
7339
7340         * Control.cs: Use the directed select when selecting a control,
7341         this way the container controls override will get called and the
7342         whole ActiveControl chain will get triggered.  TODO: probably need
7343         to make sure this gets done everywhere instead of the old
7344         Select(Control).
7345         * ContainerControl.cs: Implement the directed Select method to
7346         find and activate the correct child control.    
7347         
7348 2006-07-22  Mike Kestner  <mkestner@novell.com>
7349
7350         * Form.cs: use Control.MousePosition for NCLBUTTONDOWN in the menu
7351         menu handling code so that clicks without a grab work too.
7352         [Fixes #78914]
7353
7354 2006-07-22  Alexander Olk  <alex.olk@googlemail.com>
7355
7356         * FileDialog.cs: Enable the BackButton when dirstack has one element.
7357           Added some small optimizations.
7358
7359 2006-07-21  Matt Hargett  <matt@use.net>
7360
7361         * Control.cs: Implemented 2.0 MinimumSize/MaximumSize properties
7362
7363 2006-07-21  Peter Dennis Bartok  <pbartok@novell.com> 
7364
7365         * Control.cs (GetNextControl): Fixes to make all of Jackson's unit 
7366           tests pass and match MS in some strange border cases.
7367
7368 2006-07-21  Chris Toshok  <toshok@ximian.com>
7369
7370         * ThemeWin32Classic.cs: handle drawing of the relation links and
7371         parent row buttons.
7372
7373         * Theme.cs: change args to DataGridPaintParentRow.
7374
7375         * DataGrid.cs: Don't use controls for the relation links and
7376         parent buttons, so we have to handle all their interactions in
7377         MouseMove, MouseDown, MouseUp, etc.  Also, store a lot more stuff
7378         when we're navigating through child tables, so we can reinstate
7379         selection, expanded state, current cell, etc.
7380
7381 2006-07-20  Chris Toshok  <toshok@ximian.com>
7382
7383         * ToolBar.cs: When we redraw a button, for whatever reason,
7384         there's no reason to redraw the entire toolbar.  Also, don't call
7385         Control.Refresh from within Redraw, as it's much heavier than
7386         Invalidate (which is really what we want).
7387
7388 2006-07-20  Chris Toshok  <toshok@ximian.com>
7389
7390         * DataGrid.cs, CurrencyManager.cs, DataGridColumnStyle.cs,
7391         DataGridTextBoxColumn.cs, DataGridTextBox.cs,
7392         ThemeWin32Classic.cs, ListControl.cs: After staring at stack
7393         traces from within a debug IBindingList datasource
7394         (in mono/winforms/datagrid) for *days*, I've finally gotten things
7395         to work in a similar fashion.
7396
7397 2006-07-20  Carlos Alberto Cortez <calberto.cortez@gmail.com>
7398
7399         * ListBox.cs: Don't call Sort () when setting 
7400         the Sorted property to false (avoid an unnecessary sort).
7401
7402 2006-07-20  Carlos Alberto Cortez <calberto.cortez@gmail.com>
7403
7404         * ListControl.cs: DataSource should throw an ArgumentException
7405         instead of a normal exception when the argument is not of the 
7406         correct type.
7407
7408 2006-07-20  Mike Kestner  <mkestner@novell.com>
7409
7410         * Control.cs: add InternalPreProcessMessage to allow us to steal
7411         key events before MWF gets its paws on them.  Adapted from a
7412         suggestion by eno.
7413         * ToolBar.cs: add GotLostFocus handing for flat toolbars, with 
7414         up/down/left/right navigation. Override the new internal control
7415         method to steal the events since they never make it to WndProc.
7416         * ToolBarButton.cs: don't worry about pushed when setting hilight
7417         since the drawing code prefers pushed to hilight. Invalidate on 
7418         Hilight changes. Fixes #78547 and #78525.
7419
7420 2006-07-20  Peter Dennis Bartok  <pbartok@novell.com> 
7421
7422         * ScrollableControl.cs: Consider AutoScrollMinSize when calculating
7423           the canvas size. Fixes #78868
7424
7425 2006-07-20  Peter Dennis Bartok  <pbartok@novell.com>
7426
7427         * Splitter.cs: Track requested split position until first layout
7428           is performed. Fixes #78871
7429
7430 2006-07-20  Peter Dennis Bartok  <pbartok@novell.com> 
7431
7432         * Application.cs: Removed code that forces 1.x for the version
7433           number if the version started with 0. Not sure why that code was
7434           there and I couldn't find any bugs that indicated we needed it.
7435           Fixes #78869
7436
7437 2006-07-20  Alexander Olk  <alex.olk@googlemail.com>
7438
7439         * ThemeWin32Classic.cs: Don't throw a NotImplementedException in
7440           ResetDefaults(), just write some output to the console until it's
7441           implemented. Fixes bug #78907 for now. Eliminated two warnings.
7442
7443 2006-07-19  Jonathan Chambers  <joncham@gmail.com>
7444
7445         * PropertyGridView.cs: set StartPosition of drop down forms
7446         so they appear in correct initial spot.  Fixes #78190.
7447
7448 2006-07-19  Mike Kestner  <mkestner@novell.com>
7449
7450         * ThemeWin32Classic.cs: use parent background color when drawing
7451         flat toolbars.  Restructure the conditionals to make sure non-flat
7452         non-Divider toolbars are filled too.  Fixes #78837.
7453
7454 2006-07-19  Mike Kestner  <mkestner@novell.com>
7455
7456         * ListBox.cs: Sort on collection changes even if the handle
7457         isn't created yet.  Fixes #78813.
7458
7459 2006-07-18  Carlos Alberto Cortez <calberto.cortez@gmail.com>
7460
7461         * ListControl.cs: DisplayMember should never be null,
7462         and now we assign String.Empty when null is passed to it (this
7463         is the .Net way).
7464
7465 2006-07-17  Mike Kestner  <mkestner@novell.com>
7466
7467         * ListViewItem.cs: restructure Font and subitem Font handling 
7468         to hold a specific font and refer back to owner on null.
7469         Fixes #78761.
7470
7471 2006-07-17  Mike Kestner  <mkestner@novell.com>
7472
7473         * ToolBar.cs: bandaid for side-effect of previous patch which was
7474         discarding explicit heights for non-AutoSize toolbars.  Need to
7475         extend my format tester to deal with AutoSize=false. Fixes #78864.
7476
7477 2006-07-15  Jackson Harper  <jackson@ximian.com>
7478
7479         * LabelEditTextBox.cs:
7480         * TreeView.cs: Use a new LabelEdit class for node editing, this
7481         class automatically 'closes' itself when it gets the enter key or
7482         loses focus.
7483         - Use the client rectangle when setting the trees scrollbars, so
7484         border style is taken into account.
7485         
7486 2006-07-14  Jackson Harper  <jackson@ximian.com>
7487
7488         * TreeNode.cs:
7489         * TreeView.cs: Make the editing work similar to MSs, firing the
7490         events correctly and ending edits correctly.
7491
7492 2006-07-14  Mike Kestner  <mkestner@novell.com>
7493
7494         * ToolBarButton.cs:
7495         * ToolBar.cs: layout restructuring and redraw enhancements to support
7496         formatting changes gracefully, like setting TextAlign, ImageList, 
7497         ButtonSize, and Appearance.  Handles explicit button sizing quirks
7498         of the MS controls.  Things like flat toolbars ignoring button size
7499         but becoming constant sized at the largest button's size.  Normal
7500         toolbars with an image set cannot be shrunk smaller than the image,
7501         but text can be clipped/ignored.
7502         * ThemeWin32Classic.cs: don't draw text if text_rect height or width
7503         is zero.  Seems like DrawString should be smart enough to not put
7504         anything on screen though. Also trim labels and ellipsize at the char
7505         boundary, not word.
7506         Fixes #78711 and #78483.
7507
7508 2006-07-14  Alexander Olk  <alex.olk@googlemail.com>
7509
7510         * FolderBrowserDialog.cs: Disable "New Folder" button and
7511           "New Folder" contextmenu menuitem if a folder like "My Computer"
7512           is selected.
7513
7514 2006-07-14  Alexander Olk  <alex.olk@googlemail.com>
7515
7516         * FileDialog.cs: Don't create a new folder in "MyComputer" folder.
7517         * FolderBrowserDialog.cs:
7518           - Use MWFConfig to store and read size and position settings
7519           - Added code to create a new folder (button or context menu).
7520             Use TreeView labeledit to change the name of the new folder.
7521
7522 2006-07-14  Jackson Harper  <jackson@ximian.com>
7523
7524         * TreeView.cs: Raise the OnAfterLabelEdit event correctly.  Also,
7525         when the tree is scrolled we end editing.
7526
7527 2006-07-14  Alexander Olk  <alex.olk@googlemail.com>
7528
7529         * ThemeWin32Classic.cs: Fixed position of CPDrawScrollButton Up and
7530           Down arrows
7531
7532 2006-07-14  Jonathan Pobst  <monkey@ipobst.com> 
7533
7534         WebBrowserProgressChangedEventHandler.cs, BindingCompleteEventArgs.cs,
7535         BindingCompleteEventHandler.cs, BindingManagerDataErrorEventArgs.cs,
7536         BindingManagerDataErrorEventHandler.cs, CacheVirtualItemsEventArgs.cs,
7537         CacheVirtualItemsEventHandler.cs, ColumnReorderedEventArgs.cs,
7538         ColumnReorderedEventHandler.cs, ColumnWidthChangedEventArgs.cs,
7539         ColumnWidthChangedEventHandler.cs, ColumnWidthChangingEventArgs.cs,
7540         ColumnWidthChangingEventHandler.cs, FormClosedEventArgs.cs,
7541         FormClosedEventHandler.cs, FormClosingEventArgs.cs,
7542         FormClosingEventHandler.cs, ItemCheckedEventArgs.cs,
7543         ItemCheckedEventHandler.cs, ListControlConvertEventArgs.cs,
7544         ListControlConvertEventHandler.cs, ListViewItemMouseHoverEventArgs.cs,
7545         ListViewItemMouseHoverEventHandler.cs, ListViewItemSelectionChangedEventArgs.cs,
7546         ListViewItemSelectionChangedEventHandler.cs,
7547         ListViewVirtualItemsSelectionRangeChangedEventArgs.cs,
7548         ListViewVirtualItemsSelectionRangeChangedEventHandler.cs,
7549         MaskInputRejectedEventArgs.cs, MaskInputRejectedEventHandler.cs,
7550         PopupEventArgs.cs, PopupEventHandler.cs, PreviewKeyDownEventArgs.cs,
7551         PreviewKeyDownEventHandler.cs, RetrieveVirtualItemEventArgs.cs,
7552         RetrieveVirtualItemEventHandler.cs, SearchForVirtualItemEventArgs.cs,
7553         SearchForVirtualItemEventHandler.cs, SplitterCancelEventArgs.cs,
7554         SplitterCancelEventHandler.cs, TabControlCancelEventArgs.cs, 
7555         TabControlCancelEventHandler.cs, TabControlEventArgs.cs, 
7556         TabControlEventHandler.cs, TableLayoutCellPaintEventArgs.cs,
7557         TableLayoutCellPaintEventHandler.cs, ToolStripDropDownClosedEventArgs.cs,
7558         ToolStripDropDownClosedEventHandler.cs, ToolStripDropDownClosingEventArgs.cs,
7559         ToolStripDropDownClosingEventHandler.cs, TreeNodeMouseClickEventArgs.cs,
7560         TreeNodeMouseClickEventHandler.cs, TreeNodeMouseHoverEventArgs.cs,
7561         TreeNodeMouseHoverEventHandler.cs, TypeValidationEventArgs.cs,
7562         TypeValidationEventHandler.cs, WebBrowserDocumentCompletedEventArgs.cs,
7563         WebBrowserDocumentCompletedEventHandler.cs, WebBrowserNavigatedEventArgs.cs,
7564         WebBrowserNavigatedEventHandler.cs, WebBrowserNavigatingEventArgs.cs,
7565         WebBrowserNavigatingEventHandler.cs, 
7566         WebBrowserProgressChangedEventArgs.cs: New 2.0 Event Handlers
7567
7568 2006-07-14  Jonathan Pobst  <monkey@ipobst.com>
7569
7570         MergeAction.cs, PowerLineStatus.cs, PowerState.cs, PreProcessControlState.cs,
7571         RichTextBoxLanguageOptions.cs, ScreenOrientation.cs, ScrollOrientation.cs,
7572         SearchDirectionHint.cs, SystemParameter.cs, TabControlAction.cs,
7573         TableLayoutPanelCellBorderStyle.cs, TextDataFormat.cs, TextImageRelation.cs,
7574         ToolStripDropDownCloseReason.cs, ToolStripDropDownDirection.cs,
7575         ToolStripGripDisplayStyle.cs, ToolStripGripStyle.cs,
7576         ToolStripItemAlignment.cs, ToolStripItemDisplayStyle.cs,
7577         ToolStripItemImageScaling.cs, ToolStripItemOverflow.cs,
7578         ToolStripItemPlacement.cs, ToolStripLayoutStyle.cs,
7579         ToolStripManagerRenderMode.cs, ToolStripRenderMode.cs,
7580         ToolStripStatusLabelBorderSides.cs, ToolStripTextDirection.cs,
7581         ToolTipIcon.cs, TreeNodeStates.cs, TreeViewDrawMode.cs,
7582         TreeViewHitTestLocations.cs, UnhandledExceptionMode.cs, ValidationConstraints.cs,
7583         WebBrowserEncryptionLevel.cs, WebBrowserReadyState.cs, WebBrowserRefreshOption.cs,
7584         ArrowDirection.cs, AutoCompleteMode.cs, AutoCompleteSource.cs, AutoSizeMode.cs,
7585         AutoValidate.cs, BatteryChargeStatus.cs, BindingCompleteContext.cs,
7586         BindingCompleteState.cs, CloseReason.cs, ColumnHeaderAutoResizeStyle.cs,
7587         ControlUpdateMode.cs, DataSourceUpdateMode.cs, DockingBehavior.cs,
7588         FixedPanel.cs, FlowDirection.cs, GetChildAtPointSkip.cs,
7589         HtmlElementInsertionOrientation.cs, InsertKeyMode.cs, ListViewHitTestLocations.cs,
7590         ListViewItemStates.cs, MaskFormat.cs: Added
7591
7592 2006-07-13  Jonathan Chambers  <joncham@gmail.com>
7593
7594         * PropertyGridView.cs: Fix keyboard navigation of drop down.
7595         Patch from eno for bug 78558.
7596         
7597 2006-07-13  Jackson Harper  <jackson@ximian.com>
7598
7599         * TreeView.cs: When an edit is finished make sure that the
7600         selected node is visible.
7601         - When setting the top/bottom use the scrollbars is_visible, so
7602         everything will be set correctly even if the tree isn't visible
7603         yet.
7604
7605 2006-07-13  Jackson Harper  <jackson@ximian.com>
7606
7607         * ComboBox.cs: Revert the item->index part of my previous patch.
7608         * TreeView.cs: Use LostFocus instead of Leave for detecting when
7609         the edit box has lost focus (duh).
7610         - Just make the edit box not visible when we get return, that will
7611         take the focus, which will call EndEdit
7612         * TreeNode.cs When we start editing, notify the treeview.
7613
7614 2006-07-12  Jackson Harper  <jackson@ximian.com>
7615
7616         * ComboBox.cs: Clear out old items before setting the item list.
7617         This prevents databound controls from having their items added
7618         twice.
7619         - Switch the combobox to use indices whereever possible instead of
7620         using Item's.  This allows usto navigate through lists that have
7621         more then one item with the same string value (ie a, b, b, a).
7622         - Scroll the listboxes scrollbar when a non visible item is
7623         highlighted
7624         - Allow keypress to cycle through all the possible values. For
7625         example if you have b1, b2, b3 and hold down the B key all the
7626         values will be cycled through.
7627         
7628 2006-07-12  Jackson Harper  <jackson@ximian.com>
7629
7630         * TextBoxBase.cs:
7631         * ListView.cs: Don't need to override SETFOCUS anymore, we can do
7632         this using the internal methods.
7633         * Control.cs: Add OnGotFocusInternal.  A new method that allows
7634         controls to "override" OnGotFocus and change focus behavior if
7635         needed.
7636         - Same thing for LostFocus
7637         * ComboBox.cs: Pass off focus to the text control properly.
7638
7639 2006-07-12  Alexander Olk  <alex.olk@googlemail.com>
7640
7641         * FileDialog.cs: Added GetFoldersOnly to MWFVFS
7642         * FolderBrowserDialog.cs: Almost a complete rewrite.
7643           - Better support for Environment.Specialfolders
7644           - Added support for MWFVFS
7645           - Made setting SelectedPath work
7646
7647 2006-07-12  Jackson Harper  <jackson@ximian.com>
7648
7649         * Control.cs: Optimze getting all the controls.
7650
7651 2006-07-11  Jackson Harper  <jackson@ximian.com>
7652
7653         * ContainerControl.cs: Override SETFOCUS in the container control,
7654         so that it is not selected on mouse click.
7655
7656 2006-07-11  Peter Dennis Bartok  <pbartok@novell.com> 
7657
7658         * LinkLabel.cs: Hack to handle Shift-Tabbing to the linklabel. 
7659           Hopefully we will have a better way once all of focus is complete.
7660
7661 2006-07-11  Peter Dennis Bartok  <pbartok@novell.com>
7662
7663         * ThemeWin32Classic.cs: Commented out some debug code and fixed
7664           a compile error with csc.
7665
7666 2006-07-11  Jackson Harper  <jackson@ximian.com>
7667
7668         * Control.cs: When hiding a control only select the next control
7669         if the current control was focused.
7670         - Don't handle enter/leave when setting/killing focus, this is
7671         done by the container control.
7672         - Remove is_selected, it's not needed anymore.
7673         - Add utility methods for selecting a child control, and for
7674         firing the Enter/Leave events.
7675         * ContainerControl.cs: When a control is activated fire the
7676         enter/leave events.
7677         - Don't wrap when processing the tab key, so that focus can be
7678         moved outside of the container.
7679         - Use the correct active control
7680
7681 2006-07-11  Jackson Harper  <jackson@ximian.com>
7682
7683         * ComboBox.cs: Remove some debug code that was blinding me.
7684         * UpDownBase.cs: These controls actually aren't implicit, they are
7685         visible to the user.
7686
7687 2006-07-10  Chris Toshok  <toshok@ximian.com>
7688
7689         * DataGrid.cs: move back to the is_adding boolean field.  god i
7690         hate this is_editing/is_adding/is_changing stuff.
7691
7692 2006-07-10  Chris Toshok  <toshok@ximian.com>
7693
7694         * DataGridTableStyle.cs: just check if the property type is bool.
7695         if it is, use DataGridBoolColumn, otherwise DataGridTextBoxColumn.
7696         Don't use CanRenderType.
7697
7698         * DataGridTextBoxColumn.cs: set the value to DBNull.Value, not "",
7699         if our text == NullText.  Remove CanRenderType.
7700
7701         * DataGridBoolColumn.cs: nuke CanRenderType.
7702
7703         * DataGrid.cs: reenable some code to end the current edit inside
7704         of set_CurrentCell.  This fixes the other 1.1.16 regression.
7705         Also, remove rowhdrs_maxheight and just use rowhdrs_area.Height.
7706         Also, remove the visible_row_count arg from CalcRowHeaders, since
7707         we don't need to worry about the actual height of the area.
7708
7709 2006-07-10  Chris Toshok  <toshok@ximian.com>
7710
7711         * DataGridTextBoxColumn.cs: if when we Commit we're in navigate
7712         mode, just return.
7713
7714         * DataGridTextBox.cs: change "isedit" to "isnavigating" to reflect
7715         the real sense of the IsInEditOrNavigateMode property (true =
7716         navigate, false = edit).  Also, update OnKeyPress to reflect this.
7717
7718         * DataGridTableStyle.cs (CreateColumnsForTable): even if the
7719         column style exists, we still need to set its property descriptor
7720         to match up with our list manager.
7721
7722 2006-07-10  Chris Toshok  <toshok@ximian.com>
7723
7724         * ThemeWin32Classic.cs: implement the new row/header painting
7725         approach.  The parent row painting will likely go away and
7726         replaced with label controls, but the rest seems to work ok (and
7727         efficiently).
7728
7729         * Theme.cs: change the way we draw datagrid rows.  we don't draw
7730         the row headers as a block now.  Instead we draw them in the
7731         normal draw-row loop.  Add some calls for drawing parent rows and
7732         relation rows.
7733
7734         * DataGridTableStyle.cs: add tons of ArgumentExceptions if this is
7735         a default table style.  Set the defaults from ThemeEngine.Current,
7736         not SystemColors.  Fix lots of misc issues with property setters.
7737
7738         * DataGrid.cs: move loads of style information out of this class
7739         as it's being duplicated with DataGridTableStyle.  keep track of a
7740         special DataGridTableStyle for the properties we used to mirror
7741         here.  Switch all the style properties to access this table style
7742         instead of instance fields of this class.  Also add a internal
7743         class to represent parent rows (more needs to be stored here, like
7744         the selection state from the parent table, as well as the
7745         expansion state.)  Also, for datasources with relations, do the
7746         right thing for collapse/expand, and add support for the
7747         navigation/parent row buttons.
7748
7749         Lastly, fix the crash in the 1.1.16 build.
7750
7751         * GridTableStylesCollection.cs: make the explicit interface
7752         implementations call the class's methods as opposed to duplicating
7753         them.
7754
7755         * DataGridTextBoxColumn.cs: set the x/y offset of the textfield to
7756         0 so the text doesn't jump around when we move the cursor.
7757
7758 2006-07-10  Jackson Harper  <jackson@ximian.com>
7759
7760         * TextBoxBase.cs:
7761         * ListBox.cs: Match MS's ToString (this makes debugging focus
7762         stuff infinitely easier).
7763
7764 2006-07-10  Jackson Harper  <jackson@ximian.com>
7765
7766         * Control.cs (SelectNextControl): When checking the control's
7767         parent use this instead of ctrl.parent so that null can be passed
7768         to SelectNextControl. (I have unit tests for this).
7769         - Remove unused var.
7770
7771 2006-07-10  Chris Toshok  <toshok@ximian.com>
7772
7773         * CurrencyManager.cs: correct one regression, the removal of the
7774         finalType field.  Also, add a MonoTODO on CanAddRows, implement
7775         Refresh() correctly, and fix some event emission in
7776         ListChangedHandler.
7777
7778 2006-07-07  Alexander Olk  <alex.olk@googlemail.com>
7779
7780         * FileDialog.cs: Don't use brackets for new folders if they exist
7781           under *nix. Instead use -(number of existing folders +1).
7782
7783 2006-07-07  Alexander Olk  <alex.olk@googlemail.com>
7784
7785         * FileDialog.cs:
7786           - Fixed really nasty bug #78771
7787           - Don't block the whole GUI when reading directories with a lot of
7788             entries. Use an other thread instead and call BeginInvoke to
7789             update the ListView in MWFFileView
7790
7791 2006-07-07  Chris Toshok  <toshok@ximian.com>
7792
7793         * Control.cs (Dispose): release any Capture when disposing.
7794
7795 2006-07-07  Chris Toshok  <toshok@ximian.com>
7796
7797         * LinkLabel.cs (Select): if we chain up to the parent, set
7798         focused_index to -1 so we'll search for the first available link
7799         the next time the user tabs into us.  Also, if the direction is
7800         backward and focused_index == -1, start the search from the last
7801         element.
7802
7803 2006-07-07  Chris Toshok  <toshok@ximian.com>
7804
7805         * LinkLabel.cs (CreatePiecesFromText): if the link's range piece
7806         is beyond the end of the text, don't do anything.
7807         (CreateLinkPieces): set our ControlStyles.Selectable based on
7808         whether or not we have any links.
7809         (Link.Invalidate): use a loop instead of foreach.
7810         (Link.set_Start): null out owner.sorted_links so it'll be
7811         recreated by CreateLinkPieces.
7812
7813 2006-07-06  Chris Toshok  <toshok@ximian.com>
7814
7815         * LinkLabel.cs: revert the SetStyle change.
7816
7817 2006-07-06  Chris Toshok  <toshok@ximian.com>
7818
7819         * LinkLabel.cs (.ctor): SetStyle Selectable to true.
7820         (OnEnableChanged): s/Refresh/Invalidate
7821         (OnGotFocus): if we have a focused index already, refocus it (so
7822         if we mouse out/in to the window it'll focus the right link).
7823         (OnKeyDown): move the tab handling out of here.
7824         (OnLostFocus): don't set focused_index to -1, so we can refocus it
7825         when we lose focus.
7826         (OnMouseDown): don't Capture here - Control handles it.  Also,
7827         focus the active link.
7828         (OnMouseUp): don't deal with Capture.
7829         (OnPaintBackgroundInternal): remove.
7830         (OnTextAlignChanged): CreateLinkPieces before calling the
7831         superclass's method.
7832         (OnTextChanged): call CreateLinkPieces before calling superclass's
7833         method.
7834         (ProcessDialogKey): handle Tab here, and call Select(bool,bool) to
7835         move around.
7836         (Select): implement this, moving the selection between different
7837         links, and call parent.SelectNextControl if we don't have another
7838         link to focus in the given direction.
7839         (CreateLinkPieces): call Invalidate instead of Refresh.
7840         
7841 2006-07-06  Chris Toshok  <toshok@ximian.com>
7842
7843         * ThemeWin32Classic.cs: DrawLinkLabel changes to accomodate the
7844         new LinkLabel internals.
7845
7846         * LinkLabel.cs: fairly major rewrite.  get rid of all the loops
7847         over pieces looking for active/focused/etc links.  also, deal with
7848         runs of text (and links) with embedded \n's in them, and use
7849         MeasureCharacterRanges instead of MeasureString to figure out the
7850         regions text occupies.  Lastly, do the usual s/Refresh/Invalidate
7851         two-step.
7852
7853 2006-07-04  Jackson Harper  <jackson@ximian.com>
7854
7855         * XplatUIX11.cs: Enable key auto repeat. If the user doesn't have
7856         XKB or key auto repeat, do it manually.  Without key auto repeat,
7857         when a key is held down we get key press, key release, key press,
7858         key release, ... with auto repeat we get key press, key press, key
7859         press ..., and then a release when the key is actually released.
7860
7861 2006-07-03  Jackson Harper  <jackson@ximian.com>
7862
7863         * TabControl.cs:
7864         * ThemeWin32Classic.cs: Tabs do not obey normal background color
7865         rules, they are always control color regardless of the background
7866         color.
7867
7868 2006-07-02  Alexander Olk  <alex.olk@googlemail.com>
7869
7870         * FileDialog.cs: Added internal class MWFConfig.
7871           Removed Registry support and replaced it with support for the new
7872           MWFConfig class. See MWFConfig comments for more information.
7873
7874 2006-06-30  Alexander Olk  <alex.olk@googlemail.com>
7875
7876         * ThemeWin32Classic.cs: Added RadioButton and CheckBox focus
7877           rectangle. Added some patches from eno from bug #78490 and fixed
7878           the arrow position for small up and down CPDrawScrollButtons.
7879
7880 2006-06-30  Jackson Harper  <jackson@ximian.com>
7881
7882         * InternalWindowManager.cs: Remove some debug code.
7883         * Form.cs: When an MdiParent is set to null, the window is
7884         "detatched" and becomes a normal window.
7885         * MdiClient.cs: Don't bring the new child form to the front until
7886         it is activated (setting it as active does this), this makes the
7887         previously active forms titlebar get redrawn as inactive.
7888
7889 2006-06-29  Peter Dennis Bartok  <pbartok@novell.com>
7890
7891         * PrintDialog.cs: Labels need a tab index too, otherwise they overlap
7892           with later controls
7893
7894 2006-06-29  Mike Kestner  <mkestner@novell.com>
7895
7896         * MenuAPI.cs: handle arrow keys in keynav state. Go active on down
7897         arrow in keynav state.  Fixes #78682.
7898
7899 2006-06-28  Atsushi Enomoto  <atsushi@ximian.com>
7900
7901         * PrintDialog.cs: Reorder, relayout, remove extra code, set tab 
7902           order (fixes #78393)
7903
7904 2006-06-28  Jonathan Pobst  <monkey@ipobst.com>
7905
7906         * AccessibleRole.cs, AccessibleStates.cs, AnchorStyles.cs, 
7907           ArrangeDirection.cs, ArrangeStartingPosition.cs, ColorDepth.cs,
7908           ControlStyles.cs, DataGridViewImageCellLayout.cs, DrawMode.cs,
7909           FormBorderStyle.cs, FormStartPosition.cs, FormWindowState.cs,
7910           GridItemType.cs, HelpNavigator.cs, ImeMode.cs, ItemActivation.cs,
7911           ItemBoundsPortion.cs, Keys.cs, ListViewAlignment.cs, 
7912           PictureBoxSizeMode.cs, PropertySort.cs, SelectionMode.cs,
7913           Shortcut.cs, SizeGripStyle.cs, SortOrder.cs, StructFormat.cs,
7914           TextFormatFlags.cs, ToolBarAppearance.cs, ToolBarButtonStyle.cs,
7915           ToolBarTextAlign.cs, View.cs: 2.0 Changes to existing 1.x
7916           enumerations (FlagsAttribute, SerializableAttribute, added/removed
7917           values)
7918
7919 2006-06-28  Mike Kestner  <mkestner@novell.com>
7920
7921         * ComboBox.cs: implement scroll wheel support. Fixes #78360.
7922
7923 2006-06-28  Atsushi Enomoto  <atsushi@ximian.com>
7924
7925         * PropertyGrid.cs,
7926           PropertyGridTextBox.cs : explicitly set BackColor to differentiate
7927           item lines from other area (It also makes BackColor consistent and
7928           compatible with .NET). Fixed bug #78564.
7929
7930 2006-06-28  Jonathan Chambers  <jonathan.chambers@ansys.com>
7931
7932         * PropertyGrid.cs: refresh toolbar when PropertySort is set.
7933         Patch from Eno for #78555.
7934
7935 2006-06-27  Chris Toshok  <toshok@ximian.com>
7936
7937         * ThemeWin32Classic.cs: s/grid.grid_drawing/grid
7938
7939         * DataGridColumnStyle.cs: same.
7940
7941         * DataGrid.cs: Roll DataGridDrawingLogic.cs into this file.
7942         
7943         * DataGridDrawingLogic.cs: nuke.
7944
7945 2006-06-27  Chris Toshok  <toshok@ximian.com>
7946
7947         * DataGridTableStyle.cs: clean up the constructors, and build the
7948         list of child relations for this table.  I have no idea if this is
7949         where we should be doing it (it probably isn't), but since we're
7950         already iterating over the properties..
7951
7952         * DataGrid.cs: add row resizing.  for now we add a DataGridRow
7953         struct and array for keeping track of row information, similar to
7954         what's shown in a hack on
7955         http://www.syncfusion.com/FAQ/WindowsForms/FAQ_c44c.aspx.
7956
7957         * Theme.cs: be consistent about the naming of DataGrid methods,
7958         prefering ColumnWidths and RowHeights over columnsWidths and
7959         RowsHeights.
7960
7961         * ThemeWin32Classic.cs: same, and also add support for variable
7962         sized rows (and the +/- expansion icons for related rows).
7963
7964 2006-06-27  Peter Dennis Bartok  <pbartok@novell.com>
7965
7966         * TextBoxBase.cs: Applied Eno's patch from #78660
7967
7968 2006-06-27  Peter Dennis Bartok  <pbartok@novell.com> 
7969
7970         * Form.cs (ScaleCore): We don't want to scale our form if it's
7971           state is minimized or maximized, but we still need to scale our
7972           child windows. Also, added try/finally block to ensure layout
7973           gets reset (Fixes #78697)
7974
7975 2006-06-27  Peter Dennis Bartok  <pbartok@novell.com>
7976
7977         * Control.cs: Added 2.0 Scale(SizeF) method (Fixes 78700)
7978
7979 2006-06-27  Peter Dennis Bartok  <pbartok@novell.com> 
7980
7981         * Form.cs: Fixed c+p error and added check to resize form if minimum
7982           size is bigger than current size (Fixes #78709)
7983
7984 2006-06-26  Peter Dennis Bartok  <pbartok@novell.com> 
7985
7986         * ThemeEngine.cs (..ctor): Properly use ToLower() (Fixes #78704)
7987
7988 2006-06-26  Mike Kestner  <mkestner@novell.com>
7989
7990         * ComboBox.cs: only do Keypress handling in the combo when there  
7991         are items in the collection. Fixes #78710.
7992
7993 2006-06-26  Chris Toshok  <toshok@ximian.com>
7994
7995         * Binding.cs: make this work bi-directionally.  also, clear up
7996         other mixups between Push/Pull Data (e.g. we're supposed to pull
7997         data when validating).
7998
7999         * BindingManagerBase.cs: trim some fully qualified collection
8000         types.
8001
8002         * PropertyManager.cs (get_IsSuspended): oops, fix this check.
8003
8004 2006-06-23  Chris Toshok  <toshok@ximian.com>
8005
8006         * PropertyManager.cs: It appears (according to the unit tests)
8007         that PropertyManager doesn't use
8008         PropertyDescriptor.AddValueChanged to track propery value changes
8009         in its datasource, but uses the same scheme as Binding, where it
8010         looks for a <Property>Changed event and binds to it.
8011
8012         Also, according to the docs, IsSuspended always returns false for
8013         a property manager with a non-null datasource.
8014
8015 2006-06-22  Peter Dennis Bartok  <pbartok@novell.com> 
8016
8017         * Form.cs: (ShowDialog): If we're returning a forced cancel we still
8018           need to update the actual DialogResult. (Fixes #78613)
8019
8020 2006-06-22  Peter Dennis Bartok  <pbartok@novell.com>
8021
8022         * Form.cs (ShowDialog): Release any captures before running the
8023           new message pump (fixes #78680)
8024
8025 2006-06-22  Mike Kestner  <mkestner@novell.com>
8026
8027         * ListView.cs: Layout column widths properly in details mode even 
8028         if HeaderStyle.None is set.  Fixes #78691.
8029
8030 2006-06-21  Peter Dennis Bartok  <pbartok@novell.com>
8031
8032         * FileDialog.cs: Fixed taborder to match MS. Fixes #77873 partially.
8033
8034 2006-06-21  Peter Dennis Bartok  <pbartok@novell.com> 
8035
8036         * Control.cs (ContainsFocus): Using new driver method to get focused
8037           window, instead of trying to use internal tracking var, which can
8038           recursion issues (Fixes #78685)
8039         * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs, XplatUIOSX.cs, 
8040           XplatUIWin32.cs: Added GetFocus method to return focused window
8041
8042 2006-06-21 Gonzalo Paniagua Javier <gonzalo@ximian.com>
8043
8044         * ColorDialog.cs: when the mouse button is pressed inside the color
8045         matrix, don't let the cursor move out of it until the button is
8046         released, which is the behavior on windows. Changed 'colours' by
8047         'colors' to use the same word consistently.
8048
8049 2006-06-21  Chris Toshok  <toshok@ximian.com>
8050
8051         * DataGrid.cs: add in some basic navigation stuff (navigating to a
8052         child relation and back, using a stack).  Also, remove
8053         GetDataSource and the code that calls it - it's not needed.  Also,
8054         track CurrencyManager.ListName's removal.
8055
8056 2006-06-21  Chris Toshok  <toshok@ximian.com>
8057
8058         * CurrencyManager.cs: push some of the original type checking from
8059         BindingContext.CreateBindingManager to here, and remove some of
8060         the finalType stuff.  Need more tests to make sure I've got the
8061         ListName part right, and we might need more in SetDataSource.
8062
8063         * PropertyManager.cs: add a ctor that takes just the datasource,
8064         and no property name.  Make SetDataSource work with a null
8065         property_name, and make Current return the data_source if the
8066         property descriptor is null.  this makes 'string foo = "hi";
8067         BindingContext[foo].Current' return "hi" as it should.
8068
8069         * RelatedCurrencyManager.cs: make this code more generic - there's
8070         no reason the parent manager has to be CurrencyManager, and
8071         there's no reason to pass the DataRelation.  It suffices to use a
8072         BindingManagerBase and PropetyDescriptor.
8073
8074         * RelatedPropertyManager.cs: make a similar change here.
8075         
8076         * BindingContext.cs: make CreateBindingManager the beautiful, tiny
8077         flower I knew it could be.
8078
8079 2006-06-20  Chris Toshok  <toshok@ximian.com>
8080
8081         * PropertyManager.cs: the PropertyChangedHandler is invoked when
8082         data in the source has changed and we need to update the control,
8083         so s/PullData/PushData.
8084
8085         * CurrencyManager.cs: Refresh is meant to update the control from
8086         data in the datasource.  So, s/PullData/PushData.
8087
8088         * BindingContext.cs: add more ugliness (we weren't handling the
8089         case where data_source = DataTable and data_member = column_name).
8090
8091         * Binding.cs: fix PushData/PullData mixup.  Both are interpreted
8092         from the perspective of the datasource.  PullData pulls from the
8093         control, PushData pushes to the control.
8094
8095 2006-06-20  Chris Toshok  <toshok@ximian.com>
8096
8097         * BindingContext.cs: rewrite the CreateBindingManager code to
8098         handle navigation paths more or less properly.  This could
8099         definitely stand some more work, in particular to push the
8100         recursion up to the toplevel.  But that relies on fixes in other
8101         places (System.Data comes to mind).
8102
8103         Also, move to a flat hashtable (and encode the twolevel nature of
8104         the dictionary into the hash key).  This lets us implement the
8105         IEnumerable.GetEnumerator method.
8106
8107         * RelatedCurrencyManager.cs: new class.  Update our view based on
8108         our relation and our parent CurrencyManager's position.
8109
8110         * CurrencyManager.cs: split out some logic from the ctor into
8111         SetView, so it can be called from the new RelatedCurrencyManager
8112         subclass.
8113
8114         * RelatedPropertyManager.cs: new class.  Update our datasource
8115         based on the position of our parent CurrencyManager.
8116
8117         * PropertyManager.cs: split out some logic from the ctor into
8118         SetDataSource, so it can be called from the new RelatedDataSource
8119         subclass.  Also, make the Current getter return the value
8120         of the PropertyDescriptor, not the data_source.
8121
8122         * Binding.cs: no need to duplicate the string splitting code here.
8123
8124 2006-06-19  Peter Dennis Bartok  <pbartok@novell.com> 
8125
8126         * Control.cs:
8127           - set_Enabled: OnEnabledChanged is not called if the inherited state 
8128             of the control is not altered, even though  we might be changing the
8129             internal state of the control (#78458)
8130           - set_Enabled: (Re)Moved the enabling/disabling of the window to 
8131             OnEnabledChanged, to allow easy altering of any child window state
8132           - OnEnabledChanged: Added code to enable/disable driver window state
8133           - OnParentEnabledChanged: Instead of firing the event, call 
8134             OnEnabledChanged, which will fire the event and also a) set driver
8135             window state and pass the enabled state to any grandchildren (#78458)
8136
8137 2006-06-19  Jackson Harper  <jackson@ximian.com>
8138
8139         * InternalWindowManager.cs: We don't set the cursor explicitly
8140         thats done via the response to NCHITTESTs.
8141         - Don't need to adjust for titlebar heights anymore, the
8142         coordinates are coming in the correct coordinates now (see peters
8143         last patch).
8144
8145
8146 2006-06-19  Peter Dennis Bartok  <pbartok@novell.com> 
8147
8148         * XplatUIX11.cs (GetMessage): WM_NCxBUTTONx messages were wrongly
8149           being translated relative to whole window, instead of client window.
8150           That caused broken offsets on mouseclick (and caused gas for our
8151           InternalWindowManager)
8152
8153 2006-06-15  Peter Dennis Bartok  <pbartok@novell.com> 
8154
8155         * TextControl.cs:
8156           - MoveCaret: Implemented PgUp, PgDown, CtrlPgUp and CtrlPgDown
8157           - Undo(): Added replay of cursor move on DeleteChars action; added
8158             calling Undo() again if a recorded cursor move is invalid (to
8159             ensure that some action is performed on Undo)
8160         * TextBoxBase.cs (ProcessKey): Added handling of PgUp and PgDown (#78482)
8161
8162 2006-06-16  Jackson Harper  <jackson@ximian.com>
8163
8164         * MdiClient.cs: Instead of just sizing maximized windows when
8165         there is a resize we also have to adjust the Y of minimized
8166         windows, so they stay pinned to the bottom of the mdi container.
8167         - Eliminate separate tracking of the active control, we can just
8168         get this from the controls collection.
8169         - Paint the decorations for the newly activated titlebar so we get
8170         a pretty blue bar.
8171         * InternalWindowManager.cs:
8172         * ThemeWin32Classic.cs: Minimized windows get all three buttons
8173         even if they are a tool window.
8174         
8175 2006-06-15  Peter Dennis Bartok  <pbartok@novell.com> 
8176
8177         * TextControl.cs (Undo): Handle non-existent cursor locations in the
8178           undo buffer, these can happen when text was deleted and the cursor
8179           was recorded first. Since we will also have a recorded cursor
8180           after the delete this is not an issue. (Fixes #78651)
8181
8182 2006-06-14  Peter Dennis Bartok  <pbartok@novell.com> 
8183
8184         * AccessibleObject.cs: Remove dependence on Control.is_selected;
8185           instead properly track control states internally (allows us to
8186           remove is_selected from Control)
8187
8188 2006-06-14 Gonzalo Paniagua Javier <gonzalo@ximian.com>
8189
8190         * ImageListStreamer.cs: correctly generate the 1bpp mask for images
8191         whose width is not a multiple of 8.
8192
8193 2006-06-13  Jackson Harper  <jackson@ximian.com>
8194
8195         * MdiClient.cs:  Only maximize the next child if the current one
8196         is maximized.
8197
8198 2006-06-13  Chris Toshok  <toshok@ximian.com>
8199
8200         * DataGridColumnStyle.cs: Invalidate the column when HeaderText is
8201         modified.  Also, guard against grid or grid_drawing being null in
8202         Invalidate.
8203
8204         * DataGrid.cs: Reformat tons of getters/setters.  In the
8205         DataMember setter, just call SetNewDataSource instead of
8206         duplicating some of its functionality.  In SetNewDataSource, don't
8207         check ListManager for null, since the property getter creates the
8208         object if needed.
8209
8210         * DataGridTableStyle.cs: don't set TableStyle or call
8211         SetDataGridInternal on the column here, it's done in
8212         GridColumnStylesCollection.Add.
8213
8214         * GridColumnStylesCollection.cs: fix all the explicit interface
8215         implementations to just call our methods.  Nuke AddInternal() and
8216         move the body of it to Add().  Also, add a call to
8217         column.SetDataGridInternal to Add().
8218
8219         * DataGridTextBoxColumn.cs (.ctors): call this() instead of
8220         base()+duplicate code.  Also, use the Format property instead of
8221         format to generate an Invalidate ala MS.  Lastly, create the
8222         textbox here, unconditionally.
8223         (set_Format): call Invalidate.
8224         (get_TextBox): no need to call EnsureTextBox.
8225         (Commit): remove the message box.
8226         (Edit) remove the call to EnsureTextBox.
8227         (EndEdit): call HideEditBox instead of ReleaseHostedControl.
8228         (EnterNullValue): no need to check textbox for null.
8229         (HideEditBox): no need to check textbox for null.
8230         (SetDataGridInColumn): add the textbox to the grid's controls.
8231         (EnsureTextBox): nuke.
8232         
8233 2006-06-13  Jackson Harper  <jackson@ximian.com>
8234
8235         * MdiWindowManager.cs: Hook up to the maximized menus paint event
8236         and redraw the buttons when needed. Unhook when the window is
8237         unmaximized.
8238         * MainMenu.cs: Add an internal Paint event, the mdi window manager
8239         needs this so that it can redraw its buttons when the menu is
8240         repainted.
8241         * InternalWindowManager.cs:
8242         * Form.cs: The method order has changed for DrawMaximizedButtons,
8243         so that it can be a PaintEventHandler.
8244         
8245 2006-06-13  Jackson Harper  <jackson@ximian.com>
8246
8247         * MdiClient.cs: When we close a maximized mdi window, the next mdi
8248         window is activated and maximized, even if it wasn't before.
8249         - When  a new window is activated repaint the decorations of the
8250         old one, so that it no longer has the Active "look" (the blue
8251         titlebar).
8252         * InternalWindowManager.cs: Open up CreateButtons to base classes
8253         so they can recreate the buttons on state changes.
8254         - If a window is maximized give it all three buttons
8255         * MdiWindowManager.cs: Create the titlebar buttons when the state
8256         is changed, this is needed because a toolwindow will not have all
8257         three buttons until it is maximized.
8258
8259 2006-06-13  Atsushi Enomoto  <atsushi@ximian.com>
8260
8261         * ProgressBar.cs : PerformStep() shouldn't exceed Maximum.
8262           Fixed bug #78609.
8263
8264 2006-06-12  Jackson Harper  <jackson@ximian.com>
8265
8266         * KeysConverter.cs: Make sure we handle the Ctrl special case
8267         if its the only key.
8268         
8269 2006-06-12  Jackson Harper  <jackson@ximian.com>
8270
8271         * Theme.cs: Add a method to get the size of a managed window
8272         toolbar button.
8273         * InternalWindowManager.cs: Remove the ButtonSize property, this
8274         should be retrieved from the theme.
8275         * MdiWindowManager.cs: Get the button size from the theme
8276         * ThemeWin32Classic.cs: Make the method to get the managed window
8277         titlebar button size public.
8278         - Handle the different button sizes of maximized toolwindows
8279         (should match any maximized window).
8280         - Get the titlebar height from the theme, not the WM (which gets
8281         it from the theme).
8282
8283 2006-06-12  Jackson Harper  <jackson@ximian.com>
8284
8285         * InternalWindowManager.cs: Handle NC Double Clicks, passing the
8286         event down to the mdi window manager.
8287         - Expose some extra stuff to base classes
8288         - Make sure to end the Capture on an NC Mouse up, so that we can
8289         get double clicks properly, and the sizing doens't stick.
8290         - When doing PointToClient contain it in the workable desktop
8291         area, this prevents windows from changing size when the cursor is
8292         pulled outside of the working area while sizing.
8293         * MdiWindowManager.cs: When we get a double click maximize the
8294         window.
8295         - Reset the cursor after handling mode changes.
8296
8297 2006-06-12  Peter Dennis Bartok  <pbartok@novell.com> 
8298
8299         * XplatUIX11.cs (WorkingArea): Read the actual workarea for the 
8300           current desktop, instead of just assuming a 0, 0 origin. This
8301           is needed for our internal window manager, to know the top
8302           margin of the desktop
8303
8304 2006-06-12  Chris Toshok  <toshok@ximian.com>
8305
8306         * DataGrid.cs (set_CurrentCell): concede focus as we move around.
8307         we need this to get rid of the selected background in the bool
8308         column.
8309         (CancelEditing): move the ConcedeFocus call to above the Abort
8310         call.  Also, set is_changing to false and invalidate the row
8311         header if we were changing before.
8312         (ProcessKeyPreviewInternal): remove, since noone outside this
8313         class calls it anymore.  Roll the code into ProcessKeyPreview.
8314         (EndEdit): remove the internal version.
8315         (InvalidateCurrentRowHeader): make private.
8316
8317         * DataGridBoolColumn.cs: simplify this class a bunch.  remove the
8318         Keys.Escape handling (and with it the last call to
8319         DataGrid.EndEdit from outside the class.)
8320
8321
8322 2006-06-12  Chris Toshok  <toshok@ximian.com>
8323
8324         * DataGridTextBox.cs (.ctor): isedit defaults to false.
8325         (OnKeyPress): set isedit to true.
8326         (ProcessKeyMessage): remove Keys.Enter handling from here.  it's
8327         already handled by the grid.
8328
8329         * DataGrid.cs (set_CurrentCell): more work here.  it's still not
8330         right.  ugh.
8331         (set_DataSource): SetDataSource always returns true, so stop
8332         putting it in an if statement.
8333         (EndEdit): get rid of some {}'s
8334         (ProcessGridKey): return true in case Keys.Escape.
8335         (ProcessKeyPreviewInternal): only handle KEYDOWN messages.
8336         (ConnectListManagerEvents,DisconnectListManagerEvents): connect to
8337         PositionChanged, stopped connecting to CurrentChanged.
8338         (GetDataSource): simplify this a bunch.
8339         (SetDataSource): change return type from bool to void.
8340         (OnListManagerPositionChanged): rename OnListManagerCurrentChanged
8341         to this, and make sure we don't set ListManager.Position inside
8342         set_CurrentCell.
8343         (OnListManagerItemChanged): if we're passed an actual index,
8344         redraw that row.
8345
8346         * CurrencyManager.cs (set_Position): don't call PullData here.
8347
8348 2006-06-09  Jackson Harper  <jackson@ximian.com>
8349
8350         * TreeNode.cs:  Recalculate the visible order before doing the
8351         Expand/Collapse Below calls, because those calls generate an
8352         expose.
8353         - Reduce calls to the TreeView property, which is mildly expensive
8354         by using a local var.
8355         * Form.cs: Layout the MDI child windows when creating the parent
8356         form.
8357         - Don't use the internal constructor anymore
8358         * MdiClient.cs: use the parent form width/height (if available)
8359         when laying out the child windows, we do this because the
8360         mdiclient isn't docked yet when the initial layout is done.
8361         - Don't need an internal constructor anymore.
8362
8363 2006-06-08 Gonzalo Paniagua Javier <gonzalo@ximian.com>
8364
8365         * FileDialog.cs: handle access errors when trying to create a folder
8366         or changing to a directory. No need to initialize out parameters.
8367
8368 2006-06-08  Alexander Olk  <alex.olk@googlemail.com>
8369
8370         * FileDialog.cs: Append a number when creating a new folder if the
8371           folder already exists (use parenthesis instead of square brackets)
8372
8373 2006-06-08  Alexander Olk  <alex.olk@googlemail.com>
8374
8375         * FileDialog.cs:
8376           - Disabled registry support for windows and added better registry
8377             error checking for other systems (need to investigate why it
8378             works perfectly on my system)
8379           - If a folder already exist show an error MessageBox instead of
8380             trying to create an indexed name.
8381           - Fixed a non intentional typo.
8382
8383 2006-06-08 Gonzalo Paniagua Javier <gonzalo@ximian.com>
8384
8385         * FileDialog.cs: (SetFileName) don't crash if CurrentRealFolder is null.
8386
8387 2006-06-08  Alexander Olk  <alex.olk@googlemail.com>
8388
8389         * FileDialog.cs: When creating a new folder don't crash if the
8390           folder already exists.
8391
8392 2006-06-08  Alexander Olk  <alex.olk@googlemail.com>
8393
8394         * FileDialog.cs: Allmost a complete rewrite.
8395           - added a "virtual" file system that handles the differences
8396             between unix and windows file systems (especially the directory
8397             structure). Moved most of the directory and file handling code
8398             into the vfs.
8399             Added vfs classes: MWFVFS, FileSystem, WinFileSystem,
8400             UnixFileSystem and FSEntry.
8401           - Recently used folder/directory, size, location and used file names
8402             (file name ComboBox) are now stored in the registry and get read
8403             before the dialog shows up (fixes part 6 of bug #78446).
8404           - Creation of new folders/directories is now possible (context menu
8405             or ToolBar). Added TextEntryDialog for this that fills in the gap
8406             until ListView.LabelEdit works.
8407           - Fixed cursor handling (bug #78527) and focus handling for
8408             PopupButtonPanel
8409           - Various "Search in" ComboBox enhancements. The content of the
8410             dropdown listbox now almost matches ms.
8411           - Changed the behaviour when the user switches to SpecialFolder
8412             Recent to show the ListView in View.Details.
8413           - Beside using the ToolBar to change the View property of the
8414             file ListView it is now possible to use the context menu too.
8415
8416 2006-06-08  Alexander Olk  <alex.olk@googlemail.com>
8417
8418         * ComboBox.cs: Don't create a new ObjectCollection when an item
8419           gets inserted. Just insert the item in the existing object_items
8420           ArrayList.
8421
8422 2006-06-08  Jackson Harper  <jackson@ximian.com>
8423
8424         * OpenTreeNodeEnumerator.cs: Fix to use the Parent property, so
8425         that the treeview and root node checks are done also, this fixes a
8426         regression i caused in the unit tests.
8427
8428 2006-06-07  Wade Berrier <wberrier@novell.com> 
8429
8430         * RichTextBox.cs: More ISO8859-1 -> unicode
8431
8432 2006-06-07  Mike Kestner  <mkestner@novell.com>
8433
8434         * ComboBox.cs : use items to hold highlight/selection so that
8435         collection insertions don't require synchronization.
8436
8437 2006-06-07  Jackson Harper  <jackson@ximian.com>
8438
8439         * InternalWindowManager.cs: Simplify (and FIX) the window sizing
8440         routine.  We now always keep the sized edge at the cursor instead
8441         of computing movement and adjusting rects.  There is one buglet
8442         with this method though when the cursor is moved over area that
8443         the window can not expand too (such as the toolbars on the desktop).
8444
8445 2006-06-07 Gonzalo Paniagua Javier <gonzalo@ximian.com>
8446
8447         * XplatUIX11.cs: (IsEnabled,IsVisible) the window handler can be null
8448         here. Fixes crash on startup in AlbumSurfer.
8449
8450 2006-06-07  Peter Dennis Bartok  <pbartok@novell.com> 
8451
8452         * RichTextBox.cs: Replaced embedded ISO8859-1 chars with proper unicode
8453           values
8454
8455 2006-06-07 Gonzalo Paniagua Javier <gonzalo@ximian.com>
8456
8457         * XplatUIX11.cs: call XPending and XNextEvent inside the same lock()
8458         statement to avoid calling XNextEvent which will block if another thread
8459         took the event that we were expecting. Fixes bug #78605.
8460
8461 2006-06-07  Mike Kestner  <mkestner@novell.com>
8462
8463         * ListView.cs : isolated checkbox clicking from the selection logic.
8464         Toggle check state on item doubleclicks.  Really fixes #78454 part2.
8465
8466 2006-06-06  Carlos Alberto Cortez <calberto.cortez@gmail.com>
8467
8468         * Form.cs: Check that the value passed to Form.DialogResult
8469         is a valid enum value.
8470
8471 2006-06-06 Gonzalo Paniagua Javier <gonzalo@ximian.com>
8472
8473         * FileDialog.cs: disable the up button when in 'Recently Used' or 'My
8474         Computer'. Clicking it in the network view goes to 'My Computer'.
8475         Added CIFS filesystem type. Display the mount point of filesystems.
8476         Avoid duplicate mount points (happens for me with CIFS);
8477
8478 2006-06-06  Jackson Harper  <jackson@ximian.com>
8479
8480         * InternalWindowManager.cs: Draw the maximized windows buttons
8481         when resizing.
8482
8483 2006-06-06 Gonzalo Paniagua Javier <gonzalo@ximian.com>
8484
8485         * Form.cs: when running a modal dialog, ignore WM_CLOSE requests for
8486         all other dialogs. Fixes bug #78585.
8487
8488 2006-06-06  Mike Kestner  <mkestner@novell.com>
8489
8490         * CheckedListBox.cs : apply CheckOnClick behavior to unchecking too.
8491         Only invalidate checkbox on checkstate changes to avoid flicker.
8492         * ListBox.cs : avoid unselect/select when clicking selected item.
8493         avoid reselection flicker for already multiselected items.
8494         Fixes #78382.
8495
8496 2006-06-06  Jackson Harper  <jackson@ximian.com>
8497
8498         * MdiWindowManager.cs: When the window is closed do an NCRecalc on
8499         the parent form so that the menu is removed if needed.
8500
8501 2006-06-06  Mike Kestner  <mkestner@novell.com>
8502
8503         * ListBox.cs : add ScrollWindow call to UpdateTopItem.  fix
8504         Prev/Next/PrevPage/NextPage/Home/End index calculation.  Fixes #78559.
8505
8506 2006-06-06  Mike Kestner  <mkestner@novell.com>
8507
8508         * CheckedListBox.cs : rebuild check collection on Add.  Fixes #78426.
8509
8510
8511 2006-06-06  Jackson Harper  <jackson@ximian.com>
8512
8513         * Control.cs: Use the property (instead of the field) to get the
8514         default cursor so it is instantiated correctly.
8515         * InternalWindowManager.cs: The OS doesn't give us an NCPAINT with
8516         resizes so we need to manually repaint the window decorations here.
8517         - Set the titlebar button locations as soon as they are created,
8518         otherwise they are not set correctly on win32.
8519         
8520 2006-06-06  Chris Toshok  <toshok@ximian.com>
8521
8522         * CurrencyManager.cs (set_Position): call PullData before
8523         OnCurrentChanged.
8524         (AddNew): after calling IBindingList.AddNew, update our
8525         listposition, and call OnCurrentChanged/OnPositionChanged (without
8526         calling PullData).
8527         (OnCurrentChanged): remove the call to PullData from here.
8528         (OnItemChanged): remove the call to PushData from here.
8529         (OnPositionChanged): change the test from == null to != null to
8530         match the other methods.
8531         (ListChangedHandler): the grossest part of the patch.  Implement
8532         this such that it passes the unit tests in CurrencyManagerTest and
8533         the output more or less matches that of MS's implementation.
8534  
8535 2006-06-06  Mike Kestner  <mkestner@novell.com>
8536
8537         * ListView.cs : only update check state on single click.
8538         * ThemeWin32Classic.cs : fix focus drawing for details view without
8539         fullrowselect.  Fixes #78454.
8540         * XplatUIX11.cs : fix for double click emission.
8541
8542 2006-06-05  Jonathan Chambers  <jonathan.chambers@ansys.com>
8543
8544         * PropertyGridView.cs : Applied Atsushi's patch to fix
8545         font dialog bug  (#78197).
8546
8547 2006-06-05  Jackson Harper  <jackson@ximian.com>
8548
8549         * TreeNode.cs: Compute the next node for expanding/collapsing
8550         correctly. We now factor in nodes without a NextNode
8551         correctly. (Fixes somes cases in nunit-gui).
8552         * InternalWindowManager.cs: Set the bounds when updating the
8553         virtual position of a tool window.
8554         
8555 2006-06-05  Chris Toshok  <toshok@ximian.com>
8556
8557         * DataGrid.cs: rename cached_currencymgr to list_manager.
8558         (set_CurrentCell): move SetCurrentCell code here, and clean it up
8559         some.
8560         (CurrentRow, CurrentColumn): single accessors so we can make the
8561         cursor movement code a lot easier to understand.
8562         (CurrentRowIndex): implement this in terms of CurrentRow.
8563         (BeginEdit): clean this up a bit.
8564         (CancelEditing): sort out the is_editing/is_changing/is_adding
8565         stuff a little.
8566         (EndEdit): minor changes.
8567         (OnKeyDown): add a comment about a (most likely) unnecessary
8568         check.
8569         (OnMouseDown): cancel editing when we click on a row header.  And
8570         use the CurrentRow setter, not CurrentCell.
8571         (ProcessDialogKey): directly call ProcessGridKey.
8572         (UpdateSelectionAfterCursorMove): factor out this common block of
8573         code (it's used everywhere that we move the cursor by updating row
8574         or column).
8575         (ProcessGridKey): pretty substantial overhaul.  Use the
8576         CurrentRow/CurrentColumn properties to make the code a lot more
8577         readable.  Only use the CurrentCell property when we have to
8578         modify both row and column at once.  Tab behavior is still broken,
8579         and Delete is untested.
8580         (Select): if we have no selected rows, set selection_start to
8581         @row.
8582         (EditCurrentCell): rename EditCell this.  It was only ever invoked
8583         with CurrentCell as the arg, so drop the arg and rename it.
8584
8585         * DataGridColumnStyle.cs: clean up the constructors a little, and
8586         drop CommonConstructor().
8587
8588         * DataGridTextBox.cs (.ctor): set accepts_return to true so we
8589         actually get notified when the user hits it.
8590         (ProcessKeyMessage): *substantially* simplify this method.
8591         There's no reason (that I can see) for the textbox to be making
8592         calls into the datagrid at all.  Remove all of them but the ones
8593         for Enter handling.  those will take some more work.
8594
8595         * DataGridTextBoxColumn.cs (ConcedeFocus): implement this by
8596         calling HideEditBox.
8597         (HideEditBox): if we have an active textbox, render it invisible
8598         without causing a re-layout of the datagrid.
8599
8600 2006-06-05  Mike Kestner  <mkestner@novell.com>
8601
8602         * ListView.cs : fix NRE crasher when focuseditem is cleared by
8603         collection changes by resetting it to Items[0].  Fixes #78587.
8604
8605 2006-06-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
8606
8607         * MessageBox.cs: if the height of the text is larger than the icon_size,
8608         use that. Fixes bug #78575.
8609
8610 2006-06-05  Jackson Harper  <jackson@ximian.com>
8611
8612         * TreeView.cs: Fix line drawing when scrolling.  To do this each
8613         node is basically responsible for drawing its entire horizontal
8614         area.  When drawing a node it draws its parent node lines if
8615         needed.
8616         - Adjust the clip area to the viewport rectangle
8617         - Fix Left/Right key handling to match MS. (It expand/collapses
8618         and moves to parents/first child but does not move selection to
8619         sibling nodes).
8620         - Fix SetTop to work with new bound calculation code
8621         - When scrollbars are no longer needed we need to reset scrolling
8622         vars and recalculate the visible order so the redraw is correct
8623         * TreeNode.cs: We can't expand/collapse nodes with no children.
8624
8625 2006-06-03  John Luke  <john.luke@gmail.com> 
8626
8627         * X11DesktopColors.cs: dllimport the exact gtk and gdk versions
8628         so the colors work without dev packages
8629         
8630 2006-06-02  Peter Dennis Bartok  <pbartok@novell.com> 
8631
8632         * Control.cs 
8633           - Select: Implemented to just use activate. Seems to match MS 
8634             behaviour closest. Documented to only do actual control walking 
8635             based on it's parameters if in a container control so I moved 
8636             the code there.
8637           - Removed selection check logic from our internal Select() method
8638         * ContainerControl.cs:
8639           - Select: Moved selection logic from Control here, since MS documents
8640             that containers obey the bool arguments. No longer calling base
8641
8642 2006-06-02  Jackson Harper  <jackson@ximian.com>
8643
8644         * TreeView.cs: If the selected node isn't changed when we get
8645         focus update the previously selected node so that we see the
8646         selection box.
8647
8648 2006-06-02  Mike Kestner  <mkestner@novell.com>
8649
8650         * ComboBox.cs: restructure grab and general mouse event handling.
8651         Make the composite control raise mouse events like it was a single
8652         control for leaves/enters/motion/up/down events.  fix dropdown list
8653         coordinate mangling and refactor it into the scrollbar subclass to
8654         reduce code duplication.  Fixes #78282 #78361 and #78457.
8655
8656 2006-06-02  Mike Kestner  <mkestner@novell.com>
8657
8658         * ScrollBar.cs: remove Capture setting/clearing, as it happens
8659         automatically in the Control.WndProc.
8660
8661 2006-06-01 Gonzalo Paniagua Javier <gonzalo@ximian.com>
8662
8663         * FileDialog.cs: fix crash when running SharpChess, which sets the
8664         FilterIndex to 2 with only one Filter.
8665
8666 2006-06-01 Gonzalo Paniagua Javier <gonzalo@ximian.com>
8667
8668         * ToolBar.cs: add SizeSpecified property.
8669         * ToolBarButton.cs: when the ButtonSize is calculated by the container,
8670         try to figure out our real size, otherwise fallback to what the
8671         container says.
8672
8673 2006-06-01  Peter Dennis Bartok  <pbartok@novell.com> 
8674
8675         * XplatUIX11.cs (DefWndProc): WM_MOUSEWHEEL needs to be passed up
8676         * Control.cs (WndProc): MS always calls the DefWndProc to pass
8677           up the event
8678
8679 2006-06-01  Mike Kestner  <mkestner@novell.com>
8680
8681         * ListView.cs: revamp the focus management in ListView.  It still
8682         causes churn of LostFocus/GotFocus emissions on clicks, but it's
8683         better than not handling focus at all.  Will revisit when pdb feels
8684         the general focus handling is solid.  Fixes #78526.
8685
8686 2006-06-01  Jackson Harper  <jackson@ximian.com>
8687
8688         * TreeView.cs: Set the default border style in the constructor.
8689         - Move painting to use OnPaintInternal instead of capturing
8690         WM_PAINT, this is the correct way of doing things
8691         - UpdateBelow shouldn't invalidate the scrollbar area
8692         - Cap the top on update below in case the node was above the top
8693         of the viewport rectangle.
8694         - ExpandBelow and Collapse below need to obey Begin/End Update.
8695         * TreeNode.cs: Make is_expanded internal so the treenode
8696         collection can change it without firing the whole event chain.
8697         * TreeNodeCollection.cs: When clearing all the child nodes make
8698         sure to recalc the visible order.
8699         - Improve algo for remove the top node
8700
8701 2006-06-01  Peter Dennis Bartok  <pbartok@novell.com> 
8702
8703         * XplatUIX11.cs (SetFocus): Make sure we can handle re-entrancy due to
8704           SendMessage directly calling window procedures, which in turn might
8705           call SetFocus()
8706
8707 2006-06-01  Peter Dennis Bartok  <pbartok@novell.com>
8708
8709         * Control.cs: Don't handle WM_SETFOCUS if the same window already
8710           has focus (works around X11 sending a FocusIn after our SetFocus)
8711         * XplatUIX11.cs: Send KILLFOCUS before setting SETFOCUS on new window
8712
8713 2006-06-01  Alexander Olk  <alex.olk@googlemail.com>
8714
8715         * Mime.cs: Fix for the NET_2_0 build.
8716           NameValueCollection needs StringComparer now.
8717
8718 2006-05-31  Chris Toshok  <toshok@ximian.com>
8719
8720         * DataGridDrawingLogic.cs (FromPixelToColumn): modify this to also
8721         return (via an out parameter) the starting X of the column.
8722         (UpdateVisibleColumn): track change to FromPixelToColumn.
8723         (HitTest): add a ColumnResize case here.
8724         (DrawResizeLine): new function, probably poorly named.
8725
8726         * DataGrid.cs (.ctor): get rid of cached_currencymgr_events.  We
8727         only need to keep one reference.
8728         (set_ListManager): same.
8729         (OnMouseDown): call HitTest instead of grid_drawing.HitTest.
8730         Also, add support for HitTestType.ColumnResize.
8731         (OnMouseMove): add column resize behavior here, and change the
8732         cursor to the correct one as we move around the datagrid.
8733         (OnMouseUp): terminate the column resize if we're resizing.
8734         (ProcessGridKey): from the MS docs, Alt-0 enters the null value
8735         for the current cell.
8736         (ConnectListManagerEvents): use cached_currencymgr.
8737         (DisconnectListManagerEvents): fill this in, using
8738         cached_currencymgr.
8739         (SetCurrentCell): remove cached_currencymgr_events handling.
8740         (SetDataMember): only call DisconnectListManagerEvents if
8741         cached_currencymgr is != null.
8742         (SetDataSource): same.
8743         (OnListManagerCurrentChanged): cached_currencymgr_events ->
8744         cached_currencymgr.
8745
8746 2006-05-31  Jackson Harper  <jackson@ximian.com>
8747
8748         * BindingManagerBase.cs: Remove somedebug code that creeped into
8749         SVN.
8750         * TreeNode.cs: We get the indent level dynamically right now, so
8751         don't track it as a member.
8752         * TreeNodeCollection.cs: Make sure all nodes added to the list
8753         have parents, treeviews/topnodes setup properly.
8754         - Don't attempt to track indent level.
8755
8756 2006-05-30  Jackson Harper  <jackson@ximian.com>
8757
8758         * BindingContext.cs: Create the currency manager tables here.
8759         This allows us to more easily create null tables (when bad data
8760         members are used), and more easily create related currency
8761         managers.
8762         * CurrencyManager.cs: All the table creation stuff is done by the
8763         binding context now.
8764         - Current should throw an exception if listposition is -1.
8765         - CancelCurrentEdit/EndCurrentEdit, do nothing if the list hasn't
8766         been bound yet.
8767
8768 2006-05-30  Mike Kestner  <mkestner@novell.com>
8769
8770         * ListView.cs: allow reexpansion of zero-width column headers.
8771         Fixes #78528.
8772
8773 2006-05-28  Chris Toshok  <toshok@ximian.com>
8774
8775         * CurrencyManager.cs (get_Current): after the late binding
8776         listposition = -1 fix, we need to guard against it here and return
8777         null, otherwise we raise an exception (which is swallowed
8778         elsewhere, and breaks datagrid databinding.)
8779
8780 2006-05-26  Peter Dennis Bartok  <pbartok@novell.com>
8781
8782         * MenuAPI.cs (ProcessMenuKey): We can legally get msg types other
8783           than WM_SYSKEY, don't throw if get something unexpected (#78507)
8784
8785 2006-05-26  Jackson Harper  <jackson@ximian.com>
8786
8787         * ControlPaint.cs:
8788         * ThemeWin32Classic.cs: For color comparisons just use the ARGB
8789         values, it's faster and it's all we care about (we don't care if
8790         the names aren't equal).
8791         * KeyboardLayouts.cs: Eliminate some dead code.
8792         - Lazy init things
8793         * X11Keyboard.cs: Lazy init keyboard detection.
8794         - Cleanup access modifiers a little.
8795
8796 2006-05-26  Peter Dennis Bartok  <pbartok@novell.com>
8797
8798         * XplatUIX11.cs: Once again, attempting to get layout just right.
8799
8800 2006-05-26  Peter Dennis Bartok  <pbartok@novell.com> 
8801
8802         * LinkLabel.cs (CreateLinkPieces): Use MeasureString to calculate
8803           the sizes of each link section, that will result in sizes that
8804           match DrawString's layout (Fixes #78391)
8805
8806 2006-05-27  Alexander Olk  <alex.olk@googlemail.com>
8807
8808         * FileDialog.cs: If AddExtension property is true autocomplete the
8809           extensions in SaveFileDialog correctly. Fixes bug #78453.
8810           Set MyNetwork and MyComputer to "C:\" for windows. This should
8811           fix part 8 of bug #78446 for now.
8812
8813 2006-05-26  Chris Toshok  <toshok@ximian.com>
8814
8815         * DataGrid.cs (ColumnStartedEditing): fill these in.  for now just
8816         invalidate the current row header if we need to, but presumably
8817         we'll invalidate the row corrsponding to the bounds or
8818         editingControl.
8819         (GridHScrolled): switch back to this method, as it's part of the
8820         public api.  *sigh*.
8821         (GridVScrolled): same.
8822         (OnMouseWheel): hack up something that more or less works.  Call
8823         GridHScrolled/GridVScrolled directly, instead of duplicating much
8824         of their code here.
8825         (EnsureCellVisibility): reinstate a bunch of this code, since we
8826         can't just set the scrollbar Value and expect to do all the work
8827         in the ValueChanged handler.  Also, Call Update() after scrolling
8828         in one direction so the other XplatX11.ScrollWindow call has the
8829         proper stuff in the proper places.
8830         (EditCell): set is_editing to true before calling .Edit.
8831
8832         * DataGridTextBox.cs (set_IsInEditOrNavigateMode): just set it,
8833         don't bother comparing first.
8834         (OnKeyPress): call grid.ColumnStartedEditing before calling
8835         base.OnKeyPress.  this will set is_changing and invalidate the row
8836         header if necessary.
8837         (ProcessKeyMessage): for WM_CHAR messages, call
8838         ProcessKeyEventArgs directly.  swallow anything other than WM_CHAR
8839         and WM_KEYDOWN.
8840         
8841         * DataGridBoolColumn.cs (Edit): don't set is_editing to true here.
8842         it's done in the DataGrid.
8843         (NextState): call grid.ColumnStartedEditing, which takes care of
8844         invalidating the row header (and setting is_changing).
8845
8846         * DataGridTextBoxColumn.cs (Edit): don't set is_editing to true
8847         here.  it's done in the DataGrid.
8848
8849 2006-05-25 Gonzalo Paniagua Javier <gonzalo@ximian.com>
8850
8851         * Control.cs: allow changing the cursor when the mouse position is
8852         out of bounds but Capture is set.
8853         * LinkLabel.cs: handle the case when the mouse button is pressed on the
8854         linklabel but released somewhere else.
8855
8856 2006-05-25  Jackson Harper  <jackson@ximian.com>
8857
8858         * TreeView.cs: When we get focus if there is no selected node make
8859         it the top node
8860         - Remove some uneeded setup code from Draw.
8861         * TreeNodeCollection.cs: If the tree doesn't have a top node when
8862         a new node is inserted make the new node the top.
8863         * XplatUIX11.cs:
8864         * Timer.cs: Use Utc time so that no local time zone stuff needs to
8865         be used (should be faster).
8866         
8867 2006-05-25  Chris Toshok  <toshok@ximian.com>
8868
8869         * DataGrid.cs (EnsureCellVisibility): remove some code to fix a
8870         problem with the last commit.
8871
8872 2006-05-25  Chris Toshok  <toshok@ximian.com>
8873
8874         * DataGridTextBoxColumn.cs (ReleaseHostedControl): turns out we do
8875         need the invalidate call here, while scrolling right-to-left via
8876         the left arrow key (i.e. moving the editing cell while scrolling).
8877
8878         * DataGrid.cs (.ctor): remove the initialization of
8879         ctrl_pressed/shift_pressed.  We no longer track them using key
8880         up/down handlers, but by using Control.ModifierKeys.  Also, switch
8881         to using ValueChanged handlers on the scrollbars instead of
8882         Scrolled event handlers.  This simplifies a bunch of the scrolling
8883         code.
8884         (GridHValueChanged): rename from GridHScrolled, and change it to
8885         work with the new event args.
8886         (GridVValueChanged): same.
8887         (OnMouseDown): initialize ctrl_pressed/shift_pressed here.
8888         (OnMouseWheel): actually scroll the datagrid.  Don't change the
8889         selected cell.
8890         (ProcessGridKey): correct all the keyboard navigation stuff I
8891         could find.  Ctrl up/down/left/right/home/end work now.
8892         (EnsureCellVisibility): correct method name spelling.  Also,
8893         simplify this a touch by not explicitly calling the
8894         ScrollToRow/ScrollToColumnInPixels methods.  We just set the
8895         scrollbar value.
8896         (OnKeyUpDG): no need for this method now.
8897         
8898 2006-05-25 Gonzalo Paniagua Javier <gonzalo@ximian.com>
8899
8900         * LinkLabel.cs: display the OverrideCursor when hovering the label.
8901         Fixes bug #78392.
8902
8903 2006-05-25  Chris Toshok  <toshok@ximian.com>
8904
8905         * ThemeWin32Classic.cs: fix datagrid clipping problems caused by
8906         r61019.
8907
8908 2006-05-25  Peter Dennis Bartok  <pbartok@novell.com> 
8909
8910         * Application.cs: Moved setting of is_modal and closing to before
8911           we create the control, to allow the event handlers called as a
8912           result of creation affect closing. Also removed Gonzalo's previous
8913           change to setting DialogResult, the behaviour has been moved to 
8914           Form.ShowDialog()
8915         * Form.cs: 
8916           - ShowDialog(): Removed explicit creation of the form, let RunLoop
8917             handle it instead
8918           - ShowDialog(): If no dialog result is set, we need to return Cancel
8919           - WM_CLOSE: Fire Closing/Closed events, and reset dialog result if
8920             the close is cancelled
8921
8922 2006-05-25  Jackson Harper  <jackson@ximian.com>
8923
8924         * StatusBar.cs: We only need to update the sizes of the other
8925         panels when we have auto size contents.  Also we are only updating
8926         the contents of the panel, not the borders, so compensate for the
8927         border width (TODO: get this width from the theme somehow).
8928         * TreeView.cs: Scrollable is true by default
8929         - Use invalidate instead of refresh where needed
8930         - Factor the scrollable value into scrollbar updating
8931         - Update the scrollbars if the Scrollable property is altered
8932         - Update the selected node if its ImageIndex is changed
8933         - Handle null nodes in UpdateNode (mainly so we don't have to
8934         check if selected is null when updating it
8935         - Fix VisibleCount to use the ViewportRectangle so that scrollbars
8936         are factored into the visible count
8937         - Use VisibleCount for clarity in the code
8938         - When the font is changed we need to recurse through all the
8939         nodes and invalidate their sizes
8940         
8941 2006-05-25 Gonzalo Paniagua Javier <gonzalo@ximian.com>
8942
8943         * Application.cs: set the DialogResult to fixed when the main form is
8944         hidden or destroyed while being modal.
8945
8946 2006-05-25  Miguel de Icaza  <miguel@novell.com>
8947
8948         * Theme.cs: Use Tangoified messagebox icons. 
8949
8950         (GetSizedResourceImage): Also cope with width = 0 and do not
8951         trigger a warning in that case (0 means "give me your icon from
8952         the resouce, no special size needed).
8953
8954 2006-05-25  Peter Dennis Bartok  <pbartok@novell.com> 
8955
8956         * Application.cs: Leave runloop if the the main modal form is 
8957           hidden (fixes #78484)
8958
8959 2006-05-25  Atsushi Enomoto  <atsushi@ximian.com>
8960
8961         * BindingContext.cs : reject null datasource in Contains() and
8962           Item[].
8963         * CurrencyManager.cs : check data_member validity when data_source
8964           is dataset. When it is late binding, the initial position is -1.
8965
8966 2006-05-24  Jackson Harper  <jackson@ximian.com>
8967
8968         * TreeNodeCollection.cs: Dont't recalculate the visible order on
8969         inserted nodes that aren't visible.  This changes the
8970         max_visible_order which confuses scrollbar settings.
8971         - Use the enumerator to get the prev node instead of duplicating
8972         code.
8973         * TreeView.cs: Use new method for setting scrollbar values
8974         - Don't set the bounds every time the scrollbar is updated
8975         - When updating below the root node use an invalidate instead of a
8976         refresh to prevent the child controls (scrollbars) from being
8977         refreshed. (UpdateBelow still needs to be reworked anyways).
8978         - Reenable SetBottom now that visible orders are set correctly,
8979         added some debug code incase we ever get bad values there again.
8980         - Set the scrollbar max to 2 less then the max value, this
8981         compensates for the max value being one above the node count, and
8982         for scrollbars adding one extra "notch".
8983         - When drawing image nodes if there is an imagelist we draw the
8984         first image in the list if the supplied image index is out of the
8985         image list's bounds.
8986         
8987 2006-05-24  Peter Dennis Bartok  <pbartok@novell.com> 
8988
8989         * XplatUIX11.cs: Don't blindly cache hwnd.ClientRect, reset it when 
8990           we receive a size change from the WM (Fixes #78503)
8991
8992 2006-05-24  Peter Dennis Bartok  <pbartok@novell.com>
8993
8994         * XplatUIWin32.cs, XplatUIX11.cs: Refresh when setting the Clip 
8995           rectangle (Fixes #78501)
8996
8997 2006-05-24  Peter Dennis Bartok  <pbartok@novell.com> 
8998
8999         * ButtonBase.cs: 
9000           - Fixed MouseUp, MouseDown and MouseMove to treat mouseevent.Button 
9001             as a bitfield.
9002           - Fixed MouseMove to no longer switch pressed state unless the left
9003             mouse button is pressed. Atsushi provided the original patch (#78485)
9004           
9005 2006-05-24  Jackson Harper  <jackson@ximian.com>
9006
9007         * ScrollBar.cs: New internal methods that allow us to change a
9008         couple values on the scrollbar (the most common case is maximum
9009         and large change) without getting multiple invalidates.
9010
9011 2006-05-24  Chris Toshok  <toshok@ximian.com>
9012
9013         * DataGridBoolColumn.cs (Abort): revert back to the saved setting.
9014         (Edit): save off the original state in oldState, and set
9015         grid.is_editing to true.
9016         (OnKeyDown): abort editing if escape is pressed.  also, call
9017         NextState if space is pressed.
9018         (OnMouseDown): call NextState.
9019         (NextState): factor out shared code from OnKeyDown and OnMouseDown
9020         here.  Also, only invalidate the row header once (on the initial
9021         is_changing switch) to save on redraws.
9022
9023 2006-05-24  Chris Toshok  <toshok@ximian.com>
9024
9025         * DataGridTextBoxColumn.cs (Commit): only call SetColumnValueAtRow
9026         if the value in the cell is different than it was before.  This
9027         keeps us from triggering a layout when we move around a datarid
9028         with a highlighted cell.
9029         (Edit): suspend layout when creating/positining the text box, and
9030         resume passing false so we don't ever actually re-layout.
9031         (ReleaseHostedControl): same.
9032         (EnsureTextBox): reformat slightly, and set WordWrap to false.
9033
9034         * DataGridTextBox.cs (ProcessKeyMessage): it's not true that all
9035         control-key sequences should go to the datagrid - remove that
9036         lock.  Also, modify the conditions under which we move between
9037         cells when moving the cursor within a cell, and remove the "this"
9038         and "base" from field accesses.  We weren't even consistent, given
9039         they all were in the base class.
9040
9041 2006-05-24  Atsushi Enomoto  <atsushi@ximian.com>
9042
9043         * Binding.cs : (.ctor)
9044           An obvious NRE fix for BindingTest.CtorNullTest().
9045
9046 2006-05-23  Chris Toshok  <toshok@ximian.com>
9047
9048         * TextBoxBase.cs (get_Text): don't add a trailing newline, add
9049         them between lines.  This fixes some quirks editing cells in the
9050         datagrid.
9051
9052 2006-05-23  Jackson Harper  <jackson@ximian.com>
9053
9054         * TreeView.cs: Use begin/end update when doing expand/collapse all
9055         so that we don't get flicker on the scrollbar.
9056
9057 2006-05-23  Jackson Harper  <jackson@ximian.com>
9058
9059         * TreeNode.cs: Bounds are computed 'on the fly' now.  This allows
9060         treenode calculations to be independant of the painting code. To
9061         do this nodes track a visible order which is calculated by the
9062         treeview.
9063         - Call new methods for expanding/collapsing nodes.  These methods
9064         use scrollwindow so we don't have to update everything below the
9065         node.
9066         * TreeView.cs: Refactored drawing and scrolling code.  We don't
9067         need to update nodes when drawing anymore or calculate scrollbar
9068         stuff.
9069         - Added new methods for expanding/collapsing nodes. These methods
9070         use ScrollWindow so as to not have to redraw all the nodes below.
9071         * TreeNodeCollection.cs: Recalc visible order and scrollbars when
9072         we add/remove nodes or sort.
9073         - Handle removing the selected and the top node properly.
9074
9075 2006-05-23  Chris Toshok  <toshok@ximian.com>
9076
9077         * DataGridTextBoxColumn.cs (Edit): set grid.is_editing to true.
9078         maybe this should actually happen in the datagrid code?
9079         (EndEdit): no need to invalidate anything, given that
9080         ReleaseHostedControl causes the datagrid to relayout, which
9081         invalidates everything anyway.
9082
9083         * DataGrid.cs (set_CurrentCell): remove duplicate check (it's also
9084         in SetCurrentCell).
9085         (set_SelectionBackColor): call InvalidateSelection instead of
9086         Refresh.
9087         (set_SelectionForeColor): same.
9088         (BeginEdit): Flesh this out a bit.
9089         (CancelEditing): only do any of this if we're editing/adding.
9090         (EndEdit): same.
9091         (OnMouseDown): there's no need to cancel editing here, it's done
9092         in SetCurrentCell.
9093         (SetCurrentCell): only invalidate the current row header if it's a
9094         different row than the new one.
9095         (ShiftSelection): fix this to work like MS does.
9096         (ResetSelection): factor out the invalidation of selected_rows to
9097         InvalidateSelection.
9098         (SetDataSource): cancel any editing that's going on.
9099
9100         * DataGridColumnStyle.cs
9101         (IDataGridColumnStyleEditingNotificationService.ColumnStartedEditing):
9102         call the non-interface version.
9103
9104         * ThemeWin32Classic.cs (DataGridPaintColumsHdrs): intersect the
9105         header rectangle with the clip rectangle so we don't redraw the
9106         entire header for just a small area.  Gets rid of the last flicker
9107         when horizontally scrolling.
9108         (DataGridPaintRow): same.
9109
9110 2006-05-23  Mike Kestner  <mkestner@novell.com>
9111
9112         * ListViewItem.cs: remove size for line hack from LargeIcon layout.
9113         * ThemeWin32Classic.cs: don't draw line.  it's really the top of a
9114         poorly placed checkbox on the MS control.  Fixes Alex's unfiled
9115         Critical bug report.
9116
9117 2006-05-23  Peter Dennis Bartok  <pbartok@novell.com> 
9118
9119         * PictureBox.cs: Fixed broken ControlStyles. Unit test no longer fails,
9120           and this fixes #78493
9121
9122 2006-05-23  Miguel de Icaza  <miguel@novell.com>
9123
9124         * Theme.cs (GetSizedResourceImage): Scale images if the proper
9125         size is not found.  
9126         
9127         * FileDialog.cs: Do not change the background for the side bar as
9128         it wont work nicely with the theme, and also reduces the artifacts
9129         in rendering the icons (which I want to fix too).
9130
9131         * MimeIcon.cs (ResourceImageLoader): Load images from assembly
9132         resources, not resgen resources. 
9133
9134         (PlatformDefaultHandler): Pull images using the new API.
9135
9136 2006-05-23  Peter Dennis Bartok  <pbartok@novell.com> 
9137
9138         * Hwnd.cs (Dispose): Remove any pending exposures. XEventQueue holds
9139           a reference to the hwnd and will not remove it unless there are
9140           no pending exposures (fixes #78341)
9141         * XplatUI.cs: Improved debug
9142
9143 2006-05-23  Atsushi Enomoto  <atsushi@ximian.com>
9144
9145         * MenuAPI.cs : don't handle OnClick event when it was not the left
9146           button. Fixed bug #78487.
9147
9148 2006-05-23  Mike Kestner  <mkestner@novell.com>
9149
9150         * MenuAPI.cs: fix placement of submenus for multi-row menu bars, and
9151         prefer submenus to the top menu for item lookup, to avoid popping down
9152         top-row items.
9153
9154 2006-05-23  Alexander Olk  <alex.olk@googlemail.com>
9155
9156         * ThemeWin32Classic.cs: Rewrote CPCPDrawScrollButton to drop
9157           Graphics.FillRectangle as the visual results are really bad (even
9158           on win). We now draw perfect arrows (and perfect shadows when the
9159           scrollbar is disabled). Simplified CPDrawGrid. CPDrawGrid now uses
9160           Pen.DashPattern to draw the dots of each line.
9161
9162 2006-05-22  Alexander Olk  <alex.olk@googlemail.com>
9163
9164         * FileDialog.cs: Update the filename combobox when navigating through
9165           the ListView with the cursor keys. Fixes part 7 of bug #78446.
9166
9167 2006-05-22  Mike Kestner  <mkestner@novell.com>
9168
9169         * ListView.cs: raise SelectedIndexChanged on keyboard selection.
9170         Fixes #78463.
9171
9172 2006-05-22  Mike Kestner  <mkestner@novell.com>
9173
9174         * ComboBox.cs: Refresh in EndUpdate to pick up all the dropped Paint
9175         requests. Fix a misspelled parameter and a copy paste exception error
9176         in Select.
9177
9178 2006-05-22  Peter Dennis Bartok  <pbartok@novell.com> 
9179
9180         * ThemeWin32Classic.cs: Changed DefaultFont emSize from 8.25 to 8
9181           to get the same width/height (5/13) on X11 as the default font has on
9182           win32. This means that our DefaultFont emSize is smaller than the 
9183           the MS SWF equivalent (even thought the width/height stays the same)
9184
9185 2006-05-20  Jackson Harper  <jackson@ximian.com>
9186
9187         * MdiClient.cs:
9188         * MdiWindowManager.cs:
9189         * InternalWindowManager.cs: Make sure to use the border width from
9190         the theme.
9191
9192 2006-05-20  Jordi Mas i Hernandez <jordimash@gmail.com>
9193
9194         * PrintDialog.cs: Implements printer details
9195
9196 2006-05-19  Alexander Olk  <alex.olk@googlemail.com>
9197
9198         * FileDialog.cs: Added focus handling for PopupButtonPanel.
9199           Fixes part 1 and 2 of bug #78446
9200
9201 2006-05-19  Peter Dennis Bartok  <pbartok@novell.com> 
9202
9203         * XplatUIX11.cs (SetWindowPos): Recalculate client area size on resizes
9204           instead of sticking to the first ever calculated value
9205
9206 2006-05-19  Mike Kestner  <mkestner@novell.com>
9207
9208         * ComboBox.cs: fix mouse motion selection to use MousePosition and
9209         PointToClient, since Capture is set. Fixes #78344.
9210
9211 2006-05-19  Mike Kestner  <mkestner@novell.com>
9212
9213         * ListView.cs: match MS behavior in Details view where items are not
9214         drawn if Columns.Count == 0. 
9215         * ThemeWin32Classic.cs: only highlight ListView selection if focused.
9216         Use a separate pen to draw the check, since changing the width affects
9217         the box as well.  Fixes #78454.
9218
9219 2006-05-18  Miguel de Icaza  <miguel@novell.com>
9220
9221         * ListView.cs: ArgumentOutOfRangeException, single versions of the
9222         exception should throw the name of the invalid argument.
9223
9224         * FileDialog.cs (OnClickOpenSaveButton): Avoid crash in open if
9225         there are no files listed. 
9226
9227 2006-05-18  Jackson Harper  <jackson@ximian.com>
9228
9229         * ThemeWin32Classic.cs: Don't use endcaps, they mess the drawing
9230         up.
9231
9232 2006-05-18  Peter Dennis Bartok  <pbartok@novell.com> 
9233
9234         * Control.cs: Brought back our old UpdateZOrder method as a private
9235           function and switched our calls from UpdateZOrder to the new one.
9236           This fixes the Paint.Net canvas disappearing bug.
9237
9238 2006-05-18  Jackson Harper  <jackson@ximian.com>
9239
9240         * Theme.cs:
9241         * ThemeWin32Classic.cs:
9242         * InternalWindowManager.cs: Move the drawing into the theme,
9243         expose everything the theme should need from the window manager.
9244
9245 2006-05-18  Peter Dennis Bartok  <pbartok@novell.com>
9246
9247         * XplatUIX11.cs (DefWndProc): WM_SETCURSOR: Assign the return value 
9248           from the call to NativeWindow to avoid walking up the parent chain
9249           further than needed (speeds up setting cursors and avoids setting
9250           the wrong cursor if a parent has another cursor defined)
9251         * Cursor.cs: When loading an icon as cursor, MS uses the center of
9252           the icon as hotspot, not what's contained as hotspot in the icon
9253           file. This fixes the perceived drawing offset seen with Paint.Net
9254         
9255 2006-05-18  Peter Dennis Bartok  <pbartok@novell.com> 
9256
9257         * XplatUIX11.cs: 
9258           - Store the calculated rectangle in Hwnd object and use it when 
9259             setting the client size
9260           - Force Toolwindows to always be type Dock, to ensure they're on top
9261
9262 2006-05-18  Mike Kestner  <mkestner@novell.com>
9263
9264         * ComboBox.cs: first pass at ComboBox rework.  Layout is more
9265         consistent with MS positioning.  IntegralHeight, ItemHeight, Sizing.
9266         Correctly initialize textcontrol and ListBox on DropDownStyle changes. 
9267         Substantial refactoring to remove confusing nested classes. Coding
9268         standard and Get+Set->property refactorings.  Shift to index based
9269         highlighting in ComboListBox instead of constantly using IndexOf and
9270         Items[]. Add invalidations on resize for DropDownList to fix ugliness
9271         in FileDialog growth.  Draw borders manually since Simple mode needs
9272         to look like two independent controls.  Make listbox border
9273         conditional to DropDownStyle.  Improved OwnerDraw support.
9274
9275 2006-05-18  Sebastien Pouliot  <sebastien@ximian.com>
9276
9277         * PaintEventArgs.cs: For 2.0, check for a null Graphics in the .ctor. 
9278         Don't set the disposed graphics to null, so we can throw the "right"
9279         exception if the graphics is reused later (added a flag to avoid 
9280         double disposing). Some behaviours are different under 2.0 and are
9281         filled under bug #78448.
9282
9283 2006-05-18  Peter Dennis Bartok  <pbartok@novell.com>
9284
9285         * Control.cs: When double-buffering is enabled, we need to reset
9286           our graphics context between paint calls. Otherwise, any 
9287           transformations and other alterations on the context will 
9288           become cumulative (#77734)
9289
9290 2006-05-18  Mike Kestner  <mkestner@novell.com>
9291
9292         * ListView.cs: do focused item selection like MS on clicks. 
9293         Rework focus handling for ItemControl so LostFocus invalidates as
9294         well.
9295         * ThemeWin32Classic.cs: only draw focus rectangle for ListViewItems if
9296         the ListView ItemControl has focus.
9297
9298 2006-05-17  Peter Dennis Bartok  <pbartok@novell.com>
9299
9300         * XplatUIX11.cs: If client_window ends up being width or height zero
9301           due to border settings, move it off window inside whole_window (#78433)
9302
9303 2006-05-17  Alexander Olk  <alex.olk@googlemail.com>
9304
9305         * Mime.cs: Shrink the mime file cache correctly.
9306
9307 2006-05-17  Alexander Olk  <alex.olk@googlemail.com>
9308
9309         * ThemeWin32Classic.cs: Readded button focus drawing code. (#78429)
9310
9311 2006-05-16  Peter Dennis Bartok  <pbartok@novell.com>
9312
9313         * XplatUIX11.cs (AddExpose): More sanity checks
9314
9315 2006-05-16  Peter Dennis Bartok  <pbartok@novell.com> 
9316
9317         * XplatUIX11.cs:
9318           - AddExpose: Don't add expose ranges outside the size of our
9319             window
9320           - Cast opacity values to Int32 to avoid crashes with certain
9321             values
9322           - Added disabled code paths that protect against illegal cross-
9323             thread painting (Developers.exe)
9324
9325 2006-05-16  Peter Dennis Bartok  <pbartok@novell.com>
9326
9327         * ProgressBar.cs: Invalidate the control when it's resized
9328           since block size is based on control size. (#78388)
9329
9330 2006-05-16  Miguel de Icaza  <miguel@novell.com>
9331
9332         * DataGrid.cs (SetDataBinding): per the discussion on irc, instead
9333         of setting the incoming argument to the "reset" value, we set the
9334         this.datamember to string.empty (before we were invalidating the
9335         incoming data).   
9336
9337         Fixes 78420
9338
9339 2006-05-16  Peter Dennis Bartok  <pbartok@novell.com> 
9340
9341         * Form.cs: Only apply transparency settings after the form
9342           is created. (Fixes #77800)
9343
9344 2006-05-16  Peter Dennis Bartok  <pbartok@novell.com>
9345
9346         * ApplicationContext.cs: Grab the HandleDestroyed event so
9347           we know when to fire OnMainFormClosed 
9348
9349 2006-05-16  Peter Dennis Bartok  <pbartok@novell.com> 
9350
9351         * Application.cs: Introduced sub-class to allow tracking of
9352           threads and centralized triggering of the event mess for
9353           ThreadExit, AppExit, etc..  (#76156)
9354
9355 2006-05-16  Alexander Olk  <alex.olk@googlemail.com>
9356
9357         * MimeIcon.cs:
9358           - Do not return a null icon index value for a mime subclass.
9359             Instead try the main mime type class too.
9360           - Seems that some newer distributions don't have a link to some
9361             gnome default icons anymore. So check the default gnome dir too.
9362           
9363
9364 2006-05-16  Jackson Harper  <jackson@ximian.com>
9365
9366         * MdiClient.cs: Don't paint the parent background image if we have
9367         our own background image.
9368
9369 2006-05-16  Peter Dennis Bartok  <pbartok@novell.com> 
9370
9371         * Control.cs:
9372           - PerformLayout: Do not shrink space filled by DockStyle.Fill
9373             controls, all filled controls are supposed to overlap (#78080)
9374           - UpdateZOrder is supposed to update the control's z-order in the
9375             parent's z-order chain. Fixed to behave like that
9376           - BringToFront: Removed obsolete code
9377           - SendToBack: Simplyfied
9378           - SetChildIndex: Trigger layout calculations when Z-order changes
9379             since layout is done by z-order
9380
9381 2006-05-16  Chris Toshok  <toshok@ximian.com>
9382
9383         [ fixes bug #78410 ]
9384         * DataGrid.cs (set_AlternatingBackColor): use
9385         grid_drawing.InvalidateCells instead of Refresh().
9386         (set_BackColor): call grid_drawing.InvalidateCells.
9387         (set_BackgroundColor): use Invalidate instead of Refresh.
9388
9389         * DataGridDrawingLogic.cs (InvalidateCells): new function, just
9390         invalidate the cell area.
9391
9392 2006-05-15  Chris Toshok  <toshok@ximian.com>
9393
9394         [ fixes bug #78011 ]
9395         * ThemeWin32Classic.cs (DataGridPaintRows): pass the clip argument
9396         on to DataGridPaintRow.
9397         (DataGridPaintRow): take a clip argument, and only draw the cells
9398         which intersect it.  same with the not_usedarea.
9399
9400         * Theme.cs (DataGridPaintRow) add @clip parameter.
9401
9402         * DataGrid.cs (ScrollToColumnInPixels): simplify, use
9403         XplatUI.ScrollWindow.
9404         (ScrollToRow): same.
9405
9406         * DataGridDrawingLogic.cs (UpdateVisibleColumn): fix corner case
9407         with last column which was causing a gray swath to appear with the
9408         XplatUI.ScrollWindow code.
9409
9410 2006-05-15  Chris Toshok  <toshok@ximian.com>
9411
9412         * ListBox.cs (HorizontalScrollEvent): in the non-multicolumn case,
9413         use XplatUI.ScrollWindow.
9414         (VerticalScrollEvent): use XplatUI.ScrollWindow.
9415
9416 2006-05-15  Peter Dennis Bartok  <pbartok@novell.com> 
9417
9418         * TextBoxBase.cs: Added handling of middle-button paste for X11. (#78375)
9419
9420 2006-05-15  Peter Dennis Bartok  <pbartok@novell.com>
9421
9422         * Cursors.cs: For X11, read NWSE and NESW cursors from our resource
9423           file since there are no equivalent X11 cursors
9424
9425 2006-05-15  Atsushi Enomoto  <atsushi@ximian.com>
9426
9427         * MonthCalendar.cs : DateTimePicker should reflect selected date
9428           on mouse*up*, not mouse*down*. Fixed originally reported part of
9429           bug #76474.
9430
9431 2006-05-15  Atsushi Enomoto  <atsushi@ximian.com>
9432
9433         * TabControl.cs : When argument index is equal or more than tab
9434           count, just ignore. Fixed bug #78395.
9435
9436 2006-05-15  Peter Dennis Bartok  <pbartok@novell.com>
9437
9438         * Control.cs: Dispose all child controls when control is diposed (#78394)
9439
9440 2006-05-14  Alexander Olk  <alex.olk@googlemail.com>
9441
9442         * ColorDialog.cs: Finally it is possible to select the color with
9443           the text boxes
9444
9445 2006-05-14  Alexander Olk  <alex.olk@googlemail.com>
9446
9447         * PrintDialog.cs: Fix typo
9448
9449 2006-05-14  Alexander Olk  <alex.olk@googlemail.com>
9450
9451         * PrintDialog.cs: PrintDialog is not resizable
9452         * ThemeWin32Classic.cs: Draw non links in LinkLabel with the correct
9453           color. Made some ToolBar drawing methods protected virtual.
9454
9455 2006-05-13  Jordi Mas i Hernandez <jordimash@gmail.com>
9456
9457         * PrintDialog.cs: Implementation of the PrintDialog
9458
9459 2006-05-12  Chris Toshok  <toshok@ximian.com>
9460
9461         * ScrollBar.cs (set_Value): don't use Dirty/Invalidate to move the
9462         thumb, instead use MoveThumb.  This has the side effect of making
9463         most of the other thumb moving machinery use MoveThumb as well.
9464         (OnHandleCreated): pass false for @dirty to UpdateThumbPos, as we
9465         need to actually invalidate the rectangle where the new thumb will
9466         go.
9467         (MoveThumb): use XplatUI.ScrollWindow to move the thumb around.
9468         We force an Update() after, so it's not as fast as it could be,
9469         but at least there's zero flicker and no droppings.
9470         (OnMouseMoveSB): in the thumb dragging case, use MoveThumb.
9471         (UpdateThumbPos): add another argument (dirty), which says whether
9472         or not to calculate/add dirty regions which we later invalidate.
9473         For cases where we know we're going to use MoveThumb, we pass
9474         false for this.  Otherwise, pass true.
9475
9476 2006-05-12  Jackson Harper  <jackson@ximian.com>
9477
9478         * ThemeWin32Class.cs: Fixes for alignment and icon rendering in
9479         the status bar.
9480         
9481 2006-05-12  Peter Dennis Bartok  <pbartok@novell.com>
9482
9483         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs: Added new SetClipRegion
9484           and GetClipRegion methods and UserClipWontExposeParent property.
9485         * XplatUIWin32.cs: Implemented SetClipRegion/GetClipRegion methods,
9486           overriding UserClipWontExposeParent property, setting to false, since
9487           Win32 handles the required expose messages to draw our clipped parent
9488           areas internally
9489         * XplatUIX11.cs: Implemented SetClipRegion and GetClipRegion; updated
9490           PaintEventStart to set the user clip region if set.
9491         * Control.cs: 
9492           - Now internally tracking the Region for the control since we need to
9493             store it if the handle is not yet created and only set it when it
9494             becomes created. Before setting the region forced handle creation
9495           - Added code to draw the parents underneath a user-clipped region
9496         * Hwnd.cs: Added UserClip property
9497
9498 2006-05-12  Chris Toshok  <toshok@ximian.com>
9499
9500         * ScrollBar.cs (set_LargeChange): Refresh() -> InvalidateDirty()
9501         (set_Maximum): same.
9502         (set_Minimum): same.
9503         (set_SmallChange): same.
9504         (OnMouseUpSB): remove the call to refresh when releasing the
9505         thumb.  We shouldn't need it.
9506         
9507 2006-05-12  Miguel de Icaza  <miguel@novell.com>
9508
9509         * StatusBar.cs (UpdatePanel): If the panel being refreshes has the
9510         AutoSize set to None, we do not need to relayout everything, we
9511         just need to invalidate the current region.
9512
9513         (Draw): Do not draw the entire ClientArea, just redraw the
9514         clip area being passed.
9515
9516         * MdiClient.cs: Make MdiClient constructor with the Form argument
9517         internal. 
9518
9519 2006-05-12  Jackson Harper  <jackson@ximian.com>
9520
9521         * ThemeWin32Classic.cs (DrawToolBar): Flat toolbars get their
9522         parents background image,  but strangely not their own.
9523         - (DrawStatusBarPanel): Take into account horizontal alignment
9524         when drawing the strings and icons.
9525
9526 2006-05-12  Mike Kestner  <mkestner@novell.com>
9527
9528         * ListBox.cs: avoid invalidations for focus when the collection is
9529         empty. 
9530
9531 2006-05-12  Chris Toshok  <toshok@ximian.com>
9532
9533         * ScrollBar.cs (OnMouseMoveSB): when dragging the thumb, don't
9534         invalidate the entire thumb area.  Call InvalidateDirty which
9535         limits the redraw to the thumb itself and surrounding pixels.
9536
9537         * XplatUIX11.cs (ScrollWindow): optimize copying.
9538         
9539 2006-05-12  Chris Toshok  <toshok@ximian.com>
9540
9541         * DataGridDrawingLogic.cs: make CalcGridAreas non-reentrant.
9542         Figure out the positioning/layout in a single pass instead of
9543         multiple recursive invocations.  Speeds up the initial display of
9544         the data grid.  Also, make many things private that were
9545         originally public but unused outside this class.
9546
9547 2006-05-11  Jackson Harper  <jackson@ximian.com>
9548
9549         * MdiClient.cs: Improved layout code.
9550
9551 2006-05-11  Jonathan Chambers  <jonathan.chambers@ansys.com>
9552
9553         * PropertyGrid.cs : Only check GetPropertiesSupported for properties,
9554           not SelectedObject.
9555
9556 2006-05-11  Chris Toshok  <toshok@ximian.com>
9557
9558         * Hwnd.cs (Invalid): don't start off with Rectangle.Empty, as
9559         union of that will always be {0,0,width,height}.
9560
9561 2006-05-11  Jackson Harper  <jackson@ximian.com>
9562
9563         * Form.cs: Match MS's DefaultSize for forms (they must have
9564         changed the size in sp2).
9565
9566 2006-05-11  Atsushi Enomoto  <atsushi@ximian.com>
9567
9568         * TextBoxBase.cs : implement CTRL+A (select all). Fixed bug #78368.
9569
9570 2006-05-11  Atsushi Enomoto  <atsushi@ximian.com>
9571
9572         * TextControl.cs : Fixed bug #78109. This incorrect position
9573           comparison caused crash on automatic line split.
9574         * TextBoxBase.cs : reduce duplicate code.
9575
9576 2006-05-10  Jackson Harper  <jackson@ximian.com>
9577
9578         * MdiClient.cs: Active form is only sent to the back when using
9579         the Next form functionality, when a form is clicked the current
9580         active shouldn't be sent to the back.
9581         - Layout the mdi windows when the container is first made visible.
9582         * Form.cs: Give the MdiClient a ref to the containing form when we
9583         create it.
9584         
9585 2006-05-10  Atsushi Enomoto  <atsushi@ximian.com>
9586
9587         * LinkLabel.cs : link_font could be uninitialized, so populate one
9588           before actual use. Fixed bug #78340.
9589
9590 2006-05-10  Atsushi Enomoto  <atsushi@ximian.com>
9591
9592         * XplatUIX11.cs : clipboard format native value is IntPtr.
9593           Fixed bug #78283.
9594
9595 2006-05-10  Peter Dennis Bartok  <pbartok@novell.com>
9596
9597         * Control.cs: 
9598           - Instead of showing context menus directly we send WM_CONTEXTMENU, 
9599             which is passed up the parent chain by DefWndProc
9600           - We now handle WM_CONTEXTMENU to display any menu, or pass it 
9601             to DefWndProc (#77956)
9602         * XplatUIX11.cs: Added handling of WM_CONTEXTMENU (pass up) to DefWndProc
9603
9604 2006-05-10  Jackson Harper  <jackson@ximian.com>
9605
9606         * MdiClient.cs: We need to remove the controls from the mdi
9607         collection, when we close the window.
9608         * MdiWindowManager.cs: Special handling of closing mdi windows.
9609         * InternalWindowManager.cs: Make the close method virtual so the
9610         mdi window manager can handle it specially.
9611
9612 2006-05-10  Jordi Mas i Hernandez <jordimash@gmail.com>
9613
9614         * DataGrid.cs:
9615           - Recalculate grid when the data source has changed
9616           - Matches styles provided by user from all data sources types
9617         * DataGridTableStyle.cs: For columns that provided by the user set the
9618         with the preferred value is there was unassigned.
9619         * CurrencyManager.cs: throw OnItemChanged event
9620
9621 2006-05-10  Peter Dennis Bartok  <pbartok@novell.com> 
9622
9623         * PictureBox.cs: Don't animate until handle is created. Start animation
9624           when handle is created.
9625
9626 2006-05-10  Peter Dennis Bartok  <pbartok@novell.com>
9627
9628         * XplatUIX11.cs, Hwnd.cs: Adopted Mike's patch from #77979 to match
9629           current codebase.
9630         * XEventQueue.cs: We don't need to provide the extra info
9631
9632 2006-05-10  Jackson Harper  <jackson@ximian.com>
9633
9634         * MdiClient.cs: If the mdi clients parent form has a background
9635         image set, we draw that background image for the mdi area's
9636         background.
9637
9638 2006-05-10  Peter Dennis Bartok  <pbartok@novell.com>
9639
9640         * TextBoxBase.cs: Set IBeam cursor (#78347)
9641
9642 2006-05-10  Mike Kestner  <mkestner@novell.com>
9643
9644         * ToolBar.cs: fix some text padding issues with ButtonSize
9645         calculation. Update the default size to match MS documentation.
9646         * ToolBarButton.cs: use ToolBar.ButtonSize for layout of unspecified
9647         button size. Fixes #78296.
9648
9649 2006-05-10  Mike Kestner  <mkestner@novell.com>
9650
9651         * ListBox.cs: use is_visible for scrollbar positioning in case the
9652         control isn't on screen yet.  Fix off by one with Right vs Width
9653         usage.  Update Scrollbars in SetBoundsCore. Fixes #78188 and #78258.
9654         
9655 2006-05-10  Jackson Harper  <jackson@ximian.com>
9656
9657         * X11Dnd.cs: Drop to a control with another control on top of it.
9658         * ToolBar.cs: Work on a copy of the buttons list, so that it can
9659         be modified in click handlers. TODO: Look for similar problems in
9660         other controls.
9661
9662 2006-05-09  Jackson Harper  <jackson@ximian.com>
9663
9664         * Form.cs: Window managers need the old window state when setting
9665         window state now.
9666         * InternalWindowManager.cs: Allow the base mdi window manager to
9667         handle more of the MDI only stuff (like maximize buttons).
9668         * MdiWindowManager.cs: Fix some snafus in changing the window
9669         state.  Add all the menu functionality, for both popup and
9670         maximized menus.
9671         * MdiClient.cs: When a new form is selected the currently
9672         activated form is sent to the back, this matches MS.
9673         - Implement a new method to activate the next mdi child window.
9674
9675 2006-05-08  Peter Dennis Bartok  <pbartok@novell.com>
9676
9677         * Control.cs: 
9678           - Added new InternalCapture method to allow controls to prevent
9679             the capture behaviour on the click handlers
9680           - Switched to use InternalCapture
9681         * ComboBox.cs:
9682           - Using InternalCapture to prevent mouse captures from being released
9683             on mouse button release (Fixes #78100)
9684         * XplatUIX11.cs (DeriveStyles): Now checks caption state and only
9685           returns Form borders if a caption is present. (Fixes #78310)
9686
9687 2006-05-08  Peter Dennis Bartok  <pbartok@novell.com> 
9688
9689         * TreeNode.cs: Changed serialization .ctor to not require every field
9690           to be present. (#78265)
9691         * OwnerDrawPropertyBag.cs: Added serialization .ctor
9692
9693 2006-05-05  Alexander Olk  <alex.olk@googlemail.com>
9694
9695         * MimeIcon.cs: for is faster than foreach for strings.
9696
9697 2006-05-05  Mike Kestner  <mkestner@novell.com>
9698
9699         * CheckedListBox.cs: update check handling code to not use selected.
9700         * ListBox.cs: rewrite of mouse selection handling to correspond to MS
9701         behavior for visual feedback, motion response, shift/ctrl handling,
9702         and properly deal with all 4 selection modes. Updates to bounds
9703         handling logic.  Add scroll wheel support. [Fixes #77842]
9704
9705 2006-05-05  Peter Dennis Bartok  <pbartok@novell.com> 
9706
9707         * ListView.cs:
9708           - Moved adding of Implicit controls into .ctor. That way, subsequent
9709             creation of the controls will not cause them to think they are 
9710             toplevel windows (fixes #78200 header problem)
9711           - Added 2.0 ShowGroups and UseCompatibleStateImageBehaviour
9712           - Switched visibility setting of header control to use internal field
9713             to avoid triggering handle creation
9714           - Now checking if handle is created before causing a refresh when items
9715             are added (This makes us now match handle creation time with MS)
9716         * Splitter.cs: Removed loading of private splitter cursor, switched to
9717           Cursors version now that that is loading the right ones
9718         * Cursors.cs: Load proper splitter cursors from resources
9719         * Cursor.cs: Added second method of loading resource cursors for the 
9720           VS.Net users amongst us
9721
9722 2006-05-05  Mike Kestner  <mkestner@novell.com>
9723
9724         * ListView.cs: give header_control a minimum size based on the
9725         ListView size.
9726
9727 2006-05-05  Peter Dennis Bartok  <pbartok@novell.com> 
9728
9729         * XplatUIX11.cs: WS_EX_TOPMOST requires window to be on top. A dock
9730           window seems to do that with metacity, so set that type. (#78120)
9731
9732 2006-05-05  Mike Kestner  <mkestner@novell.com>
9733
9734         * ListViewItem.cs: fix Details mode checkbox layout bug.
9735         * ThemeWin32Classic.cs: draw a ListView column header for unused space
9736         at the end of the header, if it exists. [Fixes for #78200]
9737
9738 2006-05-04  Jackson Harper  <jackson@ximian.com>
9739
9740         * MdiClient.cs: Add a helper property to get the container form.
9741         * MdiWindowManager.cs: We have to make sure to use the menu origin
9742         when drawing the icons and buttons, this fixes maximized window
9743         icons/buttons on win32.
9744         * InternalWindowManager.cs: Reset the restore captions when a
9745         window goes from Maximized to Minimized and vice versa. Move the
9746         DrawMaximizedButtons into the MdiWindowManager source, tool
9747         windows can't be maximized. NOTE: This could use a little
9748         refactoring if time ever permits.
9749         
9750 2006-05-03  Jonathan Chambers  <jonathan.chambers@ansys.com>
9751
9752         * TextBox.cs: Add MWFCategoryAttributes
9753         * TextBoxBase.cs: Add MWFCategoryAttributes
9754         * Form.cs: Add MWFCategoryAttributes
9755
9756 2006-05-03  Jonathan Chambers  <jonathan.chambers@ansys.com>
9757
9758         * Control.cs: Add MWFCategoryAttributes
9759         * ScrollableControl.cs: Add MWFCategoryAttributes
9760
9761 2006-05-03  Alexander Olk  <alex.olk@googlemail.com>
9762
9763         * ThemeWin32Classic.cs: Draw the ToolBar top border only if
9764           Divider is true. Fix a little glitch in PropertyToolBar
9765           drawing code
9766
9767 2006-05-02  Peter Dennis Bartok  <pbartok@novell.com> 
9768
9769         * Control.cs:
9770           - Dispose: Call base.Dispose, this causes the disposed event
9771             to be fired (and probably other, more important stuff)
9772           - SetVisibleCore: Set is_visible to true after creating the
9773             window so that the window still gets created invisible (if
9774             WM_VISIBLE isn't set). That will cause the ShowWindow afterwards
9775             to generate a WM_ACTIVE message
9776         * Form.cs: Call Dispose when we want to destroy the window, instead of
9777           just destroying the handle (Dispose will do that for us)
9778         * XplatUIX11.cs:
9779           - RootWindow also needs a queue, so we can properly process the
9780             property change events from RootWindow (like Activate)
9781           - Generatic synthetic WM_ACTIVE message when the active window is
9782             being destroyed
9783
9784 2006-05-01  Peter Dennis Bartok  <pbartok@novell.com> 
9785
9786         * LinkLabel.cs: Trigger a recalc of our label dimensions when
9787           bounds are changed
9788
9789 2006-05-01  Peter Dennis Bartok  <pbartok@novell.com>
9790
9791         * ThemeWin32Classic.cs (ButtonBase_DrawImage): Use the proper image
9792           for determining width and height (image might not be assigned if
9793           we're drawing an imagelist)
9794
9795 2006-05-01  Peter Dennis Bartok  <pbartok@novell.com> 
9796
9797         * XplatUI.cs, XplatUIDriver.cs: Added MenuHeight property
9798         * XplatUIWin32.cs: Overriding new MenuHeight property, retrieving
9799           height from system
9800         * Theme.cs: No longer returns hardcoded menu height, instead calls
9801           new driver method
9802         * Form.cs (OnLoad): Scaling happens before triggering Load events 
9803           on MS (# 78257)
9804
9805 2006-05-01  Mike Kestner  <mkestner@novell.com>
9806
9807         * MenuItem.cs: fix NRE for text == null.  Fixes #78250.
9808
9809 2006-04-30  Peter Dennis Bartok  <pbartok@novell.com> 
9810
9811         * TextBoxBase.cs: Removed Fixme
9812         * RichTextBox.cs (set_RTF): Invalidate document after update (#78247)
9813
9814 2006-04-30  Peter Dennis Bartok  <pbartok@novell.com>
9815
9816         * XplatUIX11.cs:
9817           - ScrollWindow: We were passing hwnd.ClientRectangle which returns
9818             the rectangle relative to the parent, considering borders. We
9819             don't really want that.
9820           - ScrollWindow: Fixed warning to be more understandable
9821         * TextBoxBase.cs: Fixed ScrollWindow calculations to consider our
9822           scrollbars and scroll only the visible area
9823         * RichTextBox.cs: Removed debug output
9824
9825 2006-04-29  Peter Dennis Bartok  <pbartok@novell.com>
9826
9827         * NumericUpDown.cs (Text): Just use base
9828         * UpDownBase.cs: Ensure txtView is created before using it
9829
9830 2006-04-29  Peter Dennis Bartok  <pbartok@novell.com> 
9831
9832         * XplatUIX11.cs (SetWindowTransparency): Casting opacity to int before
9833           casting to IntPtr to avoid 64bit overflow errors
9834
9835 2006-04-29  Peter Dennis Bartok  <pbartok@novell.com>
9836
9837         * Control.cs:
9838           - AllowDrop: Don't force handle creation.
9839           - CreateHandle: Added call to tell driver if we're allowed to drop
9840
9841 2006-04-27  Alexander Olk  <alex.olk@googlemail.com>
9842
9843         * FileDialog.cs: Remember the last directory not only for the
9844           current instance but also for new FileDialog instances.
9845
9846 2006-04-29  Peter Dennis Bartok  <pbartok@novell.com> 
9847         
9848         * XplatUIX11.cs: Forgot to set the queue on the foster parent. That
9849           broke sending async messages
9850
9851 2006-04-29  Peter Dennis Bartok  <pbartok@novell.com>
9852
9853         * XplatUIX11.cs:
9854           - ScrollWindow: Fixed method. We finally generate expose events again
9855             for scrolled areas. This was causing 'garbage' when scrolling
9856             textbox and other controls that used ScrollWindow
9857           - Switched from using the regular queue for paint events to the MS 
9858             model of 'generating' paint events when the queue is empty.
9859             We use the new XQueueEvent.Paint subclass to store which windows
9860             need painting.
9861           - AddExpose now takes the x/y/width/height of the exposed area
9862             and inserts the window into the paint queue if not already there
9863           - InvalidateWholeWindow: Switched to use new AddExpose method
9864           - UpdateMessageQueue: Added which queue to monitor for paint events
9865           - DefWndProc: Added default handler for WM_PAINT and WM_NCPAINT in
9866             the unlikely case nothing above handles it. We reset the expose
9867             pending states to get them off the queue.
9868           - GetMessage: Now pulls a paint event if no other events are in the
9869             queue
9870           - Invalidate: Switched to new AddExpose method
9871           - PeekMessage: Updated to understand pending paint events
9872           - UpdateWindow: Fixed logic bug. We were only updating if the window
9873             didn't need updating. Also switched to sending WM_PAINT directly,
9874             like MS does.
9875         * XEventQueue.cs: Added Paint queue support. Allows enqueue/dequeue
9876           and random access Remove(). The random access is needed to handle
9877           UpdateWindow() where a WM_PAINT is sent directly without accessing
9878           the queue.
9879         * ScrollBar.cs: Added Update() calls to cause immediate updates to
9880           allow for better feedback when scrolling. Scrollbars are small and
9881           the immediate update should make it 'feel' more responsive without
9882           slowing things down. ScrollBar still needs it's invaliate logic
9883           updated to not always invalidate the whole bar on certain changes.
9884
9885 2006-04-28 Gonzalo Paniagua Javier <gonzalo@ximian.com>
9886
9887         * Control.cs:
9888         (BackColor): if the control does not support a transparent background,
9889         return the default backcolor when the parent backcolor is transparent.
9890
9891 2006-04-28  Peter Dennis Bartok  <pbartok@novell.com>
9892
9893         * Application.cs: Updated to new StartLoop/GetMessage API
9894         * RichTextBox.cs: Provide some output on RTF parsing errors
9895         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs, XplatUIWin32.cs: Added
9896           new queue_id argument to GetMessage and PeekMessage to allow faster
9897           handling of per-thread queues in drivers.
9898         * Hwnd.cs: Added Queue tracking and property
9899         * MenuAPI.cs: Updated to new StartLoop/GetMessage API
9900         * XEventQueue.cs: Added thread trackingA
9901         * PropertyGridView.cs: Updated to new StartLoop/GetMessage API
9902         * XplatUIX11.cs:
9903           - Implemented new per-thread queue
9904           - GetMessage: Fixed return/break behaviour on several cases. We were
9905             returning stale messages in some cases, instead of just processing
9906             the next message
9907
9908 2006-04-27  Jonathan Chambers  <jonathan.chambers@ansys.com>
9909
9910         * PropertyGrid.cs: Call GetPropertiesSupported on TypeConverter.
9911
9912 2006-04-27  Peter Dennis Bartok  <pbartok@novell.com>
9913
9914         * ThemeWin32Classic.cs (DrawToolBar): Refactored, simplified the logic,
9915           fixed off-by-one comparisons between Width/Height and Right/Bottom.
9916
9917 2006-04-27  Jonathan Chambers  <jonathan.chambers@ansys.com>
9918
9919         * PropertyGridView.cs: Fix drop down width.
9920
9921 2006-04-27  Alexander Olk  <alex.olk@googlemail.com>
9922
9923         * ThemeWin32Classic.cs: Peter thinks that three additional lines are
9924           a mess in DrawToolBar, so I removed one of them.
9925
9926 2006-04-27  Alexander Olk  <alex.olk@googlemail.com>
9927
9928         * ThemeWin32Classic.cs: Draw the ToolBar border lines only if
9929           needed (clip). Otherwise we get artifacts.
9930
9931 2006-04-26  Peter Dennis Bartok  <pbartok@novell.com>
9932
9933         * FixedSizeTextBox.cs: Added constructor to allow specifying which
9934           dimension is fixed
9935         * UpDownBase.cs: Set the spinner control to be fixed height vertical,
9936           and switched FixedSizeTextBox to only be fixed vertical (#78116)
9937         * Form.cs: Not applying the 'MS 0.08 fudge factor' for a given dimension
9938           if it matches the scale base font (avoids unneeded scaling)
9939
9940 2006-04-26  Alexander Olk  <alex.olk@googlemail.com>
9941
9942         * X11DesktopColors.cs: One gtk_init_check should be enough
9943
9944 2006-04-26  Peter Dennis Bartok  <pbartok@novell.com> 
9945
9946         * TextBoxBase.cs: Moved Backspace handling into WM_CHAR block to
9947           match MS behaviour
9948
9949 2006-04-26  Peter Dennis Bartok  <pbartok@novell.com>
9950
9951         * TextBoxBase.cs: 
9952           - Generate OnTextChanged for Backspace even if we're only deleting
9953             the current selection
9954           - When setting the Text property, only select all text if the
9955             control does not have focus when it is being set. Otherwise
9956             just place the cursor at the beginning of the control
9957
9958 2006-04-26  Alexander Olk  <alex.olk@googlemail.com>
9959
9960         * ThemeWin32Classic.cs: ToolBars get drawn with two lines at the top.
9961           Added a little helper to draw PropertyGrid ToolBar with a different
9962           border and a different BackColor.
9963         * PropertyGrid.cs: Some background parts didn't get painted with the
9964           correct background color. Added a class that helps us to draw the
9965           correct border for PropertyGridView and a class that helps us to
9966           draw ToolBars with a different backcolor
9967         * PropertyGridView.cs: Draw PlusMinus with the correct colors.
9968
9969 2006-04-25  Jonathan Chambers  <jonathan.chambers@ansys.com>
9970
9971         * PropertyGrid.cs: Bug 78196, font size, and splitter location.
9972         * PropertyGridView.cs: Bug 78196, font size, and splitter location.
9973
9974 2006-04-25  Peter Dennis Bartok  <pbartok@novell.com> 
9975
9976         * XplatUIWin32.cs (DIBtoImage): ORing instead of ANDing the alpha
9977           into the palette entries. Also, since we're working on a copy
9978           we needed to copy the palette back onto the bitmap.
9979         * Cursor.cs: Same fix as XplatUIWin32.cs.
9980
9981 2006-04-25  Peter Dennis Bartok  <pbartok@novell.com>
9982
9983         * ImageListStreamer.cs: Need to read the var (or we're off)
9984
9985 2006-04-25  Peter Dennis Bartok  <pbartok@novell.com> 
9986
9987         * TextControl.cs, ComboBox.cs, CommonDialog.cs, Theme.cs, 
9988           XplatUIWin32.cs, RichTextBox.cs, ImageListStreamer.cs,
9989           TextBoxBase.cs: Unused var fixes
9990         * AxHost.cs: Small 2.0 fix
9991         * XplatUIX11.cs: Switched to IntPtr from int for XA_CARDINAL atoms 
9992           as it seems that is what at least Metacity expects. This will make
9993           icons show up on 64bit platforms. We still have some 64bit size
9994           issues, though, since the startup app window size still won't match.
9995
9996 2006-04-25  Mike Kestner  <mkestner@novell.com>
9997
9998         * *.cs: cleanup newly reported exception var unused warnings.
9999
10000 2006-04-25  Alexander Olk  <alex.olk@googlemail.com>
10001
10002         * ThemeWin32Classic.cs: Button image alignment now matches exactly
10003           ms
10004
10005 2006-04-25  Alexander Olk  <alex.olk@googlemail.com>
10006
10007         * ThemeWin32Classic.cs: Fixed drawing code for buttons with an
10008           image. The image position is always the same, no matter if the
10009           button is pressed or not.
10010
10011 2006-04-25  Alexander Olk  <alex.olk@googlemail.com>
10012
10013         * FileDialog.cs: SaveFileDialog shouldn't rely on a MWFFileView
10014           selection and set the correct filename for SaveFileDialog.
10015           Patch by Emery Conrad.
10016
10017 2006-04-24  Mike Kestner  <mkestner@novell.com>
10018
10019         * ListView.cs (LastVisibleIndex): when in List mode of Alignment.Left,
10020         check for item.X outside the ClientRect instead of item.Y. Fixes
10021         #78151.
10022
10023 2006-04-21 Gonzalo Paniagua Javier <gonzalo@ximian.com>
10024
10025         * ImageListStreamer.cs: some images store a wrong grow factor, so don't
10026         trust that value blindly and do some sanity check. Fixes bug #77814.
10027
10028 2006-04-21 Gonzalo Paniagua Javier <gonzalo@ximian.com>
10029
10030         * ImageListStreamer.cs: save the mask as a 1bpp image.
10031
10032 2006-04-21  Mike Kestner  <mkestner@novell.com>
10033
10034         * CheckedListBox.cs: maintain CheckStatus here. Use DrawItemState to
10035         pass Checked and Indeterminate to the Theme Engine. Improve
10036         encapsulation with ListBox.
10037         * ListBox.cs: Keep a StringFormat instead of calculating it every item
10038         draw. Kill ListBoxItem. Refactor away the ListBoxInfo and ListBoxItem
10039         nested types.  Move all CheckState functionality to CheckedListBox.
10040         Make IntegralHeight work like MS.  Rewrite of Layout engine.  Fix
10041         OwnerDrawVariable layout/rendering.  Fix multicolumn rendering.  Fix
10042         ScrollAlwaysVisible handling. Refactor "selected" collections to use a
10043         single base list. Fix scrollbar sizing and placement to mirror MS.
10044         * Theme.cs: remove CheckedListBoxCheckRectangle. It wasn't really
10045         used.
10046         * ThemeWin32Classic.cs: implement Indeterminate CheckState rendering
10047         for CheckedListBox by using new DrawItemState info.  Center the
10048         checkboxes on the items. Use new StringFormat property.
10049
10050 2006-04-18  Jackson Harper  <jackson@ximian.com>
10051
10052         * Form.cs: MdiChildren don't do default locations the same way as
10053         regular forms.  This prevents a crash when trying to position the
10054         mdi windows.
10055
10056 2006-04-17  Jonathan Chambers  <jonathan.chambers@ansys.com>
10057
10058         * PropertyGridTextBox.cs: Formatting, copyright
10059         * PropertiesTab.cs: Formatting
10060         * PropertyGrid.cs: Formatting
10061         * PropertyGridView.cs: Formatting, fix drop down, enabled double 
10062           click toggling of values
10063           
10064 2006-04-17  Peter Dennis Bartok  <pbartok@novell.com> 
10065
10066         * KeyPressEventArgs: Added 2.0 only setter for KeyChar
10067         * Control.cs (.ctor): verify_thread_handle is static, don't reset
10068           every time a control is created
10069         * Application.cs: Removed obsolete EnableRTLMirroring method
10070
10071 2006-04-18  Gert Driesen  <drieseng@users.sourceforge.net>
10072
10073         * TabControl.cs: Avoid ArgumentOutOfRangeException when setting
10074         SelectedIndex to -1. Fixes bug #78121.
10075
10076 2006-04-17  Jackson Harper  <jackson@ximian.com>
10077
10078         * Binding.cs: Handle null values for Current and BindingContext.
10079         This occurs when binding is a little delayed.
10080         * CurrencyManager.cs: return null for Current when there are no
10081         items in the list.
10082         - Hookup to the listchanged event on the DataView and update
10083         bindings when the list is changed.  This fixes late binding of
10084         controls.
10085
10086 2006-04-17  Jackson Harper  <jackson@ximian.com>
10087
10088         * X11Dnd.cs:
10089         * XplatUIX11.cs: Drops should not create a mousedown. Patch by Tim
10090         Ringenbach.
10091
10092 2006-04-15  Alexander Olk  <alex.olk@googlemail.com>
10093
10094         * ThemeWin32Classic.cs: Draw disabled combo button in the correct
10095           place
10096         * ComboBox.cs: If the combobox is disabled call CPDrawComboButton
10097           with the correct ButtonState
10098
10099 2006-04-14  Peter Dennis Bartok  <pbartok@novell.com>
10100
10101         * XplatUIX11.cs: Improved distinguishing between window types to
10102           tell the WM a type closer to what the app wants (Fixes #78107)
10103
10104 2006-04-14  Alexander Olk  <alex.olk@googlemail.com>
10105
10106         * ThemeWin32Classic.cs: Fixed drawing of ContainerGrabHandle and
10107           GrabHandle
10108
10109 2006-04-14  Alexander Olk  <alex.olk@googlemail.com>
10110
10111         * ThemeWin32Classic.cs: Fixed size grip drawing and updated StatusBar
10112           drawing code to reflect the size grip changes
10113
10114 2006-04-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
10115
10116         * ImageListStreamer.cs: fix handling of the mask that follows the main
10117         bitmap when deserializing and serialize it properly. The generated mask
10118         should better be a 1bpp image, but I'll do that later.
10119
10120 2006-04-13  Alexander Olk  <alex.olk@googlemail.com>
10121
10122         * FileDialog.cs: Show something in the DirComboBox on *nix if the
10123           path doesn't fit into some of our Current.Places
10124
10125 2006-04-13  Jackson Harper  <jackson@ximian.com>
10126
10127         * ComboBox.cs: Use borders instead of drawing our own decorations,
10128         try to obey correct rules for heights.
10129         * Theme.cs:
10130         * ThemeNice.cs:
10131         * ThemeClearLooks.cs:
10132         * ThemeWin32Classic.cs: Remove combobox decoration drawing code,
10133         this is now handled by borders.
10134         - Remove unused DrawListBoxDecorationSize method.
10135         
10136 2006-04-13  Mike Kestner  <mkestner@novell.com>
10137
10138         * MenuAPI.cs: null guarding for the disbled click check fixes crash
10139         reported by Alex.
10140
10141 2006-04-13  Alexander Olk  <alex.olk@googlemail.com>
10142
10143         * ThemeWin32Classic.cs: 
10144           - Fixed CPDrawStringDisabled
10145           - Corrected drawing of disabled menu items
10146           - Fixed drawing of disabled radio buttons (bug #78095)
10147           - Draw check in a disabled CheckBox with color ControlDark 
10148
10149 2006-04-12  Peter Dennis Bartok  <pbartok@novell.com>
10150
10151         * Form.cs: Use the provided width when calculating the menu size;
10152           when being maximized we get WM_NCCALCSIZE before WM_WINDOWPOSCHANGED
10153           and ClientSize.Width won't be updated yet
10154         * Application.cs: Use Visible instead of Show() to make form visible,
10155           this way we create the handle later and menusize is considered
10156
10157 2006-04-12  Mike Kestner  <mkestner@novell.com>
10158
10159         * MenuAPI.cs: ignore clicks on disabled menu items. Thanks to Alex for
10160         reporting.
10161
10162 2006-04-12  Peter Dennis Bartok  <pbartok@novell.com>
10163
10164         * TextBox.cs: Implemented context menu
10165
10166 2006-04-12  Mike Kestner  <mkestner@novell.com>
10167
10168         * ListView.cs: implement box selection. fixes #77838.
10169         * ThemeWin32Classic.cs: draw box select rect, remove a ResetClip.
10170
10171 2006-04-12  Peter Dennis Bartok  <pbartok@novell.com> 
10172
10173         * XplatUIX11.cs: Added setting of window type when transient window
10174           is created (metacity would move it otherwise)
10175         * X11Structs.cs: Added WINDOW_TYPE atoms
10176         * LinkLabel.cs: Override OnPaintBackgroundInternal and draw the
10177           background (the control is Opaque but still wants transparent
10178           backgrounds)
10179
10180 2006-04-12  Peter Dennis Bartok  <pbartok@novell.com>
10181
10182         * Control.cs: Added OnPaintBackgroundInternal to allow controls
10183           that set Opaque but don't mean it (like all ButtonBase-derived
10184           controls) to still draw their background
10185         * ButtonBase.cs: Override OnPaintBackgroundInternal and draw
10186           the background
10187
10188 2006-04-12  Peter Dennis Bartok  <pbartok@novell.com> 
10189
10190         * Control.cs (PaintControlBackground): Set the graphics object
10191           on our PaintEvent to null to prevent it from being disposed
10192           when the PaintEvent gets disposed
10193
10194 2006-04-12  Alexander Olk  <alex.olk@googlemail.com>
10195
10196         * ThemeWin32Classic.cs: Use even more SystemBrushes and SystemPens
10197         * ThemeNice.cs, ThemeClearlooks.cs: fix typo
10198
10199 2006-04-12  Peter Dennis Bartok  <pbartok@novell.com>
10200
10201         * Control.cs: 
10202           - Added transparency check to BackColor property. Transparent
10203             backgrounds are only allowed if the control styles permit it
10204           - Added recursive painting of parent control background and
10205             foreground if a control with a transparent backcolor is drawn
10206             (Thanks to Tim Ringenback for providing his 'hack' as a base
10207              for this patch) Fixes #77985 and #78026.
10208           - Added Opaque style check before calling OnPaintBackground, no
10209             need to draw the background if the control is opaque
10210           - Removed ControlAccessibleObject owner variable (inherited from
10211             base, no need to define again)
10212           - Added some documentation links explaining the drawing events
10213             and styles
10214
10215 2006-04-11  Peter Dennis Bartok  <pbartok@novell.com> 
10216
10217         * Splitter.cs (CalculateSplitPosition): Corrected the bad assumption
10218           that the affected control is the located at the left border of our
10219           parent (Fixes #77936)
10220
10221 2006-04-11  Peter Dennis Bartok  <pbartok@novell.com>
10222
10223         * TextBoxBase.cs: When rendering disabled or readonly controls,
10224           draw the background with 'Control' instead of 'Window' color as
10225           long as the user hasn't specifically set a color
10226
10227 2006-04-11  Peter Dennis Bartok  <pbartok@novell.com> 
10228
10229         * TextBoxBase.cs: Don't try to shortcut by checking against base.Text
10230           since that won't be updated if the user types text (only if it's
10231           programatically set)
10232
10233 2006-04-11  Peter Dennis Bartok  <pbartok@novell.com>
10234
10235         * ScrollableControl.cs: Calculate DisplayRect dynamically, so that
10236           layout changes do to app-triggered resizes will have the proper
10237           display rectangle for layout
10238
10239 2006-04-11  Alexander Olk  <alex.olk@googlemail.com>
10240
10241         * ThemeWin32Classic.cs:
10242           - Make use of the SystemBrushes and SystemPens wherever possible
10243           - Corrected some highlight colors
10244           - Corrected RadioButton and CheckBox FlatStyle.Flat and Popup
10245             drawing
10246         * Theme.cs: Added Empty field to CPColor struct
10247
10248 2006-04-11  Peter Dennis Bartok  <pbartok@novell.com>
10249
10250         * ScrollabeControl.cs: We need to consider whether or not a scrollbar
10251           is displayed when calculating the display rectangle. Thanks to Mike
10252           for teaching me the err of my ways.
10253
10254 2006-04-10  Peter Dennis Bartok  <pbartok@novell.com>
10255
10256         * ScrollableControl.cs:
10257           - Rewrote DisplayRectangle code, now returning the proper x/y coords 
10258             (instead of 0,0) and we now return the real width/height instead of
10259             just the clientrectangle, adjusted for padding. The rectangle is
10260             now cached and created by the new CalculateDisplayRectangle method.
10261           - Created new CalculateDisplayRectange method, which basically does
10262             what get_DisplayRectangle() did originally, but now using the 
10263             right edge instead of DisplayRectangle to determine the size of
10264             our scrollbars
10265           - get_Canvas(): Fixed it to properly calculate canvas for 
10266             right/bottom controls which seem to be placed to the right/bottom
10267             of any controls that have a fixed location
10268           - Removed TODO that's taken care of
10269           - Removed NotImplementeds and attempted to implement AdjustFormScrollBars
10270             and SetDisplayRectLocation according to new MSDN2 docs
10271           - Added call to PerformLayout in OnVisibleChanged, MS causes a layout
10272             event when that is called, this is added for compatibility
10273           - ScrollControlIntoView(): Implemented.
10274           - Switched scrollbars to be implicit, they shouldn't be selectable
10275         * ContainerControl: Now that ScrollControlIntoView is implemented, we 
10276           call it when the active control is set/changed
10277         * ScrollBar.cs: Added support for generating Win32 scrollbar messages
10278         * ImplicitHScrollBar.cs, ImplicitVScrollBar.cs: Now setting new base
10279           implicit_control variable (used for native Win32 message generation)
10280         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs: Added new 
10281           HorizontalScrollBarHeight and VerticalScrollBarWidth properties
10282         * ThemeWin32Classic.cs: Now calling the driver for the scrollbar sizes
10283         * XplatUIStructs.cs: Added ScrollBarCommands enum
10284
10285 2006-04-10  Jackson Harper  <jackson@ximian.com>
10286
10287         * ButtonBase.cs:
10288         * CheckedListBox.cs:
10289         * ComboBox.cs:
10290         * DataGrid.cs:
10291         * DataGridView.cs:
10292         * Form.cs:
10293         * GroupBox.cs:
10294         * ListBox.cs:
10295         * PrintPreviewControl.cs:
10296         * ProgressBar.cs:
10297         * PropertyGrid.cs:
10298         * Splitter.cs:
10299         * StatusBar.cs:
10300         * TrackBar.cs:
10301         * UpDownBase.cs: Fixup base event overrides.
10302         
10303 2006-04-06  Mike Kestner  <mkestner@novell.com>
10304
10305         * ScrollBar.cs: fix "new event" declarations (#76509) and bounds check
10306         all user-initiated value changes to min <= value <= max-thumbsz+1.
10307         (set_Value): check for vert/horiz when calculating new thumb position.
10308         (LargeIncrement): bounds check to stop pos at max - thumb_size + 1
10309         like MS does.
10310         (OnMouseMoveSB): refactor the thumb dragging code and refine
10311         invalidation logic to reduce flicker.
10312         (SetEndPosition): bounds check to stop pos at max - thumb_size + 1
10313         (SmallIncrement): bounds check to stop pos at max - thumb_size + 1
10314         (UpdateThumbPosition): small code readability cleanup
10315
10316 2006-04-10  Alexander Olk  <alex.olk@googlemail.com>
10317
10318         * ThemeNice.cs: Small UI polishing. Draw borders a little bit
10319           different
10320
10321 2006-04-08  Alexander Olk  <alex.olk@googlemail.com>
10322
10323         * ThemeNice.cs: Use a better graphics effect when a button is pressed
10324
10325 2006-04-08  Alexander Olk  <alex.olk@googlemail.com>
10326
10327         * Theme.cs: Added GetDashPen and GetSizedPen to SystemResPool
10328         * ThemeWin32Classic.cs: Make use of the new SystemResPool methods.
10329           This dramatically reduces the number of Pen.Dispose calls. 
10330           Where possible call ResPool methods only once instead of calling it
10331           over and over again (for example for the same color).
10332
10333 2006-04-06  Mike Kestner  <mkestner@novell.com>
10334
10335         * TabControl.cs: fix for SelectedIndex updating on TabPage removals.
10336         Also remove an unused private field on the collection. Fixes #77972.
10337
10338 2006-04-06  Alexander Olk  <alex.olk@googlemail.com>
10339
10340         * ThemeNice.cs: Added ToolBar drawing code
10341
10342 2006-04-06  Mike Kestner  <mkestner@novell.com>
10343
10344         * Form.cs (ShowDialog): MS allows IWin32Window param to be a non-form.
10345         I'm assuming that means we need to look up the toplevel for the
10346         provided control. Fixes the crash trace in #77911 but exposes another
10347         crash in some strange reflection usage in NDocGui.
10348
10349 2006-04-06  Alexander Olk  <alex.olk@googlemail.com>
10350
10351         * ThemeNice.cs: Gave it a little silver touch and added Images
10352           method
10353         * FontDialog.cs: FontDialog is not resizable
10354         * FileDialg.cs: Added SizeGripStyle.Show
10355
10356 2006-04-05  Jackson Harper  <jackson@ximian.com>
10357
10358         * KeyboardLayouts.cs: Remove warning.
10359
10360 2006-04-05  Jackson Harper  <jackson@ximian.com>
10361
10362         * Control.cs: Enable OnPaintInternal so we can use it for drawing
10363         all of our controls instead of Paint +=.
10364         * ListBox.cs:
10365         * ListView.cs:
10366         * MenuAPI.cs:
10367         * MessageBox.cs:
10368         * NotifyIcon.cs:
10369         * ProgressBar.cs:
10370         * ScrollBar.cs:
10371         * Splitter.cs:
10372         * StatusBar.cs:
10373         * TabControl.cs:
10374         * TextBoxBase.cs:
10375         * ToolBar.cs:
10376         * TrackBar.cs:
10377         * UpDownBase.cs:
10378         * ComboBox.cs: Remove handling of WM_PAINT and WM_ERASEBKGND and
10379         use OnPaintInternal. Remove Width/Height and Visible checks in
10380         paint handler, this is done at a higher level now.
10381         * GroupBox.cs: Don't need to handle WM_ERASEBKGND anymore.
10382         * PaintEventArgs.cs: Add a handled flag so controls that don't
10383         want anymore painting after OnPaintInternal can make sure OnPaint
10384         isn't called.
10385
10386 2006-04-05  Mike Kestner  <mkestner@novell.com>
10387
10388         * Form.cs: fix the menu WndProc hacks to respect the native enabled
10389         state of the form, so that we don't process events when Modal dialogs
10390         are up. Fixes #77922.
10391
10392 2006-04-05  Alexander Olk  <alex.olk@googlemail.com>
10393
10394         * Mime.cs: Default for range length is 1 not 0. If set to 0 no match
10395           checking is done.
10396
10397 2006-04-05  Mike Kestner  <mkestner@novell.com>
10398
10399         * XplatUIX11.cs: fix typo in the EX_APPWINDOW transient patch.
10400
10401 2006-04-05  Mike Kestner  <mkestner@novell.com>
10402
10403         * ListView.cs (HeaderMouseMove): null guarding for the over column
10404         when setting up the drag_to_index.  Fixes #78015.
10405
10406 2006-04-04  Peter Dennis Bartok  <pbartok@novell.com>
10407
10408         * XplatUIX11.cs: If WS_EX_APPWINDOW isn't set we don't want to show up
10409           in the taskbar. Transient windows seem to accomplish that.
10410
10411 2006-04-04  Peter Dennis Bartok  <pbartok@novell.com> 
10412
10413         * Form.cs:
10414           - Re-enabled CreateParams.X/Y code for FormStartPosition
10415           - Added code for manual placement when creating the Control
10416           - Incomplete patch to treat MDI forms differently when
10417             setting the ClientSizeCore. (Still need to figure out handling
10418             x/y coords there)
10419         * XplatUIX11.cs:
10420           - When we're explicitly setting the X/Y position of a non-Child
10421             window, let the WM know. Metacity really wants this.
10422
10423 2006-04-04  Alexander Olk  <alex.olk@googlemail.com>
10424
10425         * ThemeNice.cs: Added CPDrawButton
10426
10427 2006-04-04  Alexander Olk  <alex.olk@googlemail.com>
10428
10429         * ThemeNice.cs: Changed the color for focused buttons and activated
10430           the arrows for small scroll buttons.
10431
10432 2006-04-04  Alexander Olk  <alex.olk@googlemail.com>
10433
10434         * ThemeWin32Classic.cs: Removed DrawFlatStyleButton, not needed
10435           anymore. Changed some method modifiers to protected (virtual)
10436         * ThemeClearlooks.cs: Updated to reflect the ThemeWin32Classic
10437           changes
10438         * ThemeNice.cs: Updated to reflect the ThemeWin32Classic changes.
10439           Updated drawing of menus, buttons and progressbars; added
10440           CPDrawBorder3D 
10441
10442 2006-04-03 Gonzalo Paniagua Javier <gonzalo@ximian.com>
10443
10444         * ImageListStreamer.cs: implemented serialization/deserialization
10445         of the images.
10446
10447 2006-04-03  Alexander Olk  <alex.olk@googlemail.com>
10448
10449         * ThemeWin32Classic.cs:
10450           - Removed all the DrawFrameControl stuff; CPDrawButton,
10451             CPDrawCheckBox and CPDrawRadioButton are now handled directly
10452             inside the methods
10453           - Updated and corrected the drawing code of CPDrawButton,
10454             CPDrawCheckBox and CPDrawRadioButton to better match ms
10455           - Updated theme checkbox and radiobutton code to use the CP*
10456             methods
10457
10458 2006-03-31  Peter Dennis Bartok  <pbartok@novell.com> 
10459
10460         * XplatUIX11.cs: Enable clipping again now that the libgdiplus
10461           bug is fixed
10462
10463 2006-03-31  Jackson Harper  <jackson@ximian.com>
10464
10465         * XplatUIX11.cs: Somehow we get SETCURSORS for bad windows
10466         sometimes.
10467         * UpDownBase.cs: Don't CreateGraphics manually, use a
10468         Refresh. Ideally we would invalidate the correct areas here.
10469
10470 2006-03-31  Peter Dennis Bartok  <pbartok@novell.com> 
10471
10472         * XplatUIX11.cs: 
10473           - We now track the mapping state of windows. If a window (or 
10474             one of it's parents) is not mapped we no longer permit
10475             WM_PAINT messages to be generated since we'd otherwise get 
10476             lots of BadMatch X errors. Jackson did all the work figuring
10477             out the problem.
10478           - Destroying the caret if the window it's contained in is 
10479             destroyed. Can't use regular DestroyCaret method since it
10480             might fall into a drawing function (trying to remove the
10481             caret) and with that generate new BadMatch errors. Again,
10482             Jackson tracked this down.
10483           - Changed DestroyChildWindows to SendWMDestroyMessages, we now
10484             make sure we send the messages to all windows. (The old code
10485             would send the WM_DESTROY to the window, and then all child
10486             windows would be 'gone' because the WM_DESTROY handle lookup
10487             would no longer find the destroyed window)
10488         * Hwnd.cs: Added Mapping property to track mapping state of hwnd
10489         * X11Structs.cs: Added WindowType enum for MapWindow/UnmapWindow
10490
10491 2006-03-31  Jackson Harper  <jackson@ximian.com>
10492
10493         * ScrollableControl.cs: Dont recalc if we are not visible.
10494
10495 2006-03-31  Mike Kestner  <mkestner@novell.com>
10496
10497         * Control.cs (SetVisibleCore): move the CreateControl call up ahead of
10498         the visibility branch.
10499
10500 2006-03-31  Jackson Harper  <jackson@ximian.com>
10501
10502         * ScrollBar.cs: Cap values when incrementing/decrementing.
10503
10504 2006-03-31  Mike Kestner  <mkestner@novell.com>
10505
10506         * MenuAPI.cs: setup menu.tracker for popup/context menus.
10507         * ToolTip.cs: guard against timer expirations with no active control.
10508         Not sure why it happened.
10509
10510 2006-03-31  Mike Kestner  <mkestner@novell.com>
10511
10512         * ThemeWin32Classic.cs: add some horizontal padding space for the tip
10513         text.
10514         * ToolTip.cs: Position the tooltip based on where the cursor is at
10515         popup time, not at MouseEnter time.  Add a Down state so that we don't
10516         redisplay tips without a Leave. Use faked XplatUI.GetCursorInfo for
10517         positioning offset. Lookup DisplaySize at positioning time, since it
10518         can theoretically change during invocation.
10519         * XplatUIWin32.cs: fake GetCursorInfo until pdb can do it properly.
10520         * XplatUIX11.cs: fake GetCursorInfo until pdb can do it properly.
10521
10522 2006-03-31  Alexander Olk  <alex.olk@googlemail.com>
10523
10524         * ThemeWin32Classic.cs: Use CPDrawBorder3D to draw a GroupBox.
10525           Fixes behaviour when the Text property of the box is String.Empty
10526
10527 2006-03-31  Peter Dennis Bartok  <pbartok@novell.com>
10528
10529         * XplatUIX11.cs: Only send mouseleave for our client windows, not
10530           for the whole window (otherwise we get WM_MOUSE_LEAVE twice for
10531           a window)
10532
10533 2006-03-31  Alexander Olk  <alex.olk@googlemail.com>
10534
10535         * FileDialog.cs: Visual enhancement for the popup buttons in 
10536           PopupButtonPanel
10537
10538 2006-03-31  Alexander Olk  <alex.olk@googlemail.com>
10539
10540         * ColorDialog.cs, FontDialog.cs: Make use of the updated 3D border
10541           code
10542
10543 2006-03-30  Alexander Olk  <alex.olk@googlemail.com>
10544
10545         * ThemeWin32Classic.cs: Updated MainMenu drawing of selected and
10546           highlighted menu items to match ms
10547
10548 2006-03-30  Peter Dennis Bartok  <pbartok@novell.com> 
10549
10550         * XplatUIX11.cs: Don't set a clip rectangle unless it's not empty
10551
10552 2006-03-30  Mike Kestner  <mkestner@novell.com>
10553
10554         * Menu.cs (SelectedItem): use new MenuItem.Selected prop.
10555         * MenuAPI.cs: use new MenuItem.Selected prop. redraw MainMenu when we
10556         go active to account for HotLight to Selected transition.
10557         * MenuItem.cs: add internal Selected prop. Fill out the Status
10558         property by calculating it from item info. Add HotLight,
10559         NoAccelerator, Checked, Grayed, and Disabled flags where appropriate.
10560
10561 2006-03-30  Mike Kestner  <mkestner@novell.com>
10562
10563         * MenuItem.cs: only emit DrawItem and MeasureItem for OwnerDraw.
10564
10565 2006-03-29  Jackson Harper  <jackson@ximian.com>
10566
10567         * Form.cs: Implement TODO.
10568
10569 2006-03-29  Peter Dennis Bartok  <pbartok@novell.com> 
10570
10571         * PrintPreviewDialog.cs: Implemented missing methods and events; still
10572           missing proper dialog setup in the constructor
10573
10574 2006-03-29  Peter Dennis Bartok  <pbartok@novell.com>
10575
10576         * ProgressBar.cs: Added 2.0 Style property that apps seem to use
10577         * Control.cs:
10578           - Implemented CheckForIllegalCrossThreadCalls, removed TODO
10579           - Fixed ResetBindings and removed TODO
10580           - Added check for cross-thread calls to get_Handle()
10581           - Added Marshaller attribute for set_Font to satisfy class status
10582         * FontDialog.cs: Removed TODOs that seemed implemented
10583         * UpDownBase.cs: Removed unneeded TODO and Fixme
10584         * MessageBox.cs: Implemented support for Default button and removed TODO
10585         * FileDialog.cs: Removed obsolete TODO
10586         * DomainUpDown.cs: Removed obsolete TODO
10587         * ButtonBase.cs: Removed obsolete TODO
10588         * XplatUIWin32.cs: Removed obsolete TODO
10589         * Form.cs:
10590           - Removed obsolete TODO
10591           - Calling CheckAcceptButton when the acceptbutton is changed to allow
10592             internal status updates
10593           - Making sure the active control is selected when the control is created
10594         * CurrencyManager.cs: Removed obsolete TODO
10595
10596 2006-03-29  Mike Kestner  <mkestner@novell.com>
10597
10598         * *.cs: fix remaining corcompare issues for 1.1 API with the exception
10599         of PrintPreviewDialog and RichTextBox.
10600
10601 2006-03-29  Alexander Olk  <alex.olk@googlemail.com>
10602
10603         * Theme.cs: Added a little helper to SystemResPool to get the Dark,
10604           DarkDark, Light and LightLight colors for a specific color
10605         * ThemeWin32Classic.cs:
10606           - Use Button drawing code to draw RadioButtons and CheckBoxes with
10607             Appearance = Button 
10608           - Make use of the new ResPool helper CPColor
10609           - Draw ProgressBar and StatusBar with correct 3D borders
10610
10611 2006-03-29  Alexander Olk  <alex.olk@googlemail.com>
10612
10613         * ColorDialog.cs: Return selected color. Fixes bug #77940.
10614
10615 2006-03-28  Mike Kestner  <mkestner@novell.com>
10616
10617         * ListView.cs: fix Icon layout to plan for scrollbar widths when
10618         calculating col/row counts.
10619
10620 2006-03-28  Mike Kestner  <mkestner@novell.com>
10621
10622         * ColumnHeader.cs:
10623         * ListView.cs:
10624         * ListViewItem.cs:
10625         * Menu.cs: 
10626         switch to explicit interface method implementation for some methods
10627         corcompare identifies as inconsistent with MS.
10628
10629 2006-03-28  Mike Kestner  <mkestner@novell.com>
10630
10631         * MainMenu.cs: 
10632         * Menu.cs:
10633         add a few missing methods from the class status output.
10634
10635 2006-03-28  Alexander Olk  <alex.olk@googlemail.com>
10636
10637         * ControlPaint.cs: Fixed ControlPaint.Light method. Results are now
10638           correct.
10639
10640 2006-03-28  Mike Kestner  <mkestner@novell.com>
10641
10642         * MenuAPI.cs: Deactivate on MainMenu item click. Fixes #77917.
10643
10644 2006-03-27  Mike Kestner  <mkestner@novell.com>
10645
10646         * ThemeWin32Classic.cs: Switch flat toolbars to use RaisedInner for
10647         the Hilight state to adapt to Alex's CPDrawBorder3D changes.
10648
10649 2006-03-27  Alexander Olk  <alex.olk@googlemail.com>
10650
10651         * ThemeWin32Classic.cs: Rewrote Button drawing code to match ms.
10652
10653 2006-03-25  Alexander Olk  <alex.olk@googlemail.com>
10654
10655         * ThemeWin32Classic.cs:
10656           - GroupBox: Inserted a little gap between the text and the lines
10657             on the right side
10658           - Made the code in CPDrawBorder3D more readable
10659           - Corrected the drawing location of the up and down arrows in 
10660             CPDrawScrollButton
10661
10662 2006-03-25  Alexander Olk  <alex.olk@googlemail.com>
10663
10664         * ControlPaint.cs: Corrected line widths in DrawBorder for
10665           ButtonBorderStyle Inset and Outset
10666
10667 2006-03-25  Alexander Olk  <alex.olk@googlemail.com>
10668
10669         * ThemeWin32Classic.cs:
10670           - Rewrote the totally broken CPDrawBorder3D method. That was
10671             one of the main problems for the terrific ThemeWin32Classic
10672             look
10673           - Updated and corrected Button drawing
10674           - Correct the dimensions of the SizeGrip to match ms ones
10675           - Removed a small drawing glitch in DrawComboBoxEditDecorations
10676         * XplatUIX11.cs: Draw borders with BorderStyle = Fixed3D with
10677           Border3DStyle.Sunken to match ms.
10678
10679 2006-03-25  Alexander Olk  <alex.olk@googlemail.com>
10680
10681         * ThemeWin32Classic.cs: First small part of the "de-uglify
10682           ThemeWin32Classic" effort, SizeGrip
10683
10684 2006-03-24  Jackson Harper  <jackson@ximian.com>
10685
10686         * XplatUIX11.cs: Give a max idle time of one second, this matches
10687         MS and forces an Idle event every second when there are no other
10688         events in the queue.
10689
10690 2006-03-24  Mike Kestner  <mkestner@novell.com>
10691
10692         * ListView.cs: Handle (Large|Small)ImageList == null more robustly.
10693         * ListView.Item.cs: fix layout issues with null image lists and images
10694         smaller than checkbox size.
10695         * ThemeWin32Classic.cs: Draw a 12 pixel line in ListView LargeIcon
10696         mode like MS does.  It's weird, but consistent.  ;-)
10697         Fixes #77890.
10698
10699 2006-03-24  Mike Kestner  <mkestner@novell.com>
10700
10701         * ListView.cs: Scroll wheel support for the item control.  Fixes
10702         #77839.
10703
10704 2006-03-23  Jackson Harper  <jackson@ximian.com>
10705
10706         * ScrollableControl.cs: Special case negative sized areas, not
10707         zero.
10708         * MonthCalendar.cs: Save the rect of the clicked date so we can
10709         use it for invalidation.
10710         - Try to cut down on the number of invalidates
10711         - Invalidate the rect the mouse is over and was over when moving
10712         the mouse, so we get the focus box following the cursor.
10713
10714 2006-03-23  Mike Kestner  <mkestner@novell.com>
10715
10716         * ThemeWin32Classic.cs: fix FullRowSelect selection background and
10717         focus rectangle drawing. Fixes #77835.
10718
10719 2006-03-23  Mike Kestner  <mkestner@novell.com>
10720
10721         * XplatUIX11.cs: rework the fix for #77828 by changing the order of
10722         the if and else if and reverting back to the original == check on the
10723         None conditional.
10724
10725 2006-03-23  Alexander Olk  <alex.olk@googlemail.com>
10726
10727         * FontDialog.cs: Update the example panel if the selected index of
10728           the fontListBox changes.
10729
10730 2006-03-23  Alexander Olk  <alex.olk@googlemail.com>
10731
10732         * FileDialog.cs: Make FileDialog remember which directory it was in
10733           last in the same execution.
10734
10735 2006-03-22  Mike Kestner  <mkestner@novell.com>
10736
10737         * FileDialog.cs: make the DropDownMenu on the toolbar display
10738         RadioChecks since they are mutually exclusive and that's what MS does.
10739
10740 2006-03-22  Mike Kestner  <mkestner@novell.com>
10741
10742         * Theme.cs: add Color param to CPDrawMenuGlyph.
10743         * ThemeWin32Classic.cs: do color specific menu glyph rendering so that
10744         checks and radio marks and arrows are visible on highlighted items.
10745         * ControlPaint.cs: update to use new Theme signature.
10746
10747 2006-03-22  Mike Kestner  <mkestner@novell.com>
10748
10749         * MenuAPI.cs: only process Enter and arrow keypresses if the tracker
10750         is active. Fixes #77870.
10751
10752 2006-03-22  Alexander Olk  <alex.olk@googlemail.com>
10753
10754         * FileDialog.cs: Corrected TabIndex order and set fileNameComboBox
10755           to be focused/selected after startup
10756
10757 2006-03-22  Alexander Olk  <alex.olk@googlemail.com>
10758
10759         * ColorDialog.cs: 
10760           - Corrected behaviour of Color, AllowFullOpen, FullOpen,
10761             CustomColors and ShowHelp properties
10762           - Some internal rewrites to get better results when using the
10763             ColorMatrix
10764
10765 2006-03-22  Mike Kestner  <mkestner@novell.com>
10766
10767         * ListView.cs: hook into Peter's new ResetMouseHover capability to fix
10768         HoverSelection.  Fixes #77836.
10769
10770 2006-03-22  Mike Kestner  <mkestner@novell.com>
10771
10772         * FileDialog.cs: bugfixes for the toolbar.  Use PushButtons instead of
10773         ToggleButtons.  (De)Sensitize the Back button around a stack count of
10774         1, not 0.  Update ButtonSize based on a pixel count of the win32
10775         control.  Adjust the toolbar size/location for new button size.
10776
10777 2006-03-22  Jackson Harper  <jackson@ximian.com>
10778
10779         * XplatUIX11.cs: Don't handle configurenotifys if PostQuitState is
10780         true.
10781         * ScrollBar.cs: When doing increments and decrements we need to
10782         set the Value property so that ValueChanged gets raised. A
10783         possible optimization here would be to make an internal SetValue
10784         that doesn't invalidate immediately.
10785         * ToolTip.cs: Tooltips get added to their container (when
10786         supplied) so they get disposed when the container is disposed.
10787         - Don't create tooltips for String.Empty. This prevents all these
10788         little 2-3 pixel windows from showing up when running nunit-gui
10789         and driving me mad.
10790         * Form.cs: Don't set topmost when setting the owner if the handles
10791         haven't been created yet.  The topmost set will happen when the
10792         handles are created.
10793
10794 2006-03-22  Peter Dennis Bartok  <pbartok@novell.com> 
10795
10796         * XplatUIX11.cs:
10797           - DeriveWindowStyles: Fixed typo in borderstyle generation (#77828)
10798           - SetVisible: Sending WINDOWPOSCHANGED for all controls when made 
10799             visible (to allow them to recalculate their sizes)
10800
10801 2006-03-21  Mike Kestner  <mkestner@novell.com>
10802
10803         * ThemeWin32Classic.cs: major refactoring of the ToolBar rendering
10804         methods. Removed a ton of redundant code.  Still not really happy with
10805         the border rendering, but I think that's mainly because of the
10806         ControlDarkDark being black instead of a dark grey. Depending on how 
10807         close we want to be, we might want to revisit those color choices.
10808         Among the new features added during the refactor were DropDownArrow
10809         pressed rendering, Disabled image rendering.  Proper flat appearance
10810         boundary rendering.  Removed the Divider and Wrapping dividers since I
10811         can't figure out any combination of themes and conditions to make the
10812         MS control draw a horizontal line on a toolbar despite what the
10813         Divider property docs indicate.
10814         * ToolBar.cs: rewrite the layout engine. Fixes numerous flicker
10815         conditions and incorrect layout.  Updated to coding standard.
10816         * ToolBarButton.cs: refactored layout and positioning code from
10817         ToolBar to here.  Invalidate wherever possible instead of forcing
10818         redraws of the whole toolbar. 
10819         (Known remaining issues: explicit ButtonSize smaller than provided
10820         images.)
10821
10822 2006-03-21  Mike Kestner  <mkestner@novell.com>
10823
10824         * ContextMenu.cs (Show): use the position parameter instead of just
10825         showing at the MousePosition.
10826
10827 2006-03-21  Jackson Harper  <jackson@ximian.com>
10828
10829         * TabControl.cs: Remove the call to ProcessKeyEventArgs and let
10830         control handle this.
10831         * TreeNodeCollection.cs: If we are clearing the root node we need
10832         to reset top_node so calcs can still happen.
10833         * ThemeWin32Classic.cs: This is a Flags so we need to check
10834         properly.
10835         
10836 2006-03-21  Jackson Harper  <jackson@ximian.com>
10837
10838         * DataGrid.cs: Create columns when the binding context has been
10839         changed.
10840         * X11Structs.cs: Keysyms are uints.
10841         - Add size to fix build.
10842
10843 2006-03-21  Peter Dennis Bartok  <pbartok@novell.com> 
10844
10845         * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs, XplatUIWin32.cs, 
10846           XplatUIOSX.cs: 
10847           - Added ResetMouseHover method to allow controls to retrigger
10848             hovering if they need it more than once
10849           - Implemented MouseHoverTime and MouseHoverSize properties
10850         * Timer.cs: Start() must reset the interval
10851         * SystemInformation.cs: Added 2.0 MouseHoverTime and MouseHoverSize
10852           properties
10853
10854 2006-03-21  Jackson Harper  <jackson@ximian.com>
10855
10856         * X11Keyboard.cs: improved layout detection. Move the nonchar
10857         tables into this file.
10858         * KeyboardLayouts.cs: Move the tables into resource files.
10859
10860 2006-03-21  Mike Kestner  <mkestner@novell.com>
10861
10862         * ListView.cs: use OnItemActivated to raise events. Fixes #77834.
10863
10864 2006-03-21  Alexander Olk  <alex.olk@googlemail.com>
10865
10866         * Mime.cs: Various speed optimizations. Looking up mime types
10867           is now 2 times faster than before
10868
10869 2006-03-17  Peter Dennis Bartok  <pbartok@novell.com> 
10870
10871         * CreateParams.cs: Added internal menu field
10872         * Control.cs: 
10873           - Switched call order for UpdateBounds; now we always call
10874             the one that also takes ClientSize, and we're calculating the 
10875             client size via driver method in the others. The previous
10876             method of tracking client size by difference wasn't working
10877             for forms where even the starting client size wouldn't match
10878             the overall form size (due to borders) (Part of fix for #77729)
10879           - CreateParams(): Do not use parent.Handle unless the handle is
10880             already created. Causes havoc with Nexxia and throws off our
10881             creation of controls
10882         * XplatUIX11.cs:
10883           - Created new PerformNCCalc method to trigger WM_NCCALCSIZE message
10884           - Switched handling of ConfigureNotify over to new PerformNCCalc 
10885             method (consolidates code)
10886           - Changed RequestNCRecalc to use new PerformNCCalc method
10887           - Added calls to RequestNCRecalc when menus and borders are changed
10888             to allow app to set NC size. (Part of fix for #77729) This matches
10889             when MS send a WM_NCRECALC on Win32 windows.
10890           - Now sending WM_WINDOWPOSCHANGED when toplevel for is made visible
10891             (Part of fix for #77729). This matches what MS does, they also
10892             send that message when the form is made visible.
10893           - XException.GetMessage: Improved usability of X errors by including
10894             a translation of the window into Hwnd and Control class
10895           - Improved debug info for window creation, reparenting and destruction
10896           - Created helper method WindowIsMapped() [Currently not used]
10897         * XplatUIWin32.cs: Added ToString() debug helper to RECT structure
10898         * Form.cs:
10899           - CreateParams: Now setting our menu on the new internal menu field
10900           - SetClientSizeCore: Now passing cp.menu instead of ActiveMenu to
10901             avoid calculating the same property twice
10902         * Hwnd.cs:
10903           - Improved usability of ToString() for debugging purposes
10904           - GetWindowRectangle(): Now uses proper CalcMenuBarSize method to
10905             determine the height of the menu, instead of just the font. This
10906             required to also create a graphics context and to keep a bmp 
10907             around (for performance reasons)
10908
10909 2006-03-17  Peter Dennis Bartok  <pbartok@novell.com>
10910
10911         * MenuAPI.cs: Added OnMouseUp method
10912         * Form.cs:
10913           - Now remembering the requested client size, avoids size errors
10914           - WndProc: Now handling WM_xBUTTONUP and passing it to MenuTracker
10915             instead of base if the menu is active. This is required due to
10916             control now capturing and releasing on down/up and it would
10917             prematurely release our menu capture
10918
10919 2006-03-17  Jackson Harper  <jackson@ximian.com>
10920
10921         * KeyboardLayouts.cs: Add the czech layouts.
10922
10923 2006-03-16  Jackson Harper  <jackson@ximian.com>
10924
10925         * Control.cs: Use the viewport space when sizing not the controls
10926         client size, so things like ScrollableControl that effect the
10927         viewport size (when scrollbars are added) are computed correctly.
10928         * BindingContext.cs: Cleanup to use the DataSourceEntrys instead
10929         of ManagerEntrys.
10930         - Handle creating BindingManagers for null data sources.
10931         * DataGrid.cs: Bind the cached_currencymgr_events to the real data
10932         source, otherwise when rows are added they are added to the 'fake'
10933         datasource and we will crash when trying to set the position in
10934         those rows.
10935         - Use Implicit scrollbars on the datagrid so they arent
10936         selectable.
10937         
10938 2006-03-16  Jackson Harper  <jackson@ximian.com>
10939
10940         * Binding.cs:
10941         * InternalWindowManager.cs:
10942         * MdiWindowManager.cs:
10943         * X11Keyboard.cs: I really want Mike to love me again (fix
10944         compiler warnings).
10945
10946 2006-03-16  Peter Dennis Bartok  <pbartok@novell.com>
10947
10948         * DataGrid.cs:
10949           - OnMouseDown: Switch to editing mode when clicking on the cell
10950                          even if we're clicking on the cell that's currently 
10951                          selected
10952           - ProcessGridKey: Left/Right now wrap like MS.Net does
10953           - ProcessGridKey: Tab now knows to add a new row when tab is
10954                             pressed in the cell of the last column of the 
10955                             last row
10956           - ProcessGridKey: Enter now adds another row  if pressed in the last
10957                             row and selectes the new row, same column cell
10958           - ProcessGridKey: Home/End navigate columns, not rows, like 
10959                             originally implemented
10960           - Broke ProcessKeyPreview code out into an extra Internal method
10961             so it can be called from the edit code
10962         * DataGridTextBox.cs (ProcessKeyMessage):
10963           - Switched to accept Tab keypresses
10964           - Added F2 handling to allow jumping to the end of the edited cell
10965           - Added logic to allow moving caret left/right inside edited cell
10966             and making the edited cell jump when the caret hits cell borders
10967           - Tab and Enter are now passed to the datagrid after being handled
10968         * TextBoxBase.cs:
10969           - Removed capture code now that Control handles it
10970           - set_SelectionStart now ensures caret is visible
10971
10972 2006-03-16  Jackson Harper  <jackson@ximian.com>
10973
10974         * TrackBar.cs: Debackwards the increment/decrement for handling
10975         mouse clicks on the bar with vertical trackbars.
10976         * ThemeWin32Classic.cs: Draw vertical trackbars with 0 at the
10977         bottom to match MS.
10978
10979 2006-03-16  Mike Kestner  <mkestner@novell.com>
10980
10981         * ListView.cs: make shift/ctrl keyboard and mouse selection 
10982         consistent with the MS control. Fix a bug in
10983         SelectedListViewItemCollection.Clear that was pissing me off for the
10984         better part of a day because the collection was being altered
10985         underneath us as we walked the list.
10986
10987 2006-03-16  Peter Dennis Bartok  <pbartok@novell.com> 
10988
10989         * Control.cs: Not sure how we could miss this so long, but it seems
10990           that MS.Net has Capture set all the way from before calling 
10991           OnMouseDown through sending the mouse events until after
10992           OnMouseUp. This will fix DataGrid's selection being set to end
10993           at the location of the MouseUp.
10994
10995 2006-03-15  Jackson Harper  <jackson@ximian.com>
10996
10997         * BindingContext.cs: Check the binding after its added so that it
10998           can initialize the binding managers and hookup to events.
10999         * Binding.cs: Data members seem to sometimes include rows/cols in
11000           the format Row.Column we now take this into account.
11001           - Hookup to the position changed event so we can update the
11002           control when the position has changed in the data set.
11003         * CurrencyManager.cs: Take into account the row/col naming
11004           convention when creating dataset tables.
11005         * BindingContext.cs: Using a newer better way of storing
11006           datasource/datamember pairs.  Hopefully this better matches MS for
11007           looking up binding managers.
11008
11009
11010 2006-03-15  Jackson Harper  <jackson@ximian.com>
11011
11012         * BindingContext.cs: The currency manager needs the data member
11013         name, if the member is a data set we use the name to find the
11014         correct table.
11015         * CurrencyManager.cs: When creating the list prefer an IList over
11016         an IListSource.
11017         - Attempt to create a DataTable from a DataSet (TODO: might need
11018         some better error checking here, although MS doesn't seem to have much)
11019         - If we have a DataTable create a view and use it as our list.
11020
11021 2006-03-15  Mike Kestner  <mkestner@novell.com>
11022
11023         * ListView.cs: keep a matrix of the icon mode layout to facilitate
11024         keyboard navigation. Support Up/Down/Left/Right selection correctly
11025         for all 4 View modes.
11026         * ListViewItem.cs: add internal row/col fields for icon layouts.
11027
11028 2006-03-15  Jackson Harper  <jackson@ximian.com>
11029
11030         * TabControl.cs: Redraw the tabs when we resize so their newly
11031         calculated sizes are drawn on screen.
11032         * X11Keyboard.cs: Begginnings of XIM support.  We also now support
11033         composite characters.
11034         * XplatUIX11.cs: Keyboard driver needs to know about focus changes
11035         - filter events so that composite characters can be created
11036         patches by peter
11037         * X11Structs.cs: Add XIMProperties enum.
11038
11039 2006-03-14  Peter Dennis Bartok  <pbartok@novell.com> 
11040
11041         * Control.cs (BringToFront, SendToBack): Don't use window or handle
11042           unless it's created
11043
11044 2006-03-14  Peter Dennis Bartok  <pbartok@novell.com>
11045
11046         * Control.cs (PerformLayout): We don't need to consider visiblity
11047           for anchoring, only for docking. This fixes 'whacky' alignment
11048           in listbox and other controls that use implicit scrollbars after
11049           the previous PerformLayout patch
11050         * ListBox.cs: Switched to use implicit scrollbars
11051           
11052 2006-03-14  Mike Kestner  <mkestner@novell.com>
11053
11054         * ToolBar.cs: 
11055         * VScrollBar.cs:
11056         - chain up the "new event" overrides to base and use
11057         OnEvent to raise them.  Part of fix for bug #76509.
11058
11059 2006-03-14  Alexander Olk  <alex.olk@googlemail.com>
11060
11061         * FileDialog.cs: Do not select an item in the parent directory
11062           on backspace
11063
11064 2006-03-14  Peter Dennis Bartok  <pbartok@novell.com> 
11065
11066         * Control.cs (PerformLayout): It would seem that we considered
11067           invisible windows for our layout. Not quite the right thing
11068           to do. Now we don't any longer, thereby fixing bug #76889.
11069
11070 2006-03-14  Peter Dennis Bartok  <pbartok@novell.com>
11071
11072         * Control.cs (CanFocus): I goofed. A control can have focus 
11073           even though it's not selectable. Made it match MS docs.
11074
11075 2006-03-13  Peter Dennis Bartok  <pbartok@novell.com>
11076
11077         * ControlPaint.cs (DrawBorder3D): DrawBorder3D does not fill the
11078           center by default (fixes #76895)
11079         * ThemeWin32Classic.cs, ThemeNice.cs, ThemeClearlooks.cs: Replaced 
11080           all uses of Border3DSides.All with the explicit ORd together
11081           Left|Right|Top|Bottom because I assume that nobody was aware 
11082           that All also implies a center fill. Most places I checked had
11083           a fill right above.
11084         * ProgressBarStyle.cs: Added
11085
11086 2006-03-13  Mike Kestner  <mkestner@novell.com>
11087
11088         * ListView.cs: fix breakage in drag shadow header positioning 
11089         from Peter's csc compilation fix.
11090
11091 2006-03-13  Mike Kestner  <mkestner@novell.com>
11092
11093         * ListView.cs: fix NRE produced by backspacing twice in a focused
11094         FileDialog.
11095
11096 2006-03-13  Mike Kestner  <mkestner@novell.com>
11097
11098         * ListView.cs: proxy Key(Down|Up) from ItemControl to ListView.
11099
11100 2006-03-13  Peter Dennis Bartok  <pbartok@novell.com>
11101
11102         * Hwnd.cs: Added fixed_size field to track windows whose size cannot
11103           be changed
11104         * XplatUIX11.cs: Now setting fixed_size on hwnd and if set, re-setting
11105           the allowed size before making programmatic size changes
11106
11107 2006-03-13  Peter Dennis Bartok  <pbartok@novell.com> 
11108
11109         * XplatUIX11.cs: Don't call XSetWMNormalHints if no flags are 
11110           set, metacity is broken and will still use the emty sizes in 
11111           the struct. (Fix for #77089)
11112
11113 2006-03-13  Peter Dennis Bartok  <pbartok@novell.com>
11114
11115         * XplatUIStructs.cs: Split WindowStyles into WindowStyles and 
11116           WindowExStyles and marked both enums as Flags
11117         * Form.cs, ComboBox.cs, ToolTip.cs, Control.cs, PropertyGridView.cs,
11118           NotifyIcon.cs, MenuAPI.cs, XplatUIOSX.cs, MonthCalendar.cs: Updated
11119           to match WindowStyles split
11120         * XplatUIX11.cs:
11121           - SetWMStyles: Added cehck to not apply WM attributes to Child windows
11122           - Updated to match WindowStyles split
11123         * XplatUIWin32.cs:
11124           - Fixed FosterParent creation, was using ExStyle on the Style field
11125             (This should help with Popup focus issues)
11126           - Updated to match WindowStyles split
11127
11128 2006-03-13  Jackson Harper  <jackson@ximian.com>
11129
11130         * MdiWindowManager.cs: Use the system menu height. Fixes some
11131         strange sizing issues.
11132
11133 2006-03-12  Peter Dennis Bartok  <pbartok@novell.com>
11134
11135         * RichTextBox.cs: Need to scroll to caret after text is inserted (#77672)
11136         * TextBoxBase.cs:
11137           - Scroll to caret after inserting text (#77672)
11138           - Make scroll range one pixel higher, fixes off-by-one error (and
11139             makes underlines visible on the last line)
11140
11141 2006-03-12  Peter Dennis Bartok  <pbartok@novell.com> 
11142
11143         * XplatUIX11.cs: Added call to new Keyboard.ResetKeyState to prevent
11144           the keyboard state from being stuck with keys in 'pressed' state when
11145           focus is switched away via keyboard
11146         * X11Keyboard.cs: Added new ResetKeyState method to allow drivers to
11147           reset the keyboard if no X11 KeyUp events are expected to come
11148         * X11Structs.cs: Switched type of Visible to bool to match driver
11149
11150 2006-03-12  Peter Dennis Bartok  <pbartok@novell.com>
11151
11152         * TextControl.cs:
11153           - Switched caret to be just 1 pixel wide, matches MS and looks less
11154             clunky
11155           - Moved caret display 1 pixel down from the top of the control
11156             to improve view
11157           - InsertCharAtCharet: Update the selection start if moving the caret
11158             (fixes bug #77696; based on patch suggested by kazuki@panicode.com)
11159           - No longer always creating the caret when the caret methods are
11160             called. Only the actual ShowCaret/HideCaret will do that now
11161           - Only setting caret visible if the owner control has focus
11162           - UpdateView: Added invalidation-shortcut logic for center and right 
11163             aligned text. Previously we'd update all according to the left
11164             logic which caused drawing errors. Also fixed height of invalidated
11165             areas, now properly invalidating the whole area (was off-by-one)
11166           - owner_HandleCreated: Always generate the document when the
11167             handle is created; this ensures that 
11168         * TextBoxBase.cs:
11169           - Fixed situation where caret would disappear under the right
11170             window border, also improved scrolling behaviour on left-
11171             aligned textboxes
11172           - Fixed right-aligned textboxes to have a border to the
11173             right instead of the caret being under the right border
11174         * XplatUIX11.cs:
11175           - Switched from 'nested' to simple visible/not visible tracking 
11176             for caret (part of fix for #77671)
11177           - No longer passing through translated FocusIn/FocusOut messages
11178             since we were notifying too often and the wrong windows. Instead
11179             we just notify our focussed window of receiving or loosing focus
11180         * XplatUIWin32.cs: Switched from 'nested' show/hide 
11181           counting for caret to simple visible yes/no behaviour (part of 
11182           fix for #77671)
11183
11184 2006-03-11  Alexander Olk  <alex.olk@googlemail.com>
11185
11186         * Mime.cs: Remove debug code...
11187
11188 2006-03-11  Alexander Olk  <alex.olk@googlemail.com>
11189
11190         * MimeGenerated.cs: Removed
11191         * Mime.cs: Mime now reads the mime data (magic, globs, aliases
11192           and subclasses) from /usr/(local/)share/mime and
11193           $HOME/.local/share/mime.
11194
11195 2006-03-10  Jackson Harper  <jackson@ximian.com>
11196
11197         * MdiWindowManager.cs: Recalc the NC area when a window is
11198         maximized/restored so that the menu area is drawn on forms that
11199         don't have a menu.
11200
11201 2006-03-10  Peter Dennis Bartok  <pbartok@novell.com>
11202
11203         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs, XplatUIWin32.cs,
11204           XplatUIX11.cs: Added RequestNCRecalc method to driver to allow
11205           us to force a WM_NCCALCRESIZE message being sent. This is needed
11206           for MDI maximizing.
11207
11208 2006-03-10  Jackson Harper  <jackson@ximian.com>
11209
11210         * Form.cs: We need to use the ActiveMenu when calculating menu
11211         height.
11212         - Fix nullref when the window manager hasn't been created yet.
11213         * Control.cs: Fix nullref when we try to bring a control to the
11214         front that has no parent.
11215         * MdiWindowManager.cs: Use the MaximizedMenu for calculating
11216         height.
11217         - Add a dummy item to the maximized menu so it always has the
11218         correct height. Otherwise when there are no menus we don't get our
11219         icon and buttons.
11220         
11221
11222 2006-03-10  Jackson Harper  <jackson@ximian.com>
11223
11224         * MenuAPI.cs: Make this available elsewhere. I need it in some MDI
11225         stuff.
11226         * Form.cs: Make the window_state internal so the window managers
11227         can track it.
11228         - When an MDI child is maximized let its window manager create the
11229         main menu (so it can add its icon).
11230         - Notify the window managers of state changes
11231         - Let the window manager paint its buttons and handle button
11232         clicks on the menu when it is maximized.
11233         * InternalWindowManager.cs: Move the prev_bounds into the mdi
11234         window manager, since tool windows don't use it, only mdi windows.
11235         - Tell the main form that we don't want it to handle NCPAINT
11236         itself to avoid extra painting.
11237         - Handle clicks on a maximized windows menu.
11238         - Handle window state changes
11239         - Handle minimize/maximize clicks correctly by setting the window state.
11240         * MdiWindowManager.cs: Add an icon menu that (the menu you get
11241         when clicking on the forms icon).
11242         - New method to create a forms maximized menu. This is its normal
11243         menu + an icon.
11244         - Handle window state changes.
11245         - Handle sizing of maximized windows.  Maximized windows are just
11246         drawn bigger then the parent visible area. All controls are still
11247         there, they are just outside the visible area (this matches windows).
11248         * MdiClient.cs: No scrollbars when a child window is maximized.
11249         - Let the children windows figure out how big they should be when
11250         sizing maximized windows.
11251         - Implement a version of ArrangeIconicWindows somewhat similar to
11252         Windows version.  There are some little differences, but I don't
11253         think any app will rely on the layout of minimized mdi windows.
11254
11255 2006-03-10  Peter Dennis Bartok  <pbartok@novell.com>
11256
11257         * Padding.cs: Several fixes to allow compiling with csc 2.0
11258
11259 2006-03-09  Jackson Harper  <jackson@ximian.com>
11260
11261         * Menu.cs:
11262         * MenuItem.cs: Cheap hack so we can add items to the list without
11263         the events being raised.  This allows adding mdi items during
11264         drawing. TODO: Should probably find a better time to add the items.
11265
11266 2006-03-10  Peter Dennis Bartok  <pbartok@novell.com>
11267
11268         * ThemeWin32Classic.cs:
11269           - CheckBox_DrawText: Added logic to not wrap if not enough space
11270             is available (Fix for bug #77727)
11271           - RadioButton_DrawText: Added logic not to wrap if not enough
11272             space is available (Fix for bug #77727). Also removed some
11273             duplicate code, DrawString always drawing the regular text
11274             before hitting the if statement.
11275
11276 2006-03-10  Peter Dennis Bartok  <pbartok@novell.com> 
11277
11278         * XplatUIX11.cs: Handle an unmapped window state in SetWindowState
11279
11280 2006-03-10  Peter Dennis Bartok  <pbartok@novell.com>
11281
11282         * PictureBox.cs: Implemented ISupportInitialize interface (fixes #77726)
11283         * ContainerControl.cs: Partial implementation of some 2.0 scaling
11284           methods. Moved the new 2.0 properties into alphabetical order with
11285           other properties and added MonoTODO tags
11286
11287 2006-03-09  Peter Dennis Bartok  <pbartok@novell.com> 
11288
11289         * AutoScaleMode.cs: Added. Fix build.
11290
11291 2006-03-09  Peter Dennis Bartok  <pbartok@novell.com>
11292
11293         * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs, XplatUIWin32.cs, 
11294           XplatUIOSX.cs: Removed HWnd argument from CalcuateClientRect, not used
11295           and was requiring premature handle creation for calls from above
11296         * Form.cs, Control.cs: Removed handle arguments from calls to
11297           CalculateClientRect()
11298
11299 2006-03-09  Peter Dennis Bartok  <pbartok@novell.com> 
11300
11301         * ListView.cs (HeaderMouseMove): Fix csc compilation. 
11302           drag_column.column_rect is MarshalByRef and can't be used that way
11303
11304 2006-03-09  Peter Dennis Bartok  <pbartok@novell.com>
11305
11306         * AxHost.cs: Added deserialization constructor for 
11307           AxHost+State (fixes 77743)
11308
11309 2006-03-09  Mike Kestner  <mkestner@novell.com>
11310
11311         * ListView.cs: 
11312         - Added column drag reordering for details view.
11313         - fixed behavior when mouse is dragged off column and
11314         AllowColumnReorder is false.
11315         * ColumnHeader.cs: clone the format too in Clone.
11316         * Theme.cs: add DrawListViewHeaderDragDetails method.
11317         * ThemeWin32Classic.cs:
11318         - impl new method for drawing drag column shadows and targets.
11319         - support column offset for details mode in DrawListViewItem.
11320
11321 2006-03-09  Peter Dennis Bartok  <pbartok@novell.com>
11322
11323         * TextControl.cs: Reset the char_count when the document is cleared
11324           (Fixes bug reported on mono-winforms mailing list)
11325
11326 2006-03-09  Peter Dennis Bartok  <pbartok@novell.com> 
11327
11328         * TextBoxBase.cs: Honor the Handled state of KeyPress events. Instead
11329           of calling base we simply process the key ourselves, since both
11330           DefWindowProc and the handled method would set m.Result. 
11331           (Fixes #77732)
11332
11333 2006-03-09  Peter Dennis Bartok  <pbartok@novell.com>
11334
11335         * Form.cs(ScaleCore): No longer calling base.ScaleCore since that
11336           method also moves the window; instead implemented a copy of
11337           Control.ScaleCore (Part of fix for #77456)
11338         * TextBoxBase.cs: 
11339           - Created new CreateGraphicsInternal method to allow providing
11340             a graphics context when no handle is created without triggering
11341             handle creation. (Part of fix for #77456)
11342           - Replaced use of Control.CreateGraphics with CreateGraphicsInternal
11343         * TextControl.cs: 
11344           - Switched Constructor to require TextBoxBase instead of Control (to
11345             allow uncast access to CreateGraphicsInternal)
11346           - Safeguarded use of owner.Handle property. No longer accessing it
11347             unless the handle is already created.
11348           - Replaced use of Control.CreateGraphics with CreateGraphicsInternal
11349           - Now triggering a recalc when owning control becomes visible
11350         * TextBox.cs, RichTextBox.cs: Switched to use new internal 
11351           TextBoxBase.CreateGraphicsInternal() method to avoid triggering
11352           premature handle creation (Part of fix for #77456)
11353         * Control.cs:
11354           - We now only destroy our double-buffering buffers when the
11355             control is resized or disposed, but not when visibility
11356             changes. (The code even re-created them twice every time)
11357           - Now requiring a redraw of the buffer on visibility changes
11358             (fixes bug 77654 part 2)
11359           - Not passing OnParentVisibleChanged up unless the control
11360             is visible
11361           - CanFocus: Fixed to match MS documentation
11362           - Focus: Fixed to return actual focus state and to check if
11363             setting focus is legal before setting it
11364
11365 2006-03-08  Peter Dennis Bartok  <pbartok@novell.com>
11366
11367         * ThemeWin32Classic.cs: TabPages cannot have focus. Determine
11368           when to draw focus rectangle by looking at parent focus and
11369           selected state instead. This fixes TabPages on Linux sometimes
11370           having none or multiple focus rectangles.
11371         * XplatUIX11.cs (SetFocus): 
11372           - Don't set the focus if the same window already has focus
11373           - Use SendMessage instead of PostMessage (like it's Win32
11374             equivalent) and send the WM_SETFOCUS before the WM_KILLFOCUS
11375             to match MS behaviour
11376         * TabControl.cs(SelectedIndex): Don't set Focus on TabPage, TabPages
11377           are not selectable.
11378
11379 2006-03-07  Jackson Harper  <jackson@ximian.com>
11380
11381         * PictureBox.cs: Revert line I accidently committed last week.
11382
11383 2006-03-07  Peter Dennis Bartok  <pbartok@novell.com>
11384
11385         * Control.cs: 
11386           - Added new IsRecreating and ParentIsRecreating properties to
11387             allow testing if RecreateHandle has been called on ourselves
11388             or one of our parents
11389           - WndProc(WM_DESTROY): If our control handle is being recreated
11390             we immediately need to create the handle when receiving the
11391             destroy, that way our child windows find a valid parent handle
11392             when they themselves are being recreated upon WM_DESTROY receipt
11393             (fix for bug #77654 part 1)
11394         * XplatUIX11.cs:
11395           - DestroyWindow: WM_DESTROY must be sent to our own window before
11396             notifying any child windows. MS documents that child windows
11397             are still valid when WM_DESTROY is received. (Control now relies on
11398             this behaviour)
11399           - Added some fine-grain debug options
11400
11401 2006-03-06  Jackson Harper  <jackson@ximian.com>
11402
11403         * MdiClient.cs: Redid scrolling logic a bit to create a virtual
11404         box and base calculations off this.
11405         * MdiChildContext.cs:
11406         * MdiWindowManager.cs: Don't need to ensure scrollbars here
11407         anymore.
11408         
11409 2006-03-06  Peter Dennis Bartok  <pbartok@novell.com>
11410
11411         * Splitter.cs: In situations where the affected control is added
11412           to the parent's control list after the splitter, we would not
11413           populate affected. Now we try populating it on mousedown, if
11414           it's not already set, and force it to be re-set whenever our
11415           parent changes.
11416
11417 2006-03-03  Matt Hargett  <matt@use.net>
11418
11419         * Control.cs: implement Control.Padding
11420         * Padding.cs: -Padding.All returns -1 when constructing with the
11421         implicit default ctor
11422         -Padding.ToString() matches MS.NET
11423         * ContainerControl.cs: implement
11424         ContainerControl.AutoScaleDimensions
11425         * ListControl.cs: implement ListControl.FormattingEnabled
11426         * TextBox.cs: Implemented TextBox.UseSystemPasswordChar.
11427         * ButtonBase.cs:
11428         * TabPage.cs: Implement UseVisualStyleBackColor.
11429         * PictureBox.cs: Implement PictureBox.InitialImage.
11430
11431 2006-03-03  Mike Kestner  <mkestner@novell.com>
11432
11433         * ListView.cs: Refactor into HeaderControl and ItemControl. Fix new
11434         event declarations to proxy to base event.
11435         * ListViewItem.cs: update to use ItemControl.
11436         * Theme.cs: make DrawListViewHeader. s/DrawListView/DrawListViewItems.
11437         * ThemeWin32Classic.cs: update to new ListView theme API and fix
11438         column header label rendering for 0 width columns.
11439
11440 2006-03-03  Peter Dennis Bartok  <pbartok@novell.com>
11441
11442         * Control.cs (ControlCollection.SetChildIndex): Avoid using a call
11443           that causes the control to be created. Fixes #77476.
11444
11445 2006-03-02  Jackson Harper  <jackson@ximian.com>
11446
11447         * Hwnd.cs: Clear the nc pending when clearing the NC area, not the
11448         expose_pending.
11449
11450 2006-03-02  Peter Dennis Bartok  <pbartok@novell.com>
11451
11452         * Control.cs: Implemented 2.0 feature where OnClick has MouseEventArgs
11453           passed in for the EventArgs (fixes #77690)
11454
11455 2006-03-01  Jackson Harper  <jackson@ximian.com>
11456
11457         * ScrollBar.cs: Refresh afterbeing resized.
11458
11459 2006-02-28  Mike Kestner  <mkestner@novell.com>
11460
11461         * MenuAPI.cs: Call PerformPopup internal method to emit Popup.
11462         Clean up a tracker compile warning.
11463         * MenuItem.cs: add internal PerformPopup method.
11464         [Fixes #77457]
11465
11466 2006-02-28  Peter Dennis Bartok  <pbartok@novell.com> 
11467
11468         * TextBoxBase.cs (set_Text): Recalculate the document (causing an
11469           implicit expose) when the text is set to null
11470
11471 2006-02-28  Peter Dennis Bartok  <pbartok@novell.com>
11472
11473         * RichTextBox.cs (FlushText): When newline is true, we always
11474           need to split the line, even if no text is on it and we may
11475           never eat newlines. (Fixes #77669)
11476
11477 2006-02-28  Mike Kestner  <mkestner@novell.com>
11478
11479         * ListView.cs: Add UpdateSelection internal method. Remove SelectItem 
11480         and set Selected instead.
11481         * ListViewItem.cs: Call owner.UpdateSelection to manipulate the 
11482         collections.
11483
11484 2006-02-28  Peter Dennis Bartok  <pbartok@novell.com> 
11485
11486         * ComboBox.cs: Allow setting SelectedIndex to -1. Fixes #77665
11487
11488 2006-02-28  Alexander Olk  <alex.olk@googlemail.com>
11489
11490         * FontDialog.cs:
11491           - Got rid of the panel. All controls are now directly added to
11492             the dialog form
11493           - It is now possible to set a font with the Font property
11494           - MinSize and MaxSize property do now what they should
11495           - ShowApply, ShowHelp, ShowColor, ShowEffects likewise
11496           - Searching and selecting a font with the font textbox works now,
11497             the same applies to the style and size textbox
11498           - Draw the correct 3D border in the example panel
11499           - Fixed a little mem leak (unused fonts didn't get disposed)
11500           - Many other internal updates/rewrites...
11501           - Fix typo
11502
11503 2006-02-27  Peter Dennis Bartok  <pbartok@novell.com> 
11504
11505         * TextControl.cs: 
11506           - InsertRTFFromStream: Added 'number of characters inserted' argument
11507           - set_SelectedRTF: Now using the number of characters to calculate
11508             the new location for the selection and cursor (x/y cannot be used
11509             due to potentially already wrapped text)
11510
11511 2006-02-27  Peter Dennis Bartok  <pbartok@novell.com>
11512
11513         * TextControl.cs: Added property and implemented means to allow 
11514           disabling recalculation of a document (can be used to speed up
11515           multiple inserts and is needed to make RTF inserts predictable, see
11516           bug #77659)
11517         * RichTextBox.cs: Using the new NoRecalc property of Document to
11518           keep x/y insert locations predictable. Also makes it faster inserting
11519           large chunks of RTF
11520
11521 2006-02-27  Peter Dennis Bartok  <pbartok@novell.com> 
11522
11523         * Control.cs: Separated special WM_SYSKEYUP keyboard handling. That way
11524           it's easier for a child control to handle the other messages without
11525           having to duplicate the special functionality
11526         * TextBoxBase.cs
11527           - WndProc: Removed calling base handler for WM_KEYDOWN and added 
11528             code to handle processing the key ourselves, in order to get 
11529             access to the result of KeyEventArgs.Handled. We now only call 
11530             ProcessKey if they key hasn't been handled already. Fixes #77526.
11531           - set_Text: If null or empty string is given, just clear the 
11532             document. Fixes part of #77526
11533
11534 2006-02-27  Jackson Harper  <jackson@ximian.com>
11535
11536         * SizeGrip.cs: Paint the background color before painting the grip
11537         so things look right.
11538         * MdiClient.cs: Add the sizegrip when both scrollbars are used.
11539
11540 2006-02-27  Mike Kestner  <mkestner@novell.com>
11541
11542         * ListView.cs:
11543           - Restructure layout and invalidation model to remove a ton of
11544           flicker from the control and speed up performance in general.
11545           - Add manual column resize, flickers like crazy, but I already have
11546           some ideas on how I'll fix that. (#76822)
11547           - Merge the three Icon-based views into a single layout method.
11548           - Move item selection interaction logic from the item since 
11549           interaction with the collections is more appropriate to the view.
11550           - Deselection on non-item clicks.
11551         * ListViewItem.cs:
11552           - Encapsulate most of the layout. Add some internal props to trigger
11553           layout.  Move to a model where Items invalidate themselves instead
11554           of just invalidating the whole control every time something changes.
11555           - Invalidate on Text/Caption changes.
11556           - switch to an offset based layout model to avoid having to absolute
11557           position every element on item moves.
11558           - correct checkbox layout to conform to MS layout.
11559         * ThemeWin32Classic.cs:
11560           - refactor some column header drawing code.
11561           - fix string justification for column headers (#76821)
11562           - make SmallIcon labels top justified for compat with MS impl.
11563         * ThemeClearlooks.cs:
11564           - adjust to new ListViewItem internal checkbox bounds api.
11565
11566 2006-02-27  Jackson Harper  <jackson@ximian.com>
11567
11568         * Control.cs:  Change where implicit controls fall in the zorder.
11569         They are now on top of all children.
11570         - Synced AddImplicit code with Add
11571         - Removed unused enumerator.
11572         * SizeGrip.cs: Remove the TODO as its been TODONE.
11573
11574 2006-02-26  Peter Dennis Bartok  <pbartok@novell.com> 
11575
11576         * TextControl.cs(Insert): Combine the last lines unless the insertion
11577           string ends with \n\n, otherwise we leave one line too many (Fixes
11578           something I noticed with the testapp for #77526; the bug itself was
11579           already fixed in the previous checkin)
11580
11581 2006-02-26  Peter Dennis Bartok  <pbartok@novell.com>
11582
11583         * RichTextBox.cs:
11584           - SelectionColor and SelectionFont methods no longer set absolute
11585             styles. Instead, the keep font or color respectively (This 
11586             resolves a long-standing FIXME in the code)
11587           - When flushing RTF text, the insert code now considers text trailing
11588             behind the insertion point (Fixes the bug where when replacing
11589             the selected text via SelectedRTF the remainder of the line behind 
11590             the selection would stay on the first insertion line)
11591         * TextBoxBase.cs:
11592           - AppendText now updates the selection points after inserting text
11593           - AppendText now ensures that the last tag (sometimes 0-length) of
11594             the document is used for the style information (Fixes part of 
11595             bug #77220)
11596         * TextControl.cs:
11597           - Created new FontDefiniton class to allow describing partial style
11598             changes
11599           - StreamLine() now takes a lines argument, to allow it to decide
11600             whether an encountered zero-length tag is the last in the document
11601             (which must be kept to not loose the font/color contained in it,
11602             for later appends)
11603           - Created Combine() and Split() methods for Marker structs, to 
11604             support marker updates due to reformatted documents (soft line
11605             wraps)
11606           - Implemented Document.CaretTag setter
11607           - Fixed MoveCaret(CtrlEnd) handling, now moves to the last character
11608             of the last line (Not the cause, but also exposed by bug #77220)
11609           - Added LineTag argument to InsertString method, to allow callers
11610             to force a certain tag to be used (required to force use of the
11611             trailing zero-length tag of a document)
11612           - Now updating markers in Combine(), to avoid stale tag markers
11613           - Added some method descriptions to aid maintenance
11614           - Implemented new FormatText concept, allowing additive/subtractive
11615             formatting by only specifying the components that are to be 
11616             changed. This was needed for resolving the RTB.SelectedColor/
11617             RTB.SelectedFont fixmes
11618           - Added Break() support method to allow breaking up linetags (used
11619             for partial formatting)
11620           - Added GenerateTextFormat() method. It is used for partial 
11621             formatting and allows to generate a full font/color from given
11622             attributes and an existing tag.
11623
11624 2006-02-26  Jackson Harper  <jackson@ximian.com>
11625
11626         * XplatUIX11.cs:  Use the correct caption height.
11627         - Translate hittest coordinates to screen coords to match MS.
11628         * XplatUIWin32.cs: When we create MDI windows we need to reset
11629         some of the style flags, so we get a nice blank window, and can
11630         draw all the decorations ourselves.
11631         - Set a clipping rectangle on the non client paint event, the
11632         window manager drawing code needs one.
11633         * Form.cs: The window manager needs to know when the window state
11634         has been updated.
11635         * Hwnd.cs: The window manager stuff now does a proper NCCALC so we
11636         don't need to factor in border and title sizes in these
11637         methods. TODO: Remove the args and fix the call points.
11638         * InternalWindowManager.cs: Handle NCHITTEST and NCCALCAREA
11639         properly.
11640         - Let the driver set the cursors.
11641         - Improve active window handling
11642         - Correct sizes for title bars and buttons.
11643         - Match MS drawing better
11644         * MdiWindowManager.cs: We don't need to handle border style
11645         updates specially anymore.
11646         - Check for scrollbars when windows are done moving
11647         - Handle Active properly.
11648         * MimeIcon.cs: Don't crash when we can't load the GNOME stuff
11649         correctly. I am spewing the exception though, so we don't hide the
11650         bugs.
11651         
11652 2006-02-26  Pedro Martinez Julia  <pedromj@gmail.com>
11653
11654         * DataGridViewRowPostPaintEventArgs.cs,
11655           DataGridViewCellPaintingEventArgs.cs,
11656           DataGridViewRowCollection.cs,
11657           DataGridViewRowPrePaintEventArgs.cs,
11658           DataGridViewCell.cs: Clear a few warnings and implement a few
11659           exceptions that should be thrown.
11660
11661 2006-02-22  Peter Dennis Bartok  <pbartok@novell.com>
11662
11663         * ScrollBar.cs (ctor): Explicitly set a cursor to avoid
11664           'inheriting' our parent's (non-default) cursor. (Part of
11665            the fix for #77479)
11666
11667 2006-02-22  Peter Dennis Bartok  <pbartok@novell.com> 
11668
11669         * XplatUIX11.cs: Fixed cast to make csc happy
11670
11671 2006-02-22  Peter Dennis Bartok  <pbartok@novell.com>
11672
11673         * Control.cs (WndProc): Only handle WM_SETCURSOR messages if
11674           it's for the client area (part of fix for #77479 and needed
11675           for MDI window cursor handling)
11676         * XplatUIX11.cs
11677           - DefWindowProc: Now handles the WM_SETCURSOR messages, setting
11678             the appropriate default cursors and also passing the message
11679             up the parent chain 
11680           - GetMessage: Now generating WM_NCHITTEST and WM_SETCURSOR even
11681             for non-client areas
11682
11683 2006-02-15  Jackson Harper  <jackson@ximian.com>
11684
11685         * XplatUIWin32.cs: Since we fake MDI dont tell Windows that this
11686         is a real MDI window
11687
11688 2006-02-14  Alexander Olk  <alex.olk@googlemail.com>
11689
11690         * X11DesktopColors.cs: Instead of checking the desktop session
11691           string for "KDE" check if it starts with "KDE"
11692
11693 2006-02-10  Jackson Harper  <jackson@ximian.com>
11694
11695         * XplatUIX11.cs: These should be unsigned (fixes crash on 32 bit
11696         systems).
11697
11698 2006-02-10  Alexander Olk  <alex.olk@googlemail.com>
11699
11700         * FileDialog.cs: Added Refresh to RunDialog to fix some drawing
11701           errors
11702         * ColorDialog.cs:
11703           - Got rid of the panel. All controls are now directly added to
11704             the dialog form
11705           - Changed to mono coding style
11706
11707 2006-02-10  Jackson Harper  <jackson@ximian.com>
11708
11709         * InternalWindowManager.cs: We don't need the set visibility to
11710         false hack anymore now that peter has written beautiful shutdown
11711         code.
11712
11713 2006-02-10  Peter Dennis Bartok  <pbartok@novell.com>
11714
11715         * XplatUIX11.cs: Ignore DestroyNotify messages for windows that
11716           where already explicitly destroyed
11717
11718 2006-02-10  Jackson Harper  <jackson@ximian.com>
11719
11720         * MdiClient.cs: Handle the case where windows are too high or to
11721         the left and we need scrollbars.
11722
11723 2006-02-10  Alexander Olk  <alex.olk@googlemail.com>
11724
11725         * MimeIcon.cs: Added some icons
11726         * FileDialog.cs:
11727           - Fixed bug #77477
11728           - Got rid of the panel. All controls are now directly added to
11729             the dialog form
11730           - Changed to mono coding style
11731           - On Linux "My Computer" and "My Network" will now show some
11732             more usefull information. A new class, MasterMount, gathers
11733             this information from /proc/mount. Updated MWFFileView to make
11734             use of this information
11735           - Fixed a bug that caused FileDialog to crash when
11736             ".recently_used" file had a zero size
11737           - FilterIndex does now what it should
11738           - Some Refactoring
11739         * OpenFileDialog.cs, SaveFileDialog.cs: Updated to reflect latest
11740             FileDialog changes
11741
11742 2006-02-09  Jackson Harper  <jackson@ximian.com>
11743
11744         * ComboBox.cs: Don't touch if null.
11745
11746 2006-02-09  Peter Dennis Bartok  <pbartok@novell.com>
11747
11748         * Cursor.cs: 64bit safeness fix
11749         * XplatUIX11.cs: Removed several unneeded and one moronic cast.
11750
11751 2006-02-09  Jackson Harper  <jackson@ximian.com>
11752
11753         * Form.cs: If a form is made into an MDI form update the styles so
11754         all the props can get set correctly.
11755         - Kill the mdi_container when we dont need it anymore.
11756         * InternalWindowManager.cs: Add missing NOT
11757
11758 2006-02-08  Jackson Harper  <jackson@ximian.com>
11759
11760         * InternalWindowManager.cs: Respek clipping when drawing MDi
11761         decorations.
11762
11763 2006-02-08  Jackson Harper  <jackson@ximian.com>
11764
11765         * Hwnd.cs: Add bits to track non client expose events.
11766         * XplatUIX11.cs: Track non client expose events on the hwnd. This
11767         gives us a proper invalid rect and will allow for some nice
11768         optimizations with NC client drawing
11769         - MDI windows are children windows, so move their style handling
11770         into the child window block.
11771         * InternalWindowManager.cs: Remove a state reset that was
11772         getting invoked at the wrong time. Fixes managed windows getting
11773         into a 'stuck' captured state.
11774
11775 2006-02-07  Peter Dennis Bartok  <pbartok@novell.com>
11776
11777         * TextControl.cs (Document.ctor): Now initializing 
11778           selection_anchor. Fixes #77493
11779
11780 2006-02-07  Jackson Harper  <jackson@ximian.com>
11781
11782         * TrackBar.cs: The increment/decrements were backwards.
11783
11784 2006-02-07  Mike Kestner  <mkestner@novell.com>
11785
11786         * Theme*.cs : remove ThemeEngine.Current usage as it just points back
11787         to the instance itself.
11788
11789 2006-02-07  Peter Dennis Bartok  <pbartok@novell.com>
11790
11791         * X11DesktopColors.cs, ThemeGtk.cs: The GObject structure is based
11792           on ulongs and pointers, the size differs between 32bit and 64bit
11793           systems. 
11794
11795 2006-02-07  Mike Kestner  <mkestner@novell.com>
11796
11797         * XplatUIX11.cs : force the WorkingArea away from XGetWindowProperty
11798         for 64 bit platforms to work around a metacity bug. 
11799
11800 2006-02-07  Jackson Harper  <jackson@ximian.com>
11801
11802         * TrackBar.cs: Process the input keys we need, and hookup to
11803         KeyDown instead of using WndProc, so we get key messages.
11804
11805 2006-02-06  Peter Dennis Bartok  <pbartok@novell.com>
11806
11807         * XplatUIX11.cs: Atoms are only 32bit on the wire, no matter what
11808           machine we're on. 
11809         * X11Dnd.cs(SetAllowDrop): Since atoms are always 32bit on the wire
11810           we need to translate the XdndVersion atoms array before sending it
11811
11812 2006-02-06  Peter Dennis Bartok  <pbartok@novell.com> 
11813
11814         * XplatUIX11.cs: 
11815           - The preceeding 64bit fixes had a bug: ChangeProperty expects the
11816             number of bits for the property, not the number of bytes. The
11817             change to provide IntPtr.Size broke 32bit. (64bit was also wrong
11818             but would not crash since it specified 8 bits instead of 4 bits)
11819           - More 64bit fixes: Switched all atoms from int to IntPtr (they are
11820             defined as XID -> long in the C headers)
11821           - Removed 'new IntPtr((int))' and '(IntPtr)' casts from all NetAtoms 
11822             references since those are now IntPtr to begin with
11823           - Switched all Atom.XXX 'int' casts to IntPtr casts
11824           - Fixed XGrabPointer DllImport signature to work for 64bit (cursor arg)
11825           - Fixed XInternAtom signature for 64bit, now returns an IntPtr
11826           - Added XChangeActivePointerGrab DllImport (for X11DnD)
11827         * X11Structs.cs:
11828           - Changed 'int' type for Atoms in XEvent structures to IntPtr
11829           - Changed atom in HoverStruct to be IntPtr
11830         * X11DnD.cs:
11831           - Removed local DllImports, switched code to use those from XplatUIX11
11832           - Removed/fixed casts related to the switch of Atom to be a IntPtr
11833
11834 2006-02-06  Mike Kestner  <mkestner@novell.com>
11835
11836         * XplatUIX11.cs : many more 64 bit pinvoke changes.  I've audited all the 
11837         method signatures in the import region.  There may still be some
11838         lingering struct marshaling issues, as I didn't drill down into those.
11839         Yet.
11840
11841 2006-02-06  Jackson Harper  <jackson@ximian.com>
11842
11843         * ComboBox.cs: Dont manually set the top_item, this is computed
11844         when the scrollbar position is set.
11845
11846 2006-02-06  Mike Kestner  <mkestner@novell.com>
11847
11848         * XplatUIX11.cs : 64 bit changes to XGetWindowProperty usage. Fixes
11849         startup crashes on amd64.  There's other fixes needed.  All pinvoke
11850         usage of Atom needs to be mapped to IntPtr for example.  And there are
11851         likely other int/long issues to be addressed.
11852
11853 2006-02-04  Alexander Olk  <alex.olk@googlemail.com>
11854
11855         * FileDialog.cs: One more...
11856
11857 2006-02-03  Alexander Olk  <alex.olk@googlemail.com>
11858
11859         * FileDialog.cs: Next try
11860
11861 2006-02-03  Alexander Olk  <alex.olk@googlemail.com>
11862
11863         * FileDialog.cs: First part of fix for #77464
11864
11865 2006-02-03  Alexander Olk  <alex.olk@googlemail.com>
11866
11867         * ButtonBase.cs, ContainerControl.cs, Forms.cs,
11868           ThemeWin32Classic.cs: Fix for #77458. Correct handling of
11869           AcceptButton border drawing.
11870
11871 2006-02-03  Peter Dennis Bartok  <pbartok@novell.com> 
11872
11873         * Form.cs: Moved positioning of form after auto scaling is applied,
11874           otherwise it would possibly use wrong form size.
11875
11876 2006-02-03  Peter Dennis Bartok  <pbartok@novell.com>
11877
11878         * Control.cs (RecreateHandle): No need to re-create any child
11879           controls, the child windows will get destroyed automatically by
11880           the windowing system or driver, and re-created when the handle
11881           is being accessed the first time. Fixes #77456
11882         * Form.cs: No longer setting the form to closing if the handle is 
11883           being recreated. This seems like the right thing to do, don't
11884           have a bug or testcase for this, though.
11885
11886 2006-02-02  Peter Dennis Bartok  <pbartok@novell.com>
11887
11888         * FileDialog.cs: Suspend/Resume layouting when changing sizes of
11889           controls to avoid unwanted side effects
11890
11891 2006-02-02  Peter Dennis Bartok  <pbartok@novell.com> 
11892
11893         * Control.cs: 
11894           - ScaleCore needs to scale the bounds, not the ClientSize of the 
11895             control. Fixes #77416.
11896           - DefaultSize is 0,0 for control
11897         * TextBoxBase.cs: 
11898           - DefaultSize is 100, 20
11899           - SetBoundsCore: Now enforcing the height, no matter if the provided
11900             height is more or less than the preferred one, as long as AutoSize
11901             is on
11902         * Form.cs: Apply documented fudge factor. Part of item 3 fix for #77416
11903
11904 2006-02-02  Peter Dennis Bartok  <pbartok@novell.com>
11905
11906         * Control.cs:
11907           - ResumeLayout: Fixed logic when to call PerformLayout, we may not
11908             call unless both performLayout is true *and* we have a pending
11909             layout change
11910           - ResumeLayout: MS does not completely nest Suspend and Resume,
11911             they bottom out at 0, fixed our code to match that.
11912           - UpdateBounds/SetBoundsCore: Moved calling of UpdateDistances() to
11913             SetBoundsCore, we were updating even when we shouldn't. This fixes
11914             swf-anchors mis-anchoring when resizing the app fast and lots.
11915           - UpdateDistances: Now only setting the left and top distance if 
11916             we have a parent and are not suspended, this is based on
11917             a suggestion by Don Edvaldson in bug #77355.
11918           - OnVisibleChanged: Fixed logic when to create the control. We may
11919             not create the control if we have no parent or if it's not visible;
11920             switched to using Visible property instead of is_visible field 
11921             since the property also considers parent states. This fixes a bug
11922             when starting Paint.Net
11923
11924 2006-02-02  Jackson Harper  <jackson@ximian.com>
11925
11926         * Form.cs: If the forms handle hasn't been created yet don't call
11927         into xplatui to make it top most, just set the topmost flag on the
11928         form in CreateParams
11929         * XplatUIX11.cs: Handle WS_EX_TOPMOST.
11930
11931 2006-02-01  Jackson Harper  <jackson@ximian.com>
11932
11933         * ScrollableControl.cs: Refactored the Recalculate method a
11934         little, this wasn't handling all the variants of bottom and right
11935         bars needed to be added and added/removed based on their
11936         counterparts being added/removed (which changes the drawable
11937         size). Also we special case client widths and heights of 0 and
11938         don't add the scrollbar for those.
11939
11940 2006-02-01  Peter Dennis Bartok  <pbartok@novell.com>
11941
11942         * XplatUIX11.cs: 
11943           - Added method to get AbsoluteGeometry(); currently unused, but might
11944             be used in the future, if we try again to figure out toplevel
11945             coordinates with some more crappy window managers
11946           - Added FrameExtents() method to retrieve the WM set decoration size
11947           - Tried to fix up AddConfigureNotify and handling of ReparentNotify 
11948             to deal with at least KDE, FVWM and metacity (Fixes #77092)
11949         * Hwnd.cs: 
11950           - Added whacky_wm tracking var for metacity
11951           - Added logic to have default menu height if the actual menu height
11952             has not yet been calculated (part of fix for #77426)
11953         * Form.cs: Keep track whether client size has been set and re-set 
11954           it if a menu is added/removed afterwards (Fixes #77426)
11955
11956 2006-01-31  Jackson Harper  <jackson@ximian.com>
11957
11958         * Control.cs: When a new Site is set on the component attempt to
11959         pull the AmbientProperties from it.
11960
11961 2006-01-31  Peter Dennis Bartok  <pbartok@novell.com>
11962
11963         * ThemeWin32Classic.cs: Menu background is drawn in ColorMenu, not
11964           in the background of the owning form. Fixes #77332
11965
11966 2006-01-31  Alexander Olk  <alex.olk@googlemail.com>
11967
11968         * MimeIcon.cs: Fix for #77409
11969
11970 2006-01-31  Alexander Olk  <alex.olk@googlemail.com>
11971
11972         * XplatUIX11GTK.cs: Initial import
11973
11974 2006-01-31  Jordi Mas i Hernandez <jordimash@gmail.com>
11975
11976         * FixedSizeTextBox: fixes class signature
11977
11978 2006-01-30  Jackson Harper  <jackson@ximian.com>
11979
11980         * FixedSizeTextBox.cs: New internal class that represents a
11981         textBox that will not be scaled.
11982         * TreeView.cs:
11983         * ComboBox.cs:
11984         * UpDownBase.cs: Use the new FixedSizeTextBox instead of a
11985         standard TextBox.
11986                 
11987 2006-01-30  Peter Dennis Bartok  <pbartok@novell.com> 
11988
11989         * XplatUIX11.cs: Retrieve default screen number instead of
11990           assuming 0. Attempted fix for #77318
11991
11992 2006-01-30  Peter Dennis Bartok  <pbartok@novell.com>
11993
11994         * XplatUIWin32.cs: 
11995           - GetWindowPos: When a window is parented by FosterParent, use 
11996             the desktop instead of FosterParent as the base to get coordinates
11997           - CreateWindow: Don't make FosterParent the parent window for Popups
11998             if we don't want a taskbar entry, Popups automatically don't get one
11999         * Hwnd.cs: Need to call remove to actually remove the key from the
12000           hash table
12001
12002 2006-01-30  Mike Kestner  <mkestner@novell.com>
12003
12004         * MenuAPI.cs: adjust MainMenu item popup location to y=0.
12005
12006 2006-01-30  Jackson Harper  <jackson@ximian.com>
12007
12008         * TreeView.cs:
12009         * TreeNode.cs: Raise events no matter how the treenode is
12010         checked. Patch by Don Edvalson.
12011
12012 2006-01-30  Jackson Harper  <jackson@ximian.com>
12013
12014         * TreeNode.cs: Signature fix.
12015
12016 2006-01-29  Alexander Olk  <alex.olk@googlemail.com>
12017
12018         * ThemeClearlooks.cs: Fixed a crash in ProgressBar drawing.
12019
12020 2006-01-20  Mike Kestner  <mkestner@novell.com>
12021
12022         * Form.cs: Add ActiveTracker property to do Captures and perform mouse
12023         event forwarding when menus are active.
12024         * MenuAPI.cs: kill the GrabControl hack.  Use Form.ActiveTracker.
12025         Most of the patch is pdb's with a little rework.
12026
12027 2006-01-26  Peter Dennis Bartok  <pbartok@novell.com> 
12028
12029         * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs, XplatUIOSX.cs: 
12030           Removed GetMenuDC and ReleaseMenuDC methods; replaced
12031           by PaintEventStart(handle, false) and PaintEventEnd(handle, false)
12032         * Form.cs: Changed WM_NCPAINT handler to use PaintEventStart and End
12033         * InternalWindowManager.cs: Added use of PaintEventStart/End to
12034           handling of WM_NCPAINT message, now passing the PaintEventArgs to
12035           the PaintWindowDecorations method
12036         * MainMenu.cs: Switched logic from GetMenuDC to PaintEventStart
12037         * MdiChildContext.cs: Switched logic from GetMenuDC to PaintEventStart
12038         * MenuAPI.cs: Made tracker window invisible
12039         * XplatUIWin32.cs:
12040           - Removed GetMenuDC and ReleaseMenuDC methods
12041           - Implemented the client=false path for PaintEventStart and
12042             PaintEventEnd
12043
12044 2006-01-26  Peter Dennis Bartok  <pbartok@novell.com>
12045
12046         * XplatUIWin32.cs(SetBorderStyle): Fixed3D needs a border
12047         * XplatUIX11.cs(DeriveWindowStyles): Updated to match fixed Form
12048           styles
12049         * Form.cs: 
12050           - MaximizeBox, MinimizeBox: Recreate the handle when setting
12051             the style
12052           - CreateParams: Reworked the styles to match MS look'n'feel,
12053             removed automatic setting of MinimizeBox, MaximizeBox, etc. via
12054             the WS_OVERLAPPEDWINDOW style. This fixes #76823.
12055
12056 2006-01-26  Peter Dennis Bartok  <pbartok@novell.com> 
12057
12058         * XplatUIX11.cs(GetWindowState): Now throwing an exception when the 
12059           window is not mapped, since otherwise every form that's being 
12060           created is considered minimized, which is wrong.
12061         * Form.cs: Catching the exception and returning our internal value
12062           instead
12063
12064 2006-01-26  Peter Dennis Bartok  <pbartok@novell.com>
12065
12066         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs: Added new driver method
12067           SetWindowMinMax() to have means to tell the driver about the minimum,
12068           maximum and maximized state window sizes. (Part of the fix for #76485)
12069         * Form.cs:
12070           - Implemented tracking of minimum and maximum window size, now calling
12071             new SetWindowMinMax() driver method to tell the driver (Part of the
12072             fix for #76485)
12073           - Finished handling of WM_GETMINMAXINFO method, now setting all values
12074             (Completes fix for #76485)
12075           - Calling new SetWindowMinMax driver method when the handle for a 
12076             form is created, to make sure the driver knows about it even if
12077             the values have been set before the window was created
12078           - Now eating the WM_WINDOWPOSCHANGED message if the form is minimized
12079             to avoid messing up our anchoring calculations (partial fix
12080             for #77355)
12081         * XplatUIStructs.cs: Added MINMAXINFO struct (moved from Win32 driver)
12082         * XplatUIX11.cs:
12083           - Added _NET_WM_STATE_HIDDEN property for detecting minimized state
12084           - Improved GetWindowState() to detect 'Minimized' state on Metacity 
12085             (and presumably other freedesktop.org compliant WMs). Left the
12086             assumption unmapped=minimized, needed for SetVisible to work.
12087           - Now setting the window state when creating windows
12088           - Fixed SetVisible to consider/set the window state when mapping
12089             a Form. We cannot set the state before it's mapped, and we cannot
12090             use Form.WindowState once it's mapped (since it would ask the
12091             driver and get 'normal'. Therefore, we grab the state before
12092             mapping, map, and then set state.
12093           - Implmemented SetWindowMinMax method; Metacity does not seem to
12094             honor the ZoomHints, though.
12095         * XplatUIWin32.cs:
12096           - Removed MINMAXINFO (moved to XplatUIStructs)
12097           - Added SetWindowMinMax stub (on Win32 the only way to set that
12098             information is in response to the WM_GETMINMAXINFO message, which
12099             is handled in Form.cs)
12100           - Added logic to SetVisible to set the proper window state when a 
12101             form is made visible (fixes #75720)
12102
12103 2006-01-26  Jackson Harper  <jackson@ximian.com>
12104
12105         * Control.cs (BeginInvoke): Automagically handle EventHandlers the
12106         same way we handle them with Invoke.
12107
12108 2006-01-25  Peter Dennis Bartok  <pbartok@novell.com> 
12109
12110         * Form.cs:
12111           - Added tracking of window state so CreateParams can return
12112             the appropriate style
12113           - Moved setting of WS_CAPTION style in CreateParams to allow
12114             styles without caption
12115         * DataGridTextBoxColumn.cs: We are now also creating the TextBox 
12116           control if the TextBox property is accessed. Fixes #77345
12117         * Control.cs:
12118           - get_Created: now uses is_disposed and is_created to determine
12119             return value (suggested by Jackson)
12120           - CreateHandle: No longer exits if the handle is being recreated
12121           - RecreateHandle: If the handle is not yet created call the 
12122             appropriate method to create either control or handle. If the
12123             control is already created CreateHandle will simply exit instead
12124             of just creating the handle
12125         * Hwnd.cs: Removed expose_pending tracking, no longer needed since we
12126           now SendMessage WM_DESTROY directly to the control when DestroyWindow
12127           is called.
12128         * XplatUIX11.cs: 
12129           - When DestroyWindow is called, instead of waiting for the 
12130             DestroyNotification from X11, we directly post it to the WndProc
12131             and immediately dispose the hwnd object.
12132             Same applies to DestroyChildWindows, and this obsoletes the
12133             expose_pending tracking. Contrary to Win32 behaviour we destroy our
12134             child windows before our own, to avoid X11 errors.
12135           - Removed the direct sending of WM_PAINT on UpdateWindow
12136         * XplatUIWin32.cs:
12137           - Reworked DoEvents and GetMessage to allow access to internal queue
12138             even when trying non-blocking access to the queue.  Fixes #77335. 
12139             Based on a patch suggestion by Don Edvalson. The new private
12140             GetMessage can now also be used as a backend for a PeekMessage
12141             frontend version.
12142         * XplatUI.cs: Improved debug output for CreateWindow
12143
12144 2006-01-25  Jackson Harper  <jackson@ximian.com>
12145
12146         * Help.cs: Allow param to be null. Patch by Don Edvalson.
12147
12148 2006-01-24  Jackson Harper  <jackson@ximian.com>
12149
12150         * ComboBox.cs: Clamp the max value set for the vertical scrollbar
12151         when we have a MaxDropItems lower then the selected index.
12152
12153 2006-01-24  Jackson Harper  <jackson@ximian.com>
12154
12155         * Control.cs: Don't allow selection of non visible controls, allow
12156         selection of controls without parents.
12157
12158 2006-01-24  Jordi Mas i Hernandez <jordimash@gmail.com>
12159
12160         * ThemeWin32Classic.cs: Fixes Datagrid drawing issues
12161         * DataGridDrawingLogic.cs: Add editing row only when is necessary
12162
12163 2006-01-23  Jackson Harper  <jackson@ximian.com>
12164
12165         * UpDownBase.cs: Make the textbox handle all the selection and
12166         tabbing. This fixes tabing to updown controls.
12167
12168 2006-01-24  Jordi Mas i Hernandez <jordimash@gmail.com>
12169
12170         * TextBoxBase.cs: fixes exception thown the object was null
12171
12172 2006-01-23  Jackson Harper  <jackson@ximian.com>
12173
12174         * ButtonBase.cs: Just use the base CreateParams. They set
12175         visibility and enabled correctly.
12176         * ComboBox.cs:
12177         * TrackBar.cs:
12178         * MonthCalendar.cs: Lets let the base set as much of the
12179         createparams as possible so we don't have duplicate code all over
12180         the place.
12181
12182 2006-01-22  Alexander Olk  <alex.olk@googlemail.com>
12183
12184         * ThemeGtk.cs: Added TrackBar and some experimental code to
12185           get double buffering back
12186
12187 2006-01-21  Jordi Mas i Hernandez <jordimash@gmail.com>
12188
12189         * DataGrid.cs: Allows row number set internally higher than the last
12190         when creating a new row. Restores the editing functionality.
12191
12192 2006-01-20  Mike Kestner  <mkestner@novell.com>
12193
12194         * MimeIcon.cs: delay Image creation until the icons are accessed
12195         instead of creating 190 scaled images on GnomeHandler startup.
12196
12197 2006-01-19  Peter Dennis Bartok  <pbartok@novell.com> 
12198
12199         * TextBoxBase.cs (WndProc): When handling WM_KEYDOWN we need to
12200           first call base before processing the event. Fixes #77279
12201
12202 2006-01-19  Peter Dennis Bartok  <pbartok@novell.com>
12203
12204         * XplatUIWin32.cs, Cursor.cs: Fixed code that wrongly assumed
12205           that the stride for the GDI bitmap would match the stride of
12206           a DIB or a Cursor.
12207
12208 2006-01-19  Alexander Olk  <alex.olk@googlemail.com>
12209
12210         * ThemeGtk.cs: Added ProgressBar, RadioButton, CheckBox
12211
12212 2006-01-19  Jackson Harper  <jackson@ximian.com>
12213
12214         * ComboBox.cs: Hookup the text controls keydown event so we get
12215         those when the text control has the focus.
12216
12217 2006-01-18  Peter Dennis Bartok  <pbartok@novell.com> 
12218
12219         * Label.cs: Now using the base events instead of defining new ones;
12220           this allows us to just call the base properties without having to
12221           duplicate all base property logic 
12222
12223 2006-01-18  Peter Dennis Bartok  <pbartok@novell.com>
12224
12225         * Label.cs: A label by default is not a tabstop (Fixes one of our
12226           failing nunit tests)
12227
12228 2006-01-18  Peter Dennis Bartok  <pbartok@novell.com> 
12229
12230         * XplatUIWin32.cs: Fixed wrong DoEvents logic. Fixes #77282
12231         * XplatUIX11.cs: Removed WM_PAINT check from DoEvents. Fixes #77282
12232
12233 2006-01-18  Peter Dennis Bartok  <pbartok@novell.com>
12234
12235         * Cursor.cs: Reimplemented creating cursor bitmaps without using
12236           the Bitmap(Stream) constructor which is semi-broken on MS GDI+.
12237           This fixes #77218
12238         * XplatUIWin32.cs: 
12239           - Reimplemented creating Bitmaps from DIBs since the Bitmap(Stream) 
12240             constructor creates images that can't be saved. Part of the fix
12241             for #76103
12242           - Added handling of CF_BITMAP as CF_DIB to clipboard code (Fixes #76103)
12243           - SetWindowState: Switched ShowWindow flags (part of an upcoming 
12244             bug fix for handling window state in forms properly)
12245
12246 2006-01-18  Alexander Olk  <alex.olk@googlemail.com>
12247
12248         * ThemeGtk.cs: Simplify ScrollBar drawing
12249
12250 2006-01-18  Jackson Harper  <jackson@ximian.com>
12251
12252         * Splitter.cs: Set the default dock style for the splitter control
12253         in the constructor.
12254
12255 2006-01-18  Alexander Olk  <alex.olk@googlemail.com>
12256
12257         * ThemeGtk.cs: Corrected StateType and ShadowType for
12258           gtk_paint_box
12259
12260 2006-01-18  Alexander Olk  <alex.olk@googlemail.com>
12261
12262         * Control.cs: Make use of Theme.DoubleBufferingSupported
12263         * ThemeGtk.cs:
12264           - Added drawing for flat style buttons
12265           - Added ScrollBar drawing
12266
12267 2006-01-18  Alexander Olk  <alex.olk@googlemail.com>
12268
12269         * ThemeClearlooks.cs: Removed some unneeded code.
12270         * ThemeGtk.cs: First part of ThemeGtk enhancements.
12271
12272 2006-01-17  Peter Dennis Bartok  <pbartok@novell.com>
12273
12274         * LinkLabel.cs: We need to update the hover drawing when
12275           leaving the control as well.
12276
12277 2006-01-18  Jordi Mas i Hernandez <jordimash@gmail.com>
12278
12279         * DataGrid.cs: Clicking on non empty areas in the columns
12280            area was giving an exception
12281
12282 2006-01-17  Jackson Harper  <jackson@ximian.com>
12283
12284         * ThemeWin32Classic.cs:
12285         * ListView.cs: Do not draw/clip the headers when the header style
12286         is None.
12287
12288 2006-01-17  Jordi Mas i Hernandez <jordimash@gmail.com>
12289
12290         * DataGrid.cs: Fixes 77260
12291         
12292 2006-01-17  Jordi Mas i Hernandez <jordimash@gmail.com>
12293
12294         * DataGrid.cs: Clicking on a column on a empty grid was giving
12295           an exception
12296
12297 2006-01-17  Peter Dennis Bartok  <pbartok@novell.com>
12298
12299         * DataGrid.cs (OnKeyDown): Don't use the array if it's empty
12300           or any keypress will crash the grid.
12301
12302 2006-01-17  Mike Kestner  <mkestner@novell.com>
12303
12304         * MainMenu.cs (OnMenuChanged): set Height=0 to cause relayout.
12305         * ThemeWin32Classic.cs (CalcItemSize): clear Height/Width for 
12306         invisible/previously-visible items.
12307         [Fixes #76909]
12308
12309 2006-01-17  Alexander Olk  <alex.olk@googlemail.com>
12310
12311         * ThemeClearlooks.cs:
12312         - Added CL_Draw_Button method; now other theme controls that are 
12313           not derived from button or do not have a button can draw buttons
12314           too
12315         - Updated ComboBox drawing
12316         - Beautified RadioButton drawing
12317         - Corrected drawing of bottom and left tabs
12318         - Beautified DateTimePicker and MonthCalendar
12319         - Added CPDrawButton and CPDrawRadioButton
12320
12321 2006-01-16  Jackson Harper  <jackson@ximian.com>
12322
12323         * ComboBox.cs: Set the initial value of the scrollbar to the
12324         current index. Reduce the numbers of refreshs and IndexOfs called.
12325
12326 2006-01-14  Alexander Olk  <alex.olk@googlemail.com>
12327
12328         * FileDialog.cs: When the file listview is focused hitting the
12329           backspace key moves the fileview to the parent directory
12330
12331 2006-01-13  Peter Dennis Bartok  <pbartok@novell.com>
12332
12333         * Form.cs: 
12334           - Added RecreateHandle call when changing taskbar visibility to 
12335             trigger reparenting in Win32 driver (Fixes #75719)
12336           - If a window has minimize or maximize buttons, it cannot have
12337             a help button
12338         * XplatUIWin32.cs:
12339           - CreateWindow: When no WS_EX_APPWINDOW style is found we parent
12340             the toplevel form with FosterParent (A toolwindow not on the
12341             taskbar) (Fixes #75719)
12342           - Made FosterParent a toolwindow
12343
12344 2006-01-13  Alexander Olk  <alex.olk@googlemail.com>
12345
12346         * FileDialog.cs: Don't crash if InitialDirectory doesn't exist
12347
12348 2006-01-13  Alexander Olk  <alex.olk@googlemail.com>
12349
12350         * ToolTip.cs: If SetToolTip is called from a control and the mouse
12351           is currently over that control, make sure that tooltip_window.Text
12352           gets updated
12353
12354 2006-01-13  Mike Kestner  <mkestner@novell.com>
12355
12356         * MimeIcon.cs: size_t on lp64 fix for gdk_pixbuf_save_to_file extern.
12357
12358 2006-01-13  Jackson Harper  <jackson@ximian.com>
12359
12360         * TreeView.cs: On MS GetNodeAt never actually factors in the X
12361         value passed.  Also redraw the selected node when we recieve
12362         focus, so tabbing between trees works correctly.
12363
12364 2006-01-13  Alexander Olk  <alex.olk@googlemail.com>
12365
12366         * MimeIcon.cs: GnomeHandler: older gnome versions don't have
12367           ~/.gconf/%gconf-tree.xml, so use
12368           .gconf/desktop/gnome/interface/%gconf.xml
12369
12370 2006-01-13  Peter Dennis Bartok  <pbartok@novell.com> 
12371
12372         * TextControl.cs: Draw text in gray if control is disabled
12373
12374 2006-01-13  Peter Dennis Bartok  <pbartok@novell.com> 
12375
12376         * TreeView.cs: Draw the focus rectangle outside the highlight, to
12377           make sure it's always visible. Fixes #76680.
12378
12379 2006-01-13  Peter Dennis Bartok  <pbartok@novell.com>
12380
12381         * TreeView.cs: Implemented Wheel scrolling. Fixes #76531
12382
12383 2006-01-13  Jonathan Chambers  <jonathan.chambers@ansys.com>
12384
12385         * PageSetupDialog.cs: Added.
12386         * PrintDialog.cs: Attributes.
12387         * PrintPreviewControl.cs: Updates.
12388         * PrintPreviewDialog.cs: Updates.
12389         
12390 2006-01-12  Peter Dennis Bartok  <pbartok@novell.com>
12391
12392         * Control.cs: Undid my selection check fix, since it's not needed
12393         * TextBoxBase.cs:
12394           - Now considering the presence of hscroll/vscroll when sizing
12395             vscroll/hscroll respectively. Fixed bug #77077
12396           - Added Left/Up/Down/Right to IsInputKey list to prevent
12397             ContainerControl from stealing them. This fixes what I broke
12398             with my last checkin.
12399
12400 2006-01-12  Peter Dennis Bartok  <pbartok@novell.com> 
12401
12402         * ScrollableControl.cs: Implemented dockpadding. Fixes #77166. And
12403           I finally understand how the property can be set without a setter :-)
12404
12405 2006-01-12  Peter Dennis Bartok  <pbartok@novell.com>
12406
12407         * Application.cs:
12408           - Switched RunLoop to use static Message.Create to create a 
12409             Message object
12410           - Added PreProcessMessage call in runloop for keyboard events; this
12411             is part of the fix for #77219, I overlooked this originally in the
12412             MSDN doc for PreProcessMessage
12413         * Control.cs:
12414           - Removed call to PreProcessMessage from handling of keyboard 
12415             messages; it's supposed to be done in the message pump
12416           - Moved call to ProcessKeyEventArgs inside ProcessKeyMessage as
12417             per MSDN documentation.
12418           - IsInputChar: All chars are input chars by default; removed the 
12419             parent calling chain, MS does not document that
12420           - PreProcessMessage: If IsInputChar is true, we want to return false
12421             to allow dispatching of the message
12422           - When selecting the next control, now also check that we're not
12423             selecting ourselves again and therefore return a false positive.
12424         * TextBoxBase.cs:
12425           - Tried to match return values for IsInputKey and ProcessDialogKey
12426             to what MS returns; moved processing of our special keys outside
12427             ProcessDialogKey since MS does not seem to return true on those.
12428           - Moved code that previously was in ProcessDialogKey into new private
12429             ProcessKey method, which gets called upon receipt of WM_KEYDOWN
12430           - Reworked handling of WM_CHAR to not have to duplicate code from
12431             Control.cs anymore, instead we simply call down to base.
12432            
12433 2006-01-12  Jackson Harper  <jackson@ximian.com>
12434
12435         * ComboBox.cs: We always need to refresh the text area when
12436         EndUpdate is called. Fixes the combobox in the file dialog.
12437         * Control.cs: Don't create the creator_thread until the controls
12438         handle is created.  Also in InvokeRequired we check if the
12439         creator_thread is null. This gives the effect of InvokeRequired
12440         returning true if the controls handle is not created yet, and
12441         matches MS.
12442
12443 2006-01-12  Peter Dennis Bartok  <pbartok@novell.com>
12444
12445         * XplatUI.cs:
12446           - Added StartLoop() driver method. This is used to allow drivers to
12447             prepare for an upcoming GetMessage/TranslateMessage/DispatchMessage
12448             loop for a particular thread
12449           - Added EndLoop() driver method. This is called once the message
12450             pump for the thread is shut down
12451           - Added SupportsTransparency method to allow the driver to indicate
12452             opacity support for windows
12453         * Form.cs:
12454           - Removed TODO attribute, completed AllowTransparency property
12455           - Added documented logic to Opacity
12456         * GroupBox.cs, Label.cs, LinkLabel.cs, PropertyGrid.cs, Control.cs,
12457           ButtonBase.cs, CheckedListBox.cs: Combined Jackson's and Miguel's
12458           versions of CompatibleTextRendering
12459         * X11Structs.cs: Added opacity atom to our atom enumeration
12460         * Hwnd.cs: Added opacity tracking (we need to track since the opacity
12461           of a form might be set before it's reparented by the WM, and we need
12462           the opacity value without calling up to Form)
12463         * XplatUIDriver.cs: Added StartLoop(), EndLoop() and 
12464           SupportsTransparency() driver methods
12465         * Application.cs: Now calling StartLoop and EndLoop driver methods
12466         * XplatUIX11.cs:
12467           - Added opacity atom registration
12468           - Added StartLoop()/EndLoop() methods. They're empty right now but
12469             will need to get implemented when we switch to a per-thread queue
12470           - Implemented SupportsTransparency() method
12471           - Implemented SetWindowTransparency() method
12472           - Added support for setting the opacity value when a window is
12473             reparented (since the opacity needs to be set on the WM frame)
12474         * XplatUIOSX.cs, XplatUIWin32.cs:
12475           - Added SupportsTransparency(), StartLoop() and EndLoop() methods
12476
12477 2006-01-12  Alexander Olk  <alex.olk@googlemail.com>
12478
12479         * ThemeClearlooks.cs: Don't crash if TabControl.Parent is null.
12480
12481 2006-01-12  Alexander Olk  <alex.olk@googlemail.com>
12482
12483         * FileDialog.cs: Added ToolTip for MWFFileView
12484         * MimeIcon.cs: Rewrote GnomeHandler.
12485           - Get currently used gnome icon theme from
12486             ($HOME)/.gconf/%gconf-tree.xml
12487           - Make use of inherited icon themes
12488           - Support SVG icon themes like Tango via librsvg
12489
12490 2006-01-12  Miguel de Icaza  <miguel@novell.com>
12491
12492         Revert's Jackson's revert which broke 2.0 builds.   Fix both
12493         builds. 
12494         
12495         * Application.cs: Move the use_compatible_text_rendering outside
12496         the NET_2_0 define.  If we ever need to use the
12497         use_compatible_text_rendering on the individual controls they will
12498         access the variable from the common shared code paths.
12499
12500 2006-01-12  Peter Dennis Bartok  <pbartok@novell.com>
12501
12502         * XplatUI.cs:
12503           - Added more granular debug options
12504           - Added method to print both window text and id
12505           - Switched debug output to use new Window() debug method
12506           - Added IsEnabled() driver method
12507           - Added EnableWindow() driver method
12508         * Form.cs:
12509           - Removed end_modal; no longer needed, new loop handles termination
12510             via 'closing' variable
12511           - If form is modal, setting DialogResult will now initiate loop
12512             termination via 'closing' variable
12513           - Added support for is_enabled/WS_DISABLED to CreateParams
12514           - Close() now just send the WM_CLOSE message; the WM_CLOSE handler
12515             does all the work
12516           - Removed code that's now in RunLoop from ShowDialog()
12517           - Added various documented sanity checks to ShowDialog()
12518           - Added handling of WM_DESTROY message; we set 'closing' on getting
12519             the message to indicate the message pump to terminate
12520           - Added handling of new internal WM_CLOSE_INTERNAL message - it's
12521             send by the Application.ExitThread method. (We send the message
12522             to destroy the window after all other events have been
12523             processed through the queue, instead of destroying the handle 
12524             directly)
12525           - Moved code from Close() method to WM_CLOSE handler; added logic
12526             to only send close-related events if the form is not displayed
12527             modal
12528         * Splitter.cs (..ctor): Fixed typo in resource name
12529         * Control.cs:
12530           - DrawBackgroundImage: Explicitly selecting the wrap mode for the
12531             brush now
12532           - set_Cursor: Now only setting calling into XplatUI if the handle for
12533             the control is already created; this avoids implict handle creation
12534             or crashes if it's not created
12535           - set_Enabled: Now setting the enabled state via the new driver method
12536             instead of just tracking it
12537           - CreateParams: Added logic to set WS_DISABLED based on enabled state
12538           - CreateControl: Reordered event firing and method calls to more
12539             closely fire events in the order MS does. Now setting the
12540             enabled state in the driver when creating the control.
12541           - SetVisibleCore: Moved when the OnVisibleChanged event is fired to
12542             match MS order
12543         * FolderBrowserDialog.cs, MessageBox.cs, ButtonBase.cs, TrackBar.cs,
12544           MonthCalendar.cs: get_CreateParams: Added setting of WS_DISABLED 
12545         * XplatUIStructs.cs: Added internal WM_CLOSE_INTERNAL mesage id
12546         * Hwnd.cs:
12547           - Added tracking of window enabled state (get_Enabled/set_Enabled)
12548           - Added EnabledHwnd property to easily allow a driver to find the
12549             handle of the first enabled window in the parent chain (this is
12550             used by drivers to pass up input events of disabled windows)
12551         * XplatUIDriver.cs: Added IsEnabled() method
12552         * Application.cs:
12553           - Removed crude and obsolete exiting tracking variable
12554           - Removed internal ModalRun(); replaced by RunLoop()
12555           - Implemented private CloseForms() method to allow closing all 
12556             windows owned by a particular (or all) threads
12557           - Exit() now properly closes all windows without forcing the message
12558             pump to quit
12559           - Removed obsolete InternalExit() method
12560           - Changed Run() methods to use new RunLoop() message pump
12561           - Implemented new RunLoop() method for both modal and non-modal forms
12562         * CommonDialog.cs:
12563           - get_CreateParams: Added setting of WS_DISABLED
12564           - Simplified ShowDialog(); now all the work is done in RunLoop(),
12565             invoked via Form.ShowDialog()
12566         * NativeWindow.cs: We don't remove the window from the collection when
12567           the handle is destroyed; there might still be messages for it in the
12568           queue (mainly the resulting WM_DESTROY); instead it will be removed
12569           when Control calls InvalidateHandle in the WM_DESTROY handler
12570         * XplatUIX11.cs:
12571           - CreateWindow: Added logic to handle the WS_DISABLED window style
12572           - EnableWindow: Implemented based on Hwnd.Enabled
12573           - GetMessage: Reset PostQuitState so the method can be called again
12574           - Implemented support for disabled windows (passing messages to the
12575             first enabled parent) in handling all input messages
12576           - Added optimizations for handling Expose events
12577           - Implemeted new driver method IsEnabled()
12578           - Now always resetting paint pending tracking vars when we start paint
12579           - Re-implemented UpdateWindow via just sending a WM_PAINT message
12580         * XplatUIOSX.cs: Added IsEnabled method stub
12581         * XplatUIWin32.cs: Implemented new IsEnabled() method
12582
12583 2006-01-11  Jackson Harper  <jackson@ximian.com>
12584
12585         * ButtonBase.cs, CheckedListBox.cs, GroupBox.cs, Label.cs,
12586         LinkLabel.cs, PropertyGrid.cs: Unbreak 1.1 build. Consolidate the
12587         variables a little.
12588         * ColorDialog.cs: Clear out the old form before adding the new
12589         panel.  
12590
12591 2006-01-11  Jackson Harper  <jackson@ximian.com>
12592
12593         * X11Dnd.cs: Make sure to add all the text formats when adding
12594         strings to the data object.
12595         * TreeNodeCollection.cs: When adding to a sorted tree we need to
12596         do some redrawing too.  Also change the UpdateNode to an
12597         UpdateBelow so the newly added node gets painted.
12598         
12599 2006-01-11  Miguel de Icaza  <miguel@novell.com>
12600
12601         * ButtonBase.cs, CheckedListBox.cs, GroupBox.cs, Label.cs,
12602         LinkLabel.cs, PropertyGrid.cs: Implement the
12603         UseCompatibleTextRendering property for 2.x
12604
12605         * Application.cs (SetCompatibleTextRenderingDefault): Add. 
12606
12607 2006-01-11  Jackson Harper  <jackson@ximian.com>
12608
12609         * TreeView.cs: Use the property for setting the selected node so
12610         the correct events get raised.
12611         * TreeNode.cs: Update the tree when the fore/back colours of a
12612         node are set.
12613
12614 2006-01-10  Jackson Harper  <jackson@ximian.com>
12615
12616         * TreeView.cs: Allow setting SelectedNode to null.
12617
12618 2006-01-9  Jonathan Chambers  <jonathan.chambers@ansys.com>
12619
12620         * Form.cs: Fix support for Form TransparencyKey and Opacity on Windows.
12621
12622 2006-01-9  Jonathan Chambers  <jonathan.chambers@ansys.com>
12623
12624         * PrintControllerWithStatusDialog.cs: Update page number in dialog.
12625
12626 2006-01-9  Jonathan Chambers  <jonathan.chambers@ansys.com>
12627
12628         * PrintDialog.cs: Added attributes and set default property values.
12629
12630 2006-01-9  Jonathan Chambers  <jonathan.chambers@ansys.com>
12631
12632         * PrintControllerWithStatusDialog.cs: 
12633         Added PrintControllerWithStatusDialog.
12634
12635 2006-01-9  Jonathan Chambers  <jonathan.chambers@ansys.com>
12636
12637         * XplatUI.cs, Form.cs, XplatUIDriver.cs, XplatUIX11.cs, XplatUIOSX.cs, 
12638         XplatUIWin32.cs: Added support for Form TransparencyKey and Opacity on Windows.
12639
12640 2006-01-9  Jonathan Chambers  <jonathan.chambers@ansys.com>
12641
12642         * ComboBox.cs: Fix crash when there is no selected item (due to last commit)
12643
12644 2006-01-09  Jonathan Chambers  <jonathan.chambers@ansys.com>
12645
12646         * ComboBox.cs: Added KeyDown event handler for processing arrow keys
12647         and PgUp/PgDown. Also, scroll to selected item upon dropdown. Bugs 76857 and 76788.
12648
12649 2006-01-08  Alexander Olk  <alex.olk@googlemail.com>
12650
12651         * MimeIcon.cs: Added internal class SVGUtil.
12652
12653 2006-01-08  Alexander Olk  <alex.olk@googlemail.com>
12654
12655         * FileDialog.cs: Don't crash if there are two files with the
12656           same name but different locations.
12657
12658 2006-01-08  John BouAntoun  <jba-mono@optusnet.com.au>
12659
12660         * MonthCalendar.cs: Fixed annoying rendering bug when selecting
12661         dates across multiple month grids. Used to not highlight entire 
12662         month, but does now.
12663         
12664 2006-01-06  Jackson Harper  <jackson@ximian.com>
12665
12666         * MonthCalendar.cs: Removed DoEvents call to prevent a running
12667         message loop. Change timer intervals to numbers that seem more
12668         natural.
12669
12670 2006-01-06  John BouAntoun  <jba-mono@optusnet.com.au>
12671
12672         * DateTimePicker.cs: Modified CalculateDropDownLocation to use the screen
12673           object for location info since screen object is now implemented.
12674
12675 2006-01-05  Jackson Harper  <jackson@ximian.com>
12676
12677         * AsyncMethodData.cs: Check if the call is complete before doing a WaitOne
12678         * AsyncMethodResult.cs: We no longer use a WeakReference for the
12679         AsyncMethodResult, this is because we ALWAYS want the
12680         ManualResetEvent to get set.
12681         * Control.cs: When disposing use an async invoke to call shutdown
12682         code, so that thigns don't block on the finalizer thread.  Also
12683         check if we even have a message loop before trying to send
12684         messages, if we don't then don't bother sending messages.
12685         - No more weak references for async methods
12686         * XplatUIDriver.cs: No more weak references for async methods.
12687
12688 2006-01-04  Alexander Olk  <alex.olk@googlemail.com>
12689
12690         * FontDialog.cs: Fix, don't throw an exception if FontFamily.Families
12691           returns two FontFamily with the same name
12692
12693 2006-01-04  Peter Dennis Bartok  <pbartok@novell.com>
12694
12695         * ThemeWin32Classic.cs, ThemeClearlooks.cs: Dropped stupid scheme of 
12696           drawing disabled text. Instead using the ColorGrayText color
12697
12698 2006-01-04  Jackson Harper  <jackson@ximian.com>
12699
12700         * TreeNode.cs: redraw the node when its image index is changed.
12701
12702 2006-01-04  Peter Dennis Bartok  <pbartok@novell.com>
12703
12704         * RichTextBox.cs: Same fix as last, just for SelectionColor. This
12705           time I checked there are no others like it.
12706
12707 2006-01-04  Jackson Harper  <jackson@ximian.com>
12708
12709         * AsyncMethodResult.cs: Use a ManualResetEvent instead of a mutex,
12710         this gives the behavoir I was looking for.
12711         * Control.cs: Special case Invoking EventHandlers, this matches MS
12712         and fixes part of bug #76326.
12713
12714 2006-01-04  Alexander Olk  <alex.olk@googlemail.com>
12715
12716         * ThemeClearlooks.cs, FileDialog.cs:
12717           - Reflect the latest Theme class changes
12718           - Remove Mono.Unix.Syscall.time in FileDialg and replace it 
12719             with DateTime
12720             
12721 2006-01-04  Alexander Olk  <alex.olk@googlemail.com>
12722
12723         * Theme.cs: Cache UI resource images and resize them if needed
12724
12725 2006-01-03  Peter Dennis Bartok  <pbartok@novell.com>
12726
12727         * RichTextBox.cs: FormatText is 1-based, make it so when SelectionFont
12728           is called. This fixes the crash in Nexxia when setting the font
12729           attributes in the chat. [However, RTF needs a look-over to make sure
12730           that all SelectionXXX methods handle the special case that selection
12731           is empty and therefore the change must be applied to all text starting
12732           at the cursor/selection start]
12733
12734 2006-01-03  Peter Dennis Bartok  <pbartok@novell.com> 
12735
12736         * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs, XplatUIWin32.cs,
12737           XplatUIOSX.cs: Added SendMessage and PostMessage methods
12738         * X11Keyboard.cs: Switched to new way of calling PostMessage
12739
12740 2006-01-03  Peter Dennis Bartok  <pbartok@novell.com>
12741
12742         * Theme.cs: Added theme interface for images to allow the theme to
12743           control what images are used for things like FileDialog, MessageBox
12744           icons, etc.
12745         * MessageBox.cs: Now uses the new Theme icon/image interfaces
12746
12747 2006-01-03  Alexander Olk  <alex.olk@googlemail.com>
12748
12749         * FileDialog.cs:
12750           - Removed some dead code
12751           - Opening a recently used file does work now
12752           - Small UI enhancements
12753           - Refactoring
12754
12755 2006-01-02  Alexander Olk  <alex.olk@googlemail.com>
12756
12757         * FileDialog.cs: Forgot too add __MonoCS__
12758
12759 2006-01-02  Alexander Olk  <alex.olk@googlemail.com>
12760
12761         * FileDialog.cs: We are able to read recently used files now let's
12762           go on and write them.
12763
12764 2006-01-01  Alexander Olk  <alex.olk@googlemail.com>
12765
12766         * FileDialog.cs: Breathe some life into "last open"/"recently used"
12767           button
12768         * MimeIcon.cs: Do a check for the top level media type also
12769
12770 2005-12-31  Alexander Olk  <alex.olk@googlemail.com>
12771
12772         * ThemeClearlooks.cs:
12773           - Added CPDrawStringDisabled
12774           - ButtonBase_DrawText: Workaround for a DrawString bug; cut off
12775             some chars if the text doesn't fit into text_rect
12776           - DrawListViewItem: If View = View.LargeIcon center the image;
12777             rewrote the drawing of ListViewItem.Text if View = 
12778             View.LargeIcon
12779
12780 2005-12-31  Alexander Olk  <alex.olk@googlemail.com>
12781
12782         * MimeIcon.cs: Use default KDE icon theme if there is no
12783           "48x48" directory for the current icon theme, fixes #77114
12784         * Mime.cs: Disable not working and actually not used code. 
12785         * ThemeWin32Classic.cs:
12786           - Replace "new SolidBrush" in GetControlBackBrush and
12787             GetControlForeBrush with ResPool.GetSolidBrush
12788           - Changed DrawListViewItem from private to protected virtual
12789         * FileDialog.cs:
12790           - Added form.MaximizeBox = true
12791           - Don't throw an exception if there is a broken symbolic link
12792
12793 2005-12-23  Jackson Harper  <jackson@ximian.com>
12794
12795         * TabControl.cs: Give the panels focus, keyboard navigation is
12796         fixed so this works correctly now.
12797         - We need these key events also.
12798         * ToolBar.cs: Remove some of the poor mans double buffering.
12799         
12800 2005-12-24  Alexander Olk  <alex.olk@googlemail.com>
12801
12802         * ComboBox.cs: The internal TextBox now returns the focus.
12803
12804 2005-12-23  Jackson Harper  <jackson@ximian.com>
12805
12806         * ThemeWin32Classic.cs:  Draw the text for all tab appearances.
12807
12808 2005-12-23  Peter Dennis Bartok  <pbartok@novell.com>
12809
12810         * Control.cs: Removed debug code
12811         * XplatUIX11.cs: Changed DestroyChildWindows to also consider
12812           implicit children
12813
12814 2005-12-23  Peter Dennis Bartok  <pbartok@novell.com> 
12815
12816         * Control.cs: When creating the control, update the Z-order after
12817           all it's children are created, too. (Fixes nexxia not showing
12818           picturebox bug)
12819
12820 2005-12-23  Peter Dennis Bartok  <pbartok@novell.com>
12821
12822         * Control.cs: Do not update the anchoring distances if layout is
12823           suspended, instead do it once layout is resumed
12824
12825 2005-12-22  Peter Dennis Bartok  <pbartok@novell.com> 
12826
12827         * Control.cs: 
12828           - After many hours of debugging, for both Jackson and
12829             myself, it turns out that it helps to set the parent of a control
12830             if you want to actually see it onscreen. In the spirit of that
12831             discovery, we're now setting the parent of the control and
12832             it's children when the control's handle is created. This fix
12833             will make Lutz Roeder's Reflector run happily. 
12834           - now just creating the handle instead of the whole control when
12835             getting a graphics context for the control.
12836
12837 2005-12-22  Peter Dennis Bartok  <pbartok@novell.com>
12838
12839         * ScrollableControl.cs: When calculating the canvas, don't consider
12840           the scrollbar widths. Instead, predict if horizontal scrollbar
12841           will affect canvas when deciding on vertical display and vice versa.
12842
12843 2005-12-22  Peter Dennis Bartok  <pbartok@novell.com>
12844
12845         * RichTextBox.cs: Set default RTF font for documents that don't
12846           have a font table (Fixes #77076)
12847
12848 2005-12-22  Jackson Harper  <jackson@ximian.com>
12849
12850         * TextBoxBase.cs: It's difficult to do, but you can have an empty
12851         clipboard. This prevents a NullRef in that case.
12852         * XplatUIX11.cs: Use CLIPBOARD not PRIMARY for our
12853         clipboard. PRIMARY is for the currently selected text only. (We
12854         should implement PRIMARY at some point.
12855
12856 2005-12-21  Peter Dennis Bartok  <pbartok@novell.com>
12857
12858         * XplatUIWin32.cs: Fixed the TEXTMETRIC structure, we were calling
12859           a Unicode function with a structure that was defined in Ansi way.
12860           This fixes #76942.
12861
12862 2005-12-21  Jackson Harper  <jackson@ximian.com>
12863
12864         * StatusBar.cs: Statusbar handles its fore/back colours on it's
12865         on. Because thats how it rolls. (and this avoids it using ambient
12866         colours).
12867         * ThemeWin32Classic.cs: Use the proper back color for filling.
12868         * Menu.cs: Use the system menu bar color for drawing menu
12869         bars. Using the window back color will bring ambient colours into
12870         the picture.
12871
12872 2005-12-21  Alexander Olk  <alex.olk@googlemail.com>
12873
12874         * ColorDialog.cs: Fixed a memory leak that caused a SIGSEV. A lot of
12875           Bitmaps were created and not disposed.
12876
12877 2005-12-21  Peter Dennis Bartok  <pbartok@novell.com>
12878
12879         * Control.cs (CreateControl): Don't do anything if the control is
12880           already created, otherwise we'd fire the OnCreated event more than
12881           once
12882
12883 2005-12-21  Peter Dennis Bartok  <pbartok@novell.com> 
12884
12885         * ComboBox.cs (FindStringCaseInsensitive): Don't search for emtpy strings,
12886           will always match. Instead return -1. Fixes #76464.
12887
12888 2005-12-21  Peter Dennis Bartok  <pbartok@novell.com>
12889
12890         * TextControl.cs (RecalculateLine): Only wrap if the wrap point is
12891           neither the beginning nor the end of the line (Fixes bug #76479)
12892
12893 2005-12-21  Peter Dennis Bartok  <pbartok@novell.com> 
12894
12895         * Control.cs:
12896           - ControlNativeWindow.ControlFromHandle(): Now handling situation
12897             where handle is invalid
12898           - FromHandle(): Now using hashtable-based ControlFromHandle() lookup
12899             instead of slower linear search
12900         * NativeWindow.cs: Don't remove the window from the hashtable until
12901           after the driver has destroyed it (since the driver might use
12902           Control.FromHandle to lookup the control object
12903         * Hwnd.cs: Added DestroyPending property to track if a window is 
12904           already destroyed as far as the driver is concerned and only hasn't
12905           yet notified the control
12906         * XplatUIX11.cs:
12907           - Activate(): Check if the window is still valid before using the 
12908             handle
12909           - Implemented DestroyChildWindow() method to mark child windows as
12910             destroyed when a window is destroyed. This prevents situations 
12911             where we might call an X method based on queued events for a
12912             window that already has been destroyed but we haven't yet pulled
12913             the destroy method from the queue.
12914           - Added a call to the new DestroyChildWindow() method to the drivers
12915             DestroyWindow code. Also now marking the destroyed window itself
12916             as pending
12917
12918 2005-12-20  Jackson Harper  <jackson@ximian.com>
12919
12920         * StatusBar.cs:
12921         * StatusBarPanel.cs: Don't calculate panel sizes on draw
12922         anymore. Just do them when needed, also track the rects of panels
12923         so that we can optimize refreshing more in the future.
12924
12925 2005-12-20  Alexander Olk  <alex.olk@googlemail.com>
12926
12927         * ColorDialog.cs: Fixed focus drawing in small color controls
12928
12929 2005-12-19  Jackson Harper  <jackson@ximian.com>
12930
12931         * InternalWindowManager.cs:
12932         * MdiWindowManager.cs: Cleanup some coordinate system changes so
12933         moving windows works properly.
12934
12935 2005-12-19  Peter Dennis Bartok  <pbartok@novell.com> 
12936
12937         * Control.cs: 
12938           - Removed call to InitLayout() from SetBoundsCore(); doc says
12939             it's only called when a control is added to a container
12940           - Split InitLayout logic, moved to separate UpdateDistances() method
12941             since we need to perform those calculations more often than just
12942             when adding the control to a container. (Needed to fix #77022)
12943           - Now calling UpdateDistances() from UpdateBounds() (fixes #77022)
12944           - Reduced the OnBindingContextChanged events count, don't send them
12945             unless the control is created, we still aren't totally matching
12946             MS, but I can't quite figure out some of their rules
12947
12948 2005-12-18  Alexander Olk  <alex.olk@googlemail.com>
12949
12950         * ThemeClearlooks.cs: Corrected distance between ProgressBar
12951           stripes
12952
12953 2005-12-18  Alexander Olk  <alex.olk@googlemail.com>
12954
12955         * ThemeClearlooks.cs:
12956           - Updated ProgressBar drawing
12957           - Corrected drawing of ScrollBars and scroll buttons
12958           - Some temporary fixes for minor pixel artefacts
12959
12960 2005-12-18  Peter Dennis Bartok  <pbartok@novell.com> 
12961
12962         * Control.cs:
12963           - Reworked Controls.Add(), Controls.Remove() and set_Parent() to
12964             cause events to be sent in the same order as MS does.
12965           - Added ChangeParent() method to trigger various OnXXXChanged events
12966             that need to be fired when a parent changes (This is a reworking
12967             of the patch from r54254, with the X11 errors fixed)
12968           - Removed SuspendLayout()/ResumeLayout() calls from Controls.Clear()
12969             since on MS we get OnLayoutChanged events when calling Clear()
12970           - Changed Enabled property to consider parent state as well, if a
12971             parent is not enabled, the control will not be either
12972           - Changed Parent property to simply call Controls.Add() since that
12973             now does all the work required, this way we avoid code duplication
12974           - Threw in a few OnBindingsContextChanged calls to try and match
12975             when MS sends them. We seem to send a few too many, though.
12976           - Added call to CreateControl when adding the control to a parent.
12977             We were never calling CreateControl. Still needs some work, in
12978             some places we treat HandleCreated and ControlCreated as equal, 
12979             which is wrong
12980           - Removed obsolete commented out code from UpdateZOrder()
12981
12982 2005-12-18  Alexander Olk  <alex.olk@googlemail.com>
12983
12984         * ThemeClearlooks.cs: Updated TrackBar drawing.
12985
12986 2005-12-17  Alexander Olk  <alex.olk@googlemail.com>
12987
12988         * FileDialog.cs: Patch for #76901 by Atsushi Enomoto
12989
12990 2005-12-17  Alexander Olk  <alex.olk@googlemail.com>
12991
12992         * FileDialog.cs: Add the Help button and the open readonly
12993           checkbox only if needed
12994
12995 2005-12-16  Jackson Harper  <jackson@ximian.com>
12996
12997         * Control.cs: Make sure we have an active menu before trying to
12998         process commands on it. Prevents menu-less forms from crashing
12999         when Alt is pressed.
13000         * TreeNodeCollection.cs: Some fixes to prevent null refs. Patch by
13001         Dieter Bremes.
13002         * RichTextBox.cs: Expand statement to help out gmcs and fix the
13003         2.0 build.
13004
13005 2005-12-16  Jackson Harper  <jackson@ximian.com>
13006
13007         * InternalWindowManager.cs: Don't translate tool windows screen
13008         coordinates. This fixes windows 'bouncing' around when being moved.
13009
13010 2005-12-15  Peter Dennis Bartok  <pbartok@novell.com> 
13011
13012         * TextBoxBase.cs:
13013           - MaxLength now treats 2^31-1 equal to unlimited length (this is
13014             not quite MS compatible, MS uses that number only for single line
13015             and 2^32-1 for multi-line, but I figure it won't hurt keeping
13016             the limit at 2GB)
13017           - Now enforcing the MaxLength limit when entering characters
13018           - Added argument to internal Paste() method to track if it's called
13019             from programatically or via keyboard, since keyboard driven pastes
13020             need to enforce max-length
13021           - Added logic to Paste to only paste as many chars as MaxLength 
13022             allows
13023         * RichTextBox.cs: Updated to use new obey argument for internal Paste()
13024         * TextControl.cs:
13025           - Added Length property to return number of characters in document
13026           - Added private CharCount property which only tracks actual chars
13027             in the document (no linefeeds) and fires event when CharCount
13028             changes
13029           - Added tracking of character count to all methods that alter it
13030           - Added LengthChanged event to allow applications to subscribe
13031             to any changes to the document
13032
13033 2005-12-15  Peter Dennis Bartok  <pbartok@novell.com> 
13034
13035         * TextBox.cs: 
13036           - Removed local password_char field (moved to TextBoxBase)
13037           - Now setting the document's password var when password is
13038             set
13039         * TextBoxBase.cs:
13040           - Added password_char field (needed here so MultiLine can
13041             access it)
13042           - Added logic to MultiLine property setter to set the document's
13043             variable when password display is allowed
13044           - Removed debug code and made some debug code conditional
13045         * TextControl.cs:
13046           - Added RecalculatePasswordLine() method to handle special password
13047             char only lines
13048           - Added PasswordChar property, also added related tracking vars
13049           - Draw() method now uses local text var for grabbing text to draw,
13050             this var is set to line.text unless we're doing password display,
13051             then it is set to the pre-generated all-password-chars line
13052           - Added calling RecalculatePasswordLine() method for password lines
13053
13054 2005-12-14  Peter Dennis Bartok  <pbartok@novell.com> 
13055
13056         * Hwnd.cs: 
13057           - Added Reparented property to allow tracking of Window Manager
13058             reparenting actions (which affect X/Y calculations of toplevel 
13059             windows)
13060           - Made ToString() print window handles in hex
13061         * XplatUIX11.cs:
13062           - AddConfigureNotify(): Now uses reparented state off Hwnd to
13063             determine if X/Y needs offsetting
13064           - AddConfigureNotify(): Fixed offset calculations
13065           - Now adds ReparentNotify messages into the queue
13066           - Now processes ReparentNotify messages and causes a 
13067             WM_WINDOWPOSCHANGED message to be sent upstream if a window
13068             is reparented (as most likely it's X/Y coordinates are changed
13069             due to that)
13070
13071 2005-12-14  Jackson Harper  <jackson@ximian.com>
13072
13073         * XplatUIX11.cs: Tool windows still need to respek focus.
13074
13075 2005-12-14  Peter Dennis Bartok  <pbartok@novell.com> 
13076
13077         * Control.cs: Undid 54254 (causing XConfigure errors) so we can
13078           have a working release
13079
13080 2005-12-13  Jackson Harper  <jackson@ximian.com>
13081
13082         * Form.cs: Update styles after setting the border style regardless
13083         of whether or not the window is using a window manager.
13084
13085 2005-12-13  Jackson Harper  <jackson@ximian.com>
13086
13087         * Form.cs: We now hook into an internal window manager instead of just an
13088         MDI subsystem, this is so we can have properly behaving tool windows.
13089         * MdiClient.cs: Naming change, MdiChildContext is now WindowManager
13090         * InternalWindowManager.cs: New internal class that acts as a
13091         window manager for tool windows and as a base for mdi windows.
13092         * MdiWindowManager.cs: New class that acts as a window manager for
13093         mdi windows.
13094
13095 2005-12-12  Jackson Harper  <jackson@ximian.com>
13096
13097         * Control.cs: Updates so we match behavoir for for implicit
13098         controls. Fixes explosions in MDI.
13099
13100 2005-12-12  Jackson Harper  <jackson@ximian.com>
13101
13102         * Control.cs: Implement Invalidate (Region).
13103
13104 2005-12-12  Peter Dennis Bartok  <pbartok@novell.com> 
13105
13106         * Control.cs: 
13107           - Changed handling of Controls.Add/Controls.Remove to fire (almost) 
13108             the same events as MS does. MS fires events for each property 
13109             except, for unknown reasons, Cursor, when the control is reparented. 
13110             I can't seem to totally match add/remove since MS also fires some 
13111             VisibleChanged events, which makes no sense. Consolidated the
13112             parenting code into a separate method so it can be called from
13113             both Add and Remove. set_Parent no longer needs any special logic
13114             as it calls the parent's add method which implicitly fires
13115             all events
13116           - Removed some obsolete code and debug output
13117           - Enabled state is inherited from parents, if this is enabled
13118
13119 2005-12-08  Peter Dennis Bartok  <pbartok@novell.com> 
13120
13121         * Form.cs: Removed commented out code
13122
13123 2005-12-08  Peter Dennis Bartok  <pbartok@novell.com>
13124
13125         * Control.cs:
13126           - Added internal version of Invoke, with additional argument 
13127             indicating if we're calling it from a Dispose() handler. That
13128             way we can avoid BeginInvoke throwing an exception if we're
13129             calling for an already destroyed window.
13130           - Added a dispose argument to BeginInvokeInternal, and made the
13131             check if a valid window handle chain exists conditional on
13132             it not being a dispose call
13133           - Removed code in DestroyHandle to destroy our children. Since we
13134             now handle the WM_DESTROY message we will catch all our children
13135             being destroyed.
13136           - Now calling OnHandleDestroyed from our new WM_DESTROY handler
13137         * Form.cs:
13138           - Added a field to track the application context of the form.
13139           - No need to set closing variable as response to WM_CLOSE, instead
13140             we destroy the window. We also call PostQuitMessage if the form
13141             has an application context (which makes it the main app form,
13142             which, when closed terminates the app)
13143         * XplatUI.cs:
13144           - Dropped Exit() method, it's naming was confusing
13145           - Added PostQuitMessage() which causes GetMessage to return false
13146             once the message queue is empty
13147         * XplatUIDriver.cs, XplatUIWin32.cs: Dropped Exit(), added 
13148           PostQuitMessage()
13149         * XplatUIOSX.cs: Switched signature for Exit method since Exit() is
13150           no longer a valid XplatUI method, but left it in since it's used
13151           internally. Added empty PostQuitMessage() method.
13152         * MenuAPI.cs: Replaced call to Exit() with call to
13153           PostQuitMessage, even though this is probably no longer needed.
13154         * Hwnd.cs: Added 'pretty' ToString() to support debugging.
13155         * X11Structs.cs: Added pretty XEvent.ToString() to support debugging.
13156         * Application.cs:
13157           - Replaced call to XplatUI.Exit() with PostQuitMessage()
13158           - Removed old debug code that would call XplatUI for exception
13159             display, enabled standard exception handling (Still not enabled
13160             though, until NativeWindow's ExternalExceptionHandler define
13161             is removed
13162         * NativeWindow.cs:
13163           - Added internal method to allow control to update NativeWindow
13164             after a window has been destroyed
13165           - Added handling of already destroyed windows when calling i
13166             DestroyWindow
13167           - Added removal of handle from list on ReleaseHandle
13168         * XplatUIX11.cs:
13169           - Dropped GetMessageResult var and related code
13170           - Added PostQuitState to field to track if PostQuitMessage has been
13171             called
13172           - Dropped Exit() method
13173           - Added PostQuitMessage() method
13174           - GetMessage now will return false if PostQuitState is set and no
13175             more messages are in the queue.
13176           - Expose handler will no longer generate WM_PAINT messages if we are
13177             in PostQuitState since it's very likely any windows have already
13178             been destroyed, and since Hwnd won't get updated until we have
13179             processed the DestroyNotify we'd be causing X errors.
13180         
13181 2005-12-07  Peter Dennis Bartok  <pbartok@novell.com>
13182
13183         * Control.cs(WndProc): Apparently I'm suffering from brain cloud.
13184           Thanks to Mike for pointing out the err of my ways.
13185
13186 2005-12-07  Peter Dennis Bartok  <pbartok@novell.com>
13187
13188         * Control.cs(PreProcessMessage): Moved menu handling back, but
13189           after all other key handling, to match MS (who handles Menu in
13190           DefWndProc)
13191         * Menu.cs (WndProc): Removed my brainfart
13192
13193 2005-12-07  Peter Dennis Bartok  <pbartok@novell.com>
13194
13195         * Control.cs(PreProcessMessage): Removed special menu handling 
13196         * Menu.cs (WndProc): Added handling of WM_SYSKEYUP for menu purposes.
13197
13198 2005-12-07  Mike Kestner  <mkestner@novell.com>
13199
13200         * Control.cs : special case SYSKEYUP so that we can adjust keynav
13201         state according in tracker.
13202         * Menu.cs : promote tracker field to base class and provide a tracker
13203         lookup capability.  Add/Remove shortcuts dynamically if the top menu
13204         has a tracker. Unparent items that are removed from the collection.
13205         * MenuAPI.cs : implement mnemonic, shortcut, and arrow-based keynav.
13206         * Theme*.cs: add always_show_hotkeys field to support configurability
13207         of mnemonic display.  win32 doesn't show mnemonics until Alt is
13208         pressed.
13209
13210 2005-12-07  Jackson Harper  <jackson@ximian.com>
13211
13212         * MdiChildContext.cs: Use Control.ResetCursor.
13213         * Control.cs: ResetCursor needs to set the property so that the
13214         correct XplatUI call gets made.
13215
13216 2005-12-07  Peter Dennis Bartok  <pbartok@novell.com>
13217
13218         * Control.cs: More fixes to make our key events match MS. We
13219           were not setting the modifier state on KeyData, and we were
13220           not generating any events when Alt was pressed with a key
13221           since handling of WM_SYSxxx was missing for the OnKey methods.
13222
13223 2005-12-07  Jackson Harper  <jackson@ximian.com>
13224
13225         * MdiChildContext.cs: reenable the sizing code.
13226         - When the mouse leaves a window reset its cursor.
13227
13228 2005-12-07  Alexander Olk  <alex.olk@googlemail.com>
13229
13230         * ThemeClearlooks.cs: Reflect latest Hwnd changes
13231
13232 2005-12-07  Peter Dennis Bartok  <pbartok@novell.com>
13233
13234         * Hwnd.cs: Now using the theme 3d bordersize to calculate
13235           widths of Fixed3D borders
13236
13237 2005-12-07  Jackson Harper  <jackson@ximian.com>
13238
13239         * MdiClient.cs: Fix warnings. Earn Mike's love.
13240
13241 2005-12-07  Alexander Olk  <alex.olk@googlemail.com>
13242
13243         * ThemeClearlooks.cs:
13244           - Adjusted mouse over button color
13245           - Added first parts of CheckBox drawing
13246           - Added correct color for selected text background
13247           - Fixed ComboBox drawing
13248           - Added CPDrawBorder3D and CPDrawBorder
13249
13250 2005-12-06  Peter Dennis Bartok  <pbartok@novell.com>
13251
13252         * XplatUIX11.cs: Added call to XBell for AudibleAlert
13253
13254 2005-12-06  Peter Dennis Bartok  <pbartok@novell.com> 
13255
13256         * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs, XplatUIWin32.cs,
13257           XplatUIOSX.cs: Added AudibleAlert() method to have a means to
13258           alert users via sound. We could add an enum arg with different
13259           types of alerts in the future
13260
13261 2005-12-06  Peter Dennis Bartok  <pbartok@novell.com>
13262
13263         * Control.cs: Fix behaviour problems pointed out by Mike
13264
13265 2005-12-05  Mike Kestner  <mkestner@novell.com>
13266
13267         * StatusBarPanel.cs: add Invalidate method and hook it into all the
13268         prop setters.  Calls parent.Refresh for now, but could be maybe be
13269         optimized with an internal method on StatusBar at some point.
13270         [Fixes #76513]
13271
13272 2005-12-05  Peter Dennis Bartok  <pbartok@novell.com> 
13273
13274         * RichTextBox.cs: Implemented get_SelectionColor
13275
13276 2005-12-05  Alexander Olk  <alex.olk@googlemail.com>
13277
13278         * ThemeClearlooks.cs:
13279           - Removed dead code
13280           - Draw black button border only if button is Form.AcceptButton
13281           - Draw correct button color for pressed RadioButton if the mouse 
13282             has entered the button
13283           - Updated ProgressBar drawing!
13284           - Updated CPDrawSizeGrip drawing
13285           - Updated StatusBarPanel drawing
13286
13287 2005-12-05  Mike Kestner  <mkestner@novell.com>
13288
13289         * Control.cs (PreProcessMessage): add Keys.Alt based on LParam value.
13290         * X11Keyboard.cs (SendKeyboardInput): formal lParam for alt mod.
13291
13292 2005-12-04  Alexander Olk  <alex.olk@googlemail.com>
13293
13294         * ThemeClearlooks.cs: Initial check-in, activate with
13295           export MONO_THEME=clearlooks
13296         * ThemeEngine.cs: Added ThemeClearlooks
13297
13298 2005-12-03  Mike Kestner  <mkestner@novell.com>
13299
13300         * MenuAPI.cs: deactivate menus prior to calling item.PerformClick.
13301         [Fixes #76897]
13302
13303 2005-12-02  Jackson Harper  <jackson@ximian.com>
13304
13305         * Form.cs: If the child form has no menu the default main menu is
13306         used as the active menu.
13307
13308 2005-12-02  Peter Dennis Bartok  <pbartok@novell.com> 
13309
13310         * ListBox.cs: Check if any items exist before trying to resolve 
13311           coordinates into items
13312
13313 2005-12-02  Peter Dennis Bartok  <pbartok@novell.com>
13314
13315         * ThemeWin32Classic.cs: Hatchbrush on Win32 seems to always use white
13316           as the second color for the background hatch
13317
13318 2005-12-02  Peter Dennis Bartok  <pbartok@novell.com>
13319
13320         * TextBoxBase.cs: Now uses Jackson's new and improved ImplicitScrollbar
13321         * RichTextBox.cs: FormatText position arguments are 1-based, now making
13322           sure that what we pass to FormatText is always 1-based. Fixes #76885
13323
13324 2005-11-29  Miguel de Icaza  <miguel@novell.com>
13325
13326         * NumericUpDown.cs (EndInit): When we are done initializing,
13327         reflect any updates on the UI.
13328
13329 2005-12-02  Jackson Harper  <jackson@ximian.com>
13330
13331         * ImplicitHScrollBar.cs:
13332         * ImplicitVScrollBar.cs: New scrollbars that don't take focus from
13333         their container controls.
13334         * TreeView.cs: Use the new implicit scrollbars.
13335
13336 2005-12-02  Jackson Harper  <jackson@ximian.com>
13337
13338         * TreeView.cs: Make top_node internal so the TreeNodeCollections
13339         can play with it.
13340         * TreeNodeCollection.cs: If we remove the topnode we need to
13341         update topnode to the next node in line.
13342         - When clearing nodes go through the same process as removing
13343         them, so they get depareneted and checked if they are top node.
13344
13345 2005-12-01  Jackson Harper  <jackson@ximian.com>
13346
13347         * TreeView.cs: When imagelists are used the image area is
13348         selectable as well as the text.
13349         - If there are no selected nodes select the first one.
13350         * TreeNodeCollection.cs: Getting the TreeView is mildly expensive,
13351         so don't do it more then we need to.
13352
13353 2005-12-01  Jackson Harper  <jackson@ximian.com>
13354
13355         * ThemeWin32Classic.cs: Reimplement the scroll arrow drawing so
13356         that arrows can be scaled.
13357
13358 2005-12-01  Jackson Harper  <jackson@ximian.com>
13359
13360         * TreeNode.cs : Fixed bugs that caused FullPathTest + Traverse to
13361         fail. Patch by Dieter Bremes
13362
13363 2005-11-30  Jackson Harper  <jackson@ximian.com>
13364
13365         * Form.cs: Property is 2.0 only
13366         * PrintDialog.cs: Signature fix.
13367
13368 2005-11-30  Peter Dennis Bartok  <pbartok@novell.com>
13369
13370         * TextControl.cs: 
13371           - No longer artificially moves text 2 pixels down (now that we have
13372             borders this is no longer needed)
13373           - Added calcs for left, hanging and right indent
13374
13375 2005-11-23  Mike Kestner  <mkestner@novell.com>
13376
13377         * Menu.cs: mark MenuChanged internal, since it's not exposed by MS.
13378
13379 2005-11-30  Jackson Harper  <jackson@ximian.com>
13380
13381         * MdiChildContext.cs: Set the cloned menus forms, as these don't
13382         get cloned as part of CloneMenu ().
13383         * Menu.cs: Make sure the parent of the items get set correctly
13384         when they are added.  And the owners are notified of the changes.
13385         * Form.cs: Create an ActiveMenu property, so that when MDI is used
13386         we can change the menu being displayed/handled by the form without
13387         changing the menu assosciated with the form.
13388         - Don't let Mdi children draw/handle menus.
13389         
13390 2005-11-30  Jackson Harper  <jackson@ximian.com>
13391
13392         * Menu.cs: Switch the MenuChanged method to OnMenuChanged and add
13393         a MenuChanged event. Just to make the API a little more
13394         consistent.
13395         * MainMenu.cs:
13396         * MenuItem.cs: Use the new OnMenuChanged
13397         * MdiChildContext.cs: Handle menu merging.
13398         * Form.cs: Implement MergedMenu.
13399         
13400 2005-11-30  Jackson Harper  <jackson@ximian.com>
13401
13402         * Menu.cs: We were misusing Add. Add goes behind the specified
13403         index according to the docs, and does not replace the specified
13404         index. So I added an Insert method.
13405
13406 2005-11-30  Peter Dennis Bartok  <pbartok@novell.com>
13407
13408         * TextBoxBase.cs:  Implemented Ctrl-Ins (Copy), Shift-Ins (Paste) and
13409           Shift-Del (Cut), apparently Emacs uses these old Win 2.x keys. This
13410           is for Jackson
13411         * RichTextBox.cs: Added calls to base for DnD events
13412
13413 2005-11-28  Peter Dennis Bartok  <pbartok@novell.com>
13414
13415         * TextControl.cs:
13416           - Fixed drag-selection related crash; style fixes
13417           - Implemented undo class
13418             o Implemented method to capture document state for specified
13419               range in document tree
13420             o Implemented method to restore captured document state
13421             o Implemented cursor tracking
13422             o Implemented basic undo stack
13423           - Added undo cursor tracking to methods altering cursor location
13424           - Added undo tracking to selection deletion (still missing
13425             other text-altering hookups)
13426         * RichTextBox.cs:
13427           - Added SelectionLength property
13428           - Implemented CanPaste()
13429           - Implemented Paste()
13430           - Added missing protected methods
13431           - Fixed RTF->Document conversion; now uses font index 0 and color 
13432             index 0 as the default font for the parsed text
13433           - Fixed RTF<->Document font size translation
13434           - Fixed RTF generation, now properly handles cross-tag boundaries
13435             for single line selection
13436           - No longer always appends blank line to generated RTF
13437           - Removed TODOs
13438           - Added missing attributes
13439           - Hooked up undo-related methods
13440         * TextBoxBase.cs:
13441           - Implemented Copy()
13442           - Implemented Paste()
13443           - Implemented Cut()
13444           - Fixed caret mis-behaviour on backspace across line-boundaries
13445
13446 2005-11-29  Jackson Harper  <jackson@ximian.com>
13447
13448         * MdiClient.cs: Add a method for activating mdi children. Very
13449         basic right now. I imagine someday it might need more girth.
13450         * MenuItem.cs: Implement MDI lists. When mdilist is true the mdi
13451         children windows names are added to the menu item.
13452         * ThemeWin32Classic.cs: Draw the arrow if the item is an
13453         mdilist. This happens regardless of whether or not there are any
13454         mdi windows to see in the list, and according to my tests happens
13455         before the items are even added. Also happens if there isn't even
13456         an mdi client to get windows from.
13457
13458 2005-11-29  Alexander Olk  <alex.olk@googlemail.com>
13459
13460         * ThemeWin32Classic.cs: Make DrawFlatStyleRadioButton protected
13461         * ThemeNice.cs: Fix drawing of flatstyle radiobuttons
13462
13463 2005-11-29  Jordi Mas i Hernandez <jordimash@gmail.com>
13464
13465         * DataGridTableStyle.cs:
13466           - Create always the styles for the missing columns even if they are
13467             provided by the user (not default table style)
13468         * DataGrid.cs:
13469           - Fixes bug 76770
13470           - Fixes SetDataBinding (always re-attach source)
13471           - Fixes SetNewDataSource (only clear styles if they are not for 
13472             this source)
13473          -  Expands OnTableStylesCollectionChanged to handle style refresh 
13474             and remove properly
13475
13476 2005-11-29  Jackson Harper  <jackson@ximian.com>
13477
13478         * FileDialog.cs: Implement missing bits, remove some dead
13479         code.
13480         * FontDialog.cs: Implement missing Apply stuff, and ToString. Move
13481         creation of the panel so that the options set on the dialog are
13482         seen when the panel is created.
13483         * TreeView.cs: raise a click when items are clicked.
13484         
13485 2005-11-29  Jackson Harper  <jackson@ximian.com>
13486
13487         * MdiClient.cs: Pass some signature methods through to base.
13488
13489 2005-11-28  Jackson Harper  <jackson@ximian.com>
13490
13491         * ListView.cs: Raise the click event when items are clicked.
13492
13493 2005-11-28  Jackson Harper  <jackson@ximian.com>
13494
13495         * MdiClient.cs: Make this algorithm even more beautiful.  And fix
13496         a nullref.
13497
13498 2005-11-27  Alexander Olk  <alex.olk@googlemail.com>
13499
13500         * ThemeNice.cs: - Removed 1 pixel bitmaps
13501           - Use SmoothingMode.AntiAlias where it makes sense
13502             (ScrollButton arrow for example)
13503           - Enhanced Button focus drawing
13504           - Fixed ComboBox drawing (no artefacts anymore, focus
13505             rectangle is back again, reduced size of ComboButton, etc.)
13506           - Fixed RadioButton focus drawing for Appearence.Button
13507           - Slight ScrollButton redesign
13508           - Some LinearGradientBrush size fixes
13509           - GroupBoxes have now rounded edges
13510           - Fixed StatusBar drawing
13511
13512 2005-11-25  Alexander Olk  <alex.olk@googlemail.com>
13513
13514         * ThemeNice.cs: - Remove dead code
13515           - use correct background colors for menus, etc.
13516           - Fake pixel drawing with 1 pixel bitmaps
13517
13518 2005-11-24  Jackson Harper  <jackson@ximian.com>
13519
13520         * MdiClient.cs: Size the scrollbars when resizing the window.
13521         - Resize the maximized windows when the client is resized
13522         * Form.cs: Make the child context available
13523         
13524 2005-11-23  Jackson Harper  <jackson@ximian.com>
13525
13526         * MdiChildContext.cs: Don't size windows if they are maximized.
13527
13528 2005-11-23  Mike Kestner  <mkestner@novell.com>
13529
13530         * ContextMenu.cs: use MenuTracker.
13531         * Control.cs: remove menu handle usage.
13532         * Form.cs: remove menu handle usage.
13533         * Hwnd.cs: remove menu handle usage.
13534         * MainMenu.cs: Draw method moved here from MenuAPI.DrawMenuBar. Proxy
13535         motion and clicks to the new Tracker handlers.
13536         * Menu.cs: add sizing accessors, SelectedItem prop, kill CreateItems
13537         and handle usage.
13538         * MenuAPI.cs: refactored to combine popup and menubar event handling.
13539         Killed the MENU and MENUITEM data types and associated collections
13540         since we now keep the info on Menu and MenuItem. Expanded TRACKER into
13541         MenuTracker class that exposes the leftovers from the old MenuAPI
13542         static methods. Restructured Capture handling so that only one grab is
13543         done for the entire menu hierarchy instead of handing off grabs to
13544         submenus. Tracker now has an invisible control to Capture when active.
13545         * MenuItem.cs: add sizing accessors, kill Create
13546         and handle usage.
13547         * Theme.cs: remove menu handle and MENU(ITEM) usage.
13548         * ThemeWin32Classic.cs: use Menu/MenuItem sizing props instead of
13549         MENU(ITEM). remove menu handle usage, use Menu directly.
13550         * XplatUIDriver.cs: remove menu handle usage.
13551         * XplatUIOSX.cs: remove menu handle usage.
13552         * XplatUIWin32.cs: remove menu handle usage.
13553         * XplatUIX11.cs: remove menu handle usage.
13554
13555 2005-11-22  Jackson Harper  <jackson@ximian.com>
13556
13557         * Hwnd.cs: Don't compute the menu size for
13558         DefaultClientRectangle.
13559         - Reenable menu sizes being computed for GetClienRectangle.
13560         * Form.cs: Remove comment of trechery
13561         
13562 2005-11-22  Jackson Harper  <jackson@ximian.com>
13563
13564         * Hwnd.cs: The adjustments for the menu bar are made when it is
13565         attached to the form.
13566
13567 2005-11-19  Jackson Harper  <jackson@ximian.com>
13568
13569         * XplatUIX11.cs: Create an HGRN of the invalid area for WM_NCPAINT
13570         (just like on windows).
13571
13572 2005-11-19  Jackson Harper  <jackson@ximian.com>
13573
13574         * MdiChildContext.cs: Handle all the buttons ourselves. We can't
13575         use real buttons anymore because they are in non client area. The
13576         one TODO here is that I need to somehow invalidate a section of
13577         the non client area.
13578
13579 2005-11-18  Jackson Harper  <jackson@ximian.com>
13580
13581         * Control.cs: Put the enum check back in now that MDI doesnt have
13582         to use this to set border styles.
13583         * Form.cs: Only set mdi child windows borders if the handle has
13584         been created.
13585         * MdiChildContext.cs: Don't set the InternalBorderStyle, just pass
13586         this directly on to the driver.
13587         - Get the move start position before adjusting for the titlebar
13588         height, this fixes the windows "skipping" when they are first
13589         moved.
13590
13591 2005-11-18  Jackson Harper  <jackson@ximian.com>
13592
13593         * XplatUIX11.cs: Just compute the mdi borders separately as they
13594         don't totally match up with normal form borders.
13595
13596 2005-11-18  Jackson Harper  <jackson@ximian.com>
13597
13598         * Control.cs: Set WS_ styles for borders, so that the driver does
13599         not have to retrieve the control instance to figure out what kind
13600         of borders it should have.
13601         * Form.cs: Set the WS_EX_MDICHILD flag on mdi children, so the
13602         driver can know its an mdi child easily.
13603         * XplatUIX11.cs: Get the border styles and whether the window is
13604         MDI from the Styles and ExStyles params instead of having to get a
13605         control. This prevents a chicken and egg problem.       
13606
13607 2005-11-18  Jackson Harper  <jackson@ximian.com>
13608
13609         * MdiClient.cs: Fix typo so scrollbars show up correctly.
13610
13611 2005-11-18  Jackson Harper  <jackson@ximian.com>
13612
13613         * MdiClient.cs: Calculate when to add and remove scrollbars
13614         correctly.
13615         * MdiChildContext.cs: Adjust the y position to take the titlebar
13616         into account.
13617         - No height for FormBorderStyle.None
13618
13619 2005-11-18  Jackson Harper  <jackson@ximian.com>
13620
13621         * Control.cs: Allow non enum values to be used for
13622         InternalBorderStyle.  MDI does this to set a special border style.
13623         - New utility methods for converting points to/from client coords
13624         - Add the newly created control to the Controls collection before
13625         updating its style. This way UpdateStyle can walk the control
13626         heirarchy to find the control if needed.
13627         so I don't need to create a new Point object all the time.
13628         * Form.cs: Let MDI windows handle their border styles.
13629         - Set styles on MDI windows so the correct title style is derived.
13630         * MdiChildContext.cs: Move all the painting and window handling
13631         into the non client area.
13632         - Use correct sizing and put correct buttons on frames based on
13633         the FormBorderStyle.
13634         - Notify the mdi client about scrolling
13635         - Need to handle the buttons ourselves now, because they are all
13636         in non client areas and we can't add controls there.
13637         * MdiClient.cs: Halfway to scrolling, this implementation is
13638         somewhat broken though, we need to check to make sure other
13639         windows aren't causing scrolling before removing the bars. Also
13640         the bars need to be drawn on top, maybe I can switch implicit
13641         controls to be on top.
13642         * Hwnd.cs: caption_height and tool_caption_height are now
13643         properties of an hwnd, this way they can be set by the driver
13644         based on the type of window they are.  In X11 the window manager
13645         handles the decorations so caption_height is zero unless its an
13646         MDI window.
13647         - Add 3 pixel borders for MDI windows (0xFFFF).
13648         - Get rid of some code duplication, have DefaultClientRectanle
13649         just call GetClientRectangle.
13650         * XplatUIX11.cs: Pass caption_height and tool_caption_height to
13651         Hwnd now.
13652         - Set border styles differently for mdi windows.
13653         * XplatUIOSX.cs: Pass caption_height and tool_caption_height to
13654         Hwnd now.
13655         
13656 2005-11-15  Mike Kestner  <mkestner@novell.com>
13657
13658         * Menu.cs: when adding an item to the collection, if item is already 
13659         parented, remove it from the parent.
13660
13661 2005-11-13  Alexander Olk  <alex.olk@googlemail.com>
13662
13663         * X11DesktopColors.cs: Added KDE support
13664
13665 2005-11-11  Peter Dennis Bartok  <pbartok@novell.com>
13666
13667         * XplatUIWin32.cs: 
13668           - Clipboard methods now can translate Rtf format
13669           - No longer removes clipboard contents whenever a new format is added
13670             to allow placing multiple formats on the clipboard
13671         * Clipboard.cs: Clipboard now supports getting a IDataObject and
13672           will place all formats contained in it onto the clipboard. Also
13673           now cleans the clipboard before placing a new object onto it
13674         * RichTextBox.cs:
13675           - Implemented set_Rtf
13676           - Implemented set_SelectedRtf
13677           - Created InsertRTFFromStream() method to allow single code base
13678             for all properties and methods that insert RTF into document
13679           - Removed debug output
13680         * TextControl.cs:
13681           - Fixed Delete(int) to fix up line numbers
13682           - Fixed ReplaceSelection to combine start and end line
13683           - Fixed serious DeleteChars bug that would leave the document tree
13684             broken
13685           - Improved DumpTree with several logic checks to detect broken
13686             document trees
13687           - Removed debug lines
13688           - Fixed Caret.WordForward/WordBack moving code, now always also 
13689             updates caret.tag (fixes crash when word-selecting across tag
13690             boundaries via keyboard)
13691           - Added Insert() method for inserting multiline text into documents
13692           - Fixed DeleteChars() calculation errors that would cause a broken
13693             tag chain with multiple tag lines
13694           - DeleteChars() no longer crashes on multi-tag lines if not all tags
13695           - Split() no longer moves caret if split is at caret location
13696           - ReplaceSelection() now updates the cursor and re-displays it
13697           - ReplaceSelection() now uses new Insert() method to avoid code
13698             duplication
13699           - FormatText() can now handle formatting partial lines
13700         * TextBoxBase.cs:
13701           - Append now uses new TextControl.Insert() method (this avoids 
13702             duplicate code)
13703           - Implemented Ctrl-X (Cut) (
13704           - Implemented Ctrl-C (Copy)
13705           - Implemented Ctrl-V (Paste) (Still some bugs related to screen 
13706             regeneration when pasting text; roundtripping Copy&Paste within
13707             edit control still fails due to some calculation bugs in GenerateRTF)
13708           - The Delete key will now remove the current selection if it is visible
13709         * TextBox.cs: Removed debug lines
13710         * XplatUI.cs: Trigger initialization of DataFormats (which requires the
13711           driver to be initialized and can't therefore be done via a static ctor)
13712
13713 2005-11-10  Peter Dennis Bartok  <pbartok@novell.com>
13714
13715         * TextControl.cs: Added backend code for finding char arrays and strings
13716         * TextBoxBase.cs:
13717           - Added mouse wheel scroll support
13718           - Added support for VScroll and HScroll events
13719         * RichTextBox.cs:
13720           - Implemented all seven Find() variants
13721           - Implemented GetCharFromPosition()
13722           - Implemented GetCharIndexFromPosition()
13723           - Implemented GetLineFromIndex()
13724           - Implemented GetPositionFromCharIndex();
13725           - Implemented SaveFile for PlainText and UnicodeText
13726           - Fixed set_Font, now setting a new font applies that font to
13727             the whole document
13728           - Implemented generic Document to RTF converter
13729           - Implemented SaveFile for RichText format (still missing unicode
13730             conversion for non-ansi chars)
13731           - Implemented get_Rtf
13732           - Implemented get_SelectedRtf
13733
13734 2005-11-09  Peter Dennis Bartok  <pbartok@novell.com>
13735
13736         * Control.cs (WndProc): Call HandleClick after having sent OnMouseUp
13737           to allow any captures to be released before triggering OnClick. This
13738           way a click handler may capture the mouse without interference.
13739         * XplatUIX11.cs: Always send mouse messages to grab window if one exists.
13740           This way we send them even though X may not allow a grab (if the window
13741           isn't visible, for example)
13742
13743 2005-11-08  Pedro Martinez Julia <pedromj@gmail.com>
13744
13745         * DataGridViewRowEventArgs.cs: DataGridView implementation
13746         * DataGridViewElement.cs: DataGridView implementation
13747         * DataGridViewComboBoxCell.cs: DataGridView implementation
13748         * DataGridViewDataErrorContexts.cs: DataGridView implementation
13749         * DataGridViewCellErrorTextNeededEventArgs.cs: DataGridView implementation
13750         * DataGridViewColumnHeadersHeightSizeMode.cs: DataGridView implementation
13751         * ImageLayout.cs: DataGridView implementation
13752         * DataGridViewComboBoxColumn.cs: DataGridView implementation
13753         * DataGridViewCellMouseEventHandler.cs: DataGridView implementation
13754         * DataGridViewSelectionMode.cs: DataGridView implementation
13755         * IDataGridViewEditingControl.cs: DataGridView implementation
13756         * DataGridViewSortCompareEventHandler.cs: DataGridView implementation
13757         * DataGridViewCellStyleContentChangedEventHandler.cs: DataGridView implementation
13758         * DataGridViewAutoSizeModeEventHandler.cs: DataGridView implementation
13759         * DataGridViewColumnStateChangedEventHandler.cs: DataGridView implementation
13760         * DataGridViewColumnSortMode.cs: DataGridView implementation
13761         * DataGridView.cs: DataGridView implementation
13762         * DataGridViewRowStateChangedEventHandler.cs: DataGridView implementation
13763         * DataGridViewRowPostPaintEventArgs.cs: DataGridView implementation
13764         * DataGridViewDataErrorEventArgs.cs: DataGridView implementation
13765         * Padding.cs: DataGridView implementation
13766         * DataGridViewCellParsingEventArgs.cs: DataGridView implementation
13767         * DataGridViewCellStateChangedEventHandler.cs: DataGridView implementation
13768         * DataGridViewRowEventHandler.cs: DataGridView implementation
13769         * DataGridViewCellPaintingEventHandler.cs: DataGridView implementation
13770         * DataGridViewCellFormattingEventHandler.cs: DataGridView implementation
13771         * DataGridViewButtonCell.cs: DataGridView implementation
13772         * DataGridViewCellStyleContentChangedEventArgs.cs: DataGridView implementation
13773         * DataGridViewEditMode.cs: DataGridView implementation
13774         * DataGridViewCellValueEventArgs.cs: DataGridView implementation
13775         * DataGridViewRowCancelEventArgs.cs: DataGridView implementation
13776         * DataGridViewRowHeadersWidthSizeMode.cs: DataGridView implementation
13777         * DataGridViewCheckBoxColumn.cs: DataGridView implementation
13778         * DataGridViewCellToolTipTextNeededEventHandler.cs: DataGridView implementation
13779         * DataGridViewAutoSizeColumnsMode.cs: DataGridView implementation
13780         * DataGridViewCellEventHandler.cs: DataGridView implementation
13781         * DataGridViewEditingControlShowingEventHandler.cs: DataGridView implementation
13782         * DataGridViewCellStyleConverter.cs: DataGridView implementation
13783         * DataGridViewSelectedRowCollection.cs: DataGridView implementation
13784         * DataGridViewBindingCompleteEventHandler.cs: DataGridView implementation
13785         * DataGridViewColumnEventArgs.cs: DataGridView implementation
13786         * DataGridViewRowHeightInfoPushedEventHandler.cs: DataGridView implementation
13787         * DataGridViewRowContextMenuStripNeededEventHandler.cs: DataGridView implementation
13788         * QuestionEventArgs.cs: DataGridView implementation
13789         * IDataGridViewEditingCell.cs: DataGridView implementation
13790         * DataGridViewTriState.cs: DataGridView implementation
13791         * DataGridViewColumnDesignTimeVisibleAttribute.cs: DataGridView implementation
13792         * DataGridViewCellStateChangedEventArgs.cs: DataGridView implementation
13793         * DataGridViewColumnCollection.cs: DataGridView implementation
13794         * DataGridViewCellValueEventHandler.cs: DataGridView implementation
13795         * DataGridViewRowDividerDoubleClickEventHandler.cs: DataGridView implementation
13796         * DataGridViewCellFormattingEventArgs.cs: DataGridView implementation
13797         * DataGridViewColumn.cs: DataGridView implementation
13798         * DataGridViewCellBorderStyle.cs: DataGridView implementation
13799         * DataGridViewCellContextMenuStripNeededEventHandler.cs: DataGridView implementation
13800         * DataGridViewCellValidatingEventArgs.cs: DataGridView implementation
13801         * DataGridViewRow.cs: DataGridView implementation
13802         * DataGridViewImageCellLayout.cs: DataGridView implementation
13803         * DataGridViewImageCell.cs: DataGridView implementation
13804         * DataGridViewTopLeftHeaderCell.cs: DataGridView implementation
13805         * DataGridViewCheckBoxCell.cs: DataGridView implementation
13806         * DataGridViewHeaderCell.cs: DataGridView implementation
13807         * DataGridViewCellErrorTextNeededEventHandler.cs: DataGridView implementation
13808         * DataGridViewRowHeightInfoPushedEventArgs.cs: DataGridView implementation
13809         * DataGridViewAutoSizeColumnsModeEventHandler.cs: DataGridView implementation
13810         * DataGridViewTextBoxColumn.cs: DataGridView implementation
13811         * QuestionEventHandler.cs: DataGridView implementation
13812         * DataGridViewCellStyleScopes.cs: DataGridView implementation
13813         * DataGridViewSortCompareEventArgs.cs: DataGridView implementation
13814         * DataGridViewCellContextMenuStripNeededEventArgs.cs: DataGridView implementation
13815         * DataGridViewCell.cs: DataGridView implementation
13816         * DataGridViewCellEventArgs.cs: DataGridView implementation
13817         * DataGridViewClipboardCopyMode.cs: DataGridView implementation
13818         * DataGridViewCellStyle.cs: DataGridView implementation
13819         * DataGridViewColumnHeaderCell.cs: DataGridView implementation
13820         * DataGridViewRowPrePaintEventHandler.cs: DataGridView implementation
13821         * DataGridViewRowCancelEventHandler.cs: DataGridView implementation
13822         * TextFormatFlags.cs: DataGridView implementation
13823         * DataGridViewCellToolTipTextNeededEventArgs.cs: DataGridView implementation
13824         * DataGridViewDataErrorEventHandler.cs: DataGridView implementation
13825         * DataGridViewAdvancedCellBorderStyle.cs: DataGridView implementation
13826         * DataGridViewCellPaintingEventArgs.cs: DataGridView implementation
13827         * DataGridViewButtonColumn.cs: DataGridView implementation
13828         * DataGridViewRowsRemovedEventArgs.cs: DataGridView implementation
13829         * HandledMouseEventArgs.cs: DataGridView implementation
13830         * DataGridViewCellParsingEventHandler.cs: DataGridView implementation
13831         * DataGridViewColumnDividerDoubleClickEventHandler.cs: DataGridView implementation
13832         * DataGridViewCellMouseEventArgs.cs: DataGridView implementation
13833         * DataGridViewAutoSizeRowsMode.cs: DataGridView implementation
13834         * DataGridViewRowCollection.cs: DataGridView implementation
13835         * DataGridViewAdvancedBorderStyle.cs: DataGridView implementation
13836         * DataGridViewCellCancelEventHandler.cs: DataGridView implementation
13837         * DataGridViewHitTestType.cs: DataGridView implementation
13838         * DataGridViewAutoSizeModeEventArgs.cs: DataGridView implementation
13839         * DataGridViewColumnStateChangedEventArgs.cs: DataGridView implementation
13840         * DataGridViewColumnEventHandler.cs: DataGridView implementation
13841         * DataGridViewRowDividerDoubleClickEventArgs.cs: DataGridView implementation
13842         * DataGridViewAutoSizeRowMode.cs: DataGridView implementation
13843         * DataGridViewRowHeightInfoNeededEventArgs.cs: DataGridView implementation
13844         * DataGridViewRowsDeletedEventArgs.cs: DataGridView implementation
13845         * DataGridViewTextBoxEditingControl.cs: DataGridView implementation
13846         * DataGridViewContentAlignment.cs: DataGridView implementation
13847         * DataGridViewRowPostPaintEventHandler.cs: DataGridView implementation
13848         * DataGridViewComboBoxEditingControl.cs: DataGridView implementation
13849         * DataGridViewCellValidatingEventHandler.cs: DataGridView implementation
13850         * DataGridViewSelectedColumnCollection.cs: DataGridView implementation
13851         * DataGridViewPaintParts.cs: DataGridView implementation
13852         * DataGridViewCellCollection.cs: DataGridView implementation
13853         * DataGridViewRowsAddedEventArgs.cs: DataGridView implementation
13854         * DataGridViewImageColumn.cs: DataGridView implementation
13855         * DataGridViewRowsRemovedEventHandler.cs: DataGridView implementation
13856         * DataGridViewElementStates.cs: DataGridView implementation
13857         * DataGridViewRowHeightInfoNeededEventHandler.cs: DataGridView implementation
13858         * DataGridViewColumnDividerDoubleClickEventArgs.cs: DataGridView implementation
13859         * DataGridViewRowPrePaintEventArgs.cs: DataGridView implementation
13860         * DataGridViewRowStateChangedEventArgs.cs: DataGridView implementation
13861         * DataGridViewEditingControlShowingEventArgs.cs: DataGridView implementation
13862         * DataGridViewCellCancelEventArgs.cs: DataGridView implementation
13863         * DataGridViewRowHeaderCell.cs: DataGridView implementation
13864         * DataGridViewBindingCompleteEventArgs.cs: DataGridView implementation
13865         * DataGridViewTextBoxCell.cs: DataGridView implementation
13866         * DataGridViewBand.cs: DataGridView implementation
13867         * DataGridViewAutoSizeColumnModeEventArgs.cs: DataGridView implementation
13868         * DataGridViewHeaderBorderStyle.cs: DataGridView implementation
13869         * DataGridViewRowsAddedEventHandler.cs: DataGridView implementation
13870         * DataGridViewAutoSizeColumnMode.cs: DataGridView implementation
13871         * DataGridViewAutoSizeColumnModeEventHandler.cs: DataGridView implementation
13872         * DataGridViewAutoSizeColumnsModeEventArgs.cs: DataGridView implementation
13873         * DataGridViewRowErrorTextNeededEventHandler.cs: DataGridView implementation
13874         * DataGridViewSelectedCellCollection.cs: DataGridView implementation
13875         * DataGridViewRowContextMenuStripNeededEventArgs.cs: DataGridView implementation
13876         * DataGridViewRowErrorTextNeededEventArgs.cs: DataGridView implementation
13877         * DataGridViewComboBoxDisplayStyle.cs: DataGridView implementation
13878
13879 2005-11-08  Peter Dennis Bartok  <pbartok@novell.com>
13880
13881         * ThemeWin32Classic.cs: 
13882           - Draw the outside focus rectangle around buttons
13883           - Use CPDrawFocusRectangle to draw focus rectangles until Cairo
13884             doesn't use end caps for every dash of a line anymore. This
13885             workaround ignores the forecolor.
13886
13887 2005-11-08  Kornél Pál  <kornelpal@hotmail.com>
13888
13889         * ImageList.cs: Don't use ArgbColor with LayoutKind.Explicit as it isn't
13890           endian safe.
13891
13892 2005-11-07  Jackson Harper  <jackson@ximian.com>
13893
13894         * X11Dnd.cs: Set the X/Y positions on the DragEventArgs correctly.
13895
13896 2005-11-07  Jackson Harper  <jackson@ximian.com>
13897
13898         * ScrollableControl.cs: Calculate the maximum and change vars
13899         (more) correctly so that scrollbars appear as a sensible size.
13900
13901 2005-11-04  Jackson Harper  <jackson@ximian.com>
13902
13903         * TreeNodeCollection.cs: Refresh when nodes are cleared from the
13904         collection.
13905         * TreeView.cs: When the tree is sorted null out the top_node so
13906         that it is recalculated.
13907         - Use dotted lines instead of dashed lines to match MS better.
13908
13909 2005-11-04  Jordi Mas i Hernandez <jordimash@gmail.com>
13910
13911         * ListView.cs: 
13912           - Implements key search for items. Useful when browsing files with FileDialog
13913           - When changing view mode or when clear the items reset scrollbar positions
13914
13915 2005-11-04  Jackson Harper  <jackson@ximian.com>
13916
13917         * CurrencyManager.cs: Implement the MetaDataChanged event, the
13918         Reset method, and the CheckEmpty. CheckEmpty is just a total guess
13919         as to what the method may do as there is no real way of creating a
13920         derived CurrencyManager and calling the method. 
13921
13922 2005-11-03  Jackson Harper  <jackson@ximian.com>
13923
13924         * ThemeWin32Classic.cs: Implement ownerdrawing in the tab control
13925         * TabControl.cs: Add Ownerdrawing bits, add the UpdateTabSelection
13926         method which seems to just be used internally to refresh the tabs.
13927
13928 2005-11-03  Jackson Harper  <jackson@ximian.com>
13929
13930         * TabControl.cs: Implement the remove method. Fix some broken
13931         comments.
13932
13933 2005-11-03  Peter Dennis Bartok  <pbartok@novell.com>
13934
13935         * DateTimePicker.cs:
13936           - Added missing DateTimePickerAccessibleObject class
13937           - Added missing events
13938           - Added OnFontChanged method
13939         * Form.cs: Added missing attributes
13940         * TreeView.cs: Added missing attributes
13941
13942 2005-11-03  Peter Dennis Bartok  <pbartok@novell.com> 
13943
13944         * GridItemCollection.cs: Fix signatures
13945
13946 2005-11-03  Peter Dennis Bartok  <pbartok@novell.com>
13947
13948         * XplatUI.cs: Updated build rev/date
13949         * ComboBox.cs, DataGridTextBoxColumn.cs Control.cs, 
13950           DataGridTableStyle.cs, DataGrid.cs, DateTimePicker.cs: Signature fixes
13951         * Application.cs: Trigger context-specific ExitThread events
13952
13953 2005-11-03  Jackson Harper  <jackson@ximian.com>
13954
13955         * Menu.cs:
13956         * MainMenu.cs:
13957         * GridTableStylesCollection.cs:
13958         * Timer.cs:
13959         * TabPage.cs:
13960         * HelpProvider.cs:
13961         * StatusBar.cs:
13962         * MonthCalendar.cs: Signature fixes
13963
13964 2005-11-03  Jackson Harper  <jackson@ximian.com>
13965
13966         * TreeNodeCollection.cs: Remove should not be virtual.
13967         * TreeView.cs: Implement the last of the missing methods.
13968
13969 2005-11-03  Jackson Harper  <jackson@ximian.com>
13970
13971         * TreeNodeConverter.cs: Implement to get off my class-status back.
13972
13973 2005-11-03  Jackson Harper  <jackson@ximian.com>
13974
13975         * TreeView.cs: Hookup the bits for drag and drop.
13976         * TreeNode.cs: Don't cache the tree_view or index anymore, now
13977         that nodes can be moved from tree to tree easily this just causes
13978         all sorts of problems.
13979         * TreeNodeCollection: Don't need to give treenodes an index and
13980         treeview anymore when they are added, these are computed on the
13981         fly. Also make sure to remove a node before its added.
13982
13983 2005-11-03  Peter Dennis Bartok  <pbartok@novell.com>
13984
13985         * TextControl.cs:
13986           - Added CaretSelection enum
13987           - Added comparison methods to Marker struct, makes selection code
13988             more readable
13989           - Added SelectionStart and SelectionEnd as 'moveable' location for
13990             the CaretDirection enum and handler
13991           - Added selection_prev variable to track optimized invalidation for
13992             word and line selection
13993           - Added SelectionVisible property (returns true if there is a valid 
13994             selection)
13995           - Switched CaretHasFocus to only display the caret if there is no
13996             visible selection
13997           - Avoiding StringBuilder.ToString to retrieve a single char, instead
13998             using the direct character index; should be much faster
13999           - Added various conditional debug statements
14000           - Fixed invalidation calculation for selection ranges
14001           - Added ExpandSelection() method to support word and line selection
14002           - Switched SetSelectionToCaret to use new Marker compare overloads
14003           - Added central IsWordSeparator() method to determine word 
14004             separators/whitespace and FindWordSeparator() to streamline common
14005             usage of IsWordSeparator()
14006         * TextBoxBase.cs:
14007           - Removed unneeded grabbed variable, it was just mirroring
14008             Control.Capture
14009           - No longer firing OnTextChanged event when Text setter is called,
14010             since the base will fire the event for us
14011           - Added handling of Ctrl-Up/Down selection
14012           - Added handling of Shift-Cursorkey selection
14013           - Added handling for Ctrl-Delete and Ctrl-Backspace to remove
14014             words
14015           - Added handling of Shift and Ctrl-Shift-Home/End selection
14016           - Removed some debug output
14017           - Added handling for single/double/tripple-click to place caret/
14018             select word/select line respectively (Fixes bug #76031)
14019           - Added support for drag expansion of word/line selection
14020         * RichTextBox.cs: Handle GotFocus event to trigger redrawing of
14021           current selection
14022
14023 2005-11-02  Jackson Harper  <jackson@ximian.com>
14024
14025         * X11Dnd.cs: If the drag is going to and from a MWF window just
14026         copy the data instead of sending it out through the X Selection
14027         mechanism.
14028
14029 2005-11-02  Jackson Harper  <jackson@ximian.com>
14030
14031         * X11Dnd.cs:
14032         * XplatUIX11.cs: When in a drag we don't want motion notify
14033         messages to get passed on to the other controls. This prevents
14034         mouse move messages from showing up in the drag source.
14035
14036 2005-11-02  Jackson Harper  <jackson@ximian.com>
14037
14038         * X11Dnd.cs: Remove unneeded call to XAllowEvents.  Make sure that
14039         the correct button is release to end a drag.
14040         * XplatUIX11.cs: Make the button state internal so the drag system
14041         can access it.  Dragging needs to know about all button releases,
14042         not just left button.
14043
14044 2005-11-02  Miguel de Icaza  <miguel@novell.com>
14045
14046         * Form.cs (Icon): If the icon is null, reset the icon to the
14047         default value. 
14048
14049         * Cursor.cs: When writing the AND-mask bitmap do not include the
14050         number of colors, but hardcode those to two (black and white),
14051         fixes the loading of color cursors (Paint Dot Net).
14052
14053         * Form.cs: To debug, allow MONO_MWF_SCALING=disable variable to
14054         turn off autoscaling.
14055
14056         * Cursor.cs: Allow resource type to be 1 or 2 (from ImageMagic).
14057
14058 2005-11-02  Jackson Harper  <jackson@ximian.com>
14059
14060         * X11Dnd.cs: Make sure to send a status message if the pointer
14061         enters a control that can not accept a drop, otherwise the cursor
14062         isn't updated correctly. Also tried to compress the lines of code
14063         a bit.
14064
14065 2005-11-02  Jackson Harper  <jackson@ximian.com>
14066
14067         * X11Dnd.cs: Change cursors based on drag action. Also attempt to
14068         set actions correctly.  This isn't perfect as XDND and win32 have
14069         some differences on how you allow actions. I'll clear this up by
14070         adding a path for drag from MWF to MWF windows.
14071         * XplatUIX11.cs: Hook into the dnd system.
14072
14073 2005-11-02  Jordi Mas i Hernandez <jmas@softcatala.org>
14074
14075         * ListView.cs: Fixes scroll bar visibility. Hide them if they were
14076         previously shown but they are no longer need it. Very obvious when 
14077         browsing files with FileDialog.
14078
14079 2005-11-01  Peter Dennis Bartok  <pbartok@novell.com>
14080
14081         * Control.cs: We always need to call OnPaintBackground. We pretty much
14082           ignore AllPaintingInWmPaint and always do the painting there, whether 
14083           it's set or not, since we always ignore the WM_ERASEBKGND message 
14084           (which we don't generate on X11). This fixes #76616.
14085         * Panel.cs: Removed unneeded background painting. This happens properly
14086           in Control.cs already
14087
14088 2005-10-31  Mike Kestner  <mkestner@novell.com>
14089
14090         * Menu.cs: Add items to collection before setting their index.
14091         * MenuItem.cs : add range checking with ArgumentException like MS.
14092         [Fixes #76510]
14093
14094 2005-10-31  Jackson Harper  <jackson@ximian.com>
14095
14096         * ListBox.cs: Invalidate if the area is visible at all not just
14097         contained in the visible rect. Fixes unselection of semi visible
14098         items.
14099
14100 2005-10-31  Jackson Harper  <jackson@ximian.com>
14101
14102         * Control.cs: Consistently name the dnd methods. Make them
14103         internal so we can override them to match some MS behavoir
14104         internally.
14105         * Win32DnD.cs: Use the new consistent names.
14106
14107 2005-10-31  Jackson Harper  <jackson@ximian.com>
14108
14109         * TreeView.cs: Don't draw the selected node when we lose focus.
14110
14111 2005-10-31  Jackson Harper  <jackson@ximian.com>
14112
14113         * X11Dnd.cs: We still need to reset the state even though a full
14114         reset isn't being done, otherwise status's still get sent all over
14115         the place.
14116
14117 2005-10-31  Jackson Harper  <jackson@ximian.com>
14118
14119         * Control.cs: Make the dnd_aware flag internal so the dnd
14120         subsystem can check it. Catch exceptions thrown in dnd handlers to
14121         match MS behavoir.
14122         * Hwnd.cs: Add a flag for whether or not a window is dnd aware.
14123         * X11Dnd.cs: Handle null data in the converters. Set the XDND
14124         version when sending a XdndEnter. Use the control/hwnd dnd_aware
14125         flags to reduce the number of dnd enters/status's sent.
14126
14127 2005-10-31  Jackson Harper  <jackson@ximian.com>
14128
14129         * X11Dnd.cs: Don't need the sizeof here. Patch by Jordi Mas.
14130
14131 2005-10-31  Jordi Mas i Hernandez <jordi@ximian.com>
14132
14133         * PictureBox.cs: Fixes 76512
14134
14135 2005-10-28  Jackson Harper  <jackson@ximian.com>
14136
14137         * X11Dnd.cs: Early implementation to support winforms being a drag
14138         source for data on X11. Also restructured the converters so they
14139         can go both ways now.
14140         * XplatUIX11.cs: Tie ins to the the Dnd stuff.
14141         
14142 2005-10-27  Peter Dennis Bartok  <pbartok@novell.com>
14143
14144         * XplatUIX11.cs: Fixed FIXME - implemented ASCII encoding for XA_STRING
14145           clipboard requests
14146
14147 2005-10-27  Jackson Harper  <jackson@ximian.com>
14148
14149         * TreeNode.cs: Implement serialization so my DnD examples will work.
14150
14151 2005-10-24  Kornél Pál  <kornelpal@hotmail.com>
14152
14153         * ButtonBase.cs, ListView.cs, NotifyIcon.cs, PictureBox.cs, ToolBar.cs,
14154           TreeView.cs: Don't dispose objects that are not owned.
14155           
14156 2005-10-24  Peter Dennis Bartok  <pbartok@novell.com>
14157
14158         * Cursor.cs: Defaulting the Current cursor to Cursors.Default. We
14159           should retrieve the current cursor and report that, but XplatUI
14160           doesn't (yet) have an interface for that (and I'm not sure I even
14161           can, on X11)
14162         * XplatUIWin32.cs: Fixed override behaviour. The override is temporary,
14163           until any message loop processing is done (and the WM_SETCURSOR
14164           replaces the cursor to the proper one)
14165         * XplatUIX11.cs: 
14166           - Fixed override behaviour, we can't set the cursor globally on X11, 
14167             just for our windows.
14168           - Invalidating the System.Drawing X11 display handle when we are
14169             shutting down
14170         * Control.cs: Fix to make csc happy
14171
14172 2005-10-23  Peter Dennis Bartok  <pbartok@novell.com>
14173
14174         * TextBoxBase.cs: 
14175           - get_Text: Add last line (without trailing newline) to returned
14176             value (Fixes 76212)
14177           - get_TextLength: Count last line in returned length
14178           - ToString: Call Text property instead of duplicating code
14179
14180 2005-10-23  Kornél Pál  <kornelpal@hotmail.com>
14181
14182         * ImageList.cs: Dispose ImageAttributes objects.
14183
14184 2005-10-22  Kornél Pál  <kornelpal@hotmail.com>
14185
14186         * ImageList.cs: Use attribute constructors with less arguments where
14187           possible.
14188
14189 2005-10-22  Kornél Pál  <kornelpal@hotmail.com>
14190
14191         * ImageList.cs: Added lastKeyIndex field and use in IndexOfKey.
14192           Use typeof instead of strings when assembly is referenced. Added
14193           some more comments.
14194
14195 2005-10-21  Jackson Harper  <jackson@ximian.com>
14196
14197         * ListView.cs: Raise a double click event. Also tried to somewhat
14198         fix when the selectedindexchanged event is raised. Its still
14199         broken though.
14200
14201 2005-10-21  Jackson Harper  <jackson@ximian.com>
14202
14203         * TreeView.cs: New method to invalidate the plus minus area of a
14204         node without invalidating the whole node (maybe this can be used
14205         in some more places).
14206         * TreeNodeCollection.cs: When adding to an empty node we need to
14207         invalidate its plus minus area so the little block shows up.
14208         
14209 2005-10-21  Jackson Harper  <jackson@ximian.com>
14210
14211         * TreeView.cs: Make sure that when we invalidate a node the bounds
14212         are big enough to cover the selected box and the focus
14213         rectangle. Use a different colour for the lines connecting nodes
14214         so they show up with all themes.
14215
14216 2005-10-21  Peter Dennis Bartok  <pbartok@novell.com>
14217
14218         * NativeWindow.cs: Don't call anything that could call into the driver,
14219           we might be on a different thread.
14220
14221 2005-10-21  Peter Dennis Bartok  <pbartok@novell.com> 
14222
14223         * Control.cs(Dispose): Since Dispose might run on a different thread,
14224           make sure that we call methods that could call into the driver via
14225           invoke, to avoid thread issues
14226
14227 2005-10-21  Peter Dennis Bartok  <pbartok@novell.com>
14228
14229         * XplatUI.cs: Removed finalizer
14230         * XplatUIX11.cs: Removed Destructor, was causing crashes due to X11
14231           not allowing to be called on the finalizer thread.
14232
14233 2005-10-21  Kornél Pál  <kornelpal@hotmail.com>
14234
14235         * ImageList.cs:
14236           - Reverted r51889 and r51891.
14237           - Added ImageListItem class that stores unmodified image items and image
14238             properties required to create list images until handle is created.
14239           - Added AddItem and moved image creation logic to AddItemInternal.
14240           - Added CreateHandle method that creates images based on unmodified items.
14241           - Added DestroyHandle that changes state to store unmodified items.
14242           - Add and AddStrip methods no more create handle.
14243           - ReduceColorDepth has no return value.
14244           - Dispose destroys handle.
14245           - Modified other methods to reflect the above changes.
14246           - Implemented key support.
14247           - Added profile 2.0 members and attributes.
14248           - Added private Reset and ShouldSerialize methods that provide the same
14249             behavior as MS.NET but the Visual Studio .NET designer seems to ignore
14250             them as they are private.
14251           - Added some more comments about implementation details.
14252
14253 2005-10-21  Jordi Mas i Hernandez <jordi@ximian.com>
14254
14255         * DataGrid.cs: Adds support for vertical scrolling using the mousewheel
14256
14257 2005-10-21  Jordi Mas i Hernandez <jordi@ximian.com>
14258
14259         * Binding.cs: No PushData/PullData if there is no binding (fixes crash)
14260
14261 2005-10-21  Jordi Mas i Hernandez <jordi@ximian.com>
14262
14263         * DataGridDrawingLogic.cs: Fixes column hit calcultation
14264         * DataGridColumnStyle.cs: Remove debug message
14265
14266 2005-10-20  Jackson Harper  <jackson@ximian.com>
14267
14268         * TreeView.cs: We can always get input keys regardless of whether
14269         or not editing is enabled. They are used for navigation.
14270
14271 2005-10-20  Jackson Harper  <jackson@ximian.com>
14272
14273         * TreeNode.cs: Use the viewport rect for determining if a node
14274         needs to be moved for visibility. Don't use Begin/End edit. This
14275         calls a full refresh when its done.
14276         * TreeView.cs: New SetBottom works correctly.  Make the viewport
14277         rect property internal so the treenodes can see it. When clicking
14278         on a node we need to ensure that its visible because it might just
14279         be partly visible when clicked.
14280
14281 2005-10-20  Jackson Harper  <jackson@ximian.com>
14282
14283         * TreeNodeCollection.cs: Remove debug code.
14284
14285 2005-10-20  Jordi Mas i Hernandez <jordi@ximian.com>
14286
14287         * Datagrid.cs: Implements column sorting in Datagrid
14288         * DataGridColumnStyle.cs: Implements column sorting in Datagrid
14289
14290 2005-10-20  Jackson Harper  <jackson@ximian.com>
14291
14292         * TreeNodeCollection.cs: Remove items properly. Update the correct
14293         area after removing them.
14294
14295 2005-10-20  Jordi Mas i Hernandez <jordi@ximian.com>
14296
14297         * Datagrid.cs: Should not call base.OnPaintBackground
14298
14299 2005-10-20  Peter Dennis Bartok  <pbartok@novell.com>
14300
14301         * XplatUIX11.cs (GetMessage):
14302           - Now properly calculates NC_xBUTTONDOWN coordinates off the whole
14303             window instead of client window
14304           - Now properly calculates NC_xBUTTONUP message coordinates
14305           - ScreenToMenu now properly calculates it's coordinates of whole 
14306             window, since menus are in the whole window, not in the client
14307             window
14308           - Added WholeToScreen coordinate translation method
14309
14310 2005-10-20  Peter Dennis Bartok  <pbartok@novell.com> 
14311
14312         * XplatUIX11.cs (GetMessage): Don't return in situations where we don't
14313           want to return a message, loop back to the beginning of the function
14314           and grab the next real message to process instead.
14315
14316 2005-10-20  Peter Dennis Bartok  <pbartok@novell.com>
14317
14318         * Splitter.cs: Properly set limits if no filler control is used
14319
14320 2005-10-19  Jackson Harper  <jackson@ximian.com>
14321
14322         * ColorDialog.cs: Don't show the help button if it is not enabled
14323         instead of disabling it (this is what MS does). Don't create the
14324         panel until the dialog is run, otherwise the vars (such as
14325         ShowHelp) are not set yet.
14326
14327 2005-10-19  Jackson Harper  <jackson@ximian.com>
14328
14329         * TreeView.cs: Implement Begin/EndEdit more correctly so refreshes
14330         are reduced when adding nodes.
14331         * TreeNode.cs:
14332         * TreeNodeCollection.cs: Use UpdateNode instead of refreshing the
14333         tree.
14334         
14335 2005-10-19  Jackson Harper  <jackson@ximian.com>
14336
14337         * FolderBrowserDialog.cs: End editing our treeview so the window
14338         actually gets refreshed.
14339
14340 2005-10-18  Peter Dennis Bartok  <pbartok@novell.com>
14341
14342         * Control.cs: Fixed logic flip on when to call OnPaintBackground. 
14343           Obsoleted handling of WM_ERASEBKGND, now always draws our background
14344           inside of WM_PAINT
14345
14346 2005-10-18  Jordi Mas i Hernandez <jordi@ximian.com>
14347
14348         * MenuAPI.cs: Returns after Hidding window
14349         * XplatUIX11.cs: Added TODO found while debugging menu issues
14350
14351 2005-10-18  Peter Dennis Bartok  <pbartok@novell.com>
14352
14353         * XplatUIX11.cs: Do not re-map the whole window when it's size
14354           becomes non-zero unless it's supposed to be actually visible
14355
14356 2005-10-18  Jackson Harper  <jackson@ximian.com>
14357
14358         * TreeView.cs: We don't need to keep a count anymore.
14359         * TreeNodeCollection.cs: Fix off by one in RemoveAt, Insert can
14360         use the Grow method.
14361
14362 2005-10-18  Jackson Harper  <jackson@ximian.com>
14363
14364         * TreeNodeCollection.cs: Insert is not supported on arrays, so
14365         implement it manually here.
14366
14367 2005-10-18  Jackson Harper  <jackson@ximian.com>
14368
14369         * ImageList.cs: Dont kill the list when the colour depth is
14370         changed, just change the colour depth of all the images.
14371         - Same goes for setting the image size. Just resize them all
14372         instead of killing the list softly.
14373
14374 2005-10-18  Jackson Harper  <jackson@ximian.com>
14375
14376         * Control.cs: Don't invalidate empty rectangles.
14377
14378 2005-10-18  Jordi Mas i Hernandez <jordi@ximian.com>
14379
14380         * ListViewItem.cs:
14381           - Adds checked item to the Checked/Item lists (where empty before)
14382           - Do not add items to the Selected lists if they are already present
14383         * ListView.cs:
14384           - Fixes IsFixedSize, SyncRoot, IsReadOnly in many collections
14385           - When deleting items make sure that we delete them for the Selected
14386           and Checked list also.
14387
14388 2005-10-18  Jordi Mas i Hernandez <jordi@ximian.com>
14389
14390         * Label.cs: Dispose objects no longer used
14391         * ThemeWin32Classic.cs: Dispose objects no longer used
14392
14393 2005-10-18  Jackson Harper  <jackson@ximian.com>
14394
14395         * TabControl.cs: Don't refresh the whole control when the tabs are
14396         scrolled, we just need to refresh the tab area.
14397
14398 2005-10-17  Jackson Harper  <jackson@ximian.com>
14399
14400         * XplatUIX11.cs: Compress code a little bit. Only calculate the
14401         after handle when we need it.
14402
14403 2005-10-17  Peter Dennis Bartok  <pbartok@novell.com>
14404
14405         * Control.cs: When the parent size changes, recalculate anchor 
14406           positions. Partial fix for #76462
14407
14408 2005-10-17  Peter Dennis Bartok  <pbartok@novell.com>
14409
14410         * ThemeWin32Classic.cs: Make sure the picturebox has it's background 
14411           drawn. Fixes #76462
14412
14413 2005-10-17  Jackson Harper  <jackson@ximian.com>
14414
14415         * MonthCalendar.cs: Don't create the numeric up down until our
14416         handle is created. Otherwise our handle is created in the
14417         constructor and we don't know if we are a WS_CHILD or WS_POPUP
14418         yet.
14419
14420 2005-10-17  Jackson Harper  <jackson@ximian.com>
14421
14422         * TreeView.cs: Merge in patch by Rafael Teixeira to align strings
14423         correctly.
14424
14425 2005-10-17  Rafael Teixeira <rafaelteixeirabr@hotmail.com> 
14426         * TreeNode.cs : small logical fix (was using local var instead of field)
14427         
14428 2005-10-17  Jordi Mas i Hernandez <jordi@ximian.com>
14429
14430         * ThemeWin32Classic.cs: Fixes vert/horz scrollbar colours
14431
14432 2005-10-17  Jordi Mas i Hernandez <jordi@ximian.com>
14433
14434         * ThemeWin32Classic.cs: Fixes focus drawing in for non-flat/popup buttons
14435
14436 2005-10-16  Peter Dennis Bartok  <pbartok@novell.com> 
14437
14438         * Control.cs: 
14439           - Re-implemented anchoring code. My first version was really broken.
14440             This fixes bug #76033. Unlike the previous implementation we will
14441             no longer have round errors since all numbers are calculated from
14442             scratch every time. Removed various anchor-related obsolete vars.
14443           - InitLayout no longer causes layout event firing and layout to be 
14444             performed
14445
14446 2005-10-16  Jackson Harper  <jackson@ximian.com>
14447
14448         * Hwnd.cs: Compute invalid area correctly (fixes my last commit
14449         which was broken).
14450
14451 2005-10-16  Jackson Harper  <jackson@ximian.com>
14452
14453         * TabControl.cs: Remove debug code.
14454
14455 2005-10-16  Jackson Harper  <jackson@ximian.com>
14456
14457         * XEventQueue.cs: Increase the default queue size (very simple
14458         apps needed to grow the queue).
14459         * Hwnd.cs: No finalizer so we don't need to suppress
14460         finalization. Compute the invalid area manually so a new rectangle
14461         does not newto be created.
14462         * ScrollableControl.cs: Don't set any params (otherwise visibility
14463         isn't set correctly).
14464         * MdiChildContext.cs: New constructor takes the mdi parent so it
14465         doesn't have to be computed and avoids a crash on windows. Draw
14466         the window icon properly, and allow the text to be seen.
14467         * Form.cs: Use new MdiChildContext constructor. Make sure the
14468         child context isn't null in wndproc.
14469         * TabControl.cs: Don't set focus, this is muddling keyboard
14470         behavoir. Expand the tab rows when a window size increase will
14471         allow extra tabs to be seen. Don't allow tabs smaller than the
14472         width of a window to be scrolled out of view.
14473         * TreeNode.cs:
14474         * TreeView.cs: Use measure string to calculate a nodes width, the
14475         width is cached and only updated when the text or the font is
14476         changed. Don't check for expand/collapse clicks on the first level
14477         nodes if root lines are disabled.
14478         
14479 2005-10-16  Ritvik Mayank  <mritvik@novell.com>
14480
14481         * TextBoxBase.cs: Fixes #76352 (passing tab key in a multiline textbox)
14482
14483 2005-10-16  Jordi Mas i Hernandez <jordi@ximian.com>
14484
14485         * DataGridBoolColumn.cs: fixes warning
14486
14487 2005-10-16  Jordi Mas i Hernandez <jordi@ximian.com>
14488
14489         * ControlPaint.cs: Fixes methods Dark, DarkDark, Light, LightLight
14490         to match more to match more precisely the MS Net behavior
14491
14492 2005-10-13  Peter Dennis Bartok  <pbartok@novell.com> 
14493
14494         * Hwnd.cs: Added field to track if window is mapped
14495         * XplatUIX11.cs: 
14496           - Unmap windows if they become 0-size, re-map when 
14497             they are >0 again; fixes #76035
14498           - Re-set our error handler after initializing X11Desktop
14499             to override any error handlers Gtk or whatever was called
14500             may have set.
14501
14502 2005-10-13  Peter Dennis Bartok  <pbartok@novell.com> 
14503
14504         * CheckedListBox.cs: Removed unused vars
14505         * ListView.cs: Fixed signatures
14506         * RichTextBox.cs: Removed unused vars
14507         * TextBoxBase.cs: Removed unused vars
14508         * XplatUIWin32.cs: Removed unused vars
14509         * XplatUIX11.cs: Removed unused vars
14510         * XplatUI.cs: Updated version and date to latest published
14511
14512 2005-10-13  Peter Dennis Bartok  <pbartok@novell.com>
14513
14514         * Cursor.cs: Added private .ctor to work around a bug in
14515           resourceset (Thanks to Geoff Norton for the help on this)
14516         * SplitterEventArgs.cs: Made fields accessible so we don't
14517           waste boatloads of objects and can reuse the same one
14518           in Splitter
14519         * XplatUIWin32.cs(DrawReversibleLine): Now also considers
14520           any captions and borders when generating screen coordinates
14521         * Splitter.cs: Reimplemented control, now fully complete, uses
14522           rubberband drawing, supports and obeys all properties, has
14523           proper cursors
14524
14525 2005-10-13  Miguel de Icaza  <miguel@novell.com>
14526
14527         * Form.cs (Form): Setup default values for autoscale and
14528         autoscale_base_size;  Make these instance variables, not static
14529         variables. 
14530
14531         (OnLoad): on the first load, adjust the size of the form.
14532
14533 2005-10-13  Peter Dennis Bartok  <pbartok@novell.com>
14534
14535         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs: Added 
14536           width argument to DrawReversibleRectangle()
14537         * XplatUIWin32.cs, XplatUIX11.cs: 
14538           - Implemented width for DrawReversibleRectangle()
14539           - Added logic to DrawReversibleRectangle that recognizes a zero
14540             width or height and only draws a line in that situation
14541         
14542 2005-10-12  Peter Dennis Bartok  <pbartok@novell.com> 
14543
14544         * XplatUI.cs, XplatUIDriver.cs: Added GetAutoScaleSize()
14545         * XplatUIOSX.cs: Stubbed GetAutoScaleSize() method
14546         * XplatUIWin32.cs, XplatUIX11.cs: Implemented GetAutoScaleSize()
14547           method (it uses our FosterParent window to get a graphics context)
14548
14549 2005-10-12  Peter Dennis Bartok  <pbartok@novell.com>
14550
14551         * XplatUI.cs, XplatUIDriver.cs: Removed EraseWindowBackground 
14552           and SetWindowBackground methods
14553         * Control.cs:
14554           - Setting proper ControlStyles
14555           - We no longer call XplatUI.SetWindowBackground and XplatUI.
14556             EraseWindowBackground, instead we draw the window background
14557             ourselves in PaintControlBackground. This behaviour is
14558             required to match MS, where, when OnPaintBackground is not
14559             called, the background is not drawn.
14560           - Removed unneeded Refresh() in set_Text
14561         * Hwnd.cs: Dropped the ErasePending support. No longer needed
14562         * XplatUIX11.cs:
14563           - Created DeriveStyles method to translate from CreateParams to
14564             FormBorderStyle and TitleStyle, also handles BorderStyle (which
14565             matches FormBorderStyle enum values)
14566           - Consolidated SetHwndStyles and CalculateWindowRect border/title
14567             style calculations into single DeriveStyles method
14568           - Fixed CreateWindow to (finally) use Gravity. This prevents X11
14569             from redrawing the whole window on any resize or expose.
14570           - Fixed CreateWindow usage of SetWindowValuemask. Before not
14571             all styles were applied to our whole/client window appropriately
14572           - Removed EraseWindowBackground() and SetWindowBackground() methods
14573           - Removed handling of WM_ERASEBKGND message from DefWndProc, we
14574             no longer clear/redraw the background through X
14575           - Removed handling of erase_pending bit, we have no use for it (or
14576             so it seems)
14577         * XplatUIOSX.cs:
14578           - Removed generation and handling of WM_ERASEBKGND message
14579           - Removed EraseWindowBackground() and SetWindowBackground() methods
14580           - Removed handling of hwnd.ErasePending flag
14581         * XplatUIWin32.cs:
14582           - Removed EraseWindowBackground() and SetWindowBackground() methods
14583           - We no longer call EraseWindowBackground on PaintEventStart, we 
14584             ignore the fErase flag, erasing is handled in Control in the
14585             background handler
14586         * Button.cs, GroupBox.cs, Label.cs, CheckBox.cs, ProgressBar.cs,
14587           LinkLabel.cs, ListControl.cs, TabPage.cs, UpDownBase.cs,
14588           TextBoxBase.cs, TextBox.cs, ListView.cs, ButtonBase.cs, 
14589           CheckedListBox.cs, MdiClient.cs, Panel.cs, DataGrid.cs, 
14590           DataGridTextBox.cs, ScrollBar.cs, ListBox.cs, TrackBar.cs, 
14591           TabControl.cs, ScrollableControl.cs, ToolBar.cs, PictureBox.cs,
14592           DateTimePicker.cs, StatusBar.cs, MonthCalendar.cs: Setting proper ControlStyles
14593
14594 2005-10-12  Jonathan Chambers <jonathan.chambers@ansys.com>
14595
14596         * PropertyGrids.cs: Get sub properties
14597         * PropertyGridView.cs: Fix drawing code
14598
14599 2005-10-11  Jordi Mas i Hernandez <jordi@ximian.com>
14600
14601         * ListBox.cs: Fixes 76383
14602
14603 2005-10-11  Jordi Mas i Hernandez <jordi@ximian.com>
14604
14605         * DataGridTextBoxColumn.cs: Sets location and size before attachment
14606         * ThemeWin32Classic.cs: Fixes border drawing and calculations
14607         * DataGridDrawingLogic.cs: Fixes border drawing and calculations
14608
14609
14610 2005-10-11  Jordi Mas i Hernandez <jordi@ximian.com>
14611
14612         * ComboBox.cs: Fixes border drawing
14613
14614 2005-10-10  Miguel de Icaza  <miguel@novell.com>
14615
14616         * MimeIcon.cs: Ignore errors if the file can not be read.
14617
14618 2005-10-11  Jordi Mas i Hernandez <jordi@ximian.com>
14619
14620         * Theme.cs, ThemeWin32Classic.cs, ListBox.cs:
14621          - Fixed border calculations
14622          - Fixed horizontal scrolling in single column listboxes
14623          - Fixed drawing issues
14624
14625 2005-10-10  Peter Dennis Bartok  <pbartok@novell.com>
14626
14627         * XplatUI.cs, XplatUIOSX.cs, XplatUIWin32.cs: Switched from BorderStyle to 
14628           FormBorderStyle enum
14629         * XplatUIX11.cs: Switched BorderStyle to FormBorderStyle, added 
14630           code to determine FormBorderStyles from CreateParams
14631         * Form.cs:
14632           - Fixed bug where we'd set the wrong window styles if we were
14633             not creating an MDI window
14634           - Added call to XplatUI.SetBorderStyle when form borders are set
14635         * Control.cs: Casting BorderStyles to accommodate changed XplatUI APIs
14636         * Hwnd.cs:
14637           - Removed obsolete edge style
14638           - Switched from BorderStyle to FormBorderStyle
14639         
14640 2005-10-10  Jackson Harper  <jackson@ximian.com>
14641
14642         * Form.cs: Use the property to get the window handle instead of
14643         accessing it directly. Prevents a null reference exception.
14644
14645 2005-10-10  Jackson Harper  <jackson@ximian.com>
14646
14647         * TreeView.cs: Don't adjust the rect given to DrawString now that
14648         our libgdiplus draws correctly.
14649
14650 2005-10-08  Jackson Harper  <jackson@ximian.com>
14651
14652         * TreeView.cs: Don't try to find the clicked on node if there are
14653         no nodes in the tree.
14654
14655 2005-10-08  Alexander Olk  <alex.olk@googlemail.com>
14656
14657         * RichTextBox.cs:
14658
14659           restore
14660
14661 2005-10-08  Alexander Olk  <alex.olk@googlemail.com>
14662
14663         * ImageListStreamer.cs, TreeView.cs, UpDownBase.cs, RichTextBox.cs,
14664           ColorDialog.cs, TextControl.cs, Panel.cs, MdiChildContext.cs,
14665           ErrorProvider.cs:
14666           Use ResPool for brushes and dispose System.Drawing objects that
14667           are not used anymore.
14668
14669 2005-10-07  Jackson Harper  <jackson@ximian.com>
14670
14671         * MdiChildContext.cs: Use the new borders instead of drawing them
14672         ourselves.
14673
14674 2005-10-06  Jordi Mas i Hernandez <jordi@ximian.com>
14675
14676         * Calling UpdateBounds after changing the window's BorderStyle 
14677         since the style can change the ClientSize
14678
14679 2005-10-06  Peter Dennis Bartok  <pbartok@novell.com>
14680
14681         * Control.cs: Made PaintControlBackground virtual
14682         * Panel.cs: Overriding PaintControlBackground instead of using paint
14683           event; paint event method was interfering with 'real' users of the
14684           event.
14685
14686 2005-10-06  Jordi Mas i Hernandez <jordi@ximian.com>
14687
14688         * ThemeWin32Classic.cs: remove border drawing since it is handled
14689         by the base control class now and was causing double border drawing.
14690
14691 2005-10-06  Peter Dennis Bartok  <pbartok@novell.com>
14692
14693         * Panel.cs: Redraw our background on paint. Not a pretty solution,
14694           but it does seem to match MS behaviour. This fixes bug #75324
14695
14696 2005-10-06  Peter Dennis Bartok  <pbartok@novell.com>
14697
14698         * XplatUIX11.cs: A better DrawReversibleRectangle version, however
14699           somewhat hackish looking
14700
14701 2005-10-06  Peter Dennis Bartok  <pbartok@novell.com> 
14702
14703         * TextBoxBase.cs:
14704           - We now accept Enter even if AcceptEnter is false, if the containing
14705             form does not have an AcceptButton configured (fixes bug #76355)
14706           - Calculations are now fixed to no longer use Width/Height, but
14707             ClientSize.Width/Height, since we now support borders (this was
14708             a result of fixing borders and therefore bug #76166)
14709           - We no longer show the horizontal scrollbar if TextBox.WordWrap is 
14710             true (fixes bug #76354)
14711         
14712 2005-10-06  Peter Dennis Bartok  <pbartok@novell.com>
14713
14714         * Control.cs: 
14715           - Defaulting BorderStyle and setting it in XplatUI when our window 
14716             is created
14717           - Added enum check to InternalBorderStyle setter
14718         * XplatUIX11.cs: 
14719           - Added drawing of window borders
14720           - Now properly calculates WM decorations offset for toplevel 
14721             windows (fixes bug #74763)
14722         * XplatUIWin32.cs: 
14723           - Implemented BorderStyles for windows (we're letting win32 draw 
14724             the border for us)
14725           - Fixed the signature for SetWindowLong
14726         * PictureBox.cs, DataGrid.cs, TextBoxBase.cs, ToolBar.cs, Panel.cs,
14727           ListBox.cs, Label.cs: Now uses Control.InternalBorderStyle for 
14728           setting borders
14729         * UpDownBase.cs: Remove drawing of borders, this is handled by
14730           the driver, outside the client area
14731         * ListView.cs: Removed bogus border calculations. The control should
14732           be oblivious to borders, since those are not part of the client
14733           area. 
14734         * X11DesktopColors.cs: Commented out (currently) unneeded variables
14735         * ThemeWin32Classic.cs: Removed border calculations from ListView 
14736           drawing code
14737
14738 2005-10-06  Jackson Harper  <jackson@ximian.com>
14739
14740         * MdiChildContext.cs: Clear out the old virtual position remove
14741         all the unneeded calls to CreateGraphics.
14742
14743 2005-10-06  Peter Dennis Bartok  <pbartok@novell.com> 
14744
14745         * TextControl.cs: Use proper color for highlighted text; fixes #76350
14746
14747 2005-10-06  Peter Dennis Bartok  <pbartok@novell.com> 
14748
14749         * Form.cs: 
14750           - Added loading and setting of our new default icon
14751           - Only set icon if window is already created
14752
14753 2005-10-06  Peter Dennis Bartok  <pbartok@novell.com>
14754
14755         * Label.cs:
14756           - Do not explicitly set the foreground and background colors, to
14757             allow inheriting from parents (fixes #76302)
14758           - Use Control's InternalBorderStyle property to deal with borders
14759
14760 2005-10-06  Jackson Harper  <jackson@ximian.com>
14761
14762         * MdiChildContext.cs: Use the new xplatui function to draw a
14763         reversible rect.
14764
14765 2005-10-06  Jackson Harper  <jackson@ximian.com>
14766
14767         * Form.cs: Add the parent before creating the child context cause
14768         we need the parent when setting up the child.
14769
14770 2005-10-06  Jackson Harper  <jackson@ximian.com>
14771
14772         * FolderBrowserDialog.cs: redo the tree population code so a
14773         second thread isn't used. Should be a lot faster and more stable
14774         now.
14775
14776 2005-10-05  Jackson Harper  <jackson@ximian.com>
14777
14778         * TreeView.cs: There are no expand/collapse boxes if the node has
14779         no children.
14780
14781 2005-10-05  Jackson Harper  <jackson@ximian.com>
14782
14783         * X11DesktopColors.cs: Get menu colours for the gtk theme.
14784
14785 2005-10-05  Alexander Olk  <alex.olk@googlemail.com>
14786
14787         * FileDialog.cs: Fix InitialDirectory
14788
14789 2005-10-05  Jordi Mas i Hernandez <jordi@ximian.com>
14790
14791         * ComboBox.cs:
14792                 - Fixes changing between styles
14793                 - Fixes simple mode
14794                 - Fixes last item crashing when navigating with keyboard
14795
14796 2005-10-05  Jordi Mas i Hernandez <jordi@ximian.com>
14797
14798         * LinkLabel.cs: Related to 76045. Stops the LinkLabel been drawn as a Label
14799
14800 2005-10-05  Jackson Harper  <jackson@ximian.com>
14801
14802         * TreeView.cs: If updating the root node do a full refresh.
14803         * TreeNode.cs: The root node should be expanded by default. Also
14804         added a utility prop to tell if we are the root node.
14805         * TreeNodeCollection.cs: Only refresh if the node we are being
14806         added to is expanded. Also added a comment on a potential
14807         optimization.
14808         
14809 2005-10-04  Peter Dennis Bartok  <pbartok@novell.com>
14810
14811         * Cursor.cs, Hwnd.cs: Added call to GC.SuppressFinalize() 
14812           in dispose method. Fixes #76330
14813
14814 2005-10-04  Jordi Mas i Hernandez <jordi@ximian.com>
14815
14816         * ListView.cs, ThemeWin32Classic.cs, ListViewItem.cs:
14817
14818                 - Implements vertical and horizontal scrolling using XplatUI
14819                 - Fixes keyboard navagation
14820                 - Fixes EnsureVisible
14821                 - Drawing fixes
14822                 - Handles and draws focus properly
14823
14824
14825 2005-10-04  Kornél Pál  <kornelpal@hotmail.com>
14826
14827         * ImageList.cs: Use upper case initials for internal fields. ImageStream:
14828           Create handle. NET_2_0: Destroy handle when value is null.
14829
14830 2005-10-03  Jackson Harper  <jackson@ximian.com>
14831
14832         * ScrollBar.cs: My last scrollbar patch was broken. This is a
14833         revert and a new patch to prevent the thumb from refreshing so
14834         much.
14835
14836 2005-10-02  Jackson Harper  <jackson@ximian.com>
14837
14838         * ScrollBar.cs: Don't update position if it hasn't actually
14839         changed. This occurs when you hold down the increment/decrement
14840         buttons and the thumb gets to the max/min.
14841
14842 2005-10-01  Jackson Harper  <jackson@ximian.com>
14843
14844         * Form.cs:
14845         * MdiChildContext.cs:
14846         * MdiClient.cs: Implement ActiveMdiChild in Form.
14847
14848 2005-10-01  Jordi Mas i Hernandez <jordi@ximian.com>
14849
14850         * ComboBox.cs: Include ComboBoxEdit flag for the edit item
14851
14852 2005-10-01  Peter Dennis Bartok  <pbartok@novell.com>
14853
14854         * X11DesktopColors.cs: Bow out gracefully if the Gtk libs cannot
14855           be found
14856
14857 2005-09-30  Jackson Harper  <jackson@ximian.com>
14858
14859         * ListBox.cs: Don't do a full refresh unless some data has
14860         actually changed.
14861
14862 2005-09-30  Jackson Harper  <jackson@ximian.com>
14863
14864         * TreeView.cs: Make sure that the checkboxes size is factored in
14865         even when not visible.
14866
14867 2005-09-30  Peter Dennis Bartok  <pbartok@novell.com> 
14868
14869         * FileDialog.cs: Fix Jordi's build break
14870
14871 2005-09-30  Jordi Mas i Hernandez <jordi@ximian.com>
14872
14873         * FileDialog.cs: 
14874                 - Use standard the Windows colours for the combobox as espected
14875                 - Dispose objects that use resouces when no longer need them
14876
14877 2005-09-30  Peter Dennis Bartok  <pbartok@novell.com> 
14878
14879         * X11DesktopColors.cs: Initial incomplete implementation
14880         * XplatUIX11.cs: Added call to initialize X11DesktopColors
14881
14882 2005-09-30  Peter Dennis Bartok  <pbartok@novell.com>
14883
14884         * Theme.cs: 
14885           - Switched Theme color names to match the names defined in 
14886             System.Drawing.KnownColors. Life's hard enough, no need to make 
14887             it harder.
14888           - Added setters to all theme color properties so themes can set
14889             their color schemes. The setters also propagate the color changes
14890             to System.Drawing.KnownColors via reflection
14891         * ControlPaint.cs,  Label.cs, TextControl.cs, ToolTip.cs, ThemeNice.cs,
14892           ComboBox.cs, MdiChildContext.cs, TextBoxBase.cs, DateTimePicker.cs
14893           DataGridColumnStyle.cs, MonthCalendar.cs, TreeView.cs: Updated to
14894           use the new, more logical theme color names
14895         * XplatUIWin32.cs: Updated the GetSysColorIndex enum to include new
14896           post-NT colors
14897         * ThemeWin32Classic.cs:
14898           - Removed code to set the old classic Windows colors. Instead it
14899             now relies on the colors returned by System.Drawing.KnownColors
14900             which will be either modern static colors (Unix) or colors
14901             read from the user's configuration (Win32)
14902           - Updated to use the new, more logical theme color names
14903           - Switched DataGrid drawing code to use only Theme colors instead of
14904             a mix of System.Drawing.KnownColors and Theme colors
14905           - DrawFrameControl(): Removed code that fills the button area, the
14906             fill would overwrite any previous fill done by a control. This
14907             fixes bug #75338 
14908           - Added DrawReversibleRectangle() stub
14909         * ScrollableControl.cs: Set visible state to false when scrollbars
14910           are removed (pdn fix)
14911         * XplatUI.cs, XplatUIOSX.cs, XplatUIDriver.cs: Added 
14912           DrawReversibleRectangle() method to allow drawing primitive 
14913           'rubber bands'
14914         * XplatUIX11.cs: Implemented DrawReversibleRectangle()
14915
14916 2005-09-30  Kornél Pál  <kornelpal@hotmail.com>
14917
14918         * ImageList.cs: Add(Icon): Create handle.
14919
14920 2005-09-30  Jordi Mas i Hernandez <jordi@ximian.com>
14921
14922         * ListView.cs:
14923         * ThemeWin32Classic.cs:
14924                 - Fixes detail mode
14925                 - Sets clippings
14926                 - Issues with drawing
14927
14928 2005-09-30  Kornél Pál  <kornelpal@hotmail.com>
14929
14930         * ImageList.cs: Moved RecreateHandle back to ImageList as event
14931           source has to be the ImageList.
14932
14933 2005-09-30  Kornél Pál  <kornelpal@hotmail.com>
14934
14935         * ImageList.cs: Add(Icon): Use Graphics.DrawIcon instead of Icon.ToBitmap.
14936
14937 2005-09-30  Kornél Pál  <kornelpal@hotmail.com>
14938
14939         * ImageList.cs: ReduceColorDepth: Clean up pointer operations.
14940
14941 2005-09-30  Kornél Pál  <kornelpal@hotmail.com>
14942
14943         * ImageList.cs: ImageCollection: Removed owner field as it is no more used.
14944
14945 2005-09-29  Jonathan Chambers <jonathan.chambers@ansys.com>
14946         * GridItem.cs: Fixed TODOs
14947         * GridItemCollection.cs: Added ICollection interface
14948
14949 2005-09-30  Kornél Pál  <kornelpal@hotmail.com>
14950
14951         * ImageList.cs: Resize icons when needed.
14952
14953 2005-09-29  Jordi Mas i Hernandez <jordi@ximian.com>
14954
14955         * ListViewItem.cs
14956                 - Fixes GetBounds and returns on screen rects
14957         * ListView.cs:
14958                 - Fixes vertical and horzintal scrolling of items
14959         * ThemeWin32Classic.cs:
14960                 - Fixes drawing
14961                 
14962 2005-09-29  Raja R Harinath  <harinath@gmail.com>
14963
14964         * ImageList.cs (ImageStream) [NET_2_0]: Reflect re-factoring.
14965
14966 2005-09-29  Kornél Pál  <kornelpal@hotmail.com>
14967
14968         * ImageList.cs: Added comments about handle creation. Moved Handle,
14969           HandleCreated and OnRecreateHandle implementations to ImageCollection.
14970           Handle is created in Add methods.
14971
14972 2005-09-28  Jordi Mas i Hernandez <jordi@ximian.com>
14973          
14974         * DataGridDrawingLogic.cs: 
14975                 - Takes rows into account on Colum calculations
14976                 - Returns the column when clickig
14977         * DataGrid.cs:
14978                 - Fixes default HitTestInfo values
14979                 - Fixes HitTestInfo.ToString
14980                 - Fixes ResetBackColor          
14981         
14982 2005-09-28  Jackson Harper  <jackson@ximian.com>
14983
14984         * MdiChildContext.cs: Obey rules for fixed sized windows (no
14985         sizing or cursor changes). Also added some temp code to draw the
14986         titlebars text (Makes dev a little easier).
14987
14988 2005-09-28  Kornél Pál  <kornelpal@hotmail.com>
14989
14990         * ImageList.cs: AddStrip: Throw ArgumentException when Image is not a Bitmap.
14991
14992 2005-09-28  Jordi Mas i Hernandez <jordi@ximian.com>
14993          
14994         * ListBox.cs: Fixes bug 76253
14995
14996 2005-09-28  Kornél Pál  <kornelpal@hotmail.com>
14997
14998         * ImageList.cs: Added comments about the current implementation. Added
14999           ReduceColorDepth, IndexedColorDepths and GetNearestColor to can use
15000           Format32bppArgb to preserve transparency and can use Graphics.FromImage
15001           while using the specified ColorDepth. ReduceColorDepth uses unsafe code
15002           with Bitmap.LockBits for better performance. Revised the whole file to
15003           match MS.NET behaviour and provide better performance. Non-public
15004           interface members are calling public members even when they throw
15005           NotSupportedException for better maintainability. Moved ColorDepth,
15006           ImageSize, ImageStream and TransparentColor implementations to
15007           ImageCollection for better performance as these properties are not used
15008           by ImageList.
15009         * ImageListStreamer.cs: Added a new internal constructor that takes an
15010           ImageList.ImageCollection and serializes Images based on
15011           ImageCollection.ToArray(). Renamed ImageColorDepth to ColorDepth to
15012           match ImageList property name.
15013
15014 2005-09-28  Kazuki Oikawa <kazuki@panicode.com>
15015
15016         * ListBox.cs: Fixes IndexFromPoint for last item
15017
15018 2005-09-27  Jackson Harper  <jackson@ximian.com>
15019
15020         * Form.cs: Set the position of new mdi children correctly.
15021
15022 2005-09-27  Jackson Harper  <jackson@ximian.com>
15023
15024         * MdiClient.cs: New mdi children need to be added to the back of
15025         the controls collection so the zorder is set correctly. Also add a
15026         count of all the child windows that have been created.
15027
15028 2005-09-27  Jackson Harper  <jackson@ximian.com>
15029
15030         * Form.cs (CreateParams): Setup MDI forms correctly.
15031
15032 2005-09-27  Jackson Harper  <jackson@ximian.com>
15033
15034         * MdiChildContext.cs:
15035         * MonthCalendar.cs:
15036         * UpDownBase.cs:
15037         * ListBox.cs:
15038         * ListView.cs:
15039         * TextBoxBase.cs:
15040         * TreeView.cs:
15041         * ScrollableControl.cs:
15042         * ComboBox.cs: Add implicit controls using the new implict control
15043         functionality in ControlCollection. Also try to block multiple
15044         control add in a suspend/resume layout to save some cycles.
15045         
15046 2005-09-27  Jackson Harper  <jackson@ximian.com>
15047
15048         * Control.cs: Add functionality to the controls collection to add
15049         'implicit controls' these are controls that are created by the
15050         containing control but should not be exposed to the user. Such as
15051         scrollbars in the treeview.
15052         * Form.cs: The list var of the ControlsCollection is no longer
15053         available because of the potential of implicit controls getting
15054         ignored by someone accessing the list directly.
15055
15056 2005-09-26  Peter Dennis Bartok  <pbartok@novell.com>
15057
15058         * Control.cs: Fixed SetChildIndex; it no longer causes a child to
15059           loose it's parent. (Fixed bug introduced in r49103 when we added
15060           setting the child parent to null on Remove)
15061
15062 2005-09-26  Gert Driesen  <drieseng@users.sourceforge.net>
15063
15064         * DataGridBoolColumn.cs: Marked CheckState private to fix public API.
15065         * Splitter.cs: Added missing attributes for BorderStyle property.
15066         * TextBoxBase.cs: Marked Calculate* methods internal.
15067         * TextBox.cs: Fixed DefaultValue for PasswordChar property to match
15068         MS.NET.
15069
15070 2005-09-26  Jordi Mas i Hernandez <jordi@ximian.com>
15071          
15072         * ListBox.cs: Fixes navigation to the last item in multicolumn lists
15073
15074 2005-09-25  Jackson Harper  <jackson@ximian.com>
15075
15076         * TreeView.cs: Update the node bounds correctly regardless of
15077         whether the node is visible.
15078
15079 2005-09-25  Jackson Harper  <jackson@ximian.com>
15080
15081         * ImageList.cs: Don't dispose the image after it is added to the
15082         image list. Only reformat images that need to be resized.
15083
15084 2005-09-25  Jackson Harper  <jackson@ximian.com>
15085
15086         * ImageList.cs: Don't set the format when changing the image.
15087
15088 2005-09-25  Jackson Harper  <jackson@ximian.com>
15089
15090         * TreeView.cs: We can't just assume the node has a font. Use the
15091         treeviews font if no node font is available.
15092
15093 2005-09-25  Jackson Harper  <jackson@ximian.com>
15094
15095         * TreeView.cs: Allow the scrollbars to be reset with negative
15096         values.
15097         - Don't add scrollbars to negative sized windows.
15098
15099 2005-09-23  Jackson Harper  <jackson@ximian.com>
15100
15101         * XplatUIX11.cs: Update to use Mono.Posix.Native instead of plain
15102         old Mono.Posix. Also remove some stray code that shouldn't have
15103         been committed.
15104
15105 2005-09-23  Jackson Harper  <jackson@ximian.com>
15106
15107         * TreeView.cs: Attempt at proper sizing of the horizontal
15108         scrollbar. Also don't resize the scrollbars unless they are
15109         visible.
15110
15111 2005-09-23  Jackson Harper  <jackson@ximian.com>
15112
15113         * TreeView.cs: We don't need to expand the invalid area when the
15114         selection changes, as this is all drawn in the node's bounding
15115         box. The area needs to be expanded (previous typo was contracting
15116         it) when the focus rect moves.
15117
15118 2005-09-23  Jackson Harper  <jackson@ximian.com>
15119
15120         * TreeView.cs: Display the selection box under the correct
15121         circumstances. We were rendering white text with no selection box
15122         before.
15123
15124 2005-09-23  Peter Dennis Bartok  <pbartok@novell.com>
15125
15126         * TextControl.cs(Split): Now updates selection start/end if it points 
15127           into a line that's being split. Fixes a FIXME and bug #75258
15128
15129 2005-09-23  Jackson Harper  <jackson@ximian.com>
15130
15131         * Binding.cs:
15132         * ListControl.cs: Don't use the path when retrieving binding
15133         managers from the binding context. My bat sense tells me that the
15134         path is only used on insertion.
15135
15136 2005-09-22  Jackson Harper  <jackson@ximian.com>
15137
15138         * Splitter.cs: Set the cursor an easier way. (Thanks peter).
15139
15140 2005-09-22  Jackson Harper  <jackson@ximian.com>
15141
15142         * Splitter.cs: There are special cursors used for splitting.
15143         * XplatUIX11.cs: The VSplit and HSplit cursors were backwards.
15144
15145 2005-09-22  Jackson Harper  <jackson@ximian.com>
15146
15147         * Splitter.cs: Change the cursor appropriately when the splitter
15148         is moused over, so the user actually knows there is a splitter
15149         there.
15150
15151 2005-09-22 Hisham Mardam Bey <hisham.mardambey@gmail.com>
15152
15153        * Label.cs : Fix ToString method to give same output as MS.NET
15154
15155 2005-09-22  Jackson Harper  <jackson@ximian.com>
15156
15157         * TreeView.cs: Create the scrollbars when the handle is created
15158         and add them right away, just make them invisble. Also account for
15159         the window being shrunk vertically to the point that the vert
15160         scrollbar needs to be added.
15161         - Remove some 0.5 adjustments to get around anti aliasing issues.
15162         
15163 2005-09-22  Jordi Mas i Hernandez <jordi@ximian.com>
15164          
15165         * MainMenu.cs: Fixes default value
15166         * MenuItem.cs: Fixes default value
15167
15168 2005-09-22  Kazuki Oikawa  <kazuki@panicode.com>
15169
15170         * AsyncMethodResult.cs: Fixes Control.Invoke is blocked infinitely.
15171
15172 2005-09-21  Jackson Harper  <jackson@ximian.com>
15173
15174         * Control.cs: Don't try to set the border style on the window if
15175         it hasn't been created. When the window is created the border
15176         style will be used.
15177
15178 2005-09-21  Peter Dennis Bartok  <pbartok@novell.com>
15179
15180         * Control.cs (Update): Don't call XplatUI if we don't have a
15181           window handle yet
15182
15183 2005-09-21  Peter Dennis Bartok  <pbartok@novell.com> 
15184
15185         * ContainerControl.cs: Instead of throwing an exception, print
15186           a one-time warning about Validate not being implemented
15187         * XplatUIWin32.cs: Removed debug output
15188
15189 2005-09-21  Peter Dennis Bartok  <pbartok@novell.com> 
15190
15191         * Control.cs: Only set XplatUI background if we expect the windowing
15192           system to handle the background. This stops controls that draw their
15193           own background from flickering
15194
15195         * XplatUIX11.cs: Support custom visuals and colormaps for window 
15196           creation. This allows, amongst other things, using MWF X11 windows 
15197           with OpenGL.
15198
15199 2005-09-21  Peter Dennis Bartok  <pbartok@novell.com>
15200
15201         * OpenFileDialog.cs, ContentsResizedEventArgs.cs, LibSupport.cs, GridItem.cs,
15202           CursorConverter.cs, SplitterEventHandler.cs, PropertyGridTextBox.cs,
15203           GridTablesFactory.cs, MethodInvoker.cs, AccessibleEvents.cs,
15204           SplitterEventArgs.cs, XplatUI.cs, Mime.cs, PropertySort.cs,
15205           TreeViewCancelEventHandler.cs, Form.cs, PropertyGridCommands.cs,
15206           IDataGridEditingService.cs, DateBoldEventHandler.cs, Label.cs,
15207           KeyboardLayouts.cs, TextControl.cs, ProgressBar.cs, ToolTip.cs,
15208           RadioButton.cs, OSFeature.cs, LinkLabel.cs, ColorDialog.cs,
15209           ThemeNice.cs, ErrorIconAlignment.cs, TreeNode.cs, MimeGenerated.cs,
15210           ComboBox.cs, DataGridTextBoxColumn.cs, ArrangeStartingPosition.cs,
15211           GridColumnStylesCollection.cs, 
15212           IDataGridColumnStyleEditingNotificationService.cs,
15213           PropertyGrid.cs, IFeatureSupport.cs, ICommandExecutor.cs,
15214           MdiLayout.cs, GridEntry.cs, ControlBindingsCollection.cs,
15215           GridTableStylesCollection.cs, TreeViewCancelEventArgs.cs, 
15216           TreeNodeCollection.cs, AmbientProperties.cs, 
15217           RichTextBoxSelectionAttribute.cs, RichTextBoxSelectionTypes.cs,
15218           DataObject.cs, ErrorProvider.cs, Splitter.cs,
15219           DataGridLineStyle.cs, Shortcut.cs, Control.cs,
15220           FontDialog.cs, SecurityIDType.cs, GridItemType.cs,
15221           BindingMemberInfo.cs, DataGridCell.cs, MdiChildContext.cs,
15222           IRootGridEntry.cs, PropertyGridView.cs, DataGridParentRowsLabelStyle.cs,
15223           FolderBrowserDialog.cs, OpacityConverter.cs, HelpProvider.cs,
15224           IComponentEditorPageSite.cs, DataGridTableStyle.cs, NavigateEventArgs.cs,
15225           NotifyIcon.cs, ContentsResizedEventHandler.cs, MenuItem.cs,
15226           PropertyTabChangedEventHandler.cs, TextBoxBase.cs, OpenTreeNodeEnumerator.cs,
15227           SelectionMode.cs, TextBox.cs, ListBindingConverter.cs,
15228           FileDialog.cs, KeysConverter.cs, DomainUpDown.cs,
15229           DataFormats.cs, SaveFileDialog.cs, GridItemCollection.cs,
15230           ArrangeDirection.cs, FeatureSupport.cs, SelectionRangeConverter.cs,
15231           RichTextBoxScrollBars.cs, NodeLabelEditEventHandler.cs, TreeNodeConverter.cs,
15232           MimeIcon.cs, X11Structs.cs, PropertyGridEntry.cs,
15233           ImageList.cs, ThemeWin32Classic.cs, X11Keyboard.cs,
15234           CheckedListBox.cs, HelpNavigator.cs, DateTimePickerFormat.cs,
15235           MdiClient.cs, DataGridDrawingLogic.cs, DataGridBoolColumn.cs,
15236           NodeLabelEditEventArgs.cs, Screen.cs, PropertyManager.cs,
15237           ComponentModel.cs, PropertiesTab.cs, CurrencyManager.cs,
15238           SizeGrip.cs, DateBoldEventArgs.cs, X11Dnd.cs, Panel.cs,
15239           Hwnd.cs, OSXStructs.cs, DrawMode.cs, XplatUIDriver.cs,
15240           RichTextBox.cs, PropertyTabChangedEventArgs.cs, CommonDialog.cs,
15241           DataGrid.cs, XplatUIX11.cs, RichTextBoxStreamType.cs, Win32DnD.cs,
15242           ErrorBlinkStyle.cs, TreeViewEventHandler.cs,
15243           PropertyValueChangedEventHandler.cs, IFileReaderService.cs,
15244           DataGridTextBox.cs, SelectedGridItemChangedEventArgs.cs, ScrollBar.cs,
15245           ListBox.cs, TreeViewAction.cs, Help.cs, TrackBar.cs,
15246           AxHost.cs, PropertyValueChangedEventArgs.cs, XplatUIOSX.cs,
15247           RichTextBoxFinds.cs, UpDownEventArgs.cs, Cursors.cs,
15248           CategoryGridEntry.cs, RichTextBoxWordPunctuations.cs, DataGridColumnStyle.cs,
15249           SelectedGridItemChangedEventHandler.cs, DateTimePicker.cs, NavigateEventHandler.cs,
15250           Clipboard.cs, UpDownEventHandler.cs, MonthCalendar.cs,
15251           SendKeys.cs, DataGridPreferredColumnWidthTypeConverter.cs, TreeView.cs,
15252           ThreadExceptionDialog.cs, ImageListConverter.cs, XplatUIWin32.cs,
15253           TreeViewEventArgs.cs: Fixed whitespace and set eol-style:native attribute
15254
15255 2005-09-21  Jackson Harper  <jackson@ximian.com>
15256
15257         * TreeNode.cs: Call Before/After Expand not Collapse when
15258         expanding.
15259
15260 2005-09-20  Jackson Harper  <jackson@ximian.com>
15261         
15262         * XplatUIX11.cs: Use the more hand looking hand (in most themes).
15263
15264 2005-09-16  Jordi Mas i Hernandez <jordi@ximian.com>
15265          
15266         * ListViewItem.cs:
15267                 - Fixes bug 76120
15268                 - Fixes proper storing of subitems
15269                 - Fixes not updated items
15270
15271 2005-09-20  Peter Dennis Bartok  <pbartok@novell.com>
15272
15273         * Control.cs, TextBoxBase.cs, TextControl.cs: Don't do certain
15274           things if our window handle isn't created yet. Also disabled 
15275           debug for TextBoxBase
15276
15277 2005-09-20  Peter Dennis Bartok  <pbartok@novell.com> 
15278
15279         * MenuAPI.cs: Remove filtering of events to allow menu usage
15280
15281 2005-09-20  Miguel de Icaza  <miguel@novell.com>
15282
15283         * Cursor.cs: Allow null to be passed to Cursor.Current.
15284
15285 2005-09-20  Alexander Olk  <alex.olk@googlemail.com>
15286
15287         * ThemeWin32Classic.cs:
15288           - Change some private methods/fields to protected virtual so that 
15289             they can be accessed and overriden in derived classes
15290           - First refactoring of some methods. Derived themes now don't 
15291             need to duplicate the complete code from ThemeWin32Classic
15292         * ThemeNice.cs:
15293           - Added nice StatusBar
15294           - Derive from ThemeWin32Classic and not Theme
15295           - Removed duplicate ThemeWin32Classic code
15296
15297 2005-09-20  Miguel de Icaza  <miguel@novell.com>
15298
15299         * Control.cs (ControlCollection.Add): If the value null is passed
15300         the control is ignored. 
15301
15302         Optimize this loop.
15303
15304 2005-09-19  Peter Dennis Bartok  <pbartok@novell.com> 
15305
15306         * MenuAPI.cs: Replaced Application.Run() with a loop that tracks
15307           PostQuitMessage state.
15308         * XplatUIWin32.cs: Removed bogus PostQuitMessage P/Invoke with HWND arg
15309
15310 2005-09-19  Peter Dennis Bartok  <pbartok@novell.com>
15311
15312         * Application.cs: Our constructor will never get called, move 
15313           initialization to fields; fixes bug #75933
15314
15315 2005-09-19 Hisham Mardam Bey <hisham.mardambey@gmail.com>
15316
15317         * FileDialog.cs :
15318                 - Allow files to be selected properly using file name
15319                 combo box.
15320                 - Add ability to change diretory (absolute / relative)
15321                 using file name combo box.
15322
15323 2005-09-16  Jordi Mas i Hernandez <jordi@ximian.com>
15324          
15325         * ListBox.cs: 
15326                 - Fixes Multicolumn listboxes item wrong calculations
15327                 - Allows to click when only one item is in the listbox
15328                 - Fixes crash when no items using keyboard navigation
15329
15330 2005-09-16  Alexander Olk  <alex.olk@googlemail.com>
15331
15332         * ComboBox.cs: Reverted almost everything from the latest patch which
15333           broke ComboBox
15334
15335 2005-09-16  Kazuki Oikawa <kazuki@panicode.com>
15336         
15337         * ToolTip.cs:
15338                 - Fixed #Mtd2 of ToolTipTest.RemoveToolTipTest.
15339         * ComboBox.cs:
15340                 - When DropDownStyle is Simple, it does not show scrollbar 
15341                 to the last item of the list.
15342                 - When DropDownStyle is Simple, it crashed when the list was 
15343                 scrolled down with the down cursor key.
15344                 - Fixed a bug that when DropDownStyle is DropDownList, the 
15345                 selected item was not shown.
15346                 - The position of the selected item was not preserved when 
15347                 the next dropdown happened.
15348         * ThemeWin32Classic.cs:
15349                 - Items were wrapped at the right end.
15350         * CheckedListBox.cs:
15351                 - Fixed Add method
15352         * ListBox.cs:
15353                 - Items should be fully shown.
15354                 - When resizing and vertical scrollbar disappeared, the item 
15355                 of index 0 should be on the top of the list.
15356                 - GetItemRectangle should consider the size of ver. scrollbar
15357         * StatusBar.cs:
15358                 - SizingGrip area should not be allocated when it is not 
15359                 displayed.
15360                 - Now it reflects MinWidth of the containing panel and 
15361                 fixed a crash that happens when its width becomes so small.
15362
15363 2005-09-13  Jordi Mas i Hernandez <jordi@ximian.com>
15364
15365         * CheckedListBox.cs: Fixes bug 76028
15366         * ListBox.cs: Fixes bug 76028
15367
15368 2005-09-13  Jordi Mas i Hernandez <jordi@ximian.com>
15369
15370         * ThemeWin32Classic.cs: Sets clipping on DataGridPaintRowsHeaders
15371         * DataGridDrawingLogic.cs: fixes issues with Datagrid drawing
15372
15373 2005-09-12  Jordi Mas i Hernandez <jordi@ximian.com>
15374
15375         * XplatUIX11.cs: fixes System.NullReferenceException in some situations
15376
15377 2005-09-09  Jonathan Chambers  <jonathan.chambers@ansys.com>
15378
15379         * IRootGridEntry.cs: Changed namespace to PropertyGridInternal 
15380
15381 2005-09-09  Jonathan Chambers  <jonathan.chambers@ansys.com>
15382
15383         * IRootGridEntry.cs: Added
15384         * PropertyGridCommands.cs: Added
15385         * PropertiesTab.cs: Added missing methods and property
15386         * PropertyGridView.cs: Made class internal
15387         * PropertyGridTextBox.cs: Made class internal
15388
15389 2005-09-09  Alexander Olk  <alex.olk@googlemail.com>
15390
15391         * MimeIcon.cs: Try to check some other environment variables
15392           if "DESKTOP_SESSION" returns "default"
15393
15394 2005-09-09  Alexander Olk  <alex.olk@googlemail.com>
15395
15396         * ThemeNice.cs: Corrected background colors (e.g. menus)
15397         * ColorDialog.cs: Use correct background colors for controls
15398
15399 2005-09-09  Alexander Olk  <alex.olk@googlemail.com>
15400
15401         * ThemeNice.cs: Merged r49535 from ThemeWin32Classic
15402
15403 2005-09-08  Peter Dennis Bartok  <pbartok@novell.com>
15404
15405         * RichTextBox.cs: Added initial implementation
15406         * lang.cs: Removed. Was accidentally checked in long time ago
15407         * TODO: Removed. Contents were obsolete
15408
15409 2005-09-06  Jonathan Chambers  <jonathan.chambers@ansys.com>
15410                                                                                 
15411         * PropertiesTab.cs : Added
15412
15413 2005-09-06  Jonathan Chambers  <jonathan.chambers@ansys.com>
15414                                                                                 
15415         * PropertyGrid.cs : Update
15416         * PropertyGridView.cs : Update
15417         * System.Windows.Forms.resx : Added images and strings
15418
15419 2005-09-06  Peter Dennis Bartok  <pbartok@novell.com> 
15420
15421         * ThemeNice.cs: Do not dispose Pens retrieved from ResPool
15422  
15423 2005-09-06  Peter Dennis Bartok  <pbartok@novell.com>
15424
15425         * XplatUIX11.cs: Force a flush after Ungrab; if case the app enters
15426           a busy loop right after the Ungrab the X11 display is otherwise 
15427           blocked
15428
15429 2005-09-06  Jordi Mas i Hernandez <jordi@ximian.com>
15430
15431         * ThemeWin32Classic.cs: Optimise the use of clipping
15432
15433 2005-09-05  Jordi Mas i Hernandez <jordi@ximian.com>
15434
15435         * DataGrid.cs: fixes recursion bug
15436
15437 2005-09-03  Alexander Olk  <alex.olk@googlemail.com>
15438
15439         * ThemeNice.cs: 
15440           - Draw RadioButton and CheckBox Buttons with DrawButtonBase
15441           - Cleanup
15442
15443 2005-09-02  Alexander Olk  <alex.olk@googlemail.com>
15444
15445         * ThemeNice.cs: Draw nice ProgressBars
15446
15447 2005-09-01  Miguel de Icaza  <miguel@novell.com>
15448
15449         * VScrollBar.cs: Another buglet found by Aaron's tool. 
15450
15451         * ProgressBar.cs: Fix three recursive bugs found by Aaron Tomb's
15452         bug finder.
15453
15454 2005-08-30  Alexander Olk  <alex.olk@googlemail.com>
15455
15456         * ThemeNice.cs:
15457           - Added nicer menu drawing
15458           - Updated DrawTab
15459           - some refactoring
15460
15461 2005-08-30  Peter Dennis Bartok  <pbartok@novell.com>
15462
15463         * CreateParams.cs (ToString): Made output match MS
15464         * Control.cs (Text): Don't set Text or Focus via XplatUI unless 
15465             handle is already created (to avoid forcing window creation)
15466         * XplatUIX11.cs: Set window text to caption after creating window,
15467           in case Text was set before window was created
15468         * Form.cs: Use this.Text instead of a static string as caption
15469
15470 2005-08-30  Peter Dennis Bartok  <pbartok@novell.com> 
15471
15472         * NotifyIcon.cs: Don't set the window to visible; this screws
15473           up Win32 (causes WM_NCPAINT to be sent on Win32, which calls
15474           OnPaint without a bitmap)
15475         * XplatUIX11.cs: Removed Visible optimization in AddExpose; doesn't 
15476           happen very often anyway; we could add the check to the WM_PAINT 
15477           event generation code
15478
15479 2005-08-30  Peter Dennis Bartok  <pbartok@novell.com>
15480
15481         * NotifyIcon.cs: Fill the icon area with a background color, to 
15482           avoid 'residue' when transparent icons are drawn
15483         * XplatUIX11.cs:
15484           - Handle whole_window == client_window when destroying windows
15485           - SystrayAdd(): Set client_window to whole_window value to
15486             get mouse and other events passed to NotifyIcon
15487
15488 2005-08-30  Peter Dennis Bartok  <pbartok@novell.com> 
15489
15490         * Form.cs: Set proper default for Opacity property
15491         * NotifyIcon.cs:
15492           - ShowSystray(): Don't bother creating telling the OS
15493             about the systray item if no icon is provided
15494           - Now handles WM_NCPAINT message to deal with whole/client window
15495             split
15496           - Create window as visible to not get caught by Expose optimization
15497         * Hwnd.cs: Removed debug message
15498         * ComboBox.cs, ScrollBar.cs, ListBox.cs, TrackBar.cs, TabControl.cs,
15499           StatusBar.cs, TreeView.cs, XplatUIOSX.cs, XplatUIWin32.cs: Switched 
15500             PaintEventStart/End to use new client argument
15501         * TextBoxBase.cs:
15502           - Commented out debug messages
15503           - Switched PaintEventStart/End to use new client argument
15504         * XplatUI.cs: Added client window bool to PaintEventStart()/
15505           PaintEventEnd() calls, to support drawing in non-client areas
15506         * XplatUIDriver.cs: 
15507           - Added client window bool to PaintEventStart()/PaintEventEnd() 
15508             calls, to support drawing in non-client areas
15509           - Added conditional compile to allow using MWF BeginInvoke 
15510             on MS runtime
15511         * XplatUIX11.cs:
15512           - Added some conditional debug output
15513           - Fixed SystrayAdd() method to support new (for SystrayAdd, anyway)
15514             whole/client window split
15515           - Implemented handling of client argument to PaintEventStart()/End()
15516         * Control.cs:
15517           - Throw exception if BeginInvoke() is called and the window handle
15518             or one of the window's parent handles is not created
15519           - Added conditional compile to allow using MWF BeginInvoke on
15520             MS runtime
15521           - get_Parent(): Only sets parent if handle is created. This avoids
15522             forcing window handle creation when parent is set.
15523           - Now fires Layout and Parent changed events in proper order
15524           - Switched to use Handle instead of window.Handle for Z-Order setting,
15525             the get_Parent() patch above causes us to possibly get null for 'window'
15526           - Implemented handling of client argument to PaintEventStart()/End()
15527           - Now reports back to windows that WM_SETCURSOR was handled (to avoid
15528             default handling)
15529           - Now sends a Refresh() to all child windows when Refresh() is called
15530
15531 2005-08-29  Peter Dennis Bartok  <pbartok@novell.com> 
15532
15533         * Form.cs: Added (non-functional) Opacity property
15534         * XplatUIWin32.cs (SystrayAdd): Removed bogus line of code
15535
15536 2005-08-29  Alexander Olk  <xenomorph2@onlinehome.de>
15537         * ThemeNice.cs: New theme for MWF, based on ThemWin32Classic
15538           use export MONO_THEME=nice to activate it.
15539           Currently supported controls:
15540           - Button
15541           - ComboBox
15542           - ScrollBar
15543           - TabControl (TabAlignment.Top only, other will follow)
15544         * ThemeEngine.cs: Add theme nice
15545         * ButtonBase.cs: Redraw button on MouseEnter and MouseLeave everytime,
15546           if enabled
15547
15548 2005-08-25  Jonathan Chambers  <jonathan.chambers@ansys.com> 
15549
15550         * Splitter.cs: Resize docked control and its neighbor.
15551
15552 2005-08-24  Rafael Teixeira <rafaelteixeirabr@hotmail.com> 
15553         -- Making Windows with Menus layout correctly --
15554         * Form.cs : The first leg of the fix
15555                 Menu setter - adjust Client Size as needed to make space for the menu
15556                 SetClientSizeCore - doesn't call base version to be able to pass the 
15557                         menu handle to XplatUI.CalculateWindowRect
15558         * Hwnd.cs: Fix for menu_height, now gets from MenuAPI.MENU
15559         * XplatUIX11.cs: The critical second leg of the fix
15560                 GetWindowPos needs to use a recalculated client_rect
15561                 so that resizing the window doesn't break layout of child controls. 
15562                 Also a more complete rule to avoid X Server roundtrips in SetWindowPos
15563                 Lots of \t\n killed
15564
15565 2005-08-23  Peter Dennis Bartok  <pbartok@novell.com> 
15566
15567         * Label.cs: Now properly recalculates width and height on Font and Text
15568           changes if AutoSize is set
15569
15570 2005-08-19  Rafael Teixeira <rafaelteixeirabr@hotmail.com> 
15571         * TreeView.cs : Revamped drawing logic, and support for FullRowSelect
15572
15573 2005-08-19  Jordi Mas i Hernandez <jordi@ximian.com>
15574
15575         * ImageList.cs: Makes ToString method compatible with MS
15576
15577 2005-08-18  Jordi Mas i Hernandez <jordi@ximian.com>
15578
15579         * MenuAPI.cs: fixes bug 75716
15580
15581 2005-08-11 Umadevi S <sumadevi@novell.com>
15582         * Control.cs: Fixed Remove & RemoveAt to make the parent of the control null.
15583
15584 2005-08-11 Umadevi S <sumadevi@novell.com>
15585         * Contorl.cs: Fixed ResetRightToLeft and ResetImeMode to work correctly
15586
15587 2005-08-10  Umadevi S <sumadevi@novell.com>
15588         * CheckedListBox.cs: Fixed event firing on Adding to the CheckedListBox
15589
15590 2005-08-07  Jordi Mas i Hernandez <jordi@ximian.com>
15591
15592         * Menu.cs: fixes bug 75700
15593         * MenuAPI.cs: fixes navigation issues
15594
15595 2005-08-09  Umadevi S <sumadevi@novell.com>
15596         * CheckedListBox.cs - simple fix for GetItemChecked.
15597
15598 2005-08-08  Jordi Mas i Hernandez <jordi@ximian.com>
15599
15600         * ComboBox.cs: Serveral fixes
15601         * ListBox.cs: Serveral fixes
15602
15603 2005-08-05  Jordi Mas i Hernandez <jordi@ximian.com>
15604
15605         * ComboBox.cs: Fixes FindString methods and GetItemHeight
15606         * ListBox.cs: Fixes FindString methods
15607
15608 2005-08-05  Jordi Mas i Hernandez <jordi@ximian.com>
15609
15610         * DataGrid.cs: fixes bugs exposed by new tests
15611
15612 2005-08-04  Peter Dennis Bartok  <pbartok@novell.com> 
15613
15614         * Mime.cs: Compile Mono assembly references only if compiling
15615           with Mono (Allows to build with VS.Net again)
15616
15617 2005-07-28  Marek Safar  <marek.safar@seznam.cz>
15618
15619         * Control.cs (PaintControlBackground): Draw background image
15620         corrrectly.
15621         (CheckForIllegalCrossThreadCalls): Stubbed.
15622         
15623         * Form.cs (OnCreateControl): Center when should be centered.
15624         
15625         * ThemeWin32Classic.cs (DrawPictureBox): Pass size.
15626
15627 2005-07-19  Jordi Mas i Hernandez <jordi@ximian.com>
15628
15629         * Binding.cs: Binding to properties should be case unsensitive
15630
15631 2005-07-18 vlindos@nucleusys.com
15632
15633         * DataGrid.cs: fixes setmember order
15634
15635 2005-07-07  Alexander Olk  <xenomorph2@onlinehome.de>
15636
15637         * MimeIcon.cs: added MimeIcon stuff (MimeIconEngine)
15638         * FileDialog.cs: FileDialog is now resizable and uses the new
15639           MimeIconEngine
15640
15641 2005-07-06  Jordi Mas i Hernandez <jordi@ximian.com>
15642
15643         * DataGridTextBoxColumn.cs: default value
15644         * GridColumnStylesCollection.cs: fixes event firing, checking MappingName
15645         * GridTableStylesCollection.cs: fixes checking MappingName
15646         * DataGridDrawingLogic.cs: fixes drawing logic issues
15647         * DataSourceHelper.cs: rewritten to make compatible with more data sources
15648         * DataGrid.cs: fixes    
15649
15650 2005-07-06  Alexander Olk  <xenomorph2@onlinehome.de>
15651
15652         * MimeGenerated.cs: Use case sensitive comparer for
15653           NameValueCollections
15654
15655 2005-07-01  Jordi Mas i Hernandez <jordi@ximian.com>
15656
15657         * DataGridTextBoxColumn.cs: bug fixes, code refactoring 
15658         * ThemeWin32Classic.cs: bug fixes, code refactoring
15659         * DataGridDrawingLogic.cs:  bug fixes, code refactoring
15660         * DataGrid.cs: bug fixes, code refactoring
15661         * DataGridTextBox.cs: bug fixes, code refactoring
15662         * DataGridColumnStyle.cs:  bug fixes, code refactoring
15663         * Theme.cs:  bug fixes, code refactoring
15664
15665 2005-07-01  Peter Bartok  <pbartok@novell.com> 
15666
15667         * TextControl.cs: Quick fix for the reported crash on ColorDialog
15668           and other text box usage
15669
15670 2005-07-01  Jackson Harper  <jackson@ximian.com>
15671
15672         * TabControl.cs: Make sure the bottom of the tab covers the pages
15673         border.
15674
15675 2005-06-30  Peter Bartok  <pbartok@novell.com> 
15676
15677         * Form.cs (ShowDialog): Assign owner of the dialog
15678         * TextBoxBase.cs: Always refresh caret size when deleting, caret
15679           might have been moved to a tag with different height
15680
15681 2005-06-30  Jackson Harper  <jackson@ximian.com>
15682
15683         * Form.cs: Don't create an infinite loop when setting focus
15684         * MenuItem.cs: Don't dirty the parents if we don't have any
15685
15686 2005-06-29  Ben Maurer  <bmaurer@ximian.com>
15687
15688         * LibSupport.cs: Rename
15689
15690 2005-06-29  Peter Bartok  <pbartok@novell.com>
15691
15692         * TextBoxBase.cs: Re-align caret after deleting a character
15693         * TextControl.cs:
15694           - DeleteChars(): Ensure that tag covers the provided position
15695           - StreamLine(): Drop reference for dropped tag
15696
15697 2005-06-29  Peter Bartok  <pbartok@novell.com> 
15698
15699         * TextControl.cs: 
15700           - Selections now work properly, anchoring at the initial location
15701             and properly extending in either direction (SetSelectionToCaret(),
15702             SetSelectionStart() and SetSelectionEnd())
15703           - No longer redraws the whole control on selection change, now
15704             calculates delta between previous and new selection and only
15705             invalidates/redraws that area
15706           - Fixed FindPos() math off-by-one errors
15707           - Changed DeleteChars() to verify the provided tag covers the
15708             provided position, selections may have a tag that doesn't cover
15709             the position if the selection is at a tag border
15710           - Fixed off-by-one errors in DeleteChars()
15711           - Added missing streamlining check in DeleteChars() to remove
15712             zero-length tags
15713           - Implemented Invalidate() method, now properly calculates exposures
15714             between two given lines/positions
15715           - Implemented SetSelection()
15716           - Obsoleted and removed FixupSelection()
15717           - Improved RecalculateDocument() logic, removing code duplication
15718
15719 2005-06-29 Gonzalo Paniagua Javier <gonzalo@ximian.com>
15720
15721         * LibSupport.cs: changes to match different input/output arguments.
15722
15723 2005-06-29 Gonzalo Paniagua Javier <gonzalo@ximian.com>
15724
15725         * LibSupport.cs: added libsupport.so init routine.
15726
15727 2005-06-29  Jordi Mas i Hernandez <jordi@ximian.com>
15728         
15729         * ControlBindingsCollection.cs
15730                 - Throws an exception on null datasource when adding
15731                 - Checks for duplicated bindings when adding
15732
15733 2005-06-28  Jackson Harper  <jackson@ximian.com>
15734
15735         * TreeView.cs (OnKeyDown): Support left and right properly
15736         (navigates as well as expanding and collapsing.
15737         - Add support for Multiply, this expands all the selected nodes
15738         children.
15739         - Fix some tabbing.
15740
15741 2005-06-28  Jackson Harper  <jackson@ximian.com>
15742
15743         * TreeView.cs: Implement keyboard navigation, currently supports,
15744         LEFT, RIGHT, UP, DOWN, PGUP, PGDOWN, HOME, END, ADD, SUBTRACT. Add
15745         support for toggling checkboxes with the space bar.
15746
15747 2005-06-28  Jackson Harper  <jackson@ximian.com>
15748
15749         * OpenTreeNodeEnumerator.cs: Don't move past the begining of the
15750         tree.
15751
15752 2005-06-28  Jackson Harper  <jackson@ximian.com>
15753
15754         * TreeView.cs: Add missing event.
15755
15756 2005-06-27  Peter Bartok  <pbartok@novell.com> 
15757
15758         * TextControl.cs:
15759           - Made line ending size configurable (now allows for counting 
15760             lineendings as \n or \r\n)
15761           - Added margin to viewport to keep caret visible on right side
15762           - Fixed translation routines for line/pos to documentpos to consider
15763             cr/lf when counting (Fixes RichTextBox.SelectionFont issues)
15764           - Fixed some line-endings to be unix style
15765           - Fixed Document.FormatText to perform it's calculations 1-based
15766           - Added descriptions for a few methods that might otherwise get 
15767             used wrong
15768           - Added NOTE section with some basic conventions to remember at 
15769             the top of the file
15770           - Major fixup for RichTextBox selection drawing:
15771             * Fixed crashes when multiple tags on a single line were selected
15772             * fixed selection box drawing not overlaying text
15773             * fixed bogus offset calculation for tags not starting at index 1
15774             * Switched behaviour from using multiple Substrings of a 
15775               StringBuilder.ToString() to using multiple 
15776               StringBuilder.ToString(start, length) statements, hoping this is
15777               faster (kept original version commented out in the code, in case
15778               original version was faster)
15779         * TextBox.cs (set_TextAlignment): TextBox always needs to wrap if 
15780           alignment != Left
15781         * TextBoxBase.cs (CalculateDocument): Made protected so RichTextBox can
15782           call it as well
15783
15784 2005-06-27  Jackson Harper  <jackson@ximian.com>
15785
15786         * TabControl.cs: Move to the left and right with the arrow
15787         keys. These keys don't cycle beyond first and last like
15788         tab. Refresh all the tabs when scrolling them to the left or
15789         right.
15790
15791 2005-06-27  Jackson Harper  <jackson@ximian.com>
15792
15793         * TabControl.cs:
15794           - ToString: Added method
15795           - CreateParams: Remove TODO and comment
15796           - OnKeyDown: Cycle through bounds properly.
15797           - SelectedIndex: Scroll to the right or left if we need to
15798           display the newly selected tab.
15799
15800 2005-06-23  Jackson Harper  <jackson@ximian.com>
15801
15802         * TabControl.cs: Stay in bounds when cycling. Make sure Handled is
15803         set.
15804
15805 2005-06-23  Jackson Harper  <jackson@ximian.com>
15806
15807         * TabControl.cs: Keyboard handling. We now support CTRL-TAB,
15808         CTRL-SHIFT-TAB, and HOME, END are there any others?
15809
15810 2005-06-23  Jackson Harper  <jackson@ximian.com>
15811
15812         * XplatUIX11.cs: Get the modifier keys from the keyboard driver.
15813
15814 2005-06-22  Jordi Mas i Hernandez <jordi@ximian.com>
15815         
15816         * DataGridTextBoxColumn.cs: fixes and enhancements
15817         * ThemeWin32Classic.cs: fixes and enhancements
15818         * DataGridBoolColumn.cs:  fixes and enhancements
15819         * DataGridDrawingLogic.cs:  fixes and enhancements
15820         * CurrencyManager.cs: fixes and enhancements
15821         * DataGrid.cs: fixes and enhancements
15822         * DataGridColumnStyle.cs:  fixes and enhancements
15823
15824 2005-06-22  Jackson Harper  <jackson@ximian.com>
15825
15826         * TabControl.cs: Add some missing methods that just call into the
15827         base. Make the TabPageCollection's IList interface behave in the
15828         same manner as the MS implementation.
15829
15830 2005-06-22  Peter Bartok  <pbartok@novell.com> 
15831
15832         * TextControl.cs: Added sanity check
15833         * TextBoxBase.cs: 
15834           - Fixed wrapping behaviour, don't set wrap on single line controls
15835             (this fixes the breakage of colordialog introduced in an earlier
15836              checkin)
15837           - Added rudimentary support for autoscrolling right-aligned controls
15838             (still needs fixing, also, center alignment scroll is missing)
15839
15840 2005-06-22  Jordi Mas i Hernandez <jordi@ximian.com>
15841         
15842         * ScrollBar.cs: Fixes thumbpos on Maximum values
15843
15844 2005-06-21  Jonathan Chambers <jonathan.chambers@ansys.com>
15845         
15846         * PropertyGridView.cs: Pass context information to UITypeEditors 
15847
15848 2005-06-21  Peter Bartok  <pbartok@novell.com> 
15849
15850         * TextBoxBase.cs:
15851           - Now calling PositionCaret with absolute space coordinates
15852           - Enabled vertical scrolling
15853           - Better tracking of scrollbar changes, tied into WidthChange
15854             event
15855           - Improved cursor tracking
15856           - Removed debug output
15857         * TextControl.cs:
15858           - PositionCaret coordinates are now works in absolute space, not 
15859             the canvas
15860           - Improved tracking of document size
15861           - Added events for width and height changes
15862
15863 2005-06-21  Peter Bartok  <pbartok@novell.com>
15864
15865         * Form.cs: Set focus to active control when form is activated
15866         * TextControl.cs: 
15867           - Added word-wrap functionality to RecalculateLine() 
15868           - Added some short function descriptions for VS.Net to aid in
15869             writing dependent controls
15870           - Added Caret property, returning the current coords of the caret
15871           - Added ViewPortWidth and ViewPortHeight properties
15872           - Added Wrap property
15873           - Added CaretMoved event
15874           - Removed some old debug code
15875           - Split() can now create soft splits
15876           - Added PreviousTag()/NextTag() to allow walking "tag-lists"
15877           - Added method to format existing text
15878           - Fixed size/alignment calculations to use viewport
15879           - RecalculateDocument now can handle changing line-numbers while
15880             calculating lines
15881
15882         * TextBox.cs:
15883           - Added some wrap logic, we don't wrap if alignment is not left
15884           - Added casts for scrollbar var, base class switched types to
15885             also support RichTextBoxA
15886           - Implemented handling of scrollbar visibility flags
15887
15888         * TextBoxBase.cs:
15889           - Switched scrollbars type to RichTextBoxScrollBars to support
15890             RichTextBox
15891           - Added tracking of canvas width/height
15892           - Switched scrollbars to be not selectable (to keep focus on text)
15893           - Added central CalculateDocument() method to handle all redraw
15894             requirements
15895           - Added ReadOnly support
15896           - Added WordWrap support
15897           - Fixed handling of Enter key (we now treat it as a DialogKey)
15898           - Fixed caret positioning when h or v scroll is not zero
15899           - Fixed placing/generation of vertical scrollbar
15900           - Added CalculateScrollBars() method to allow updating scrollbar
15901             limits and visibility
15902           - Fixed handling of horizontal scroll
15903           - Added handling of vertical scroll
15904           - Implemented auto-'jump' when caret moves to close to a left or
15905             right border and there is text to be scrolled into view (currently
15906             there's the potential for a stack overflow, until a bug in
15907             scrollbar is fixed)
15908
15909 2005-06-21  Geoff Norton  <gnorton@customerdna.com>
15910         
15911         * XplatUIOSX.cs: Initial implementation of WM_ERASEBKGND
15912
15913 2005-06-19  Alexander Olk  <xenomorph2@onlinehome.de>
15914
15915         * Mime.cs:
15916         - added inodes.
15917         - return application/x-zerosize for files with size zero
15918           (if no extension pattern matches).
15919         - check matches collection for strings too.
15920         - return only the first mime type if the name value
15921           collection has more than one mime type.
15922
15923 2005-06-18  Jonathan Chambers <jonathan.chambers@ansys.com>
15924         
15925         * PropertyGrid.cs: Cleaned up some TODOs
15926         * PropertyGridView.cs: Added support for UITypeEditors
15927
15928 2005-06-17  Jordi Mas i Hernandez <jordi@ximian.com>
15929         
15930         * DataGrid.cs: clears cached value
15931
15932 2005-06-17  Jordi Mas i Hernandez <jordi@ximian.com>
15933
15934         * DataGridTextBoxColumn.cs: new rows, speed improvements, fixes, readonly prop.
15935         * DataGridDrawingLogic.cs: new rows, speed improvements, fixes, readonly prop.
15936         * DataGrid.cs: new rows, speed improvements, fixes, readonly prop.
15937         * DataGridColumnStyle.cs: new rows, speed improvements, fixes, readonly prop.
15938         
15939 2005-06-16  Jordi Mas i Hernandez <jordi@ximian.com>
15940
15941         * ThemeWin32Classic.cs: fixes colour
15942
15943 2005-06-15  Peter Bartok  <pbartok@novell.com>
15944
15945         * MWFCategoryAttribute.cs: Added (Needed for PropertyGrid designer support)
15946         * MWFDescriptionAttribute.cs: Added (Needed for PropertyGrid designer support)
15947         * ButtonBase.cs: Added MWFCategory and MWFDescription attributes
15948         * Control.cs: Added some MWFCategory and MWFDescription attributes
15949         * ScrollBar.cs: Added some MWFCategory and MWFDescription attributes
15950
15951 2005-06-15  Alexander Olk  <xenomorph2@onlinehome.de>
15952
15953         * Mime.cs, MimeGenerated.cs: First draft of MWF mime stuff, see Mime.cs for
15954         usage
15955
15956 2005-06-14  Jordi Mas i Hernandez <jordi@ximian.com>
15957
15958         * DataGridTextBoxColumn.cs: default datagrid settings for Default Styles, fixes
15959         * DataGridTableStyle.cs: default datagrid settings for Default Styles, fixes
15960         * DataGridDrawingLogic.cs: default datagrid settings for Default Styles, fixes
15961         * DataGridBoolColumn.cs: default datagrid settings for Default Styles, fixes
15962         * DataGrid.cs: default datagrid settings for Default Styles, fixes
15963         * DataGridColumnStyle.cs: default datagrid settings for Default Styles, fixes
15964
15965 2005-06-13  Jackson Harper  <jackson@ximian.com>
15966
15967         * XplatUIX11.cs: Override SetAllowDrop on X11 so an error message
15968         isn't printed when the user enables dropping. (X11 does accept
15969         drops).
15970         
15971 2005-06-13  Jackson Harper  <jackson@ximian.com>
15972
15973         * TreeView.cs: Remove some TODOS.
15974
15975 2005-06-13  Jackson Harper  <jackson@ximian.com>
15976
15977         * Form.cs: Hook into the mdi framework.
15978         * MdiClient.cs: Use the base control collections add method so
15979         parents get setup correctly. Set the default back colour and dock
15980         style.
15981         * MdiChildContext.cs: New class, this bad actor handles an
15982         instance of an MDI window. Right now there is only basic
15983         support. You can drag, close, and resize windows. Minimize and
15984         Maximize are partially implemented.
15985
15986 2005-06-13  Jackson Harper  <jackson@ximian.com>
15987
15988         * XplatUIX11.cs: Mash numbers together properly, otherwise we get
15989         freaky when both vals are negative. NOTE: There are probably other
15990         places in XplatUIX11 that this needs to be done.
15991
15992 2005-06-13  Jordi Mas i Hernandez <jordi@ximian.com>
15993
15994         * DataGrid.cs: implement missing methods, move KeyboardNavigation
15995         * DataGridColumnStyle.cs: fixes signature
15996
15997 2005-06-12  Jackson Harper  <jackson@ximian.com>
15998
15999         * XplatUIX11.cs: Use sizing cursors similar to the ones on
16000         windows.
16001
16002 2005-06-11  Jackson Harper  <jackson@ximian.com>
16003
16004         * StatusBarPanel.cs: Signature cleanups. Implement
16005         BeginInit/EndInit.
16006
16007 2005-06-10  Jordi Mas i Hernandez <jordi@ximian.com>
16008
16009         * DataGridTextBoxColumn.cs: Honors aligment
16010         * GridColumnStylesCollection.cs: Contains is case unsensitive
16011         * GridTableStylesCollection.cs: several fixes
16012         * DataGridTableStyle.cs: default column creation
16013         * DataGridDrawingLogic.cs: fixes
16014         * CurrencyManager.cs: ListName property
16015         * DataGrid.cs: multiple styles support
16016         * DataGridColumnStyle.cs: fixes
16017         
16018
16019 2005-06-10  Peter Bartok  <pbartok@novell.com>
16020
16021         * Control.cs(Select): Moved SetFocus call to avoid potential
16022           loops if controls change the active control when getting focus
16023         * UpDownBase.cs: Fixes to allow proper keyboard focus after clicking
16024           the up/down buttons
16025
16026 2005-06-10  Matthias Felgner  <matthiasf@voelcker.ocm>
16027
16028         * ImageListConverter.cs: Implemented
16029
16030 2005-06-10  John BouAntoun <jba-mono@optusnet.com.au>
16031
16032         * MonthCalendar.cs: Wired in NumericUpDown control for year
16033
16034 2005-06-10  John BouAntoun <jba-mono@optusnet.com.au>
16035
16036         * MonthCalendar.cs: Removed MonoTodo attributes on Click and
16037           DoubleClick events, since they are not meant to be fired.
16038
16039 2005-06-09  Peter Bartok  <pbartok@novell.com>
16040
16041         * UpDownBase.cs, NumericUpDown.cs, DomainUpDown.cs: Integrated
16042           Jonathan's standalone controls into MWF, implemented missing
16043           events, attributes and methods; added xxxAccessible classes
16044         * AccessibleObject.cs: Made fields internal so other classes
16045           can change them if needed
16046
16047 2005-06-09  Jonathan Gilbert  <2a5gjx302@sneakemail.com>
16048
16049         * UpDownBase.cs: Complete implementation
16050         * NumericUpDown.cs: Complete implementation
16051         * DomainUpDown.cs: Complete implementation
16052
16053 2005-06-09  Jordi Mas i Hernandez <jordi@ximian.com>
16054
16055         * DataGridTextBoxColumn.cs: drawing fixes
16056         * DataGridCell.cs: fixes ToString method to match MSNet
16057         * DataGridTableStyle.cs: fixes
16058         * DataGridBoolColumn.cs: fixes, drawing
16059         * DataGridDrawingLogic.cs: fixes, new methods
16060         * DataGridTextBox.cs: Keyboard and fixes
16061         * DataGrid.cs:
16062                 - Keyboard navigation
16063                 - Scrolling fixes
16064                 - Row selection (single, multiple, deletion, etc)
16065                 - Lots of fixes
16066         
16067 2005-06-07  Jackson Harper  <jackson@ximian.com>
16068
16069         * ThemeWin32Classic.cs: Clear the background area when drawing
16070         buttons.
16071
16072 2005-06-06  Peter Bartok  <pbartok@novell.com>
16073
16074         * ImageListStreamer.cs: Fixed signature for GetData
16075         * CheckBox.cs: Fixed base class for CheckBoxAccessibleObject
16076         * ComboBox.cs:
16077           - Added missing ChildAccessibleObject class
16078           - Added missing OnXXXFocus overrides, switched to using those
16079             instead of the event handler
16080         * Control.cs:
16081           - Added Parent property for ControlAccessibleObject
16082           - Fixed signatures
16083           - Fixed attributes
16084           - Added ResetBindings()
16085         * ListBindingConverter.cs: Implemented some methods
16086         * ButtonBase.cs: Added missing ButtonBaseAccessibleObject class
16087         * ImageList.cs: Implemented basic handle scheme, removed TODOs
16088         * ContainerControl.cs: Fixed signature, now subscribing to the
16089           ControlRemoved event instead of overriding the handler, LAMESPEC
16090         * CurrencyManager.cs: Added missing attribute
16091         * MonthCalendar.cs: Added missing properties
16092
16093 2005-06-06  Jordi Mas i Hernandez <jordi@ximian.com>
16094
16095         * DataGridColumnStyle.cs: fixes for DataGridColumnStyle
16096         
16097 2005-06-06  Gaurav Vaish and Ankit Jain
16098
16099         * DataSourceHelper.cs: Gaurav Vaish and Ankit Jain patch for databinding
16100         * DataGrid.cs: Gaurav Vaish and Ankit Jain patch for databinding
16101         
16102 2005-06-06  Jordi Mas i Hernandez <jordi@ximian.com>
16103
16104         * Control.cs: fixes CreateParams Width / Height.
16105
16106 2005-06-05  Peter Bartok  <pbartok@novell.com>
16107
16108         * Win32DnD.cs: Removed compilation warnings
16109
16110 2005-06-05  Peter Bartok  <pbartok@novell.com>
16111
16112         * Control.cs (CreateParams): Since we don't know if one of the
16113           properties we use is overridden, lets make sure if we fail accessing
16114           we continue with a backup plan
16115
16116 2005-06-05  Peter Bartok  <pbartok@novell.com>
16117
16118         * Win32DnD.cs:
16119           - Removed debug output
16120           - Added MarshalAs attribute to ensure proper marshalling of FORMATETC
16121             struct
16122           - Plugged resource leak
16123         * XplatUIStructs.cs: Changed ClipboardFormats size to ushort, to match
16124           MS size
16125
16126 2005-06-05  Peter Bartok  <pbartok@novell.com>
16127
16128         * XplatUIWin32.cs: Removed DnD code
16129         * Win32DnD.cs: Implemented drop source and drop target functionality
16130
16131 2005-06-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
16132
16133         * UpDownBase.cs: remove duplicate addition of event, enable some code
16134         that was commented out.
16135         * NumericUpDown.cs: added missing attributes and Hexadecimal property.
16136         Validate input when a key is pressed. It works fine now for every
16137         combination of Hexadecimal. Only missing some drawing love when sharing
16138         space with other controls.
16139
16140 2005-06-04  Peter Bartok  <pbartok@novell.com>
16141
16142         * Control.cs:
16143           - We need to pass a window for DragDrop, so enable callback events
16144           - Added DnD callback events when being a DragSource
16145         * XplatUI.cs (StartDrag): Added window handle argument
16146         * XplatUIDriver.cs (StartDrag): Added window handle argument
16147         * QueryContinueDragEventArgs: Made fields internally accessible so
16148           drivers can set them
16149         * GiveFeedbackEventArgs: Made fields internally accessible so drivers
16150           can set them
16151
16152 2005-06-03  Jordi Mas i Hernandez <jordi@ximian.com>
16153
16154         * DataGridTextBoxColumn.cs: column text editing
16155         * DataGridTableStyle.cs: Respect columns styles created by the user
16156         * DataGridDrawingLogic.cs: lots of drawing fixes and enhanments
16157         * DataGridBoolColumn.cs: bool column editing
16158         * DataGrid.cs: fixes to scrolling, properties, etc
16159         * DataGridTextBox.cs: handle keyboard
16160         * DataGridColumnStyle.cs: fixes
16161
16162 2005-06-02  Jackson Harper  <jackson@ximian.com>
16163
16164         * ImageListStreamer.cs: Somewhat broken implementation of
16165         GetObjectData. The RLE needs some work to match MS properly.
16166
16167 2005-06-02  Jackson Harper  <jackson@ximian.com>
16168
16169         * X11Dnd.cs: Attempting to keep at least one file in MWF
16170         monostyled.
16171
16172 2005-06-02  Peter Bartok  <pbartok@novell.com>
16173
16174         * X11DnD.cs: Use Marshal.SizeOf instead of sizeof, no /unsafe required
16175           that way
16176
16177 2005-06-02  Peter Bartok  <pbartok@novell.com>
16178
16179         * Control.cs: Removed MonoTODO from DoDragDrop and added call to Xplat
16180         * XplatUI.cs: Added DoDragDrop() method
16181         * XplatUIDriver.cs: Added DoDragDrop() method
16182
16183 2005-06-02  Jackson Harper  <jackson@ximian.com>
16184
16185         * Splitter.cs: Implement BorderStyle.
16186
16187 2005-06-02  Jackson Harper  <jackson@ximian.com>
16188
16189         * XplatUIX11.cs: Tie into the X11Dnd subsystem.
16190         * X11Dnd.cs: New file. A subsystem that handles drag and drop on
16191         X11 using XDND.
16192
16193 2005-06-02  Peter Bartok  <pbartok@novell.com>
16194
16195         * DataObject.cs:
16196           - Added Data setter
16197           - Fixed broken insertion code for SetData, now also
16198             overwrites any existing entry of the same format name
16199         * Hwnd.cs: Added list of pointers that automatically gets
16200           freed when the window is disposed
16201         * XplatUI.cs: Call driver initialization method when loading
16202           a driver
16203         * Control.cs:
16204           - OnDragLeave takes EventArgs, not DragEventArgs
16205           - Added setting of WS_EX_ACCEPTFILES style when dropping is
16206             supported
16207           - Forces style update when drop state changes
16208         * XplatUIWin32.cs: Implemented Drag'n'Drop (as good as possible,
16209           not perfect since we cannot (yet) call the IDataObject.GetData()
16210           method, we keep getting 0x80004005 error, dunno why)
16211
16212 2005-06-02  Peter Bartok  <pbartok@novell.com>
16213
16214         * DragEventArgs.cs: Make fields internal so we can cache the
16215           object and re-set the fields from XplatUI
16216
16217 2005-06-02  Jackson Harper  <jackson@ximian.com>
16218
16219         * Control.cs: Add some internal methods so the DnD subsystem can
16220         raise DnD events. Also call into the driver when AllowDrop is set.
16221         * XplatUI.cs:
16222         * XplatUIDriver.cs: New method for setting whether or not a window
16223         is allowed to accept drag and drop messages.
16224                 
16225 2005-06-01  Jordi Mas i Hernandez <jordi@ximian.com>
16226         
16227         * ScrollBar.cs: Make sure that values sent in Scroll events
16228         are always between Maximum and Minimum.
16229
16230 2005-06-01  Marek Safar  <marek.safar@seznam.cz>
16231
16232         * Menu.cs: Call MenuChanged when menuitem visibility has been
16233         changed.
16234         * MenuItem.cs: Rebuild menu when item is (not) visible.
16235         * MainMenu.cs: MainMenu has special MenuChanged.
16236         * Theme.cs: Caption and FrameBorderSize are not fixed.
16237         * XplatUI.cs: Added CaptionHeight,FrameBorderSize.
16238         * XplatUIDriver.cs: Introduced Caption and FrameBorderSize.
16239         * XplatUIX11.cs,
16240         * XplatUIOSX: Caption and FrameBorderSize not implemented yet.
16241         * XplatUIWin32.cs: Get Caption and FrameBorderSize from system.
16242
16243 2005-05-30  Jackson Harper  <jackson@ximian.com>
16244
16245         * DataFormat.cs: We can't statically initialize this stuff because
16246         it calls into the xplatui and could create a loop. So we lazy init
16247         it.
16248
16249 2005-05-28  Jackson Harper  <jackson@ximian.com>
16250
16251         * Control.cs: Proper implementation of Product(Name/Version).
16252
16253 2005-05-27  Jackson Harper  <jackson@ximian.com>
16254
16255         * DataObject.cs: Dont crash if no data is found.
16256
16257 2005-05-26  Rafael Teixeira  <rafaelteixeirabr@hotmail.com>
16258         * MdiClient.cs: Add missing Localizable attribute to BackgroundImage property
16259                 as per status page, guessing it should be set to true
16260
16261 2005-05-26  Jordi Mas i Hernandez <jordi@ximian.com>
16262
16263         * DataGridTextBoxColumn.cs: Draws text and basic text formatting
16264         * DataGridTableStyle.cs: set proper formatting text, def header text
16265         * ThemeWin32Classic.cs: new themable paramaters
16266         * DataGridBoolColumn.cs: paint check box, get data, fixes
16267         * DataGridDrawingLogic.cs: huge improvements in painting, fixes, new methods
16268         * DataGrid.cs: fixes properties, implements vertical and horizontal scrolling
16269         * DataGridColumnStyle.cs: fixes
16270         * Theme.cs: new themable paramaters
16271                 
16272 2005-05-26  Peter Bartok  <pbartok@novell.com>
16273
16274         * ContainerControl.cs: Pass AdjustFormScrollbars() call on to base
16275
16276 2005-05-24 Jonathan S. Chambers <jonathan.chambers@ansys.com>
16277         * Control.cs: Fixed LowOrder and HighOrder to preserve sign.
16278
16279 2005-05-24  Peter Bartok  <pbartok@novell.com>
16280
16281         * OpenFileDialog.cs, Form.cs, Menu.cs, GroupBox.cs, UserControl.cs,
16282           Label.cs, DataGridTextBoxColumn.cs, PropertyGrid.cs, ErrorProvider.cs
16283           Splitter.cs, Control.cs, FontDialog.cs, TabPage.cs,
16284           FolderBrowserDialog.cs, HelpProvider.cs, DataGridTableStyle.cs,
16285           NotifyIcon.cs, FileDialog.cs, ListView.cs, SaveFileDialog.cs,
16286           ToolBarButton.cs, ImageList.cs, DataGridBoolColumn.cs, Panel.cs,
16287           DataGrid.cs, DataGridTextBox.cs, ListBox.cs, TrackBar.cs,
16288           AxHost.cs, TabControl.cs, ScrollableControl.cs, ToolBar.cs,
16289           DataGridColumnStyle.cs, PictureBox.cs, DateTimePicker.cs,
16290           StatusBar.cs, MonthCalendar.cs, TreeView.cs: Added
16291           missing attributes, etc
16292         * DataGridPreferredColumnWidthTypeConverter.cs: Added
16293
16294 2005-05-24  Peter Bartok  <pbartok@novell.com>
16295
16296         * Help.cs: Added, implemented trivial functions, throws up MessageBox
16297           when user tries to get help
16298         * DataObject.cs, DataFormats.cs, LinkArea.cs,
16299           SelectionRangeConverter.cs, Clipboard.cs : Removed unused variables
16300           to suppress warnings
16301         * XplatUIWin32.cs, XplatUIOSX.cs, XplatUIX11.cs: Removed unused code to
16302           avoid unreachable code warning
16303
16304 2005-05-20  Peter Bartok  <pbartok@novell.com>
16305
16306         * CursorConverter.cs (ConvertTo): Switched to use Cursor.GetObjectData
16307
16308 2005-05-20  Jordi Mas i Hernandez <jordi@ximian.com>
16309
16310         * DataGridTextBoxColumn.cs: Basic painting methods
16311         * DataGridTableStyle.cs: Set table style in the column
16312         * ThemeWin32Classic.cs: Use Theme for colors
16313         * DataGridDrawingLogic.cs: Implement more drawing
16314         * DataGrid.cs: drawing, theming, enhacements, fixes
16315         * DataGridColumnStyle.cs: fixes, drawing
16316         * Theme.cs: theming for Datagrid
16317
16318 2005-05-20  Peter Bartok  <pbartok@novell.com>
16319
16320         * Cursor.cs: Implemented GetObjectData() method
16321
16322 2005-05-20  Peter Bartok  <pbartok@novell.com>
16323
16324         * Cursors.cs: Added setting of cursor name
16325         * Cursor.cs:
16326           - Implemented constructors
16327           - Implemented Draw and DrawStretched
16328           - Implemented Current property
16329           - Implemented == and != operators
16330           - Implemented Dispose()
16331           - Implemented ToString
16332           - Added missing attributes
16333         * XplatUIX11.cs:
16334           - Added missing reset for OverrideCursor when DoEvents is called
16335           - Fixed creation of cursor, logic was wrong
16336         * XplatUIWin32.cs:
16337           - Added missing reset for OverrideCursor when DoEvents is called
16338           - Fixed creation of cursor, bit arrays were swapped
16339         * Clipboard.cs: Removed obsolete MonoTODO attribute
16340
16341 2005-05-20  Jordi Mas i Hernandez <jordi@ximian.com>
16342
16343         * ComboBox.cs: fixes OnSelectedItemChanged
16344         * ControlBindingsCollection.cs: fixes item range check
16345
16346 2005-05-20  Jordi Mas i Hernandez <jordi@ximian.com>
16347
16348         * UpDownBase.cs:
16349                 - Calc preferred height properly
16350                 - Implement missing properties
16351                 
16352         * NumericUpDown.cs: Implement missing events
16353
16354 2005-05-19  Jackson Harper  <jackson@ximian.com>
16355
16356         * TabControl.cs: New method that resizes the tab pages before
16357         redrawing them. This as needed as the control is double buffered
16358         and sizing will not be recalculated unless ResizeTabPages is
16359         called.
16360         * TabPage.cs: Set base.Text instead of Text in the constructor so
16361         that UpdateOwner does not get called. Use the new Redraw method of
16362         TabControl instead of Refresh so the sizing is recalculated.
16363         * ThemeWin32Classic.cs: Draw the text for button tabs.
16364
16365 2005-05-19  Jackson Harper  <jackson@ximian.com>
16366
16367         * Control.cs: Paint control background images. Fix typo where
16368         PaintControlBackground was not getting called correctly.
16369
16370 2005-05-19  Peter Bartok  <pbartok@novell.com>
16371
16372         * ScrollableControl.cs (DisplayRectangle): Undid my last change until
16373           I can investigate, apparently I broke FileDialog
16374
16375 2005-05-19  Marek Safar  <marek.safar@seznam.cz>
16376
16377         * AxHost.cs: Some simple properties.
16378         * Control.cs: window must be accessible after ctor.
16379         * Form.cs: Added TransparencyKey property.
16380         * TextBoxBase.cs: Implemented Clear. Text property can be null.
16381         * XplatUIWin32.cs: SetBorderStyle implemented.
16382
16383 2005-05-18  Peter Bartok  <pbartok@novell.com>
16384
16385         * DataObject.cs: Entries are not global but particular to the
16386           DataObject, now it behaves that way
16387         * XplatUIWin32.cs: Implemented Clipboard methods
16388         * Clipboard.cs: Implemented
16389         * ScrollableControl.cs (DisplayRectangle): Fixed calculation
16390         * XplatUIOSX.cs: Updated to final clipboard prototypes
16391         * XplatUIX11.cs: Implemented Clipboard methods
16392         * XplatUIDriver.cs: Updated to final clipboard prototypes
16393         * XplatUIStructs.cs:
16394           - Added BITMAPINFOHEADER struct
16395           - Added ClipboardFormats enum
16396         * X11Structs.cs:
16397           - Added ClipboardStruct
16398           - Added Atom enum items for clipboard types
16399           - Fixed atom types for Selection event structures
16400         * DataFormats.cs:
16401           - Added internal properties and methods for drivers to enumerate
16402             all known formats
16403           - Switched initialization method to allow drivers to assign their
16404             own IDs even for the MS predefined clipboard IDs
16405         * XplatUI.cs: Updated to final clipboard interface
16406
16407 2005-05-18 Jonathan S. Chambers <jonathan.chambers@ansys.com>
16408         * PropertyGridView.cs: Fixed compiler warnings.
16409
16410 2005-05-18 Jonathan S. Chambers <jonathan.chambers@ansys.com>
16411         * PropertyGrid.cs: Added some event calls
16412         * PropertyGridView.cs: Change drawing code to use double buffering
16413         * PropertyGridTextBox.cs: Changed Text property name
16414         * GridItem.cs: Added Bounds property.
16415         * GridEntry.cs: Added Bounds property.
16416
16417 2005-05-17  Lluis Sanchez Gual  <lluis@novell.com>
16418
16419         * Binding.cs: Use IsInstanceOfType instead of IsAssignableFrom
16420         since GetType() may not return the correct type if the object is
16421         a remoting proxy.
16422
16423 2005-05-17  Jordi Mas i Hernandez <jordi@ximian.com>
16424
16425         * TreeNodeCollection.cs: fixes get/set item ranges
16426         
16427 2005-05-15  Jordi Mas i Hernandez <jordi@ximian.com>
16428
16429         * ListBox.cs: Kazuki Oikawa's PreferredHeight and ItemHeight fixes
16430                 
16431 2005-05-15  Jordi Mas i Hernandez <jordi@ximian.com>
16432
16433         * ComboBox.cs: Fix item range comparation
16434         * ListView.cs: Fix item range comparation
16435
16436 2005-05-03  Alexander Olk  <xenomorph2@onlinehome.de>
16437
16438         * FontDialog.cs:
16439           - Clear example panel when OnPaint is called
16440           - Better solution for displaying the example panel text
16441           - Select default indexes in the ListBoxes
16442
16443 2005-05-11  Geoff Norton  <gnorton@customerdna.com>
16444
16445         * XplatUIOSX.cs: Avoid painting into invisible views.  Fixes #74926
16446
16447 2005-05-11  Peter Bartok  <pbartok@novell.com>
16448
16449         * LinkArea.cs: Added and implemented LinkAreaTypeConverter class
16450         * SelectionRangeConverter.cs: Implemented
16451         * PropertyGrid.cs: Fixed attribute value
16452         * Control.cs:
16453           - Invoke(): Don't call Begin/EndInvoke if it is not neccessary
16454           - Added Sebastien Pouliot's CAS Stack Propagation fixes
16455         * XplatUIDriver.cs: Added new XplatUIDriverSupport class, for code
16456           that's common to all drivers. First methods to go there are
16457           Sebastien Pouliot's CAS Stack Propagation helper methods
16458         * XplatUIWin32.cs, XplatUIX11.cs, AsyncMethodData.cs: Fixes by
16459           Sebastien Pouliot for CAS Stack Propagation
16460
16461 2005-05-11  Geoff Norton  <gnorton@customerdna.com>
16462
16463         * OSXStructs.cs:
16464           XplatUIOSX.cs: More cosmetic cleanup courtesy of Artyom Tyazhelov (Artyom.Tyazhelov@helmes.ee)
16465
16466 2005-05-12  Jordi Mas i Hernandez <jordi@ximian.com>
16467
16468         * DataGridTextBoxColumn.cs: fixed some members
16469         * GridColumnStylesCollection.cs: indexed column is case insensitive
16470         * DataGridTableStyle.cs: fixes
16471         * ThemeWin32Classic.cs: add new theme parameter
16472         * Theme.cs: add new theme parameter
16473         * DataGridDrawingLogic.cs: Datagrid's drawing logic
16474         * DataGrid.cs: fixes, new internal properties, etc.
16475         * DataGridColumnStyle.cs: allows to set grid value
16476         *
16477
16478 2005-05-10  Peter Bartok  <pbartok@novell.com>
16479
16480         * AccessibleObject.cs:
16481           - Removed MonoTODO attribute on help, method is correct
16482           - Fixed Bounds property
16483         * AxHost.cs: Moved MonoTODO
16484         * ButtonBase.cs: Now setting AccessibleObject properties
16485         * RadioButton.cs: Setting proper AccessibleObject role
16486         * CheckBox.cs: Setting proper AccessibleObject role
16487         * ControlBindingsCollection.cs: Added properties, methods and attributes
16488         * DataFormats.cs: Fixed awkward internal API, and changed to enable
16489           userdefined DataFormats.Format items as well
16490         * ListControl.cs: Removed data_member from the public eye
16491         * OpenFileDialog.cs:
16492           - Made class sealed
16493           - Added missing attributes
16494         * SaveFileDialog.cs: Added missing attributes
16495         * ImageListStreamer.cs: Fixed code that caused warnings
16496         * LinkLabel.cs: Removed unreachable code
16497         * TreeView.cs: Fixed code that caused warnings
16498         * PropertyGridView.cs: Fixed code that caused warnings
16499         * GridColumnStylesCollection.cs: Added missing attributes
16500         * GridTableStylesCollection: Added missing attribute
16501         * PropertyManager: Added .ctor
16502         * SecurityIDType: Added
16503         * DataObject.cs: Implemented class
16504         * LinkArea.cs: Added missing attribute
16505
16506 2005-05-11  Jordi Mas i Hernandez <jordi@ximian.com>
16507
16508         * RadioButton.cs: call base method to allow to fire OnClick event
16509         * UpDownBase.cs: OnMouseUp call base method
16510         * CheckedListBox.cs: call base method before returning
16511         * TrackBar.cs: call base method before returning
16512         
16513
16514 2005-05-10  Peter Bartok  <pbartok@novell.com>
16515
16516         * XplatUIX11.cs: Fix for #74902, check pending timers when peeking
16517           for messages
16518
16519 2005-05-10  Peter Bartok  <pbartok@novell.com>
16520
16521         * DataFormats.cs: Implemented
16522         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs,
16523           XplatUIX11.cs: Added Clipboard APIs
16524         * XplatUIWin32.cs: Implemented Clipboard APIs
16525         * FolderBrowserDialog.cs: Added missing event, attributes
16526
16527 2005-05-10  Jordi Mas i Hernandez <jordi@ximian.com>
16528
16529         * CheckBox.cs: call base method to allow to fire OnClick event
16530
16531 2005-05-09  Sebastien Pouliot  <sebastien@ximian.com>
16532
16533         * XplatUI.cs: Use PlatformID.Unix under NET_2_0.
16534
16535 2005-05-06  Peter Bartok  <pbartok@novell.com>
16536
16537         * XplatUIX11.cs: Redid Jackson's fix, it was causing a busy loop
16538         * Screen.cs: Implemented
16539         * HelpNavigator.cs: Added
16540         * XplatUIWin32.cs: Added SystemParametersInfo call, fixed WorkArea
16541           property
16542         * HelpProvider.cs: Implemented all we can do until we have a CHM
16543           help library (which means that "What's This" does work now)
16544
16545 2005-05-06  Jackson Harper  <jackson@ximian.com>
16546
16547         * XplatUIX11.cs: Fix waking up the main loop.
16548                 
16549 2005-05-05  Peter Bartok  <pbartok@novell.com>
16550
16551         * XplatUI.cs: Updated revision
16552         * Form.cs: Removed enless loop
16553         * GroupBox.cs (OnPaint): Added call to base.OnPaint()
16554         * Label.cs (OnPaint): Added call to base.OnPaint()
16555         * ToolTip.cs: Made ToolTipWindow reusable for other controls
16556         * LinkLabel.cs (OnPaint): Added call to base.OnPaint()
16557         * UpDownBase.cs (OnPaint): Moved base.OnPaint() call to end of method
16558         * AxHost.cs: Added
16559         * ButtonBase.cs: Moved base.OnPaint() call to end of method
16560         * ThemeWin32Classic.cs: Replaced references to ToolTip with references
16561           to ToolTip.ToolTipWindow for drawing and size methods; this allows
16562           reuse of ToolTipWindow by other controls
16563         * SizeGrip.cs: Moved base.OnPaint() call to end of method
16564         * XplatUIX11.cs: Now clipping drawing area (experimental)
16565         * PictureBox.cs: Moved base.OnPaint() call to end of method
16566         * Theme.cs: Fixed ToolTip abstracts to match new format
16567         * ErrorProvider.cs: Implemented
16568
16569 2005-05-05  Jordi Mas i Hernandez <jordi@ximian.com>
16570
16571         * Label.cs: fire events using OnAutoSizeChanged and OnTextAlignChanged
16572         * LinkLabel.cs:
16573                 - Adds cursors
16574                 - Handles focus
16575                 - Implements LinkBehavior
16576                 - Fixes many issues
16577
16578 2005-05-03  Jackson Harper  <jackson@ximian.com>
16579
16580         * ListView.cs: Calculate the scrollbar positioning on resize and
16581         paint, so they get put in the correct place.
16582
16583 2005-05-03  Alexander Olk  <xenomorph2@onlinehome.de>
16584
16585         * ColorDialogs.cs: The small color panels are now handled by
16586           SmallColorControl. This fixes drawing of the focus rectangle
16587           and adds a 3D border.
16588
16589 2005-05-03  Peter Bartok  <pbartok@novell.com>
16590
16591         * Control.cs: Modified version of Jonathan Chamber's fix for
16592           double-buffering
16593
16594 2005-05-03  Jackson Harper  <jackson@ximian.com>
16595
16596         * ListView.cs: Remove redraw variable. Control now handles whether
16597         or not a redraw needs to be done, and will only raise the paint
16598         event if redrawing is needed.
16599
16600 2005-05-03  Jackson Harper  <jackson@ximian.com>
16601
16602         * Splitter.cs: No decorations for the splitter form. Cache the
16603         hatch brush.
16604
16605 2005-05-03  Jackson Harper  <jackson@ximian.com>
16606
16607         * TreeView.cs: Use dashed lines to connect nodes. Use the
16608         ControlPaint method for drawing the focus rect instead of doing
16609         that in treeview.
16610
16611 2005-05-02  Peter Bartok  <pbartok@novell.com>
16612
16613         * LinkLabel.cs: Fixed the fixes from r43566 and 43521
16614
16615 2005-04-29  Jackson Harper  <jackson@ximian.com>
16616
16617         * ThemeWin32Classic.cs: Don't clear the GC that will clear the
16618         entire image buffer. Just clear the clipping rectangle.
16619
16620 2005-04-29  Jackson Harper  <jackson@ximian.com>
16621
16622         * ThemeWin32Classic.cs: Don't draw list view items that are
16623         outside the clipping rectangle.
16624
16625 2005-04-29  Jordi Mas i Hernandez <jordi@ximian.com>
16626
16627         * ListBox.cs: added horizontal item scroll
16628
16629 2005-04-29  Jackson Harper  <jackson@ximian.com>
16630
16631         * ThemeWin32Classic.cs: Remove some old debug code that was
16632         causing flicker with the new double buffering code.
16633
16634 2005-04-29  John BouAntoun  <jba-mono@optusnet.com.au>
16635
16636         * MonthCalendar.cs, DateTimePicker.cs: Made monthcalendar dropdwon
16637         behave like combobox and comboboxlist (still not sure if this is
16638         correct though).
16639
16640 2005-04-28  Jackson Harper  <jackson@ximian.com>
16641
16642         * ThemeWin32Classic.cs: Don't fill the middle of progress
16643         bars. This fills areas outside of the clip bounds that don't need
16644         to be filled.
16645
16646 2005-04-28  Jackson Harper  <jackson@ximian.com>
16647
16648         * Control.cs: Don't expose functionality to touch the image buffers.
16649         * ProgressBar.cs:
16650         * ListView.cs: We do not need to (and no longer can) manipulate
16651         the image buffers directly. All of this is handled by Control.
16652
16653 2005-04-28  Peter Bartok  <pbartok@novell.com>
16654
16655         * RichTextBoxSelectionAttribute.cs, RichTextBoxSelectionTypes.cs,
16656           RichTextBoxScrollBars.cs, RichTextBoxStreamType.cs,
16657           RichTextBoxFinds.cs, RichTextBoxWordPunctuations.cs: Added
16658
16659 2005-04-28  Jordi Mas i Hernandez <jordi@ximian.com>
16660
16661         * Combobox:
16662                 - Adjust control's height for non-simple comboboxes (bug fix)
16663                 - Remove dead code
16664         * MenuAPI.cs: remove unused var
16665         * ScrollBar.cs: remove unsed var
16666                  
16667         * ListBox.cs: unselect items when clearing
16668
16669 2005-04-28  Jordi Mas i Hernandez <jordi@ximian.com>
16670
16671         * ListControl.cs: honors OnPositionChanged and default Selected Item
16672         * ListBox.cs: unselect items when clearing
16673
16674 2005-04-27  Jackson Harper  <jackson@ximian.com>
16675
16676         * X11Keyboard.cs: Initialize a default keyboard and give a warning
16677         if a "correct" keyboard is not found. This will make us not crash,
16678         but might give some users bad keyboard layouts...seems to be the
16679         same thing rewind does.
16680
16681 2005-04-27  Jackson Harper  <jackson@ximian.com>
16682
16683         * BindingManagerBase.cs: Attach the current/position changed
16684         handlers to their respective events.
16685
16686 2005-04-27  Jackson Harper  <jackson@ximian.com>
16687
16688         * Control.cs: Make sure that the first WM_PAINT does a full draw,
16689         not just a blit.
16690         * ThemeWin32Classic.cs: Don't fill the background for picture
16691         boxes. This could overright user drawing.
16692         * ComboBox.cs: Just fill the clipping rect not the entire client
16693         rect when drawing the background. This prevents pieces of the
16694         image buffer from getting overwritten and is theoretically faster.
16695
16696 2005-04-26  Jordi Mas i Hernandez <jordi@ximian.com>
16697
16698         * ComboBox.cs: Databinding support fixes, fire missing events
16699         * ListControl.cs: implement missing methods and properties, fixes
16700         * ThemeWin32Classic.cs: Databiding support on Drawing
16701         * CheckedListBox.cs: Databinding support fixes, fire missing events
16702         * ListBox.cs: Databinding support fixes, fire missing events
16703         
16704 2005-04-25  Peter Bartok  <pbartok@novell.com>
16705
16706         * LinkLabel.cs: Length of LinkArea is not allowed to be negative
16707
16708 2005-04-25  Jackson Harper  <jackson@ximian.com>
16709
16710         * TreeView.cs: Use the horizontal scrollbars height not width when
16711         determining how much of the client area is available.
16712
16713 2005-04-25  Jackson Harper  <jackson@ximian.com>
16714
16715         * Control.cs: Double buffering is handled differently now. As per
16716         the spec, the extra buffer is created in the WM_PAINT message and
16717         passed down to the control's drawing code.
16718         * GroupBox.cs:
16719         * Label.cs:
16720         * CheckBox.cs:
16721         * ProgressBar.cs:
16722         * RadioButton.cs:
16723         * ColorDialog.cs:
16724         * ComboBox.cs:
16725         * PropertyGridView.cs:
16726         * UpDownBase.cs:
16727         * MessageBox.cs:
16728         * MenuAPI.cs:
16729         * ListView.cs:
16730         * ButtonBase.cs:
16731         * SizeGrip.cs:
16732         * ScrollBar.cs:
16733         * ListBox.cs:
16734         * TrackBar.cs:
16735         * ToolBar.cs:
16736         * PictureBox.cs:
16737         * DateTimePicker.cs:
16738         * StatusBar.cs:
16739         * TreeView.cs: Update to new double buffering system.
16740         * MonthCalendar.cs: Uncomment block, as Capture is now
16741         working. Update to new double buffering
16742         * LinkLabel.cs: Lazy init the link collection. Update to new double buffering
16743         * PaintEventArgs.cs: New internal method allows us to set the
16744         graphics object. This is used for double buffering.
16745         * ThemeWin32Classic.cs: Give the picture box drawing code a clip
16746         rectangle. The internal paint_area var has been removed from
16747         StatusBar. The clipping rect should be used instead.
16748         * Theme.cs: Give the PictureBox drawing method a clipping rect.
16749         * TabPage.cs: The RefreshTabs method was removed, so just call the
16750         tab controls Refresh method now.
16751         * TabControl.cs: Update to new double buffering. Make sure the
16752         handle is created before sizing the tab pages, otherwise we will
16753         get stuck in a loop.
16754
16755 2005-04-24  Borja Sanchez Zamorano <borsanza@gmail.com>
16756
16757         * LinkLabel.cs: Fix typo, bug #74719; patch
16758           from Borja Sanchez Zamorano
16759
16760 2005-04-22  Jackson Harper  <jackson@ximian.com>
16761
16762         * TreeNode.cs: Implement Handle stuff.
16763         * TreeView.cs: Utility methods so nodes can get/lookup by handle.
16764
16765 2005-04-22  Jordi Mas i Hernandez <jordi@ximian.com>
16766
16767         * DataGridTextBoxColumn.cs: call base constructors, fixes
16768         * GridColumnStylesCollection.cs: missing events, methods, and functionality
16769         * GridTableStylesCollection.cs: fixes, check duplicate mapping names
16770         * DataGridTableStyle.cs: implements create default column styles
16771         * DataGridBoolColumn.cs: which types can handle
16772         * DataGrid.cs: missing methods, fixes, new functionality
16773         * DataGridColumnStyle.cs: fixes
16774
16775 2005-04-20  Alexander Olk  <xenomorph2@onlinehome.de>
16776         * FolderBrowserDialog.cs:
16777         - Use a thread to fill the TreeView
16778         - Adjusted some sizes
16779
16780 2005-04-19  Peter Bartok  <pbartok@novell.com>
16781
16782         * LinkLabel.cs: (Re-)create the pieces when setting the Text
16783           property. Fixes #74360.
16784
16785 2005-04-19  Jackson Harper  <jackson@ximian.com>
16786
16787         * XEventQueue.cs: Lock when getting the lockqueue size.
16788         * PictureBox.cs: Call base OnPaint
16789         
16790 2005-04-19  Peter Bartok  <pbartok@novell.com>
16791
16792         * XplatUIX11.cs: Fixed bug introduced with the HWND rewrite, Async
16793           messages were no longer being processed (this broke BeginInvoke)
16794
16795           
16796 2005-04-18  Jackson Harper  <jackson@ximian.com>
16797
16798         * TreeView.cs: buglet that caused node images to get drawn
16799         regardless of whether or not they were in the clipping rectangle.
16800
16801 2005-04-18  Jackson Harper  <jackson@ximian.com>
16802
16803         * CurrencyManager.cs: There are four rules for GetItemProperties:
16804         - If the type is an array use the element type of the array
16805         - If the type is a typed list, use the type
16806         - If the list contains an Item property that is not an object, use
16807         that property
16808         - use the first element of the list if there are any elements in
16809         the list.
16810         
16811 2005-04-17  Jackson Harper  <jackson@ximian.oom>
16812
16813         * TreeView.cs: Calculate plus minus and checkbox bounds when there is a
16814         click. This handles offsets for scrolling properly and reduces
16815         memory. Also fixed GetNode to not offset now that TopNode works
16816         properly.
16817         * TreeNode.cs: No longer need to track the plus minus or checkbox bounds.
16818         
16819 2005-04-17  Jackson Harper  <jackson@ximian.com>
16820
16821         * CursorConverter.cs: Initial implementation.
16822
16823 2005-04-15  Jordi Mas i Hernandez <jordi@ximian.com>
16824
16825         * ListControl.cs: work towards complex data binding support on ListControl
16826         * CurrencyManager.cs: work towards complex data binding support on ListControl
16827         * ListBox.cs: work towards complex data binding support on ListControl
16828
16829
16830 2005-04-15  Jordi Mas i Hernandez <jordi@ximian.com>
16831
16832         * GridTableStylesCollection.cs: fixes name and constructor
16833         * DataGridTableStyle.cs: fixes
16834         * DataGridBoolColumn.cs: fixes names and constructors
16835         * DataGrid.cs: define methods and properties. Some init implementations
16836         * DataGridCell.cs: define methods and properties. Some init implementations
16837         * GridTablesFactory.cs: Define methods and properties
16838
16839 2005-04-15  Geoff Norton  <gnorton@customerdna.com>
16840
16841         * XplatUIOSX.cs:  Handle proper mouse tracking even if the current
16842         graphics port changes.  We still want the coordinates in global screen
16843         coordinates.
16844
16845 2005-04-14  Jackson Harper  <jackson@ximian.com>
16846
16847         * TreeView.cs: Handle clicks when plus minus is disabled. Don't
16848         check plus minus or checkbox clicks unless those features are enabled.
16849
16850 2005-04-14  Jackson Harper  <jackson@ximian.com>
16851
16852         * TreeView.cs: Add methods for setting the top and bottom visible
16853         nodes. TreeNode::EnsureVisible uses these methods.
16854         * TreeNode.cs: Implement EnsureVisible
16855
16856 2005-04-13  Jordi Mas i Hernandez <jordi@ximian.com>
16857
16858         * Form.cs: Pospone menu assignation if the window has not been created yet
16859         * XplatUIWin32.cs: Fixes Win32SetWindowPos, then does not change window
16860         size and position
16861
16862 2005-04-12  Jackson Harper  <jackson@ximian.com>
16863
16864         * TreeView.cs: Set the TopNode properly when scrolling
16865         occurs. This has the added benifit of reducing the amount of
16866         walking that needs to be done when drawing. Also removed an old
16867         misleading TODO.
16868         * OpenTreeNodeEnumerator.cs: Fix moving backwards.
16869         
16870 2005-04-11  Jordi Mas i Hernandez <jordi@ximian.com>
16871
16872         * Timer.cs: fixes interval setting when the timer is already enabled
16873         
16874 2005-04-10  Alexander Olk  <xenomorph2@onlinehome.de>
16875
16876         * FolderBrowserDialog.cs: First approach
16877
16878 2005-04-09  Peter Bartok  <pbartok@novell.com>
16879
16880         * FolderBrowserDialog: Added
16881
16882 2005-04-07  Jordi Mas i Hernandez <jordi@ximian.com>
16883
16884         * LinkLabel.cs: move drawing code into the theme
16885         * ThemeWin32Classic.cs: drawing code and painting background bugfix
16886         * Theme.cs: define DrawLinkLabel method
16887
16888 2005-04-05  Jackson Harper  <jackson@ximian.com>
16889
16890         * BindingContext.cs: Use weak references so these bad actors don't
16891         stay alive longer then they need to.
16892
16893 2005-04-05  Jackson Harper  <jackson@ximian.com>
16894
16895         * ListControl.cs: Basic implementation of complex databinding.
16896         * ComboBox.cs:
16897         * ListBox.cs: Add calls to ListControl databinding methods.
16898
16899 2005-04-05  Alexander Olk  <xenomorph2@onlinehome.de>
16900
16901         * FileDialog.cs:
16902           - Don't change PopupButtonState to Normal when the
16903             PopupButton gets pressed several times.
16904           - Renamed ButtonPanel to PopupButtonPanel
16905
16906 2005-04-05  Jordi Mas i Hernandez <jordi@ximian.com>
16907
16908         * ColorDialog.cs: Use cached objects instead of creating them
16909         * LinkLabel.cs: Use cached objects instead of creating them
16910         * Splitter.cs: Use cached objects instead of creating them
16911         * FontDialog.cs: Use cached objects instead of creating them
16912         * PropertyGridView.cs: Use cached objects instead of creating them
16913         * MessageBox.cs: Use cached objects instead of creating them
16914         * FileDialog.cs: Use cached objects instead of creating them
16915         * ThemeWin32Classic.cs: Use cached objects instead of creating them
16916         * TreeView.cs: Use cached objects instead of creating them
16917         
16918 2005-04-04  Jordi Mas i Hernandez <jordi@ximian.com>
16919
16920         * Control.cs: use Equals to compare the font since no == op
16921         * ScrollBar.cs: use Equals to compare the font since no == op
16922
16923 2005-04-04  Alexander Olk  <xenomorph2@onlinehome.de>
16924
16925         * SaveFileDialog.cs: Open stream in OpenFile with FileMode Create
16926
16927 2005-04-01  Jackson Harper  <jackson@ximian.com>
16928
16929         * Binding.cs: Implement IsBinding.
16930         * BindingManagerBase.cs:
16931         * PropertyManager.cs:
16932         * CurrencyManager.cs: Add IsSuspended property.
16933
16934 2005-04-01  Jackson Harper  <jackson@ximian.com>
16935
16936         * Binding.cs: Had some IsAssignableFrom calls backwards.
16937
16938 2005-04-01  Jackson Harper  <jackson@ximian.com>
16939
16940         * Binding.cs: Handle null data members when pulling data.
16941         * PropertyManager.cs: Handle the data member being a property that
16942         does not exist.
16943
16944 2005-04-01  Jordi Mas i Hernandez <jordi@ximian.com>
16945
16946         * DataGridTextBoxColumn.cs: fixes signature
16947         * DataGrid.cs: calls right constructor
16948
16949 2005-04-01  Jordi Mas i Hernandez <jordi@ximian.com>
16950
16951         * DataGridTextBoxColumn.cs: implements DataGridTextBoxColumn class
16952         * GridColumnStylesCollection.cs: implements GridColumnStylesCollection
16953         * GridTableStylesCollection.cs: implements GridTableStylesCollection
16954         * DataGridTableStyle.cs: implements DataGridTableStyle
16955         * DataGridBoolColumn.cs: implements DataGridBoolColumn
16956         * DataGridTextBox.cs: implements DataGridTextBox
16957         * DataGridColumnStyle.cs: implements DataGridColumnStyle
16958
16959 2005-03-31  Alexander Olk  <xenomorph2@onlinehome.de>
16960
16961         * FileDialog.cs: Added simple PopupButton class for ButtonPanel
16962
16963 2005-03-29  Peter Bartok  <pbartok@novell.com>
16964
16965         * Application.cs:
16966           - Properly implemented CompanyName property
16967           - Fixed LocalUserAppDataPath and UserAppDataPath, now properly
16968             returns a path that includes CompanyName, ProductName and
16969             Version (fixes bug #70330)
16970
16971 2005-03-29  Stefan Buehler  <sbuehler@gmx.ch>
16972
16973         * TabPage.cs: Don't use Owner.DisplayRectangle unless owner is valid,
16974           fixes bug #72588.
16975
16976 2005-03-28  Alexander Olk  <xenomorph2@onlinehome.de>
16977
16978         * FileDialog.cs, SaveFileDialog.cs OpenFileDialog.cs:
16979         
16980           - Added ReadOnly CheckBox
16981           - Further refactoring: moved some code from Open-/SaveFileDialog
16982             to FileDialog
16983
16984 2005-03-28  Alexander Olk  <xenomorph2@onlinehome.de>
16985
16986         * OpenFileDialog.cs: Fixed CheckFileExists
16987         * FileDialog.cs:
16988           Moved FileView and DirComboBox outside FileDialog class.
16989           They can now be used outside FileDialog
16990
16991 2005-03-27  Alexander Olk  <xenomorph2@onlinehome.de>
16992
16993         * FileDialog.cs: Added a contextmenu to change ShowHiddenFiles
16994         * SaveDialog.cs, OpenFileDialog.cs: Fixes for Reset() method
16995
16996 2005-03-27  Alexander Olk  <xenomorph2@onlinehome.de>
16997
16998         * FileDialog.cs, OpenFileDialog.cs, SaveFileDialog.cs:
16999           - Added missing CreatePrompt property in SaveDialog
17000           - Overall SaveDialog handling should be better now
17001           - Added non standard ShowHiddenFiles property
17002           - Added extension, CreatePrompt and OverwritePrompt support in SaveDialog
17003           - Added InitialDirectory and RestoreDirectory support
17004
17005 2005-03-26  Alexander Olk  <xenomorph2@onlinehome.de>
17006
17007         * FileDialog.cs: Made dirComboBox usable
17008
17009 2005-03-24  Alexander Olk  <xenomorph2@onlinehome.de>
17010
17011         * FileDialog.cs: Added Filter support (case sensitiv)
17012
17013 2005-03-24  Jackson Harper  <jackson@ximian.com>
17014
17015         * TabControl.cs: Need a couple more pixels for the lines.
17016
17017 2005-03-23  Jackson Harper  <jackson@ximian.com>
17018
17019         * TabControl.cs: Give the tab page focus when it is selected.
17020
17021 2005-03-23  Jackson Harper  <jackson@ximian.com>
17022
17023         * TabControl.cs: Account for the drawing of tabs borders when
17024         invalidating. If the slider was clicked dont do click detection on
17025         the tabs.
17026
17027 2005-03-23  Jackson Harper  <jackson@ximian.com>
17028
17029         * TabControl.cs: Fix typo, emilinates an unneeded expose event.
17030
17031 2005-03-22  Jonathan Chambers  <jonathan.chambers@ansys.com>
17032
17033         * CategoryGridEntry.cs: Added
17034         * GridItem.cs: Added helper properties
17035         * PropertyGridTextBox.cs: Custom textbox control for PropertyGrid.
17036         * GridEntry.cs: Updated code for collection
17037         * PropertyGrid.cs: Cleaned up some formatting
17038         * PropertyGridView.cs: Added drop down functionality for enums.
17039         * GridItemCollection.cs: Added enumerator logic
17040         * PropertyGridEntry.cs: Added
17041
17042 2005-03-19  Alexander Olk  <xenomorph2@onlinehome.de>
17043
17044         * FileDialog.cs:
17045           - Removed unnecessary commented code
17046           - Fixed handling for entering the filename manually in the combobox
17047
17048 2005-03-19  Alexander Olk  <xenomorph2@onlinehome.de>
17049
17050         * FileDialog.cs, OpenFileDialog.cs: OpenFileDialog Multiselect now works
17051
17052 2005-03-18  Peter Bartok  <pbartok@novell.com>
17053
17054         * ThemeWin32Classic.cs: Moved listview column headers a bit, to avoid
17055           them being touching the border
17056
17057 2005-03-18  Peter Bartok  <pbartok@novell.com>
17058
17059         * TextControl.cs: Quick hack to center text better
17060
17061 2005-03-18  Peter Bartok  <pbartok@novell.com>
17062
17063         * ControlPaint.cs:
17064           - Don't throw NotImplemented exceptions, just print a notice once
17065             instead (requested by Miguel). This makes running existing SWF
17066             apps a bit easier
17067         * Control.cs:
17068           - Commented out Drag'N'Drop XplatUI call (no driver support yet)
17069           - Added context menu trigger on right click
17070         * Panel.cs: Trigger invalidate on resize
17071         * StatusBar.cs:
17072           - Removed old double-buffer drawing
17073           - Added ResizeRedraw style to force proper update of statusbar
17074         * ListView.cs:
17075           - Removed debug output
17076         * ThemeWin32Classic.cs:
17077           - Fixed drawing of status bar, now draws Text property if there
17078             are no defined panels
17079
17080 2005-03-18  Jackson Harper  <jackson@ximian.com>
17081
17082         * ImageList.cs: When the image stream is set pull all the images
17083         from it.
17084         * ImageListStreamer.cs: Implement reading image list streams.
17085
17086 2005-03-18  Peter Bartok  <pbartok@novell.com>
17087
17088         * ThemeWin32Classic.cs (DrawPictureBox):
17089           - Fixed calculations for centered drawing
17090           - Fixed drawing for normal mode, not scaling the image on normal
17091
17092 2005-03-18  Peter Bartok  <pbartok@novell.com>
17093
17094         * ComboBox.cs: Now also firing the OnKeyPress events for the embedded
17095           textbox
17096         * FileDialog.cs:
17097           - Made Open/Save button the accept button for FileDialog
17098           - Tied the cancel button to the IButtonControl cancel button
17099           - Save/Open now properly builds the pathname
17100           - Now handles user-entered text
17101           - Preventing crash on right-click if no item is selected
17102           - Fixed Text property, now uses contents of textbox
17103           - Fixed SelectedText property, now just returns the text part that
17104             is selected in the text box
17105
17106 2005-03-18  Jackson Harper  <jackson@ximian.com>
17107
17108         * ThemeWin32Classic.cs: Use the proper func for drawing the focus
17109         rect, make sure to de-adjust the interior rect after drawing the
17110         tab text.
17111
17112 2005-03-18  Peter Bartok  <pbartok@novell.com>
17113
17114         * MenuAPI.cs: Remove menu *before* executing selected action to
17115           prevent the menu from 'hanging around'
17116           
17117 2005-03-17  Geoff Norton  <gnorton@customerdna.com>
17118
17119         * XplatUIOSX.cs: Implemented WorkingArea property
17120
17121 2005-03-17  Peter Bartok  <pbartok@novell.com>
17122
17123         * XplatUIX11.cs: Fixed menu coord calculations
17124         * MenuAPI.cs: Now using new ScreenToMenu()/MenuToScreen() methods
17125           for calculating offsets
17126
17127 2005-03-17  Peter Bartok  <pbartok@novell.com>
17128
17129         * Hwnd.cs: Do not consider menu presence for default client
17130           rectangle location/size
17131         * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs, XplatUIOSX.cs,
17132           XplatUIWin32.cs: Added MenuToScreen() and ScreenToMenu() coord
17133           translation functions
17134         * FileDialog.cs: Fixed (what I presume is a) typo
17135
17136 2005-03-17  Jonathan Gilbert  <logic@deltaq.org>
17137
17138         * XplatUIX11.cs: Added call to XInitThreads() to allow multi-threaded
17139           X access (avoids X-Async errors)
17140
17141 2005-03-16  Jackson Harper  <jackson@ximian.com>
17142
17143         * TabControl.cs: Raise the SelectedIndexChanged event.
17144
17145 2005-03-16  Alexander Olk  <xenomorph2@onlinehome.de>
17146
17147         * FileDialog.cs, OpenFileDialog.cs, SaveFileDialog.cs:
17148           - Removed vertical ToolBar and replaced it with a custom panel
17149             (desktop and home button already work)
17150           - Added Help button (some controls get resized or relocated then)
17151           - Draw correct text depending on Open or Save.
17152           - Fixed some typos...
17153
17154 2005-03-16  Jordi Mas i Hernandez <jordi@ximian.com>
17155
17156         * ScrollBar.cs:
17157           - Only change Maximum and Minimum when need it (bug fix)
17158
17159 2005-03-15  Peter Bartok  <pbartok@novell.com>
17160
17161         * Form.cs: Use Handle for icon, to trigger creation if
17162           the window does not yet exist
17163         * Control.cs:
17164           - CanSelect: Slight performance improvement
17165           - Focus(): Preventing possible recursion
17166           - Invalidate(): Removed ControlStyle based clear flag setting
17167           - WM_PAINT: fixed logic for calling OnPaintBackground
17168           - WM_ERASEBKGND: Fixed logic, added call to new driver method
17169             EraseWindowBackground if the control doesn't paint background
17170         * XplatUIWin32.cs:
17171           - Moved EraseWindowBackground() method to internal methods
17172           - Removed unused WM_ERASEBKGND handling in GetMessage; msg never comes;
17173             is sent via SendMessage on BeginPaint call on Win32
17174         * XplatUIX11.cs:
17175           - Added EraseWindowBackground() method
17176           - No longer sends WM_ERASEBKGND on .Expose, but on call to
17177             PaintEventStart, which more closely matches Win32 behaviour
17178           - Fixed Invalidate() call, now updates new ErasePending Hwnd property
17179           - Fixed SetFocus() to properly deal with client and whole windows
17180         * Hwnd.cs: Added ErasePending property
17181         * XplatUIOSX.cs: Stubbed EraseWindowBackground() method
17182         * XplatUI.cs, XplatUIDriver.cs: Added EraseWindowBackground() method
17183
17184 2005-03-12  Geoff Norton  <gnorton@customerdna.com>
17185
17186         * XplatUIOSX.cs:
17187           - Fix hard loop when timers exist.
17188           - Fix bugs with middle and right click for 3 button mice.
17189
17190 2005-03-11  Peter Bartok  <pbartok@novell.com>
17191
17192         * XplatUIX11.cs:
17193           - get_WorkingArea: Need to call X directly, GetWindowPos only
17194             returns cached data now
17195           - Added sanity check to GetWindowPos hwnd usage
17196
17197 2005-03-11  Jackson Harper  <jackson@ximian.com>
17198
17199         * BindingManagerBase.cs: This method isn't used anymore as
17200         PullData now updates the data in the control.
17201
17202 2005-03-11  Jordi Mas i Hernandez <jordi@ximian.com>
17203
17204         * Form.cs: fixes menu drawing on X11
17205         * MenuAPI.cs:  fixes menu drawing on X11
17206
17207 2005-03-11  Peter Bartok  <pbartok@novell.com>
17208
17209         * Control.cs: Changed OnCreateControl behaviour based on a suggestion
17210           from Jonathan Gilbert; should fix bug #73606
17211         * XplatUIX11.cs: Fixed NC Mouse message coordinates, they need to be
17212           in Screen coordinates. Thanks, Jordi.
17213         * Form.cs: Added missing attribute
17214
17215 2005-03-11  Peter Bartok  <pbartok@novell.com>
17216
17217         * Form.cs:
17218           - Rudimentary Mdi support
17219           - Removed outdated FormParent code
17220           - Implemented lots of missing properties and methods, still missing
17221             transparency support
17222           - Added missing attributes
17223           - Implemented support for MaximumBounds
17224           - Added firing of various events
17225         * XplatUI.cs: Added SetIcon() method
17226         * XplatUIDriver.cs: Added SetIcon() abstract
17227         * XplatUIOSX.cs: Stubbed out SetIcon() method
17228         * XplatUIX11.cs:
17229           - Implemented SetIcon() support
17230           - Moved SetMenu() and SetBorderStyle() to proper alphabetical pos
17231           - Switched to unix line endings
17232         * XplatUIWin32.cs:
17233           - Made POINT internal so for can access it as part of MINMAX
17234           - Implemented SetIcon() support
17235           - Implemented support for CLIENTCREATESTRUCT (but might have to drop
17236             native Mdi support again, might have to go managed)
17237         * Control.cs: Now fires the StyleChanged event
17238         * MdiClient.cs: Added; still mostly empty
17239
17240 2005-03-10  Peter Bartok  <pbartok@novell.com>
17241
17242         * SaveFileDialog.cs: Added emtpy file
17243
17244 2005-03-08  Peter Bartok  <pbartok@novell.com>
17245
17246         * Control.cs: Fixed bug #73190; now invokes CreateControl (which
17247           in turn triggers OnCreateContro) when creating a handle for the
17248           first time.
17249         * TextControl.cs: Fixed endless loop in certain cases when
17250           replacing the current selection
17251
17252 2005-03-08  Jordi Mas i Hernandez <jordi@ximian.com>
17253
17254         * ScrollBar.cs:
17255           - Honors NewValue changes in Scroll events allowing apps to change it
17256           - Adds First and Last Scroll events
17257           - Fixes Thumb events
17258
17259 2005-03-07  Peter Bartok  <pbartok@novell.com>
17260
17261         * Hwnd.cs: Added DefaultClientRectangle property
17262         * XplatUI.cs: Now using the X11 driver Where() method, which provides
17263           more detailed debug information
17264         * XplatUIX11.cs:
17265           - Fixed size-change feedback loop, where we would pull an old size
17266             off the queue and mistakenly change our window's size to an
17267             earlier value
17268           - Now compressing ConfigureNotify events, to reduce looping and
17269             redraw issues
17270         * TextBoxBase.cs: Preventing crash when no text is set and ToString()
17271           is called
17272
17273 2005-03-07  Jackson Harper  <jackson@ximian.com>
17274
17275         * Binding.cs: Push data pushes from data -> property. Check if the
17276         property is readonly when attempting to set it.
17277
17278 2005-03-07  Jackson Harper  <jackson@ximian.com>
17279
17280         * Binding.cs: Format and parse data correctly. Use ASsignableFrom
17281         instead of IsSubclassOf. Pulling data now sets the value on the
17282         control.
17283         * PropertyManager.cs:
17284         * CurrencyManager.cs: Just need to pull data when updating now,
17285         because PullData will set the value on the control.
17286
17287 2005-03-04  Jackson Harper  <jackson@ximian.com>
17288
17289         * Binding.cs: Implement data type parsing and converting on pulled
17290         data. TODO: Are there more ways the data can be converted?
17291
17292 2005-03-04  Jackson Harper  <jackson@ximian.com>
17293
17294         * Binding.cs: Support <Property>IsNull checks. Also bind to the
17295         controls Validating method so we can repull the data when the
17296         control loses focus.
17297
17298 2005-03-03  Jordi Mas i Hernandez <jordi@ximian.com>
17299
17300         * ColumnHeader.cs:
17301           - Fixes null string format
17302           
17303         * ListView.cs:
17304           - Adds enum type checks
17305           - Fixes redrawing and recalc need after changing some properties
17306           - Fixes on focus_item set after the event
17307           - Fixes adding columns after the control has been created
17308           
17309         * ThemeWin32Classic.cs:
17310           - Fixes CheckBox focus rectangle
17311           - Fixes ColumnHeader drawing
17312
17313
17314 2005-03-03  Jackson Harper  <jackson@ximian.com>
17315
17316         * Binding.cs: Bind to <Property>Changed events so we can detect
17317         when properties are changed and update the data.
17318
17319 2005-03-02  Jordi Mas i Hernandez <jordi@ximian.com>
17320
17321         * ImageList.cs:
17322           - Changes 32-bit pixel format to Format32bppArgb to allow transparency
17323           - Fixes ImageList constructor with ImageList container
17324           - Fixes image scaling (wrong parameters at DrawImage)
17325
17326 2005-02-02  Jackson Harper  <jackson@ximian.com>
17327
17328         * Binding.cs: Make property searches case-insensitive. Eliminate
17329         some duplicated code.
17330
17331 2005-03-01  Jordi Mas i Hernandez <jordi@ximian.com>
17332
17333         * ComboBox.cs:
17334                 - Handle focus event
17335                 - Fix scrollbar events
17336                 - Discard highlighted item if remove it
17337                 - Fixes SelectedItem with strings
17338
17339 2005-03-01  Peter Bartok  <pbartok@novell.com>
17340
17341         * Control.cs:
17342           - Fixed Visible property, now follows (once again) parent chain
17343             to return false if any control in the chain is visible=false
17344           - Fixed OnParentVisibleChanged, now just calls OnVisibleChanged event
17345           - Fixed several places where is_visible instead of Visible was used
17346           - Implemented FIXME related to focus selection when setting focused
17347             control to be invisible
17348
17349         * XplatUIWin32.cs: Now using proper method to find out if window is
17350           visible. Thanks to Jordi for pointing it out
17351
17352 2005-02-28  Jordi Mas i Hernandez <jordi@ximian.com>
17353
17354         * ComboBox.cs: show/hide scrollbar instead of creating it
17355
17356 2005-02-27  Jackson Harper  <jackson@ximian.com>
17357
17358         * CurrencyManager.cs: Add PositionChanged stuff.
17359
17360 2005-02-27  Peter Bartok  <pbartok@novell.com>
17361
17362         * XplatUI.cs, XplatUIDriver.cs: Added new GetMenuOrigin() method
17363         * XplatUIOSX.cs: Added GetMenuOrigin() stub
17364         * XplatUIWin32.cs: Implemented GetMenuOrigin()
17365         * XplatUIX11.cs:
17366           - Implemented GetMenuDC()
17367           - Implemented GetMenuOrigin()
17368           - Implemented ReleaseMenuDC()
17369           - Implemented generation of WM_NCPAINT message
17370           - Implemented generation and handling of WM_NCCALCSIZE message
17371         * Form.cs: Added debug helper message for Jordi's menu work
17372         * Hwnd.cs:
17373           - Modified ClientRect property; added setter, fixed getter to handle
17374             setting of ClientRect
17375           - Added MenuOrigin property
17376
17377 2005-02-26  Peter Bartok  <pbartok@novell.com>
17378
17379         * XplatUIX11.cs:
17380           - Destroys the caret if a window that's being destroyed contains it
17381           - Ignores expose events coming from the X11 queue for windows that
17382             already are destroyed
17383           - Now uses the proper variable for handling DestroyNotify, before we
17384             marked the wrong window as destroyed
17385           - Improved/added some debug output
17386
17387 2005-02-26  Peter Bartok  <pbartok@novell.com>
17388
17389         * X11Keyboard.cs: Fixes to work on 64bit systems
17390
17391 2005-02-26  Peter Bartok  <pbartok@novell.com>
17392
17393         * Control.cs:
17394           - Now calling OnHandleDestroyed from DestroyHandle()
17395             instead of Dispose()
17396           - Removed bogus call to controls.Remove() from DestroyHandle()
17397
17398 2005-02-26  Peter Bartok  <pbartok@novell.com>
17399
17400         * Control.cs: Properly destroy child windows when our handle is
17401           destroyed
17402
17403 2005-02-25  Peter Bartok  <pbartok@novell.com>
17404
17405         * XplatUI.cs:
17406           - Added 'DriverDebug' define to allow tracing XplatUI API calls
17407           - Alphabetized Static Methods and Subclasses
17408
17409         * XplatUIX11.cs:
17410           - Added XException class to allow custom handling of X11 exceptions
17411           - Created custom X11 error handler, tied into XException class
17412           - Added support for MONO_XEXCEPTIONS env var to allow the user
17413             to either throw an exception on X errors or continue running
17414             after displaying the error
17415           - Added handling of DestroyNotify message
17416           - Added handler for CreateNotify message (still disabled)
17417           - Improved (tried to at least) Where method to provide file and lineno
17418         * X11Structs.cs:
17419           - Added XErrorHandler delegate
17420           - Added XRequest enumeration (to suppor translation of errors)
17421
17422 2005-02-25  Jackson Harper  <jackson@ximian.com>
17423
17424         * PropertyManager.cs: Implement editing features
17425         * CurrencyManager.cs:
17426         * Binding.cs: First attempt at UpdateIsBinding
17427         * BindingManagerBase.cs: Call UpdateIsBinding before
17428         pushing/pulling data.
17429
17430 2005-02-25  Jordi Mas i Hernandez <jordi@ximian.com>
17431
17432         * MenuAPI.cs: Respect disabled items
17433         * ThemeWin32Classic.cs
17434                 - Caches ImageAttributes creation for DrawImageDisabled
17435                 - Fixes vertical menu line drawing
17436                 - Draws disabled arrows in disable menu items
17437
17438 2005-02-24  Peter Bartok  <pbartok@novell.com>
17439
17440         * Hwnd.cs:
17441           - Added UserData property to allow associating arbitrary objects
17442             with the handle
17443           - Fixed leak; now removing Hwnd references from static windows array
17444         * XplatUIWin32.cs:
17445           - Fixed Graphics leak in PaintEventEnd
17446           - Removed usage of HandleData, switched over to Hwnd class
17447         * HandleData.cs: Removed, obsoleted by Hwnd.cs
17448
17449 2005-02-24  Jordi Mas i Hernandez <jordi@ximian.com>
17450
17451         * ThemeWin32Classic.cs: Adds Cliping to TrackBar drawing
17452         * ScrollBar.cs: Fixes bug
17453         * TrackBar.cs: removes death code, clipping, mimize refreshes,
17454          keyboard navigation enhancements
17455
17456 2005-02-24  Jordi Mas i Hernandez <jordi@ximian.com>
17457
17458         * Control.cs: Call DefWndProc at WM_PAINT only if UserPaint not defined
17459         * GroupBox.cs: Add control styles
17460         * Label.cs: Add control styles
17461         * UpDownBase.cs: Add control styles
17462         * ListBox.cs: Add control styles
17463         * XplatUIWin32.cs: Fixes wrong parameter order
17464
17465
17466 2005-02-23  Chris Bacon  <chris.bacon@docobo.co.uk>
17467
17468         * ListView.cs: Assign owner for ColumnHeader. Patch by Chris Bacon
17469
17470 2005-02-23  Jackson Harper  <jackson@ximian.com>
17471
17472         * PropertyManager.cs: Implement property binding. This doesn't
17473         seem to work yet though as (I think) there are some bugs in
17474         System.ComponentModel.PropertyDescriptor.
17475         * BindingContext.cs: Use new PropertyManager constructor.
17476
17477 2005-02-23  Jordi Mas i Hernandez <jordi@ximian.com>
17478
17479         * ProgressBar.cs: use clip region in ProgressBar
17480         * ThemeWin32Classic.cs: use clip region in ProgressBar
17481
17482 2004-02-22  Jackson Harper  <jackson@ximian.com>
17483
17484         * BindingsCollection.cs: Remove some debug code.
17485
17486 2005-02-22  Jackson Harper  <jackson@ximian.com>
17487
17488         * BindingContext.cs:
17489         * ControlBindingsCollection.cs:
17490         * CurrencyManager.cs:
17491         * Binding.cs:
17492         * BindingManagerBase.cs: Initial implementation
17493         * BindingsCollection.cs: Add an internal contains method that the
17494         BindingManagerBase uses to ensure bindings aren't added twice to
17495         the collection.
17496         * PropertyManager.cs: Stubbed out.
17497         * Control.cs:
17498         * ContainerControl.cs: Hook up databinding
17499         
17500 2005-02-22  Geoff Norton  <gnorton@customerdna.com>
17501
17502         * XplatUIOSX.cs:
17503           OSXStructs.cs: Refactored to handle the new Hwnd NC logic area.
17504           Fixed Invalidate/Update chain.
17505           Fixed tons of other minor bugs (this is almost a complete rewrite).
17506
17507 2005-02-22  Jordi Mas i Hernandez <jordi@ximian.com>
17508
17509         * ComboBox.cs: do subcontrol creation when the control is created
17510
17511 2005-02-19  Jordi Mas i Hernandez <jordi@ximian.com>
17512
17513         * Label.cs: fixes image drawing (image and imagelist)
17514         * ThemeWin32Classic.cs: cache brushes
17515         
17516 2005-02-19  Jordi Mas i Hernandez <jordi@ximian.com>
17517
17518         * Form.cs: Move menu drawing code to Theme class
17519         * ComboBox.cs: Move ComboBox drawing code to Theme class
17520         * MenuItem.cs: Move menu drawing code to Theme class
17521         * MenuAPI.cs: Move menu drawing code to Theme class
17522         * ThemeWin32Classic.cs: New methods
17523         * CheckedListBox.cs: Move CheckedListbox drawing code to Theme class
17524         * ListBox.cs: Move Listbox drawing code to Theme class
17525         * Theme.cs: New methods
17526
17527 2005-02-20  Peter Bartok  <pbartok@novell.com>
17528
17529         * Control.cs:
17530           - Fixed ProcessKeyEventArgs to also handle WM_SYSKEY messages (and
17531             only process mnemonics on those)
17532           - Fixed event sequence for key handling; first calling
17533             ProcessKeyEventArgs now
17534         * TextBoxBase.cs:
17535           - Removed WM_KEYDOWN hook, instead we now use ProcessDialogKey()
17536             for processing non-character keys
17537           - Fixed WM_CHAR to generate proper event sequence before processing
17538         * XplatUIWin32.cs: Added ALT key state to ModifierKeys property
17539           generation
17540
17541 2005-02-19  Peter Bartok  <pbartok@novell.com>
17542
17543         * UserControl.cs: Added TextChanged event; added attributes
17544         * SizeGrip.cs: Implemented resizing and optional display of grip
17545         * Form.cs: Fixed attribute
17546         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs, XplatUIWin32.cs:
17547           Changed meaning of ScrollWindow bool argument; instead of the
17548           clear attribute (which will be true usually anyway), it gives the
17549           option of moving child controls as well.
17550         * XplatUIX11.cs:
17551           - Changed to match new ScrollWindow argument
17552           - Fixed GetWindowPos/SetWindowPos behaviour for toplevel controls,
17553             now handles the implicit parent window a WM puts around us
17554         * ScrollableControl.cs: Implemented (not the prettiest, but it seems
17555           to work)
17556         * TextBoxBase.cs: Adjusted to new ScrollWindow arguments
17557         * TreeView.cs: Adjusted to new ScrollWindow arguments
17558
17559 2005-02-19  Jordi Mas i Hernandez <jordi@ximian.com>
17560
17561         * Form.cs: Menu integration with non-client area
17562         * MenuItem.cs: Menu integration with non-client area
17563         * MenuAPI.cs: Menu integration with non-client area
17564
17565 2005-02-18  Peter Bartok  <pbartok@novell.com>
17566
17567         * MethodInvoker.cs: Added
17568         * MdiLayout.cs: Added
17569         * SendKeys.cs: Started implementation
17570         * ErrorIconAlignment.cs: Added
17571
17572 2005-02-18  Peter Bartok  <pbartok@novell.com>
17573
17574         * XplatUIWin32.cs: Implemented SetMenu(); fixed GetMenuDC()
17575         * Form.cs: Added handling for Menu-related Non-client messages
17576
17577 2005-02-17  Peter Bartok  <pbartok@novell.com>
17578
17579         * UpDownBase.cs: Fixed typo, compilation errors
17580         * DomainUpDown.cs: Fixed attribute value
17581
17582 2005-02-16  Miguel de Icaza  <miguel@novell.com>
17583
17584         * UpDownBase.cs: Attach entry events.
17585         Propagate events.
17586         Add ForeColor property, Focused, InterceptArrowKeys (interception
17587         does not work yet).
17588
17589 2005-02-17  Jordi Mas i Hernandez <jordi@ximian.com>
17590
17591         * Form.cs:
17592                 - Redraw non client are on Setmenu
17593                 - Calc proper menu starting point
17594
17595 2005-02-17  Peter Bartok  <pbartok@novell.com>
17596
17597         * Application.cs: Fixed message_filter check
17598
17599 2005-02-17  Peter Bartok  <pbartok@novell.com>
17600
17601         * Application.cs: Now calls registered message filters
17602         * DockStyle.cs: Fixed attribute
17603         * Form.cs: Fixed attribute
17604         * Menu.cs: Fixed attribute
17605         * ToolTip.cs: Fixed attribute
17606         * TreeNode.cs: Added missing attributes and arranged in regions
17607         * PropertyGrid.cs: Fixed signatures
17608         * TreeNodeCollection.cs: Added attributes
17609         * Splitter.cs: Added missing attributes; arranged into regions
17610         * TabPage.cs: Added missing attributes; arranged into regions
17611         * TextBoxBase.cs: Added missing attributes
17612         * TextBox.cs: Added missing attributes
17613         * ArrangeDirection.cs: Added missing attributes
17614         * TreeNodeConverter.cs: Added stub (needed for TreeNode)
17615         * ToolBarButton.cs: Fixed attributes
17616         * AnchorStyles.cs: Fixed attribute
17617         * TrackBar.cs: Fixed attributes
17618         * TabControl.cs: Added missing attributes and arranged into regions
17619         * ToolBar.cs: Fixed attribute
17620         * StatusBar.cs: Fixed signature, organized into regions and added
17621           attributes
17622         * StatusBarPanel.cs: Fixed attributes
17623         * ContentsResizedEventArgs.cs: Implemented
17624         * ContentsResizedEventHandler.cs: Implemented
17625         * DateBoldEventArgs.cs: Implemented
17626         * DateBoldEventHandler.cs: Implemented
17627         * UpDownEventArgs.cs: Implemented
17628         * UpDownEventHandler.cs: Implemented
17629         
17630 2005-02-16  Jordi Mas i Hernandez <jordi@ximian.com>
17631
17632         * Form.cs: first Menu NC refactoring
17633         * MenuAPI.cs: first Menu NC refactoring
17634         
17635 2005-02-16  Peter Bartok  <pbartok@novell.com>
17636
17637         * ImeMode.cs: Added missing attributes
17638         * Menu.cs: Fixed attribute
17639         * GroupBox.cs: Fixed attribute
17640         * Label.cs: Fixed attribute
17641         * ColorDialog.cs (RunDialog): Removed TODO attribute
17642         * ComboBox.cs: Fixed attributes
17643         * ListControl.cs: Added missing attributes
17644         * PropertyGrid.cs: Fixed attributes
17645         * Control.cs: Fixed attributes
17646         * ListViewItem.cs: Added TypeConverter attribute
17647         * NotifyIcon.cs: Fixed attributes
17648         * ListView.cs: Fixed attributes
17649         * ButtonBase.cs: Fixed attribute
17650         * ImageList.cs: Added missing attributes
17651         * ContainerControl.cs: Fixed signature
17652         * CheckedListBox.cs: Fixed attribute; added missing attributes
17653         * Panel.cs: Fixed attributes
17654         * PropertyTabChangedEventArgs.cs: Added missing attribute
17655         * PropertyValueChangedEventArgs.cs: Added missing attribute
17656         * Binding.cs: Fixed attribute
17657         * ListViewItemConverter: Implemented ListViewSubItemConverter class
17658         * ListBox.cs: Fixed attribute; added missing attributes;
17659         * ScrollableControl.cs: Added missing attributes
17660         * PictureBox.cs: Added missing attributes; implemented missing property
17661         * DateTimePicker.cs: Added missing attributes
17662         * Theme.cs (ToolWindowCaptionHeight): Fixed type
17663         * MonthCalendar.cs: Fixed attributes
17664         * StatusBarPanel.cs: Added missing attributes
17665         * SystemInformation.cs (ToolWindowCaptionHeight): Fixed type
17666
17667 2005-02-16  Peter Bartok  <pbartok@novell.com>
17668
17669         * TextBoxBase.cs: The previous method to enforce height yet remember
17670           the requested high was less than ideal, this is an attempt to do
17671           it better.
17672         * Control.cs: Added comment about possible problem
17673         * Copyright: Updated format
17674         * GridItemType.cs: Fixed swapped values
17675
17676 2005-02-15  Jackson Harper  <jackson@ximian.com>
17677
17678         * BaseCollection.cs: Use property so we never access an
17679         uninitialized list. Also initialize the list in the property.
17680
17681 2005-02-15  Peter Bartok  <pbartok@novell.com>
17682
17683         * GroupBox.cs (ProcessMnemonic): Implemented
17684         * Label.cs (ProcessMnemonic): Implemented
17685         * ThemeWin32Classic.cs (DrawGroupBox): Added stringformat to show
17686           hotkeys
17687
17688 2005-02-15  Peter Bartok  <pbartok@novell.com>
17689
17690         * RadioButton.cs (ProcessMnemonic): Implemented
17691         * CheckBox.cs (ProcessMnemonic): Implemented
17692         * Control.cs:
17693           - Added handling of WM_SYSxxx keyboard messages to support mnemonic
17694             handling
17695           - Added internal method to allow calling ProcessMnemonic from other
17696             controls
17697         * ContainerControl.cs:
17698           - Started support for handling validation chain handling
17699           - Implemented ProcessMnemonic support
17700           - Added Select() call to Active, to make sure the active control
17701             receives focus
17702         * Form.cs: Setting toplevel flag for Forms (this was lost in the
17703           FormParent rewrite)
17704         * ThemeWin32Classic.cs:
17705           - DrawCheckBox(): Fixed stringformat to show hotkeys
17706           - DrawRadioButton(): Fixed stringformat to show hotkeys
17707         * CommonDialog.cs: Removed WndProc override, not needed
17708
17709 2005-02-14  Peter Bartok  <pbartok@novell.com>
17710
17711         * XplatUIX11.cs: Fixed NotImplemented exceptions for properties,
17712           missed those in the rewrite
17713
17714 2005-02-14  Miguel de Icaza  <miguel@novell.com>
17715
17716         * NumericUpDown.cs (Increment, ToString): Add.
17717         (DecimalPlaces): implement.
17718         
17719         Add attributes.
17720         
17721         * UpDownBase.cs: Add the designer attributes.
17722
17723 2005-02-13  Peter Bartok  <pbartok@novell.com>
17724
17725         * Panel.cs: Removed border_style, now in Control
17726         * XplatUIDriver.cs: Added SetBorderStyle, SetMenu, GetMenuDC and
17727           ReleaseMenuDC Methods; renmaed ReleaseWindow to UngrabWindow
17728
17729 2005-02-13  Peter Bartok  <pbartok@novell.com>
17730
17731         * MouseButtons.cs: Added missing attributes
17732         * XplatUIStructs.cs: Added enumeration for title styles
17733         * LeftRightAlignment.cs: Added missing attributes
17734         * Hwnd.cs: Switched to use client_window as handle (slower, but makes
17735           it compatible with Graphics.FromHwnd()
17736         * SelectedGridItemChangedEventArgs.cs: Fixed property type
17737         * Keys.cs: Added missing attributes
17738         * SelectionRange.cs: Added missing attributes
17739         * SelectionRangeConverter.cs: Added
17740         * XplatUI.cs:
17741           - Introduced SetBorderStyle, SetMenu, GetMenuDC and
17742             ReleaseMenuDC methods
17743           - Renamed ReleaseWindow to UngrabWindow
17744           - Added proper startup notice to allow version identification
17745         * Form.cs:
17746           - Added missing attributes
17747           - Removed FormParent concept
17748         * Label.cs: Removed border_style field, now in Control
17749         * RadioButton.cs: Now properly selects RadioButton when focus is
17750           received
17751         * ThemeGtk.cs: Fixed SetDisplay call to match new X11 behaviour
17752         * Control.cs:
17753           - Added missing attributes
17754           - Added borderstyle handling
17755           - Removed FormParent concept support
17756           - Fixed calls to XplatUI to match changed APIs
17757           - Fixed bug that would case us to use disposed Graphics objects
17758           - Removed unneeded internal methods
17759           - PerformLayout(): Fixed to handle DockStyle.Fill properly
17760           - SelectNextControl(): Fixed to properly check common parents
17761         * TextBoxBase.cs: Removed border_style field (now in Control)
17762         * MessageBox.cs:
17763           - Patch by Robert Thompson (rmt@corporatism.org): Added icon support,
17764             fixed calculations for form size
17765           - Added support for localized strings and icons
17766           - Improved form size calculations, added border
17767         * ListView.cs: Removed border_style field (now in Control)
17768         * X11Structs.cs: Moved several structs from X11 driver here
17769         * X11Keyboard.cs: Changed debug message
17770         * Application.cs: Removed FormParent concept support
17771         * CommonDialog.cs:
17772           - Resetting end_modal flag
17773           - Removed FormParent concept support
17774         * NativeWindow.cs: Removed FormParent concept support
17775         * XplatUIX11.cs: Rewritten, now using the new Hwnd class, implementing
17776           Client area and Non-Client whole window to allow support for WM_NC
17777           messages
17778         * XplatUIOSX.cs: Updated to match latest driver spec; added exception
17779           prevent using it until it supports Hwnd as per Geoff Norton's request
17780         * ToolBar.cs: Fixed drawing, was not doing proper drawing
17781         * PictureBox.cs: Removed border_style field, now in Control
17782         * XplatUIWin32.cs: Added new driver methods
17783
17784 2005-02-12  Peter Bartok  <pbartok@novell.com>
17785
17786         * OpacityConverter.cs: Implemented
17787         * Hwnd.cs: Internal class to support drivers that need to emulate
17788           client area/non-client area window behaviour
17789
17790 2005-02-11  Peter Bartok  <pbartok@novell.com>
17791
17792         * KeysConverter.cs: Implemented
17793
17794 2005-02-11  Jordi Mas i Hernandez <jordi@ximian.com>
17795
17796         * Menu.cs: fixes methods GetContextMenu, GetMainMenu, ToString
17797         * LinkLabel: Added missing attributes
17798         * MainMenu.cs: fixes ToString
17799         * MenuItem.cs: fixes methods GetContextMenu, GetMainMenu
17800         * ListBox.cs: fixes event position
17801         * TrackBar.cs: adds missing attributes and events
17802         
17803 2005-02-10  Jordi Mas i Hernandez <jordi@ximian.com>
17804
17805         * MenuItem.cs: Use SystemInformation and bug fixes
17806         * MenuAPI.cs: Use SystemInformation and bug fixes
17807
17808 2005-02-09  Jackson Harper  <jackson@ximian.com>
17809
17810         * X11Keyboard.cs: We ignore some keys, but still need to set/reset
17811         their keystate otherwise things like VK_MENU get stuck "on".
17812
17813 2005-02-09  Kazuki Oikawa <kazuki@panicode.com>
17814
17815         * ListBox.cs: Fixes AddRange bug
17816         
17817 2005-02-09  Jordi Mas i Hernandez <jordi@ximian.com>
17818
17819         * ProgressBar.cs
17820                 - Add missing attributes
17821                 - Add missing method
17822                 
17823         * CheckedListBox.cs: Added missing attributes
17824                 - Add missing attributes
17825                 - Remove extra method
17826         
17827         * ComboBox.cs: Added missing attributes
17828         * VScrollBar.cs: Added missing attributes
17829         * ScrollBar.cs:  Added missing attributes
17830         * ListBox.cs: Fixes signature, add missing consts
17831         * LinkArea.cs:   Added missing attributes
17832         
17833
17834 2005-02-08  Peter Bartok  <pbartok@novell.com>
17835
17836         * Menu.cs: Added missing attributes
17837         * MainMenu.cs: Added missing attributes
17838         * GroupBox.cs: Added missing attributes
17839         * Label.cs: Added missing attributes
17840         * CheckBox.cs: Implemented CheckBoxAccessibleObject class
17841         * ColorDialog.cs:
17842           - Added Instance and Options properties
17843           - Added missing attributes
17844         * Cursor.cs: Made Serializable
17845         * NotifyIcon: Added missing attributes
17846         * MenuItem.cs: Added missing attributes
17847         * TextBoxBase.cs: Implemented AppendText() and Select() methods
17848         * Panel.cs: Added Missing attributes
17849         * MonthCalendar.cs: Fixed CreateParams
17850
17851 2005-02-08  Jordi Mas i Hernandez <jordi@ximian.com>
17852         
17853         * LinkLabel.cs:
17854                 - Fixes signature
17855                 - Fixes issues with links
17856                 - Adds the class attributes
17857
17858 2005-02-08  Jordi Mas i Hernandez <jordi@ximian.com>
17859         
17860         * ComboBox.cs:
17861                 - Fixes button when no items available in dropdown
17862                 - Fixes repainting problems
17863                 - Adds the class attributes
17864                 
17865 2005-02-07  Geoff Norton  <gnorton@customerdna.com>
17866
17867         * XplatUIOSX.cs: Detect the menu bar and title bar height from
17868         the current theme.  Cache these on startup.
17869
17870 2005-02-07  Jackson Harper  <jackson@ximian.com>
17871
17872         * ScrollBar.cs: Give the correct clipping rect to the theme. Dirty
17873         the scrollbar buttons when they are depressed.
17874
17875 2005-02-07  Geoff Norton  <gnorton@customerdna.com>
17876
17877         * XplatUIOSX.cs: Really fix working at resolutions not 1024x768.
17878         Get the display size from the main displayid.  We currently dont
17879         support multiple display configurations.
17880
17881 2005-02-07  Geoff Norton  <gnorton@customerdna.com>
17882
17883         * XplatUIOSX.cs: Ensure the window doesn't get stuck behind the statusbar.
17884
17885 2005-02-07  Miguel de Icaza  <miguel@novell.com>
17886
17887         * UpDownBase.cs: Add ReadOnly and UpDownAlign properties.
17888
17889 2005-02-05  Jonathan Chambers  <jonathan.chambers@ansys.com>
17890
17891         * PropertyGrid.cs: Updated. Patch by Jonathan Chambers
17892
17893 2005-02-04  Jackson Harper  <jackson@ximian.com>
17894
17895         * ThemeWin32Classic.cs: Respect the clipping rect when
17896         drawing. Only fill the intersection of clips and rects so there
17897         isn't a lot of large fills.
17898         * ScrollBar.cs: Pass the correct clipping rect to the theme
17899         engine. Remove some debug code.
17900
17901 2005-02-05  John BouAntoun  <jba-mono@optusnet.com.au>
17902         
17903         * DateTimePicker.cs:
17904                 - Fixed crash on DateTime.Parse, use Constructor instead
17905
17906 2005-02-04  Jordi Mas i Hernandez <jordi@ximian.com>
17907         
17908         * MenuItem.cs:
17909         * MenuAPI.cs:
17910                 - Owner draw support (MeasureItem and DrawItem)
17911
17912 2005-02-04  Jordi Mas i Hernandez <jordi@ximian.com>
17913         
17914         *  Menu.cs:
17915                 - Implements FindMergePosition and MergeMenu functions (very poor documented)
17916                 - Fixes MenuItems.Add range
17917         * MenuItem.cs:
17918                 - MergeMenu and Clone and CloneMenu functions
17919
17920 2005-02-03  Jackson Harper  <jackson@ximian.com>
17921
17922         * ScrollBar.cs: Make abstract
17923         * ScrollableControl.cs: Create H/V scrollbars now that scrollbar
17924         is abstract.
17925
17926 2005-02-03  Jackson Harper  <jackson@ximian.com>
17927
17928         * ScrollBar.cs: First part of my scrollbar fixups. This removes
17929         all the unneeded refreshes and uses invalidates with properly
17930         computed rects.
17931
17932 2005-02-03  Peter Bartok  <pbartok@novell.com>
17933
17934         * ComponentModel.cs: Added
17935         * IDataGridEditingService.cs: Added
17936         * Timer.cs: Added missing attributes
17937         * ToolTip.cs: Added missing attributes
17938
17939 2005-02-03  Jonathan Chambers  <jonathan.chambers@ansys.com>
17940
17941         * PropertyGridView.cs: Added. Patch by Jonathan Chambers
17942
17943 2005-02-03  Peter Bartok  <pbartok@novell.com>
17944
17945         * ListBox.cs: Added missing attributes
17946
17947 2005-02-03  Jordi Mas i Hernandez <jordi@ximian.com>
17948         
17949         * ListBox.cs:
17950                 - Fixes font height after font change
17951                 - Avoid generating unnecesary OnSelectedIndexChanged on clearing
17952                 
17953 2005-02-02  Peter Bartok  <pbartok@novell.com>
17954
17955         * HandleData.cs: Introduced static methods to allow class
17956           to be more self-contained and track it's own HandleData objects
17957         * XplatUIOSX.cs, XplatUIWin32.cs, XplatUIX11.cs: Fixed usage of
17958           HandleData to use new static methods
17959
17960 2005-02-02  Jordi Mas i Hernandez <jordi@ximian.com>
17961
17962         * Combobox.cs:
17963                 - Fixes default size and PreferredHeight
17964                 - Missing events
17965                 - ObjectCollection.Insert implementation
17966                 
17967         * ListControl.cs
17968                 - Fixes signature
17969         * ListBox.cs:
17970                 - Several fixes
17971                 - ObjectCollection.Insert implementation
17972                 - No selection after clean
17973                 - Small fixes
17974
17975 2005-01-31      John BouAntoun  <jba-mono@optusnet.com.au>
17976
17977         * ThemeWin32Classic.cs: quick fix to comboboxbutton pushed painting
17978
17979 2005-02-01  Jordi Mas i Hernandez <jordi@ximian.com>
17980
17981         * Combobox.cs:
17982                 - Caches ItemHeight calculation for OwnerDrawVariable
17983                 - Handles dropdown properly
17984                 - Fixes several minor bugs
17985
17986 2005-01-31  Jordi Mas i Hernandez <jordi@ximian.com>
17987
17988         * ListBox.cs:
17989                 - Fixes 71946 and 71950
17990                 - Fixes changing Multicolumn on the fly
17991                 - Fixes keyboard navigation on Multicolumn listboxes
17992
17993 2005-01-31  Geoff Norton  <gnorton@customerdna.com>
17994         
17995         * XplatUIOSX.cs: Call ExitToShell in our teardown to avoid a
17996         crash reporter log.
17997
17998 2005-01-31  Geoff Norton  <gnorton@customerdna.com>
17999
18000         * XplatUIOSX.cs: Allow applications to actually exit.
18001
18002 2005-01-31  Geoff Norton  <gnorton@customerdna.com>
18003
18004         * XplatUIOSX.cs: SetWindowStyle implemented.  Reposition views in
18005         their parent at creation time rather than lazily later.  Fixes a major
18006         regression we were experiencing.
18007
18008 2005-01-31      John BouAntoun  <jba-mono@optusnet.com.au>
18009
18010         * ThemeWin32Classic.cs: more date time picker painting fixes
18011         * DateTimePicker.cs: more monthcalendar drop down fixes
18012         * MonthCalendar.cs: more CreateParams fixes to ensure correct drop down
18013
18014 2005-01-31  Jordi Mas i Hernandez <jordi@ximian.com>
18015
18016         * ScrollBar.cs:
18017                 - When moving the thumb going outside the control should stop the moving
18018                 - Adds the firing of missing events
18019                 - Fixes no button show if Size is not specified
18020                 - End / Home keys for keyboard navigation
18021
18022 2005-01-30  Peter Bartok  <pbartok@novell.com>
18023
18024         * NotifyIcon.cs (CalculateIconRect): Removed debug output and added
18025           sanity check to prevent theoretical loop
18026         * XplatUIWin32.cs (SetVisible): Removed debug output
18027         * XplatUIX11.cs (SystrayChange): Added sanity check
18028         * ScrollableControl.cs (OnVisibleChanged): Now calls base method
18029         * Control.cs (OnVisibleChanged): Added workaround for ParentForm
18030           behaviour, valid until the X11 client window rewrite is done
18031         * TextBox.cs (ctor): Setting proper default foreground and background
18032           colors
18033
18034 2005-01-30      John BouAntoun  <jba-mono@optusnet.com.au>
18035
18036         * Theme: Added DrawDateTimePicker to interface
18037         * ThemeWin32Classic.cs: Added DrawDateTimePicker (incomplete)
18038         * DateTimePicker.cs: Created (still needs keys and painting code)
18039         * DateTimePickerFormat.cs: added
18040         * MonthCalendar.cs: fixed CreateParams for popup window mode
18041           
18042 2005-01-29  Peter Bartok  <pbartok@novell.com>
18043
18044         * ControlPaint.cs: Fixed luminace value returned on achromatic colors,
18045           this should also the calculations for ligher/darker
18046         * Theme.cs: Fixed defaults for ScrollBar widths/heights
18047
18048 2005-01-29  Peter Bartok  <pbartok@novell.com>
18049
18050         * ArrangeDirection.cs: Added
18051         * ArrangeStartingPositon.cs: Added
18052         * SystemInformation.cs: Implemented
18053         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs, XplatUIWin32.cs,
18054           XplatUIX11.cs, Theme.cs: Added/implemented new static properties
18055           used by SystemInformation class
18056         * X11Strucs.cs: Added XSizeHints structure
18057         * MenuAPI.cs:
18058           - Fixed CreateParams to make sure the menu window is always visible
18059           - TrackPopupMenu: Added check to make sure we don't draw the
18060             menu offscreen
18061
18062 2005-01-29  Peter Bartok  <pbartok@novell.com>
18063
18064         * HandleData.cs: Added method for altering invalid area
18065         * TextBoxBase.cs: Implemented TextLength
18066
18067 2005-01-28  Peter Bartok  <pbartok@novell.com>
18068
18069         * XplatUIX11.cs: Improvement over last patch, not sending
18070           the WM_PAINT directly anymore, instead we scroll any pending
18071           exposed areas and let the system pick out the WM_PAINT later
18072
18073 2005-01-28  Peter Bartok  <pbartok@novell.com>
18074
18075         * SWF.csproj: Deleted, no longer used. Instead,
18076           Managed.Windows.Forms/SWF.csproj should be used
18077         * XplatUIX11.cs: Instead of posting the WM_PAINT, we send it
18078           directly, to avoid a potential race condition with the next
18079           scroll
18080
18081 2005-01-28  Peter Bartok  <pbartok@novell.com>
18082
18083         * XplatUI.cs: Made class internal
18084
18085 2005-01-28  Jordi Mas i Hernandez <jordi@ximian.com>
18086
18087         * CheckedListBox.cs:
18088                 - Draw focus
18089                 - Fixed Drawing
18090                 - Missing methods and events
18091
18092 2005-01-27  Peter Bartok  <pbartok@novell.com>
18093
18094         * Application.cs (Run): Don't use form if we don't have one
18095
18096 2005-01-27  Peter Bartok  <pbartok@novell.com>
18097
18098         * TextBoxBase.cs (get_Lines): Fixed index off by one error
18099
18100 2005-01-27  Peter Bartok  <pbartok@novell.com>
18101
18102         * GridEntry.cs: Added; Patch by Jonathan S. Chambers
18103         * GridItem.cs: Added; Patch by Jonathan S. Chambers
18104         * GridItemCollection.cs: Added; Patch by Jonathan S. Chambers
18105         * GridItemType.cs: Added; Patch by Jonathan S. Chambers
18106         * PropertyGrid.cs: Added; Patch by Jonathan S. Chambers
18107         * PropertySort.cs: Added; Patch by Jonathan S. Chambers
18108         * PropertyTabChangedEventArgs.cs: Added; Patch by Jonathan S. Chambers
18109         * PropertyTabChangedEventHandler.cs: Added; Patch by Jonathan S. Chambers
18110         * PropertyValueChangedEventArgs.cs: Added; Patch by Jonathan S. Chambers
18111         * PropertyValueChangedEventArgs.cs: Added; Patch by Jonathan S. Chambers
18112         * SelectedGridItemChangedEventArgs.cs: Added; Patch by Jonathan S. Chambers
18113         * SelectedGridItemChangedEventHandler.cs: Added; Patch by Jonathan S. Chambers
18114
18115 2005-01-27  Jordi Mas i Hernandez <jordi@ximian.com>
18116
18117         * Combobox.cs:
18118                 - Draw focus on Simple Combobox
18119                 - Fixes drawing issues
18120                 - fixes 71834
18121
18122 2005-01-27  Peter Bartok  <pbartok@novell.com>
18123
18124         * Form.cs:
18125           - Place window in default location, instead of hardcoded 0/0
18126           - Send initial LocationChanged event
18127         * Control.cs:
18128           - UpdateBounds after creation to find out where the WM placed us
18129           - Make sure that if the ParentForm changes location the Form
18130             is notified
18131         * XplatUIX11.cs: XGetGeometry will not return the coords relative
18132             to the root, but to whatever the WM placed around us.
18133             Translate to root coordinates before returning toplevel
18134             coordinates
18135         * XplatUIWin32.cs: Removed debug output
18136         * XplatUIOSX.cs, XplatUI.cs, XplatUIDriver.cs: Added toplevel
18137           flag to GetWindowPos, to allow translation of coordinates on X11
18138
18139 2005-01-27  Jordi Mas i Hernandez <jordi@ximian.com>
18140
18141         * ListBox.cs: connect LostFocus Event
18142
18143 2005-01-27  Peter Bartok  <pbartok@novell.com>
18144
18145         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIOSX.cs,
18146           XplatUIX11.cs: Extended the Systray API
18147         * Form.cs: Removed debug output
18148         * Application.cs: Fixed focus assignment, always need to call
18149           XplatUI.Activate() since Form.Activate() has rules that may
18150           prevent activation
18151         * NotifyIcon.cs: Should be complete now
18152         * ToolTip.cs: Worked around possible timer bug
18153
18154 2005-01-27  Jackson Harper  <jackson@ximian.com>
18155
18156         * TabControl.cs:
18157         - Only invalidate the effected tabs when the
18158         selected index changes. This reduces drawing and gets rid of some
18159         flicker.
18160         - Only refresh if the tabs need to be shifted, otherwise only
18161         invalidate the slider button.
18162         - On windows the tabs are not filled to right if the slider is
18163         visible.
18164         
18165 2005-01-27  Jackson Harper  <jackson@ximian.com>
18166
18167         * TabControl.cs: Only refresh on mouseup if we are showing the
18168         slider. Also only invalidate the button whose state has changed.
18169
18170 2005-01-26  Peter Bartok  <pbartok@novell.com>
18171
18172         * XplatUI.cs, XplatUIDriver.cs: Added Systray methods
18173         * XplatUIWin32.cs: Implemented SystrayAdd(), SystrayChange()
18174           and SystrayRemove() methods
18175         * XplatUIOSX.cs: Stubbed Systray methods
18176         * XplatUIX11.cs:
18177           - Implemented SystrayAdd(), SystrayChange() and SystrayRemove()
18178             methods
18179           - Fixed broken XChangeProperty calls (marshalling messed up things)
18180         * X11Structs.cs: Added enums and structs required for Size hinting
18181         * NotifyIcon.cs: Added & implemented
18182
18183 2005-01-26  Jackson Harper  <jackson@ximian.com>
18184
18185         * TabControl.cs: Space vertically layed out tabs properly.
18186
18187 2005-01-26  Peter Bartok  <pbartok@novell.com>
18188
18189         * Form.cs (CreateClientParams): Always set the location to 0,0
18190           since we're a child window.
18191
18192         * Control.cs (SetVisibleCore): Always explicitly setting the location
18193           of a toplevel window, apparently X11 doesn't like to move windows
18194           while they're not mapped.
18195
18196 2005-01-26  Jackson Harper  <jackson@ximian.com>
18197
18198         * TabControl.cs: Implement FillToRight size mode with vertically
18199         rendered tabs.
18200
18201 2005-01-26  Jordi Mas i Hernandez <jordi@ximian.com>
18202
18203         * ControlPaint.cs, ThemeWin32Classic.cs
18204                 - Fixes DrawFocusRectangle
18205
18206 2005-01-26  Jordi Mas i Hernandez <jordi@ximian.com>
18207
18208         * MenuAPI.cs:
18209                 - MenuBar tracking only starts when item is first clicked
18210                 - Fixes menu hidding for multiple subitems
18211                 - Unselect item in MenuBar when item Executed
18212                 - Fixes bug 71495
18213
18214 2005-01-25  Jordi Mas i Hernandez <jordi@ximian.com>
18215
18216         * ListControl.cs:
18217                 - IsInputKey for ListBox
18218         * ListBox.cs:
18219                 - Focus item
18220                 - Shift and Control item selection
18221                 - Implement SelectionMode.MultiExtended
18222                 - Fixes RightToLeft
18223         * ComboBox.cs:
18224                 - IsInputKey implemented
18225                 - Do not generate OnTextChangedEdit on internal txt changes
18226                 
18227 2005-01-23  Peter Bartok  <pbartok@novell.com>
18228
18229         * AccessibleObject.cs: Partially implemented Select()
18230         * MonthCalendar.cs: Added missing attributes and events
18231         * Form.cs: Fixed CreateParams behaviour, now controls derived from
18232           form can properly override CreateParams.
18233         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs, XplatUIWin32.cs,
18234           XplatUIX11.cs: Dropped RefreshWindow method, not needed if
18235           Control performs Invalidate & Update
18236         * NativeWindow (CreateHandle): Added special handling for Form
18237           and Form.FormParent classes to allow overriding of From.CreateParams
18238         * Control.cs:
18239           - ControlNativeWindow: Renamed 'control' variable to more intuitive
18240             name 'owner'
18241           - ControlNativeWindow: Added Owner property
18242           - Removed usage of Refresh() on property changes, changed into
18243             Invalidate(), we need to wait until the queue is processed for
18244             updates, direct calls might cause problems if not all vars for
18245             Paint are initialized
18246           - Added call to UpdateStyles() when creating the window, to set any
18247             styles that CreateWindow might have ignored.
18248           - Added support for Form CreateParent overrides to UpdateStyles()
18249         * MessageBox.cs: Removed no longer needed FormParent override stuff,
18250           CreateParams are now properly overridable
18251         * CommonDialog.cs: Removed no longer needed FormParent override stuff,
18252           CreateParams are now properly overridable
18253
18254 2005-01-23  Miguel de Icaza  <miguel@ximian.com>
18255
18256         * UpDownBase.cs (ctor): Connect TextChanged in the entry to the
18257         OnTextBoxChanged.
18258
18259         Capture LostFocus and OnTextBoxChanged.  The later introduces a
18260         recursive invocation that I have not figured out yet.
18261
18262         Reset the timer when not using (it was accumulating).
18263
18264
18265         (OnTextBoxChanged): Set UserEdit to true here to track whether the
18266         user has made changes that require validation.
18267
18268         Reset changing to avoid loops.
18269
18270 2005-01-22  Miguel de Icaza  <miguel@ximian.com>
18271
18272         * NumericUpDown.cs: Display value at startup.
18273
18274         * UpDownBase.cs (Text): Do not call UpdateEditText here, only call
18275         ValidateEditText.
18276
18277         * NumericUpDown.cs: Minimum, Maximum, Text, Value properties
18278         filled in.  Added some basic parsing of text.
18279
18280         Still missing the OnXXX method overrides, and figuring out the
18281         events that must be emitted.
18282
18283         * UpDownBase.cs: Handle UserEdit on the Text property.
18284         
18285 2005-01-22  Jordi Mas i Hernandez <jordi@ximian.com>
18286
18287         * ComboBox.cs:
18288           - Fixes IntegralHeight
18289           - ToString method
18290
18291 2005-01-21  Jackson Harper  <jackson@ximian.com>
18292
18293         * TabControl.cs: Set the SelectedIndex property when SelectedTab
18294         is set so that the page visibility is updated and the tabs are
18295         sized correctly.
18296
18297 2005-01-21  Jackson Harper  <jackson@ximian.com>
18298
18299         * TabControl.cs: Use cliping rectangle for blitting. Give the
18300         theme the clipping rect so we can do clipping while
18301         drawing. Remove some debug code.
18302
18303 2005-01-21  Jackson Harper  <jackson@ximian.com>
18304
18305         * TabPage.cs: Add a new method so tab pages can force the tab
18306         control to recalculate the tab page sizes.
18307         * TabControl.cs: UpdateOwner needs to make the tab control recalc
18308         sizes.
18309
18310 2005-01-20  Jackson Harper  <jackson@ximian.com>
18311
18312         * ThemeWin32Classic.cs: Clip text to the staus bar panels rects.
18313
18314 2005-01-20  Jackson Harper  <jackson@ximian.com>
18315
18316         * TreeView.cs: Set the bounds for nodes properly. They were
18317         getting screwed up when checkboxes were not enabled, but images
18318         were.
18319
18320 2005-01-20  Jordi Mas i Hernandez <jordi@ximian.com>
18321
18322         * ListBox.cs:
18323                 - Owner draw support
18324                 - Fixes
18325                 
18326 2005-01-20  Jackson Harper  <jackson@ximian.com>
18327
18328         * XplatUIStructs.cs: More misc keys
18329         * X11Keyboard.cs: Ignore some control keys.
18330
18331 2005-01-20  Jackson Harper  <jackson@ximian.com>
18332
18333         * X11Structs.cs: Add the modmaps to the keymask struct and tabify.
18334         * X11Keyboard.cs: Set the AltGr mask when we get a key event.
18335
18336 2005-01-19  Peter Bartok  <pbartok@novell.com>
18337
18338         * Control.cs: Un-selecting the control when it is loosing focus
18339
18340 2005-01-19  Jackson Harper  <jackson@ximian.com>
18341
18342         * TreeView.cs: Hook up to the text controls leave event so we can
18343         end editing when the users clicks outside the text box.
18344         
18345 2005-01-19  Jackson Harper  <jackson@ximian.com>
18346
18347         * X11Keyboard.cs: Fix typo that was causing the wrong keycodes to
18348         get set in the conversion array.
18349
18350 2005-01-19  Peter Bartok  <pbartok@novell.com>
18351
18352         * Application.cs (ModalRun): Added a call to CreateControl to ensure
18353           focus is properly set
18354         * Button.cs:
18355           - Added missing attributes
18356           - removed styles, those are already set in the base class
18357         * ButtonBase.cs:
18358           - Added missing attributes
18359           - Added clip window styles
18360         * CheckBox.cs: Added missing attributes
18361         * CommonDialog.cs:
18362           - FormParentWindow.CreateParams: Added required clip styles
18363         * Form.cs (ProcessDialogKey): Fixed handling of Escape key, now
18364           also filters modifier keys
18365         * MessageBox.cs:
18366           - Added assignment of Accept and Cancel button to enable Enter
18367             and Esc keys in MessageBox dialogs
18368           - FormParentWindow.CreateParams: Added required clip styles
18369         * RadioButton.cs: Added missing attributes
18370         * TextControl.cs: No longer draws selection if control does not
18371           have focus
18372         * TextBoxBase.cs:
18373           - Now draws simple rectangle around test area to make it obvious
18374             there's a control. This is a hack until we properly support borders
18375           - A few simple fixes to support selections better, now erases selected
18376             text when typing, and resets selection when using movement keys
18377
18378 2005-01-19  Miguel de Icaza  <miguel@ximian.com>
18379
18380         * UpDownBase.cs: Added some new properties.
18381
18382         * DomainUpDown.cs: Implement a lot to get my test working.
18383
18384 2005-01-19  Geoff Norton  <gnorton@customerdna.com>
18385
18386         * XplatUIOSX.cs: Fix a minor bug to bring the close box back
18387
18388 2005-01-19  Geoff Norton  <gnorton@customerdna.com>
18389
18390         * OSXStructs (WindowAttributes): Fixed csc complaints
18391
18392 2005-01-19  Geoff Norton  <gnorton@customerdna.com>
18393
18394         * XplayUIOSX.cs:
18395           OSXStructs.cs: Initial refactor to move enums and consts into
18396           OSXStructs and use them in the driver for greater readability.
18397
18398 2005-01-19  Geoff Norton  <gnorton@customerdna.com>
18399
18400         * XplatUIOSX.cs: Initial support for Standard Cursors.
18401         * OSXStructs.cs: Move our structs here; added ThemeCursor enum
18402
18403 2005-01-19  Jordi Mas i Hernandez <jordi@ximian.com>
18404
18405         * ComboBox.cs: ability to change style when the ctrl is already
18406         created, missing methods and events, bug fixes, signature fixes
18407
18408 2005-01-19  Peter Bartok  <pbartok@novell.com>
18409
18410         * Cursors.cs (ctor): Added ctor to fix signature
18411
18412 2005-01-18  Peter Bartok  <pbartok@novell.com>
18413
18414         * Button.cs: Implemented DoubleClick event
18415         * ButtonBase.cs:
18416           - Fixed keyboard handling to behave like MS, where the press of
18417             Spacebar is equivalent to a mousedown, and the key release is
18418             equivalent to mouseup. Now a spacebar push will give the same
18419             visual feedback like a mouse click.
18420           - Added missing attributes
18421           - Added ImeModeChanged event
18422           - Added support for generating DoubleClick event for derived classes
18423         * CheckBox.cs:
18424           - Implemented DoubleClick event
18425           - Added missing attributes
18426         * CommonDialog.cs: Added missing attribute
18427         * ContextMenu.cs: Added missing attributes
18428         * RadioButton.cs:
18429           - AutoChecked buttons do not allow to be unselected when clicked
18430             (otherwise we might end up with no selected buttons in a group)
18431           - Added missing attributes
18432           - Implemented DoubleClickEvent
18433         * ThreadExceptionDialog.cs: Enabled TextBox code
18434
18435 2005-01-18  Peter Bartok  <pbartok@novell.com>
18436
18437         * Form.cs: Removed debug output
18438         * Button.cs: Added support for DoubleClick method
18439
18440 2005-01-18  Peter Bartok  <pbartok@novell.com>
18441
18442         * Form.cs:
18443           - Added method to parent window that allows triggering size
18444             calculations when a menu is added/removed
18445           - set_Menu: Cleaned up mess from early days of Form and Control,
18446             now properly triggers a recalc when a menu is added/removed
18447           - Added case to select form itself as focused form if no child
18448             controls exist
18449           - Added PerformLayout call when showing dialog, to ensure properly
18450             placed controls
18451         * Control.cs:
18452           - Select(): Made internal so Form can access it
18453           - Focus(): Only call Xplat layer if required (avoids loop), and sets
18454             status
18455         * Application.cs (Run): Removed hack and calls PerformLayout instead
18456           to trigger calculation when Form becomes visible
18457
18458 2005-01-18  Jordi Mas i Hernandez <jordi@ximian.com>
18459
18460         * ComboBox.cs: fixes for ownerdraw
18461
18462 2005-01-18  Peter Bartok  <pbartok@novell.com>
18463
18464         * TextControl.cs:
18465           - Sentinel is no longer static, each Document gets it's own, this
18466             avoids locking or alternatively overwrite problems when more
18467             than one text control is used simultaneously.
18468           - Switched to use Hilight and HilightText brushes for text selection
18469
18470         * TextBoxBase.cs (PaintControl): Disabled AntiAliasing to improve looks
18471
18472 2005-01-18  Peter Bartok  <pbartok@novell.com>
18473
18474         * Control.cs:
18475           - Hooked up the following events:
18476                 o ControlAdded
18477                 o ControlRemoved
18478                 o HandleDestroyed
18479                 o ImeModeChanged
18480                 o ParentChanged
18481                 o TabStopChanged
18482                 o Invalidated
18483                 o SystemColorsChanged
18484                 o ParentFontChanged
18485                 o Move
18486           - Removed debug output
18487           - Added a call to the current theme's ResetDefaults when a color change
18488             is detected
18489         * Form.cs: Now setting the proper ImeMode
18490         * Theme.cs: Defined a method to force recreation of cached resources
18491           and rereading of system defaults (ResetDefaults())
18492         * ThemeWin32Classic.cs: Added ResetDefaults() stub
18493
18494 2005-01-17  Peter Bartok  <pbartok@novell.com>
18495
18496         * Control.cs: Added missing attributes
18497
18498 2005-01-17  Jackson Harper  <jackson@ximian.com>
18499
18500         * TreeNode.cs: Implement editing. Add missing properties selected
18501         and visible.
18502         * TreeView.cs: Implement node editing. Also some fixes to use
18503         Invalidate (invalid area) instead of Refresh when selecting.
18504
18505 2005-01-17  Peter Bartok  <pbartok@novell.com>
18506
18507         * Control.cs:
18508           - Implemented InvokeGotFocus() method
18509           - Implemented InvokeLostFocus() method
18510           - Implemented InvokePaint() method
18511           - Implemented InvokePaintBackground() method
18512           - Implemented InvokeClick() method
18513           - Implemented FindForm() method
18514           - Implemented RectangleToClient() method
18515           - Implemented ClientToRectangle() method
18516           - Implemented ResetBackColor() method
18517           - Implemented ResetCursor() method
18518           - Implemented ResetFont() method
18519           - Implemented ResteForeColor() method
18520           - Implemented ResetImeMode() method
18521           - Implemented ResetLeftToRight() method
18522           - Implemented ResetText() method
18523           - Implemented Scale() methods
18524           - Implemented ScaleCore() method
18525           - Implemented Update() method
18526           - Removed unused variables
18527           - Stubbed AccessibilityNotifyClients and
18528             ControlAccessibleObject.NotifyClients() methods (dunno what to do
18529             with those yet)
18530           - Now setting proper default for RightToLeft property
18531           - Fixed bug in SetClientSizeCore that would cause windows to get
18532             really big
18533           - Now sending Click/DoubleClick events
18534           - Now selecting controls when left mouse button is clicked on
18535             selectable control
18536         * AccessibleEvents.cs: Added
18537         * XplatUI.cs, XplatUIDriver.cs: Added UpdateWindow() method
18538         * XplatUIOSX.cs: Stubbed UpdateWindow() method
18539         * XplatUIWin32.cs: Implemented UpdateWindow() method
18540         * XplatUIX11.cs: Implemented UpdateWindow() method
18541         * Form.cs: Removed stray semicolon causing CS0162 warning
18542         * ThemeWin32Classic.cs: Fixed unused variable warnings
18543         * ScrollableControl.cs: Now calls base method for ScaleCore
18544         * ButtonBase.cs: Now disabling StandardClick and StandardDoubleClick
18545           style to avoid interference with internal click handler (which is
18546           different than standard Control click handling)
18547         * RadioButton.cs:
18548           - Now unchecks all sibling radio buttons when control is
18549             selected (Fixes #68756)
18550           - Removed internal tabstop variable, using the one inherited from
18551             Control
18552
18553 2005-01-17  Jackson Harper  <jackson@ximian.com>
18554
18555         * NavigateEventArgs.cs: Fix base type.
18556         * LinkLabel.cs: Sig fix
18557         
18558 2005-01-17  Jackson Harper  <jackson@ximian.com>
18559
18560         * TreeView.cs: Only invalidate the effected nodes bounds when
18561         selecting nodes.
18562
18563 2005-01-13  Jordi Mas i Hernandez <jordi@ximian.com>
18564
18565         * XplatUIWin32.cs: fixes Win32 marshaling
18566         * XplatUIX11.cs: fixes method signature
18567
18568 2005-01-17  Peter Bartok  <pbartok@novell.com>
18569
18570         * XplatUIX11.cs: Clean up resources when we no longer need them
18571
18572 2005-01-17  Peter Bartok  <pbartok@novell.com>
18573
18574         * XplatUI.cs, XplatUIDriver.cs: Added SetCursor(), ShowCursor(),
18575           OverrideCursor(), DefineCursor(), DefineStdCursor(), GetCursorInfo()
18576           and DestroyCursor() methods.
18577         * Cursor.cs: Partially implemented, now supports standard cursors;
18578           still contains some debug code
18579         * Cursors.cs: Implemented class
18580         * Control.cs:
18581           - WndProc(): Added handling of WM_SETCURSOR message, setting the
18582             appropriate cursor
18583           - Implemented Cursor property
18584           - Replaced break; with return; more straightforwar and possibly
18585             faster
18586           - Now properly setting the result for WM_HELP
18587         * X11Structs.cs: Added CursorFontShape enum
18588         * XplatUIStructs.cs:
18589           - Added StdCursor enum (to support DefineStdCursor() method)
18590           - Added HitTest enum (to support sending WM_SETCURSOR message)
18591         * XplatUIX11.cs:
18592           - Now sends the WM_SETCURSOR message
18593           - Implemented new cursor methods
18594         * XplatUIOSX.cs: Stubbed new cursor methods
18595         * XplatUIWin32.cs:
18596           - Implemented new cursor methods
18597           - Added GetSystemMetrics function and associated enumeration
18598
18599 2005-01-15  Peter Bartok  <pbartok@novell.com>
18600
18601         * Control.cs:
18602           - WndProc(): Now handles EnableNotifyMessage
18603           - SelectNextControl(): Fixed bug where if no child or sibling
18604             controls exist we looped endlessly
18605
18606 2005-01-14  Jackson Harper  <jackson@ximian.com>
18607
18608         * TreeView.cs: Recalculate the tab pages when a new one is added
18609         so that the proper bounding rects are created.
18610
18611 2005-01-14  Jackson Harper  <jackson@ximian.com>
18612
18613         * TreeView.cs: Draw a gray box instead of a grip in the lower
18614         right hand corner when there are both horizontal and vertical
18615         scroll bars.
18616
18617 2005-01-14  Jackson Harper  <jackson@ximian.com>
18618
18619         * Control.cs: When erasing backgrounds use FromHwnd instead of
18620         FromHdc when there is a NULL wparam. This occurs on the X driver.
18621         * XplatUIX11.cs: Set the wparam to NULL.
18622
18623 2005-01-13  Jackson Harper  <jackson@ximian.com>
18624
18625         * PictureBox.cs: Implement missing methods (except ToString, need
18626         to test that on windows) and events. When visibility is changed we
18627         need to redraw the image because the buffers are killed. When size
18628         is changed refresh if the sizemode needs it.
18629
18630 2005-01-13  Peter Bartok  <pbartok@novell.com>
18631
18632         * Control.cs (SelectNextControl): Was using wrong method to select
18633           a control
18634
18635 2005-01-13  Jordi Mas i Hernandez <jordi@ximian.com>
18636
18637         * ComboBox.cs: fixes dropstyle
18638
18639 2005-01-13  Peter Bartok  <pbartok@novell.com>
18640
18641         * Form.cs:
18642           - Implemented Select() override
18643           - Now handles WM_SETFOCUS/WM_KILLFOCUS messages
18644           - Now sets keyboard focus on startup
18645         * Control.cs (SelectNextControl): Now properly handles directed=true
18646         * TextBoxBase.cs:
18647           - WndProc: Now passes tab key on to base if AcceptTabChar=false
18648           - Added (really bad) focus rectangle (mostly for testing)
18649         * TextBox.cs: Added code to handle getting/loosing focus and invalidating
18650           to enforce redraw on focus changes
18651         * ContainerControl.cs:
18652           - Fixed detection of Shift-Tab key presses
18653           - Fixed traversal with arrow keys
18654         * XplatUIX11.cs: Implemented simulated keyboard focus; not sure if we're
18655           gonna keep this or if it's complete yet
18656         
18657 2005-01-13  Jordi Mas i Hernandez <jordi@ximian.com>
18658
18659         * ComboBox.cs: missing properties, fixes
18660
18661 2005-01-13  Peter Bartok  <pbartok@novell.com>
18662
18663         * Panel.cs (ctor): Setting Selectable window style to off
18664         * Splitter.cs (ctor): Setting Selectable window style to off
18665         * GroupBox.cs (ctor): Setting Selectable window style to off
18666         * Label.cs (ctor): Setting Selectable window style to off
18667
18668 2005-01-12  Miguel de Icaza  <miguel@ximian.com>
18669
18670         * UpDownBase.cs (InitTimer): If the timer has been already
18671         created, enable it.
18672
18673         Use a TextBox instead of a Label.
18674
18675 2005-01-12  Jackson Harper  <jackson@ximian.com>
18676
18677         * TreeView.cs: Refresh the tree after sorting the nodes. Always
18678         draw the connecting node lines (when ShowLines is true).
18679         * TreeNode.cs: The nodes index can now be updated. This is used
18680         when a node collection is sorted.
18681         * TreeNodeCollection.cs: Implement sorting. Nodes can be sorted on
18682         insert or an existing unsorted node collection can be sorted.
18683         
18684 2005-01-12  Peter Bartok  <pbartok@novell.com>
18685
18686         * ContainerControl.cs: Implemented ProcessDialogKeys()
18687
18688 2005-01-12  Peter Bartok  <pbartok@novell.com>
18689
18690         * Control.cs:
18691           - Implemented SelectNextControl() method
18692           - Several focus related bug fixes
18693           - Fixed Docking calculations to match MS documentation and
18694             behaviour
18695
18696 2005-01-12  Jordi Mas i Hernandez <jordi@ximian.com>
18697
18698         * ContainerControl.cs, ListControl.cs, ListBox.cs: keyboard navigation and
18699         bug fixes
18700
18701 2005-01-12  Peter Bartok  <pbartok@novell.com>
18702
18703         * Control.cs:
18704           - Fixed broken Contains() method
18705           - Implemented GetNextControl() method. Finally. This is the pre-
18706             requisite for focus handling.
18707
18708 2005-01-12  Peter Bartok  <pbartok@novell.com>
18709
18710         * OSXStrucs.cs: Added
18711
18712 2005-01-12  Peter Bartok  <pbartok@novell.com>
18713
18714         * XplatUIWin32.cs:
18715           - Removed PeekMessageFlags
18716           - Implemented SetWindowStyle() method
18717         * XplatUIStructs.cs: Added PeekMessageFlags
18718         * X11Structs: Added missing border_width field to XWindowChanges struct
18719         * XplatUIX11.cs:
18720           - PeekMessage: Now throws exception if flags which are not yet
18721             supported are passed
18722           - Implemented SetWindowStyle() method
18723           - Fixed SetZOrder to handle AfterHwnd properly
18724         * XplatUI.cs: Added SetWindowStyle() method
18725         * XplatUIDriver.cs: Added SetWindowStyle() abstract
18726         * Control.cs:
18727           - Implemented UpdateStyles() method
18728           - Implemented UpdateZOrder() method
18729         * XplatUIOSX.cs: Added SetWindowStyle() stub
18730
18731 2005-01-12  Geoff Norton  <gnorton@customerdna.com>
18732
18733         * XplatUIOSX.cs: Fix SetZOrder (this needs more testing with a 3
18734         button mouse).
18735
18736
18737 2005-01-11  Jackson Harper  <jackson@ximian.com>
18738
18739         * TreeView.cs: Still need to draw lines to siblings even if out of
18740         the current node is out of the clip.
18741
18742 2005-01-11  Jackson Harper  <jackson@ximian.com>
18743
18744         * TreeView.cs: When setting the hbar/vbar/grip position use
18745         SetBounds so that perform layout is only called once. Also suspend
18746         and resume layout so layout is only done once for all controls.
18747         - Removed some debug fluff
18748         * SizeGrip.cs: Call base implmentation in overriding methods.
18749         - When visibility is changed the drawing buffers are killed so we
18750         need to redraw.
18751
18752 2005-01-11  Jackson Harper  <jackson@ximian.com>
18753
18754         * TreeView.cs: Calculate the open node count while drawing. This
18755         saves us an entire tree traversal for every paint operation. Use
18756         a member var for the open node count so less vars are passed around.
18757
18758 2005-01-11  John BouAntoun  <jba-mono@optusnet.com.au>
18759
18760         * MonthCalendar.cs:
18761         - fixed selection to use mousemove, not mouse polling on timer
18762         * ThemeWin32Classic.cs
18763         - removed redundant unused variable "no_more_content"
18764         
18765 2005-01-11  Peter Bartok  <pbartok@novell.com>
18766
18767         * XplatUIX11.cs (DoEvents): Needs to return when no more events
18768           are pending, so it now calls PeekMessage instead of GetMessage;
18769           implemented a incomplete version of PeekMessage
18770         
18771 2005-01-11  Peter Bartok  <pbartok@novell.com>
18772
18773         * XplatUIWin32.cs: Switched P/Invokes to unicode charset to avoid
18774           I18n issues
18775         * TextBoxBase.cs: Added sending of TextChanged event
18776
18777 2005-01-10  Jackson Harper  <jackson@ximian.com>
18778
18779         * TreeView.cs: Try not to draw outside the clipping rectangle on
18780         each node element.
18781
18782 2005-01-10  Jordi Mas i Hernandez <jordi@ximian.com>
18783
18784         * ComboBox.cs: keyboard navigation, item navigation, bug fixes
18785
18786 2005-01-10  Jackson Harper  <jackson@ximian.com>
18787
18788         * TreeView.cs:
18789         - Implement fast scrolling. Now only the newly
18790         exposed nodes are drawn and the old image is moved using the
18791         XplatUI::ScrollWindow method.
18792         - Factor in height of nodes when calculating whether or not the
18793         node is in the clipping rect.
18794
18795 2005-01-10  Jackson Harper  <jackson@ximian.com>
18796
18797         * TreeNodeCollection.cs: Refresh the tree when a new node is added.
18798
18799 2005-01-10  Peter Bartok  <pbartok@novell.com>
18800
18801         * Application.cs: Added temporary hack to resolve all our resize
18802           required issues on startup. This will get fixed properly at
18803           some point in the future
18804
18805 2005-01-10  Jackson Harper  <jackson@ximian.com>
18806
18807         * SizeGrip.cs: New internal class that is used as a sizing
18808         grip control...hence the name.
18809
18810 2005-01-10  Peter Bartok  <pbartok@novell.com>
18811
18812         * Control.cs: Implemented proper TabIndex handling, now assigning
18813           a tabindex when a control is added to a container
18814         * GroupBox.cs (ctor): Now sets the Container style bit, required
18815           for Control.GetNextControl()
18816
18817 2005-01-09  Jackson Harper  <jackson@ximian.com>
18818
18819         * TextBoxBase.cs: Clear window when scrolling (fixes build).
18820
18821 2005-01-09  Peter Bartok <pbartok@novell.com>
18822
18823         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIOSX.cs,
18824           XplatUIX11.cs: Added ability to control ScrollWindow expose and
18825           an overload for ScrollWindow to allow only scrolling a rectangle
18826
18827 2005-01-09  Peter Bartok <pbartok@novell.com>
18828
18829         * Form.cs:
18830           - Implemented SetDesktopBounds method
18831           - Implemented SetDesktopLocation method
18832
18833 2005-01-08  Jackson Harper  <jackson@ximian.com>
18834
18835         * TreeView.cs: Only set the vbar's Maximum and LargeChange when
18836         the node count has changed, this removes to VScroll::Refresh calls
18837         when drawing.
18838
18839 2005-01-08  Geoff Norton  <gnorton@customerdna.com>
18840
18841         * XplatUIOSX.cs: Fix GetWindowState & SetWindowState
18842
18843 2005-01-07  Jackson Harper  <jackson@ximian.com>
18844
18845         * TreeNode.cs: Just update the single node when it is
18846         checked. Don't refresh after toggling, the Expand/Collapse already
18847         handles this.
18848         * TreeView.cs: Respect clipping a little more when drawing. Try
18849         not to redraw things that don't need to be redrawn. Just hide the
18850         scrollbars when they are no longer needed instead of removing
18851         them, so they don't have to be created again and again.
18852         
18853 2005-01-07  Geoff Norton  <gnorton@customerdna.com>
18854
18855         * XplatUIOSX.cs (SetCaretPos):  We need to translate the view
18856         coordinates to window space to place the caret properly, FIXED.
18857         Implement GetWindowState & SetWindowState
18858
18859 2005-01-06  Peter Bartok <pbartok@novell.com>
18860
18861         * Form.cs:
18862           - Implemented ClientSize property
18863           - Implemented DesktopBounds property
18864           - Implemented DesktopLocation property
18865           - Implemented IsRestrictedWindow property
18866           - Implemented Size property
18867           - Implemented TopLevel property
18868           - Implemented FormWindowState property
18869         * Control.cs:
18870           - Implemented GetTopLevel() method
18871           - Implemented SetTopLevel() method
18872         * X11Structs.cs (Atom):
18873           - Added AnyPropertyType definition
18874           - Added MapState definiton and updated XWindowAttribute struct
18875         * XplatUI.cs: Added GetWindowState() and SetWindowState() methods
18876         * XplatUIDriver.cs: Added GetWindowState() and SetWindowState() methods
18877         * XplatUIOSX.cs: Stubbed GetWindowState() and SetWindowState() methods
18878         * XplatUIWin32.cs:
18879           - Implemented GetWindowState() and SetWindowState() methods
18880           - Fixed Win32GetWindowLong return type
18881         * XplatUIX11.cs:
18882           - Introduced central function for sending NET_WM messages
18883           - Implemented GetWindowState() and SetWindowState() methods
18884         * TextBoxBase.cs (set_Lines):
18885           - Now uses Foreground color for text added via Text property (Duh!)
18886           - Added code to remember programmatically requested size (fixes
18887             behaviour when Multiline is set after Size)
18888           - Added AutoSize logic
18889
18890 2005-01-06  Jackson Harper  <jackson@ximian.com>
18891
18892         * TreeView.cs: Draw the image after the checkbox if checkboxes are enabled.
18893
18894 2005-01-06  Jackson Harper  <jackson@ximian.com>
18895
18896         * ListBox.cs: Don't allow the horizontal scrollbars maximum to be
18897         set to less then 0.
18898
18899 2005-01-06  Jackson Harper  <jackson@ximian.com>
18900
18901         * ScrollableControl.cs: Lazy init the scrollbars.
18902         
18903 2005-01-06  Jackson Harper  <jackson@ximian.com>
18904
18905         * Theme.cs: Speed up getting pens and solid brushes, by using
18906         their ARGB as a hash instead of tostring and not calling Contains.
18907
18908 2005-01-06  Peter Bartok <pbartok@novell.com>
18909
18910         * Form.cs:
18911           - Implemented OnActivated and OnDeactivate event trigger
18912           - Implemented Activate() method
18913           - Fixed ShowDialog() to activate the form that was active before
18914             the dialog was shown
18915         * XplatUIX11.cs:
18916           - Added global active_window var that tracks the currently active
18917             X11 window
18918           - Now always grabs Property changes from the root window to always
18919             catch changes on the active window property
18920           - Added code to PropertyNotify handler to send Active/Inactive
18921             messages when state changes. This puts X11 and Win32 en par on
18922             WM_ACTIVATE notifications (except for double notifications when
18923             the user clicks away from our modal window to another one of our
18924             windows)
18925
18926 2005-01-05  Jackson Harper  <jackson@ximian.com>
18927
18928         * ImageList.cs: Implment ctor
18929
18930 2005-01-05  Geoff Norton  <gnorton@customerdna.com>
18931
18932         * XplatUIOSX.cs: Implement Activate/SetTopmost
18933
18934 2005-01-05  Geoff Norton  <gnorton@customerdna.com>
18935
18936         * XplatUIOSX.cs: Implement SetZOrder, minor cleanup
18937
18938 2005-01-05  Geoff Norton  <gnorton@customerdna.com>
18939
18940         * XplatUIOSX.cs: Implement GetActive/SetFocus.
18941
18942 2005-01-05  Peter Bartok <pbartok@novell.com>
18943
18944         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIX11.cs,
18945           XplatUIOSX.cs: Added GetActive method to return the currently
18946           active window for the application (or null, if none is active)
18947         * Form.cs:
18948           - Implemented ActiveForm
18949           - Commented out owner assignment for modal dialogs (causes problems
18950             on Win32, since the owner will be disabled)
18951           - Reworked some Active/Focus handling (still incomplete)
18952         * CommonDialog.cs: Commented out owner assignment for modal dialogs
18953           (causes problems on Win32, since the owner will be disabled)
18954         * IWin32Window: Added ComVisible attribute
18955
18956 2005-01-05  Peter Bartok <pbartok@novell.com>
18957
18958         * ToolTip.cs (WndProc): Enable setting focus now that we have the
18959           required XplatUI functions.
18960
18961 2005-01-05  Peter Bartok <pbartok@novell.com>
18962
18963         * XplatUI.cs, XplatUIOSX.cs, XplatUIWin32.cs, XplatUIDriver.cs,
18964           XplatUIX11.cs, X11Structs.cs, Form.cs: Framework code required
18965           to implement focus and activation handling; still incomplete and
18966           with debug output
18967
18968 2005-01-04  Peter Bartok <pbartok@novell.com>
18969
18970         * TextBoxBase.cs: Changed access level for Document property to
18971           match switch to internal for TextControl
18972
18973 2005-01-04  Peter Bartok <pbartok@novell.com>
18974
18975         * AccessibleObject: Added ComVisible attribute
18976
18977 2005-01-04  Jackson Harper  <jackson@ximian.com>
18978
18979         * X11Keyboard.cs: Remove unneeded var.
18980
18981 2005-01-04  Jackson Harper  <jackson@ximian.com>
18982
18983         * XplatUIX11.cs (DoEvents): Implement, Just cast aside all events
18984         but PAINT.
18985         * XplatUIX11.cs (GetMessage): Call Exit when we get an unknown
18986         ClientMessage. This makes apps exit cleanly (more often).
18987         
18988 2005-01-04  Jackson Harper  <jackson@ximian.com>
18989
18990         * TreeNode.cs: Patches by Kazuki Oikawa (kazuki@panicode.com) for
18991         handling focus, return correct colors and fonts,
18992         * TreeView.cs: Patches by Kazuki Oikawa (kazuki@panicode.com) to
18993         handle selection, horizontal scrolling, and mouse interaction.
18994
18995 2005-01-04  Peter Bartok <pbartok@novell.com>
18996
18997         * ICommandExecutor.cs: Added
18998         * IDataGridColumnStyleEditingNotificationService.cs: Added
18999         * IFeatureSupport.cs: Added
19000         * IFileReaderService.cs: Added
19001         * IDataObject.cs: Added ComVisible attribute
19002         * AmbientProperties.cs: Added
19003         * BaseCollection.cs: Added missing attributes
19004         * ListBindingConverter.cs: Added (stubbed, required for certain attributes)
19005         * BaseCollection.cs: Added missing attributes
19006         * Binding.cs: Added TypeConverter attribute
19007         * BindingContext.cs: Added DefaultEvent attribute
19008         * BindingsCollection.cs: Added DefaultEvent attribute
19009         * Button.cs: Added DefaultValue attribute
19010         * DragEventArgs.cs: Added ComVisible attribute
19011         * GiveFeedbackEventArgs.cs: Added ComVisible attribute
19012         * KeyEventArgs.cs: Added ComVisible attribute
19013         * KeyPressEventArgs.cs: Added ComVisible attribute
19014         * MouseEventArgs.cs: Added ComVisible attribute
19015         * NavigateEventArgs.cs: Added
19016         * NavigateEventHandler.cs: Added
19017         * FeatureSupport.cs: Added
19018         * OSFeature.cs: Added
19019         * Theme.cs: Added abstract Version property to support OSFeature
19020         * ThemeWin32Classic.cs: Added Version property to
19021           support OSFeature.Themes
19022         * ProgressBar.cs: Removed OnPaintBackground override, not required since
19023           the proper styles to avoid background drawing are set, also doesn't
19024           match MS signature
19025         * QueryAccessibilityHelpEventArgs.cs: Added ComVisible attribute
19026         * QueryContinueDragEventArgs.cs: Added ComVisible attribute
19027         * ScrollEventArgs.cs: Added ComVisible attribute
19028         * SplitterEventArgs.cs: Added ComVisible attribute
19029         * AccessibleSelection.cs: Added Flags attribute
19030         * Appearance.cs: Added ComVisible attribute
19031         * Border3DSide.cs: Added ComVisible attribute
19032         * Border3DStyle.cs: Added ComVisible attribute
19033         * BorderStyle.cs: Added ComVisible attribute
19034         * DragAction.cs: Added ComVisible attribute
19035         * ErrorBlinkStyle.cs: Added
19036         * ScrollEventType.cs: Added ComVisible attribute
19037         * AnchorStyles.cs: Added Editor attribute
19038         * DockStyle.cs: Added Editor attribute
19039         * HorizontalAlignment.cs: Added ComVisible attribute
19040         * HelpEventArgs.cs: Added ComVisible attribute
19041         * PaintEventArgs.cs: Added IDisposable
19042
19043 2005-01-04  Peter Bartok <pbartok@novell.com>
19044
19045         * TextControl.cs: Switched Line, LineTag and Document classes to
19046           internal
19047
19048 2005-01-04  Jordi Mas i Hernandez <jordi@ximian.com>
19049
19050         * ComboBox.cs, ThemeWin32Classic.cs, ListBox.cs, Theme.cs:
19051         Simple mode, fixes, IntegralHeight, etc.
19052
19053 2005-01-04  Peter Bartok <pbartok@novell.com>
19054
19055         * TextBoxBase.cs: Using proper font variable now
19056
19057 2005-01-04  Peter Bartok <pbartok@novell.com>
19058
19059         * Form.cs (ShowDialog): Set parent to owner, if provided
19060         * GroupBox.cs: Removed unused vars
19061         * TextControl.cs:
19062           - Added GetHashCode() for Document and LineTag classes
19063           - Removed unused variables
19064           - Added CharIndexToLineTag() and LineTagToCharIndex() methods
19065             to allow translation between continuous char position and line/pos
19066         * CheckBox.cs: Removed vars that are provided by base class
19067         * RadioButton.cs: Removed vars that are provided by base class, added
19068           new keyword where required
19069         * LinkLabel.cs: Added new keyword where required
19070         * Control.cs (WndProc): Removed unused variable
19071         * TextBoxBase.cs:
19072           - Finished SelectionLength property
19073           - Implemented SelectionStart property
19074           - Implemented Text property
19075           - Removed unused vars
19076         * MessageBox.cs: Added new keyword where required
19077         * TextBox.cs: Removed Text property code (now in TextBoxBase), fixed
19078           WndProc signature
19079         * MenuAPI.cs: Added new keyword where required
19080         * ButtonBase.cs: Removed vars that are provided by base class, added
19081           new keyword where required
19082         * ThemeWin32Classic.cs (DrawMonthCalendarDate): Now cast Math.Floor
19083           argument to double, to allow compiling with csc 2.0 (Atsushi ran
19084           into this)
19085         * Application.cs (Run): Now triggers the ThreadExit event
19086         * CommonDialog.cs: Added new keyword where required; now properly sets
19087           parent (owner) for dialog
19088         * XplatUIX11.cs: Commented out unused vars
19089         * StatusBar.cs: Fixed signature for Text property
19090         * TabPage.cs: Undid Jordi's removal of unused var, now using the var
19091
19092 2005-01-04  Jordi Mas i Hernandez <jordi@ximian.com>
19093
19094         * ComboBox.cs, TabPage.cs, MenuAPI.cs, ThemeWin32Classic.cs,
19095         TrackBar.cs, MonthCalendar.cs: remove unused vars
19096
19097 2005-01-03  Jackson Harper  <jackson@ximian.com>
19098
19099         * ThemeWin32Classic.cs:
19100         * X11Keyboard.cs: Remove unused vars.
19101
19102 2005-01-03  Peter Bartok  <pbartok@novell.com>
19103
19104         * TextBox.cs:
19105           - set_Text: Tied into TextControl
19106           - set_TextAlignment: Tied into TextControl
19107         * TextControl.cs:
19108           - Added alignment properties and implemented alignment handling
19109             and drawing (still has a bug, not generating proper expose events)
19110           - Added new Line() constructor to allow passing the line alignment
19111           - Fixed selection setting, properly handling end<start now
19112           - Added aligment considerations to RecalculateDocument()
19113         * TextBoxBase.cs:
19114           - Now properly enforces control height for single line controls
19115           - Added support for CharacterCasing
19116           - Added IsInputKey override
19117           - Fixed Keys.Enter logic
19118           - Added SetBoundsCore override
19119           - Fixed mouse selection handling
19120
19121 2005-01-03  Jackson Harper  <jackson@ximian.com>
19122
19123         * TreeView.cs:
19124           - Collapse and uncheck all nodes when CheckBoxes is disabled.
19125           - Checkboxes are always aligned to the bottom of the node,
19126           regardless of item height.
19127           - Use the node bounds to draw the text so we can center it when
19128           the item height is greater then the font height.
19129           - Node::Bounds are only the text part of the node.
19130         * TreeNode.cs: New method to combine collapsing and unchecking all
19131           nodes recursively.
19132
19133 2005-01-02  Jackson Harper  <jackson@ximian.com>
19134
19135         * TreeView.cs: Draw checkmarks, handle detecting check mark clicks
19136         * TreeNode.cs: Add a bounding box for the checkbox, refresh the
19137         tree when a check is changed. TODO: Only refresh the checked node.
19138
19139 2004-12-30  Jackson Harper  <jackson@ximian.com>
19140
19141         * TreeView.cs: Draw checkbox boxes when checkboxes are enabled.
19142         * TreeNode.cs: When collapsing make sure to never collapse the
19143         root node.
19144
19145 2004-12-29  Jackson Harper  <jackson@ximian.com>
19146
19147         * TreeView.cs: Align lines to the bottom of plus minus boxes properly.
19148         
19149 2004-12-28  Zoltan Varga  <vargaz@freemail.hu>
19150
19151         * X11Structs.cs X11Keyboard.cs XplatUIX11.cs: Fix 64 bit issues.
19152
19153 2004-12-28  Peter Bartok  <pbartok@novell.com>
19154
19155         * MessageBox.cs (get_CreateParams): Don't use owner var if it's
19156           not yet assigned
19157
19158 2004-12-28  Peter Bartok  <pbartok@novell.com>
19159
19160         * Control.cs (WndProc): Added WM_HELP handler, now generates
19161           HelpRequested event
19162         * Form.cs: Added HelpButton property and required support code
19163         * XplatUIStructs.cs: Added HELPINFO structure for WM_HELP handling
19164
19165 2004-12-28  Peter Bartok  <pbartok@novell.com>
19166
19167         * CommonDialog.cs:
19168           - Made DialogForm.owner variable internal
19169           - Added check to ensure owner form is set before setting
19170             owner properties in CreateParams
19171
19172 2004-12-28  Geoff Norton  <gnorton@customerdna.com>
19173
19174         * XplatUIOSX.cs: Implement mouse hovering.  Fix QDPoint struct to avoid
19175           swizzling.  Implement ClientToScreen and ScreenToClient.  Implement
19176           GetCursorPos.  Fix major visibility issues.  Rework the windowing
19177           system to support borderless/titleless windows (implements menus).
19178           Fix GetWindowPos.  Implement initial background color support for
19179           views.
19180
19181 2004-12-28  Peter Bartok  <pbartok@novell.com>
19182
19183         * Form.cs (get_CreateParams): Make sure we have an owner before using
19184           the owner variable. Implement proper default if no owner exists
19185
19186 2004-12-28  Peter Bartok  <pbartok@novell.com>
19187
19188         * In preparation for making Managed.Windows.Forms the default build target
19189           for System.Windows.Forms, the following stubbed files were added.
19190           Dialogs are currently being implemented by contributors and are only
19191           short-term place holders.
19192         * ColorDialog.cs: Initial check-in (minmal stub)
19193         * DataGrid.cs: Initial check-in (minimal stub)
19194         * DataGridLineStyle.cs: Initial check-in (minimal stub)
19195         * DataGridParentRowsLabelStyle.cs: Initial check-in (minimal stub)
19196         * DataGridTableStyle.cs: Initial check-in (minimal stub)
19197         * FontDialog.cs: Initial check-in (minimal stub)
19198         * FileDialog.cs: Initial check-in (minimal stub)
19199         * GridColumnStylesCollection.cs: Initial check-in (minimal stub)
19200         * GridTableStylesCollection.cs: Initial check-in (minimal stub)
19201         * OpenFileDialog: Initial check-in (minimal stub)
19202         * IComponentEditorPageSite.cs: Initial check-in
19203         * Splitter.cs: Initial check-in (for Jackson)
19204         * SplitterEventArgs.cs: Initial check-in (for Jackson)
19205         * SplitterEventHandler.cs: Initial check-in (for Jackson)
19206         * TextBox.cs: Initial check-in; still needs some wiring to
19207           TextControl backend
19208         * Form.cs: Implemented ControlBox property
19209         * MessageBox.cs: Added proper coding for Minimize/Maximize/ControlBox
19210         * CommonDialog.cs: Added proper coding for Minimize/Maximize/ControlBox
19211         * TextControl.cs: Added selection functionality; added todo header
19212         * TextBoxBase.cs:
19213           - Implemented Lines property
19214           - Implemented TextHeight property
19215           - Implemented SelectedText property
19216           - Implemented SelectionLength property
19217           - Implemented SelectAll method
19218           - Implemented ToString method
19219           - Removed and cleaned up some debug code
19220           - Implemented (still buggy) mouse text selection
19221
19222 2004-12-27  Jordi Mas i Hernandez <jordi@ximian.com>
19223
19224         * ComboBox.cs: Complete DropDownList implementation, fixes.
19225
19226 2004-12-26  Jordi Mas i Hernandez <jordi@ximian.com>
19227
19228         * ThemeWin32Classic, Theme.cs: ComboBox drawing methods
19229         * ComboBoxStyle.cs: ComboBoxStyle enum
19230         * ComboBox.cs: Initial work on ComboBox control
19231
19232 2004-12-21  Peter Bartok  <pbartok@novell.com>
19233
19234         * Control.cs (ctor, CreateParams): Moved setting of is_visible
19235           forward so that anything that creates a window gets the default,
19236           also no longer uses Visible property in CreateParams to avoid
19237           walking up the parent chain and possibly get the wrong visible
19238           status. Fixed IsVisible to no longer walk up to the parent.
19239
19240 2004-12-21  Peter Bartok  <pbartok@novell.com>
19241
19242         * Form.cs (ShowDialog): Unset modality for the proper window
19243  
19244 2004-12-20  Peter Bartok  <pbartok@novell.com>
19245
19246         * CommonDialog.cs: Initial check-in
19247
19248 2004-12-20  Peter Bartok  <pbartok@novell.com>
19249
19250         * Control.cs (Visible): Now uses the parent window instead of the
19251           client area window for the property
19252
19253         * Form.cs
19254           - ShowDialog(): Now uses the proper window for modality
19255           - The default visibility state for the form parent is now false. This
19256             will prevent the user from seeing all the changes to the form and
19257             its controls before the application hits Application.Run()
19258           - Removed some stale commented out code
19259
19260         * NativeWindow.cs:
19261           - Added FindWindow() method to have a method to check for existence
19262             of a window handle
19263           - Added ability to override default exception handling (for example
19264             when debugging with VS.Net; to do this the ExternalExceptionHandler
19265             define must be set
19266           - Removed some useless debug output
19267
19268         * XplatUIX11.cs:
19269           - Removed r37929 (SetModal patch from Ashwin Bharambe), was
19270             not working as expected
19271           - Implemented modal_window stack and checking for _WM_ACTIVE_WINDOW
19272             property to allow switching back to the modal window if focus is
19273             given to another one of our windows (Application Modal)
19274           - Now only sets override_redirect if we create a window
19275             without WS_CAPTION
19276           - Moved EventMask selection before mapping of newly created window
19277             so we can catch the map event as well
19278           - Implemented Activate() method via the _WM_ACTIVE_WINDOW property
19279           - Added various Atom related DllImports
19280           - Implemented Exit() method
19281           - .ctor() : No longer shows window if WS_VISIBLE is not defined
19282             in the CreateParams
19283
19284         * MessageBox.cs: Now properly deals with the FormParent window by
19285           providing an override the FormParent CreateParams property to
19286           set as POPUP instead of OVERLAPPED window.
19287
19288 2004-12-19  Geoff Norton  <gnorton@customerdna.com>
19289
19290         * XplatUIOSX.cs: Implement DestroyWindow.  Implement ScrollWindow
19291         Minor code cleanup.
19292
19293 2004-12-19  Geoff Norton  <gnorton@customerdna.com>
19294         
19295         * XplatUIOSX.cs (SetModal): Implement this method on OSX.
19296
19297 2004-12-18  Peter Bartok  <pbartok@novell.com>
19298
19299         * XplatUIX11.cs (SetModal): Applied patch from Ashwin Bharambe,
19300           implementing SetModal() method
19301
19302 2004-12-18  Peter Bartok  <pbartok@novell.com>
19303
19304         * X11Structs.cs (XGCValues): Fixed type of function element
19305         * XplatUI.cs: Added ScrollWindow() method
19306         * XplatUIDriver.cs: Added ScrollWindow() abstract
19307         * XplatUIWin32.cs: Implemented ScrollWindow() method
19308         * XplatUIX11.cs: Implemented ScrollWindow() method
19309         * XplatUIOSX.cs: Stubbed out ScrollWindow() method
19310
19311 2004-12-17  Geoff Norton  <gnorton@customerdna.com>
19312
19313         * XplatUIOSX.cs:  Fix cursor to use an Invert instead of drawing it
19314         Some more keyboard support (INCOMPLETE)
19315
19316 2004-12-17  Peter Bartok  <pbartok@novell.com>
19317
19318         * TextControl.cs:
19319         - Added color attribute to line tags.
19320         - Added color argument to all functions dealing with tags
19321         - Added color argument support to various functions
19322         - Fixed miss-calculation of baseline/shift in certain circumstances
19323
19324         * TextBoxBase.cs: Added new color option to test code
19325
19326 2004-12-17  Jackson Harper  <jackson@ximian.com>
19327
19328         * TreeNode.cs:
19329         * MonthCalendar.cs: Signature fixes
19330
19331 2004-12-17  Geoff Norton  <gnorton@customerdna.com>
19332
19333         * XplatUIOSX.cs: Find the missing caret; caret was dissappearing after a
19334         keyboard event moved it.  Create a new graphics context for each paint resolves this
19335
19336 2004-12-17  Geoff Norton  <gnorton@customerdna.com>
19337
19338         * XplatUIOSX.cs: Fix hard cpu eat on loop with existing timers,
19339         Make caret exist and go blink blink.  Initial keyboard support.
19340         Fix exception handler, Add Invalidate support.  Change way RefreshWindow
19341         works.
19342
19343 2004-12-17  Jackson Harper  <jackson@ximian.com>
19344
19345         * XplatUIStructs.cs: Updated set of virtual keycodes.
19346         * KeyboardLayouts.cs: SCROLL_LOCK is now SCROLL
19347
19348 2004-12-17  Jackson Harper  <jackson@ximian.com>
19349
19350         * XplatUIX11.cs: Prune old keyboard code.
19351
19352 2004-12-17  Jackson Harper  <jackson@ximian.com>
19353
19354         * XplatUIX11.cs: When generating mouse wparams get the modifier
19355         keys from the ModifierKeys property.
19356
19357 2004-12-17  Jackson Harper  <jackson@ximian.com>
19358
19359         * X11Keyboard.cs: Send up/down input when generating
19360         messages. Remove some unused vars.
19361
19362 2004-12-17  Jackson Harper  <jackson@ximian.com>
19363
19364         * TabControl.cs:
19365         * TreeView.cs: get rid of warnings.
19366
19367 2004-12-17  Jackson Harper  <jackson@ximian.com>
19368
19369         * XplatUIStructs.cs: Fix a couple wrong virtual keycodes.
19370
19371 2004-12-17  Jordi Mas i Hernandez <jordi@ximian.com>
19372
19373         * ListBox.cs: bug fixes, changes for CheckedListBox.cs
19374           CheckedListBox.cs: Implementation
19375
19376 2004-12-17  Peter Bartok  <pbartok@novell.com>
19377
19378         * TextControl.cs (RecalculateLine): Fixed baseline aligning calcs
19379
19380 2004-12-16  Peter Bartok  <pbartok@novell.com>
19381
19382         * TextControl.cs:
19383           - InsertCharAtCaret(): Fixed start pos fixup
19384           - CaretLine_get: No longer derives the line from the tag, the tag
19385             could be stale if lines in the document have been added or deleted
19386           - RebalanceAfterDelete(): Fixed bug in balancing code
19387           - RebalanceAfterAdd(): Fixed really stupid bug in balancing code
19388           - Line.Streamline(): Now can also elminate leading empty tags
19389           - DumpTree(): Added a few more tests and prevented exception on
19390             uninitialized data
19391           - Added Debug section for Combining lines
19392           - Delete(): Now copies all remaining properties of a line
19393           
19394         * TextBoxBase.cs:
19395           - Left mousebutton now sets the caret (and middle button still acts
19396             as formatting tester, which must go away soon)
19397           - Added Debug section for Deleting/Combining lines
19398           - Fixed calculations for UpdateView after Combining lines
19399
19400 2004-12-16  Peter Bartok  <pbartok@novell.com>
19401
19402         * TextControl.cs: Now properly aligns text on a baseline, using the
19403           new XplatUI.GetFontMetrics() method. Simplified several calculations
19404         * TextBoxBase.cs: Moved #endif to allow compiling if Debug is not
19405           defined
19406
19407 2004-12-16  Peter Bartok  <pbartok@novell.com>
19408
19409         * XplatUI.cs: Added GetFontMetrics() method
19410         * XplatUIDriver.cs: Added GetFontMetrics() abstract
19411         * XplatUIX11.cs: Implemented GetFontMetrics() method, now calls
19412           into libgdiplus, our private GetFontMetrics function
19413         * XplatUIOSX.cs: Implemented GetFontMetrics() method, same as X11
19414         * XplatUIWin32.cs: Implemented GetFontMetrics() method
19415
19416 2004-12-16  Jackson Harper  <jackson@ximain.com>
19417
19418         * XplatUIStruct.cs: Add enum for dead keys
19419         * X11Keyboard.cs: Map and unmap dead keys.
19420
19421 2004-12-16  Jackson Harper  <jackson@ximian.com>
19422
19423         * X11Keyboard.cs: Detect and use the num lock mask.
19424
19425 2004-12-16  Peter Bartok  <pbartok@novell.com>
19426
19427         * Control.cs (CreateGraphics): Added check to make sure the
19428           handle of the window exists before calling Graphics.FromHwnd()
19429
19430 2004-12-16  Peter Bartok  <pbartok@novell.com>
19431
19432         * TextBoxBase.cs: Initial check-in. DO NOT TRY TO USE THIS YET. It
19433           contains a lot of code that's not supposed to be there for the
19434           real thing, but required for developing/testing the textbox
19435           backend.
19436
19437 2004-12-16  Peter Bartok  <pbartok@novell.com>
19438
19439         * TextControl.cs:
19440         - Fixed Streamline method
19441         - Added FindTag method to Line
19442         - Added DumpTree method for debugging
19443         - Added DecrementLines() method for deleting lines
19444         - Fixed UpdateView to update the cursor to end-of-line on single-line
19445           updates
19446         - Added PositionCaret() method
19447         - Fixed MoveCaret(LineDown) to move into the last line, too
19448         - Added InsertChar overload
19449         - Fixed InsertChar tag offset calculations
19450         - Added DeleteChar() method
19451         - Added Combine() method for folding lines
19452         - Fixed Delete() method, no longer allocates wasted Line object and
19453           now copies all properties when swapping nodes
19454         - Delete() method now updates document line counter
19455
19456 2004-12-15  Jackson Harper  <jackson@ximian.com>
19457
19458         * XplatUIX11.cs: Get the modifier keys from the keyboard driver
19459         * X11Keyboard.cs: Expose the currently selected modifier keys
19460         through a property.
19461
19462 2004-12-15  Peter Bartok  <pbartok@novell.com>
19463
19464         * TextControl.cs: Initial check-in. Still incomplete
19465
19466 2004-12-15  Jackson Harper  <jackson@ximian.com>
19467
19468         * TreeNode.cs:
19469         * TreeView.cs: Fix build on csc (second time today ;-))
19470
19471 2004-12-15  Jackson Harper  <jackson@ximian.com>
19472
19473         * TreeView.cs: Store the treenodes plus/minus box bounds when it
19474         is calculated and use this for click testing.
19475         * TreeNode.cs: Add functionality to store the nodes plus minus box bounds.
19476
19477 2004-12-15  Jackson Harper  <jackson@ximian.com>
19478
19479         * TreeView.cs: Pass the nodes image index to the image list when
19480         drawing that image.
19481
19482 2004-12-15  Jackson Harper  <jackson@ximian.com>
19483
19484         * X11Keyboard.cs: Set messages hwnd.
19485         * XplatUIX11.cs: Pass proper hwnd wot keyboard driver. Set hwnd on
19486         post_message calls.
19487
19488 2004-12-15  Jackson Harper  <jackson@ximian.com>
19489
19490         * X11Keyboard.cs: Fix to compile with csc.
19491         
19492 2004-12-15  Jackson Harper  <jackson@ximian.com>
19493
19494         * X11Structs.cs: Add key mask values
19495         * XplatUIStruct.cs: Add keyboard event flags, and keyboard definitions
19496         * X11Keyboard.cs: New file - Extrapolates and interpolates key
19497         down/up foo into WM_CHAR foo
19498         * KeyboardLayouts.cs: Common keyboard layouts
19499         * XplatUIX11.cs: Add the keyboard driver. Add functionality to
19500         post messages into the main queue.
19501
19502 2004-12-13  Jordi Mas i Hernandez <jordi@ximian.com>
19503
19504         * Button.cs: implement ProcessMnemonic
19505         * ThemeWin32Classic.cs: use ResPool (caching) instead of creating
19506           brushes everytime
19507         * Control.cs: fixes IsMnemonic (support for &&, case insensitive, etc)
19508         * ButtonBase.cs: Show HotkeyPrefix (not the &)
19509
19510 2004-12-12  John BouAntoun  <jba-mon@optusnet.com.au>
19511         
19512         * MonthCalendar.cs: Implemented click-hold for next/previous month
19513           and date selection
19514           
19515 2004-12-11  Peter Bartok  <pbartok@novell.com>
19516
19517         * X11Structs.cs:
19518           - Added XKeyboardState (moved from XplatUIX11.cs)
19519           - Added XCreateGC related enums and structures
19520           - Added GXFunction for XSetFunction
19521
19522         * XplatUIStructs.cs: Added missing WS_EX_xxx definitions
19523
19524         * XplatUI.cs: Added CreateCaret(), DestroyCaret(), SetCaretPos() and
19525           CaretVisible() calls
19526
19527         * ToolTip.cs: Added code to prevent stealing focus from app windows
19528
19529         * XplatUIDriver.cs: Added abstracts for caret functions (CreateCaret,
19530           DestroyCaret, SetCaretPos and CaretVisible)
19531
19532         * XplatUIX11.cs:
19533           - Added implementation for caret functions
19534           - Moved hover variables into a struct, to make it a bit easier
19535             on the eyes and to debug
19536           - Removed XKeyboardState (moved to XplatUIX11.cs)
19537           - Moved Keyboard properties into the properties region
19538
19539         * Control.cs (get_Region): Control.CreateGraphics is the appropriate
19540           call to get a graphics context for our control
19541
19542         * XplatUIOSX.cs: Added empty overrides for the new caret functions
19543
19544         * TreeView.cs: Fixed bug. No matter what color was set it would always
19545           return SystemColors.Window
19546
19547         * XplatUIWin32.cs: Implemented caret overrides
19548
19549 2004-12-10  Jordi Mas i Hernandez <jordi@ximian.com>
19550
19551         * ListBox.cs: fire events, implement missing methods and properties,
19552         sorting.
19553
19554 2004-12-10  John BouAntoun <jba-mono@optusnet.com.au>
19555
19556         * MonthCalendar.cs: invalidation bug fixing
19557         * ThemeWin32Classic.cs: paint fixing
19558
19559 2004-12-09  Geoff Norton  <gnorton@customerdna.com>
19560
19561         * XplatUIOSX.cs: Refactor to pass the real hwnd into Graphics.FromHwnd, we
19562         prepare the CGContextRef there now.
19563
19564 2004-12-09  John BouAntoun <jba-mono@optusnet.com.au>
19565
19566         * MonthCalendar.cs:
19567           - optimisationL only invalidate areas that have changed
19568         * ThemeWin32Classic.cs:
19569           - only paint parts that intersect with clip_area
19570
19571 2004-12-09  Peter Bartok  <pbartok@novell.com>
19572
19573         * Application.cs: Undid changes from r37004 which cause problems
19574         on X11
19575
19576 2004-12-09  Ravindra  <rkumar@novell.com>
19577
19578         * ToolBar.cs: Added support for displaying ContextMenu
19579         attached to a button on ToolBar.
19580         * ToolBarButton.cs: Uncomment/fixed the DropDownMenu
19581         property.
19582
19583 2004-12-09  Jordi Mas i Hernandez <jordi@ximian.com>
19584
19585         * Label.cs: autosize works in text change and removes unnecessary
19586         invalidate
19587
19588 2004-12-09  Jordi Mas i Hernandez <jordi@ximian.com>
19589
19590         * ThemeWin32Classic.cs, XplatUIOSX.cs, XplatUIWin32.cs:
19591         remove warnings
19592
19593 2004-12-08  Geoff Norton  <gnorton@customerdna.com>
19594
19595         * XplatUIOSX.cs: Added mouse move/click/grab support
19596         Remove some debugging WriteLines not needed anymore.
19597         Add window resizing/positioning.
19598         Fix visibility on reparenting.
19599
19600 2004-12-08  Peter Bartok  <pbartok@novell.com>
19601
19602         * XplatUIOSX.cs: Added Idle event, now compiles on VS.Net
19603
19604 2004-12-07  Geoff Norton  <gnorton@customerdna.com>
19605
19606         * XplatUIOSX.cs: Initial checkin
19607         * XplatUI.cs: Use the Quartz driver if the environment is set to use it
19608
19609 2004-12-03  Ravindra <rkumar@novell.com>
19610
19611         * ListView.cs: Added some keybindings and fixed scrolling.
19612         ScrollBars listen to ValueChanged event instead of Scroll
19613         Event. This would let us take care of all changes being
19614         done in the scrollbars' values programmatically or manually.
19615         * ListView.cs (CanMultiselect): Added a check for shift key.
19616         * ListView.cs (EnsureVisible): Fixed. Do proper scrolling.
19617         * ListViewItem.cs (Clone): Fixed. We need to make a copy
19618         of ListViewSubItemCollection as well.
19619
19620 2004-12-06  Peter Bartok <pbartok@novell.com>
19621
19622         * Control.cs (Parent): Added check and exception to prevent
19623         circular parenting
19624
19625 2004-12-03  Jordi Mas i Hernandez <jordi@ximian.com>
19626
19627         * ListBox.cs: implemented clipping, selection single and multiple,
19628         bug fixing
19629
19630 2004-12-03  Ravindra <rkumar@novell.com>
19631
19632         * ListView.cs (ListView_KeyDown):
19633         * ListView.cs (ListView_KeyUp): Fixed multiple selection handling
19634         when CTRL key is pressed.
19635         * ListViewItem.cs (Selected): Fixed setting the property.
19636
19637 2004-12-03  Marek Safar  <marek.safar@seznam.cz>
19638
19639         * Application.cs (OnThreadException): Use ThreadExceptionDialog.
19640
19641         * Form.cs: Add ActiveForm, FormBorderStyle, MaximizeBox,
19642         MinimizeBox, ShowInTaskbar, TopMost properties.
19643
19644         * ThreadExceptionDialog.cs: Implemented (disabled TextBox until
19645         will be implemented).
19646
19647 2004-12-03  Marek Safar  <marek.safar@seznam.cz>
19648
19649         * OwnerDrawPropertyBag.cs: New internal parameterless ctor.
19650
19651         * TreeNode.cs: Implemented ICloneable, Fixed to pass my simple
19652         tests.
19653         
19654         * TreeNodeCollection.cs: Add exception throwing for Add,AddRange.
19655         
19656         * TreeView.cs: BackColor is Colors.Window.
19657
19658 2004-12-01  Jackson Harper  <jackson@ximian.com>
19659
19660         * TreeView.cs: When resizing the tree if the user is making it
19661         smaller we don't get expose events, so we need to handle adding
19662         the horizontal scrollbar in the size changed handler as well as
19663         the expose handler.
19664
19665 2004-12-02  Jordi Mas i Hernandez <jordi@ximian.com>
19666
19667         * DrawItemState.cs: fixes wrong enum values
19668
19669 2004-12-01  Jackson Harper  <jackson@ximian.com>
19670
19671         * TreeView.cs: Resize the hbar as well as the vbar on resize.
19672
19673 2004-12-01  Jackson Harper  <jackson@ximian.com>
19674
19675         * NodeLabelEditEventArgs.cs:
19676         * NodeLabelEditEventHandler.cs:
19677         * OpenTreeNodeEnumerator.cs:
19678         * TreeNode.cs:
19679         * TreeNodeCollection.cs:
19680         * TreeView.cs:
19681         * TreeViewAction.cs:
19682         * TreeViewCancelEventArgs.cs:
19683         * TreeViewCancelEventHandler.cs:
19684         * TreeViewEventArgs.cs:
19685         * TreeViewEventHandler.cs: Initial implementation.
19686
19687 2004-12-01  Ravindra <rkumar@novell.com>
19688
19689         * ListView.cs (CalculateListView): Fixed scrolling related
19690         calculations. Also, removed some debug statements from other
19691         places.
19692         * ListViewItem.cs: Changed access to 'selected' instance variable
19693         from private to internal.
19694         * ThemeWin32Classic.cs (DrawListViewItem): Fixed SubItem drawing.
19695
19696 2004-12-01  Jordi Mas i Hernandez <jordi@ximian.com>
19697
19698         * ThemeWin32Classic.cs: remove cache of brush and pens for
19699         specific controls and use the global system, fixes scrollbutton
19700         bugs (for small sizes, disabled, etc)
19701         
19702         * ScrollBar.cs: does not show the thumb for very small controls
19703         (as MS) and allow smaller buttons that the regular size
19704
19705 2004-12-01  Miguel de Icaza  <miguel@ximian.com>
19706
19707         * UpDownBase.cs: Add abstract methods for the interface.
19708         Add new virtual methods (need to be hooked up to TextEntry when it
19709         exists).
19710         Add override methods for most features.
19711         Computes the size, forces the height of the text entry.
19712
19713         * NumericUpDown.cs: Put here the current testing code.
19714
19715         * Set eol-style property on all files that do not have mixed line
19716         endings, to minimize the future problems.  There are still a few
19717         files with mixed endings, and someone should choose whether they
19718         want to move it or not.
19719
19720 2004-11-30  Jordi Mas i Hernandez <jordi@ximian.com>
19721
19722         * MonthCalendar.cs, ListView.cs: use Theme colours instead of
19723         System.Colors
19724         
19725 2004-11-30  Ravindra <rkumar@novell.com>
19726
19727         * ThemeWin32Classic.cs (DrawListViewItem): Fixed selected item
19728         drawing and replaced use of SystemColors by theme colors.
19729         * ListView.cs (ListView_Paint): Fixed painting done during scrolling.
19730         * ListView.cs (ListViewItemCollection.Add): Throw exception when
19731         same ListViewItem is being added more than once.
19732
19733 2004-11-30  John BouAntoun <jba-mono@optusnet.com.au>
19734
19735         * MonthCalendar.cs:
19736           - ControlStyles love to make the control not flicker
19737           
19738 2004-11-30  Peter Bartok  <pbartok@novell.com>
19739
19740         * CharacterCasing.cs: Added
19741
19742 2004-11-29  Peter Bartok  <pbartok@novell.com>
19743
19744         * TreeNode.cs, TreeNodeCollection.cs, TreeView.cs,
19745           TreeViewAction.cs, TreeViewEventArgs.cs: Removed new files.
19746           I am removing these files as they conflict with already completed
19747           work. While it is fantastic to get contributions to MWF, I
19748           respectfully ask that everyone please coordinate their contributions
19749           through mono-winforms-list or #mono-winforms at this time. We're
19750           explicitly avoiding stubbing and don't want controls that don't have
19751           their basic functionality implemented in svn. Please also see
19752           http://www.mono-project.com/contributing/winforms.html
19753
19754
19755 2004-11-29  Marek Safar  <marek.safar@seznam.cz>
19756
19757         * Application.cs (ModalRun): Don't hang after exit.
19758
19759         * Theme.cs: New TreeViewDefaultSize property.
19760
19761         * ThemeWin32Classic.cs: Replaced hardcoded defaultWindowBackColor
19762         with less hardcoded SystemColors constant.
19763         Implemented TreeViewDefaultSize.
19764
19765         * TreeNode.cs, TreeNodeCollection.cs, TreeView.cs,
19766         TreeViewAction.cs, TreeViewEventArgs.cs: New files.
19767
19768
19769 2004-11-29  John BouAntoun <jba-mono@optusnet.com.au>
19770
19771         * MonthCalendar.cs:
19772           - Fix NextMonthDate and PrevMonthDate click moving calendar
19773
19774 2004-11-26  John BouAntoun <jba-mono@optusnet.com.au>
19775
19776         * MonthCalendar.cs:
19777           - Fix usage of ScrollChange Property when scrolling months
19778
19779 2004-11-26  Jordi Mas i Hernandez <jordi@ximian.com>
19780
19781         * Menu.cs, MainMenu.cs, MenuItem.cs, MenuAPI.cs
19782          - Fixes menu destroying
19783          - Support adding and removing items on already created menus
19784
19785 2004-11-26  John BouAntoun <jba-mono@optusnet.com.au>
19786
19787         * MonthCalendar.cs:
19788           - Re-worked all bolded dates handling to match win32
19789         * ThemeWin32Classic.cs:
19790           - Fixed rendering with bolded dates
19791
19792 2004-11-25  Jordi Mas i Hernandez <jordi@ximian.com>
19793
19794         * ListBox.cs, Theme.cs, ThemeWin32Classic.cs:
19795         - Horizontal scroolbar
19796         - Multicolumn
19797         - Fixes
19798
19799
19800 2004-11-25  John BouAntoun <jba-mono@optusnet.com.au>
19801
19802         * MonthCalendar.cs:
19803           - Fix Usage of MaxSelectionCount from SelectionRange
19804           - Fixed Shift + Cursor Selection
19805           - Fixed Shift + (Pg up/Pg dn, Home/End) selection
19806           - Fixed normal cursor selection to be compat with win32
19807           - Fixed Shift + Mouse Click selection
19808
19809 2004-11-24  Peter Bartok <pbartok@novell.com>
19810
19811         * XplatUI.cs (DispatchMessage): Switched to return IntPtr
19812         * XplatUIDriver.cs (DispatchMessage): Switched to return IntPtr
19813         * XplatUIX11.cs:
19814           - CreatedKeyBoardMsg now updates keystate with Alt key
19815           - Added workaround for timer crash to CheckTimers, Jackson will
19816             develop a proper fix and check in later
19817           - Implemented DispatchMessage
19818           - Removed calling the native window proc from GetMessage (call
19819             now moved to DispatchMessage)
19820
19821         * KeyEventArgs.cs (Constructor): Now combines modifierkeys into
19822           the keydata (Fixes bug #69831)
19823
19824         * XplatUIWin32.cs:
19825           - (DispatchMessage): Switched to return IntPtr
19826           - Added DllImport for SetFocus
19827
19828 2004-11-24  Ravindra <rkumar@novell.com>
19829
19830         * ThemeWin32Classic.cs: Fixed ListView border and checkbox
19831         background drawing.
19832         * ListViewItem.cs: Fixed various properties, calculations
19833         and Clone() method. Fixed ListViewSubItemCollection.Clear() method.
19834         * ListView.cs: Fixed calculations, BackColor, ForeColor properties
19835         and some internal properties. Fixed MouseDown handler and Paint
19836         method.
19837
19838 2004-11-24  John BouAntoun <jba-mono@optusnet.com.au>
19839
19840         * MonthCalendar.cs: Add TitleMonth ContextMenu handling
19841
19842 2004-11-24  John BouAntoun <jba-mono@optusnet.com.au>
19843
19844         * ContainerControl.cs: correct accidental check in of local changes
19845
19846 2004-11-24  John BouAntoun <jba-mono@optusnet.com.au>
19847
19848         * ThemeWin32Classic.cs:
19849                 - Fixed Drawing Last month in grid (sometimes not showing)
19850         * MonthCalendar.cs:
19851                 - Fixed title width calculation bug (makeing title small)
19852
19853 2004-11-23  Peter Bartok <pbartok@novell.com>
19854
19855         * XplatUIX11.cs:
19856           - Added generation of WM_MOUSEHOVER event
19857           - Added missing assignment of async_method atom
19858           - Fixed WM_ERASEBKGND; now only redraws the exposed area
19859
19860 2004-11-23  John BouAntoun <jba-mono@optusnet.com.au>
19861
19862         * ThemeWin32Classic.cs:
19863                 - Fixed Drawing of today circle when showtodaycircle not set
19864                 - fixed drawing of first and last month in the grid (gay dates)
19865         * MonthCalendar.cs:
19866                 - Fixed Drawing of today circle
19867                 - Fixed drawing of grady dates
19868                 - Fixed HitTest for today link when ShowToday set to false
19869                 - Fixed DefaultSize to obey ShowToday
19870
19871 2004-11-23  John BouAntoun <jba-mono@optusnet.com.au>
19872
19873         * ThemeWin32Classic.cs: Fixed DrawMonthCalendar and private support methods
19874         * System.Windows.Forms/Theme.cs
19875         * MonthCalendar.cs: added for MonthCalendar
19876         * SelectionRange.cs: added for MonthCalendar
19877         * Day.cs: added for MonthCalendar: added for MonthCalendar
19878         * DateRangeEventArgs.cs: added for MonthCalendar
19879         * DateRangeEventHandler.cs: added for MonthCalendar
19880
19881 2004-11-22  Ravindra <rkumar@novell.com>
19882
19883         * ThemeWin32Classic.cs: Fixed ListViewDrawing with 'UseItemStyleForSubItems'
19884         property.
19885
19886 2004-11-22  Miguel de Icaza  <miguel@ximian.com>
19887
19888         * UpDownBase.cs (InitTimer): Use prehistoric C# 1.0 notation for
19889         event handler.
19890         
19891         * NumericUpDown.cs: Added new implementation.
19892         * UpDownBase.cs: Added new implementation.
19893
19894         * XplatUIWin32.cs (KeyboardSpeed, KeyboardDelay): added default
19895         implementations.
19896         
19897         * XplatUIX11.cs (KeyboardSpeed, KeyboardDelay): added default
19898         implementations.
19899
19900         * XplatUIDriver.cs ((KeyboardSpeed, KeyboardDelay): added new
19901         methods.
19902
19903 2004-11-21  Miguel de Icaza  <miguel@ximian.com>
19904
19905         * Timer.cs  (Dispose): Should call the base dispose when
19906         overriding.
19907
19908 2004-11-19  Jordi Mas i Hernandez <jordi@ximian.com>
19909
19910         * ScrollBar.cs: updates thumb position when max, min or increment
19911         is changed
19912
19913 2004-11-21  Ravindra <rkumar@novell.com>
19914
19915         * ListView.cs: Implemented item selection, activation and
19916         column header style. Fixed properties to do a redraw, if
19917         required. Added support for MouseHover, DoubleClick, KeyDown
19918         and KeyUp event handling and some minor fixes.
19919         * ListViewItem.cs: Fixed constructor.
19920         * ThemeWin32Classic.cs: Improved drawing for ListView.
19921
19922 2004-11-19  Jordi Mas i Hernandez <jordi@ximian.com>
19923
19924         * ThemeWin32Classic.cs: initial listbox drawing code
19925         * DrawMode.cs: new enumerator
19926         * ListControl.cs: stubbed class
19927         * ListBox.cs: initial implementation
19928         * Theme.cs: new methods definitions
19929         * SelectionMode.cs: new enumerator
19930
19931 2004-11-17  Peter Bartok  <pbartok@novell.com>
19932
19933         * XplatUIWin32.cs: Added double-click events to the class style
19934         * Control.cs (WndProc):
19935           - Added handling of click-count to MouseDown/ MouseUp events.
19936           - Added handling of middle and right mouse buttons
19937           - Removed old debug code
19938
19939 2004-11-17  Jackson Harper  <jackson@ximian.com>
19940
19941         * XplatUIX11.cs: Use the new Mono.Unix namespace.
19942
19943 2004-11-17  Ravindra <rkumar@novell.com>
19944
19945         * ListView.cs: Added event handling for MouseMove/Up/Down.
19946         * ColumnHeader.cs: Added a read-only internal property 'Pressed'.
19947         * ThemeWin32Classic.cs: We need to clear the graphics context and
19948         draw column header in a proper state.
19949
19950
19951 2004-11-17  Jordi Mas i Hernandez <jordi@ximian.com>
19952
19953         *  Menu.cs: fixes signature
19954
19955 2004-11-16  Peter Bartok  <pbartok@novell.com>
19956
19957         * XplatUIX11.cs (GetMessage): Implemented generation of
19958           double click mouse messages
19959
19960 2004-11-12  Jordi Mas i Hernandez <jordi@ximian.com>
19961
19962         *  Form.cs, MainMenu.cs, MenuAPI.cs: tracker should be for tracking session
19963         not by menu
19964
19965 2004-11-11  Peter Bartok  <pbartok@novell.com>
19966
19967         * HandleData.cs: Added Visible property
19968         * XplatUIX11.cs (IsVisible): Now uses Visible property from
19969           HandleData
19970         * XplatUIX11.cs: Removed old debug leftovers
19971         * XplatUIX11.cs (DefWndProc): Added WM_ERASEBKGND handler
19972         * Control.cs (WndProc): Removed old debug leftovers,
19973           streamlined handling of WM_WINDOWPOSCHANGED, removed un-
19974           needed WM_SIZE handling
19975
19976 2004-11-11  Jackson Harper  <jackson@ximian.com>
19977
19978         * OwnerDrawPropertyBag.cs:
19979         * TreeViewImageIndexConverter.cs: Initial implementation
19980
19981 2004-11-10  Jackson Harper  <jackson@ximian.com>
19982
19983         * ThemeWin32Classic.cs:
19984         * TabControl.cs: instead of moving tabs by the slider pos just
19985         start drawing at the tab that is offset by the slider. This way
19986         scrolling always moves by exactly one tab.
19987
19988 2004-11-10  Jackson Harper  <jackson@ximian.com>
19989
19990         * TabControl.cs: You can only scroll left when the slider has
19991         already ben moved right.
19992         
19993 2004-11-10  Jackson Harper  <jackson@ximian.com>
19994
19995         * ThemeWin32Classic.cs: Do not draw the selected tab if its not in
19996         the clip area.
19997         
19998 2004-11-10  Jackson Harper  <jackson@ximian.com>
19999
20000         * ThemeWin32Classic.cs: Don't bother drawing tabs outside of the
20001         clip area.
20002         
20003 2004-11-09  Jackson Harper  <jackson@ximian.com>
20004
20005         * TabControl.cs (CalcXPos): New helper method so we can determine
20006         the proper place to start drawing vertical tabs.
20007         * ThemeWin32Classic.cs (DrawTab): Draw right aligned tabs.
20008         
20009 2004-11-09  Jackson Harper  <jackson@ximian.com>
20010
20011         * TabControl.cs: Calculate sizing and rects for left aligned tabs.
20012         * ThemeWin32Classic.cs (GetTabControl*ScrollRect): Only handle Top
20013         and Bottom, left and right are illegal values for this and
20014         multiline is enabled when the alignment is set to left or right.
20015         (DrawTab): Each alignment block should draw the text itself now
20016         because Left requires special love. Also add rendering for Left
20017         aligned tabs.
20018         
20019 2004-11-09  Jordi Mas i Hernandez <jordi@ximian.com>
20020
20021         *  Form.cs, MainMenu.cs, MenuAPI.cs: fixes menu navigation, fixes popups,
20022         does not destroy the windows, removes debugging messages
20023
20024 2004-11-09  jba  <jba-mono@optusnet.com.au>
20025
20026         * ThemeWin32Classic.cs
20027         (DrawButtonBase): Fix verticle text rect clipping in windows
20028         (DrawCheckBox): Fix CheckAlign.TopCenter and CheckAlign.BottomCenter
20029         rendering and incorrect text rect clipping
20030         (DrawRadioButton): Fix CheckAlign.TopCenter and CheckAlign.BottomCenter
20031         rendering and incorrect text rect clipping
20032         
20033 2004-11-08  Jackson Harper  <jackson@ximian.com>
20034
20035         * ThemeWin32Classic.cs (DrawTabControl): Render tabs from top to
20036         bottom when they are bottom aligned so the bottoms of the tabs get
20037         displayed.
20038         * TabControl.cs (DropRow): Move rows up instead of down when the
20039         tab control is bottom aligned.
20040
20041 2004-11-08 13:59  pbartok
20042
20043         * XplatUIX11.cs:
20044           - Added handling for various window styles
20045           - Added handling for popup windows
20046           - Added SetTopmost handling
20047
20048 2004-11-08 13:55  pbartok
20049
20050         * XplatUIWin32.cs:
20051           - Added argument to SetTopmost method
20052           - Fixed broken ClientToScreen function
20053
20054 2004-11-08 13:53  pbartok
20055
20056         * XplatUIStructs.cs:
20057           - Added missing WS_EX styles
20058
20059 2004-11-08 13:53  pbartok
20060
20061         * XplatUI.cs, XplatUIDriver.cs:
20062           - Added argument to SetTopmost
20063
20064 2004-11-08 13:52  pbartok
20065
20066         * X11Structs.cs:
20067           - Added XSetWindowAttributes structure
20068           - Improved XWindowAttributes structure
20069           - Added SetWindowValuemask enum
20070           - Added window creation arguments enum
20071           - Added gravity enum
20072           - Added Motif hints structure
20073           - Added various Motif flags and enums
20074           - Added PropertyMode enum for property functions
20075
20076 2004-11-08 13:50  pbartok
20077
20078         * Form.cs:
20079           - Fixed arguments for updated SetTopmost method
20080
20081 2004-11-08 13:49  pbartok
20082
20083         * ToolTip.cs:
20084           - Fixed arguments for updated SetTopmost function
20085           - Fixed usage of PointToClient
20086
20087 2004-11-08 13:44  pbartok
20088
20089         * MenuAPI.cs:
20090           - Added Clipping of children and siblings
20091
20092 2004-11-08 13:41  pbartok
20093
20094         * MainMenu.cs:
20095           - Removed SetMenuBarWindow call. We do this in Form.cs
20096
20097 2004-11-08 13:40  jackson
20098
20099         * TabControl.cs, Theme.cs, ThemeWin32Classic.cs: Render the little
20100           scrolling jimmi in the correct location with bottom aligned tabs
20101
20102 2004-11-08 13:36  pbartok
20103
20104         * ContainerControl.cs:
20105           - Implemented BindingContext
20106           - Implemented ParentForm
20107
20108 2004-11-08 12:46  jackson
20109
20110         * TabControl.cs: Put bottom rendered tabs in the right location
20111
20112 2004-11-08 07:15  jordi
20113
20114         * ScrollBar.cs, ThemeWin32Classic.cs: fixes vertical scrollbar and
20115           removes dead code
20116
20117 2004-11-05 17:30  jackson
20118
20119         * TabControl.cs: When selected tabs are expanded make sure they
20120           don't go beyond the edges of the tab control
20121
20122 2004-11-05 14:57  jackson
20123
20124         * TabControl.cs: Reset show_slider so if the control is resized to
20125           a size where it is no longer needed it's not displayed anymore
20126
20127 2004-11-05 13:16  jackson
20128
20129         * TabControl.cs: Make tab pages non visible when added to the
20130           control
20131
20132 2004-11-05 12:42  jackson
20133
20134         * TabControl.cs: Implement SizeMode.FillToRight
20135
20136 2004-11-05 12:16  jackson
20137
20138         * Control.cs: Do not call CreateHandle if the handle is already
20139           created
20140
20141 2004-11-05 11:46  jackson
20142
20143         * TabControl.cs: Remove superflous call to CalcTabRows
20144
20145 2004-11-05 09:07  jackson
20146
20147         * XplatUIX11.cs: Update for Mono.Posix changes
20148
20149 2004-11-05 07:00  ravindra
20150
20151         * ListView.cs, ListViewItem.cs: Implemented some methods and fixed
20152           scrolling.
20153
20154 2004-11-04 22:47  jba
20155
20156         * ThemeWin32Classic.cs:
20157           - Fix Button rendering for FlatStyle = Flat or Popup
20158           - Fix RadioButton and CheckBox rendering when Appearance = Button
20159             (normal and flatstyle).
20160           - Correct outer rectangle color when drawing focus rectangle
20161           - Adjust button bounds to be 1 px smaller when focused
20162           - Make button not draw sunken 3d border when pushed (windows compat)
20163           - Fix CPDrawBorder3D to not make bottom right hand corner rounded
20164           - Offset the text in RadioButton and Checkbox when being rendered as
20165           a button.
20166           - Hover and Click behaviour for Colored FlatStyle.Flat and Popup
20167           radiobuttons
20168           - Fixed disabled rendering for colored flatstyle radiobuttons (both)
20169           - Fixed disabled text rendering for normally rendered radiobuttons
20170
20171 2004-11-04 10:26  jackson
20172
20173         * TabControl.cs: Recalculate tab rows when resizing
20174
20175 2004-11-04 07:47  jordi
20176
20177         * Form.cs, MainMenu.cs, Menu.cs, MenuAPI.cs, MenuItem.cs:
20178           collection completion, drawing issues, missing features
20179
20180 2004-11-04 05:03  ravindra
20181
20182         * ScrollBar.cs:
20183                 - We need to recalculate the Thumb area when
20184                 LargeChange/maximum/minimum values are changed.
20185           - We set the 'pos' in UpdatePos() method to minimum, if it's less
20186                 than minimum. This is required to handle the case if large_change is
20187                 more than max, and use LargeChange property instead of large_change
20188                 variable.
20189           - We return max+1 when large_change is more than max, like MS does.
20190
20191 2004-11-04 04:29  ravindra
20192
20193         * ColumnHeader.cs, ListView.cs, ListViewItem.cs:
20194                 - Changed default value signatures (prefixed all with ListView).
20195                 - Fixed/implemented layout LargeIcon, SmallIcon and List views for
20196                 ListView.
20197           - Fixed calculations for ListViewItem and implemented Clone()
20198           method.
20199
20200 2004-11-04 04:26  ravindra
20201
20202         * Theme.cs, ThemeWin32Classic.cs:
20203                 - Changed default ListView values signatures (prefixed all with
20204                 ListView).
20205           - Fixed default size values for VScrollBar and HScrollBar.
20206                 - Fixed DrawListViewItem method.
20207
20208 2004-11-04 04:05  ravindra
20209
20210         * ColumnHeaderStyle.cs: Typo. It should be Nonclickable.
20211
20212 2004-11-04 04:04  ravindra
20213
20214         * ImageList.cs: Implemented the missing overload for Draw method.
20215
20216 2004-11-03 19:29  jackson
20217
20218         * TabControl.cs: Handle dropping rows on selection properly
20219
20220 2004-11-03 11:59  jackson
20221
20222         * TabControl.cs: remove debug code
20223
20224 2004-11-03 11:52  jackson
20225
20226         * TabControl.cs, ThemeWin32Classic.cs: Initial implementation of
20227           the scrolly widgerywoo
20228
20229 2004-11-02 13:52  jackson
20230
20231         * TabControl.cs: Resize the tab pages and tabs when the tab control
20232           is resized
20233
20234 2004-11-02 13:40  jackson
20235
20236         * TabControl.cs, ThemeWin32Classic.cs: Move the row with the
20237           selected tab to the bottom
20238
20239 2004-11-02 13:39  jackson
20240
20241         * TabPage.cs: Store the tab pages row
20242
20243 2004-11-02 12:33  jordi
20244
20245         * MenuItem.cs: fixes handle creation
20246
20247 2004-11-02 11:42  jackson
20248
20249         * TabControl.cs: signature fix
20250
20251 2004-11-02 08:56  jackson
20252
20253         * TabControl.cs: Calculate whether the tab is on an edge properly.
20254           Remove top secret debugging code
20255
20256 2004-11-01 19:57  jackson
20257
20258         * TabControl.cs: Add click handling, and proper sizing
20259
20260 2004-11-01 19:47  jackson
20261
20262         * Theme.cs, ThemeWin32Classic.cs: New rendering and sizing code for
20263           tab controls
20264
20265 2004-11-01 19:39  jackson
20266
20267         * TabPage.cs: add internal property to store the bounds of a tab
20268           page
20269
20270 2004-10-30 04:23  ravindra
20271
20272         * Theme.cs, ThemeWin32Classic.cs: Drawing ListView and some default
20273           values.
20274
20275 2004-10-30 04:21  ravindra
20276
20277         * ListView.cs, ListViewItem.cs: Added support for scrolling and
20278           fixed calculations.
20279
20280 2004-10-30 03:06  pbartok
20281
20282         * XplatUIX11.cs:
20283           - Removed extension of DllImported libs
20284
20285 2004-10-29 09:55  jordi
20286
20287         * Form.cs, MainMenu.cs, Menu.cs, MenuAPI.cs, MenuItem.cs: Menu key
20288           navigation, itemcollection completion, menu fixes
20289
20290 2004-10-27 22:58  pbartok
20291
20292         * XplatUIX11.cs:
20293           - Now throws a nice error message when no X display could be opened
20294
20295 2004-10-26 13:51  jordi
20296
20297         * ListView.cs: removes warning
20298
20299 2004-10-26 03:55  ravindra
20300
20301         * ColumnHeader.cs, ListView.cs, ListViewItem.cs,
20302           ThemeWin32Classic.cs: Some formatting for my last checkins.
20303
20304 2004-10-26 03:36  ravindra
20305
20306         * ThemeWin32Classic.cs: Implemented DetailView drawing for ListView
20307           control and default values.
20308
20309 2004-10-26 03:35  ravindra
20310
20311         * Theme.cs: Added some default values for ListView control.
20312
20313 2004-10-26 03:33  ravindra
20314
20315         * ToolBar.cs: ToolBar should use the user specified button size, if
20316           there is any. Added a size_specified flag for the same.
20317
20318 2004-10-26 03:33  ravindra
20319
20320         * ColumnHeader.cs: Added some internal members and calculations for
20321           ColumnHeader.
20322
20323 2004-10-26 03:32  ravindra
20324
20325         * ListViewItem.cs: Calculations for ListViewItem.
20326
20327 2004-10-26 03:31  ravindra
20328
20329         * ListView.cs: Added some internal members and calculations for
20330           ListView.
20331
20332 2004-10-22 13:31  jordi
20333
20334         * MenuAPI.cs: speedup menus drawing
20335
20336 2004-10-22 13:16  jackson
20337
20338         * XplatUIX11.cs: Make sure to update exposed regions when adding an
20339           expose event
20340
20341 2004-10-22 11:49  jackson
20342
20343         * Control.cs: oops
20344
20345 2004-10-22 11:41  jackson
20346
20347         * Control.cs: Check to see if the window should have its background
20348           repainted by X when drawing.
20349
20350 2004-10-22 11:31  jackson
20351
20352         * XplatUIX11.cs: When invalidating areas only use XClearArea if
20353           clear is true, this way we do not get flicker from X repainting the
20354           background
20355
20356 2004-10-22 11:28  jackson
20357
20358         * XEventQueue.cs: Queue properly
20359
20360 2004-10-21 09:38  jackson
20361
20362         * XEventQueue.cs: Fix access modifier
20363
20364 2004-10-21 09:36  jackson
20365
20366         * XEventQueue.cs: Don't loose messages
20367
20368 2004-10-21 09:22  jackson
20369
20370         * XEventQueue.cs: Don't loose messages
20371
20372 2004-10-20 04:15  jordi
20373
20374         * BootMode.cs: enum need it by SystemInfo
20375
20376 2004-10-19 21:58  pbartok
20377
20378         * XplatUIWin32.cs:
20379           - Small sanity check
20380
20381 2004-10-19 21:56  pbartok
20382
20383         * Form.cs:
20384           - Added private FormParentWindow class which acts as the container
20385             for our form and as the non-client area where menus are drawn
20386           - Added/Moved required tie-ins to Jordi's menus
20387           - Fixed/Implemented the FormStartPosition functionality
20388
20389 2004-10-19 21:52  pbartok
20390
20391         * Control.cs:
20392           - Removed unneeded locals
20393           - Added code to all size and location properties to understand and
20394             deal with the parent container of Form
20395
20396 2004-10-19 21:33  pbartok
20397
20398         * Application.cs:
20399           - Fixed to deal with new Form subclasses for menus
20400
20401 2004-10-19 17:48  jackson
20402
20403         * XEventQueue.cs: commit correct version of file
20404
20405 2004-10-19 16:50  jackson
20406
20407         * XEventQueue.cs, XplatUIX11.cs: New optimized event queue
20408
20409 2004-10-19 16:15  jordi
20410
20411         * MenuAPI.cs: MenuBarCalcSize returns the height
20412
20413 2004-10-19 08:31  pbartok
20414
20415         * Control.cs:
20416           - Added missing call to PreProcessMessage before calling OnXXXKey
20417           methods
20418
20419 2004-10-19 00:04  ravindra
20420
20421         * ToolTip.cs: Fixed constructor.
20422
20423 2004-10-18 09:31  jordi
20424
20425         * MenuAPI.cs: menuitems in menubars do not have shortcuts
20426
20427 2004-10-18 09:26  jordi
20428
20429         * MenuItem.cs: fixes MenuItem class signature
20430
20431 2004-10-18 08:56  jordi
20432
20433         * MenuAPI.cs: prevents windows from showing in the taskbar
20434
20435 2004-10-18 00:28  ravindra
20436
20437         * ToolTip.cs: Suppressed a warning message.
20438
20439 2004-10-18 00:27  ravindra
20440
20441         * Control.cs: Default value of visible property must be true.
20442
20443 2004-10-17 23:19  pbartok
20444
20445         * ToolTip.cs:
20446           - Complete implementation
20447
20448 2004-10-17 23:19  pbartok
20449
20450         * XplatUIX11.cs:
20451           - Added EnableWindow method
20452           - Added SetModal stub
20453           - Added generation of WM_ACTIVATE message (still needs testing)
20454           - Added SetTopMost stub
20455           - Changes to deal with VirtualKeys being moved to XplatUIStructs.cs
20456
20457 2004-10-17 23:17  pbartok
20458
20459         * XplatUIWin32.cs:
20460           - Removed VirtualKeys to XplatUIStructs
20461           - Implemented SetTopMost method
20462           - Implemented EnableWindow method
20463           - Bugfix in ScreenToClient()
20464           - Bugfixes in ClientToScreen()
20465
20466 2004-10-17 22:51  pbartok
20467
20468         * XplatUIStructs.cs:
20469           - Added WS_EX styles to WindowStyles enumeration
20470
20471 2004-10-17 22:50  pbartok
20472
20473         * XplatUI.cs, XplatUIDriver.cs:
20474           - Added method for enabling/disabling windows
20475           - Added method for setting window modality
20476           - Added method for setting topmost window
20477
20478 2004-10-17 22:49  pbartok
20479
20480         * ThemeWin32Classic.cs:
20481           - Added ToolTip drawing code
20482
20483 2004-10-17 22:49  pbartok
20484
20485         * Theme.cs:
20486           - Added ToolTip abstracts
20487
20488 2004-10-17 22:47  pbartok
20489
20490         * Form.cs:
20491           - Fixed Form.ControlCollection to handle owner relations
20492           - Added Owner/OwnedForms handling
20493           - Implemented Z-Ordering for owned forms
20494           - Removed unneeded private overload of ShowDialog
20495           - Fixed ShowDialog, added the X11 incarnation of modal handling (or
20496             so I hope)
20497           - Fixed Close(), had wrong default
20498           - Added firing of OnLoad event
20499           - Added some commented out debug code for Ownership handling
20500
20501 2004-10-17 22:16  pbartok
20502
20503         * Control.cs:
20504           - Fixed/implemented flat list of controls
20505
20506 2004-10-17 22:14  pbartok
20507
20508         * Application.cs:
20509           - Added code to simulate modal dialogs on Win32
20510
20511 2004-10-17 16:11  jordi
20512
20513         * ScrollBar.cs: disabled scrollbar should not honor any keyboard or
20514           mouse event
20515
20516 2004-10-17 13:39  jordi
20517
20518         * MenuAPI.cs: menu drawing fixes
20519
20520 2004-10-15 09:10  ravindra
20521
20522         * StructFormat.cs: General Enum.
20523
20524 2004-10-15 09:09  ravindra
20525
20526         * SizeGripStyle.cs: Enum for Form.
20527
20528 2004-10-15 09:08  ravindra
20529
20530         * Theme.cs, ThemeWin32Classic.cs: Added ColumnHeaderHeight property
20531           in Theme for ListView.
20532
20533 2004-10-15 09:06  ravindra
20534
20535         * ColumnHeader.cs: Flushing some formatting changes.
20536
20537 2004-10-15 09:05  ravindra
20538
20539         * ListViewItem.cs: Implemented GetBounds method and fixed coding
20540           style.
20541
20542 2004-10-15 09:03  ravindra
20543
20544         * ListView.cs: Implemented Paint method and fixed coding style.
20545
20546 2004-10-15 07:34  jordi
20547
20548         * MenuAPI.cs: fix for X11
20549
20550 2004-10-15 07:32  ravindra
20551
20552         * ButtonBase.cs, CheckBox.cs, RadioButton.cs:
20553                 - Renamed Paint() method to Draw() for clarity. Also, moved
20554                 DrawImage() to OnPaint().
20555
20556 2004-10-15 07:25  ravindra
20557
20558         * CheckBox.cs, RadioButton.cs:
20559                 - Removed Redraw (), we get it from ButtonBase.
20560                 - Implemented Paint (), to do class specific painting.
20561
20562 2004-10-15 07:16  ravindra
20563
20564         * ButtonBase.cs:
20565                 - Redraw () is not virtual now.
20566                 - Added an internal virtual method Paint (), so that
20567                 derived classes can do their painting on their own.
20568                 - Modified OnPaint () to call Paint ().
20569
20570 2004-10-15 06:43  jordi
20571
20572         * ContextMenu.cs, DrawItemEventHandler.cs, Form.cs, MainMenu.cs,
20573           MenuAPI.cs, MenuItem.cs: menu work, mainmenu, subitems, etc
20574
20575 2004-10-15 00:30  ravindra
20576
20577         * MessageBox.cs:
20578                 - MessageBox on windows does not have min/max buttons.
20579                 This change in CreateParams fixes this on Windows. We
20580                 still need to implement this windowstyle behavior in
20581                 our X11 driver.
20582
20583 2004-10-14 05:14  ravindra
20584
20585         * ToolBar.cs:
20586                 - Changed Redraw () to do a Refresh () always.
20587                 - Fixed the MouseMove event handling when mouse is pressed,
20588                 ie drag event handling.
20589                 - Replaced the usage of ToolBarButton.Pressed property to
20590                 ToolBarButton.pressed internal variable.
20591
20592 2004-10-14 05:10  ravindra
20593
20594         * ToolBarButton.cs:
20595                 - Added an internal member 'inside' to handle mouse move
20596                 with mouse pressed ie mouse drag event.
20597                 - Changed 'Pressed' property to return true only when
20598                 'inside' and 'pressed' are both true.
20599                 - Some coding style love.
20600
20601 2004-10-14 00:17  ravindra
20602
20603         * Form.cs: Fixed class signature. ShowDialog (Control) is not a
20604           public method.
20605
20606 2004-10-14 00:15  ravindra
20607
20608         * ButtonBase.cs: Redraw () related improvements.
20609
20610 2004-10-14 00:14  ravindra
20611
20612         * MessageBox.cs: Moved InitFormSize () out of Paint method and
20613           removed unnecessary calls to Button.Show () method.
20614
20615 2004-10-13 17:50  pbartok
20616
20617         * XplatUIX11.cs:
20618           - Formatting fix
20619           - Removed destroying of window until we solve the problem of X
20620             destroying the window before us on shutdown
20621
20622 2004-10-13 16:32  pbartok
20623
20624         * ButtonBase.cs:
20625           - Now Redraws on MouseUp for FlatStyle Flat and Popup
20626
20627 2004-10-13 14:18  pbartok
20628
20629         * XplatUIX11.cs:
20630           - Added code to destroy the X window
20631
20632 2004-10-13 14:18  pbartok
20633
20634         * XplatUIWin32.cs:
20635           - Added code to destroy a window
20636
20637 2004-10-13 14:12  pbartok
20638
20639         * ButtonBase.cs:
20640           - Added the Redraw on Resize that got dropped in the last rev
20641
20642 2004-10-13 09:06  pbartok
20643
20644         * ThemeWin32Classic.cs:
20645           - Path from John BouAntoun:
20646             * Fix check rendering (centre correctly for normal style, offset
20647               correctly for FlatStyle).
20648             * Fix border color usage (use backcolor) for FlatStyle.Popup
20649             * Use checkbox.Capture instead of checkbox.is_pressed when
20650               rendering flatstyle states.
20651
20652 2004-10-12 21:48  pbartok
20653
20654         * ThemeWin32Classic.cs:
20655           - Removed all occurences of SystemColors and replaced them with the
20656             matching theme color
20657
20658 2004-10-12 21:41  pbartok
20659
20660         * ThemeWin32Classic.cs:
20661           - From John BouAntoun: Added an overload to CPDrawBorder3D to allow
20662             him using the function for flatstyle drawing
20663           - Changed functions to use the new version of CPDrawBorder3D
20664
20665 2004-10-12 21:15  pbartok
20666
20667         * ControlPaint.cs:
20668           - Fixed Dark(), DarkDark(), Light() and LightLight() methods to
20669             match MS documentation. They need to return defined colors if the
20670             passed color matches the configured control color. Thanks to John
20671             BouAntoun for pointing this out.
20672
20673 2004-10-12 20:57  pbartok
20674
20675         * Control.cs:
20676           - Fix from John BouAntoun: Raise ForeColorChanged event when text
20677             color is changed
20678
20679 2004-10-12 20:46  pbartok
20680
20681         * CheckBox.cs:
20682           - Fix from John BouAntoun: Now properly sets the Appearance property
20683
20684 2004-10-12 20:45  pbartok
20685
20686         * ThemeWin32Classic.cs:
20687           - Fixes from John BouAntoun: now handles forecolors and backcolors
20688             for flatstyle rendered controls much better; It also fixes normal
20689             checkbox rendering when pushed or disabled.
20690
20691 2004-10-08 02:50  jordi
20692
20693         * Form.cs, MainMenu.cs, Menu.cs, MenuAPI.cs, MenuItem.cs: more menu
20694           work
20695
20696 2004-10-07 08:56  jordi
20697
20698         * ThemeWin32Classic.cs: Removes deletion of cached brushes
20699
20700 2004-10-06 03:59  jordi
20701
20702         * Control.cs, StatusBar.cs, ThemeWin32Classic.cs, ToolBar.cs,
20703           XplatUIWin32.cs: removes warnings from compilation
20704
20705 2004-10-05 12:23  jackson
20706
20707         * RadioButton.cs: Fix ctor
20708
20709 2004-10-05 11:10  pbartok
20710
20711         * MessageBox.cs:
20712           - Partial implementation by Benjamin Dasnois
20713
20714 2004-10-05 10:15  jackson
20715
20716         * ThemeWin32Classic.cs: Improve rendering of the radio button patch
20717           by John BouAntoun
20718
20719 2004-10-05 03:07  ravindra
20720
20721         * ToolBar.cs:
20722                 - Removed a private method, Draw ().
20723                 - Fixed the ButtonDropDown event handling.
20724                 - Fixed MouseMove event handling.
20725
20726 2004-10-05 03:04  ravindra
20727
20728         * ThemeWin32Classic.cs:
20729                 - Added DrawListView method and ListViewDefaultSize property.
20730                 - Changed ControlPaint method calls to CPDrawXXX wherever possible.
20731                 - Changed DOS style CRLF to Unix format (dos2unix).
20732
20733 2004-10-05 03:03  ravindra
20734
20735         * Theme.cs:
20736                 - Added DrawListView method and ListViewDefaultSize property.
20737
20738 2004-10-05 02:42  ravindra
20739
20740         * ToolBarButton.cs: Added an internal member dd_pressed to handle
20741           clicks on DropDown arrow.
20742
20743 2004-10-04 22:56  jackson
20744
20745         * ButtonBase.cs, Label.cs, MenuAPI.cs, ProgressBar.cs,
20746           ScrollBar.cs, StatusBar.cs, ToolBar.cs, TrackBar.cs: Let the base
20747           Control handle the buffers, derived classes should not have to
20748           CreateBuffers themselves.
20749
20750 2004-10-04 21:20  jackson
20751
20752         * StatusBar.cs: The control handles resizing the buffers now.
20753
20754 2004-10-04 21:18  jackson
20755
20756         * Control.cs: When resizing the buffers should be invalidated. This
20757           should be handled in Control not in derived classes.
20758
20759 2004-10-04 14:45  jackson
20760
20761         * TabPage.cs: oops
20762
20763 2004-10-04 02:14  pbartok
20764
20765         * LeftRightAlignment.cs:
20766           - Initial check-in
20767
20768 2004-10-04 01:09  jordi
20769
20770         * ThemeWin32Classic.cs: fixes right button position causing right
20771           button not showing on horizontal scrollbars
20772
20773 2004-10-02 13:12  pbartok
20774
20775         * XplatUIX11.cs:
20776           - Simplified the Invalidate method by using an X call instead of
20777             generating the expose ourselves
20778           - Added an expose when the window background is changed
20779           - Implemented ClientToScreen method
20780
20781 2004-10-02 13:08  pbartok
20782
20783         * XplatUIWin32.cs:
20784           - Added Win32EnableWindow method (test for implementing modal
20785           dialogs)
20786           - Added ClientToScreen method and imports
20787
20788 2004-10-02 13:07  pbartok
20789
20790         * XplatUI.cs, XplatUIDriver.cs:
20791           - Added ClientToScreen coordinate translation method
20792
20793 2004-10-02 13:06  pbartok
20794
20795         * KeyPressEventArgs.cs:
20796           - Fixed access level for constructor
20797
20798 2004-10-02 13:06  pbartok
20799
20800         * NativeWindow.cs:
20801           - Changed access level for the window_collection hash table
20802
20803 2004-10-02 13:05  pbartok
20804
20805         * Form.cs:
20806           - Added KeyPreview property
20807           - Added Menu property (still incomplete, pending Jordi's menu work)
20808           - Implemented ProcessCmdKey
20809           - Implemented ProcessDialogKey
20810           - Implemented ProcessKeyPreview
20811
20812 2004-10-02 13:02  pbartok
20813
20814         * Control.cs:
20815           - Added private method to get the Control object from the window
20816           handle
20817           - Implemented ContextMenu property
20818           - Implemented PointToScreen
20819           - Implemented PreProcessMessage
20820           - Implemented IsInputChar
20821           - Implemented IsInputKey
20822           - Implemented ProcessCmdKey
20823           - Completed ProcessKeyEventArgs
20824           - Fixed message loop to call the proper chain of functions on key
20825           events
20826           - Implemented ProcessDialogChar
20827           - Implemented ProcessDialogKey
20828           - Implemented ProcessKeyMessage
20829           - Implemented ProcessKeyPreview
20830           - Added RaiseDragEvent stub (MS internal method)
20831           - Added RaiseKeyEvent stub (MS internal method)
20832           - Added RaiseMouseEvent stub (MS Internal method)
20833           - Added RaisePaintEvent stub (MS Internal method)
20834           - Added ResetMouseEventArgs stub (MS Internal method)
20835           - Implemented RtlTranslateAlignment
20836           - Implemented RtlTranslateContent
20837           - Implemented RtlTranslateHorizontal
20838           - Implemented RtlTranslateLeftRight
20839           - Added generation of KeyPress event
20840
20841 2004-10-02 05:57  ravindra
20842
20843         * ListViewItem.cs: Added attributes.
20844
20845 2004-10-02 05:32  ravindra
20846
20847         * ListView.cs: Added attributes.
20848
20849 2004-10-01 11:53  jackson
20850
20851         * Form.cs: Implement the Close method so work on MessageBox can
20852           continue.
20853
20854 2004-09-30 14:06  pbartok
20855
20856         * XplatUIX11.cs:
20857           - Bug fixes
20858
20859 2004-09-30 11:34  jackson
20860
20861         * RadioButton.cs: Fix typo. Patch by John BouAntoun.
20862
20863 2004-09-30 07:26  ravindra
20864
20865         * ListViewItemConverter.cs: Converter for ListViewItem.
20866
20867 2004-09-30 07:26  ravindra
20868
20869         * SortOrder.cs: Enum for ListView control.
20870
20871 2004-09-30 07:25  ravindra
20872
20873         * ColumnHeader.cs: Supporting class for ListView control.
20874
20875 2004-09-30 07:24  ravindra
20876
20877         * ListView.cs, ListViewItem.cs: Initial implementation.
20878
20879 2004-09-30 07:20  ravindra
20880
20881         * ItemActivation.cs: Enum for ListView Control.
20882
20883 2004-09-29 20:29  pbartok
20884
20885         * XplatUIX11.cs:
20886           - Added lookup of pixel value for background color; tries to get a
20887             color 'close' to the requested color, it avoids having to create a
20888             colormap.  Depending on the display this could mean the used color
20889             is slightly off the desired color. Might have to change it to a more
20890             resource intensive colormap approach, but it will work as a
20891           workaround to avoid red screens.
20892
20893 2004-09-29 14:27  jackson
20894
20895         * XplatUIX11.cs: Set the X DisplayHandle in System.Drawing
20896
20897 2004-09-28 12:44  pbartok
20898
20899         * ButtonBase.cs, CheckBox.cs, ControlPaint.cs, GroupBox.cs,
20900           HScrollBar.cs, Label.cs, LinkLabel.cs, Panel.cs, PictureBox.cs,
20901           ProgressBar.cs, RadioButton.cs, ScrollBar.cs, StatusBar.cs,
20902           Theme.cs, ThemeGtk.cs, ThemeWin32Classic.cs, ToolBar.cs,
20903           TrackBar.cs, VScrollBar.cs:
20904           - Streamlined Theme interfaces:
20905             * Each DrawXXX method for a control now is passed the object for
20906               the control to be drawn in order to allow accessing any state the
20907               theme might require
20908
20909             * ControlPaint methods for the theme now have a CP prefix to avoid
20910               name clashes with the Draw methods for controls
20911
20912             * Every control now retrieves it's DefaultSize from the current
20913             theme
20914
20915 2004-09-28 12:17  jackson
20916
20917         * Button.cs: Do not redraw OnClick MouseUp/Down will handle the
20918           drawing
20919
20920 2004-09-24 14:57  jackson
20921
20922         * XplatUIX11.cs: Don't lock/enqueue/dequeue for unhandled messages.
20923           Gives us a nice little performance boost.
20924
20925 2004-09-24 12:02  jackson
20926
20927         * TabAlignment.cs, TabAppearance.cs, TabControl.cs, TabDrawMode.cs,
20928           TabPage.cs, TabSizeMode.cs: Partial implementation of the Tab
20929           Control and supporting classes. Initial checkin
20930
20931 2004-09-23 13:08  jackson
20932
20933         * Form.cs: Temp build fixage
20934
20935 2004-09-23 01:39  ravindra
20936
20937         * ItemChangedEventArgs.cs, ItemChangedEventHandler.cs,
20938           ItemCheckEventArgs.cs, ItemCheckEventHandler.cs,
20939           ItemDragEventArgs.cs, ItemDragEventHandler.cs,
20940           LabelEditEventArgs.cs, LabelEditEventHandler.cs: EventArgs and
20941           EventHandlers needed by ListView Control.
20942
20943 2004-09-22 14:12  pbartok
20944
20945         * ScrollableControl.cs:
20946           - Implemented DockPadding property
20947           - Implemented AutoScroll property
20948           - Implemented AutoScrollMargin property
20949           - Implemented AutoScrollMinSize property
20950           - Implemented AutoScrollPosition property
20951           - Implemented DisplayRectangle property (still incomplete)
20952           - Implemented CreateParams property
20953           - Implemented HScroll property
20954           - Implemented VScroll property
20955           - Implemented OnVisibleChanged property
20956
20957 2004-09-22 14:09  pbartok
20958
20959         * Form.cs:
20960           - Added Form.ControllCollection class
20961           - Added handling for Form owners: Owner, OwnedForms, AddOwnedForm,
20962             RemoveOwnedForm (still incomplete, missing on-top and common
20963             minimize/maximize behaviour)
20964           - Added StartPosition property (still incomplete, does not use when
20965             creating the form)
20966           - Added ShowDialog() methods (still incomplete, missing forcing the
20967             dialog modal)
20968
20969 2004-09-22 14:05  pbartok
20970
20971         * Application.cs:
20972           - Added message loop for modal dialogs
20973
20974 2004-09-22 14:02  pbartok
20975
20976         * GroupBox.cs:
20977           - Fixed wrong types for events
20978
20979 2004-09-22 14:00  pbartok
20980
20981         * Shortcut.cs, FormWindowState.cs:
20982           - Fixed wrong values
20983
20984 2004-09-22 12:01  jackson
20985
20986         * Control.cs: Text is never null
20987
20988 2004-09-20 22:14  pbartok
20989
20990         * XplatUIWin32.cs:
20991           - Fixed accessibility level for Idle handler
20992
20993 2004-09-20 18:54  jackson
20994
20995         * Application.cs, XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs,
20996           XplatUIX11.cs: New message loop that uses poll so we don't get a
20997           busy loop
20998
20999 2004-09-17 10:43  pbartok
21000
21001         * ScrollBar.cs:
21002           - Fixed behaviour of arrow buttons. Now properly behaves like
21003             Buttons (and like Microsoft's scrollbar arrow buttons)
21004
21005 2004-09-17 10:14  pbartok
21006
21007         * ScrollBar.cs:
21008           - Added missing release of keyboard/mouse capture
21009
21010 2004-09-17 06:18  jordi
21011
21012         * ContextMenu.cs, MainMenu.cs, Menu.cs, MenuAPI.cs, MenuItem.cs,
21013           Theme.cs: Very early menu support
21014
21015 2004-09-16 17:45  pbartok
21016
21017         * XplatUIWin32.cs:
21018           - Fixed sending a window to the front
21019           - Added overload for SetWindowPos to avoid casting
21020
21021 2004-09-16 17:44  pbartok
21022
21023         * Control.cs:
21024           - Added SendToBack and BringToFront methods
21025
21026 2004-09-16 07:00  ravindra
21027
21028         * Copyright: Added Novell URL.
21029
21030 2004-09-16 07:00  ravindra
21031
21032         * ToolBar.cs: Invalidate should be done before redrawing.
21033
21034 2004-09-15 21:19  ravindra
21035
21036         * ColumnHeaderStyle.cs: Enum for ListView Control.
21037
21038 2004-09-15 21:18  ravindra
21039
21040         * ColumnClickEventArgs.cs, ColumnClickEventHandler.cs: Event for
21041           ListView Control.
21042
21043 2004-09-13 18:26  jackson
21044
21045         * Timer.cs, XplatUIX11.cs: Remove test code so timers are updated
21046           properly
21047
21048 2004-09-13 18:13  jackson
21049
21050         * Timer.cs, X11Structs.cs, XplatUIX11.cs: Timers are now handled in
21051           a second thread and post messages into the main threads message
21052           queue. This makes timing much more consistent. Both win2K and XP
21053           have a minimum timer value of 15 milliseconds, so we now do this
21054           too.
21055
21056 2004-09-13 15:18  pbartok
21057
21058         * X11Structs.cs, XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs,
21059           XplatUIX11.cs:
21060           - Added Z-Ordering methods
21061
21062 2004-09-13 10:56  pbartok
21063
21064         * Form.cs:
21065           - Fixed #region names
21066           - Moved properties and methods into their proper #regions
21067
21068 2004-09-13 10:51  pbartok
21069
21070         * Form.cs:
21071           - Added Accept and CancelButton properties
21072           - Added ProcessDialogKey() method
21073
21074 2004-09-13 08:18  pbartok
21075
21076         * IWindowTarget.cs:
21077           - Initial check-in
21078
21079 2004-09-10 21:50  pbartok
21080
21081         * Control.cs:
21082           - Added DoDragDrop() [incomplete]
21083           - Properly implemented 'Visible' handling
21084           - Added SetVisibleCore()
21085           - Implemented FindChildAtPoint()
21086           - Implemented GetContainerControl()
21087           - Implemented Hide()
21088
21089 2004-09-10 19:28  pbartok
21090
21091         * Control.cs:
21092           - Moved methods into their appropriate #regions
21093           - Reordered methods within regions alphabetically
21094
21095 2004-09-10 18:57  pbartok
21096
21097         * XplatUIX11.cs, XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs:
21098           - Added method to retrieve text from window
21099
21100 2004-09-10 18:56  pbartok
21101
21102         * Control.cs:
21103           - Moved some internal functions into the internal region
21104           - Implemented FontHeight
21105           - Implemented RenderRightToLeft
21106           - Implemented ResizeRedraw
21107           - Implemented ShowFocusCues
21108           - Implemented ShowKeyboardCues
21109           - Implemented FromChildHandle
21110           - Implemented FromHandle
21111           - Implemented IsMnemonic
21112           - Implemented ReflectMessage
21113           - All public and protected Static Methods are now complete
21114
21115 2004-09-10 16:54  pbartok
21116
21117         * Control.cs:
21118           - Implemented remaining missing public instance properties
21119           - Alphabetized some out of order properties
21120
21121 2004-09-10 05:51  ravindra
21122
21123         * PictureBox.cs: Added a check for null image.
21124
21125 2004-09-10 00:59  jordi
21126
21127         * GroupBox.cs: remove cvs tag
21128
21129 2004-09-09 05:25  ravindra
21130
21131         * ToolBar.cs: Make redraw accessible from ToolBarButton.
21132
21133 2004-09-09 05:23  ravindra
21134
21135         * ToolBarButton.cs: Changes in ToolBarButton need to make it's
21136           parent redraw.
21137
21138 2004-09-09 02:28  pbartok
21139
21140         * ThemeWin32Classic.cs:
21141           - Improve disabled string look
21142
21143 2004-09-09 01:15  jordi
21144
21145         * MeasureItemEventArgs.cs, MeasureItemEventHandler.cs: measureitem
21146           args and handler
21147
21148 2004-09-08 23:56  ravindra
21149
21150         * ItemBoundsPortion.cs: It's enum, not a class!
21151
21152 2004-09-08 23:47  ravindra
21153
21154         * FormBorderStyle.cs, FormStartPosition.cs, FormWindowState.cs:
21155           Enums for Form.
21156
21157 2004-09-08 21:13  ravindra
21158
21159         * ItemBoundsPortion.cs, ListViewAlignment.cs, View.cs: Enums for
21160           ListView control.
21161
21162 2004-09-08 21:03  ravindra
21163
21164         * ThemeWin32Classic.cs: PictureBox would not draw a null image to
21165           avoid crash.
21166
21167 2004-09-08 21:01  ravindra
21168
21169         * ScrollableControl.cs: Removed unreachable code.
21170
21171 2004-09-08 06:45  jordi
21172
21173         * MenuMerge.cs, Shortcut.cs: enumerations need it by menus
21174
21175 2004-09-08 01:00  jackson
21176
21177         * XplatUIX11.cs: Only run the timers when updating the message
21178           queue. This effectively gives X messages a higher priority then
21179           timer messages. Timers still need love though
21180
21181 2004-09-07 14:01  jackson
21182
21183         * XplatUIX11.cs: Do not call XDestroyWindow, X has already done
21184           this for us and the handle is no longer valid.
21185
21186 2004-09-07 13:59  jackson
21187
21188         * HandleData.cs, XplatUIX11.cs: First steps towards a new X event
21189           loop that manages to not crash. TODO: Add poll and cleanup timers
21190
21191 2004-09-07 11:12  jordi
21192
21193         * GroupBox.cs, Theme.cs, ThemeWin32Classic.cs: GroupBox control
21194
21195 2004-09-07 03:40  jordi
21196
21197         * Label.cs, LinkLabel.cs, Theme.cs, ThemeWin32Classic.cs: LinkLabel
21198           fixes, methods, multiple links
21199
21200 2004-09-06 06:55  jordi
21201
21202         * Control.cs: Caches ClientRectangle rectangle value
21203
21204 2004-09-05 02:03  jordi
21205
21206         * ScrollBar.cs, ThemeWin32Classic.cs: fixes bugs, adds flashing on
21207           certain situations
21208
21209 2004-09-04 11:10  jordi
21210
21211         * Label.cs: Refresh when font changed
21212
21213 2004-09-02 16:24  pbartok
21214
21215         * Control.cs:
21216           - Added sanity check to creation of double buffer bitmap
21217
21218 2004-09-02 16:24  pbartok
21219
21220         * ButtonBase.cs:
21221           - Fixed selection of text color
21222           - Fixed handling of resize event; now properly recreates double
21223             buffering bitmap
21224           - Added missing assignment of TextAlignment
21225           - Added proper default for TextAlignment
21226
21227 2004-09-02 14:26  pbartok
21228
21229         * RadioButton.cs:
21230           - Added missing RadioButton.RadioButtonAccessibleObject class
21231
21232 2004-09-02 14:26  pbartok
21233
21234         * Control.cs:
21235           - Added missing Control.ControlAccessibleObject class
21236           - Started to implement Select()ion mechanisms, still very incomplete
21237
21238 2004-09-02 14:25  pbartok
21239
21240         * AccessibleObject.cs:
21241           - Added missing methods
21242
21243 2004-09-02 14:23  pbartok
21244
21245         * AccessibleNavigation.cs, AccessibleSelection.cs:
21246           - Initial check-in
21247
21248 2004-09-02 10:32  jordi
21249
21250         * Theme.cs, ThemeGtk.cs, ThemeWin32Classic.cs: implements resource
21251           pool for pens, brushes, and hatchbruses
21252
21253 2004-09-01 15:30  jackson
21254
21255         * StatusBar.cs: Fix typo
21256
21257 2004-09-01 14:44  pbartok
21258
21259         * RadioButton.cs:
21260           - Fixed state
21261
21262 2004-09-01 14:39  pbartok
21263
21264         * Button.cs, RadioButton.cs:
21265           - Functional initial check-in
21266
21267 2004-09-01 14:01  pbartok
21268
21269         * CheckBox.cs:
21270           - Added missing default
21271           - Added missing region mark
21272
21273 2004-09-01 09:10  jordi
21274
21275         * Label.cs: fixes method signatures, new methods, events, fixes
21276           autosize
21277
21278 2004-09-01 07:19  jordi
21279
21280         * Control.cs: Init string variables with an empty object
21281
21282 2004-09-01 04:20  jordi
21283
21284         * Control.cs: fires OnFontChanged event
21285
21286 2004-08-31 20:07  pbartok
21287
21288         * ButtonBase.cs:
21289           - Enabled display of strings
21290
21291 2004-08-31 20:05  pbartok
21292
21293         * Form.cs:
21294           - Added (partial) implementation of DialogResult; rest needs to be
21295             implemented when the modal loop code is done
21296
21297 2004-08-31 19:55  pbartok
21298
21299         * CheckBox.cs:
21300           - Fixed to match the removal of the needs_redraw concept
21301
21302 2004-08-31 19:55  pbartok
21303
21304         * ButtonBase.cs:
21305           - Removed the rather odd split between 'needs redraw' and redrawing
21306           - Now handles the events that require regeneration (ambient
21307             properties and size)
21308
21309 2004-08-31 19:41  pbartok
21310
21311         * Control.cs:
21312           - Added firing of BackColorChanged event
21313           - Added TopLevelControl property
21314           - Fixed handling of WM_ERASEBKGRND message
21315
21316 2004-08-31 12:49  pbartok
21317
21318         * ButtonBase.cs:
21319           - Removed debug
21320           - Minor fixes
21321
21322 2004-08-31 12:48  pbartok
21323
21324         * CheckBox.cs:
21325           - Finished (famous last words)
21326
21327 2004-08-31 04:35  jordi
21328
21329         * ScrollBar.cs: adds autorepeat timer, uses a single timer, fixes
21330           scrolling bugs, adds new methods
21331
21332 2004-08-30 14:42  pbartok
21333
21334         * CheckBox.cs:
21335           - Implemented CheckBox drawing code
21336
21337 2004-08-30 14:42  pbartok
21338
21339         * ButtonBase.cs:
21340           - Made Redraw() and CheckRedraw() virtual
21341           - Improved mouse up/down/move logic to properly track buttons
21342
21343 2004-08-30 09:44  pbartok
21344
21345         * CheckBox.cs:
21346           - Updated to fix broken build. Not complete yet.
21347
21348 2004-08-30 09:28  pbartok
21349
21350         * CheckState.cs:
21351           - Initial checkin
21352
21353 2004-08-30 09:17  pbartok
21354
21355         * Appearance.cs:
21356           - Initial check-in
21357
21358 2004-08-27 16:12  ravindra
21359
21360         * ToolBarButton.cs: Added TypeConverter attribute.
21361
21362 2004-08-27 16:07  ravindra
21363
21364         * ImageIndexConverter.cs: Implemented.
21365
21366 2004-08-27 14:17  pbartok
21367
21368         * Control.cs:
21369           - Removed unneeded stack vars
21370           - First attempt to fix sizing issues when layout is suspended
21371
21372 2004-08-25 15:35  jordi
21373
21374         * ScrollBar.cs: more fixes to scrollbar
21375
21376 2004-08-25 14:04  ravindra
21377
21378         * Theme.cs, ThemeWin32Classic.cs, ToolBar.cs, ToolBarButton.cs:
21379           Added the missing divider code and grip for ToolBar Control.
21380
21381 2004-08-25 13:20  pbartok
21382
21383         * Control.cs:
21384           - Control now properly passes the ambient background color to child
21385             controls
21386
21387 2004-08-25 13:20  jordi
21388
21389         * ScrollBar.cs: small bug fix regarding bar position
21390
21391 2004-08-25 12:33  pbartok
21392
21393         * Timer.cs:
21394           - Now only calls SetTimer or KillTimer if the enabled state has
21395           changed
21396
21397 2004-08-25 12:33  pbartok
21398
21399         * XplatUIWin32.cs:
21400           - Fixed timer handling, now seems to work
21401           - Improved error message for window creation
21402
21403 2004-08-25 12:32  pbartok
21404
21405         * Control.cs:
21406           - Fixed generation of MouseUp message
21407
21408 2004-08-25 12:29  jordi
21409
21410         * ProgressBar.cs, ThemeWin32Classic.cs: new methods, properties,
21411           and fixes for progressbar
21412
21413 2004-08-24 18:43  ravindra
21414
21415         * ThemeWin32Classic.cs, ToolBar.cs: Fixed wrapping related issues
21416           in ToolBar control.
21417
21418 2004-08-24 17:15  pbartok
21419
21420         * Panel.cs:
21421           - Added #region
21422           - Added missing events
21423           - Alphabetized
21424
21425 2004-08-24 17:14  pbartok
21426
21427         * StatusBar.cs, PictureBox.cs:
21428           - Now uses Control's CreateParams
21429
21430 2004-08-24 16:36  pbartok
21431
21432         * XplatUIX11.cs:
21433           - Fixed background color handling
21434           - Fixed sending of enter/leave events on a grab
21435
21436 2004-08-24 16:35  pbartok
21437
21438         * X11Structs.cs:
21439           - Refined definitions for CrossingEvent
21440
21441 2004-08-24 12:37  jordi
21442
21443         * ScrollBar.cs, Theme.cs, ThemeGtk.cs, ThemeWin32Classic.cs: fixes
21444           formmating, methods signature, and adds missing events
21445
21446 2004-08-24 12:24  jordi
21447
21448         * Control.cs: fire OnEnabledChanged event
21449
21450 2004-08-24 11:17  pbartok
21451
21452         * XplatUIWin32.cs:
21453           - Implemented SetTimer() and KillTimer()
21454
21455 2004-08-24 11:16  pbartok
21456
21457         * XplatUIX11.cs:
21458           - Now uses Remove instead of Add to kill the timer
21459
21460 2004-08-24 10:16  jackson
21461
21462         * PictureBox.cs, Theme.cs, ThemeWin32Classic.cs: Handle drawing
21463           picture boxes in the theme now. Draw picture box borders and obey
21464           sizing modes
21465
21466 2004-08-24 05:49  jackson
21467
21468         * Timer.cs: Remove top secret debugging code
21469
21470 2004-08-24 05:34  jackson
21471
21472         * PictureBox.cs: Temp hack to make picture boxes draw their full
21473           image
21474
21475 2004-08-24 05:29  jackson
21476
21477         * Timer.cs, XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs,
21478           XplatUIX11.cs: Move timers to the driver level. On X they are
21479           queued by the driver and checked on idle.
21480
21481 2004-08-24 01:07  jackson
21482
21483         * XplatUIX11.cs: Use a queue for async messages instead of passing
21484           them as ClientMessages since that was totally broken. Also simply
21485           check for events and return an idle message if none are found. This
21486           gives us an idle handler, and prevents deadlocking when no messages
21487           are in the queue.
21488
21489 2004-08-23 18:19  ravindra
21490
21491         * XplatUIWin32.cs: Removed the unwanted destructor.
21492
21493 2004-08-23 17:27  pbartok
21494
21495         * ButtonBase.cs:
21496           - Finishing touches. Works now, just needs some optimizations.
21497
21498 2004-08-23 16:53  jordi
21499
21500         * ScrollBar.cs: small fix
21501
21502 2004-08-23 16:45  pbartok
21503
21504         * Application.cs:
21505           - Removed debug output
21506           - Simplifications
21507
21508 2004-08-23 16:43  jordi
21509
21510         * ScrollBar.cs: [no log message]
21511
21512 2004-08-23 16:10  pbartok
21513
21514         * Form.cs:
21515           - Fixed handling of WM_CLOSE message
21516           - Removed debug output
21517
21518 2004-08-23 16:09  pbartok
21519
21520         * Application.cs:
21521           - Added handling of Idle event
21522           - Added handling of form closing
21523           - Fixed reporting of MessageLoop property
21524           - Removed some unneeded code, should provide a bit of a speedup
21525
21526 2004-08-23 15:22  pbartok
21527
21528         * Control.cs:
21529           - Added InitLayout() method
21530           - Added code to properly perform layout when Anchor or Dock property
21531             is changed
21532           - Changed 'interpretation' of ResumeLayout. MS seems to have a
21533             LAMESPEC, tried to do it in a way that makes sense
21534
21535 2004-08-23 14:10  jordi
21536
21537         * HScrollBar.cs, ScrollBar.cs, TrackBar.cs, VScrollBar.cs: fixes
21538           properties and methods
21539
21540 2004-08-23 13:55  pbartok
21541
21542         * Control.cs:
21543           - Properly fixed Jordi's last fix
21544           - Now uses Cursor's Position property instead of calling XplatUI
21545           directly
21546
21547 2004-08-23 13:44  jordi
21548
21549         * PaintEventHandler.cs: Adding missing attribute
21550
21551 2004-08-23 13:39  pbartok
21552
21553         * Cursor.cs:
21554           - Implemented Position property
21555
21556 2004-08-23 13:39  pbartok
21557
21558         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs:
21559           - Added method to move mouse cursor
21560
21561 2004-08-23 13:39  pbartok
21562
21563         * XplatUIX11.cs:
21564           - Fixed setting of background color
21565           - Added method to move mouse cursor
21566
21567 2004-08-23 13:16  jordi
21568
21569         * Control.cs: avoids null exception
21570
21571 2004-08-22 17:46  jackson
21572
21573         * PictureBox.cs, PictureBoxSizeMode.cs: Initial implementation of
21574           PictureBox
21575
21576 2004-08-22 17:40  jackson
21577
21578         * XplatUIX11.cs: Add some missing locks
21579
21580 2004-08-22 15:10  pbartok
21581
21582         * Control.cs, Form.cs:
21583           - Removed OverlappedWindow style from Control, instead it's default
21584             now is child
21585           - Made form windows OverlappedWindow by default
21586
21587 2004-08-22 13:34  jackson
21588
21589         * ScrollBar.cs: Update the position through the Value property so
21590           the OnValueChanged event is raised.
21591
21592 2004-08-22 12:04  pbartok
21593
21594         * SWF.csproj:
21595           - Added Cursor.cs and UserControl.cs
21596
21597 2004-08-22 12:03  pbartok
21598
21599         * Cursor.cs:
21600           - Started implementation, not usable yet
21601
21602 2004-08-22 12:00  pbartok
21603
21604         * UserControl.cs:
21605           - Implemented UserControl (complete)
21606
21607 2004-08-21 19:20  ravindra
21608
21609         * ToolBar.cs: Correcting the formatting mess of VS.NET.
21610
21611 2004-08-21 18:49  ravindra
21612
21613         * ToolBar.cs: Probably this completes the missing attributes in
21614           toolbar control.
21615
21616 2004-08-21 18:03  ravindra
21617
21618         * ToolBar.cs, ToolBarButton.cs, ToolBarButtonClickEventArgs.cs:
21619           Fixed toolbar control signatures.
21620
21621 2004-08-21 16:32  pbartok
21622
21623         * LinkLabel.cs:
21624           - Signature Fixes
21625
21626 2004-08-21 16:30  pbartok
21627
21628         * Label.cs:
21629           - Signature fixes
21630
21631 2004-08-21 16:19  pbartok
21632
21633         * Control.cs, Label.cs:
21634           - Signature fixes
21635
21636 2004-08-21 15:57  pbartok
21637
21638         * ButtonBase.cs:
21639           - Added loads of debug output for development
21640           - Fixed typo in method name
21641
21642 2004-08-21 15:52  pbartok
21643
21644         * ToolBarButtonClickEventArgs.cs:
21645           - Added missing base class
21646
21647 2004-08-21 14:53  pbartok
21648
21649         * Control.cs:
21650           - Updated to match new GrabWindow signature
21651
21652 2004-08-21 14:51  pbartok
21653
21654         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIX11.cs:
21655           - Added method to get default display size
21656
21657 2004-08-21 14:23  pbartok
21658
21659         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIX11.cs:
21660           - Added method to query current grab state
21661           - Added argument to allow confining a grab to a window
21662
21663 2004-08-21 14:22  pbartok
21664
21665         * Keys.cs:
21666           - Added [Flags] attribute so that modifiers can be used in bitwise
21667           ops
21668
21669 2004-08-21 14:21  pbartok
21670
21671         * TrackBar.cs, ScrollBar.cs:
21672           - Replaced direct XplatUI calls with their Control counterpart
21673
21674 2004-08-21 13:32  pbartok
21675
21676         * Control.cs:
21677           - Implemented Created property
21678
21679 2004-08-21 13:28  pbartok
21680
21681         * Control.cs:
21682           - Implemented ContainsFocus
21683
21684 2004-08-21 13:26  pbartok
21685
21686         * Control.cs:
21687           - Implemented CausesValidation
21688
21689 2004-08-21 13:21  pbartok
21690
21691         * Control.cs:
21692           - Implemented CanFocus
21693           - Implemented CanSelect
21694           - Implemented Capture
21695
21696 2004-08-21 12:35  pbartok
21697
21698         * XplatUIWin32.cs:
21699           - Fixed bug with Async message handling
21700           - Implemented getting the ModifierKeys
21701
21702 2004-08-21 12:32  jackson
21703
21704         * AsyncMethodResult.cs: Make sure we have the mutex before we
21705           release it. Fixes BeginInvoke on windows
21706
21707 2004-08-21 11:31  pbartok
21708
21709         * XplatUIWin32.cs, XplatUIX11.cs:
21710           - Drivers now return proper mouse state
21711
21712 2004-08-21 10:54  jackson
21713
21714         * Control.cs: Implement EndInvoke
21715
21716 2004-08-21 10:48  jackson
21717
21718         * Timer.cs: Remove unneeded finalizer
21719
21720 2004-08-20 19:52  ravindra
21721
21722         * ThemeWin32Classic.cs, ToolBar.cs, ToolBarButton.cs: Improvments
21723           in mouse event handling in the ToolBar control.
21724
21725 2004-08-20 19:50  ravindra
21726
21727         * ImageList.cs: Changed draw method to use the arguments passed in
21728           to draw the image.
21729
21730 2004-08-20 18:58  pbartok
21731
21732         * XplatUIStructs.cs:
21733           - Added private message for async communication
21734
21735 2004-08-20 17:38  ravindra
21736
21737         * Control.cs: Made RightToLeft property virtual and removed a
21738           Console.WriteLine.
21739
21740 2004-08-20 14:39  jordi
21741
21742         * ThemeGtk.cs: use style_attach
21743
21744 2004-08-20 14:39  pbartok
21745
21746         * XplatUIWin32.cs:
21747           - Added jackson's Async code from X11 to Win32
21748
21749 2004-08-20 14:09  pbartok
21750
21751         * SWF.csproj:
21752           - Added all new files
21753
21754 2004-08-20 14:09  pbartok
21755
21756         * Control.cs:
21757           - Added call to set window background color
21758
21759 2004-08-20 14:03  pbartok
21760
21761         * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs:
21762           - Added method for setting the window background
21763
21764 2004-08-20 14:02  pbartok
21765
21766         * XplatUIWin32.cs:
21767           - Added method for setting the background color
21768           - Added handling for erasing the window background
21769
21770 2004-08-20 13:45  jordi
21771
21772         * TrackBar.cs: fixes timer, new properties and methods
21773
21774 2004-08-20 13:34  jackson
21775
21776         * ScrollBar.cs: Use the SWF timer so callbacks are run in the
21777           correct thread
21778
21779 2004-08-20 13:22  jackson
21780
21781         * Timer.cs: Timer Tick events are now handed through Controls Async
21782           mechanism so the callbacks are executed in the same thread as X
21783
21784 2004-08-20 13:19  jackson
21785
21786         * XplatUIDriver.cs: Expose functionality to send async messages
21787           through the driver
21788
21789 2004-08-20 13:18  jackson
21790
21791         * Control.cs: Implement Begininvoke
21792
21793 2004-08-20 13:14  jackson
21794
21795         * XplatUI.cs, XplatUIWin32.cs: Expose functionality to send async
21796           messages through the driver
21797
21798 2004-08-20 13:12  jackson
21799
21800         * XplatUIX11.cs: Lock before all X operations. Also added Async
21801           method functionality through XSendEvent
21802
21803 2004-08-20 13:11  jackson
21804
21805         * X11Structs.cs: Use IntPtrs for ClientMessage extra data (TODO:
21806           This will screw up on 64 bit systems)
21807
21808 2004-08-20 13:10  jackson
21809
21810         * AsyncMethodData.cs, AsyncMethodResult.cs: Classes for sending
21811           Async messages through X/Win32
21812
21813 2004-08-19 19:39  pbartok
21814
21815         * XplatUIX11.cs:
21816           - Updated code to match new HandleData.DeviceContext type
21817
21818 2004-08-19 19:38  pbartok
21819
21820         * HandleData.cs:
21821           - Made DeviceContext a generic object to allow usage from various
21822           drivers
21823           - Added support for queueing Windows messages
21824
21825 2004-08-19 19:37  pbartok
21826
21827         * XplatUIWin32.cs:
21828           - Added generation of MouseEnter, MouseLeave and MouseHover events
21829           - Added cleanup on EndPaint
21830
21831 2004-08-19 19:17  pbartok
21832
21833         * Control.cs:
21834           - Added handling of WM_MOUSEHOVER
21835           - Worked around 'bug' in Win32 WM_MOUSE_ENTER/WM_MOUSE_LEAVE driver
21836           code
21837
21838 2004-08-19 18:55  jordi
21839
21840         * ThemeGtk.cs: fixes button order
21841
21842 2004-08-19 18:12  jordi
21843
21844         * Theme.cs, ThemeWin32Classic.cs: fixes methods signature
21845
21846 2004-08-19 17:09  pbartok
21847
21848         * Control.cs:
21849           - Added Right property
21850           - Added RightToLeft property
21851
21852 2004-08-19 16:27  jordi
21853
21854         * ThemeGtk.cs: experimental GTK theme support
21855
21856 2004-08-19 16:26  jordi
21857
21858         * ITheme.cs, Theme.cs: move themes from an interface to a class
21859
21860 2004-08-19 16:25  jordi
21861
21862         * Control.cs, ScrollBar.cs, ThemeEngine.cs, ThemeWin32Classic.cs:
21863           theme enhancaments
21864
21865 2004-08-19 16:04  pbartok
21866
21867         * XplatUIX11.cs:
21868           - Added colormap basics
21869           - Added a way to re-initialize with a different display handle
21870           - Fixed setting of the window background color
21871           - Added various X11 imports related to colors and colormaps
21872
21873 2004-08-19 15:51  pbartok
21874
21875         * X11Structs.cs:
21876           - Removed packing hints (Paolo suggested this a while back)
21877           - fixed colormap type
21878           - Added default Atom types
21879           - Added Screen and color structs and enums
21880
21881 2004-08-19 15:39  pbartok
21882
21883         * ImageList.cs:
21884           - Added missing Draw() method
21885           - Added missing RecreateHandle event
21886
21887 2004-08-19 15:30  pbartok
21888
21889         * Form.cs:
21890           - Added handling of WM_CLOSE
21891
21892 2004-08-18 13:16  jordi
21893
21894         * ITheme.cs, ThemeWin32Classic.cs, XplatUIWin32.cs: Move colors to
21895           a table
21896
21897 2004-08-18 09:56  jordi
21898
21899         * ScrollBar.cs: fixes to scrollbar: steps and multiple timers
21900
21901 2004-08-17 15:31  ravindra
21902
21903         * SWF.csproj: Updated project.
21904
21905 2004-08-17 15:25  pbartok
21906
21907         * Control.cs:
21908           - Drawing improvement; don't call UpdateBounds if we are not visible
21909             (or have been minimized)
21910
21911 2004-08-17 15:24  pbartok
21912
21913         * XplatUIWin32.cs:
21914           - Finished IsVisible
21915           - Added Win32GetWindowPlacement
21916
21917 2004-08-17 15:08  jackson
21918
21919         * Panel.cs: Initial checkin of the Panel
21920
21921 2004-08-17 14:25  pbartok
21922
21923         * Control.cs:
21924           - Fixed broken handling of default window sizes
21925
21926 2004-08-17 13:29  jackson
21927
21928         * ThemeWin32Classic.cs: Don't use KnownColor to create colours. It
21929           has a large startup time.
21930
21931 2004-08-17 10:25  jackson
21932
21933         * HandleData.cs: union areas properly
21934
21935 2004-08-17 10:12  jackson
21936
21937         * HandleData.cs: union areas properly
21938
21939 2004-08-16 20:00  ravindra
21940
21941         * ToolBar.cs, ToolBarButton.cs: Added attributes.
21942
21943 2004-08-16 18:48  ravindra
21944
21945         * ToolBar.cs: Added attributes.
21946
21947 2004-08-16 17:17  ravindra
21948
21949         * SWF.csproj: Updated project.
21950
21951 2004-08-16 17:16  jackson
21952
21953         * XplatUIX11.cs: Check for more expose events before sending a
21954           WM_PAINT so they can all be grouped together. This makes dragging a
21955           window across another window redraw in a sane way.
21956
21957 2004-08-16 15:47  pbartok
21958
21959         * Control.cs:
21960           - Added handling of WM_MOUSE_ENTER & WM_MOUSE_LEAVE to
21961             support OnMouseEnter/Leave()
21962           - Added WS_CLIPSIBLINGS and WS_CLIPCHILDREN window styles to improve
21963             exposure handling
21964
21965 2004-08-16 15:46  pbartok
21966
21967         * XplatUIStructs.cs, XplatUIX11.cs:
21968           - Added WM_MOUSE_ENTER & WM_MOUSE_LEAVE to support
21969           OnMouseEnter/Leave()
21970
21971 2004-08-16 15:34  jackson
21972
21973         * XplatUIX11.cs: Group multiple expose events in HandleData, make
21974           sure messages get the message field set to WM_NULL if they are not
21975           handled.
21976
21977 2004-08-16 15:24  jackson
21978
21979         * HandleData.cs: HandleData is used for storing message information
21980           for window handles
21981
21982 2004-08-15 17:23  ravindra
21983
21984         * ColorDepth.cs: Added attribute.
21985
21986 2004-08-15 17:23  ravindra
21987
21988         * SWF.csproj: Updated project for ToolBar Control.
21989
21990 2004-08-15 17:20  ravindra
21991
21992         * ITheme.cs, ThemeWin32Classic.cs: Changes to Theme for ToolBar
21993           control and also dos2unix format.
21994
21995 2004-08-15 17:13  ravindra
21996
21997         * ToolBar.cs, ToolBarAppearance.cs, ToolBarButton.cs,
21998           ToolBarButtonClickEventArgs.cs,
21999           ToolBarButtonClickEventHandler.cs, ToolBarButtonStyle.cs,
22000           ToolBarTextAlign.cs: First Implementation of ToolBar control.
22001
22002 2004-08-15 15:31  pbartok
22003
22004         * ButtonBase.cs:
22005           - First (mostly) working version
22006
22007 2004-08-13 16:15  pbartok
22008
22009         * Control.cs:
22010           - Fixed Anchor default
22011
22012 2004-08-13 15:43  pbartok
22013
22014         * Control.cs:
22015           - Changed GetCursorPos signature
22016
22017 2004-08-13 15:42  pbartok
22018
22019         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs:
22020           - Changed signature for GetCursorPos
22021
22022 2004-08-13 15:25  pbartok
22023
22024         * XplatUIX11.cs:
22025           - Cleanup
22026           - Fixed resizing/exposure handling
22027
22028 2004-08-13 15:22  jordi
22029
22030         * ThemeWin32Classic.cs: removes redundant code and fixes issues
22031           with tickposition
22032
22033 2004-08-13 14:55  jordi
22034
22035         * TrackBar.cs: change from wndproc to events
22036
22037 2004-08-13 13:00  jordi
22038
22039         * Control.cs, XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs,
22040           XplatUIX11.cs: implements PointToClient (ScreenToClient)
22041
22042 2004-08-13 12:53  pbartok
22043
22044         * XplatUIWin32.cs:
22045           - Changed GetWindowPos to also provide client area size
22046           - Fixed broken prototypes for several win32 functions
22047
22048 2004-08-13 12:53  pbartok
22049
22050         * XplatUI.cs, XplatUIDriver.cs:
22051           - Changed GetWindowPos to also provide client area size
22052
22053 2004-08-13 12:52  pbartok
22054
22055         * XplatUIX11.cs:
22056           - Added generation of WM_POSCHANGED
22057           - Changed GetWindowPos to also provide client area size
22058
22059 2004-08-13 12:52  pbartok
22060
22061         * Control.cs:
22062           - Added Dispose() and destructor
22063           - Fixed resizing and bounds calculation
22064           - Fixed Layout
22065           - Added memory savings for invisible windows
22066
22067 2004-08-13 12:46  jordi
22068
22069         * TrackBar.cs: adds timer and grap window
22070
22071 2004-08-13 10:25  jackson
22072
22073         * Timer.cs: SWF Timer
22074
22075 2004-08-12 16:59  pbartok
22076
22077         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIX11.cs:
22078           - Implemented method to get current mouse position
22079
22080 2004-08-12 14:29  jordi
22081
22082         * ITheme.cs, ThemeWin32Classic.cs, TrackBar.cs: Trackbar
22083           enhancement, fix mouse problems, highli thumb, etc
22084
22085 2004-08-12 13:31  pbartok
22086
22087         * Control.cs:
22088           - Fixed Anchoring bugs
22089
22090 2004-08-12 13:01  jackson
22091
22092         * StatusBar.cs: Don't forget things
22093
22094 2004-08-12 12:54  jackson
22095
22096         * ThemeWin32Classic.cs: Handle owner draw status bars
22097
22098 2004-08-12 12:54  jackson
22099
22100         * StatusBar.cs: Implement missing properties, events, and methods.
22101           Handle mouse clicking
22102
22103 2004-08-12 10:19  jackson
22104
22105         * StatusBarPanelClickEventArgs.cs,
22106           StatusBarPanelClickEventHandler.cs: Classes for handling status
22107           bar panel click events
22108
22109 2004-08-12 10:10  jackson
22110
22111         * Control.cs: Add missing properties
22112
22113 2004-08-12 09:46  pbartok
22114
22115         * BindingsManagerBase.cs:
22116           - Name changed to BindingManagerBase.cs
22117
22118 2004-08-12 09:25  jordi
22119
22120         * ScrollableControl.cs: calls ctrlbase instead of exeception
22121
22122 2004-08-11 16:28  pbartok
22123
22124         * InputLanguageChangingEventArgs.cs:
22125           - Never check in before compiling. Fixes the last check-in
22126
22127 2004-08-11 16:26  pbartok
22128
22129         * InputLanguageChangingEventArgs.cs:
22130           - More signature fixes
22131
22132 2004-08-11 16:20  pbartok
22133
22134         * BindingManagerBase.cs, BindingMemberInfo.cs, ContainerControl.cs,
22135           Control.cs, ControlEventArgs.cs, ControlPaint.cs, Form.cs,
22136           ImageListStreamer.cs, InputLanguage.cs,
22137           InputLanguageChangedEventArgs.cs,
22138           InputLanguageChangingEventArgs.cs, Keys.cs, LayoutEventArgs.cs,
22139           LinkArea.cs, Message.cs, MouseEventArgs.cs, NativeWindow.cs,
22140           ScrollEventArgs.cs, ScrollableControl.cs, XplatUI.cs,
22141           XplatUIDriver.cs, XplatUIWin32.cs, XplatUIX11.cs:
22142           - Signature fixes
22143
22144 2004-08-11 16:16  pbartok
22145
22146         * Application.cs:
22147           - Fixed Signature
22148           - Added .Net 1.1 method
22149
22150 2004-08-11 15:25  pbartok
22151
22152         * SWF.csproj:
22153           - Fixed BindingManagerBase.cs filename
22154
22155 2004-08-11 15:22  pbartok
22156
22157         * BindingManagerBase.cs:
22158           - Was checked in with wrong filename
22159
22160 2004-08-11 14:50  pbartok
22161
22162         * SWF.csproj:
22163           - Updated
22164
22165 2004-08-11 13:41  jordi
22166
22167         * XplatUIWin32.cs: Fixes ClientRect
22168
22169 2004-08-11 13:19  pbartok
22170
22171         * Control.cs, XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs,
22172           XplatUIX11.cs:
22173           - We had SetWindowPos and MoveWindow to set window positions and
22174             size, removed MoveWindow. We have GetWindowPos, so it made sense to
22175             keep SetWindowPos as matching counterpart
22176           - Added some X11 sanity checking
22177
22178 2004-08-11 12:59  pbartok
22179
22180         * Control.cs:
22181           - Major cleanup of my SetBounds/SetBoundsCore/UpdateBounds mess
22182             (It seems that SetBounds is just a front for SetBoundsCore and
22183              SetBoundsCore updates the underlying window system and
22184              UpdateBounds is responsible for updating the variables associated
22185              with the Control and sending the events)
22186           - Major cleanup of Size handling; we now have two sizes, client_size
22187             and bounds. Bounds defines the window with decorations, client_size
22188             without them.
22189
22190 2004-08-11 12:55  pbartok
22191
22192         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIX11.cs:
22193           - Added method to calculate difference between decorated window and
22194             raw client area
22195
22196 2004-08-11 12:54  pbartok
22197
22198         * Label.cs:
22199           - Forcing redraw on resize
22200
22201 2004-08-11 11:43  pbartok
22202
22203         * ImageList.cs:
22204           - Removed disposing of the actual images when the list is disposed
22205
22206 2004-08-11 09:13  pbartok
22207
22208         * Control.cs:
22209           - Now properly reparents windows
22210
22211 2004-08-11 08:37  pbartok
22212
22213         * Control.cs:
22214           - Duh!
22215
22216 2004-08-11 07:47  pbartok
22217
22218         * Control.cs:
22219           - Rewrote the collection stuff. Might not be as fast now, not
22220             keeping the number of children around and accessible directly, but
22221             it's more straightforward
22222
22223 2004-08-11 07:44  pbartok
22224
22225         * AccessibleObject.cs:
22226           - Fixed to match ControlCollection rewrite
22227
22228 2004-08-11 07:43  pbartok
22229
22230         * ImageList.cs:
22231           - Added missing creation of the collection list
22232
22233 2004-08-10 20:08  jackson
22234
22235         * StatusBar.cs: Get the paint message from WndProc
22236
22237 2004-08-10 19:31  jackson
22238
22239         * ThemeWin32Classic.cs: Create Brushes as little as possible
22240
22241 2004-08-10 19:20  jackson
22242
22243         * UICues.cs: Add Flags attribute
22244
22245 2004-08-10 19:19  jackson
22246
22247         * StatusBarPanel.cs: Signature cleanup
22248
22249 2004-08-10 19:10  jackson
22250
22251         * StatusBarDrawItemEventArgs.cs, StatusBarDrawItemEventHandler.cs:
22252           Initial implementation of status bar item drawing
22253
22254 2004-08-10 17:27  jordi
22255
22256         * TrackBar.cs: add missing methods, properties, and restructure to
22257           hide extra ones
22258
22259 2004-08-10 16:24  jackson
22260
22261         * AccessibleStates.cs, Border3DSide.cs, Border3DStyle.cs,
22262           ButtonState.cs, ControlStyles.cs, DragDropEffects.cs: Add flags
22263           attribute
22264
22265 2004-08-10 13:21  jordi
22266
22267         * ITheme.cs, ScrollBar.cs, ThemeWin32Classic.cs: scrollbar
22268           enhancements and standarize on win colors defaults
22269
22270 2004-08-10 12:52  jackson
22271
22272         * DrawItemEventArgs.cs, DrawItemState.cs, ITheme.cs,
22273           ThemeWin32Classic.cs: Implement DrawItem functionality
22274
22275 2004-08-10 12:47  jordi
22276
22277         * XplatUIWin32.cs: Calls InvalidateRect before UpdateWindow
22278
22279 2004-08-10 12:32  jordi
22280
22281         * Control.cs: throw ontextchange event
22282
22283 2004-08-10 11:43  pbartok
22284
22285         * Control.cs:
22286           - Added more to the still unfinished Dock/Anchor layout code
22287
22288 2004-08-10 11:39  pbartok
22289
22290         * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs:
22291           - Added GetWindowPos method
22292
22293 2004-08-10 11:36  pbartok
22294
22295         * XplatUIWin32.cs:
22296           - Implemented several methods
22297
22298 2004-08-10 09:47  jackson
22299
22300         * TrackBar.cs: Allow control to handle buffering
22301
22302 2004-08-10 09:41  jackson
22303
22304         * ProgressBar.cs, ScrollBar.cs: Allow control to handle buffering
22305
22306 2004-08-10 09:24  jackson
22307
22308         * Label.cs, LinkLabel.cs: Let Control handle buffering.
22309
22310 2004-08-10 09:09  jackson
22311
22312         * StatusBar.cs: Let Control handle all the buffering.
22313
22314 2004-08-10 09:08  jackson
22315
22316         * Control.cs: Control will now handle the buffering code, so each
22317           control does not have to implement this.
22318
22319 2004-08-10 08:34  jackson
22320
22321         * XplatUIDriver.cs: Use default colors from the theme
22322
22323 2004-08-09 17:12  pbartok
22324
22325         * ImageList.cs:
22326           - Fixed several bugs Ravindra pointed out
22327
22328 2004-08-09 16:11  pbartok
22329
22330         * Control.cs:
22331           - Added incomplete dock layout code
22332           - Added support for mouse wheel
22333
22334 2004-08-09 16:09  pbartok
22335
22336         * XplatUIX11.cs:
22337           - Added handling for middle and right mousebutton
22338           - Added handling for mouse wheel
22339           - Added handling for key state and mouse state and position
22340           - Now properly generates WM_xBUTTONx messages and WM_MOUSEWHEEL
22341           messages
22342
22343 2004-08-09 15:40  jackson
22344
22345         * StatusBarPanel.cs, StatusBarPanelAutoSize.cs,
22346           StatusBarPanelBorderStyle.cs, StatusBarPanelStyle.cs: Initial
22347           checkin
22348
22349 2004-08-09 15:37  jackson
22350
22351         * StatusBar.cs: Initial implementation of StatusBar
22352
22353 2004-08-09 15:36  jackson
22354
22355         * ITheme.cs: Add support for drawing status bar and getting status
22356           bar item sizes
22357
22358 2004-08-09 15:35  pbartok
22359
22360         * MouseButtons.cs:
22361           - Fixed values
22362
22363 2004-08-09 15:34  jackson
22364
22365         * ThemeWin32Classic.cs: Add support for drawing status bar and get
22366           status bar item sizes
22367
22368 2004-08-09 15:21  jackson
22369
22370         * ThemeWin32Classic.cs: Use known colors for default control
22371           colours
22372
22373 2004-08-09 15:12  jackson
22374
22375         * ThemeWin32Classic.cs: Make the default font static, it is static
22376           in control so this doesn't change functionality and creating fonts
22377           is sloooooow.
22378
22379 2004-08-09 14:56  pbartok
22380
22381         * X11Structs.cs:
22382           - Added GrabMode enum
22383
22384 2004-08-09 14:55  pbartok
22385
22386         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIX11.cs:
22387           - Removed Run method, was only required for initial development
22388
22389 2004-08-09 14:51  pbartok
22390
22391         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIX11.cs:
22392           - Implemented GrabWindow/ReleaseWindow methods to allow pointer
22393           capture
22394
22395 2004-08-09 13:48  pbartok
22396
22397         * XplatUIX11.cs:
22398           - Fixed default sizing for child windows
22399
22400 2004-08-09 12:56  pbartok
22401
22402         * XplatUIX11.cs:
22403           - Added generation of WM_DESTROY message
22404           - Added handling of window manager induced shutdown
22405
22406 2004-08-09 11:31  jackson
22407
22408         * ThemeWin32Classic.cs: New names for control properties
22409
22410 2004-08-09 11:25  jackson
22411
22412         * Control.cs: Use new color names
22413
22414 2004-08-09 11:02  jackson
22415
22416         * XplatUI.cs: Get default window properties from the theme
22417
22418 2004-08-09 11:01  jackson
22419
22420         * ITheme.cs: The theme engine now controls default window
22421           properties
22422
22423 2004-08-09 11:00  jackson
22424
22425         * ThemeWin32Classic.cs: Add default window color properties
22426
22427 2004-08-09 10:17  jackson
22428
22429         * ThemeWin32Classic.cs: Use correct default back color
22430
22431 2004-08-09 10:05  jackson
22432
22433         * XplatUIWin32.cs, XplatUIX11.cs: These properties are handled by
22434           the theme now.
22435
22436 2004-08-09 09:56  jackson
22437
22438         * XplatUI.cs: Remove defaults, these are handled by the theme now.
22439
22440 2004-08-09 09:54  jackson
22441
22442         * Control.cs: Get default properties from the theme.
22443
22444 2004-08-09 09:53  jackson
22445
22446         * ITheme.cs: Themes now handle default control properties
22447
22448 2004-08-09 09:53  jackson
22449
22450         * ThemeWin32Classic.cs: Themes now handle default control
22451           properties so coloring will be consistent
22452
22453 2004-08-08 16:54  jordi
22454
22455         * ITheme.cs, ThemeWin32Classic.cs: Label BorderStyles
22456
22457 2004-08-08 15:08  jordi
22458
22459         * XplatUIX11.cs: fixes keyboard crash
22460
22461 2004-08-08 13:47  jordi
22462
22463         * Label.cs: add cvs header info
22464
22465 2004-08-08 12:09  jackson
22466
22467         * ThemeWin32Classic.cs: Add pen_buttonface
22468
22469 2004-08-08 11:52  jordi
22470
22471         * Label.cs, LinkLabel.cs: [no log message]
22472
22473 2004-08-08 11:34  jordi
22474
22475         * ThemeWin32Classic.cs: Use Windows Standard Colours
22476
22477 2004-08-07 17:32  jordi
22478
22479         * TrackBar.cs: throw exceptions of invalid enums values
22480
22481 2004-08-07 17:31  jordi
22482
22483         * Label.cs, LinkLabel.cs, ThemeWin32Classic.cs: fixes label bug and
22484           draw method name
22485
22486 2004-08-07 16:56  jackson
22487
22488         * HorizontalAlignment.cs: Initial checkin
22489
22490 2004-08-07 13:16  jordi
22491
22492         * Label.cs, LinkLabel.cs: throw exceptions, fixes events, missing
22493           methods
22494
22495 2004-08-07 13:05  jordi
22496
22497         * ITheme.cs, ThemeWin32Classic.cs: Theme colour support and
22498           GetSysColor defines
22499
22500 2004-08-06 18:01  pbartok
22501
22502         * ThemeWin32Classic.cs:
22503           - Fixed some rounding issues with float/int
22504
22505 2004-08-06 18:00  jackson
22506
22507         * DockStyle.cs, AnchorStyles.cs:
22508
22509                   Add flags and serializable attributes.
22510
22511 2004-08-06 17:46  pbartok
22512
22513         * XplatUIX11.cs:
22514           - Implemented GetParent
22515
22516 2004-08-06 17:18  pbartok
22517
22518         * TrackBar.cs:
22519           - Fixed some rounding issues with float/int
22520
22521 2004-08-06 17:17  pbartok
22522
22523         * X11Structs.cs, XplatUIX11.cs:
22524           - Fixed Refresh and Invalidate
22525
22526 2004-08-06 15:30  pbartok
22527
22528         * Control.cs, X11Structs.cs, XplatUIX11.cs:
22529           - Fixed recursive loop when resizing
22530           - Improved/fixed redrawing on expose messages
22531
22532 2004-08-06 09:53  jordi
22533
22534         * Control.cs, X11Structs.cs, XplatUIWin32.cs, XplatUIX11.cs: X11
22535           keyboard navigation
22536
22537 2004-08-06 08:02  pbartok
22538
22539         * X11Structs.cs, XplatUIX11.cs:
22540           - Fixed reparenting
22541           - Fixed window border creation
22542
22543 2004-08-05 15:38  pbartok
22544
22545         * XplatUIX11.cs:
22546           - Attempted fix for reparenting problems
22547
22548 2004-08-04 15:14  pbartok
22549
22550         * Control.cs:
22551           - Fixed Invalidation bug (calculated wrong client area)
22552           - Added ClientSize setter
22553
22554 2004-08-04 15:13  pbartok
22555
22556         * Form.cs:
22557           - Added AutoScale properties
22558
22559 2004-08-04 15:13  pbartok
22560
22561         * SWF.csproj:
22562           - Added latest files
22563
22564 2004-08-04 14:11  pbartok
22565
22566         * Control.cs, XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs,
22567           XplatUIX11.cs:
22568           - Added Invalidate handling
22569
22570 2004-08-03 17:09  jordi
22571
22572         * XplatUIDriver.cs: fixes spelling mistake
22573
22574 2004-07-27 09:53  jordi
22575
22576         * TrackBar.cs: fixes trackbar events, def classname, methods
22577           signature
22578
22579 2004-07-27 09:29  jordi
22580
22581         * ScrollBar.cs: fixes scrollbar events
22582
22583 2004-07-27 04:38  jordi
22584
22585         * Control.cs: changes to be able to run winforms samples
22586
22587 2004-07-26 11:42  jordi
22588
22589         * ControlPaint.cs, ITheme.cs, ProgressBar.cs, ScrollBar.cs,
22590           ThemeEngine.cs, ThemeWin32Classic.cs, TrackBar.cs: Theme support
22591
22592 2004-07-26 05:41  jordi
22593
22594         * MessageBox.cs, MessageBoxButtons.cs, MessageBoxDefaultButton.cs,
22595           MessageBoxIcon.cs, MessageBoxOptions.cs: initial messagebox
22596           implementation
22597
22598 2004-07-22 09:22  jordi
22599
22600         * LinkLabel.cs, LinkLabelLinkClickedEventHandler.cs: link label:
22601           check link overlapping, implement events, and fixes
22602
22603 2004-07-21 10:28  jordi
22604
22605         * DialogResult.cs, IButtonControl.cs: fixes comments filenames
22606
22607 2004-07-21 10:19  jordi
22608
22609         * DialogResult.cs, IButtonControl.cs, Label.cs, LinkArea.cs,
22610           LinkBehavior.cs, LinkClickedEventArgs.cs, LinkLabel.cs,
22611           LinkLabelLinkClickedEventArgs.cs,
22612           LinkLabelLinkClickedEventHandler.cs, LinkState.cs,
22613           XplatUIWin32.cs, LinkClickedEventHandler.cs: LinkLabel control
22614           implementation
22615
22616 2004-07-19 13:09  jordi
22617
22618         * Control.cs, Label.cs: label control re-written: added missing
22619           functionlity, events, and properties
22620
22621 2004-07-19 10:49  jordi
22622
22623         * Control.cs: fixes SetBounds logic
22624
22625 2004-07-19 01:29  jordi
22626
22627         * Control.cs: Call RefreshWindow only if the window has created
22628
22629 2004-07-15 14:05  pbartok
22630
22631         * ColorDepth.cs, ImageList.cs, ImageListStreamer.cs, SWF.csproj:
22632           - Implemented ImageList and ImageList.ImageCollection classes
22633           - Added ColorDepth enumeration
22634           - Updated SWF VS.Net project
22635
22636 2004-07-15 11:06  jordi
22637
22638         * XplatUIStructs.cs: added MsgButons enum
22639
22640 2004-07-15 11:03  jordi
22641
22642         * Control.cs: added basic mouse handeling events
22643
22644 2004-07-15 03:38  jordi
22645
22646         * Orientation.cs, TickStyle.cs, TrackBar.cs: Horizontal and
22647           Vertical TrackBar control implementation
22648
22649 2004-07-13 09:33  jordi
22650
22651         * HScrollBar.cs, VScrollBar.cs: vertical and hort. classes commit
22652
22653 2004-07-13 09:31  jordi
22654
22655         * Control.cs, Form.cs: commit: new properties and fixes form size
22656           problems
22657
22658 2004-07-09 14:13  miguel
22659
22660         * ProgressBar.cs: Spelling
22661
22662 2004-07-09 11:25  pbartok
22663
22664         * ProgressBar.cs:
22665           - Removed usage of Rectangle for drawing. Miguel pointed out it's
22666           faster
22667
22668 2004-07-09 11:17  miguel
22669
22670         * ProgressBar.cs: 2004-07-09  Miguel de Icaza  <miguel@ximian.com>
22671
22672                 * ProgressBar.cs: Fixed spelling for `block'
22673
22674                 drawProgressBar: renamed to `DrawProgressBar' to follow the coding
22675                 style guidelines.
22676
22677                 Avoid using the += on rect.X, that exposed a bug in the compiler.
22678
22679 2004-07-08 23:21  pbartok
22680
22681         * AccessibleObject.cs, AccessibleRole.cs, AccessibleStates.cs,
22682           AnchorStyles.cs, Application.cs, ApplicationContext.cs,
22683           BaseCollection.cs, Binding.cs, BindingContext.cs,
22684           BindingMemberInfo.cs, BindingsCollection.cs,
22685           BindingsManagerBase.cs, Border3DSide.cs, Border3DStyle.cs,
22686           BorderStyle.cs, BoundsSpecified.cs, ButtonBorderStyle.cs,
22687           ButtonState.cs, CaptionButton.cs, CheckBox.cs,
22688           ContainerControl.cs, Control.cs, ControlEventArgs.cs,
22689           ControlEventHandler.cs, ControlPaint.cs, ControlStyles.cs,
22690           ConvertEventArgs.cs, ConvertEventHandler.cs, Copyright,
22691           CreateParams.cs, DockStyle.cs, DragAction.cs, DragDropEffects.cs,
22692           DragEventArgs.cs, DragEventHandler.cs, FlatStyle.cs, Form.cs,
22693           FrameStyle.cs, GiveFeedbackEventArgs.cs,
22694           GiveFeedbackEventHandler.cs, HelpEventArgs.cs,
22695           HelpEventHandler.cs, IContainerControl.cs, IDataObject.cs,
22696           IMessageFilter.cs, IWin32Window.cs, ImeMode.cs, InputLanguage.cs,
22697           InputLanguageChangedEventArgs.cs,
22698           InputLanguageChangedEventHandler.cs,
22699           InputLanguageChangingEventArgs.cs,
22700           InputLanguageChangingEventHandler.cs, InputLanguageCollection.cs,
22701           InvalidateEventArgs.cs, InvalidateEventHandler.cs,
22702           KeyEventArgs.cs, KeyEventHandler.cs, KeyPressEventArgs.cs,
22703           KeyPressEventHandler.cs, Keys.cs, Label.cs, LayoutEventArgs.cs,
22704           LayoutEventHandler.cs, MenuGlyph.cs, Message.cs, MouseButtons.cs,
22705           MouseEventArgs.cs, MouseEventHandler.cs, NativeWindow.cs,
22706           PaintEventArgs.cs, PaintEventHandler.cs, ProgressBar.cs,
22707           QueryAccessibilityHelpEventArgs.cs,
22708           QueryAccessibilityHelpEventHandler.cs,
22709           QueryContinueDragEventArgs.cs, QueryContinueDragEventHandler.cs,
22710           RightToLeft.cs, SWF.csproj, SWF.csproj.user, ScrollBar.cs,
22711           ScrollBars.cs, ScrollButton.cs, ScrollEventArgs.cs,
22712           ScrollEventHandler.cs, ScrollEventType.cs, ScrollableControl.cs,
22713           TODO, TODOAttribute.cs, UICues.cs, UICuesEventArgs.cs,
22714           UICuesEventHandler.cs, X11Structs.cs, XplatUI.cs,
22715           XplatUIDriver.cs, XplatUIStructs.cs, XplatUIWin32.cs,
22716           XplatUIX11.cs, lang.cs:
22717           - Initial check-in
22718