* TreeView.cs: We need to check scrollbar visibility when window
[mono-project.git] / mcs / class / Managed.Windows.Forms / System.Windows.Forms / ChangeLog
blobfe5177679583b2da98025e5853fc1b4f2ec1d31d
1 2007-02-05  Jackson Harper  <jackson@ximian.com>
3         * TreeView.cs: We need to check scrollbar visibility when window
4         visibility is updated, because non visible trees don't ever add
5         scrollbars.
7 2007-01-30  Jackson Harper  <jackson@ximian.com>
9         * XplatUIX11.cs: Don't break when handling button release in drag
10         and drop operations. We need that BUTTONUP message to get through
11         so capture is released.
12         * X11Dnd.cs: We don't need to manually grab the pointer anymore,
13         this is handled automatically when the mouse is down.
15 2007-01-29  Chris Toshok  <toshok@ximian.com>
17         * XplatUIX11.cs: don't crash, and remove the icon if the user has
18         set one, if SetIcon is passed a null icon.
20 2007-01-29  Andreia Gaita  <avidigal@novell.com>
22         * TextBox.cs: Redraw when the password characters changes
23         * TextControl.cs: Check if textbox has a password char and draw 
24         a line of password chars instead of the text in the line. LineTag gets 
25         an extra Draw() method which allows document.Draw to override the text 
26         that will be drawn. Removes 1024 char limitation on length of passworded 
27         lines.
28         
29 2007-01-25  Rolf Bjarne Kvinge  <RKvinge@novell.com>
30         [Backport to 1-2-3 -jpobst]
31         * XplatUIWin32.cs: Set SWP_NOACTIVATE in RequestNCRecalc as well,
32         we don't want to activate any windows. Fixes #79433.
34 2007-01-28  Jonathan Pobst  <monkey@jpobst.com>
35         [Backport to 1-2-3]
36         * TextRenderer.cs: Fix cutting off the bottom of letters like "j" by
37         one pixel.  Fix a StackOverflowException caused by an overload wrongly
38         calling itself.
40 2007-01-24  Chris Toshok  <toshok@ximian.com>
42         * XplatUIX11.cs: fix the wake_waiting logic - we always clear the
43         wake_waiting flag, not just when there's data to be read.  if we
44         don't, then future wakeup's won't reach us and we'll be doomed to
45         wait for the entire 1 second timeout forever (unless there are X
46         events to be had).
48 2007-01-24  Jonathan Pobst  <monkey@jpobst.com>
50         * ComboBox.cs: FindStringExactMaxException doesn't throw AOORE on 2.0
51         until you pass Items.Count, not Items.Count - 1 like 1.1.
53 2007-01-24  Gert Driesen  <drieseng@users.sourceforge.net>
55         * ColumnHeader.cs: Fixed ParamName in ArgumentOutOfRangeException.
57 2007-01-24  Jonathan Pobst  <monkey@jpobst.com>
59         * ToolStripContainer.cs: The recent Dock fix exposed that I was
60         adding the panels in the wrong order.
62 2007-01-24  Jackson Harper  <jackson@ximian.com>
64         * TextBoxBase.cs: When we move the caret we also need to move the
65         selection, this fixes some random crashing after doing select
66         text, unselect, delete a char, paste.
68 2007-01-24  Rolf Bjarne Kvinge  <RKvinge@novell.com>
70         * Form.cs: Update SizeGrip's location even if it's not visible (fixes #80592).
72 2007-01-23  Everaldo Canuto  <everaldo@simios.org>
74         * Control.cs: In OnParentBackgroundImageChanged remove conditions to call
75         OnBackgroundImageChanged, it mimics win32 behavior. Fixes #80553. 
76         * ToolBar.cs: Force redraw in BackgroundImageChanged.
78 2007-01-23  Everaldo Canuto  <everaldo@simios.org>
80         * ToolBar.cs:
81         - Implement support for vertical toolbars. Fixes #80539;
82         - Call LayoutToolBar when resize, it fix some other problems in layout.
83         - Rename requested_height to requested_size, as we can have width on it
84         when toolbar is vertical.
85         - Create a private property "Vertical" that uses Dock to verify when 
86         toolbar is vertical or not.
87         - Set ControlStyles when change Dock property.
88         - Refactory in LayoutToolBar to have better variables names and to support
89         vertical toolbars.
90         - Fixes default value for ButtonSize when button count is equal zero, size
91         must be (39, 36) test case writed.
93 2007-01-23  Chris Toshok  <toshok@ximian.com>
95         * Control.cs: fix the checks so that they work correctly for mdi
96         parents/children.
98 2007-01-23  Chris Toshok  <toshok@ximian.com>
100         * Control.cs: ControlCollection seems to have super-secret
101         abstraction breaking knowledge of Mdi containers.  allow MdiClient
102         to add toplevel controls.
104 2007-01-23  Chris Toshok  <toshok@ximian.com>
106         * Control.cs: throw an ArgumentException if a toplevel control is
107         added to our control collection from ControlCollection.Add, as
108         well as from ControlCollection.IList.Add.  This fixes the
109         ControlSetTopLevelTest.TestTopLevelAdd unit test.
111         Also, in ControlCollection.IList.Add, don't through an
112         ArgumentNullException, throw an ArgumentException, when value ==
113         null.  This matches MS.
115 2007-01-23  Chris Toshok  <toshok@ximian.com>
117         * BindingSource.cs: initial, incomplete, implementation of
118         BindingSource.
120 2007-01-23  Jackson Harper  <jackson@ximian.com>
122         * TextControl.cs:
123         * TextBoxBase.cs: Checking in some pieces of the undo stuff so
124         that I can fix a broken unit test (TextBoxTest::ClearUndo)
125         
126 2007-01-23  Everaldo Canuto  <everaldo@simios.org>
128         * ToolBar.cs: Add status fields to ToolBarButtonInfo.
130 2007-01-23  Andreia Gaita  <avidigal@novell.com>
132         * TreeNode.cs: Add new 2.0 ImageKey and SelectedImageKey properties.
133         * TreeNodeCollection.cs: New Add() methods, ContainsKey and
134         IndexOfKey() for 2.0
136 2007-01-23  Rolf Bjarne Kvinge  <RKvinge@novell.com>
138         * XplatWin32.cs: In RequestNCRecalc call SetWindowPos with SWP_NOZORDER
139         to prevent it from changing z-order.
140         * MdiWindowManager.cs: Refactor part of SetWindowState to MdiClient, only
141         leave UI updates in MdiWindowManager.
142         * InternalWindowManager.cs: Check for 0 sized nc areas and make them
143         1 sized (NC handling goes weird on Linux otherwise).
144         * MdiClient.cs: Add missing ExStyle (WS_EX_CLIENTEDGE), so it's no longer
145         necessary to handle WM_NCCALCSIZE anymore. This also made it possible to
146         remove a few NCRequestRecalcs. Changed calculations in IconicBounds
147         to use ClientSize of MdiClient instead of entire size. Refactored ActivateChild
148         and SetWindowState(s) to allow for changing the size of an activated child
149         before activating it (reduces a lot of flicker).
151 2007-01-22  Jonathan Pobst  <monkey@jpobst.com>
153         * Form.cs: Changing FormBorderStyle has different semantics based
154         on whether the Form is visible or not.  If not visible, don't change
155         the Size.  But InvalidateNC needs to be called to force the window
156         to pick up the changes and redraw itself.  [Fixes bug #80574]
158 2007-01-22  Jonathan Pobst  <monkey@jpobst.com>
160         [Moma work]
161         * ContainerControl.cs: ProcessCmdKey.
162         * ErrorProvider.cs: new constructor.
163         * Form.cs: fix AutoValidateEvent compiler warning.
164         * Label.cs: fix OnAutoSizeChanged compiler warning.
165         * MenuStrip.cs: fix CanOverflow compiler warning.
166         * TabControl.cs: SelectTab, OnSelected methods, Selected event.
167         * TextBox.cs: Dispose.
168         * ToolStrip.cs: CanOverflow, re-enable double buffering.
169         * ToolStripControlHost.cs: fix CausesValidation compiler warning.
170         * ToolStripDropDown.cs: fix ContextStripMenu compiler warning.
171         * ToolStripItem.cs: Overflow, RightToLeft properties.
173 2007-01-22  Rolf Bjarne Kvinge  <RKvinge@novell.com>
175         * Form.cs: Move the layout of the main form to MdiWindowManager.
176         * MdiWindowManager.cs: If WindowState changes from or to Maximized,
177         do a layout of the main window to update MdiClient's client area to
178         the right area. Fixes #80533. Remove the calculation of nc size, 
179         it was just wrong and the correct one is the same as for 
180         InternalWindowManager. 
182 2007-01-20  Jonathan Pobst  <monkey@jpobst.com>
184         * Control.cs: Setting Anchor or Dock needs to reset the other
185         to its default.  [Fixes bug #80556]
187 2007-01-20  Chris Toshok  <toshok@ximian.com>
189         * CheckedListBox.cs: class status changes.
191         * ScrollableControl.cs: same.
193         * RichTextBox.cs: same.
195         * ContainerControl.cs: same.
197         * ListView.cs: same.
199         * NotifyIcon.cs: same.
201         * MenuStrip.cs: same.
203         * RadioButton.cs: same.
205         * CheckBox.cs: same.
207         * PrintPreviewDialog.cs: same.
209         * Form.cs: same.
211 2007-01-19  Jonathan Pobst  <monkey@jpobst.com>
213         * TreeNode.cs: Apply Alan's patch for Name property.
215 2007-01-19  Rolf Bjarne Kvinge  <RKvinge@novell.com>
216         
217         * Form.cs: Implemented SizeGripStyle.
218         * SizeGrip.cs: Check for minimum and maximum size for the
219         control being resized and only resize if size has actually
220         changed.
222 2007-01-19  Chris Toshok  <toshok@ximian.com>
224         * DataGridColumnStyle.cs: stop setting _readonly in the
225         PropertyDescriptor setter.  fixes a unit test failure.
227         also, rename ParentReadOnly to TableStyleReadOnly, and have it
228         just consult our table style (if we have one).  We don't need to
229         consult the datagrid readonly attribute because that's passed in
230         as the _ro arg to Edit.  this simplifies things a little.
231         
232         * DataGrid.cs: use CurrentColumn instead of
233         current_cell.ColumnNumber just to simplify some of the code.
235         switch the order of some things in the CurrentCell setter to keep
236         the previous cell from getting a textbox again -
237         EnsureCellVisibility causes scrolling to happen, which calls Edit.
238         So we need to set the new cell before calling it.
239         
240         call Edit in OnEnter, as does Microsoft.
241         
242         also, make sure the current table style isn't the one we create
243         initially when checking to see if it's different than the one
244         we're setting it to in BindColumns (this fixes #80421).
246         * GridTableStylesCollection.cs: table styles can have "" for a
247         mapping name.  part of the fix for #80421.
249         * DataGridTextBoxColumn.cs: simplify the readonly calculation in
250         Edit significantly.
252 2007-01-18  Jonathan Pobst  <monkey@jpobst.com>
254         * TextRenderer.cs: Rewrote to be complete-er, more MS-matching-er,
255         and less GDI object leaky-er.
257 2007-01-18  Andreia Gaita  <avidigal@novell.com>
259         * LinkLabel.cs: Add opaque control style
261 2007-01-18  Jackson Harper  <jackson@ximian.com>
263         * TextControl.cs: Calculate width properly.
264         - Don't store the tag's X offset, this can be figured out very
265         easily.
266         - When getting the caret tag make sure to get the last empty tag.
268 2007-01-18  Jonathan Pobst  <monkey@jpobst.com>
270         * Form.cs: Recalculate our size after setting a new FormBorderStyle.
271         [Fixes bug #79959]
273         * Control.cs: Color.Empty shouldn't count for previous transparent
274         redraw changes.
276 2007-01-18  Jackson Harper  <jackson@ximian.com>
278         * TextBox.cs:
279         * RichTextBox.cs:
280         * TextControl.cs: Starting to merge in some pieces of my older
281         undo work.  Basically just some slight cleanup of the undo API.
283 2007-01-18  Rolf Bjarne Kvinge  <RKvinge@novell.com>
285         * TrackBar.cs: Fix signature of RightToLeftLayout.
286         * StatusBar.cs: Implemented missing 2.0 methods and attributes.
287         * StatusBarPanel.cs: Implemented missing 2.0 methods and attributes.
288         * Application.cs: Implemented UseWaitCursor.
290 2007-01-18  Jackson Harper  <jackson@ximian.com>
292         * TextControl.cs: We can't skip tags if any part of the tag is
293         visible.
295 2007-01-18  Jonathan Pobst  <monkey@jpobst.com>
297         * ContainerControl.cs: Override OnLayout.
299 2007-01-18  Jonathan Pobst  <monkey@jpobst.com>
301         * NotifyIcon.cs: Add ContextMenuStrip and Tag properties.
303         * ContextMenuStrip.cs: Make sure context menu is shown on top of 
304         everything else.
306 2007-01-18  Chris Toshok  <toshok@ximian.com>
308         * ContainerControl.cs: remove the partial handling of LBUTTONDOWN
309         (leftover from the container_selected days, I'd wager).  fixes bug
310         #80546.
312 2007-01-18  Jonathan Pobst  <monkey@jpobst.com>
314         * Control.cs: Apply patch from George to fix the new testcase on
315         bug #80451.  We can't just check for Color.Transparent, we need 
316         to check if the back color's alpha channel is < 255.
318 2007-01-18  Jonathan Pobst  <monkey@jpobst.com>
320         * Form.cs: Move setting show_icon = true to before the constructor
321         so that the base constructor has that information when it calculates
322         the form's size.  Was causing forms to be (6, 6) bigger than they
323         were supposed to be.  Thanks for catching this Rolf!
325 2007-01-18  Jackson Harper  <jackson@ximian.com>
327         * TextControl.cs: When replacing a selection we need to invalidate
328         from the initial selection start, because selection start is moved
329         to the end of the replacement.
331 2007-01-18  Andreia Gaita  <avidigal@novell.com>
333         * LinkLabel.cs: Missing ControlStyles. Fixes #80482
335 2007-01-18  Chris Toshok  <toshok@ximian.com>
337         * DataGridTextBoxColumn.cs: fix most of the NotWorking unit tests
338         I just added.
340 2007-01-17  Everaldo Canuto  <everaldo@simios.org>
342         * ToolBar.cs: Add layout methods to ToolBarButtonInfo class, every 
343         layout methods and properties from ToolBarButton must be available
344         into ToolBarButtonInfo.
346 2007-01-17  Jonathan Pobst  <monkey@jpobst.com>
348         * Control.cs: If the control has a transparent background, we
349         need to refresh it when it moves and when it's parent's background
350         image changes.  [Fixes bug #80451]
352 2007-01-17  Jonathan Pobst  <monkey@jpobst.com>
354         * XplatUIWin32.cs: Don't use 2.0 methods in 1.1 code!  Doh!
356 2007-01-17  Jonathan Pobst  <monkey@jpobst.com>
358         * XplatUIWin32.cs: Implement proper double buffering for Windows.
359         [Fixes bug #80447, and probably speeds up things as well]
361 2007-01-16  Rolf Bjarne Kvinge  <RKvinge@novell.com>
363         * XplatUIX11.cs: Caption height for MDI children is 19, not 26.
364         * XplatUIWin32.cs: We need to recalculate NC size after changing 
365         window style to toolwindow (otherwise the client rectangle will be
366         3 pixels to small for some reason).
367         * MdiWindowManager.cs: Revert NC size calculations to match how
368         they are calculated only based on window styles (to match
369         Win32AdjustWindowRectEx, since otherwise when setting size or 
370         location, Control will call Win32AdjustWindowRectEx to update client 
371         size, which would provoke a paint, then we'd get a NCCALCSIZE and 
372         calculate a different value of client size causing another paint 
373         (and flickering))
374         * InternalWindowManager.cs: When moving or resizing a window only
375         update size or location if they actually changed.
376         * ThemeWin32Classic.cs: ManagedWindowsBorderWidth is now 4 instead of 3
377         (seems to match Windows behaviour better). Cleaned up 
378         ManagedWindowDecorations to draw what's needed and nothing else
379         (was drawing borders and lines where they shouldn't be)
380         * Hwnd.cs: GetWindowRectangle now knows about MDI border sizes
381         (style = 0xFFFF) and takes into account caption height when 
382         calculating window rectangle.   
384 2007-01-16  Everaldo Canuto  <everaldo@simios.org>
386         * ToolBar.cs: Internal ToolBarButtonInfo class added, Because same button 
387         can be added to toolbar multiple times, we need to maintain a list of 
388         button information for each positions.
390 2007-01-16  Everaldo Canuto  <everaldo@simios.org>
392         * ToolBar.cs: Some small stetic changes.
394 2007-01-16  Jackson Harper  <jackson@ximian.com>
396         * TextBoxBase.cs: Use the new SuspendRecalc/ResumeRecalc methods
397         that allow us to have nested recalc = false blocks.
398         - Add paste support for images in the RichTextBox
399         * RichTextBox.cs: flush the text after the color is changed, so
400         the change takes effect.
401         - Use SuspendRecalc
402         - Some extra debugging info
403         * TextControl.cs: Tags no longer track their length, it is just
404         computed from the next tags length, this makes things a little
405         simpler and reduces places that we have to track length changes.
406         - Refactored the linetag class a little so we could make it
407         a base class for different kinds of tags
408         - Created a image tag, a tag that can have a single image inserted
409         into it
410         - Replace the norecalc flag with a Suspend/Resume Recalc pair, so
411         that we can call suspend multiple times.
412         - Add some debugging methods
414 2007-01-16  Rolf Bjarne Kvinge  <RKvinge@novell.com>
416         * MdiClient.cs: Add ActivatePreviousChild for 
417         mdi child window navigation.
418         * Form.cs: Use MdiClient.ActivateNextChild/
419         ActivatePreviousChild instead of Form.SelectNextControl
420         to select the next/previous child since 
421         SelectNextControl doesn't do it in the same order
422         as mdi children should do it.
424 2007-01-16  Chris Toshok  <toshok@ximian.com>
426         * Control.cs: remove container_selected field.
428 2007-01-16  Rolf Bjarne Kvinge  <RKvinge@novell.com>
430         * MdiClient.cs: Update main form's ActiveChild when
431         updating keyboard focus for the mdi child.
433 2007-01-16  Jonathan Pobst  <jpobst@novell.com>
435         * Control.cs: PreferredSize fix.
437         * Form.cs: Add several 2.0 events, properties, and methods.
439 2007-01-16  Gert Driesen  <drieseng@users.sourceforge.net>
441         * Form.cs: Provide meaningful message when MdiParent is assigned a
442         Form that is not an MdiContainer.
444 2007-01-16  Rolf Bjarne Kvinge  <RKvinge@novell.com>
446         * MdiClient.cs: Update main form's ActiveChild when
447         activating a mdi child.
449 2007-01-16  Rolf Bjarne Kvinge  <RKvinge@novell.com>
451         * MdiWindowManager.cs: Fix NRE when merging menus and main form
452         doesn't have a menu.
454         * Form.cs: Request NCRecalc after creating a mdi child window.
455         Implement mdi key handling (Ctrl+F4, Ctrl+Shift+F4, Ctrl+Tab, 
456         Ctrl+Shift+Tab, Ctrl+F6 and Ctrl+Shift+F6).
457         
458         * MdiClient.cs: Add new method SendFocusToActiveChild that either
459         sends keyboard focus to the active child, or to the MdiClient
460         if there are no child forms.
461         
462 2007-01-15  Chris Toshok  <toshok@ximian.com>
464         * ListView.cs: drop the *Internal overrides, just do our work in
465         ItemControl's WndProc instead.
467         * UpDownBase.cs: a few large changes.  Fix up the Selectable state
468         of the various controls, and forward the events properly (in the
469         same manner as MS) from the textbox to the UpDown.  Also the
470         ActiveControl of the UpDownBase gets set properly now.  Finally,
471         we don't call UpdateEditText from the ctor.  Fixes bug #79957.
473         * NumericUpDown.cs: set Text in the ctor.
475         * DomainUpDown.cs: call UpdateEditText in the ctor.
476         
477         * TextBox.cs: on ms.net, WM_LBUTTONDOWN sets focus on the textbox,
478         so even a Selectable = false textbox can be focused if you click
479         in it.  Go figure.
481         * Control.cs: remove On{Got,Lost}FocusInternal.  Subclasses can
482         just add their handling in their respective WndProc's.  Also add
483         an explicit FocusInternal method that doesn't consult CanFocus
484         before calling Select(this).
486         * TextBoxBase.cs: deal with removal of the FocusInternal calls -
487         do our work in WndProc instead.
489         * TabControl.cs: same.
491         * ComboBox.cs: same.
493 2007-01-15  Everaldo Canuto  <everaldo@simios.org>
495         * Menu.cs: implement MergeItems and Replace for MenuMerge method.
496         Fixes #80006.
498 2007-01-15 Carlos Alberto Cortez <calberto.cortez@gmail.com>
500         * ListViewItem.cs:
501         * ThemeWin32Classic.cs: Don't draw the item text outside
502         item bounds in Details view, as well as use trimming.
503         Fixes bug #80376.
505 2007-01-15  Jonathan Pobst  <jpobst@novell.com>
507         * Form.cs: Implement Form.ShowIcon.
508         
509         * XplatUIWin32.cs: Allow the SetIcon win32 call to set the icon to
510         null, which when combined with the DlgModalFrame window style removes
511         the icon from the title bar.
513 2007-01-15  Jonathan Pobst  <jpobst@novell.com>
515         * Control.cs: Call OnMouseClick after OnClick. (2.0)
517 2007-01-15  Everaldo Canuto  <everaldo@simios.org>
519         * MdiWindowManager.cs: In CreateMaximizedMenu fix a position of icon
520         menu when mdi child windows theres a menu, uses insert to get icon
521         at first position. Partially fix #80006.
523 2007-01-15  Jonathan Pobst  <jpobst@novell.com>
525         * Clipboard.cs: Implement 2.0 methods.
527 2007-01-15  Everaldo Canuto  <everaldo@simios.org>
529         * Menu.cs: Implement Insert method of MenuItemCollection class
530         to fix MenuMerge.
532 2007-01-14  Carlos Alberto Cortez <calberto.cortez@gmail.com>
534         * ListView.cs: Implement 2.0 FindItemWithText method.
536 2007-01-11  Everaldo Canuto  <everaldo@simios.org>
538         * Form.cs: When process WM_NCCALCSIZE message use ClienSize.Width
539         to calculate menu bar size. Fixes #80290.
541 2007-01-11  Everaldo Canuto  <everaldo@simios.org>
543         * ThemeWin32Classic.cs: Fix position of menuitem check mark.
545 2007-01-11  Chris Toshok  <toshok@ximian.com>
547         * XplatUIX11.cs: don't send duplicate WM_ACTIVATE messages to the
548         initial form.
550 2007-01-11  Chris Toshok  <toshok@ximian.com>
552         * LinkLabel.cs: make sure to call base.Select in our Select method
553         if it turns out we're going to be selected (i.e. if we have a link
554         that is going to receive focus).  That way our container's
555         ActiveControl is updated properly.
557 2007-01-11  Chris Toshok  <toshok@ximian.com>
559         * LinkLabel.cs: turns out that LinkLabels are only Selectable if
560         they have 1 or more links.  this fixes the crash gert reported.
562 2007-01-11  Andreia Gaita  <avidigal@novell.com>
564         * ContainerControl.cs: Remove ContainerSelected flag, not needed
565         anymore.
567         * Control.cs (Controls.Add): Check if control to be added to the collection
568         is a top level control, and throw an ArgumentException if it is.
569         Remove ContainerSelectedFlag, not needed anymore.
571         * XplaUIWin32.cs (SetTopMost): Add flag SWP_NOACTIVATE so that setting the
572         top most control doesn't activate the form. This fixes a problem in the
573         MessageBox, where the default button wouldn't get focus because the form
574         was activated before being Loaded - when the Owner is set, SetTopMost is
575         called, and it would activate it.
577 2007-01-11  Jonathan Pobst  <jpobst@novell.com>
579         * Button.cs: When clicked and setting the parent form's DialogResult,
580         use FindForm instead of Parent, since parent could be a container
581         control and not the Form.  Fixes bug #80495.
583 2007-01-10  Chris Toshok  <toshok@ximian.com>
585         * Form.cs: move the call to SendControlFocus into the same
586         is_loaded check.
588 2007-01-10  Chris Toshok  <toshok@ximian.com>
590         * UpDownBase.cs (.ctor): remove the ActiveControl assignment here.
591         It breaks in the face of the new ActiveControl stuff, and should
592         be unnecessary.
594         * Form.cs (WndProc): in the WM_ACTIVATE case, we need to set the
595         activecontrol's focus if it's not already set, after we set
596         ActiveControl, but before we call OnActivated.  Re-fixes #79667
597         after the previous focus/active control fixes regressed it.
599         * Control.cs: reindent some code.
600         
601 2007-01-10  Chris Toshok  <toshok@ximian.com>
603         * Splitter.cs: clearing some outstanding changes from my tree.
604         Replace all accesses (not writes) to the internal dock_style field
605         with the Dock property.
607 2007-01-10  Chris Toshok  <toshok@ximian.com>
609         * Control.cs: make FireEnter, FireLeave, FireValidating, and
610         FireValidated virtual.
612         * Form.cs: override and don't chain up calls to FireEnter and
613         FireLeave.
615 2007-01-10  Carlos Alberto Cortez <calberto.cortez@gmail.com>
617         * ListView.cs: Add more text padding space when using
618         auto resize for columns (the previous value didn't work fine).
620         * ThemeWin32Classic.cs: Update text position inside columns,
621         to match the appeareance of .Net.
623         * ColumnHeader.cs: When using auto resize, only the Width should
624         depend on the sub items, not the Height. Also, set width after
625         auto resizing (the value of Width should never remain as -1 or -2).
627 2007-01-10  Chris Toshok  <toshok@ximian.com>
629         * Application.cs: fix compilation errors when debug is enabled.
631 2007-01-10  Chris Toshok  <toshok@ximian.com>
633         * ContainerControl.cs (set_ActiveControl): rework this a bit (and
634         add some nice ascii art pictures and explanation of the process).
635         (GetMostDeeplyNestedActiveControl): new utility function we need
636         because our ActiveControl can refer to a child container with its
637         own ActiveControl.
639         * Form.cs (OnActivated): remove the call to SelectActiveControl
640         from here, since you can override this method and not chain up,
641         and winforms still sets the active control.
642         (OnCreateControl): also remove the unnecessary SelectActiveControl
643         call from here.
644         (WndProc): it's actually called from the WM_ACTIVATE block, just
645         before calling OnActivated.
647         * Control.cs (Select (Control)): move the call to XplatUI.SetFocus
648         inside the else.  the ActiveControl setter will end up setting
649         focus on @control.  This keeps us from setting it again (and
650         generating an extra LostFocus/GotFocus pair).
651         (Select (bool, bool)): reindent.
653 2007-01-10  Jonathan Pobst  <jpobst@novell.com>
655         * FlowLayoutPanel.cs, MenuStrip.cs, SplitContainer.cs, SplitterPanel.cs,
656         StatusStrip.cs, TableLayoutPanel.cs, TableLayoutStyleCollection.cs,
657         ToolStrip.cs, ToolStripComboBox.cs, ToolStripContainer.cs,
658         ToolStripContentPanel.cs, ToolStripControlHost.cs, ToolStripDropDown.cs,
659         ToolStripDropDownButton.cs, ToolStripDropDownItem.cs, ToolStripDropDownMenu.cs,
660         ToolStripItem.cs, ToolStripMenuItem.cs, ToolStripPanel.cs, ToolStripPanelRow.cs,
661         ToolStripSeparator.cs, ToolStripSplitButton.cs, ToolStripStatusLabel.cs
662         ToolStripTextBox.cs: Another wave of corcompare work.
664 2007-01-09  Carlos Alberto Cortez <calberto.cortez@gmail.com>
666         * ColumnHeader.cs: Implement 2.0 AutoResize method using
667         the Width property.
669         * ListView.cs: Implement 2.0 AutoResizeColumn and AutoResizeColumns
670         methods by callling Column.AutoResize method on columns.
672 2007-01-09  Jonathan Pobst  <monkey@jpobst.com>
674         * Control.cs: Provide proper implementations of PreferredSize
675         and GetPreferredSize (2.0).
677 2007-01-09  Jonathan Pobst  <monkey@jpobst.com>
679         * Form.cs: Remove one character (!) to make my previous OnClosing
680         stuff work for modal windows like MessageBox.
682 2007-01-09  Carlos Alberto Cortez <calberto.cortez@gmail.com>
684         * ListView.cs:
685         * ThemeWin32Classic.cs: Use ListView.GetReorderedColumn instead of
686         ListView.Columns to get the last displayed column. Fixes #80452.
688 2007-01-09  Everaldo Canuto  <everaldo@simios.org>
690         * Label.cs, LinkLabel.cs: Source code identation fixes.
692 2007-01-08  Everaldo Canuto  <everaldo@simios.org>
694         * ToolBarButton.cs: Remove InvalidateBorder and use Invalidate instead,
695         we dont need to invalidate only borders because when we invalidate four
696         border lines the invalidate's generates a complete redraw of button, 
697         because it now invalidate a complete rect some other redraws operations
698         are fixed. Fixes #80196.
699         
700         * Theme.cs, ThemeNice.cs, ThemeClearLooks.cs, ThemeWin32Classic.cs:
701         Remove ToolBarInvalidateEntireButton as it is not used.
703 2007-01-08  Jonathan Pobst  <monkey@jpobst.com>
704         
705         * Form.cs: Make sure that both OnClosing and OnFormClosing are
706         called for 2.0 profile.
707         * CloseReason.cs: Make class internal for 1.1.
709 2007-01-08  Jonathan Pobst  <monkey@jpobst.com>
711         * ToolStripManager.cs: Implement FindToolStrip functionality.
712         * ToolStrip.cs: Register and unregister with ToolStripManager.
714 2007-01-07  Jonathan Pobst  <monkey@jpobst.com>
716         * Control.cs: This was messy.  2.0 moves much of ControlCollection
717         to ArrangedElementCollection.  Implemented this with as few #if's as 
718         possible (which is still too many).
720 2007-01-07  Jonathan Pobst  <monkey@jpobst.com>
722         * Control.cs: Implement SizeFromClientSize() [2.0].
724 2007-01-07  Everaldo Canuto  <everaldo@simios.org>
726         * Hwnd.cs: On GetClientRectangle add a new parameter border_static,
727         use Theme.BorderSize to calculate area instead of static value 1, 
728         by the way use new BorderStaticSize instead     Border3DSize when 
729         border_static is true. Fixes #79537.
730         
731         * XplatUIOSX.cs: Fix call to GetClientRectangle. 
732         
733         * ThemeWin32Classic.cs: On CPDrawBorder3D dont draw inner border when
734         it is not needed.
736 2007-01-06  Everaldo Canuto  <everaldo@simios.org>
738         * Hwnd.cs: Gives more code legibility to GetWindowRectangle.
740 2007-01-06  Everaldo Canuto  <everaldo@simios.org>
742         * Label.cs: Override CreateParams to use WS_EX_STATICEDGE instead of
743         WS_EX_CLIENTEDGE in ExStyles when BorderStyle is Fixed3D, it is
744         
745         * Hwnd.cs: 
746         - border_static field added, it will used to define when a control 
747         theres 3D border but it must be static (thin).
748         - In GetWindowRectangle use Theme.BorderSize to calculate area 
749         instead of static value 1, by the way use new BorderStaticSize instead
750         Border3DSize when border_static is true.
752         * XplatUIX11.cs, XplatUIOSX.cs: 
753         - When WS_EX_STATICEDGE ExStyle is set define border_static as true.
754         
755         * Theme.cs: BorderStaticSize field added.
757 2007-01-05  Everaldo Canuto  <everaldo@simios.org>
759         * XplatUIX11.cs: Removed unused hwnd var in SetBorderStyle.
761 2007-01-05  Everaldo Canuto  <everaldo@simios.org>
763         * Control.cs: Under InternalBorderStyle call RecreateHangle to 
764         mimic same behavior than win32 that set border only in CreateParams,
765         it fix problems under CreateParams overrides. Fix #79442 and partial
766         fix #79537.
767         
768         * XplatUIX11.cs: Dont set hwnd.border_style in SetBorderStyle instead
769         of thi control you must call recreate handle. 
770         
771         * XplatUIWin32.cs: Remove all SetBorderStyle code, for win32 we dont
772         need to do anything as RecreateHangle will take care about borders.
774 2007-01-05  Mike Kestner  <mkestner@novell.com>
776         * ListView.cs: hack to eliminate Lost/Got focus notifications on
777         cycles between the ItemControl and parent.  Fixes #80388.
779 2007-01-05  Gert Driesen  <drieseng@users.sourceforge.net>
781         * Control.cs: Lazy init layout engine. Do not directly use 
782         layout_engine since LayoutEngine may be overridden (on 2.0 profile).
784 2007-01-05  Chris Toshok  <toshok@ximian.com>
786         * DataGrid.cs: don't forceably rebind columns in SetDataSource
787         unless our list manager has changed (i.e. unless we have reason to
788         believe our columns have changed).  Fixes #80422.
789         
790         also, disable the call do BindColumns in
791         OnListManagerMetaDataChanged.  this breaks this test in 2.0 (in
792         1.1 the event isn't raised in response to a column addition on a
793         table.)
795 2007-01-05  Jonathan Pobst  <monkey@jpobst.com>
797         * Control.cs: Move LayoutEngine.Layout to the OnLayout method, so
798         that inheritors can not call it if they choose.  Fixes bug #80456.
800 2007-01-05  Andreia Gaita  <avidigal@novell.com>
802         * XplatUIWin32.cs: Initialize MSG.refobject at 0 so it 
803         doesn't blow up with a null exception on marshalling.
804         
805 2007-01-05  Jonathan Pobst  <monkey@jpobst.com>
807         * Control.cs: Implement several 2.0 protected properties and methods.
808         Ensure that all necessary events are being called when properties
809         are set.
811 2007-01-05  Mike Kestner  <mkestner@novell.com>
813         * ListView.cs: implement PgUp/PgDn for Details view.  Also
814         fixes First/LastVisibleIndex to use the item_control.ClientRect 
815         instead of the parent control.  Fixes #80378.
817 2006-01-05  Atsushi Enomoto  <atsushi@ximian.com>
819         * PageSetupDialog.cs : cosmetic refactoring; use RegionInfo to
820           determine whether to use yard-pound or not (bug #78399).
822 2006-01-04  Alexander Olk  <alex.olk@googlemail.com>
824         * FileDialog.cs: Sebastien fixed the libgdiplus png alpha
825         problems. So it is time to bring back the old popupbutton colors.
827 2006-01-04  Carlos Alberto Cortez <calberto.cortez@gmail.com>
829         * ColumnHeader.cs:
830         * ListView.cs: Implement 2.0 ColumnHeader.DisplayIndex
831         property by using the internal information of the
832         columns order in ListView.
834 2007-01-04  Jonathan Pobst  <monkey@jpobst.com>
836         * CommonDialog.cs, Cursor.cs, ErrorProvider.cs, HelpProvider.cs:
837         Add 2.0 Tag properties.
839         * LinkArea.cs: Add 2.0 ToString method.
841 2007-01-03  Chris Toshok  <toshok@ximian.com>
843         * DataGrid.cs: the Alt+0 handling was wrong, it should have been
844         Ctrl+0.  Fixes bug #80367.  Also, don't eat the Delete keypress
845         when we're editing, which fixes #80047.
847 2007-01-03  Chris Toshok  <toshok@ximian.com>
849         * Form.cs: apply patch contributed by Dominik Seichter.  fixes
850         #80404.
852 2007-01-03  Jonathan Pobst  <monkey@jpobst.com>
854         * MenuStrip.cs, ToolStripMenuItem.cs: Add MdiWindowListItem
855         property and implementation.
857         * Form.cs, MdiClient.cs, MdiWindowManager.cs: Add needed hooks
858         for MdiWindowListItem property.
860         * ToolStripDropDown.cs: Don't consider hidden menu items while
861         laying out the menu.
863 2007-01-03  Andreia Gaita  <avidigal@novell.com>
865         * SendKeys.cs: window handle is not needed in win32, so just
866         get the active window for X after parsing keys and don't use
867         it when building the message; it is passed by parameter to the 
868         Xplat method and used there to build the message instead. Also,
869         wait for events to be processed on SendWait, as opposed to Send,
870         which doesn't wait :) Playing with threads and Send() completely 
871         hangs on ms.net, only SendWait() works.
872         
873         XplatUIX11.cs
874         X11Display.cs: Check for valid window handle.
876 2007-01-03  Jackson Harper  <jackson@ximian.com>
878         * TextControl.cs: Need to prevent wrap calculations when replacing
879         text (this was there before i removed it accidently).
880         - Don't update the cursor during the positioning, just set it to
881         selection_start at the end of the operaion.
883 2007-01-03  Rolf Bjarne Kvinge  <RKvinge@novell.com>
885         * Control.cs:
886         * NotifyIcon.cs: corcompare work, no more X's in 1.1 class status.
887         
888 2007-01-03  Rolf Bjarne Kvinge  <RKvinge@novell.com>
890         * MonthCalendar.cs: Added Click and DoubleClick events again,
891         but this time they only hide Control's Click and DoubleClick.
892         
893 2007-01-03  Gert Driesen  <drieseng@users.sourceforge.net>
895         * Theme.cs: Re-enabled DefaultFont change. Use const to refer to
896         System.Drawing assembly. Spaces to tabs. Removed extra tabs.
898 2007-01-02  Jackson Harper  <jackson@ximian.com>
900         * TextBoxBase.cs: We move the caret with the split now, so we
901         don't need to explicitly move the caret after splitting.  This
902         fixes the caret bumping down an extra line on Enter.
904 2007-01-02  Miguel de Icaza  <miguel@novell.com>
906         * ContainerControl.cs: Add AutoValidateChanged event (for PDN
907         2.72). 
909         * ScrollableControl.cs: Add Scroll event.
911 2007-01-02  Mike Kestner  <mkestner@novell.com>
913         * ListView.cs: one more try with help from georgegiolfan@yahoo.com 
914         to fix all hdr height padding codepaths.  Fixes #80207.
916 2007-01-02  Chris Toshok  <toshok@ximian.com>
918         * StatusBar.cs (.ctor): remove the Anchor setting, as it's just
919         setting it to the Control defaults anyway, and it being after the
920         Dock set was screwing up layout.
921         (set_Dock): don't short circuit out of setting base.Dock.  Also,
922         no need to call UpdateStatusBar here, as it'll be re-layed out if
923         it needs to be.
925 2007-01-02  Mike Kestner  <mkestner@novell.com>
927         * ListView.cs: patch from georgegiolfan@yahoo.com to add padding
928         to header height for width == -1. Fixes the rest of #80207.
930 2007-01-02  Mike Kestner  <mkestner@novell.com>
932         * ListView.cs: rework the mouse event forwarding everaldo added
933         to translate the coordinates to the parent control not
934         raise the parent events until after we've done our work. Hover
935         needs more work, in the case where HoverSelection is on, because
936         the item control receives more than one MouseHover per Enter
937         event, so we need to ensure only the "first" hover gets forwarded.
938         Opening a minor bug for that.
940 2007-01-02  Gert Driesen  <drieseng@users.sourceforge.net>
942         * CheckedListBox.cs: Fixed SelectionMode to match MS.
943         * ListControl.cs: Implemented AllowSelection property. Removed extra
944         tabs.
945         * ListBox.cs: Implemented AllowSelection property.
947 2007-01-02  Everaldo Canuto  <everaldo@simios.org>
949         * MenuItem.cs: In MdiWindowClickHandler uses sender instead of
950         SelectedItem, it prevent for errors when you must disable item
951         before perform click. Fixes #80409.
953 2007-01-02  Everaldo Canuto  <everaldo@simios.org>
955         * MenuAPI.cs: Prevent second level and beyond submenus to close
956         until first level when move out side of popup.
957         
958 2007-01-02  Everaldo Canuto  <everaldo@simios.org>
960         * MenuAPI.cs:
961         - Down submenu positin in three pixels.
962         - Closes sub menu when mouse leaves from menu. Fixes #80402.
964 2007-01-02  Everaldo Canuto  <everaldo@simios.org>
966         * ThemeWin32Classic.cs:
967         - Fix popup menu size adding one pixel on the top.
968         - Down menu item border from two to one to mimic Win32.
969         - Some source identation fixes. 
971 2007-01-01  Everaldo Canuto  <everaldo@simios.org>
973         * ThemeWin32Classic.cs: Use float numbers to calculate size and
974         position of menu arrows, it fix wrong arrow size.
976 2007-01-01  Everaldo Canuto  <everaldo@simios.org>
978         * ThemeWin32Classic.cs: Uses CPDrawBorder3D to draw menu borders
979         instead of line, it simplify draw operation and fix it using 3D
980         borders to mimic Win32.
982 2007-01-01  Jonathan Pobst  <monkey@jpobst.com>
984         * StatusStrip.cs: Add implementation of the sizing grip.
986         * ToolStripRenderer.cs, ToolStripProfessionalRenderer.cs: Add
987         StatusStrip rendering.
989 2006-12-31  Chris Toshok  <toshok@ximian.com>
991         * ToolBar.cs: don't assign to dock_style in the .ctor.  it doesn't
992         override the layout style (anchor/dock) of the control.  assign to
993         Dock instead.  Fixes bug #80416.
995         * ToolStrip.cs: same.
997 2006-12-31  Andreia Gaita  <avidigal@novell.com>
999         * ContainerControl.cs: Use ContainerSelected flag to check if 
1000         a Container is directly selected, or if Select is called on a 
1001         non-container. If a container is directly selected, focus events 
1002         should not be raised.
1003         Apply #80411 patch to throw exception on set_ActiveControl if 
1004         control is the same as the current one.
1005         
1006         * Control.cs: Use ContainerSelected flag (see above).
1007         Add invalidation check to raise event but not invalidate if 
1008         dimensions are 0.       
1009         Apply #80411 patch.
1010         
1012 2006-12-31  Everaldo Canuto  <everaldo@simios.org>
1014         * MenuAPI.cs: After click, dont close popup menu when menu is
1015         ContextMenu. Fixes #80399.
1017 2006-12-30  Chris Toshok  <toshok@ximian.com>
1019         * ContainerControl.cs: make sure we throw the exception if the
1020         container control doesn't contain the control we're setting
1021         ActiveControl to.
1023 2006-12-30  Chris Toshok  <toshok@ximian.com>
1025         * Control.cs (SetTopLevel): fix the exception raised by
1026         SetTopLevel for child controls.
1027         (set_Anchor): call UpdateDistances when setting the anchor type.
1028         This fixes bug #80336.
1030 2006-12-29  Gert Driesen  <drieseng@users.sourceforge.net>
1032         * Theme.cs: For now, revert back to 8pt font.
1034 2006-12-29  Everaldo Canuto  <everaldo@simios.org>
1036         * MenuAPI.cs: Set popup as active when open a ContextMenu. 
1037         Fixes #80395.
1039 2006-12-29  Chris Toshok  <toshok@ximian.com>
1041         * Control.cs: reorder the code in OnResize to give the same event
1042         ordering as MS.
1044 2006-12-29  Rolf Bjarne Kvinge  <RKvinge@novell.com>
1046         * MdiClient.cs: Implemented MdiLayout for ArrangeIcons,
1047         TileHorizontally and TileVertically.
1048         
1049 2006-12-29  Alexander Olk  <alex.olk@googlemail.com>
1051         * ColorDialog.cs, FileDialog.cs, FolderBrowserDialog.cs,
1052         FontDialog.cs, Mime.cs, MimeIcon.cs, OpenFileDialog.cs,
1053         SaveFileDialog.cs, ThemeClearlooks.cs, ThemeNics.cs:
1054         Corrected copyright and email adress.
1056 2006-12-29  Gert Driesen  <drieseng@users.sourceforge.net>
1058         * TreeNode.cs: On 2.0 profile, throw InvalidOperationException instead
1059         of Exception in FullPath property if no TreeView is associated with
1060         the TreeNode.
1062 2006-12-29  Gert Driesen  <drieseng@users.sourceforge.net>
1064         * Theme.cs: Marked default_font as private, and initialize it in ctor
1065         with MS Sans Sarif 8.25 on 1.0 profile, and SystemFonts.DefaultFont
1066         on 2.0 profile.
1067         * ThemeGtk.cs: Removed default_font intialization.
1068         * ThemeWin32Classic.cs: Removed default_font initialization.
1070 2006-12-28  Chris Toshok  <toshok@ximian.com>
1072         * Control.cs: fix a couple of place where we were creating handles
1073         more aggressively than we should be.  Fixes ControlRefresh unit
1074         tests.
1076 2006-12-28  Chris Toshok  <toshok@ximian.com>
1078         * Control.cs: contrary to what the comment said, Control.Dock does
1079         not supercede Control.Anchor - the last one you assign to decides
1080         the layout behavior.  so we need to keep track of which was the
1081         last set.  Also, fix some of the affected property arguments in
1082         PerformLayout calls, and remove an redundant parent.PerformLayout
1083         call in OnResized.
1085         Add a VisibleInternal property, which returns is_visible.  We
1086         can/should get rid of all the usage of this field elsewhere.
1088 2006-12-28  Rolf Bjarne Kvinge  <RKvinge@novell.com>
1089         
1090         * Control.cs: DoubleBuffered property reflects the OptimizedDoubleBuffer
1091         control style, not DoubleBuffer. Added UseDoubleBuffering property
1092         that indicates whether doublebuffering is enabled and supported.
1093         (comment from and code based on Gert Driesen's patch in #80324).
1094         Fixes #80324.
1096 2006-12-28  Rolf Bjarne Kvinge  <RKvinge@novell.com>
1097         
1098         * Control.cs: Fixed a NRE.
1100 2006-12-28  Rolf Bjarne Kvinge  <RKvinge@novell.com>
1102         * TrackBar.cs: Fix SmallChange and LargeChange exceptions
1103         for 2.0.
1105 2006-12-28  Rolf Bjarne Kvinge  <RKvinge@novell.com>
1107         * Control.cs: Rewrote double buffering, now a seperate
1108         class handles all the buffering, no Graphics is disposed of
1109         until the painting is finished (earlier implementation 
1110         would crash if the control was resized in the OnPaint, 
1111         since it would cause the double buffer to be recreated
1112         and the old one disposed), a separate Graphics is 
1113         created for every paint (MS behaviour and anyways the state
1114         of the Graphics would have to be saved and restored otherwise)
1115         
1116         * XplatUIDriver.cs: 
1117         * XplatUIX11.cs:
1118         * XplatUI.cs: Added and implemented GetOffscreenGraphics 
1119         so that we can get the graphics for the back buffer without
1120         having to create a new one and remove the offscreen_dc parameter
1121         from CreateOffscreenDrawable and DestroyOffscreenDrawable.
1122         
1123 2006-12-27  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1125         * ListView.cs: Add key-related 2.0 methods for CheckedItemCollection.
1126         Also make virtual all the key-related methods.
1128         * ListViewItem.cs: Make virtual the key related methods for
1129         ListViewSubItemCollection.
1131 2006-12-27  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1133         * ListView.cs:
1134         * ListViewItem.cs:
1135         * ThemeWin32Classic.cs:
1136         * Theme.cs: Initial support for Tile view in ListView,
1137         as well as the implementation of the required bits for it (Item
1138         and Subitem).
1140 2006-12-27  Gert Driesen  <drieseng@users.sourceforge.net>
1142         * MonthCalendar.cs: On 2.0, throw ArgumentOutOfRangeException instead
1143         of ArgumentException in MaxSelectionCount, MaxDate and MinDate.
1144         Provide useful exception messages.
1146 2006-12-27  Rolf Bjarne Kvinge  <RKvinge@novell.com>
1148         * TrackBar.cs: Remove a warning.
1149         * MonthCalendar.cs: Moved back to using Capture to hide the calendar
1150         when used by DateTimePicker, fixes #80287. This also requires that 
1151         MonthCalendar implements it's own drawing for the yearly updown control,
1152         otherwise the Capture tracking would be too complicated. Removed the Click 
1153         and DoubleClick events (according to comments they were hiding the base class
1154         event to prevent them from beeing fired - MSDN only says MonthCalendar doesn't
1155         raise these events, not that they cannot be raised. It is possible to raise 
1156         them by calling OnClick and OnDoubleClick). Added two internal fields in 
1157         HitTestInfo in order to track give more tracking info needed by MonthCalendar.
1158         * ThemeWin32Classic.cs: Implement drawing of MonthCalendar's updown part.
1159         * DateTimePicker.cs: Removed handling of MonthCalendar's LostFocus
1160         event, no longer needed.
1161         
1162 2006-12-27  Gert Driesen  <drieseng@users.sourceforge.net>
1164         * ScrollableControl.cs: In AutoScrollMinSize, only set AutoScroll to
1165         true if new value differs from current value.
1167 2006-12-27  Gert Driesen  <drieseng@users.sourceforge.net>
1169         * Control.cs: ControlCollection.Count must be public. Fixed build of
1170         unit tests.
1172 2006-12-27  Gert Driesen  <drieseng@users.sourceforge.net>
1174         * ListView.cs: Redraw when FullRowSelect is changed. Fixes bug #80379.
1176 2006-12-27  Gert Driesen  <drieseng@users.sourceforge.net>
1178         * ComboBox.cs: Mergable=>MergableProperty. Fixes build.
1180 2006-12-26  Everaldo Canuto  <everaldo@simios.org>
1182         * Control.cs: Invalidates control including when Width and Height is 
1183         equal zero or is not visible, only Paint event must be care about 
1184         this. Fixes #79913.
1186 2006-12-26  Chris Toshok  <toshok@ximian.com>
1188         * CurrencyManager.cs, PropertyManager.cs, BindingManagerBase.cs:
1189         more corcompare work.
1191         * DataGridView.cs: fix compiler warning.
1193         * ColumnHeader.cs: some corcompare work, and also take the
1194         opportunity to make the internal fields private.
1196         * ListView.cs: fix the fallout from the above field change.
1198 2006-12-26  Jonathan Pobst  <monkey@jpobst.com>
1200         * ToolStripButton.cs, ToolStripComboBox.cs, ToolStripControlHost.cs,
1201         ToolStripItem.cs, ToolStripProgressBar.cs, ToolStripSplitButton.cs,
1202         ToolStripTextBox.cs: Fixes to events and corcompare.
1204 2006-12-26  Everaldo Canuto  <everaldo@simios.org>
1206         * ListView.cs: Call owner.OnMousexx event to propagate events from
1207         item to ListView. Fixes #80367.
1209 2006-12-26  Gert Driesen  <drieseng@users.sourceforge.net>
1211         * ComboBox.cs: On 2.0, DropDownWidth throws ArgumentOutOfRangeException
1212         if value is less than one. ItemHeight should not be set to a value
1213         less than 1, and throw ArgumentOutOfRangeException on 2.0 profile. 
1214         Removed extra tabs.
1216 2006-12-26  Jonathan Pobst  <monkey@jpobst.com>
1218         * ToolStripMenuItem.cs: Add ShortcutDisplayString for Moma.
1219         * ToolStripStatusLabel.cs: Add Spring for Moma.
1221 2006-12-26  Gert Driesen  <drieseng@users.sourceforge.net>
1223         * DataGridView.cs: Fixed several NullReferenceException in On* methods.
1224         Fixed code formatting. Removed debug code.
1225         * DataGridViewTextBoxEditingControl.cs: Removed debug code.
1227 2006-12-26  Gert Driesen  <drieseng@users.sourceforge.net>
1229         * DataGridView.cs: Fixed GridColor, DefaultSize, DefaultCellStyle,
1230         RowHeadersDefaultStyle, RowHeadersWidth to match MS. Throw
1231         ArgumentOutOfRangeException if ColumnCount is negative. In 
1232         ColumnHeadersHeight, throw ArgumentOutOfRangeException if height is
1233         less than 4 or higher than 32768.
1234         * DataGridViewCellStyle.cs: Fixed default value for NullValue.
1235         Fixed FormatProvider to return CurrentCulture unless explicitly set.
1236         Fixed IsFormatProviderDefault to return true if FormatProvider has
1237         not been explicitly set.
1239 2006-12-25  Chris Toshok  <toshok@ximian.com>
1241         * Application.cs: add a couple of 2.0 events.
1243 2006-12-25  Chris Toshok  <toshok@ximian.com>
1245         * Control.cs: fix compiler warning.
1247         * AxHost.cs: corcompare fixes.
1249         * ApplicationContext.cs: corcompare fixes.
1251 2006-12-25  Chris Toshok  <toshok@ximian.com>
1253         * Control.cs: only update dist_right/dist_bottom if the
1254         width/height is > 0.  this fixes anchored controls being resized
1255         smaller until they disappear and then resized larger again.
1257 2006-12-25  Chris Toshok  <toshok@ximian.com>
1259         * Control.cs: a couple of changes.  Remove dist_left and dist_top,
1260         since they're nothing more than X/Left and Y/Top, respectively.
1262         Also, move back to a per-control Bitmap/Graphics for
1263         DeviceContext, since using the static Hwnd.bmp/bmp_g is bad in the
1264         MT case.  Go with a tiny bitmap though, 1x1, instead of Width x
1265         Height.
1267 2006-12-25  Miguel de Icaza  <miguel@novell.com>
1269         * MessageBox.cs: Implemented overload that takes a new "bool
1270         displayHelpButton" by adding a new internal field "show_help".
1271         When clicked this will raise the HelpRequested on the owner or the
1272         main form. 
1274         From: 007dbe3ff0ca4729a4f5fcd1d8ab2a2e.txt
1275         From: c935e12b95fe4dc1ae670e7f4dc5fd68.txt
1277         * ListView.cs: Add support ColumnWidthChanged and
1278         ColumnWidthChanging. 
1280         Add support for ColumnReordered event.
1281         (ReorderColumn): Add NET_2_0 specific support for cancelling the
1282         reorder.
1284         Very nice codebase!
1286         * TextBoxBase.cs (GetLineFromCharIndex): Implement this method.
1288         This is used by report f4ae0a88a0a244558aaadf017c9b9efe.
1290 2006-12-24  Chris Toshok  <toshok@ximian.com>
1292         * GridTablesFactory.cs: 2.0 corcompare work.
1294         * ToolStripContainer.cs: add "override" to
1295         ContextMenuStripChanged, and remove the local event object.
1297         * ToolStripDropDown.cs: same with a couple properties.
1299         * ToolStripPanel.cs: same with AutoSizeChanged event.
1301         * TextBoxBase.cs: add "override" to AutoSizeChanged.
1303         * Form.cs: add the remaining 2.0 events, and do some corcompare
1304         attribute work.
1306         * DateTimePicker.cs: add "new" to padding.
1308         * ButtonBase.cs: use Control's use_compatible_text_rendering.
1310         * ToolStripContentPanel.cs: use base.AutoSizeChanged.
1312         * DataGridView.cs: PaddingChanged is overridden.
1314 2006-12-24  Chris Toshok  <toshok@ximian.com>
1316         * Control.cs: corecompare work here too.
1318         * DataGridViewElement.cs, DataGridView.cs,
1319         DataGridViewButtonCell.cs, DataGridViewRowCollection.cs,
1320         DataGridViewImageColumn.cs, DataGridViewComboBoxColumn.cs,
1321         DataGridViewImageCell.cs, DataGridViewCheckBoxCell.cs,
1322         DataGridViewHeaderCell.cs, DataGridViewCell.cs: more corcompare
1323         work.
1325 2006-12-24  Miguel de Icaza  <miguel@novell.com>
1327         * Control.cs: Switched the error message on the console for a
1328         todo.  A review of the code will have to cope with this anyways
1329         (since its a large feature, it is in our radar) and it was
1330         producing too much output when running PDN.
1332         * ToolStripComboBox.cs: Set the text when the SelectedIndex
1333         changes.  Applications depend on this (PDN 2.72)
1335 2006-12-23  Chris Toshok  <toshok@ximian.com>
1337         * TableLayoutSettings.cs: finish up the corcompare work for this
1338         class.
1340 2006-12-23  Chris Toshok  <toshok@ximian.com>
1342         * Control.cs: make SetImplicitBounds internal, do some futzing
1343         with LayoutEngine so that it's available in 1.1, and remove the
1344         entire duplicated code mess from PerformLayout.  Use
1345         System.Windows.Forms.Layout.DefaultLayout instead.
1347         * LayoutEngine.cs: make this class internal in 1.1, public in 2.0.
1349 2006-12-23  Jonathan Pobst  <monkey@jpobst.com>
1351         * Form.cs: Add MainMenuStrip property.
1353 2006-12-23  Jonathan Pobst  <monkey@jpobst.com>
1355         * Control.cs: Add ContextMenuStrip property and implementation.
1356         Fix ContextMenu implementation to show menu centered on control when
1357         activated using the keyboard instead of showing at screen (0,0).
1359         * ToolStripDropDown.cs: Fix needed overload of Show ().
1361 2006-12-23  Everaldo Canuto  <everaldo@simios.org>
1363         * Menu.cs: Name property added for 2.0 profile.
1364         
1365 2006-12-23  Everaldo Canuto  <everaldo@simios.org>
1367         * Menu.cs: Update information about FindMenuItem, method to be
1368         implemented soon.
1370 2006-12-23  Everaldo Canuto  <everaldo@simios.org>
1372         * MenuAPI.cs: When deselect items deselect also selected subitems.
1373         
1374 2006-12-23  Everaldo Canuto  <everaldo@simios.org>
1376         * MenuAPI.cs: When hides menu set Wnd to null, it prevents
1377         FindSubItemByCoord to found itens that is not active, also an
1378         cheking added to FindSubItemByCoord to search for items only 
1379         in visible popup windows. Fixes #80274.
1381 2006-12-22  Everaldo Canuto  <everaldo@simios.org>
1383         * UserControl.cs: Remove MonoTodo and use InternalBorderStyle,
1384         internal property, it be care about change ExStyle. 
1386 2006-12-22  Andreia Gaita  <avidigal@novell.com>
1388         * ContainerControl.cs: set activeControl for parent forms up the 
1389         tree when the new activecontrol is a container.
1390         When validating the active control, if it is a container, also
1391         raise up the validation for it's active control. Fixes #80280
1392         
1393         * Control.cs: Add internal property flag and check to prevent
1394         Focus events from getting raised when Select() is called for
1395         a ContainerControl. There are still too many focus events being
1396         raised at the moment though.
1397         Cleaned up the code a bit.
1399 2006-12-22  Rolf Bjarne Kvinge  <RKvinge@novell.com>
1401         * Control.cs: Added all missing 2.0 events.and
1402         fixed a couple of corcompare issues.
1403         * TrackBar.cs: Implemented missing 2.0 bits.
1404         * MonthCalendar.cs, 
1405         * DateTimePicker.cs, 
1406         * MdiClient.cs: Fixed some corcompare issues.
1408 2006-12-21  Jonathan Pobst  <monkey@jpobst.com>
1410         * ContextMenuStrip.cs, FlowLayoutPanel.cs, SplitContainer.cs,
1411         SplitterPanel.cs: corecompare work.
1413 2006-12-21  Jonathan Pobst  <monkey@jpobst.com>
1415         * ToolStripContainer.cs, ToolStripDropDown.cs, StatusStrip.cs:
1416         Clean up warnings for BackgroundImageChanged and PaddingChanged
1417         events now that they are implemented in Control.cs.
1419 2006-12-21  Jonathan Pobst  <monkey@jpobst.com>
1421         * Control.cs: Make sure layout_engine isn't null before using it (2.0).
1422         
1423         * TableLayoutControlCollection.cs, TableLayoutPanel.cs, TableLayoutCellPosition.cs,
1424         TableLayoutSettings.cs, TableLayoutStyleCollection.cs: Initial implementation
1425         of TableLayoutPanel and supporting cast.
1427 2006-12-21  Rolf Bjarne Kvinge  <RKvinge@novell.com>
1429         * XplatUIWin32.cs: 
1430         - GrabWindow now confines the mouse pointer to the confine window.
1431         - Added Win32ClipCursor and Win32GetClipCursor.
1433         * Control.cs: 
1434         - Added CaptureWithConfine to be able to capture and confine 
1435         mouse pointer.
1436         
1437         * InternalWindowManager.cs: 
1438         - Call CaptureWithConfine instead of Capture if we're an
1439         MdiChild (fixes #79982).
1441 2006-12-21  Chris Toshok  <toshok@ximian.com>
1443         * DataGrid.cs: guard against the initial state of selection, where
1444         selection_start == -1.  make sure we only select from index >= 0.
1445         Fixes bug #80291.
1447 2006-12-21  Chris Toshok  <toshok@ximian.com>
1449         * Control.cs: we don't need to be so draconian with
1450         UpdateDistances, and we thusly don't need to call it before
1451         calling PerformLayout in ResumeLayout.  Fixes bug #80289.
1453 2006-12-21  Daniel Nauck  <dna@mono-project.de>
1455         * ComboBox.cs,
1456         TextBox.cs: Implemented AutoComplete properties.
1458 2006-12-20  Chris Toshok  <toshok@ximian.com>
1460         * DataGridView*.cs: some corecompare work.
1462 2006-12-20  Jackson Harper  <jackson@ximian.com>
1464         * XplatUIX11.cs: We need to hide the caret when deleting it,
1465         otherwise you get carets left lying around everywhere.
1466         * TextBoxBase.cs: Kill then redraw the caret when scrolling.  This
1467         prevents getting some weird half drawn caret tracers when
1468         scrolling.
1469         * TextControl.cs: Attempt to reduce the number of times we need to
1470         recreate the caret.
1472 2006-12-20  Gert Driesen  <drieseng@users.sourceforge.net>
1474         * MonthCalendar.cs: Fixed previous month button. Removed extra tabs.
1476 2006-12-19  Rolf Bjarne Kvinge  <RKvinge@novell.com>
1478         * DateTimePicker.cs:
1479         - Implemented missing 2.0 bits.
1480         - Changed some default values to match MS.
1481         
1482 2006-12-20  Jackson Harper  <jackson@ximian.com>
1484         * TextBoxBase.cs: When changing the font across the document we
1485         can't recalculate after changing each line, since that will cahnge
1486         the line count.
1487         - PreferredHeight is a little different than i thought.
1488         - When backspacing, move the caret before we do the actual char
1489         delete, because when that delete crosses a wrap boundary the
1490         positional information will change.
1492 2006-12-19  Rolf Bjarne Kvinge  <RKvinge@novell.com>
1494         * Control.cs: Added some missing 2.0 bits: 
1495         BackgroundImageLayout, BackgroundImageLayoutChanged, 
1496         OnPaddingChanged, MouseClick, MouseDoubleClick, PaddingChanged and 
1497         add IBindableComponent and IDropTarget implementation.
1498         
1499         * MonthCalendar.cs: 
1500         - Added all missing 2.0 features:
1501         BackgroundImageLayout, RightToLeftLayout, 
1502         OnHandleDestroyed, RightToLeftLayoutChanged, 
1503         BackgroundImageLayoutChanged, MouseClick, MouseDoubleClick,
1504         PaddingChanged.
1505         - Rewrote all the BoldDate code, it was completely broken.
1506         - Fixed all the tests (the tests can now be re-enabled, the
1507         problems were not with the tests, but with the control, it was
1508         mostly broken).
1509         
1510         * DateTimePicker.cs: Changed the location where the 
1511         MonthCalendar is shown.
1512         
1513 2006-12-19  Chris Toshok  <toshok@ximian.com>
1515         * DataGridView.cs: add IDropTarget implementation.
1517         * ToolStripPanel.cs: add IDropTarget implementation.
1519 2006-12-19  Jackson Harper  <jackson@ximian.com>
1521         * TextControl.cs: soft now means something different than what it
1522         used to mean, we want to move the caret regardless of whether or
1523         not this break was soft (would we really have wanted the caret
1524         to not move with the break in the old context?)
1525         * TreeView.cs: Make sure we factor in the vert scrollbar when
1526         calculating the horizontal scrollbar's maximum.
1528 2006-12-19  Andreia Gaita  <avidigal@novell.org>
1530         * SendKeys.cs: Fix Send() behaviour, clear keys after sending,
1531         check for keywords in alternate casing, close bug #80049.
1533 2006-12-19  Chris Toshok  <toshok@ximian.com>
1535         * ToolStripItem.cs: add the implementation of the 4 IDropTarget
1536         methods (which all do nothing).
1538         * IDropTarget.cs: add the 4 missing methods.
1540 2006-12-19  Chris Toshok  <toshok@ximian.com>
1542         * TableLayoutRowStyleCollection.cs: corcompare work.
1543         
1544         * TableLayoutSettings.cs: same.
1546         * TableLayoutStyle.cs: same.
1548         * TableLayoutColumnStyleCollection.cs: same.
1550 2006-12-19  Jonathan Pobst  <monkey@jpobst.com>
1552         * ColumnStyle.cs, RowStyle.cs, TableLayoutStyle.cs: Plumbing for
1553         TableLayoutPanel I've had in my local tree for way too long.
1555 2006-12-19  Miguel de Icaza  <miguel@novell.com>
1557         * TableLayoutSettings.cs: Finish the public API (still needs all
1558         the logic to update on changes). 
1560         * TableLayoutPanelCellPosition.cs: new file.
1561         
1562         * TableLayoutRowStyleCollection.cs,
1563         TableLayoutColumnStyleCollection, TableLayoutStyle.cs,
1564         TableLayoutSettings.cs: Track the final 2.0 table api.
1566 2006-12-19  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1568         * ColumnHeader.cs: Add Tag, Name, ImageKey, ImageIndex,
1569         and Image List 2.0 members for ColummnHeader.
1570         * ListView.cs: Add key-related 2.0 methods for
1571         ColumnHeaderCollection.
1573 2006-12-19  Gert Driesen  <drieseng@users.sourceforge.net>
1575         * ListViewItem.cs: Changed AddRange overloads to match MS: throw
1576         ArgumentNullException if items argument is null. Ignore null item in
1577         arrays. Removed extra tabs.
1579 2006-12-19  Gert Driesen  <drieseng@users.sourceforge.net>
1581         * MonthCalendar.cs: Fixed InvalidCastException.
1583 2006-12-19  Jackson Harper  <jackson@ximian.com>
1585         * TextControl.cs: Don't increment the position here.
1586         - When calculating char positions only add in the line break size
1587         for hard line breaks.
1589 2006-12-19  Andreia Gaita  <avidigal@novell.org>
1591         * SendKeys.cs: Changed some things to match ms.net behaviour
1592         when parsing shifted capital letters.
1593         
1594         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32, XplatUIOSX: 
1595         Add window handle as parameter to SendInput. X11 needs the 
1596         window handle, and the handle being passed      to it in the keys 
1597         queue is the active control handle (which windows needs), not 
1598         the window handle.
1599         
1600         XplatUIX11.cs, XplaUIX11-new.cs, X11Display: Implement SendInput 
1601         to support SendKeys on X.       
1602         
1603         * X11Keyboard: Implement helper method to lookup a linux keycode
1604         given the virtual keycode. Added table of keycode-2-virtualkey
1605         values to support this.
1607 2006-12-19  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1609         * ListView.cs: Add support for SelectedIndexCollection
1610         and SelectedItemCollection 2.0 methods. Implement support
1611         for ImageKey too.
1612         * ListViewItem.cs: Add support for ListViewSubItemCollection
1613         2.0 methods. Also, fix an incorrect behavior of AddRange method
1614         (it shouldn't call Clear).
1615         * ThemeWin32Classic.cs: Support for ListView.ImageKey 2.0 property.
1617 2006-12-19  Jackson Harper  <jackson@ximian.com>
1619         * RichTextBox.cs: 
1620         * TextBoxBase.cs: New args for FormatText
1621         * TextControl.cs: Rewrote the main drawing method, this version
1622         feels a little easier to understand and debug to me.  Hopefully it
1623         does to others also
1624         - Fix FormatText to OR in the new formating values.  Added
1625         FormatSpecified param, basically this works in the same way as
1626         BoundsSpecified in Control.
1627         - Set the caret properties when the caret is positioned.
1628         - When wrapping text make sure that we calculate the width of the
1629         last character
1630         - when calculating alignments we might have wrapped down to the
1631         next line, so don't search for an individual tag, search for the
1632         end of the line
1633         - We need to invalidate the selection area when we replace the
1634         selection.
1635         
1636 2006-12-19  Daniel Nauck  <dna@mono-project.de>
1638         * Application.cs: add Restart () 2.0 support
1640 2006-12-18  Everaldo Canuto  <everaldo@simios.org>
1642         * MenuItem.cs: Invalidate menu item rectangle after change Enable
1643         property. Fixes #80268.
1644         
1645 2006-12-18  Everaldo Canuto  <everaldo@simios.org>
1647         * MenuAPI.cs: Dont trigger select event when closes top menu
1648         item. Fixes #80270.
1650 2006-12-18  Everaldo Canuto  <everaldo@simios.org>
1652         * MenuAPI.cs: When you click on menuitem only trigger onselect
1653         event for top menu itens. Fixes #80271.
1654         
1655 2006-12-18  Rolf Bjarne Kvinge  <RKvinge@novell.com>
1657         * MdiWindowManager.cs: Make IconicBounds depend on
1658         the bottom of MdiClient, not the top (fixes #80267)
1659         
1660 2006-12-18  Rolf Bjarne Kvinge  <RKvinge@novell.com>
1662         * MdiClient.cs: Added missing 2.0 attribute
1664 2006-12-18  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1666         * ListViewItem.cs: Add Name and Tag 2.0 properties, as well
1667         as IndexOfKey, ContainsKey, RemoveByKey and indexer 2.0.
1669 2006-12-18  Everaldo Canuto  <everaldo@simios.org>
1671         * MenuAPI.cs: Fix click when menuitem is not popup,
1672         this regression was caused by last commit (#80272).
1674 2006-12-17  Everaldo Canuto  <everaldo@simios.org>
1676         * MenuAPI.cs: When a non-toplevel menuitem is clicked dont
1677         fire click event or close menu. Fixes #80272.
1679 2006-12-17  Daniel Nauck  <dna@mono-project.de>
1681         * ListViewHitTestInfo.cs: add
1683 2006-12-17  Daniel Nauck  <dna@mono-project.de>
1685         * ButtonBase.cs: Added FlatButtonAppearance 2.0 support.
1686         * FlatButtonAppearance.cs: add
1687         * DockingAttribute.cs: add
1689 2006-12-17  Chris Toshok  <toshok@ximian.com>
1691         * DataGrid.cs: hook up MetaDataChanged event on the list manager,
1692         and rebind our columns when it does - this way, if you make
1693         changes to the DataTable (or set the Table attribute on a DataView
1694         after setting it as the DataGrid's DataSource, the changes are
1695         made visible.)  Fixes bug #80107.
1697 2006-12-17  Daniel Nauck  <dna@mono-project.de>
1699         * ListViewGroup.cs: add internal Location property for layouting.
1700         * Theme.cs: add abstract ListViewGroupHeight function.
1701         * ThemeWin32Classic.cs: implement ListViewGroupHeight function.
1703 2006-12-16  Andreia Gaita  <avidigal@novell.com>
1705         * TabControl.cs: Fixed checks for NET_2_0-specific exceptions.
1706         Added reset of selected index to 0 when adding first tab page.
1707         Fixes #80264
1708         
1709         * NumericUpDown.cs: Fix NET_2_0 check
1711 2006-12-16  Daniel Nauck  <dna@mono-project.de>
1713         * ListViewGroup.cs: fixed DefaultValueAttribute value
1715 2006-12-16  Daniel Nauck  <dna@mono-project.de>
1717         * AutoCompleteStringCollection.cs: add new AutoCompleteStringCollection 2.0 class
1719 2006-12-15  Miguel de Icaza  <miguel@novell.com>
1721         * Button.cs, ComboBox.cs, ScrollBar.cs, UserControl.cs,
1722         TextBoxBase.cs, ListView.cs, ContainerControl.cs,
1723         ScrollableControl.cs: Add a handful of methods that are
1724         overwritten in 2.0 
1726 2006-12-15  Chris Toshok  <toshok@ximian.com>
1728         * XplatUIWin32.cs: initial implementation of the Reversible
1729         drawing functions.  there are some problems.  DrawReversibleFrame
1730         doesn't seem to work at all for Dashed FrameStyle, and in the
1731         Thick case there are drawing errors at the corners (we probably
1732         need to bind Rectangle instead of doing moveto/lineto's.)
1734 2006-12-16  Andreia Gaita  <avidigal@novell.com>
1735         
1736         * SendKeys.cs: Implemented. SendKeys uses a new method in XPlatUI, SendInput, 
1737         to send blocks of key messages. Send accumulates keys to send with Flush, 
1738         while SendWait sends all keys immediately.
1739                 
1740         * XplaUI.cs, XplatUIDriver.cs, XplatUIOSX.cs, XplatUIWin32.cs, 
1741         XplatUIX11.cs,  XplatUIX11-new.cs:
1742         - Define SendInput and stubs for OSX and X11, implements Win32 with a call
1743         to Win32 SendInput.
1744         - Added INPUT support structures to XplatUIWin32 for Win32SendInput
1745         
1746         Tests:  It seems ms.net is hooking the keyboard to implement this, so doing unit
1747         testing for ms.net on this class is very tricky, as the tests run too fast 
1748         to allow the hook to release, essentially freezing the keyboard and the 
1749         test. So, barring a win32 miracle, they'll be commited in the ms-notworking     
1750         category :p
1752 2006-12-16  Daniel Nauck  <dna@mono-project.de>
1754         * Padding.cs: fixed serialization compability to MS ("_var" field names),
1755                         added missing attributes.
1757 2006-12-15  Daniel Nauck  <dna@mono-project.de>
1759         * ListViewGroup.cs: Added missing attributes.
1760         * ListViewGroupCollection.cs: Added missing attributes.
1762 2006-12-15  Daniel Nauck  <dna@mono-project.de>
1764         * ListViewItem.cs: fixed ListViewSubItem text property.
1766 2006-12-15  Rolf Bjarne Kvinge  <RKvinge@novell.com>
1767         
1768         * Control.cs: Added missing 2.0 attributes
1769         
1770 2006-12-15  Rolf Bjarne Kvinge  <RKvinge@novell.com>
1771         
1772         * MdiClient.cs: Added missing 2.0 attribute.
1773         * MonthCalendar.cs: Added some missing 2.0 attributes 
1774         and properties.
1775         
1776 2006-12-15  Daniel Nauck  <dna@mono-project.de>
1778         * ListView.cs: implemented ListViewItemCollection Add 2.0 support.
1780 2006-12-15  Jonathan Pobst  <monkey@jpobst.com>
1782         * MainMenu.cs: Add the new 2.0 constructor to help out people
1783         using the MainMenu in VS2005.
1785 2006-12-15  Rolf Bjarne Kvinge  <RKvinge@novell.com>
1786         
1787         * MdiChildContext.cs: Removed it, no longer used.
1788         * MdiClient.cs: Added missing 2.0 attributes.
1789         
1790 2006-12-15  Rolf Bjarne Kvinge  <RKvinge@novell.com>
1791         
1792         * InternalWindowManager.cs: Fix a NullRef with previous 
1793         changes for toolwindows.
1794         
1795 2006-12-15  Rolf Bjarne Kvinge  <RKvinge@novell.com>
1797         * Control.cs: 
1798         - Added AfterTopMostControl to allow for certain controls 
1799         to always stay on top when normal controls are brought to 
1800         front.
1801         
1802         * XplatUIWin32.cs: 
1803         - (DrawInversibleRectangle): Get window rectangle from Win32 
1804         in stead of from control, since Win32 doesn't calculate
1805         screen coords correctly from control's Location if it 
1806         have docked siblings.
1807         
1808         * MdiWindowManager.cs:
1809         - Correct the control menu popup location when clicked on
1810         the maximized form icon. (fixes #80223.1)
1811         - Don't show moving rectangle if mouse hasn't moved from
1812         the original clicked point.
1813         - Removed FormGotFocus handler (not used).
1814         - Calculate the control buttons location from the main
1815         window's size and not client size (fixes #79770).
1816         - Form is now closed when the form icon is double-clicked
1817         (fixes #79775). 
1818         - Correct NCCalcSize numbers a little bit (fixes #80223.2)
1819         
1820         * InternalWindowManager.cs:
1821         - Moved some MDI-only methods to MdiWindowManager.
1822         - Removed unused properties and methods.
1823         - Unified method naming for methods handling wm messages.
1824         - Moved all message handling to seperate methods for
1825         each message.
1826         
1827         * ThemeWin32Classic.cs:
1828         - DrawManagedWindowDecorations now draws the title bar 
1829         with a gradient brush.
1830         - Add a CPDrawButtonInternal that allows us to specify
1831         light, normal and dark colors for the buttons (control 
1832         buttons for MDI children were drawn with the same light
1833         color as the background, therefore loosing the 3D effect).
1834         
1835         * SizeGrip.cs:
1836         - Add a CapturedControl property that is used to 
1837         determine the control to resize (defaults to parent). 
1838         Needed for MdiClient, since its SizeGrip's parent is
1839         MdiClient, but the control to resize is the main form.
1840         
1841         * MdiClient.cs:
1842         - Set SizeGrip's CapturedControl to the main form in order
1843         to resize the main form and not the MdiClient.
1844         - Override AfterTopMostControl to leave the scrollbars 
1845         always on top.
1847 2006-12-15  Daniel Nauck  <dna@mono-project.de>
1849         * ListView.cs: fixed ListViewItemCollection AddRange and
1850                         implemented ListViewItemCollection AddRange 2.0 support.
1852 2006-12-15  Daniel Nauck  <dna@mono-project.de>
1854         * ListViewGroup.cs: Add.
1855         * ListViewGroupCollection.cs: Add
1856         * ListView.cs: Add ListViewGroup (Group) and ShowGroups 2.0 support.
1857         * ListViewItem.cs: Add ListViewgroup (Group), ListViewGroups constructors and
1858                                 stub for ImageKey 2.0 support.
1860 2006-12-14  Mike Kestner  <mkestner@novell.com>
1862         * ListView.cs: add text padding to the autocalculation for columns
1863         of width -2.  Fixes #80207.
1865 2006-12-14  Mike Kestner  <mkestner@novell.com>
1867         * ListView.cs: add some index guarding for partial row navigation 
1868         logic.  Fixes #80250.
1870 2006-12-14  Mike Kestner  <mkestner@novell.com>
1872         * ListView.cs: throw ArgumentExceptions when parented ListViewItems
1873         are added or inserted to the collection.  Fixes #81099.
1875 2006-12-13  Everaldo Canuto  <everaldo@simios.org>
1877         * MenuAPI.cs: Closes menu when right click out side of popup
1878         it fix problem in ContextMenu and MainMenu. Fixes #80252.
1880 2006-12-13  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1882         * ListViewItem.cs: Fix dumb error.
1884         * ListView.cs: Add Find and ContainsKey methods in 
1885         ListViewItemCollection, and also return true for IsReadOnly
1886         and IsFixedSize (changes for 2.0). 
1888 2006-12-13  Gert Driesen  <drieseng@users.sourceforge.net>
1890         * Control.cs: Allow Region to be set to null.
1892 2006-12-13  Rolf Bjarne Kvinge  <RKvinge@novell.com>
1894         * MdiWindowManager.cs: Remove unused (commented out) code.
1895         * Form.cs: When the MdiChild is maximized, the form needs 
1896         WM_NCMOUSELEAVE, so request it.
1897         * InternalWindowManager.cs: 
1898         - Added tooltips to control buttons.
1899         - Removed duplicated control button handling code.
1900         - Removed unused (commented out) code.
1901         
1902 2006-12-12  Everaldo Canuto  <everaldo@simios.org>
1904         * MenuAPI.cs: Set cursor to default in popup menus, a XplatUI.SetCursor 
1905         was used because we must set cursor without trigger ChangeCursor event
1906         and without change Cursor control property. Fixes #79963.
1908 2006-12-12  Andreia Gaita  <avidigal@novell.com>
1909         
1910         * Control.cs: Check if Region setter value is null, and ignore
1912 2006-12-12  Jackson Harper  <jackson@ximian.com>
1914         * TextControl.cs: We were almost always drawing one more line then
1915         needed, since the GetLineByPixel will return the last line found
1916         at that pixel. In most cases though, we were invalidating up to
1917         the junction between two lines.
1918         - Improve debug code.
1920 2006-12-12  Chris Toshok  <toshok@ximian.com>
1922         * XplatUI.cs: add static DrawReversibleFrame, DrawReversibleLine,
1923         and FillReversibleRectangle.
1925         * XplatUIDriver.cs: add abstract DrawReversibleFrame, DrawReversibleLine,
1926         and FillReversibleRectangle.
1928         * XplatUIWin32.cs: add stubs which do nothing for
1929         DrawReversibleFrame, DrawReversibleLine, and
1930         FillReversibleRectangle.
1932         * XplatUIOSX.cs: add stubs which raise NIE for
1933         DrawReversibleFrame, DrawReversibleLine, and
1934         FillReversibleRectangle.
1936         * XplatUIX11.cs: add working implementation for
1937         DrawReversibleFrame, DrawReversibleLine, and
1938         FillReversibleRectangle.
1939         
1940         * ControlPaint.cs: implement DrawReversibleFrame,
1941         DrawReversibleLine, and FillReversibleRectangle, by calling into
1942         the appropriate XplatUI method.
1944 2006-12-11  Rolf Bjarne Kvinge  <RKvinge@novell.com>
1946         * Form.cs: Make MdiClient have the focus even if it's
1947         not selectable, since it should receive WM_KEY* and WM_MOUSE 
1948         messages. Fixes #79907.
1949         
1950 2006-12-11  Rolf Bjarne Kvinge  <RKvinge@novell.com>
1952         * Hwnd.cs: Save the CreateParams.ExStyle so that it can be
1953         queried after the window is created.
1954         
1955         * XplatUIX11.cs: Added SendParentNotify to implement 
1956         WM_PARENTNOTIFY logic. Fixes #79965.
1957         
1958         * Control.cs: Added MakeParam.
1959         
1960 2006-12-11  Rolf Bjarne Kvinge  <RKvinge@novell.com>
1962         * MdiClient.cs: Resume Layout before setting window
1963         states (fixes #80201).
1965 2006-12-11  Rolf Bjarne Kvinge  <RKvinge@novell.com>
1967         * MenuAPI.cs: Deselect a menu item after performing
1968         the click (fixes #80197).
1970 2006-12-11  Jackson Harper  <jackson@ximian.com>
1972         * TextBoxBase.cs: We need to cap this value, since Maximum -
1973         ViewPortHeight can be less than zero.
1974         - Only do selection with the left mouse button.
1975         * TextBox.cs: Don't tell the world that we have a context menu.
1976         * Control.cs: New method so that we can control whether or not the
1977         context menu is visible outside MWF.
1979 2006-12-11  Everaldo Canuto  <everaldo@simios.org>
1981         * ToolBarButton.cs: Fix text positon. 
1983 2006-12-11  Miguel de Icaza  <miguel@novell.com>
1985         * ProgressBar.cs (MarqueeAnimationSpeed): Add stub.
1987         * Control.cs (DoubleBuffered): Add implementation.
1989         * Application.cs (OpenForms): Add.
1991 2006-12-11  Jonathan Pobst  <monkey@jpobst.com>
1993         * Form.cs: Use opacity instead of Opactiy to determine if we need
1994         to set the WS_EX_LAYERED bit.  [Fixes bug #80185]
1996 2006-12-11  Jonathan Pobst  <monkey@jpobst.com>
1998         * Control.cs: Fix NRE if Control.Site was set to null.
2000 2006-12-11  Chris Toshok  <toshok@ximian.com>
2002         * Control.cs: ControlCollection.Remove should return if the arg is
2003         null, and ControlCollection.SetChildIndex should raise a ANE.
2005 2006-12-11  Gert Driesen  <drieseng@users.sourceforge.net>
2007         * Control.cs: Verify value set for Dock property. Code formatting
2008         updates.
2010 2006-12-11  Jackson Harper  <jackson@ximian.com>
2012         * TextControl.cs: Draw the caret and the selection when a flag is
2013         set on the owner.
2014         * TextBoxBase.cs: We want to draw the caret and the selection for
2015         TextBox but not for TextBoxBase.
2016         - If the window is resized and scrolling is no longer needed (the
2017         whole doc is visible) set the scroll position to zero.
2018         - The default SelectWord (the one TextBox uses) should move the
2019         caret to the end of the word.
2020         - SelectAll moves the caret to the end of the selection.
2021         * TextBox.cs: We don't selectall on focus, we just do it when the
2022         control is created.
2023         
2024 2006-12-11  Mike Kestner  <mkestner@novell.com>
2026         * ComboBox.cs: stub in a 2.0 override for ProcessKeyEventArgs.
2028 2006-12-11  Carlos Alberto Cortez <calberto.cortez@gmail.com>
2030         * ListView.cs: Add Insert, IndexOfKey, RemoveByKey and indexer 
2031         2.0 support.
2032         * ListViewItem.cs: Add Name 2.0 property.
2034 2006-12-11  Andreia Gaita  <avidigal@novell.com>
2036         * TabControl.cs: Set visibility on selected or default tab 
2037         when tabcontrol handle is created, so that it's contents
2038         actually show up (duh). Fixes #80193
2039         Don't redraw the control if there is no handle created, as
2040         the selected index might be completely invalid. Added some tests
2041         to check for this.
2043 2006-12-11  Everaldo Canuto  <everaldo@simios.org>
2045         * ToolBar.cs: Uses maximun width and height of all buttons as 
2046         button rectangle when ButtonSize specified, it looks strange but
2047         is what happens in Win32. Fixes #80189.
2049 2006-12-11  Jackson Harper  <jackson@ximian.com>
2051         * TextControl.cs: Need to track undo levels ourself, since
2052         compound actions will mess them up.
2054 2006-12-10  Andreia Gaita  <avidigal@novell.com>
2056         * TabControl.cs: Raise SelectedIndexChanged for 1.1 if the
2057         SelectedIndex value is changed (even if it's not valid).
2058         Reset SelectedIndex to 0 when the handle is created and if
2059         the current index is invalid.
2060         Fixes SelectdeIndex unit tests and #80128
2062 2006-12-08  Chris Toshok  <toshok@ximian.com>
2064         * DataGrid.cs (set_CurrentCell): because EnsureCellVisibility
2065         calls EndEdit, it needs to be called before we set current_cell to
2066         its new value.  Otherwise, we end up committing the value in the
2067         textbox to the new cell as well.  Fixes bug #80160.
2069 2006-12-08  Chris Toshok  <toshok@ximian.com>
2071         * Form.cs (set_CancelButton): if the button's DialogResult is
2072         None, set it to Cancel.  Fixes bug 80180.
2074 2006-12-08  Jackson Harper  <jackson@ximian.com>
2076         * TextBoxBase.cs: Ugh, ClientSize can be 0,0 sometimes, so we need
2077         to watch ourselves when setting the canvas size and setting the
2078         scrollbar values.
2080 2006-12-08  Chris Toshok  <toshok@ximian.com>
2082         * DataGrid.cs: comment out the two MakeTransparent calls for the
2083         time being so people using trunk (and not 1.2.2) on windows can
2084         actually use the datagrid.  This deals with bug #80151.
2086 2006-12-08  Jonathan Pobst  <monkey@jpobst.com>
2088         * ThemeWin32Classic.cs: Change ButtonBase_DrawImage to use the
2089         Graphics.DrawImage (image, int, int, int, int) overload instead
2090         of Graphics.DrawImage (image, int, int).  GDI+ can't figure out
2091         the dpi difference and was blurring images it drew.
2092         [Fixes bug #79960]
2094 2006-12-08  Chris Toshok  <toshok@ximian.com>
2096         * ThemeWin32Classic.cs (DataGridPaintRows): handle case where
2097         rowcnt is 0 (such as with an empty datasource), and make sure we
2098         initialize not_usedarea.Y to cells.Y, so we don't draw over the
2099         other areas (caption, parent row, etc, etc).  Fixes bug #80095.
2101 2006-12-08  Chris Toshok  <toshok@ximian.com>
2103         * DataGridColumnStyle.cs (SetDataGrid): don't try to access a null
2104         grid.
2106 2006-12-08  Chris Toshok  <toshok@ximian.com>
2108         [ Fixes bug #80167 ]
2109         
2110         * ThemeWin32Classic.cs: don't draw the image if the button's flat
2111         style is FlatStyle.System.
2113         * ButtonBase, ThemeClearlooks.cs, ThemeGtk.cs, ThemeNice.cs: make
2114         ButtonBase.flat_style private, and switch uses of it to the public
2115         property.
2116         
2117 2006-12-08  Chris Toshok  <toshok@ximian.com>
2119         [ Fixes bug #80121 ]
2120         
2121         * ThemeWin32Classic.cs: center the caption text in the datagrid
2122         when we draw it.
2124         * DataGrid.cs: lessen the amount we add to the caption height from
2125         6 to 2.  6 was making it huge.
2127 2006-12-08  Andreia Gaita  <avidigal@novell.com>
2129         * UpDownBase: Handle MouseWheel call directly instead of capturing
2130         the inner textbox's OnMouseWheel. Fixes #80166
2132 2006-12-08  Jackson Harper  <jackson@ximian.com>
2134         * TextControl.cs: We need to invalidate the textbox when we empty
2135         it (how had this not been discovered before?)
2137 2006-12-08  Jackson Harper  <jackson@ximian.com>
2139         * TextBoxBase.cs: Reworked the mouse down code so I could get it
2140         to behave like MS, we now ignore the eventargs.Click and just
2141         track state ourself, which we were already doing anyways.
2142         - Constrain the double click handler to the double click size.
2143         
2144 2006-12-08  Chris Toshok  <toshok@ximian.com>
2146         * DataGrid.cs: the mousewheel code shouldn't try to scroll in a
2147         direction if that scrollbar isn't shown.  fixes bug #80158.
2149 2006-12-08  Andreia Gaita  <avidigal@novell.com>
2151         * NumericUpDown.cs: Update value on getter. Fixes #79950
2153 2006-12-08  Chris Toshok  <toshok@ximian.com>
2155         * MenuItem.cs: add back in the event cloning code.  I didn't know
2156         how to do it in the face of the EventHandlerList work i'd done
2157         last week.  Fixes bug #80183.
2159 2006-12-08  Jonathan Pobst  <monkey@jpobst.com>
2161         * Control.cs: Add an invalidate to the BackgroundImage setter.
2162         [Fixes 80184]
2164 2006-12-07  Jonathan Pobst  <monkey@jpobst.com>
2166         * ToolStrip*: Add some small properties reported by MoMA, fix event
2167         firing and default properties based off of unit tests, and add some
2168         attributes based off of the class status page.
2170 2006-12-07  Jackson Harper  <jackson@ximian.com>
2172         * TextBoxBase.cs: Take HideSelection into account when determining
2173         whether or not to show the selection.
2174         * RichTextBox.cs: After inserting the RTF into the document move
2175         the cursor to the beginning of the document.
2177 2006-12-07  Jonathan Pobst  <monkey@jpobst.com>
2179         * Control.cs: Remove static ArrayList "controls" which maintained
2180         a reference to every control created.
2181         * Application.cs: Create a static FormCollection to maintain a reference
2182         to every form created.  Use it in places that formerly enumerated through
2183         the controls one looking for forms.
2184         * Form.cs: Add and remove self from above FormCollection.
2186 2006-12-07  Alexander Olk  <alex.olk@googlemail.com>
2188         * MimeIcon.cs: gdk_pixbuf_save_to_buffer is part of libgdk-pixbuf,
2189           not libgdk (though it makes me wonder why I didn't have any
2190           problems)
2192 2006-12-07  Chris Toshok  <toshok@ximian.com>
2194         [ you had to know this was coming after that last commit...]
2195         
2196         * XplatUIX11.cs: implement the 3 Offscreen functions in terms of
2197         XPixmaps (CreateOffscreenDrawable maps to XCreatePixmap,
2198         DestroyOffscreenDrawable to FreePixmap, and BlitFromOffscreen to
2199         XCopyArea).
2201 2006-12-07  Chris Toshok  <toshok@ximian.com>
2203         * XplatUI.cs: add 3 calls (CreateOffscreenDrawable,
2204         DestroyOffscreenDrawable, and BlitFromOffscreen) that encompass
2205         all the behavior we need for double buffering.
2207         * XplatUIDriver.cs: implement the 3 double buffer methods using a
2208         client side Bitmap, just like the old Control-based double buffer
2209         code did.  The methods are virtual, so each XplatUI driver
2210         subclass can replace the implementation to use a faster, platform
2211         specific approach.
2213         * Control.cs: make use of the 3 Offscreen XplatUI calls in the
2214         double buffer code, and clean things up a bit in the process.
2216 2006-12-06  Chris Toshok  <toshok@ximian.com>
2218         * Control.cs: reindent WndProc.
2220 2006-12-06  Chris Toshok  <toshok@ximian.com>
2222         [ I wanna be like BenM when I grow up ]
2223         
2224         * Hwnd.cs: create a single static Graphics object on the static
2225         Bitmap we create.  use this for our text measurements.
2227         * Control.cs (DeviceContext): stop using the backbuffer's dc_mem.
2228         This was causing us to allocate a backbuffer for every control,
2229         even when it wasn't flagged as double buffered.  Instead use the
2230         single graphics instance.  This might have implications for
2231         multithreaded applications.  If we run into problems we can switch
2232         to creating 1 Graphics per control, on the static Hwnd bitmap.
2234         this change nets us a 7M savings in private dirty mappings when
2235         running FormsTest.exe.
2237 2006-12-06  Chris Toshok  <toshok@ximian.com>
2239         * ListView.cs: the BackgroundImage override is just to set
2240         attributes.  chain up to base.BackgroundImage.
2242         * RichTextBox.cs: same.
2244         * ToolBar.cs: same, but we need to also redraw the toolbar when it
2245         changes, so instead a handler for BackgroundImageChanged.
2246         
2247         * Control.cs: make background_image private.
2249 2006-12-06  Chris Toshok  <toshok@ximian.com>
2251         * ScrollBar.cs: change the assignment of cursor to Cursor.  not
2252         sure we even need this assignment, but roll with it for now.
2254         * Control.cs: make the cursor field private.
2256 2006-12-06  Chris Toshok  <toshok@ximian.com>
2258         * Form.cs: we don't need to explicitly set ImeMode to
2259         ImeMode.NoControl - that's a natural fallout of Control.ImeMode's
2260         behavior in the face of ImeMode.Inherit.
2262         * ButtonBase.cs: change DefaultImeMode to ImeMode.Disable, and
2263         change the ctor's assignment to use ImeMode instead of ime_mode.
2265         * Control.cs (get_ImeMode): don't assume DefaultImeMode ==
2266         ImeModeInherit.  Only check for the parent's imemode (and return
2267         NoControl if there is no parent) if ime_Mode == ImeMode.Inherit.
2268         This fixes the button unit test, which sets both ImeMode and
2269         DefaultImeMode to ImeMode.Disable.
2271         also make the ime_mode field private.
2273 2006-12-06  Chris Toshok  <toshok@ximian.com>
2275         * Control.cs: make control_style private.
2277         * TextBoxBase.cs: fix the HandleClick override.  it was explicitly
2278         setting the styles to true, then setting them to false instead of
2279         reverting to their previous values.
2281         also, call SetStyle on the scrollbars instead of using
2282         control_style directly.
2284 2006-12-06  Jonathan Pobst  <monkey@jpobst.com>
2286         * FormCollection.cs: Implement. [2.0]
2288 2006-12-06  Chris Toshok  <toshok@ximian.com>
2290         * Control.cs: make tab_stop private.
2292         * Label.cs: set TabStop, not tab_stop.  reformat some event
2293         add/remove methods to make them more compact.
2295 2006-12-06  Chris Toshok  <toshok@ximian.com>
2297         * RadioButton.cs: fix TabStop handling.
2299 2006-12-06  Chris Toshok  <toshok@ximian.com>
2301         * TextBox.cs: remove the explicit assignments to has_focus.
2302         Control does that.
2304         * ButtonBase.cs: remove the assignment to has_focus.  Control will
2305         manage that.
2306         
2307 2006-12-06  Chris Toshok  <toshok@ximian.com>
2309         * ButtonBase.cs: remove all uses of is_enabled from this code.
2310         it's always true when any of the code containing the checks is
2311         executed.
2313 2006-12-06  Chris Toshok  <toshok@ximian.com>
2315         * ImageList.cs: reinstate the ShouldSerialize*/Reset* methods,
2316         with different semantics (some are present in both 1.1 and 2.0
2317         profiles) so that we match MS's behavior in our unit tests.
2319 2006-12-06  Jackson Harper  <jackson@ximian.com>
2321         * TextControl.cs: Make this operation undoable.
2322         * TextBoxBase.cs: Factor the border width into the preferred
2323         height.
2324         - implement Modified as per the spec.
2326 2006-12-06  Chris Toshok  <toshok@ximian.com>
2328         * Timer.cs, Control.cs, Menu.cs: make control_tag private.
2330 2006-12-06  Chris Toshok  <toshok@ximian.com>
2332         * Control.cs: make right_to_left and context_menu fields private.
2334 2006-12-06  Chris Toshok  <toshok@ximian.com>
2336         * AccessibleObject.cs, Control.cs, XplatUIX11GTK.cs,
2337         XplatUIX11.cs, Form.cs, RadioButton.cs, ScrollableControl.cs: make
2338         Control.child_controls private.  switch all uses over to
2339         Control.Controls.
2341 2006-12-06  Chris Toshok  <toshok@ximian.com>
2343         * System.Windows.Forms/GroupBox.cs,
2344         System.Windows.Forms/AccessibleObject.cs,
2345         System.Windows.Forms/ErrorProvider.cs,
2346         System.Windows.Forms/Control.cs,
2347         System.Windows.Forms/UpDownBase.cs,
2348         System.Windows.Forms/ScrollBar.cs,
2349         System.Windows.Forms/DateTimePicker.cs,
2350         System.Windows.Forms/Form.cs, System.Windows.Forms/Label.cs,
2351         System.Windows.Forms/ToolTip.cs,
2352         System.Windows.Forms/RadioButton.cs,
2353         System.Windows.Forms/LinkLabel.cs,
2354         System.Windows.Forms/Splitter.cs,
2355         System.Windows.Forms/TextBoxBase.cs,
2356         System.Windows.Forms/ToolStripTextBox.cs,
2357         System.Windows.Forms/ContainerControl.cs,
2358         System.Windows.Forms/ThemeWin32Classic.cs,
2359         System.Windows.Forms/SizeGrip.cs,
2360         System.Windows.Forms/ToolStripDropDown.cs,
2361         System.Windows.Forms/ScrollableControl.cs: Make Control.parent
2362         private.  switch all uses over to Control.Parent.
2364 2006-12-06  Chris Toshok  <toshok@ximian.com>
2366         * RichTextBox.cs: don't assign to has_focus in GotFocus/LostFocus.
2367         Control does this before calling emitting these events.
2369         * TabControl.cs: same.
2371         * ThemeWin32Classic.cs: use Control.ClientRectangle instead of
2372         Control.client_rect.
2374         * ButtonBase.cs: use the ClientSize property instead of the
2375         client_size field.
2377         * ScrollableControl.cs: same.
2379         * Control.cs: another pass at making properties private.  also,
2380         move the initialization of tab_stop to the ctor.
2382 2006-12-05  Andreia Gaita <avidigal@novell.com>
2384         * TabControl.cs: Let the selected index be set freely if the 
2385         control handle is not yet created.
2387 2006-12-05  Jonathan Pobst  <monkey@jpobst.com>
2389         * Control.cs: Revert dist_top, dist_right, and dist_bottom to 
2390         internal until I can rewrite DefaultLayout.
2391         * ToolStrip.cs: Fix build error and some general cleaning.
2392         * ToolStripControlHost.cs, SplitterPanel.cs, DataGridView.cs:
2393         Fix build errors caused by making some of Control's fields private.
2395 2006-12-05  Jackson Harper  <jackson@ximian.com>
2397         * TextControl.cs: Redo Insert a little so that it use IndexOf
2398         instead of Split, this prevents it from messing up on things like
2399         \n\n\n. Also more effecient since the split array doesn't need to
2400         be created.
2401         * TextBoxBase.cs: AppendText doesnt handle multiline and non
2402         multiline text differently, this is the first of many fixes that
2403         will make multiline/non-multiline the same thing as far as the
2404         TextBoxBase is concerned.
2405         - Don't split the text and insert lines, this can lose some line
2406         endings (like is the last line a soft or hard break). Instead use
2407         the new Insert.
2408         - Fix an off by one when combining all the lines in the Text
2409         getter.
2410         - Remove separate multiline handling from the Text getter/setter.
2412 2006-12-05  Chris Toshok  <toshok@ximian.com>
2414         * ButtonBase.cs: a few changes:
2416         - don't reinitialize internal Control fields in the ctor when they
2417         have the same values as Control sets them.
2419         - don't set has_focus in OnGotFocus/OnLostFocus.  Control does
2420         this before calling those methods.
2422         - we don't need to call Refresh for anything.  use Invalidate
2423         instead.
2425         - OnEnabledChanged doesn't need to redraw at all - Control.cs
2426         calls Refresh in its OnEnabledChanged.
2427         
2428         - several of the events we were registered for in the ctor to
2429         redraw ourselves already include calls to Invalidate in the
2430         property setters that raise the events.  remove the extra
2431         invalidation.
2433         - reformat a switch statement that was 83274658 columns wide.
2434         
2435 2006-12-05  Mike Kestner  <mkestner@novell.com>
2437         * ComboBox.cs: fix a unit test regression from a TextBox
2438         SelectionLength return of -1 when there's no selection.  
2440 2006-12-05  Chris Toshok  <toshok@ximian.com>
2442         * Control.cs, Button.cs, ThemeGtk.cs, Form.cs, ListView.cs,
2443         ThemeWin32Classic.cs, SizeGrip.cs, ToolBar.cs: first pass at
2444         cleaning up some of the internal Control fields being used by
2445         subclasses.
2447 2006-12-05  Mike Kestner  <mkestner@novell.com>
2449         * ComboBox.cs: fix some Simple mode regressions.  Set Visible on the
2450         listbox after AddImplicit calls since it defaults to hidden. Add a 
2451         hack to preserve requested heights across DropDownStyle changes.
2453 2006-12-05  Jonathan Pobst  <monkey@jpobst.com>
2455         * PropertyGrid.cs: Hide FindFirstItem method from public API.
2457 2006-12-05  Chris Toshok  <toshok@ximian.com>
2459         * DataGridView.cs: fix compiler warnings.
2461         * PrintControllerWithStatusDialog.cs: same.
2463         * ToolBar.cs: same.
2465         * FolderBrowserDialog.cs: same.
2467         * Splitter.cs: same.
2469         * DataGridViewComboBoxCell.cs: same.
2471         * XplatUIWin32.cs: same.
2473         * PictureBox.cs: same.
2475         * Win32DnD.cs: same.
2477         * PageSetupDialog.cs: same.
2479         * FileDialog.cs: same.
2481         * PrintDialog.cs: same.
2483         * DataGridTextBoxColumn.cs: same.
2485         * DrawTreeNodeEventArgs.cs: same (and fix corcompare)
2487 2006-12-05  Chris Toshok  <toshok@ximian.com>
2489         * TextBox.cs, CheckedListBox.cs, MonthCalendar.cs, Menu.cs,
2490         MainMenu.cs, ListView.cs, LabelEditTextBox.cs, ToolBar.cs: more
2491         System.ComponentModel.EventHandlerList work.
2493 2006-12-05  Jonathan Chambers  <joncham@gmail.com>
2495         * DrawTreeNodeEventArgs.cs: Added.
2497 2006-12-05  Rolf Bjarne Kvinge  <RKvinge@novell.com>
2498         
2499         * InternalWindowManager.cs: Remove an unused field.
2500         
2501 2006-12-05  Rolf Bjarne Kvinge  <RKvinge@novell.com>
2503         * InternalWindowManager.cs:
2504         - Save the point where the title bar is clicked.
2505         
2506         * MdiWindowManager.cs:
2507         - Only allow moving of the window as long as the 
2508         clicked point on the title bar does not get out of
2509         MdiClient's rectangle. Fixes #79982.
2510         
2511         * MdiClient.cs:
2512         - Added Horizontal/VerticalScrollbarVisible.
2513         - Simplified the scrollbar sizing algorithm.
2514         - Cache the difference in scrolled value in
2515         H/VBarValueChanged and move the calculation out
2516         of the for loop.
2518 2006-12-05  Rolf Bjarne Kvinge  <RKvinge@novell.com>
2520         * Control.cs: Make the Console.WriteLine in WndProc 
2521         write more info.
2523 2006-12-05  Chris Toshok  <toshok@ximian.com>
2525         * ToolStripManager.cs, ToolStripButton.cs,
2526         ToolStripContentPanel.cs, ToolStripComboBox.cs, ToolStrip.cs,
2527         ToolStripMenuItem.cs, ToolStripItem.cs, ToolStripControlHost.cs,
2528         ToolStripSplitButton.cs, ToolStripSeparator.cs,
2529         ToolStripRenderer.cs, ToolStripDropDownItem.cs,
2530         ToolStripProgressBar.cs, ToolStripContainer.cs,
2531         ToolStripTextBox.cs, ToolStripPanel.cs, ToolStripDropDown.cs: move
2532         to using System.ComponentModel.EventHandlerList.
2534 2006-12-04  Chris Toshok  <toshok@ximian.com>
2536         * LinkLabel.cs: fix up compiler warnings.
2538         * TableLayoutSettings.cs: same.
2540         * TreeView.cs: same.
2542         * ToolBar.cs: same.
2544         * TabControl.cs: same.
2546         * RichTextBox.cs: same.
2548         * ListViewItem.cs: same.
2550         * PropertyGrid.cs: same.
2552         * DataGridViewRowPostPaintEventArgs.cs: corcompare fix.
2554         * ToolTip.cs same.
2556         * TextRenderer.cs: fix up compiler warnings.
2558         * Label.cs: same.
2560         * Form.cs: corcompare fixes.
2562         * PictureBox.cs: fix up compiler warnings.
2564         * ImageListStreamer.cs: same.
2566         * TrackBar.cs: corcompare fix.
2568         * Control.cs: fix up compiler warnings.
2570         * SplitterPanel.cs: same.
2572         * NumericTextBox.cs: same.
2574         * ImageList.cs: same.
2576         * StatusStrip.cs: same.
2578         * ProgressBar.cs: corcompare fix.
2580         * ToolStripButton.cs: fix up compiler warnings.
2582         * ToolStripStatusLabel.cs: same.
2584         * ToolStripSplitButton.cs: same.
2586         * ToolStripSeparator.cs: same.
2588         * ToolStripProgressBar.cs: same.
2590         * ToolStripDropDownMenu.cs: same
2592         * ToolStripDropDown.cs: same.
2594         * ToolStripDropDownButton.cs: same.
2596         * ToolStrip.cs: same.
2598         * ToolStripControlHost.cs: same.
2600         * ToolStripContentPanel.cs: same.
2602         * ToolStripDropDown.cs: same.
2604         * ToolStripContainer.cs: same.
2606         * ToolStripPanel.cs: same, and add "new" where we need it to work
2607         with the new ArrangedElementCollection.
2609         * ToolStripItemCollection.cs: add "new" where we need it to work
2610         with the new ArrangedElementCollection.
2612 2006-12-04  Andreia Gaita <avidigal@novell.com>
2614         * TabControl.cs: Fix default tab selection to after TabControl
2615         gets focus and not before. Fixes #80128
2617 2006-12-04  Chris Toshok  <toshok@ximian.com>
2619         * DataGridTableStyle.cs: remove the gross calling of
2620         datagrid.Refresh from here.  It's a broken idea and it doesn't
2621         work anyway.
2623         * DataGrid.cs: instead, just register/unregister from the
2624         DataGridTableStyle events in CurrentTableStyle.  we play it
2625         conservatively and EndEdit + CalcAreasAndInvalidate on any event,
2626         even though some would most likely not require it.  Fixes bug
2627         #80115 (and one portion of #80117 as a side effect).
2629 2006-12-04  Chris Toshok  <toshok@ximian.com>
2631         * DataGrid.cs (set_CaptionVisible): EndEdit before doing the work
2632         so the textbox (if any) goes away.  Fixes bug #80117.
2634 2006-12-04  Chris Toshok  <toshok@ximian.com>
2636         * DataGridColumnStyle.cs: set the column's readonly property
2637         initially based on the property descriptor's IsReadOnly.  Fixes
2638         bug #80044.
2640 2006-12-04  Chris Toshok  <toshok@ximian.com>
2642         * ComboBox.cs: wrap the dropdown style changing work in
2643         SuspendLayout/ResumeLayout.  Fixes bug #79968.
2645 2006-12-04  Jackson Harper  <jackson@ximian.com>
2647         * TextBoxBase.cs: Fix off by one, since these are one-based.
2648         * TextBox.cs: Select all the text when we get focus.  The TextBox
2649         does this but the RTB does not.
2651 2006-12-04  Chris Toshok  <toshok@ximian.com>
2653         * DataGridTextBoxColumn.cs: remove some spew.
2655         * DataGridColumnStyle.cs (SetColumnValueAtRow): this seems right
2656         but some part of me is saying "it shouldn't be here.."  At any
2657         rate, it fixes bug #80046.  Call IEditableObject.EndEdit after
2658         setting the value.
2660 2006-12-04  Chris Toshok  <toshok@ximian.com>
2662         * DataGridColumnStyle.cs (SetDataGrid): call CheckValidDataSource
2663         to reassign the propertydescriptor.
2665 2006-12-04  Jackson Harper  <jackson@ximian.com>
2667         * TextBoxBase.cs:
2668         * TextControl.cs: Remove some unused variables.  Maybe this will
2669         patch things up between mike and I.
2670         - don't split lines less then one char wide, if the viewport is
2671         that small text won't be visible anyways.
2672         
2673 2006-12-04  Jackson Harper  <jackson@ximian.com>
2675         * TextBoxBase.cs: Default selection length is -1, need to do some
2676         more testing on windows to see when this is used for the property.
2677         - Redid the Lines [] property to that we properly remove soft line
2678         breaks
2679         - added support for preserving carriage returns
2680         -  CanUndo is not a variable like 'is undo enabled' it just returns
2681         true if there is undo operations available.
2682         - AppendText doesn't need to grab the last tag itself anymore,
2683         this happens automatically when we move the cursor.
2684         * TextControl.cs: Add CompoundActions to the undo class. This
2685         allows combining the other operations into one big option.  ie a
2686         paste will combine { delete old, insert new, move cursor }
2687         - Add InsertString undo operation
2688         - New method for deleting multiline text
2689         - Add carriage returns to lines. So we can preserve carriage
2690         returns when text is 'roundtripped'
2692 2006-12-04  Chris Toshok  <toshok@ximian.com>
2694         * DataGrid.cs (CalcCellsArea): cells_area.Width/Height are at a
2695         minimum 0.  Fixes the scrollbar exception in bug #80136.
2697 2006-12-04  Rolf Bjarne Kvinge  <RKvinge@novell.com>
2699         * MdiClient.cs: 
2700         * MdiWindowManager: Removed unused fields and methods.
2701         
2702 2006-12-04  Rolf Bjarne Kvinge  <RKvinge@novell.com>
2703         
2704         * StatusBar.cs: Update all panels when a AutoSize=Contents
2705         panel needs updating.
2706         
2707         * StatusBarPanel.cs: Remove twidth and only use initialize.
2708         Fixes #80031.
2709                 
2710 2006-12-04  Rolf Bjarne Kvinge  <RKvinge@novell.com>
2712         * Form.cs: When a form's MdiParent is set add it directly
2713         on top of the z-order in stead of relying on MdiClient's
2714         ActivateChild to do it. Fixes #80135.
2715         
2716         * MdiClient.cs: 
2717         - Remove original_order, mdi_child_list is already doing
2718         the same thing.
2719         - Create mdi_child_list on construction in
2720         stead of first use (avoids a few null checks).
2722         * MenuItem.cs: Use an already existing list of mdi children
2723         to get the correct order of children and remove the other
2724         redundant list.
2726 2006-12-04  Chris Toshok  <toshok@ximian.com>
2728         * PropertyGridView.cs: cached_splitter_location is only used in
2729         !DOUBLEBUFFER code.
2731         * PropertyGrid.cs: implement the ComComponentNameChanged event
2732         using Events, hoping that would fix the warning.  Looks like a
2733         compiler bug instead (#80144).
2735         * PropertyManager.cs: remove unused method.
2737 2006-11-04  Everaldo Canuto  <everaldo@simios.org>
2739         * ThemeWin32Classic.cs: Dont draw arrow when menuitem on menubar, 
2740         include parentesis to fix expression evaluation. Fixes #79634.
2742 2006-11-02  Everaldo Canuto  <everaldo@simios.org>
2743         
2744         * MenuAPI.cs:
2745         - Changes to fix behavior in Menu control, some reported in #80097
2746         and other detected during behavior refactory like a select event
2747         problems.
2748         - Remove unneded "if's" conditions.
2749         - Created an internal to flag when popup is active in control, we need 
2750         it because in .NET you can have menu active but without popup active
2751         when you active menu using popup without visible items.
2752         - Mimic win32 behavior for Select and Popup events.  
2753         - Dont open popup menu when you dont have visible subitems.
2754         - Do nothing when click on disabled menu item.
2755         - Some small changes to follow the coding style guidelines.
2756         - Unselect menu only when another control gives focus. Fixes #80097.
2757         - Remove unused code.
2758         
2759         * MenuItem.cs: internal VisibleItems method to check if menu
2760         theres visible subitems, it will be usefull to fix some 
2761         behavior in Menu control.
2762         
2763 2006-11-01  Everaldo Canuto  <everaldo@simios.org>
2764         
2765         * Timer.cs: Tag property for 2.0 profile.
2766         
2767 2006-12-01  Chris Toshok  <toshok@ximian.com>
2769         [ after removing all warning suppressions, this cleans up over 100 warnings. ]
2770         
2771         * Win32DnD.cs: comment out some unused fields.
2773         * XplatUIWin32.cs: comment out some unused pinvokes, and remove
2774         some unused properties/methods.
2776         * XplatUIX11.cs: fix MousePosition so we override the base class's
2777         property instead of conflicting with it.
2779         * PictureBox.cs: comment out some unused fields
2781         * OSXStructs.cs: make some struct fields public.
2783         * XplatUIOSX.cs: comment out some unused pinvokes, and fix
2784         MousePosition so we override the base class's property instead of
2785         conflicting with it.
2787         * X11Dnd.cs: comment out some unused fields
2789         * X11DesktopColors.cs: fix some struct field visibility to quiet
2790         the compiler.
2792         * X11Dnd.cs: remove some debug code.
2794         * ThemeClearlooks.cs: comment out unused field.
2796         * ThemeNice.cs: mark some methods as overriding ThemeWin32Classic as needed.
2798         * ThemeGtk.cs: comment out some unused pinvokes.
2800         * Timer.cs: remove some unused fields.
2802         * ThemeClearlooks.cs: comment out unused field.
2804         * UpDownBase.cs: comment out unused field.
2806         * DataObject.cs: comment out unused field.
2808         * DataGridBoolColumn.cs: reomve unused field.
2810         * DataGrid.cs: remove unused field.
2812         * Cursor.cs: remove old ToBitmap code.
2814         * ControlPaint.cs: remove unused method.
2816         * ScrollBar.cs: remove unused fields.
2818         * ComboBox.cs: remove unused field, and chain up to
2819         AccessibleObject ctor.
2821         * ListBox.cs: remove unused field.
2823         * ButtonBase.cs: wrap a couple fields in NET_2_0.
2825         * GridEntry.cs: remove unused fields.
2827         * Binding.cs: remove unused fields.
2829         * AxHost.cs: remove unused method.
2831         * ContainerControl.cs: remove unused field.
2833         * ScrollableControl.cs: remove unused fields.
2835 2006-12-01  Chris Toshok  <toshok@ximian.com>
2837         * XplatUI.cs, XplatUIWin32.cs, XplatUIGTK.cs: nuke
2838         the Where/WhereString stuff.  it's easy enough to CWL
2839         Environment.StackTrace.
2841         * XplatUIX11.cs: same, but also fix up a lot of mcs warnings about
2842         unused private fields.
2844 2006-12-01  Jackson Harper  <jackson@ximian.com>
2846         * TextControl.cs: Do not update the view while inserting multiline
2847         text. If we update the view we might wrap lines, before entering
2848         the new lines, which causes the new line insertion calculations to
2849         be totally fubared.
2850         - Remove an old TODO
2851         - Make debug output a little nicer
2852         
2853 2006-12-01  Chris Toshok  <toshok@ximian.com>
2855         * ToolBar.cs: revert the ImeMode fix here and add an XXX comment.
2857 2006-12-01  Chris Toshok  <toshok@ximian.com>
2859         [ fix the majority of the CS0108 warnings we've been suppressing ]
2860         
2861         * TreeView.cs: mark BackgroundImageChanged as 'new'.
2863         * ToolBar.cs: ImeMode just passes stuff to Control.  Rename Layout
2864         to "LayoutToolBar" to quiet mcs.
2865         
2866         * TabControl.cs: mark our ControlCollection class as 'new'.
2868         * TextBoxBase.cs: mark some events as 'new'.
2870         * Splitter.cs: TabStop is 'new'.
2872         * ControlBindingsCollection.cs: mark a few methods as new since
2873         they change the visibility from protected to public.
2875         * RadioButton.cs: DoubleClick -> base class, and remove unused
2876         HaveDoubleClick.
2878         * MonthCalendar.cs: ImeMode property -> base class, and mark many
2879         events as new.
2881         * NumericUpDown.cs: TextChanged -> base class.
2883         * CheckedListBox.cs: mark our ObjectCollection class as new to
2884         quiet mcs.
2886         * FolderBrowserDialog.cs: make HelpRequest event new and have it
2887         muck with the base class.
2889         * StatusBar.cs: fix some mcs warnings about Update being the same
2890         name as a base class method.
2892         * RichTextBox.cs: mark some events as new, and make them do things
2893         to the base class impl.
2895         * UserControl.cs: mark TextChanged as new, and have it manipulate
2896         base.TextChanged.
2898         * UpDownBase.cs: mark some things new.
2900         * CheckBox.cs: mark DoubleClick "new", and add some text about
2901         what we need to look at.
2903         * Panel.cs: make the events "new", and manipulate the base
2904         version.  these are just here for attributes.
2906         * AccessibleObject.cs: make owner private.
2908         * Control.cs: deal with AccessibleObject.owner being private.
2909         cache our own copy if we need it.
2911         * Button.cs: add "new" to the DoubleClickEvent.
2913         * ListBox.cs: no need to track our own has_focus here.  let
2914         Control.has_focus do it for us.  Also some other work to clear up
2915         warnings about not overriding base class methods of the same name.
2916         
2917         * ComboBox.cs: clear up some warnings about not override base
2918         class methods of the same name.
2920 2006-12-01  Chris Toshok  <toshok@ximian.com>
2922         * Form.cs: flag a few things as "new" to quiet some of the mcs
2923         warnings.
2925         * AxHost.cs: same.
2927         * PrintPreviewDialog.cs: same.
2929         * DataGridView.cs: fix a ton of corcompare warnings.  not all, but
2930         now DGV isn't so horrible on the class status page.  also, move
2931         all events to using System.ComponentModel.EventHandlerList.  my
2932         wrists hurt.
2934 2006-12-01  Rolf Bjarne Kvinge  <RKvinge@novell.com>
2936         * MdiWindowManager.cs:
2937         - Set form to active mdi child if shown,
2938         and update the active mdi child to the next 
2939         remaining child in the z-order if the form is hidden.
2941         * Form.cs: 
2942         - Track if the form has been visible and if its 
2943         visibility is beeing changed, so that the MdiClient
2944         can properly decide the ActiveMdiChild. The MdiClient 
2945         cannot track this since the form can change visibility 
2946         before MdiClient is created.
2948         * MdiClient.cs:
2949         - Don't activate anything of the parent form is changing
2950         its visibility.
2951         - Rework ActiveMdiChild to only return visible mdi 
2952         children and take into account several other corner 
2953         cases.
2955 2006-12-01  Chris Toshok  <toshok@ximian.com>
2957         * IBindableComponent.cs: new 2.0 interface.
2959 2006-12-01  Gert Driesen  <drieseng@users.sourceforge.net>
2961         * DataGrid.cs: Font for caption area is bold by default.
2963 2006-12-01  Everaldo Canuto  <everaldo@simios.org>
2965         * Menu.cs: Tag property for 2.0.
2966         
2967 2006-11-01  Everaldo Canuto  <everaldo@simios.org>
2969         * ThemeWin32Classic.cs: Adjust menu separator drawing. 
2970         
2971 2006-12-01  Chris Toshok  <toshok@ximian.com>
2973         * TreeView.cs: doh, the Begin* events should be
2974         TreeViewCancelEventHandler.
2976 2006-12-01  Chris Toshok  <toshok@ximian.com>
2978         * Form.cs: Form.ControlCollection already stores off the
2979         form_owner field.  don't access the base class's internal "owner"
2980         field.
2982         * Control.cs: make all the fields in Control.ControlCollection
2983         private.  there's no need for any internal fields here.
2985 2006-12-01  Chris Toshok  <toshok@ximian.com>
2987         * DataGrid.cs: call SetDataSource instead of CalcGridAreas in
2988         OnHandleCreated.  Fixes bug #80109.
2990 2006-12-01  Chris Toshok  <toshok@ximian.com>
2992         * Button.cs, PropertyGridTextBox.cs, ComboBox.cs,
2993         SplitContainer.cs, Control.cs, StatusStrip.cs,
2994         DataGridTableStyle.cs, MenuItem.cs, DomainUpDown.cs, ImageList.cs,
2995         NumericTextBox.cs, NumericUpDown.cs, Panel.cs, CommonDialog.cs,
2996         DataGrid.cs, ScrollBar.cs, TrackBar.cs, PictureBox.cs,
2997         DateTimePicker.cs, StatusBar.cs, Form.cs, PrintPreviewDialog.cs,
2998         Label.cs, UserControl.cs, CheckBox.cs, RadioButton.cs,
2999         LinkLabel.cs, ListControl.cs, PropertyGrid.cs, Splitter.cs,
3000         MenuStrip.cs, FolderBrowserDialog.cs, NotifyIcon.cs,
3001         TextBoxBase.cs, ListView.cs, DataGridBoolColumn.cs,
3002         PrintPreviewControl.cs, RichTextBox.cs, ListBox.cs, TabControl.cs,
3003         DataGridColumnStyle.cs, ContextMenu.cs, TreeView.cs:
3005         do most of the work to convert our code over to use
3006         System.ComponentModel.Component.Events for
3007         adding/removing/dispatching events.
3010 2006-11-30  Jonathan Pobst  <monkey@jpobst.com>
3012         * DataGridView.cs: Fix an ArgumentNullException reported 
3013         twice today in IRC.
3015 2006-11-30  Mike Kestner  <mkestner@novell.com>
3017         * ComboBox.cs: fix the scrollbar mouse event forwarding in the 
3018         grabbed listbox.  Fixes #80036 and #80101.
3020 2006-11-30  Rolf Bjarne Kvinge <RKvinge@novell.com>
3022         * Message.cs: Changed ToString() to match MS.
3023         
3024 2006-11-30  Jackson Harper  <jackson@ximian.com>
3026         * TextBoxBase.cs: You can still change the selected text on a read
3027         only textbox.
3028         * TextControl.cs: Lower magic number for wrap calculations. This
3029         lets text get closer to the right (far) edge.
3031 2006-11-30  Jonathan Pobst  <monkey@jpobst.com>
3033         * Control.cs: Tweak 2.0 layout properties.
3034         * Form.cs: Switch ToolStripMenuTracker hooks to ToolStripManager.
3035         * TextRenderer.cs: Add a new overload.
3036         * ToolStrip*: Huge amount of changes and new features.
3038 2006-11-30  Mike Kestner  <mkestner@novell.com>
3040         * ComboBox.cs: fixes for LargeChange and Maximum to get the 
3041         scroll range correct.  Fixes #79994.
3043 2006-11-30  Rolf Bjarne Kvinge <RKvinge@novell.com>
3045         * MdiWindowManager.cs: Update main form's text when
3046         a form is closed. (fixes #80038)
3047         
3048 2006-11-30  Everaldo Canuto  <everaldo@simios.org>
3050         * ToolBar.cs:
3051         - Fix an regression in ButtonSize.
3052         - Get ImeMode default value change to "Disable".
3053         - Get ShowTooltips default value change to true, default value is 
3054         "false" but after make a test in .NET we get "true" result as default.
3055         
3056 2006-11-29  Jonathan Pobst  <monkey@jpobst.com>
3058         * ToolStripDropDown.cs: Fix for SupportsTransparency change.
3060 2006-11-29  Chris Toshok  <toshok@ximian.com>
3062         * XplatUIWin32.cs (GetWindowTransparency): check return value of
3063         GetLayeredWindowAttributes.  if it's 0, return 1.0, as
3064         SetWindowTransparency hasn't been called.
3066 2006-11-29  Chris Toshok  <toshok@ximian.com>
3068         * Form.cs (set_TransparencyKey): only call SetWindowTransparency
3069         if it's supported.
3070         (set_AllowTransparency): reorder things a little so that the
3071         WS_EX_LAYERED style is removed properly.
3073 2006-11-29  Chris Toshok  <toshok@ximian.com>
3075         [ totally cosmetic eye-candy feature, fixes bug #80089 ]
3076         
3077         * Form.cs: only call the XplatUI transparency method (get/set) if
3078         SupportsTransparency says it's supported. Otherwise fallback to
3079         doing nothing (in the set case) or returning the instance field we
3080         cache (in the get case).
3082         * XplatUIStructs.cs: add TransparencySupport flag enum.
3083         
3084         * XplatUIDriver.cs: add abstract GetWindowTransparency, and track
3085         change to SupportsTransparency.
3087         * XplatUIOSX.cs: stub out GetWindowTransparency, and return
3088         TransparencySupport.None from SupportsTransparency.
3090         * XplatUIX11.cs: Stub out GetWindowTransparency, and return
3091         TransparencySupport.Set from SupportsTransparency.
3093         * XplatUIWin32.cs: implement GetWindowTransparency calling
3094         GetLayeredWindowAttributes, and implement SupportsTransparency by
3095         checking whether or not both
3096         GetWindowTransparency/SetWindowTransparency are available
3097         entrypoints.  We need to do this since SetWindowTransparency is
3098         available as of win2k, but GetWindowTransparency requires winxp.
3099         yay win32 api.
3101         * XplatUI.cs: Add GetWindowTransparency, and change
3102         SupportsTransparency to allow for either/both Get/Set.
3104 2006-11-29  Chris Toshok  <toshok@ximian.com>
3106         * DataGrid.cs: keep from going into an infinite loop redrawing a
3107         datagrid that has no datasource.  Fixes bug #80033.
3109 2006-11-29  Chris Toshok  <toshok@ximian.com>
3111         * MenuItem.cs: fix the NRE when we assign text (and therefore call
3112         Invalidate) before the mainmenu has been assigned to a control.
3114 2006-11-29  Chris Toshok  <toshok@ximian.com>
3116         * DataGrid.cs: detect when we should be double the double click
3117         row/column autosize stuff, although that codepath has yet to be
3118         written.  part of the work for bug #79891.
3120 2006-11-29  Chris Toshok  <toshok@ximian.com>
3122         * Binding.cs (SetControl): fix unit test.
3124 2006-11-29  Carlos Alberto Cortez <calberto.cortez@gmail.com>
3126         * PageSetupDialog.cs: Validate the margins and set them in
3127         PageSettings. 
3128         * NumericTextBox.cs: New class to mimic the behavior of the
3129         textboxes used in the printing dialogs.
3131 2006-11-29  Andreia Gaita  <avidigal@novell.com>
3132         
3133         * Form.cs: Revert previous change (remove call UpdateBounds
3134         from form constructor), because it messes with the handle creation
3135         order, and that one needs lots and lots of love.
3136         * PrintPreviewDialog.cs: Revert change to CreateHandle (add check
3137         for valid printer and throw InvalidPrinterException if document
3138         is set but printer not valid), adding a MonoTODO. Once 
3139         handle creation is done properly, we can put this back in.
3141 2006-11-28  Everaldo Canuto  <everaldo@simios.org>
3143         * MenuItem.cs: Create a invalidate method for menu item, to be
3144         calling from set text, it make text changes to imadiate update
3145         on screen. Fixes #80013. 
3146         
3147 2006-11-28  Everaldo Canuto  <everaldo@simios.org>
3149         * ToolBar.cs: Fixes and simplify toolbar button layout, it 
3150         fixes bug #80070 and some other problem on toolbar buttons
3151         layout.
3153 2006-11-28  Everaldo Canuto  <everaldo@simios.org>
3155         * ThemeWin32Classic.cs: Paint toolbar toggle button background 
3156         with dotted brush.      Fixes #79564
3157         
3158 2006-11-28  Andreia Gaita  <avidigal@novell.com>
3160         * Form.cs: Removed call to UpdateBounds on Form
3161         constructor, it was causing a call to CreateHandle
3162         before it was supposed to.
3163         * PrintControllerWithStatusDialog: Applied patch
3164         by Chris Toshok to hide controller when there are
3165         no printers available.
3166         PrintDialog.cs: initialize printer settings to 
3167         null - correct DefaultValues test #5
3168         * PrintPreviewControl.cs: Move PrintController
3169         initialization to GeneratePreview
3170         * PrintPreviewDialog.cs: 
3171         - Remove Preview generation     from Document_set(). It is 
3172         called on OnPaint
3173         - Throw InvalidPrinterException on CreateHandle if
3174         a Document is set but there are no printers or 
3175         printer is not valid.
3176         * ThemeWin32Classic: don't paint PrintPreviewControl
3177         if there is nothing to paint    
3179 2006-11-28  Miguel de Icaza  <miguel@novell.com>
3181         * Form.cs: Add another popular method.
3183         * TabPage.cs: ditto.
3185 2006-11-28  Rolf Bjarne Kvinge  <RKvinge@novell.com>
3187         * MenuItem.cs: Fixed a warning.
3188         * InternalWindowManager: Fixed a warning.
3190 2006-11-28  Rolf Bjarne Kvinge  <RKvinge@novell.com>
3192         * MenuItem.cs:
3193         - When cloning a menu also clone MdiList and clone the 
3194           window menu items properly (as the forms and menuitems
3195           are kept in an internal hashtable, these need updating 
3196           as well)
3197         - Rewrote the window menu code, menu items are added in the
3198           order the forms were added to their parent, and they are
3199           updated every time the window menu is shown (before the
3200           list was only generated once, in the current order of the
3201           forms, and would never be updated). A checkmark is shown
3202           next to the item corresponding to the active mdi child.
3204 2006-11-28  Rolf Bjarne Kvinge  <RKvinge@novell.com>
3206         * XplatUIStructs.cs: 
3207         - Added WM_NCMOUSEHOVER and WM_NCMOUSELEAVE.
3208         
3209         * XplatUIWin32.cs: 
3210         - Added TME_NONCLIENT to TMEFlags.
3211         - Handles WM_NCMOUSEMOVE in GetMessage to 
3212           generate WM_NCMOUSEHOVER and WM_NCMOUSELEAVE messages.
3214         * MdiWindowManager:
3215         - Now merges mdi child menu to parent menu when maximized.
3216         - Recalculate NC areas of both mdi child and mdi parent. 
3217           Fixes #79757 (4).
3218           on window state and size changes.Fixes #79844 (3).
3219         - Handle WM_NCCALCSIZE to properly calculate borders.
3221         * Form.cs:
3222         - Add/remove to the mdi containers list of mdi children 
3223           in the order they are added.
3224         - Pass on WM_NCLBUTTONUP, WM_NCMOUSEMOVE and WM_NCMOUSELEAVE 
3225           to the maximized mdi child.
3226         
3227         * InternalWindowManager.cs:
3228         - Only execute a click on the control buttons on the mouse up,
3229           not on the mouse down. Show the state of the button 
3230           (was only showing Normal state, never Pressed state). The
3231           pressed button now follows the mouse (if you click the Close 
3232           button and move the mouse over the Maximize button, the 
3233           Maximize button will be shown as pressed). Since Win32 does
3234           not generate WM_NCLBUTTONUP if you release the button outside
3235           of the nc area, we need to handle WM_NCMOUSELEAVE and treat
3236           it as a mouse up.
3237         
3238         * ThemeWin32Classic.cs:
3239         - Draw a missing border around mdi child forms. Fixes #79844 (2).
3241         * MdiClient.cs:
3242         - Added a list of forms which contains the order the forms are
3243           added to the mdi parent.
3244         - Handle WM_NCPAINT to properly draw a 3D border. Fixes #79844 (2).
3245         - Handle WM_NCCALCSIZE to properly calculate the 3D border.
3246         - If the active form changes set the scrollbars to the top
3247           of the Z order, otherwise the form could hide them.
3248         - Scrollbars are now sized according to ClientSize, not 
3249           to Size, and they take into account the other scrollbar
3250           to determine maximum.
3251         
3252 2006-11-28  Rolf Bjarne Kvinge <RKvinge@novell.com>
3253         
3254         * XplatUI.cs:
3255         * XplatUIDriver.cs:
3256         * XplatUIX11.cs:
3257         * XplatUIWin32.cs:
3258         * XplatUIOSX.cs:
3259         - Added RequestAdditionalWM_NCMessages for windows to 
3260           opt in for WM_NCMOUSELEAVE and WM_NCMOUSEHOVER.
3261           Currently only implemented in XplatUIWin32.
3263 2006-11-27  Chris Toshok  <toshok@ximian.com>
3265         * Hwnd.cs: only add the hwnd to the windows hash in
3266         set_WholeWindow and set_ClientWindow if whole_window/client_window
3267         are not IntPtr.Zero.  also, remove the unused SetObjectWindow.
3269 2006-11-27  Mike Kestner  <mkestner@novell.com>
3271         * ComboBox.cs: remove redundant OnDropDown call.  It is called
3272         from the ComboListBox.ShowWindow code. Fixes #79969.
3274 2006-11-27  Chris Toshok  <toshok@ximian.com>
3276         * Hwnd.cs: remove the setters for ExposePending and
3277         NCExposePending - noone uses them.
3279 2006-11-27  Jackson Harper  <jackson@ximian.com>
3281         * TextControl.cs: new param for ReplaceSelection which determines
3282         whether we select the new selection, or set the cursor to the end
3283         of the new selection.
3284         * TextBoxBase.cs: Use new param for ReplaceSelection.  When
3285         pasting, select the new text.
3286         * RichTextBox.cs: Use new param for ReplaceSelection.
3288 2006-11-27  Jackson Harper  <jackson@ximian.com>
3290         * TextBoxBase.cs: Set the selection to the caret after the caret
3291         is moved, otherwise they get out of sync.
3293 2006-11-26  Everaldo Canuto  <everaldo@simios.org>
3295         * ToolBar.cs: Fixe size of ToolBar when AutoSize is false,
3296         it fixes #80015
3298 2006-11-26  Everaldo Canuto  <everaldo@simios.org>
3300         * ThemeWin32Classic.cs: 
3301         - Fix toolbar drop down arrow position.
3302         - Fix drop down appearance when ToolBar.Appearance is normal,
3303         it fixes #80018.
3304         
3305 2006-11-26  Gert Driesen  <drieseng@users.sourceforge.net>
3307         * ProgressBar.cs: GetStyle fixes for 2.0 profile.
3308         * Control.cs: Same.
3309         * UpDownBase.cs: Same.
3310         * ButtonBase.cs: Same.
3311         * ScrollBar.cs: Same.
3312         * TrackBar.cs: Same.
3313         * PictureBox.cs: Same.
3314         * UserControl.cs: Same.
3315         * Label.cs: Same.
3316         * ListControl.cs: Same.
3317         * TextBoxBase.cs: Same.
3318         * ListView.cs: Same.
3319         * RichTextBox.cs: Same.
3320         * TreeView.cs: Same.
3322 2006-11-25  Jordi Mas i Hernandez <jordimash@gmail.com>
3324         * PrintDialog.cs:
3325         - Text label for where 
3326         - Text label comment was not shown
3328 2006-11-23  Everaldo Canuto  <everaldo@simios.org>
3330         * ThemeWin32Classic.cs: Fix toolbar drop down arrow size.
3332 2006-11-23  Rolf Bjarne Kvinge  <RKvinge@novell.com> 
3334         * InternalWindowManager.cs: 
3335         - Handle WM_PARENTNOTIFY to activate the form
3336         if any child control is clicked.
3337         - The form is only sizable if not minimized.
3339         * MdiWindowManager.cs:
3340         - Save the IconicBounds if the form is moved.
3341         - Rework SetWindowState, now the window bounds 
3342         are stored only if the old window state is Normal.
3343         
3344         * MdiClient.cs:
3345         - In SetWindowStates store the old window state if 
3346         the window is maximized and restore window state if
3347         the window looses focus.
3348         - Don't handle any scrollbar value changes if 
3349         initializing the scroll bars. Fixes #79771.
3350         - Reworked ArrangeIconicWindows. Current algorithm
3351         tests bounds agains all other minimized windows, if
3352         any intersections create new bounds (going left to 
3353         right, bottom to top) and then test again. When 
3354         successful the bounds are saved and never computed
3355         again. Fixes #79774.
3357 2006-11-23  Rolf Bjarne Kvinge  <RKvinge@novell.com> 
3359         * InternalWindowManager.cs: Added HandleTitleBarUp.
3361 2006-11-23  Gert Driesen  <drieseng@users.sourceforge.net>
3363         * NumericUpDown.cs: In .NET 1.1, user entered text is still
3364         hexadecimal in ParseUserEdit.
3366         
3367 2006-11-23  Rolf Bjarne Kvinge  <RKvinge@novell.com> 
3369         * MdiWindowManager.cs: 
3370         - Handle a click on the form's icon to show the 
3371         system menu (when maximized). Fixes #79775.
3372         - Change the existing click handler for the form's
3373         icon when not maximized to show on MouseUp.
3374         Fixes #79776.
3376         * Form.cs: In OnResize only layout the mdi child's
3377         parent if it actually has a parent. Might not if
3378         the window is closing.
3381 2006-11-23  Gert Driesen  <drieseng@users.sourceforge.net>
3383         * MdiClient.cs: Ignore active MDI client for text of parent, if
3384         child has no text set.
3386 2006-11-23  Gert Driesen  <drieseng@users.sourceforge.net>
3388         * ToolBar.cs: Fixed ToString to match MS.
3390 2006-11-22  Andreia Gaita  <avidigal@novell.com>
3392         * NumericUpDown: 
3393         - Fix DecimalPlaces, Hexadecimal and ThousandsSeparator to 
3394         update inner values on set. Fixes #79966.
3395         - Override OnLostFocus to update value on NET 2. Fixes #79950.
3396         - Fix hexadecimal parsing.
3397         
3398         * UpDownBase: Override OnGotFocus and OnLostFocus to notify 
3399         parent. Fixes #79957
3401 2006-11-22  Rolf Bjarne Kvinge  <RKvinge@novell.com>
3403         * Control.cs: After calling SetWindowsPos in SetBoundsCore 
3404         the actual size has to be queried, since if height /
3405         width is negative Win32 changes it to 0. 
3406         Fixes #79999 on Windows.
3407         
3408         * XplatUIX11.cs: Set height / width to 0 if negative
3409         in SetWindowPos. Fixes #79999 on Linux.
3410         
3411 2006-11-22  Everaldo Canuto  <everaldo@simios.org>
3413         * ThemeWin32Classic.cs: Fix text redenring when button is
3414         pressed.
3416 2006-11-22  Everaldo Canuto  <everaldo@simios.org>
3418         * MenuAPI.cs: Fixes behavior when menu is opened by kerboard
3419         and later navigate by mouse. Fixes #79528.
3421 2006-11-21  Everaldo Canuto  <everaldo@simios.org>
3423         * ToolBar.cs: Set default value for TabStop to false in
3424         constructor, it fixes remaining behavior of bug #79863.
3426 2006-11-21  Rolf Bjarne Kvinge  <RKvinge@novell.com>
3428         * MdiWindowManager.cs:
3429         * InternalWindowManager.cs:
3430         - Moved a few methods specific to Mdi from 
3431         InternalWindowManager to MdiWindowManager.
3432         Fixes #79996.
3433         
3434 2006-11-21  Chris Toshok  <toshok@ximian.com>
3436         * XplatUIOSX.cs: stub out InvalidateNC.
3438         * XplatUIWin32.cs: implement InvalidateNC using the call I found
3439         at http://www.dotnet247.com/247reference/msgs/58/292037.aspx.
3441         * XplatUIX11.cs: rename InvalidateWholeWindow to InvalidateNC.
3443         * XplatUIDriver.cs: add InvalidateNC abstract method.
3445         * XplatUI.cs: add InvalidateNC.
3447 2006-11-21  Everaldo Canuto  <everaldo@simios.org>
3449         * ToolBar.cs: Invalidate complete button area when pressed status 
3450         was changed.
3451         * ToolButton.cs: Fix InvalidateBorder for DropDown buttons.
3452         * ThemeWin32Classic.cs: Increase vertical and horizontal position 
3453         by 1 when button is pressed.
3455 2006-11-20  Everaldo Canuto  <everaldo@simios.org>
3457         * ToolButton.cs: Invalidate middle of DropDown button when
3458         ToolBar theres DropDownArrows.
3459         * ThemeWin32Classic.cs: Change position of DropDown arrow and
3460         fix DropDown drawing operations.
3462 2006-11-20  Chris Toshok  <toshok@ximian.com>
3464         * NativeWindow.cs: fix the formatting of functions ('{' on the
3465         following line), and enable the thread exception dialog.
3467         * Application.cs: remove the duplicate exception catching from
3468         here.
3470 2006-11-20  Everaldo Canuto  <everaldo@simios.org>
3472         * Toolbar.cs: Triggers button click event when click on icon
3473         of dropdown ToolBarButton. Fixes #79912.
3474         
3475 2006-11-20  Rolf Bjarne Kvinge  <RKvinge@novell.com>
3477         * Theme.cs:
3478         * ThemeWin32Classic.cs:
3479         - Added a property WindowBorderFont to enable themeing
3480           of mdi child windows' Text.
3481           
3482 2006-11-20  Rolf Bjarne Kvinge  <RKvinge@novell.com>
3484         * InternalWindowManager.cs:
3485         * Form.cs:
3486         * MdiClient.cs:
3487         * MdiWindowManager.cs: 
3488         - If mdi child is maximized, set mdi parent's
3489           text to "Parent - [Child]". Fixes #79770.
3490         - If there is any maximized mdi child windows, only the active 
3491           window (and any new windows) is maximized, the rest are normal.
3492         - On a WindowState change only save mdi child's window bounds 
3493           if the old window state was normal. Fixes #79774.
3494         - The scroll bars are now calculated on hopefully all
3495           necessary events. Fixed #79771 / #79844->6 / #79906.
3496         - MdiClient.SizeScrollBars() now takes into account docked 
3497           controls in the parent when calculating available space.
3498         - InternalWindowManager now always repaints the entire title
3499           area. Fixes #79844->1/4/5.
3500         - Added RequestNCRecalc on mdi child windowstate changes.
3501           Fixes #79772.
3503 2006-11-20  Mike Kestner  <mkestner@novell.com>
3505         * ComboBox.cs: setup LargeChange on the scrollbar. Invoke FireMouseUp
3506         in the MouseUp handler of the listbox and move the return handling
3507         code to FireMouseUp to avoid scrolling on ups.  Fixes #79952.
3509 2006-11-20  Everaldo Canuto  <everaldo@simios.org>
3511         * Toolbar.cs: Ignore right mouse clicks in toolbar. Fixes #79855. 
3513 2006-11-17  Alexander Olk  <alex.olk@googlemail.com>
3515         * MimeIcon.cs: Seems that DllImports that were fine in 1.2 are not
3516           working in 1.2.x anymore. So, updated.
3518 2006-11-19  Gert Driesen  <drieseng@users.sourceforge.net>
3520         * NumericUpDown.cs: Use NegativeSign, NumberDecimalSeparator and
3521         NumberGroupSeparator of current culture instead of assuming en-US.
3522         Fixed bug #79967.
3524 2006-11-17  Mike Kestner  <mkestner@novell.com>
3526         * Control.cs: Add the concept of implicit bounds setting so that
3527         dock/undock round trips preserve explicitly set size/locations.
3528         Fixes #79313.
3530 2006-11-17  Alexander Olk  <alex.olk@googlemail.com>
3532         * FileDialog.cs: Trim all filters, otherwise DirInfo.GetFiles
3533           can't handle those filters. (Fixes bug #79961)
3535 2006-11-17  Chris Toshok  <toshok@ximian.com>
3537         [ fixes the exit/crashes associated with #79835.  it's clearly
3538         suboptimal though, we need to figure out a better way to solve
3539         this. ]
3540         
3541         * PrintPreviewControl.cs: deal with the new invalid printer
3542         exceptions.
3544         * PageSetupDialog.cs: if the printer is invalid, pop up a dialog
3545         and return false (so CommonDialog.ShowDialog doesn't actually show
3546         the form.)
3548         * PrintDialog.cs: enable/disable the Ok button depending on
3549         whether or not the printer is valid.
3551         * CommonDialog.cs (ShowDialog): only actually show the form if
3552         RunDialog returns true.
3554 2006-11-17  Jackson Harper  <jackson@ximian.com>
3556         * TextControl.cs: When soft splitting a line, mark it as a soft
3557         split line. Also carry over the current line break to the next
3558         line.
3560 2006-11-17  Chris Toshok  <toshok@ximian.com>
3562         * XplatUIX11.cs: when scrolling a window with an invalid area, we
3563         only want to shift the part of the invalid area that overlaps the
3564         area we're scrolling.  we also don't want to clear the invalid
3565         area unless the invalid area was entirely contained within the
3566         scrolling area.
3568 2006-11-16  Chris Toshok  <toshok@ximian.com>
3570         * XplatUIX11.cs: remove the handling of the TimerEvent stuff, and
3571         also make sure to free the memory returned by XGetWindowProperty
3572         in GetText().
3574         * X11Structs.cs: remove the TimerEvent stuff, it's unused.
3576 2006-11-16  Chris Toshok  <toshok@ximian.com>
3578         * XplatUI.cs: add a new super secret way to get at the totally
3579         unsupported X11 backend.
3581 2006-11-16  Gert Driesen  <drieseng@users.sourceforge.net>
3583         * NumericUpDown.cs: Allow lowercase letters when in hex-mode.
3585 2006-11-16  Jackson Harper  <jackson@ximian.com>
3587         * TreeView.cs: Allow more explicit setting of top node position
3588         for scrollbars. Slower algo, but more accurate.
3589         - CollapseAll should maintain the current top node.
3590         * TextBoxBase.cs: When positioning the caret, use the line, pos
3591         method, since the x, y method does not grab the correct tag, and
3592         the caret height never gets set correctly. (Maybe I should just do
3593         away with the caret having its own height, and always use the
3594         carets current tag for height).
3596 2006-11-16  Jonathan Pobst  <monkey@jpobst.com
3598         [Fixes 79778, 79923]
3600         * XplatUIWin32.cs: Don't allow a parent to be set to IntPtr.Zero.
3601         Parent to the FosterParent instead.
3603 2006-11-16  Jackson Harper  <jackson@ximian.com>
3605         * TreeView.cs: Need to recalc the topnode when we expand or
3606         collapse. The scrolling methods can't handle this on their own,
3607         since they use differences between the last scroll position, and
3608         those difference get completely messed up since we are expanding
3609         nodes.  This problem should probably be fixed in the scrolling
3610         methods, so they can figure out exactly where they are, but this
3611         will slow things down a little.
3612         * ThemeWin32Classic.cs: Special case for groupboxes with empty
3613         strings, makes nunit-gui look a lot nicer.
3615 2006-11-16  Chris Toshok  <toshok@ximian.com>
3617         * XplatUIX11.cs: nasty, nasty, nasty changes required because of
3618         the broken multithreaded event handling we have in here.  File
3619         this entry under "Why we should move to the new X11 backend".
3621         Any thread can make it into UpdateMessageQueue, which gets events
3622         from the X socket - some of which could belong to hwnds being
3623         managed by a different thread.  We can also have multiple threads
3624         in UpdateMessageQueue at the same time, with each one reading from
3625         the X socket.  This leads to many problems, with the following
3626         solutions:
3628         We can't use hwnd.Queue.Enqueue anywhere in here and must use
3629         EnqueueLocked.
3631         The MotionNotify compression we do can't work across threads
3632         (without locking the entire queue, perhaps) since we call
3633         hwnd.Queue.Peek, so we just punt and don't compress motion events
3634         unless the owning thread is the one which got the X event.
3636         ConfigureNotify is another fun one, since it modifies the hwnd's
3637         bounds and then enqueues the event.  We add a lock to Hwnd which
3638         is held when setting configure_pending to true (and enqueuing the
3639         event).
3641         There is a race wrt the wake socket.  we need to make sure that
3642         only 1 thread is waiting on that socket, or else a thread could
3643         sleep waiting for data that never comes.  It's difficult (but not
3644         impossible) to make happen, because it seems to require something
3645         like the following:
3647             1. Thread 1 polls on wake_receive
3648         
3649             2. poll returns saying there's data to be read on
3650                wake_receive.
3651         
3652             3. Thread 2 polls on wake_receive and immediately returns
3653                saying there's data to be read.
3655             4. Thread 2 reads the wakeup byte from wake_receive
3657             5. Thread 1 attempts to read the wakeup byte from
3658                wake_receive.
3660             6. Thread 2 exits (due to a form closing, perhaps).
3662             7. Thread 1 blocks forever.
3663         
3664         Fun, eh?
3666         Fixing the Expose handling isn't done yet, and the races inherent
3667         in that piece of code are responsible for the drawing mistakes you
3668         see when generating expose events in a MT app (like NPlot).  This
3669         one is the likely to be the hardest to bandaid, and it doesn't
3670         appear to cause anything but drawing problems.  The other issues
3671         caused apps to exit or hang.
3673         * XEventQueue.cs: output some spew when Dequeue/Enqueue/Peek are
3674         called from a different thread than the one that should be calling
3675         these functions.
3677         * Hwnd.cs: add some locks to be used by the XplatUIX11 code.
3679 2006-11-15  Chris Toshok  <toshok@ximian.com>
3681         * Application.cs: null out the context's MainForm when we exit
3682         RunLoop.  Fixes a newly checked in unit test as well as the last
3683         ODE from bug #79933.
3685 2006-11-15  Chris Toshok  <toshok@ximian.com>
3687         * Form.cs (set_Owner): allow a null value so we can clear the
3688         form's owner.
3689         (Dispose): set all our owned_form's Owner properties to null, and
3690         clear the owned_forms collection.
3691         (WM_CLOSE): clean up this a little bit.. still not right though.
3693         * ApplicationContext.cs: OnMainFormClosed should only call
3694         ExitThreadCore if the main form isn't recreating.  Fixes unit
3695         test.
3697 2006-11-15  Jonathan Pobst  <monkey@jpobst.com>
3699         [Fixes 78346]
3701         * ComboBox.cs: Set the Hwnd.no_activate flag for the ComboListBox.
3703 2006-11-15  Jonathan Pobst  <monkey@jpobst.com>
3705         [Fixes 79433]
3707         * Hwnd.cs: Add a flag to show a window, but not activate it, to 
3708         keep popup window types from stealing focus from the main form
3709         on Windows.
3711         * XPlatUIWin32.cs: Use SW_SHOWNOACTIVATE if above field is true.
3713         * MenuAPI.cs: Set above flag to true.
3715 2006-11-15  Chris Toshok  <toshok@ximian.com>
3717         * XplatUIX11.cs: mimic win32 behavior on BUTTONUP events, where
3718         the button being released is not in wParam.
3720 2006-11-15  Jonathan Pobst  <monkey@jpobst.com>
3722         * Form.cs: Add the released button to MouseEventArgs.Button
3723         for the OnMouseUp call to the MenuTracker.  Fixes menu clicking
3724         on Win32.
3726 2006-11-15  Chris Toshok  <toshok@ximian.com>
3728         * XplatUIX11.cs: add (untested) a _NET_WM_NAME implementation of
3729         GetText().  untested because it's unused in our implementation.
3730         Control.Text always caches the text, even if
3731         ControlStyles.CacheText is not set.
3733         fixes bug #79939.
3735 2006-11-15  Chris Toshok  <toshok@ximian.com>
3737         [ fixes #79933 ]
3738         
3739         * Form.cs: in Close() don't do anything after we send the WM_CLOSE
3740         message.  no hiding, no disposing.
3742         in the WM_CLOSE handler, hide the form if it's modal.
3744 2006-11-15  Chris Toshok  <toshok@ximian.com>
3746         * XplatUIX11.cs: use AddExpose instead of sending a message.
3747         fixes textbox border drawing.
3749 2006-11-15  Chris Toshok  <toshok@ximian.com>
3751         * PropertyGridView.cs: keep from crashing on mouse move/down when
3752         the property grid is empty.
3754 2006-11-14  Jackson Harper  <jackson@ximian.com>
3756         * TextControl.cs: Make PageUp and PageDown more like the MS
3757         versions.
3758         * TextBoxBase.cs: When we set the text property position the
3759         cursor at the beginning of the document.
3761 2006-11-14  Rolf Bjarne Kvinge  <RKvinge@novell.com>
3763         * Form.cs: if a mdi child's WindowState has changed
3764         before it's creation, it would display wrong control
3765         buttons.
3766         
3767 2006-11-14  Alexander Olk  <alex.olk@googlemail.com>
3769         * TreeView.cs: De-uglify TreeView checkbox checkmarks.
3770           (Fixes bug #79927)
3772 2006-11-14  Rolf Bjarne Kvinge <RKvinge@novell.com> 
3774         * XplatUIX11.cs: send a WM_NCPAINT on WM_NCCALCSIZE so that 
3775         the window gets to paint its borders even if the window is
3776         getting smaller.
3777         
3778         * Form.cs: on a WM_NCPAINT invalidate the entire menu, 
3779         otherwise the old control buttons would still be painted 
3780         if the window gets bigger.
3781         
3782         * PaintEventArgs.cs: add an internal method so that the clip 
3783         rectangle can be changed.
3784         
3785 2006-11-13  Chris Toshok  <toshok@ximian.com>
3787         [ fixes bug #79745 ]
3788         
3789         * NotifyIcon.cs: lots of cleanup.
3791         * X11Structs.cs: add an enum for XEMBED messages.
3793         * XplatUIX11.cs: reindent one of the giant switch statements, it
3794         was taking up an additional tab stop, and this file is already way
3795         too wide for my laptop's screen.
3797         Also, add handling for the XEmbed EMBEDDED_NOTIFY message.  When
3798         we get it, resize the hwnd to the WMNormalHints max_width/height.
3800 2006-11-13  Jackson Harper  <jackson@ximian.com>
3802         * TextBoxBase.cs: Compute the value changes for the mouse wheel
3803         teh simple way.
3805 2006-11-13  Chris Toshok  <toshok@ximian.com>
3807         * XplatUIX11.cs, XplatUIStructs.cs: kind of a gross fix for
3808         #79898.  force a reference to the Region to stick around so the
3809         unmanaged object isn't collected (rendering our handle in the MSG
3810         stale).
3812 2006-11-13  Chris Toshok  <toshok@ximian.com>
3814         * XplatUIX11.cs: fix #79917 for window managers which support
3816         using XStoreName on the raw utf8, and we need to convert to
3817         COMPOUND_TEXT if it's non-latin1.
3819 2006-11-13  Chris Toshok  <toshok@ximian.com>
3821         * Form.cs (set_DialogResult): we need to set closing to false if
3822         we're setting our result to None.  fixes bug #79908.
3824 2006-11-13  Jackson Harper  <jackson@ximian.com>
3826         * TextControl.cs: When formatting text, compute the adjusted tag
3827         lengths correctly, using FindTag for the end tag instead of trying
3828         to figure it out outselves.
3829         * TreeNode.cs: Use ActualItemHeight, which is the actual height of
3830         the item, ItemHeight doesn't work, because trees with large
3831         imagelists use those for their height
3832         * TreeView.cs: ActualItemHeight factors in the image height
3833         - compute left edge of checkboxes correctly
3834         - when expanding/collapsing move the bottom down one pixel, so we
3835         aren't moving part of the node
3837 2006-11-13  Rolf Bjarne Kvinge  <RKvinge@novell.com>
3839         * XplatUIX11.cs: The PaintEventArgs is also added to the drawing
3840         stack in PaintEventStart so that it won't get disposed by the gc
3841         before reaching PaintEventEnd.
3843 2006-11-13  Jackson Harper  <jackson@ximian.com>
3845         * TextBoxBase.cs: Don't select the word if we are on a line with
3846         no text.
3847         - We don't need to position the caret on mouse up, since the mouse
3848         move handler should be doing this
3849         - When double clicking a blank line, the caret is advanced to the
3850         next line.
3852 2006-11-13  Gert Driesen  <drieseng@users.sourceforge.net>
3854         * TreeNodeCollection.cs: Avoid duplicating indexer code.
3856 2006-11-12  Gert Driesen  <drieseng@users.sourceforge.net>
3858         * ColorDialog.cs: Reset size of dialog between calls to ShowDialog.
3859         Fixes part of bug #79910.
3861 2006-11-11  Alexander Olk  <alex.olk@googlemail.com>
3863         * ColorDialog.cs: Fix a NRE when adding a color to custom colors
3864           (bug #79903). Some minor string updates to match ms.
3866 2006-11-10  Alexander Olk  <alex.olk@googlemail.com>
3868         * FileDialog.cs: Don't add an extension if the filename
3869           already ends with that extension.
3871 2006-11-10  Jackson Harper  <jackson@ximian.com>
3873         * TreeView.cs: Use the currently highlighted node for the
3874         BeforeSelect event.
3875         * TextBoxBase.cs: There is no need to expand selection on
3876         MouseMove.
3877         - CanUndo means 'is there any undo operations', not 'is undo
3878         allowed on this textcontrol. Fixed ClearUndo unit test.
3880 2006-11-10  Andreia Gaita  <shana.ufie@gmail.com>
3882         * Button.cs: only perform click when button is Selectable (so as 
3883         not to activate default buttons when they're disabled)
3884         
3885         * Control.cs: Rewrite of the SelectNextControl and related 
3886         methods. HandleClick now selects next control if the current one
3887         is being disabled.
3888         
3889         * Form.cs: OnActivated selects next active control only if Load 
3890         has already occurred. If Load hasn't run, there's no point in 
3891         selecting here, Load might change the state of controls.
3892         
3893         * FocusTest.cs: Tests marked as working again for these fixes
3895 2006-11-10  Chris Toshok  <toshok@ximian.com>
3897         * XplatUIX11.cs: a couple of fixes.
3899         - use XInternAtoms with almost all the atoms we need to register,
3900         instead of many, many calls to XInternAtom.  should help a bit on
3901         startup time, at the expense of making the code look a little
3902         worse.
3904         - fall back to setting TransientFor on TOOLWINDOW's if their hwnd
3905         isn't reparented (which seems to be a clue that we're running fon
3906         compiz) and they have an Owner form.  This fixes the tool windows
3907         in paint.net when running under compiz.
3909         - when setting the opacity of a window, support both the case
3910         where the window has been reparented and also when it hasn't been.
3911         Since compiz/beryl doesn't seem to reparent windows, and these are
3912         the only window managers which support translucency, I'm not sure
3913         why we need the hwnd.reparented case at all.. but leave it in.
3914         now we get translucent windows in paint.net under compiz/beryl.
3916 2006-11-10  Alexander Olk  <alex.olk@googlemail.com>
3918         * FileDialog.cs: Always return the value for FilterIndex that
3919           was set. Internally convert it to values that make sense.
3921 2006-11-10  Everaldo Canuto  <everaldo@simios.org>
3922         
3923         * ThemeWin32Classic.cs: Fix drowp down arrow borders.
3925 2006-11-10  Everaldo Canuto  <everaldo@simios.org>
3927         * Toolbar.cs: Change default value of DropDownArrows to true, the 
3928         signature still using false to make it compatible with MS but the 
3929         initial value is true. Fixes #79855.
3931 2006-11-10  Alexander Olk  <alex.olk@googlemail.com>
3933         * MimeIcon.cs: Don't throw an exception on windows. Mime stuff is
3934           only available on Linux.
3936 2006-11-09  Everaldo Canuto  <everaldo@simios.org>
3938         * Toolbar.cs, ToolBarButton.cs: Fix wrong separator size and
3939         reduce number of calls to redraw method during toolbar creation.
3941 2006-11-09  Mike Kestner  <mkestner@novell.com>
3943         * ListView.cs : raise SelectedIndexChanged when an item is selected
3944         programmatically via the Item.Selected property.  Gert's nice 
3945         ListViewSelectedIndexChanged test fixture now runs clean.
3947 2006-11-09  Mike Kestner  <mkestner@novell.com>
3949         * ListView.cs : raise SelectedIndexChanged when a selected item is
3950         removed from the item collection using Remove or RemoveAt.
3952 2006-11-09  Mike Kestner  <mkestner@novell.com>
3954         * ListView.cs : raise SelectedIndexChanged once per selected item
3955         for compat with MS.  Fixes #79849+.
3957 2006-11-09  Chris Toshok  <toshok@ximian.com>
3959         * TabControl.cs: initialize row_count to 0, and set it to 1 when
3960         we need to (if we have any tab pages).  Fixes unit test.
3962 2006-11-09  Chris Toshok  <toshok@ximian.com>
3964         * Label.cs (CalcPreferredWidth): if Text == "", our preferred
3965         width is 0, not 3.  Fixes a unit test.
3967 2006-11-09  Mike Kestner  <mkestner@novell.com>
3969         * ListView.cs : use Implicit scrollbars so that focus isn't 
3970         stolen from the listview when they are clicked. Fixes #79850.
3972 2006-11-09  Chris Toshok  <toshok@ximian.com>
3974         * PropertyGridView.cs (OnPaint): only call DrawGridItems if we
3975         have a root item.  Fixes #79879.
3977 2006-11-09  Alexander Olk  <alex.olk@googlemail.com>
3979         * FileDialog.cs:
3980           - Fix ToString ()
3981           - An ArgumentException is now thrown if a wrong filter
3982             is applied (matches ms). The previous filter doesn't change
3983             anymore if an exception is thrown.
3984           - Changing the FileName property also affects FileNames
3985         * ColorDialog.cs: The length of the CustomColors array is always
3986           16. It doesn't matter if we use a smaller array or null to update
3987           or change the custom colors property.
3988         * FolderBrowserDialog.cs: Throw an InvalidEnumArgumentException if
3989           for RootFolder if we get a undefined value.
3991 2006-11-09  Rolf Bjarne Kvinge  <RKvinge@novell.com>
3993         * StatusBarPanel.cs: 
3994         - Width is set to MinWidth if Width is smaller than
3995         MinWidth. Fixes #79842.
3996         - MinWidth now always overrides Width (MSDN says MinWidth
3997         is set to Width when AutoSize = None, but they do not 
3998         behave like that).
3999         - Style has now the the correct default value.
4000         
4001 2006-11-09  Rolf Bjarne Kvinge  <RKvinge@novell.com>
4003         * TrackBar.cs: 
4004         - The control is completely invalidated on 
4005         Got/LostFocus to draw the focus rectangle correctly.
4006         - When AutoSize then height is always 45 (width for 
4007         vertical controls).
4008         
4009         * ThemeWin32Classic.cs: The TrackBar thumb is now centered
4010         on the mouse when moved and it doesn't move when grabbed
4011         until the mouse moves as well. Also fixed some wrong 
4012         calculations when clicking on the thumb (control thought
4013         click was outside of thumb and didn't grab it).
4014         Fixes some of the issues in #79718.
4016 2006-11-08  Everaldo Canuto  <everaldo@simios.org>
4018         * Toolbar.cs: Prevent disabled button to highlight. Fixes #79868.
4020 2006-11-08  Chris Toshok  <toshok@ximian.com>
4022         * PropertyGridView.cs: only call ToggleValue if the item is not
4023         readonly.
4025 2006-11-08  Jackson Harper  <jackson@ximian.com>
4027         * TextBoxBase.cs: The RichTextBox and textbox have very different
4028         word selection methods.  Implement the textbox's simple word
4029         selection here, and let the RichTextBox override and provide it's
4030         own.
4031         - Don't do extra selection on mouseup
4032         * RichTextBox.cs: Use the documents word selection algorithm, I
4033         think ideally, this function will be pulled into the
4034         RichTextBox.cs code someday.
4036 2006-11-08  Chris Toshok  <toshok@ximian.com>
4038         * RootGridEntry.cs: new class to represent GridItemType.Root.
4040         * CategoryGridEntry.cs: reformat, and add boilerplate.
4041         
4042         * GridEntry.cs: remove the UIParent stuff - turns out .Parent
4043         returns the UI parent anyway, and we need special handling to
4044         implement the GetTarget method in the face of it.  Also, implement
4045         Select().
4047         * PropertyGrid.cs, PropertyGridView.cs: a number of fixes.  create
4048         a root grid item, and use that instead of PropertyGrid.grid_items.
4049         Also, make use of TypeConverters (and add limitted support for
4050         ICustomTypeDescriptors) when initially populating the grid.
4051         Arrays now show up more or less properly.
4053 2006-11-08  Chris Toshok  <toshok@ximian.com>
4055         * Application.cs: set the modal dialog to non modal after we close
4056         it.  Fixes bug #79866.
4058 2006-11-08  Jackson Harper  <jackson@ximian.com>
4060         * TextControl.cs: When combining lines carry over the line end
4061         style from the end line.
4062         - Invalidate the selected area when setting it, if it is visible.
4063         * TextBoxBase.cs: Only rich text box can do full line selects.
4064         - Make sure to set the cursor position when there is a click,
4065         otherwise two clicks in separate areas could cause a large chunk
4066         to be selected.
4068 2006-11-07  Everaldo Canuto  <everaldo@simios.org>
4070         * Toolbar.cs: Release flat button borders when Toolbar lost focus. 
4071         Fixes #79863.
4073 2006-11-07  Everaldo Canuto  <everaldo@simios.org>
4075         * Toolbar.cs: Prevent toolbar to open more than one tooltip at same
4076         time. Remove tooltips when ToolButton click events.  Fixes #79856.
4078 2006-11-07  Everaldo Canuto  <everaldo@simios.org>
4080         * MenuAPI.cs: Ignore right click for menu actions and fixes
4081         menu border when clicked.  Fixes #79846.
4083 2006-11-07  Everaldo Canuto  <everaldo@simios.org>
4085         * XplatUIX11.cs, XplatUIX11.cs: Fix MouseRelease to only release
4086         MouseState after create wParam for message, this fixes mouse button 
4087         equal none in mouse up events.
4088         
4089 2006-11-07  Andreia Gaita  <shana.ufie@gmail.com>
4091         * Control.cs : Focus() now calls Select to set the Container's
4092         Active Control and to give it focus. To avoid infinite recursion
4093         (because ActiveControl also calls Focus at one point), a check 
4094         is made in Focus with the help of a new internal variable
4095         is_focusing.
4097 2006-11-07  Mike Kestner  <mkestner@novell.com>
4099         * ListView.cs : raise OnSelectedIndexChanged in CreateHandle
4100         if there's a selection.  Fixes #79849.
4102 2006-11-07  Gert Driesen  <drieseng@users.sourceforge.net>
4104         * PropertyGrid.cs: Avoid fixed height of help description label.
4105         Fixes part of bug #79829.
4107 2006-11-07  Chris Toshok  <toshok@ximian.com>
4109         * XplatUIX11.cs: fix #79790 again, by using the
4110         _NET_WM_STATE_SKIP_TASKBAR atom to implement Form.ShowInTaskbar.
4112 2006-11-07  Everaldo Canuto  <everaldo@simios.org>
4114         * ToolBar.cs: Fix left click checking.
4116 2006-11-07  Chris Toshok  <toshok@ximian.com>
4118         * ProgressBar.cs: fix a typo in ToString().  fixes a unit test.
4120 2006-11-07  Chris Toshok  <toshok@ximian.com>
4122         * RelatedPropertyManager.cs: set property_name in our ctor.  fixes
4123         PropertyManager unit tests.
4125         * PropertyManager.cs: make property_name internal.
4127 2006-11-07  Chris Toshok  <toshok@ximian.com>
4129         * ButtonBase.cs: initialize base.ime_mode to ImeMode.Disable to
4130         pass a unit test.  Also, don't set image_index to anything in
4131         response to setting the ImageList property.
4133 2006-11-07  Everaldo Canuto  <everaldo@simios.org>
4135         * ToolBar.cs: Ignore click events when mouse button is not a
4136         left button, only accepts other button for dropdown menus.  
4137         Fixes #79854.
4139 2006-11-07  Chris Toshok  <toshok@ximian.com>
4141         * DataGrid.cs: make the back and parent row buttons a little less
4142         ugly.
4144 2006-11-07  Jackson Harper  <jackson@ximian.com>
4146         * TextBoxBase.cs: When converting to Text don't put line breaks in
4147         for soft line breaks.
4148         * TextControl.cs: There is an initial "fake" line in the document,
4149         this is now a soft break line, so that an extra line feed doesn't
4150         get added to the end of documents.
4152 2006-11-07  Chris Toshok  <toshok@ximian.com>
4154         [ fix bug #79778 ]
4155         
4156         * CurrencyManager.cs: if the list is readonly, don't bother
4157         checking if IBindingList.AllowNew is true.
4159         * ThemeWin32Classic.cs (DataGridPaintParentRow): make this work
4160         for non-DataRowView datasources..  or rather, make it not crash.
4161         (DataGridPaintRelationRow): make sure we limit the row painting to
4162         the area not covered by the row header, and make our cell width at
4163         least large enough to cover the relation area.  This allows grids
4164         that have relations but no rows to render correctly.
4165         (DataGridPaintRowContents): same type of changes here.
4166         (SetDataSource): move back to always calling
4167         CalcAreasAndInvalidate.  this fixes a crash/drawing problem when
4168         navigating back through relations.
4169         (HitTest): handle the case where we have no cells but have
4170         relations.  Right now we generate a hit in cell 0 of whatever the
4171         row is, not sure if this is strictly correct, but it works for our
4172         purposes.
4173         
4174         * DataGrid.cs (EndEdit, CancelEdit): if we have no columns, don't
4175         bother doing anything.
4177 2006-11-07  Jonathan Pobst  <monkey@jpobst.com>
4179         * StatusStrip.cs, ToolStripStatusLabel.cs: By request, an
4180         early version of StatusStrip.  Not responsible for eaten
4181         application or firstborn children.
4183 2006-11-06  Chris Toshok  <toshok@ximian.com>
4185         * TabControl.cs: in OnGotFocusInternal/OnLostFocusInternal don't
4186         call GetTabRect with a -1 index.  Fixes #79847.
4188 2006-11-06  Jackson Harper  <jackson@ximian.com>
4190         * TreeNodeCollection.cs: Update scrollbars after clearing.
4192 2006-11-06  Chris Toshok  <toshok@ximian.com>
4194         * NumericUpDown.cs: fix the ToString method for some unit test
4195         love.
4197 2006-11-06  Chris Toshok  <toshok@ximian.com>
4199         * PropertyGrid.cs:
4200         - set the initial SelectedGridItem if we can.
4202         - Exclude non-mergable properties only if we're merging > 1
4203         object.  Merging 1 object isn't really merging, obviously.
4205         - Handle PropertySort.NoSort just like Alphabetical, which is
4206         wrong of course, but at least gets things on the screen.
4207         
4208         * PropertyGridView.cs:
4209         - Add method "FindFirstItem" which finds the first property grid
4210         item, so we can select it by default.
4212         - make use of GridEntry.CanResetValue.
4214         - Don't call RedrawBelowItemOnExpansion here anymore, the
4215         individual GridEntry's will do that.
4217         - Remove the ITypeDescriptorContextImpl internal class.
4218         
4219         * GridEntry.cs:
4220         - this class needs to implement ITypeDescriptorContext, as it's
4221         what MS's PropertyDescriptorGridEntry does, which means we can
4222         remove the ITypeDescriptorContextImpl internal class from
4223         PropertyGrid.cs.  This fixes the crashing portion of bug #79829.
4225         - keep a reference to our PropertyGridView, and move the call to
4226         RedrawBelowItemOnExpansion here from PGV.  This means
4227         programmaticly setting Expanded actually does something visible.
4229         - add a CanResetValue() function which takes into account our
4230         possibly multiple "selected_objects" in the merged case.  Shifting
4231         PropertyGridView to use this method fixes another unreported
4232         crasher found running the test for #79829.
4234         - when Top or Bounds is updated, make sure the PropertyGridTextBox
4235         is updated to reflect this.
4237         * CategoryGridEntry.cs: the ctor takes the PGV now.
4238         
4239 2006-11-06  Jackson Harper  <jackson@ximian.com>
4241         * TextControl.cs: These are 1 based.
4242         * TextBoxBase.cs: When setting the selected text, don't change the
4243         selected text tags, this is done by ReplaceText, just position the
4244         cursor at the end of the new text.
4246 2006-11-06  Alexander Olk  <alex.olk@googlemail.com>
4248         * ListView.cs: Allow label edit only when, when LabelEdit is
4249           set to true.
4251 2006-11-06  Jackson Harper  <jackson@ximian.com>
4253         * TextControl.cs: If a suitable wrapping position isn't found,
4254         just wrap right in the middle of a word.
4256 2006-11-06  Alexander Olk  <alex.olk@googlemail.com>
4258         * ListView.cs, ListViewItem.cs: Implement LabelEdit. Fixes
4259           bug #79820.
4261 2006-11-06  Jackson Harper  <jackson@ximian.com>
4263         * TreeView.cs: Can't use the VisibleCount property when setting
4264         scrollbar heights, because this doesn't take into account whether
4265         or not the horz scrollbar just came visible.
4267 2006-11-05  Everaldo Canuto  <everaldo@simios.org>
4269         * MenuAPI.cs: Deactivate menu on mouse up when menus it is already
4270         activated.  Fixes #79369, #79832.
4272 2006-11-05  Alexander Olk  <alex.olk@googlemail.com>
4274         * FileDialog.cs: *sigh* Because of recent runtime changes (r67043) I
4275           had to remove support for links that point to a directory. FileInfo
4276           returns no usefull information (means, the directory they point to)
4277           for such links. Replaced some empty string ("") with String.Empty.
4279 2006-11-04  Gert Driesen  <drieseng@users.sourceforge.net>
4281         * TreeNodeCollection.cs: To match MS, in 1.0 profile throw 
4282         NullReferenceException when attempting to remove node that is not in
4283         collection. Throw NullReferenceException when null is passed to 
4284         Remove. Allow first element of the collection to be removed. Fixes
4285         bug #79831.  In GetEnumerator ().Current return null if positioned 
4286         before the first element of the collection. In GetEnumerator ().Reset,
4287         position before first element of the collection.
4289 2006-11-04  Gert Driesen  <drieseng@users.sourceforge.net>
4291         * PropertyGrid.cs: To match MS, remove default title and description
4292         for panel. Fixed tooltips for Categorized and Alphabetic toolbar
4293         buttons.
4295 2006-11-04  Chris Toshok  <toshok@ximian.com>
4297         * Theme.cs: add a Clamp method, just for kicks.
4299         * ThemeWin32Classic.cs: clamp all color components to [0..255].
4301 2006-11-04  Chris Toshok  <toshok@ximian.com>
4303         * Form.cs: if the form isn't visible, Close() does nothing.
4305 2006-11-03  Chris Toshok  <toshok@ximian.com>
4307         * Form.cs (Close): if the form is modal, don't Dispose of it, only
4308         Hide it.
4309         (WndProc): don't Dispose after handling the WM_CLOSE message.
4311         * Application.cs (RunLoop): toplevels is a list of Forms, so treat
4312         them as such, instead of using casts from Control to Form.  Also,
4313         don't Dispose of the modal dialog when we fall out of the loop -
4314         Close() it instead.
4316         fixes bug #79813.
4318 2006-11-03  Chris Toshok  <toshok@ximian.com>
4320         * Control.cs (Dispose): only go through the dispose thing if we're
4321         @disposing, and we haven't already been disposed.  Fixes bug
4322         #79814.
4324         * Form.cs: no reason to call "base.Dispose()" here instead of
4325         "Dispose()".
4327 2006-11-03  Mike Kestner  <mkestner@novell.com>
4329         * ComboBox.cs : use ToString instead of casts in AddItem for
4330         sorting functionality.  Fixes #79812.
4332 2006-11-03  Chris Toshok  <toshok@ximian.com>
4334         * Application.cs: pave the way for actually using the thread
4335         exception dialog.  it's ifdefed out at the moment.
4337 2006-11-03  Chris Toshok  <toshok@ximian.com>
4339         * ThreadExceptionDialog.cs: until we get a better layout, actually
4340         hide the details textbox and label when we shouldn't see them.
4342 2006-11-03  Jackson Harper  <jackson@ximian.com>
4344         * TextBoxBase.cs: Don't bail from the scrollbar calcs for non
4345         multiline textboxes anymore.  This method also determines the
4346         width/height of a textboxes canvas area.
4347         - Sorta a revert of the last patch.  For multiline just position
4348         the controls, then bail.  This way the scrollbar width won't be
4349         altered.
4351 2006-11-03  Everaldo Canuto  <everaldo@simios.org>
4353         * ThemeWin32Classic.cs: Dont paint inner lines of 3D border when
4354         it dont need.  Fixes #79537.
4356 2006-11-02  Jackson Harper  <jackson@ximian.com>
4358         * X11Dnd.cs: We always allow copy, since XDND implies Copy.  Also
4359         send the status after firing the DndOver event.
4361 2006-11-02  Rolf Bjarne Kvinge  <RKvinge@novell.com>
4363         * TrackBar.cs: Now orientation only switches height / width if
4364         the control's handle is created (Win32 does it like this). Also 
4365         fixed a typo in ToString() for a test to pass, changed the 
4366         exception thrown in set_LargeChange and set_SmallChange to 
4367         match Win32 behaviour, and added TrackBar tests to the unit 
4368         tests.
4370 2006-11-02  Chris Toshok  <toshok@ximian.com>
4372         * XplatUIX11.cs: the atom we want is _NET_WM_STATE_SKIP_TASKBAR,
4373         not _NET_WM_STATE_NO_TASKBAR.
4375 2006-11-02  Jackson Harper  <jackson@ximian.com>
4377         * TextControl.cs: Increment count by one, since in the update view
4378         count - 1 is used.
4380 2006-11-02  Jackson Harper  <jackson@ximian.com>
4382         * TextBoxBase.cs: Use client rectangle not bounds for checking if
4383         the mouse is in the client rectangle (duh).
4385 2006-11-02  Rolf Bjarne Kvinge  <RKvinge@novell.com>
4386         
4387         * TrackBar.cs: Fixed trackbar jumping around when clicking
4388         on it - the trackbar was not detecting correctly at which
4389         side of the thumb the click was done. (fixes #79718)
4391 2006-11-02  Everaldo Canuto  <everaldo@simios.org>
4393         * ListBox.cs: scroll visible area when change SelectedIndex to
4394         a non visible area.  Fixes #79481.
4396 2006-11-01  Jackson Harper  <jackson@ximian.com>
4398         * TextControl.cs: When replacing the selection move the selection
4399         start/end/anchor to the end of the new text.
4401 2006-11-01  Jackson Harper  <jackson@ximian.com>
4403         * XplatUIWin32.cs: When setting the parent change the controls
4404         visibility to it's visibility flag, not to it's old parents
4405         visibility (.Visible walks the parent chain).
4407 2006-11-01  Chris Toshok  <toshok@ximian.com>
4409         * XplatUIX11.cs: revert the #79790 fix, as the simple.
4410         XSetTransientForHint fix breaks paint .net's tool windows.  more
4411         work needed for that one.
4413 2006-11-01  Chris Toshok  <toshok@ximian.com>
4415         * ScrollBar.cs: throw ArgumentException instead of Exception in
4416         LargeChange/SmallChange setters.  fixes unit tests.
4418 2006-10-31      Andreia Gaita <shana.ufie@gmail.com>
4420         * ContainerControl.cs: reverted rev.67183 (which was itself
4421         a reversion of rev.66853... eh).
4422         
4423         * Control.cs: Fixes Reflector hang by changing Focus() call
4424         to what it was before rev.66643 (calling Select() here sets 
4425         ActiveControl, which in some situations calls back Focus and 
4426         eventually does a stack overflow). Temp fix.    
4427         Changes to GetNextControl() to not look for children to select when
4428         parent cannot be selectable (so it looks for siblings instead)  
4429         
4430 2006-10-31  Mike Kestner  <mkestner@novell.com>
4432         * CheckedListBox.cs : off by one error in returned index from
4433         ObjectCollection.Add.  Fixes #79758.
4435 2006-10-31  Chris Toshok  <toshok@ximian.com>
4437         * UpDownBase.cs: remove the OnGotFocusInternal/OnLostFocusInternal
4438         calls for the textbox/spinner, to keep from recursing to the point
4439         where we crash.  Fixes #79760.
4441 2006-10-31  Chris Toshok  <toshok@ximian.com>
4443         * ListControl.cs (set_SelectedValue): don't throw exceptions on
4444         null/"" value, just return.  matches ms's behavior and fixes some
4445         failing tests.
4447 2006-10-31  Chris Toshok  <toshok@ximian.com>
4449         * Control.cs (set_Capture): make a logic a little easier to
4450         follow.
4452         * XplatUIX11.cs (CleanupCachedWindows): zero out the Grab window
4453         if it's being destroyed.  A necessary fix surely, but a bandaid
4454         also, to fix the stuck capture problem in bug #78413.
4456 2006-10-31  Chris Toshok  <toshok@ximian.com>
4458         * XplatUIX11.cs: fix a couple of compiler warnings, and follow the
4459         convention of clearing hwnd.ClientRect when we set the
4460         width/height (so it'll be recalculated by Hwnd).
4462 2006-10-31      Andreia Gaita <shana.ufie@gmail.com>
4464         * ContainerControl.cs: reversed Contains check from
4465         ActiveControl due to hanging problems. This fix
4466         partly regresses #79667 (button does not have
4467         initial focus), so this might be a symptom for 
4468         a larger parenting problem (set_ActiveControl
4469         is being called but the child control does
4470         not have the parent set yet?)   
4471         
4472 2006-10-31  Mike Kestner  <mkestner@novell.com>
4474         * MenuAPI.cs : fix keynav when menu is click activated.
4476 2006-10-31  Jonathan Pobst  <monkey@jpobst.com>
4478         * ToolStrip*: Version 0.2.
4480         * MenuStrip.cs: Version 0.1.
4482         * Form.cs: Add a 2.0 MenuStrip tracker like the 1.1 Menu one.
4484 2006-10-30  Chris Toshok  <toshok@ximian.com>
4486         [ fixes the oversized notify icon issue in bug #79745 ]
4487         
4488         * NotifyIcon.cs: scale the icon down to the size we're given by
4489         the XplatUI layer (this would be faster if we did it once instead
4490         of whenever we paint..)  Also, remove the WM_NCPAINT handling,
4491         since it's never invoked.
4493         * XplatUIX11.cs: the gnome and kde systrays use icons that are 24
4494         pixels high by default, so let's hardcode our systray icon to that
4495         size.  The SYSTEM_TRAY protocol should really have a way for
4496         client apps to query for the correct icon size.. but oh well.  A
4497         couple of patches to deal with the screwy client_window ==
4498         whole_window notifyicon stuff (we don't want to PerformNCCalc, for
4499         instance, and also make sure we don't XSelectInput twice).
4501 2006-10-30  Chris Toshok  <toshok@ximian.com>
4503         * Control.cs: ugh, the unit test fix (CH11, yesterday) breaks when
4504         recreating forms.  Control recreation is the bane of my existence.
4505         Fix it in a way that keeps everyone happy.
4507 2006-10-30  Chris Toshok  <toshok@ximian.com>
4509         * XplatUIX11.cs: use StructureNotifyMask on all whole_windows, not
4510         just non-CHILD ones.  otherwise sometimes scrollbars end up with
4511         client_windows not being resized to the proper size (ReportBuilder
4512         shows this extremely well).
4514 2006-10-30  Chris Toshok  <toshok@ximian.com>
4516         * XplatUIX11.cs (SetWMStyles): reinstate the XSetTransientForHint
4517         for non-WS_EX_APPWINDOW windows.  This is what keeps them from
4518         showing up in the gnome taskbar.  Fixes bug #79790.
4520 2006-10-30  Chris Toshok  <toshok@ximian.com>
4522         * ApplicationContext.cs: guard against a NRE.
4524         * Application.cs: null out the old MainForm for the context, so we
4525         don't try to use it again once it's disposed.  Fixes bug #79783.
4527 2006-10-30  Chris Toshok  <toshok@ximian.com>
4529         * DataGrid.cs (set_DataSource, set_DataMember): if we have a
4530         BindingContext, set the data source directly, otherwise do the
4531         lazy approach - the actual ListManager will be created when we get
4532         a BindingContext. Fixes bug #79700.
4534 2006-10-30  Jonathan Pobst  <monkey@jpobst.com>
4536         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIOSX.cs,
4537           XplatUIX11.cs: Remove old 2 parameter SetVisible.
4539         * Control.cs: Use the new 3 parameter SetVisible with activate = true.
4541 2006-10-30  Jonathan Pobst  <monkey@jpobst.com>
4543         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs: Add an overload
4544         of SetVisible that allows a window to be shown, but not activated.
4545         This is needed on Windows for MenuStrip, and can probably be used
4546         with MainMenu and ComboBox to fix the focus stealing issues on
4547         Windows.
4549         * XplatUIOSX.cs, XplatUIX11.cs: Not needed, call existing SetVisible.
4551 2006-10-30  Alexander Olk  <alex.olk@googlemail.com>
4553         * PictureBox.cs: Fix the output of the ToString method.
4555 2006-10-29  Chris Toshok  <toshok@ximian.com>
4557         * Control.cs (get_TopLevelControl): fix bug #79781.
4559 2006-10-29  Chris Toshok  <toshok@ximian.com>
4561         * ListControl.cs (set_DataSource): throw Exception here, not
4562         ArgumentException, to match MS behavior.
4564 2006-10-29  Chris Toshok  <toshok@ximian.com>
4566         * Form.cs: remove the try-catch's around calls to GetWindowState.
4567         We can just check the return value.
4569         * XplatUIX11.cs: don't throw exceptions from GetWindowState.
4570         Instead return -1.
4572         * XplatUI.cs: Add note about additional return value for
4573         GetWindowState.
4575 2006-10-29  Chris Toshok  <toshok@ximian.com>
4577         * Control.cs (CreateHandle): when we create our handle, we also
4578         create the handles of our child controls.  Fixes one of the
4579         Control unit tests (CH11).
4581 2006-10-28  Alexander Olk  <alex.olk@googlemail.com>
4583         * MimeIcon.cs: If a gnome icon doesn't exist add a default icon.
4585 2006-10-28  Alexander Olk  <alex.olk@googlemail.com>
4587         * ThemeClearlooks.cs: A little speedup.
4589 2006-10-27  Chris Toshok  <toshok@ximian.com>
4591         * Control.cs: implement Control.FromChildHandle in a way that
4592         matches the docs (and fixes the failed test.)
4594 2006-10-27  Chris Toshok  <toshok@ximian.com>
4596         * DataGridTableStyle.cs: reproduce buggy MS behavior (with
4597         comments).
4599         * DataGrid.cs: implement ResetForeColor such that the tests
4600         succeed.
4601         
4602 2006-10-27  Chris Toshok  <toshok@ximian.com>
4604         * ToolBarButton.cs: setting text/tooltiptext to null results in it
4605         being set to "".  Fixes bug #79759.
4607 2006-10-27  Jackson Harper  <jackson@ximian.com>
4609         * TextControl.cs: We need to clear the entire selection area when
4610         setting the start, otherwise multiline selections are still
4611         visible.
4613 2006-10-26  Chris Toshok  <toshok@ximian.com>
4615         * PropertyGridView.cs: 
4617         - ifdef all the code specific to the double
4618         buffer case, and provide some alternatives in the non-doublebuffer
4619         code, which makes heavy use of XplatUI.ScrollWindow to move things
4620         around without having to invalidate (and cause flicker).  There
4621         are still some drawing problems in the non-doublebuffered case, so
4622         DOUBLEBUFFER is defined by default.
4624         - Fix the way dropdowns are handled.  now we explicitly watch for
4625         the events which might cause the dropdown to close, and break out
4626         of the nested event loop there.  This gets rid of all Capture
4627         code, at the expense of the Msg special casing.  Seems to work,
4628         though, and fixes bug #79743.
4630 2006-10-27  Rolf Bjarne Kvinge <RKvinge@novell.com>
4631         * Control.cs: SetIsRecreating now recreates implicitly added
4632         child controls as well. Finally fixes #79629. The flag passed to 
4633         SetIsRecreating has also been removed since it wasn't used.
4634         
4635 2006-10-26  Carlos Alberto Cortez <calberto.cortez@gmail.com>
4637         * PageSetupDialog.cs: Clean some code, fix some bits, 
4638         add some checks, and add a printer sub-dialog.
4640 2006-10-26  Chris Toshok  <toshok@ximian.com>
4642         * PropertyGrid.cs: make set_SelectedObject call
4643         set_SelectedObjects, and move the duplicate logic to the
4644         SelectedObjects setter.  Also, raise SelectedObjectsChanged.
4646         * PropertyGridView.cs: hide the textbox when we get a
4647         SelectedObjectsChanged event.
4649         Fixes bug #79748.
4651 2006-10-26  Chris Toshok  <toshok@ximian.com>
4653         * PropertyGridView.cs: deal with the type converter not supporting
4654         GetStandardValues() or GetStandardValues() returning null, which
4655         is does in the default case.  Fixes #79742.
4657 2006-10-25  Andreia Gaita <shana.ufie@gmail.com>
4659         * CheckedListBox.cs: nunit no longer crashes when selecting 
4660         Project/Edit menu option
4661         
4662 2006-10-25  Andreia Gaita <shana.ufie@gmail.com>
4664         * MenuAPI.cs: prevent ExecFocusedItem from blowing up if there
4665         is no menu selected. fixes #79739
4667 2006-10-25  Chris Toshok  <toshok@ximian.com>
4669         * PropertyGridView.cs: factor out the splitter invalidation code
4670         into the SplitterPercent setter, and for kicks implement the
4671         Ctrl-Left/Ctrl-Right handling that moves the splitter by a small
4672         amount in either direction.
4674 2006-10-25  Chris Toshok  <toshok@ximian.com>
4676         * PropertyGridView.cs: do some cleanup of the brush used to draw
4677         text - read only fields should be grayed out.  not sure how to do
4678         this with the textbox, though.  but the textbox's should also be
4679         readonly now at least.  Also, hide/show the textbox when resizing
4680         the control.
4681         
4682         * CursorConverter.cs: use System.Reflection when getting the
4683         properties of Cursors, as TypeDescriptor.GetProperties isn't
4684         returning static properties.
4686 2006-10-25  Chris Toshok  <toshok@ximian.com>
4688         * PropertyGridView.cs: factor out the up/down handling, and reuse
4689         it for page up/down.  also add End/Home support.
4691 2006-10-25  Chris Toshok  <toshok@ximian.com>
4693         * PropertyGridView.cs:
4695         - ensure the selected grid item is visible in the scrolled area,
4696         fixes bug #79572.
4698         - fix Keys.Down handling when you're on the last item in the
4699         propertygrid.
4701 2006-10-25  Mike Kestner  <mkestner@novell.com>
4703         * MenuAPI.cs : set the ActiveTracker for MainMenu non-popup 
4704         clicks too.  Fixes #79725.
4706 2006-10-24  Chris Toshok  <toshok@ximian.com>
4708         * PropertyGrid.cs: use property.Converter instead of
4709         TypeDescriptor.GetConverter(property.PropertyType), so we catch
4710         TypeConverters declared on the property as well as on the
4711         PropertyType.  Fixes bug #79678.
4713 2006-10-24  Alexander Olk  <alex.olk@googlemail.com>
4715         * MimeIcon.cs, Mime.cs:
4716           Fallback to the default platform handler if no shared mime info
4717           stuff exists (fixes #79693).
4719 2006-10-20 Andreia Gaita <shana.ufie@gmail.com>
4720         * ContainerControl.cs: Incorrect contains check in ActiveControl 
4721         from previous fix (duh).
4723 2006-10-20  Chris Toshok  <toshok@ximian.com>
4725         * PropertyGridView.cs: the dropdown should be MIN(number of items
4726         in list, 15).  Fixes #79551.
4728 2006-10-20 Andreia Gaita <shana.ufie@gmail.com>
4729         Fixes #79384, #79394, #79652, #79667
4730         * Application.cs: 
4731         
4732         - Modal windows are now destroyed in the proper order for windows
4733         
4734         * ContainerControl.cs:
4735         
4736         - ActiveControl setter has more conditions on when to return:
4737                 - if we're reselecting the active control, but it actually
4738                 didn't have focus (window hidden or some such), it runs
4739                 - if the active control being selected doesn't actually 
4740                 exist in the container, it returns
4741         
4742         * Form.cs
4743         
4744         - The ShowDialog now gets the current form as the owner when
4745         invoking without parameters, and correctly activates the owner 
4746         when returning
4747         
4748         * MessageBox.cs
4749         
4750         - MessageBox now catches the Escape key to exit
4752 2006-10-20  Chris Toshok  <toshok@ximian.com>
4754         * PropertyGridView.cs: fix a number of issues (bug #78565, and
4755         most of bug #79676):
4757         - you can navigate around the property grid with the arrow keys.
4759         - the dropdown is sized properly when the pg has a vertical
4760         scrollbar.
4762         - fix the indentation for subentries, and properly select the
4763         entire label rect.
4765         - fix the gray bar's drawing (only draw it to the last element,
4766         not for the height of the control.  Also make sure we draw that
4767         last horizontal grid line.
4769         - use the same mechanism the datagrid uses wrt the editing textbox
4770         when scrolling/resizing/etc.  Namely, we hide it first, do the
4771         operation, then show it again (if it's still visible).
4772         
4773         - aggressively remove a lot of unnecessary refreshes (and also
4774         calls to Invalidate(). call more limited variants, and only redraw
4775         what we need.)
4776         
4777         * PropertyGrid.cs:
4779         - when we're populating the merged collection, fill in the UI
4780         parent with either the passed in item, or the category item we
4781         create.
4783         - remove the Refresh call from the BorderHelpControl.OnSizeChanged.
4785         * GridItem.cs: drop some fully qualified names.
4786         
4787         * GridEntry.cs: add a "UIParent", which is basically the parent
4788         treenode.
4790         * GridItemCollection.cs: add an IndexOf method.
4792 2006-10-20  Mike Kestner  <mkestner@novell.com>
4794         * MainMenu.cs : go back to Draw in OnMenuChanged.  Until we get
4795         a working win32 NC invalidation mechanism, we can't invalidate
4796         menus.  [Fixes #79705]
4798 2006-10-20  Mike Kestner  <mkestner@novell.com>
4800         * ListBox.cs : don't update the VScrollbar if the list is empty,
4801         just hide it.  [Fixes #79692]
4803 2006-10-20  Jackson Harper  <jackson@ximian.com>
4805         * RichTextBox.cs: Handle some special chars better, and don't skip
4806         the entire group when we encounter a special char that we don't
4807         handle correctly.
4809 2006-10-18  Chris Toshok  <toshok@ximian.com>
4811         * PropertyGridView.cs: address a number of issues from bug #79676,
4812         mostly of the cosmetic variety.
4814         - The highlight rectangle for indented items not extends all the
4815         way to the left.
4817         - Indented items aren't indented so much.
4819         - the dropdown is properly sized width-wise if the pg has a
4820         vertical scrollbar.
4822 2006-10-18  Chris Toshok  <toshok@ximian.com>
4824         * XplatUIX11.cs (SystrayAdd): a rather convoluted change, but the
4825         systray stuff is rather convoluted to begin with.
4827         systray icons are a single window for some reason (that I haven't
4828         figured out yet), and for them, client_window == whole_window.
4829         Given the way the tests are structured elsewhere to determine
4830         which paints are pending (client vs. nc), that situation will
4831         always yield PAINT, not NCPAINT.  So, if we have a pending
4832         nc_expose and no pending expose, remove the hwnd from the paint
4833         queue, and also set nc_expose_pending to false, to keep us from
4834         blocking further expose's adding the hwnd to the paint queue.
4836         phew.  like i said, a rather convoluted change.  Fixes the
4837         notifyicon repaint issues in bug #79645.
4839 2006-10-18  Chris Toshok  <toshok@ximian.com>
4841         * Form.cs: when getting the backcolor of the form, don't get
4842         base.BackColor, as this allows parents to influence the background
4843         color.  This breaks mdi forms.  Instead, if the background_color
4844         is empty, return the default.
4846 2006-10-18  Chris Toshok  <toshok@ximian.com>
4848         * XplatUIX11.cs: change some debug ifdefs, and return XGetParent
4849         to being private instead of internal static.
4851         * Control.cs: remove all the stupid ParentWaitingOnRecreation
4852         crap, it wasn't working for more deeply nested controls anyway,
4853         and we already have the is_recreating flag - use that instead.
4854         Before calling DestroyHandle in RecreateHandle, recurse through
4855         the control tree setting it to true.  this returns the recreate
4856         code to much of its original simplicity, while now guaranteeing we
4857         actually recreate everything we're supposed to.  This change gets
4858         fyireporting actually showing mdi children.
4860 2006-10-17  Chris Toshok  <toshok@ximian.com>
4862         * Form.cs: remove some debug spew, and collapse some duplicate
4863         code at the end of SetClientSizeCore.
4865         * XplatUIX11.cs: 
4866         - add some more debug spew here too wrt Destroy handling.
4867         - don't call hwnd.Dispose in DestroyWindow, it's effectively done
4868         in Control's handling of WM_DESTROY.
4869         - Remove the handling of zombie window DestroyNotifies from the
4870         event loop - we don't need it.  Now the only DestroyNotifies we
4871         actually handle are ones generated by X.
4872         - When sending _NET_ACTIVE_WINDOW, the first param should be 1, to
4873         match gtk's (functioning) handling of this. This keep metacity
4874         from leaving droppings in the form of wm borders with no window
4875         contents all over the place.
4877         * Control.cs:
4878         - add a bunch of debug spew wrt control recreation.
4879         - fix a bug where we weren't tracking Visible properly on
4880         recreated hwnds.
4881         - fixed the WM_PAINT double buffer handling to support re-entrant
4882         calls (yes, i know it's gross, but it's happening to us).
4884 2006-10-17  Rolf Bjarne Kvinge  <rolfkvinge@ya.com>
4885         * ThemeWin32Classic.cs: changed drawing of selected days
4886         to make them look better.
4888 2006-10-16  Chris Toshok  <toshok@ximian.com>
4890         * Hwnd.cs: replace the user_data/client_dc/non_client_dc with
4891         drawing_stack.  Nuke the ClientDC/NonClientDC properties.
4893         * XplatUIX11.cs: move away from using hwnd.client_dc and
4894         hwnd.non_client_dc and on to a stack of dc's (and in window's
4895         case, PAINTSTRUCT's), so we can deal with nested Paint calls
4896         without puking or not disposing of Graphics objects.
4898         * XplatUIOSX.cs: same.
4900         * XplatUIWin32.cs: same.
4902 2006-10-03  Alexander Olk  <alex.olk@googlemail.com>
4904         * FileDialog.cs: Don't call on_directory_changed inside
4905           OnSelectedIndexChanged (it changes the SelectedIndex too).
4906           Instead move it to OnSelectionChangeCommitted.
4908 2006-10-13  Chris Toshok  <toshok@ximian.com>
4910         * XplatUIX11.cs: more Destroy work.  the current code does the
4911         following things, in order:
4913         1. Enumerates all handles of all controls at or below the one
4914         being destroyed, in pre-order.  As it is doing this, it marks the
4915         handles as zombie and clears all references to them.
4916         
4917         2. calls XDestroyWindow on the window passed in.
4919         3. SendMessage's WM_DESTROY to all he handles in the accumulated
4920         list.
4922 2006-10-13  Chris Toshok  <toshok@ximian.com>
4924         * XplatUIX11.cs: set hwnd.zombie to true before calling
4925         SendMessage (WM_DESTROY).  this keeps us from marking the new
4926         window a zombie, and also keeps us from calling sendmessage at
4927         all.
4929 2006-10-13  Jackson Harper  <jackson@ximian.com>
4931         * TextControl.cs: Do not show the caret and selection at the same
4932         time.  Reduces ugliness by 35%.
4934 2006-10-13  Chris Toshok  <toshok@ximian.com>
4936         * XplatUIX11.cs (SendWMDestroyMessages): set the hwnd to be a
4937         zombie after we do the recursive call, so we actually do call
4938         SendMessage on the children controls.
4939         (GetMessage): if we find a pending paint event for a zombie hwnd,
4940         remove the hwnd from the paint queue, or else it will always be
4941         there (and we'll effectively loop infinitely)
4943 2006-10-13  Mike Kestner  <mkestner@novell.com>
4945         * MenuItem.cs : add Selected format under keynav too.
4946         Fixes #79528.
4948 2006-10-13  Gert Driesen  <drieseng@users.sourceforge.net>
4950         * PropertyGrid.cs: Fixed some NRE's and small difference between our
4951         implementation and that of MS.
4953 2006-10-13  Chris Toshok  <toshok@ximian.com>
4955         * Control.cs (OnInvalidated) only futz with the invalid_region if
4956         the control is double buffered.  this fixes the apparent hang in
4957         the ListView unit tests.  Someone needs to make the
4958         BeginEndUpdateTest not call OnInvalidated 15004 times, though..
4960 2006-10-13  Chris Toshok  <toshok@ximian.com>
4962         * PropertyGridView.cs:
4964         - do a little refactoring so that only one place calls
4965         dropdown_form.Hide, and that is CloseDropDown.  make everywhere
4966         else call that.  Also make it Refresh, since there are redraw bugs
4967         otherwise (we should take a look at that...)
4969         - do a little more refactoring work to share the body of code
4970         involved with the drop down.  it was duplicated in the code
4971         dealing with the listbox handling and in the code dealing with the
4972         UITypeEditors.
4974         - add a Capture to the dropdown form's control once it's
4975         displayed, and add a MouseDown handler that checks to make sure
4976         the position is inside the control.  If it's not, close the
4977         dropdown.  This fixes #78190.
4979         - in SetPropertyValueFromUITypeEditor, only call SetPropertyValue
4980         if the value is different than the initial value.
4981         
4982 2006-10-13  Andreia Gaita  <shana.ufie@gmail.com>
4984         * Control.cs: see #78650
4985         - Fixed GetNextControl for several cases:
4986                 - Changed FindFlatForward to return 
4987                 correct sibling control when more than one
4988                 control has same TabIndex as the currently 
4989                 focused one.
4990                 - Changed FindFlatBackward to loop children
4991                 from last to first and apply same logic as in
4992                 FindFlatForward
4993                 - Changed FindControlForward to search for
4994                 children when control is not a container
4995                 but has children, or search for siblings if
4996                 control is a container...
4997                 - Changed FindControlBackward   to continue
4998                 searching for child controls when hitting 
4999                 Panel-like parents
5000                 
5001         - Fixed Focus method to update ActiveControl
5002         (FocusTest.FocusSetsActive failure)
5003         
5004         * TabControl.cs:
5005         - Focus rectangle now refreshes when gaining
5006         or losing focus
5007         - Removed grab for Tab key on IsInputKey that 
5008         was keeping tab navigation from working (#78650)
5010 2006-10-13  Chris Toshok  <toshok@ximian.com>
5012         * PropertyGridView.cs:
5013         - Rewrite SetPropertyValue to loop over SelectedGridItem's
5014         SelectedObjects.
5016         - Deal with GridItem.Value == null a few places.
5018         * PropertyGrid.cs: 
5019         - replace the PopulateGridItemCollection with a pair of methods
5020         which compute the intersection of all the properties in the
5021         SelectedObjects array.  Fixes #79615.
5023         - Throw ArgumentException from set_SelectedObjects if there's a
5024         null in the array.
5026         - Add GetTarget method which can be used to traverse up the
5027         GridItem.Parent chain.  It depends on the assumption that
5028         selected_objects for different GridEntries are always in the same
5029         order (a safe assumption).  Use this method and loop over all the
5030         selected objects in the entry when calling RemoveValueChanged and
5031         AddValueChanged.
5032         
5033         * GridEntry.cs: Make this handle multiple selected objects.
5034         .Value returns null if not all the selected objects share the same
5035         value.
5037 2006-10-12  Jonathan Pobst  <monkey@jpobst.com>
5038         * ToolStrip.cs, ToolStripButton.cs, ToolStripComboBox.cs,
5039           ToolStripControlHost.cs, ToolStripItem.cs, ToolStripLabel.cs,
5040           ToolStripProfessionalRenderer.cs, ToolStripProgressBar.cs,
5041           ToolStripSeparator.cs, ToolStripSplitStackLayout.cs,
5042           ToolStripTextBox.cs: Add accessibility, fix attributes/API and
5043         add additional functionality.
5045 2006-10-12  Mike Kestner  <mkestner@novell.com>
5047         * ErrorProvider.cs : new ToolTipWindow ctor sig.
5048         * HelpProvider.cs : new ToolTipWindow ctor sig.
5049         * ToolTip.cs : remove ToolTip param from Window sig since it is
5050         not used.
5051         * ToolBar.cs : add tooltip support.  Fixes #79565.
5053 2006-10-12  Rolf Bjarne Kvinge  <rolfkvinge@ya.com>
5055         * ComboBox.cs: move the events in set_SelectedIndex to 
5056         after the call to HighlightIndex in order to avoid 
5057         possible recursion and subsequent problems with the call
5058         to HighlightIndex and include a range check in 
5059         set_HighlightIndex. Fixes #79588
5060         
5061 2006-10-12  Rolf Bjarne Kvinge  <rolfkvinge@ya.com>
5063         * MonthCalendar.cs: When FirstDayOfWeek is default set firstday 
5064         to ui thread's settings instead of sunday. 
5065         * ThemeWin32Classic.cs: Localize the day string. Fixes #79563
5067 2006-10-12  Rolf Bjarne Kvinge  <rolfkvinge@ya.com>
5069         * DateTimePicker.cs
5070         * MonthCalendar.cs
5071         * ThemeWin32Classic.cs: rewrote DateTimePicker to fix bug #78364
5072         and implement missing functionality (selecting different parts 
5073         of the date and edit them individually with the keyboard).
5074         
5075 2006-10-11  Chris Toshok  <toshok@ximian.com>
5077         * Control.cs (OnInvalidated): fix NRE relating to last change.
5079 2006-10-11  Chris Toshok  <toshok@ximian.com>
5081         * XplatUIX11.cs (SetWMStyles): make sure we include the MAXIMIZED
5082         atoms in _NET_WM_STATE here if the window is maximized.  We need
5083         to do this because we're *replacing* the existing _NET_WM_STATE
5084         property, so those atoms will be lost otherwise, and any further
5085         call to GetWindowState will return Normal for a window which is
5086         actually maximized.  Fixes #79338.
5088 2006-10-11  Jackson Harper  <jackson@ximian.com>
5090         * TextControl.cs: Special case for setting selection end to
5091         selection start, we basically kill the anchor.
5092         - some todo comments.
5094 2006-10-11  Chris Toshok  <toshok@ximian.com>
5096         * Control.cs: switch to using an "invalid_region" to track which
5097         parts of the image buffer need updating.  This is more code than
5098         the simple fix from r66532.  That version just attempted to always
5099         fill the entire buffer on redraw, which turns out to be
5100         inefficient when invalidating small rectangles.  This version
5101         simply adds the invalid rectangle to the invalid region.  When we
5102         get any WM_PAINT message we see if it can be filled using the
5103         image buffer, and if it can't (if the paint event's clip rectangle
5104         is visible in the invalid region) we first fill the image buffer.
5105         So, the image buffer is still a cache, we just fill it lazily.
5107         * PaintEventArgs.cs: remove the SetClipRectangle method, we don't
5108         need it any longer.
5110 2006-10-11  Chris Toshok  <toshok@ximian.com>
5112         * XplatUIX11.cs (SetWindowPos): we need to update both position as
5113         well as size after calling XMoveResizeWindow.  This keeps us from
5114         ignoring future SetWindowPos calls.  Fixes the disappearing
5115         DateTimePicker in the ToolBarDockExample from bug #72499.
5117 2006-10-11  Chris Toshok  <toshok@ximian.com>
5119         * TextBoxBase.cs: reorder things a bit when it comes to
5120         resizing-causing-recalculation.  we were recalculating the
5121         document when our position was changed, which shouldn't happen.
5122         We only care about size changes.  Clear up some more redundant
5123         recalculation calls while I'm at it.  This makes the toolbar dock
5124         example snappy when you're just dragging toolbars around (since it
5125         causes a relayout whenever you move one.)
5127 2006-10-11  Chris Toshok  <toshok@ximian.com>
5129         * ToolBarButton.cs (get_Rectangle): this only returns
5130         Rectangle.Empty if Visible == false, or Parent == null.
5131         Parent.Visible doesn't matter.
5133 2006-10-10  Chris Toshok  <toshok@ximian.com>
5135         * Control.cs, PaintEventArgs.cs: "internal set { .. }" isn't loved
5136         by .net 1.1, so switch to an internal method instead.
5138 2006-10-10  Chris Toshok  <toshok@ximian.com>
5140         * Control.cs (WM_PAINT): when a control is double buffered we draw
5141         initially to the ImageBuffer and then copy from there.  But when a
5142         parent control which has child controls is double buffered, the
5143         initial drawing doesn't encompass the entire ClientRectangle of
5144         the parent control, so we end up with uninitialized bits (this is
5145         easily seen by dragging the top toolbar in
5146         wf-apps/ToolBarDockExample to the right, quickly).  The fix is to
5147         manually set the ClipRectangle of the paint_event (only the one we
5148         use to populate the ImageBuffer) to ClientRectangle.  Fixes more
5149         of the nastiness in bug #72499.
5151         * PaintEventArgs.cs: Add an internal setter for ClipRectangle,
5152         which we use in Control.cs's WM_PAINT handling.
5154 2006-10-10  Jackson Harper  <jackson@ximian.com>
5156         * TextBoxBase.cs: Finish off the autoscrolling stuff.
5158 2006-10-10  Chris Toshok  <toshok@ximian.com>
5160         * Cursor.cs: Apply a slightly different patch to the one suggested
5161         in #79609.
5163 2006-10-10  Jackson Harper  <jackson@ximian.com>
5165         * MenuItem.cs: Make sure to put the mdi child in the hashtable,
5166         not the parent form.
5167         * TextControl.cs: use difference in old line count vs new count to
5168         calculate how many lines were added, this takes into account soft
5169         line breaks properly.
5171 2006-10-10  Chris Toshok  <toshok@ximian.com>
5173         * LinkLabel.cs: don't call MeasureCharacterRanges against a
5174         rectangle located at 0,0 and the size of the text.  Use
5175         ClientRectangle instead.  This fixes rendering of non-left aligned
5176         link labels.
5178 2006-10-10  Jackson Harper  <jackson@ximian.com>
5180         * TextBoxBase.cs: When we set the selection start position the
5181         caret.
5182         * TextControl.cs: Need to update the caret when we decrement it to
5183         zero.
5184         - Make sure that the selection_visible flag gets reset to false if
5185         the selection isn't visible.  Before this you could get it set to
5186         visible by changing the selection start, then changing the end to
5187         equal the start.
5189 2006-10-09  Jackson Harper  <jackson@ximian.com>
5191         * TreeView.cs: Don't update scrollbars when we aren't visible.
5192         * TreeNodeCollection.cs: Only need to update scrollbars if being
5193         added to an expanded visible node or the root node.
5195 2006-10-09  Chris Toshok  <toshok@ximian.com>
5197         * XplatUIX11.cs (SendMessage): fix NRE.
5199 2006-10-09  Jackson Harper  <jackson@ximian.com>
5201         * TextBoxBase.cs: Implement horizontal autoscrolling.
5202         * TextControl.cs: Add a movement types that allows moving forward
5203         and backwards without wrapping.
5205 2006-10-09  Mike Kestner  <mkestner@novell.com>
5207         * ListViewItem.cs : layout changes for wrapped LargeIcon labels
5208         with focus "expansion" of labels.  Fixes #79532 and then some.
5209         * ThemeWin32Classic.cs : add LineLimit to ListView label format
5210         when wrapping.
5212 2006-10-09  Jackson Harper  <jackson@ximian.com>
5214         * TextBoxBase.cs: Set the default max values to MaxValue since
5215         we use the scrollbar for autoscrolling and the default value is
5216         100.  If we don't do this the caret won't keep up with typing
5217         after about 18 characters.
5218         * TextControl.cs: Make sure the selection is offset by the
5219         viewport x.  This fixes selection when using auto scrolling.
5221 2006-10-07  Andreia Gaita <shana.ufie@gmail.com>
5222         
5223         * Form.cs: The active control should be selected after the 
5224         OnLoad so that any child control initialization that affects
5225         the selection is done. Fixes #79406
5227 2006-10-06  Chris Toshok  <toshok@ximian.com>
5229         * XplatUIX11.cs: This is perhaps a dangerous change, but it seems
5230         to have no evil effects.
5232         - Stop selecting StructureNotifyMask on non-toplevel windows.
5234           The only way children should be resized is by using the SWF api,
5235           and we already send WM_WINDOWPOSCHANGED messages in those cases.
5236           Toplevel windows can be interacted with via the window manager,
5237           and so we keep the input mask there.
5239           The other event StructureNotifyMask gives us (that we care
5240           about) is DestroyNotify.  The code is already structured such
5241           that it assumes we won't be getting a DestroyNotify event for
5242           the window we pass to XDestroyWindow (which is what
5243           StructureNotifyMask is supposed to guarantee.)  So, that code
5244           shouldn't be affected by this either.
5246         - Stop selecting VisibilityChangeMask altogether.
5248           We weren't doing anything with the resulting events anyway.
5249         
5250         This vastly reduces the number of X requests and events we see
5251         when resizing/laying out a large ui.
5253 2006-10-06  Chris Toshok  <toshok@ximian.com>
5255         * ScrollableControl.cs (DisplayRectangle): we need to take into
5256         account the DockPadding regardless of whether or not auto_scroll
5257         == true.  rework this slightly to this effect, and fix bug #79606,
5258         and part of #72499 (you can now see the drag handles and drag
5259         toolbars around).
5261 2006-10-06  Gert Driesen  <drieseng@users.souceforge.net>
5263         * ListViewItem.cs: Collections of selected and checked items are now
5264         dynamically rebuilt. Whenever an item is (un)checked or (de)selected
5265         we mark the collection "dirty".
5266         * ListView.cs: Marked collections readonly. Modified UpdateSelection
5267         to only clear SelectedItems when a new item is selected and MultiSelect
5268         is enabled. CheckedItems and SelectedItems now subscribe to Changed
5269         event of ListViewItemCollection, and mark its list dirty whenever
5270         that event is fire. This allows us to return selected/checked items 
5271         in the same order as they are in the Items collection. This matches
5272         the MS behavior.
5274 2006-10-06  Chris Toshok  <toshok@ximian.com>
5276         * NotifyIcon.cs (HandleMouseUp): only show the context menu on
5277         right mouse clicks.  Fixes bug #79593.
5279 2006-10-06  Chris Toshok  <toshok@ximian.com>
5281         * Splitter.cs: doh, fix splitters that don't want to cancel the
5282         movement when you drag them.  Also, impose the limits on the
5283         values we send to the SplitterMovingEvent.  Fixes #79598.
5285 2006-10-06  Jackson Harper  <jackson@ximian.com>
5287         * TextBoxBase.cs: Ignore whether or not the scrollbar is enabled,
5288         since we use this for auto scrolling also.
5290 2006-10-05  Chris Toshok  <toshok@ximian.com>
5292         * DataGridBoolColumn.cs: Nuke the code from ConcedeFocus.  I'm
5293         beginning to think that most datagrid column types don't need this
5294         method.  Fixes bug #79392.
5296 2006-10-05  Chris Toshok  <toshok@ximian.com>
5298         * DataGrid.cs: move back to a more lazy scheme for creating the
5299         CurrencyManager, so we aren't updating it every time you set
5300         either DataSource or DataMember.  Also, don't call
5301         RecreateDataGridRows if the currency manager hasn't changed.
5303 2006-10-05  Chris Toshok  <toshok@ximian.com>
5305         * ComboBox.cs: by the time the OnSelectionChangeCommitted event is
5306         emitted, SelectedIndex should already be updated.  Fixes bug
5307         #78929.
5309 2006-10-05  Jonathan Pobst  <monkey@jpobst.com>
5311         * ToolStripComboBox.cs, ToolStripControlHost.cs, ToolStripProgressBar,
5312           ToolStripTextBox.cs: Initial commit.
5313         * ToolStripItem.cs: Fixes for OnLayout, BackColor, Parent.
5315 2006-10-05  Jackson Harper  <jackson@ximian.com>
5317         * TabControl.cs: We need to invalidate the tab control area when
5318         new ones are added (duh).
5320 2006-10-03  Chris Toshok  <toshok@ximian.com>
5322         * Form.cs (ProcessDialogKey): if the focused control is in this
5323         form and is a button, call its PerformClick method here.  Fixes
5324         #79534.
5326 2006-10-04  Jackson Harper  <jackson@ximian.com>
5328         * TabPage.cs: Ignore setting of Visible, and add an internal
5329         method for setting the controls visibility.  TabPage's Visible
5330         property is a little strange on MS, this seems to make us
5331         compatible, and fixes cases where people set all the tab pages to
5332         visible.
5333         * TabControl.cs: Use the new internal setting on tab pages
5334         visibility.
5336 2006-10-03  Mike Kestner  <mkestner@novell.com>
5338         * ComboBox.cs : raise Click on ComboTextBox clicks. Fixes #79555.
5340 2006-10-03  Mike Kestner  <mkestner@novell.com>
5342         * ListView.cs : use is_visible instead of Visible to check if 
5343         scrollbars should be placed/sized.  Also some max_wrap_width
5344         love for LargeIcon view.  [Fixes #79533]
5346 2006-10-03  Atsushi Enomoto  <atsushi@ximian.com>
5348         * TextControl.cs :
5349           Make set_TextAlign() do actually update the align. Fixed #78403.
5351 2006-10-03  Chris Toshok  <toshok@ximian.com>
5353         * DataGrid.cs: fix a crash when switching datasources if the
5354         vertical scrollbar is at someplace other than Value = 0.  Also,
5355         reduce the number of recalculation passes we do in SetDataSource
5356         from 2 to 1.
5358 2006-10-03  Jackson Harper  <jackson@ximian.com>
5360         * TextBoxBase.cs: Move the if value the same bail check up, we
5361         don't want to empty the document if it is already empty, this
5362         seems to severly mess up the caret.  TODO: I should probably fix
5363         the empty statement to update teh caret somehow.
5365 2006-10-03  Chris Toshok  <toshok@ximian.com>
5367         * ThemeWin32Classic.cs, DataGrid.cs: some changes so that the
5368         incredibly hacky Windows.Forms FAQ autosize rows entry (it uses
5369         reflection, an internal row type, properties on said type, etc.)
5370         will work with our datagrid.  Fixes #79531.
5372 2006-10-03  Alexander Olk  <alex.olk@googlemail.com>
5374         * FileDialog.cs: Don't crash if a path is not accessible
5375           (System.UnauthorizedAccessException). Fixes #79569.
5376         * MimeIcon.cs: Workaround for a Uri bug. Unix paths/files can have
5377           a ':' too. Return unknown icon for those paths/files.
5379 2006-10-03  Sebastien Pouliot  <sebastien@ximian.com>
5381         * ToolTip.cs: Fix rare, but possible, NRE on MouseEnter when 
5382         GetContainerControl returns null.
5384 2006-10-02  Chris Toshok  <toshok@ximian.com>
5386         * XplatUIX11.cs (GetWindowState): use hwnd.client_window in the
5387         call to XGetWindowAttributes instead of "handle".  fixes an X
5388         error using notifyicon after the NotifyIconWindow to Form base
5389         class switch.
5391 2006-10-02  Chris Toshok  <toshok@ximian.com>
5393         * XplatUIX11.cs (QueryPointer): new function, encapsulating the
5394         server grab and looping we need to do to get down to the most
5395         deeply nested child window.
5396         (SetCursorPos): use QueryPointer instead of GetCursorPos, and call
5397         QueryPointer again after the WarpPointer so we can generate a
5398         proper (fake) MotionNotify event to be enqueued in the destination
5399         window's queue.
5400         (GetCursorPos): call QueryPointer.
5402         Fixes #79556.
5404 2006-10-02  Jackson Harper  <jackson@ximian.com>
5406         * NotifyIcon.cs: Derive the notify icon from a form, so things
5407         like FindForm work on it.
5408         - Swallow the WM_CONTEXTMENU message, since that is generated on
5409         mouse down, and context menu is a mouse up kinda guy.  I believe
5410         the correct fix here is probably to make the notify icon entirely
5411         NC area, but this seems to work fine for anyone not manipulating
5412         WndProc.
5414 2006-10-02  Jonathan Pobst  <monkey@jpobst.com>
5416         * ToolStrip.cs, ToolStripButton.cs, ToolStripItem.cs,
5417           ToolStripItemCollection.cs, ToolStripLabel.cs,
5418           ToolStripProfessionalRenderer.cs, ToolStripRenderer.cs,
5419           ToolStripSeparator.cs, ToolStripSplitStackLayout.cs:
5420           Initial implementation.
5421         * TextRenderer.cs: Provide padding to MeasureText.
5423 2006-10-02  Sebastien Pouliot  <sebastien@ximian.com>
5425         * ButtonBase.cs: Fix CreateAccessibilityInstance to return an instance
5426         of ButtonBaseAccessibleObject. Fix bug #79552.
5428 2006-10-02  Jackson Harper  <jackson@ximian.com>
5430         * MdiWindowManager.cs: When maximizing use the containers client
5431         rect, not it's bounds, so nc area is accounted correctly.
5432         - Use the parent form's size for the menu position, since the
5433         client isn't always the full form size.
5435 2006-10-01  Chris Toshok  <toshok@ximian.com>
5437         * ScrollableControl.cs: make sure neither right_edge or
5438         bottom_edge are < 0, since they're used as LargeChange for the
5439         horiz/vert scrollbars respectively.  Fixes #79539.
5441 2006-10-01  Chris Toshok  <toshok@ximian.com>
5443         * NotifyIcon.cs: add NotifyIconWindow.InternalRecreateHandle, so
5444         the xplatuix11 code can cause us to destroy/recreate our handle.
5446         * XplatUIX11.cs
5447         (SystrayAdd):
5448         - this code can be invoked many times for the same Hwnd.  Make
5449           sure we only destroy the client window once (the first time this
5450           method is called).  This fixes bug #79544.
5451         - Remove the call to the improperly bound XSync.  why we had two
5452           bindings to this, I will never know, but this call resulted in
5453           events being discarded from the queue(!).
5454         - correct a misunderstanding of _XEMBED_INFO - the second atom is
5455           not our current state but the state we wish to be in.  So, 0 if
5456           we don't want to be mapped.  Change it to 1.
5457         (SystrayRemove): The XEMBED spec makes mention of the fact that
5458         gtk doesn't support the reparent of client windows away from the
5459         embedder.  Looking at gtksocket-x11.c seems to agree with this.
5460         The only avenue we have for removing systray icons is to destroy
5461         them.  We don't want the handle to go away for good, though, so
5462         call InternalRecreateHandle on the NotifyIconWindow.  Fixes
5463         #79545.
5464         
5465 2006-10-01  Chris Toshok  <toshok@ximian.com>
5467         * Form.cs (WndProc): inline the native_enabled variable usage into
5468         the cases in which it's used.  Fixes #79536.
5470 2006-09-29  Mike Kestner  <mkestner@novell.com>
5472         * ListView.cs : toggle the selection state for ctrl clicks in 
5473         multiselect mode. [Fixes #79417]
5475 2006-09-29  Mike Kestner  <mkestner@novell.com>
5477         * ListView.cs : kill CanMultiSelect and refactor the selection
5478         code to support multiselection in the absence of mod keys. Steal
5479         arrow/home/end keys by overriding InternalPreProcessMessage to
5480         restore regressed keynav behavior.
5481         [Fixes #79416]
5483 2006-09-29  Jackson Harper  <jackson@ximian.com>
5485         * MdiClient.cs: Repaint the titlebars when the active window is
5486         changed.
5488 2006-09-29  Chris Toshok  <toshok@ximian.com>
5490         * Application.cs: when entering a runloop with a modal, make sure
5491         the hwnd is enabled.  Fixes #79480.
5493 2006-09-29  Chris Toshok  <toshok@ximian.com>
5495         * DataGrid.cs (CurrentCell): if we try to navigate to the add row
5496         when ListManager.CanAddRows == false, bump us back one.
5498         * DataGridColumnStyle.cs (ParentReadOnly): remove the
5499         listmanager.CanAddRows check.  This makes ArrayLists uneditable
5500         using a datagrid, which is not right.
5501         (SetColumnValueAtRow): call IEditable.BeginEdit if source[rowNum]
5502         is an IEditable, but call property_descriptor.SetValue regardless.
5503         fixes #79435.
5505 2006-09-29  Chris Toshok  <toshok@ximian.com>
5507         * DataGridBoolColumn.cs: we need to test equality in the face of
5508         possible null values (as is the case with the default NullValue).
5509         This patch keeps us from crashing in that case.
5511 2006-09-29  Jackson Harper  <jackson@ximian.com>
5513         * TreeNodeCollection.cs: Don't do a recalculate/updatescrollbars
5514         here, since it will get called for every node collection in the
5515         tree. This is now done in the treeview once the sorting is
5516         finished.
5517         * TreeView.cs: Recalculate the visible order, and update the
5518         scrollbars after sorting, set the top nope to the root so that the
5519         recalc actually works.
5521 2006-09-29  Chris Toshok  <toshok@ximian.com>
5523         * LinkLabel.cs: more handling of the default link collection in
5524         the face of LinkArea manipulation.  The default link collection
5525         contains 1 element (start=0,length=-1).  If the user sets LinkArea
5526         to anything and the links collection is the default, clear it.
5527         Then only add the link if its nonempty.  Fixes #79518.
5529 2006-09-29  Chris Toshok  <toshok@ximian.com>
5531         * LinkLabel.cs (CreatePiecesFromText): calculate the length of a
5532         piece correctly when we hit a '\n'.  Fixes #79517.
5534 2006-09-29  Chris Toshok  <toshok@ximian.com>
5536         * MimeIcon.cs, ThemeGtk.cs, X11DesktopColors.cs, XplatUIX11GTK.cs:
5537         change the binding of gdk_init_check to take two IntPtr's, and
5538         pass IntPtr.Zero for both of them.  Fixes #79520.
5540 2006-09-29  Mike Kestner  <mkestner@novell.com>
5542         * ComboBox.cs : raise TextChanged on ComboTextBox.TextChanged.
5543         [Fixes #78779]
5545 2006-09-28  Jackson Harper  <jackson@ximian.com>
5547         * XplatUIX11.cs: When translating NC messages make sure we go from
5548         whole window to screen, not client window to screen.
5549         * MdiClient.cs: Remove the calls to PaintWindowDecorations, this
5550         method doesn't exist
5551         - Skip over controls that aren't forms when arranging.
5553 2006-09-28  Jackson Harper  <jackson@ximian.com>
5555         * XplatUIWin32.cs: Clip the rect to the parent window.
5556         * XplatUIStructs.cs: Add clipping modes struct.
5557         * InternalWindowManager.cs: New private method that factors title
5558         bar heights in when calculating the pos of an NC mouse message.
5559         - Use SendMessage to force a paint when the form's size is changed
5560         instead of painting the decorations immediately.
5561         - Don't let the NC button click messages get to DefWndProc,
5562         because they will attempt to handle windowing themself, and this
5563         messes up z-order (it will put them in front of the scrollbars).
5564         * XplatUIX11.cs: Make sure that we don't reset window managers if
5565         we already have one (ie the window is an MDI window).
5567 2006-09-28  Chris Toshok  <toshok@ximian.com>
5569         * MainMenu.cs: fix #79405 by way of a disgusting hack.  all the
5570         menu code really needs going over.
5572 2006-09-27  Chris Toshok  <toshok@ximian.com>
5574         * XplatUIX11.cs (SetWMStyles): more metacity wonderment.  turns
5575         out metacity ignores the MAXIMIZE_HORZ/VERT messages unless the
5576         window is maximizable.  So, we need to make sure that even if we
5577         clear the border/wm frame of those functions, they're still
5578         available (basically, we remove the decoration without removing
5579         the function).  Half the fix for #79338.
5581 2006-09-27  Chris Toshok  <toshok@ximian.com>
5583         * DataGrid.cs (ProcessGridKey): implement Shift-Tab handling.
5584         Fixes bug #79515.
5586 2006-09-27  Chris Toshok  <toshok@ximian.com>
5588         * Splitter.cs: reorder things a bit so that we don't actually
5589         draw/move the splitter until after calling OnSplitterMoving.  This
5590         lets users cancel/disallow the movement by explicitly setting
5591         event.SplitX/SplitY.  Fixes #79372.
5593 2006-09-27  Jackson Harper  <jackson@ximian.com>
5595         * XplatUIX11.cs: Don't hide the caret when it is being destroyed,
5596         because it is most likely on a window being destroyed, and that
5597         will give us an X11 error.
5599 2006-09-27  Chris Toshok  <toshok@ximian.com>
5601         * PropertyGridView.cs: half of the fix for #78190.  Clicking on
5602         the dropdown button now toggles between showing and hiding the
5603         dropdown.  Also, get rid of dropdown_form_showing and just use
5604         dropdown_form.Visible.  We still don't do a grab, but I'll leave
5605         that part to someone who has handled Capture-fu before.
5607 2006-09-27  Chris Toshok  <toshok@ximian.com>
5609         * DataGrid.cs: return false if alt isn't pressed when '0' is
5610         pressed.  this keeps the '0' key from being swallowed, and fixes
5611         bug #79350.
5613 2006-09-27  Chris Toshok  <toshok@ximian.com>
5615         * ComboBox.cs: use Invalidate when scrolling the dropdown list.
5616         Calling Refresh (in response to a scrollbar event) screws up the
5617         scrollbar painting.  Fixes bug #78923.
5619 2006-09-27  Chris Toshok  <toshok@ximian.com>
5621         * Theme.cs (SystemResPool): make the "if hashtable[key] == null
5622         then insert into hashtable" blocks threadsafe.
5624 2006-09-27  Chris Toshok  <toshok@ximian.com>
5626         * MessageBox.cs (CreateParams): the styles should be |'ed with our
5627         baseclass's, since otherwise the
5628         ControlBox/MinimizeBox/MaximizeBox assignments above have no
5629         effect.  This gets the close button back in messageboxes.
5631 2006-09-27  Chris Toshok  <toshok@ximian.com>
5633         * XplatUIX11.cs: make StyleSet and ExStyleSet check == with the
5634         flag, not just != 0.  this makes flags that are actually multiple
5635         bits (like WS_CAPTION) work.  fixes bug #79508.
5637 2006-09-27  Jordi Mas i Hernandez <jordimash@gmail.com>
5639         * PageSetupDialog.cs: add support for getting and settings the 
5640         paper size, source and orientation.
5642 2006-09-26  Chris Toshok  <toshok@ximian.com>
5644         * XplatUIX11.cs (SetWMStyles): turns out when SYSMENU is not set
5645         and caption == "", we need to remove the resize handles as well as
5646         the title bar.
5648         * Control.cs (set_Text): turns out that setting Text on a form
5649         should change the WM styles on the window, since if ControlBox ==
5650         false, the only way to get a window border is to have a non-""
5651         Text property.  check winforms/forms/text.cs for an example.  so,
5652         call both XplatUI.SetWindowStyle and XplatUI.Text here to properly
5653         update both window styles and title.  This fixes a lot of dialogs
5654         (including the preferences dialog in MonoCalendar.)
5656 2006-09-26  Chris Toshok  <toshok@ximian.com>
5658         * XplatUIWin32.cs (SetParent): if parent == IntPtr.Zero (and the
5659         control isn't a Form), call Win32ShowWindow to hide the window,
5660         but don't update the control Visible property.  When we reparent
5661         back to a parent control, call SetVisible in order for the
5662         window's visibility to be reinstated.
5664         * XplatUIX11.cs (SetParent): if hwnd.parent == null, reparent to
5665         the FosterParent.
5667         * Control.cs (ControlCollection.Remove): remove that value.Hide()
5668         call for good, since it breaks MonoCalendar (and other things I'm
5669         sure.) Also, set all_controls to null *after* the owner calls,
5670         which end up regenerating it.
5671         (ChangeParent): allow new_parent to be == null, passing
5672         IntPtr.Zero down to XplatUI.
5674         this fixes #79294 the right way.
5676 2006-09-26  Mike Kestner  <mkestner@novell.com>
5678         * GridEntry.cs : internal SetParent method.
5679         * PropertyGrid.cs : attach to property changed on the proper
5680         target if we have a hierarchical grid with subobjects. Setup
5681         GridItem.Parent for hierarchical items.
5682         * PropertyGridView.cs : Set value on the correct target for
5683         hierarchical grids. [Fixes #78903]
5685 2006-09-26  Chris Toshok  <toshok@ximian.com>
5687         * Control.cs (ChildNeedsRecreating): this should return true if
5688         either we're being recreated and the child is in our list, or our
5689         parent is waiting for our recreation.
5691 2006-09-26  Chris Toshok  <toshok@ximian.com>
5693         * Control.cs (ControlCollection.Remove): reinstate the
5694         value.Hide() call as suggested in bug #79294.
5696 2006-09-26  Sebastien Pouliot  <sebastien@ximian.com>
5698         * XplatUIX11.cs: Fixed SetCursorPos to move the cursor to screen
5699         coordinates (versus a relative move).
5701 2006-09-26  Chris Toshok  <toshok@ximian.com>
5703         * Control.cs: rework child recreation a little bit.  It turns out
5704         that we race between the DestroyNotify the WM_DESTROY message.  If
5705         the parent gets its DestroyNotify before the child gets the
5706         WM_DESTROY message, the child ends up not recreating (since the
5707         parent finishes its recreation on DestroyNotify, and the child
5708         checks ParentIsRecreating.)
5710         So, instead we store off a list of all the child controls which
5711         need to be recreated when the parent control starts to recreate
5712         itself.  Then, when child controls get their WM_DESTROY message we
5713         check to see if they're in the parent's pending recreation list,
5714         and if so, we recreate.  This removes all dependency on ordering
5715         from the code and fixes the initial MonoCalendar upgrade dialog.
5716         
5717 2006-09-26  Jackson Harper  <jackson@ximian.com>
5719         * TextControl.cs: Use the Line to get the length of the line,
5720         since soft line breaks can change the end line.
5722 2006-09-26  Chris Toshok  <toshok@ximian.com>
5724         * Control.cs (ControlCollection.AddImplicit): don't add the
5725         control again if it's already in one of our lists.  This keeps us
5726         from adding controls over and over again for comboboxes when their
5727         handle gets recreated (as the combobox adds implicit controls in
5728         OnHandleCreated).  Fixes the X11 errors in bug #79480.
5730 2006-09-26  Jackson Harper  <jackson@ximian.com>
5732         * TextControl.cs: When deleting characters make sure that any
5733         orphaned zero lengthed tags get deleted.
5734         - Fix ToString for zero lengthed tags.
5736 2006-09-25  Jackson Harper  <jackson@ximian.com>
5738         * TextControl.cs: When getting a tag at the location there can be
5739         multiple tags at the same spot, these are 0-lengthed tags that
5740         appear when extra formatting has been stuck in a location.  We
5741         need to pull out the last of these 0 lengthed tags.
5743 2006-09-25  Jackson Harper  <jackson@ximian.com>
5745         * TextControl.cs: Fix print out in debug method.
5746         * TextBoxBase.cs: When text is set bail if we are setting to the
5747         previous value.
5748         
5749 2006-09-24  Alexander Olk  <alex.olk@googlemail.com>
5751         * FontDialog.cs: Fixed the up/down arrow keys issue from bug #79478.
5752           It is now possible to change the selected index in a FontXXXListBox
5753           with the up and down arrow keys from the FontXXXTextBoxes.
5754           Also, send the FontXXXTextBox mouse wheel event to the corresponding
5755           FontXXXListBoxes to match ms.
5757 2006-09-22  Sebastien Pouliot  <sebastien@ximian.com>
5759         * SystemInformation.cs: Return a clone of the theme's MenuFont because
5760         anyone can dispose it, anytime. All other properties returns enums, 
5761         structs or basic types so they don't need such tricks.
5763 2006-09-22  Jackson Harper  <jackson@ximian.com>
5765         * XplatUI.cs:
5766         * XplatUIWin32.cs:
5767         * Clipboard.cs:
5768         * DataFormats.cs:
5769         * XplatUIOSX.cs:
5770         * XplatUIDriver.cs: Update interface to add a primary selection
5771         flag, so the driver can use the primary selection buffer if
5772         needed.
5773         * XplatUIX11.cs: Allow the clipboard to retrieve from PRIMARY.
5775         * RichTextBox.cs: We need to supply the data object to paste now
5776         (so we can choose to supply CLIPBOARD or PRIMARY).
5777         * TextBoxBase.cs: Supply data object to paste (see above).
5778         - Middle click uses the primary selection data object.
5779         
5780 2006-09-21  Chris Toshok  <toshok@ximian.com>
5782         * XplatUIX11.cs: first little cleanup of the StyleSet (...) block
5783         of SetWMStyles.  It's still a rat's nest and is largely
5784         order-dependent which I dislike immensely.  This also fixes the X
5785         button disappearing from toplevel forms.
5787 2006-09-21  Mike Kestner <mkestner@novell.com>
5789         * ListBox.cs: move Jordi's click/dblclick raising code to the
5790         mouse up handler.
5792 2006-09-21  Jordi Mas i Hernandez <jordimash@gmail.com>
5794         * ListBox.cs: Fixes 79450
5796 2006-09-21  Mike Kestner <mkestner@novell.com>
5798         * TreeView.cs: guard against disposed conditions in UpdateScrollbars
5799         to deal with people updating the TreeNodeCollection after the tree
5800         is disposed.  "Fixes" 79330.
5802 2006-09-20  Jackson Harper <jackson@ximian.com>
5804         * TextControl.cs: Push the cursor record onto the undo stack
5805         before the delete action. This fixes 78651.
5807 2006-09-20  Jonathan Chambers  <joncham@gmail.com>
5809         * PropertyGridView.cs: Remove WindowStyles.WS_VISIBLE from
5810         CreateParams. Fixes 79329.
5812 2006-09-19  Chris Toshok  <toshok@ximian.com>
5814         * XplatUIX11.cs: a couple of blanket code massage passes to clean
5815         things up a bit.  First, get rid of the NetAtoms array (and the NA
5816         enum), and just embed the atoms as static fields.  Also, add a
5817         couple of functions (StyleSet and ExStyleSet) to clean up all the
5818         bitmask testing of styles.
5820         * X11Structs.cs: remove the NA enum, not needed anymore.
5821         
5822 2006-09-19  Chris Toshok  <toshok@ximian.com>
5824         * XplatUIX11.cs: apply Alexander's tool window fix for bug #79245
5825         (mapping them to _NET_WM_WINDOW_TYPE_UTILITY).  and add a little
5826         added cleanup to get MessageBox titles appearing again, which were
5827         broken by my earlier fix for caption-less/ControlBox-less windows.
5829 2006-09-18  Jonathan Pobst <monkey@jpobst.com>
5831         * ToolStripArrowRenderEventArgs.cs, ToolStripArrowRenderEventHandler.cs,
5832           ToolStripContentPanelRenderEventArgs.cs, ToolStripContentPanelRenderEventHandler.cs,
5833           ToolStripGripRenderEventArgs.cs, ToolStripGripRenderEventHandler.cs,
5834           ToolStripItemClickedEventArgs.cs, ToolStripItemClickedEventHandler.cs,
5835           ToolStripItemEventArgs.cs, ToolStripItemEventHandler.cs,
5836           ToolStripItemImageRenderEventArgs.cs, ToolStripItemImageRenderEventHandler.cs,
5837           ToolStripItemRenderEventArgs.cs, ToolStripItemRenderEventHandler.cs,
5838           ToolStripItemTextRenderEventArgs.cs, ToolStripItemTextRenderEventHandler.cs,
5839           ToolStripPanelRenderEventArgs.cs, ToolStripPanelRenderEventHandler.cs,
5840           ToolStripRenderEventArgs.cs, ToolStripRenderEventHandler.cs,
5841           ToolStripSeparatorRenderEventArgs.cs, ToolStripSeparatorRenderEventHandler.cs:
5842             Inital import.
5843         * ToolStripPanel.cs, ToolStripContentPanel.cs, ToolStripSeparator.cs,
5844           ToolStripButton.cs: Stubs needed for above.
5845         * ToolStrip.cs, ToolStripItem.cs: Stub a few variables/properties for above.
5847 2006-09-15  Chris Toshok  <toshok@ximian.com>
5849         * XplatUIX11.cs:
5850         - make the MessageQueues hashtable Synchronized.
5851         
5852         - SendMessage: if the Hwnd is owned by a different thread, use the
5853         AsyncMethod stuff to dispatch the SendMessage on the hwnd's
5854         thread.  Fixes bug #79201.
5856 2006-09-15  Chris Toshok  <toshok@ximian.com>
5858         * XplatUIX11.cs (SetWMStyles): rework the #79368 fix slightly.  If
5859         ControlBox == false, we disallow maximize/minimize/close.  If the
5860         form Caption is "" we also disallow move (and get rid of the Title
5861         decoration).  Unfortunately, regardless of how things are set,
5862         we're stuck with the Title and WM menu.
5864 2006-09-15  Chris Toshok  <toshok@ximian.com>
5866         * Application.cs: add locking around the static message_filters
5867         ArrayList, part of #79196.
5869 2006-09-15  Chris Toshok  <toshok@ximian.com>
5871         * XplatUIX11.cs (SetWMStyles): if Form.Text == "" and
5872         Form.ControlBox == false, the window has no titlebar nor resize
5873         handles.  fixes bug #79368.
5875 2006-09-15  Chris Toshok  <toshok@ximian.com>
5877         * TextBoxBase.cs: in CalculateScrollBars make sure LargeChange is
5878         >= 0.  Fixes bug #79370.
5880 2006-09-15  Jonathan Pobst <monkey@jpobst.com>
5881         * FlowLayoutPanel.cs, FlowLayoutSettings.cs: Initial commit.
5882         * Control.cs:
5883             Add properties: LayoutEngine, Margin, DefaultMargin.
5884             Add method: GetPreferredSize.
5885             Move layout logic from PerformLayout to layout engines. 
5887 2006-09-13  Chris Toshok  <toshok@ximian.com>
5889         * XplatUIX11.cs: more destroy work.  Jackson pointed out that my
5890         fix for #79326 broke #78718, so this change addresses that.
5892         - in SendWMDestroyMessages remove the call to
5893         CleanupCachedWindows, since we might be recreating the control and
5894         need to maintain the references to right Hwnd handles.  Also, set
5895         the zombie flag to true for each of the children in the hierarchy
5896         instead of calling hwnd.Dispose.  This will cause GetMessage to
5897         ignore all events for the window except for DestroyNotify.
5899         - In GetMessage, ignore messages except for DestroyNotify for
5900         zombie hwnds.
5901         
5902         * Control.cs: revert the is_recreating fix from the last
5903         ChangeLog.  It's definitely "right", but it breaks switching from
5904         an MDI form to a non-MDI form.  Will need to revisit that.
5906         * Hwnd.cs: add a zombie flag, which means "the
5907         client_window/whole_window handles are invalid, but we're waiting
5908         for the DestroyNotify event to come in for them".  Set the flag to
5909         false explicitly if setting WholeWindow/ClientWindow, and also
5910         when Disposing.
5911         
5912 2006-09-13  Chris Toshok  <toshok@ximian.com>
5914         * XplatUIX11.cs: rework window destruction slightly.
5916         - when destroying the windows associated with a control, we don't
5917         need 2 separate XDestroyWindow calls.  Just the one for the
5918         whole_window (or for client_window if whole_window is somehow
5919         IntPtr.Zero -- can this happen?) is enough.
5921         - reworked SendWMDestroyMessages slightly, so we always dispose
5922         the child control hwnd's after sending the messages.
5923         
5924         - refactored out the ActiveWindow/FocusWindow/Caret clearing from
5925         the two places it was used (one was even using hwnd.Handle and the
5926         other hwnd.client_window.  ugh), adding another call in
5927         SendWMDestroyMessages.  We need this new call because now the
5928         DestroyNotify events in the queue will be ignored for the child
5929         controls (as their hwnd's were disposed, and the window id's
5930         removed from the hashtable in SendWMDestroyMessages.) fun, eh?
5932         - this fixes bug #79326.
5934 2006-09-13  Chris Toshok  <toshok@ximian.com>
5936         * Control.cs: don't always set is_recreating to false at the end
5937         of RecreateHandle, since sometimes we're not done (and won't be
5938         until WndProc handles the WM_DESTROY message).  Also, set
5939         is_recreating to false in the WM_DESTROY handling code.  Part of
5940         the fix for bug #79326.
5942 2006-09-13  Miguel de Icaza  <miguel@novell.com>
5944         * X11DesktopColors.cs: Start the droppage of debugging messages.
5946         * FileDialog.cs: Store the configuration file in ~/.mono/mwf_config
5948 2006-09-13  Jonathan Pobst <monkey@jpobst.com>
5950         * SplitContainer.cs, SplitterPanel.cs: Initial implementation [2.0].
5952 2006-09-12  Chris Toshok  <toshok@ximian.com>
5954         * DataGrid.cs (get_ListManager): if the list_manager is null, try
5955         to create it using SetDataSource.  Fixes bug #79151.
5957 2006-09-11  Chris Toshok  <toshok@ximian.com>
5959         * XEventQueue.cs: add a DispatchIdle property.
5961         * XplatUIX11.cs (UpdateMessageQueue): only emit the Idle event if
5962         either the queue is null, or the queue has DispatchIdle set to
5963         true.
5964         (DoEvents): set queue.DispatchIdle to false around the
5965         peek/translate/dispatch message loop in this method.  This keeps
5966         Application.Doevents from emitting idle events.  Part of the fix
5967         for #78823.
5969 2006-09-11  Chris Toshok  <toshok@ximian.com>
5971         * DataGrid.cs (set_DataSource): make this work for both the
5972         winforms/datagrid test and ReportBuilder.  It seems as though when
5973         we've created a ListManager (or maybe it's if we have a
5974         BindingContext?), when we set the DataSource it clears the
5975         DataMember to "".  otherwise we reuse the datamember.  Fixes bug
5976         #79333.
5978 2006-09-11  Chris Toshok  <toshok@ximian.com>
5980         * XplatUIX11.cs: deal with queue being null, which happens in all
5981         the Clipboard functions.  Fixes one of the two problems mentioned
5982         in #78612.
5984 2006-09-11  Chris Toshok  <toshok@ximian.com>
5986         * MenuAPI.cs: rework OnMouseUp a bit so that releasing the mouse
5987         button on various spots (including outside the menu) works closer
5988         to MS, and doesn't crash.  Fixes #79343.
5990 2006-09-11  Gert Driesen  <drieseng@users.sourceforge.net>
5992         * ListView.cs: Do not initialize item_sorter in init. To match MS,
5993         return null for ListViewItemSorter if View is SmallIcon or LargeIcon
5994         and the internal comparer is set. When a new ListViewItemSorter is set,
5995         sort the items. Use Enum.IsDefined to verify whether a valid SortOrder
5996         was specified. No further processing is necessary if SortOrder is set
5997         to it's current value. If Sorting is modified to None, and View is
5998         neither SmallIcon nor LargeIcon then: on 2.0 profile set item_sorter
5999         (either custom or our internal ItemComparer) to null, on 1.0 profile
6000         only set item_sorter to null if its our internal IComparer. If Sorting
6001         is modified to Ascending or Descending, then use our internal IComparer
6002         if none is set, and if the current IComparer is our internal one then:
6003         on 2.0 profile always replace it with one for new Sorting, and on 1.0
6004         profile only use new Sorting if view is not SmallIcon or LargeIcon. Use
6005         Enum.IsDefined to verify whether a valid View value is specified in
6006         its setter. Automatically sort listview items when listview is
6007         created. In Sort, do nothing if ListView is not yet created, or if
6008         no item_sorter is set (no Sorting was set, Sorting was explicitly set
6009         to None or ListViewItemSorter was set to null). Added Sort overload
6010         taking a bool to indicate whether the ListView should be redrawn when
6011         items are sorted (we use this in ListViewItemCollection to avoid double
6012         redraws). Modified our internal IComparer to take the sort order into
6013         account. In Add and AddRange methods of ListViewItemCollection, also
6014         call Sort if Sorting is None (necessary for SmallIcon and LargeIcon
6015         view), but use overload with noredraw option to avoid double redraw.
6016         On 2.0 profile, throw NotSupportedException when setting CheckBoxes to
6017         true when View is Tile, and do the same when attempting to set View to
6018         Tile when CheckBoxes is true. Avoid maintaining separate ArrayLists
6019         for selected/checked indices, as it involves overhead when sorting is
6020         done while these collections are not used all that often. Instead
6021         we'll build the indices on demand. Modified IList implementation of
6022         CheckedIndexCollection to use public methods if object is int.
6023         Modified CheckedListViewItemCollection to hide checked items if
6024         ListView.CheckBoxes is false. Removed LAMESPEC remark in 
6025         ListViewItemCollection as the .NET SDK docs have been fixed. Modified
6026         IList implementation in SelectedIndexCollection to use public methods
6027         if object is int. Modified SelectedListViewItemCollection to hide
6028         selected items if listview is not yet created.
6029         * ListViewItem.cs: CheckedIndices list no longer needs to be
6030         maintained separately (see ListView changes). Also clone font, fixes
6031         test failure.
6033 2006-09-11  Mike Kestner  <mkestner@novell.com>
6035         * ComboBox.cs: if we are updating the contents of the currently
6036         selected index, refresh the control or the textbox selection.
6037         [Fixes #79066]
6039 2006-09-11  Mike Kestner  <mkestner@novell.com>
6041         * ComboBox.cs (UpdateBounds): use SetBounds not SetBoundsCore since 
6042         the 'specified' logic has been moved there.  This seems like a bug 
6043         in Control.cs, since our current SetBoundsCore completely ignores 
6044         the specified parameter.  Peter's commit seems to indicate that is 
6045         the way the MS control implementation works.  [Fixes #79325]
6047 2006-09-10  Jonathan Chambers  <joncham@gmail.com>
6049         * XplatUI.cs: Set default_class_name to be composed
6050         of current domain id. This allows MWF to be loaded in multiple
6051         domains on Win32.
6053 2006-09-09  Miguel de Icaza  <miguel@novell.com>
6055         * X11Keyboard.cs: If we are unable to obtain the input method, do
6056         not call CreateXic to create the input context.   Should fix
6057         #78944/79276.
6059 2006-09-08  Alexander Olk  <alex.olk@googlemail.com>
6061         * MimeIcon.cs: Rewrote major parts. Dropped KDE support for now.
6062           Simplified gnome support by adding more pinvokes to get the
6063           icon for a file or mime type.
6065 2006-09-08  Jackson Harper  <jackson@ximian.com>
6067         * MenuAPI.cs: Deslect popup context menu items before closing the
6068         window, so that you don't see the previously selected item
6069         selected when you reopen the menu.
6070         * TextControl.cs: Update the cursor position even if we don't have
6071         focus.  This fixes typing in things like the ComboBox.  I'm not
6072         totally sure we should always set the visibility if we don't have
6073         focus, but couldn't find any corner cases where the cursor showed
6074         up when it shouldn't.
6076 2006-09-08  Chris Toshok  <toshok@ximian.com>
6078         * X11Keyboard.cs: In UpdateKeyState vkey can be any integer, but
6079         our arrays are length 256.  & 0xff before indexing.  Fixes the
6080         crash in bug #78077.
6081         
6082 2006-09-08  Carlos Alberto Cortez <calberto.cortez@gmail.com>
6084         * ThemeWin32Classic.cs: 
6085         * DateTimePicker.cs: Draw check box if DateTimePicker.ShowCheckBox
6086         is true. Handle that check box too.
6088 2006-09-07  Chris Toshok  <toshok@ximian.com>
6090         * MenuAPI.cs: move the PerformClick call to OnMouseUp.  Fixes bug
6091         79244.
6093 2006-09-07  Chris Toshok  <toshok@ximian.com>
6095         * Control.cs: in set_BackColor only do the work if
6096         background_color != value.
6098         * XplatUIX11.cs: move the clearing of invalid areas (both client
6099         and nc) to the same block of code where we set (nc_)expose_pending
6100         to false.  That is, move it from PaintEventEnd to PaintEventStart,
6101         so things that cause invalidates from within OnPaint will trigger
6102         another call to OnPaint.  Fixes bug #79262.
6104 2006-09-07  Alexander Olk  <alex.olk@googlemail.com>
6106         * Theme.cs: Use correct icon for UIIcon.PlacesPersonal
6107         * FileDialog.cs: Fix typo
6109 2006-09-07  Jackson Harper  <jackson@ximian.com>
6111         * ThemeWin32Classic.cs:  oops, forgot to commit.  Draw the images
6112         for tab pages if they have any.
6114 2006-09-06  Mike Kestner  <mkestner@novell.com>
6116         * Splitter.cs: use the "current" rect when finishing drag handle
6117         to avoid an artifact demonstrated by resedit.exe.  [Fixes #79251]
6119 2006-09-06  Mike Kestner  <mkestner@novell.com>
6121         * Splitter.cs: draw the drag handle at X or Y instead of 0 to deal
6122         support offset splitters. [Fixes #79298]
6124 2006-09-06  Alexander Olk  <alex.olk@googlemail.com>
6126         * Mime.cs: Fixed a bug that could override the global mime type
6127           result.
6129 2006-09-05  Jackson Harper  <jackson@ximian.com>
6131         * TabControl.cs: Better calculation method for setting the slider
6132         pos. Prevents crashes on really wide tabs.
6133         - Draw Image on tab pages if an image list is used.
6135 2006-09-02  Carlos Alberto Cortez <calberto.cortez@gmail.com>
6137         * MonthCalendar.cs: When Font changes, the Size should be
6138         updated to fit the new font's space requirements.
6140 2006-09-02  Alexander Olk  <alex.olk@googlemail.com>
6142         * ListBox.cs: If the items are cleared with Items.Clear set
6143           top_index to 0.
6145 2006-09-01  Carlos Alberto Cortez <calberto.cortez@gmail.com>
6147         * MonthCalendar.cs: Handle arrow keys as input keys. Also
6148         fire DateChanged event instead of DateSelected event when
6149         the date was changed by keyboard interaction.
6151 2006-09-01  Carlos Alberto Cortez <calberto.cortez@gmail.com>
6153         * DateTimePicker.cs: Handle DateChanged for the associated
6154         month_calendar control, and set month_calendar.Font from 
6155         OnFontChanged method, as well as resize the height of the
6156         control when needed. Make PreferredHeight proportional.
6158 2006-09-01  Chris Toshok  <toshok@ximian.com>
6160         * DataGrid.cs: grr, stop overthinking the DataMember/DataSource
6161         properties.
6163         * BindingContext.cs (HashKey.GetHashCode): use ^ instead of +.
6165 2006-09-01  Peter Dennis Bartok  <pbartok@novell.com> 
6167         * FileDialog.cs: Set ClientSize instead of window size, to allow space
6168           for decorations (Fixes #79219)
6170 2006-09-01  Mike Kestner  <mkestner@novell.com>
6172         * ComboBox.cs: first stab at sorting plus some selection handling
6173         fixes to bring us more in line with MS behavior.  Also switches back
6174         to index based selection.  Alternative patches for index-based 
6175         selection were provided by Jackson Harper, Carlos Alberto Cortez, 
6176         and latency@gmx.de on bug 78848.  I assume they were similar to this
6177         code I've had simmering in my tree forever.
6178         [Fixes #78848]
6180 2006-09-01  Chris Toshok  <toshok@ximian.com>
6182         * CurrencyManager.cs (ListChangedHandler): in the ItemAdded case,
6183         when setting list position guard against ending up with a -1 index
6184         (the other part of the fix for #78812).  Should probably make sure
6185         we don't need the analogous fix in the ItemDeleted case.
6187         * DataGrid.cs:
6188         - in SetDataSource, work around the fact that the way
6189         OnBindingContextChanged is invoked will cause us to re-enter this
6190         method.  I'll remove the hack once I investigate
6191         OnBindingContextChanged.
6193         - fix the logic in set_DataSource and set_DataMember (basically
6194         what to do if the other of the two is null.)
6195         
6196         - in OnListManagerItemChanged, we need to take into account the
6197         edit row when deciding whether or not to call RecreateDataGridRows
6198         (part of the fix for #78812).
6200 2006-09-01  Jackson Harper  <jackson@ximian.com>
6202         * Splitter.cs: Don't do anything if there is no control to affect
6203         (prevents us from crashing in weird tet cases).
6204         * TreeView.cs: Bounding box for the mouse movement reverting
6205         focus/selection back to previously selected node.  This matches
6206         MS, and makes the tree a lot more useable.
6207         * GroupBox.cs: Instead of drawing over the lines of the groupbox,
6208         use clipping so they are not drawn.  This fixes when the control
6209         is set to have a transparent background, or if it was over an
6210         image.
6212 2006-09-01  Alexander Olk  <alex.olk@googlemail.com>
6214         * MimeIcon.cs: Improved handling for reading default icons when
6215           using gnome (2.16 made it necessary). Check and read svg icons
6216           first, then 48x48 and then 32x32 icons.
6218 2006-08-31  Chris Toshok  <toshok@ximian.com>
6220         * DataGridTextBoxColumn.cs: only hide the textbox if it's still
6221         visible.
6223         * DataGridTextBox.cs: Pass Tab's up to the datagrid by calling
6224         ProcessKeyPreview.  Fixes part of #77806.
6226         * DataGrid.cs: big patch.
6228         - revert the queueing up of DataSource/DataMember if inside
6229         BeginInit/EndInit calls.  That's not the way the datagrid achieves
6230         its delayed databinding.  Instead, call SetDataSource in
6231         OnBindingContextChanged.  This mimic's MS's behavior, and fixes
6232         #78811.
6234         - Also, it wasn't mentioned in #78811, but the test case exhibits
6235         behavior that was lacking in our datagrid implementation - Columns
6236         that have mapping names that don't exist in the datasource's
6237         properties aren't shown.  Yuck.  To fix this I added the bound
6238         field to the column style, and basically any calculation to figure
6239         out anything about columns uses a loop to find the bound columns.
6240         still need to investigate if I can cache an array of the bound
6241         columns or if the indices must be the same.
6243         - When setting CurrentCell, we no longer abort if the cell being
6244         edited was in the add row.  This fixes the other part of #77806.
6246         - The new code also fixes #78807.
6247         
6248         * ThemeWin32Classic.cs: perpetrate the same disgusting
6249         column.bound field hack, and only render bound fields.
6251 2006-08-31  Chris Toshok  <toshok@ximian.com>
6253         * DataGridColumnStyle.cs: add bound field.  this field is true if
6254         the datasource has a property corresponding to the mapping name.
6256         * DataGridTableStyle.cs: set the bound field on the column styles
6257         depending on whether or not we have a column for that property.
6259 2006-08-31  Peter Dennis Bartok  <pbartok@novell.com> 
6261         * Splitter.cs (SetBoundsCore): Don't ignore width/height of the 
6262           splitter control (fixes #79228)
6264 2006-08-31  Chris Toshok  <toshok@ximian.com>
6266         * DataGridColumnStyle.cs: we need to delay the assignment of
6267         property descriptor until the last possible moment due to the lazy
6268         databinding stuff in the datagrid.  Also, fix the exceptions
6269         thrown by CheckValidDataSource to match MS.
6271 2006-08-31  Jackson Harper  <jackson@ximian.com>
6273         * Form.cs: When activated select the active control, if there is
6274         no active control, we select the first control.
6275         * XplatUIX11.cs: If there is no focus control when we get a
6276         FocusIn event, find the toplevel form and activate it.  This
6277         occurs when you popup a window, it becomes the focus window, then
6278         you close that window, giving focus back to the main window.
6280 2006-08-21  Carlos Alberto Cortez <calberto.cortez@gmail.com>
6282         * MonthCalendar.cs: 
6283         * ThemeWin32Classic.cs: Cache Font in bold style, as well
6284         as StringFormat with Center alignments in MonthCalendar,
6285         instead of creating new ones when drawing the control. 
6286         Also, draw the month name in bold style.
6288 2006-08-30  Peter Dennis Bartok  <pbartok@novell.com> 
6290         * Control.cs:
6291           - PerformLayout(): It would seem MS performs the fill even if the 
6292             control is not visible (part of #79218 fix)
6293           - ResetBackColor(): Use the setter to reset the color, to allow
6294             overriders to catch the change.
6295         * Form.cs:
6296           - .ctor: Call UpdateBounds to adjust client rectangle (part of #79218 fix)
6297           - CreateHandle(): dito (part of $79218 fix)
6298           - Don't set an icon if we have a dialog
6299         * ScrollableControl.cs:
6300           - set_AutoScrollMinSize: Setting the property enables AutoScroll (#79218)
6301           - ScrollIntoView(): No need to scroll if control is already visible
6302             (resolves fixme and fixes #79218)
6304 2006-08-30  Carlos Alberto Cortez <calberto.cortez@gmail.com>
6306         * MonthCalendar.cs: Change proportions in SingleMonthSize
6307         to match the aspect of the original control.
6309 2006-08-29  Alexander Olk  <alex.olk@googlemail.com>
6311         * XplatUIX11.cs: Fix for a metacity/X problem where windows don't
6312           get updated when they get maximized.
6314 2006-08-29  Peter Dennis Bartok  <pbartok@novell.com> 
6316         * XplatUIX11.cs: Handle windows with no border (Fixes part of #79160)
6318 2006-08-29  Chris Toshok  <toshok@ximian.com>
6320         * XplatUIX11.cs: when destroying the FocusWindow, send KILLFOCUS.
6322 2006-08-29  Jackson Harper  <jackson@ximian.com>
6324         * TreeView.cs: Need to track selected node and highlighted node,
6325         they aren't always the same thing, when the mouse is down on a
6326         node it is hilighted, but not selected yet.
6327         - Do the HideSelection stuff right
6328         - Need to focus on rbutton mouse down. And redraw selection when
6329         right click is mouse upped.
6331 2006-08-29  Mike Kestner  <mkestner@novell.com>
6333         * ThemeWin32Classic.cs: draw selections for columns in FullRowSelect
6334         when SubItems.Count < Columns.Count.  [Fixes #79167]
6336 2006-08-28  Peter Dennis Bartok  <pbartok@novell.com> 
6338         * TextControl.cs (FindCursor): Fix math error (Fixes #78402)
6340 2006-08-28  Peter Dennis Bartok  <pbartok@novell.com>
6342         * XplatUIX11.cs: Preempt the roundtrip for getting the location back
6343           from X. Only send based on ConfigureNotify if we don't have the
6344           correct location in hwnd (if the window manager moved us)
6346 2006-08-28  Mike Kestner  <mkestner@novell.com>
6348         * ListView.cs: remove a TODO. 
6349         * ThemeWin32Classic.cs: implement HideSelection support for ListView.
6350         [Fixes ListView part of #79166]
6352 2006-08-28  Mike Kestner  <mkestner@novell.com>
6354         * ListView.cs: move wheel handler to parent since it is focused
6355         instead of the item_control now.  [Fixes #79177]
6357 2006-08-28  Mike Kestner  <mkestner@novell.com>
6359         * ThemeWin32Classic.cs: only highlight subitems in fullrowselect
6360         when the control is focused. [Fixes #79171]
6362 2006-08-28  Mike Kestner  <mkestner@novell.com>
6364         * ListView.cs: size the item and header controls for empty and
6365         unscrollable views.
6366         * ThemeWin32Classic.cs: draw disabled backgrounds.
6367         [Fixes #79187]
6369 2006-08-28  Chris Toshok  <toshok@ximian.com>
6371         * Form.cs: remove unused "active_form" static field.
6373         * Hwnd.cs: lock around accesses to static windows collection.
6375         * Application.cs: lock threads in Exit ().
6377 2006-08-28  Chris Toshok  <toshok@ximian.com>
6379         * NativeWindow.cs: lock around accesses to window_collection.
6380         
6381 2006-08-28  Chris Toshok  <toshok@ximian.com>
6383         * Control.cs: err, fix this the right way, by locking on controls
6384         when using it.  not by making it synchronized.
6386 2006-08-28  Chris Toshok  <toshok@ximian.com>
6388         * Control.cs: make the static "controls" field synchronized, as it
6389         gets updated from multiple threads.
6391 2006-08-27  Peter Dennis Bartok  <pbartok@novell.com>
6393         * XplatUIX11.cs: PostQuitMessage is thread-specific not app-specific.
6394           Prevent other threads from exiting when calling thread sets quit state.
6395         * XEventQueue.cs: Added PostQuitState property
6397 2006-08-27  Chris Toshok  <toshok@ximian.com>
6399         * AsyncMethodData.cs: add a slot for the window handle.
6401         * XplatUIX11.cs (SendAsyncMethod): send the event to the right
6402         window (the destination control's window, not the foster window).
6404         * Control.cs (BeginInvokeInternal): store the window's handle in
6405         the AsyncMethodData.
6406         
6408 2006-08-27  Peter Dennis Bartok  <pbartok@novell.com>
6410         * XplatUIX11.cs:
6411           - PostQuitMessage: Removed resetting S.D display handle, we might have
6412             another loop started after calling PostQuitMessage (Fixes #79119)
6413           - Created destructor to reset S.D handle
6415 2006-08-27  Peter Dennis Bartok  <pbartok@novell.com> 
6417         * XplatUIX11.cs (SetCursor): Issue flush after setting the cursor (#79168)
6419 2006-08-23  Peter Dennis Bartok  <pbartok@novell.com>
6421         * TextControl.cs (Insert): Update the caret position even if we don't
6422           have a handle yet, just don't call the driver in that case.
6423         * TextBoxBase.cs (set_SelectedText): Set the Start and End selection
6424           to the end of the new selection text (Fixes #79184)
6426 2006-08-23  Peter Dennis Bartok  <pbartok@novell.com> 
6428         * Form.cs (Activate): Only activate if the handle is created)
6429         * Control.c:
6430           - Mark window as invisible when it's disposed
6431           - Check if window handle is created when setting window visible, 
6432             instead of relying just on the is_created variable
6433           - Check if object is disposed when creating the control (Fixes #79155)
6435 2006-08-23  Peter Dennis Bartok  <pbartok@novell.com>
6437         * ScrollableWindow.cs (ScrollWindow): Don't actually perform layouting
6438           when allowing layout again. Otherwise we re-generate the anchoring 
6439           distance to the border again and actually alter what the user wanted
6440           This is ugly, it'd be better if we used DisplayRectangle instead of
6441           ClientRectangle for Control.UpdateDistances, but that causes us to
6442           have other problems (initial anchoring positons would be wrong)
6443           (Fixes #78835)
6445 2006-08-23  Peter Dennis Bartok  <pbartok@novell.com> 
6447         * Control.cs:
6448           - The size and location setters shouldn't go directly to 
6449             SetBoundsCore, but to SetBounds, which triggers layout on the
6450             parent, then calls SetBoundsCore. (Related to fix for #78835)
6451           - SetBounds: Moved actual location update code into this function
6452             from SetBoundsCore, to match MS. Added call to PerformLayout if
6453             we have a parent (to trigger resizing of anchored parents if the 
6454             child size has changed (see testcase for #78835) 
6455         * ListBox.cs, Form.cs: Call SetBounds instead of SetBoundsCore to match 
6456           new control code
6457         * ScrollableControl.cs (CalculateCanvasSize): Use shortcut variable
6459 2006-08-23  Peter Dennis Bartok  <pbartok@novell.com>
6461         * XplatUIX11.cs: Don't reset the DisplayHandle that's stored in
6462           System.Drawing when a toplevel window gets closed; there might
6463           be other toplevel windows belonging to the same app (Fixes #78052)
6465 2006-08-26  Alexander Olk  <alex.olk@googlemail.com>
6467         * FileDialog.cs: After reading FileDialog settings from mwf_config
6468           use Desktop prefix only if a real folder doesn't exist anymore.
6469         * FontDialog.cs: Added char sets.
6470           It is now possible to select the font, size or style with the
6471           textboxes.
6473 2006-08-25  Kornél Pál  <kornelpal@gmail.com>
6475         * PrintPreviewDialog.cs: Use assembly name constants.
6477 2006-08-23  Peter Dennis Bartok  <pbartok@novell.com>
6479         * XplatUIWin32.cs (ScrollWindow): Use clipping rectangle arg (prevents
6480           scrollbar from whacking it's buttons)
6482 2006-08-24  Chris Toshok  <toshok@ximian.com>
6484         * ScrollableControl.cs: fix #78271.  There's a lot of misc stuff
6485         in this patch (aggregating setting Left/Top/Width/Height to
6486         setting Bounds on the scrollbars), but the crux of the fix is in
6487         Recalculate, where we scroll by the remaining scroll_position if
6488         we're hiding a scrollbar.  The 2*$5 reward in the comment is
6489         serious.
6491 2006-08-24  Jackson Harper  <jackson@ximian.com>
6493         * MdiClient.cs:
6494         * MdiWindowManager.cs: If the form is made a non-mdi window we
6495         need to remove the form closed event so that closing forms works
6496         correctly.
6498 2006-08-24  Jackson Harper  <jackson@ximian.com>
6500         * Control.cs: Make IsRecreating internal so that the driver can
6501         check it
6502         - Temporarily remove the Hide when controls are removed, its
6503         making a whole bunch of things not work because visibility isn't
6504         getting reset elsewhere correctly
6505         * Form.cs: Need to do a full handle recreation when the mdi parent
6506         is set.
6507         * XplatUIX11.cs: If we are recreating handles don't dispose the
6508         HWNDs.  What was happening is the handles were being recreated in
6509         SendWMDestroyMessages, but then flow continued on in that method
6510         and destroyed the new handles.
6512 2006-08-23  Jackson Harper  <jackson@ximian.com>
6514         * Form.cs: MdiClient is always at the back of the bus
6515         * Control.cs: When the order of items in the collection is changed
6516         we need to reset the all_controls array
6517         - do the same sorta setup thats done when adding a control when a
6518         control is set on the collection.
6520 2006-08-23  Peter Dennis Bartok  <pbartok@novell.com>
6522         * TextBoxBase.cs (get_Text): Return an empty array if our document
6523           is empty (fixes #79052)
6525 2006-08-23  Peter Dennis Bartok  <pbartok@novell.com> 
6527         * Control.cs: We should call IsInputChar on only on WM_CHAR but not
6528           on WM_SYSCHAR messages (fixes #79053)
6530 2006-08-23  Chris Toshok  <toshok@ximian.com>
6532         * DataGrid.cs: fix flickering when scrolling vertically.
6534 2006-08-23  Chris Toshok  <toshok@ximian.com>
6536         * DataGrid.cs (EndEdit): only invalidate the row header when we
6537         need to.
6539 2006-08-23  Chris Toshok  <toshok@ximian.com>
6541         * ThemeWin32Classic.cs: fix the clip munging of the datagrid paint
6542         methods.  fixes the flicker when scrolling around.
6544 2006-08-23  Peter Dennis Bartok  <pbartok@novell.com> 
6546         * FileDialog.cs: Making sure the control is created before we get a 
6547           chance to use it with BeginInvoke (Fixes #79096)
6549 2006-08-23  Chris Toshok  <toshok@ximian.com>
6551         * ThemeWin32Classic.cs (DataGridPaintRows): calculate the proper
6552         width to use when painting the rows.
6554 2006-08-23  Peter Dennis Bartok  <pbartok@novell.com> 
6556         * TextBoxBase.cs:
6557           - Throw ArgumentException if a negative value is passed to SelectionLength
6558           - Update the selection end if start is moved. end needs to be always
6559             after start. (Fixes #79095)
6560           - Track selection length; MS keeps the selection length even if start
6561             is changed; reset on all other operations affection selection
6563 2006-08-22  Jackson Harper  <jackson@ximian.com>
6565         * TreeView.cs: Make sure both scrollbars get displayed and sized
6566         correctly when the other bar is visible.
6567         - Use the original clip rectangle for checking if the area between
6568         the two scrollbars is visible, not the viewport adjusted clipping
6569         rectangle.
6571 2006-08-22  Jackson Harper  <jackson@ximian.com>
6573         * Binding.cs: We don't use IsBinding because it requires the
6574         control to be created, which really shouldn't be necessary just to
6575         set a property on the control.
6577 2006-08-21  Carlos Alberto Cortez <calberto.cortez@gmail.com>
6579         * ComboBox.cs: Some CB.ObjectCollection methods must throw
6580         ArgumentNullReferenceException when the argument is null.
6582 2006-08-21  Jackson Harper  <jackson@ximian.com>
6584         * Timer.cs: Track the thread that the timer is started in (NOT
6585         CREATED), this way messages for it will only be triggered on its
6586         queue.
6587         * XEventQueue.cs: Track the timers here, this makes timers per
6588         thread, like MS.
6589         * XplatUIX11.cs: The timers are moved to the XEventQueue.
6591 2006-08-19  Chris Toshok  <toshok@ximian.com>
6593         * XplatUIX11.cs: after further communication with pdb, we get the
6594         best of both worlds.  SetZOrder working for un-Mapped windows, and
6595         no X errors for un-mapped windows.
6597 2006-08-19  Chris Toshok  <toshok@ximian.com>
6599         * XplatUIX11.cs (SetZOrder): remove the if (!hwnd.mapped) check,
6600         as it was causing pdn toolbars to not have the correct stacking.
6602 2006-08-18  Mike Kestner  <mkestner@novell.com> 
6604         * ListView.cs : guard against negative ClientArea.Width in scrollbar
6605         calculation.  Not sure why control should ever be setting a negative
6606         width though.  Fixes #78931.
6608 2006-08-18  Carlos Alberto Cortez <calberto.cortez@gmail.com>
6610         * ComboBox.cs: Throw ArgumentNullException when adding/modifyng
6611         null items in ObjectCollection class.
6612         * ListBox.cs.: Likewise.
6614 2006-08-18  Atsushi Enomoto  <atsushi@ximian.com>
6616         * ThemeNice.cs, ThemeClearlooks.cs : remove RadioButton_DrawFocus()
6617           as the base method in ThemeWin32Classic should work fine.
6618           Fixed bug #78607.
6620 2006-08-18  Jackson Harper  <jackson@ximian.com>
6622         * Binding.cs: When validating if the value entered doesn't convert
6623         properly reset to the old value.
6624         * RadioButton.cs: Don't fire click when we get focus.
6626 2006-08-18  Jackson Harper  <jackson@ximian.com>
6628         * FileDialog.cs: Paint the selection on the directory combobox the
6629         same way as on MS. 
6631 2006-08-17  Jackson Harper  <jackson@ximian.com>
6633         * ErrorProvider.cs: Don't allow the error control to be selected.
6634         * Control.cs: Don't send the SetFocus messages, the control
6635         activation will do this, and if we do it blindly here validation
6636         does not work.
6638 2006-08-17  Jackson Harper  <jackson@ximian.com>
6640         * Control.cs:
6641         * ContainerControl.cs: Make validation events fire in the correct
6642         order.  TODO: For some reason the first validation event is not
6643         getting fired.
6645 2006-08-17  Mike Kestner  <mkestner@novell.com> 
6647         * ComboBox.cs : some null guarding for ComboListBox.Scroll.
6649 2006-08-17  Mike Kestner  <mkestner@novell.com> 
6651         * ComboBox.cs : implement scroll wheel support for popped-down
6652         state. Fixes #78945. 
6654 2006-08-17  Jackson Harper  <jackson@ximian.com>
6656         * TreeView.cs: Specify treeview actions (old patch that didn't get
6657         committed for some reason).
6658         - Don't let the mouse wheel scroll us too far.  Just want to make
6659         the bottom node visible, not scroll it all the ways to the top.
6661 2006-08-17  Jackson Harper  <jackson@ximian.com>
6663         * XplatUIX11.cs: Mouse wheel events go to the focused window.
6665 2006-08-17  Mike Kestner  <mkestner@novell.com> 
6667         * ComboBox.cs : don't do mouseover selection in simple mode.
6669 2006-08-16  Jackson Harper  <jackson@ximian.com>
6671         * Form.cs: Fire the closing events for all the mdi child windows
6672         when a window is closed.  If the cancel args are set to true, the
6673         main window still gets the event fired, but it doesn't not close.
6674         * MdiWindowManager.cs: Do this closing cleanup in a Closed
6675         handler, instead of when the button is clicked, so cancelling the
6676         close works correctly.
6677         * ComboBox.cs: Send the mouse down to the scrollbar.
6679 2006-08-16  Carlos Alberto Cortez <calberto.cortez@gmail.com>
6681         * ListBox.cs: When passing 'null' to SelectedItem,
6682         set SelectedIndex to -1, to unselect items. This is the
6683         observed behaviour in .Net.
6685 2006-08-16  Peter Dennis Bartok  <pbartok@novell.com> 
6687         * TextBoxBase.cs: Overriding HandleClick to get clicks in spite of
6688           MS flags saying there won't be any. (fixes #78800)
6689         * Control.cs (HandleClick): Made virtual
6691 2006-08-16  Atsushi Enomoto  <atsushi@ximian.com>
6693         * PageSetupDialog.cs : use Yard-Pound units only in en-GB and en-US
6694           cultures. Fixed bug #78399.
6696 2006-08-16  Jackson Harper  <jackson@ximian.com>
6698         * Form.cs: Use the MdiClients MdiChildren property to access
6699         MdiChildren instead of creating the array from the child controls.
6700         * MdiClient.cs: Maintain a separate array of the mdi children, so
6701         that insertion order is maintained when the Z-order is changed.
6703 2006-08-16  Mike Kestner  <mkestner@novell.com> 
6705         * ListView.cs : add an ItemComparer and default to it for sorting.
6706         Fixes #79076, but sorting needs a complete overhaul to be compat with
6707         MS.
6709 2006-08-15  Peter Dennis Bartok  <pbartok@novell.com> 
6711         * XplatUIX11.cs (SetZOrder): Fix debugging leftover (fixes #79080)
6713 2006-08-15  Peter Dennis Bartok  <pbartok@novell.com>
6715         * Hwnd.cs (Mapped): Properly traverse the tree
6717 2006-08-15  Chris Toshok  <toshok@ximian.com>
6719         * Binding.cs: fix PullData/SetPropertyValue.  We don't want to
6720         pass manager.Current.GetType() to ParseData.  It has to be the
6721         property type.  So, hold off doing the ParseData until we're in
6722         SetPropertyValue where we know the type.  This fixes the crash in
6723         #78821 but the textbox is still empty.
6725 2006-08-15  Chris Toshok  <toshok@ximian.com>
6727         * DataGrid.cs:
6728         - when we're scrolling, only call Edit() again if the
6729         current cell is still unobscured. Fixes bug #78927.
6730         - when handling mousedown on a cell, ensure the cell is visible
6731         before calling Edit.
6732         - remove the properties from DataGridRow, and remove the
6733         DataGridParentRow class altogether.
6734         
6736 2006-08-15  Peter Dennis Bartok  <pbartok@novell.com>
6738         * TextBoxBase.cs (set_Text): Don't use base.Text, instead just
6739           fire OnTextChanged by ourselves. There's no point calling base,
6740           we don't set the base value anywhere else. Fixes #78773.
6742 2006-08-15  Carlos Alberto Cortez <calberto.cortez@gmail.com>
6744         * ListBox.cs: Call CollectionChanged when modifying
6745         an item from Items indexer, to update the actual items
6746         in the list box.
6748 2006-08-15  Carlos Alberto Cortez <calberto.cortez@gmail.com>
6750         * PrintDialog.cs: Small fixes for focus and a pair of checks,
6751         to match .Net behaviour.
6753 2006-08-15  Peter Dennis Bartok  <pbartok@novell.com>
6755         * XplatUIX11.cs (SetZOrder): Handle raising toplevel windows
6757 2006-08-15  Peter Dennis Bartok  <pbartok@novell.com> 
6759         * Control.cs: Handle BringToFront for toplevel windows (Fixes #78737)
6761 2006-08-15  Peter Dennis Bartok  <pbartok@novell.com>
6763         * MessageBox.cs: Prevent potential NRE exception.
6764         * TextBoxBase.cs: AutoSize only applies if MultiLine is false. Fixes #78889
6766 2006-08-14  Peter Dennis Bartok  <pbartok@novell.com>
6768         * MessageBox.cs: Calculate the owner of a messagebox, also make
6769           it topmost. Fixes #78753
6771 2006-08-14  Chris Toshok  <toshok@ximian.com>
6773         * XplatUIX11.cs: A couple of fixes so that metacity will let us
6774         programmatically move windows.  first, set the PPosition hint as
6775         well as the USPosition hint.  Second include some code from pdb
6776         that sets the window type to NORMAL when we set the transient for
6777         hint.  This is because, in the absence of a window type, metacity
6778         thinks any window with TransientFor set is a dialog, and refuses
6779         to let us move it programmatically.  fascists.
6781 2006-08-14  Peter Dennis Bartok  <pbartok@novell.com>
6783         * XplatUIX11.cs: When setting normal hints, take into consideration
6784           an different hints previously set so we don't delete them (fixes #78866)
6786 2006-08-12  Chris Toshok  <toshok@ximian.com>
6788         * ToolBarButton.cs: make Layout return a boolean, if something to
6789         do with the button's layout changed.
6791         * ToolBar.cs:
6792         - add another parameter to Redraw, @force, which all existing
6793           calls set to true.
6794         - make the Layout function return a boolean which is true if the
6795           layout has actually changed.  Redraw now uses this (and @force)
6796           to determine when to invalidate.  At present the only place
6797           where @force can be false is the call from OnResize, when
6798           background_image == null.  So, resizing a toolbar when the
6799           layout doesn't change results in no drawing.
6801 2006-08-12  Chris Toshok  <toshok@ximian.com>
6803         * ThemeWin32Classic.cs: fix the bottom right corner painting.  had
6804         the VScrollBar and HScrollbar reversed.  oops.
6806         * DataGrid.cs: fix the logic that assigns sizes to the implicit
6807         scrollbars.  we were assigning them twice (once in
6808         Calc{Horiz,Vertical}Scrollbar, and once in CalcGridAreas),
6809         therefore causing two scrollbar resizes (and redraws?) to happen
6810         per grid resize.
6812 2006-08-12  Chris Toshok  <toshok@ximian.com>
6814         * ToolBarButton.cs: redraw the entire button if the theme tells us
6815         to.
6817         * Theme.cs: add ToolBarInvalidateEntireButton.
6819         * ThemeWin32Classic.cs: we don't need to redraw the entire toolbar
6820         buttons, just the border.
6822         * ThemeNice.cs: redraw the entire toolbar button since we need to
6823         draw the highlight image.
6825         * ThemeClearlooks.cs: the rounded corners of toolbar buttons mean
6826         we need to redraw the entire button (not just the border).
6828 2006-08-11  Peter Dennis Bartok  <pbartok@novell.com>
6830         * TextBoxBase.cs (CalculateScrollbars): Set the proper thumb size
6831           for vertical bars. Fixes the mismatches shown by #78513
6833 2006-08-11  Alexander Olk  <alex.olk@googlemail.com>
6835         * FileDialog.cs: If a saved/remembered path doesn't exist
6836           anymore, fall back to "Desktop".
6838 2006-08-11  Peter Dennis Bartok  <pbartok@novell.com>
6840         * Form.cs (CreateParams): Don't use Parent.Handle unless we have a
6841           parent. It's apparently legal to not have one
6842         * XplatUIX11.cs:
6843           - SetZOrder: Don't try to set Z-Order on an unmapped window
6844           - CreateWindow: 0,0 are legal coordinates for a window. don't move
6845             it unless the coordinates are negative
6847 2006-08-10  Mike Kestner  <mkestner@novell.com>
6849         * ListControl.cs: allow null for DataSource.  Clear DisplayMember
6850         when setting to null per msdn docs.  Fixes #78854.
6852 2006-08-10  Chris Toshok  <toshok@ximian.com>
6854         * Menu.cs, MainMenu.cs, MenuAPI.cs: get rid of most of the
6855         flickering by setting a clip rectangle on the Graphics when we
6856         need to redraw just a particular menuitem.  Also, rename "OnClick"
6857         to "OnMouseDown" to reflect what it actually is.
6858         
6859         * Form.cs: track the OnMouseDown change.
6861 2006-08-10  Peter Dennis Bartok  <pbartok@novell.com>
6863         * CommonDialog.cs: Properly inherit the CreateParams from the form
6864           and only change what we need. Fixes #78865
6866 2006-08-10  Chris Toshok  <toshok@ximian.com>
6868         * ToolBar.cs, ToolBarButton.cs: fix the redraw-on-highlight
6869         flickering in flat mode (and most of the flickering in general) by
6870         only invalidating the button border (and not the entire rectangle)
6871         when the state changes.  A couple of cases still flicker:
6872         ToggleButtons, and the dropdown arrow case when the user mouse
6873         ups.
6875 2006-08-10  Alexander Olk  <alex.olk@googlemail.com>
6877         * X11Keyboard.cs: Fixed handling of the Del key on the cursorblock
6878           for german keyboards. Numlock state shouldn't affect the behaviour
6879           of the Del key. Fixes bug #78291.
6881 2006-08-10  Chris Toshok  <toshok@ximian.com>
6883         * ListControl.cs: remove the items.Clear line from BindDataItems,
6884         as this is the first thing done by both subclasses in their
6885         SetItemsCore overrides.  Also, add a ItemChanged handler, and when
6886         passed -1, refresh the list.  This gets databinding working when
6887         the datasource is set on the list before the datasource is
6888         populated (as in wf-apps/ReportBuilder.)
6890         * ComboBox.cs: remove the argument to BindDataItems.  This call
6891         should really go away, and be initiated by the ListControl code.
6893         * ListBox.cs: same.
6895 2006-08-09  Peter Dennis Bartok  <pbartok@novell.com>
6897         * TextControl.cs (Document.ctor): Initialize caret so we don't crash
6898           if no data is in the document when the control is displayed
6900 2006-08-09  Peter Dennis Bartok  <pbartok@novell.com> 
6902         * TextBoxBase.cs: Don't try moving the caret if we don't have a window
6903           yes (fixes #78806)
6904         * TextControl.cs: 
6905           - PositionCaret: Allow positioning of caret but don't call methods 
6906             requiring a handle if the window isn't created yet
6907           - CharIndexToLineTag: Fix ending loop early error. Lines is 1 based
6908           - owner_HandleCreated: Don't position the caret, just update it's 
6909             location. User might have already set a different position
6911 2006-08-09  Peter Dennis Bartok  <pbartok@novell.com>
6913         * XplatUIWin32.cs: Don't use the desktop as basis for foster-parented
6914           windows. Screws up the returned coordinates for child windows. 
6915           Fixes #78825. I'm hoping this doesn't break something, since the
6916           code was explicitly put in 8 months ago, but no bug was attached.
6917           Menus still seem to work properly.
6919 2006-08-08  Chris Toshok  <toshok@ximian.com>
6921         * DataGrid.cs: make BeginInit/EndInit actually do what they're
6922         supposed to do - delay data binding until the EndInit call.  Also,
6923         make the table style collection's CollectionChangeAction.Refresh
6924         work properly.
6926         * GridTableStylesCollection.cs: raise a CollectionChangeEvent
6927         (with action = Refresh) when a consituent table's MappingName is
6928         changed.
6930 2006-08-08  Chris Toshok  <toshok@ximian.com>
6932         * ToolBarButton.cs: in set_Text, call Parent.Redraw, not
6933         Invalidate, since changing the text can change the size of the all
6934         toolbar buttons.
6936 2006-08-08  Peter Dennis Bartok  <pbartok@novell.com>
6938         * Form.cs (AddOwnedForm): Still need to add the form to our listif
6939           we don't have it yet
6941 2006-08-08  Chris Toshok  <toshok@ximian.com>
6943         * PrintControllerWithStatusDialog.cs: don't .Close() the status
6944         dialog, as this causes X errors later on, since we actually
6945         destroy the window.  Instead, .Hide() it.
6947 2006-08-08  Peter Dennis Bartok  <pbartok@novell.com>
6949         * ComboBox.cs: Added focus reflection for popup window
6950         * XplatUIX11.cs: 
6951           - Removed transient setting for non-app windows for now, not sure it
6952             was needed
6953           - Fixed logic checking if we have captions when deciding 
6954             override_redirect, WS_CAPTION is two bits and a 0 check was not
6955             sufficient
6956           - Removed the WINDOW_TYPE stuff, it was unneeded and making things
6957             complicated
6958         * Form.cs: 
6959           - AddOwnedForm: Don't just add the form to the list, call the property
6960             to ensure the driver is informed about the ownership as well
6961           - CreateHandle: Set the TopMost status in the driver if we have an owner
6962         * XplatUI.cs: Fixed debug statement
6964 2006-08-08  Jonathan Pobst <monkey@jpobst.com>
6965         * ButtonRenderer.cs, CheckBoxRenderer.cs, ComboBoxRenderer.cs
6966           GroupBoxRenderer.cs, ProgressBarRenderer.cs, RadioButtonRenderer.cs,
6967           ScrollBarRenderer.cs, TabRenderer.cs, TextBoxRenderer.cs, 
6968           TrackBarRenderer.cs: Make constructor private.
6969         * ProfessionalColors.cs, ProfessionalColorTable.cs: Fix misnamed properties.
6970         * ProfessionalColorTable.cs: Make properties virtual.
6972 2006-08-06  Duncan Mak  <duncan@novell.com>
6974         * NumericUpDown.cs (Value): Don't call OnValueChanged if the value
6975         is not changing.
6977 2006-08-04  Jonathan Pobst <monkey@jpobst.com>
6978         * ButtonRenderer.cs, CheckBoxRenderer.cs, ComboBoxRenderer.cs
6979           GroupBoxRenderer.cs, ProfessionalColors.cs, ProfessionalColorTable.cs,
6980           ProgressBarRenderer.cs, RadioButtonRenderer.cs, ScrollBarRenderer.cs,
6981           TabRenderer.cs, TextBoxRenderer.cs, TextRenderer.cs, TrackBarRenderer.cs:
6982           Initial import of new 2.0 classes.
6984 2006-08-04  Jonathan Pobst <monkey@jpobst.com>
6985         * Application.cs: Add 2.0 VisualStyles properties.
6987 2006-08-04  Jonathan Pobst <monkey@jpobst.com>
6988         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs, XplatUIWin32.cs,
6989           XplatUIX11.cs: Create property to allow access to existing private
6990           variable "themes_enabled"
6992 2006-08-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6994         * ImageListStreamer.cs: generate the MemoryStreams with the exact BMP
6995         file size, as otherwise our class libraries fail using windows. Fixes
6996         bug #78759.
6998 2006-08-04  Jackson Harper  <jackson@ximian.com>
7000         * Form.cs:
7001         * XplatUIX11.cs: Move the toolwindow window manager creation into
7002         the X11 driver, this way on win32 we can let windows create/handle
7003         the toolwindows.
7005 2006-08-04  Carlos Alberto Cortez <calberto.cortez@gmail.com>
7007         * PrintDialog.cs: Remove some redundant checks, add some others,
7008         clean some code, and move the focus to the text boxes when the
7009         values are incorrect.
7011 2006-08-04  Alexander Olk  <alex.olk@googlemail.com>
7013         * FontDialog.cs: Remove Form.MinimumSize. It's not needed.
7015 2006-08-03  Alexander Olk  <alex.olk@googlemail.com>
7017         * NumericUpDown.cs: Setting the Minimum and Maximum is now
7018           handled correctly. Fixes bug #79001.
7020 2006-08-03  Carlos Alberto Cortez <calberto.cortez@gmail.com>
7022         * PrintDialog.cs: The "Copies" numeric up down must have
7023         set the Minimum property to 1; only if the value is bigger
7024         than 1, activate "Collate" check box. This is the behaviour of .Net.
7025         Also modify the Document elements only if it is not null.
7027 2006-08-03  Jackson Harper  <jackson@ximian.com>
7029         * TreeNodeCollection.cs: Fix copyto to use the correct nodes
7030         length. (We have a larger array then actual node count).
7031                 
7032 2006-08-03  Jackson Harper  <jackson@ximian.com>
7034         * ComboBox.cs: Don't show selection by default.
7035         - The SelectAll isn't needed here, since the focus code should do
7036         that
7037         - DDL style lists to manual selection drawing, so when they
7038         get/lose focus they have to invalidate.
7040 2006-08-03  Peter Dennis Bartok  <pbartok@novell.com>
7042         * TextBoxBase.cs: Don't always show all selections by default.
7044 2006-08-03  Jonathan Pobst  <monkey@jpobst.com>
7045         * ControlUpdateMode.cs, DataSourceUpdateMode.cs,
7046           HelpNavigator.cs, WebBrowserEncryptionLevel.cs:
7047           Fixed various typos.
7049 2006-08-03  Alexander Olk  <alex.olk@googlemail.com>
7051         * Control.cs: Removing the controls in a ControlCollection with
7052           Clear now hides the controls as expected. Fixes bug #78804. 
7054 2006-08-03  Jackson Harper  <jackson@ximian.com>
7056         * Control.cs: Revert previous focus patch, it breaks reflector.
7058 2006-08-03  Jackson Harper  <jackson@ximian.com>
7060         * ComboBox.cs: Cleanup selection and focus with the combobox.
7061         This also eliminates some duplicated keyboard code, since now
7062         everything is handled by the main class.
7063         - Make list selection work on mouse up instead of down, to match
7064         MS.
7066 2006-08-02  Jackson Harper  <jackson@ximian.com>
7068         * Control.cs: Setting focus needs to go through the whole
7069         selection mechanism.
7071 2006-08-02  Chris Toshok  <toshok@ximian.com>
7073         * PrintPreviewDialog.cs: change MinimumSize to use
7074         base.MinimumSize so it works.
7076 2006-08-02  Peter Dennis Bartok  <pbartok@novell.com>
7078         * TextControl.cs:
7079           - UpdateCaret: Added sanity check in case caret isn't defined yet
7080           - Line.Delete: Now updating selection and caret markers if we're
7081             transfering a node (Properly fixes #78323)
7082           - SetSelectionEnd: Added sanity check
7083         * TextBoxBase.cs: Removed broken attempt to fix #78323
7085 2006-08-01  Chris Toshok  <toshok@ximian.com>
7087         * PrintPreviewDialog.cs: the CancelEventArgs stuff surrounding the
7088         Close() call is handled in Form, not here.
7090 2006-08-01  Chris Toshok  <toshok@ximian.com>
7092         * Theme.cs, ThemeWin32Classic.cs: fix the PrintPreviewControl
7093         layout/rendering.
7095         * PrintPreviewDialog.cs: add scrollbars, and add an image cache
7096         for sizes < 100% zoom.  The code now aggressively attempts to keep
7097         from calling document.Print (), and tries not to use the scaling
7098         g.DrawImage whenever possible (it still does if you scale to >
7099         100%, since usually that involves huge images).
7101         * PrintPreviewControl.cs: hook up the close button.
7103 2006-08-01  Jonathan Pobst  <monkey@jpobst.com>
7104         * ColumnClickEventHandler.cs, DrawItemEventHandler.cs,
7105           ItemChangedEventHandler.cs, ItemCheckEventHandler.cs,
7106           ItemDragEventHandler.cs, LabelEditEventHandler.cs,
7107           LinkClickedEventHandler.cs, LinkLabelLinkClickedEventHandler.cs,
7108           MeasureItemEventHandler.cs, MethodInvoker.cs, PaintEventHandler.cs,
7109           PropertyTabChangedEventHandler.cs, PropertyValueChangedEventHandler.cs,
7110           SelectedGridItemChangedEventHandler.cs, ToolBarButtonClickEventHandler.cs:
7111           Removed [Serializable] for 2.0 Event Handlers.
7113 2006-07-31  Jackson Harper  <jackson@ximian.com>
7115         * TextBoxBase.cs: Make ShowSelection invalidate when changed.
7116         * TextControl.cs: Uncomment out the body of this method.
7118 2006-07-31  Alexander Olk  <alex.olk@googlemail.com>
7120         * XplatUIX11.cs: Use the correct cursor shapes for arrow and default
7121           standard cursors.
7123 2006-07-31  Peter Dennis Bartok  <pbartok@novell.com>
7125         * TextBoxBase.cs: Added internal property ShowSelection to allow controls
7126           that embed TextBox and need selections visible even if textbox is not
7127           focused to enforce that behaviour.
7128         * TextControl.cs (Draw): Use ShowSelection instead of has_focus to determine
7129           selection drawing
7131 2006-07-31  Peter Dennis Bartok  <pbartok@novell.com>
7133         * TextControl.cs:
7134           - Added new SetSelectionStart/SetSelectionEnd overloads
7135           - Fixed viewport width assignment to be accurate
7136           - Adjusted alignment line shift calculations to allow cursor on right
7137             aligned lines to be always visible at the right border (like MS)
7138         * TextBoxBase.cs:
7139           - SetBoundsCore: Re-adjust caret location after resize (Fixes #78323)
7140           - TextBoxBase_SizeChanged: recalculating canvas on size changes
7141           - CalculateScrollBars: Use ViewPort size instead of window size, to
7142             properly consider space occupied by the border and scrollbars 
7143             (Fixes #78661)
7144           - hscroll_ValueChanged, vscroll_ValueChanged: Fixed scroll 
7145             calculations; no longer leaves artifacts
7146           - CaretMoved: Adjusted window scrolling to match MS and fixed several
7147             calculation bugs (Still missing right/center align calculations)
7149 2006-07-31  Peter Dennis Bartok  <pbartok@novell.com> 
7151         * XPlatUIWin32.cs: Made ScrollRectEx a bit more flexible, and removed
7152           use of both scroll rect and clip rect, as they do the same.
7154 2006-07-31  Peter Dennis Bartok  <pbartok@novell.com>
7156         * Control.cs (WM_CHAR WndProc): 2.0 profile allows changing the key 
7157           in the event handler (fixes #78912)
7159 2006-07-31  Chris Toshok  <toshok@ximian.com>
7161         * ThemeWin32Classic.cs: use grid.RowsCount here instead of
7162         grid.ListManager.Count, since grid.ListManager might be null.
7163         This of course begs the question "why are we drawing rows for a
7164         grid with no list manager (and therefor no rows)?"  Fixes the
7165         crash in bug #78929.
7167 2006-07-31  Chris Toshok  <toshok@ximian.com>
7169         * RelatedPropertyManager.cs: Don't always chain up to the parent
7170         ctor.  instead, call SetDataSource if the parent's position is !=
7171         -1.  Fixes the crash in #78822.
7173 2006-07-31  Chris Toshok  <toshok@ximian.com>
7175         * DataGrid.cs (get_ListManager): use field instead of property
7176         accessors for datasource and datamember.
7177         (RowsCount): make internal again.
7178         (OnMouseDown): end edits before resizing columns/rows.
7179         (OnMouseUp): restart edits after resizing columns/rows.
7181 2006-07-30  Peter Dennis Bartok  <pbartok@novell.com>
7183         * XplatUIX11.cs: Default cursor cannot be 0 or it will not get set.
7184           This fixes the situation where the last set cursor is displayed
7185           whenever the mouse is over scrollbars.
7187 2006-07-30  Carlos Alberto Cortez <calberto.cortez@gmail.com>
7189         * PrintDialog.cs: Fix the behaviour of PrinterSettings and
7190         Document properties, as well as initial values.
7192 2006-07-29  Peter Dennis Bartok  <pbartok@novell.com>
7194         * XplatUIWin32.cs (SetBorderStyle): Setting both border
7195           and ClientEdge results in a 3-pixel border, which is
7196           wrong.
7198 2006-07-28  Jackson Harper  <jackson@ximian.com>
7200         * TreeNodeCollection.cs: Fix the clear method.
7201         - Fix the Shrink also
7203 2006-07-27  Jackson Harper  <jackson@ximian.com>
7205         * TreeView.cs: Make sure the visible order is computed when we
7206         attempt to size the scrollbars (for trees that mess with the
7207         scrolling when they shouldn't.
7208         - Make sure to give the scrollbars valid values.
7210 2006-07-26  Peter Dennis Bartok  <pbartok@novell.com> 
7212         * XplatUIX11.cs: Move motion compression code to where it
7213           has less performance impact
7215 2006-07-26  Jackson Harper  <jackson@ximian.com>
7217         * UpDownBase.cs: When the control is selected make the child
7218         controls non selectable, so that a click on them won't do a
7219         focus/unfocus cycle.
7220         - Don't give focus to the text box when the spinner is selected.
7221         * XEventQueue.cs: Peek on both the x11 queue and the lock queue.
7223 2006-07-26  Chris Toshok  <toshok@ximian.com>
7225         * ThemeWin32Classic.cs: add print preview rendering.  I'm not
7226         satisfied with this solution.  If the bitmaps are small, we should
7227         just cache them in the PrintPreviewDialog and draw them here.
7228         Also, the layout is broken for the 2-up and 3-up cases.
7230         * Theme.cs: add PrintPReviewControlPaint.
7232         * PrintPreviewDialog.cs: first pass implementation.
7234         * PrintPreviewControl.cs: first pass implementation.  No
7235         scrollbars yet.
7237         * PrintDialog.cs: only validate fields if that particular portion
7238         of the UI is enabled.  Also, set the document's controller to a
7239         PrintControllerWithStatusDialog wrapping the document's print
7240         controller.
7242         * PrintControllerWithStatusDialog.cs: if we're printing to a file,
7243         bring up a SaveFileDialog (i hope we don't want to match the
7244         behavior of the crappy windows file entry) and set the
7245         PrinterSettings.PrintFileName accordingly.
7247 2006-07-26  Jackson Harper  <jackson@ximian.com>
7249         * ContainerControl.cs: Add a field that disables auto selecting
7250         the next control in a container when the container is activated.
7251         * UpDownBase.cs: Don't select the text box when the up down is
7252         selected.
7254 2006-07-26  Peter Dennis Bartok  <pbartok@novell.com> 
7256         * XEventQueue.cs: Added methods for peeking (used for compression
7257           of successive events)
7258         * XplatUIX11.cs (GetMessage): We're now compressing consecutive
7259           mouse move events (fixes #78732)
7261 2006-07-25  Jackson Harper  <jackson@ximian.com>
7263         * UpDownBase.cs: Use an internal class for the textbox so that we
7264         can control focus.  the updown control should always have focus,
7265         if either the text area or the buttons are clicked.
7266         - Send the key messages to the textbox, since it never actually
7267         has focus
7268         - Activate and decativate the textbox caret.
7270 2006-07-24  Jackson Harper  <jackson@ximian.com>
7272         * Control.cs: Use the directed select when selecting a control,
7273         this way the container controls override will get called and the
7274         whole ActiveControl chain will get triggered.  TODO: probably need
7275         to make sure this gets done everywhere instead of the old
7276         Select(Control).
7277         * ContainerControl.cs: Implement the directed Select method to
7278         find and activate the correct child control.    
7279         
7280 2006-07-22  Mike Kestner  <mkestner@novell.com>
7282         * Form.cs: use Control.MousePosition for NCLBUTTONDOWN in the menu
7283         menu handling code so that clicks without a grab work too.
7284         [Fixes #78914]
7286 2006-07-22  Alexander Olk  <alex.olk@googlemail.com>
7288         * FileDialog.cs: Enable the BackButton when dirstack has one element.
7289           Added some small optimizations.
7291 2006-07-21  Matt Hargett  <matt@use.net>
7293         * Control.cs: Implemented 2.0 MinimumSize/MaximumSize properties
7295 2006-07-21  Peter Dennis Bartok  <pbartok@novell.com> 
7297         * Control.cs (GetNextControl): Fixes to make all of Jackson's unit 
7298           tests pass and match MS in some strange border cases.
7300 2006-07-21  Chris Toshok  <toshok@ximian.com>
7302         * ThemeWin32Classic.cs: handle drawing of the relation links and
7303         parent row buttons.
7305         * Theme.cs: change args to DataGridPaintParentRow.
7307         * DataGrid.cs: Don't use controls for the relation links and
7308         parent buttons, so we have to handle all their interactions in
7309         MouseMove, MouseDown, MouseUp, etc.  Also, store a lot more stuff
7310         when we're navigating through child tables, so we can reinstate
7311         selection, expanded state, current cell, etc.
7313 2006-07-20  Chris Toshok  <toshok@ximian.com>
7315         * ToolBar.cs: When we redraw a button, for whatever reason,
7316         there's no reason to redraw the entire toolbar.  Also, don't call
7317         Control.Refresh from within Redraw, as it's much heavier than
7318         Invalidate (which is really what we want).
7320 2006-07-20  Chris Toshok  <toshok@ximian.com>
7322         * DataGrid.cs, CurrencyManager.cs, DataGridColumnStyle.cs,
7323         DataGridTextBoxColumn.cs, DataGridTextBox.cs,
7324         ThemeWin32Classic.cs, ListControl.cs: After staring at stack
7325         traces from within a debug IBindingList datasource
7326         (in mono/winforms/datagrid) for *days*, I've finally gotten things
7327         to work in a similar fashion.
7329 2006-07-20  Carlos Alberto Cortez <calberto.cortez@gmail.com>
7331         * ListBox.cs: Don't call Sort () when setting 
7332         the Sorted property to false (avoid an unnecessary sort).
7334 2006-07-20  Carlos Alberto Cortez <calberto.cortez@gmail.com>
7336         * ListControl.cs: DataSource should throw an ArgumentException
7337         instead of a normal exception when the argument is not of the 
7338         correct type.
7340 2006-07-20  Mike Kestner  <mkestner@novell.com>
7342         * Control.cs: add InternalPreProcessMessage to allow us to steal
7343         key events before MWF gets its paws on them.  Adapted from a
7344         suggestion by eno.
7345         * ToolBar.cs: add GotLostFocus handing for flat toolbars, with 
7346         up/down/left/right navigation. Override the new internal control
7347         method to steal the events since they never make it to WndProc.
7348         * ToolBarButton.cs: don't worry about pushed when setting hilight
7349         since the drawing code prefers pushed to hilight. Invalidate on 
7350         Hilight changes. Fixes #78547 and #78525.
7352 2006-07-20  Peter Dennis Bartok  <pbartok@novell.com> 
7354         * ScrollableControl.cs: Consider AutoScrollMinSize when calculating
7355           the canvas size. Fixes #78868
7357 2006-07-20  Peter Dennis Bartok  <pbartok@novell.com>
7359         * Splitter.cs: Track requested split position until first layout
7360           is performed. Fixes #78871
7362 2006-07-20  Peter Dennis Bartok  <pbartok@novell.com> 
7364         * Application.cs: Removed code that forces 1.x for the version
7365           number if the version started with 0. Not sure why that code was
7366           there and I couldn't find any bugs that indicated we needed it.
7367           Fixes #78869
7369 2006-07-20  Alexander Olk  <alex.olk@googlemail.com>
7371         * ThemeWin32Classic.cs: Don't throw a NotImplementedException in
7372           ResetDefaults(), just write some output to the console until it's
7373           implemented. Fixes bug #78907 for now. Eliminated two warnings.
7375 2006-07-19  Jonathan Chambers  <joncham@gmail.com>
7377         * PropertyGridView.cs: set StartPosition of drop down forms
7378         so they appear in correct initial spot.  Fixes #78190.
7380 2006-07-19  Mike Kestner  <mkestner@novell.com>
7382         * ThemeWin32Classic.cs: use parent background color when drawing
7383         flat toolbars.  Restructure the conditionals to make sure non-flat
7384         non-Divider toolbars are filled too.  Fixes #78837.
7386 2006-07-19  Mike Kestner  <mkestner@novell.com>
7388         * ListBox.cs: Sort on collection changes even if the handle
7389         isn't created yet.  Fixes #78813.
7391 2006-07-18  Carlos Alberto Cortez <calberto.cortez@gmail.com>
7393         * ListControl.cs: DisplayMember should never be null,
7394         and now we assign String.Empty when null is passed to it (this
7395         is the .Net way).
7397 2006-07-17  Mike Kestner  <mkestner@novell.com>
7399         * ListViewItem.cs: restructure Font and subitem Font handling 
7400         to hold a specific font and refer back to owner on null.
7401         Fixes #78761.
7403 2006-07-17  Mike Kestner  <mkestner@novell.com>
7405         * ToolBar.cs: bandaid for side-effect of previous patch which was
7406         discarding explicit heights for non-AutoSize toolbars.  Need to
7407         extend my format tester to deal with AutoSize=false. Fixes #78864.
7409 2006-07-15  Jackson Harper  <jackson@ximian.com>
7411         * LabelEditTextBox.cs:
7412         * TreeView.cs: Use a new LabelEdit class for node editing, this
7413         class automatically 'closes' itself when it gets the enter key or
7414         loses focus.
7415         - Use the client rectangle when setting the trees scrollbars, so
7416         border style is taken into account.
7417         
7418 2006-07-14  Jackson Harper  <jackson@ximian.com>
7420         * TreeNode.cs:
7421         * TreeView.cs: Make the editing work similar to MSs, firing the
7422         events correctly and ending edits correctly.
7424 2006-07-14  Mike Kestner  <mkestner@novell.com>
7426         * ToolBarButton.cs:
7427         * ToolBar.cs: layout restructuring and redraw enhancements to support
7428         formatting changes gracefully, like setting TextAlign, ImageList, 
7429         ButtonSize, and Appearance.  Handles explicit button sizing quirks
7430         of the MS controls.  Things like flat toolbars ignoring button size
7431         but becoming constant sized at the largest button's size.  Normal
7432         toolbars with an image set cannot be shrunk smaller than the image,
7433         but text can be clipped/ignored.
7434         * ThemeWin32Classic.cs: don't draw text if text_rect height or width
7435         is zero.  Seems like DrawString should be smart enough to not put
7436         anything on screen though. Also trim labels and ellipsize at the char
7437         boundary, not word.
7438         Fixes #78711 and #78483.
7440 2006-07-14  Alexander Olk  <alex.olk@googlemail.com>
7442         * FolderBrowserDialog.cs: Disable "New Folder" button and
7443           "New Folder" contextmenu menuitem if a folder like "My Computer"
7444           is selected.
7446 2006-07-14  Alexander Olk  <alex.olk@googlemail.com>
7448         * FileDialog.cs: Don't create a new folder in "MyComputer" folder.
7449         * FolderBrowserDialog.cs:
7450           - Use MWFConfig to store and read size and position settings
7451           - Added code to create a new folder (button or context menu).
7452             Use TreeView labeledit to change the name of the new folder.
7454 2006-07-14  Jackson Harper  <jackson@ximian.com>
7456         * TreeView.cs: Raise the OnAfterLabelEdit event correctly.  Also,
7457         when the tree is scrolled we end editing.
7459 2006-07-14  Alexander Olk  <alex.olk@googlemail.com>
7461         * ThemeWin32Classic.cs: Fixed position of CPDrawScrollButton Up and
7462           Down arrows
7464 2006-07-14  Jonathan Pobst  <monkey@ipobst.com> 
7466         WebBrowserProgressChangedEventHandler.cs, BindingCompleteEventArgs.cs,
7467         BindingCompleteEventHandler.cs, BindingManagerDataErrorEventArgs.cs,
7468         BindingManagerDataErrorEventHandler.cs, CacheVirtualItemsEventArgs.cs,
7469         CacheVirtualItemsEventHandler.cs, ColumnReorderedEventArgs.cs,
7470         ColumnReorderedEventHandler.cs, ColumnWidthChangedEventArgs.cs,
7471         ColumnWidthChangedEventHandler.cs, ColumnWidthChangingEventArgs.cs,
7472         ColumnWidthChangingEventHandler.cs, FormClosedEventArgs.cs,
7473         FormClosedEventHandler.cs, FormClosingEventArgs.cs,
7474         FormClosingEventHandler.cs, ItemCheckedEventArgs.cs,
7475         ItemCheckedEventHandler.cs, ListControlConvertEventArgs.cs,
7476         ListControlConvertEventHandler.cs, ListViewItemMouseHoverEventArgs.cs,
7477         ListViewItemMouseHoverEventHandler.cs, ListViewItemSelectionChangedEventArgs.cs,
7478         ListViewItemSelectionChangedEventHandler.cs,
7479         ListViewVirtualItemsSelectionRangeChangedEventArgs.cs,
7480         ListViewVirtualItemsSelectionRangeChangedEventHandler.cs,
7481         MaskInputRejectedEventArgs.cs, MaskInputRejectedEventHandler.cs,
7482         PopupEventArgs.cs, PopupEventHandler.cs, PreviewKeyDownEventArgs.cs,
7483         PreviewKeyDownEventHandler.cs, RetrieveVirtualItemEventArgs.cs,
7484         RetrieveVirtualItemEventHandler.cs, SearchForVirtualItemEventArgs.cs,
7485         SearchForVirtualItemEventHandler.cs, SplitterCancelEventArgs.cs,
7486         SplitterCancelEventHandler.cs, TabControlCancelEventArgs.cs, 
7487         TabControlCancelEventHandler.cs, TabControlEventArgs.cs, 
7488         TabControlEventHandler.cs, TableLayoutCellPaintEventArgs.cs,
7489         TableLayoutCellPaintEventHandler.cs, ToolStripDropDownClosedEventArgs.cs,
7490         ToolStripDropDownClosedEventHandler.cs, ToolStripDropDownClosingEventArgs.cs,
7491         ToolStripDropDownClosingEventHandler.cs, TreeNodeMouseClickEventArgs.cs,
7492         TreeNodeMouseClickEventHandler.cs, TreeNodeMouseHoverEventArgs.cs,
7493         TreeNodeMouseHoverEventHandler.cs, TypeValidationEventArgs.cs,
7494         TypeValidationEventHandler.cs, WebBrowserDocumentCompletedEventArgs.cs,
7495         WebBrowserDocumentCompletedEventHandler.cs, WebBrowserNavigatedEventArgs.cs,
7496         WebBrowserNavigatedEventHandler.cs, WebBrowserNavigatingEventArgs.cs,
7497         WebBrowserNavigatingEventHandler.cs, 
7498         WebBrowserProgressChangedEventArgs.cs: New 2.0 Event Handlers
7500 2006-07-14  Jonathan Pobst  <monkey@ipobst.com>
7502         MergeAction.cs, PowerLineStatus.cs, PowerState.cs, PreProcessControlState.cs,
7503         RichTextBoxLanguageOptions.cs, ScreenOrientation.cs, ScrollOrientation.cs,
7504         SearchDirectionHint.cs, SystemParameter.cs, TabControlAction.cs,
7505         TableLayoutPanelCellBorderStyle.cs, TextDataFormat.cs, TextImageRelation.cs,
7506         ToolStripDropDownCloseReason.cs, ToolStripDropDownDirection.cs,
7507         ToolStripGripDisplayStyle.cs, ToolStripGripStyle.cs,
7508         ToolStripItemAlignment.cs, ToolStripItemDisplayStyle.cs,
7509         ToolStripItemImageScaling.cs, ToolStripItemOverflow.cs,
7510         ToolStripItemPlacement.cs, ToolStripLayoutStyle.cs,
7511         ToolStripManagerRenderMode.cs, ToolStripRenderMode.cs,
7512         ToolStripStatusLabelBorderSides.cs, ToolStripTextDirection.cs,
7513         ToolTipIcon.cs, TreeNodeStates.cs, TreeViewDrawMode.cs,
7514         TreeViewHitTestLocations.cs, UnhandledExceptionMode.cs, ValidationConstraints.cs,
7515         WebBrowserEncryptionLevel.cs, WebBrowserReadyState.cs, WebBrowserRefreshOption.cs,
7516         ArrowDirection.cs, AutoCompleteMode.cs, AutoCompleteSource.cs, AutoSizeMode.cs,
7517         AutoValidate.cs, BatteryChargeStatus.cs, BindingCompleteContext.cs,
7518         BindingCompleteState.cs, CloseReason.cs, ColumnHeaderAutoResizeStyle.cs,
7519         ControlUpdateMode.cs, DataSourceUpdateMode.cs, DockingBehavior.cs,
7520         FixedPanel.cs, FlowDirection.cs, GetChildAtPointSkip.cs,
7521         HtmlElementInsertionOrientation.cs, InsertKeyMode.cs, ListViewHitTestLocations.cs,
7522         ListViewItemStates.cs, MaskFormat.cs: Added
7524 2006-07-13  Jonathan Chambers  <joncham@gmail.com>
7526         * PropertyGridView.cs: Fix keyboard navigation of drop down.
7527         Patch from eno for bug 78558.
7528         
7529 2006-07-13  Jackson Harper  <jackson@ximian.com>
7531         * TreeView.cs: When an edit is finished make sure that the
7532         selected node is visible.
7533         - When setting the top/bottom use the scrollbars is_visible, so
7534         everything will be set correctly even if the tree isn't visible
7535         yet.
7537 2006-07-13  Jackson Harper  <jackson@ximian.com>
7539         * ComboBox.cs: Revert the item->index part of my previous patch.
7540         * TreeView.cs: Use LostFocus instead of Leave for detecting when
7541         the edit box has lost focus (duh).
7542         - Just make the edit box not visible when we get return, that will
7543         take the focus, which will call EndEdit
7544         * TreeNode.cs When we start editing, notify the treeview.
7546 2006-07-12  Jackson Harper  <jackson@ximian.com>
7548         * ComboBox.cs: Clear out old items before setting the item list.
7549         This prevents databound controls from having their items added
7550         twice.
7551         - Switch the combobox to use indices whereever possible instead of
7552         using Item's.  This allows usto navigate through lists that have
7553         more then one item with the same string value (ie a, b, b, a).
7554         - Scroll the listboxes scrollbar when a non visible item is
7555         highlighted
7556         - Allow keypress to cycle through all the possible values. For
7557         example if you have b1, b2, b3 and hold down the B key all the
7558         values will be cycled through.
7559         
7560 2006-07-12  Jackson Harper  <jackson@ximian.com>
7562         * TextBoxBase.cs:
7563         * ListView.cs: Don't need to override SETFOCUS anymore, we can do
7564         this using the internal methods.
7565         * Control.cs: Add OnGotFocusInternal.  A new method that allows
7566         controls to "override" OnGotFocus and change focus behavior if
7567         needed.
7568         - Same thing for LostFocus
7569         * ComboBox.cs: Pass off focus to the text control properly.
7571 2006-07-12  Alexander Olk  <alex.olk@googlemail.com>
7573         * FileDialog.cs: Added GetFoldersOnly to MWFVFS
7574         * FolderBrowserDialog.cs: Almost a complete rewrite.
7575           - Better support for Environment.Specialfolders
7576           - Added support for MWFVFS
7577           - Made setting SelectedPath work
7579 2006-07-12  Jackson Harper  <jackson@ximian.com>
7581         * Control.cs: Optimze getting all the controls.
7583 2006-07-11  Jackson Harper  <jackson@ximian.com>
7585         * ContainerControl.cs: Override SETFOCUS in the container control,
7586         so that it is not selected on mouse click.
7588 2006-07-11  Peter Dennis Bartok  <pbartok@novell.com> 
7590         * LinkLabel.cs: Hack to handle Shift-Tabbing to the linklabel. 
7591           Hopefully we will have a better way once all of focus is complete.
7593 2006-07-11  Peter Dennis Bartok  <pbartok@novell.com>
7595         * ThemeWin32Classic.cs: Commented out some debug code and fixed
7596           a compile error with csc.
7598 2006-07-11  Jackson Harper  <jackson@ximian.com>
7600         * Control.cs: When hiding a control only select the next control
7601         if the current control was focused.
7602         - Don't handle enter/leave when setting/killing focus, this is
7603         done by the container control.
7604         - Remove is_selected, it's not needed anymore.
7605         - Add utility methods for selecting a child control, and for
7606         firing the Enter/Leave events.
7607         * ContainerControl.cs: When a control is activated fire the
7608         enter/leave events.
7609         - Don't wrap when processing the tab key, so that focus can be
7610         moved outside of the container.
7611         - Use the correct active control
7613 2006-07-11  Jackson Harper  <jackson@ximian.com>
7615         * ComboBox.cs: Remove some debug code that was blinding me.
7616         * UpDownBase.cs: These controls actually aren't implicit, they are
7617         visible to the user.
7619 2006-07-10  Chris Toshok  <toshok@ximian.com>
7621         * DataGrid.cs: move back to the is_adding boolean field.  god i
7622         hate this is_editing/is_adding/is_changing stuff.
7624 2006-07-10  Chris Toshok  <toshok@ximian.com>
7626         * DataGridTableStyle.cs: just check if the property type is bool.
7627         if it is, use DataGridBoolColumn, otherwise DataGridTextBoxColumn.
7628         Don't use CanRenderType.
7630         * DataGridTextBoxColumn.cs: set the value to DBNull.Value, not "",
7631         if our text == NullText.  Remove CanRenderType.
7633         * DataGridBoolColumn.cs: nuke CanRenderType.
7635         * DataGrid.cs: reenable some code to end the current edit inside
7636         of set_CurrentCell.  This fixes the other 1.1.16 regression.
7637         Also, remove rowhdrs_maxheight and just use rowhdrs_area.Height.
7638         Also, remove the visible_row_count arg from CalcRowHeaders, since
7639         we don't need to worry about the actual height of the area.
7641 2006-07-10  Chris Toshok  <toshok@ximian.com>
7643         * DataGridTextBoxColumn.cs: if when we Commit we're in navigate
7644         mode, just return.
7646         * DataGridTextBox.cs: change "isedit" to "isnavigating" to reflect
7647         the real sense of the IsInEditOrNavigateMode property (true =
7648         navigate, false = edit).  Also, update OnKeyPress to reflect this.
7650         * DataGridTableStyle.cs (CreateColumnsForTable): even if the
7651         column style exists, we still need to set its property descriptor
7652         to match up with our list manager.
7654 2006-07-10  Chris Toshok  <toshok@ximian.com>
7656         * ThemeWin32Classic.cs: implement the new row/header painting
7657         approach.  The parent row painting will likely go away and
7658         replaced with label controls, but the rest seems to work ok (and
7659         efficiently).
7661         * Theme.cs: change the way we draw datagrid rows.  we don't draw
7662         the row headers as a block now.  Instead we draw them in the
7663         normal draw-row loop.  Add some calls for drawing parent rows and
7664         relation rows.
7666         * DataGridTableStyle.cs: add tons of ArgumentExceptions if this is
7667         a default table style.  Set the defaults from ThemeEngine.Current,
7668         not SystemColors.  Fix lots of misc issues with property setters.
7670         * DataGrid.cs: move loads of style information out of this class
7671         as it's being duplicated with DataGridTableStyle.  keep track of a
7672         special DataGridTableStyle for the properties we used to mirror
7673         here.  Switch all the style properties to access this table style
7674         instead of instance fields of this class.  Also add a internal
7675         class to represent parent rows (more needs to be stored here, like
7676         the selection state from the parent table, as well as the
7677         expansion state.)  Also, for datasources with relations, do the
7678         right thing for collapse/expand, and add support for the
7679         navigation/parent row buttons.
7681         Lastly, fix the crash in the 1.1.16 build.
7683         * GridTableStylesCollection.cs: make the explicit interface
7684         implementations call the class's methods as opposed to duplicating
7685         them.
7687         * DataGridTextBoxColumn.cs: set the x/y offset of the textfield to
7688         0 so the text doesn't jump around when we move the cursor.
7690 2006-07-10  Jackson Harper  <jackson@ximian.com>
7692         * TextBoxBase.cs:
7693         * ListBox.cs: Match MS's ToString (this makes debugging focus
7694         stuff infinitely easier).
7696 2006-07-10  Jackson Harper  <jackson@ximian.com>
7698         * Control.cs (SelectNextControl): When checking the control's
7699         parent use this instead of ctrl.parent so that null can be passed
7700         to SelectNextControl. (I have unit tests for this).
7701         - Remove unused var.
7703 2006-07-10  Chris Toshok  <toshok@ximian.com>
7705         * CurrencyManager.cs: correct one regression, the removal of the
7706         finalType field.  Also, add a MonoTODO on CanAddRows, implement
7707         Refresh() correctly, and fix some event emission in
7708         ListChangedHandler.
7710 2006-07-07  Alexander Olk  <alex.olk@googlemail.com>
7712         * FileDialog.cs: Don't use brackets for new folders if they exist
7713           under *nix. Instead use -(number of existing folders +1).
7715 2006-07-07  Alexander Olk  <alex.olk@googlemail.com>
7717         * FileDialog.cs:
7718           - Fixed really nasty bug #78771
7719           - Don't block the whole GUI when reading directories with a lot of
7720             entries. Use an other thread instead and call BeginInvoke to
7721             update the ListView in MWFFileView
7723 2006-07-07  Chris Toshok  <toshok@ximian.com>
7725         * Control.cs (Dispose): release any Capture when disposing.
7727 2006-07-07  Chris Toshok  <toshok@ximian.com>
7729         * LinkLabel.cs (Select): if we chain up to the parent, set
7730         focused_index to -1 so we'll search for the first available link
7731         the next time the user tabs into us.  Also, if the direction is
7732         backward and focused_index == -1, start the search from the last
7733         element.
7735 2006-07-07  Chris Toshok  <toshok@ximian.com>
7737         * LinkLabel.cs (CreatePiecesFromText): if the link's range piece
7738         is beyond the end of the text, don't do anything.
7739         (CreateLinkPieces): set our ControlStyles.Selectable based on
7740         whether or not we have any links.
7741         (Link.Invalidate): use a loop instead of foreach.
7742         (Link.set_Start): null out owner.sorted_links so it'll be
7743         recreated by CreateLinkPieces.
7745 2006-07-06  Chris Toshok  <toshok@ximian.com>
7747         * LinkLabel.cs: revert the SetStyle change.
7749 2006-07-06  Chris Toshok  <toshok@ximian.com>
7751         * LinkLabel.cs (.ctor): SetStyle Selectable to true.
7752         (OnEnableChanged): s/Refresh/Invalidate
7753         (OnGotFocus): if we have a focused index already, refocus it (so
7754         if we mouse out/in to the window it'll focus the right link).
7755         (OnKeyDown): move the tab handling out of here.
7756         (OnLostFocus): don't set focused_index to -1, so we can refocus it
7757         when we lose focus.
7758         (OnMouseDown): don't Capture here - Control handles it.  Also,
7759         focus the active link.
7760         (OnMouseUp): don't deal with Capture.
7761         (OnPaintBackgroundInternal): remove.
7762         (OnTextAlignChanged): CreateLinkPieces before calling the
7763         superclass's method.
7764         (OnTextChanged): call CreateLinkPieces before calling superclass's
7765         method.
7766         (ProcessDialogKey): handle Tab here, and call Select(bool,bool) to
7767         move around.
7768         (Select): implement this, moving the selection between different
7769         links, and call parent.SelectNextControl if we don't have another
7770         link to focus in the given direction.
7771         (CreateLinkPieces): call Invalidate instead of Refresh.
7772         
7773 2006-07-06  Chris Toshok  <toshok@ximian.com>
7775         * ThemeWin32Classic.cs: DrawLinkLabel changes to accomodate the
7776         new LinkLabel internals.
7778         * LinkLabel.cs: fairly major rewrite.  get rid of all the loops
7779         over pieces looking for active/focused/etc links.  also, deal with
7780         runs of text (and links) with embedded \n's in them, and use
7781         MeasureCharacterRanges instead of MeasureString to figure out the
7782         regions text occupies.  Lastly, do the usual s/Refresh/Invalidate
7783         two-step.
7785 2006-07-04  Jackson Harper  <jackson@ximian.com>
7787         * XplatUIX11.cs: Enable key auto repeat. If the user doesn't have
7788         XKB or key auto repeat, do it manually.  Without key auto repeat,
7789         when a key is held down we get key press, key release, key press,
7790         key release, ... with auto repeat we get key press, key press, key
7791         press ..., and then a release when the key is actually released.
7793 2006-07-03  Jackson Harper  <jackson@ximian.com>
7795         * TabControl.cs:
7796         * ThemeWin32Classic.cs: Tabs do not obey normal background color
7797         rules, they are always control color regardless of the background
7798         color.
7800 2006-07-02  Alexander Olk  <alex.olk@googlemail.com>
7802         * FileDialog.cs: Added internal class MWFConfig.
7803           Removed Registry support and replaced it with support for the new
7804           MWFConfig class. See MWFConfig comments for more information.
7806 2006-06-30  Alexander Olk  <alex.olk@googlemail.com>
7808         * ThemeWin32Classic.cs: Added RadioButton and CheckBox focus
7809           rectangle. Added some patches from eno from bug #78490 and fixed
7810           the arrow position for small up and down CPDrawScrollButtons.
7812 2006-06-30  Jackson Harper  <jackson@ximian.com>
7814         * InternalWindowManager.cs: Remove some debug code.
7815         * Form.cs: When an MdiParent is set to null, the window is
7816         "detatched" and becomes a normal window.
7817         * MdiClient.cs: Don't bring the new child form to the front until
7818         it is activated (setting it as active does this), this makes the
7819         previously active forms titlebar get redrawn as inactive.
7821 2006-06-29  Peter Dennis Bartok  <pbartok@novell.com>
7823         * PrintDialog.cs: Labels need a tab index too, otherwise they overlap
7824           with later controls
7826 2006-06-29  Mike Kestner  <mkestner@novell.com>
7828         * MenuAPI.cs: handle arrow keys in keynav state. Go active on down
7829         arrow in keynav state.  Fixes #78682.
7831 2006-06-28  Atsushi Enomoto  <atsushi@ximian.com>
7833         * PrintDialog.cs: Reorder, relayout, remove extra code, set tab 
7834           order (fixes #78393)
7836 2006-06-28  Jonathan Pobst  <monkey@ipobst.com>
7838         * AccessibleRole.cs, AccessibleStates.cs, AnchorStyles.cs, 
7839           ArrangeDirection.cs, ArrangeStartingPosition.cs, ColorDepth.cs,
7840           ControlStyles.cs, DataGridViewImageCellLayout.cs, DrawMode.cs,
7841           FormBorderStyle.cs, FormStartPosition.cs, FormWindowState.cs,
7842           GridItemType.cs, HelpNavigator.cs, ImeMode.cs, ItemActivation.cs,
7843           ItemBoundsPortion.cs, Keys.cs, ListViewAlignment.cs, 
7844           PictureBoxSizeMode.cs, PropertySort.cs, SelectionMode.cs,
7845           Shortcut.cs, SizeGripStyle.cs, SortOrder.cs, StructFormat.cs,
7846           TextFormatFlags.cs, ToolBarAppearance.cs, ToolBarButtonStyle.cs,
7847           ToolBarTextAlign.cs, View.cs: 2.0 Changes to existing 1.x
7848           enumerations (FlagsAttribute, SerializableAttribute, added/removed
7849           values)
7851 2006-06-28  Mike Kestner  <mkestner@novell.com>
7853         * ComboBox.cs: implement scroll wheel support. Fixes #78360.
7855 2006-06-28  Atsushi Enomoto  <atsushi@ximian.com>
7857         * PropertyGrid.cs,
7858           PropertyGridTextBox.cs : explicitly set BackColor to differentiate
7859           item lines from other area (It also makes BackColor consistent and
7860           compatible with .NET). Fixed bug #78564.
7862 2006-06-28  Jonathan Chambers  <jonathan.chambers@ansys.com>
7864         * PropertyGrid.cs: refresh toolbar when PropertySort is set.
7865         Patch from Eno for #78555.
7867 2006-06-27  Chris Toshok  <toshok@ximian.com>
7869         * ThemeWin32Classic.cs: s/grid.grid_drawing/grid
7871         * DataGridColumnStyle.cs: same.
7873         * DataGrid.cs: Roll DataGridDrawingLogic.cs into this file.
7874         
7875         * DataGridDrawingLogic.cs: nuke.
7877 2006-06-27  Chris Toshok  <toshok@ximian.com>
7879         * DataGridTableStyle.cs: clean up the constructors, and build the
7880         list of child relations for this table.  I have no idea if this is
7881         where we should be doing it (it probably isn't), but since we're
7882         already iterating over the properties..
7884         * DataGrid.cs: add row resizing.  for now we add a DataGridRow
7885         struct and array for keeping track of row information, similar to
7886         what's shown in a hack on
7887         http://www.syncfusion.com/FAQ/WindowsForms/FAQ_c44c.aspx.
7889         * Theme.cs: be consistent about the naming of DataGrid methods,
7890         prefering ColumnWidths and RowHeights over columnsWidths and
7891         RowsHeights.
7893         * ThemeWin32Classic.cs: same, and also add support for variable
7894         sized rows (and the +/- expansion icons for related rows).
7896 2006-06-27  Peter Dennis Bartok  <pbartok@novell.com>
7898         * TextBoxBase.cs: Applied Eno's patch from #78660
7900 2006-06-27  Peter Dennis Bartok  <pbartok@novell.com> 
7902         * Form.cs (ScaleCore): We don't want to scale our form if it's
7903           state is minimized or maximized, but we still need to scale our
7904           child windows. Also, added try/finally block to ensure layout
7905           gets reset (Fixes #78697)
7907 2006-06-27  Peter Dennis Bartok  <pbartok@novell.com>
7909         * Control.cs: Added 2.0 Scale(SizeF) method (Fixes 78700)
7911 2006-06-27  Peter Dennis Bartok  <pbartok@novell.com> 
7913         * Form.cs: Fixed c+p error and added check to resize form if minimum
7914           size is bigger than current size (Fixes #78709)
7916 2006-06-26  Peter Dennis Bartok  <pbartok@novell.com> 
7918         * ThemeEngine.cs (..ctor): Properly use ToLower() (Fixes #78704)
7920 2006-06-26  Mike Kestner  <mkestner@novell.com>
7922         * ComboBox.cs: only do Keypress handling in the combo when there  
7923         are items in the collection. Fixes #78710.
7925 2006-06-26  Chris Toshok  <toshok@ximian.com>
7927         * Binding.cs: make this work bi-directionally.  also, clear up
7928         other mixups between Push/Pull Data (e.g. we're supposed to pull
7929         data when validating).
7931         * BindingManagerBase.cs: trim some fully qualified collection
7932         types.
7934         * PropertyManager.cs (get_IsSuspended): oops, fix this check.
7936 2006-06-23  Chris Toshok  <toshok@ximian.com>
7938         * PropertyManager.cs: It appears (according to the unit tests)
7939         that PropertyManager doesn't use
7940         PropertyDescriptor.AddValueChanged to track propery value changes
7941         in its datasource, but uses the same scheme as Binding, where it
7942         looks for a <Property>Changed event and binds to it.
7944         Also, according to the docs, IsSuspended always returns false for
7945         a property manager with a non-null datasource.
7947 2006-06-22  Peter Dennis Bartok  <pbartok@novell.com> 
7949         * Form.cs: (ShowDialog): If we're returning a forced cancel we still
7950           need to update the actual DialogResult. (Fixes #78613)
7952 2006-06-22  Peter Dennis Bartok  <pbartok@novell.com>
7954         * Form.cs (ShowDialog): Release any captures before running the
7955           new message pump (fixes #78680)
7957 2006-06-22  Mike Kestner  <mkestner@novell.com>
7959         * ListView.cs: Layout column widths properly in details mode even 
7960         if HeaderStyle.None is set.  Fixes #78691.
7962 2006-06-21  Peter Dennis Bartok  <pbartok@novell.com>
7964         * FileDialog.cs: Fixed taborder to match MS. Fixes #77873 partially.
7966 2006-06-21  Peter Dennis Bartok  <pbartok@novell.com> 
7968         * Control.cs (ContainsFocus): Using new driver method to get focused
7969           window, instead of trying to use internal tracking var, which can
7970           recursion issues (Fixes #78685)
7971         * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs, XplatUIOSX.cs, 
7972           XplatUIWin32.cs: Added GetFocus method to return focused window
7974 2006-06-21 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7976         * ColorDialog.cs: when the mouse button is pressed inside the color
7977         matrix, don't let the cursor move out of it until the button is
7978         released, which is the behavior on windows. Changed 'colours' by
7979         'colors' to use the same word consistently.
7981 2006-06-21  Chris Toshok  <toshok@ximian.com>
7983         * DataGrid.cs: add in some basic navigation stuff (navigating to a
7984         child relation and back, using a stack).  Also, remove
7985         GetDataSource and the code that calls it - it's not needed.  Also,
7986         track CurrencyManager.ListName's removal.
7988 2006-06-21  Chris Toshok  <toshok@ximian.com>
7990         * CurrencyManager.cs: push some of the original type checking from
7991         BindingContext.CreateBindingManager to here, and remove some of
7992         the finalType stuff.  Need more tests to make sure I've got the
7993         ListName part right, and we might need more in SetDataSource.
7995         * PropertyManager.cs: add a ctor that takes just the datasource,
7996         and no property name.  Make SetDataSource work with a null
7997         property_name, and make Current return the data_source if the
7998         property descriptor is null.  this makes 'string foo = "hi";
7999         BindingContext[foo].Current' return "hi" as it should.
8001         * RelatedCurrencyManager.cs: make this code more generic - there's
8002         no reason the parent manager has to be CurrencyManager, and
8003         there's no reason to pass the DataRelation.  It suffices to use a
8004         BindingManagerBase and PropetyDescriptor.
8006         * RelatedPropertyManager.cs: make a similar change here.
8007         
8008         * BindingContext.cs: make CreateBindingManager the beautiful, tiny
8009         flower I knew it could be.
8011 2006-06-20  Chris Toshok  <toshok@ximian.com>
8013         * PropertyManager.cs: the PropertyChangedHandler is invoked when
8014         data in the source has changed and we need to update the control,
8015         so s/PullData/PushData.
8017         * CurrencyManager.cs: Refresh is meant to update the control from
8018         data in the datasource.  So, s/PullData/PushData.
8020         * BindingContext.cs: add more ugliness (we weren't handling the
8021         case where data_source = DataTable and data_member = column_name).
8023         * Binding.cs: fix PushData/PullData mixup.  Both are interpreted
8024         from the perspective of the datasource.  PullData pulls from the
8025         control, PushData pushes to the control.
8027 2006-06-20  Chris Toshok  <toshok@ximian.com>
8029         * BindingContext.cs: rewrite the CreateBindingManager code to
8030         handle navigation paths more or less properly.  This could
8031         definitely stand some more work, in particular to push the
8032         recursion up to the toplevel.  But that relies on fixes in other
8033         places (System.Data comes to mind).
8035         Also, move to a flat hashtable (and encode the twolevel nature of
8036         the dictionary into the hash key).  This lets us implement the
8037         IEnumerable.GetEnumerator method.
8039         * RelatedCurrencyManager.cs: new class.  Update our view based on
8040         our relation and our parent CurrencyManager's position.
8042         * CurrencyManager.cs: split out some logic from the ctor into
8043         SetView, so it can be called from the new RelatedCurrencyManager
8044         subclass.
8046         * RelatedPropertyManager.cs: new class.  Update our datasource
8047         based on the position of our parent CurrencyManager.
8049         * PropertyManager.cs: split out some logic from the ctor into
8050         SetDataSource, so it can be called from the new RelatedDataSource
8051         subclass.  Also, make the Current getter return the value
8052         of the PropertyDescriptor, not the data_source.
8054         * Binding.cs: no need to duplicate the string splitting code here.
8056 2006-06-19  Peter Dennis Bartok  <pbartok@novell.com> 
8058         * Control.cs:
8059           - set_Enabled: OnEnabledChanged is not called if the inherited state 
8060             of the control is not altered, even though  we might be changing the
8061             internal state of the control (#78458)
8062           - set_Enabled: (Re)Moved the enabling/disabling of the window to 
8063             OnEnabledChanged, to allow easy altering of any child window state
8064           - OnEnabledChanged: Added code to enable/disable driver window state
8065           - OnParentEnabledChanged: Instead of firing the event, call 
8066             OnEnabledChanged, which will fire the event and also a) set driver
8067             window state and pass the enabled state to any grandchildren (#78458)
8069 2006-06-19  Jackson Harper  <jackson@ximian.com>
8071         * InternalWindowManager.cs: We don't set the cursor explicitly
8072         thats done via the response to NCHITTESTs.
8073         - Don't need to adjust for titlebar heights anymore, the
8074         coordinates are coming in the correct coordinates now (see peters
8075         last patch).
8078 2006-06-19  Peter Dennis Bartok  <pbartok@novell.com> 
8080         * XplatUIX11.cs (GetMessage): WM_NCxBUTTONx messages were wrongly
8081           being translated relative to whole window, instead of client window.
8082           That caused broken offsets on mouseclick (and caused gas for our
8083           InternalWindowManager)
8085 2006-06-15  Peter Dennis Bartok  <pbartok@novell.com> 
8087         * TextControl.cs:
8088           - MoveCaret: Implemented PgUp, PgDown, CtrlPgUp and CtrlPgDown
8089           - Undo(): Added replay of cursor move on DeleteChars action; added
8090             calling Undo() again if a recorded cursor move is invalid (to
8091             ensure that some action is performed on Undo)
8092         * TextBoxBase.cs (ProcessKey): Added handling of PgUp and PgDown (#78482)
8094 2006-06-16  Jackson Harper  <jackson@ximian.com>
8096         * MdiClient.cs: Instead of just sizing maximized windows when
8097         there is a resize we also have to adjust the Y of minimized
8098         windows, so they stay pinned to the bottom of the mdi container.
8099         - Eliminate separate tracking of the active control, we can just
8100         get this from the controls collection.
8101         - Paint the decorations for the newly activated titlebar so we get
8102         a pretty blue bar.
8103         * InternalWindowManager.cs:
8104         * ThemeWin32Classic.cs: Minimized windows get all three buttons
8105         even if they are a tool window.
8106         
8107 2006-06-15  Peter Dennis Bartok  <pbartok@novell.com> 
8109         * TextControl.cs (Undo): Handle non-existent cursor locations in the
8110           undo buffer, these can happen when text was deleted and the cursor
8111           was recorded first. Since we will also have a recorded cursor
8112           after the delete this is not an issue. (Fixes #78651)
8114 2006-06-14  Peter Dennis Bartok  <pbartok@novell.com> 
8116         * AccessibleObject.cs: Remove dependence on Control.is_selected;
8117           instead properly track control states internally (allows us to
8118           remove is_selected from Control)
8120 2006-06-14 Gonzalo Paniagua Javier <gonzalo@ximian.com>
8122         * ImageListStreamer.cs: correctly generate the 1bpp mask for images
8123         whose width is not a multiple of 8.
8125 2006-06-13  Jackson Harper  <jackson@ximian.com>
8127         * MdiClient.cs:  Only maximize the next child if the current one
8128         is maximized.
8130 2006-06-13  Chris Toshok  <toshok@ximian.com>
8132         * DataGridColumnStyle.cs: Invalidate the column when HeaderText is
8133         modified.  Also, guard against grid or grid_drawing being null in
8134         Invalidate.
8136         * DataGrid.cs: Reformat tons of getters/setters.  In the
8137         DataMember setter, just call SetNewDataSource instead of
8138         duplicating some of its functionality.  In SetNewDataSource, don't
8139         check ListManager for null, since the property getter creates the
8140         object if needed.
8142         * DataGridTableStyle.cs: don't set TableStyle or call
8143         SetDataGridInternal on the column here, it's done in
8144         GridColumnStylesCollection.Add.
8146         * GridColumnStylesCollection.cs: fix all the explicit interface
8147         implementations to just call our methods.  Nuke AddInternal() and
8148         move the body of it to Add().  Also, add a call to
8149         column.SetDataGridInternal to Add().
8151         * DataGridTextBoxColumn.cs (.ctors): call this() instead of
8152         base()+duplicate code.  Also, use the Format property instead of
8153         format to generate an Invalidate ala MS.  Lastly, create the
8154         textbox here, unconditionally.
8155         (set_Format): call Invalidate.
8156         (get_TextBox): no need to call EnsureTextBox.
8157         (Commit): remove the message box.
8158         (Edit) remove the call to EnsureTextBox.
8159         (EndEdit): call HideEditBox instead of ReleaseHostedControl.
8160         (EnterNullValue): no need to check textbox for null.
8161         (HideEditBox): no need to check textbox for null.
8162         (SetDataGridInColumn): add the textbox to the grid's controls.
8163         (EnsureTextBox): nuke.
8164         
8165 2006-06-13  Jackson Harper  <jackson@ximian.com>
8167         * MdiWindowManager.cs: Hook up to the maximized menus paint event
8168         and redraw the buttons when needed. Unhook when the window is
8169         unmaximized.
8170         * MainMenu.cs: Add an internal Paint event, the mdi window manager
8171         needs this so that it can redraw its buttons when the menu is
8172         repainted.
8173         * InternalWindowManager.cs:
8174         * Form.cs: The method order has changed for DrawMaximizedButtons,
8175         so that it can be a PaintEventHandler.
8176         
8177 2006-06-13  Jackson Harper  <jackson@ximian.com>
8179         * MdiClient.cs: When we close a maximized mdi window, the next mdi
8180         window is activated and maximized, even if it wasn't before.
8181         - When  a new window is activated repaint the decorations of the
8182         old one, so that it no longer has the Active "look" (the blue
8183         titlebar).
8184         * InternalWindowManager.cs: Open up CreateButtons to base classes
8185         so they can recreate the buttons on state changes.
8186         - If a window is maximized give it all three buttons
8187         * MdiWindowManager.cs: Create the titlebar buttons when the state
8188         is changed, this is needed because a toolwindow will not have all
8189         three buttons until it is maximized.
8191 2006-06-13  Atsushi Enomoto  <atsushi@ximian.com>
8193         * ProgressBar.cs : PerformStep() shouldn't exceed Maximum.
8194           Fixed bug #78609.
8196 2006-06-12  Jackson Harper  <jackson@ximian.com>
8198         * KeysConverter.cs: Make sure we handle the Ctrl special case
8199         if its the only key.
8200         
8201 2006-06-12  Jackson Harper  <jackson@ximian.com>
8203         * Theme.cs: Add a method to get the size of a managed window
8204         toolbar button.
8205         * InternalWindowManager.cs: Remove the ButtonSize property, this
8206         should be retrieved from the theme.
8207         * MdiWindowManager.cs: Get the button size from the theme
8208         * ThemeWin32Classic.cs: Make the method to get the managed window
8209         titlebar button size public.
8210         - Handle the different button sizes of maximized toolwindows
8211         (should match any maximized window).
8212         - Get the titlebar height from the theme, not the WM (which gets
8213         it from the theme).
8215 2006-06-12  Jackson Harper  <jackson@ximian.com>
8217         * InternalWindowManager.cs: Handle NC Double Clicks, passing the
8218         event down to the mdi window manager.
8219         - Expose some extra stuff to base classes
8220         - Make sure to end the Capture on an NC Mouse up, so that we can
8221         get double clicks properly, and the sizing doens't stick.
8222         - When doing PointToClient contain it in the workable desktop
8223         area, this prevents windows from changing size when the cursor is
8224         pulled outside of the working area while sizing.
8225         * MdiWindowManager.cs: When we get a double click maximize the
8226         window.
8227         - Reset the cursor after handling mode changes.
8229 2006-06-12  Peter Dennis Bartok  <pbartok@novell.com> 
8231         * XplatUIX11.cs (WorkingArea): Read the actual workarea for the 
8232           current desktop, instead of just assuming a 0, 0 origin. This
8233           is needed for our internal window manager, to know the top
8234           margin of the desktop
8236 2006-06-12  Chris Toshok  <toshok@ximian.com>
8238         * DataGrid.cs (set_CurrentCell): concede focus as we move around.
8239         we need this to get rid of the selected background in the bool
8240         column.
8241         (CancelEditing): move the ConcedeFocus call to above the Abort
8242         call.  Also, set is_changing to false and invalidate the row
8243         header if we were changing before.
8244         (ProcessKeyPreviewInternal): remove, since noone outside this
8245         class calls it anymore.  Roll the code into ProcessKeyPreview.
8246         (EndEdit): remove the internal version.
8247         (InvalidateCurrentRowHeader): make private.
8249         * DataGridBoolColumn.cs: simplify this class a bunch.  remove the
8250         Keys.Escape handling (and with it the last call to
8251         DataGrid.EndEdit from outside the class.)
8254 2006-06-12  Chris Toshok  <toshok@ximian.com>
8256         * DataGridTextBox.cs (.ctor): isedit defaults to false.
8257         (OnKeyPress): set isedit to true.
8258         (ProcessKeyMessage): remove Keys.Enter handling from here.  it's
8259         already handled by the grid.
8261         * DataGrid.cs (set_CurrentCell): more work here.  it's still not
8262         right.  ugh.
8263         (set_DataSource): SetDataSource always returns true, so stop
8264         putting it in an if statement.
8265         (EndEdit): get rid of some {}'s
8266         (ProcessGridKey): return true in case Keys.Escape.
8267         (ProcessKeyPreviewInternal): only handle KEYDOWN messages.
8268         (ConnectListManagerEvents,DisconnectListManagerEvents): connect to
8269         PositionChanged, stopped connecting to CurrentChanged.
8270         (GetDataSource): simplify this a bunch.
8271         (SetDataSource): change return type from bool to void.
8272         (OnListManagerPositionChanged): rename OnListManagerCurrentChanged
8273         to this, and make sure we don't set ListManager.Position inside
8274         set_CurrentCell.
8275         (OnListManagerItemChanged): if we're passed an actual index,
8276         redraw that row.
8278         * CurrencyManager.cs (set_Position): don't call PullData here.
8280 2006-06-09  Jackson Harper  <jackson@ximian.com>
8282         * TreeNode.cs:  Recalculate the visible order before doing the
8283         Expand/Collapse Below calls, because those calls generate an
8284         expose.
8285         - Reduce calls to the TreeView property, which is mildly expensive
8286         by using a local var.
8287         * Form.cs: Layout the MDI child windows when creating the parent
8288         form.
8289         - Don't use the internal constructor anymore
8290         * MdiClient.cs: use the parent form width/height (if available)
8291         when laying out the child windows, we do this because the
8292         mdiclient isn't docked yet when the initial layout is done.
8293         - Don't need an internal constructor anymore.
8295 2006-06-08 Gonzalo Paniagua Javier <gonzalo@ximian.com>
8297         * FileDialog.cs: handle access errors when trying to create a folder
8298         or changing to a directory. No need to initialize out parameters.
8300 2006-06-08  Alexander Olk  <alex.olk@googlemail.com>
8302         * FileDialog.cs: Append a number when creating a new folder if the
8303           folder already exists (use parenthesis instead of square brackets)
8305 2006-06-08  Alexander Olk  <alex.olk@googlemail.com>
8307         * FileDialog.cs:
8308           - Disabled registry support for windows and added better registry
8309             error checking for other systems (need to investigate why it
8310             works perfectly on my system)
8311           - If a folder already exist show an error MessageBox instead of
8312             trying to create an indexed name.
8313           - Fixed a non intentional typo.
8315 2006-06-08 Gonzalo Paniagua Javier <gonzalo@ximian.com>
8317         * FileDialog.cs: (SetFileName) don't crash if CurrentRealFolder is null.
8319 2006-06-08  Alexander Olk  <alex.olk@googlemail.com>
8321         * FileDialog.cs: When creating a new folder don't crash if the
8322           folder already exists.
8324 2006-06-08  Alexander Olk  <alex.olk@googlemail.com>
8326         * FileDialog.cs: Allmost a complete rewrite.
8327           - added a "virtual" file system that handles the differences
8328             between unix and windows file systems (especially the directory
8329             structure). Moved most of the directory and file handling code
8330             into the vfs.
8331             Added vfs classes: MWFVFS, FileSystem, WinFileSystem,
8332             UnixFileSystem and FSEntry.
8333           - Recently used folder/directory, size, location and used file names
8334             (file name ComboBox) are now stored in the registry and get read
8335             before the dialog shows up (fixes part 6 of bug #78446).
8336           - Creation of new folders/directories is now possible (context menu
8337             or ToolBar). Added TextEntryDialog for this that fills in the gap
8338             until ListView.LabelEdit works.
8339           - Fixed cursor handling (bug #78527) and focus handling for
8340             PopupButtonPanel
8341           - Various "Search in" ComboBox enhancements. The content of the
8342             dropdown listbox now almost matches ms.
8343           - Changed the behaviour when the user switches to SpecialFolder
8344             Recent to show the ListView in View.Details.
8345           - Beside using the ToolBar to change the View property of the
8346             file ListView it is now possible to use the context menu too.
8348 2006-06-08  Alexander Olk  <alex.olk@googlemail.com>
8350         * ComboBox.cs: Don't create a new ObjectCollection when an item
8351           gets inserted. Just insert the item in the existing object_items
8352           ArrayList.
8354 2006-06-08  Jackson Harper  <jackson@ximian.com>
8356         * OpenTreeNodeEnumerator.cs: Fix to use the Parent property, so
8357         that the treeview and root node checks are done also, this fixes a
8358         regression i caused in the unit tests.
8360 2006-06-07  Wade Berrier <wberrier@novell.com> 
8362         * RichTextBox.cs: More ISO8859-1 -> unicode
8364 2006-06-07  Mike Kestner  <mkestner@novell.com>
8366         * ComboBox.cs : use items to hold highlight/selection so that
8367         collection insertions don't require synchronization.
8369 2006-06-07  Jackson Harper  <jackson@ximian.com>
8371         * InternalWindowManager.cs: Simplify (and FIX) the window sizing
8372         routine.  We now always keep the sized edge at the cursor instead
8373         of computing movement and adjusting rects.  There is one buglet
8374         with this method though when the cursor is moved over area that
8375         the window can not expand too (such as the toolbars on the desktop).
8377 2006-06-07 Gonzalo Paniagua Javier <gonzalo@ximian.com>
8379         * XplatUIX11.cs: (IsEnabled,IsVisible) the window handler can be null
8380         here. Fixes crash on startup in AlbumSurfer.
8382 2006-06-07  Peter Dennis Bartok  <pbartok@novell.com> 
8384         * RichTextBox.cs: Replaced embedded ISO8859-1 chars with proper unicode
8385           values
8387 2006-06-07 Gonzalo Paniagua Javier <gonzalo@ximian.com>
8389         * XplatUIX11.cs: call XPending and XNextEvent inside the same lock()
8390         statement to avoid calling XNextEvent which will block if another thread
8391         took the event that we were expecting. Fixes bug #78605.
8393 2006-06-07  Mike Kestner  <mkestner@novell.com>
8395         * ListView.cs : isolated checkbox clicking from the selection logic.
8396         Toggle check state on item doubleclicks.  Really fixes #78454 part2.
8398 2006-06-06  Carlos Alberto Cortez <calberto.cortez@gmail.com>
8400         * Form.cs: Check that the value passed to Form.DialogResult
8401         is a valid enum value.
8403 2006-06-06 Gonzalo Paniagua Javier <gonzalo@ximian.com>
8405         * FileDialog.cs: disable the up button when in 'Recently Used' or 'My
8406         Computer'. Clicking it in the network view goes to 'My Computer'.
8407         Added CIFS filesystem type. Display the mount point of filesystems.
8408         Avoid duplicate mount points (happens for me with CIFS);
8410 2006-06-06  Jackson Harper  <jackson@ximian.com>
8412         * InternalWindowManager.cs: Draw the maximized windows buttons
8413         when resizing.
8415 2006-06-06 Gonzalo Paniagua Javier <gonzalo@ximian.com>
8417         * Form.cs: when running a modal dialog, ignore WM_CLOSE requests for
8418         all other dialogs. Fixes bug #78585.
8420 2006-06-06  Mike Kestner  <mkestner@novell.com>
8422         * CheckedListBox.cs : apply CheckOnClick behavior to unchecking too.
8423         Only invalidate checkbox on checkstate changes to avoid flicker.
8424         * ListBox.cs : avoid unselect/select when clicking selected item.
8425         avoid reselection flicker for already multiselected items.
8426         Fixes #78382.
8428 2006-06-06  Jackson Harper  <jackson@ximian.com>
8430         * MdiWindowManager.cs: When the window is closed do an NCRecalc on
8431         the parent form so that the menu is removed if needed.
8433 2006-06-06  Mike Kestner  <mkestner@novell.com>
8435         * ListBox.cs : add ScrollWindow call to UpdateTopItem.  fix
8436         Prev/Next/PrevPage/NextPage/Home/End index calculation.  Fixes #78559.
8438 2006-06-06  Mike Kestner  <mkestner@novell.com>
8440         * CheckedListBox.cs : rebuild check collection on Add.  Fixes #78426.
8443 2006-06-06  Jackson Harper  <jackson@ximian.com>
8445         * Control.cs: Use the property (instead of the field) to get the
8446         default cursor so it is instantiated correctly.
8447         * InternalWindowManager.cs: The OS doesn't give us an NCPAINT with
8448         resizes so we need to manually repaint the window decorations here.
8449         - Set the titlebar button locations as soon as they are created,
8450         otherwise they are not set correctly on win32.
8451         
8452 2006-06-06  Chris Toshok  <toshok@ximian.com>
8454         * CurrencyManager.cs (set_Position): call PullData before
8455         OnCurrentChanged.
8456         (AddNew): after calling IBindingList.AddNew, update our
8457         listposition, and call OnCurrentChanged/OnPositionChanged (without
8458         calling PullData).
8459         (OnCurrentChanged): remove the call to PullData from here.
8460         (OnItemChanged): remove the call to PushData from here.
8461         (OnPositionChanged): change the test from == null to != null to
8462         match the other methods.
8463         (ListChangedHandler): the grossest part of the patch.  Implement
8464         this such that it passes the unit tests in CurrencyManagerTest and
8465         the output more or less matches that of MS's implementation.
8467 2006-06-06  Mike Kestner  <mkestner@novell.com>
8469         * ListView.cs : only update check state on single click.
8470         * ThemeWin32Classic.cs : fix focus drawing for details view without
8471         fullrowselect.  Fixes #78454.
8472         * XplatUIX11.cs : fix for double click emission.
8474 2006-06-05  Jonathan Chambers  <jonathan.chambers@ansys.com>
8476         * PropertyGridView.cs : Applied Atsushi's patch to fix
8477         font dialog bug  (#78197).
8479 2006-06-05  Jackson Harper  <jackson@ximian.com>
8481         * TreeNode.cs: Compute the next node for expanding/collapsing
8482         correctly. We now factor in nodes without a NextNode
8483         correctly. (Fixes somes cases in nunit-gui).
8484         * InternalWindowManager.cs: Set the bounds when updating the
8485         virtual position of a tool window.
8486         
8487 2006-06-05  Chris Toshok  <toshok@ximian.com>
8489         * DataGrid.cs: rename cached_currencymgr to list_manager.
8490         (set_CurrentCell): move SetCurrentCell code here, and clean it up
8491         some.
8492         (CurrentRow, CurrentColumn): single accessors so we can make the
8493         cursor movement code a lot easier to understand.
8494         (CurrentRowIndex): implement this in terms of CurrentRow.
8495         (BeginEdit): clean this up a bit.
8496         (CancelEditing): sort out the is_editing/is_changing/is_adding
8497         stuff a little.
8498         (EndEdit): minor changes.
8499         (OnKeyDown): add a comment about a (most likely) unnecessary
8500         check.
8501         (OnMouseDown): cancel editing when we click on a row header.  And
8502         use the CurrentRow setter, not CurrentCell.
8503         (ProcessDialogKey): directly call ProcessGridKey.
8504         (UpdateSelectionAfterCursorMove): factor out this common block of
8505         code (it's used everywhere that we move the cursor by updating row
8506         or column).
8507         (ProcessGridKey): pretty substantial overhaul.  Use the
8508         CurrentRow/CurrentColumn properties to make the code a lot more
8509         readable.  Only use the CurrentCell property when we have to
8510         modify both row and column at once.  Tab behavior is still broken,
8511         and Delete is untested.
8512         (Select): if we have no selected rows, set selection_start to
8513         @row.
8514         (EditCurrentCell): rename EditCell this.  It was only ever invoked
8515         with CurrentCell as the arg, so drop the arg and rename it.
8517         * DataGridColumnStyle.cs: clean up the constructors a little, and
8518         drop CommonConstructor().
8520         * DataGridTextBox.cs (.ctor): set accepts_return to true so we
8521         actually get notified when the user hits it.
8522         (ProcessKeyMessage): *substantially* simplify this method.
8523         There's no reason (that I can see) for the textbox to be making
8524         calls into the datagrid at all.  Remove all of them but the ones
8525         for Enter handling.  those will take some more work.
8527         * DataGridTextBoxColumn.cs (ConcedeFocus): implement this by
8528         calling HideEditBox.
8529         (HideEditBox): if we have an active textbox, render it invisible
8530         without causing a re-layout of the datagrid.
8532 2006-06-05  Mike Kestner  <mkestner@novell.com>
8534         * ListView.cs : fix NRE crasher when focuseditem is cleared by
8535         collection changes by resetting it to Items[0].  Fixes #78587.
8537 2006-06-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
8539         * MessageBox.cs: if the height of the text is larger than the icon_size,
8540         use that. Fixes bug #78575.
8542 2006-06-05  Jackson Harper  <jackson@ximian.com>
8544         * TreeView.cs: Fix line drawing when scrolling.  To do this each
8545         node is basically responsible for drawing its entire horizontal
8546         area.  When drawing a node it draws its parent node lines if
8547         needed.
8548         - Adjust the clip area to the viewport rectangle
8549         - Fix Left/Right key handling to match MS. (It expand/collapses
8550         and moves to parents/first child but does not move selection to
8551         sibling nodes).
8552         - Fix SetTop to work with new bound calculation code
8553         - When scrollbars are no longer needed we need to reset scrolling
8554         vars and recalculate the visible order so the redraw is correct
8555         * TreeNode.cs: We can't expand/collapse nodes with no children.
8557 2006-06-03  John Luke  <john.luke@gmail.com> 
8559         * X11DesktopColors.cs: dllimport the exact gtk and gdk versions
8560         so the colors work without dev packages
8561         
8562 2006-06-02  Peter Dennis Bartok  <pbartok@novell.com> 
8564         * Control.cs 
8565           - Select: Implemented to just use activate. Seems to match MS 
8566             behaviour closest. Documented to only do actual control walking 
8567             based on it's parameters if in a container control so I moved 
8568             the code there.
8569           - Removed selection check logic from our internal Select() method
8570         * ContainerControl.cs:
8571           - Select: Moved selection logic from Control here, since MS documents
8572             that containers obey the bool arguments. No longer calling base
8574 2006-06-02  Jackson Harper  <jackson@ximian.com>
8576         * TreeView.cs: If the selected node isn't changed when we get
8577         focus update the previously selected node so that we see the
8578         selection box.
8580 2006-06-02  Mike Kestner  <mkestner@novell.com>
8582         * ComboBox.cs: restructure grab and general mouse event handling.
8583         Make the composite control raise mouse events like it was a single
8584         control for leaves/enters/motion/up/down events.  fix dropdown list
8585         coordinate mangling and refactor it into the scrollbar subclass to
8586         reduce code duplication.  Fixes #78282 #78361 and #78457.
8588 2006-06-02  Mike Kestner  <mkestner@novell.com>
8590         * ScrollBar.cs: remove Capture setting/clearing, as it happens
8591         automatically in the Control.WndProc.
8593 2006-06-01 Gonzalo Paniagua Javier <gonzalo@ximian.com>
8595         * FileDialog.cs: fix crash when running SharpChess, which sets the
8596         FilterIndex to 2 with only one Filter.
8598 2006-06-01 Gonzalo Paniagua Javier <gonzalo@ximian.com>
8600         * ToolBar.cs: add SizeSpecified property.
8601         * ToolBarButton.cs: when the ButtonSize is calculated by the container,
8602         try to figure out our real size, otherwise fallback to what the
8603         container says.
8605 2006-06-01  Peter Dennis Bartok  <pbartok@novell.com> 
8607         * XplatUIX11.cs (DefWndProc): WM_MOUSEWHEEL needs to be passed up
8608         * Control.cs (WndProc): MS always calls the DefWndProc to pass
8609           up the event
8611 2006-06-01  Mike Kestner  <mkestner@novell.com>
8613         * ListView.cs: revamp the focus management in ListView.  It still
8614         causes churn of LostFocus/GotFocus emissions on clicks, but it's
8615         better than not handling focus at all.  Will revisit when pdb feels
8616         the general focus handling is solid.  Fixes #78526.
8618 2006-06-01  Jackson Harper  <jackson@ximian.com>
8620         * TreeView.cs: Set the default border style in the constructor.
8621         - Move painting to use OnPaintInternal instead of capturing
8622         WM_PAINT, this is the correct way of doing things
8623         - UpdateBelow shouldn't invalidate the scrollbar area
8624         - Cap the top on update below in case the node was above the top
8625         of the viewport rectangle.
8626         - ExpandBelow and Collapse below need to obey Begin/End Update.
8627         * TreeNode.cs: Make is_expanded internal so the treenode
8628         collection can change it without firing the whole event chain.
8629         * TreeNodeCollection.cs: When clearing all the child nodes make
8630         sure to recalc the visible order.
8631         - Improve algo for remove the top node
8633 2006-06-01  Peter Dennis Bartok  <pbartok@novell.com> 
8635         * XplatUIX11.cs (SetFocus): Make sure we can handle re-entrancy due to
8636           SendMessage directly calling window procedures, which in turn might
8637           call SetFocus()
8639 2006-06-01  Peter Dennis Bartok  <pbartok@novell.com>
8641         * Control.cs: Don't handle WM_SETFOCUS if the same window already
8642           has focus (works around X11 sending a FocusIn after our SetFocus)
8643         * XplatUIX11.cs: Send KILLFOCUS before setting SETFOCUS on new window
8645 2006-06-01  Alexander Olk  <alex.olk@googlemail.com>
8647         * Mime.cs: Fix for the NET_2_0 build.
8648           NameValueCollection needs StringComparer now.
8650 2006-05-31  Chris Toshok  <toshok@ximian.com>
8652         * DataGridDrawingLogic.cs (FromPixelToColumn): modify this to also
8653         return (via an out parameter) the starting X of the column.
8654         (UpdateVisibleColumn): track change to FromPixelToColumn.
8655         (HitTest): add a ColumnResize case here.
8656         (DrawResizeLine): new function, probably poorly named.
8658         * DataGrid.cs (.ctor): get rid of cached_currencymgr_events.  We
8659         only need to keep one reference.
8660         (set_ListManager): same.
8661         (OnMouseDown): call HitTest instead of grid_drawing.HitTest.
8662         Also, add support for HitTestType.ColumnResize.
8663         (OnMouseMove): add column resize behavior here, and change the
8664         cursor to the correct one as we move around the datagrid.
8665         (OnMouseUp): terminate the column resize if we're resizing.
8666         (ProcessGridKey): from the MS docs, Alt-0 enters the null value
8667         for the current cell.
8668         (ConnectListManagerEvents): use cached_currencymgr.
8669         (DisconnectListManagerEvents): fill this in, using
8670         cached_currencymgr.
8671         (SetCurrentCell): remove cached_currencymgr_events handling.
8672         (SetDataMember): only call DisconnectListManagerEvents if
8673         cached_currencymgr is != null.
8674         (SetDataSource): same.
8675         (OnListManagerCurrentChanged): cached_currencymgr_events ->
8676         cached_currencymgr.
8678 2006-05-31  Jackson Harper  <jackson@ximian.com>
8680         * BindingManagerBase.cs: Remove somedebug code that creeped into
8681         SVN.
8682         * TreeNode.cs: We get the indent level dynamically right now, so
8683         don't track it as a member.
8684         * TreeNodeCollection.cs: Make sure all nodes added to the list
8685         have parents, treeviews/topnodes setup properly.
8686         - Don't attempt to track indent level.
8688 2006-05-30  Jackson Harper  <jackson@ximian.com>
8690         * BindingContext.cs: Create the currency manager tables here.
8691         This allows us to more easily create null tables (when bad data
8692         members are used), and more easily create related currency
8693         managers.
8694         * CurrencyManager.cs: All the table creation stuff is done by the
8695         binding context now.
8696         - Current should throw an exception if listposition is -1.
8697         - CancelCurrentEdit/EndCurrentEdit, do nothing if the list hasn't
8698         been bound yet.
8700 2006-05-30  Mike Kestner  <mkestner@novell.com>
8702         * ListView.cs: allow reexpansion of zero-width column headers.
8703         Fixes #78528.
8705 2006-05-28  Chris Toshok  <toshok@ximian.com>
8707         * CurrencyManager.cs (get_Current): after the late binding
8708         listposition = -1 fix, we need to guard against it here and return
8709         null, otherwise we raise an exception (which is swallowed
8710         elsewhere, and breaks datagrid databinding.)
8712 2006-05-26  Peter Dennis Bartok  <pbartok@novell.com>
8714         * MenuAPI.cs (ProcessMenuKey): We can legally get msg types other
8715           than WM_SYSKEY, don't throw if get something unexpected (#78507)
8717 2006-05-26  Jackson Harper  <jackson@ximian.com>
8719         * ControlPaint.cs:
8720         * ThemeWin32Classic.cs: For color comparisons just use the ARGB
8721         values, it's faster and it's all we care about (we don't care if
8722         the names aren't equal).
8723         * KeyboardLayouts.cs: Eliminate some dead code.
8724         - Lazy init things
8725         * X11Keyboard.cs: Lazy init keyboard detection.
8726         - Cleanup access modifiers a little.
8728 2006-05-26  Peter Dennis Bartok  <pbartok@novell.com>
8730         * XplatUIX11.cs: Once again, attempting to get layout just right.
8732 2006-05-26  Peter Dennis Bartok  <pbartok@novell.com> 
8734         * LinkLabel.cs (CreateLinkPieces): Use MeasureString to calculate
8735           the sizes of each link section, that will result in sizes that
8736           match DrawString's layout (Fixes #78391)
8738 2006-05-27  Alexander Olk  <alex.olk@googlemail.com>
8740         * FileDialog.cs: If AddExtension property is true autocomplete the
8741           extensions in SaveFileDialog correctly. Fixes bug #78453.
8742           Set MyNetwork and MyComputer to "C:\" for windows. This should
8743           fix part 8 of bug #78446 for now.
8745 2006-05-26  Chris Toshok  <toshok@ximian.com>
8747         * DataGrid.cs (ColumnStartedEditing): fill these in.  for now just
8748         invalidate the current row header if we need to, but presumably
8749         we'll invalidate the row corrsponding to the bounds or
8750         editingControl.
8751         (GridHScrolled): switch back to this method, as it's part of the
8752         public api.  *sigh*.
8753         (GridVScrolled): same.
8754         (OnMouseWheel): hack up something that more or less works.  Call
8755         GridHScrolled/GridVScrolled directly, instead of duplicating much
8756         of their code here.
8757         (EnsureCellVisibility): reinstate a bunch of this code, since we
8758         can't just set the scrollbar Value and expect to do all the work
8759         in the ValueChanged handler.  Also, Call Update() after scrolling
8760         in one direction so the other XplatX11.ScrollWindow call has the
8761         proper stuff in the proper places.
8762         (EditCell): set is_editing to true before calling .Edit.
8764         * DataGridTextBox.cs (set_IsInEditOrNavigateMode): just set it,
8765         don't bother comparing first.
8766         (OnKeyPress): call grid.ColumnStartedEditing before calling
8767         base.OnKeyPress.  this will set is_changing and invalidate the row
8768         header if necessary.
8769         (ProcessKeyMessage): for WM_CHAR messages, call
8770         ProcessKeyEventArgs directly.  swallow anything other than WM_CHAR
8771         and WM_KEYDOWN.
8772         
8773         * DataGridBoolColumn.cs (Edit): don't set is_editing to true here.
8774         it's done in the DataGrid.
8775         (NextState): call grid.ColumnStartedEditing, which takes care of
8776         invalidating the row header (and setting is_changing).
8778         * DataGridTextBoxColumn.cs (Edit): don't set is_editing to true
8779         here.  it's done in the DataGrid.
8781 2006-05-25 Gonzalo Paniagua Javier <gonzalo@ximian.com>
8783         * Control.cs: allow changing the cursor when the mouse position is
8784         out of bounds but Capture is set.
8785         * LinkLabel.cs: handle the case when the mouse button is pressed on the
8786         linklabel but released somewhere else.
8788 2006-05-25  Jackson Harper  <jackson@ximian.com>
8790         * TreeView.cs: When we get focus if there is no selected node make
8791         it the top node
8792         - Remove some uneeded setup code from Draw.
8793         * TreeNodeCollection.cs: If the tree doesn't have a top node when
8794         a new node is inserted make the new node the top.
8795         * XplatUIX11.cs:
8796         * Timer.cs: Use Utc time so that no local time zone stuff needs to
8797         be used (should be faster).
8798         
8799 2006-05-25  Chris Toshok  <toshok@ximian.com>
8801         * DataGrid.cs (EnsureCellVisibility): remove some code to fix a
8802         problem with the last commit.
8804 2006-05-25  Chris Toshok  <toshok@ximian.com>
8806         * DataGridTextBoxColumn.cs (ReleaseHostedControl): turns out we do
8807         need the invalidate call here, while scrolling right-to-left via
8808         the left arrow key (i.e. moving the editing cell while scrolling).
8810         * DataGrid.cs (.ctor): remove the initialization of
8811         ctrl_pressed/shift_pressed.  We no longer track them using key
8812         up/down handlers, but by using Control.ModifierKeys.  Also, switch
8813         to using ValueChanged handlers on the scrollbars instead of
8814         Scrolled event handlers.  This simplifies a bunch of the scrolling
8815         code.
8816         (GridHValueChanged): rename from GridHScrolled, and change it to
8817         work with the new event args.
8818         (GridVValueChanged): same.
8819         (OnMouseDown): initialize ctrl_pressed/shift_pressed here.
8820         (OnMouseWheel): actually scroll the datagrid.  Don't change the
8821         selected cell.
8822         (ProcessGridKey): correct all the keyboard navigation stuff I
8823         could find.  Ctrl up/down/left/right/home/end work now.
8824         (EnsureCellVisibility): correct method name spelling.  Also,
8825         simplify this a touch by not explicitly calling the
8826         ScrollToRow/ScrollToColumnInPixels methods.  We just set the
8827         scrollbar value.
8828         (OnKeyUpDG): no need for this method now.
8829         
8830 2006-05-25 Gonzalo Paniagua Javier <gonzalo@ximian.com>
8832         * LinkLabel.cs: display the OverrideCursor when hovering the label.
8833         Fixes bug #78392.
8835 2006-05-25  Chris Toshok  <toshok@ximian.com>
8837         * ThemeWin32Classic.cs: fix datagrid clipping problems caused by
8838         r61019.
8840 2006-05-25  Peter Dennis Bartok  <pbartok@novell.com> 
8842         * Application.cs: Moved setting of is_modal and closing to before
8843           we create the control, to allow the event handlers called as a
8844           result of creation affect closing. Also removed Gonzalo's previous
8845           change to setting DialogResult, the behaviour has been moved to 
8846           Form.ShowDialog()
8847         * Form.cs: 
8848           - ShowDialog(): Removed explicit creation of the form, let RunLoop
8849             handle it instead
8850           - ShowDialog(): If no dialog result is set, we need to return Cancel
8851           - WM_CLOSE: Fire Closing/Closed events, and reset dialog result if
8852             the close is cancelled
8854 2006-05-25  Jackson Harper  <jackson@ximian.com>
8856         * StatusBar.cs: We only need to update the sizes of the other
8857         panels when we have auto size contents.  Also we are only updating
8858         the contents of the panel, not the borders, so compensate for the
8859         border width (TODO: get this width from the theme somehow).
8860         * TreeView.cs: Scrollable is true by default
8861         - Use invalidate instead of refresh where needed
8862         - Factor the scrollable value into scrollbar updating
8863         - Update the scrollbars if the Scrollable property is altered
8864         - Update the selected node if its ImageIndex is changed
8865         - Handle null nodes in UpdateNode (mainly so we don't have to
8866         check if selected is null when updating it
8867         - Fix VisibleCount to use the ViewportRectangle so that scrollbars
8868         are factored into the visible count
8869         - Use VisibleCount for clarity in the code
8870         - When the font is changed we need to recurse through all the
8871         nodes and invalidate their sizes
8872         
8873 2006-05-25 Gonzalo Paniagua Javier <gonzalo@ximian.com>
8875         * Application.cs: set the DialogResult to fixed when the main form is
8876         hidden or destroyed while being modal.
8878 2006-05-25  Miguel de Icaza  <miguel@novell.com>
8880         * Theme.cs: Use Tangoified messagebox icons. 
8882         (GetSizedResourceImage): Also cope with width = 0 and do not
8883         trigger a warning in that case (0 means "give me your icon from
8884         the resouce, no special size needed).
8886 2006-05-25  Peter Dennis Bartok  <pbartok@novell.com> 
8888         * Application.cs: Leave runloop if the the main modal form is 
8889           hidden (fixes #78484)
8891 2006-05-25  Atsushi Enomoto  <atsushi@ximian.com>
8893         * BindingContext.cs : reject null datasource in Contains() and
8894           Item[].
8895         * CurrencyManager.cs : check data_member validity when data_source
8896           is dataset. When it is late binding, the initial position is -1.
8898 2006-05-24  Jackson Harper  <jackson@ximian.com>
8900         * TreeNodeCollection.cs: Dont't recalculate the visible order on
8901         inserted nodes that aren't visible.  This changes the
8902         max_visible_order which confuses scrollbar settings.
8903         - Use the enumerator to get the prev node instead of duplicating
8904         code.
8905         * TreeView.cs: Use new method for setting scrollbar values
8906         - Don't set the bounds every time the scrollbar is updated
8907         - When updating below the root node use an invalidate instead of a
8908         refresh to prevent the child controls (scrollbars) from being
8909         refreshed. (UpdateBelow still needs to be reworked anyways).
8910         - Reenable SetBottom now that visible orders are set correctly,
8911         added some debug code incase we ever get bad values there again.
8912         - Set the scrollbar max to 2 less then the max value, this
8913         compensates for the max value being one above the node count, and
8914         for scrollbars adding one extra "notch".
8915         - When drawing image nodes if there is an imagelist we draw the
8916         first image in the list if the supplied image index is out of the
8917         image list's bounds.
8918         
8919 2006-05-24  Peter Dennis Bartok  <pbartok@novell.com> 
8921         * XplatUIX11.cs: Don't blindly cache hwnd.ClientRect, reset it when 
8922           we receive a size change from the WM (Fixes #78503)
8924 2006-05-24  Peter Dennis Bartok  <pbartok@novell.com>
8926         * XplatUIWin32.cs, XplatUIX11.cs: Refresh when setting the Clip 
8927           rectangle (Fixes #78501)
8929 2006-05-24  Peter Dennis Bartok  <pbartok@novell.com> 
8931         * ButtonBase.cs: 
8932           - Fixed MouseUp, MouseDown and MouseMove to treat mouseevent.Button 
8933             as a bitfield.
8934           - Fixed MouseMove to no longer switch pressed state unless the left
8935             mouse button is pressed. Atsushi provided the original patch (#78485)
8936           
8937 2006-05-24  Jackson Harper  <jackson@ximian.com>
8939         * ScrollBar.cs: New internal methods that allow us to change a
8940         couple values on the scrollbar (the most common case is maximum
8941         and large change) without getting multiple invalidates.
8943 2006-05-24  Chris Toshok  <toshok@ximian.com>
8945         * DataGridBoolColumn.cs (Abort): revert back to the saved setting.
8946         (Edit): save off the original state in oldState, and set
8947         grid.is_editing to true.
8948         (OnKeyDown): abort editing if escape is pressed.  also, call
8949         NextState if space is pressed.
8950         (OnMouseDown): call NextState.
8951         (NextState): factor out shared code from OnKeyDown and OnMouseDown
8952         here.  Also, only invalidate the row header once (on the initial
8953         is_changing switch) to save on redraws.
8955 2006-05-24  Chris Toshok  <toshok@ximian.com>
8957         * DataGridTextBoxColumn.cs (Commit): only call SetColumnValueAtRow
8958         if the value in the cell is different than it was before.  This
8959         keeps us from triggering a layout when we move around a datarid
8960         with a highlighted cell.
8961         (Edit): suspend layout when creating/positining the text box, and
8962         resume passing false so we don't ever actually re-layout.
8963         (ReleaseHostedControl): same.
8964         (EnsureTextBox): reformat slightly, and set WordWrap to false.
8966         * DataGridTextBox.cs (ProcessKeyMessage): it's not true that all
8967         control-key sequences should go to the datagrid - remove that
8968         lock.  Also, modify the conditions under which we move between
8969         cells when moving the cursor within a cell, and remove the "this"
8970         and "base" from field accesses.  We weren't even consistent, given
8971         they all were in the base class.
8973 2006-05-24  Atsushi Enomoto  <atsushi@ximian.com>
8975         * Binding.cs : (.ctor)
8976           An obvious NRE fix for BindingTest.CtorNullTest().
8978 2006-05-23  Chris Toshok  <toshok@ximian.com>
8980         * TextBoxBase.cs (get_Text): don't add a trailing newline, add
8981         them between lines.  This fixes some quirks editing cells in the
8982         datagrid.
8984 2006-05-23  Jackson Harper  <jackson@ximian.com>
8986         * TreeView.cs: Use begin/end update when doing expand/collapse all
8987         so that we don't get flicker on the scrollbar.
8989 2006-05-23  Jackson Harper  <jackson@ximian.com>
8991         * TreeNode.cs: Bounds are computed 'on the fly' now.  This allows
8992         treenode calculations to be independant of the painting code. To
8993         do this nodes track a visible order which is calculated by the
8994         treeview.
8995         - Call new methods for expanding/collapsing nodes.  These methods
8996         use scrollwindow so we don't have to update everything below the
8997         node.
8998         * TreeView.cs: Refactored drawing and scrolling code.  We don't
8999         need to update nodes when drawing anymore or calculate scrollbar
9000         stuff.
9001         - Added new methods for expanding/collapsing nodes. These methods
9002         use ScrollWindow so as to not have to redraw all the nodes below.
9003         * TreeNodeCollection.cs: Recalc visible order and scrollbars when
9004         we add/remove nodes or sort.
9005         - Handle removing the selected and the top node properly.
9007 2006-05-23  Chris Toshok  <toshok@ximian.com>
9009         * DataGridTextBoxColumn.cs (Edit): set grid.is_editing to true.
9010         maybe this should actually happen in the datagrid code?
9011         (EndEdit): no need to invalidate anything, given that
9012         ReleaseHostedControl causes the datagrid to relayout, which
9013         invalidates everything anyway.
9015         * DataGrid.cs (set_CurrentCell): remove duplicate check (it's also
9016         in SetCurrentCell).
9017         (set_SelectionBackColor): call InvalidateSelection instead of
9018         Refresh.
9019         (set_SelectionForeColor): same.
9020         (BeginEdit): Flesh this out a bit.
9021         (CancelEditing): only do any of this if we're editing/adding.
9022         (EndEdit): same.
9023         (OnMouseDown): there's no need to cancel editing here, it's done
9024         in SetCurrentCell.
9025         (SetCurrentCell): only invalidate the current row header if it's a
9026         different row than the new one.
9027         (ShiftSelection): fix this to work like MS does.
9028         (ResetSelection): factor out the invalidation of selected_rows to
9029         InvalidateSelection.
9030         (SetDataSource): cancel any editing that's going on.
9032         * DataGridColumnStyle.cs
9033         (IDataGridColumnStyleEditingNotificationService.ColumnStartedEditing):
9034         call the non-interface version.
9036         * ThemeWin32Classic.cs (DataGridPaintColumsHdrs): intersect the
9037         header rectangle with the clip rectangle so we don't redraw the
9038         entire header for just a small area.  Gets rid of the last flicker
9039         when horizontally scrolling.
9040         (DataGridPaintRow): same.
9042 2006-05-23  Mike Kestner  <mkestner@novell.com>
9044         * ListViewItem.cs: remove size for line hack from LargeIcon layout.
9045         * ThemeWin32Classic.cs: don't draw line.  it's really the top of a
9046         poorly placed checkbox on the MS control.  Fixes Alex's unfiled
9047         Critical bug report.
9049 2006-05-23  Peter Dennis Bartok  <pbartok@novell.com> 
9051         * PictureBox.cs: Fixed broken ControlStyles. Unit test no longer fails,
9052           and this fixes #78493
9054 2006-05-23  Miguel de Icaza  <miguel@novell.com>
9056         * Theme.cs (GetSizedResourceImage): Scale images if the proper
9057         size is not found.  
9058         
9059         * FileDialog.cs: Do not change the background for the side bar as
9060         it wont work nicely with the theme, and also reduces the artifacts
9061         in rendering the icons (which I want to fix too).
9063         * MimeIcon.cs (ResourceImageLoader): Load images from assembly
9064         resources, not resgen resources. 
9066         (PlatformDefaultHandler): Pull images using the new API.
9068 2006-05-23  Peter Dennis Bartok  <pbartok@novell.com> 
9070         * Hwnd.cs (Dispose): Remove any pending exposures. XEventQueue holds
9071           a reference to the hwnd and will not remove it unless there are
9072           no pending exposures (fixes #78341)
9073         * XplatUI.cs: Improved debug
9075 2006-05-23  Atsushi Enomoto  <atsushi@ximian.com>
9077         * MenuAPI.cs : don't handle OnClick event when it was not the left
9078           button. Fixed bug #78487.
9080 2006-05-23  Mike Kestner  <mkestner@novell.com>
9082         * MenuAPI.cs: fix placement of submenus for multi-row menu bars, and
9083         prefer submenus to the top menu for item lookup, to avoid popping down
9084         top-row items.
9086 2006-05-23  Alexander Olk  <alex.olk@googlemail.com>
9088         * ThemeWin32Classic.cs: Rewrote CPCPDrawScrollButton to drop
9089           Graphics.FillRectangle as the visual results are really bad (even
9090           on win). We now draw perfect arrows (and perfect shadows when the
9091           scrollbar is disabled). Simplified CPDrawGrid. CPDrawGrid now uses
9092           Pen.DashPattern to draw the dots of each line.
9094 2006-05-22  Alexander Olk  <alex.olk@googlemail.com>
9096         * FileDialog.cs: Update the filename combobox when navigating through
9097           the ListView with the cursor keys. Fixes part 7 of bug #78446.
9099 2006-05-22  Mike Kestner  <mkestner@novell.com>
9101         * ListView.cs: raise SelectedIndexChanged on keyboard selection.
9102         Fixes #78463.
9104 2006-05-22  Mike Kestner  <mkestner@novell.com>
9106         * ComboBox.cs: Refresh in EndUpdate to pick up all the dropped Paint
9107         requests. Fix a misspelled parameter and a copy paste exception error
9108         in Select.
9110 2006-05-22  Peter Dennis Bartok  <pbartok@novell.com> 
9112         * ThemeWin32Classic.cs: Changed DefaultFont emSize from 8.25 to 8
9113           to get the same width/height (5/13) on X11 as the default font has on
9114           win32. This means that our DefaultFont emSize is smaller than the 
9115           the MS SWF equivalent (even thought the width/height stays the same)
9117 2006-05-20  Jackson Harper  <jackson@ximian.com>
9119         * MdiClient.cs:
9120         * MdiWindowManager.cs:
9121         * InternalWindowManager.cs: Make sure to use the border width from
9122         the theme.
9124 2006-05-20  Jordi Mas i Hernandez <jordimash@gmail.com>
9126         * PrintDialog.cs: Implements printer details
9128 2006-05-19  Alexander Olk  <alex.olk@googlemail.com>
9130         * FileDialog.cs: Added focus handling for PopupButtonPanel.
9131           Fixes part 1 and 2 of bug #78446
9133 2006-05-19  Peter Dennis Bartok  <pbartok@novell.com> 
9135         * XplatUIX11.cs (SetWindowPos): Recalculate client area size on resizes
9136           instead of sticking to the first ever calculated value
9138 2006-05-19  Mike Kestner  <mkestner@novell.com>
9140         * ComboBox.cs: fix mouse motion selection to use MousePosition and
9141         PointToClient, since Capture is set. Fixes #78344.
9143 2006-05-19  Mike Kestner  <mkestner@novell.com>
9145         * ListView.cs: match MS behavior in Details view where items are not
9146         drawn if Columns.Count == 0. 
9147         * ThemeWin32Classic.cs: only highlight ListView selection if focused.
9148         Use a separate pen to draw the check, since changing the width affects
9149         the box as well.  Fixes #78454.
9151 2006-05-18  Miguel de Icaza  <miguel@novell.com>
9153         * ListView.cs: ArgumentOutOfRangeException, single versions of the
9154         exception should throw the name of the invalid argument.
9156         * FileDialog.cs (OnClickOpenSaveButton): Avoid crash in open if
9157         there are no files listed. 
9159 2006-05-18  Jackson Harper  <jackson@ximian.com>
9161         * ThemeWin32Classic.cs: Don't use endcaps, they mess the drawing
9162         up.
9164 2006-05-18  Peter Dennis Bartok  <pbartok@novell.com> 
9166         * Control.cs: Brought back our old UpdateZOrder method as a private
9167           function and switched our calls from UpdateZOrder to the new one.
9168           This fixes the Paint.Net canvas disappearing bug.
9170 2006-05-18  Jackson Harper  <jackson@ximian.com>
9172         * Theme.cs:
9173         * ThemeWin32Classic.cs:
9174         * InternalWindowManager.cs: Move the drawing into the theme,
9175         expose everything the theme should need from the window manager.
9177 2006-05-18  Peter Dennis Bartok  <pbartok@novell.com>
9179         * XplatUIX11.cs (DefWndProc): WM_SETCURSOR: Assign the return value 
9180           from the call to NativeWindow to avoid walking up the parent chain
9181           further than needed (speeds up setting cursors and avoids setting
9182           the wrong cursor if a parent has another cursor defined)
9183         * Cursor.cs: When loading an icon as cursor, MS uses the center of
9184           the icon as hotspot, not what's contained as hotspot in the icon
9185           file. This fixes the perceived drawing offset seen with Paint.Net
9186         
9187 2006-05-18  Peter Dennis Bartok  <pbartok@novell.com> 
9189         * XplatUIX11.cs: 
9190           - Store the calculated rectangle in Hwnd object and use it when 
9191             setting the client size
9192           - Force Toolwindows to always be type Dock, to ensure they're on top
9194 2006-05-18  Mike Kestner  <mkestner@novell.com>
9196         * ComboBox.cs: first pass at ComboBox rework.  Layout is more
9197         consistent with MS positioning.  IntegralHeight, ItemHeight, Sizing.
9198         Correctly initialize textcontrol and ListBox on DropDownStyle changes. 
9199         Substantial refactoring to remove confusing nested classes. Coding
9200         standard and Get+Set->property refactorings.  Shift to index based
9201         highlighting in ComboListBox instead of constantly using IndexOf and
9202         Items[]. Add invalidations on resize for DropDownList to fix ugliness
9203         in FileDialog growth.  Draw borders manually since Simple mode needs
9204         to look like two independent controls.  Make listbox border
9205         conditional to DropDownStyle.  Improved OwnerDraw support.
9207 2006-05-18  Sebastien Pouliot  <sebastien@ximian.com>
9209         * PaintEventArgs.cs: For 2.0, check for a null Graphics in the .ctor. 
9210         Don't set the disposed graphics to null, so we can throw the "right"
9211         exception if the graphics is reused later (added a flag to avoid 
9212         double disposing). Some behaviours are different under 2.0 and are
9213         filled under bug #78448.
9215 2006-05-18  Peter Dennis Bartok  <pbartok@novell.com>
9217         * Control.cs: When double-buffering is enabled, we need to reset
9218           our graphics context between paint calls. Otherwise, any 
9219           transformations and other alterations on the context will 
9220           become cumulative (#77734)
9222 2006-05-18  Mike Kestner  <mkestner@novell.com>
9224         * ListView.cs: do focused item selection like MS on clicks. 
9225         Rework focus handling for ItemControl so LostFocus invalidates as
9226         well.
9227         * ThemeWin32Classic.cs: only draw focus rectangle for ListViewItems if
9228         the ListView ItemControl has focus.
9230 2006-05-17  Peter Dennis Bartok  <pbartok@novell.com>
9232         * XplatUIX11.cs: If client_window ends up being width or height zero
9233           due to border settings, move it off window inside whole_window (#78433)
9235 2006-05-17  Alexander Olk  <alex.olk@googlemail.com>
9237         * Mime.cs: Shrink the mime file cache correctly.
9239 2006-05-17  Alexander Olk  <alex.olk@googlemail.com>
9241         * ThemeWin32Classic.cs: Readded button focus drawing code. (#78429)
9243 2006-05-16  Peter Dennis Bartok  <pbartok@novell.com>
9245         * XplatUIX11.cs (AddExpose): More sanity checks
9247 2006-05-16  Peter Dennis Bartok  <pbartok@novell.com> 
9249         * XplatUIX11.cs:
9250           - AddExpose: Don't add expose ranges outside the size of our
9251             window
9252           - Cast opacity values to Int32 to avoid crashes with certain
9253             values
9254           - Added disabled code paths that protect against illegal cross-
9255             thread painting (Developers.exe)
9257 2006-05-16  Peter Dennis Bartok  <pbartok@novell.com>
9259         * ProgressBar.cs: Invalidate the control when it's resized
9260           since block size is based on control size. (#78388)
9262 2006-05-16  Miguel de Icaza  <miguel@novell.com>
9264         * DataGrid.cs (SetDataBinding): per the discussion on irc, instead
9265         of setting the incoming argument to the "reset" value, we set the
9266         this.datamember to string.empty (before we were invalidating the
9267         incoming data).   
9269         Fixes 78420
9271 2006-05-16  Peter Dennis Bartok  <pbartok@novell.com> 
9273         * Form.cs: Only apply transparency settings after the form
9274           is created. (Fixes #77800)
9276 2006-05-16  Peter Dennis Bartok  <pbartok@novell.com>
9278         * ApplicationContext.cs: Grab the HandleDestroyed event so
9279           we know when to fire OnMainFormClosed 
9281 2006-05-16  Peter Dennis Bartok  <pbartok@novell.com> 
9283         * Application.cs: Introduced sub-class to allow tracking of
9284           threads and centralized triggering of the event mess for
9285           ThreadExit, AppExit, etc..  (#76156)
9287 2006-05-16  Alexander Olk  <alex.olk@googlemail.com>
9289         * MimeIcon.cs:
9290           - Do not return a null icon index value for a mime subclass.
9291             Instead try the main mime type class too.
9292           - Seems that some newer distributions don't have a link to some
9293             gnome default icons anymore. So check the default gnome dir too.
9294           
9296 2006-05-16  Jackson Harper  <jackson@ximian.com>
9298         * MdiClient.cs: Don't paint the parent background image if we have
9299         our own background image.
9301 2006-05-16  Peter Dennis Bartok  <pbartok@novell.com> 
9303         * Control.cs:
9304           - PerformLayout: Do not shrink space filled by DockStyle.Fill
9305             controls, all filled controls are supposed to overlap (#78080)
9306           - UpdateZOrder is supposed to update the control's z-order in the
9307             parent's z-order chain. Fixed to behave like that
9308           - BringToFront: Removed obsolete code
9309           - SendToBack: Simplyfied
9310           - SetChildIndex: Trigger layout calculations when Z-order changes
9311             since layout is done by z-order
9313 2006-05-16  Chris Toshok  <toshok@ximian.com>
9315         [ fixes bug #78410 ]
9316         * DataGrid.cs (set_AlternatingBackColor): use
9317         grid_drawing.InvalidateCells instead of Refresh().
9318         (set_BackColor): call grid_drawing.InvalidateCells.
9319         (set_BackgroundColor): use Invalidate instead of Refresh.
9321         * DataGridDrawingLogic.cs (InvalidateCells): new function, just
9322         invalidate the cell area.
9324 2006-05-15  Chris Toshok  <toshok@ximian.com>
9326         [ fixes bug #78011 ]
9327         * ThemeWin32Classic.cs (DataGridPaintRows): pass the clip argument
9328         on to DataGridPaintRow.
9329         (DataGridPaintRow): take a clip argument, and only draw the cells
9330         which intersect it.  same with the not_usedarea.
9332         * Theme.cs (DataGridPaintRow) add @clip parameter.
9334         * DataGrid.cs (ScrollToColumnInPixels): simplify, use
9335         XplatUI.ScrollWindow.
9336         (ScrollToRow): same.
9338         * DataGridDrawingLogic.cs (UpdateVisibleColumn): fix corner case
9339         with last column which was causing a gray swath to appear with the
9340         XplatUI.ScrollWindow code.
9342 2006-05-15  Chris Toshok  <toshok@ximian.com>
9344         * ListBox.cs (HorizontalScrollEvent): in the non-multicolumn case,
9345         use XplatUI.ScrollWindow.
9346         (VerticalScrollEvent): use XplatUI.ScrollWindow.
9348 2006-05-15  Peter Dennis Bartok  <pbartok@novell.com> 
9350         * TextBoxBase.cs: Added handling of middle-button paste for X11. (#78375)
9352 2006-05-15  Peter Dennis Bartok  <pbartok@novell.com>
9354         * Cursors.cs: For X11, read NWSE and NESW cursors from our resource
9355           file since there are no equivalent X11 cursors
9357 2006-05-15  Atsushi Enomoto  <atsushi@ximian.com>
9359         * MonthCalendar.cs : DateTimePicker should reflect selected date
9360           on mouse*up*, not mouse*down*. Fixed originally reported part of
9361           bug #76474.
9363 2006-05-15  Atsushi Enomoto  <atsushi@ximian.com>
9365         * TabControl.cs : When argument index is equal or more than tab
9366           count, just ignore. Fixed bug #78395.
9368 2006-05-15  Peter Dennis Bartok  <pbartok@novell.com>
9370         * Control.cs: Dispose all child controls when control is diposed (#78394)
9372 2006-05-14  Alexander Olk  <alex.olk@googlemail.com>
9374         * ColorDialog.cs: Finally it is possible to select the color with
9375           the text boxes
9377 2006-05-14  Alexander Olk  <alex.olk@googlemail.com>
9379         * PrintDialog.cs: Fix typo
9381 2006-05-14  Alexander Olk  <alex.olk@googlemail.com>
9383         * PrintDialog.cs: PrintDialog is not resizable
9384         * ThemeWin32Classic.cs: Draw non links in LinkLabel with the correct
9385           color. Made some ToolBar drawing methods protected virtual.
9387 2006-05-13  Jordi Mas i Hernandez <jordimash@gmail.com>
9389         * PrintDialog.cs: Implementation of the PrintDialog
9391 2006-05-12  Chris Toshok  <toshok@ximian.com>
9393         * ScrollBar.cs (set_Value): don't use Dirty/Invalidate to move the
9394         thumb, instead use MoveThumb.  This has the side effect of making
9395         most of the other thumb moving machinery use MoveThumb as well.
9396         (OnHandleCreated): pass false for @dirty to UpdateThumbPos, as we
9397         need to actually invalidate the rectangle where the new thumb will
9398         go.
9399         (MoveThumb): use XplatUI.ScrollWindow to move the thumb around.
9400         We force an Update() after, so it's not as fast as it could be,
9401         but at least there's zero flicker and no droppings.
9402         (OnMouseMoveSB): in the thumb dragging case, use MoveThumb.
9403         (UpdateThumbPos): add another argument (dirty), which says whether
9404         or not to calculate/add dirty regions which we later invalidate.
9405         For cases where we know we're going to use MoveThumb, we pass
9406         false for this.  Otherwise, pass true.
9408 2006-05-12  Jackson Harper  <jackson@ximian.com>
9410         * ThemeWin32Class.cs: Fixes for alignment and icon rendering in
9411         the status bar.
9412         
9413 2006-05-12  Peter Dennis Bartok  <pbartok@novell.com>
9415         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs: Added new SetClipRegion
9416           and GetClipRegion methods and UserClipWontExposeParent property.
9417         * XplatUIWin32.cs: Implemented SetClipRegion/GetClipRegion methods,
9418           overriding UserClipWontExposeParent property, setting to false, since
9419           Win32 handles the required expose messages to draw our clipped parent
9420           areas internally
9421         * XplatUIX11.cs: Implemented SetClipRegion and GetClipRegion; updated
9422           PaintEventStart to set the user clip region if set.
9423         * Control.cs: 
9424           - Now internally tracking the Region for the control since we need to
9425             store it if the handle is not yet created and only set it when it
9426             becomes created. Before setting the region forced handle creation
9427           - Added code to draw the parents underneath a user-clipped region
9428         * Hwnd.cs: Added UserClip property
9430 2006-05-12  Chris Toshok  <toshok@ximian.com>
9432         * ScrollBar.cs (set_LargeChange): Refresh() -> InvalidateDirty()
9433         (set_Maximum): same.
9434         (set_Minimum): same.
9435         (set_SmallChange): same.
9436         (OnMouseUpSB): remove the call to refresh when releasing the
9437         thumb.  We shouldn't need it.
9438         
9439 2006-05-12  Miguel de Icaza  <miguel@novell.com>
9441         * StatusBar.cs (UpdatePanel): If the panel being refreshes has the
9442         AutoSize set to None, we do not need to relayout everything, we
9443         just need to invalidate the current region.
9445         (Draw): Do not draw the entire ClientArea, just redraw the
9446         clip area being passed.
9448         * MdiClient.cs: Make MdiClient constructor with the Form argument
9449         internal. 
9451 2006-05-12  Jackson Harper  <jackson@ximian.com>
9453         * ThemeWin32Classic.cs (DrawToolBar): Flat toolbars get their
9454         parents background image,  but strangely not their own.
9455         - (DrawStatusBarPanel): Take into account horizontal alignment
9456         when drawing the strings and icons.
9458 2006-05-12  Mike Kestner  <mkestner@novell.com>
9460         * ListBox.cs: avoid invalidations for focus when the collection is
9461         empty. 
9463 2006-05-12  Chris Toshok  <toshok@ximian.com>
9465         * ScrollBar.cs (OnMouseMoveSB): when dragging the thumb, don't
9466         invalidate the entire thumb area.  Call InvalidateDirty which
9467         limits the redraw to the thumb itself and surrounding pixels.
9469         * XplatUIX11.cs (ScrollWindow): optimize copying.
9470         
9471 2006-05-12  Chris Toshok  <toshok@ximian.com>
9473         * DataGridDrawingLogic.cs: make CalcGridAreas non-reentrant.
9474         Figure out the positioning/layout in a single pass instead of
9475         multiple recursive invocations.  Speeds up the initial display of
9476         the data grid.  Also, make many things private that were
9477         originally public but unused outside this class.
9479 2006-05-11  Jackson Harper  <jackson@ximian.com>
9481         * MdiClient.cs: Improved layout code.
9483 2006-05-11  Jonathan Chambers  <jonathan.chambers@ansys.com>
9485         * PropertyGrid.cs : Only check GetPropertiesSupported for properties,
9486           not SelectedObject.
9488 2006-05-11  Chris Toshok  <toshok@ximian.com>
9490         * Hwnd.cs (Invalid): don't start off with Rectangle.Empty, as
9491         union of that will always be {0,0,width,height}.
9493 2006-05-11  Jackson Harper  <jackson@ximian.com>
9495         * Form.cs: Match MS's DefaultSize for forms (they must have
9496         changed the size in sp2).
9498 2006-05-11  Atsushi Enomoto  <atsushi@ximian.com>
9500         * TextBoxBase.cs : implement CTRL+A (select all). Fixed bug #78368.
9502 2006-05-11  Atsushi Enomoto  <atsushi@ximian.com>
9504         * TextControl.cs : Fixed bug #78109. This incorrect position
9505           comparison caused crash on automatic line split.
9506         * TextBoxBase.cs : reduce duplicate code.
9508 2006-05-10  Jackson Harper  <jackson@ximian.com>
9510         * MdiClient.cs: Active form is only sent to the back when using
9511         the Next form functionality, when a form is clicked the current
9512         active shouldn't be sent to the back.
9513         - Layout the mdi windows when the container is first made visible.
9514         * Form.cs: Give the MdiClient a ref to the containing form when we
9515         create it.
9516         
9517 2006-05-10  Atsushi Enomoto  <atsushi@ximian.com>
9519         * LinkLabel.cs : link_font could be uninitialized, so populate one
9520           before actual use. Fixed bug #78340.
9522 2006-05-10  Atsushi Enomoto  <atsushi@ximian.com>
9524         * XplatUIX11.cs : clipboard format native value is IntPtr.
9525           Fixed bug #78283.
9527 2006-05-10  Peter Dennis Bartok  <pbartok@novell.com>
9529         * Control.cs: 
9530           - Instead of showing context menus directly we send WM_CONTEXTMENU, 
9531             which is passed up the parent chain by DefWndProc
9532           - We now handle WM_CONTEXTMENU to display any menu, or pass it 
9533             to DefWndProc (#77956)
9534         * XplatUIX11.cs: Added handling of WM_CONTEXTMENU (pass up) to DefWndProc
9536 2006-05-10  Jackson Harper  <jackson@ximian.com>
9538         * MdiClient.cs: We need to remove the controls from the mdi
9539         collection, when we close the window.
9540         * MdiWindowManager.cs: Special handling of closing mdi windows.
9541         * InternalWindowManager.cs: Make the close method virtual so the
9542         mdi window manager can handle it specially.
9544 2006-05-10  Jordi Mas i Hernandez <jordimash@gmail.com>
9546         * DataGrid.cs:
9547           - Recalculate grid when the data source has changed
9548           - Matches styles provided by user from all data sources types
9549         * DataGridTableStyle.cs: For columns that provided by the user set the
9550         with the preferred value is there was unassigned.
9551         * CurrencyManager.cs: throw OnItemChanged event
9553 2006-05-10  Peter Dennis Bartok  <pbartok@novell.com> 
9555         * PictureBox.cs: Don't animate until handle is created. Start animation
9556           when handle is created.
9558 2006-05-10  Peter Dennis Bartok  <pbartok@novell.com>
9560         * XplatUIX11.cs, Hwnd.cs: Adopted Mike's patch from #77979 to match
9561           current codebase.
9562         * XEventQueue.cs: We don't need to provide the extra info
9564 2006-05-10  Jackson Harper  <jackson@ximian.com>
9566         * MdiClient.cs: If the mdi clients parent form has a background
9567         image set, we draw that background image for the mdi area's
9568         background.
9570 2006-05-10  Peter Dennis Bartok  <pbartok@novell.com>
9572         * TextBoxBase.cs: Set IBeam cursor (#78347)
9574 2006-05-10  Mike Kestner  <mkestner@novell.com>
9576         * ToolBar.cs: fix some text padding issues with ButtonSize
9577         calculation. Update the default size to match MS documentation.
9578         * ToolBarButton.cs: use ToolBar.ButtonSize for layout of unspecified
9579         button size. Fixes #78296.
9581 2006-05-10  Mike Kestner  <mkestner@novell.com>
9583         * ListBox.cs: use is_visible for scrollbar positioning in case the
9584         control isn't on screen yet.  Fix off by one with Right vs Width
9585         usage.  Update Scrollbars in SetBoundsCore. Fixes #78188 and #78258.
9586         
9587 2006-05-10  Jackson Harper  <jackson@ximian.com>
9589         * X11Dnd.cs: Drop to a control with another control on top of it.
9590         * ToolBar.cs: Work on a copy of the buttons list, so that it can
9591         be modified in click handlers. TODO: Look for similar problems in
9592         other controls.
9594 2006-05-09  Jackson Harper  <jackson@ximian.com>
9596         * Form.cs: Window managers need the old window state when setting
9597         window state now.
9598         * InternalWindowManager.cs: Allow the base mdi window manager to
9599         handle more of the MDI only stuff (like maximize buttons).
9600         * MdiWindowManager.cs: Fix some snafus in changing the window
9601         state.  Add all the menu functionality, for both popup and
9602         maximized menus.
9603         * MdiClient.cs: When a new form is selected the currently
9604         activated form is sent to the back, this matches MS.
9605         - Implement a new method to activate the next mdi child window.
9607 2006-05-08  Peter Dennis Bartok  <pbartok@novell.com>
9609         * Control.cs: 
9610           - Added new InternalCapture method to allow controls to prevent
9611             the capture behaviour on the click handlers
9612           - Switched to use InternalCapture
9613         * ComboBox.cs:
9614           - Using InternalCapture to prevent mouse captures from being released
9615             on mouse button release (Fixes #78100)
9616         * XplatUIX11.cs (DeriveStyles): Now checks caption state and only
9617           returns Form borders if a caption is present. (Fixes #78310)
9619 2006-05-08  Peter Dennis Bartok  <pbartok@novell.com> 
9621         * TreeNode.cs: Changed serialization .ctor to not require every field
9622           to be present. (#78265)
9623         * OwnerDrawPropertyBag.cs: Added serialization .ctor
9625 2006-05-05  Alexander Olk  <alex.olk@googlemail.com>
9627         * MimeIcon.cs: for is faster than foreach for strings.
9629 2006-05-05  Mike Kestner  <mkestner@novell.com>
9631         * CheckedListBox.cs: update check handling code to not use selected.
9632         * ListBox.cs: rewrite of mouse selection handling to correspond to MS
9633         behavior for visual feedback, motion response, shift/ctrl handling,
9634         and properly deal with all 4 selection modes. Updates to bounds
9635         handling logic.  Add scroll wheel support. [Fixes #77842]
9637 2006-05-05  Peter Dennis Bartok  <pbartok@novell.com> 
9639         * ListView.cs:
9640           - Moved adding of Implicit controls into .ctor. That way, subsequent
9641             creation of the controls will not cause them to think they are 
9642             toplevel windows (fixes #78200 header problem)
9643           - Added 2.0 ShowGroups and UseCompatibleStateImageBehaviour
9644           - Switched visibility setting of header control to use internal field
9645             to avoid triggering handle creation
9646           - Now checking if handle is created before causing a refresh when items
9647             are added (This makes us now match handle creation time with MS)
9648         * Splitter.cs: Removed loading of private splitter cursor, switched to
9649           Cursors version now that that is loading the right ones
9650         * Cursors.cs: Load proper splitter cursors from resources
9651         * Cursor.cs: Added second method of loading resource cursors for the 
9652           VS.Net users amongst us
9654 2006-05-05  Mike Kestner  <mkestner@novell.com>
9656         * ListView.cs: give header_control a minimum size based on the
9657         ListView size.
9659 2006-05-05  Peter Dennis Bartok  <pbartok@novell.com> 
9661         * XplatUIX11.cs: WS_EX_TOPMOST requires window to be on top. A dock
9662           window seems to do that with metacity, so set that type. (#78120)
9664 2006-05-05  Mike Kestner  <mkestner@novell.com>
9666         * ListViewItem.cs: fix Details mode checkbox layout bug.
9667         * ThemeWin32Classic.cs: draw a ListView column header for unused space
9668         at the end of the header, if it exists. [Fixes for #78200]
9670 2006-05-04  Jackson Harper  <jackson@ximian.com>
9672         * MdiClient.cs: Add a helper property to get the container form.
9673         * MdiWindowManager.cs: We have to make sure to use the menu origin
9674         when drawing the icons and buttons, this fixes maximized window
9675         icons/buttons on win32.
9676         * InternalWindowManager.cs: Reset the restore captions when a
9677         window goes from Maximized to Minimized and vice versa. Move the
9678         DrawMaximizedButtons into the MdiWindowManager source, tool
9679         windows can't be maximized. NOTE: This could use a little
9680         refactoring if time ever permits.
9681         
9682 2006-05-03  Jonathan Chambers  <jonathan.chambers@ansys.com>
9684         * TextBox.cs: Add MWFCategoryAttributes
9685         * TextBoxBase.cs: Add MWFCategoryAttributes
9686         * Form.cs: Add MWFCategoryAttributes
9688 2006-05-03  Jonathan Chambers  <jonathan.chambers@ansys.com>
9690         * Control.cs: Add MWFCategoryAttributes
9691         * ScrollableControl.cs: Add MWFCategoryAttributes
9693 2006-05-03  Alexander Olk  <alex.olk@googlemail.com>
9695         * ThemeWin32Classic.cs: Draw the ToolBar top border only if
9696           Divider is true. Fix a little glitch in PropertyToolBar
9697           drawing code
9699 2006-05-02  Peter Dennis Bartok  <pbartok@novell.com> 
9701         * Control.cs:
9702           - Dispose: Call base.Dispose, this causes the disposed event
9703             to be fired (and probably other, more important stuff)
9704           - SetVisibleCore: Set is_visible to true after creating the
9705             window so that the window still gets created invisible (if
9706             WM_VISIBLE isn't set). That will cause the ShowWindow afterwards
9707             to generate a WM_ACTIVE message
9708         * Form.cs: Call Dispose when we want to destroy the window, instead of
9709           just destroying the handle (Dispose will do that for us)
9710         * XplatUIX11.cs:
9711           - RootWindow also needs a queue, so we can properly process the
9712             property change events from RootWindow (like Activate)
9713           - Generatic synthetic WM_ACTIVE message when the active window is
9714             being destroyed
9716 2006-05-01  Peter Dennis Bartok  <pbartok@novell.com> 
9718         * LinkLabel.cs: Trigger a recalc of our label dimensions when
9719           bounds are changed
9721 2006-05-01  Peter Dennis Bartok  <pbartok@novell.com>
9723         * ThemeWin32Classic.cs (ButtonBase_DrawImage): Use the proper image
9724           for determining width and height (image might not be assigned if
9725           we're drawing an imagelist)
9727 2006-05-01  Peter Dennis Bartok  <pbartok@novell.com> 
9729         * XplatUI.cs, XplatUIDriver.cs: Added MenuHeight property
9730         * XplatUIWin32.cs: Overriding new MenuHeight property, retrieving
9731           height from system
9732         * Theme.cs: No longer returns hardcoded menu height, instead calls
9733           new driver method
9734         * Form.cs (OnLoad): Scaling happens before triggering Load events 
9735           on MS (# 78257)
9737 2006-05-01  Mike Kestner  <mkestner@novell.com>
9739         * MenuItem.cs: fix NRE for text == null.  Fixes #78250.
9741 2006-04-30  Peter Dennis Bartok  <pbartok@novell.com> 
9743         * TextBoxBase.cs: Removed Fixme
9744         * RichTextBox.cs (set_RTF): Invalidate document after update (#78247)
9746 2006-04-30  Peter Dennis Bartok  <pbartok@novell.com>
9748         * XplatUIX11.cs:
9749           - ScrollWindow: We were passing hwnd.ClientRectangle which returns
9750             the rectangle relative to the parent, considering borders. We
9751             don't really want that.
9752           - ScrollWindow: Fixed warning to be more understandable
9753         * TextBoxBase.cs: Fixed ScrollWindow calculations to consider our
9754           scrollbars and scroll only the visible area
9755         * RichTextBox.cs: Removed debug output
9757 2006-04-29  Peter Dennis Bartok  <pbartok@novell.com>
9759         * NumericUpDown.cs (Text): Just use base
9760         * UpDownBase.cs: Ensure txtView is created before using it
9762 2006-04-29  Peter Dennis Bartok  <pbartok@novell.com> 
9764         * XplatUIX11.cs (SetWindowTransparency): Casting opacity to int before
9765           casting to IntPtr to avoid 64bit overflow errors
9767 2006-04-29  Peter Dennis Bartok  <pbartok@novell.com>
9769         * Control.cs:
9770           - AllowDrop: Don't force handle creation.
9771           - CreateHandle: Added call to tell driver if we're allowed to drop
9773 2006-04-27  Alexander Olk  <alex.olk@googlemail.com>
9775         * FileDialog.cs: Remember the last directory not only for the
9776           current instance but also for new FileDialog instances.
9778 2006-04-29  Peter Dennis Bartok  <pbartok@novell.com> 
9779         
9780         * XplatUIX11.cs: Forgot to set the queue on the foster parent. That
9781           broke sending async messages
9783 2006-04-29  Peter Dennis Bartok  <pbartok@novell.com>
9785         * XplatUIX11.cs:
9786           - ScrollWindow: Fixed method. We finally generate expose events again
9787             for scrolled areas. This was causing 'garbage' when scrolling
9788             textbox and other controls that used ScrollWindow
9789           - Switched from using the regular queue for paint events to the MS 
9790             model of 'generating' paint events when the queue is empty.
9791             We use the new XQueueEvent.Paint subclass to store which windows
9792             need painting.
9793           - AddExpose now takes the x/y/width/height of the exposed area
9794             and inserts the window into the paint queue if not already there
9795           - InvalidateWholeWindow: Switched to use new AddExpose method
9796           - UpdateMessageQueue: Added which queue to monitor for paint events
9797           - DefWndProc: Added default handler for WM_PAINT and WM_NCPAINT in
9798             the unlikely case nothing above handles it. We reset the expose
9799             pending states to get them off the queue.
9800           - GetMessage: Now pulls a paint event if no other events are in the
9801             queue
9802           - Invalidate: Switched to new AddExpose method
9803           - PeekMessage: Updated to understand pending paint events
9804           - UpdateWindow: Fixed logic bug. We were only updating if the window
9805             didn't need updating. Also switched to sending WM_PAINT directly,
9806             like MS does.
9807         * XEventQueue.cs: Added Paint queue support. Allows enqueue/dequeue
9808           and random access Remove(). The random access is needed to handle
9809           UpdateWindow() where a WM_PAINT is sent directly without accessing
9810           the queue.
9811         * ScrollBar.cs: Added Update() calls to cause immediate updates to
9812           allow for better feedback when scrolling. Scrollbars are small and
9813           the immediate update should make it 'feel' more responsive without
9814           slowing things down. ScrollBar still needs it's invaliate logic
9815           updated to not always invalidate the whole bar on certain changes.
9817 2006-04-28 Gonzalo Paniagua Javier <gonzalo@ximian.com>
9819         * Control.cs:
9820         (BackColor): if the control does not support a transparent background,
9821         return the default backcolor when the parent backcolor is transparent.
9823 2006-04-28  Peter Dennis Bartok  <pbartok@novell.com>
9825         * Application.cs: Updated to new StartLoop/GetMessage API
9826         * RichTextBox.cs: Provide some output on RTF parsing errors
9827         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs, XplatUIWin32.cs: Added
9828           new queue_id argument to GetMessage and PeekMessage to allow faster
9829           handling of per-thread queues in drivers.
9830         * Hwnd.cs: Added Queue tracking and property
9831         * MenuAPI.cs: Updated to new StartLoop/GetMessage API
9832         * XEventQueue.cs: Added thread trackingA
9833         * PropertyGridView.cs: Updated to new StartLoop/GetMessage API
9834         * XplatUIX11.cs:
9835           - Implemented new per-thread queue
9836           - GetMessage: Fixed return/break behaviour on several cases. We were
9837             returning stale messages in some cases, instead of just processing
9838             the next message
9840 2006-04-27  Jonathan Chambers  <jonathan.chambers@ansys.com>
9842         * PropertyGrid.cs: Call GetPropertiesSupported on TypeConverter.
9844 2006-04-27  Peter Dennis Bartok  <pbartok@novell.com>
9846         * ThemeWin32Classic.cs (DrawToolBar): Refactored, simplified the logic,
9847           fixed off-by-one comparisons between Width/Height and Right/Bottom.
9849 2006-04-27  Jonathan Chambers  <jonathan.chambers@ansys.com>
9851         * PropertyGridView.cs: Fix drop down width.
9853 2006-04-27  Alexander Olk  <alex.olk@googlemail.com>
9855         * ThemeWin32Classic.cs: Peter thinks that three additional lines are
9856           a mess in DrawToolBar, so I removed one of them.
9858 2006-04-27  Alexander Olk  <alex.olk@googlemail.com>
9860         * ThemeWin32Classic.cs: Draw the ToolBar border lines only if
9861           needed (clip). Otherwise we get artifacts.
9863 2006-04-26  Peter Dennis Bartok  <pbartok@novell.com>
9865         * FixedSizeTextBox.cs: Added constructor to allow specifying which
9866           dimension is fixed
9867         * UpDownBase.cs: Set the spinner control to be fixed height vertical,
9868           and switched FixedSizeTextBox to only be fixed vertical (#78116)
9869         * Form.cs: Not applying the 'MS 0.08 fudge factor' for a given dimension
9870           if it matches the scale base font (avoids unneeded scaling)
9872 2006-04-26  Alexander Olk  <alex.olk@googlemail.com>
9874         * X11DesktopColors.cs: One gtk_init_check should be enough
9876 2006-04-26  Peter Dennis Bartok  <pbartok@novell.com> 
9878         * TextBoxBase.cs: Moved Backspace handling into WM_CHAR block to
9879           match MS behaviour
9881 2006-04-26  Peter Dennis Bartok  <pbartok@novell.com>
9883         * TextBoxBase.cs: 
9884           - Generate OnTextChanged for Backspace even if we're only deleting
9885             the current selection
9886           - When setting the Text property, only select all text if the
9887             control does not have focus when it is being set. Otherwise
9888             just place the cursor at the beginning of the control
9890 2006-04-26  Alexander Olk  <alex.olk@googlemail.com>
9892         * ThemeWin32Classic.cs: ToolBars get drawn with two lines at the top.
9893           Added a little helper to draw PropertyGrid ToolBar with a different
9894           border and a different BackColor.
9895         * PropertyGrid.cs: Some background parts didn't get painted with the
9896           correct background color. Added a class that helps us to draw the
9897           correct border for PropertyGridView and a class that helps us to
9898           draw ToolBars with a different backcolor
9899         * PropertyGridView.cs: Draw PlusMinus with the correct colors.
9901 2006-04-25  Jonathan Chambers  <jonathan.chambers@ansys.com>
9903         * PropertyGrid.cs: Bug 78196, font size, and splitter location.
9904         * PropertyGridView.cs: Bug 78196, font size, and splitter location.
9906 2006-04-25  Peter Dennis Bartok  <pbartok@novell.com> 
9908         * XplatUIWin32.cs (DIBtoImage): ORing instead of ANDing the alpha
9909           into the palette entries. Also, since we're working on a copy
9910           we needed to copy the palette back onto the bitmap.
9911         * Cursor.cs: Same fix as XplatUIWin32.cs.
9913 2006-04-25  Peter Dennis Bartok  <pbartok@novell.com>
9915         * ImageListStreamer.cs: Need to read the var (or we're off)
9917 2006-04-25  Peter Dennis Bartok  <pbartok@novell.com> 
9919         * TextControl.cs, ComboBox.cs, CommonDialog.cs, Theme.cs, 
9920           XplatUIWin32.cs, RichTextBox.cs, ImageListStreamer.cs,
9921           TextBoxBase.cs: Unused var fixes
9922         * AxHost.cs: Small 2.0 fix
9923         * XplatUIX11.cs: Switched to IntPtr from int for XA_CARDINAL atoms 
9924           as it seems that is what at least Metacity expects. This will make
9925           icons show up on 64bit platforms. We still have some 64bit size
9926           issues, though, since the startup app window size still won't match.
9928 2006-04-25  Mike Kestner  <mkestner@novell.com>
9930         * *.cs: cleanup newly reported exception var unused warnings.
9932 2006-04-25  Alexander Olk  <alex.olk@googlemail.com>
9934         * ThemeWin32Classic.cs: Button image alignment now matches exactly
9935           ms
9937 2006-04-25  Alexander Olk  <alex.olk@googlemail.com>
9939         * ThemeWin32Classic.cs: Fixed drawing code for buttons with an
9940           image. The image position is always the same, no matter if the
9941           button is pressed or not.
9943 2006-04-25  Alexander Olk  <alex.olk@googlemail.com>
9945         * FileDialog.cs: SaveFileDialog shouldn't rely on a MWFFileView
9946           selection and set the correct filename for SaveFileDialog.
9947           Patch by Emery Conrad.
9949 2006-04-24  Mike Kestner  <mkestner@novell.com>
9951         * ListView.cs (LastVisibleIndex): when in List mode of Alignment.Left,
9952         check for item.X outside the ClientRect instead of item.Y. Fixes
9953         #78151.
9955 2006-04-21 Gonzalo Paniagua Javier <gonzalo@ximian.com>
9957         * ImageListStreamer.cs: some images store a wrong grow factor, so don't
9958         trust that value blindly and do some sanity check. Fixes bug #77814.
9960 2006-04-21 Gonzalo Paniagua Javier <gonzalo@ximian.com>
9962         * ImageListStreamer.cs: save the mask as a 1bpp image.
9964 2006-04-21  Mike Kestner  <mkestner@novell.com>
9966         * CheckedListBox.cs: maintain CheckStatus here. Use DrawItemState to
9967         pass Checked and Indeterminate to the Theme Engine. Improve
9968         encapsulation with ListBox.
9969         * ListBox.cs: Keep a StringFormat instead of calculating it every item
9970         draw. Kill ListBoxItem. Refactor away the ListBoxInfo and ListBoxItem
9971         nested types.  Move all CheckState functionality to CheckedListBox.
9972         Make IntegralHeight work like MS.  Rewrite of Layout engine.  Fix
9973         OwnerDrawVariable layout/rendering.  Fix multicolumn rendering.  Fix
9974         ScrollAlwaysVisible handling. Refactor "selected" collections to use a
9975         single base list. Fix scrollbar sizing and placement to mirror MS.
9976         * Theme.cs: remove CheckedListBoxCheckRectangle. It wasn't really
9977         used.
9978         * ThemeWin32Classic.cs: implement Indeterminate CheckState rendering
9979         for CheckedListBox by using new DrawItemState info.  Center the
9980         checkboxes on the items. Use new StringFormat property.
9982 2006-04-18  Jackson Harper  <jackson@ximian.com>
9984         * Form.cs: MdiChildren don't do default locations the same way as
9985         regular forms.  This prevents a crash when trying to position the
9986         mdi windows.
9988 2006-04-17  Jonathan Chambers  <jonathan.chambers@ansys.com>
9990         * PropertyGridTextBox.cs: Formatting, copyright
9991         * PropertiesTab.cs: Formatting
9992         * PropertyGrid.cs: Formatting
9993         * PropertyGridView.cs: Formatting, fix drop down, enabled double 
9994           click toggling of values
9995           
9996 2006-04-17  Peter Dennis Bartok  <pbartok@novell.com> 
9998         * KeyPressEventArgs: Added 2.0 only setter for KeyChar
9999         * Control.cs (.ctor): verify_thread_handle is static, don't reset
10000           every time a control is created
10001         * Application.cs: Removed obsolete EnableRTLMirroring method
10003 2006-04-18  Gert Driesen  <drieseng@users.sourceforge.net>
10005         * TabControl.cs: Avoid ArgumentOutOfRangeException when setting
10006         SelectedIndex to -1. Fixes bug #78121.
10008 2006-04-17  Jackson Harper  <jackson@ximian.com>
10010         * Binding.cs: Handle null values for Current and BindingContext.
10011         This occurs when binding is a little delayed.
10012         * CurrencyManager.cs: return null for Current when there are no
10013         items in the list.
10014         - Hookup to the listchanged event on the DataView and update
10015         bindings when the list is changed.  This fixes late binding of
10016         controls.
10018 2006-04-17  Jackson Harper  <jackson@ximian.com>
10020         * X11Dnd.cs:
10021         * XplatUIX11.cs: Drops should not create a mousedown. Patch by Tim
10022         Ringenbach.
10024 2006-04-15  Alexander Olk  <alex.olk@googlemail.com>
10026         * ThemeWin32Classic.cs: Draw disabled combo button in the correct
10027           place
10028         * ComboBox.cs: If the combobox is disabled call CPDrawComboButton
10029           with the correct ButtonState
10031 2006-04-14  Peter Dennis Bartok  <pbartok@novell.com>
10033         * XplatUIX11.cs: Improved distinguishing between window types to
10034           tell the WM a type closer to what the app wants (Fixes #78107)
10036 2006-04-14  Alexander Olk  <alex.olk@googlemail.com>
10038         * ThemeWin32Classic.cs: Fixed drawing of ContainerGrabHandle and
10039           GrabHandle
10041 2006-04-14  Alexander Olk  <alex.olk@googlemail.com>
10043         * ThemeWin32Classic.cs: Fixed size grip drawing and updated StatusBar
10044           drawing code to reflect the size grip changes
10046 2006-04-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
10048         * ImageListStreamer.cs: fix handling of the mask that follows the main
10049         bitmap when deserializing and serialize it properly. The generated mask
10050         should better be a 1bpp image, but I'll do that later.
10052 2006-04-13  Alexander Olk  <alex.olk@googlemail.com>
10054         * FileDialog.cs: Show something in the DirComboBox on *nix if the
10055           path doesn't fit into some of our Current.Places
10057 2006-04-13  Jackson Harper  <jackson@ximian.com>
10059         * ComboBox.cs: Use borders instead of drawing our own decorations,
10060         try to obey correct rules for heights.
10061         * Theme.cs:
10062         * ThemeNice.cs:
10063         * ThemeClearLooks.cs:
10064         * ThemeWin32Classic.cs: Remove combobox decoration drawing code,
10065         this is now handled by borders.
10066         - Remove unused DrawListBoxDecorationSize method.
10067         
10068 2006-04-13  Mike Kestner  <mkestner@novell.com>
10070         * MenuAPI.cs: null guarding for the disbled click check fixes crash
10071         reported by Alex.
10073 2006-04-13  Alexander Olk  <alex.olk@googlemail.com>
10075         * ThemeWin32Classic.cs: 
10076           - Fixed CPDrawStringDisabled
10077           - Corrected drawing of disabled menu items
10078           - Fixed drawing of disabled radio buttons (bug #78095)
10079           - Draw check in a disabled CheckBox with color ControlDark 
10081 2006-04-12  Peter Dennis Bartok  <pbartok@novell.com>
10083         * Form.cs: Use the provided width when calculating the menu size;
10084           when being maximized we get WM_NCCALCSIZE before WM_WINDOWPOSCHANGED
10085           and ClientSize.Width won't be updated yet
10086         * Application.cs: Use Visible instead of Show() to make form visible,
10087           this way we create the handle later and menusize is considered
10089 2006-04-12  Mike Kestner  <mkestner@novell.com>
10091         * MenuAPI.cs: ignore clicks on disabled menu items. Thanks to Alex for
10092         reporting.
10094 2006-04-12  Peter Dennis Bartok  <pbartok@novell.com>
10096         * TextBox.cs: Implemented context menu
10098 2006-04-12  Mike Kestner  <mkestner@novell.com>
10100         * ListView.cs: implement box selection. fixes #77838.
10101         * ThemeWin32Classic.cs: draw box select rect, remove a ResetClip.
10103 2006-04-12  Peter Dennis Bartok  <pbartok@novell.com> 
10105         * XplatUIX11.cs: Added setting of window type when transient window
10106           is created (metacity would move it otherwise)
10107         * X11Structs.cs: Added WINDOW_TYPE atoms
10108         * LinkLabel.cs: Override OnPaintBackgroundInternal and draw the
10109           background (the control is Opaque but still wants transparent
10110           backgrounds)
10112 2006-04-12  Peter Dennis Bartok  <pbartok@novell.com>
10114         * Control.cs: Added OnPaintBackgroundInternal to allow controls
10115           that set Opaque but don't mean it (like all ButtonBase-derived
10116           controls) to still draw their background
10117         * ButtonBase.cs: Override OnPaintBackgroundInternal and draw
10118           the background
10120 2006-04-12  Peter Dennis Bartok  <pbartok@novell.com> 
10122         * Control.cs (PaintControlBackground): Set the graphics object
10123           on our PaintEvent to null to prevent it from being disposed
10124           when the PaintEvent gets disposed
10126 2006-04-12  Alexander Olk  <alex.olk@googlemail.com>
10128         * ThemeWin32Classic.cs: Use even more SystemBrushes and SystemPens
10129         * ThemeNice.cs, ThemeClearlooks.cs: fix typo
10131 2006-04-12  Peter Dennis Bartok  <pbartok@novell.com>
10133         * Control.cs: 
10134           - Added transparency check to BackColor property. Transparent
10135             backgrounds are only allowed if the control styles permit it
10136           - Added recursive painting of parent control background and
10137             foreground if a control with a transparent backcolor is drawn
10138             (Thanks to Tim Ringenback for providing his 'hack' as a base
10139              for this patch) Fixes #77985 and #78026.
10140           - Added Opaque style check before calling OnPaintBackground, no
10141             need to draw the background if the control is opaque
10142           - Removed ControlAccessibleObject owner variable (inherited from
10143             base, no need to define again)
10144           - Added some documentation links explaining the drawing events
10145             and styles
10147 2006-04-11  Peter Dennis Bartok  <pbartok@novell.com> 
10149         * Splitter.cs (CalculateSplitPosition): Corrected the bad assumption
10150           that the affected control is the located at the left border of our
10151           parent (Fixes #77936)
10153 2006-04-11  Peter Dennis Bartok  <pbartok@novell.com>
10155         * TextBoxBase.cs: When rendering disabled or readonly controls,
10156           draw the background with 'Control' instead of 'Window' color as
10157           long as the user hasn't specifically set a color
10159 2006-04-11  Peter Dennis Bartok  <pbartok@novell.com> 
10161         * TextBoxBase.cs: Don't try to shortcut by checking against base.Text
10162           since that won't be updated if the user types text (only if it's
10163           programatically set)
10165 2006-04-11  Peter Dennis Bartok  <pbartok@novell.com>
10167         * ScrollableControl.cs: Calculate DisplayRect dynamically, so that
10168           layout changes do to app-triggered resizes will have the proper
10169           display rectangle for layout
10171 2006-04-11  Alexander Olk  <alex.olk@googlemail.com>
10173         * ThemeWin32Classic.cs:
10174           - Make use of the SystemBrushes and SystemPens wherever possible
10175           - Corrected some highlight colors
10176           - Corrected RadioButton and CheckBox FlatStyle.Flat and Popup
10177             drawing
10178         * Theme.cs: Added Empty field to CPColor struct
10180 2006-04-11  Peter Dennis Bartok  <pbartok@novell.com>
10182         * ScrollabeControl.cs: We need to consider whether or not a scrollbar
10183           is displayed when calculating the display rectangle. Thanks to Mike
10184           for teaching me the err of my ways.
10186 2006-04-10  Peter Dennis Bartok  <pbartok@novell.com>
10188         * ScrollableControl.cs:
10189           - Rewrote DisplayRectangle code, now returning the proper x/y coords 
10190             (instead of 0,0) and we now return the real width/height instead of
10191             just the clientrectangle, adjusted for padding. The rectangle is
10192             now cached and created by the new CalculateDisplayRectangle method.
10193           - Created new CalculateDisplayRectange method, which basically does
10194             what get_DisplayRectangle() did originally, but now using the 
10195             right edge instead of DisplayRectangle to determine the size of
10196             our scrollbars
10197           - get_Canvas(): Fixed it to properly calculate canvas for 
10198             right/bottom controls which seem to be placed to the right/bottom
10199             of any controls that have a fixed location
10200           - Removed TODO that's taken care of
10201           - Removed NotImplementeds and attempted to implement AdjustFormScrollBars
10202             and SetDisplayRectLocation according to new MSDN2 docs
10203           - Added call to PerformLayout in OnVisibleChanged, MS causes a layout
10204             event when that is called, this is added for compatibility
10205           - ScrollControlIntoView(): Implemented.
10206           - Switched scrollbars to be implicit, they shouldn't be selectable
10207         * ContainerControl: Now that ScrollControlIntoView is implemented, we 
10208           call it when the active control is set/changed
10209         * ScrollBar.cs: Added support for generating Win32 scrollbar messages
10210         * ImplicitHScrollBar.cs, ImplicitVScrollBar.cs: Now setting new base
10211           implicit_control variable (used for native Win32 message generation)
10212         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs: Added new 
10213           HorizontalScrollBarHeight and VerticalScrollBarWidth properties
10214         * ThemeWin32Classic.cs: Now calling the driver for the scrollbar sizes
10215         * XplatUIStructs.cs: Added ScrollBarCommands enum
10217 2006-04-10  Jackson Harper  <jackson@ximian.com>
10219         * ButtonBase.cs:
10220         * CheckedListBox.cs:
10221         * ComboBox.cs:
10222         * DataGrid.cs:
10223         * DataGridView.cs:
10224         * Form.cs:
10225         * GroupBox.cs:
10226         * ListBox.cs:
10227         * PrintPreviewControl.cs:
10228         * ProgressBar.cs:
10229         * PropertyGrid.cs:
10230         * Splitter.cs:
10231         * StatusBar.cs:
10232         * TrackBar.cs:
10233         * UpDownBase.cs: Fixup base event overrides.
10234         
10235 2006-04-06  Mike Kestner  <mkestner@novell.com>
10237         * ScrollBar.cs: fix "new event" declarations (#76509) and bounds check
10238         all user-initiated value changes to min <= value <= max-thumbsz+1.
10239         (set_Value): check for vert/horiz when calculating new thumb position.
10240         (LargeIncrement): bounds check to stop pos at max - thumb_size + 1
10241         like MS does.
10242         (OnMouseMoveSB): refactor the thumb dragging code and refine
10243         invalidation logic to reduce flicker.
10244         (SetEndPosition): bounds check to stop pos at max - thumb_size + 1
10245         (SmallIncrement): bounds check to stop pos at max - thumb_size + 1
10246         (UpdateThumbPosition): small code readability cleanup
10248 2006-04-10  Alexander Olk  <alex.olk@googlemail.com>
10250         * ThemeNice.cs: Small UI polishing. Draw borders a little bit
10251           different
10253 2006-04-08  Alexander Olk  <alex.olk@googlemail.com>
10255         * ThemeNice.cs: Use a better graphics effect when a button is pressed
10257 2006-04-08  Alexander Olk  <alex.olk@googlemail.com>
10259         * Theme.cs: Added GetDashPen and GetSizedPen to SystemResPool
10260         * ThemeWin32Classic.cs: Make use of the new SystemResPool methods.
10261           This dramatically reduces the number of Pen.Dispose calls. 
10262           Where possible call ResPool methods only once instead of calling it
10263           over and over again (for example for the same color).
10265 2006-04-06  Mike Kestner  <mkestner@novell.com>
10267         * TabControl.cs: fix for SelectedIndex updating on TabPage removals.
10268         Also remove an unused private field on the collection. Fixes #77972.
10270 2006-04-06  Alexander Olk  <alex.olk@googlemail.com>
10272         * ThemeNice.cs: Added ToolBar drawing code
10274 2006-04-06  Mike Kestner  <mkestner@novell.com>
10276         * Form.cs (ShowDialog): MS allows IWin32Window param to be a non-form.
10277         I'm assuming that means we need to look up the toplevel for the
10278         provided control. Fixes the crash trace in #77911 but exposes another
10279         crash in some strange reflection usage in NDocGui.
10281 2006-04-06  Alexander Olk  <alex.olk@googlemail.com>
10283         * ThemeNice.cs: Gave it a little silver touch and added Images
10284           method
10285         * FontDialog.cs: FontDialog is not resizable
10286         * FileDialg.cs: Added SizeGripStyle.Show
10288 2006-04-05  Jackson Harper  <jackson@ximian.com>
10290         * KeyboardLayouts.cs: Remove warning.
10292 2006-04-05  Jackson Harper  <jackson@ximian.com>
10294         * Control.cs: Enable OnPaintInternal so we can use it for drawing
10295         all of our controls instead of Paint +=.
10296         * ListBox.cs:
10297         * ListView.cs:
10298         * MenuAPI.cs:
10299         * MessageBox.cs:
10300         * NotifyIcon.cs:
10301         * ProgressBar.cs:
10302         * ScrollBar.cs:
10303         * Splitter.cs:
10304         * StatusBar.cs:
10305         * TabControl.cs:
10306         * TextBoxBase.cs:
10307         * ToolBar.cs:
10308         * TrackBar.cs:
10309         * UpDownBase.cs:
10310         * ComboBox.cs: Remove handling of WM_PAINT and WM_ERASEBKGND and
10311         use OnPaintInternal. Remove Width/Height and Visible checks in
10312         paint handler, this is done at a higher level now.
10313         * GroupBox.cs: Don't need to handle WM_ERASEBKGND anymore.
10314         * PaintEventArgs.cs: Add a handled flag so controls that don't
10315         want anymore painting after OnPaintInternal can make sure OnPaint
10316         isn't called.
10318 2006-04-05  Mike Kestner  <mkestner@novell.com>
10320         * Form.cs: fix the menu WndProc hacks to respect the native enabled
10321         state of the form, so that we don't process events when Modal dialogs
10322         are up. Fixes #77922.
10324 2006-04-05  Alexander Olk  <alex.olk@googlemail.com>
10326         * Mime.cs: Default for range length is 1 not 0. If set to 0 no match
10327           checking is done.
10329 2006-04-05  Mike Kestner  <mkestner@novell.com>
10331         * XplatUIX11.cs: fix typo in the EX_APPWINDOW transient patch.
10333 2006-04-05  Mike Kestner  <mkestner@novell.com>
10335         * ListView.cs (HeaderMouseMove): null guarding for the over column
10336         when setting up the drag_to_index.  Fixes #78015.
10338 2006-04-04  Peter Dennis Bartok  <pbartok@novell.com>
10340         * XplatUIX11.cs: If WS_EX_APPWINDOW isn't set we don't want to show up
10341           in the taskbar. Transient windows seem to accomplish that.
10343 2006-04-04  Peter Dennis Bartok  <pbartok@novell.com> 
10345         * Form.cs:
10346           - Re-enabled CreateParams.X/Y code for FormStartPosition
10347           - Added code for manual placement when creating the Control
10348           - Incomplete patch to treat MDI forms differently when
10349             setting the ClientSizeCore. (Still need to figure out handling
10350             x/y coords there)
10351         * XplatUIX11.cs:
10352           - When we're explicitly setting the X/Y position of a non-Child
10353             window, let the WM know. Metacity really wants this.
10355 2006-04-04  Alexander Olk  <alex.olk@googlemail.com>
10357         * ThemeNice.cs: Added CPDrawButton
10359 2006-04-04  Alexander Olk  <alex.olk@googlemail.com>
10361         * ThemeNice.cs: Changed the color for focused buttons and activated
10362           the arrows for small scroll buttons.
10364 2006-04-04  Alexander Olk  <alex.olk@googlemail.com>
10366         * ThemeWin32Classic.cs: Removed DrawFlatStyleButton, not needed
10367           anymore. Changed some method modifiers to protected (virtual)
10368         * ThemeClearlooks.cs: Updated to reflect the ThemeWin32Classic
10369           changes
10370         * ThemeNice.cs: Updated to reflect the ThemeWin32Classic changes.
10371           Updated drawing of menus, buttons and progressbars; added
10372           CPDrawBorder3D 
10374 2006-04-03 Gonzalo Paniagua Javier <gonzalo@ximian.com>
10376         * ImageListStreamer.cs: implemented serialization/deserialization
10377         of the images.
10379 2006-04-03  Alexander Olk  <alex.olk@googlemail.com>
10381         * ThemeWin32Classic.cs:
10382           - Removed all the DrawFrameControl stuff; CPDrawButton,
10383             CPDrawCheckBox and CPDrawRadioButton are now handled directly
10384             inside the methods
10385           - Updated and corrected the drawing code of CPDrawButton,
10386             CPDrawCheckBox and CPDrawRadioButton to better match ms
10387           - Updated theme checkbox and radiobutton code to use the CP*
10388             methods
10390 2006-03-31  Peter Dennis Bartok  <pbartok@novell.com> 
10392         * XplatUIX11.cs: Enable clipping again now that the libgdiplus
10393           bug is fixed
10395 2006-03-31  Jackson Harper  <jackson@ximian.com>
10397         * XplatUIX11.cs: Somehow we get SETCURSORS for bad windows
10398         sometimes.
10399         * UpDownBase.cs: Don't CreateGraphics manually, use a
10400         Refresh. Ideally we would invalidate the correct areas here.
10402 2006-03-31  Peter Dennis Bartok  <pbartok@novell.com> 
10404         * XplatUIX11.cs: 
10405           - We now track the mapping state of windows. If a window (or 
10406             one of it's parents) is not mapped we no longer permit
10407             WM_PAINT messages to be generated since we'd otherwise get 
10408             lots of BadMatch X errors. Jackson did all the work figuring
10409             out the problem.
10410           - Destroying the caret if the window it's contained in is 
10411             destroyed. Can't use regular DestroyCaret method since it
10412             might fall into a drawing function (trying to remove the
10413             caret) and with that generate new BadMatch errors. Again,
10414             Jackson tracked this down.
10415           - Changed DestroyChildWindows to SendWMDestroyMessages, we now
10416             make sure we send the messages to all windows. (The old code
10417             would send the WM_DESTROY to the window, and then all child
10418             windows would be 'gone' because the WM_DESTROY handle lookup
10419             would no longer find the destroyed window)
10420         * Hwnd.cs: Added Mapping property to track mapping state of hwnd
10421         * X11Structs.cs: Added WindowType enum for MapWindow/UnmapWindow
10423 2006-03-31  Jackson Harper  <jackson@ximian.com>
10425         * ScrollableControl.cs: Dont recalc if we are not visible.
10427 2006-03-31  Mike Kestner  <mkestner@novell.com>
10429         * Control.cs (SetVisibleCore): move the CreateControl call up ahead of
10430         the visibility branch.
10432 2006-03-31  Jackson Harper  <jackson@ximian.com>
10434         * ScrollBar.cs: Cap values when incrementing/decrementing.
10436 2006-03-31  Mike Kestner  <mkestner@novell.com>
10438         * MenuAPI.cs: setup menu.tracker for popup/context menus.
10439         * ToolTip.cs: guard against timer expirations with no active control.
10440         Not sure why it happened.
10442 2006-03-31  Mike Kestner  <mkestner@novell.com>
10444         * ThemeWin32Classic.cs: add some horizontal padding space for the tip
10445         text.
10446         * ToolTip.cs: Position the tooltip based on where the cursor is at
10447         popup time, not at MouseEnter time.  Add a Down state so that we don't
10448         redisplay tips without a Leave. Use faked XplatUI.GetCursorInfo for
10449         positioning offset. Lookup DisplaySize at positioning time, since it
10450         can theoretically change during invocation.
10451         * XplatUIWin32.cs: fake GetCursorInfo until pdb can do it properly.
10452         * XplatUIX11.cs: fake GetCursorInfo until pdb can do it properly.
10454 2006-03-31  Alexander Olk  <alex.olk@googlemail.com>
10456         * ThemeWin32Classic.cs: Use CPDrawBorder3D to draw a GroupBox.
10457           Fixes behaviour when the Text property of the box is String.Empty
10459 2006-03-31  Peter Dennis Bartok  <pbartok@novell.com>
10461         * XplatUIX11.cs: Only send mouseleave for our client windows, not
10462           for the whole window (otherwise we get WM_MOUSE_LEAVE twice for
10463           a window)
10465 2006-03-31  Alexander Olk  <alex.olk@googlemail.com>
10467         * FileDialog.cs: Visual enhancement for the popup buttons in 
10468           PopupButtonPanel
10470 2006-03-31  Alexander Olk  <alex.olk@googlemail.com>
10472         * ColorDialog.cs, FontDialog.cs: Make use of the updated 3D border
10473           code
10475 2006-03-30  Alexander Olk  <alex.olk@googlemail.com>
10477         * ThemeWin32Classic.cs: Updated MainMenu drawing of selected and
10478           highlighted menu items to match ms
10480 2006-03-30  Peter Dennis Bartok  <pbartok@novell.com> 
10482         * XplatUIX11.cs: Don't set a clip rectangle unless it's not empty
10484 2006-03-30  Mike Kestner  <mkestner@novell.com>
10486         * Menu.cs (SelectedItem): use new MenuItem.Selected prop.
10487         * MenuAPI.cs: use new MenuItem.Selected prop. redraw MainMenu when we
10488         go active to account for HotLight to Selected transition.
10489         * MenuItem.cs: add internal Selected prop. Fill out the Status
10490         property by calculating it from item info. Add HotLight,
10491         NoAccelerator, Checked, Grayed, and Disabled flags where appropriate.
10493 2006-03-30  Mike Kestner  <mkestner@novell.com>
10495         * MenuItem.cs: only emit DrawItem and MeasureItem for OwnerDraw.
10497 2006-03-29  Jackson Harper  <jackson@ximian.com>
10499         * Form.cs: Implement TODO.
10501 2006-03-29  Peter Dennis Bartok  <pbartok@novell.com> 
10503         * PrintPreviewDialog.cs: Implemented missing methods and events; still
10504           missing proper dialog setup in the constructor
10506 2006-03-29  Peter Dennis Bartok  <pbartok@novell.com>
10508         * ProgressBar.cs: Added 2.0 Style property that apps seem to use
10509         * Control.cs:
10510           - Implemented CheckForIllegalCrossThreadCalls, removed TODO
10511           - Fixed ResetBindings and removed TODO
10512           - Added check for cross-thread calls to get_Handle()
10513           - Added Marshaller attribute for set_Font to satisfy class status
10514         * FontDialog.cs: Removed TODOs that seemed implemented
10515         * UpDownBase.cs: Removed unneeded TODO and Fixme
10516         * MessageBox.cs: Implemented support for Default button and removed TODO
10517         * FileDialog.cs: Removed obsolete TODO
10518         * DomainUpDown.cs: Removed obsolete TODO
10519         * ButtonBase.cs: Removed obsolete TODO
10520         * XplatUIWin32.cs: Removed obsolete TODO
10521         * Form.cs:
10522           - Removed obsolete TODO
10523           - Calling CheckAcceptButton when the acceptbutton is changed to allow
10524             internal status updates
10525           - Making sure the active control is selected when the control is created
10526         * CurrencyManager.cs: Removed obsolete TODO
10528 2006-03-29  Mike Kestner  <mkestner@novell.com>
10530         * *.cs: fix remaining corcompare issues for 1.1 API with the exception
10531         of PrintPreviewDialog and RichTextBox.
10533 2006-03-29  Alexander Olk  <alex.olk@googlemail.com>
10535         * Theme.cs: Added a little helper to SystemResPool to get the Dark,
10536           DarkDark, Light and LightLight colors for a specific color
10537         * ThemeWin32Classic.cs:
10538           - Use Button drawing code to draw RadioButtons and CheckBoxes with
10539             Appearance = Button 
10540           - Make use of the new ResPool helper CPColor
10541           - Draw ProgressBar and StatusBar with correct 3D borders
10543 2006-03-29  Alexander Olk  <alex.olk@googlemail.com>
10545         * ColorDialog.cs: Return selected color. Fixes bug #77940.
10547 2006-03-28  Mike Kestner  <mkestner@novell.com>
10549         * ListView.cs: fix Icon layout to plan for scrollbar widths when
10550         calculating col/row counts.
10552 2006-03-28  Mike Kestner  <mkestner@novell.com>
10554         * ColumnHeader.cs:
10555         * ListView.cs:
10556         * ListViewItem.cs:
10557         * Menu.cs: 
10558         switch to explicit interface method implementation for some methods
10559         corcompare identifies as inconsistent with MS.
10561 2006-03-28  Mike Kestner  <mkestner@novell.com>
10563         * MainMenu.cs: 
10564         * Menu.cs:
10565         add a few missing methods from the class status output.
10567 2006-03-28  Alexander Olk  <alex.olk@googlemail.com>
10569         * ControlPaint.cs: Fixed ControlPaint.Light method. Results are now
10570           correct.
10572 2006-03-28  Mike Kestner  <mkestner@novell.com>
10574         * MenuAPI.cs: Deactivate on MainMenu item click. Fixes #77917.
10576 2006-03-27  Mike Kestner  <mkestner@novell.com>
10578         * ThemeWin32Classic.cs: Switch flat toolbars to use RaisedInner for
10579         the Hilight state to adapt to Alex's CPDrawBorder3D changes.
10581 2006-03-27  Alexander Olk  <alex.olk@googlemail.com>
10583         * ThemeWin32Classic.cs: Rewrote Button drawing code to match ms.
10585 2006-03-25  Alexander Olk  <alex.olk@googlemail.com>
10587         * ThemeWin32Classic.cs:
10588           - GroupBox: Inserted a little gap between the text and the lines
10589             on the right side
10590           - Made the code in CPDrawBorder3D more readable
10591           - Corrected the drawing location of the up and down arrows in 
10592             CPDrawScrollButton
10594 2006-03-25  Alexander Olk  <alex.olk@googlemail.com>
10596         * ControlPaint.cs: Corrected line widths in DrawBorder for
10597           ButtonBorderStyle Inset and Outset
10599 2006-03-25  Alexander Olk  <alex.olk@googlemail.com>
10601         * ThemeWin32Classic.cs:
10602           - Rewrote the totally broken CPDrawBorder3D method. That was
10603             one of the main problems for the terrific ThemeWin32Classic
10604             look
10605           - Updated and corrected Button drawing
10606           - Correct the dimensions of the SizeGrip to match ms ones
10607           - Removed a small drawing glitch in DrawComboBoxEditDecorations
10608         * XplatUIX11.cs: Draw borders with BorderStyle = Fixed3D with
10609           Border3DStyle.Sunken to match ms.
10611 2006-03-25  Alexander Olk  <alex.olk@googlemail.com>
10613         * ThemeWin32Classic.cs: First small part of the "de-uglify
10614           ThemeWin32Classic" effort, SizeGrip
10616 2006-03-24  Jackson Harper  <jackson@ximian.com>
10618         * XplatUIX11.cs: Give a max idle time of one second, this matches
10619         MS and forces an Idle event every second when there are no other
10620         events in the queue.
10622 2006-03-24  Mike Kestner  <mkestner@novell.com>
10624         * ListView.cs: Handle (Large|Small)ImageList == null more robustly.
10625         * ListView.Item.cs: fix layout issues with null image lists and images
10626         smaller than checkbox size.
10627         * ThemeWin32Classic.cs: Draw a 12 pixel line in ListView LargeIcon
10628         mode like MS does.  It's weird, but consistent.  ;-)
10629         Fixes #77890.
10631 2006-03-24  Mike Kestner  <mkestner@novell.com>
10633         * ListView.cs: Scroll wheel support for the item control.  Fixes
10634         #77839.
10636 2006-03-23  Jackson Harper  <jackson@ximian.com>
10638         * ScrollableControl.cs: Special case negative sized areas, not
10639         zero.
10640         * MonthCalendar.cs: Save the rect of the clicked date so we can
10641         use it for invalidation.
10642         - Try to cut down on the number of invalidates
10643         - Invalidate the rect the mouse is over and was over when moving
10644         the mouse, so we get the focus box following the cursor.
10646 2006-03-23  Mike Kestner  <mkestner@novell.com>
10648         * ThemeWin32Classic.cs: fix FullRowSelect selection background and
10649         focus rectangle drawing. Fixes #77835.
10651 2006-03-23  Mike Kestner  <mkestner@novell.com>
10653         * XplatUIX11.cs: rework the fix for #77828 by changing the order of
10654         the if and else if and reverting back to the original == check on the
10655         None conditional.
10657 2006-03-23  Alexander Olk  <alex.olk@googlemail.com>
10659         * FontDialog.cs: Update the example panel if the selected index of
10660           the fontListBox changes.
10662 2006-03-23  Alexander Olk  <alex.olk@googlemail.com>
10664         * FileDialog.cs: Make FileDialog remember which directory it was in
10665           last in the same execution.
10667 2006-03-22  Mike Kestner  <mkestner@novell.com>
10669         * FileDialog.cs: make the DropDownMenu on the toolbar display
10670         RadioChecks since they are mutually exclusive and that's what MS does.
10672 2006-03-22  Mike Kestner  <mkestner@novell.com>
10674         * Theme.cs: add Color param to CPDrawMenuGlyph.
10675         * ThemeWin32Classic.cs: do color specific menu glyph rendering so that
10676         checks and radio marks and arrows are visible on highlighted items.
10677         * ControlPaint.cs: update to use new Theme signature.
10679 2006-03-22  Mike Kestner  <mkestner@novell.com>
10681         * MenuAPI.cs: only process Enter and arrow keypresses if the tracker
10682         is active. Fixes #77870.
10684 2006-03-22  Alexander Olk  <alex.olk@googlemail.com>
10686         * FileDialog.cs: Corrected TabIndex order and set fileNameComboBox
10687           to be focused/selected after startup
10689 2006-03-22  Alexander Olk  <alex.olk@googlemail.com>
10691         * ColorDialog.cs: 
10692           - Corrected behaviour of Color, AllowFullOpen, FullOpen,
10693             CustomColors and ShowHelp properties
10694           - Some internal rewrites to get better results when using the
10695             ColorMatrix
10697 2006-03-22  Mike Kestner  <mkestner@novell.com>
10699         * ListView.cs: hook into Peter's new ResetMouseHover capability to fix
10700         HoverSelection.  Fixes #77836.
10702 2006-03-22  Mike Kestner  <mkestner@novell.com>
10704         * FileDialog.cs: bugfixes for the toolbar.  Use PushButtons instead of
10705         ToggleButtons.  (De)Sensitize the Back button around a stack count of
10706         1, not 0.  Update ButtonSize based on a pixel count of the win32
10707         control.  Adjust the toolbar size/location for new button size.
10709 2006-03-22  Jackson Harper  <jackson@ximian.com>
10711         * XplatUIX11.cs: Don't handle configurenotifys if PostQuitState is
10712         true.
10713         * ScrollBar.cs: When doing increments and decrements we need to
10714         set the Value property so that ValueChanged gets raised. A
10715         possible optimization here would be to make an internal SetValue
10716         that doesn't invalidate immediately.
10717         * ToolTip.cs: Tooltips get added to their container (when
10718         supplied) so they get disposed when the container is disposed.
10719         - Don't create tooltips for String.Empty. This prevents all these
10720         little 2-3 pixel windows from showing up when running nunit-gui
10721         and driving me mad.
10722         * Form.cs: Don't set topmost when setting the owner if the handles
10723         haven't been created yet.  The topmost set will happen when the
10724         handles are created.
10726 2006-03-22  Peter Dennis Bartok  <pbartok@novell.com> 
10728         * XplatUIX11.cs:
10729           - DeriveWindowStyles: Fixed typo in borderstyle generation (#77828)
10730           - SetVisible: Sending WINDOWPOSCHANGED for all controls when made 
10731             visible (to allow them to recalculate their sizes)
10733 2006-03-21  Mike Kestner  <mkestner@novell.com>
10735         * ThemeWin32Classic.cs: major refactoring of the ToolBar rendering
10736         methods. Removed a ton of redundant code.  Still not really happy with
10737         the border rendering, but I think that's mainly because of the
10738         ControlDarkDark being black instead of a dark grey. Depending on how 
10739         close we want to be, we might want to revisit those color choices.
10740         Among the new features added during the refactor were DropDownArrow
10741         pressed rendering, Disabled image rendering.  Proper flat appearance
10742         boundary rendering.  Removed the Divider and Wrapping dividers since I
10743         can't figure out any combination of themes and conditions to make the
10744         MS control draw a horizontal line on a toolbar despite what the
10745         Divider property docs indicate.
10746         * ToolBar.cs: rewrite the layout engine. Fixes numerous flicker
10747         conditions and incorrect layout.  Updated to coding standard.
10748         * ToolBarButton.cs: refactored layout and positioning code from
10749         ToolBar to here.  Invalidate wherever possible instead of forcing
10750         redraws of the whole toolbar. 
10751         (Known remaining issues: explicit ButtonSize smaller than provided
10752         images.)
10754 2006-03-21  Mike Kestner  <mkestner@novell.com>
10756         * ContextMenu.cs (Show): use the position parameter instead of just
10757         showing at the MousePosition.
10759 2006-03-21  Jackson Harper  <jackson@ximian.com>
10761         * TabControl.cs: Remove the call to ProcessKeyEventArgs and let
10762         control handle this.
10763         * TreeNodeCollection.cs: If we are clearing the root node we need
10764         to reset top_node so calcs can still happen.
10765         * ThemeWin32Classic.cs: This is a Flags so we need to check
10766         properly.
10767         
10768 2006-03-21  Jackson Harper  <jackson@ximian.com>
10770         * DataGrid.cs: Create columns when the binding context has been
10771         changed.
10772         * X11Structs.cs: Keysyms are uints.
10773         - Add size to fix build.
10775 2006-03-21  Peter Dennis Bartok  <pbartok@novell.com> 
10777         * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs, XplatUIWin32.cs, 
10778           XplatUIOSX.cs: 
10779           - Added ResetMouseHover method to allow controls to retrigger
10780             hovering if they need it more than once
10781           - Implemented MouseHoverTime and MouseHoverSize properties
10782         * Timer.cs: Start() must reset the interval
10783         * SystemInformation.cs: Added 2.0 MouseHoverTime and MouseHoverSize
10784           properties
10786 2006-03-21  Jackson Harper  <jackson@ximian.com>
10788         * X11Keyboard.cs: improved layout detection. Move the nonchar
10789         tables into this file.
10790         * KeyboardLayouts.cs: Move the tables into resource files.
10792 2006-03-21  Mike Kestner  <mkestner@novell.com>
10794         * ListView.cs: use OnItemActivated to raise events. Fixes #77834.
10796 2006-03-21  Alexander Olk  <alex.olk@googlemail.com>
10798         * Mime.cs: Various speed optimizations. Looking up mime types
10799           is now 2 times faster than before
10801 2006-03-17  Peter Dennis Bartok  <pbartok@novell.com> 
10803         * CreateParams.cs: Added internal menu field
10804         * Control.cs: 
10805           - Switched call order for UpdateBounds; now we always call
10806             the one that also takes ClientSize, and we're calculating the 
10807             client size via driver method in the others. The previous
10808             method of tracking client size by difference wasn't working
10809             for forms where even the starting client size wouldn't match
10810             the overall form size (due to borders) (Part of fix for #77729)
10811           - CreateParams(): Do not use parent.Handle unless the handle is
10812             already created. Causes havoc with Nexxia and throws off our
10813             creation of controls
10814         * XplatUIX11.cs:
10815           - Created new PerformNCCalc method to trigger WM_NCCALCSIZE message
10816           - Switched handling of ConfigureNotify over to new PerformNCCalc 
10817             method (consolidates code)
10818           - Changed RequestNCRecalc to use new PerformNCCalc method
10819           - Added calls to RequestNCRecalc when menus and borders are changed
10820             to allow app to set NC size. (Part of fix for #77729) This matches
10821             when MS send a WM_NCRECALC on Win32 windows.
10822           - Now sending WM_WINDOWPOSCHANGED when toplevel for is made visible
10823             (Part of fix for #77729). This matches what MS does, they also
10824             send that message when the form is made visible.
10825           - XException.GetMessage: Improved usability of X errors by including
10826             a translation of the window into Hwnd and Control class
10827           - Improved debug info for window creation, reparenting and destruction
10828           - Created helper method WindowIsMapped() [Currently not used]
10829         * XplatUIWin32.cs: Added ToString() debug helper to RECT structure
10830         * Form.cs:
10831           - CreateParams: Now setting our menu on the new internal menu field
10832           - SetClientSizeCore: Now passing cp.menu instead of ActiveMenu to
10833             avoid calculating the same property twice
10834         * Hwnd.cs:
10835           - Improved usability of ToString() for debugging purposes
10836           - GetWindowRectangle(): Now uses proper CalcMenuBarSize method to
10837             determine the height of the menu, instead of just the font. This
10838             required to also create a graphics context and to keep a bmp 
10839             around (for performance reasons)
10841 2006-03-17  Peter Dennis Bartok  <pbartok@novell.com>
10843         * MenuAPI.cs: Added OnMouseUp method
10844         * Form.cs:
10845           - Now remembering the requested client size, avoids size errors
10846           - WndProc: Now handling WM_xBUTTONUP and passing it to MenuTracker
10847             instead of base if the menu is active. This is required due to
10848             control now capturing and releasing on down/up and it would
10849             prematurely release our menu capture
10851 2006-03-17  Jackson Harper  <jackson@ximian.com>
10853         * KeyboardLayouts.cs: Add the czech layouts.
10855 2006-03-16  Jackson Harper  <jackson@ximian.com>
10857         * Control.cs: Use the viewport space when sizing not the controls
10858         client size, so things like ScrollableControl that effect the
10859         viewport size (when scrollbars are added) are computed correctly.
10860         * BindingContext.cs: Cleanup to use the DataSourceEntrys instead
10861         of ManagerEntrys.
10862         - Handle creating BindingManagers for null data sources.
10863         * DataGrid.cs: Bind the cached_currencymgr_events to the real data
10864         source, otherwise when rows are added they are added to the 'fake'
10865         datasource and we will crash when trying to set the position in
10866         those rows.
10867         - Use Implicit scrollbars on the datagrid so they arent
10868         selectable.
10869         
10870 2006-03-16  Jackson Harper  <jackson@ximian.com>
10872         * Binding.cs:
10873         * InternalWindowManager.cs:
10874         * MdiWindowManager.cs:
10875         * X11Keyboard.cs: I really want Mike to love me again (fix
10876         compiler warnings).
10878 2006-03-16  Peter Dennis Bartok  <pbartok@novell.com>
10880         * DataGrid.cs:
10881           - OnMouseDown: Switch to editing mode when clicking on the cell
10882                          even if we're clicking on the cell that's currently 
10883                          selected
10884           - ProcessGridKey: Left/Right now wrap like MS.Net does
10885           - ProcessGridKey: Tab now knows to add a new row when tab is
10886                             pressed in the cell of the last column of the 
10887                             last row
10888           - ProcessGridKey: Enter now adds another row  if pressed in the last
10889                             row and selectes the new row, same column cell
10890           - ProcessGridKey: Home/End navigate columns, not rows, like 
10891                             originally implemented
10892           - Broke ProcessKeyPreview code out into an extra Internal method
10893             so it can be called from the edit code
10894         * DataGridTextBox.cs (ProcessKeyMessage):
10895           - Switched to accept Tab keypresses
10896           - Added F2 handling to allow jumping to the end of the edited cell
10897           - Added logic to allow moving caret left/right inside edited cell
10898             and making the edited cell jump when the caret hits cell borders
10899           - Tab and Enter are now passed to the datagrid after being handled
10900         * TextBoxBase.cs:
10901           - Removed capture code now that Control handles it
10902           - set_SelectionStart now ensures caret is visible
10904 2006-03-16  Jackson Harper  <jackson@ximian.com>
10906         * TrackBar.cs: Debackwards the increment/decrement for handling
10907         mouse clicks on the bar with vertical trackbars.
10908         * ThemeWin32Classic.cs: Draw vertical trackbars with 0 at the
10909         bottom to match MS.
10911 2006-03-16  Mike Kestner  <mkestner@novell.com>
10913         * ListView.cs: make shift/ctrl keyboard and mouse selection 
10914         consistent with the MS control. Fix a bug in
10915         SelectedListViewItemCollection.Clear that was pissing me off for the
10916         better part of a day because the collection was being altered
10917         underneath us as we walked the list.
10919 2006-03-16  Peter Dennis Bartok  <pbartok@novell.com> 
10921         * Control.cs: Not sure how we could miss this so long, but it seems
10922           that MS.Net has Capture set all the way from before calling 
10923           OnMouseDown through sending the mouse events until after
10924           OnMouseUp. This will fix DataGrid's selection being set to end
10925           at the location of the MouseUp.
10927 2006-03-15  Jackson Harper  <jackson@ximian.com>
10929         * BindingContext.cs: Check the binding after its added so that it
10930           can initialize the binding managers and hookup to events.
10931         * Binding.cs: Data members seem to sometimes include rows/cols in
10932           the format Row.Column we now take this into account.
10933           - Hookup to the position changed event so we can update the
10934           control when the position has changed in the data set.
10935         * CurrencyManager.cs: Take into account the row/col naming
10936           convention when creating dataset tables.
10937         * BindingContext.cs: Using a newer better way of storing
10938           datasource/datamember pairs.  Hopefully this better matches MS for
10939           looking up binding managers.
10942 2006-03-15  Jackson Harper  <jackson@ximian.com>
10944         * BindingContext.cs: The currency manager needs the data member
10945         name, if the member is a data set we use the name to find the
10946         correct table.
10947         * CurrencyManager.cs: When creating the list prefer an IList over
10948         an IListSource.
10949         - Attempt to create a DataTable from a DataSet (TODO: might need
10950         some better error checking here, although MS doesn't seem to have much)
10951         - If we have a DataTable create a view and use it as our list.
10953 2006-03-15  Mike Kestner  <mkestner@novell.com>
10955         * ListView.cs: keep a matrix of the icon mode layout to facilitate
10956         keyboard navigation. Support Up/Down/Left/Right selection correctly
10957         for all 4 View modes.
10958         * ListViewItem.cs: add internal row/col fields for icon layouts.
10960 2006-03-15  Jackson Harper  <jackson@ximian.com>
10962         * TabControl.cs: Redraw the tabs when we resize so their newly
10963         calculated sizes are drawn on screen.
10964         * X11Keyboard.cs: Begginnings of XIM support.  We also now support
10965         composite characters.
10966         * XplatUIX11.cs: Keyboard driver needs to know about focus changes
10967         - filter events so that composite characters can be created
10968         patches by peter
10969         * X11Structs.cs: Add XIMProperties enum.
10971 2006-03-14  Peter Dennis Bartok  <pbartok@novell.com> 
10973         * Control.cs (BringToFront, SendToBack): Don't use window or handle
10974           unless it's created
10976 2006-03-14  Peter Dennis Bartok  <pbartok@novell.com>
10978         * Control.cs (PerformLayout): We don't need to consider visiblity
10979           for anchoring, only for docking. This fixes 'whacky' alignment
10980           in listbox and other controls that use implicit scrollbars after
10981           the previous PerformLayout patch
10982         * ListBox.cs: Switched to use implicit scrollbars
10983           
10984 2006-03-14  Mike Kestner  <mkestner@novell.com>
10986         * ToolBar.cs: 
10987         * VScrollBar.cs:
10988         - chain up the "new event" overrides to base and use
10989         OnEvent to raise them.  Part of fix for bug #76509.
10991 2006-03-14  Alexander Olk  <alex.olk@googlemail.com>
10993         * FileDialog.cs: Do not select an item in the parent directory
10994           on backspace
10996 2006-03-14  Peter Dennis Bartok  <pbartok@novell.com> 
10998         * Control.cs (PerformLayout): It would seem that we considered
10999           invisible windows for our layout. Not quite the right thing
11000           to do. Now we don't any longer, thereby fixing bug #76889.
11002 2006-03-14  Peter Dennis Bartok  <pbartok@novell.com>
11004         * Control.cs (CanFocus): I goofed. A control can have focus 
11005           even though it's not selectable. Made it match MS docs.
11007 2006-03-13  Peter Dennis Bartok  <pbartok@novell.com>
11009         * ControlPaint.cs (DrawBorder3D): DrawBorder3D does not fill the
11010           center by default (fixes #76895)
11011         * ThemeWin32Classic.cs, ThemeNice.cs, ThemeClearlooks.cs: Replaced 
11012           all uses of Border3DSides.All with the explicit ORd together
11013           Left|Right|Top|Bottom because I assume that nobody was aware 
11014           that All also implies a center fill. Most places I checked had
11015           a fill right above.
11016         * ProgressBarStyle.cs: Added
11018 2006-03-13  Mike Kestner  <mkestner@novell.com>
11020         * ListView.cs: fix breakage in drag shadow header positioning 
11021         from Peter's csc compilation fix.
11023 2006-03-13  Mike Kestner  <mkestner@novell.com>
11025         * ListView.cs: fix NRE produced by backspacing twice in a focused
11026         FileDialog.
11028 2006-03-13  Mike Kestner  <mkestner@novell.com>
11030         * ListView.cs: proxy Key(Down|Up) from ItemControl to ListView.
11032 2006-03-13  Peter Dennis Bartok  <pbartok@novell.com>
11034         * Hwnd.cs: Added fixed_size field to track windows whose size cannot
11035           be changed
11036         * XplatUIX11.cs: Now setting fixed_size on hwnd and if set, re-setting
11037           the allowed size before making programmatic size changes
11039 2006-03-13  Peter Dennis Bartok  <pbartok@novell.com> 
11041         * XplatUIX11.cs: Don't call XSetWMNormalHints if no flags are 
11042           set, metacity is broken and will still use the emty sizes in 
11043           the struct. (Fix for #77089)
11045 2006-03-13  Peter Dennis Bartok  <pbartok@novell.com>
11047         * XplatUIStructs.cs: Split WindowStyles into WindowStyles and 
11048           WindowExStyles and marked both enums as Flags
11049         * Form.cs, ComboBox.cs, ToolTip.cs, Control.cs, PropertyGridView.cs,
11050           NotifyIcon.cs, MenuAPI.cs, XplatUIOSX.cs, MonthCalendar.cs: Updated
11051           to match WindowStyles split
11052         * XplatUIX11.cs:
11053           - SetWMStyles: Added cehck to not apply WM attributes to Child windows
11054           - Updated to match WindowStyles split
11055         * XplatUIWin32.cs:
11056           - Fixed FosterParent creation, was using ExStyle on the Style field
11057             (This should help with Popup focus issues)
11058           - Updated to match WindowStyles split
11060 2006-03-13  Jackson Harper  <jackson@ximian.com>
11062         * MdiWindowManager.cs: Use the system menu height. Fixes some
11063         strange sizing issues.
11065 2006-03-12  Peter Dennis Bartok  <pbartok@novell.com>
11067         * RichTextBox.cs: Need to scroll to caret after text is inserted (#77672)
11068         * TextBoxBase.cs:
11069           - Scroll to caret after inserting text (#77672)
11070           - Make scroll range one pixel higher, fixes off-by-one error (and
11071             makes underlines visible on the last line)
11073 2006-03-12  Peter Dennis Bartok  <pbartok@novell.com> 
11075         * XplatUIX11.cs: Added call to new Keyboard.ResetKeyState to prevent
11076           the keyboard state from being stuck with keys in 'pressed' state when
11077           focus is switched away via keyboard
11078         * X11Keyboard.cs: Added new ResetKeyState method to allow drivers to
11079           reset the keyboard if no X11 KeyUp events are expected to come
11080         * X11Structs.cs: Switched type of Visible to bool to match driver
11082 2006-03-12  Peter Dennis Bartok  <pbartok@novell.com>
11084         * TextControl.cs:
11085           - Switched caret to be just 1 pixel wide, matches MS and looks less
11086             clunky
11087           - Moved caret display 1 pixel down from the top of the control
11088             to improve view
11089           - InsertCharAtCharet: Update the selection start if moving the caret
11090             (fixes bug #77696; based on patch suggested by kazuki@panicode.com)
11091           - No longer always creating the caret when the caret methods are
11092             called. Only the actual ShowCaret/HideCaret will do that now
11093           - Only setting caret visible if the owner control has focus
11094           - UpdateView: Added invalidation-shortcut logic for center and right 
11095             aligned text. Previously we'd update all according to the left
11096             logic which caused drawing errors. Also fixed height of invalidated
11097             areas, now properly invalidating the whole area (was off-by-one)
11098           - owner_HandleCreated: Always generate the document when the
11099             handle is created; this ensures that 
11100         * TextBoxBase.cs:
11101           - Fixed situation where caret would disappear under the right
11102             window border, also improved scrolling behaviour on left-
11103             aligned textboxes
11104           - Fixed right-aligned textboxes to have a border to the
11105             right instead of the caret being under the right border
11106         * XplatUIX11.cs:
11107           - Switched from 'nested' to simple visible/not visible tracking 
11108             for caret (part of fix for #77671)
11109           - No longer passing through translated FocusIn/FocusOut messages
11110             since we were notifying too often and the wrong windows. Instead
11111             we just notify our focussed window of receiving or loosing focus
11112         * XplatUIWin32.cs: Switched from 'nested' show/hide 
11113           counting for caret to simple visible yes/no behaviour (part of 
11114           fix for #77671)
11116 2006-03-11  Alexander Olk  <alex.olk@googlemail.com>
11118         * Mime.cs: Remove debug code...
11120 2006-03-11  Alexander Olk  <alex.olk@googlemail.com>
11122         * MimeGenerated.cs: Removed
11123         * Mime.cs: Mime now reads the mime data (magic, globs, aliases
11124           and subclasses) from /usr/(local/)share/mime and
11125           $HOME/.local/share/mime.
11127 2006-03-10  Jackson Harper  <jackson@ximian.com>
11129         * MdiWindowManager.cs: Recalc the NC area when a window is
11130         maximized/restored so that the menu area is drawn on forms that
11131         don't have a menu.
11133 2006-03-10  Peter Dennis Bartok  <pbartok@novell.com>
11135         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs, XplatUIWin32.cs,
11136           XplatUIX11.cs: Added RequestNCRecalc method to driver to allow
11137           us to force a WM_NCCALCRESIZE message being sent. This is needed
11138           for MDI maximizing.
11140 2006-03-10  Jackson Harper  <jackson@ximian.com>
11142         * Form.cs: We need to use the ActiveMenu when calculating menu
11143         height.
11144         - Fix nullref when the window manager hasn't been created yet.
11145         * Control.cs: Fix nullref when we try to bring a control to the
11146         front that has no parent.
11147         * MdiWindowManager.cs: Use the MaximizedMenu for calculating
11148         height.
11149         - Add a dummy item to the maximized menu so it always has the
11150         correct height. Otherwise when there are no menus we don't get our
11151         icon and buttons.
11152         
11154 2006-03-10  Jackson Harper  <jackson@ximian.com>
11156         * MenuAPI.cs: Make this available elsewhere. I need it in some MDI
11157         stuff.
11158         * Form.cs: Make the window_state internal so the window managers
11159         can track it.
11160         - When an MDI child is maximized let its window manager create the
11161         main menu (so it can add its icon).
11162         - Notify the window managers of state changes
11163         - Let the window manager paint its buttons and handle button
11164         clicks on the menu when it is maximized.
11165         * InternalWindowManager.cs: Move the prev_bounds into the mdi
11166         window manager, since tool windows don't use it, only mdi windows.
11167         - Tell the main form that we don't want it to handle NCPAINT
11168         itself to avoid extra painting.
11169         - Handle clicks on a maximized windows menu.
11170         - Handle window state changes
11171         - Handle minimize/maximize clicks correctly by setting the window state.
11172         * MdiWindowManager.cs: Add an icon menu that (the menu you get
11173         when clicking on the forms icon).
11174         - New method to create a forms maximized menu. This is its normal
11175         menu + an icon.
11176         - Handle window state changes.
11177         - Handle sizing of maximized windows.  Maximized windows are just
11178         drawn bigger then the parent visible area. All controls are still
11179         there, they are just outside the visible area (this matches windows).
11180         * MdiClient.cs: No scrollbars when a child window is maximized.
11181         - Let the children windows figure out how big they should be when
11182         sizing maximized windows.
11183         - Implement a version of ArrangeIconicWindows somewhat similar to
11184         Windows version.  There are some little differences, but I don't
11185         think any app will rely on the layout of minimized mdi windows.
11187 2006-03-10  Peter Dennis Bartok  <pbartok@novell.com>
11189         * Padding.cs: Several fixes to allow compiling with csc 2.0
11191 2006-03-09  Jackson Harper  <jackson@ximian.com>
11193         * Menu.cs:
11194         * MenuItem.cs: Cheap hack so we can add items to the list without
11195         the events being raised.  This allows adding mdi items during
11196         drawing. TODO: Should probably find a better time to add the items.
11198 2006-03-10  Peter Dennis Bartok  <pbartok@novell.com>
11200         * ThemeWin32Classic.cs:
11201           - CheckBox_DrawText: Added logic to not wrap if not enough space
11202             is available (Fix for bug #77727)
11203           - RadioButton_DrawText: Added logic not to wrap if not enough
11204             space is available (Fix for bug #77727). Also removed some
11205             duplicate code, DrawString always drawing the regular text
11206             before hitting the if statement.
11208 2006-03-10  Peter Dennis Bartok  <pbartok@novell.com> 
11210         * XplatUIX11.cs: Handle an unmapped window state in SetWindowState
11212 2006-03-10  Peter Dennis Bartok  <pbartok@novell.com>
11214         * PictureBox.cs: Implemented ISupportInitialize interface (fixes #77726)
11215         * ContainerControl.cs: Partial implementation of some 2.0 scaling
11216           methods. Moved the new 2.0 properties into alphabetical order with
11217           other properties and added MonoTODO tags
11219 2006-03-09  Peter Dennis Bartok  <pbartok@novell.com> 
11221         * AutoScaleMode.cs: Added. Fix build.
11223 2006-03-09  Peter Dennis Bartok  <pbartok@novell.com>
11225         * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs, XplatUIWin32.cs, 
11226           XplatUIOSX.cs: Removed HWnd argument from CalcuateClientRect, not used
11227           and was requiring premature handle creation for calls from above
11228         * Form.cs, Control.cs: Removed handle arguments from calls to
11229           CalculateClientRect()
11231 2006-03-09  Peter Dennis Bartok  <pbartok@novell.com> 
11233         * ListView.cs (HeaderMouseMove): Fix csc compilation. 
11234           drag_column.column_rect is MarshalByRef and can't be used that way
11236 2006-03-09  Peter Dennis Bartok  <pbartok@novell.com>
11238         * AxHost.cs: Added deserialization constructor for 
11239           AxHost+State (fixes 77743)
11241 2006-03-09  Mike Kestner  <mkestner@novell.com>
11243         * ListView.cs: 
11244         - Added column drag reordering for details view.
11245         - fixed behavior when mouse is dragged off column and
11246         AllowColumnReorder is false.
11247         * ColumnHeader.cs: clone the format too in Clone.
11248         * Theme.cs: add DrawListViewHeaderDragDetails method.
11249         * ThemeWin32Classic.cs:
11250         - impl new method for drawing drag column shadows and targets.
11251         - support column offset for details mode in DrawListViewItem.
11253 2006-03-09  Peter Dennis Bartok  <pbartok@novell.com>
11255         * TextControl.cs: Reset the char_count when the document is cleared
11256           (Fixes bug reported on mono-winforms mailing list)
11258 2006-03-09  Peter Dennis Bartok  <pbartok@novell.com> 
11260         * TextBoxBase.cs: Honor the Handled state of KeyPress events. Instead
11261           of calling base we simply process the key ourselves, since both
11262           DefWindowProc and the handled method would set m.Result. 
11263           (Fixes #77732)
11265 2006-03-09  Peter Dennis Bartok  <pbartok@novell.com>
11267         * Form.cs(ScaleCore): No longer calling base.ScaleCore since that
11268           method also moves the window; instead implemented a copy of
11269           Control.ScaleCore (Part of fix for #77456)
11270         * TextBoxBase.cs: 
11271           - Created new CreateGraphicsInternal method to allow providing
11272             a graphics context when no handle is created without triggering
11273             handle creation. (Part of fix for #77456)
11274           - Replaced use of Control.CreateGraphics with CreateGraphicsInternal
11275         * TextControl.cs: 
11276           - Switched Constructor to require TextBoxBase instead of Control (to
11277             allow uncast access to CreateGraphicsInternal)
11278           - Safeguarded use of owner.Handle property. No longer accessing it
11279             unless the handle is already created.
11280           - Replaced use of Control.CreateGraphics with CreateGraphicsInternal
11281           - Now triggering a recalc when owning control becomes visible
11282         * TextBox.cs, RichTextBox.cs: Switched to use new internal 
11283           TextBoxBase.CreateGraphicsInternal() method to avoid triggering
11284           premature handle creation (Part of fix for #77456)
11285         * Control.cs:
11286           - We now only destroy our double-buffering buffers when the
11287             control is resized or disposed, but not when visibility
11288             changes. (The code even re-created them twice every time)
11289           - Now requiring a redraw of the buffer on visibility changes
11290             (fixes bug 77654 part 2)
11291           - Not passing OnParentVisibleChanged up unless the control
11292             is visible
11293           - CanFocus: Fixed to match MS documentation
11294           - Focus: Fixed to return actual focus state and to check if
11295             setting focus is legal before setting it
11297 2006-03-08  Peter Dennis Bartok  <pbartok@novell.com>
11299         * ThemeWin32Classic.cs: TabPages cannot have focus. Determine
11300           when to draw focus rectangle by looking at parent focus and
11301           selected state instead. This fixes TabPages on Linux sometimes
11302           having none or multiple focus rectangles.
11303         * XplatUIX11.cs (SetFocus): 
11304           - Don't set the focus if the same window already has focus
11305           - Use SendMessage instead of PostMessage (like it's Win32
11306             equivalent) and send the WM_SETFOCUS before the WM_KILLFOCUS
11307             to match MS behaviour
11308         * TabControl.cs(SelectedIndex): Don't set Focus on TabPage, TabPages
11309           are not selectable.
11311 2006-03-07  Jackson Harper  <jackson@ximian.com>
11313         * PictureBox.cs: Revert line I accidently committed last week.
11315 2006-03-07  Peter Dennis Bartok  <pbartok@novell.com>
11317         * Control.cs: 
11318           - Added new IsRecreating and ParentIsRecreating properties to
11319             allow testing if RecreateHandle has been called on ourselves
11320             or one of our parents
11321           - WndProc(WM_DESTROY): If our control handle is being recreated
11322             we immediately need to create the handle when receiving the
11323             destroy, that way our child windows find a valid parent handle
11324             when they themselves are being recreated upon WM_DESTROY receipt
11325             (fix for bug #77654 part 1)
11326         * XplatUIX11.cs:
11327           - DestroyWindow: WM_DESTROY must be sent to our own window before
11328             notifying any child windows. MS documents that child windows
11329             are still valid when WM_DESTROY is received. (Control now relies on
11330             this behaviour)
11331           - Added some fine-grain debug options
11333 2006-03-06  Jackson Harper  <jackson@ximian.com>
11335         * MdiClient.cs: Redid scrolling logic a bit to create a virtual
11336         box and base calculations off this.
11337         * MdiChildContext.cs:
11338         * MdiWindowManager.cs: Don't need to ensure scrollbars here
11339         anymore.
11340         
11341 2006-03-06  Peter Dennis Bartok  <pbartok@novell.com>
11343         * Splitter.cs: In situations where the affected control is added
11344           to the parent's control list after the splitter, we would not
11345           populate affected. Now we try populating it on mousedown, if
11346           it's not already set, and force it to be re-set whenever our
11347           parent changes.
11349 2006-03-03  Matt Hargett  <matt@use.net>
11351         * Control.cs: implement Control.Padding
11352         * Padding.cs: -Padding.All returns -1 when constructing with the
11353         implicit default ctor
11354         -Padding.ToString() matches MS.NET
11355         * ContainerControl.cs: implement
11356         ContainerControl.AutoScaleDimensions
11357         * ListControl.cs: implement ListControl.FormattingEnabled
11358         * TextBox.cs: Implemented TextBox.UseSystemPasswordChar.
11359         * ButtonBase.cs:
11360         * TabPage.cs: Implement UseVisualStyleBackColor.
11361         * PictureBox.cs: Implement PictureBox.InitialImage.
11363 2006-03-03  Mike Kestner  <mkestner@novell.com>
11365         * ListView.cs: Refactor into HeaderControl and ItemControl. Fix new
11366         event declarations to proxy to base event.
11367         * ListViewItem.cs: update to use ItemControl.
11368         * Theme.cs: make DrawListViewHeader. s/DrawListView/DrawListViewItems.
11369         * ThemeWin32Classic.cs: update to new ListView theme API and fix
11370         column header label rendering for 0 width columns.
11372 2006-03-03  Peter Dennis Bartok  <pbartok@novell.com>
11374         * Control.cs (ControlCollection.SetChildIndex): Avoid using a call
11375           that causes the control to be created. Fixes #77476.
11377 2006-03-02  Jackson Harper  <jackson@ximian.com>
11379         * Hwnd.cs: Clear the nc pending when clearing the NC area, not the
11380         expose_pending.
11382 2006-03-02  Peter Dennis Bartok  <pbartok@novell.com>
11384         * Control.cs: Implemented 2.0 feature where OnClick has MouseEventArgs
11385           passed in for the EventArgs (fixes #77690)
11387 2006-03-01  Jackson Harper  <jackson@ximian.com>
11389         * ScrollBar.cs: Refresh afterbeing resized.
11391 2006-02-28  Mike Kestner  <mkestner@novell.com>
11393         * MenuAPI.cs: Call PerformPopup internal method to emit Popup.
11394         Clean up a tracker compile warning.
11395         * MenuItem.cs: add internal PerformPopup method.
11396         [Fixes #77457]
11398 2006-02-28  Peter Dennis Bartok  <pbartok@novell.com> 
11400         * TextBoxBase.cs (set_Text): Recalculate the document (causing an
11401           implicit expose) when the text is set to null
11403 2006-02-28  Peter Dennis Bartok  <pbartok@novell.com>
11405         * RichTextBox.cs (FlushText): When newline is true, we always
11406           need to split the line, even if no text is on it and we may
11407           never eat newlines. (Fixes #77669)
11409 2006-02-28  Mike Kestner  <mkestner@novell.com>
11411         * ListView.cs: Add UpdateSelection internal method. Remove SelectItem 
11412         and set Selected instead.
11413         * ListViewItem.cs: Call owner.UpdateSelection to manipulate the 
11414         collections.
11416 2006-02-28  Peter Dennis Bartok  <pbartok@novell.com> 
11418         * ComboBox.cs: Allow setting SelectedIndex to -1. Fixes #77665
11420 2006-02-28  Alexander Olk  <alex.olk@googlemail.com>
11422         * FontDialog.cs:
11423           - Got rid of the panel. All controls are now directly added to
11424             the dialog form
11425           - It is now possible to set a font with the Font property
11426           - MinSize and MaxSize property do now what they should
11427           - ShowApply, ShowHelp, ShowColor, ShowEffects likewise
11428           - Searching and selecting a font with the font textbox works now,
11429             the same applies to the style and size textbox
11430           - Draw the correct 3D border in the example panel
11431           - Fixed a little mem leak (unused fonts didn't get disposed)
11432           - Many other internal updates/rewrites...
11433           - Fix typo
11435 2006-02-27  Peter Dennis Bartok  <pbartok@novell.com> 
11437         * TextControl.cs: 
11438           - InsertRTFFromStream: Added 'number of characters inserted' argument
11439           - set_SelectedRTF: Now using the number of characters to calculate
11440             the new location for the selection and cursor (x/y cannot be used
11441             due to potentially already wrapped text)
11443 2006-02-27  Peter Dennis Bartok  <pbartok@novell.com>
11445         * TextControl.cs: Added property and implemented means to allow 
11446           disabling recalculation of a document (can be used to speed up
11447           multiple inserts and is needed to make RTF inserts predictable, see
11448           bug #77659)
11449         * RichTextBox.cs: Using the new NoRecalc property of Document to
11450           keep x/y insert locations predictable. Also makes it faster inserting
11451           large chunks of RTF
11453 2006-02-27  Peter Dennis Bartok  <pbartok@novell.com> 
11455         * Control.cs: Separated special WM_SYSKEYUP keyboard handling. That way
11456           it's easier for a child control to handle the other messages without
11457           having to duplicate the special functionality
11458         * TextBoxBase.cs
11459           - WndProc: Removed calling base handler for WM_KEYDOWN and added 
11460             code to handle processing the key ourselves, in order to get 
11461             access to the result of KeyEventArgs.Handled. We now only call 
11462             ProcessKey if they key hasn't been handled already. Fixes #77526.
11463           - set_Text: If null or empty string is given, just clear the 
11464             document. Fixes part of #77526
11466 2006-02-27  Jackson Harper  <jackson@ximian.com>
11468         * SizeGrip.cs: Paint the background color before painting the grip
11469         so things look right.
11470         * MdiClient.cs: Add the sizegrip when both scrollbars are used.
11472 2006-02-27  Mike Kestner  <mkestner@novell.com>
11474         * ListView.cs:
11475           - Restructure layout and invalidation model to remove a ton of
11476           flicker from the control and speed up performance in general.
11477           - Add manual column resize, flickers like crazy, but I already have
11478           some ideas on how I'll fix that. (#76822)
11479           - Merge the three Icon-based views into a single layout method.
11480           - Move item selection interaction logic from the item since 
11481           interaction with the collections is more appropriate to the view.
11482           - Deselection on non-item clicks.
11483         * ListViewItem.cs:
11484           - Encapsulate most of the layout. Add some internal props to trigger
11485           layout.  Move to a model where Items invalidate themselves instead
11486           of just invalidating the whole control every time something changes.
11487           - Invalidate on Text/Caption changes.
11488           - switch to an offset based layout model to avoid having to absolute
11489           position every element on item moves.
11490           - correct checkbox layout to conform to MS layout.
11491         * ThemeWin32Classic.cs:
11492           - refactor some column header drawing code.
11493           - fix string justification for column headers (#76821)
11494           - make SmallIcon labels top justified for compat with MS impl.
11495         * ThemeClearlooks.cs:
11496           - adjust to new ListViewItem internal checkbox bounds api.
11498 2006-02-27  Jackson Harper  <jackson@ximian.com>
11500         * Control.cs:  Change where implicit controls fall in the zorder.
11501         They are now on top of all children.
11502         - Synced AddImplicit code with Add
11503         - Removed unused enumerator.
11504         * SizeGrip.cs: Remove the TODO as its been TODONE.
11506 2006-02-26  Peter Dennis Bartok  <pbartok@novell.com> 
11508         * TextControl.cs(Insert): Combine the last lines unless the insertion
11509           string ends with \n\n, otherwise we leave one line too many (Fixes
11510           something I noticed with the testapp for #77526; the bug itself was
11511           already fixed in the previous checkin)
11513 2006-02-26  Peter Dennis Bartok  <pbartok@novell.com>
11515         * RichTextBox.cs:
11516           - SelectionColor and SelectionFont methods no longer set absolute
11517             styles. Instead, the keep font or color respectively (This 
11518             resolves a long-standing FIXME in the code)
11519           - When flushing RTF text, the insert code now considers text trailing
11520             behind the insertion point (Fixes the bug where when replacing
11521             the selected text via SelectedRTF the remainder of the line behind 
11522             the selection would stay on the first insertion line)
11523         * TextBoxBase.cs:
11524           - AppendText now updates the selection points after inserting text
11525           - AppendText now ensures that the last tag (sometimes 0-length) of
11526             the document is used for the style information (Fixes part of 
11527             bug #77220)
11528         * TextControl.cs:
11529           - Created new FontDefiniton class to allow describing partial style
11530             changes
11531           - StreamLine() now takes a lines argument, to allow it to decide
11532             whether an encountered zero-length tag is the last in the document
11533             (which must be kept to not loose the font/color contained in it,
11534             for later appends)
11535           - Created Combine() and Split() methods for Marker structs, to 
11536             support marker updates due to reformatted documents (soft line
11537             wraps)
11538           - Implemented Document.CaretTag setter
11539           - Fixed MoveCaret(CtrlEnd) handling, now moves to the last character
11540             of the last line (Not the cause, but also exposed by bug #77220)
11541           - Added LineTag argument to InsertString method, to allow callers
11542             to force a certain tag to be used (required to force use of the
11543             trailing zero-length tag of a document)
11544           - Now updating markers in Combine(), to avoid stale tag markers
11545           - Added some method descriptions to aid maintenance
11546           - Implemented new FormatText concept, allowing additive/subtractive
11547             formatting by only specifying the components that are to be 
11548             changed. This was needed for resolving the RTB.SelectedColor/
11549             RTB.SelectedFont fixmes
11550           - Added Break() support method to allow breaking up linetags (used
11551             for partial formatting)
11552           - Added GenerateTextFormat() method. It is used for partial 
11553             formatting and allows to generate a full font/color from given
11554             attributes and an existing tag.
11556 2006-02-26  Jackson Harper  <jackson@ximian.com>
11558         * XplatUIX11.cs:  Use the correct caption height.
11559         - Translate hittest coordinates to screen coords to match MS.
11560         * XplatUIWin32.cs: When we create MDI windows we need to reset
11561         some of the style flags, so we get a nice blank window, and can
11562         draw all the decorations ourselves.
11563         - Set a clipping rectangle on the non client paint event, the
11564         window manager drawing code needs one.
11565         * Form.cs: The window manager needs to know when the window state
11566         has been updated.
11567         * Hwnd.cs: The window manager stuff now does a proper NCCALC so we
11568         don't need to factor in border and title sizes in these
11569         methods. TODO: Remove the args and fix the call points.
11570         * InternalWindowManager.cs: Handle NCHITTEST and NCCALCAREA
11571         properly.
11572         - Let the driver set the cursors.
11573         - Improve active window handling
11574         - Correct sizes for title bars and buttons.
11575         - Match MS drawing better
11576         * MdiWindowManager.cs: We don't need to handle border style
11577         updates specially anymore.
11578         - Check for scrollbars when windows are done moving
11579         - Handle Active properly.
11580         * MimeIcon.cs: Don't crash when we can't load the GNOME stuff
11581         correctly. I am spewing the exception though, so we don't hide the
11582         bugs.
11583         
11584 2006-02-26  Pedro Martinez Julia  <pedromj@gmail.com>
11586         * DataGridViewRowPostPaintEventArgs.cs,
11587           DataGridViewCellPaintingEventArgs.cs,
11588           DataGridViewRowCollection.cs,
11589           DataGridViewRowPrePaintEventArgs.cs,
11590           DataGridViewCell.cs: Clear a few warnings and implement a few
11591           exceptions that should be thrown.
11593 2006-02-22  Peter Dennis Bartok  <pbartok@novell.com>
11595         * ScrollBar.cs (ctor): Explicitly set a cursor to avoid
11596           'inheriting' our parent's (non-default) cursor. (Part of
11597            the fix for #77479)
11599 2006-02-22  Peter Dennis Bartok  <pbartok@novell.com> 
11601         * XplatUIX11.cs: Fixed cast to make csc happy
11603 2006-02-22  Peter Dennis Bartok  <pbartok@novell.com>
11605         * Control.cs (WndProc): Only handle WM_SETCURSOR messages if
11606           it's for the client area (part of fix for #77479 and needed
11607           for MDI window cursor handling)
11608         * XplatUIX11.cs
11609           - DefWindowProc: Now handles the WM_SETCURSOR messages, setting
11610             the appropriate default cursors and also passing the message
11611             up the parent chain 
11612           - GetMessage: Now generating WM_NCHITTEST and WM_SETCURSOR even
11613             for non-client areas
11615 2006-02-15  Jackson Harper  <jackson@ximian.com>
11617         * XplatUIWin32.cs: Since we fake MDI dont tell Windows that this
11618         is a real MDI window
11620 2006-02-14  Alexander Olk  <alex.olk@googlemail.com>
11622         * X11DesktopColors.cs: Instead of checking the desktop session
11623           string for "KDE" check if it starts with "KDE"
11625 2006-02-10  Jackson Harper  <jackson@ximian.com>
11627         * XplatUIX11.cs: These should be unsigned (fixes crash on 32 bit
11628         systems).
11630 2006-02-10  Alexander Olk  <alex.olk@googlemail.com>
11632         * FileDialog.cs: Added Refresh to RunDialog to fix some drawing
11633           errors
11634         * ColorDialog.cs:
11635           - Got rid of the panel. All controls are now directly added to
11636             the dialog form
11637           - Changed to mono coding style
11639 2006-02-10  Jackson Harper  <jackson@ximian.com>
11641         * InternalWindowManager.cs: We don't need the set visibility to
11642         false hack anymore now that peter has written beautiful shutdown
11643         code.
11645 2006-02-10  Peter Dennis Bartok  <pbartok@novell.com>
11647         * XplatUIX11.cs: Ignore DestroyNotify messages for windows that
11648           where already explicitly destroyed
11650 2006-02-10  Jackson Harper  <jackson@ximian.com>
11652         * MdiClient.cs: Handle the case where windows are too high or to
11653         the left and we need scrollbars.
11655 2006-02-10  Alexander Olk  <alex.olk@googlemail.com>
11657         * MimeIcon.cs: Added some icons
11658         * FileDialog.cs:
11659           - Fixed bug #77477
11660           - Got rid of the panel. All controls are now directly added to
11661             the dialog form
11662           - Changed to mono coding style
11663           - On Linux "My Computer" and "My Network" will now show some
11664             more usefull information. A new class, MasterMount, gathers
11665             this information from /proc/mount. Updated MWFFileView to make
11666             use of this information
11667           - Fixed a bug that caused FileDialog to crash when
11668             ".recently_used" file had a zero size
11669           - FilterIndex does now what it should
11670           - Some Refactoring
11671         * OpenFileDialog.cs, SaveFileDialog.cs: Updated to reflect latest
11672             FileDialog changes
11674 2006-02-09  Jackson Harper  <jackson@ximian.com>
11676         * ComboBox.cs: Don't touch if null.
11678 2006-02-09  Peter Dennis Bartok  <pbartok@novell.com>
11680         * Cursor.cs: 64bit safeness fix
11681         * XplatUIX11.cs: Removed several unneeded and one moronic cast.
11683 2006-02-09  Jackson Harper  <jackson@ximian.com>
11685         * Form.cs: If a form is made into an MDI form update the styles so
11686         all the props can get set correctly.
11687         - Kill the mdi_container when we dont need it anymore.
11688         * InternalWindowManager.cs: Add missing NOT
11690 2006-02-08  Jackson Harper  <jackson@ximian.com>
11692         * InternalWindowManager.cs: Respek clipping when drawing MDi
11693         decorations.
11695 2006-02-08  Jackson Harper  <jackson@ximian.com>
11697         * Hwnd.cs: Add bits to track non client expose events.
11698         * XplatUIX11.cs: Track non client expose events on the hwnd. This
11699         gives us a proper invalid rect and will allow for some nice
11700         optimizations with NC client drawing
11701         - MDI windows are children windows, so move their style handling
11702         into the child window block.
11703         * InternalWindowManager.cs: Remove a state reset that was
11704         getting invoked at the wrong time. Fixes managed windows getting
11705         into a 'stuck' captured state.
11707 2006-02-07  Peter Dennis Bartok  <pbartok@novell.com>
11709         * TextControl.cs (Document.ctor): Now initializing 
11710           selection_anchor. Fixes #77493
11712 2006-02-07  Jackson Harper  <jackson@ximian.com>
11714         * TrackBar.cs: The increment/decrements were backwards.
11716 2006-02-07  Mike Kestner  <mkestner@novell.com>
11718         * Theme*.cs : remove ThemeEngine.Current usage as it just points back
11719         to the instance itself.
11721 2006-02-07  Peter Dennis Bartok  <pbartok@novell.com>
11723         * X11DesktopColors.cs, ThemeGtk.cs: The GObject structure is based
11724           on ulongs and pointers, the size differs between 32bit and 64bit
11725           systems. 
11727 2006-02-07  Mike Kestner  <mkestner@novell.com>
11729         * XplatUIX11.cs : force the WorkingArea away from XGetWindowProperty
11730         for 64 bit platforms to work around a metacity bug. 
11732 2006-02-07  Jackson Harper  <jackson@ximian.com>
11734         * TrackBar.cs: Process the input keys we need, and hookup to
11735         KeyDown instead of using WndProc, so we get key messages.
11737 2006-02-06  Peter Dennis Bartok  <pbartok@novell.com>
11739         * XplatUIX11.cs: Atoms are only 32bit on the wire, no matter what
11740           machine we're on. 
11741         * X11Dnd.cs(SetAllowDrop): Since atoms are always 32bit on the wire
11742           we need to translate the XdndVersion atoms array before sending it
11744 2006-02-06  Peter Dennis Bartok  <pbartok@novell.com> 
11746         * XplatUIX11.cs: 
11747           - The preceeding 64bit fixes had a bug: ChangeProperty expects the
11748             number of bits for the property, not the number of bytes. The
11749             change to provide IntPtr.Size broke 32bit. (64bit was also wrong
11750             but would not crash since it specified 8 bits instead of 4 bits)
11751           - More 64bit fixes: Switched all atoms from int to IntPtr (they are
11752             defined as XID -> long in the C headers)
11753           - Removed 'new IntPtr((int))' and '(IntPtr)' casts from all NetAtoms 
11754             references since those are now IntPtr to begin with
11755           - Switched all Atom.XXX 'int' casts to IntPtr casts
11756           - Fixed XGrabPointer DllImport signature to work for 64bit (cursor arg)
11757           - Fixed XInternAtom signature for 64bit, now returns an IntPtr
11758           - Added XChangeActivePointerGrab DllImport (for X11DnD)
11759         * X11Structs.cs:
11760           - Changed 'int' type for Atoms in XEvent structures to IntPtr
11761           - Changed atom in HoverStruct to be IntPtr
11762         * X11DnD.cs:
11763           - Removed local DllImports, switched code to use those from XplatUIX11
11764           - Removed/fixed casts related to the switch of Atom to be a IntPtr
11766 2006-02-06  Mike Kestner  <mkestner@novell.com>
11768         * XplatUIX11.cs : many more 64 bit pinvoke changes.  I've audited all the 
11769         method signatures in the import region.  There may still be some
11770         lingering struct marshaling issues, as I didn't drill down into those.
11771         Yet.
11773 2006-02-06  Jackson Harper  <jackson@ximian.com>
11775         * ComboBox.cs: Dont manually set the top_item, this is computed
11776         when the scrollbar position is set.
11778 2006-02-06  Mike Kestner  <mkestner@novell.com>
11780         * XplatUIX11.cs : 64 bit changes to XGetWindowProperty usage. Fixes
11781         startup crashes on amd64.  There's other fixes needed.  All pinvoke
11782         usage of Atom needs to be mapped to IntPtr for example.  And there are
11783         likely other int/long issues to be addressed.
11785 2006-02-04  Alexander Olk  <alex.olk@googlemail.com>
11787         * FileDialog.cs: One more...
11789 2006-02-03  Alexander Olk  <alex.olk@googlemail.com>
11791         * FileDialog.cs: Next try
11793 2006-02-03  Alexander Olk  <alex.olk@googlemail.com>
11795         * FileDialog.cs: First part of fix for #77464
11797 2006-02-03  Alexander Olk  <alex.olk@googlemail.com>
11799         * ButtonBase.cs, ContainerControl.cs, Forms.cs,
11800           ThemeWin32Classic.cs: Fix for #77458. Correct handling of
11801           AcceptButton border drawing.
11803 2006-02-03  Peter Dennis Bartok  <pbartok@novell.com> 
11805         * Form.cs: Moved positioning of form after auto scaling is applied,
11806           otherwise it would possibly use wrong form size.
11808 2006-02-03  Peter Dennis Bartok  <pbartok@novell.com>
11810         * Control.cs (RecreateHandle): No need to re-create any child
11811           controls, the child windows will get destroyed automatically by
11812           the windowing system or driver, and re-created when the handle
11813           is being accessed the first time. Fixes #77456
11814         * Form.cs: No longer setting the form to closing if the handle is 
11815           being recreated. This seems like the right thing to do, don't
11816           have a bug or testcase for this, though.
11818 2006-02-02  Peter Dennis Bartok  <pbartok@novell.com>
11820         * FileDialog.cs: Suspend/Resume layouting when changing sizes of
11821           controls to avoid unwanted side effects
11823 2006-02-02  Peter Dennis Bartok  <pbartok@novell.com> 
11825         * Control.cs: 
11826           - ScaleCore needs to scale the bounds, not the ClientSize of the 
11827             control. Fixes #77416.
11828           - DefaultSize is 0,0 for control
11829         * TextBoxBase.cs: 
11830           - DefaultSize is 100, 20
11831           - SetBoundsCore: Now enforcing the height, no matter if the provided
11832             height is more or less than the preferred one, as long as AutoSize
11833             is on
11834         * Form.cs: Apply documented fudge factor. Part of item 3 fix for #77416
11836 2006-02-02  Peter Dennis Bartok  <pbartok@novell.com>
11838         * Control.cs:
11839           - ResumeLayout: Fixed logic when to call PerformLayout, we may not
11840             call unless both performLayout is true *and* we have a pending
11841             layout change
11842           - ResumeLayout: MS does not completely nest Suspend and Resume,
11843             they bottom out at 0, fixed our code to match that.
11844           - UpdateBounds/SetBoundsCore: Moved calling of UpdateDistances() to
11845             SetBoundsCore, we were updating even when we shouldn't. This fixes
11846             swf-anchors mis-anchoring when resizing the app fast and lots.
11847           - UpdateDistances: Now only setting the left and top distance if 
11848             we have a parent and are not suspended, this is based on
11849             a suggestion by Don Edvaldson in bug #77355.
11850           - OnVisibleChanged: Fixed logic when to create the control. We may
11851             not create the control if we have no parent or if it's not visible;
11852             switched to using Visible property instead of is_visible field 
11853             since the property also considers parent states. This fixes a bug
11854             when starting Paint.Net
11856 2006-02-02  Jackson Harper  <jackson@ximian.com>
11858         * Form.cs: If the forms handle hasn't been created yet don't call
11859         into xplatui to make it top most, just set the topmost flag on the
11860         form in CreateParams
11861         * XplatUIX11.cs: Handle WS_EX_TOPMOST.
11863 2006-02-01  Jackson Harper  <jackson@ximian.com>
11865         * ScrollableControl.cs: Refactored the Recalculate method a
11866         little, this wasn't handling all the variants of bottom and right
11867         bars needed to be added and added/removed based on their
11868         counterparts being added/removed (which changes the drawable
11869         size). Also we special case client widths and heights of 0 and
11870         don't add the scrollbar for those.
11872 2006-02-01  Peter Dennis Bartok  <pbartok@novell.com>
11874         * XplatUIX11.cs: 
11875           - Added method to get AbsoluteGeometry(); currently unused, but might
11876             be used in the future, if we try again to figure out toplevel
11877             coordinates with some more crappy window managers
11878           - Added FrameExtents() method to retrieve the WM set decoration size
11879           - Tried to fix up AddConfigureNotify and handling of ReparentNotify 
11880             to deal with at least KDE, FVWM and metacity (Fixes #77092)
11881         * Hwnd.cs: 
11882           - Added whacky_wm tracking var for metacity
11883           - Added logic to have default menu height if the actual menu height
11884             has not yet been calculated (part of fix for #77426)
11885         * Form.cs: Keep track whether client size has been set and re-set 
11886           it if a menu is added/removed afterwards (Fixes #77426)
11888 2006-01-31  Jackson Harper  <jackson@ximian.com>
11890         * Control.cs: When a new Site is set on the component attempt to
11891         pull the AmbientProperties from it.
11893 2006-01-31  Peter Dennis Bartok  <pbartok@novell.com>
11895         * ThemeWin32Classic.cs: Menu background is drawn in ColorMenu, not
11896           in the background of the owning form. Fixes #77332
11898 2006-01-31  Alexander Olk  <alex.olk@googlemail.com>
11900         * MimeIcon.cs: Fix for #77409
11902 2006-01-31  Alexander Olk  <alex.olk@googlemail.com>
11904         * XplatUIX11GTK.cs: Initial import
11906 2006-01-31  Jordi Mas i Hernandez <jordimash@gmail.com>
11908         * FixedSizeTextBox: fixes class signature
11910 2006-01-30  Jackson Harper  <jackson@ximian.com>
11912         * FixedSizeTextBox.cs: New internal class that represents a
11913         textBox that will not be scaled.
11914         * TreeView.cs:
11915         * ComboBox.cs:
11916         * UpDownBase.cs: Use the new FixedSizeTextBox instead of a
11917         standard TextBox.
11918                 
11919 2006-01-30  Peter Dennis Bartok  <pbartok@novell.com> 
11921         * XplatUIX11.cs: Retrieve default screen number instead of
11922           assuming 0. Attempted fix for #77318
11924 2006-01-30  Peter Dennis Bartok  <pbartok@novell.com>
11926         * XplatUIWin32.cs: 
11927           - GetWindowPos: When a window is parented by FosterParent, use 
11928             the desktop instead of FosterParent as the base to get coordinates
11929           - CreateWindow: Don't make FosterParent the parent window for Popups
11930             if we don't want a taskbar entry, Popups automatically don't get one
11931         * Hwnd.cs: Need to call remove to actually remove the key from the
11932           hash table
11934 2006-01-30  Mike Kestner  <mkestner@novell.com>
11936         * MenuAPI.cs: adjust MainMenu item popup location to y=0.
11938 2006-01-30  Jackson Harper  <jackson@ximian.com>
11940         * TreeView.cs:
11941         * TreeNode.cs: Raise events no matter how the treenode is
11942         checked. Patch by Don Edvalson.
11944 2006-01-30  Jackson Harper  <jackson@ximian.com>
11946         * TreeNode.cs: Signature fix.
11948 2006-01-29  Alexander Olk  <alex.olk@googlemail.com>
11950         * ThemeClearlooks.cs: Fixed a crash in ProgressBar drawing.
11952 2006-01-20  Mike Kestner  <mkestner@novell.com>
11954         * Form.cs: Add ActiveTracker property to do Captures and perform mouse
11955         event forwarding when menus are active.
11956         * MenuAPI.cs: kill the GrabControl hack.  Use Form.ActiveTracker.
11957         Most of the patch is pdb's with a little rework.
11959 2006-01-26  Peter Dennis Bartok  <pbartok@novell.com> 
11961         * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs, XplatUIOSX.cs: 
11962           Removed GetMenuDC and ReleaseMenuDC methods; replaced
11963           by PaintEventStart(handle, false) and PaintEventEnd(handle, false)
11964         * Form.cs: Changed WM_NCPAINT handler to use PaintEventStart and End
11965         * InternalWindowManager.cs: Added use of PaintEventStart/End to
11966           handling of WM_NCPAINT message, now passing the PaintEventArgs to
11967           the PaintWindowDecorations method
11968         * MainMenu.cs: Switched logic from GetMenuDC to PaintEventStart
11969         * MdiChildContext.cs: Switched logic from GetMenuDC to PaintEventStart
11970         * MenuAPI.cs: Made tracker window invisible
11971         * XplatUIWin32.cs:
11972           - Removed GetMenuDC and ReleaseMenuDC methods
11973           - Implemented the client=false path for PaintEventStart and
11974             PaintEventEnd
11976 2006-01-26  Peter Dennis Bartok  <pbartok@novell.com>
11978         * XplatUIWin32.cs(SetBorderStyle): Fixed3D needs a border
11979         * XplatUIX11.cs(DeriveWindowStyles): Updated to match fixed Form
11980           styles
11981         * Form.cs: 
11982           - MaximizeBox, MinimizeBox: Recreate the handle when setting
11983             the style
11984           - CreateParams: Reworked the styles to match MS look'n'feel,
11985             removed automatic setting of MinimizeBox, MaximizeBox, etc. via
11986             the WS_OVERLAPPEDWINDOW style. This fixes #76823.
11988 2006-01-26  Peter Dennis Bartok  <pbartok@novell.com> 
11990         * XplatUIX11.cs(GetWindowState): Now throwing an exception when the 
11991           window is not mapped, since otherwise every form that's being 
11992           created is considered minimized, which is wrong.
11993         * Form.cs: Catching the exception and returning our internal value
11994           instead
11996 2006-01-26  Peter Dennis Bartok  <pbartok@novell.com>
11998         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs: Added new driver method
11999           SetWindowMinMax() to have means to tell the driver about the minimum,
12000           maximum and maximized state window sizes. (Part of the fix for #76485)
12001         * Form.cs:
12002           - Implemented tracking of minimum and maximum window size, now calling
12003             new SetWindowMinMax() driver method to tell the driver (Part of the
12004             fix for #76485)
12005           - Finished handling of WM_GETMINMAXINFO method, now setting all values
12006             (Completes fix for #76485)
12007           - Calling new SetWindowMinMax driver method when the handle for a 
12008             form is created, to make sure the driver knows about it even if
12009             the values have been set before the window was created
12010           - Now eating the WM_WINDOWPOSCHANGED message if the form is minimized
12011             to avoid messing up our anchoring calculations (partial fix
12012             for #77355)
12013         * XplatUIStructs.cs: Added MINMAXINFO struct (moved from Win32 driver)
12014         * XplatUIX11.cs:
12015           - Added _NET_WM_STATE_HIDDEN property for detecting minimized state
12016           - Improved GetWindowState() to detect 'Minimized' state on Metacity 
12017             (and presumably other freedesktop.org compliant WMs). Left the
12018             assumption unmapped=minimized, needed for SetVisible to work.
12019           - Now setting the window state when creating windows
12020           - Fixed SetVisible to consider/set the window state when mapping
12021             a Form. We cannot set the state before it's mapped, and we cannot
12022             use Form.WindowState once it's mapped (since it would ask the
12023             driver and get 'normal'. Therefore, we grab the state before
12024             mapping, map, and then set state.
12025           - Implmemented SetWindowMinMax method; Metacity does not seem to
12026             honor the ZoomHints, though.
12027         * XplatUIWin32.cs:
12028           - Removed MINMAXINFO (moved to XplatUIStructs)
12029           - Added SetWindowMinMax stub (on Win32 the only way to set that
12030             information is in response to the WM_GETMINMAXINFO message, which
12031             is handled in Form.cs)
12032           - Added logic to SetVisible to set the proper window state when a 
12033             form is made visible (fixes #75720)
12035 2006-01-26  Jackson Harper  <jackson@ximian.com>
12037         * Control.cs (BeginInvoke): Automagically handle EventHandlers the
12038         same way we handle them with Invoke.
12040 2006-01-25  Peter Dennis Bartok  <pbartok@novell.com> 
12042         * Form.cs:
12043           - Added tracking of window state so CreateParams can return
12044             the appropriate style
12045           - Moved setting of WS_CAPTION style in CreateParams to allow
12046             styles without caption
12047         * DataGridTextBoxColumn.cs: We are now also creating the TextBox 
12048           control if the TextBox property is accessed. Fixes #77345
12049         * Control.cs:
12050           - get_Created: now uses is_disposed and is_created to determine
12051             return value (suggested by Jackson)
12052           - CreateHandle: No longer exits if the handle is being recreated
12053           - RecreateHandle: If the handle is not yet created call the 
12054             appropriate method to create either control or handle. If the
12055             control is already created CreateHandle will simply exit instead
12056             of just creating the handle
12057         * Hwnd.cs: Removed expose_pending tracking, no longer needed since we
12058           now SendMessage WM_DESTROY directly to the control when DestroyWindow
12059           is called.
12060         * XplatUIX11.cs: 
12061           - When DestroyWindow is called, instead of waiting for the 
12062             DestroyNotification from X11, we directly post it to the WndProc
12063             and immediately dispose the hwnd object.
12064             Same applies to DestroyChildWindows, and this obsoletes the
12065             expose_pending tracking. Contrary to Win32 behaviour we destroy our
12066             child windows before our own, to avoid X11 errors.
12067           - Removed the direct sending of WM_PAINT on UpdateWindow
12068         * XplatUIWin32.cs:
12069           - Reworked DoEvents and GetMessage to allow access to internal queue
12070             even when trying non-blocking access to the queue.  Fixes #77335. 
12071             Based on a patch suggestion by Don Edvalson. The new private
12072             GetMessage can now also be used as a backend for a PeekMessage
12073             frontend version.
12074         * XplatUI.cs: Improved debug output for CreateWindow
12076 2006-01-25  Jackson Harper  <jackson@ximian.com>
12078         * Help.cs: Allow param to be null. Patch by Don Edvalson.
12080 2006-01-24  Jackson Harper  <jackson@ximian.com>
12082         * ComboBox.cs: Clamp the max value set for the vertical scrollbar
12083         when we have a MaxDropItems lower then the selected index.
12085 2006-01-24  Jackson Harper  <jackson@ximian.com>
12087         * Control.cs: Don't allow selection of non visible controls, allow
12088         selection of controls without parents.
12090 2006-01-24  Jordi Mas i Hernandez <jordimash@gmail.com>
12092         * ThemeWin32Classic.cs: Fixes Datagrid drawing issues
12093         * DataGridDrawingLogic.cs: Add editing row only when is necessary
12095 2006-01-23  Jackson Harper  <jackson@ximian.com>
12097         * UpDownBase.cs: Make the textbox handle all the selection and
12098         tabbing. This fixes tabing to updown controls.
12100 2006-01-24  Jordi Mas i Hernandez <jordimash@gmail.com>
12102         * TextBoxBase.cs: fixes exception thown the object was null
12104 2006-01-23  Jackson Harper  <jackson@ximian.com>
12106         * ButtonBase.cs: Just use the base CreateParams. They set
12107         visibility and enabled correctly.
12108         * ComboBox.cs:
12109         * TrackBar.cs:
12110         * MonthCalendar.cs: Lets let the base set as much of the
12111         createparams as possible so we don't have duplicate code all over
12112         the place.
12114 2006-01-22  Alexander Olk  <alex.olk@googlemail.com>
12116         * ThemeGtk.cs: Added TrackBar and some experimental code to
12117           get double buffering back
12119 2006-01-21  Jordi Mas i Hernandez <jordimash@gmail.com>
12121         * DataGrid.cs: Allows row number set internally higher than the last
12122         when creating a new row. Restores the editing functionality.
12124 2006-01-20  Mike Kestner  <mkestner@novell.com>
12126         * MimeIcon.cs: delay Image creation until the icons are accessed
12127         instead of creating 190 scaled images on GnomeHandler startup.
12129 2006-01-19  Peter Dennis Bartok  <pbartok@novell.com> 
12131         * TextBoxBase.cs (WndProc): When handling WM_KEYDOWN we need to
12132           first call base before processing the event. Fixes #77279
12134 2006-01-19  Peter Dennis Bartok  <pbartok@novell.com>
12136         * XplatUIWin32.cs, Cursor.cs: Fixed code that wrongly assumed
12137           that the stride for the GDI bitmap would match the stride of
12138           a DIB or a Cursor.
12140 2006-01-19  Alexander Olk  <alex.olk@googlemail.com>
12142         * ThemeGtk.cs: Added ProgressBar, RadioButton, CheckBox
12144 2006-01-19  Jackson Harper  <jackson@ximian.com>
12146         * ComboBox.cs: Hookup the text controls keydown event so we get
12147         those when the text control has the focus.
12149 2006-01-18  Peter Dennis Bartok  <pbartok@novell.com> 
12151         * Label.cs: Now using the base events instead of defining new ones;
12152           this allows us to just call the base properties without having to
12153           duplicate all base property logic 
12155 2006-01-18  Peter Dennis Bartok  <pbartok@novell.com>
12157         * Label.cs: A label by default is not a tabstop (Fixes one of our
12158           failing nunit tests)
12160 2006-01-18  Peter Dennis Bartok  <pbartok@novell.com> 
12162         * XplatUIWin32.cs: Fixed wrong DoEvents logic. Fixes #77282
12163         * XplatUIX11.cs: Removed WM_PAINT check from DoEvents. Fixes #77282
12165 2006-01-18  Peter Dennis Bartok  <pbartok@novell.com>
12167         * Cursor.cs: Reimplemented creating cursor bitmaps without using
12168           the Bitmap(Stream) constructor which is semi-broken on MS GDI+.
12169           This fixes #77218
12170         * XplatUIWin32.cs: 
12171           - Reimplemented creating Bitmaps from DIBs since the Bitmap(Stream) 
12172             constructor creates images that can't be saved. Part of the fix
12173             for #76103
12174           - Added handling of CF_BITMAP as CF_DIB to clipboard code (Fixes #76103)
12175           - SetWindowState: Switched ShowWindow flags (part of an upcoming 
12176             bug fix for handling window state in forms properly)
12178 2006-01-18  Alexander Olk  <alex.olk@googlemail.com>
12180         * ThemeGtk.cs: Simplify ScrollBar drawing
12182 2006-01-18  Jackson Harper  <jackson@ximian.com>
12184         * Splitter.cs: Set the default dock style for the splitter control
12185         in the constructor.
12187 2006-01-18  Alexander Olk  <alex.olk@googlemail.com>
12189         * ThemeGtk.cs: Corrected StateType and ShadowType for
12190           gtk_paint_box
12192 2006-01-18  Alexander Olk  <alex.olk@googlemail.com>
12194         * Control.cs: Make use of Theme.DoubleBufferingSupported
12195         * ThemeGtk.cs:
12196           - Added drawing for flat style buttons
12197           - Added ScrollBar drawing
12199 2006-01-18  Alexander Olk  <alex.olk@googlemail.com>
12201         * ThemeClearlooks.cs: Removed some unneeded code.
12202         * ThemeGtk.cs: First part of ThemeGtk enhancements.
12204 2006-01-17  Peter Dennis Bartok  <pbartok@novell.com>
12206         * LinkLabel.cs: We need to update the hover drawing when
12207           leaving the control as well.
12209 2006-01-18  Jordi Mas i Hernandez <jordimash@gmail.com>
12211         * DataGrid.cs: Clicking on non empty areas in the columns
12212            area was giving an exception
12214 2006-01-17  Jackson Harper  <jackson@ximian.com>
12216         * ThemeWin32Classic.cs:
12217         * ListView.cs: Do not draw/clip the headers when the header style
12218         is None.
12220 2006-01-17  Jordi Mas i Hernandez <jordimash@gmail.com>
12222         * DataGrid.cs: Fixes 77260
12223         
12224 2006-01-17  Jordi Mas i Hernandez <jordimash@gmail.com>
12226         * DataGrid.cs: Clicking on a column on a empty grid was giving
12227           an exception
12229 2006-01-17  Peter Dennis Bartok  <pbartok@novell.com>
12231         * DataGrid.cs (OnKeyDown): Don't use the array if it's empty
12232           or any keypress will crash the grid.
12234 2006-01-17  Mike Kestner  <mkestner@novell.com>
12236         * MainMenu.cs (OnMenuChanged): set Height=0 to cause relayout.
12237         * ThemeWin32Classic.cs (CalcItemSize): clear Height/Width for 
12238         invisible/previously-visible items.
12239         [Fixes #76909]
12241 2006-01-17  Alexander Olk  <alex.olk@googlemail.com>
12243         * ThemeClearlooks.cs:
12244         - Added CL_Draw_Button method; now other theme controls that are 
12245           not derived from button or do not have a button can draw buttons
12246           too
12247         - Updated ComboBox drawing
12248         - Beautified RadioButton drawing
12249         - Corrected drawing of bottom and left tabs
12250         - Beautified DateTimePicker and MonthCalendar
12251         - Added CPDrawButton and CPDrawRadioButton
12253 2006-01-16  Jackson Harper  <jackson@ximian.com>
12255         * ComboBox.cs: Set the initial value of the scrollbar to the
12256         current index. Reduce the numbers of refreshs and IndexOfs called.
12258 2006-01-14  Alexander Olk  <alex.olk@googlemail.com>
12260         * FileDialog.cs: When the file listview is focused hitting the
12261           backspace key moves the fileview to the parent directory
12263 2006-01-13  Peter Dennis Bartok  <pbartok@novell.com>
12265         * Form.cs: 
12266           - Added RecreateHandle call when changing taskbar visibility to 
12267             trigger reparenting in Win32 driver (Fixes #75719)
12268           - If a window has minimize or maximize buttons, it cannot have
12269             a help button
12270         * XplatUIWin32.cs:
12271           - CreateWindow: When no WS_EX_APPWINDOW style is found we parent
12272             the toplevel form with FosterParent (A toolwindow not on the
12273             taskbar) (Fixes #75719)
12274           - Made FosterParent a toolwindow
12276 2006-01-13  Alexander Olk  <alex.olk@googlemail.com>
12278         * FileDialog.cs: Don't crash if InitialDirectory doesn't exist
12280 2006-01-13  Alexander Olk  <alex.olk@googlemail.com>
12282         * ToolTip.cs: If SetToolTip is called from a control and the mouse
12283           is currently over that control, make sure that tooltip_window.Text
12284           gets updated
12286 2006-01-13  Mike Kestner  <mkestner@novell.com>
12288         * MimeIcon.cs: size_t on lp64 fix for gdk_pixbuf_save_to_file extern.
12290 2006-01-13  Jackson Harper  <jackson@ximian.com>
12292         * TreeView.cs: On MS GetNodeAt never actually factors in the X
12293         value passed.  Also redraw the selected node when we recieve
12294         focus, so tabbing between trees works correctly.
12296 2006-01-13  Alexander Olk  <alex.olk@googlemail.com>
12298         * MimeIcon.cs: GnomeHandler: older gnome versions don't have
12299           ~/.gconf/%gconf-tree.xml, so use
12300           .gconf/desktop/gnome/interface/%gconf.xml
12302 2006-01-13  Peter Dennis Bartok  <pbartok@novell.com> 
12304         * TextControl.cs: Draw text in gray if control is disabled
12306 2006-01-13  Peter Dennis Bartok  <pbartok@novell.com> 
12308         * TreeView.cs: Draw the focus rectangle outside the highlight, to
12309           make sure it's always visible. Fixes #76680.
12311 2006-01-13  Peter Dennis Bartok  <pbartok@novell.com>
12313         * TreeView.cs: Implemented Wheel scrolling. Fixes #76531
12315 2006-01-13  Jonathan Chambers  <jonathan.chambers@ansys.com>
12317         * PageSetupDialog.cs: Added.
12318         * PrintDialog.cs: Attributes.
12319         * PrintPreviewControl.cs: Updates.
12320         * PrintPreviewDialog.cs: Updates.
12321         
12322 2006-01-12  Peter Dennis Bartok  <pbartok@novell.com>
12324         * Control.cs: Undid my selection check fix, since it's not needed
12325         * TextBoxBase.cs:
12326           - Now considering the presence of hscroll/vscroll when sizing
12327             vscroll/hscroll respectively. Fixed bug #77077
12328           - Added Left/Up/Down/Right to IsInputKey list to prevent
12329             ContainerControl from stealing them. This fixes what I broke
12330             with my last checkin.
12332 2006-01-12  Peter Dennis Bartok  <pbartok@novell.com> 
12334         * ScrollableControl.cs: Implemented dockpadding. Fixes #77166. And
12335           I finally understand how the property can be set without a setter :-)
12337 2006-01-12  Peter Dennis Bartok  <pbartok@novell.com>
12339         * Application.cs:
12340           - Switched RunLoop to use static Message.Create to create a 
12341             Message object
12342           - Added PreProcessMessage call in runloop for keyboard events; this
12343             is part of the fix for #77219, I overlooked this originally in the
12344             MSDN doc for PreProcessMessage
12345         * Control.cs:
12346           - Removed call to PreProcessMessage from handling of keyboard 
12347             messages; it's supposed to be done in the message pump
12348           - Moved call to ProcessKeyEventArgs inside ProcessKeyMessage as
12349             per MSDN documentation.
12350           - IsInputChar: All chars are input chars by default; removed the 
12351             parent calling chain, MS does not document that
12352           - PreProcessMessage: If IsInputChar is true, we want to return false
12353             to allow dispatching of the message
12354           - When selecting the next control, now also check that we're not
12355             selecting ourselves again and therefore return a false positive.
12356         * TextBoxBase.cs:
12357           - Tried to match return values for IsInputKey and ProcessDialogKey
12358             to what MS returns; moved processing of our special keys outside
12359             ProcessDialogKey since MS does not seem to return true on those.
12360           - Moved code that previously was in ProcessDialogKey into new private
12361             ProcessKey method, which gets called upon receipt of WM_KEYDOWN
12362           - Reworked handling of WM_CHAR to not have to duplicate code from
12363             Control.cs anymore, instead we simply call down to base.
12364            
12365 2006-01-12  Jackson Harper  <jackson@ximian.com>
12367         * ComboBox.cs: We always need to refresh the text area when
12368         EndUpdate is called. Fixes the combobox in the file dialog.
12369         * Control.cs: Don't create the creator_thread until the controls
12370         handle is created.  Also in InvokeRequired we check if the
12371         creator_thread is null. This gives the effect of InvokeRequired
12372         returning true if the controls handle is not created yet, and
12373         matches MS.
12375 2006-01-12  Peter Dennis Bartok  <pbartok@novell.com>
12377         * XplatUI.cs:
12378           - Added StartLoop() driver method. This is used to allow drivers to
12379             prepare for an upcoming GetMessage/TranslateMessage/DispatchMessage
12380             loop for a particular thread
12381           - Added EndLoop() driver method. This is called once the message
12382             pump for the thread is shut down
12383           - Added SupportsTransparency method to allow the driver to indicate
12384             opacity support for windows
12385         * Form.cs:
12386           - Removed TODO attribute, completed AllowTransparency property
12387           - Added documented logic to Opacity
12388         * GroupBox.cs, Label.cs, LinkLabel.cs, PropertyGrid.cs, Control.cs,
12389           ButtonBase.cs, CheckedListBox.cs: Combined Jackson's and Miguel's
12390           versions of CompatibleTextRendering
12391         * X11Structs.cs: Added opacity atom to our atom enumeration
12392         * Hwnd.cs: Added opacity tracking (we need to track since the opacity
12393           of a form might be set before it's reparented by the WM, and we need
12394           the opacity value without calling up to Form)
12395         * XplatUIDriver.cs: Added StartLoop(), EndLoop() and 
12396           SupportsTransparency() driver methods
12397         * Application.cs: Now calling StartLoop and EndLoop driver methods
12398         * XplatUIX11.cs:
12399           - Added opacity atom registration
12400           - Added StartLoop()/EndLoop() methods. They're empty right now but
12401             will need to get implemented when we switch to a per-thread queue
12402           - Implemented SupportsTransparency() method
12403           - Implemented SetWindowTransparency() method
12404           - Added support for setting the opacity value when a window is
12405             reparented (since the opacity needs to be set on the WM frame)
12406         * XplatUIOSX.cs, XplatUIWin32.cs:
12407           - Added SupportsTransparency(), StartLoop() and EndLoop() methods
12409 2006-01-12  Alexander Olk  <alex.olk@googlemail.com>
12411         * ThemeClearlooks.cs: Don't crash if TabControl.Parent is null.
12413 2006-01-12  Alexander Olk  <alex.olk@googlemail.com>
12415         * FileDialog.cs: Added ToolTip for MWFFileView
12416         * MimeIcon.cs: Rewrote GnomeHandler.
12417           - Get currently used gnome icon theme from
12418             ($HOME)/.gconf/%gconf-tree.xml
12419           - Make use of inherited icon themes
12420           - Support SVG icon themes like Tango via librsvg
12422 2006-01-12  Miguel de Icaza  <miguel@novell.com>
12424         Revert's Jackson's revert which broke 2.0 builds.   Fix both
12425         builds. 
12426         
12427         * Application.cs: Move the use_compatible_text_rendering outside
12428         the NET_2_0 define.  If we ever need to use the
12429         use_compatible_text_rendering on the individual controls they will
12430         access the variable from the common shared code paths.
12432 2006-01-12  Peter Dennis Bartok  <pbartok@novell.com>
12434         * XplatUI.cs:
12435           - Added more granular debug options
12436           - Added method to print both window text and id
12437           - Switched debug output to use new Window() debug method
12438           - Added IsEnabled() driver method
12439           - Added EnableWindow() driver method
12440         * Form.cs:
12441           - Removed end_modal; no longer needed, new loop handles termination
12442             via 'closing' variable
12443           - If form is modal, setting DialogResult will now initiate loop
12444             termination via 'closing' variable
12445           - Added support for is_enabled/WS_DISABLED to CreateParams
12446           - Close() now just send the WM_CLOSE message; the WM_CLOSE handler
12447             does all the work
12448           - Removed code that's now in RunLoop from ShowDialog()
12449           - Added various documented sanity checks to ShowDialog()
12450           - Added handling of WM_DESTROY message; we set 'closing' on getting
12451             the message to indicate the message pump to terminate
12452           - Added handling of new internal WM_CLOSE_INTERNAL message - it's
12453             send by the Application.ExitThread method. (We send the message
12454             to destroy the window after all other events have been
12455             processed through the queue, instead of destroying the handle 
12456             directly)
12457           - Moved code from Close() method to WM_CLOSE handler; added logic
12458             to only send close-related events if the form is not displayed
12459             modal
12460         * Splitter.cs (..ctor): Fixed typo in resource name
12461         * Control.cs:
12462           - DrawBackgroundImage: Explicitly selecting the wrap mode for the
12463             brush now
12464           - set_Cursor: Now only setting calling into XplatUI if the handle for
12465             the control is already created; this avoids implict handle creation
12466             or crashes if it's not created
12467           - set_Enabled: Now setting the enabled state via the new driver method
12468             instead of just tracking it
12469           - CreateParams: Added logic to set WS_DISABLED based on enabled state
12470           - CreateControl: Reordered event firing and method calls to more
12471             closely fire events in the order MS does. Now setting the
12472             enabled state in the driver when creating the control.
12473           - SetVisibleCore: Moved when the OnVisibleChanged event is fired to
12474             match MS order
12475         * FolderBrowserDialog.cs, MessageBox.cs, ButtonBase.cs, TrackBar.cs,
12476           MonthCalendar.cs: get_CreateParams: Added setting of WS_DISABLED 
12477         * XplatUIStructs.cs: Added internal WM_CLOSE_INTERNAL mesage id
12478         * Hwnd.cs:
12479           - Added tracking of window enabled state (get_Enabled/set_Enabled)
12480           - Added EnabledHwnd property to easily allow a driver to find the
12481             handle of the first enabled window in the parent chain (this is
12482             used by drivers to pass up input events of disabled windows)
12483         * XplatUIDriver.cs: Added IsEnabled() method
12484         * Application.cs:
12485           - Removed crude and obsolete exiting tracking variable
12486           - Removed internal ModalRun(); replaced by RunLoop()
12487           - Implemented private CloseForms() method to allow closing all 
12488             windows owned by a particular (or all) threads
12489           - Exit() now properly closes all windows without forcing the message
12490             pump to quit
12491           - Removed obsolete InternalExit() method
12492           - Changed Run() methods to use new RunLoop() message pump
12493           - Implemented new RunLoop() method for both modal and non-modal forms
12494         * CommonDialog.cs:
12495           - get_CreateParams: Added setting of WS_DISABLED
12496           - Simplified ShowDialog(); now all the work is done in RunLoop(),
12497             invoked via Form.ShowDialog()
12498         * NativeWindow.cs: We don't remove the window from the collection when
12499           the handle is destroyed; there might still be messages for it in the
12500           queue (mainly the resulting WM_DESTROY); instead it will be removed
12501           when Control calls InvalidateHandle in the WM_DESTROY handler
12502         * XplatUIX11.cs:
12503           - CreateWindow: Added logic to handle the WS_DISABLED window style
12504           - EnableWindow: Implemented based on Hwnd.Enabled
12505           - GetMessage: Reset PostQuitState so the method can be called again
12506           - Implemented support for disabled windows (passing messages to the
12507             first enabled parent) in handling all input messages
12508           - Added optimizations for handling Expose events
12509           - Implemeted new driver method IsEnabled()
12510           - Now always resetting paint pending tracking vars when we start paint
12511           - Re-implemented UpdateWindow via just sending a WM_PAINT message
12512         * XplatUIOSX.cs: Added IsEnabled method stub
12513         * XplatUIWin32.cs: Implemented new IsEnabled() method
12515 2006-01-11  Jackson Harper  <jackson@ximian.com>
12517         * ButtonBase.cs, CheckedListBox.cs, GroupBox.cs, Label.cs,
12518         LinkLabel.cs, PropertyGrid.cs: Unbreak 1.1 build. Consolidate the
12519         variables a little.
12520         * ColorDialog.cs: Clear out the old form before adding the new
12521         panel.  
12523 2006-01-11  Jackson Harper  <jackson@ximian.com>
12525         * X11Dnd.cs: Make sure to add all the text formats when adding
12526         strings to the data object.
12527         * TreeNodeCollection.cs: When adding to a sorted tree we need to
12528         do some redrawing too.  Also change the UpdateNode to an
12529         UpdateBelow so the newly added node gets painted.
12530         
12531 2006-01-11  Miguel de Icaza  <miguel@novell.com>
12533         * ButtonBase.cs, CheckedListBox.cs, GroupBox.cs, Label.cs,
12534         LinkLabel.cs, PropertyGrid.cs: Implement the
12535         UseCompatibleTextRendering property for 2.x
12537         * Application.cs (SetCompatibleTextRenderingDefault): Add. 
12539 2006-01-11  Jackson Harper  <jackson@ximian.com>
12541         * TreeView.cs: Use the property for setting the selected node so
12542         the correct events get raised.
12543         * TreeNode.cs: Update the tree when the fore/back colours of a
12544         node are set.
12546 2006-01-10  Jackson Harper  <jackson@ximian.com>
12548         * TreeView.cs: Allow setting SelectedNode to null.
12550 2006-01-9  Jonathan Chambers  <jonathan.chambers@ansys.com>
12552         * Form.cs: Fix support for Form TransparencyKey and Opacity on Windows.
12554 2006-01-9  Jonathan Chambers  <jonathan.chambers@ansys.com>
12556         * PrintControllerWithStatusDialog.cs: Update page number in dialog.
12558 2006-01-9  Jonathan Chambers  <jonathan.chambers@ansys.com>
12560         * PrintDialog.cs: Added attributes and set default property values.
12562 2006-01-9  Jonathan Chambers  <jonathan.chambers@ansys.com>
12564         * PrintControllerWithStatusDialog.cs: 
12565         Added PrintControllerWithStatusDialog.
12567 2006-01-9  Jonathan Chambers  <jonathan.chambers@ansys.com>
12569         * XplatUI.cs, Form.cs, XplatUIDriver.cs, XplatUIX11.cs, XplatUIOSX.cs, 
12570         XplatUIWin32.cs: Added support for Form TransparencyKey and Opacity on Windows.
12572 2006-01-9  Jonathan Chambers  <jonathan.chambers@ansys.com>
12574         * ComboBox.cs: Fix crash when there is no selected item (due to last commit)
12576 2006-01-09  Jonathan Chambers  <jonathan.chambers@ansys.com>
12578         * ComboBox.cs: Added KeyDown event handler for processing arrow keys
12579         and PgUp/PgDown. Also, scroll to selected item upon dropdown. Bugs 76857 and 76788.
12581 2006-01-08  Alexander Olk  <alex.olk@googlemail.com>
12583         * MimeIcon.cs: Added internal class SVGUtil.
12585 2006-01-08  Alexander Olk  <alex.olk@googlemail.com>
12587         * FileDialog.cs: Don't crash if there are two files with the
12588           same name but different locations.
12590 2006-01-08  John BouAntoun  <jba-mono@optusnet.com.au>
12592         * MonthCalendar.cs: Fixed annoying rendering bug when selecting
12593         dates across multiple month grids. Used to not highlight entire 
12594         month, but does now.
12595         
12596 2006-01-06  Jackson Harper  <jackson@ximian.com>
12598         * MonthCalendar.cs: Removed DoEvents call to prevent a running
12599         message loop. Change timer intervals to numbers that seem more
12600         natural.
12602 2006-01-06  John BouAntoun  <jba-mono@optusnet.com.au>
12604         * DateTimePicker.cs: Modified CalculateDropDownLocation to use the screen
12605           object for location info since screen object is now implemented.
12607 2006-01-05  Jackson Harper  <jackson@ximian.com>
12609         * AsyncMethodData.cs: Check if the call is complete before doing a WaitOne
12610         * AsyncMethodResult.cs: We no longer use a WeakReference for the
12611         AsyncMethodResult, this is because we ALWAYS want the
12612         ManualResetEvent to get set.
12613         * Control.cs: When disposing use an async invoke to call shutdown
12614         code, so that thigns don't block on the finalizer thread.  Also
12615         check if we even have a message loop before trying to send
12616         messages, if we don't then don't bother sending messages.
12617         - No more weak references for async methods
12618         * XplatUIDriver.cs: No more weak references for async methods.
12620 2006-01-04  Alexander Olk  <alex.olk@googlemail.com>
12622         * FontDialog.cs: Fix, don't throw an exception if FontFamily.Families
12623           returns two FontFamily with the same name
12625 2006-01-04  Peter Dennis Bartok  <pbartok@novell.com>
12627         * ThemeWin32Classic.cs, ThemeClearlooks.cs: Dropped stupid scheme of 
12628           drawing disabled text. Instead using the ColorGrayText color
12630 2006-01-04  Jackson Harper  <jackson@ximian.com>
12632         * TreeNode.cs: redraw the node when its image index is changed.
12634 2006-01-04  Peter Dennis Bartok  <pbartok@novell.com>
12636         * RichTextBox.cs: Same fix as last, just for SelectionColor. This
12637           time I checked there are no others like it.
12639 2006-01-04  Jackson Harper  <jackson@ximian.com>
12641         * AsyncMethodResult.cs: Use a ManualResetEvent instead of a mutex,
12642         this gives the behavoir I was looking for.
12643         * Control.cs: Special case Invoking EventHandlers, this matches MS
12644         and fixes part of bug #76326.
12646 2006-01-04  Alexander Olk  <alex.olk@googlemail.com>
12648         * ThemeClearlooks.cs, FileDialog.cs:
12649           - Reflect the latest Theme class changes
12650           - Remove Mono.Unix.Syscall.time in FileDialg and replace it 
12651             with DateTime
12652             
12653 2006-01-04  Alexander Olk  <alex.olk@googlemail.com>
12655         * Theme.cs: Cache UI resource images and resize them if needed
12657 2006-01-03  Peter Dennis Bartok  <pbartok@novell.com>
12659         * RichTextBox.cs: FormatText is 1-based, make it so when SelectionFont
12660           is called. This fixes the crash in Nexxia when setting the font
12661           attributes in the chat. [However, RTF needs a look-over to make sure
12662           that all SelectionXXX methods handle the special case that selection
12663           is empty and therefore the change must be applied to all text starting
12664           at the cursor/selection start]
12666 2006-01-03  Peter Dennis Bartok  <pbartok@novell.com> 
12668         * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs, XplatUIWin32.cs,
12669           XplatUIOSX.cs: Added SendMessage and PostMessage methods
12670         * X11Keyboard.cs: Switched to new way of calling PostMessage
12672 2006-01-03  Peter Dennis Bartok  <pbartok@novell.com>
12674         * Theme.cs: Added theme interface for images to allow the theme to
12675           control what images are used for things like FileDialog, MessageBox
12676           icons, etc.
12677         * MessageBox.cs: Now uses the new Theme icon/image interfaces
12679 2006-01-03  Alexander Olk  <alex.olk@googlemail.com>
12681         * FileDialog.cs:
12682           - Removed some dead code
12683           - Opening a recently used file does work now
12684           - Small UI enhancements
12685           - Refactoring
12687 2006-01-02  Alexander Olk  <alex.olk@googlemail.com>
12689         * FileDialog.cs: Forgot too add __MonoCS__
12691 2006-01-02  Alexander Olk  <alex.olk@googlemail.com>
12693         * FileDialog.cs: We are able to read recently used files now let's
12694           go on and write them.
12696 2006-01-01  Alexander Olk  <alex.olk@googlemail.com>
12698         * FileDialog.cs: Breathe some life into "last open"/"recently used"
12699           button
12700         * MimeIcon.cs: Do a check for the top level media type also
12702 2005-12-31  Alexander Olk  <alex.olk@googlemail.com>
12704         * ThemeClearlooks.cs:
12705           - Added CPDrawStringDisabled
12706           - ButtonBase_DrawText: Workaround for a DrawString bug; cut off
12707             some chars if the text doesn't fit into text_rect
12708           - DrawListViewItem: If View = View.LargeIcon center the image;
12709             rewrote the drawing of ListViewItem.Text if View = 
12710             View.LargeIcon
12712 2005-12-31  Alexander Olk  <alex.olk@googlemail.com>
12714         * MimeIcon.cs: Use default KDE icon theme if there is no
12715           "48x48" directory for the current icon theme, fixes #77114
12716         * Mime.cs: Disable not working and actually not used code. 
12717         * ThemeWin32Classic.cs:
12718           - Replace "new SolidBrush" in GetControlBackBrush and
12719             GetControlForeBrush with ResPool.GetSolidBrush
12720           - Changed DrawListViewItem from private to protected virtual
12721         * FileDialog.cs:
12722           - Added form.MaximizeBox = true
12723           - Don't throw an exception if there is a broken symbolic link
12725 2005-12-23  Jackson Harper  <jackson@ximian.com>
12727         * TabControl.cs: Give the panels focus, keyboard navigation is
12728         fixed so this works correctly now.
12729         - We need these key events also.
12730         * ToolBar.cs: Remove some of the poor mans double buffering.
12731         
12732 2005-12-24  Alexander Olk  <alex.olk@googlemail.com>
12734         * ComboBox.cs: The internal TextBox now returns the focus.
12736 2005-12-23  Jackson Harper  <jackson@ximian.com>
12738         * ThemeWin32Classic.cs:  Draw the text for all tab appearances.
12740 2005-12-23  Peter Dennis Bartok  <pbartok@novell.com>
12742         * Control.cs: Removed debug code
12743         * XplatUIX11.cs: Changed DestroyChildWindows to also consider
12744           implicit children
12746 2005-12-23  Peter Dennis Bartok  <pbartok@novell.com> 
12748         * Control.cs: When creating the control, update the Z-order after
12749           all it's children are created, too. (Fixes nexxia not showing
12750           picturebox bug)
12752 2005-12-23  Peter Dennis Bartok  <pbartok@novell.com>
12754         * Control.cs: Do not update the anchoring distances if layout is
12755           suspended, instead do it once layout is resumed
12757 2005-12-22  Peter Dennis Bartok  <pbartok@novell.com> 
12759         * Control.cs: 
12760           - After many hours of debugging, for both Jackson and
12761             myself, it turns out that it helps to set the parent of a control
12762             if you want to actually see it onscreen. In the spirit of that
12763             discovery, we're now setting the parent of the control and
12764             it's children when the control's handle is created. This fix
12765             will make Lutz Roeder's Reflector run happily. 
12766           - now just creating the handle instead of the whole control when
12767             getting a graphics context for the control.
12769 2005-12-22  Peter Dennis Bartok  <pbartok@novell.com>
12771         * ScrollableControl.cs: When calculating the canvas, don't consider
12772           the scrollbar widths. Instead, predict if horizontal scrollbar
12773           will affect canvas when deciding on vertical display and vice versa.
12775 2005-12-22  Peter Dennis Bartok  <pbartok@novell.com>
12777         * RichTextBox.cs: Set default RTF font for documents that don't
12778           have a font table (Fixes #77076)
12780 2005-12-22  Jackson Harper  <jackson@ximian.com>
12782         * TextBoxBase.cs: It's difficult to do, but you can have an empty
12783         clipboard. This prevents a NullRef in that case.
12784         * XplatUIX11.cs: Use CLIPBOARD not PRIMARY for our
12785         clipboard. PRIMARY is for the currently selected text only. (We
12786         should implement PRIMARY at some point.
12788 2005-12-21  Peter Dennis Bartok  <pbartok@novell.com>
12790         * XplatUIWin32.cs: Fixed the TEXTMETRIC structure, we were calling
12791           a Unicode function with a structure that was defined in Ansi way.
12792           This fixes #76942.
12794 2005-12-21  Jackson Harper  <jackson@ximian.com>
12796         * StatusBar.cs: Statusbar handles its fore/back colours on it's
12797         on. Because thats how it rolls. (and this avoids it using ambient
12798         colours).
12799         * ThemeWin32Classic.cs: Use the proper back color for filling.
12800         * Menu.cs: Use the system menu bar color for drawing menu
12801         bars. Using the window back color will bring ambient colours into
12802         the picture.
12804 2005-12-21  Alexander Olk  <alex.olk@googlemail.com>
12806         * ColorDialog.cs: Fixed a memory leak that caused a SIGSEV. A lot of
12807           Bitmaps were created and not disposed.
12809 2005-12-21  Peter Dennis Bartok  <pbartok@novell.com>
12811         * Control.cs (CreateControl): Don't do anything if the control is
12812           already created, otherwise we'd fire the OnCreated event more than
12813           once
12815 2005-12-21  Peter Dennis Bartok  <pbartok@novell.com> 
12817         * ComboBox.cs (FindStringCaseInsensitive): Don't search for emtpy strings,
12818           will always match. Instead return -1. Fixes #76464.
12820 2005-12-21  Peter Dennis Bartok  <pbartok@novell.com>
12822         * TextControl.cs (RecalculateLine): Only wrap if the wrap point is
12823           neither the beginning nor the end of the line (Fixes bug #76479)
12825 2005-12-21  Peter Dennis Bartok  <pbartok@novell.com> 
12827         * Control.cs:
12828           - ControlNativeWindow.ControlFromHandle(): Now handling situation
12829             where handle is invalid
12830           - FromHandle(): Now using hashtable-based ControlFromHandle() lookup
12831             instead of slower linear search
12832         * NativeWindow.cs: Don't remove the window from the hashtable until
12833           after the driver has destroyed it (since the driver might use
12834           Control.FromHandle to lookup the control object
12835         * Hwnd.cs: Added DestroyPending property to track if a window is 
12836           already destroyed as far as the driver is concerned and only hasn't
12837           yet notified the control
12838         * XplatUIX11.cs:
12839           - Activate(): Check if the window is still valid before using the 
12840             handle
12841           - Implemented DestroyChildWindow() method to mark child windows as
12842             destroyed when a window is destroyed. This prevents situations 
12843             where we might call an X method based on queued events for a
12844             window that already has been destroyed but we haven't yet pulled
12845             the destroy method from the queue.
12846           - Added a call to the new DestroyChildWindow() method to the drivers
12847             DestroyWindow code. Also now marking the destroyed window itself
12848             as pending
12850 2005-12-20  Jackson Harper  <jackson@ximian.com>
12852         * StatusBar.cs:
12853         * StatusBarPanel.cs: Don't calculate panel sizes on draw
12854         anymore. Just do them when needed, also track the rects of panels
12855         so that we can optimize refreshing more in the future.
12857 2005-12-20  Alexander Olk  <alex.olk@googlemail.com>
12859         * ColorDialog.cs: Fixed focus drawing in small color controls
12861 2005-12-19  Jackson Harper  <jackson@ximian.com>
12863         * InternalWindowManager.cs:
12864         * MdiWindowManager.cs: Cleanup some coordinate system changes so
12865         moving windows works properly.
12867 2005-12-19  Peter Dennis Bartok  <pbartok@novell.com> 
12869         * Control.cs: 
12870           - Removed call to InitLayout() from SetBoundsCore(); doc says
12871             it's only called when a control is added to a container
12872           - Split InitLayout logic, moved to separate UpdateDistances() method
12873             since we need to perform those calculations more often than just
12874             when adding the control to a container. (Needed to fix #77022)
12875           - Now calling UpdateDistances() from UpdateBounds() (fixes #77022)
12876           - Reduced the OnBindingContextChanged events count, don't send them
12877             unless the control is created, we still aren't totally matching
12878             MS, but I can't quite figure out some of their rules
12880 2005-12-18  Alexander Olk  <alex.olk@googlemail.com>
12882         * ThemeClearlooks.cs: Corrected distance between ProgressBar
12883           stripes
12885 2005-12-18  Alexander Olk  <alex.olk@googlemail.com>
12887         * ThemeClearlooks.cs:
12888           - Updated ProgressBar drawing
12889           - Corrected drawing of ScrollBars and scroll buttons
12890           - Some temporary fixes for minor pixel artefacts
12892 2005-12-18  Peter Dennis Bartok  <pbartok@novell.com> 
12894         * Control.cs:
12895           - Reworked Controls.Add(), Controls.Remove() and set_Parent() to
12896             cause events to be sent in the same order as MS does.
12897           - Added ChangeParent() method to trigger various OnXXXChanged events
12898             that need to be fired when a parent changes (This is a reworking
12899             of the patch from r54254, with the X11 errors fixed)
12900           - Removed SuspendLayout()/ResumeLayout() calls from Controls.Clear()
12901             since on MS we get OnLayoutChanged events when calling Clear()
12902           - Changed Enabled property to consider parent state as well, if a
12903             parent is not enabled, the control will not be either
12904           - Changed Parent property to simply call Controls.Add() since that
12905             now does all the work required, this way we avoid code duplication
12906           - Threw in a few OnBindingsContextChanged calls to try and match
12907             when MS sends them. We seem to send a few too many, though.
12908           - Added call to CreateControl when adding the control to a parent.
12909             We were never calling CreateControl. Still needs some work, in
12910             some places we treat HandleCreated and ControlCreated as equal, 
12911             which is wrong
12912           - Removed obsolete commented out code from UpdateZOrder()
12914 2005-12-18  Alexander Olk  <alex.olk@googlemail.com>
12916         * ThemeClearlooks.cs: Updated TrackBar drawing.
12918 2005-12-17  Alexander Olk  <alex.olk@googlemail.com>
12920         * FileDialog.cs: Patch for #76901 by Atsushi Enomoto
12922 2005-12-17  Alexander Olk  <alex.olk@googlemail.com>
12924         * FileDialog.cs: Add the Help button and the open readonly
12925           checkbox only if needed
12927 2005-12-16  Jackson Harper  <jackson@ximian.com>
12929         * Control.cs: Make sure we have an active menu before trying to
12930         process commands on it. Prevents menu-less forms from crashing
12931         when Alt is pressed.
12932         * TreeNodeCollection.cs: Some fixes to prevent null refs. Patch by
12933         Dieter Bremes.
12934         * RichTextBox.cs: Expand statement to help out gmcs and fix the
12935         2.0 build.
12937 2005-12-16  Jackson Harper  <jackson@ximian.com>
12939         * InternalWindowManager.cs: Don't translate tool windows screen
12940         coordinates. This fixes windows 'bouncing' around when being moved.
12942 2005-12-15  Peter Dennis Bartok  <pbartok@novell.com> 
12944         * TextBoxBase.cs:
12945           - MaxLength now treats 2^31-1 equal to unlimited length (this is
12946             not quite MS compatible, MS uses that number only for single line
12947             and 2^32-1 for multi-line, but I figure it won't hurt keeping
12948             the limit at 2GB)
12949           - Now enforcing the MaxLength limit when entering characters
12950           - Added argument to internal Paste() method to track if it's called
12951             from programatically or via keyboard, since keyboard driven pastes
12952             need to enforce max-length
12953           - Added logic to Paste to only paste as many chars as MaxLength 
12954             allows
12955         * RichTextBox.cs: Updated to use new obey argument for internal Paste()
12956         * TextControl.cs:
12957           - Added Length property to return number of characters in document
12958           - Added private CharCount property which only tracks actual chars
12959             in the document (no linefeeds) and fires event when CharCount
12960             changes
12961           - Added tracking of character count to all methods that alter it
12962           - Added LengthChanged event to allow applications to subscribe
12963             to any changes to the document
12965 2005-12-15  Peter Dennis Bartok  <pbartok@novell.com> 
12967         * TextBox.cs: 
12968           - Removed local password_char field (moved to TextBoxBase)
12969           - Now setting the document's password var when password is
12970             set
12971         * TextBoxBase.cs:
12972           - Added password_char field (needed here so MultiLine can
12973             access it)
12974           - Added logic to MultiLine property setter to set the document's
12975             variable when password display is allowed
12976           - Removed debug code and made some debug code conditional
12977         * TextControl.cs:
12978           - Added RecalculatePasswordLine() method to handle special password
12979             char only lines
12980           - Added PasswordChar property, also added related tracking vars
12981           - Draw() method now uses local text var for grabbing text to draw,
12982             this var is set to line.text unless we're doing password display,
12983             then it is set to the pre-generated all-password-chars line
12984           - Added calling RecalculatePasswordLine() method for password lines
12986 2005-12-14  Peter Dennis Bartok  <pbartok@novell.com> 
12988         * Hwnd.cs: 
12989           - Added Reparented property to allow tracking of Window Manager
12990             reparenting actions (which affect X/Y calculations of toplevel 
12991             windows)
12992           - Made ToString() print window handles in hex
12993         * XplatUIX11.cs:
12994           - AddConfigureNotify(): Now uses reparented state off Hwnd to
12995             determine if X/Y needs offsetting
12996           - AddConfigureNotify(): Fixed offset calculations
12997           - Now adds ReparentNotify messages into the queue
12998           - Now processes ReparentNotify messages and causes a 
12999             WM_WINDOWPOSCHANGED message to be sent upstream if a window
13000             is reparented (as most likely it's X/Y coordinates are changed
13001             due to that)
13003 2005-12-14  Jackson Harper  <jackson@ximian.com>
13005         * XplatUIX11.cs: Tool windows still need to respek focus.
13007 2005-12-14  Peter Dennis Bartok  <pbartok@novell.com> 
13009         * Control.cs: Undid 54254 (causing XConfigure errors) so we can
13010           have a working release
13012 2005-12-13  Jackson Harper  <jackson@ximian.com>
13014         * Form.cs: Update styles after setting the border style regardless
13015         of whether or not the window is using a window manager.
13017 2005-12-13  Jackson Harper  <jackson@ximian.com>
13019         * Form.cs: We now hook into an internal window manager instead of just an
13020         MDI subsystem, this is so we can have properly behaving tool windows.
13021         * MdiClient.cs: Naming change, MdiChildContext is now WindowManager
13022         * InternalWindowManager.cs: New internal class that acts as a
13023         window manager for tool windows and as a base for mdi windows.
13024         * MdiWindowManager.cs: New class that acts as a window manager for
13025         mdi windows.
13027 2005-12-12  Jackson Harper  <jackson@ximian.com>
13029         * Control.cs: Updates so we match behavoir for for implicit
13030         controls. Fixes explosions in MDI.
13032 2005-12-12  Jackson Harper  <jackson@ximian.com>
13034         * Control.cs: Implement Invalidate (Region).
13036 2005-12-12  Peter Dennis Bartok  <pbartok@novell.com> 
13038         * Control.cs: 
13039           - Changed handling of Controls.Add/Controls.Remove to fire (almost) 
13040             the same events as MS does. MS fires events for each property 
13041             except, for unknown reasons, Cursor, when the control is reparented. 
13042             I can't seem to totally match add/remove since MS also fires some 
13043             VisibleChanged events, which makes no sense. Consolidated the
13044             parenting code into a separate method so it can be called from
13045             both Add and Remove. set_Parent no longer needs any special logic
13046             as it calls the parent's add method which implicitly fires
13047             all events
13048           - Removed some obsolete code and debug output
13049           - Enabled state is inherited from parents, if this is enabled
13051 2005-12-08  Peter Dennis Bartok  <pbartok@novell.com> 
13053         * Form.cs: Removed commented out code
13055 2005-12-08  Peter Dennis Bartok  <pbartok@novell.com>
13057         * Control.cs:
13058           - Added internal version of Invoke, with additional argument 
13059             indicating if we're calling it from a Dispose() handler. That
13060             way we can avoid BeginInvoke throwing an exception if we're
13061             calling for an already destroyed window.
13062           - Added a dispose argument to BeginInvokeInternal, and made the
13063             check if a valid window handle chain exists conditional on
13064             it not being a dispose call
13065           - Removed code in DestroyHandle to destroy our children. Since we
13066             now handle the WM_DESTROY message we will catch all our children
13067             being destroyed.
13068           - Now calling OnHandleDestroyed from our new WM_DESTROY handler
13069         * Form.cs:
13070           - Added a field to track the application context of the form.
13071           - No need to set closing variable as response to WM_CLOSE, instead
13072             we destroy the window. We also call PostQuitMessage if the form
13073             has an application context (which makes it the main app form,
13074             which, when closed terminates the app)
13075         * XplatUI.cs:
13076           - Dropped Exit() method, it's naming was confusing
13077           - Added PostQuitMessage() which causes GetMessage to return false
13078             once the message queue is empty
13079         * XplatUIDriver.cs, XplatUIWin32.cs: Dropped Exit(), added 
13080           PostQuitMessage()
13081         * XplatUIOSX.cs: Switched signature for Exit method since Exit() is
13082           no longer a valid XplatUI method, but left it in since it's used
13083           internally. Added empty PostQuitMessage() method.
13084         * MenuAPI.cs: Replaced call to Exit() with call to
13085           PostQuitMessage, even though this is probably no longer needed.
13086         * Hwnd.cs: Added 'pretty' ToString() to support debugging.
13087         * X11Structs.cs: Added pretty XEvent.ToString() to support debugging.
13088         * Application.cs:
13089           - Replaced call to XplatUI.Exit() with PostQuitMessage()
13090           - Removed old debug code that would call XplatUI for exception
13091             display, enabled standard exception handling (Still not enabled
13092             though, until NativeWindow's ExternalExceptionHandler define
13093             is removed
13094         * NativeWindow.cs:
13095           - Added internal method to allow control to update NativeWindow
13096             after a window has been destroyed
13097           - Added handling of already destroyed windows when calling i
13098             DestroyWindow
13099           - Added removal of handle from list on ReleaseHandle
13100         * XplatUIX11.cs:
13101           - Dropped GetMessageResult var and related code
13102           - Added PostQuitState to field to track if PostQuitMessage has been
13103             called
13104           - Dropped Exit() method
13105           - Added PostQuitMessage() method
13106           - GetMessage now will return false if PostQuitState is set and no
13107             more messages are in the queue.
13108           - Expose handler will no longer generate WM_PAINT messages if we are
13109             in PostQuitState since it's very likely any windows have already
13110             been destroyed, and since Hwnd won't get updated until we have
13111             processed the DestroyNotify we'd be causing X errors.
13112         
13113 2005-12-07  Peter Dennis Bartok  <pbartok@novell.com>
13115         * Control.cs(WndProc): Apparently I'm suffering from brain cloud.
13116           Thanks to Mike for pointing out the err of my ways.
13118 2005-12-07  Peter Dennis Bartok  <pbartok@novell.com>
13120         * Control.cs(PreProcessMessage): Moved menu handling back, but
13121           after all other key handling, to match MS (who handles Menu in
13122           DefWndProc)
13123         * Menu.cs (WndProc): Removed my brainfart
13125 2005-12-07  Peter Dennis Bartok  <pbartok@novell.com>
13127         * Control.cs(PreProcessMessage): Removed special menu handling 
13128         * Menu.cs (WndProc): Added handling of WM_SYSKEYUP for menu purposes.
13130 2005-12-07  Mike Kestner  <mkestner@novell.com>
13132         * Control.cs : special case SYSKEYUP so that we can adjust keynav
13133         state according in tracker.
13134         * Menu.cs : promote tracker field to base class and provide a tracker
13135         lookup capability.  Add/Remove shortcuts dynamically if the top menu
13136         has a tracker. Unparent items that are removed from the collection.
13137         * MenuAPI.cs : implement mnemonic, shortcut, and arrow-based keynav.
13138         * Theme*.cs: add always_show_hotkeys field to support configurability
13139         of mnemonic display.  win32 doesn't show mnemonics until Alt is
13140         pressed.
13142 2005-12-07  Jackson Harper  <jackson@ximian.com>
13144         * MdiChildContext.cs: Use Control.ResetCursor.
13145         * Control.cs: ResetCursor needs to set the property so that the
13146         correct XplatUI call gets made.
13148 2005-12-07  Peter Dennis Bartok  <pbartok@novell.com>
13150         * Control.cs: More fixes to make our key events match MS. We
13151           were not setting the modifier state on KeyData, and we were
13152           not generating any events when Alt was pressed with a key
13153           since handling of WM_SYSxxx was missing for the OnKey methods.
13155 2005-12-07  Jackson Harper  <jackson@ximian.com>
13157         * MdiChildContext.cs: reenable the sizing code.
13158         - When the mouse leaves a window reset its cursor.
13160 2005-12-07  Alexander Olk  <alex.olk@googlemail.com>
13162         * ThemeClearlooks.cs: Reflect latest Hwnd changes
13164 2005-12-07  Peter Dennis Bartok  <pbartok@novell.com>
13166         * Hwnd.cs: Now using the theme 3d bordersize to calculate
13167           widths of Fixed3D borders
13169 2005-12-07  Jackson Harper  <jackson@ximian.com>
13171         * MdiClient.cs: Fix warnings. Earn Mike's love.
13173 2005-12-07  Alexander Olk  <alex.olk@googlemail.com>
13175         * ThemeClearlooks.cs:
13176           - Adjusted mouse over button color
13177           - Added first parts of CheckBox drawing
13178           - Added correct color for selected text background
13179           - Fixed ComboBox drawing
13180           - Added CPDrawBorder3D and CPDrawBorder
13182 2005-12-06  Peter Dennis Bartok  <pbartok@novell.com>
13184         * XplatUIX11.cs: Added call to XBell for AudibleAlert
13186 2005-12-06  Peter Dennis Bartok  <pbartok@novell.com> 
13188         * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs, XplatUIWin32.cs,
13189           XplatUIOSX.cs: Added AudibleAlert() method to have a means to
13190           alert users via sound. We could add an enum arg with different
13191           types of alerts in the future
13193 2005-12-06  Peter Dennis Bartok  <pbartok@novell.com>
13195         * Control.cs: Fix behaviour problems pointed out by Mike
13197 2005-12-05  Mike Kestner  <mkestner@novell.com>
13199         * StatusBarPanel.cs: add Invalidate method and hook it into all the
13200         prop setters.  Calls parent.Refresh for now, but could be maybe be
13201         optimized with an internal method on StatusBar at some point.
13202         [Fixes #76513]
13204 2005-12-05  Peter Dennis Bartok  <pbartok@novell.com> 
13206         * RichTextBox.cs: Implemented get_SelectionColor
13208 2005-12-05  Alexander Olk  <alex.olk@googlemail.com>
13210         * ThemeClearlooks.cs:
13211           - Removed dead code
13212           - Draw black button border only if button is Form.AcceptButton
13213           - Draw correct button color for pressed RadioButton if the mouse 
13214             has entered the button
13215           - Updated ProgressBar drawing!
13216           - Updated CPDrawSizeGrip drawing
13217           - Updated StatusBarPanel drawing
13219 2005-12-05  Mike Kestner  <mkestner@novell.com>
13221         * Control.cs (PreProcessMessage): add Keys.Alt based on LParam value.
13222         * X11Keyboard.cs (SendKeyboardInput): formal lParam for alt mod.
13224 2005-12-04  Alexander Olk  <alex.olk@googlemail.com>
13226         * ThemeClearlooks.cs: Initial check-in, activate with
13227           export MONO_THEME=clearlooks
13228         * ThemeEngine.cs: Added ThemeClearlooks
13230 2005-12-03  Mike Kestner  <mkestner@novell.com>
13232         * MenuAPI.cs: deactivate menus prior to calling item.PerformClick.
13233         [Fixes #76897]
13235 2005-12-02  Jackson Harper  <jackson@ximian.com>
13237         * Form.cs: If the child form has no menu the default main menu is
13238         used as the active menu.
13240 2005-12-02  Peter Dennis Bartok  <pbartok@novell.com> 
13242         * ListBox.cs: Check if any items exist before trying to resolve 
13243           coordinates into items
13245 2005-12-02  Peter Dennis Bartok  <pbartok@novell.com>
13247         * ThemeWin32Classic.cs: Hatchbrush on Win32 seems to always use white
13248           as the second color for the background hatch
13250 2005-12-02  Peter Dennis Bartok  <pbartok@novell.com>
13252         * TextBoxBase.cs: Now uses Jackson's new and improved ImplicitScrollbar
13253         * RichTextBox.cs: FormatText position arguments are 1-based, now making
13254           sure that what we pass to FormatText is always 1-based. Fixes #76885
13256 2005-11-29  Miguel de Icaza  <miguel@novell.com>
13258         * NumericUpDown.cs (EndInit): When we are done initializing,
13259         reflect any updates on the UI.
13261 2005-12-02  Jackson Harper  <jackson@ximian.com>
13263         * ImplicitHScrollBar.cs:
13264         * ImplicitVScrollBar.cs: New scrollbars that don't take focus from
13265         their container controls.
13266         * TreeView.cs: Use the new implicit scrollbars.
13268 2005-12-02  Jackson Harper  <jackson@ximian.com>
13270         * TreeView.cs: Make top_node internal so the TreeNodeCollections
13271         can play with it.
13272         * TreeNodeCollection.cs: If we remove the topnode we need to
13273         update topnode to the next node in line.
13274         - When clearing nodes go through the same process as removing
13275         them, so they get depareneted and checked if they are top node.
13277 2005-12-01  Jackson Harper  <jackson@ximian.com>
13279         * TreeView.cs: When imagelists are used the image area is
13280         selectable as well as the text.
13281         - If there are no selected nodes select the first one.
13282         * TreeNodeCollection.cs: Getting the TreeView is mildly expensive,
13283         so don't do it more then we need to.
13285 2005-12-01  Jackson Harper  <jackson@ximian.com>
13287         * ThemeWin32Classic.cs: Reimplement the scroll arrow drawing so
13288         that arrows can be scaled.
13290 2005-12-01  Jackson Harper  <jackson@ximian.com>
13292         * TreeNode.cs : Fixed bugs that caused FullPathTest + Traverse to
13293         fail. Patch by Dieter Bremes
13295 2005-11-30  Jackson Harper  <jackson@ximian.com>
13297         * Form.cs: Property is 2.0 only
13298         * PrintDialog.cs: Signature fix.
13300 2005-11-30  Peter Dennis Bartok  <pbartok@novell.com>
13302         * TextControl.cs: 
13303           - No longer artificially moves text 2 pixels down (now that we have
13304             borders this is no longer needed)
13305           - Added calcs for left, hanging and right indent
13307 2005-11-23  Mike Kestner  <mkestner@novell.com>
13309         * Menu.cs: mark MenuChanged internal, since it's not exposed by MS.
13311 2005-11-30  Jackson Harper  <jackson@ximian.com>
13313         * MdiChildContext.cs: Set the cloned menus forms, as these don't
13314         get cloned as part of CloneMenu ().
13315         * Menu.cs: Make sure the parent of the items get set correctly
13316         when they are added.  And the owners are notified of the changes.
13317         * Form.cs: Create an ActiveMenu property, so that when MDI is used
13318         we can change the menu being displayed/handled by the form without
13319         changing the menu assosciated with the form.
13320         - Don't let Mdi children draw/handle menus.
13321         
13322 2005-11-30  Jackson Harper  <jackson@ximian.com>
13324         * Menu.cs: Switch the MenuChanged method to OnMenuChanged and add
13325         a MenuChanged event. Just to make the API a little more
13326         consistent.
13327         * MainMenu.cs:
13328         * MenuItem.cs: Use the new OnMenuChanged
13329         * MdiChildContext.cs: Handle menu merging.
13330         * Form.cs: Implement MergedMenu.
13331         
13332 2005-11-30  Jackson Harper  <jackson@ximian.com>
13334         * Menu.cs: We were misusing Add. Add goes behind the specified
13335         index according to the docs, and does not replace the specified
13336         index. So I added an Insert method.
13338 2005-11-30  Peter Dennis Bartok  <pbartok@novell.com>
13340         * TextBoxBase.cs:  Implemented Ctrl-Ins (Copy), Shift-Ins (Paste) and
13341           Shift-Del (Cut), apparently Emacs uses these old Win 2.x keys. This
13342           is for Jackson
13343         * RichTextBox.cs: Added calls to base for DnD events
13345 2005-11-28  Peter Dennis Bartok  <pbartok@novell.com>
13347         * TextControl.cs:
13348           - Fixed drag-selection related crash; style fixes
13349           - Implemented undo class
13350             o Implemented method to capture document state for specified
13351               range in document tree
13352             o Implemented method to restore captured document state
13353             o Implemented cursor tracking
13354             o Implemented basic undo stack
13355           - Added undo cursor tracking to methods altering cursor location
13356           - Added undo tracking to selection deletion (still missing
13357             other text-altering hookups)
13358         * RichTextBox.cs:
13359           - Added SelectionLength property
13360           - Implemented CanPaste()
13361           - Implemented Paste()
13362           - Added missing protected methods
13363           - Fixed RTF->Document conversion; now uses font index 0 and color 
13364             index 0 as the default font for the parsed text
13365           - Fixed RTF<->Document font size translation
13366           - Fixed RTF generation, now properly handles cross-tag boundaries
13367             for single line selection
13368           - No longer always appends blank line to generated RTF
13369           - Removed TODOs
13370           - Added missing attributes
13371           - Hooked up undo-related methods
13372         * TextBoxBase.cs:
13373           - Implemented Copy()
13374           - Implemented Paste()
13375           - Implemented Cut()
13376           - Fixed caret mis-behaviour on backspace across line-boundaries
13378 2005-11-29  Jackson Harper  <jackson@ximian.com>
13380         * MdiClient.cs: Add a method for activating mdi children. Very
13381         basic right now. I imagine someday it might need more girth.
13382         * MenuItem.cs: Implement MDI lists. When mdilist is true the mdi
13383         children windows names are added to the menu item.
13384         * ThemeWin32Classic.cs: Draw the arrow if the item is an
13385         mdilist. This happens regardless of whether or not there are any
13386         mdi windows to see in the list, and according to my tests happens
13387         before the items are even added. Also happens if there isn't even
13388         an mdi client to get windows from.
13390 2005-11-29  Alexander Olk  <alex.olk@googlemail.com>
13392         * ThemeWin32Classic.cs: Make DrawFlatStyleRadioButton protected
13393         * ThemeNice.cs: Fix drawing of flatstyle radiobuttons
13395 2005-11-29  Jordi Mas i Hernandez <jordimash@gmail.com>
13397         * DataGridTableStyle.cs:
13398           - Create always the styles for the missing columns even if they are
13399             provided by the user (not default table style)
13400         * DataGrid.cs:
13401           - Fixes bug 76770
13402           - Fixes SetDataBinding (always re-attach source)
13403           - Fixes SetNewDataSource (only clear styles if they are not for 
13404             this source)
13405          -  Expands OnTableStylesCollectionChanged to handle style refresh 
13406             and remove properly
13408 2005-11-29  Jackson Harper  <jackson@ximian.com>
13410         * FileDialog.cs: Implement missing bits, remove some dead
13411         code.
13412         * FontDialog.cs: Implement missing Apply stuff, and ToString. Move
13413         creation of the panel so that the options set on the dialog are
13414         seen when the panel is created.
13415         * TreeView.cs: raise a click when items are clicked.
13416         
13417 2005-11-29  Jackson Harper  <jackson@ximian.com>
13419         * MdiClient.cs: Pass some signature methods through to base.
13421 2005-11-28  Jackson Harper  <jackson@ximian.com>
13423         * ListView.cs: Raise the click event when items are clicked.
13425 2005-11-28  Jackson Harper  <jackson@ximian.com>
13427         * MdiClient.cs: Make this algorithm even more beautiful.  And fix
13428         a nullref.
13430 2005-11-27  Alexander Olk  <alex.olk@googlemail.com>
13432         * ThemeNice.cs: - Removed 1 pixel bitmaps
13433           - Use SmoothingMode.AntiAlias where it makes sense
13434             (ScrollButton arrow for example)
13435           - Enhanced Button focus drawing
13436           - Fixed ComboBox drawing (no artefacts anymore, focus
13437             rectangle is back again, reduced size of ComboButton, etc.)
13438           - Fixed RadioButton focus drawing for Appearence.Button
13439           - Slight ScrollButton redesign
13440           - Some LinearGradientBrush size fixes
13441           - GroupBoxes have now rounded edges
13442           - Fixed StatusBar drawing
13444 2005-11-25  Alexander Olk  <alex.olk@googlemail.com>
13446         * ThemeNice.cs: - Remove dead code
13447           - use correct background colors for menus, etc.
13448           - Fake pixel drawing with 1 pixel bitmaps
13450 2005-11-24  Jackson Harper  <jackson@ximian.com>
13452         * MdiClient.cs: Size the scrollbars when resizing the window.
13453         - Resize the maximized windows when the client is resized
13454         * Form.cs: Make the child context available
13455         
13456 2005-11-23  Jackson Harper  <jackson@ximian.com>
13458         * MdiChildContext.cs: Don't size windows if they are maximized.
13460 2005-11-23  Mike Kestner  <mkestner@novell.com>
13462         * ContextMenu.cs: use MenuTracker.
13463         * Control.cs: remove menu handle usage.
13464         * Form.cs: remove menu handle usage.
13465         * Hwnd.cs: remove menu handle usage.
13466         * MainMenu.cs: Draw method moved here from MenuAPI.DrawMenuBar. Proxy
13467         motion and clicks to the new Tracker handlers.
13468         * Menu.cs: add sizing accessors, SelectedItem prop, kill CreateItems
13469         and handle usage.
13470         * MenuAPI.cs: refactored to combine popup and menubar event handling.
13471         Killed the MENU and MENUITEM data types and associated collections
13472         since we now keep the info on Menu and MenuItem. Expanded TRACKER into
13473         MenuTracker class that exposes the leftovers from the old MenuAPI
13474         static methods. Restructured Capture handling so that only one grab is
13475         done for the entire menu hierarchy instead of handing off grabs to
13476         submenus. Tracker now has an invisible control to Capture when active.
13477         * MenuItem.cs: add sizing accessors, kill Create
13478         and handle usage.
13479         * Theme.cs: remove menu handle and MENU(ITEM) usage.
13480         * ThemeWin32Classic.cs: use Menu/MenuItem sizing props instead of
13481         MENU(ITEM). remove menu handle usage, use Menu directly.
13482         * XplatUIDriver.cs: remove menu handle usage.
13483         * XplatUIOSX.cs: remove menu handle usage.
13484         * XplatUIWin32.cs: remove menu handle usage.
13485         * XplatUIX11.cs: remove menu handle usage.
13487 2005-11-22  Jackson Harper  <jackson@ximian.com>
13489         * Hwnd.cs: Don't compute the menu size for
13490         DefaultClientRectangle.
13491         - Reenable menu sizes being computed for GetClienRectangle.
13492         * Form.cs: Remove comment of trechery
13493         
13494 2005-11-22  Jackson Harper  <jackson@ximian.com>
13496         * Hwnd.cs: The adjustments for the menu bar are made when it is
13497         attached to the form.
13499 2005-11-19  Jackson Harper  <jackson@ximian.com>
13501         * XplatUIX11.cs: Create an HGRN of the invalid area for WM_NCPAINT
13502         (just like on windows).
13504 2005-11-19  Jackson Harper  <jackson@ximian.com>
13506         * MdiChildContext.cs: Handle all the buttons ourselves. We can't
13507         use real buttons anymore because they are in non client area. The
13508         one TODO here is that I need to somehow invalidate a section of
13509         the non client area.
13511 2005-11-18  Jackson Harper  <jackson@ximian.com>
13513         * Control.cs: Put the enum check back in now that MDI doesnt have
13514         to use this to set border styles.
13515         * Form.cs: Only set mdi child windows borders if the handle has
13516         been created.
13517         * MdiChildContext.cs: Don't set the InternalBorderStyle, just pass
13518         this directly on to the driver.
13519         - Get the move start position before adjusting for the titlebar
13520         height, this fixes the windows "skipping" when they are first
13521         moved.
13523 2005-11-18  Jackson Harper  <jackson@ximian.com>
13525         * XplatUIX11.cs: Just compute the mdi borders separately as they
13526         don't totally match up with normal form borders.
13528 2005-11-18  Jackson Harper  <jackson@ximian.com>
13530         * Control.cs: Set WS_ styles for borders, so that the driver does
13531         not have to retrieve the control instance to figure out what kind
13532         of borders it should have.
13533         * Form.cs: Set the WS_EX_MDICHILD flag on mdi children, so the
13534         driver can know its an mdi child easily.
13535         * XplatUIX11.cs: Get the border styles and whether the window is
13536         MDI from the Styles and ExStyles params instead of having to get a
13537         control. This prevents a chicken and egg problem.       
13539 2005-11-18  Jackson Harper  <jackson@ximian.com>
13541         * MdiClient.cs: Fix typo so scrollbars show up correctly.
13543 2005-11-18  Jackson Harper  <jackson@ximian.com>
13545         * MdiClient.cs: Calculate when to add and remove scrollbars
13546         correctly.
13547         * MdiChildContext.cs: Adjust the y position to take the titlebar
13548         into account.
13549         - No height for FormBorderStyle.None
13551 2005-11-18  Jackson Harper  <jackson@ximian.com>
13553         * Control.cs: Allow non enum values to be used for
13554         InternalBorderStyle.  MDI does this to set a special border style.
13555         - New utility methods for converting points to/from client coords
13556         - Add the newly created control to the Controls collection before
13557         updating its style. This way UpdateStyle can walk the control
13558         heirarchy to find the control if needed.
13559         so I don't need to create a new Point object all the time.
13560         * Form.cs: Let MDI windows handle their border styles.
13561         - Set styles on MDI windows so the correct title style is derived.
13562         * MdiChildContext.cs: Move all the painting and window handling
13563         into the non client area.
13564         - Use correct sizing and put correct buttons on frames based on
13565         the FormBorderStyle.
13566         - Notify the mdi client about scrolling
13567         - Need to handle the buttons ourselves now, because they are all
13568         in non client areas and we can't add controls there.
13569         * MdiClient.cs: Halfway to scrolling, this implementation is
13570         somewhat broken though, we need to check to make sure other
13571         windows aren't causing scrolling before removing the bars. Also
13572         the bars need to be drawn on top, maybe I can switch implicit
13573         controls to be on top.
13574         * Hwnd.cs: caption_height and tool_caption_height are now
13575         properties of an hwnd, this way they can be set by the driver
13576         based on the type of window they are.  In X11 the window manager
13577         handles the decorations so caption_height is zero unless its an
13578         MDI window.
13579         - Add 3 pixel borders for MDI windows (0xFFFF).
13580         - Get rid of some code duplication, have DefaultClientRectanle
13581         just call GetClientRectangle.
13582         * XplatUIX11.cs: Pass caption_height and tool_caption_height to
13583         Hwnd now.
13584         - Set border styles differently for mdi windows.
13585         * XplatUIOSX.cs: Pass caption_height and tool_caption_height to
13586         Hwnd now.
13587         
13588 2005-11-15  Mike Kestner  <mkestner@novell.com>
13590         * Menu.cs: when adding an item to the collection, if item is already 
13591         parented, remove it from the parent.
13593 2005-11-13  Alexander Olk  <alex.olk@googlemail.com>
13595         * X11DesktopColors.cs: Added KDE support
13597 2005-11-11  Peter Dennis Bartok  <pbartok@novell.com>
13599         * XplatUIWin32.cs: 
13600           - Clipboard methods now can translate Rtf format
13601           - No longer removes clipboard contents whenever a new format is added
13602             to allow placing multiple formats on the clipboard
13603         * Clipboard.cs: Clipboard now supports getting a IDataObject and
13604           will place all formats contained in it onto the clipboard. Also
13605           now cleans the clipboard before placing a new object onto it
13606         * RichTextBox.cs:
13607           - Implemented set_Rtf
13608           - Implemented set_SelectedRtf
13609           - Created InsertRTFFromStream() method to allow single code base
13610             for all properties and methods that insert RTF into document
13611           - Removed debug output
13612         * TextControl.cs:
13613           - Fixed Delete(int) to fix up line numbers
13614           - Fixed ReplaceSelection to combine start and end line
13615           - Fixed serious DeleteChars bug that would leave the document tree
13616             broken
13617           - Improved DumpTree with several logic checks to detect broken
13618             document trees
13619           - Removed debug lines
13620           - Fixed Caret.WordForward/WordBack moving code, now always also 
13621             updates caret.tag (fixes crash when word-selecting across tag
13622             boundaries via keyboard)
13623           - Added Insert() method for inserting multiline text into documents
13624           - Fixed DeleteChars() calculation errors that would cause a broken
13625             tag chain with multiple tag lines
13626           - DeleteChars() no longer crashes on multi-tag lines if not all tags
13627           - Split() no longer moves caret if split is at caret location
13628           - ReplaceSelection() now updates the cursor and re-displays it
13629           - ReplaceSelection() now uses new Insert() method to avoid code
13630             duplication
13631           - FormatText() can now handle formatting partial lines
13632         * TextBoxBase.cs:
13633           - Append now uses new TextControl.Insert() method (this avoids 
13634             duplicate code)
13635           - Implemented Ctrl-X (Cut) (
13636           - Implemented Ctrl-C (Copy)
13637           - Implemented Ctrl-V (Paste) (Still some bugs related to screen 
13638             regeneration when pasting text; roundtripping Copy&Paste within
13639             edit control still fails due to some calculation bugs in GenerateRTF)
13640           - The Delete key will now remove the current selection if it is visible
13641         * TextBox.cs: Removed debug lines
13642         * XplatUI.cs: Trigger initialization of DataFormats (which requires the
13643           driver to be initialized and can't therefore be done via a static ctor)
13645 2005-11-10  Peter Dennis Bartok  <pbartok@novell.com>
13647         * TextControl.cs: Added backend code for finding char arrays and strings
13648         * TextBoxBase.cs:
13649           - Added mouse wheel scroll support
13650           - Added support for VScroll and HScroll events
13651         * RichTextBox.cs:
13652           - Implemented all seven Find() variants
13653           - Implemented GetCharFromPosition()
13654           - Implemented GetCharIndexFromPosition()
13655           - Implemented GetLineFromIndex()
13656           - Implemented GetPositionFromCharIndex();
13657           - Implemented SaveFile for PlainText and UnicodeText
13658           - Fixed set_Font, now setting a new font applies that font to
13659             the whole document
13660           - Implemented generic Document to RTF converter
13661           - Implemented SaveFile for RichText format (still missing unicode
13662             conversion for non-ansi chars)
13663           - Implemented get_Rtf
13664           - Implemented get_SelectedRtf
13666 2005-11-09  Peter Dennis Bartok  <pbartok@novell.com>
13668         * Control.cs (WndProc): Call HandleClick after having sent OnMouseUp
13669           to allow any captures to be released before triggering OnClick. This
13670           way a click handler may capture the mouse without interference.
13671         * XplatUIX11.cs: Always send mouse messages to grab window if one exists.
13672           This way we send them even though X may not allow a grab (if the window
13673           isn't visible, for example)
13675 2005-11-08  Pedro Martinez Julia <pedromj@gmail.com>
13677         * DataGridViewRowEventArgs.cs: DataGridView implementation
13678         * DataGridViewElement.cs: DataGridView implementation
13679         * DataGridViewComboBoxCell.cs: DataGridView implementation
13680         * DataGridViewDataErrorContexts.cs: DataGridView implementation
13681         * DataGridViewCellErrorTextNeededEventArgs.cs: DataGridView implementation
13682         * DataGridViewColumnHeadersHeightSizeMode.cs: DataGridView implementation
13683         * ImageLayout.cs: DataGridView implementation
13684         * DataGridViewComboBoxColumn.cs: DataGridView implementation
13685         * DataGridViewCellMouseEventHandler.cs: DataGridView implementation
13686         * DataGridViewSelectionMode.cs: DataGridView implementation
13687         * IDataGridViewEditingControl.cs: DataGridView implementation
13688         * DataGridViewSortCompareEventHandler.cs: DataGridView implementation
13689         * DataGridViewCellStyleContentChangedEventHandler.cs: DataGridView implementation
13690         * DataGridViewAutoSizeModeEventHandler.cs: DataGridView implementation
13691         * DataGridViewColumnStateChangedEventHandler.cs: DataGridView implementation
13692         * DataGridViewColumnSortMode.cs: DataGridView implementation
13693         * DataGridView.cs: DataGridView implementation
13694         * DataGridViewRowStateChangedEventHandler.cs: DataGridView implementation
13695         * DataGridViewRowPostPaintEventArgs.cs: DataGridView implementation
13696         * DataGridViewDataErrorEventArgs.cs: DataGridView implementation
13697         * Padding.cs: DataGridView implementation
13698         * DataGridViewCellParsingEventArgs.cs: DataGridView implementation
13699         * DataGridViewCellStateChangedEventHandler.cs: DataGridView implementation
13700         * DataGridViewRowEventHandler.cs: DataGridView implementation
13701         * DataGridViewCellPaintingEventHandler.cs: DataGridView implementation
13702         * DataGridViewCellFormattingEventHandler.cs: DataGridView implementation
13703         * DataGridViewButtonCell.cs: DataGridView implementation
13704         * DataGridViewCellStyleContentChangedEventArgs.cs: DataGridView implementation
13705         * DataGridViewEditMode.cs: DataGridView implementation
13706         * DataGridViewCellValueEventArgs.cs: DataGridView implementation
13707         * DataGridViewRowCancelEventArgs.cs: DataGridView implementation
13708         * DataGridViewRowHeadersWidthSizeMode.cs: DataGridView implementation
13709         * DataGridViewCheckBoxColumn.cs: DataGridView implementation
13710         * DataGridViewCellToolTipTextNeededEventHandler.cs: DataGridView implementation
13711         * DataGridViewAutoSizeColumnsMode.cs: DataGridView implementation
13712         * DataGridViewCellEventHandler.cs: DataGridView implementation
13713         * DataGridViewEditingControlShowingEventHandler.cs: DataGridView implementation
13714         * DataGridViewCellStyleConverter.cs: DataGridView implementation
13715         * DataGridViewSelectedRowCollection.cs: DataGridView implementation
13716         * DataGridViewBindingCompleteEventHandler.cs: DataGridView implementation
13717         * DataGridViewColumnEventArgs.cs: DataGridView implementation
13718         * DataGridViewRowHeightInfoPushedEventHandler.cs: DataGridView implementation
13719         * DataGridViewRowContextMenuStripNeededEventHandler.cs: DataGridView implementation
13720         * QuestionEventArgs.cs: DataGridView implementation
13721         * IDataGridViewEditingCell.cs: DataGridView implementation
13722         * DataGridViewTriState.cs: DataGridView implementation
13723         * DataGridViewColumnDesignTimeVisibleAttribute.cs: DataGridView implementation
13724         * DataGridViewCellStateChangedEventArgs.cs: DataGridView implementation
13725         * DataGridViewColumnCollection.cs: DataGridView implementation
13726         * DataGridViewCellValueEventHandler.cs: DataGridView implementation
13727         * DataGridViewRowDividerDoubleClickEventHandler.cs: DataGridView implementation
13728         * DataGridViewCellFormattingEventArgs.cs: DataGridView implementation
13729         * DataGridViewColumn.cs: DataGridView implementation
13730         * DataGridViewCellBorderStyle.cs: DataGridView implementation
13731         * DataGridViewCellContextMenuStripNeededEventHandler.cs: DataGridView implementation
13732         * DataGridViewCellValidatingEventArgs.cs: DataGridView implementation
13733         * DataGridViewRow.cs: DataGridView implementation
13734         * DataGridViewImageCellLayout.cs: DataGridView implementation
13735         * DataGridViewImageCell.cs: DataGridView implementation
13736         * DataGridViewTopLeftHeaderCell.cs: DataGridView implementation
13737         * DataGridViewCheckBoxCell.cs: DataGridView implementation
13738         * DataGridViewHeaderCell.cs: DataGridView implementation
13739         * DataGridViewCellErrorTextNeededEventHandler.cs: DataGridView implementation
13740         * DataGridViewRowHeightInfoPushedEventArgs.cs: DataGridView implementation
13741         * DataGridViewAutoSizeColumnsModeEventHandler.cs: DataGridView implementation
13742         * DataGridViewTextBoxColumn.cs: DataGridView implementation
13743         * QuestionEventHandler.cs: DataGridView implementation
13744         * DataGridViewCellStyleScopes.cs: DataGridView implementation
13745         * DataGridViewSortCompareEventArgs.cs: DataGridView implementation
13746         * DataGridViewCellContextMenuStripNeededEventArgs.cs: DataGridView implementation
13747         * DataGridViewCell.cs: DataGridView implementation
13748         * DataGridViewCellEventArgs.cs: DataGridView implementation
13749         * DataGridViewClipboardCopyMode.cs: DataGridView implementation
13750         * DataGridViewCellStyle.cs: DataGridView implementation
13751         * DataGridViewColumnHeaderCell.cs: DataGridView implementation
13752         * DataGridViewRowPrePaintEventHandler.cs: DataGridView implementation
13753         * DataGridViewRowCancelEventHandler.cs: DataGridView implementation
13754         * TextFormatFlags.cs: DataGridView implementation
13755         * DataGridViewCellToolTipTextNeededEventArgs.cs: DataGridView implementation
13756         * DataGridViewDataErrorEventHandler.cs: DataGridView implementation
13757         * DataGridViewAdvancedCellBorderStyle.cs: DataGridView implementation
13758         * DataGridViewCellPaintingEventArgs.cs: DataGridView implementation
13759         * DataGridViewButtonColumn.cs: DataGridView implementation
13760         * DataGridViewRowsRemovedEventArgs.cs: DataGridView implementation
13761         * HandledMouseEventArgs.cs: DataGridView implementation
13762         * DataGridViewCellParsingEventHandler.cs: DataGridView implementation
13763         * DataGridViewColumnDividerDoubleClickEventHandler.cs: DataGridView implementation
13764         * DataGridViewCellMouseEventArgs.cs: DataGridView implementation
13765         * DataGridViewAutoSizeRowsMode.cs: DataGridView implementation
13766         * DataGridViewRowCollection.cs: DataGridView implementation
13767         * DataGridViewAdvancedBorderStyle.cs: DataGridView implementation
13768         * DataGridViewCellCancelEventHandler.cs: DataGridView implementation
13769         * DataGridViewHitTestType.cs: DataGridView implementation
13770         * DataGridViewAutoSizeModeEventArgs.cs: DataGridView implementation
13771         * DataGridViewColumnStateChangedEventArgs.cs: DataGridView implementation
13772         * DataGridViewColumnEventHandler.cs: DataGridView implementation
13773         * DataGridViewRowDividerDoubleClickEventArgs.cs: DataGridView implementation
13774         * DataGridViewAutoSizeRowMode.cs: DataGridView implementation
13775         * DataGridViewRowHeightInfoNeededEventArgs.cs: DataGridView implementation
13776         * DataGridViewRowsDeletedEventArgs.cs: DataGridView implementation
13777         * DataGridViewTextBoxEditingControl.cs: DataGridView implementation
13778         * DataGridViewContentAlignment.cs: DataGridView implementation
13779         * DataGridViewRowPostPaintEventHandler.cs: DataGridView implementation
13780         * DataGridViewComboBoxEditingControl.cs: DataGridView implementation
13781         * DataGridViewCellValidatingEventHandler.cs: DataGridView implementation
13782         * DataGridViewSelectedColumnCollection.cs: DataGridView implementation
13783         * DataGridViewPaintParts.cs: DataGridView implementation
13784         * DataGridViewCellCollection.cs: DataGridView implementation
13785         * DataGridViewRowsAddedEventArgs.cs: DataGridView implementation
13786         * DataGridViewImageColumn.cs: DataGridView implementation
13787         * DataGridViewRowsRemovedEventHandler.cs: DataGridView implementation
13788         * DataGridViewElementStates.cs: DataGridView implementation
13789         * DataGridViewRowHeightInfoNeededEventHandler.cs: DataGridView implementation
13790         * DataGridViewColumnDividerDoubleClickEventArgs.cs: DataGridView implementation
13791         * DataGridViewRowPrePaintEventArgs.cs: DataGridView implementation
13792         * DataGridViewRowStateChangedEventArgs.cs: DataGridView implementation
13793         * DataGridViewEditingControlShowingEventArgs.cs: DataGridView implementation
13794         * DataGridViewCellCancelEventArgs.cs: DataGridView implementation
13795         * DataGridViewRowHeaderCell.cs: DataGridView implementation
13796         * DataGridViewBindingCompleteEventArgs.cs: DataGridView implementation
13797         * DataGridViewTextBoxCell.cs: DataGridView implementation
13798         * DataGridViewBand.cs: DataGridView implementation
13799         * DataGridViewAutoSizeColumnModeEventArgs.cs: DataGridView implementation
13800         * DataGridViewHeaderBorderStyle.cs: DataGridView implementation
13801         * DataGridViewRowsAddedEventHandler.cs: DataGridView implementation
13802         * DataGridViewAutoSizeColumnMode.cs: DataGridView implementation
13803         * DataGridViewAutoSizeColumnModeEventHandler.cs: DataGridView implementation
13804         * DataGridViewAutoSizeColumnsModeEventArgs.cs: DataGridView implementation
13805         * DataGridViewRowErrorTextNeededEventHandler.cs: DataGridView implementation
13806         * DataGridViewSelectedCellCollection.cs: DataGridView implementation
13807         * DataGridViewRowContextMenuStripNeededEventArgs.cs: DataGridView implementation
13808         * DataGridViewRowErrorTextNeededEventArgs.cs: DataGridView implementation
13809         * DataGridViewComboBoxDisplayStyle.cs: DataGridView implementation
13811 2005-11-08  Peter Dennis Bartok  <pbartok@novell.com>
13813         * ThemeWin32Classic.cs: 
13814           - Draw the outside focus rectangle around buttons
13815           - Use CPDrawFocusRectangle to draw focus rectangles until Cairo
13816             doesn't use end caps for every dash of a line anymore. This
13817             workaround ignores the forecolor.
13819 2005-11-08  Kornél Pál  <kornelpal@hotmail.com>
13821         * ImageList.cs: Don't use ArgbColor with LayoutKind.Explicit as it isn't
13822           endian safe.
13824 2005-11-07  Jackson Harper  <jackson@ximian.com>
13826         * X11Dnd.cs: Set the X/Y positions on the DragEventArgs correctly.
13828 2005-11-07  Jackson Harper  <jackson@ximian.com>
13830         * ScrollableControl.cs: Calculate the maximum and change vars
13831         (more) correctly so that scrollbars appear as a sensible size.
13833 2005-11-04  Jackson Harper  <jackson@ximian.com>
13835         * TreeNodeCollection.cs: Refresh when nodes are cleared from the
13836         collection.
13837         * TreeView.cs: When the tree is sorted null out the top_node so
13838         that it is recalculated.
13839         - Use dotted lines instead of dashed lines to match MS better.
13841 2005-11-04  Jordi Mas i Hernandez <jordimash@gmail.com>
13843         * ListView.cs: 
13844           - Implements key search for items. Useful when browsing files with FileDialog
13845           - When changing view mode or when clear the items reset scrollbar positions
13847 2005-11-04  Jackson Harper  <jackson@ximian.com>
13849         * CurrencyManager.cs: Implement the MetaDataChanged event, the
13850         Reset method, and the CheckEmpty. CheckEmpty is just a total guess
13851         as to what the method may do as there is no real way of creating a
13852         derived CurrencyManager and calling the method. 
13854 2005-11-03  Jackson Harper  <jackson@ximian.com>
13856         * ThemeWin32Classic.cs: Implement ownerdrawing in the tab control
13857         * TabControl.cs: Add Ownerdrawing bits, add the UpdateTabSelection
13858         method which seems to just be used internally to refresh the tabs.
13860 2005-11-03  Jackson Harper  <jackson@ximian.com>
13862         * TabControl.cs: Implement the remove method. Fix some broken
13863         comments.
13865 2005-11-03  Peter Dennis Bartok  <pbartok@novell.com>
13867         * DateTimePicker.cs:
13868           - Added missing DateTimePickerAccessibleObject class
13869           - Added missing events
13870           - Added OnFontChanged method
13871         * Form.cs: Added missing attributes
13872         * TreeView.cs: Added missing attributes
13874 2005-11-03  Peter Dennis Bartok  <pbartok@novell.com> 
13876         * GridItemCollection.cs: Fix signatures
13878 2005-11-03  Peter Dennis Bartok  <pbartok@novell.com>
13880         * XplatUI.cs: Updated build rev/date
13881         * ComboBox.cs, DataGridTextBoxColumn.cs Control.cs, 
13882           DataGridTableStyle.cs, DataGrid.cs, DateTimePicker.cs: Signature fixes
13883         * Application.cs: Trigger context-specific ExitThread events
13885 2005-11-03  Jackson Harper  <jackson@ximian.com>
13887         * Menu.cs:
13888         * MainMenu.cs:
13889         * GridTableStylesCollection.cs:
13890         * Timer.cs:
13891         * TabPage.cs:
13892         * HelpProvider.cs:
13893         * StatusBar.cs:
13894         * MonthCalendar.cs: Signature fixes
13896 2005-11-03  Jackson Harper  <jackson@ximian.com>
13898         * TreeNodeCollection.cs: Remove should not be virtual.
13899         * TreeView.cs: Implement the last of the missing methods.
13901 2005-11-03  Jackson Harper  <jackson@ximian.com>
13903         * TreeNodeConverter.cs: Implement to get off my class-status back.
13905 2005-11-03  Jackson Harper  <jackson@ximian.com>
13907         * TreeView.cs: Hookup the bits for drag and drop.
13908         * TreeNode.cs: Don't cache the tree_view or index anymore, now
13909         that nodes can be moved from tree to tree easily this just causes
13910         all sorts of problems.
13911         * TreeNodeCollection: Don't need to give treenodes an index and
13912         treeview anymore when they are added, these are computed on the
13913         fly. Also make sure to remove a node before its added.
13915 2005-11-03  Peter Dennis Bartok  <pbartok@novell.com>
13917         * TextControl.cs:
13918           - Added CaretSelection enum
13919           - Added comparison methods to Marker struct, makes selection code
13920             more readable
13921           - Added SelectionStart and SelectionEnd as 'moveable' location for
13922             the CaretDirection enum and handler
13923           - Added selection_prev variable to track optimized invalidation for
13924             word and line selection
13925           - Added SelectionVisible property (returns true if there is a valid 
13926             selection)
13927           - Switched CaretHasFocus to only display the caret if there is no
13928             visible selection
13929           - Avoiding StringBuilder.ToString to retrieve a single char, instead
13930             using the direct character index; should be much faster
13931           - Added various conditional debug statements
13932           - Fixed invalidation calculation for selection ranges
13933           - Added ExpandSelection() method to support word and line selection
13934           - Switched SetSelectionToCaret to use new Marker compare overloads
13935           - Added central IsWordSeparator() method to determine word 
13936             separators/whitespace and FindWordSeparator() to streamline common
13937             usage of IsWordSeparator()
13938         * TextBoxBase.cs:
13939           - Removed unneeded grabbed variable, it was just mirroring
13940             Control.Capture
13941           - No longer firing OnTextChanged event when Text setter is called,
13942             since the base will fire the event for us
13943           - Added handling of Ctrl-Up/Down selection
13944           - Added handling of Shift-Cursorkey selection
13945           - Added handling for Ctrl-Delete and Ctrl-Backspace to remove
13946             words
13947           - Added handling of Shift and Ctrl-Shift-Home/End selection
13948           - Removed some debug output
13949           - Added handling for single/double/tripple-click to place caret/
13950             select word/select line respectively (Fixes bug #76031)
13951           - Added support for drag expansion of word/line selection
13952         * RichTextBox.cs: Handle GotFocus event to trigger redrawing of
13953           current selection
13955 2005-11-02  Jackson Harper  <jackson@ximian.com>
13957         * X11Dnd.cs: If the drag is going to and from a MWF window just
13958         copy the data instead of sending it out through the X Selection
13959         mechanism.
13961 2005-11-02  Jackson Harper  <jackson@ximian.com>
13963         * X11Dnd.cs:
13964         * XplatUIX11.cs: When in a drag we don't want motion notify
13965         messages to get passed on to the other controls. This prevents
13966         mouse move messages from showing up in the drag source.
13968 2005-11-02  Jackson Harper  <jackson@ximian.com>
13970         * X11Dnd.cs: Remove unneeded call to XAllowEvents.  Make sure that
13971         the correct button is release to end a drag.
13972         * XplatUIX11.cs: Make the button state internal so the drag system
13973         can access it.  Dragging needs to know about all button releases,
13974         not just left button.
13976 2005-11-02  Miguel de Icaza  <miguel@novell.com>
13978         * Form.cs (Icon): If the icon is null, reset the icon to the
13979         default value. 
13981         * Cursor.cs: When writing the AND-mask bitmap do not include the
13982         number of colors, but hardcode those to two (black and white),
13983         fixes the loading of color cursors (Paint Dot Net).
13985         * Form.cs: To debug, allow MONO_MWF_SCALING=disable variable to
13986         turn off autoscaling.
13988         * Cursor.cs: Allow resource type to be 1 or 2 (from ImageMagic).
13990 2005-11-02  Jackson Harper  <jackson@ximian.com>
13992         * X11Dnd.cs: Make sure to send a status message if the pointer
13993         enters a control that can not accept a drop, otherwise the cursor
13994         isn't updated correctly. Also tried to compress the lines of code
13995         a bit.
13997 2005-11-02  Jackson Harper  <jackson@ximian.com>
13999         * X11Dnd.cs: Change cursors based on drag action. Also attempt to
14000         set actions correctly.  This isn't perfect as XDND and win32 have
14001         some differences on how you allow actions. I'll clear this up by
14002         adding a path for drag from MWF to MWF windows.
14003         * XplatUIX11.cs: Hook into the dnd system.
14005 2005-11-02  Jordi Mas i Hernandez <jmas@softcatala.org>
14007         * ListView.cs: Fixes scroll bar visibility. Hide them if they were
14008         previously shown but they are no longer need it. Very obvious when 
14009         browsing files with FileDialog.
14011 2005-11-01  Peter Dennis Bartok  <pbartok@novell.com>
14013         * Control.cs: We always need to call OnPaintBackground. We pretty much
14014           ignore AllPaintingInWmPaint and always do the painting there, whether 
14015           it's set or not, since we always ignore the WM_ERASEBKGND message 
14016           (which we don't generate on X11). This fixes #76616.
14017         * Panel.cs: Removed unneeded background painting. This happens properly
14018           in Control.cs already
14020 2005-10-31  Mike Kestner  <mkestner@novell.com>
14022         * Menu.cs: Add items to collection before setting their index.
14023         * MenuItem.cs : add range checking with ArgumentException like MS.
14024         [Fixes #76510]
14026 2005-10-31  Jackson Harper  <jackson@ximian.com>
14028         * ListBox.cs: Invalidate if the area is visible at all not just
14029         contained in the visible rect. Fixes unselection of semi visible
14030         items.
14032 2005-10-31  Jackson Harper  <jackson@ximian.com>
14034         * Control.cs: Consistently name the dnd methods. Make them
14035         internal so we can override them to match some MS behavoir
14036         internally.
14037         * Win32DnD.cs: Use the new consistent names.
14039 2005-10-31  Jackson Harper  <jackson@ximian.com>
14041         * TreeView.cs: Don't draw the selected node when we lose focus.
14043 2005-10-31  Jackson Harper  <jackson@ximian.com>
14045         * X11Dnd.cs: We still need to reset the state even though a full
14046         reset isn't being done, otherwise status's still get sent all over
14047         the place.
14049 2005-10-31  Jackson Harper  <jackson@ximian.com>
14051         * Control.cs: Make the dnd_aware flag internal so the dnd
14052         subsystem can check it. Catch exceptions thrown in dnd handlers to
14053         match MS behavoir.
14054         * Hwnd.cs: Add a flag for whether or not a window is dnd aware.
14055         * X11Dnd.cs: Handle null data in the converters. Set the XDND
14056         version when sending a XdndEnter. Use the control/hwnd dnd_aware
14057         flags to reduce the number of dnd enters/status's sent.
14059 2005-10-31  Jackson Harper  <jackson@ximian.com>
14061         * X11Dnd.cs: Don't need the sizeof here. Patch by Jordi Mas.
14063 2005-10-31  Jordi Mas i Hernandez <jordi@ximian.com>
14065         * PictureBox.cs: Fixes 76512
14067 2005-10-28  Jackson Harper  <jackson@ximian.com>
14069         * X11Dnd.cs: Early implementation to support winforms being a drag
14070         source for data on X11. Also restructured the converters so they
14071         can go both ways now.
14072         * XplatUIX11.cs: Tie ins to the the Dnd stuff.
14073         
14074 2005-10-27  Peter Dennis Bartok  <pbartok@novell.com>
14076         * XplatUIX11.cs: Fixed FIXME - implemented ASCII encoding for XA_STRING
14077           clipboard requests
14079 2005-10-27  Jackson Harper  <jackson@ximian.com>
14081         * TreeNode.cs: Implement serialization so my DnD examples will work.
14083 2005-10-24  Kornél Pál  <kornelpal@hotmail.com>
14085         * ButtonBase.cs, ListView.cs, NotifyIcon.cs, PictureBox.cs, ToolBar.cs,
14086           TreeView.cs: Don't dispose objects that are not owned.
14087           
14088 2005-10-24  Peter Dennis Bartok  <pbartok@novell.com>
14090         * Cursor.cs: Defaulting the Current cursor to Cursors.Default. We
14091           should retrieve the current cursor and report that, but XplatUI
14092           doesn't (yet) have an interface for that (and I'm not sure I even
14093           can, on X11)
14094         * XplatUIWin32.cs: Fixed override behaviour. The override is temporary,
14095           until any message loop processing is done (and the WM_SETCURSOR
14096           replaces the cursor to the proper one)
14097         * XplatUIX11.cs: 
14098           - Fixed override behaviour, we can't set the cursor globally on X11, 
14099             just for our windows.
14100           - Invalidating the System.Drawing X11 display handle when we are
14101             shutting down
14102         * Control.cs: Fix to make csc happy
14104 2005-10-23  Peter Dennis Bartok  <pbartok@novell.com>
14106         * TextBoxBase.cs: 
14107           - get_Text: Add last line (without trailing newline) to returned
14108             value (Fixes 76212)
14109           - get_TextLength: Count last line in returned length
14110           - ToString: Call Text property instead of duplicating code
14112 2005-10-23  Kornél Pál  <kornelpal@hotmail.com>
14114         * ImageList.cs: Dispose ImageAttributes objects.
14116 2005-10-22  Kornél Pál  <kornelpal@hotmail.com>
14118         * ImageList.cs: Use attribute constructors with less arguments where
14119           possible.
14121 2005-10-22  Kornél Pál  <kornelpal@hotmail.com>
14123         * ImageList.cs: Added lastKeyIndex field and use in IndexOfKey.
14124           Use typeof instead of strings when assembly is referenced. Added
14125           some more comments.
14127 2005-10-21  Jackson Harper  <jackson@ximian.com>
14129         * ListView.cs: Raise a double click event. Also tried to somewhat
14130         fix when the selectedindexchanged event is raised. Its still
14131         broken though.
14133 2005-10-21  Jackson Harper  <jackson@ximian.com>
14135         * TreeView.cs: New method to invalidate the plus minus area of a
14136         node without invalidating the whole node (maybe this can be used
14137         in some more places).
14138         * TreeNodeCollection.cs: When adding to an empty node we need to
14139         invalidate its plus minus area so the little block shows up.
14140         
14141 2005-10-21  Jackson Harper  <jackson@ximian.com>
14143         * TreeView.cs: Make sure that when we invalidate a node the bounds
14144         are big enough to cover the selected box and the focus
14145         rectangle. Use a different colour for the lines connecting nodes
14146         so they show up with all themes.
14148 2005-10-21  Peter Dennis Bartok  <pbartok@novell.com>
14150         * NativeWindow.cs: Don't call anything that could call into the driver,
14151           we might be on a different thread.
14153 2005-10-21  Peter Dennis Bartok  <pbartok@novell.com> 
14155         * Control.cs(Dispose): Since Dispose might run on a different thread,
14156           make sure that we call methods that could call into the driver via
14157           invoke, to avoid thread issues
14159 2005-10-21  Peter Dennis Bartok  <pbartok@novell.com>
14161         * XplatUI.cs: Removed finalizer
14162         * XplatUIX11.cs: Removed Destructor, was causing crashes due to X11
14163           not allowing to be called on the finalizer thread.
14165 2005-10-21  Kornél Pál  <kornelpal@hotmail.com>
14167         * ImageList.cs:
14168           - Reverted r51889 and r51891.
14169           - Added ImageListItem class that stores unmodified image items and image
14170             properties required to create list images until handle is created.
14171           - Added AddItem and moved image creation logic to AddItemInternal.
14172           - Added CreateHandle method that creates images based on unmodified items.
14173           - Added DestroyHandle that changes state to store unmodified items.
14174           - Add and AddStrip methods no more create handle.
14175           - ReduceColorDepth has no return value.
14176           - Dispose destroys handle.
14177           - Modified other methods to reflect the above changes.
14178           - Implemented key support.
14179           - Added profile 2.0 members and attributes.
14180           - Added private Reset and ShouldSerialize methods that provide the same
14181             behavior as MS.NET but the Visual Studio .NET designer seems to ignore
14182             them as they are private.
14183           - Added some more comments about implementation details.
14185 2005-10-21  Jordi Mas i Hernandez <jordi@ximian.com>
14187         * DataGrid.cs: Adds support for vertical scrolling using the mousewheel
14189 2005-10-21  Jordi Mas i Hernandez <jordi@ximian.com>
14191         * Binding.cs: No PushData/PullData if there is no binding (fixes crash)
14193 2005-10-21  Jordi Mas i Hernandez <jordi@ximian.com>
14195         * DataGridDrawingLogic.cs: Fixes column hit calcultation
14196         * DataGridColumnStyle.cs: Remove debug message
14198 2005-10-20  Jackson Harper  <jackson@ximian.com>
14200         * TreeView.cs: We can always get input keys regardless of whether
14201         or not editing is enabled. They are used for navigation.
14203 2005-10-20  Jackson Harper  <jackson@ximian.com>
14205         * TreeNode.cs: Use the viewport rect for determining if a node
14206         needs to be moved for visibility. Don't use Begin/End edit. This
14207         calls a full refresh when its done.
14208         * TreeView.cs: New SetBottom works correctly.  Make the viewport
14209         rect property internal so the treenodes can see it. When clicking
14210         on a node we need to ensure that its visible because it might just
14211         be partly visible when clicked.
14213 2005-10-20  Jackson Harper  <jackson@ximian.com>
14215         * TreeNodeCollection.cs: Remove debug code.
14217 2005-10-20  Jordi Mas i Hernandez <jordi@ximian.com>
14219         * Datagrid.cs: Implements column sorting in Datagrid
14220         * DataGridColumnStyle.cs: Implements column sorting in Datagrid
14222 2005-10-20  Jackson Harper  <jackson@ximian.com>
14224         * TreeNodeCollection.cs: Remove items properly. Update the correct
14225         area after removing them.
14227 2005-10-20  Jordi Mas i Hernandez <jordi@ximian.com>
14229         * Datagrid.cs: Should not call base.OnPaintBackground
14231 2005-10-20  Peter Dennis Bartok  <pbartok@novell.com>
14233         * XplatUIX11.cs (GetMessage):
14234           - Now properly calculates NC_xBUTTONDOWN coordinates off the whole
14235             window instead of client window
14236           - Now properly calculates NC_xBUTTONUP message coordinates
14237           - ScreenToMenu now properly calculates it's coordinates of whole 
14238             window, since menus are in the whole window, not in the client
14239             window
14240           - Added WholeToScreen coordinate translation method
14242 2005-10-20  Peter Dennis Bartok  <pbartok@novell.com> 
14244         * XplatUIX11.cs (GetMessage): Don't return in situations where we don't
14245           want to return a message, loop back to the beginning of the function
14246           and grab the next real message to process instead.
14248 2005-10-20  Peter Dennis Bartok  <pbartok@novell.com>
14250         * Splitter.cs: Properly set limits if no filler control is used
14252 2005-10-19  Jackson Harper  <jackson@ximian.com>
14254         * ColorDialog.cs: Don't show the help button if it is not enabled
14255         instead of disabling it (this is what MS does). Don't create the
14256         panel until the dialog is run, otherwise the vars (such as
14257         ShowHelp) are not set yet.
14259 2005-10-19  Jackson Harper  <jackson@ximian.com>
14261         * TreeView.cs: Implement Begin/EndEdit more correctly so refreshes
14262         are reduced when adding nodes.
14263         * TreeNode.cs:
14264         * TreeNodeCollection.cs: Use UpdateNode instead of refreshing the
14265         tree.
14266         
14267 2005-10-19  Jackson Harper  <jackson@ximian.com>
14269         * FolderBrowserDialog.cs: End editing our treeview so the window
14270         actually gets refreshed.
14272 2005-10-18  Peter Dennis Bartok  <pbartok@novell.com>
14274         * Control.cs: Fixed logic flip on when to call OnPaintBackground. 
14275           Obsoleted handling of WM_ERASEBKGND, now always draws our background
14276           inside of WM_PAINT
14278 2005-10-18  Jordi Mas i Hernandez <jordi@ximian.com>
14280         * MenuAPI.cs: Returns after Hidding window
14281         * XplatUIX11.cs: Added TODO found while debugging menu issues
14283 2005-10-18  Peter Dennis Bartok  <pbartok@novell.com>
14285         * XplatUIX11.cs: Do not re-map the whole window when it's size
14286           becomes non-zero unless it's supposed to be actually visible
14288 2005-10-18  Jackson Harper  <jackson@ximian.com>
14290         * TreeView.cs: We don't need to keep a count anymore.
14291         * TreeNodeCollection.cs: Fix off by one in RemoveAt, Insert can
14292         use the Grow method.
14294 2005-10-18  Jackson Harper  <jackson@ximian.com>
14296         * TreeNodeCollection.cs: Insert is not supported on arrays, so
14297         implement it manually here.
14299 2005-10-18  Jackson Harper  <jackson@ximian.com>
14301         * ImageList.cs: Dont kill the list when the colour depth is
14302         changed, just change the colour depth of all the images.
14303         - Same goes for setting the image size. Just resize them all
14304         instead of killing the list softly.
14306 2005-10-18  Jackson Harper  <jackson@ximian.com>
14308         * Control.cs: Don't invalidate empty rectangles.
14310 2005-10-18  Jordi Mas i Hernandez <jordi@ximian.com>
14312         * ListViewItem.cs:
14313           - Adds checked item to the Checked/Item lists (where empty before)
14314           - Do not add items to the Selected lists if they are already present
14315         * ListView.cs:
14316           - Fixes IsFixedSize, SyncRoot, IsReadOnly in many collections
14317           - When deleting items make sure that we delete them for the Selected
14318           and Checked list also.
14320 2005-10-18  Jordi Mas i Hernandez <jordi@ximian.com>
14322         * Label.cs: Dispose objects no longer used
14323         * ThemeWin32Classic.cs: Dispose objects no longer used
14325 2005-10-18  Jackson Harper  <jackson@ximian.com>
14327         * TabControl.cs: Don't refresh the whole control when the tabs are
14328         scrolled, we just need to refresh the tab area.
14330 2005-10-17  Jackson Harper  <jackson@ximian.com>
14332         * XplatUIX11.cs: Compress code a little bit. Only calculate the
14333         after handle when we need it.
14335 2005-10-17  Peter Dennis Bartok  <pbartok@novell.com>
14337         * Control.cs: When the parent size changes, recalculate anchor 
14338           positions. Partial fix for #76462
14340 2005-10-17  Peter Dennis Bartok  <pbartok@novell.com>
14342         * ThemeWin32Classic.cs: Make sure the picturebox has it's background 
14343           drawn. Fixes #76462
14345 2005-10-17  Jackson Harper  <jackson@ximian.com>
14347         * MonthCalendar.cs: Don't create the numeric up down until our
14348         handle is created. Otherwise our handle is created in the
14349         constructor and we don't know if we are a WS_CHILD or WS_POPUP
14350         yet.
14352 2005-10-17  Jackson Harper  <jackson@ximian.com>
14354         * TreeView.cs: Merge in patch by Rafael Teixeira to align strings
14355         correctly.
14357 2005-10-17  Rafael Teixeira <rafaelteixeirabr@hotmail.com> 
14358         * TreeNode.cs : small logical fix (was using local var instead of field)
14359         
14360 2005-10-17  Jordi Mas i Hernandez <jordi@ximian.com>
14362         * ThemeWin32Classic.cs: Fixes vert/horz scrollbar colours
14364 2005-10-17  Jordi Mas i Hernandez <jordi@ximian.com>
14366         * ThemeWin32Classic.cs: Fixes focus drawing in for non-flat/popup buttons
14368 2005-10-16  Peter Dennis Bartok  <pbartok@novell.com> 
14370         * Control.cs: 
14371           - Re-implemented anchoring code. My first version was really broken.
14372             This fixes bug #76033. Unlike the previous implementation we will
14373             no longer have round errors since all numbers are calculated from
14374             scratch every time. Removed various anchor-related obsolete vars.
14375           - InitLayout no longer causes layout event firing and layout to be 
14376             performed
14378 2005-10-16  Jackson Harper  <jackson@ximian.com>
14380         * Hwnd.cs: Compute invalid area correctly (fixes my last commit
14381         which was broken).
14383 2005-10-16  Jackson Harper  <jackson@ximian.com>
14385         * TabControl.cs: Remove debug code.
14387 2005-10-16  Jackson Harper  <jackson@ximian.com>
14389         * XEventQueue.cs: Increase the default queue size (very simple
14390         apps needed to grow the queue).
14391         * Hwnd.cs: No finalizer so we don't need to suppress
14392         finalization. Compute the invalid area manually so a new rectangle
14393         does not newto be created.
14394         * ScrollableControl.cs: Don't set any params (otherwise visibility
14395         isn't set correctly).
14396         * MdiChildContext.cs: New constructor takes the mdi parent so it
14397         doesn't have to be computed and avoids a crash on windows. Draw
14398         the window icon properly, and allow the text to be seen.
14399         * Form.cs: Use new MdiChildContext constructor. Make sure the
14400         child context isn't null in wndproc.
14401         * TabControl.cs: Don't set focus, this is muddling keyboard
14402         behavoir. Expand the tab rows when a window size increase will
14403         allow extra tabs to be seen. Don't allow tabs smaller than the
14404         width of a window to be scrolled out of view.
14405         * TreeNode.cs:
14406         * TreeView.cs: Use measure string to calculate a nodes width, the
14407         width is cached and only updated when the text or the font is
14408         changed. Don't check for expand/collapse clicks on the first level
14409         nodes if root lines are disabled.
14410         
14411 2005-10-16  Ritvik Mayank  <mritvik@novell.com>
14413         * TextBoxBase.cs: Fixes #76352 (passing tab key in a multiline textbox)
14415 2005-10-16  Jordi Mas i Hernandez <jordi@ximian.com>
14417         * DataGridBoolColumn.cs: fixes warning
14419 2005-10-16  Jordi Mas i Hernandez <jordi@ximian.com>
14421         * ControlPaint.cs: Fixes methods Dark, DarkDark, Light, LightLight
14422         to match more to match more precisely the MS Net behavior
14424 2005-10-13  Peter Dennis Bartok  <pbartok@novell.com> 
14426         * Hwnd.cs: Added field to track if window is mapped
14427         * XplatUIX11.cs: 
14428           - Unmap windows if they become 0-size, re-map when 
14429             they are >0 again; fixes #76035
14430           - Re-set our error handler after initializing X11Desktop
14431             to override any error handlers Gtk or whatever was called
14432             may have set.
14434 2005-10-13  Peter Dennis Bartok  <pbartok@novell.com> 
14436         * CheckedListBox.cs: Removed unused vars
14437         * ListView.cs: Fixed signatures
14438         * RichTextBox.cs: Removed unused vars
14439         * TextBoxBase.cs: Removed unused vars
14440         * XplatUIWin32.cs: Removed unused vars
14441         * XplatUIX11.cs: Removed unused vars
14442         * XplatUI.cs: Updated version and date to latest published
14444 2005-10-13  Peter Dennis Bartok  <pbartok@novell.com>
14446         * Cursor.cs: Added private .ctor to work around a bug in
14447           resourceset (Thanks to Geoff Norton for the help on this)
14448         * SplitterEventArgs.cs: Made fields accessible so we don't
14449           waste boatloads of objects and can reuse the same one
14450           in Splitter
14451         * XplatUIWin32.cs(DrawReversibleLine): Now also considers
14452           any captions and borders when generating screen coordinates
14453         * Splitter.cs: Reimplemented control, now fully complete, uses
14454           rubberband drawing, supports and obeys all properties, has
14455           proper cursors
14457 2005-10-13  Miguel de Icaza  <miguel@novell.com>
14459         * Form.cs (Form): Setup default values for autoscale and
14460         autoscale_base_size;  Make these instance variables, not static
14461         variables. 
14463         (OnLoad): on the first load, adjust the size of the form.
14465 2005-10-13  Peter Dennis Bartok  <pbartok@novell.com>
14467         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs: Added 
14468           width argument to DrawReversibleRectangle()
14469         * XplatUIWin32.cs, XplatUIX11.cs: 
14470           - Implemented width for DrawReversibleRectangle()
14471           - Added logic to DrawReversibleRectangle that recognizes a zero
14472             width or height and only draws a line in that situation
14473         
14474 2005-10-12  Peter Dennis Bartok  <pbartok@novell.com> 
14476         * XplatUI.cs, XplatUIDriver.cs: Added GetAutoScaleSize()
14477         * XplatUIOSX.cs: Stubbed GetAutoScaleSize() method
14478         * XplatUIWin32.cs, XplatUIX11.cs: Implemented GetAutoScaleSize()
14479           method (it uses our FosterParent window to get a graphics context)
14481 2005-10-12  Peter Dennis Bartok  <pbartok@novell.com>
14483         * XplatUI.cs, XplatUIDriver.cs: Removed EraseWindowBackground 
14484           and SetWindowBackground methods
14485         * Control.cs:
14486           - Setting proper ControlStyles
14487           - We no longer call XplatUI.SetWindowBackground and XplatUI.
14488             EraseWindowBackground, instead we draw the window background
14489             ourselves in PaintControlBackground. This behaviour is
14490             required to match MS, where, when OnPaintBackground is not
14491             called, the background is not drawn.
14492           - Removed unneeded Refresh() in set_Text
14493         * Hwnd.cs: Dropped the ErasePending support. No longer needed
14494         * XplatUIX11.cs:
14495           - Created DeriveStyles method to translate from CreateParams to
14496             FormBorderStyle and TitleStyle, also handles BorderStyle (which
14497             matches FormBorderStyle enum values)
14498           - Consolidated SetHwndStyles and CalculateWindowRect border/title
14499             style calculations into single DeriveStyles method
14500           - Fixed CreateWindow to (finally) use Gravity. This prevents X11
14501             from redrawing the whole window on any resize or expose.
14502           - Fixed CreateWindow usage of SetWindowValuemask. Before not
14503             all styles were applied to our whole/client window appropriately
14504           - Removed EraseWindowBackground() and SetWindowBackground() methods
14505           - Removed handling of WM_ERASEBKGND message from DefWndProc, we
14506             no longer clear/redraw the background through X
14507           - Removed handling of erase_pending bit, we have no use for it (or
14508             so it seems)
14509         * XplatUIOSX.cs:
14510           - Removed generation and handling of WM_ERASEBKGND message
14511           - Removed EraseWindowBackground() and SetWindowBackground() methods
14512           - Removed handling of hwnd.ErasePending flag
14513         * XplatUIWin32.cs:
14514           - Removed EraseWindowBackground() and SetWindowBackground() methods
14515           - We no longer call EraseWindowBackground on PaintEventStart, we 
14516             ignore the fErase flag, erasing is handled in Control in the
14517             background handler
14518         * Button.cs, GroupBox.cs, Label.cs, CheckBox.cs, ProgressBar.cs,
14519           LinkLabel.cs, ListControl.cs, TabPage.cs, UpDownBase.cs,
14520           TextBoxBase.cs, TextBox.cs, ListView.cs, ButtonBase.cs, 
14521           CheckedListBox.cs, MdiClient.cs, Panel.cs, DataGrid.cs, 
14522           DataGridTextBox.cs, ScrollBar.cs, ListBox.cs, TrackBar.cs, 
14523           TabControl.cs, ScrollableControl.cs, ToolBar.cs, PictureBox.cs,
14524           DateTimePicker.cs, StatusBar.cs, MonthCalendar.cs: Setting proper ControlStyles
14526 2005-10-12  Jonathan Chambers <jonathan.chambers@ansys.com>
14528         * PropertyGrids.cs: Get sub properties
14529         * PropertyGridView.cs: Fix drawing code
14531 2005-10-11  Jordi Mas i Hernandez <jordi@ximian.com>
14533         * ListBox.cs: Fixes 76383
14535 2005-10-11  Jordi Mas i Hernandez <jordi@ximian.com>
14537         * DataGridTextBoxColumn.cs: Sets location and size before attachment
14538         * ThemeWin32Classic.cs: Fixes border drawing and calculations
14539         * DataGridDrawingLogic.cs: Fixes border drawing and calculations
14542 2005-10-11  Jordi Mas i Hernandez <jordi@ximian.com>
14544         * ComboBox.cs: Fixes border drawing
14546 2005-10-10  Miguel de Icaza  <miguel@novell.com>
14548         * MimeIcon.cs: Ignore errors if the file can not be read.
14550 2005-10-11  Jordi Mas i Hernandez <jordi@ximian.com>
14552         * Theme.cs, ThemeWin32Classic.cs, ListBox.cs:
14553          - Fixed border calculations
14554          - Fixed horizontal scrolling in single column listboxes
14555          - Fixed drawing issues
14557 2005-10-10  Peter Dennis Bartok  <pbartok@novell.com>
14559         * XplatUI.cs, XplatUIOSX.cs, XplatUIWin32.cs: Switched from BorderStyle to 
14560           FormBorderStyle enum
14561         * XplatUIX11.cs: Switched BorderStyle to FormBorderStyle, added 
14562           code to determine FormBorderStyles from CreateParams
14563         * Form.cs:
14564           - Fixed bug where we'd set the wrong window styles if we were
14565             not creating an MDI window
14566           - Added call to XplatUI.SetBorderStyle when form borders are set
14567         * Control.cs: Casting BorderStyles to accommodate changed XplatUI APIs
14568         * Hwnd.cs:
14569           - Removed obsolete edge style
14570           - Switched from BorderStyle to FormBorderStyle
14571         
14572 2005-10-10  Jackson Harper  <jackson@ximian.com>
14574         * Form.cs: Use the property to get the window handle instead of
14575         accessing it directly. Prevents a null reference exception.
14577 2005-10-10  Jackson Harper  <jackson@ximian.com>
14579         * TreeView.cs: Don't adjust the rect given to DrawString now that
14580         our libgdiplus draws correctly.
14582 2005-10-08  Jackson Harper  <jackson@ximian.com>
14584         * TreeView.cs: Don't try to find the clicked on node if there are
14585         no nodes in the tree.
14587 2005-10-08  Alexander Olk  <alex.olk@googlemail.com>
14589         * RichTextBox.cs:
14591           restore
14593 2005-10-08  Alexander Olk  <alex.olk@googlemail.com>
14595         * ImageListStreamer.cs, TreeView.cs, UpDownBase.cs, RichTextBox.cs,
14596           ColorDialog.cs, TextControl.cs, Panel.cs, MdiChildContext.cs,
14597           ErrorProvider.cs:
14598           Use ResPool for brushes and dispose System.Drawing objects that
14599           are not used anymore.
14601 2005-10-07  Jackson Harper  <jackson@ximian.com>
14603         * MdiChildContext.cs: Use the new borders instead of drawing them
14604         ourselves.
14606 2005-10-06  Jordi Mas i Hernandez <jordi@ximian.com>
14608         * Calling UpdateBounds after changing the window's BorderStyle 
14609         since the style can change the ClientSize
14611 2005-10-06  Peter Dennis Bartok  <pbartok@novell.com>
14613         * Control.cs: Made PaintControlBackground virtual
14614         * Panel.cs: Overriding PaintControlBackground instead of using paint
14615           event; paint event method was interfering with 'real' users of the
14616           event.
14618 2005-10-06  Jordi Mas i Hernandez <jordi@ximian.com>
14620         * ThemeWin32Classic.cs: remove border drawing since it is handled
14621         by the base control class now and was causing double border drawing.
14623 2005-10-06  Peter Dennis Bartok  <pbartok@novell.com>
14625         * Panel.cs: Redraw our background on paint. Not a pretty solution,
14626           but it does seem to match MS behaviour. This fixes bug #75324
14628 2005-10-06  Peter Dennis Bartok  <pbartok@novell.com>
14630         * XplatUIX11.cs: A better DrawReversibleRectangle version, however
14631           somewhat hackish looking
14633 2005-10-06  Peter Dennis Bartok  <pbartok@novell.com> 
14635         * TextBoxBase.cs:
14636           - We now accept Enter even if AcceptEnter is false, if the containing
14637             form does not have an AcceptButton configured (fixes bug #76355)
14638           - Calculations are now fixed to no longer use Width/Height, but
14639             ClientSize.Width/Height, since we now support borders (this was
14640             a result of fixing borders and therefore bug #76166)
14641           - We no longer show the horizontal scrollbar if TextBox.WordWrap is 
14642             true (fixes bug #76354)
14643         
14644 2005-10-06  Peter Dennis Bartok  <pbartok@novell.com>
14646         * Control.cs: 
14647           - Defaulting BorderStyle and setting it in XplatUI when our window 
14648             is created
14649           - Added enum check to InternalBorderStyle setter
14650         * XplatUIX11.cs: 
14651           - Added drawing of window borders
14652           - Now properly calculates WM decorations offset for toplevel 
14653             windows (fixes bug #74763)
14654         * XplatUIWin32.cs: 
14655           - Implemented BorderStyles for windows (we're letting win32 draw 
14656             the border for us)
14657           - Fixed the signature for SetWindowLong
14658         * PictureBox.cs, DataGrid.cs, TextBoxBase.cs, ToolBar.cs, Panel.cs,
14659           ListBox.cs, Label.cs: Now uses Control.InternalBorderStyle for 
14660           setting borders
14661         * UpDownBase.cs: Remove drawing of borders, this is handled by
14662           the driver, outside the client area
14663         * ListView.cs: Removed bogus border calculations. The control should
14664           be oblivious to borders, since those are not part of the client
14665           area. 
14666         * X11DesktopColors.cs: Commented out (currently) unneeded variables
14667         * ThemeWin32Classic.cs: Removed border calculations from ListView 
14668           drawing code
14670 2005-10-06  Jackson Harper  <jackson@ximian.com>
14672         * MdiChildContext.cs: Clear out the old virtual position remove
14673         all the unneeded calls to CreateGraphics.
14675 2005-10-06  Peter Dennis Bartok  <pbartok@novell.com> 
14677         * TextControl.cs: Use proper color for highlighted text; fixes #76350
14679 2005-10-06  Peter Dennis Bartok  <pbartok@novell.com> 
14681         * Form.cs: 
14682           - Added loading and setting of our new default icon
14683           - Only set icon if window is already created
14685 2005-10-06  Peter Dennis Bartok  <pbartok@novell.com>
14687         * Label.cs:
14688           - Do not explicitly set the foreground and background colors, to
14689             allow inheriting from parents (fixes #76302)
14690           - Use Control's InternalBorderStyle property to deal with borders
14692 2005-10-06  Jackson Harper  <jackson@ximian.com>
14694         * MdiChildContext.cs: Use the new xplatui function to draw a
14695         reversible rect.
14697 2005-10-06  Jackson Harper  <jackson@ximian.com>
14699         * Form.cs: Add the parent before creating the child context cause
14700         we need the parent when setting up the child.
14702 2005-10-06  Jackson Harper  <jackson@ximian.com>
14704         * FolderBrowserDialog.cs: redo the tree population code so a
14705         second thread isn't used. Should be a lot faster and more stable
14706         now.
14708 2005-10-05  Jackson Harper  <jackson@ximian.com>
14710         * TreeView.cs: There are no expand/collapse boxes if the node has
14711         no children.
14713 2005-10-05  Jackson Harper  <jackson@ximian.com>
14715         * X11DesktopColors.cs: Get menu colours for the gtk theme.
14717 2005-10-05  Alexander Olk  <alex.olk@googlemail.com>
14719         * FileDialog.cs: Fix InitialDirectory
14721 2005-10-05  Jordi Mas i Hernandez <jordi@ximian.com>
14723         * ComboBox.cs:
14724                 - Fixes changing between styles
14725                 - Fixes simple mode
14726                 - Fixes last item crashing when navigating with keyboard
14728 2005-10-05  Jordi Mas i Hernandez <jordi@ximian.com>
14730         * LinkLabel.cs: Related to 76045. Stops the LinkLabel been drawn as a Label
14732 2005-10-05  Jackson Harper  <jackson@ximian.com>
14734         * TreeView.cs: If updating the root node do a full refresh.
14735         * TreeNode.cs: The root node should be expanded by default. Also
14736         added a utility prop to tell if we are the root node.
14737         * TreeNodeCollection.cs: Only refresh if the node we are being
14738         added to is expanded. Also added a comment on a potential
14739         optimization.
14740         
14741 2005-10-04  Peter Dennis Bartok  <pbartok@novell.com>
14743         * Cursor.cs, Hwnd.cs: Added call to GC.SuppressFinalize() 
14744           in dispose method. Fixes #76330
14746 2005-10-04  Jordi Mas i Hernandez <jordi@ximian.com>
14748         * ListView.cs, ThemeWin32Classic.cs, ListViewItem.cs:
14750                 - Implements vertical and horizontal scrolling using XplatUI
14751                 - Fixes keyboard navagation
14752                 - Fixes EnsureVisible
14753                 - Drawing fixes
14754                 - Handles and draws focus properly
14757 2005-10-04  Kornél Pál  <kornelpal@hotmail.com>
14759         * ImageList.cs: Use upper case initials for internal fields. ImageStream:
14760           Create handle. NET_2_0: Destroy handle when value is null.
14762 2005-10-03  Jackson Harper  <jackson@ximian.com>
14764         * ScrollBar.cs: My last scrollbar patch was broken. This is a
14765         revert and a new patch to prevent the thumb from refreshing so
14766         much.
14768 2005-10-02  Jackson Harper  <jackson@ximian.com>
14770         * ScrollBar.cs: Don't update position if it hasn't actually
14771         changed. This occurs when you hold down the increment/decrement
14772         buttons and the thumb gets to the max/min.
14774 2005-10-01  Jackson Harper  <jackson@ximian.com>
14776         * Form.cs:
14777         * MdiChildContext.cs:
14778         * MdiClient.cs: Implement ActiveMdiChild in Form.
14780 2005-10-01  Jordi Mas i Hernandez <jordi@ximian.com>
14782         * ComboBox.cs: Include ComboBoxEdit flag for the edit item
14784 2005-10-01  Peter Dennis Bartok  <pbartok@novell.com>
14786         * X11DesktopColors.cs: Bow out gracefully if the Gtk libs cannot
14787           be found
14789 2005-09-30  Jackson Harper  <jackson@ximian.com>
14791         * ListBox.cs: Don't do a full refresh unless some data has
14792         actually changed.
14794 2005-09-30  Jackson Harper  <jackson@ximian.com>
14796         * TreeView.cs: Make sure that the checkboxes size is factored in
14797         even when not visible.
14799 2005-09-30  Peter Dennis Bartok  <pbartok@novell.com> 
14801         * FileDialog.cs: Fix Jordi's build break
14803 2005-09-30  Jordi Mas i Hernandez <jordi@ximian.com>
14805         * FileDialog.cs: 
14806                 - Use standard the Windows colours for the combobox as espected
14807                 - Dispose objects that use resouces when no longer need them
14809 2005-09-30  Peter Dennis Bartok  <pbartok@novell.com> 
14811         * X11DesktopColors.cs: Initial incomplete implementation
14812         * XplatUIX11.cs: Added call to initialize X11DesktopColors
14814 2005-09-30  Peter Dennis Bartok  <pbartok@novell.com>
14816         * Theme.cs: 
14817           - Switched Theme color names to match the names defined in 
14818             System.Drawing.KnownColors. Life's hard enough, no need to make 
14819             it harder.
14820           - Added setters to all theme color properties so themes can set
14821             their color schemes. The setters also propagate the color changes
14822             to System.Drawing.KnownColors via reflection
14823         * ControlPaint.cs,  Label.cs, TextControl.cs, ToolTip.cs, ThemeNice.cs,
14824           ComboBox.cs, MdiChildContext.cs, TextBoxBase.cs, DateTimePicker.cs
14825           DataGridColumnStyle.cs, MonthCalendar.cs, TreeView.cs: Updated to
14826           use the new, more logical theme color names
14827         * XplatUIWin32.cs: Updated the GetSysColorIndex enum to include new
14828           post-NT colors
14829         * ThemeWin32Classic.cs:
14830           - Removed code to set the old classic Windows colors. Instead it
14831             now relies on the colors returned by System.Drawing.KnownColors
14832             which will be either modern static colors (Unix) or colors
14833             read from the user's configuration (Win32)
14834           - Updated to use the new, more logical theme color names
14835           - Switched DataGrid drawing code to use only Theme colors instead of
14836             a mix of System.Drawing.KnownColors and Theme colors
14837           - DrawFrameControl(): Removed code that fills the button area, the
14838             fill would overwrite any previous fill done by a control. This
14839             fixes bug #75338 
14840           - Added DrawReversibleRectangle() stub
14841         * ScrollableControl.cs: Set visible state to false when scrollbars
14842           are removed (pdn fix)
14843         * XplatUI.cs, XplatUIOSX.cs, XplatUIDriver.cs: Added 
14844           DrawReversibleRectangle() method to allow drawing primitive 
14845           'rubber bands'
14846         * XplatUIX11.cs: Implemented DrawReversibleRectangle()
14848 2005-09-30  Kornél Pál  <kornelpal@hotmail.com>
14850         * ImageList.cs: Add(Icon): Create handle.
14852 2005-09-30  Jordi Mas i Hernandez <jordi@ximian.com>
14854         * ListView.cs:
14855         * ThemeWin32Classic.cs:
14856                 - Fixes detail mode
14857                 - Sets clippings
14858                 - Issues with drawing
14860 2005-09-30  Kornél Pál  <kornelpal@hotmail.com>
14862         * ImageList.cs: Moved RecreateHandle back to ImageList as event
14863           source has to be the ImageList.
14865 2005-09-30  Kornél Pál  <kornelpal@hotmail.com>
14867         * ImageList.cs: Add(Icon): Use Graphics.DrawIcon instead of Icon.ToBitmap.
14869 2005-09-30  Kornél Pál  <kornelpal@hotmail.com>
14871         * ImageList.cs: ReduceColorDepth: Clean up pointer operations.
14873 2005-09-30  Kornél Pál  <kornelpal@hotmail.com>
14875         * ImageList.cs: ImageCollection: Removed owner field as it is no more used.
14877 2005-09-29  Jonathan Chambers <jonathan.chambers@ansys.com>
14878         * GridItem.cs: Fixed TODOs
14879         * GridItemCollection.cs: Added ICollection interface
14881 2005-09-30  Kornél Pál  <kornelpal@hotmail.com>
14883         * ImageList.cs: Resize icons when needed.
14885 2005-09-29  Jordi Mas i Hernandez <jordi@ximian.com>
14887         * ListViewItem.cs
14888                 - Fixes GetBounds and returns on screen rects
14889         * ListView.cs:
14890                 - Fixes vertical and horzintal scrolling of items
14891         * ThemeWin32Classic.cs:
14892                 - Fixes drawing
14893                 
14894 2005-09-29  Raja R Harinath  <harinath@gmail.com>
14896         * ImageList.cs (ImageStream) [NET_2_0]: Reflect re-factoring.
14898 2005-09-29  Kornél Pál  <kornelpal@hotmail.com>
14900         * ImageList.cs: Added comments about handle creation. Moved Handle,
14901           HandleCreated and OnRecreateHandle implementations to ImageCollection.
14902           Handle is created in Add methods.
14904 2005-09-28  Jordi Mas i Hernandez <jordi@ximian.com>
14905          
14906         * DataGridDrawingLogic.cs: 
14907                 - Takes rows into account on Colum calculations
14908                 - Returns the column when clickig
14909         * DataGrid.cs:
14910                 - Fixes default HitTestInfo values
14911                 - Fixes HitTestInfo.ToString
14912                 - Fixes ResetBackColor          
14913         
14914 2005-09-28  Jackson Harper  <jackson@ximian.com>
14916         * MdiChildContext.cs: Obey rules for fixed sized windows (no
14917         sizing or cursor changes). Also added some temp code to draw the
14918         titlebars text (Makes dev a little easier).
14920 2005-09-28  Kornél Pál  <kornelpal@hotmail.com>
14922         * ImageList.cs: AddStrip: Throw ArgumentException when Image is not a Bitmap.
14924 2005-09-28  Jordi Mas i Hernandez <jordi@ximian.com>
14925          
14926         * ListBox.cs: Fixes bug 76253
14928 2005-09-28  Kornél Pál  <kornelpal@hotmail.com>
14930         * ImageList.cs: Added comments about the current implementation. Added
14931           ReduceColorDepth, IndexedColorDepths and GetNearestColor to can use
14932           Format32bppArgb to preserve transparency and can use Graphics.FromImage
14933           while using the specified ColorDepth. ReduceColorDepth uses unsafe code
14934           with Bitmap.LockBits for better performance. Revised the whole file to
14935           match MS.NET behaviour and provide better performance. Non-public
14936           interface members are calling public members even when they throw
14937           NotSupportedException for better maintainability. Moved ColorDepth,
14938           ImageSize, ImageStream and TransparentColor implementations to
14939           ImageCollection for better performance as these properties are not used
14940           by ImageList.
14941         * ImageListStreamer.cs: Added a new internal constructor that takes an
14942           ImageList.ImageCollection and serializes Images based on
14943           ImageCollection.ToArray(). Renamed ImageColorDepth to ColorDepth to
14944           match ImageList property name.
14946 2005-09-28  Kazuki Oikawa <kazuki@panicode.com>
14948         * ListBox.cs: Fixes IndexFromPoint for last item
14950 2005-09-27  Jackson Harper  <jackson@ximian.com>
14952         * Form.cs: Set the position of new mdi children correctly.
14954 2005-09-27  Jackson Harper  <jackson@ximian.com>
14956         * MdiClient.cs: New mdi children need to be added to the back of
14957         the controls collection so the zorder is set correctly. Also add a
14958         count of all the child windows that have been created.
14960 2005-09-27  Jackson Harper  <jackson@ximian.com>
14962         * Form.cs (CreateParams): Setup MDI forms correctly.
14964 2005-09-27  Jackson Harper  <jackson@ximian.com>
14966         * MdiChildContext.cs:
14967         * MonthCalendar.cs:
14968         * UpDownBase.cs:
14969         * ListBox.cs:
14970         * ListView.cs:
14971         * TextBoxBase.cs:
14972         * TreeView.cs:
14973         * ScrollableControl.cs:
14974         * ComboBox.cs: Add implicit controls using the new implict control
14975         functionality in ControlCollection. Also try to block multiple
14976         control add in a suspend/resume layout to save some cycles.
14977         
14978 2005-09-27  Jackson Harper  <jackson@ximian.com>
14980         * Control.cs: Add functionality to the controls collection to add
14981         'implicit controls' these are controls that are created by the
14982         containing control but should not be exposed to the user. Such as
14983         scrollbars in the treeview.
14984         * Form.cs: The list var of the ControlsCollection is no longer
14985         available because of the potential of implicit controls getting
14986         ignored by someone accessing the list directly.
14988 2005-09-26  Peter Dennis Bartok  <pbartok@novell.com>
14990         * Control.cs: Fixed SetChildIndex; it no longer causes a child to
14991           loose it's parent. (Fixed bug introduced in r49103 when we added
14992           setting the child parent to null on Remove)
14994 2005-09-26  Gert Driesen  <drieseng@users.sourceforge.net>
14996         * DataGridBoolColumn.cs: Marked CheckState private to fix public API.
14997         * Splitter.cs: Added missing attributes for BorderStyle property.
14998         * TextBoxBase.cs: Marked Calculate* methods internal.
14999         * TextBox.cs: Fixed DefaultValue for PasswordChar property to match
15000         MS.NET.
15002 2005-09-26  Jordi Mas i Hernandez <jordi@ximian.com>
15003          
15004         * ListBox.cs: Fixes navigation to the last item in multicolumn lists
15006 2005-09-25  Jackson Harper  <jackson@ximian.com>
15008         * TreeView.cs: Update the node bounds correctly regardless of
15009         whether the node is visible.
15011 2005-09-25  Jackson Harper  <jackson@ximian.com>
15013         * ImageList.cs: Don't dispose the image after it is added to the
15014         image list. Only reformat images that need to be resized.
15016 2005-09-25  Jackson Harper  <jackson@ximian.com>
15018         * ImageList.cs: Don't set the format when changing the image.
15020 2005-09-25  Jackson Harper  <jackson@ximian.com>
15022         * TreeView.cs: We can't just assume the node has a font. Use the
15023         treeviews font if no node font is available.
15025 2005-09-25  Jackson Harper  <jackson@ximian.com>
15027         * TreeView.cs: Allow the scrollbars to be reset with negative
15028         values.
15029         - Don't add scrollbars to negative sized windows.
15031 2005-09-23  Jackson Harper  <jackson@ximian.com>
15033         * XplatUIX11.cs: Update to use Mono.Posix.Native instead of plain
15034         old Mono.Posix. Also remove some stray code that shouldn't have
15035         been committed.
15037 2005-09-23  Jackson Harper  <jackson@ximian.com>
15039         * TreeView.cs: Attempt at proper sizing of the horizontal
15040         scrollbar. Also don't resize the scrollbars unless they are
15041         visible.
15043 2005-09-23  Jackson Harper  <jackson@ximian.com>
15045         * TreeView.cs: We don't need to expand the invalid area when the
15046         selection changes, as this is all drawn in the node's bounding
15047         box. The area needs to be expanded (previous typo was contracting
15048         it) when the focus rect moves.
15050 2005-09-23  Jackson Harper  <jackson@ximian.com>
15052         * TreeView.cs: Display the selection box under the correct
15053         circumstances. We were rendering white text with no selection box
15054         before.
15056 2005-09-23  Peter Dennis Bartok  <pbartok@novell.com>
15058         * TextControl.cs(Split): Now updates selection start/end if it points 
15059           into a line that's being split. Fixes a FIXME and bug #75258
15061 2005-09-23  Jackson Harper  <jackson@ximian.com>
15063         * Binding.cs:
15064         * ListControl.cs: Don't use the path when retrieving binding
15065         managers from the binding context. My bat sense tells me that the
15066         path is only used on insertion.
15068 2005-09-22  Jackson Harper  <jackson@ximian.com>
15070         * Splitter.cs: Set the cursor an easier way. (Thanks peter).
15072 2005-09-22  Jackson Harper  <jackson@ximian.com>
15074         * Splitter.cs: There are special cursors used for splitting.
15075         * XplatUIX11.cs: The VSplit and HSplit cursors were backwards.
15077 2005-09-22  Jackson Harper  <jackson@ximian.com>
15079         * Splitter.cs: Change the cursor appropriately when the splitter
15080         is moused over, so the user actually knows there is a splitter
15081         there.
15083 2005-09-22 Hisham Mardam Bey <hisham.mardambey@gmail.com>
15085        * Label.cs : Fix ToString method to give same output as MS.NET
15087 2005-09-22  Jackson Harper  <jackson@ximian.com>
15089         * TreeView.cs: Create the scrollbars when the handle is created
15090         and add them right away, just make them invisble. Also account for
15091         the window being shrunk vertically to the point that the vert
15092         scrollbar needs to be added.
15093         - Remove some 0.5 adjustments to get around anti aliasing issues.
15094         
15095 2005-09-22  Jordi Mas i Hernandez <jordi@ximian.com>
15096          
15097         * MainMenu.cs: Fixes default value
15098         * MenuItem.cs: Fixes default value
15100 2005-09-22  Kazuki Oikawa  <kazuki@panicode.com>
15102         * AsyncMethodResult.cs: Fixes Control.Invoke is blocked infinitely.
15104 2005-09-21  Jackson Harper  <jackson@ximian.com>
15106         * Control.cs: Don't try to set the border style on the window if
15107         it hasn't been created. When the window is created the border
15108         style will be used.
15110 2005-09-21  Peter Dennis Bartok  <pbartok@novell.com>
15112         * Control.cs (Update): Don't call XplatUI if we don't have a
15113           window handle yet
15115 2005-09-21  Peter Dennis Bartok  <pbartok@novell.com> 
15117         * ContainerControl.cs: Instead of throwing an exception, print
15118           a one-time warning about Validate not being implemented
15119         * XplatUIWin32.cs: Removed debug output
15121 2005-09-21  Peter Dennis Bartok  <pbartok@novell.com> 
15123         * Control.cs: Only set XplatUI background if we expect the windowing
15124           system to handle the background. This stops controls that draw their
15125           own background from flickering
15127         * XplatUIX11.cs: Support custom visuals and colormaps for window 
15128           creation. This allows, amongst other things, using MWF X11 windows 
15129           with OpenGL.
15131 2005-09-21  Peter Dennis Bartok  <pbartok@novell.com>
15133         * OpenFileDialog.cs, ContentsResizedEventArgs.cs, LibSupport.cs, GridItem.cs,
15134           CursorConverter.cs, SplitterEventHandler.cs, PropertyGridTextBox.cs,
15135           GridTablesFactory.cs, MethodInvoker.cs, AccessibleEvents.cs,
15136           SplitterEventArgs.cs, XplatUI.cs, Mime.cs, PropertySort.cs,
15137           TreeViewCancelEventHandler.cs, Form.cs, PropertyGridCommands.cs,
15138           IDataGridEditingService.cs, DateBoldEventHandler.cs, Label.cs,
15139           KeyboardLayouts.cs, TextControl.cs, ProgressBar.cs, ToolTip.cs,
15140           RadioButton.cs, OSFeature.cs, LinkLabel.cs, ColorDialog.cs,
15141           ThemeNice.cs, ErrorIconAlignment.cs, TreeNode.cs, MimeGenerated.cs,
15142           ComboBox.cs, DataGridTextBoxColumn.cs, ArrangeStartingPosition.cs,
15143           GridColumnStylesCollection.cs, 
15144           IDataGridColumnStyleEditingNotificationService.cs,
15145           PropertyGrid.cs, IFeatureSupport.cs, ICommandExecutor.cs,
15146           MdiLayout.cs, GridEntry.cs, ControlBindingsCollection.cs,
15147           GridTableStylesCollection.cs, TreeViewCancelEventArgs.cs, 
15148           TreeNodeCollection.cs, AmbientProperties.cs, 
15149           RichTextBoxSelectionAttribute.cs, RichTextBoxSelectionTypes.cs,
15150           DataObject.cs, ErrorProvider.cs, Splitter.cs,
15151           DataGridLineStyle.cs, Shortcut.cs, Control.cs,
15152           FontDialog.cs, SecurityIDType.cs, GridItemType.cs,
15153           BindingMemberInfo.cs, DataGridCell.cs, MdiChildContext.cs,
15154           IRootGridEntry.cs, PropertyGridView.cs, DataGridParentRowsLabelStyle.cs,
15155           FolderBrowserDialog.cs, OpacityConverter.cs, HelpProvider.cs,
15156           IComponentEditorPageSite.cs, DataGridTableStyle.cs, NavigateEventArgs.cs,
15157           NotifyIcon.cs, ContentsResizedEventHandler.cs, MenuItem.cs,
15158           PropertyTabChangedEventHandler.cs, TextBoxBase.cs, OpenTreeNodeEnumerator.cs,
15159           SelectionMode.cs, TextBox.cs, ListBindingConverter.cs,
15160           FileDialog.cs, KeysConverter.cs, DomainUpDown.cs,
15161           DataFormats.cs, SaveFileDialog.cs, GridItemCollection.cs,
15162           ArrangeDirection.cs, FeatureSupport.cs, SelectionRangeConverter.cs,
15163           RichTextBoxScrollBars.cs, NodeLabelEditEventHandler.cs, TreeNodeConverter.cs,
15164           MimeIcon.cs, X11Structs.cs, PropertyGridEntry.cs,
15165           ImageList.cs, ThemeWin32Classic.cs, X11Keyboard.cs,
15166           CheckedListBox.cs, HelpNavigator.cs, DateTimePickerFormat.cs,
15167           MdiClient.cs, DataGridDrawingLogic.cs, DataGridBoolColumn.cs,
15168           NodeLabelEditEventArgs.cs, Screen.cs, PropertyManager.cs,
15169           ComponentModel.cs, PropertiesTab.cs, CurrencyManager.cs,
15170           SizeGrip.cs, DateBoldEventArgs.cs, X11Dnd.cs, Panel.cs,
15171           Hwnd.cs, OSXStructs.cs, DrawMode.cs, XplatUIDriver.cs,
15172           RichTextBox.cs, PropertyTabChangedEventArgs.cs, CommonDialog.cs,
15173           DataGrid.cs, XplatUIX11.cs, RichTextBoxStreamType.cs, Win32DnD.cs,
15174           ErrorBlinkStyle.cs, TreeViewEventHandler.cs,
15175           PropertyValueChangedEventHandler.cs, IFileReaderService.cs,
15176           DataGridTextBox.cs, SelectedGridItemChangedEventArgs.cs, ScrollBar.cs,
15177           ListBox.cs, TreeViewAction.cs, Help.cs, TrackBar.cs,
15178           AxHost.cs, PropertyValueChangedEventArgs.cs, XplatUIOSX.cs,
15179           RichTextBoxFinds.cs, UpDownEventArgs.cs, Cursors.cs,
15180           CategoryGridEntry.cs, RichTextBoxWordPunctuations.cs, DataGridColumnStyle.cs,
15181           SelectedGridItemChangedEventHandler.cs, DateTimePicker.cs, NavigateEventHandler.cs,
15182           Clipboard.cs, UpDownEventHandler.cs, MonthCalendar.cs,
15183           SendKeys.cs, DataGridPreferredColumnWidthTypeConverter.cs, TreeView.cs,
15184           ThreadExceptionDialog.cs, ImageListConverter.cs, XplatUIWin32.cs,
15185           TreeViewEventArgs.cs: Fixed whitespace and set eol-style:native attribute
15187 2005-09-21  Jackson Harper  <jackson@ximian.com>
15189         * TreeNode.cs: Call Before/After Expand not Collapse when
15190         expanding.
15192 2005-09-20  Jackson Harper  <jackson@ximian.com>
15193         
15194         * XplatUIX11.cs: Use the more hand looking hand (in most themes).
15196 2005-09-16  Jordi Mas i Hernandez <jordi@ximian.com>
15197          
15198         * ListViewItem.cs:
15199                 - Fixes bug 76120
15200                 - Fixes proper storing of subitems
15201                 - Fixes not updated items
15203 2005-09-20  Peter Dennis Bartok  <pbartok@novell.com>
15205         * Control.cs, TextBoxBase.cs, TextControl.cs: Don't do certain
15206           things if our window handle isn't created yet. Also disabled 
15207           debug for TextBoxBase
15209 2005-09-20  Peter Dennis Bartok  <pbartok@novell.com> 
15211         * MenuAPI.cs: Remove filtering of events to allow menu usage
15213 2005-09-20  Miguel de Icaza  <miguel@novell.com>
15215         * Cursor.cs: Allow null to be passed to Cursor.Current.
15217 2005-09-20  Alexander Olk  <alex.olk@googlemail.com>
15219         * ThemeWin32Classic.cs:
15220           - Change some private methods/fields to protected virtual so that 
15221             they can be accessed and overriden in derived classes
15222           - First refactoring of some methods. Derived themes now don't 
15223             need to duplicate the complete code from ThemeWin32Classic
15224         * ThemeNice.cs:
15225           - Added nice StatusBar
15226           - Derive from ThemeWin32Classic and not Theme
15227           - Removed duplicate ThemeWin32Classic code
15229 2005-09-20  Miguel de Icaza  <miguel@novell.com>
15231         * Control.cs (ControlCollection.Add): If the value null is passed
15232         the control is ignored. 
15234         Optimize this loop.
15236 2005-09-19  Peter Dennis Bartok  <pbartok@novell.com> 
15238         * MenuAPI.cs: Replaced Application.Run() with a loop that tracks
15239           PostQuitMessage state.
15240         * XplatUIWin32.cs: Removed bogus PostQuitMessage P/Invoke with HWND arg
15242 2005-09-19  Peter Dennis Bartok  <pbartok@novell.com>
15244         * Application.cs: Our constructor will never get called, move 
15245           initialization to fields; fixes bug #75933
15247 2005-09-19 Hisham Mardam Bey <hisham.mardambey@gmail.com>
15249         * FileDialog.cs :
15250                 - Allow files to be selected properly using file name
15251                 combo box.
15252                 - Add ability to change diretory (absolute / relative)
15253                 using file name combo box.
15255 2005-09-16  Jordi Mas i Hernandez <jordi@ximian.com>
15256          
15257         * ListBox.cs: 
15258                 - Fixes Multicolumn listboxes item wrong calculations
15259                 - Allows to click when only one item is in the listbox
15260                 - Fixes crash when no items using keyboard navigation
15262 2005-09-16  Alexander Olk  <alex.olk@googlemail.com>
15264         * ComboBox.cs: Reverted almost everything from the latest patch which
15265           broke ComboBox
15267 2005-09-16  Kazuki Oikawa <kazuki@panicode.com>
15268         
15269         * ToolTip.cs:
15270                 - Fixed #Mtd2 of ToolTipTest.RemoveToolTipTest.
15271         * ComboBox.cs:
15272                 - When DropDownStyle is Simple, it does not show scrollbar 
15273                 to the last item of the list.
15274                 - When DropDownStyle is Simple, it crashed when the list was 
15275                 scrolled down with the down cursor key.
15276                 - Fixed a bug that when DropDownStyle is DropDownList, the 
15277                 selected item was not shown.
15278                 - The position of the selected item was not preserved when 
15279                 the next dropdown happened.
15280         * ThemeWin32Classic.cs:
15281                 - Items were wrapped at the right end.
15282         * CheckedListBox.cs:
15283                 - Fixed Add method
15284         * ListBox.cs:
15285                 - Items should be fully shown.
15286                 - When resizing and vertical scrollbar disappeared, the item 
15287                 of index 0 should be on the top of the list.
15288                 - GetItemRectangle should consider the size of ver. scrollbar
15289         * StatusBar.cs:
15290                 - SizingGrip area should not be allocated when it is not 
15291                 displayed.
15292                 - Now it reflects MinWidth of the containing panel and 
15293                 fixed a crash that happens when its width becomes so small.
15295 2005-09-13  Jordi Mas i Hernandez <jordi@ximian.com>
15297         * CheckedListBox.cs: Fixes bug 76028
15298         * ListBox.cs: Fixes bug 76028
15300 2005-09-13  Jordi Mas i Hernandez <jordi@ximian.com>
15302         * ThemeWin32Classic.cs: Sets clipping on DataGridPaintRowsHeaders
15303         * DataGridDrawingLogic.cs: fixes issues with Datagrid drawing
15305 2005-09-12  Jordi Mas i Hernandez <jordi@ximian.com>
15307         * XplatUIX11.cs: fixes System.NullReferenceException in some situations
15309 2005-09-09  Jonathan Chambers  <jonathan.chambers@ansys.com>
15311         * IRootGridEntry.cs: Changed namespace to PropertyGridInternal 
15313 2005-09-09  Jonathan Chambers  <jonathan.chambers@ansys.com>
15315         * IRootGridEntry.cs: Added
15316         * PropertyGridCommands.cs: Added
15317         * PropertiesTab.cs: Added missing methods and property
15318         * PropertyGridView.cs: Made class internal
15319         * PropertyGridTextBox.cs: Made class internal
15321 2005-09-09  Alexander Olk  <alex.olk@googlemail.com>
15323         * MimeIcon.cs: Try to check some other environment variables
15324           if "DESKTOP_SESSION" returns "default"
15326 2005-09-09  Alexander Olk  <alex.olk@googlemail.com>
15328         * ThemeNice.cs: Corrected background colors (e.g. menus)
15329         * ColorDialog.cs: Use correct background colors for controls
15331 2005-09-09  Alexander Olk  <alex.olk@googlemail.com>
15333         * ThemeNice.cs: Merged r49535 from ThemeWin32Classic
15335 2005-09-08  Peter Dennis Bartok  <pbartok@novell.com>
15337         * RichTextBox.cs: Added initial implementation
15338         * lang.cs: Removed. Was accidentally checked in long time ago
15339         * TODO: Removed. Contents were obsolete
15341 2005-09-06  Jonathan Chambers  <jonathan.chambers@ansys.com>
15342                                                                                 
15343         * PropertiesTab.cs : Added
15345 2005-09-06  Jonathan Chambers  <jonathan.chambers@ansys.com>
15346                                                                                 
15347         * PropertyGrid.cs : Update
15348         * PropertyGridView.cs : Update
15349         * System.Windows.Forms.resx : Added images and strings
15351 2005-09-06  Peter Dennis Bartok  <pbartok@novell.com> 
15353         * ThemeNice.cs: Do not dispose Pens retrieved from ResPool
15355 2005-09-06  Peter Dennis Bartok  <pbartok@novell.com>
15357         * XplatUIX11.cs: Force a flush after Ungrab; if case the app enters
15358           a busy loop right after the Ungrab the X11 display is otherwise 
15359           blocked
15361 2005-09-06  Jordi Mas i Hernandez <jordi@ximian.com>
15363         * ThemeWin32Classic.cs: Optimise the use of clipping
15365 2005-09-05  Jordi Mas i Hernandez <jordi@ximian.com>
15367         * DataGrid.cs: fixes recursion bug
15369 2005-09-03  Alexander Olk  <alex.olk@googlemail.com>
15371         * ThemeNice.cs: 
15372           - Draw RadioButton and CheckBox Buttons with DrawButtonBase
15373           - Cleanup
15375 2005-09-02  Alexander Olk  <alex.olk@googlemail.com>
15377         * ThemeNice.cs: Draw nice ProgressBars
15379 2005-09-01  Miguel de Icaza  <miguel@novell.com>
15381         * VScrollBar.cs: Another buglet found by Aaron's tool. 
15383         * ProgressBar.cs: Fix three recursive bugs found by Aaron Tomb's
15384         bug finder.
15386 2005-08-30  Alexander Olk  <alex.olk@googlemail.com>
15388         * ThemeNice.cs:
15389           - Added nicer menu drawing
15390           - Updated DrawTab
15391           - some refactoring
15393 2005-08-30  Peter Dennis Bartok  <pbartok@novell.com>
15395         * CreateParams.cs (ToString): Made output match MS
15396         * Control.cs (Text): Don't set Text or Focus via XplatUI unless 
15397             handle is already created (to avoid forcing window creation)
15398         * XplatUIX11.cs: Set window text to caption after creating window,
15399           in case Text was set before window was created
15400         * Form.cs: Use this.Text instead of a static string as caption
15402 2005-08-30  Peter Dennis Bartok  <pbartok@novell.com> 
15404         * NotifyIcon.cs: Don't set the window to visible; this screws
15405           up Win32 (causes WM_NCPAINT to be sent on Win32, which calls
15406           OnPaint without a bitmap)
15407         * XplatUIX11.cs: Removed Visible optimization in AddExpose; doesn't 
15408           happen very often anyway; we could add the check to the WM_PAINT 
15409           event generation code
15411 2005-08-30  Peter Dennis Bartok  <pbartok@novell.com>
15413         * NotifyIcon.cs: Fill the icon area with a background color, to 
15414           avoid 'residue' when transparent icons are drawn
15415         * XplatUIX11.cs:
15416           - Handle whole_window == client_window when destroying windows
15417           - SystrayAdd(): Set client_window to whole_window value to
15418             get mouse and other events passed to NotifyIcon
15420 2005-08-30  Peter Dennis Bartok  <pbartok@novell.com> 
15422         * Form.cs: Set proper default for Opacity property
15423         * NotifyIcon.cs:
15424           - ShowSystray(): Don't bother creating telling the OS
15425             about the systray item if no icon is provided
15426           - Now handles WM_NCPAINT message to deal with whole/client window
15427             split
15428           - Create window as visible to not get caught by Expose optimization
15429         * Hwnd.cs: Removed debug message
15430         * ComboBox.cs, ScrollBar.cs, ListBox.cs, TrackBar.cs, TabControl.cs,
15431           StatusBar.cs, TreeView.cs, XplatUIOSX.cs, XplatUIWin32.cs: Switched 
15432             PaintEventStart/End to use new client argument
15433         * TextBoxBase.cs:
15434           - Commented out debug messages
15435           - Switched PaintEventStart/End to use new client argument
15436         * XplatUI.cs: Added client window bool to PaintEventStart()/
15437           PaintEventEnd() calls, to support drawing in non-client areas
15438         * XplatUIDriver.cs: 
15439           - Added client window bool to PaintEventStart()/PaintEventEnd() 
15440             calls, to support drawing in non-client areas
15441           - Added conditional compile to allow using MWF BeginInvoke 
15442             on MS runtime
15443         * XplatUIX11.cs:
15444           - Added some conditional debug output
15445           - Fixed SystrayAdd() method to support new (for SystrayAdd, anyway)
15446             whole/client window split
15447           - Implemented handling of client argument to PaintEventStart()/End()
15448         * Control.cs:
15449           - Throw exception if BeginInvoke() is called and the window handle
15450             or one of the window's parent handles is not created
15451           - Added conditional compile to allow using MWF BeginInvoke on
15452             MS runtime
15453           - get_Parent(): Only sets parent if handle is created. This avoids
15454             forcing window handle creation when parent is set.
15455           - Now fires Layout and Parent changed events in proper order
15456           - Switched to use Handle instead of window.Handle for Z-Order setting,
15457             the get_Parent() patch above causes us to possibly get null for 'window'
15458           - Implemented handling of client argument to PaintEventStart()/End()
15459           - Now reports back to windows that WM_SETCURSOR was handled (to avoid
15460             default handling)
15461           - Now sends a Refresh() to all child windows when Refresh() is called
15463 2005-08-29  Peter Dennis Bartok  <pbartok@novell.com> 
15465         * Form.cs: Added (non-functional) Opacity property
15466         * XplatUIWin32.cs (SystrayAdd): Removed bogus line of code
15468 2005-08-29  Alexander Olk  <xenomorph2@onlinehome.de>
15469         * ThemeNice.cs: New theme for MWF, based on ThemWin32Classic
15470           use export MONO_THEME=nice to activate it.
15471           Currently supported controls:
15472           - Button
15473           - ComboBox
15474           - ScrollBar
15475           - TabControl (TabAlignment.Top only, other will follow)
15476         * ThemeEngine.cs: Add theme nice
15477         * ButtonBase.cs: Redraw button on MouseEnter and MouseLeave everytime,
15478           if enabled
15480 2005-08-25  Jonathan Chambers  <jonathan.chambers@ansys.com> 
15482         * Splitter.cs: Resize docked control and its neighbor.
15484 2005-08-24  Rafael Teixeira <rafaelteixeirabr@hotmail.com> 
15485         -- Making Windows with Menus layout correctly --
15486         * Form.cs : The first leg of the fix
15487                 Menu setter - adjust Client Size as needed to make space for the menu
15488                 SetClientSizeCore - doesn't call base version to be able to pass the 
15489                         menu handle to XplatUI.CalculateWindowRect
15490         * Hwnd.cs: Fix for menu_height, now gets from MenuAPI.MENU
15491         * XplatUIX11.cs: The critical second leg of the fix
15492                 GetWindowPos needs to use a recalculated client_rect
15493                 so that resizing the window doesn't break layout of child controls. 
15494                 Also a more complete rule to avoid X Server roundtrips in SetWindowPos
15495                 Lots of \t\n killed
15497 2005-08-23  Peter Dennis Bartok  <pbartok@novell.com> 
15499         * Label.cs: Now properly recalculates width and height on Font and Text
15500           changes if AutoSize is set
15502 2005-08-19  Rafael Teixeira <rafaelteixeirabr@hotmail.com> 
15503         * TreeView.cs : Revamped drawing logic, and support for FullRowSelect
15505 2005-08-19  Jordi Mas i Hernandez <jordi@ximian.com>
15507         * ImageList.cs: Makes ToString method compatible with MS
15509 2005-08-18  Jordi Mas i Hernandez <jordi@ximian.com>
15511         * MenuAPI.cs: fixes bug 75716
15513 2005-08-11 Umadevi S <sumadevi@novell.com>
15514         * Control.cs: Fixed Remove & RemoveAt to make the parent of the control null.
15516 2005-08-11 Umadevi S <sumadevi@novell.com>
15517         * Contorl.cs: Fixed ResetRightToLeft and ResetImeMode to work correctly
15519 2005-08-10  Umadevi S <sumadevi@novell.com>
15520         * CheckedListBox.cs: Fixed event firing on Adding to the CheckedListBox
15522 2005-08-07  Jordi Mas i Hernandez <jordi@ximian.com>
15524         * Menu.cs: fixes bug 75700
15525         * MenuAPI.cs: fixes navigation issues
15527 2005-08-09  Umadevi S <sumadevi@novell.com>
15528         * CheckedListBox.cs - simple fix for GetItemChecked.
15530 2005-08-08  Jordi Mas i Hernandez <jordi@ximian.com>
15532         * ComboBox.cs: Serveral fixes
15533         * ListBox.cs: Serveral fixes
15535 2005-08-05  Jordi Mas i Hernandez <jordi@ximian.com>
15537         * ComboBox.cs: Fixes FindString methods and GetItemHeight
15538         * ListBox.cs: Fixes FindString methods
15540 2005-08-05  Jordi Mas i Hernandez <jordi@ximian.com>
15542         * DataGrid.cs: fixes bugs exposed by new tests
15544 2005-08-04  Peter Dennis Bartok  <pbartok@novell.com> 
15546         * Mime.cs: Compile Mono assembly references only if compiling
15547           with Mono (Allows to build with VS.Net again)
15549 2005-07-28  Marek Safar  <marek.safar@seznam.cz>
15551         * Control.cs (PaintControlBackground): Draw background image
15552         corrrectly.
15553         (CheckForIllegalCrossThreadCalls): Stubbed.
15554         
15555         * Form.cs (OnCreateControl): Center when should be centered.
15556         
15557         * ThemeWin32Classic.cs (DrawPictureBox): Pass size.
15559 2005-07-19  Jordi Mas i Hernandez <jordi@ximian.com>
15561         * Binding.cs: Binding to properties should be case unsensitive
15563 2005-07-18 vlindos@nucleusys.com
15565         * DataGrid.cs: fixes setmember order
15567 2005-07-07  Alexander Olk  <xenomorph2@onlinehome.de>
15569         * MimeIcon.cs: added MimeIcon stuff (MimeIconEngine)
15570         * FileDialog.cs: FileDialog is now resizable and uses the new
15571           MimeIconEngine
15573 2005-07-06  Jordi Mas i Hernandez <jordi@ximian.com>
15575         * DataGridTextBoxColumn.cs: default value
15576         * GridColumnStylesCollection.cs: fixes event firing, checking MappingName
15577         * GridTableStylesCollection.cs: fixes checking MappingName
15578         * DataGridDrawingLogic.cs: fixes drawing logic issues
15579         * DataSourceHelper.cs: rewritten to make compatible with more data sources
15580         * DataGrid.cs: fixes    
15582 2005-07-06  Alexander Olk  <xenomorph2@onlinehome.de>
15584         * MimeGenerated.cs: Use case sensitive comparer for
15585           NameValueCollections
15587 2005-07-01  Jordi Mas i Hernandez <jordi@ximian.com>
15589         * DataGridTextBoxColumn.cs: bug fixes, code refactoring 
15590         * ThemeWin32Classic.cs: bug fixes, code refactoring
15591         * DataGridDrawingLogic.cs:  bug fixes, code refactoring
15592         * DataGrid.cs: bug fixes, code refactoring
15593         * DataGridTextBox.cs: bug fixes, code refactoring
15594         * DataGridColumnStyle.cs:  bug fixes, code refactoring
15595         * Theme.cs:  bug fixes, code refactoring
15597 2005-07-01  Peter Bartok  <pbartok@novell.com> 
15599         * TextControl.cs: Quick fix for the reported crash on ColorDialog
15600           and other text box usage
15602 2005-07-01  Jackson Harper  <jackson@ximian.com>
15604         * TabControl.cs: Make sure the bottom of the tab covers the pages
15605         border.
15607 2005-06-30  Peter Bartok  <pbartok@novell.com> 
15609         * Form.cs (ShowDialog): Assign owner of the dialog
15610         * TextBoxBase.cs: Always refresh caret size when deleting, caret
15611           might have been moved to a tag with different height
15613 2005-06-30  Jackson Harper  <jackson@ximian.com>
15615         * Form.cs: Don't create an infinite loop when setting focus
15616         * MenuItem.cs: Don't dirty the parents if we don't have any
15618 2005-06-29  Ben Maurer  <bmaurer@ximian.com>
15620         * LibSupport.cs: Rename
15622 2005-06-29  Peter Bartok  <pbartok@novell.com>
15624         * TextBoxBase.cs: Re-align caret after deleting a character
15625         * TextControl.cs:
15626           - DeleteChars(): Ensure that tag covers the provided position
15627           - StreamLine(): Drop reference for dropped tag
15629 2005-06-29  Peter Bartok  <pbartok@novell.com> 
15631         * TextControl.cs: 
15632           - Selections now work properly, anchoring at the initial location
15633             and properly extending in either direction (SetSelectionToCaret(),
15634             SetSelectionStart() and SetSelectionEnd())
15635           - No longer redraws the whole control on selection change, now
15636             calculates delta between previous and new selection and only
15637             invalidates/redraws that area
15638           - Fixed FindPos() math off-by-one errors
15639           - Changed DeleteChars() to verify the provided tag covers the
15640             provided position, selections may have a tag that doesn't cover
15641             the position if the selection is at a tag border
15642           - Fixed off-by-one errors in DeleteChars()
15643           - Added missing streamlining check in DeleteChars() to remove
15644             zero-length tags
15645           - Implemented Invalidate() method, now properly calculates exposures
15646             between two given lines/positions
15647           - Implemented SetSelection()
15648           - Obsoleted and removed FixupSelection()
15649           - Improved RecalculateDocument() logic, removing code duplication
15651 2005-06-29 Gonzalo Paniagua Javier <gonzalo@ximian.com>
15653         * LibSupport.cs: changes to match different input/output arguments.
15655 2005-06-29 Gonzalo Paniagua Javier <gonzalo@ximian.com>
15657         * LibSupport.cs: added libsupport.so init routine.
15659 2005-06-29  Jordi Mas i Hernandez <jordi@ximian.com>
15660         
15661         * ControlBindingsCollection.cs
15662                 - Throws an exception on null datasource when adding
15663                 - Checks for duplicated bindings when adding
15665 2005-06-28  Jackson Harper  <jackson@ximian.com>
15667         * TreeView.cs (OnKeyDown): Support left and right properly
15668         (navigates as well as expanding and collapsing.
15669         - Add support for Multiply, this expands all the selected nodes
15670         children.
15671         - Fix some tabbing.
15673 2005-06-28  Jackson Harper  <jackson@ximian.com>
15675         * TreeView.cs: Implement keyboard navigation, currently supports,
15676         LEFT, RIGHT, UP, DOWN, PGUP, PGDOWN, HOME, END, ADD, SUBTRACT. Add
15677         support for toggling checkboxes with the space bar.
15679 2005-06-28  Jackson Harper  <jackson@ximian.com>
15681         * OpenTreeNodeEnumerator.cs: Don't move past the begining of the
15682         tree.
15684 2005-06-28  Jackson Harper  <jackson@ximian.com>
15686         * TreeView.cs: Add missing event.
15688 2005-06-27  Peter Bartok  <pbartok@novell.com> 
15690         * TextControl.cs:
15691           - Made line ending size configurable (now allows for counting 
15692             lineendings as \n or \r\n)
15693           - Added margin to viewport to keep caret visible on right side
15694           - Fixed translation routines for line/pos to documentpos to consider
15695             cr/lf when counting (Fixes RichTextBox.SelectionFont issues)
15696           - Fixed some line-endings to be unix style
15697           - Fixed Document.FormatText to perform it's calculations 1-based
15698           - Added descriptions for a few methods that might otherwise get 
15699             used wrong
15700           - Added NOTE section with some basic conventions to remember at 
15701             the top of the file
15702           - Major fixup for RichTextBox selection drawing:
15703             * Fixed crashes when multiple tags on a single line were selected
15704             * fixed selection box drawing not overlaying text
15705             * fixed bogus offset calculation for tags not starting at index 1
15706             * Switched behaviour from using multiple Substrings of a 
15707               StringBuilder.ToString() to using multiple 
15708               StringBuilder.ToString(start, length) statements, hoping this is
15709               faster (kept original version commented out in the code, in case
15710               original version was faster)
15711         * TextBox.cs (set_TextAlignment): TextBox always needs to wrap if 
15712           alignment != Left
15713         * TextBoxBase.cs (CalculateDocument): Made protected so RichTextBox can
15714           call it as well
15716 2005-06-27  Jackson Harper  <jackson@ximian.com>
15718         * TabControl.cs: Move to the left and right with the arrow
15719         keys. These keys don't cycle beyond first and last like
15720         tab. Refresh all the tabs when scrolling them to the left or
15721         right.
15723 2005-06-27  Jackson Harper  <jackson@ximian.com>
15725         * TabControl.cs:
15726           - ToString: Added method
15727           - CreateParams: Remove TODO and comment
15728           - OnKeyDown: Cycle through bounds properly.
15729           - SelectedIndex: Scroll to the right or left if we need to
15730           display the newly selected tab.
15732 2005-06-23  Jackson Harper  <jackson@ximian.com>
15734         * TabControl.cs: Stay in bounds when cycling. Make sure Handled is
15735         set.
15737 2005-06-23  Jackson Harper  <jackson@ximian.com>
15739         * TabControl.cs: Keyboard handling. We now support CTRL-TAB,
15740         CTRL-SHIFT-TAB, and HOME, END are there any others?
15742 2005-06-23  Jackson Harper  <jackson@ximian.com>
15744         * XplatUIX11.cs: Get the modifier keys from the keyboard driver.
15746 2005-06-22  Jordi Mas i Hernandez <jordi@ximian.com>
15747         
15748         * DataGridTextBoxColumn.cs: fixes and enhancements
15749         * ThemeWin32Classic.cs: fixes and enhancements
15750         * DataGridBoolColumn.cs:  fixes and enhancements
15751         * DataGridDrawingLogic.cs:  fixes and enhancements
15752         * CurrencyManager.cs: fixes and enhancements
15753         * DataGrid.cs: fixes and enhancements
15754         * DataGridColumnStyle.cs:  fixes and enhancements
15756 2005-06-22  Jackson Harper  <jackson@ximian.com>
15758         * TabControl.cs: Add some missing methods that just call into the
15759         base. Make the TabPageCollection's IList interface behave in the
15760         same manner as the MS implementation.
15762 2005-06-22  Peter Bartok  <pbartok@novell.com> 
15764         * TextControl.cs: Added sanity check
15765         * TextBoxBase.cs: 
15766           - Fixed wrapping behaviour, don't set wrap on single line controls
15767             (this fixes the breakage of colordialog introduced in an earlier
15768              checkin)
15769           - Added rudimentary support for autoscrolling right-aligned controls
15770             (still needs fixing, also, center alignment scroll is missing)
15772 2005-06-22  Jordi Mas i Hernandez <jordi@ximian.com>
15773         
15774         * ScrollBar.cs: Fixes thumbpos on Maximum values
15776 2005-06-21  Jonathan Chambers <jonathan.chambers@ansys.com>
15777         
15778         * PropertyGridView.cs: Pass context information to UITypeEditors 
15780 2005-06-21  Peter Bartok  <pbartok@novell.com> 
15782         * TextBoxBase.cs:
15783           - Now calling PositionCaret with absolute space coordinates
15784           - Enabled vertical scrolling
15785           - Better tracking of scrollbar changes, tied into WidthChange
15786             event
15787           - Improved cursor tracking
15788           - Removed debug output
15789         * TextControl.cs:
15790           - PositionCaret coordinates are now works in absolute space, not 
15791             the canvas
15792           - Improved tracking of document size
15793           - Added events for width and height changes
15795 2005-06-21  Peter Bartok  <pbartok@novell.com>
15797         * Form.cs: Set focus to active control when form is activated
15798         * TextControl.cs: 
15799           - Added word-wrap functionality to RecalculateLine() 
15800           - Added some short function descriptions for VS.Net to aid in
15801             writing dependent controls
15802           - Added Caret property, returning the current coords of the caret
15803           - Added ViewPortWidth and ViewPortHeight properties
15804           - Added Wrap property
15805           - Added CaretMoved event
15806           - Removed some old debug code
15807           - Split() can now create soft splits
15808           - Added PreviousTag()/NextTag() to allow walking "tag-lists"
15809           - Added method to format existing text
15810           - Fixed size/alignment calculations to use viewport
15811           - RecalculateDocument now can handle changing line-numbers while
15812             calculating lines
15814         * TextBox.cs:
15815           - Added some wrap logic, we don't wrap if alignment is not left
15816           - Added casts for scrollbar var, base class switched types to
15817             also support RichTextBoxA
15818           - Implemented handling of scrollbar visibility flags
15820         * TextBoxBase.cs:
15821           - Switched scrollbars type to RichTextBoxScrollBars to support
15822             RichTextBox
15823           - Added tracking of canvas width/height
15824           - Switched scrollbars to be not selectable (to keep focus on text)
15825           - Added central CalculateDocument() method to handle all redraw
15826             requirements
15827           - Added ReadOnly support
15828           - Added WordWrap support
15829           - Fixed handling of Enter key (we now treat it as a DialogKey)
15830           - Fixed caret positioning when h or v scroll is not zero
15831           - Fixed placing/generation of vertical scrollbar
15832           - Added CalculateScrollBars() method to allow updating scrollbar
15833             limits and visibility
15834           - Fixed handling of horizontal scroll
15835           - Added handling of vertical scroll
15836           - Implemented auto-'jump' when caret moves to close to a left or
15837             right border and there is text to be scrolled into view (currently
15838             there's the potential for a stack overflow, until a bug in
15839             scrollbar is fixed)
15841 2005-06-21  Geoff Norton  <gnorton@customerdna.com>
15842         
15843         * XplatUIOSX.cs: Initial implementation of WM_ERASEBKGND
15845 2005-06-19  Alexander Olk  <xenomorph2@onlinehome.de>
15847         * Mime.cs:
15848         - added inodes.
15849         - return application/x-zerosize for files with size zero
15850           (if no extension pattern matches).
15851         - check matches collection for strings too.
15852         - return only the first mime type if the name value
15853           collection has more than one mime type.
15855 2005-06-18  Jonathan Chambers <jonathan.chambers@ansys.com>
15856         
15857         * PropertyGrid.cs: Cleaned up some TODOs
15858         * PropertyGridView.cs: Added support for UITypeEditors
15860 2005-06-17  Jordi Mas i Hernandez <jordi@ximian.com>
15861         
15862         * DataGrid.cs: clears cached value
15864 2005-06-17  Jordi Mas i Hernandez <jordi@ximian.com>
15866         * DataGridTextBoxColumn.cs: new rows, speed improvements, fixes, readonly prop.
15867         * DataGridDrawingLogic.cs: new rows, speed improvements, fixes, readonly prop.
15868         * DataGrid.cs: new rows, speed improvements, fixes, readonly prop.
15869         * DataGridColumnStyle.cs: new rows, speed improvements, fixes, readonly prop.
15870         
15871 2005-06-16  Jordi Mas i Hernandez <jordi@ximian.com>
15873         * ThemeWin32Classic.cs: fixes colour
15875 2005-06-15  Peter Bartok  <pbartok@novell.com>
15877         * MWFCategoryAttribute.cs: Added (Needed for PropertyGrid designer support)
15878         * MWFDescriptionAttribute.cs: Added (Needed for PropertyGrid designer support)
15879         * ButtonBase.cs: Added MWFCategory and MWFDescription attributes
15880         * Control.cs: Added some MWFCategory and MWFDescription attributes
15881         * ScrollBar.cs: Added some MWFCategory and MWFDescription attributes
15883 2005-06-15  Alexander Olk  <xenomorph2@onlinehome.de>
15885         * Mime.cs, MimeGenerated.cs: First draft of MWF mime stuff, see Mime.cs for
15886         usage
15888 2005-06-14  Jordi Mas i Hernandez <jordi@ximian.com>
15890         * DataGridTextBoxColumn.cs: default datagrid settings for Default Styles, fixes
15891         * DataGridTableStyle.cs: default datagrid settings for Default Styles, fixes
15892         * DataGridDrawingLogic.cs: default datagrid settings for Default Styles, fixes
15893         * DataGridBoolColumn.cs: default datagrid settings for Default Styles, fixes
15894         * DataGrid.cs: default datagrid settings for Default Styles, fixes
15895         * DataGridColumnStyle.cs: default datagrid settings for Default Styles, fixes
15897 2005-06-13  Jackson Harper  <jackson@ximian.com>
15899         * XplatUIX11.cs: Override SetAllowDrop on X11 so an error message
15900         isn't printed when the user enables dropping. (X11 does accept
15901         drops).
15902         
15903 2005-06-13  Jackson Harper  <jackson@ximian.com>
15905         * TreeView.cs: Remove some TODOS.
15907 2005-06-13  Jackson Harper  <jackson@ximian.com>
15909         * Form.cs: Hook into the mdi framework.
15910         * MdiClient.cs: Use the base control collections add method so
15911         parents get setup correctly. Set the default back colour and dock
15912         style.
15913         * MdiChildContext.cs: New class, this bad actor handles an
15914         instance of an MDI window. Right now there is only basic
15915         support. You can drag, close, and resize windows. Minimize and
15916         Maximize are partially implemented.
15918 2005-06-13  Jackson Harper  <jackson@ximian.com>
15920         * XplatUIX11.cs: Mash numbers together properly, otherwise we get
15921         freaky when both vals are negative. NOTE: There are probably other
15922         places in XplatUIX11 that this needs to be done.
15924 2005-06-13  Jordi Mas i Hernandez <jordi@ximian.com>
15926         * DataGrid.cs: implement missing methods, move KeyboardNavigation
15927         * DataGridColumnStyle.cs: fixes signature
15929 2005-06-12  Jackson Harper  <jackson@ximian.com>
15931         * XplatUIX11.cs: Use sizing cursors similar to the ones on
15932         windows.
15934 2005-06-11  Jackson Harper  <jackson@ximian.com>
15936         * StatusBarPanel.cs: Signature cleanups. Implement
15937         BeginInit/EndInit.
15939 2005-06-10  Jordi Mas i Hernandez <jordi@ximian.com>
15941         * DataGridTextBoxColumn.cs: Honors aligment
15942         * GridColumnStylesCollection.cs: Contains is case unsensitive
15943         * GridTableStylesCollection.cs: several fixes
15944         * DataGridTableStyle.cs: default column creation
15945         * DataGridDrawingLogic.cs: fixes
15946         * CurrencyManager.cs: ListName property
15947         * DataGrid.cs: multiple styles support
15948         * DataGridColumnStyle.cs: fixes
15949         
15951 2005-06-10  Peter Bartok  <pbartok@novell.com>
15953         * Control.cs(Select): Moved SetFocus call to avoid potential
15954           loops if controls change the active control when getting focus
15955         * UpDownBase.cs: Fixes to allow proper keyboard focus after clicking
15956           the up/down buttons
15958 2005-06-10  Matthias Felgner  <matthiasf@voelcker.ocm>
15960         * ImageListConverter.cs: Implemented
15962 2005-06-10  John BouAntoun <jba-mono@optusnet.com.au>
15964         * MonthCalendar.cs: Wired in NumericUpDown control for year
15966 2005-06-10  John BouAntoun <jba-mono@optusnet.com.au>
15968         * MonthCalendar.cs: Removed MonoTodo attributes on Click and
15969           DoubleClick events, since they are not meant to be fired.
15971 2005-06-09  Peter Bartok  <pbartok@novell.com>
15973         * UpDownBase.cs, NumericUpDown.cs, DomainUpDown.cs: Integrated
15974           Jonathan's standalone controls into MWF, implemented missing
15975           events, attributes and methods; added xxxAccessible classes
15976         * AccessibleObject.cs: Made fields internal so other classes
15977           can change them if needed
15979 2005-06-09  Jonathan Gilbert  <2a5gjx302@sneakemail.com>
15981         * UpDownBase.cs: Complete implementation
15982         * NumericUpDown.cs: Complete implementation
15983         * DomainUpDown.cs: Complete implementation
15985 2005-06-09  Jordi Mas i Hernandez <jordi@ximian.com>
15987         * DataGridTextBoxColumn.cs: drawing fixes
15988         * DataGridCell.cs: fixes ToString method to match MSNet
15989         * DataGridTableStyle.cs: fixes
15990         * DataGridBoolColumn.cs: fixes, drawing
15991         * DataGridDrawingLogic.cs: fixes, new methods
15992         * DataGridTextBox.cs: Keyboard and fixes
15993         * DataGrid.cs:
15994                 - Keyboard navigation
15995                 - Scrolling fixes
15996                 - Row selection (single, multiple, deletion, etc)
15997                 - Lots of fixes
15998         
15999 2005-06-07  Jackson Harper  <jackson@ximian.com>
16001         * ThemeWin32Classic.cs: Clear the background area when drawing
16002         buttons.
16004 2005-06-06  Peter Bartok  <pbartok@novell.com>
16006         * ImageListStreamer.cs: Fixed signature for GetData
16007         * CheckBox.cs: Fixed base class for CheckBoxAccessibleObject
16008         * ComboBox.cs:
16009           - Added missing ChildAccessibleObject class
16010           - Added missing OnXXXFocus overrides, switched to using those
16011             instead of the event handler
16012         * Control.cs:
16013           - Added Parent property for ControlAccessibleObject
16014           - Fixed signatures
16015           - Fixed attributes
16016           - Added ResetBindings()
16017         * ListBindingConverter.cs: Implemented some methods
16018         * ButtonBase.cs: Added missing ButtonBaseAccessibleObject class
16019         * ImageList.cs: Implemented basic handle scheme, removed TODOs
16020         * ContainerControl.cs: Fixed signature, now subscribing to the
16021           ControlRemoved event instead of overriding the handler, LAMESPEC
16022         * CurrencyManager.cs: Added missing attribute
16023         * MonthCalendar.cs: Added missing properties
16025 2005-06-06  Jordi Mas i Hernandez <jordi@ximian.com>
16027         * DataGridColumnStyle.cs: fixes for DataGridColumnStyle
16028         
16029 2005-06-06  Gaurav Vaish and Ankit Jain
16031         * DataSourceHelper.cs: Gaurav Vaish and Ankit Jain patch for databinding
16032         * DataGrid.cs: Gaurav Vaish and Ankit Jain patch for databinding
16033         
16034 2005-06-06  Jordi Mas i Hernandez <jordi@ximian.com>
16036         * Control.cs: fixes CreateParams Width / Height.
16038 2005-06-05  Peter Bartok  <pbartok@novell.com>
16040         * Win32DnD.cs: Removed compilation warnings
16042 2005-06-05  Peter Bartok  <pbartok@novell.com>
16044         * Control.cs (CreateParams): Since we don't know if one of the
16045           properties we use is overridden, lets make sure if we fail accessing
16046           we continue with a backup plan
16048 2005-06-05  Peter Bartok  <pbartok@novell.com>
16050         * Win32DnD.cs:
16051           - Removed debug output
16052           - Added MarshalAs attribute to ensure proper marshalling of FORMATETC
16053             struct
16054           - Plugged resource leak
16055         * XplatUIStructs.cs: Changed ClipboardFormats size to ushort, to match
16056           MS size
16058 2005-06-05  Peter Bartok  <pbartok@novell.com>
16060         * XplatUIWin32.cs: Removed DnD code
16061         * Win32DnD.cs: Implemented drop source and drop target functionality
16063 2005-06-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
16065         * UpDownBase.cs: remove duplicate addition of event, enable some code
16066         that was commented out.
16067         * NumericUpDown.cs: added missing attributes and Hexadecimal property.
16068         Validate input when a key is pressed. It works fine now for every
16069         combination of Hexadecimal. Only missing some drawing love when sharing
16070         space with other controls.
16072 2005-06-04  Peter Bartok  <pbartok@novell.com>
16074         * Control.cs:
16075           - We need to pass a window for DragDrop, so enable callback events
16076           - Added DnD callback events when being a DragSource
16077         * XplatUI.cs (StartDrag): Added window handle argument
16078         * XplatUIDriver.cs (StartDrag): Added window handle argument
16079         * QueryContinueDragEventArgs: Made fields internally accessible so
16080           drivers can set them
16081         * GiveFeedbackEventArgs: Made fields internally accessible so drivers
16082           can set them
16084 2005-06-03  Jordi Mas i Hernandez <jordi@ximian.com>
16086         * DataGridTextBoxColumn.cs: column text editing
16087         * DataGridTableStyle.cs: Respect columns styles created by the user
16088         * DataGridDrawingLogic.cs: lots of drawing fixes and enhanments
16089         * DataGridBoolColumn.cs: bool column editing
16090         * DataGrid.cs: fixes to scrolling, properties, etc
16091         * DataGridTextBox.cs: handle keyboard
16092         * DataGridColumnStyle.cs: fixes
16094 2005-06-02  Jackson Harper  <jackson@ximian.com>
16096         * ImageListStreamer.cs: Somewhat broken implementation of
16097         GetObjectData. The RLE needs some work to match MS properly.
16099 2005-06-02  Jackson Harper  <jackson@ximian.com>
16101         * X11Dnd.cs: Attempting to keep at least one file in MWF
16102         monostyled.
16104 2005-06-02  Peter Bartok  <pbartok@novell.com>
16106         * X11DnD.cs: Use Marshal.SizeOf instead of sizeof, no /unsafe required
16107           that way
16109 2005-06-02  Peter Bartok  <pbartok@novell.com>
16111         * Control.cs: Removed MonoTODO from DoDragDrop and added call to Xplat
16112         * XplatUI.cs: Added DoDragDrop() method
16113         * XplatUIDriver.cs: Added DoDragDrop() method
16115 2005-06-02  Jackson Harper  <jackson@ximian.com>
16117         * Splitter.cs: Implement BorderStyle.
16119 2005-06-02  Jackson Harper  <jackson@ximian.com>
16121         * XplatUIX11.cs: Tie into the X11Dnd subsystem.
16122         * X11Dnd.cs: New file. A subsystem that handles drag and drop on
16123         X11 using XDND.
16125 2005-06-02  Peter Bartok  <pbartok@novell.com>
16127         * DataObject.cs:
16128           - Added Data setter
16129           - Fixed broken insertion code for SetData, now also
16130             overwrites any existing entry of the same format name
16131         * Hwnd.cs: Added list of pointers that automatically gets
16132           freed when the window is disposed
16133         * XplatUI.cs: Call driver initialization method when loading
16134           a driver
16135         * Control.cs:
16136           - OnDragLeave takes EventArgs, not DragEventArgs
16137           - Added setting of WS_EX_ACCEPTFILES style when dropping is
16138             supported
16139           - Forces style update when drop state changes
16140         * XplatUIWin32.cs: Implemented Drag'n'Drop (as good as possible,
16141           not perfect since we cannot (yet) call the IDataObject.GetData()
16142           method, we keep getting 0x80004005 error, dunno why)
16144 2005-06-02  Peter Bartok  <pbartok@novell.com>
16146         * DragEventArgs.cs: Make fields internal so we can cache the
16147           object and re-set the fields from XplatUI
16149 2005-06-02  Jackson Harper  <jackson@ximian.com>
16151         * Control.cs: Add some internal methods so the DnD subsystem can
16152         raise DnD events. Also call into the driver when AllowDrop is set.
16153         * XplatUI.cs:
16154         * XplatUIDriver.cs: New method for setting whether or not a window
16155         is allowed to accept drag and drop messages.
16156                 
16157 2005-06-01  Jordi Mas i Hernandez <jordi@ximian.com>
16158         
16159         * ScrollBar.cs: Make sure that values sent in Scroll events
16160         are always between Maximum and Minimum.
16162 2005-06-01  Marek Safar  <marek.safar@seznam.cz>
16164         * Menu.cs: Call MenuChanged when menuitem visibility has been
16165         changed.
16166         * MenuItem.cs: Rebuild menu when item is (not) visible.
16167         * MainMenu.cs: MainMenu has special MenuChanged.
16168         * Theme.cs: Caption and FrameBorderSize are not fixed.
16169         * XplatUI.cs: Added CaptionHeight,FrameBorderSize.
16170         * XplatUIDriver.cs: Introduced Caption and FrameBorderSize.
16171         * XplatUIX11.cs,
16172         * XplatUIOSX: Caption and FrameBorderSize not implemented yet.
16173         * XplatUIWin32.cs: Get Caption and FrameBorderSize from system.
16175 2005-05-30  Jackson Harper  <jackson@ximian.com>
16177         * DataFormat.cs: We can't statically initialize this stuff because
16178         it calls into the xplatui and could create a loop. So we lazy init
16179         it.
16181 2005-05-28  Jackson Harper  <jackson@ximian.com>
16183         * Control.cs: Proper implementation of Product(Name/Version).
16185 2005-05-27  Jackson Harper  <jackson@ximian.com>
16187         * DataObject.cs: Dont crash if no data is found.
16189 2005-05-26  Rafael Teixeira  <rafaelteixeirabr@hotmail.com>
16190         * MdiClient.cs: Add missing Localizable attribute to BackgroundImage property
16191                 as per status page, guessing it should be set to true
16193 2005-05-26  Jordi Mas i Hernandez <jordi@ximian.com>
16195         * DataGridTextBoxColumn.cs: Draws text and basic text formatting
16196         * DataGridTableStyle.cs: set proper formatting text, def header text
16197         * ThemeWin32Classic.cs: new themable paramaters
16198         * DataGridBoolColumn.cs: paint check box, get data, fixes
16199         * DataGridDrawingLogic.cs: huge improvements in painting, fixes, new methods
16200         * DataGrid.cs: fixes properties, implements vertical and horizontal scrolling
16201         * DataGridColumnStyle.cs: fixes
16202         * Theme.cs: new themable paramaters
16203                 
16204 2005-05-26  Peter Bartok  <pbartok@novell.com>
16206         * ContainerControl.cs: Pass AdjustFormScrollbars() call on to base
16208 2005-05-24 Jonathan S. Chambers <jonathan.chambers@ansys.com>
16209         * Control.cs: Fixed LowOrder and HighOrder to preserve sign.
16211 2005-05-24  Peter Bartok  <pbartok@novell.com>
16213         * OpenFileDialog.cs, Form.cs, Menu.cs, GroupBox.cs, UserControl.cs,
16214           Label.cs, DataGridTextBoxColumn.cs, PropertyGrid.cs, ErrorProvider.cs
16215           Splitter.cs, Control.cs, FontDialog.cs, TabPage.cs,
16216           FolderBrowserDialog.cs, HelpProvider.cs, DataGridTableStyle.cs,
16217           NotifyIcon.cs, FileDialog.cs, ListView.cs, SaveFileDialog.cs,
16218           ToolBarButton.cs, ImageList.cs, DataGridBoolColumn.cs, Panel.cs,
16219           DataGrid.cs, DataGridTextBox.cs, ListBox.cs, TrackBar.cs,
16220           AxHost.cs, TabControl.cs, ScrollableControl.cs, ToolBar.cs,
16221           DataGridColumnStyle.cs, PictureBox.cs, DateTimePicker.cs,
16222           StatusBar.cs, MonthCalendar.cs, TreeView.cs: Added
16223           missing attributes, etc
16224         * DataGridPreferredColumnWidthTypeConverter.cs: Added
16226 2005-05-24  Peter Bartok  <pbartok@novell.com>
16228         * Help.cs: Added, implemented trivial functions, throws up MessageBox
16229           when user tries to get help
16230         * DataObject.cs, DataFormats.cs, LinkArea.cs,
16231           SelectionRangeConverter.cs, Clipboard.cs : Removed unused variables
16232           to suppress warnings
16233         * XplatUIWin32.cs, XplatUIOSX.cs, XplatUIX11.cs: Removed unused code to
16234           avoid unreachable code warning
16236 2005-05-20  Peter Bartok  <pbartok@novell.com>
16238         * CursorConverter.cs (ConvertTo): Switched to use Cursor.GetObjectData
16240 2005-05-20  Jordi Mas i Hernandez <jordi@ximian.com>
16242         * DataGridTextBoxColumn.cs: Basic painting methods
16243         * DataGridTableStyle.cs: Set table style in the column
16244         * ThemeWin32Classic.cs: Use Theme for colors
16245         * DataGridDrawingLogic.cs: Implement more drawing
16246         * DataGrid.cs: drawing, theming, enhacements, fixes
16247         * DataGridColumnStyle.cs: fixes, drawing
16248         * Theme.cs: theming for Datagrid
16250 2005-05-20  Peter Bartok  <pbartok@novell.com>
16252         * Cursor.cs: Implemented GetObjectData() method
16254 2005-05-20  Peter Bartok  <pbartok@novell.com>
16256         * Cursors.cs: Added setting of cursor name
16257         * Cursor.cs:
16258           - Implemented constructors
16259           - Implemented Draw and DrawStretched
16260           - Implemented Current property
16261           - Implemented == and != operators
16262           - Implemented Dispose()
16263           - Implemented ToString
16264           - Added missing attributes
16265         * XplatUIX11.cs:
16266           - Added missing reset for OverrideCursor when DoEvents is called
16267           - Fixed creation of cursor, logic was wrong
16268         * XplatUIWin32.cs:
16269           - Added missing reset for OverrideCursor when DoEvents is called
16270           - Fixed creation of cursor, bit arrays were swapped
16271         * Clipboard.cs: Removed obsolete MonoTODO attribute
16273 2005-05-20  Jordi Mas i Hernandez <jordi@ximian.com>
16275         * ComboBox.cs: fixes OnSelectedItemChanged
16276         * ControlBindingsCollection.cs: fixes item range check
16278 2005-05-20  Jordi Mas i Hernandez <jordi@ximian.com>
16280         * UpDownBase.cs:
16281                 - Calc preferred height properly
16282                 - Implement missing properties
16283                 
16284         * NumericUpDown.cs: Implement missing events
16286 2005-05-19  Jackson Harper  <jackson@ximian.com>
16288         * TabControl.cs: New method that resizes the tab pages before
16289         redrawing them. This as needed as the control is double buffered
16290         and sizing will not be recalculated unless ResizeTabPages is
16291         called.
16292         * TabPage.cs: Set base.Text instead of Text in the constructor so
16293         that UpdateOwner does not get called. Use the new Redraw method of
16294         TabControl instead of Refresh so the sizing is recalculated.
16295         * ThemeWin32Classic.cs: Draw the text for button tabs.
16297 2005-05-19  Jackson Harper  <jackson@ximian.com>
16299         * Control.cs: Paint control background images. Fix typo where
16300         PaintControlBackground was not getting called correctly.
16302 2005-05-19  Peter Bartok  <pbartok@novell.com>
16304         * ScrollableControl.cs (DisplayRectangle): Undid my last change until
16305           I can investigate, apparently I broke FileDialog
16307 2005-05-19  Marek Safar  <marek.safar@seznam.cz>
16309         * AxHost.cs: Some simple properties.
16310         * Control.cs: window must be accessible after ctor.
16311         * Form.cs: Added TransparencyKey property.
16312         * TextBoxBase.cs: Implemented Clear. Text property can be null.
16313         * XplatUIWin32.cs: SetBorderStyle implemented.
16315 2005-05-18  Peter Bartok  <pbartok@novell.com>
16317         * DataObject.cs: Entries are not global but particular to the
16318           DataObject, now it behaves that way
16319         * XplatUIWin32.cs: Implemented Clipboard methods
16320         * Clipboard.cs: Implemented
16321         * ScrollableControl.cs (DisplayRectangle): Fixed calculation
16322         * XplatUIOSX.cs: Updated to final clipboard prototypes
16323         * XplatUIX11.cs: Implemented Clipboard methods
16324         * XplatUIDriver.cs: Updated to final clipboard prototypes
16325         * XplatUIStructs.cs:
16326           - Added BITMAPINFOHEADER struct
16327           - Added ClipboardFormats enum
16328         * X11Structs.cs:
16329           - Added ClipboardStruct
16330           - Added Atom enum items for clipboard types
16331           - Fixed atom types for Selection event structures
16332         * DataFormats.cs:
16333           - Added internal properties and methods for drivers to enumerate
16334             all known formats
16335           - Switched initialization method to allow drivers to assign their
16336             own IDs even for the MS predefined clipboard IDs
16337         * XplatUI.cs: Updated to final clipboard interface
16339 2005-05-18 Jonathan S. Chambers <jonathan.chambers@ansys.com>
16340         * PropertyGridView.cs: Fixed compiler warnings.
16342 2005-05-18 Jonathan S. Chambers <jonathan.chambers@ansys.com>
16343         * PropertyGrid.cs: Added some event calls
16344         * PropertyGridView.cs: Change drawing code to use double buffering
16345         * PropertyGridTextBox.cs: Changed Text property name
16346         * GridItem.cs: Added Bounds property.
16347         * GridEntry.cs: Added Bounds property.
16349 2005-05-17  Lluis Sanchez Gual  <lluis@novell.com>
16351         * Binding.cs: Use IsInstanceOfType instead of IsAssignableFrom
16352         since GetType() may not return the correct type if the object is
16353         a remoting proxy.
16355 2005-05-17  Jordi Mas i Hernandez <jordi@ximian.com>
16357         * TreeNodeCollection.cs: fixes get/set item ranges
16358         
16359 2005-05-15  Jordi Mas i Hernandez <jordi@ximian.com>
16361         * ListBox.cs: Kazuki Oikawa's PreferredHeight and ItemHeight fixes
16362                 
16363 2005-05-15  Jordi Mas i Hernandez <jordi@ximian.com>
16365         * ComboBox.cs: Fix item range comparation
16366         * ListView.cs: Fix item range comparation
16368 2005-05-03  Alexander Olk  <xenomorph2@onlinehome.de>
16370         * FontDialog.cs:
16371           - Clear example panel when OnPaint is called
16372           - Better solution for displaying the example panel text
16373           - Select default indexes in the ListBoxes
16375 2005-05-11  Geoff Norton  <gnorton@customerdna.com>
16377         * XplatUIOSX.cs: Avoid painting into invisible views.  Fixes #74926
16379 2005-05-11  Peter Bartok  <pbartok@novell.com>
16381         * LinkArea.cs: Added and implemented LinkAreaTypeConverter class
16382         * SelectionRangeConverter.cs: Implemented
16383         * PropertyGrid.cs: Fixed attribute value
16384         * Control.cs:
16385           - Invoke(): Don't call Begin/EndInvoke if it is not neccessary
16386           - Added Sebastien Pouliot's CAS Stack Propagation fixes
16387         * XplatUIDriver.cs: Added new XplatUIDriverSupport class, for code
16388           that's common to all drivers. First methods to go there are
16389           Sebastien Pouliot's CAS Stack Propagation helper methods
16390         * XplatUIWin32.cs, XplatUIX11.cs, AsyncMethodData.cs: Fixes by
16391           Sebastien Pouliot for CAS Stack Propagation
16393 2005-05-11  Geoff Norton  <gnorton@customerdna.com>
16395         * OSXStructs.cs:
16396           XplatUIOSX.cs: More cosmetic cleanup courtesy of Artyom Tyazhelov (Artyom.Tyazhelov@helmes.ee)
16398 2005-05-12  Jordi Mas i Hernandez <jordi@ximian.com>
16400         * DataGridTextBoxColumn.cs: fixed some members
16401         * GridColumnStylesCollection.cs: indexed column is case insensitive
16402         * DataGridTableStyle.cs: fixes
16403         * ThemeWin32Classic.cs: add new theme parameter
16404         * Theme.cs: add new theme parameter
16405         * DataGridDrawingLogic.cs: Datagrid's drawing logic
16406         * DataGrid.cs: fixes, new internal properties, etc.
16407         * DataGridColumnStyle.cs: allows to set grid value
16408         *
16410 2005-05-10  Peter Bartok  <pbartok@novell.com>
16412         * AccessibleObject.cs:
16413           - Removed MonoTODO attribute on help, method is correct
16414           - Fixed Bounds property
16415         * AxHost.cs: Moved MonoTODO
16416         * ButtonBase.cs: Now setting AccessibleObject properties
16417         * RadioButton.cs: Setting proper AccessibleObject role
16418         * CheckBox.cs: Setting proper AccessibleObject role
16419         * ControlBindingsCollection.cs: Added properties, methods and attributes
16420         * DataFormats.cs: Fixed awkward internal API, and changed to enable
16421           userdefined DataFormats.Format items as well
16422         * ListControl.cs: Removed data_member from the public eye
16423         * OpenFileDialog.cs:
16424           - Made class sealed
16425           - Added missing attributes
16426         * SaveFileDialog.cs: Added missing attributes
16427         * ImageListStreamer.cs: Fixed code that caused warnings
16428         * LinkLabel.cs: Removed unreachable code
16429         * TreeView.cs: Fixed code that caused warnings
16430         * PropertyGridView.cs: Fixed code that caused warnings
16431         * GridColumnStylesCollection.cs: Added missing attributes
16432         * GridTableStylesCollection: Added missing attribute
16433         * PropertyManager: Added .ctor
16434         * SecurityIDType: Added
16435         * DataObject.cs: Implemented class
16436         * LinkArea.cs: Added missing attribute
16438 2005-05-11  Jordi Mas i Hernandez <jordi@ximian.com>
16440         * RadioButton.cs: call base method to allow to fire OnClick event
16441         * UpDownBase.cs: OnMouseUp call base method
16442         * CheckedListBox.cs: call base method before returning
16443         * TrackBar.cs: call base method before returning
16444         
16446 2005-05-10  Peter Bartok  <pbartok@novell.com>
16448         * XplatUIX11.cs: Fix for #74902, check pending timers when peeking
16449           for messages
16451 2005-05-10  Peter Bartok  <pbartok@novell.com>
16453         * DataFormats.cs: Implemented
16454         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs,
16455           XplatUIX11.cs: Added Clipboard APIs
16456         * XplatUIWin32.cs: Implemented Clipboard APIs
16457         * FolderBrowserDialog.cs: Added missing event, attributes
16459 2005-05-10  Jordi Mas i Hernandez <jordi@ximian.com>
16461         * CheckBox.cs: call base method to allow to fire OnClick event
16463 2005-05-09  Sebastien Pouliot  <sebastien@ximian.com>
16465         * XplatUI.cs: Use PlatformID.Unix under NET_2_0.
16467 2005-05-06  Peter Bartok  <pbartok@novell.com>
16469         * XplatUIX11.cs: Redid Jackson's fix, it was causing a busy loop
16470         * Screen.cs: Implemented
16471         * HelpNavigator.cs: Added
16472         * XplatUIWin32.cs: Added SystemParametersInfo call, fixed WorkArea
16473           property
16474         * HelpProvider.cs: Implemented all we can do until we have a CHM
16475           help library (which means that "What's This" does work now)
16477 2005-05-06  Jackson Harper  <jackson@ximian.com>
16479         * XplatUIX11.cs: Fix waking up the main loop.
16480                 
16481 2005-05-05  Peter Bartok  <pbartok@novell.com>
16483         * XplatUI.cs: Updated revision
16484         * Form.cs: Removed enless loop
16485         * GroupBox.cs (OnPaint): Added call to base.OnPaint()
16486         * Label.cs (OnPaint): Added call to base.OnPaint()
16487         * ToolTip.cs: Made ToolTipWindow reusable for other controls
16488         * LinkLabel.cs (OnPaint): Added call to base.OnPaint()
16489         * UpDownBase.cs (OnPaint): Moved base.OnPaint() call to end of method
16490         * AxHost.cs: Added
16491         * ButtonBase.cs: Moved base.OnPaint() call to end of method
16492         * ThemeWin32Classic.cs: Replaced references to ToolTip with references
16493           to ToolTip.ToolTipWindow for drawing and size methods; this allows
16494           reuse of ToolTipWindow by other controls
16495         * SizeGrip.cs: Moved base.OnPaint() call to end of method
16496         * XplatUIX11.cs: Now clipping drawing area (experimental)
16497         * PictureBox.cs: Moved base.OnPaint() call to end of method
16498         * Theme.cs: Fixed ToolTip abstracts to match new format
16499         * ErrorProvider.cs: Implemented
16501 2005-05-05  Jordi Mas i Hernandez <jordi@ximian.com>
16503         * Label.cs: fire events using OnAutoSizeChanged and OnTextAlignChanged
16504         * LinkLabel.cs:
16505                 - Adds cursors
16506                 - Handles focus
16507                 - Implements LinkBehavior
16508                 - Fixes many issues
16510 2005-05-03  Jackson Harper  <jackson@ximian.com>
16512         * ListView.cs: Calculate the scrollbar positioning on resize and
16513         paint, so they get put in the correct place.
16515 2005-05-03  Alexander Olk  <xenomorph2@onlinehome.de>
16517         * ColorDialogs.cs: The small color panels are now handled by
16518           SmallColorControl. This fixes drawing of the focus rectangle
16519           and adds a 3D border.
16521 2005-05-03  Peter Bartok  <pbartok@novell.com>
16523         * Control.cs: Modified version of Jonathan Chamber's fix for
16524           double-buffering
16526 2005-05-03  Jackson Harper  <jackson@ximian.com>
16528         * ListView.cs: Remove redraw variable. Control now handles whether
16529         or not a redraw needs to be done, and will only raise the paint
16530         event if redrawing is needed.
16532 2005-05-03  Jackson Harper  <jackson@ximian.com>
16534         * Splitter.cs: No decorations for the splitter form. Cache the
16535         hatch brush.
16537 2005-05-03  Jackson Harper  <jackson@ximian.com>
16539         * TreeView.cs: Use dashed lines to connect nodes. Use the
16540         ControlPaint method for drawing the focus rect instead of doing
16541         that in treeview.
16543 2005-05-02  Peter Bartok  <pbartok@novell.com>
16545         * LinkLabel.cs: Fixed the fixes from r43566 and 43521
16547 2005-04-29  Jackson Harper  <jackson@ximian.com>
16549         * ThemeWin32Classic.cs: Don't clear the GC that will clear the
16550         entire image buffer. Just clear the clipping rectangle.
16552 2005-04-29  Jackson Harper  <jackson@ximian.com>
16554         * ThemeWin32Classic.cs: Don't draw list view items that are
16555         outside the clipping rectangle.
16557 2005-04-29  Jordi Mas i Hernandez <jordi@ximian.com>
16559         * ListBox.cs: added horizontal item scroll
16561 2005-04-29  Jackson Harper  <jackson@ximian.com>
16563         * ThemeWin32Classic.cs: Remove some old debug code that was
16564         causing flicker with the new double buffering code.
16566 2005-04-29  John BouAntoun  <jba-mono@optusnet.com.au>
16568         * MonthCalendar.cs, DateTimePicker.cs: Made monthcalendar dropdwon
16569         behave like combobox and comboboxlist (still not sure if this is
16570         correct though).
16572 2005-04-28  Jackson Harper  <jackson@ximian.com>
16574         * ThemeWin32Classic.cs: Don't fill the middle of progress
16575         bars. This fills areas outside of the clip bounds that don't need
16576         to be filled.
16578 2005-04-28  Jackson Harper  <jackson@ximian.com>
16580         * Control.cs: Don't expose functionality to touch the image buffers.
16581         * ProgressBar.cs:
16582         * ListView.cs: We do not need to (and no longer can) manipulate
16583         the image buffers directly. All of this is handled by Control.
16585 2005-04-28  Peter Bartok  <pbartok@novell.com>
16587         * RichTextBoxSelectionAttribute.cs, RichTextBoxSelectionTypes.cs,
16588           RichTextBoxScrollBars.cs, RichTextBoxStreamType.cs,
16589           RichTextBoxFinds.cs, RichTextBoxWordPunctuations.cs: Added
16591 2005-04-28  Jordi Mas i Hernandez <jordi@ximian.com>
16593         * Combobox:
16594                 - Adjust control's height for non-simple comboboxes (bug fix)
16595                 - Remove dead code
16596         * MenuAPI.cs: remove unused var
16597         * ScrollBar.cs: remove unsed var
16598                  
16599         * ListBox.cs: unselect items when clearing
16601 2005-04-28  Jordi Mas i Hernandez <jordi@ximian.com>
16603         * ListControl.cs: honors OnPositionChanged and default Selected Item
16604         * ListBox.cs: unselect items when clearing
16606 2005-04-27  Jackson Harper  <jackson@ximian.com>
16608         * X11Keyboard.cs: Initialize a default keyboard and give a warning
16609         if a "correct" keyboard is not found. This will make us not crash,
16610         but might give some users bad keyboard layouts...seems to be the
16611         same thing rewind does.
16613 2005-04-27  Jackson Harper  <jackson@ximian.com>
16615         * BindingManagerBase.cs: Attach the current/position changed
16616         handlers to their respective events.
16618 2005-04-27  Jackson Harper  <jackson@ximian.com>
16620         * Control.cs: Make sure that the first WM_PAINT does a full draw,
16621         not just a blit.
16622         * ThemeWin32Classic.cs: Don't fill the background for picture
16623         boxes. This could overright user drawing.
16624         * ComboBox.cs: Just fill the clipping rect not the entire client
16625         rect when drawing the background. This prevents pieces of the
16626         image buffer from getting overwritten and is theoretically faster.
16628 2005-04-26  Jordi Mas i Hernandez <jordi@ximian.com>
16630         * ComboBox.cs: Databinding support fixes, fire missing events
16631         * ListControl.cs: implement missing methods and properties, fixes
16632         * ThemeWin32Classic.cs: Databiding support on Drawing
16633         * CheckedListBox.cs: Databinding support fixes, fire missing events
16634         * ListBox.cs: Databinding support fixes, fire missing events
16635         
16636 2005-04-25  Peter Bartok  <pbartok@novell.com>
16638         * LinkLabel.cs: Length of LinkArea is not allowed to be negative
16640 2005-04-25  Jackson Harper  <jackson@ximian.com>
16642         * TreeView.cs: Use the horizontal scrollbars height not width when
16643         determining how much of the client area is available.
16645 2005-04-25  Jackson Harper  <jackson@ximian.com>
16647         * Control.cs: Double buffering is handled differently now. As per
16648         the spec, the extra buffer is created in the WM_PAINT message and
16649         passed down to the control's drawing code.
16650         * GroupBox.cs:
16651         * Label.cs:
16652         * CheckBox.cs:
16653         * ProgressBar.cs:
16654         * RadioButton.cs:
16655         * ColorDialog.cs:
16656         * ComboBox.cs:
16657         * PropertyGridView.cs:
16658         * UpDownBase.cs:
16659         * MessageBox.cs:
16660         * MenuAPI.cs:
16661         * ListView.cs:
16662         * ButtonBase.cs:
16663         * SizeGrip.cs:
16664         * ScrollBar.cs:
16665         * ListBox.cs:
16666         * TrackBar.cs:
16667         * ToolBar.cs:
16668         * PictureBox.cs:
16669         * DateTimePicker.cs:
16670         * StatusBar.cs:
16671         * TreeView.cs: Update to new double buffering system.
16672         * MonthCalendar.cs: Uncomment block, as Capture is now
16673         working. Update to new double buffering
16674         * LinkLabel.cs: Lazy init the link collection. Update to new double buffering
16675         * PaintEventArgs.cs: New internal method allows us to set the
16676         graphics object. This is used for double buffering.
16677         * ThemeWin32Classic.cs: Give the picture box drawing code a clip
16678         rectangle. The internal paint_area var has been removed from
16679         StatusBar. The clipping rect should be used instead.
16680         * Theme.cs: Give the PictureBox drawing method a clipping rect.
16681         * TabPage.cs: The RefreshTabs method was removed, so just call the
16682         tab controls Refresh method now.
16683         * TabControl.cs: Update to new double buffering. Make sure the
16684         handle is created before sizing the tab pages, otherwise we will
16685         get stuck in a loop.
16687 2005-04-24  Borja Sanchez Zamorano <borsanza@gmail.com>
16689         * LinkLabel.cs: Fix typo, bug #74719; patch
16690           from Borja Sanchez Zamorano
16692 2005-04-22  Jackson Harper  <jackson@ximian.com>
16694         * TreeNode.cs: Implement Handle stuff.
16695         * TreeView.cs: Utility methods so nodes can get/lookup by handle.
16697 2005-04-22  Jordi Mas i Hernandez <jordi@ximian.com>
16699         * DataGridTextBoxColumn.cs: call base constructors, fixes
16700         * GridColumnStylesCollection.cs: missing events, methods, and functionality
16701         * GridTableStylesCollection.cs: fixes, check duplicate mapping names
16702         * DataGridTableStyle.cs: implements create default column styles
16703         * DataGridBoolColumn.cs: which types can handle
16704         * DataGrid.cs: missing methods, fixes, new functionality
16705         * DataGridColumnStyle.cs: fixes
16707 2005-04-20  Alexander Olk  <xenomorph2@onlinehome.de>
16708         * FolderBrowserDialog.cs:
16709         - Use a thread to fill the TreeView
16710         - Adjusted some sizes
16712 2005-04-19  Peter Bartok  <pbartok@novell.com>
16714         * LinkLabel.cs: (Re-)create the pieces when setting the Text
16715           property. Fixes #74360.
16717 2005-04-19  Jackson Harper  <jackson@ximian.com>
16719         * XEventQueue.cs: Lock when getting the lockqueue size.
16720         * PictureBox.cs: Call base OnPaint
16721         
16722 2005-04-19  Peter Bartok  <pbartok@novell.com>
16724         * XplatUIX11.cs: Fixed bug introduced with the HWND rewrite, Async
16725           messages were no longer being processed (this broke BeginInvoke)
16727           
16728 2005-04-18  Jackson Harper  <jackson@ximian.com>
16730         * TreeView.cs: buglet that caused node images to get drawn
16731         regardless of whether or not they were in the clipping rectangle.
16733 2005-04-18  Jackson Harper  <jackson@ximian.com>
16735         * CurrencyManager.cs: There are four rules for GetItemProperties:
16736         - If the type is an array use the element type of the array
16737         - If the type is a typed list, use the type
16738         - If the list contains an Item property that is not an object, use
16739         that property
16740         - use the first element of the list if there are any elements in
16741         the list.
16742         
16743 2005-04-17  Jackson Harper  <jackson@ximian.oom>
16745         * TreeView.cs: Calculate plus minus and checkbox bounds when there is a
16746         click. This handles offsets for scrolling properly and reduces
16747         memory. Also fixed GetNode to not offset now that TopNode works
16748         properly.
16749         * TreeNode.cs: No longer need to track the plus minus or checkbox bounds.
16750         
16751 2005-04-17  Jackson Harper  <jackson@ximian.com>
16753         * CursorConverter.cs: Initial implementation.
16755 2005-04-15  Jordi Mas i Hernandez <jordi@ximian.com>
16757         * ListControl.cs: work towards complex data binding support on ListControl
16758         * CurrencyManager.cs: work towards complex data binding support on ListControl
16759         * ListBox.cs: work towards complex data binding support on ListControl
16762 2005-04-15  Jordi Mas i Hernandez <jordi@ximian.com>
16764         * GridTableStylesCollection.cs: fixes name and constructor
16765         * DataGridTableStyle.cs: fixes
16766         * DataGridBoolColumn.cs: fixes names and constructors
16767         * DataGrid.cs: define methods and properties. Some init implementations
16768         * DataGridCell.cs: define methods and properties. Some init implementations
16769         * GridTablesFactory.cs: Define methods and properties
16771 2005-04-15  Geoff Norton  <gnorton@customerdna.com>
16773         * XplatUIOSX.cs:  Handle proper mouse tracking even if the current
16774         graphics port changes.  We still want the coordinates in global screen
16775         coordinates.
16777 2005-04-14  Jackson Harper  <jackson@ximian.com>
16779         * TreeView.cs: Handle clicks when plus minus is disabled. Don't
16780         check plus minus or checkbox clicks unless those features are enabled.
16782 2005-04-14  Jackson Harper  <jackson@ximian.com>
16784         * TreeView.cs: Add methods for setting the top and bottom visible
16785         nodes. TreeNode::EnsureVisible uses these methods.
16786         * TreeNode.cs: Implement EnsureVisible
16788 2005-04-13  Jordi Mas i Hernandez <jordi@ximian.com>
16790         * Form.cs: Pospone menu assignation if the window has not been created yet
16791         * XplatUIWin32.cs: Fixes Win32SetWindowPos, then does not change window
16792         size and position
16794 2005-04-12  Jackson Harper  <jackson@ximian.com>
16796         * TreeView.cs: Set the TopNode properly when scrolling
16797         occurs. This has the added benifit of reducing the amount of
16798         walking that needs to be done when drawing. Also removed an old
16799         misleading TODO.
16800         * OpenTreeNodeEnumerator.cs: Fix moving backwards.
16801         
16802 2005-04-11  Jordi Mas i Hernandez <jordi@ximian.com>
16804         * Timer.cs: fixes interval setting when the timer is already enabled
16805         
16806 2005-04-10  Alexander Olk  <xenomorph2@onlinehome.de>
16808         * FolderBrowserDialog.cs: First approach
16810 2005-04-09  Peter Bartok  <pbartok@novell.com>
16812         * FolderBrowserDialog: Added
16814 2005-04-07  Jordi Mas i Hernandez <jordi@ximian.com>
16816         * LinkLabel.cs: move drawing code into the theme
16817         * ThemeWin32Classic.cs: drawing code and painting background bugfix
16818         * Theme.cs: define DrawLinkLabel method
16820 2005-04-05  Jackson Harper  <jackson@ximian.com>
16822         * BindingContext.cs: Use weak references so these bad actors don't
16823         stay alive longer then they need to.
16825 2005-04-05  Jackson Harper  <jackson@ximian.com>
16827         * ListControl.cs: Basic implementation of complex databinding.
16828         * ComboBox.cs:
16829         * ListBox.cs: Add calls to ListControl databinding methods.
16831 2005-04-05  Alexander Olk  <xenomorph2@onlinehome.de>
16833         * FileDialog.cs:
16834           - Don't change PopupButtonState to Normal when the
16835             PopupButton gets pressed several times.
16836           - Renamed ButtonPanel to PopupButtonPanel
16838 2005-04-05  Jordi Mas i Hernandez <jordi@ximian.com>
16840         * ColorDialog.cs: Use cached objects instead of creating them
16841         * LinkLabel.cs: Use cached objects instead of creating them
16842         * Splitter.cs: Use cached objects instead of creating them
16843         * FontDialog.cs: Use cached objects instead of creating them
16844         * PropertyGridView.cs: Use cached objects instead of creating them
16845         * MessageBox.cs: Use cached objects instead of creating them
16846         * FileDialog.cs: Use cached objects instead of creating them
16847         * ThemeWin32Classic.cs: Use cached objects instead of creating them
16848         * TreeView.cs: Use cached objects instead of creating them
16849         
16850 2005-04-04  Jordi Mas i Hernandez <jordi@ximian.com>
16852         * Control.cs: use Equals to compare the font since no == op
16853         * ScrollBar.cs: use Equals to compare the font since no == op
16855 2005-04-04  Alexander Olk  <xenomorph2@onlinehome.de>
16857         * SaveFileDialog.cs: Open stream in OpenFile with FileMode Create
16859 2005-04-01  Jackson Harper  <jackson@ximian.com>
16861         * Binding.cs: Implement IsBinding.
16862         * BindingManagerBase.cs:
16863         * PropertyManager.cs:
16864         * CurrencyManager.cs: Add IsSuspended property.
16866 2005-04-01  Jackson Harper  <jackson@ximian.com>
16868         * Binding.cs: Had some IsAssignableFrom calls backwards.
16870 2005-04-01  Jackson Harper  <jackson@ximian.com>
16872         * Binding.cs: Handle null data members when pulling data.
16873         * PropertyManager.cs: Handle the data member being a property that
16874         does not exist.
16876 2005-04-01  Jordi Mas i Hernandez <jordi@ximian.com>
16878         * DataGridTextBoxColumn.cs: fixes signature
16879         * DataGrid.cs: calls right constructor
16881 2005-04-01  Jordi Mas i Hernandez <jordi@ximian.com>
16883         * DataGridTextBoxColumn.cs: implements DataGridTextBoxColumn class
16884         * GridColumnStylesCollection.cs: implements GridColumnStylesCollection
16885         * GridTableStylesCollection.cs: implements GridTableStylesCollection
16886         * DataGridTableStyle.cs: implements DataGridTableStyle
16887         * DataGridBoolColumn.cs: implements DataGridBoolColumn
16888         * DataGridTextBox.cs: implements DataGridTextBox
16889         * DataGridColumnStyle.cs: implements DataGridColumnStyle
16891 2005-03-31  Alexander Olk  <xenomorph2@onlinehome.de>
16893         * FileDialog.cs: Added simple PopupButton class for ButtonPanel
16895 2005-03-29  Peter Bartok  <pbartok@novell.com>
16897         * Application.cs:
16898           - Properly implemented CompanyName property
16899           - Fixed LocalUserAppDataPath and UserAppDataPath, now properly
16900             returns a path that includes CompanyName, ProductName and
16901             Version (fixes bug #70330)
16903 2005-03-29  Stefan Buehler  <sbuehler@gmx.ch>
16905         * TabPage.cs: Don't use Owner.DisplayRectangle unless owner is valid,
16906           fixes bug #72588.
16908 2005-03-28  Alexander Olk  <xenomorph2@onlinehome.de>
16910         * FileDialog.cs, SaveFileDialog.cs OpenFileDialog.cs:
16911         
16912           - Added ReadOnly CheckBox
16913           - Further refactoring: moved some code from Open-/SaveFileDialog
16914             to FileDialog
16916 2005-03-28  Alexander Olk  <xenomorph2@onlinehome.de>
16918         * OpenFileDialog.cs: Fixed CheckFileExists
16919         * FileDialog.cs:
16920           Moved FileView and DirComboBox outside FileDialog class.
16921           They can now be used outside FileDialog
16923 2005-03-27  Alexander Olk  <xenomorph2@onlinehome.de>
16925         * FileDialog.cs: Added a contextmenu to change ShowHiddenFiles
16926         * SaveDialog.cs, OpenFileDialog.cs: Fixes for Reset() method
16928 2005-03-27  Alexander Olk  <xenomorph2@onlinehome.de>
16930         * FileDialog.cs, OpenFileDialog.cs, SaveFileDialog.cs:
16931           - Added missing CreatePrompt property in SaveDialog
16932           - Overall SaveDialog handling should be better now
16933           - Added non standard ShowHiddenFiles property
16934           - Added extension, CreatePrompt and OverwritePrompt support in SaveDialog
16935           - Added InitialDirectory and RestoreDirectory support
16937 2005-03-26  Alexander Olk  <xenomorph2@onlinehome.de>
16939         * FileDialog.cs: Made dirComboBox usable
16941 2005-03-24  Alexander Olk  <xenomorph2@onlinehome.de>
16943         * FileDialog.cs: Added Filter support (case sensitiv)
16945 2005-03-24  Jackson Harper  <jackson@ximian.com>
16947         * TabControl.cs: Need a couple more pixels for the lines.
16949 2005-03-23  Jackson Harper  <jackson@ximian.com>
16951         * TabControl.cs: Give the tab page focus when it is selected.
16953 2005-03-23  Jackson Harper  <jackson@ximian.com>
16955         * TabControl.cs: Account for the drawing of tabs borders when
16956         invalidating. If the slider was clicked dont do click detection on
16957         the tabs.
16959 2005-03-23  Jackson Harper  <jackson@ximian.com>
16961         * TabControl.cs: Fix typo, emilinates an unneeded expose event.
16963 2005-03-22  Jonathan Chambers  <jonathan.chambers@ansys.com>
16965         * CategoryGridEntry.cs: Added
16966         * GridItem.cs: Added helper properties
16967         * PropertyGridTextBox.cs: Custom textbox control for PropertyGrid.
16968         * GridEntry.cs: Updated code for collection
16969         * PropertyGrid.cs: Cleaned up some formatting
16970         * PropertyGridView.cs: Added drop down functionality for enums.
16971         * GridItemCollection.cs: Added enumerator logic
16972         * PropertyGridEntry.cs: Added
16974 2005-03-19  Alexander Olk  <xenomorph2@onlinehome.de>
16976         * FileDialog.cs:
16977           - Removed unnecessary commented code
16978           - Fixed handling for entering the filename manually in the combobox
16980 2005-03-19  Alexander Olk  <xenomorph2@onlinehome.de>
16982         * FileDialog.cs, OpenFileDialog.cs: OpenFileDialog Multiselect now works
16984 2005-03-18  Peter Bartok  <pbartok@novell.com>
16986         * ThemeWin32Classic.cs: Moved listview column headers a bit, to avoid
16987           them being touching the border
16989 2005-03-18  Peter Bartok  <pbartok@novell.com>
16991         * TextControl.cs: Quick hack to center text better
16993 2005-03-18  Peter Bartok  <pbartok@novell.com>
16995         * ControlPaint.cs:
16996           - Don't throw NotImplemented exceptions, just print a notice once
16997             instead (requested by Miguel). This makes running existing SWF
16998             apps a bit easier
16999         * Control.cs:
17000           - Commented out Drag'N'Drop XplatUI call (no driver support yet)
17001           - Added context menu trigger on right click
17002         * Panel.cs: Trigger invalidate on resize
17003         * StatusBar.cs:
17004           - Removed old double-buffer drawing
17005           - Added ResizeRedraw style to force proper update of statusbar
17006         * ListView.cs:
17007           - Removed debug output
17008         * ThemeWin32Classic.cs:
17009           - Fixed drawing of status bar, now draws Text property if there
17010             are no defined panels
17012 2005-03-18  Jackson Harper  <jackson@ximian.com>
17014         * ImageList.cs: When the image stream is set pull all the images
17015         from it.
17016         * ImageListStreamer.cs: Implement reading image list streams.
17018 2005-03-18  Peter Bartok  <pbartok@novell.com>
17020         * ThemeWin32Classic.cs (DrawPictureBox):
17021           - Fixed calculations for centered drawing
17022           - Fixed drawing for normal mode, not scaling the image on normal
17024 2005-03-18  Peter Bartok  <pbartok@novell.com>
17026         * ComboBox.cs: Now also firing the OnKeyPress events for the embedded
17027           textbox
17028         * FileDialog.cs:
17029           - Made Open/Save button the accept button for FileDialog
17030           - Tied the cancel button to the IButtonControl cancel button
17031           - Save/Open now properly builds the pathname
17032           - Now handles user-entered text
17033           - Preventing crash on right-click if no item is selected
17034           - Fixed Text property, now uses contents of textbox
17035           - Fixed SelectedText property, now just returns the text part that
17036             is selected in the text box
17038 2005-03-18  Jackson Harper  <jackson@ximian.com>
17040         * ThemeWin32Classic.cs: Use the proper func for drawing the focus
17041         rect, make sure to de-adjust the interior rect after drawing the
17042         tab text.
17044 2005-03-18  Peter Bartok  <pbartok@novell.com>
17046         * MenuAPI.cs: Remove menu *before* executing selected action to
17047           prevent the menu from 'hanging around'
17048           
17049 2005-03-17  Geoff Norton  <gnorton@customerdna.com>
17051         * XplatUIOSX.cs: Implemented WorkingArea property
17053 2005-03-17  Peter Bartok  <pbartok@novell.com>
17055         * XplatUIX11.cs: Fixed menu coord calculations
17056         * MenuAPI.cs: Now using new ScreenToMenu()/MenuToScreen() methods
17057           for calculating offsets
17059 2005-03-17  Peter Bartok  <pbartok@novell.com>
17061         * Hwnd.cs: Do not consider menu presence for default client
17062           rectangle location/size
17063         * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs, XplatUIOSX.cs,
17064           XplatUIWin32.cs: Added MenuToScreen() and ScreenToMenu() coord
17065           translation functions
17066         * FileDialog.cs: Fixed (what I presume is a) typo
17068 2005-03-17  Jonathan Gilbert  <logic@deltaq.org>
17070         * XplatUIX11.cs: Added call to XInitThreads() to allow multi-threaded
17071           X access (avoids X-Async errors)
17073 2005-03-16  Jackson Harper  <jackson@ximian.com>
17075         * TabControl.cs: Raise the SelectedIndexChanged event.
17077 2005-03-16  Alexander Olk  <xenomorph2@onlinehome.de>
17079         * FileDialog.cs, OpenFileDialog.cs, SaveFileDialog.cs:
17080           - Removed vertical ToolBar and replaced it with a custom panel
17081             (desktop and home button already work)
17082           - Added Help button (some controls get resized or relocated then)
17083           - Draw correct text depending on Open or Save.
17084           - Fixed some typos...
17086 2005-03-16  Jordi Mas i Hernandez <jordi@ximian.com>
17088         * ScrollBar.cs:
17089           - Only change Maximum and Minimum when need it (bug fix)
17091 2005-03-15  Peter Bartok  <pbartok@novell.com>
17093         * Form.cs: Use Handle for icon, to trigger creation if
17094           the window does not yet exist
17095         * Control.cs:
17096           - CanSelect: Slight performance improvement
17097           - Focus(): Preventing possible recursion
17098           - Invalidate(): Removed ControlStyle based clear flag setting
17099           - WM_PAINT: fixed logic for calling OnPaintBackground
17100           - WM_ERASEBKGND: Fixed logic, added call to new driver method
17101             EraseWindowBackground if the control doesn't paint background
17102         * XplatUIWin32.cs:
17103           - Moved EraseWindowBackground() method to internal methods
17104           - Removed unused WM_ERASEBKGND handling in GetMessage; msg never comes;
17105             is sent via SendMessage on BeginPaint call on Win32
17106         * XplatUIX11.cs:
17107           - Added EraseWindowBackground() method
17108           - No longer sends WM_ERASEBKGND on .Expose, but on call to
17109             PaintEventStart, which more closely matches Win32 behaviour
17110           - Fixed Invalidate() call, now updates new ErasePending Hwnd property
17111           - Fixed SetFocus() to properly deal with client and whole windows
17112         * Hwnd.cs: Added ErasePending property
17113         * XplatUIOSX.cs: Stubbed EraseWindowBackground() method
17114         * XplatUI.cs, XplatUIDriver.cs: Added EraseWindowBackground() method
17116 2005-03-12  Geoff Norton  <gnorton@customerdna.com>
17118         * XplatUIOSX.cs:
17119           - Fix hard loop when timers exist.
17120           - Fix bugs with middle and right click for 3 button mice.
17122 2005-03-11  Peter Bartok  <pbartok@novell.com>
17124         * XplatUIX11.cs:
17125           - get_WorkingArea: Need to call X directly, GetWindowPos only
17126             returns cached data now
17127           - Added sanity check to GetWindowPos hwnd usage
17129 2005-03-11  Jackson Harper  <jackson@ximian.com>
17131         * BindingManagerBase.cs: This method isn't used anymore as
17132         PullData now updates the data in the control.
17134 2005-03-11  Jordi Mas i Hernandez <jordi@ximian.com>
17136         * Form.cs: fixes menu drawing on X11
17137         * MenuAPI.cs:  fixes menu drawing on X11
17139 2005-03-11  Peter Bartok  <pbartok@novell.com>
17141         * Control.cs: Changed OnCreateControl behaviour based on a suggestion
17142           from Jonathan Gilbert; should fix bug #73606
17143         * XplatUIX11.cs: Fixed NC Mouse message coordinates, they need to be
17144           in Screen coordinates. Thanks, Jordi.
17145         * Form.cs: Added missing attribute
17147 2005-03-11  Peter Bartok  <pbartok@novell.com>
17149         * Form.cs:
17150           - Rudimentary Mdi support
17151           - Removed outdated FormParent code
17152           - Implemented lots of missing properties and methods, still missing
17153             transparency support
17154           - Added missing attributes
17155           - Implemented support for MaximumBounds
17156           - Added firing of various events
17157         * XplatUI.cs: Added SetIcon() method
17158         * XplatUIDriver.cs: Added SetIcon() abstract
17159         * XplatUIOSX.cs: Stubbed out SetIcon() method
17160         * XplatUIX11.cs:
17161           - Implemented SetIcon() support
17162           - Moved SetMenu() and SetBorderStyle() to proper alphabetical pos
17163           - Switched to unix line endings
17164         * XplatUIWin32.cs:
17165           - Made POINT internal so for can access it as part of MINMAX
17166           - Implemented SetIcon() support
17167           - Implemented support for CLIENTCREATESTRUCT (but might have to drop
17168             native Mdi support again, might have to go managed)
17169         * Control.cs: Now fires the StyleChanged event
17170         * MdiClient.cs: Added; still mostly empty
17172 2005-03-10  Peter Bartok  <pbartok@novell.com>
17174         * SaveFileDialog.cs: Added emtpy file
17176 2005-03-08  Peter Bartok  <pbartok@novell.com>
17178         * Control.cs: Fixed bug #73190; now invokes CreateControl (which
17179           in turn triggers OnCreateContro) when creating a handle for the
17180           first time.
17181         * TextControl.cs: Fixed endless loop in certain cases when
17182           replacing the current selection
17184 2005-03-08  Jordi Mas i Hernandez <jordi@ximian.com>
17186         * ScrollBar.cs:
17187           - Honors NewValue changes in Scroll events allowing apps to change it
17188           - Adds First and Last Scroll events
17189           - Fixes Thumb events
17191 2005-03-07  Peter Bartok  <pbartok@novell.com>
17193         * Hwnd.cs: Added DefaultClientRectangle property
17194         * XplatUI.cs: Now using the X11 driver Where() method, which provides
17195           more detailed debug information
17196         * XplatUIX11.cs:
17197           - Fixed size-change feedback loop, where we would pull an old size
17198             off the queue and mistakenly change our window's size to an
17199             earlier value
17200           - Now compressing ConfigureNotify events, to reduce looping and
17201             redraw issues
17202         * TextBoxBase.cs: Preventing crash when no text is set and ToString()
17203           is called
17205 2005-03-07  Jackson Harper  <jackson@ximian.com>
17207         * Binding.cs: Push data pushes from data -> property. Check if the
17208         property is readonly when attempting to set it.
17210 2005-03-07  Jackson Harper  <jackson@ximian.com>
17212         * Binding.cs: Format and parse data correctly. Use ASsignableFrom
17213         instead of IsSubclassOf. Pulling data now sets the value on the
17214         control.
17215         * PropertyManager.cs:
17216         * CurrencyManager.cs: Just need to pull data when updating now,
17217         because PullData will set the value on the control.
17219 2005-03-04  Jackson Harper  <jackson@ximian.com>
17221         * Binding.cs: Implement data type parsing and converting on pulled
17222         data. TODO: Are there more ways the data can be converted?
17224 2005-03-04  Jackson Harper  <jackson@ximian.com>
17226         * Binding.cs: Support <Property>IsNull checks. Also bind to the
17227         controls Validating method so we can repull the data when the
17228         control loses focus.
17230 2005-03-03  Jordi Mas i Hernandez <jordi@ximian.com>
17232         * ColumnHeader.cs:
17233           - Fixes null string format
17234           
17235         * ListView.cs:
17236           - Adds enum type checks
17237           - Fixes redrawing and recalc need after changing some properties
17238           - Fixes on focus_item set after the event
17239           - Fixes adding columns after the control has been created
17240           
17241         * ThemeWin32Classic.cs:
17242           - Fixes CheckBox focus rectangle
17243           - Fixes ColumnHeader drawing
17246 2005-03-03  Jackson Harper  <jackson@ximian.com>
17248         * Binding.cs: Bind to <Property>Changed events so we can detect
17249         when properties are changed and update the data.
17251 2005-03-02  Jordi Mas i Hernandez <jordi@ximian.com>
17253         * ImageList.cs:
17254           - Changes 32-bit pixel format to Format32bppArgb to allow transparency
17255           - Fixes ImageList constructor with ImageList container
17256           - Fixes image scaling (wrong parameters at DrawImage)
17258 2005-02-02  Jackson Harper  <jackson@ximian.com>
17260         * Binding.cs: Make property searches case-insensitive. Eliminate
17261         some duplicated code.
17263 2005-03-01  Jordi Mas i Hernandez <jordi@ximian.com>
17265         * ComboBox.cs:
17266                 - Handle focus event
17267                 - Fix scrollbar events
17268                 - Discard highlighted item if remove it
17269                 - Fixes SelectedItem with strings
17271 2005-03-01  Peter Bartok  <pbartok@novell.com>
17273         * Control.cs:
17274           - Fixed Visible property, now follows (once again) parent chain
17275             to return false if any control in the chain is visible=false
17276           - Fixed OnParentVisibleChanged, now just calls OnVisibleChanged event
17277           - Fixed several places where is_visible instead of Visible was used
17278           - Implemented FIXME related to focus selection when setting focused
17279             control to be invisible
17281         * XplatUIWin32.cs: Now using proper method to find out if window is
17282           visible. Thanks to Jordi for pointing it out
17284 2005-02-28  Jordi Mas i Hernandez <jordi@ximian.com>
17286         * ComboBox.cs: show/hide scrollbar instead of creating it
17288 2005-02-27  Jackson Harper  <jackson@ximian.com>
17290         * CurrencyManager.cs: Add PositionChanged stuff.
17292 2005-02-27  Peter Bartok  <pbartok@novell.com>
17294         * XplatUI.cs, XplatUIDriver.cs: Added new GetMenuOrigin() method
17295         * XplatUIOSX.cs: Added GetMenuOrigin() stub
17296         * XplatUIWin32.cs: Implemented GetMenuOrigin()
17297         * XplatUIX11.cs:
17298           - Implemented GetMenuDC()
17299           - Implemented GetMenuOrigin()
17300           - Implemented ReleaseMenuDC()
17301           - Implemented generation of WM_NCPAINT message
17302           - Implemented generation and handling of WM_NCCALCSIZE message
17303         * Form.cs: Added debug helper message for Jordi's menu work
17304         * Hwnd.cs:
17305           - Modified ClientRect property; added setter, fixed getter to handle
17306             setting of ClientRect
17307           - Added MenuOrigin property
17309 2005-02-26  Peter Bartok  <pbartok@novell.com>
17311         * XplatUIX11.cs:
17312           - Destroys the caret if a window that's being destroyed contains it
17313           - Ignores expose events coming from the X11 queue for windows that
17314             already are destroyed
17315           - Now uses the proper variable for handling DestroyNotify, before we
17316             marked the wrong window as destroyed
17317           - Improved/added some debug output
17319 2005-02-26  Peter Bartok  <pbartok@novell.com>
17321         * X11Keyboard.cs: Fixes to work on 64bit systems
17323 2005-02-26  Peter Bartok  <pbartok@novell.com>
17325         * Control.cs:
17326           - Now calling OnHandleDestroyed from DestroyHandle()
17327             instead of Dispose()
17328           - Removed bogus call to controls.Remove() from DestroyHandle()
17330 2005-02-26  Peter Bartok  <pbartok@novell.com>
17332         * Control.cs: Properly destroy child windows when our handle is
17333           destroyed
17335 2005-02-25  Peter Bartok  <pbartok@novell.com>
17337         * XplatUI.cs:
17338           - Added 'DriverDebug' define to allow tracing XplatUI API calls
17339           - Alphabetized Static Methods and Subclasses
17341         * XplatUIX11.cs:
17342           - Added XException class to allow custom handling of X11 exceptions
17343           - Created custom X11 error handler, tied into XException class
17344           - Added support for MONO_XEXCEPTIONS env var to allow the user
17345             to either throw an exception on X errors or continue running
17346             after displaying the error
17347           - Added handling of DestroyNotify message
17348           - Added handler for CreateNotify message (still disabled)
17349           - Improved (tried to at least) Where method to provide file and lineno
17350         * X11Structs.cs:
17351           - Added XErrorHandler delegate
17352           - Added XRequest enumeration (to suppor translation of errors)
17354 2005-02-25  Jackson Harper  <jackson@ximian.com>
17356         * PropertyManager.cs: Implement editing features
17357         * CurrencyManager.cs:
17358         * Binding.cs: First attempt at UpdateIsBinding
17359         * BindingManagerBase.cs: Call UpdateIsBinding before
17360         pushing/pulling data.
17362 2005-02-25  Jordi Mas i Hernandez <jordi@ximian.com>
17364         * MenuAPI.cs: Respect disabled items
17365         * ThemeWin32Classic.cs
17366                 - Caches ImageAttributes creation for DrawImageDisabled
17367                 - Fixes vertical menu line drawing
17368                 - Draws disabled arrows in disable menu items
17370 2005-02-24  Peter Bartok  <pbartok@novell.com>
17372         * Hwnd.cs:
17373           - Added UserData property to allow associating arbitrary objects
17374             with the handle
17375           - Fixed leak; now removing Hwnd references from static windows array
17376         * XplatUIWin32.cs:
17377           - Fixed Graphics leak in PaintEventEnd
17378           - Removed usage of HandleData, switched over to Hwnd class
17379         * HandleData.cs: Removed, obsoleted by Hwnd.cs
17381 2005-02-24  Jordi Mas i Hernandez <jordi@ximian.com>
17383         * ThemeWin32Classic.cs: Adds Cliping to TrackBar drawing
17384         * ScrollBar.cs: Fixes bug
17385         * TrackBar.cs: removes death code, clipping, mimize refreshes,
17386          keyboard navigation enhancements
17388 2005-02-24  Jordi Mas i Hernandez <jordi@ximian.com>
17390         * Control.cs: Call DefWndProc at WM_PAINT only if UserPaint not defined
17391         * GroupBox.cs: Add control styles
17392         * Label.cs: Add control styles
17393         * UpDownBase.cs: Add control styles
17394         * ListBox.cs: Add control styles
17395         * XplatUIWin32.cs: Fixes wrong parameter order
17398 2005-02-23  Chris Bacon  <chris.bacon@docobo.co.uk>
17400         * ListView.cs: Assign owner for ColumnHeader. Patch by Chris Bacon
17402 2005-02-23  Jackson Harper  <jackson@ximian.com>
17404         * PropertyManager.cs: Implement property binding. This doesn't
17405         seem to work yet though as (I think) there are some bugs in
17406         System.ComponentModel.PropertyDescriptor.
17407         * BindingContext.cs: Use new PropertyManager constructor.
17409 2005-02-23  Jordi Mas i Hernandez <jordi@ximian.com>
17411         * ProgressBar.cs: use clip region in ProgressBar
17412         * ThemeWin32Classic.cs: use clip region in ProgressBar
17414 2004-02-22  Jackson Harper  <jackson@ximian.com>
17416         * BindingsCollection.cs: Remove some debug code.
17418 2005-02-22  Jackson Harper  <jackson@ximian.com>
17420         * BindingContext.cs:
17421         * ControlBindingsCollection.cs:
17422         * CurrencyManager.cs:
17423         * Binding.cs:
17424         * BindingManagerBase.cs: Initial implementation
17425         * BindingsCollection.cs: Add an internal contains method that the
17426         BindingManagerBase uses to ensure bindings aren't added twice to
17427         the collection.
17428         * PropertyManager.cs: Stubbed out.
17429         * Control.cs:
17430         * ContainerControl.cs: Hook up databinding
17431         
17432 2005-02-22  Geoff Norton  <gnorton@customerdna.com>
17434         * XplatUIOSX.cs:
17435           OSXStructs.cs: Refactored to handle the new Hwnd NC logic area.
17436           Fixed Invalidate/Update chain.
17437           Fixed tons of other minor bugs (this is almost a complete rewrite).
17439 2005-02-22  Jordi Mas i Hernandez <jordi@ximian.com>
17441         * ComboBox.cs: do subcontrol creation when the control is created
17443 2005-02-19  Jordi Mas i Hernandez <jordi@ximian.com>
17445         * Label.cs: fixes image drawing (image and imagelist)
17446         * ThemeWin32Classic.cs: cache brushes
17447         
17448 2005-02-19  Jordi Mas i Hernandez <jordi@ximian.com>
17450         * Form.cs: Move menu drawing code to Theme class
17451         * ComboBox.cs: Move ComboBox drawing code to Theme class
17452         * MenuItem.cs: Move menu drawing code to Theme class
17453         * MenuAPI.cs: Move menu drawing code to Theme class
17454         * ThemeWin32Classic.cs: New methods
17455         * CheckedListBox.cs: Move CheckedListbox drawing code to Theme class
17456         * ListBox.cs: Move Listbox drawing code to Theme class
17457         * Theme.cs: New methods
17459 2005-02-20  Peter Bartok  <pbartok@novell.com>
17461         * Control.cs:
17462           - Fixed ProcessKeyEventArgs to also handle WM_SYSKEY messages (and
17463             only process mnemonics on those)
17464           - Fixed event sequence for key handling; first calling
17465             ProcessKeyEventArgs now
17466         * TextBoxBase.cs:
17467           - Removed WM_KEYDOWN hook, instead we now use ProcessDialogKey()
17468             for processing non-character keys
17469           - Fixed WM_CHAR to generate proper event sequence before processing
17470         * XplatUIWin32.cs: Added ALT key state to ModifierKeys property
17471           generation
17473 2005-02-19  Peter Bartok  <pbartok@novell.com>
17475         * UserControl.cs: Added TextChanged event; added attributes
17476         * SizeGrip.cs: Implemented resizing and optional display of grip
17477         * Form.cs: Fixed attribute
17478         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs, XplatUIWin32.cs:
17479           Changed meaning of ScrollWindow bool argument; instead of the
17480           clear attribute (which will be true usually anyway), it gives the
17481           option of moving child controls as well.
17482         * XplatUIX11.cs:
17483           - Changed to match new ScrollWindow argument
17484           - Fixed GetWindowPos/SetWindowPos behaviour for toplevel controls,
17485             now handles the implicit parent window a WM puts around us
17486         * ScrollableControl.cs: Implemented (not the prettiest, but it seems
17487           to work)
17488         * TextBoxBase.cs: Adjusted to new ScrollWindow arguments
17489         * TreeView.cs: Adjusted to new ScrollWindow arguments
17491 2005-02-19  Jordi Mas i Hernandez <jordi@ximian.com>
17493         * Form.cs: Menu integration with non-client area
17494         * MenuItem.cs: Menu integration with non-client area
17495         * MenuAPI.cs: Menu integration with non-client area
17497 2005-02-18  Peter Bartok  <pbartok@novell.com>
17499         * MethodInvoker.cs: Added
17500         * MdiLayout.cs: Added
17501         * SendKeys.cs: Started implementation
17502         * ErrorIconAlignment.cs: Added
17504 2005-02-18  Peter Bartok  <pbartok@novell.com>
17506         * XplatUIWin32.cs: Implemented SetMenu(); fixed GetMenuDC()
17507         * Form.cs: Added handling for Menu-related Non-client messages
17509 2005-02-17  Peter Bartok  <pbartok@novell.com>
17511         * UpDownBase.cs: Fixed typo, compilation errors
17512         * DomainUpDown.cs: Fixed attribute value
17514 2005-02-16  Miguel de Icaza  <miguel@novell.com>
17516         * UpDownBase.cs: Attach entry events.
17517         Propagate events.
17518         Add ForeColor property, Focused, InterceptArrowKeys (interception
17519         does not work yet).
17521 2005-02-17  Jordi Mas i Hernandez <jordi@ximian.com>
17523         * Form.cs:
17524                 - Redraw non client are on Setmenu
17525                 - Calc proper menu starting point
17527 2005-02-17  Peter Bartok  <pbartok@novell.com>
17529         * Application.cs: Fixed message_filter check
17531 2005-02-17  Peter Bartok  <pbartok@novell.com>
17533         * Application.cs: Now calls registered message filters
17534         * DockStyle.cs: Fixed attribute
17535         * Form.cs: Fixed attribute
17536         * Menu.cs: Fixed attribute
17537         * ToolTip.cs: Fixed attribute
17538         * TreeNode.cs: Added missing attributes and arranged in regions
17539         * PropertyGrid.cs: Fixed signatures
17540         * TreeNodeCollection.cs: Added attributes
17541         * Splitter.cs: Added missing attributes; arranged into regions
17542         * TabPage.cs: Added missing attributes; arranged into regions
17543         * TextBoxBase.cs: Added missing attributes
17544         * TextBox.cs: Added missing attributes
17545         * ArrangeDirection.cs: Added missing attributes
17546         * TreeNodeConverter.cs: Added stub (needed for TreeNode)
17547         * ToolBarButton.cs: Fixed attributes
17548         * AnchorStyles.cs: Fixed attribute
17549         * TrackBar.cs: Fixed attributes
17550         * TabControl.cs: Added missing attributes and arranged into regions
17551         * ToolBar.cs: Fixed attribute
17552         * StatusBar.cs: Fixed signature, organized into regions and added
17553           attributes
17554         * StatusBarPanel.cs: Fixed attributes
17555         * ContentsResizedEventArgs.cs: Implemented
17556         * ContentsResizedEventHandler.cs: Implemented
17557         * DateBoldEventArgs.cs: Implemented
17558         * DateBoldEventHandler.cs: Implemented
17559         * UpDownEventArgs.cs: Implemented
17560         * UpDownEventHandler.cs: Implemented
17561         
17562 2005-02-16  Jordi Mas i Hernandez <jordi@ximian.com>
17564         * Form.cs: first Menu NC refactoring
17565         * MenuAPI.cs: first Menu NC refactoring
17566         
17567 2005-02-16  Peter Bartok  <pbartok@novell.com>
17569         * ImeMode.cs: Added missing attributes
17570         * Menu.cs: Fixed attribute
17571         * GroupBox.cs: Fixed attribute
17572         * Label.cs: Fixed attribute
17573         * ColorDialog.cs (RunDialog): Removed TODO attribute
17574         * ComboBox.cs: Fixed attributes
17575         * ListControl.cs: Added missing attributes
17576         * PropertyGrid.cs: Fixed attributes
17577         * Control.cs: Fixed attributes
17578         * ListViewItem.cs: Added TypeConverter attribute
17579         * NotifyIcon.cs: Fixed attributes
17580         * ListView.cs: Fixed attributes
17581         * ButtonBase.cs: Fixed attribute
17582         * ImageList.cs: Added missing attributes
17583         * ContainerControl.cs: Fixed signature
17584         * CheckedListBox.cs: Fixed attribute; added missing attributes
17585         * Panel.cs: Fixed attributes
17586         * PropertyTabChangedEventArgs.cs: Added missing attribute
17587         * PropertyValueChangedEventArgs.cs: Added missing attribute
17588         * Binding.cs: Fixed attribute
17589         * ListViewItemConverter: Implemented ListViewSubItemConverter class
17590         * ListBox.cs: Fixed attribute; added missing attributes;
17591         * ScrollableControl.cs: Added missing attributes
17592         * PictureBox.cs: Added missing attributes; implemented missing property
17593         * DateTimePicker.cs: Added missing attributes
17594         * Theme.cs (ToolWindowCaptionHeight): Fixed type
17595         * MonthCalendar.cs: Fixed attributes
17596         * StatusBarPanel.cs: Added missing attributes
17597         * SystemInformation.cs (ToolWindowCaptionHeight): Fixed type
17599 2005-02-16  Peter Bartok  <pbartok@novell.com>
17601         * TextBoxBase.cs: The previous method to enforce height yet remember
17602           the requested high was less than ideal, this is an attempt to do
17603           it better.
17604         * Control.cs: Added comment about possible problem
17605         * Copyright: Updated format
17606         * GridItemType.cs: Fixed swapped values
17608 2005-02-15  Jackson Harper  <jackson@ximian.com>
17610         * BaseCollection.cs: Use property so we never access an
17611         uninitialized list. Also initialize the list in the property.
17613 2005-02-15  Peter Bartok  <pbartok@novell.com>
17615         * GroupBox.cs (ProcessMnemonic): Implemented
17616         * Label.cs (ProcessMnemonic): Implemented
17617         * ThemeWin32Classic.cs (DrawGroupBox): Added stringformat to show
17618           hotkeys
17620 2005-02-15  Peter Bartok  <pbartok@novell.com>
17622         * RadioButton.cs (ProcessMnemonic): Implemented
17623         * CheckBox.cs (ProcessMnemonic): Implemented
17624         * Control.cs:
17625           - Added handling of WM_SYSxxx keyboard messages to support mnemonic
17626             handling
17627           - Added internal method to allow calling ProcessMnemonic from other
17628             controls
17629         * ContainerControl.cs:
17630           - Started support for handling validation chain handling
17631           - Implemented ProcessMnemonic support
17632           - Added Select() call to Active, to make sure the active control
17633             receives focus
17634         * Form.cs: Setting toplevel flag for Forms (this was lost in the
17635           FormParent rewrite)
17636         * ThemeWin32Classic.cs:
17637           - DrawCheckBox(): Fixed stringformat to show hotkeys
17638           - DrawRadioButton(): Fixed stringformat to show hotkeys
17639         * CommonDialog.cs: Removed WndProc override, not needed
17641 2005-02-14  Peter Bartok  <pbartok@novell.com>
17643         * XplatUIX11.cs: Fixed NotImplemented exceptions for properties,
17644           missed those in the rewrite
17646 2005-02-14  Miguel de Icaza  <miguel@novell.com>
17648         * NumericUpDown.cs (Increment, ToString): Add.
17649         (DecimalPlaces): implement.
17650         
17651         Add attributes.
17652         
17653         * UpDownBase.cs: Add the designer attributes.
17655 2005-02-13  Peter Bartok  <pbartok@novell.com>
17657         * Panel.cs: Removed border_style, now in Control
17658         * XplatUIDriver.cs: Added SetBorderStyle, SetMenu, GetMenuDC and
17659           ReleaseMenuDC Methods; renmaed ReleaseWindow to UngrabWindow
17661 2005-02-13  Peter Bartok  <pbartok@novell.com>
17663         * MouseButtons.cs: Added missing attributes
17664         * XplatUIStructs.cs: Added enumeration for title styles
17665         * LeftRightAlignment.cs: Added missing attributes
17666         * Hwnd.cs: Switched to use client_window as handle (slower, but makes
17667           it compatible with Graphics.FromHwnd()
17668         * SelectedGridItemChangedEventArgs.cs: Fixed property type
17669         * Keys.cs: Added missing attributes
17670         * SelectionRange.cs: Added missing attributes
17671         * SelectionRangeConverter.cs: Added
17672         * XplatUI.cs:
17673           - Introduced SetBorderStyle, SetMenu, GetMenuDC and
17674             ReleaseMenuDC methods
17675           - Renamed ReleaseWindow to UngrabWindow
17676           - Added proper startup notice to allow version identification
17677         * Form.cs:
17678           - Added missing attributes
17679           - Removed FormParent concept
17680         * Label.cs: Removed border_style field, now in Control
17681         * RadioButton.cs: Now properly selects RadioButton when focus is
17682           received
17683         * ThemeGtk.cs: Fixed SetDisplay call to match new X11 behaviour
17684         * Control.cs:
17685           - Added missing attributes
17686           - Added borderstyle handling
17687           - Removed FormParent concept support
17688           - Fixed calls to XplatUI to match changed APIs
17689           - Fixed bug that would case us to use disposed Graphics objects
17690           - Removed unneeded internal methods
17691           - PerformLayout(): Fixed to handle DockStyle.Fill properly
17692           - SelectNextControl(): Fixed to properly check common parents
17693         * TextBoxBase.cs: Removed border_style field (now in Control)
17694         * MessageBox.cs:
17695           - Patch by Robert Thompson (rmt@corporatism.org): Added icon support,
17696             fixed calculations for form size
17697           - Added support for localized strings and icons
17698           - Improved form size calculations, added border
17699         * ListView.cs: Removed border_style field (now in Control)
17700         * X11Structs.cs: Moved several structs from X11 driver here
17701         * X11Keyboard.cs: Changed debug message
17702         * Application.cs: Removed FormParent concept support
17703         * CommonDialog.cs:
17704           - Resetting end_modal flag
17705           - Removed FormParent concept support
17706         * NativeWindow.cs: Removed FormParent concept support
17707         * XplatUIX11.cs: Rewritten, now using the new Hwnd class, implementing
17708           Client area and Non-Client whole window to allow support for WM_NC
17709           messages
17710         * XplatUIOSX.cs: Updated to match latest driver spec; added exception
17711           prevent using it until it supports Hwnd as per Geoff Norton's request
17712         * ToolBar.cs: Fixed drawing, was not doing proper drawing
17713         * PictureBox.cs: Removed border_style field, now in Control
17714         * XplatUIWin32.cs: Added new driver methods
17716 2005-02-12  Peter Bartok  <pbartok@novell.com>
17718         * OpacityConverter.cs: Implemented
17719         * Hwnd.cs: Internal class to support drivers that need to emulate
17720           client area/non-client area window behaviour
17722 2005-02-11  Peter Bartok  <pbartok@novell.com>
17724         * KeysConverter.cs: Implemented
17726 2005-02-11  Jordi Mas i Hernandez <jordi@ximian.com>
17728         * Menu.cs: fixes methods GetContextMenu, GetMainMenu, ToString
17729         * LinkLabel: Added missing attributes
17730         * MainMenu.cs: fixes ToString
17731         * MenuItem.cs: fixes methods GetContextMenu, GetMainMenu
17732         * ListBox.cs: fixes event position
17733         * TrackBar.cs: adds missing attributes and events
17734         
17735 2005-02-10  Jordi Mas i Hernandez <jordi@ximian.com>
17737         * MenuItem.cs: Use SystemInformation and bug fixes
17738         * MenuAPI.cs: Use SystemInformation and bug fixes
17740 2005-02-09  Jackson Harper  <jackson@ximian.com>
17742         * X11Keyboard.cs: We ignore some keys, but still need to set/reset
17743         their keystate otherwise things like VK_MENU get stuck "on".
17745 2005-02-09  Kazuki Oikawa <kazuki@panicode.com>
17747         * ListBox.cs: Fixes AddRange bug
17748         
17749 2005-02-09  Jordi Mas i Hernandez <jordi@ximian.com>
17751         * ProgressBar.cs
17752                 - Add missing attributes
17753                 - Add missing method
17754                 
17755         * CheckedListBox.cs: Added missing attributes
17756                 - Add missing attributes
17757                 - Remove extra method
17758         
17759         * ComboBox.cs: Added missing attributes
17760         * VScrollBar.cs: Added missing attributes
17761         * ScrollBar.cs:  Added missing attributes
17762         * ListBox.cs: Fixes signature, add missing consts
17763         * LinkArea.cs:   Added missing attributes
17764         
17766 2005-02-08  Peter Bartok  <pbartok@novell.com>
17768         * Menu.cs: Added missing attributes
17769         * MainMenu.cs: Added missing attributes
17770         * GroupBox.cs: Added missing attributes
17771         * Label.cs: Added missing attributes
17772         * CheckBox.cs: Implemented CheckBoxAccessibleObject class
17773         * ColorDialog.cs:
17774           - Added Instance and Options properties
17775           - Added missing attributes
17776         * Cursor.cs: Made Serializable
17777         * NotifyIcon: Added missing attributes
17778         * MenuItem.cs: Added missing attributes
17779         * TextBoxBase.cs: Implemented AppendText() and Select() methods
17780         * Panel.cs: Added Missing attributes
17781         * MonthCalendar.cs: Fixed CreateParams
17783 2005-02-08  Jordi Mas i Hernandez <jordi@ximian.com>
17784         
17785         * LinkLabel.cs:
17786                 - Fixes signature
17787                 - Fixes issues with links
17788                 - Adds the class attributes
17790 2005-02-08  Jordi Mas i Hernandez <jordi@ximian.com>
17791         
17792         * ComboBox.cs:
17793                 - Fixes button when no items available in dropdown
17794                 - Fixes repainting problems
17795                 - Adds the class attributes
17796                 
17797 2005-02-07  Geoff Norton  <gnorton@customerdna.com>
17799         * XplatUIOSX.cs: Detect the menu bar and title bar height from
17800         the current theme.  Cache these on startup.
17802 2005-02-07  Jackson Harper  <jackson@ximian.com>
17804         * ScrollBar.cs: Give the correct clipping rect to the theme. Dirty
17805         the scrollbar buttons when they are depressed.
17807 2005-02-07  Geoff Norton  <gnorton@customerdna.com>
17809         * XplatUIOSX.cs: Really fix working at resolutions not 1024x768.
17810         Get the display size from the main displayid.  We currently dont
17811         support multiple display configurations.
17813 2005-02-07  Geoff Norton  <gnorton@customerdna.com>
17815         * XplatUIOSX.cs: Ensure the window doesn't get stuck behind the statusbar.
17817 2005-02-07  Miguel de Icaza  <miguel@novell.com>
17819         * UpDownBase.cs: Add ReadOnly and UpDownAlign properties.
17821 2005-02-05  Jonathan Chambers  <jonathan.chambers@ansys.com>
17823         * PropertyGrid.cs: Updated. Patch by Jonathan Chambers
17825 2005-02-04  Jackson Harper  <jackson@ximian.com>
17827         * ThemeWin32Classic.cs: Respect the clipping rect when
17828         drawing. Only fill the intersection of clips and rects so there
17829         isn't a lot of large fills.
17830         * ScrollBar.cs: Pass the correct clipping rect to the theme
17831         engine. Remove some debug code.
17833 2005-02-05  John BouAntoun  <jba-mono@optusnet.com.au>
17834         
17835         * DateTimePicker.cs:
17836                 - Fixed crash on DateTime.Parse, use Constructor instead
17838 2005-02-04  Jordi Mas i Hernandez <jordi@ximian.com>
17839         
17840         * MenuItem.cs:
17841         * MenuAPI.cs:
17842                 - Owner draw support (MeasureItem and DrawItem)
17844 2005-02-04  Jordi Mas i Hernandez <jordi@ximian.com>
17845         
17846         *  Menu.cs:
17847                 - Implements FindMergePosition and MergeMenu functions (very poor documented)
17848                 - Fixes MenuItems.Add range
17849         * MenuItem.cs:
17850                 - MergeMenu and Clone and CloneMenu functions
17852 2005-02-03  Jackson Harper  <jackson@ximian.com>
17854         * ScrollBar.cs: Make abstract
17855         * ScrollableControl.cs: Create H/V scrollbars now that scrollbar
17856         is abstract.
17858 2005-02-03  Jackson Harper  <jackson@ximian.com>
17860         * ScrollBar.cs: First part of my scrollbar fixups. This removes
17861         all the unneeded refreshes and uses invalidates with properly
17862         computed rects.
17864 2005-02-03  Peter Bartok  <pbartok@novell.com>
17866         * ComponentModel.cs: Added
17867         * IDataGridEditingService.cs: Added
17868         * Timer.cs: Added missing attributes
17869         * ToolTip.cs: Added missing attributes
17871 2005-02-03  Jonathan Chambers  <jonathan.chambers@ansys.com>
17873         * PropertyGridView.cs: Added. Patch by Jonathan Chambers
17875 2005-02-03  Peter Bartok  <pbartok@novell.com>
17877         * ListBox.cs: Added missing attributes
17879 2005-02-03  Jordi Mas i Hernandez <jordi@ximian.com>
17880         
17881         * ListBox.cs:
17882                 - Fixes font height after font change
17883                 - Avoid generating unnecesary OnSelectedIndexChanged on clearing
17884                 
17885 2005-02-02  Peter Bartok  <pbartok@novell.com>
17887         * HandleData.cs: Introduced static methods to allow class
17888           to be more self-contained and track it's own HandleData objects
17889         * XplatUIOSX.cs, XplatUIWin32.cs, XplatUIX11.cs: Fixed usage of
17890           HandleData to use new static methods
17892 2005-02-02  Jordi Mas i Hernandez <jordi@ximian.com>
17894         * Combobox.cs:
17895                 - Fixes default size and PreferredHeight
17896                 - Missing events
17897                 - ObjectCollection.Insert implementation
17898                 
17899         * ListControl.cs
17900                 - Fixes signature
17901         * ListBox.cs:
17902                 - Several fixes
17903                 - ObjectCollection.Insert implementation
17904                 - No selection after clean
17905                 - Small fixes
17907 2005-01-31      John BouAntoun  <jba-mono@optusnet.com.au>
17909         * ThemeWin32Classic.cs: quick fix to comboboxbutton pushed painting
17911 2005-02-01  Jordi Mas i Hernandez <jordi@ximian.com>
17913         * Combobox.cs:
17914                 - Caches ItemHeight calculation for OwnerDrawVariable
17915                 - Handles dropdown properly
17916                 - Fixes several minor bugs
17918 2005-01-31  Jordi Mas i Hernandez <jordi@ximian.com>
17920         * ListBox.cs:
17921                 - Fixes 71946 and 71950
17922                 - Fixes changing Multicolumn on the fly
17923                 - Fixes keyboard navigation on Multicolumn listboxes
17925 2005-01-31  Geoff Norton  <gnorton@customerdna.com>
17926         
17927         * XplatUIOSX.cs: Call ExitToShell in our teardown to avoid a
17928         crash reporter log.
17930 2005-01-31  Geoff Norton  <gnorton@customerdna.com>
17932         * XplatUIOSX.cs: Allow applications to actually exit.
17934 2005-01-31  Geoff Norton  <gnorton@customerdna.com>
17936         * XplatUIOSX.cs: SetWindowStyle implemented.  Reposition views in
17937         their parent at creation time rather than lazily later.  Fixes a major
17938         regression we were experiencing.
17940 2005-01-31      John BouAntoun  <jba-mono@optusnet.com.au>
17942         * ThemeWin32Classic.cs: more date time picker painting fixes
17943         * DateTimePicker.cs: more monthcalendar drop down fixes
17944         * MonthCalendar.cs: more CreateParams fixes to ensure correct drop down
17946 2005-01-31  Jordi Mas i Hernandez <jordi@ximian.com>
17948         * ScrollBar.cs:
17949                 - When moving the thumb going outside the control should stop the moving
17950                 - Adds the firing of missing events
17951                 - Fixes no button show if Size is not specified
17952                 - End / Home keys for keyboard navigation
17954 2005-01-30  Peter Bartok  <pbartok@novell.com>
17956         * NotifyIcon.cs (CalculateIconRect): Removed debug output and added
17957           sanity check to prevent theoretical loop
17958         * XplatUIWin32.cs (SetVisible): Removed debug output
17959         * XplatUIX11.cs (SystrayChange): Added sanity check
17960         * ScrollableControl.cs (OnVisibleChanged): Now calls base method
17961         * Control.cs (OnVisibleChanged): Added workaround for ParentForm
17962           behaviour, valid until the X11 client window rewrite is done
17963         * TextBox.cs (ctor): Setting proper default foreground and background
17964           colors
17966 2005-01-30      John BouAntoun  <jba-mono@optusnet.com.au>
17968         * Theme: Added DrawDateTimePicker to interface
17969         * ThemeWin32Classic.cs: Added DrawDateTimePicker (incomplete)
17970         * DateTimePicker.cs: Created (still needs keys and painting code)
17971         * DateTimePickerFormat.cs: added
17972         * MonthCalendar.cs: fixed CreateParams for popup window mode
17973           
17974 2005-01-29  Peter Bartok  <pbartok@novell.com>
17976         * ControlPaint.cs: Fixed luminace value returned on achromatic colors,
17977           this should also the calculations for ligher/darker
17978         * Theme.cs: Fixed defaults for ScrollBar widths/heights
17980 2005-01-29  Peter Bartok  <pbartok@novell.com>
17982         * ArrangeDirection.cs: Added
17983         * ArrangeStartingPositon.cs: Added
17984         * SystemInformation.cs: Implemented
17985         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs, XplatUIWin32.cs,
17986           XplatUIX11.cs, Theme.cs: Added/implemented new static properties
17987           used by SystemInformation class
17988         * X11Strucs.cs: Added XSizeHints structure
17989         * MenuAPI.cs:
17990           - Fixed CreateParams to make sure the menu window is always visible
17991           - TrackPopupMenu: Added check to make sure we don't draw the
17992             menu offscreen
17994 2005-01-29  Peter Bartok  <pbartok@novell.com>
17996         * HandleData.cs: Added method for altering invalid area
17997         * TextBoxBase.cs: Implemented TextLength
17999 2005-01-28  Peter Bartok  <pbartok@novell.com>
18001         * XplatUIX11.cs: Improvement over last patch, not sending
18002           the WM_PAINT directly anymore, instead we scroll any pending
18003           exposed areas and let the system pick out the WM_PAINT later
18005 2005-01-28  Peter Bartok  <pbartok@novell.com>
18007         * SWF.csproj: Deleted, no longer used. Instead,
18008           Managed.Windows.Forms/SWF.csproj should be used
18009         * XplatUIX11.cs: Instead of posting the WM_PAINT, we send it
18010           directly, to avoid a potential race condition with the next
18011           scroll
18013 2005-01-28  Peter Bartok  <pbartok@novell.com>
18015         * XplatUI.cs: Made class internal
18017 2005-01-28  Jordi Mas i Hernandez <jordi@ximian.com>
18019         * CheckedListBox.cs:
18020                 - Draw focus
18021                 - Fixed Drawing
18022                 - Missing methods and events
18024 2005-01-27  Peter Bartok  <pbartok@novell.com>
18026         * Application.cs (Run): Don't use form if we don't have one
18028 2005-01-27  Peter Bartok  <pbartok@novell.com>
18030         * TextBoxBase.cs (get_Lines): Fixed index off by one error
18032 2005-01-27  Peter Bartok  <pbartok@novell.com>
18034         * GridEntry.cs: Added; Patch by Jonathan S. Chambers
18035         * GridItem.cs: Added; Patch by Jonathan S. Chambers
18036         * GridItemCollection.cs: Added; Patch by Jonathan S. Chambers
18037         * GridItemType.cs: Added; Patch by Jonathan S. Chambers
18038         * PropertyGrid.cs: Added; Patch by Jonathan S. Chambers
18039         * PropertySort.cs: Added; Patch by Jonathan S. Chambers
18040         * PropertyTabChangedEventArgs.cs: Added; Patch by Jonathan S. Chambers
18041         * PropertyTabChangedEventHandler.cs: Added; Patch by Jonathan S. Chambers
18042         * PropertyValueChangedEventArgs.cs: Added; Patch by Jonathan S. Chambers
18043         * PropertyValueChangedEventArgs.cs: Added; Patch by Jonathan S. Chambers
18044         * SelectedGridItemChangedEventArgs.cs: Added; Patch by Jonathan S. Chambers
18045         * SelectedGridItemChangedEventHandler.cs: Added; Patch by Jonathan S. Chambers
18047 2005-01-27  Jordi Mas i Hernandez <jordi@ximian.com>
18049         * Combobox.cs:
18050                 - Draw focus on Simple Combobox
18051                 - Fixes drawing issues
18052                 - fixes 71834
18054 2005-01-27  Peter Bartok  <pbartok@novell.com>
18056         * Form.cs:
18057           - Place window in default location, instead of hardcoded 0/0
18058           - Send initial LocationChanged event
18059         * Control.cs:
18060           - UpdateBounds after creation to find out where the WM placed us
18061           - Make sure that if the ParentForm changes location the Form
18062             is notified
18063         * XplatUIX11.cs: XGetGeometry will not return the coords relative
18064             to the root, but to whatever the WM placed around us.
18065             Translate to root coordinates before returning toplevel
18066             coordinates
18067         * XplatUIWin32.cs: Removed debug output
18068         * XplatUIOSX.cs, XplatUI.cs, XplatUIDriver.cs: Added toplevel
18069           flag to GetWindowPos, to allow translation of coordinates on X11
18071 2005-01-27  Jordi Mas i Hernandez <jordi@ximian.com>
18073         * ListBox.cs: connect LostFocus Event
18075 2005-01-27  Peter Bartok  <pbartok@novell.com>
18077         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIOSX.cs,
18078           XplatUIX11.cs: Extended the Systray API
18079         * Form.cs: Removed debug output
18080         * Application.cs: Fixed focus assignment, always need to call
18081           XplatUI.Activate() since Form.Activate() has rules that may
18082           prevent activation
18083         * NotifyIcon.cs: Should be complete now
18084         * ToolTip.cs: Worked around possible timer bug
18086 2005-01-27  Jackson Harper  <jackson@ximian.com>
18088         * TabControl.cs:
18089         - Only invalidate the effected tabs when the
18090         selected index changes. This reduces drawing and gets rid of some
18091         flicker.
18092         - Only refresh if the tabs need to be shifted, otherwise only
18093         invalidate the slider button.
18094         - On windows the tabs are not filled to right if the slider is
18095         visible.
18096         
18097 2005-01-27  Jackson Harper  <jackson@ximian.com>
18099         * TabControl.cs: Only refresh on mouseup if we are showing the
18100         slider. Also only invalidate the button whose state has changed.
18102 2005-01-26  Peter Bartok  <pbartok@novell.com>
18104         * XplatUI.cs, XplatUIDriver.cs: Added Systray methods
18105         * XplatUIWin32.cs: Implemented SystrayAdd(), SystrayChange()
18106           and SystrayRemove() methods
18107         * XplatUIOSX.cs: Stubbed Systray methods
18108         * XplatUIX11.cs:
18109           - Implemented SystrayAdd(), SystrayChange() and SystrayRemove()
18110             methods
18111           - Fixed broken XChangeProperty calls (marshalling messed up things)
18112         * X11Structs.cs: Added enums and structs required for Size hinting
18113         * NotifyIcon.cs: Added & implemented
18115 2005-01-26  Jackson Harper  <jackson@ximian.com>
18117         * TabControl.cs: Space vertically layed out tabs properly.
18119 2005-01-26  Peter Bartok  <pbartok@novell.com>
18121         * Form.cs (CreateClientParams): Always set the location to 0,0
18122           since we're a child window.
18124         * Control.cs (SetVisibleCore): Always explicitly setting the location
18125           of a toplevel window, apparently X11 doesn't like to move windows
18126           while they're not mapped.
18128 2005-01-26  Jackson Harper  <jackson@ximian.com>
18130         * TabControl.cs: Implement FillToRight size mode with vertically
18131         rendered tabs.
18133 2005-01-26  Jordi Mas i Hernandez <jordi@ximian.com>
18135         * ControlPaint.cs, ThemeWin32Classic.cs
18136                 - Fixes DrawFocusRectangle
18138 2005-01-26  Jordi Mas i Hernandez <jordi@ximian.com>
18140         * MenuAPI.cs:
18141                 - MenuBar tracking only starts when item is first clicked
18142                 - Fixes menu hidding for multiple subitems
18143                 - Unselect item in MenuBar when item Executed
18144                 - Fixes bug 71495
18146 2005-01-25  Jordi Mas i Hernandez <jordi@ximian.com>
18148         * ListControl.cs:
18149                 - IsInputKey for ListBox
18150         * ListBox.cs:
18151                 - Focus item
18152                 - Shift and Control item selection
18153                 - Implement SelectionMode.MultiExtended
18154                 - Fixes RightToLeft
18155         * ComboBox.cs:
18156                 - IsInputKey implemented
18157                 - Do not generate OnTextChangedEdit on internal txt changes
18158                 
18159 2005-01-23  Peter Bartok  <pbartok@novell.com>
18161         * AccessibleObject.cs: Partially implemented Select()
18162         * MonthCalendar.cs: Added missing attributes and events
18163         * Form.cs: Fixed CreateParams behaviour, now controls derived from
18164           form can properly override CreateParams.
18165         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs, XplatUIWin32.cs,
18166           XplatUIX11.cs: Dropped RefreshWindow method, not needed if
18167           Control performs Invalidate & Update
18168         * NativeWindow (CreateHandle): Added special handling for Form
18169           and Form.FormParent classes to allow overriding of From.CreateParams
18170         * Control.cs:
18171           - ControlNativeWindow: Renamed 'control' variable to more intuitive
18172             name 'owner'
18173           - ControlNativeWindow: Added Owner property
18174           - Removed usage of Refresh() on property changes, changed into
18175             Invalidate(), we need to wait until the queue is processed for
18176             updates, direct calls might cause problems if not all vars for
18177             Paint are initialized
18178           - Added call to UpdateStyles() when creating the window, to set any
18179             styles that CreateWindow might have ignored.
18180           - Added support for Form CreateParent overrides to UpdateStyles()
18181         * MessageBox.cs: Removed no longer needed FormParent override stuff,
18182           CreateParams are now properly overridable
18183         * CommonDialog.cs: Removed no longer needed FormParent override stuff,
18184           CreateParams are now properly overridable
18186 2005-01-23  Miguel de Icaza  <miguel@ximian.com>
18188         * UpDownBase.cs (ctor): Connect TextChanged in the entry to the
18189         OnTextBoxChanged.
18191         Capture LostFocus and OnTextBoxChanged.  The later introduces a
18192         recursive invocation that I have not figured out yet.
18194         Reset the timer when not using (it was accumulating).
18197         (OnTextBoxChanged): Set UserEdit to true here to track whether the
18198         user has made changes that require validation.
18200         Reset changing to avoid loops.
18202 2005-01-22  Miguel de Icaza  <miguel@ximian.com>
18204         * NumericUpDown.cs: Display value at startup.
18206         * UpDownBase.cs (Text): Do not call UpdateEditText here, only call
18207         ValidateEditText.
18209         * NumericUpDown.cs: Minimum, Maximum, Text, Value properties
18210         filled in.  Added some basic parsing of text.
18212         Still missing the OnXXX method overrides, and figuring out the
18213         events that must be emitted.
18215         * UpDownBase.cs: Handle UserEdit on the Text property.
18216         
18217 2005-01-22  Jordi Mas i Hernandez <jordi@ximian.com>
18219         * ComboBox.cs:
18220           - Fixes IntegralHeight
18221           - ToString method
18223 2005-01-21  Jackson Harper  <jackson@ximian.com>
18225         * TabControl.cs: Set the SelectedIndex property when SelectedTab
18226         is set so that the page visibility is updated and the tabs are
18227         sized correctly.
18229 2005-01-21  Jackson Harper  <jackson@ximian.com>
18231         * TabControl.cs: Use cliping rectangle for blitting. Give the
18232         theme the clipping rect so we can do clipping while
18233         drawing. Remove some debug code.
18235 2005-01-21  Jackson Harper  <jackson@ximian.com>
18237         * TabPage.cs: Add a new method so tab pages can force the tab
18238         control to recalculate the tab page sizes.
18239         * TabControl.cs: UpdateOwner needs to make the tab control recalc
18240         sizes.
18242 2005-01-20  Jackson Harper  <jackson@ximian.com>
18244         * ThemeWin32Classic.cs: Clip text to the staus bar panels rects.
18246 2005-01-20  Jackson Harper  <jackson@ximian.com>
18248         * TreeView.cs: Set the bounds for nodes properly. They were
18249         getting screwed up when checkboxes were not enabled, but images
18250         were.
18252 2005-01-20  Jordi Mas i Hernandez <jordi@ximian.com>
18254         * ListBox.cs:
18255                 - Owner draw support
18256                 - Fixes
18257                 
18258 2005-01-20  Jackson Harper  <jackson@ximian.com>
18260         * XplatUIStructs.cs: More misc keys
18261         * X11Keyboard.cs: Ignore some control keys.
18263 2005-01-20  Jackson Harper  <jackson@ximian.com>
18265         * X11Structs.cs: Add the modmaps to the keymask struct and tabify.
18266         * X11Keyboard.cs: Set the AltGr mask when we get a key event.
18268 2005-01-19  Peter Bartok  <pbartok@novell.com>
18270         * Control.cs: Un-selecting the control when it is loosing focus
18272 2005-01-19  Jackson Harper  <jackson@ximian.com>
18274         * TreeView.cs: Hook up to the text controls leave event so we can
18275         end editing when the users clicks outside the text box.
18276         
18277 2005-01-19  Jackson Harper  <jackson@ximian.com>
18279         * X11Keyboard.cs: Fix typo that was causing the wrong keycodes to
18280         get set in the conversion array.
18282 2005-01-19  Peter Bartok  <pbartok@novell.com>
18284         * Application.cs (ModalRun): Added a call to CreateControl to ensure
18285           focus is properly set
18286         * Button.cs:
18287           - Added missing attributes
18288           - removed styles, those are already set in the base class
18289         * ButtonBase.cs:
18290           - Added missing attributes
18291           - Added clip window styles
18292         * CheckBox.cs: Added missing attributes
18293         * CommonDialog.cs:
18294           - FormParentWindow.CreateParams: Added required clip styles
18295         * Form.cs (ProcessDialogKey): Fixed handling of Escape key, now
18296           also filters modifier keys
18297         * MessageBox.cs:
18298           - Added assignment of Accept and Cancel button to enable Enter
18299             and Esc keys in MessageBox dialogs
18300           - FormParentWindow.CreateParams: Added required clip styles
18301         * RadioButton.cs: Added missing attributes
18302         * TextControl.cs: No longer draws selection if control does not
18303           have focus
18304         * TextBoxBase.cs:
18305           - Now draws simple rectangle around test area to make it obvious
18306             there's a control. This is a hack until we properly support borders
18307           - A few simple fixes to support selections better, now erases selected
18308             text when typing, and resets selection when using movement keys
18310 2005-01-19  Miguel de Icaza  <miguel@ximian.com>
18312         * UpDownBase.cs: Added some new properties.
18314         * DomainUpDown.cs: Implement a lot to get my test working.
18316 2005-01-19  Geoff Norton  <gnorton@customerdna.com>
18318         * XplatUIOSX.cs: Fix a minor bug to bring the close box back
18320 2005-01-19  Geoff Norton  <gnorton@customerdna.com>
18322         * OSXStructs (WindowAttributes): Fixed csc complaints
18324 2005-01-19  Geoff Norton  <gnorton@customerdna.com>
18326         * XplayUIOSX.cs:
18327           OSXStructs.cs: Initial refactor to move enums and consts into
18328           OSXStructs and use them in the driver for greater readability.
18330 2005-01-19  Geoff Norton  <gnorton@customerdna.com>
18332         * XplatUIOSX.cs: Initial support for Standard Cursors.
18333         * OSXStructs.cs: Move our structs here; added ThemeCursor enum
18335 2005-01-19  Jordi Mas i Hernandez <jordi@ximian.com>
18337         * ComboBox.cs: ability to change style when the ctrl is already
18338         created, missing methods and events, bug fixes, signature fixes
18340 2005-01-19  Peter Bartok  <pbartok@novell.com>
18342         * Cursors.cs (ctor): Added ctor to fix signature
18344 2005-01-18  Peter Bartok  <pbartok@novell.com>
18346         * Button.cs: Implemented DoubleClick event
18347         * ButtonBase.cs:
18348           - Fixed keyboard handling to behave like MS, where the press of
18349             Spacebar is equivalent to a mousedown, and the key release is
18350             equivalent to mouseup. Now a spacebar push will give the same
18351             visual feedback like a mouse click.
18352           - Added missing attributes
18353           - Added ImeModeChanged event
18354           - Added support for generating DoubleClick event for derived classes
18355         * CheckBox.cs:
18356           - Implemented DoubleClick event
18357           - Added missing attributes
18358         * CommonDialog.cs: Added missing attribute
18359         * ContextMenu.cs: Added missing attributes
18360         * RadioButton.cs:
18361           - AutoChecked buttons do not allow to be unselected when clicked
18362             (otherwise we might end up with no selected buttons in a group)
18363           - Added missing attributes
18364           - Implemented DoubleClickEvent
18365         * ThreadExceptionDialog.cs: Enabled TextBox code
18367 2005-01-18  Peter Bartok  <pbartok@novell.com>
18369         * Form.cs: Removed debug output
18370         * Button.cs: Added support for DoubleClick method
18372 2005-01-18  Peter Bartok  <pbartok@novell.com>
18374         * Form.cs:
18375           - Added method to parent window that allows triggering size
18376             calculations when a menu is added/removed
18377           - set_Menu: Cleaned up mess from early days of Form and Control,
18378             now properly triggers a recalc when a menu is added/removed
18379           - Added case to select form itself as focused form if no child
18380             controls exist
18381           - Added PerformLayout call when showing dialog, to ensure properly
18382             placed controls
18383         * Control.cs:
18384           - Select(): Made internal so Form can access it
18385           - Focus(): Only call Xplat layer if required (avoids loop), and sets
18386             status
18387         * Application.cs (Run): Removed hack and calls PerformLayout instead
18388           to trigger calculation when Form becomes visible
18390 2005-01-18  Jordi Mas i Hernandez <jordi@ximian.com>
18392         * ComboBox.cs: fixes for ownerdraw
18394 2005-01-18  Peter Bartok  <pbartok@novell.com>
18396         * TextControl.cs:
18397           - Sentinel is no longer static, each Document gets it's own, this
18398             avoids locking or alternatively overwrite problems when more
18399             than one text control is used simultaneously.
18400           - Switched to use Hilight and HilightText brushes for text selection
18402         * TextBoxBase.cs (PaintControl): Disabled AntiAliasing to improve looks
18404 2005-01-18  Peter Bartok  <pbartok@novell.com>
18406         * Control.cs:
18407           - Hooked up the following events:
18408                 o ControlAdded
18409                 o ControlRemoved
18410                 o HandleDestroyed
18411                 o ImeModeChanged
18412                 o ParentChanged
18413                 o TabStopChanged
18414                 o Invalidated
18415                 o SystemColorsChanged
18416                 o ParentFontChanged
18417                 o Move
18418           - Removed debug output
18419           - Added a call to the current theme's ResetDefaults when a color change
18420             is detected
18421         * Form.cs: Now setting the proper ImeMode
18422         * Theme.cs: Defined a method to force recreation of cached resources
18423           and rereading of system defaults (ResetDefaults())
18424         * ThemeWin32Classic.cs: Added ResetDefaults() stub
18426 2005-01-17  Peter Bartok  <pbartok@novell.com>
18428         * Control.cs: Added missing attributes
18430 2005-01-17  Jackson Harper  <jackson@ximian.com>
18432         * TreeNode.cs: Implement editing. Add missing properties selected
18433         and visible.
18434         * TreeView.cs: Implement node editing. Also some fixes to use
18435         Invalidate (invalid area) instead of Refresh when selecting.
18437 2005-01-17  Peter Bartok  <pbartok@novell.com>
18439         * Control.cs:
18440           - Implemented InvokeGotFocus() method
18441           - Implemented InvokeLostFocus() method
18442           - Implemented InvokePaint() method
18443           - Implemented InvokePaintBackground() method
18444           - Implemented InvokeClick() method
18445           - Implemented FindForm() method
18446           - Implemented RectangleToClient() method
18447           - Implemented ClientToRectangle() method
18448           - Implemented ResetBackColor() method
18449           - Implemented ResetCursor() method
18450           - Implemented ResetFont() method
18451           - Implemented ResteForeColor() method
18452           - Implemented ResetImeMode() method
18453           - Implemented ResetLeftToRight() method
18454           - Implemented ResetText() method
18455           - Implemented Scale() methods
18456           - Implemented ScaleCore() method
18457           - Implemented Update() method
18458           - Removed unused variables
18459           - Stubbed AccessibilityNotifyClients and
18460             ControlAccessibleObject.NotifyClients() methods (dunno what to do
18461             with those yet)
18462           - Now setting proper default for RightToLeft property
18463           - Fixed bug in SetClientSizeCore that would cause windows to get
18464             really big
18465           - Now sending Click/DoubleClick events
18466           - Now selecting controls when left mouse button is clicked on
18467             selectable control
18468         * AccessibleEvents.cs: Added
18469         * XplatUI.cs, XplatUIDriver.cs: Added UpdateWindow() method
18470         * XplatUIOSX.cs: Stubbed UpdateWindow() method
18471         * XplatUIWin32.cs: Implemented UpdateWindow() method
18472         * XplatUIX11.cs: Implemented UpdateWindow() method
18473         * Form.cs: Removed stray semicolon causing CS0162 warning
18474         * ThemeWin32Classic.cs: Fixed unused variable warnings
18475         * ScrollableControl.cs: Now calls base method for ScaleCore
18476         * ButtonBase.cs: Now disabling StandardClick and StandardDoubleClick
18477           style to avoid interference with internal click handler (which is
18478           different than standard Control click handling)
18479         * RadioButton.cs:
18480           - Now unchecks all sibling radio buttons when control is
18481             selected (Fixes #68756)
18482           - Removed internal tabstop variable, using the one inherited from
18483             Control
18485 2005-01-17  Jackson Harper  <jackson@ximian.com>
18487         * NavigateEventArgs.cs: Fix base type.
18488         * LinkLabel.cs: Sig fix
18489         
18490 2005-01-17  Jackson Harper  <jackson@ximian.com>
18492         * TreeView.cs: Only invalidate the effected nodes bounds when
18493         selecting nodes.
18495 2005-01-13  Jordi Mas i Hernandez <jordi@ximian.com>
18497         * XplatUIWin32.cs: fixes Win32 marshaling
18498         * XplatUIX11.cs: fixes method signature
18500 2005-01-17  Peter Bartok  <pbartok@novell.com>
18502         * XplatUIX11.cs: Clean up resources when we no longer need them
18504 2005-01-17  Peter Bartok  <pbartok@novell.com>
18506         * XplatUI.cs, XplatUIDriver.cs: Added SetCursor(), ShowCursor(),
18507           OverrideCursor(), DefineCursor(), DefineStdCursor(), GetCursorInfo()
18508           and DestroyCursor() methods.
18509         * Cursor.cs: Partially implemented, now supports standard cursors;
18510           still contains some debug code
18511         * Cursors.cs: Implemented class
18512         * Control.cs:
18513           - WndProc(): Added handling of WM_SETCURSOR message, setting the
18514             appropriate cursor
18515           - Implemented Cursor property
18516           - Replaced break; with return; more straightforwar and possibly
18517             faster
18518           - Now properly setting the result for WM_HELP
18519         * X11Structs.cs: Added CursorFontShape enum
18520         * XplatUIStructs.cs:
18521           - Added StdCursor enum (to support DefineStdCursor() method)
18522           - Added HitTest enum (to support sending WM_SETCURSOR message)
18523         * XplatUIX11.cs:
18524           - Now sends the WM_SETCURSOR message
18525           - Implemented new cursor methods
18526         * XplatUIOSX.cs: Stubbed new cursor methods
18527         * XplatUIWin32.cs:
18528           - Implemented new cursor methods
18529           - Added GetSystemMetrics function and associated enumeration
18531 2005-01-15  Peter Bartok  <pbartok@novell.com>
18533         * Control.cs:
18534           - WndProc(): Now handles EnableNotifyMessage
18535           - SelectNextControl(): Fixed bug where if no child or sibling
18536             controls exist we looped endlessly
18538 2005-01-14  Jackson Harper  <jackson@ximian.com>
18540         * TreeView.cs: Recalculate the tab pages when a new one is added
18541         so that the proper bounding rects are created.
18543 2005-01-14  Jackson Harper  <jackson@ximian.com>
18545         * TreeView.cs: Draw a gray box instead of a grip in the lower
18546         right hand corner when there are both horizontal and vertical
18547         scroll bars.
18549 2005-01-14  Jackson Harper  <jackson@ximian.com>
18551         * Control.cs: When erasing backgrounds use FromHwnd instead of
18552         FromHdc when there is a NULL wparam. This occurs on the X driver.
18553         * XplatUIX11.cs: Set the wparam to NULL.
18555 2005-01-13  Jackson Harper  <jackson@ximian.com>
18557         * PictureBox.cs: Implement missing methods (except ToString, need
18558         to test that on windows) and events. When visibility is changed we
18559         need to redraw the image because the buffers are killed. When size
18560         is changed refresh if the sizemode needs it.
18562 2005-01-13  Peter Bartok  <pbartok@novell.com>
18564         * Control.cs (SelectNextControl): Was using wrong method to select
18565           a control
18567 2005-01-13  Jordi Mas i Hernandez <jordi@ximian.com>
18569         * ComboBox.cs: fixes dropstyle
18571 2005-01-13  Peter Bartok  <pbartok@novell.com>
18573         * Form.cs:
18574           - Implemented Select() override
18575           - Now handles WM_SETFOCUS/WM_KILLFOCUS messages
18576           - Now sets keyboard focus on startup
18577         * Control.cs (SelectNextControl): Now properly handles directed=true
18578         * TextBoxBase.cs:
18579           - WndProc: Now passes tab key on to base if AcceptTabChar=false
18580           - Added (really bad) focus rectangle (mostly for testing)
18581         * TextBox.cs: Added code to handle getting/loosing focus and invalidating
18582           to enforce redraw on focus changes
18583         * ContainerControl.cs:
18584           - Fixed detection of Shift-Tab key presses
18585           - Fixed traversal with arrow keys
18586         * XplatUIX11.cs: Implemented simulated keyboard focus; not sure if we're
18587           gonna keep this or if it's complete yet
18588         
18589 2005-01-13  Jordi Mas i Hernandez <jordi@ximian.com>
18591         * ComboBox.cs: missing properties, fixes
18593 2005-01-13  Peter Bartok  <pbartok@novell.com>
18595         * Panel.cs (ctor): Setting Selectable window style to off
18596         * Splitter.cs (ctor): Setting Selectable window style to off
18597         * GroupBox.cs (ctor): Setting Selectable window style to off
18598         * Label.cs (ctor): Setting Selectable window style to off
18600 2005-01-12  Miguel de Icaza  <miguel@ximian.com>
18602         * UpDownBase.cs (InitTimer): If the timer has been already
18603         created, enable it.
18605         Use a TextBox instead of a Label.
18607 2005-01-12  Jackson Harper  <jackson@ximian.com>
18609         * TreeView.cs: Refresh the tree after sorting the nodes. Always
18610         draw the connecting node lines (when ShowLines is true).
18611         * TreeNode.cs: The nodes index can now be updated. This is used
18612         when a node collection is sorted.
18613         * TreeNodeCollection.cs: Implement sorting. Nodes can be sorted on
18614         insert or an existing unsorted node collection can be sorted.
18615         
18616 2005-01-12  Peter Bartok  <pbartok@novell.com>
18618         * ContainerControl.cs: Implemented ProcessDialogKeys()
18620 2005-01-12  Peter Bartok  <pbartok@novell.com>
18622         * Control.cs:
18623           - Implemented SelectNextControl() method
18624           - Several focus related bug fixes
18625           - Fixed Docking calculations to match MS documentation and
18626             behaviour
18628 2005-01-12  Jordi Mas i Hernandez <jordi@ximian.com>
18630         * ContainerControl.cs, ListControl.cs, ListBox.cs: keyboard navigation and
18631         bug fixes
18633 2005-01-12  Peter Bartok  <pbartok@novell.com>
18635         * Control.cs:
18636           - Fixed broken Contains() method
18637           - Implemented GetNextControl() method. Finally. This is the pre-
18638             requisite for focus handling.
18640 2005-01-12  Peter Bartok  <pbartok@novell.com>
18642         * OSXStrucs.cs: Added
18644 2005-01-12  Peter Bartok  <pbartok@novell.com>
18646         * XplatUIWin32.cs:
18647           - Removed PeekMessageFlags
18648           - Implemented SetWindowStyle() method
18649         * XplatUIStructs.cs: Added PeekMessageFlags
18650         * X11Structs: Added missing border_width field to XWindowChanges struct
18651         * XplatUIX11.cs:
18652           - PeekMessage: Now throws exception if flags which are not yet
18653             supported are passed
18654           - Implemented SetWindowStyle() method
18655           - Fixed SetZOrder to handle AfterHwnd properly
18656         * XplatUI.cs: Added SetWindowStyle() method
18657         * XplatUIDriver.cs: Added SetWindowStyle() abstract
18658         * Control.cs:
18659           - Implemented UpdateStyles() method
18660           - Implemented UpdateZOrder() method
18661         * XplatUIOSX.cs: Added SetWindowStyle() stub
18663 2005-01-12  Geoff Norton  <gnorton@customerdna.com>
18665         * XplatUIOSX.cs: Fix SetZOrder (this needs more testing with a 3
18666         button mouse).
18669 2005-01-11  Jackson Harper  <jackson@ximian.com>
18671         * TreeView.cs: Still need to draw lines to siblings even if out of
18672         the current node is out of the clip.
18674 2005-01-11  Jackson Harper  <jackson@ximian.com>
18676         * TreeView.cs: When setting the hbar/vbar/grip position use
18677         SetBounds so that perform layout is only called once. Also suspend
18678         and resume layout so layout is only done once for all controls.
18679         - Removed some debug fluff
18680         * SizeGrip.cs: Call base implmentation in overriding methods.
18681         - When visibility is changed the drawing buffers are killed so we
18682         need to redraw.
18684 2005-01-11  Jackson Harper  <jackson@ximian.com>
18686         * TreeView.cs: Calculate the open node count while drawing. This
18687         saves us an entire tree traversal for every paint operation. Use
18688         a member var for the open node count so less vars are passed around.
18690 2005-01-11  John BouAntoun  <jba-mono@optusnet.com.au>
18692         * MonthCalendar.cs:
18693         - fixed selection to use mousemove, not mouse polling on timer
18694         * ThemeWin32Classic.cs
18695         - removed redundant unused variable "no_more_content"
18696         
18697 2005-01-11  Peter Bartok  <pbartok@novell.com>
18699         * XplatUIX11.cs (DoEvents): Needs to return when no more events
18700           are pending, so it now calls PeekMessage instead of GetMessage;
18701           implemented a incomplete version of PeekMessage
18702         
18703 2005-01-11  Peter Bartok  <pbartok@novell.com>
18705         * XplatUIWin32.cs: Switched P/Invokes to unicode charset to avoid
18706           I18n issues
18707         * TextBoxBase.cs: Added sending of TextChanged event
18709 2005-01-10  Jackson Harper  <jackson@ximian.com>
18711         * TreeView.cs: Try not to draw outside the clipping rectangle on
18712         each node element.
18714 2005-01-10  Jordi Mas i Hernandez <jordi@ximian.com>
18716         * ComboBox.cs: keyboard navigation, item navigation, bug fixes
18718 2005-01-10  Jackson Harper  <jackson@ximian.com>
18720         * TreeView.cs:
18721         - Implement fast scrolling. Now only the newly
18722         exposed nodes are drawn and the old image is moved using the
18723         XplatUI::ScrollWindow method.
18724         - Factor in height of nodes when calculating whether or not the
18725         node is in the clipping rect.
18727 2005-01-10  Jackson Harper  <jackson@ximian.com>
18729         * TreeNodeCollection.cs: Refresh the tree when a new node is added.
18731 2005-01-10  Peter Bartok  <pbartok@novell.com>
18733         * Application.cs: Added temporary hack to resolve all our resize
18734           required issues on startup. This will get fixed properly at
18735           some point in the future
18737 2005-01-10  Jackson Harper  <jackson@ximian.com>
18739         * SizeGrip.cs: New internal class that is used as a sizing
18740         grip control...hence the name.
18742 2005-01-10  Peter Bartok  <pbartok@novell.com>
18744         * Control.cs: Implemented proper TabIndex handling, now assigning
18745           a tabindex when a control is added to a container
18746         * GroupBox.cs (ctor): Now sets the Container style bit, required
18747           for Control.GetNextControl()
18749 2005-01-09  Jackson Harper  <jackson@ximian.com>
18751         * TextBoxBase.cs: Clear window when scrolling (fixes build).
18753 2005-01-09  Peter Bartok <pbartok@novell.com>
18755         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIOSX.cs,
18756           XplatUIX11.cs: Added ability to control ScrollWindow expose and
18757           an overload for ScrollWindow to allow only scrolling a rectangle
18759 2005-01-09  Peter Bartok <pbartok@novell.com>
18761         * Form.cs:
18762           - Implemented SetDesktopBounds method
18763           - Implemented SetDesktopLocation method
18765 2005-01-08  Jackson Harper  <jackson@ximian.com>
18767         * TreeView.cs: Only set the vbar's Maximum and LargeChange when
18768         the node count has changed, this removes to VScroll::Refresh calls
18769         when drawing.
18771 2005-01-08  Geoff Norton  <gnorton@customerdna.com>
18773         * XplatUIOSX.cs: Fix GetWindowState & SetWindowState
18775 2005-01-07  Jackson Harper  <jackson@ximian.com>
18777         * TreeNode.cs: Just update the single node when it is
18778         checked. Don't refresh after toggling, the Expand/Collapse already
18779         handles this.
18780         * TreeView.cs: Respect clipping a little more when drawing. Try
18781         not to redraw things that don't need to be redrawn. Just hide the
18782         scrollbars when they are no longer needed instead of removing
18783         them, so they don't have to be created again and again.
18784         
18785 2005-01-07  Geoff Norton  <gnorton@customerdna.com>
18787         * XplatUIOSX.cs (SetCaretPos):  We need to translate the view
18788         coordinates to window space to place the caret properly, FIXED.
18789         Implement GetWindowState & SetWindowState
18791 2005-01-06  Peter Bartok <pbartok@novell.com>
18793         * Form.cs:
18794           - Implemented ClientSize property
18795           - Implemented DesktopBounds property
18796           - Implemented DesktopLocation property
18797           - Implemented IsRestrictedWindow property
18798           - Implemented Size property
18799           - Implemented TopLevel property
18800           - Implemented FormWindowState property
18801         * Control.cs:
18802           - Implemented GetTopLevel() method
18803           - Implemented SetTopLevel() method
18804         * X11Structs.cs (Atom):
18805           - Added AnyPropertyType definition
18806           - Added MapState definiton and updated XWindowAttribute struct
18807         * XplatUI.cs: Added GetWindowState() and SetWindowState() methods
18808         * XplatUIDriver.cs: Added GetWindowState() and SetWindowState() methods
18809         * XplatUIOSX.cs: Stubbed GetWindowState() and SetWindowState() methods
18810         * XplatUIWin32.cs:
18811           - Implemented GetWindowState() and SetWindowState() methods
18812           - Fixed Win32GetWindowLong return type
18813         * XplatUIX11.cs:
18814           - Introduced central function for sending NET_WM messages
18815           - Implemented GetWindowState() and SetWindowState() methods
18816         * TextBoxBase.cs (set_Lines):
18817           - Now uses Foreground color for text added via Text property (Duh!)
18818           - Added code to remember programmatically requested size (fixes
18819             behaviour when Multiline is set after Size)
18820           - Added AutoSize logic
18822 2005-01-06  Jackson Harper  <jackson@ximian.com>
18824         * TreeView.cs: Draw the image after the checkbox if checkboxes are enabled.
18826 2005-01-06  Jackson Harper  <jackson@ximian.com>
18828         * ListBox.cs: Don't allow the horizontal scrollbars maximum to be
18829         set to less then 0.
18831 2005-01-06  Jackson Harper  <jackson@ximian.com>
18833         * ScrollableControl.cs: Lazy init the scrollbars.
18834         
18835 2005-01-06  Jackson Harper  <jackson@ximian.com>
18837         * Theme.cs: Speed up getting pens and solid brushes, by using
18838         their ARGB as a hash instead of tostring and not calling Contains.
18840 2005-01-06  Peter Bartok <pbartok@novell.com>
18842         * Form.cs:
18843           - Implemented OnActivated and OnDeactivate event trigger
18844           - Implemented Activate() method
18845           - Fixed ShowDialog() to activate the form that was active before
18846             the dialog was shown
18847         * XplatUIX11.cs:
18848           - Added global active_window var that tracks the currently active
18849             X11 window
18850           - Now always grabs Property changes from the root window to always
18851             catch changes on the active window property
18852           - Added code to PropertyNotify handler to send Active/Inactive
18853             messages when state changes. This puts X11 and Win32 en par on
18854             WM_ACTIVATE notifications (except for double notifications when
18855             the user clicks away from our modal window to another one of our
18856             windows)
18858 2005-01-05  Jackson Harper  <jackson@ximian.com>
18860         * ImageList.cs: Implment ctor
18862 2005-01-05  Geoff Norton  <gnorton@customerdna.com>
18864         * XplatUIOSX.cs: Implement Activate/SetTopmost
18866 2005-01-05  Geoff Norton  <gnorton@customerdna.com>
18868         * XplatUIOSX.cs: Implement SetZOrder, minor cleanup
18870 2005-01-05  Geoff Norton  <gnorton@customerdna.com>
18872         * XplatUIOSX.cs: Implement GetActive/SetFocus.
18874 2005-01-05  Peter Bartok <pbartok@novell.com>
18876         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIX11.cs,
18877           XplatUIOSX.cs: Added GetActive method to return the currently
18878           active window for the application (or null, if none is active)
18879         * Form.cs:
18880           - Implemented ActiveForm
18881           - Commented out owner assignment for modal dialogs (causes problems
18882             on Win32, since the owner will be disabled)
18883           - Reworked some Active/Focus handling (still incomplete)
18884         * CommonDialog.cs: Commented out owner assignment for modal dialogs
18885           (causes problems on Win32, since the owner will be disabled)
18886         * IWin32Window: Added ComVisible attribute
18888 2005-01-05  Peter Bartok <pbartok@novell.com>
18890         * ToolTip.cs (WndProc): Enable setting focus now that we have the
18891           required XplatUI functions.
18893 2005-01-05  Peter Bartok <pbartok@novell.com>
18895         * XplatUI.cs, XplatUIOSX.cs, XplatUIWin32.cs, XplatUIDriver.cs,
18896           XplatUIX11.cs, X11Structs.cs, Form.cs: Framework code required
18897           to implement focus and activation handling; still incomplete and
18898           with debug output
18900 2005-01-04  Peter Bartok <pbartok@novell.com>
18902         * TextBoxBase.cs: Changed access level for Document property to
18903           match switch to internal for TextControl
18905 2005-01-04  Peter Bartok <pbartok@novell.com>
18907         * AccessibleObject: Added ComVisible attribute
18909 2005-01-04  Jackson Harper  <jackson@ximian.com>
18911         * X11Keyboard.cs: Remove unneeded var.
18913 2005-01-04  Jackson Harper  <jackson@ximian.com>
18915         * XplatUIX11.cs (DoEvents): Implement, Just cast aside all events
18916         but PAINT.
18917         * XplatUIX11.cs (GetMessage): Call Exit when we get an unknown
18918         ClientMessage. This makes apps exit cleanly (more often).
18919         
18920 2005-01-04  Jackson Harper  <jackson@ximian.com>
18922         * TreeNode.cs: Patches by Kazuki Oikawa (kazuki@panicode.com) for
18923         handling focus, return correct colors and fonts,
18924         * TreeView.cs: Patches by Kazuki Oikawa (kazuki@panicode.com) to
18925         handle selection, horizontal scrolling, and mouse interaction.
18927 2005-01-04  Peter Bartok <pbartok@novell.com>
18929         * ICommandExecutor.cs: Added
18930         * IDataGridColumnStyleEditingNotificationService.cs: Added
18931         * IFeatureSupport.cs: Added
18932         * IFileReaderService.cs: Added
18933         * IDataObject.cs: Added ComVisible attribute
18934         * AmbientProperties.cs: Added
18935         * BaseCollection.cs: Added missing attributes
18936         * ListBindingConverter.cs: Added (stubbed, required for certain attributes)
18937         * BaseCollection.cs: Added missing attributes
18938         * Binding.cs: Added TypeConverter attribute
18939         * BindingContext.cs: Added DefaultEvent attribute
18940         * BindingsCollection.cs: Added DefaultEvent attribute
18941         * Button.cs: Added DefaultValue attribute
18942         * DragEventArgs.cs: Added ComVisible attribute
18943         * GiveFeedbackEventArgs.cs: Added ComVisible attribute
18944         * KeyEventArgs.cs: Added ComVisible attribute
18945         * KeyPressEventArgs.cs: Added ComVisible attribute
18946         * MouseEventArgs.cs: Added ComVisible attribute
18947         * NavigateEventArgs.cs: Added
18948         * NavigateEventHandler.cs: Added
18949         * FeatureSupport.cs: Added
18950         * OSFeature.cs: Added
18951         * Theme.cs: Added abstract Version property to support OSFeature
18952         * ThemeWin32Classic.cs: Added Version property to
18953           support OSFeature.Themes
18954         * ProgressBar.cs: Removed OnPaintBackground override, not required since
18955           the proper styles to avoid background drawing are set, also doesn't
18956           match MS signature
18957         * QueryAccessibilityHelpEventArgs.cs: Added ComVisible attribute
18958         * QueryContinueDragEventArgs.cs: Added ComVisible attribute
18959         * ScrollEventArgs.cs: Added ComVisible attribute
18960         * SplitterEventArgs.cs: Added ComVisible attribute
18961         * AccessibleSelection.cs: Added Flags attribute
18962         * Appearance.cs: Added ComVisible attribute
18963         * Border3DSide.cs: Added ComVisible attribute
18964         * Border3DStyle.cs: Added ComVisible attribute
18965         * BorderStyle.cs: Added ComVisible attribute
18966         * DragAction.cs: Added ComVisible attribute
18967         * ErrorBlinkStyle.cs: Added
18968         * ScrollEventType.cs: Added ComVisible attribute
18969         * AnchorStyles.cs: Added Editor attribute
18970         * DockStyle.cs: Added Editor attribute
18971         * HorizontalAlignment.cs: Added ComVisible attribute
18972         * HelpEventArgs.cs: Added ComVisible attribute
18973         * PaintEventArgs.cs: Added IDisposable
18975 2005-01-04  Peter Bartok <pbartok@novell.com>
18977         * TextControl.cs: Switched Line, LineTag and Document classes to
18978           internal
18980 2005-01-04  Jordi Mas i Hernandez <jordi@ximian.com>
18982         * ComboBox.cs, ThemeWin32Classic.cs, ListBox.cs, Theme.cs:
18983         Simple mode, fixes, IntegralHeight, etc.
18985 2005-01-04  Peter Bartok <pbartok@novell.com>
18987         * TextBoxBase.cs: Using proper font variable now
18989 2005-01-04  Peter Bartok <pbartok@novell.com>
18991         * Form.cs (ShowDialog): Set parent to owner, if provided
18992         * GroupBox.cs: Removed unused vars
18993         * TextControl.cs:
18994           - Added GetHashCode() for Document and LineTag classes
18995           - Removed unused variables
18996           - Added CharIndexToLineTag() and LineTagToCharIndex() methods
18997             to allow translation between continuous char position and line/pos
18998         * CheckBox.cs: Removed vars that are provided by base class
18999         * RadioButton.cs: Removed vars that are provided by base class, added
19000           new keyword where required
19001         * LinkLabel.cs: Added new keyword where required
19002         * Control.cs (WndProc): Removed unused variable
19003         * TextBoxBase.cs:
19004           - Finished SelectionLength property
19005           - Implemented SelectionStart property
19006           - Implemented Text property
19007           - Removed unused vars
19008         * MessageBox.cs: Added new keyword where required
19009         * TextBox.cs: Removed Text property code (now in TextBoxBase), fixed
19010           WndProc signature
19011         * MenuAPI.cs: Added new keyword where required
19012         * ButtonBase.cs: Removed vars that are provided by base class, added
19013           new keyword where required
19014         * ThemeWin32Classic.cs (DrawMonthCalendarDate): Now cast Math.Floor
19015           argument to double, to allow compiling with csc 2.0 (Atsushi ran
19016           into this)
19017         * Application.cs (Run): Now triggers the ThreadExit event
19018         * CommonDialog.cs: Added new keyword where required; now properly sets
19019           parent (owner) for dialog
19020         * XplatUIX11.cs: Commented out unused vars
19021         * StatusBar.cs: Fixed signature for Text property
19022         * TabPage.cs: Undid Jordi's removal of unused var, now using the var
19024 2005-01-04  Jordi Mas i Hernandez <jordi@ximian.com>
19026         * ComboBox.cs, TabPage.cs, MenuAPI.cs, ThemeWin32Classic.cs,
19027         TrackBar.cs, MonthCalendar.cs: remove unused vars
19029 2005-01-03  Jackson Harper  <jackson@ximian.com>
19031         * ThemeWin32Classic.cs:
19032         * X11Keyboard.cs: Remove unused vars.
19034 2005-01-03  Peter Bartok  <pbartok@novell.com>
19036         * TextBox.cs:
19037           - set_Text: Tied into TextControl
19038           - set_TextAlignment: Tied into TextControl
19039         * TextControl.cs:
19040           - Added alignment properties and implemented alignment handling
19041             and drawing (still has a bug, not generating proper expose events)
19042           - Added new Line() constructor to allow passing the line alignment
19043           - Fixed selection setting, properly handling end<start now
19044           - Added aligment considerations to RecalculateDocument()
19045         * TextBoxBase.cs:
19046           - Now properly enforces control height for single line controls
19047           - Added support for CharacterCasing
19048           - Added IsInputKey override
19049           - Fixed Keys.Enter logic
19050           - Added SetBoundsCore override
19051           - Fixed mouse selection handling
19053 2005-01-03  Jackson Harper  <jackson@ximian.com>
19055         * TreeView.cs:
19056           - Collapse and uncheck all nodes when CheckBoxes is disabled.
19057           - Checkboxes are always aligned to the bottom of the node,
19058           regardless of item height.
19059           - Use the node bounds to draw the text so we can center it when
19060           the item height is greater then the font height.
19061           - Node::Bounds are only the text part of the node.
19062         * TreeNode.cs: New method to combine collapsing and unchecking all
19063           nodes recursively.
19065 2005-01-02  Jackson Harper  <jackson@ximian.com>
19067         * TreeView.cs: Draw checkmarks, handle detecting check mark clicks
19068         * TreeNode.cs: Add a bounding box for the checkbox, refresh the
19069         tree when a check is changed. TODO: Only refresh the checked node.
19071 2004-12-30  Jackson Harper  <jackson@ximian.com>
19073         * TreeView.cs: Draw checkbox boxes when checkboxes are enabled.
19074         * TreeNode.cs: When collapsing make sure to never collapse the
19075         root node.
19077 2004-12-29  Jackson Harper  <jackson@ximian.com>
19079         * TreeView.cs: Align lines to the bottom of plus minus boxes properly.
19080         
19081 2004-12-28  Zoltan Varga  <vargaz@freemail.hu>
19083         * X11Structs.cs X11Keyboard.cs XplatUIX11.cs: Fix 64 bit issues.
19085 2004-12-28  Peter Bartok  <pbartok@novell.com>
19087         * MessageBox.cs (get_CreateParams): Don't use owner var if it's
19088           not yet assigned
19090 2004-12-28  Peter Bartok  <pbartok@novell.com>
19092         * Control.cs (WndProc): Added WM_HELP handler, now generates
19093           HelpRequested event
19094         * Form.cs: Added HelpButton property and required support code
19095         * XplatUIStructs.cs: Added HELPINFO structure for WM_HELP handling
19097 2004-12-28  Peter Bartok  <pbartok@novell.com>
19099         * CommonDialog.cs:
19100           - Made DialogForm.owner variable internal
19101           - Added check to ensure owner form is set before setting
19102             owner properties in CreateParams
19104 2004-12-28  Geoff Norton  <gnorton@customerdna.com>
19106         * XplatUIOSX.cs: Implement mouse hovering.  Fix QDPoint struct to avoid
19107           swizzling.  Implement ClientToScreen and ScreenToClient.  Implement
19108           GetCursorPos.  Fix major visibility issues.  Rework the windowing
19109           system to support borderless/titleless windows (implements menus).
19110           Fix GetWindowPos.  Implement initial background color support for
19111           views.
19113 2004-12-28  Peter Bartok  <pbartok@novell.com>
19115         * Form.cs (get_CreateParams): Make sure we have an owner before using
19116           the owner variable. Implement proper default if no owner exists
19118 2004-12-28  Peter Bartok  <pbartok@novell.com>
19120         * In preparation for making Managed.Windows.Forms the default build target
19121           for System.Windows.Forms, the following stubbed files were added.
19122           Dialogs are currently being implemented by contributors and are only
19123           short-term place holders.
19124         * ColorDialog.cs: Initial check-in (minmal stub)
19125         * DataGrid.cs: Initial check-in (minimal stub)
19126         * DataGridLineStyle.cs: Initial check-in (minimal stub)
19127         * DataGridParentRowsLabelStyle.cs: Initial check-in (minimal stub)
19128         * DataGridTableStyle.cs: Initial check-in (minimal stub)
19129         * FontDialog.cs: Initial check-in (minimal stub)
19130         * FileDialog.cs: Initial check-in (minimal stub)
19131         * GridColumnStylesCollection.cs: Initial check-in (minimal stub)
19132         * GridTableStylesCollection.cs: Initial check-in (minimal stub)
19133         * OpenFileDialog: Initial check-in (minimal stub)
19134         * IComponentEditorPageSite.cs: Initial check-in
19135         * Splitter.cs: Initial check-in (for Jackson)
19136         * SplitterEventArgs.cs: Initial check-in (for Jackson)
19137         * SplitterEventHandler.cs: Initial check-in (for Jackson)
19138         * TextBox.cs: Initial check-in; still needs some wiring to
19139           TextControl backend
19140         * Form.cs: Implemented ControlBox property
19141         * MessageBox.cs: Added proper coding for Minimize/Maximize/ControlBox
19142         * CommonDialog.cs: Added proper coding for Minimize/Maximize/ControlBox
19143         * TextControl.cs: Added selection functionality; added todo header
19144         * TextBoxBase.cs:
19145           - Implemented Lines property
19146           - Implemented TextHeight property
19147           - Implemented SelectedText property
19148           - Implemented SelectionLength property
19149           - Implemented SelectAll method
19150           - Implemented ToString method
19151           - Removed and cleaned up some debug code
19152           - Implemented (still buggy) mouse text selection
19154 2004-12-27  Jordi Mas i Hernandez <jordi@ximian.com>
19156         * ComboBox.cs: Complete DropDownList implementation, fixes.
19158 2004-12-26  Jordi Mas i Hernandez <jordi@ximian.com>
19160         * ThemeWin32Classic, Theme.cs: ComboBox drawing methods
19161         * ComboBoxStyle.cs: ComboBoxStyle enum
19162         * ComboBox.cs: Initial work on ComboBox control
19164 2004-12-21  Peter Bartok  <pbartok@novell.com>
19166         * Control.cs (ctor, CreateParams): Moved setting of is_visible
19167           forward so that anything that creates a window gets the default,
19168           also no longer uses Visible property in CreateParams to avoid
19169           walking up the parent chain and possibly get the wrong visible
19170           status. Fixed IsVisible to no longer walk up to the parent.
19172 2004-12-21  Peter Bartok  <pbartok@novell.com>
19174         * Form.cs (ShowDialog): Unset modality for the proper window
19176 2004-12-20  Peter Bartok  <pbartok@novell.com>
19178         * CommonDialog.cs: Initial check-in
19180 2004-12-20  Peter Bartok  <pbartok@novell.com>
19182         * Control.cs (Visible): Now uses the parent window instead of the
19183           client area window for the property
19185         * Form.cs
19186           - ShowDialog(): Now uses the proper window for modality
19187           - The default visibility state for the form parent is now false. This
19188             will prevent the user from seeing all the changes to the form and
19189             its controls before the application hits Application.Run()
19190           - Removed some stale commented out code
19192         * NativeWindow.cs:
19193           - Added FindWindow() method to have a method to check for existence
19194             of a window handle
19195           - Added ability to override default exception handling (for example
19196             when debugging with VS.Net; to do this the ExternalExceptionHandler
19197             define must be set
19198           - Removed some useless debug output
19200         * XplatUIX11.cs:
19201           - Removed r37929 (SetModal patch from Ashwin Bharambe), was
19202             not working as expected
19203           - Implemented modal_window stack and checking for _WM_ACTIVE_WINDOW
19204             property to allow switching back to the modal window if focus is
19205             given to another one of our windows (Application Modal)
19206           - Now only sets override_redirect if we create a window
19207             without WS_CAPTION
19208           - Moved EventMask selection before mapping of newly created window
19209             so we can catch the map event as well
19210           - Implemented Activate() method via the _WM_ACTIVE_WINDOW property
19211           - Added various Atom related DllImports
19212           - Implemented Exit() method
19213           - .ctor() : No longer shows window if WS_VISIBLE is not defined
19214             in the CreateParams
19216         * MessageBox.cs: Now properly deals with the FormParent window by
19217           providing an override the FormParent CreateParams property to
19218           set as POPUP instead of OVERLAPPED window.
19220 2004-12-19  Geoff Norton  <gnorton@customerdna.com>
19222         * XplatUIOSX.cs: Implement DestroyWindow.  Implement ScrollWindow
19223         Minor code cleanup.
19225 2004-12-19  Geoff Norton  <gnorton@customerdna.com>
19226         
19227         * XplatUIOSX.cs (SetModal): Implement this method on OSX.
19229 2004-12-18  Peter Bartok  <pbartok@novell.com>
19231         * XplatUIX11.cs (SetModal): Applied patch from Ashwin Bharambe,
19232           implementing SetModal() method
19234 2004-12-18  Peter Bartok  <pbartok@novell.com>
19236         * X11Structs.cs (XGCValues): Fixed type of function element
19237         * XplatUI.cs: Added ScrollWindow() method
19238         * XplatUIDriver.cs: Added ScrollWindow() abstract
19239         * XplatUIWin32.cs: Implemented ScrollWindow() method
19240         * XplatUIX11.cs: Implemented ScrollWindow() method
19241         * XplatUIOSX.cs: Stubbed out ScrollWindow() method
19243 2004-12-17  Geoff Norton  <gnorton@customerdna.com>
19245         * XplatUIOSX.cs:  Fix cursor to use an Invert instead of drawing it
19246         Some more keyboard support (INCOMPLETE)
19248 2004-12-17  Peter Bartok  <pbartok@novell.com>
19250         * TextControl.cs:
19251         - Added color attribute to line tags.
19252         - Added color argument to all functions dealing with tags
19253         - Added color argument support to various functions
19254         - Fixed miss-calculation of baseline/shift in certain circumstances
19256         * TextBoxBase.cs: Added new color option to test code
19258 2004-12-17  Jackson Harper  <jackson@ximian.com>
19260         * TreeNode.cs:
19261         * MonthCalendar.cs: Signature fixes
19263 2004-12-17  Geoff Norton  <gnorton@customerdna.com>
19265         * XplatUIOSX.cs: Find the missing caret; caret was dissappearing after a
19266         keyboard event moved it.  Create a new graphics context for each paint resolves this
19268 2004-12-17  Geoff Norton  <gnorton@customerdna.com>
19270         * XplatUIOSX.cs: Fix hard cpu eat on loop with existing timers,
19271         Make caret exist and go blink blink.  Initial keyboard support.
19272         Fix exception handler, Add Invalidate support.  Change way RefreshWindow
19273         works.
19275 2004-12-17  Jackson Harper  <jackson@ximian.com>
19277         * XplatUIStructs.cs: Updated set of virtual keycodes.
19278         * KeyboardLayouts.cs: SCROLL_LOCK is now SCROLL
19280 2004-12-17  Jackson Harper  <jackson@ximian.com>
19282         * XplatUIX11.cs: Prune old keyboard code.
19284 2004-12-17  Jackson Harper  <jackson@ximian.com>
19286         * XplatUIX11.cs: When generating mouse wparams get the modifier
19287         keys from the ModifierKeys property.
19289 2004-12-17  Jackson Harper  <jackson@ximian.com>
19291         * X11Keyboard.cs: Send up/down input when generating
19292         messages. Remove some unused vars.
19294 2004-12-17  Jackson Harper  <jackson@ximian.com>
19296         * TabControl.cs:
19297         * TreeView.cs: get rid of warnings.
19299 2004-12-17  Jackson Harper  <jackson@ximian.com>
19301         * XplatUIStructs.cs: Fix a couple wrong virtual keycodes.
19303 2004-12-17  Jordi Mas i Hernandez <jordi@ximian.com>
19305         * ListBox.cs: bug fixes, changes for CheckedListBox.cs
19306           CheckedListBox.cs: Implementation
19308 2004-12-17  Peter Bartok  <pbartok@novell.com>
19310         * TextControl.cs (RecalculateLine): Fixed baseline aligning calcs
19312 2004-12-16  Peter Bartok  <pbartok@novell.com>
19314         * TextControl.cs:
19315           - InsertCharAtCaret(): Fixed start pos fixup
19316           - CaretLine_get: No longer derives the line from the tag, the tag
19317             could be stale if lines in the document have been added or deleted
19318           - RebalanceAfterDelete(): Fixed bug in balancing code
19319           - RebalanceAfterAdd(): Fixed really stupid bug in balancing code
19320           - Line.Streamline(): Now can also elminate leading empty tags
19321           - DumpTree(): Added a few more tests and prevented exception on
19322             uninitialized data
19323           - Added Debug section for Combining lines
19324           - Delete(): Now copies all remaining properties of a line
19325           
19326         * TextBoxBase.cs:
19327           - Left mousebutton now sets the caret (and middle button still acts
19328             as formatting tester, which must go away soon)
19329           - Added Debug section for Deleting/Combining lines
19330           - Fixed calculations for UpdateView after Combining lines
19332 2004-12-16  Peter Bartok  <pbartok@novell.com>
19334         * TextControl.cs: Now properly aligns text on a baseline, using the
19335           new XplatUI.GetFontMetrics() method. Simplified several calculations
19336         * TextBoxBase.cs: Moved #endif to allow compiling if Debug is not
19337           defined
19339 2004-12-16  Peter Bartok  <pbartok@novell.com>
19341         * XplatUI.cs: Added GetFontMetrics() method
19342         * XplatUIDriver.cs: Added GetFontMetrics() abstract
19343         * XplatUIX11.cs: Implemented GetFontMetrics() method, now calls
19344           into libgdiplus, our private GetFontMetrics function
19345         * XplatUIOSX.cs: Implemented GetFontMetrics() method, same as X11
19346         * XplatUIWin32.cs: Implemented GetFontMetrics() method
19348 2004-12-16  Jackson Harper  <jackson@ximain.com>
19350         * XplatUIStruct.cs: Add enum for dead keys
19351         * X11Keyboard.cs: Map and unmap dead keys.
19353 2004-12-16  Jackson Harper  <jackson@ximian.com>
19355         * X11Keyboard.cs: Detect and use the num lock mask.
19357 2004-12-16  Peter Bartok  <pbartok@novell.com>
19359         * Control.cs (CreateGraphics): Added check to make sure the
19360           handle of the window exists before calling Graphics.FromHwnd()
19362 2004-12-16  Peter Bartok  <pbartok@novell.com>
19364         * TextBoxBase.cs: Initial check-in. DO NOT TRY TO USE THIS YET. It
19365           contains a lot of code that's not supposed to be there for the
19366           real thing, but required for developing/testing the textbox
19367           backend.
19369 2004-12-16  Peter Bartok  <pbartok@novell.com>
19371         * TextControl.cs:
19372         - Fixed Streamline method
19373         - Added FindTag method to Line
19374         - Added DumpTree method for debugging
19375         - Added DecrementLines() method for deleting lines
19376         - Fixed UpdateView to update the cursor to end-of-line on single-line
19377           updates
19378         - Added PositionCaret() method
19379         - Fixed MoveCaret(LineDown) to move into the last line, too
19380         - Added InsertChar overload
19381         - Fixed InsertChar tag offset calculations
19382         - Added DeleteChar() method
19383         - Added Combine() method for folding lines
19384         - Fixed Delete() method, no longer allocates wasted Line object and
19385           now copies all properties when swapping nodes
19386         - Delete() method now updates document line counter
19388 2004-12-15  Jackson Harper  <jackson@ximian.com>
19390         * XplatUIX11.cs: Get the modifier keys from the keyboard driver
19391         * X11Keyboard.cs: Expose the currently selected modifier keys
19392         through a property.
19394 2004-12-15  Peter Bartok  <pbartok@novell.com>
19396         * TextControl.cs: Initial check-in. Still incomplete
19398 2004-12-15  Jackson Harper  <jackson@ximian.com>
19400         * TreeNode.cs:
19401         * TreeView.cs: Fix build on csc (second time today ;-))
19403 2004-12-15  Jackson Harper  <jackson@ximian.com>
19405         * TreeView.cs: Store the treenodes plus/minus box bounds when it
19406         is calculated and use this for click testing.
19407         * TreeNode.cs: Add functionality to store the nodes plus minus box bounds.
19409 2004-12-15  Jackson Harper  <jackson@ximian.com>
19411         * TreeView.cs: Pass the nodes image index to the image list when
19412         drawing that image.
19414 2004-12-15  Jackson Harper  <jackson@ximian.com>
19416         * X11Keyboard.cs: Set messages hwnd.
19417         * XplatUIX11.cs: Pass proper hwnd wot keyboard driver. Set hwnd on
19418         post_message calls.
19420 2004-12-15  Jackson Harper  <jackson@ximian.com>
19422         * X11Keyboard.cs: Fix to compile with csc.
19423         
19424 2004-12-15  Jackson Harper  <jackson@ximian.com>
19426         * X11Structs.cs: Add key mask values
19427         * XplatUIStruct.cs: Add keyboard event flags, and keyboard definitions
19428         * X11Keyboard.cs: New file - Extrapolates and interpolates key
19429         down/up foo into WM_CHAR foo
19430         * KeyboardLayouts.cs: Common keyboard layouts
19431         * XplatUIX11.cs: Add the keyboard driver. Add functionality to
19432         post messages into the main queue.
19434 2004-12-13  Jordi Mas i Hernandez <jordi@ximian.com>
19436         * Button.cs: implement ProcessMnemonic
19437         * ThemeWin32Classic.cs: use ResPool (caching) instead of creating
19438           brushes everytime
19439         * Control.cs: fixes IsMnemonic (support for &&, case insensitive, etc)
19440         * ButtonBase.cs: Show HotkeyPrefix (not the &)
19442 2004-12-12  John BouAntoun  <jba-mon@optusnet.com.au>
19443         
19444         * MonthCalendar.cs: Implemented click-hold for next/previous month
19445           and date selection
19446           
19447 2004-12-11  Peter Bartok  <pbartok@novell.com>
19449         * X11Structs.cs:
19450           - Added XKeyboardState (moved from XplatUIX11.cs)
19451           - Added XCreateGC related enums and structures
19452           - Added GXFunction for XSetFunction
19454         * XplatUIStructs.cs: Added missing WS_EX_xxx definitions
19456         * XplatUI.cs: Added CreateCaret(), DestroyCaret(), SetCaretPos() and
19457           CaretVisible() calls
19459         * ToolTip.cs: Added code to prevent stealing focus from app windows
19461         * XplatUIDriver.cs: Added abstracts for caret functions (CreateCaret,
19462           DestroyCaret, SetCaretPos and CaretVisible)
19464         * XplatUIX11.cs:
19465           - Added implementation for caret functions
19466           - Moved hover variables into a struct, to make it a bit easier
19467             on the eyes and to debug
19468           - Removed XKeyboardState (moved to XplatUIX11.cs)
19469           - Moved Keyboard properties into the properties region
19471         * Control.cs (get_Region): Control.CreateGraphics is the appropriate
19472           call to get a graphics context for our control
19474         * XplatUIOSX.cs: Added empty overrides for the new caret functions
19476         * TreeView.cs: Fixed bug. No matter what color was set it would always
19477           return SystemColors.Window
19479         * XplatUIWin32.cs: Implemented caret overrides
19481 2004-12-10  Jordi Mas i Hernandez <jordi@ximian.com>
19483         * ListBox.cs: fire events, implement missing methods and properties,
19484         sorting.
19486 2004-12-10  John BouAntoun <jba-mono@optusnet.com.au>
19488         * MonthCalendar.cs: invalidation bug fixing
19489         * ThemeWin32Classic.cs: paint fixing
19491 2004-12-09  Geoff Norton  <gnorton@customerdna.com>
19493         * XplatUIOSX.cs: Refactor to pass the real hwnd into Graphics.FromHwnd, we
19494         prepare the CGContextRef there now.
19496 2004-12-09  John BouAntoun <jba-mono@optusnet.com.au>
19498         * MonthCalendar.cs:
19499           - optimisationL only invalidate areas that have changed
19500         * ThemeWin32Classic.cs:
19501           - only paint parts that intersect with clip_area
19503 2004-12-09  Peter Bartok  <pbartok@novell.com>
19505         * Application.cs: Undid changes from r37004 which cause problems
19506         on X11
19508 2004-12-09  Ravindra  <rkumar@novell.com>
19510         * ToolBar.cs: Added support for displaying ContextMenu
19511         attached to a button on ToolBar.
19512         * ToolBarButton.cs: Uncomment/fixed the DropDownMenu
19513         property.
19515 2004-12-09  Jordi Mas i Hernandez <jordi@ximian.com>
19517         * Label.cs: autosize works in text change and removes unnecessary
19518         invalidate
19520 2004-12-09  Jordi Mas i Hernandez <jordi@ximian.com>
19522         * ThemeWin32Classic.cs, XplatUIOSX.cs, XplatUIWin32.cs:
19523         remove warnings
19525 2004-12-08  Geoff Norton  <gnorton@customerdna.com>
19527         * XplatUIOSX.cs: Added mouse move/click/grab support
19528         Remove some debugging WriteLines not needed anymore.
19529         Add window resizing/positioning.
19530         Fix visibility on reparenting.
19532 2004-12-08  Peter Bartok  <pbartok@novell.com>
19534         * XplatUIOSX.cs: Added Idle event, now compiles on VS.Net
19536 2004-12-07  Geoff Norton  <gnorton@customerdna.com>
19538         * XplatUIOSX.cs: Initial checkin
19539         * XplatUI.cs: Use the Quartz driver if the environment is set to use it
19541 2004-12-03  Ravindra <rkumar@novell.com>
19543         * ListView.cs: Added some keybindings and fixed scrolling.
19544         ScrollBars listen to ValueChanged event instead of Scroll
19545         Event. This would let us take care of all changes being
19546         done in the scrollbars' values programmatically or manually.
19547         * ListView.cs (CanMultiselect): Added a check for shift key.
19548         * ListView.cs (EnsureVisible): Fixed. Do proper scrolling.
19549         * ListViewItem.cs (Clone): Fixed. We need to make a copy
19550         of ListViewSubItemCollection as well.
19552 2004-12-06  Peter Bartok <pbartok@novell.com>
19554         * Control.cs (Parent): Added check and exception to prevent
19555         circular parenting
19557 2004-12-03  Jordi Mas i Hernandez <jordi@ximian.com>
19559         * ListBox.cs: implemented clipping, selection single and multiple,
19560         bug fixing
19562 2004-12-03  Ravindra <rkumar@novell.com>
19564         * ListView.cs (ListView_KeyDown):
19565         * ListView.cs (ListView_KeyUp): Fixed multiple selection handling
19566         when CTRL key is pressed.
19567         * ListViewItem.cs (Selected): Fixed setting the property.
19569 2004-12-03  Marek Safar  <marek.safar@seznam.cz>
19571         * Application.cs (OnThreadException): Use ThreadExceptionDialog.
19573         * Form.cs: Add ActiveForm, FormBorderStyle, MaximizeBox,
19574         MinimizeBox, ShowInTaskbar, TopMost properties.
19576         * ThreadExceptionDialog.cs: Implemented (disabled TextBox until
19577         will be implemented).
19579 2004-12-03  Marek Safar  <marek.safar@seznam.cz>
19581         * OwnerDrawPropertyBag.cs: New internal parameterless ctor.
19583         * TreeNode.cs: Implemented ICloneable, Fixed to pass my simple
19584         tests.
19585         
19586         * TreeNodeCollection.cs: Add exception throwing for Add,AddRange.
19587         
19588         * TreeView.cs: BackColor is Colors.Window.
19590 2004-12-01  Jackson Harper  <jackson@ximian.com>
19592         * TreeView.cs: When resizing the tree if the user is making it
19593         smaller we don't get expose events, so we need to handle adding
19594         the horizontal scrollbar in the size changed handler as well as
19595         the expose handler.
19597 2004-12-02  Jordi Mas i Hernandez <jordi@ximian.com>
19599         * DrawItemState.cs: fixes wrong enum values
19601 2004-12-01  Jackson Harper  <jackson@ximian.com>
19603         * TreeView.cs: Resize the hbar as well as the vbar on resize.
19605 2004-12-01  Jackson Harper  <jackson@ximian.com>
19607         * NodeLabelEditEventArgs.cs:
19608         * NodeLabelEditEventHandler.cs:
19609         * OpenTreeNodeEnumerator.cs:
19610         * TreeNode.cs:
19611         * TreeNodeCollection.cs:
19612         * TreeView.cs:
19613         * TreeViewAction.cs:
19614         * TreeViewCancelEventArgs.cs:
19615         * TreeViewCancelEventHandler.cs:
19616         * TreeViewEventArgs.cs:
19617         * TreeViewEventHandler.cs: Initial implementation.
19619 2004-12-01  Ravindra <rkumar@novell.com>
19621         * ListView.cs (CalculateListView): Fixed scrolling related
19622         calculations. Also, removed some debug statements from other
19623         places.
19624         * ListViewItem.cs: Changed access to 'selected' instance variable
19625         from private to internal.
19626         * ThemeWin32Classic.cs (DrawListViewItem): Fixed SubItem drawing.
19628 2004-12-01  Jordi Mas i Hernandez <jordi@ximian.com>
19630         * ThemeWin32Classic.cs: remove cache of brush and pens for
19631         specific controls and use the global system, fixes scrollbutton
19632         bugs (for small sizes, disabled, etc)
19633         
19634         * ScrollBar.cs: does not show the thumb for very small controls
19635         (as MS) and allow smaller buttons that the regular size
19637 2004-12-01  Miguel de Icaza  <miguel@ximian.com>
19639         * UpDownBase.cs: Add abstract methods for the interface.
19640         Add new virtual methods (need to be hooked up to TextEntry when it
19641         exists).
19642         Add override methods for most features.
19643         Computes the size, forces the height of the text entry.
19645         * NumericUpDown.cs: Put here the current testing code.
19647         * Set eol-style property on all files that do not have mixed line
19648         endings, to minimize the future problems.  There are still a few
19649         files with mixed endings, and someone should choose whether they
19650         want to move it or not.
19652 2004-11-30  Jordi Mas i Hernandez <jordi@ximian.com>
19654         * MonthCalendar.cs, ListView.cs: use Theme colours instead of
19655         System.Colors
19656         
19657 2004-11-30  Ravindra <rkumar@novell.com>
19659         * ThemeWin32Classic.cs (DrawListViewItem): Fixed selected item
19660         drawing and replaced use of SystemColors by theme colors.
19661         * ListView.cs (ListView_Paint): Fixed painting done during scrolling.
19662         * ListView.cs (ListViewItemCollection.Add): Throw exception when
19663         same ListViewItem is being added more than once.
19665 2004-11-30  John BouAntoun <jba-mono@optusnet.com.au>
19667         * MonthCalendar.cs:
19668           - ControlStyles love to make the control not flicker
19669           
19670 2004-11-30  Peter Bartok  <pbartok@novell.com>
19672         * CharacterCasing.cs: Added
19674 2004-11-29  Peter Bartok  <pbartok@novell.com>
19676         * TreeNode.cs, TreeNodeCollection.cs, TreeView.cs,
19677           TreeViewAction.cs, TreeViewEventArgs.cs: Removed new files.
19678           I am removing these files as they conflict with already completed
19679           work. While it is fantastic to get contributions to MWF, I
19680           respectfully ask that everyone please coordinate their contributions
19681           through mono-winforms-list or #mono-winforms at this time. We're
19682           explicitly avoiding stubbing and don't want controls that don't have
19683           their basic functionality implemented in svn. Please also see
19684           http://www.mono-project.com/contributing/winforms.html
19687 2004-11-29  Marek Safar  <marek.safar@seznam.cz>
19689         * Application.cs (ModalRun): Don't hang after exit.
19691         * Theme.cs: New TreeViewDefaultSize property.
19693         * ThemeWin32Classic.cs: Replaced hardcoded defaultWindowBackColor
19694         with less hardcoded SystemColors constant.
19695         Implemented TreeViewDefaultSize.
19697         * TreeNode.cs, TreeNodeCollection.cs, TreeView.cs,
19698         TreeViewAction.cs, TreeViewEventArgs.cs: New files.
19701 2004-11-29  John BouAntoun <jba-mono@optusnet.com.au>
19703         * MonthCalendar.cs:
19704           - Fix NextMonthDate and PrevMonthDate click moving calendar
19706 2004-11-26  John BouAntoun <jba-mono@optusnet.com.au>
19708         * MonthCalendar.cs:
19709           - Fix usage of ScrollChange Property when scrolling months
19711 2004-11-26  Jordi Mas i Hernandez <jordi@ximian.com>
19713         * Menu.cs, MainMenu.cs, MenuItem.cs, MenuAPI.cs
19714          - Fixes menu destroying
19715          - Support adding and removing items on already created menus
19717 2004-11-26  John BouAntoun <jba-mono@optusnet.com.au>
19719         * MonthCalendar.cs:
19720           - Re-worked all bolded dates handling to match win32
19721         * ThemeWin32Classic.cs:
19722           - Fixed rendering with bolded dates
19724 2004-11-25  Jordi Mas i Hernandez <jordi@ximian.com>
19726         * ListBox.cs, Theme.cs, ThemeWin32Classic.cs:
19727         - Horizontal scroolbar
19728         - Multicolumn
19729         - Fixes
19732 2004-11-25  John BouAntoun <jba-mono@optusnet.com.au>
19734         * MonthCalendar.cs:
19735           - Fix Usage of MaxSelectionCount from SelectionRange
19736           - Fixed Shift + Cursor Selection
19737           - Fixed Shift + (Pg up/Pg dn, Home/End) selection
19738           - Fixed normal cursor selection to be compat with win32
19739           - Fixed Shift + Mouse Click selection
19741 2004-11-24  Peter Bartok <pbartok@novell.com>
19743         * XplatUI.cs (DispatchMessage): Switched to return IntPtr
19744         * XplatUIDriver.cs (DispatchMessage): Switched to return IntPtr
19745         * XplatUIX11.cs:
19746           - CreatedKeyBoardMsg now updates keystate with Alt key
19747           - Added workaround for timer crash to CheckTimers, Jackson will
19748             develop a proper fix and check in later
19749           - Implemented DispatchMessage
19750           - Removed calling the native window proc from GetMessage (call
19751             now moved to DispatchMessage)
19753         * KeyEventArgs.cs (Constructor): Now combines modifierkeys into
19754           the keydata (Fixes bug #69831)
19756         * XplatUIWin32.cs:
19757           - (DispatchMessage): Switched to return IntPtr
19758           - Added DllImport for SetFocus
19760 2004-11-24  Ravindra <rkumar@novell.com>
19762         * ThemeWin32Classic.cs: Fixed ListView border and checkbox
19763         background drawing.
19764         * ListViewItem.cs: Fixed various properties, calculations
19765         and Clone() method. Fixed ListViewSubItemCollection.Clear() method.
19766         * ListView.cs: Fixed calculations, BackColor, ForeColor properties
19767         and some internal properties. Fixed MouseDown handler and Paint
19768         method.
19770 2004-11-24  John BouAntoun <jba-mono@optusnet.com.au>
19772         * MonthCalendar.cs: Add TitleMonth ContextMenu handling
19774 2004-11-24  John BouAntoun <jba-mono@optusnet.com.au>
19776         * ContainerControl.cs: correct accidental check in of local changes
19778 2004-11-24  John BouAntoun <jba-mono@optusnet.com.au>
19780         * ThemeWin32Classic.cs:
19781                 - Fixed Drawing Last month in grid (sometimes not showing)
19782         * MonthCalendar.cs:
19783                 - Fixed title width calculation bug (makeing title small)
19785 2004-11-23  Peter Bartok <pbartok@novell.com>
19787         * XplatUIX11.cs:
19788           - Added generation of WM_MOUSEHOVER event
19789           - Added missing assignment of async_method atom
19790           - Fixed WM_ERASEBKGND; now only redraws the exposed area
19792 2004-11-23  John BouAntoun <jba-mono@optusnet.com.au>
19794         * ThemeWin32Classic.cs:
19795                 - Fixed Drawing of today circle when showtodaycircle not set
19796                 - fixed drawing of first and last month in the grid (gay dates)
19797         * MonthCalendar.cs:
19798                 - Fixed Drawing of today circle
19799                 - Fixed drawing of grady dates
19800                 - Fixed HitTest for today link when ShowToday set to false
19801                 - Fixed DefaultSize to obey ShowToday
19803 2004-11-23  John BouAntoun <jba-mono@optusnet.com.au>
19805         * ThemeWin32Classic.cs: Fixed DrawMonthCalendar and private support methods
19806         * System.Windows.Forms/Theme.cs
19807         * MonthCalendar.cs: added for MonthCalendar
19808         * SelectionRange.cs: added for MonthCalendar
19809         * Day.cs: added for MonthCalendar: added for MonthCalendar
19810         * DateRangeEventArgs.cs: added for MonthCalendar
19811         * DateRangeEventHandler.cs: added for MonthCalendar
19813 2004-11-22  Ravindra <rkumar@novell.com>
19815         * ThemeWin32Classic.cs: Fixed ListViewDrawing with 'UseItemStyleForSubItems'
19816         property.
19818 2004-11-22  Miguel de Icaza  <miguel@ximian.com>
19820         * UpDownBase.cs (InitTimer): Use prehistoric C# 1.0 notation for
19821         event handler.
19822         
19823         * NumericUpDown.cs: Added new implementation.
19824         * UpDownBase.cs: Added new implementation.
19826         * XplatUIWin32.cs (KeyboardSpeed, KeyboardDelay): added default
19827         implementations.
19828         
19829         * XplatUIX11.cs (KeyboardSpeed, KeyboardDelay): added default
19830         implementations.
19832         * XplatUIDriver.cs ((KeyboardSpeed, KeyboardDelay): added new
19833         methods.
19835 2004-11-21  Miguel de Icaza  <miguel@ximian.com>
19837         * Timer.cs  (Dispose): Should call the base dispose when
19838         overriding.
19840 2004-11-19  Jordi Mas i Hernandez <jordi@ximian.com>
19842         * ScrollBar.cs: updates thumb position when max, min or increment
19843         is changed
19845 2004-11-21  Ravindra <rkumar@novell.com>
19847         * ListView.cs: Implemented item selection, activation and
19848         column header style. Fixed properties to do a redraw, if
19849         required. Added support for MouseHover, DoubleClick, KeyDown
19850         and KeyUp event handling and some minor fixes.
19851         * ListViewItem.cs: Fixed constructor.
19852         * ThemeWin32Classic.cs: Improved drawing for ListView.
19854 2004-11-19  Jordi Mas i Hernandez <jordi@ximian.com>
19856         * ThemeWin32Classic.cs: initial listbox drawing code
19857         * DrawMode.cs: new enumerator
19858         * ListControl.cs: stubbed class
19859         * ListBox.cs: initial implementation
19860         * Theme.cs: new methods definitions
19861         * SelectionMode.cs: new enumerator
19863 2004-11-17  Peter Bartok  <pbartok@novell.com>
19865         * XplatUIWin32.cs: Added double-click events to the class style
19866         * Control.cs (WndProc):
19867           - Added handling of click-count to MouseDown/ MouseUp events.
19868           - Added handling of middle and right mouse buttons
19869           - Removed old debug code
19871 2004-11-17  Jackson Harper  <jackson@ximian.com>
19873         * XplatUIX11.cs: Use the new Mono.Unix namespace.
19875 2004-11-17  Ravindra <rkumar@novell.com>
19877         * ListView.cs: Added event handling for MouseMove/Up/Down.
19878         * ColumnHeader.cs: Added a read-only internal property 'Pressed'.
19879         * ThemeWin32Classic.cs: We need to clear the graphics context and
19880         draw column header in a proper state.
19883 2004-11-17  Jordi Mas i Hernandez <jordi@ximian.com>
19885         *  Menu.cs: fixes signature
19887 2004-11-16  Peter Bartok  <pbartok@novell.com>
19889         * XplatUIX11.cs (GetMessage): Implemented generation of
19890           double click mouse messages
19892 2004-11-12  Jordi Mas i Hernandez <jordi@ximian.com>
19894         *  Form.cs, MainMenu.cs, MenuAPI.cs: tracker should be for tracking session
19895         not by menu
19897 2004-11-11  Peter Bartok  <pbartok@novell.com>
19899         * HandleData.cs: Added Visible property
19900         * XplatUIX11.cs (IsVisible): Now uses Visible property from
19901           HandleData
19902         * XplatUIX11.cs: Removed old debug leftovers
19903         * XplatUIX11.cs (DefWndProc): Added WM_ERASEBKGND handler
19904         * Control.cs (WndProc): Removed old debug leftovers,
19905           streamlined handling of WM_WINDOWPOSCHANGED, removed un-
19906           needed WM_SIZE handling
19908 2004-11-11  Jackson Harper  <jackson@ximian.com>
19910         * OwnerDrawPropertyBag.cs:
19911         * TreeViewImageIndexConverter.cs: Initial implementation
19913 2004-11-10  Jackson Harper  <jackson@ximian.com>
19915         * ThemeWin32Classic.cs:
19916         * TabControl.cs: instead of moving tabs by the slider pos just
19917         start drawing at the tab that is offset by the slider. This way
19918         scrolling always moves by exactly one tab.
19920 2004-11-10  Jackson Harper  <jackson@ximian.com>
19922         * TabControl.cs: You can only scroll left when the slider has
19923         already ben moved right.
19924         
19925 2004-11-10  Jackson Harper  <jackson@ximian.com>
19927         * ThemeWin32Classic.cs: Do not draw the selected tab if its not in
19928         the clip area.
19929         
19930 2004-11-10  Jackson Harper  <jackson@ximian.com>
19932         * ThemeWin32Classic.cs: Don't bother drawing tabs outside of the
19933         clip area.
19934         
19935 2004-11-09  Jackson Harper  <jackson@ximian.com>
19937         * TabControl.cs (CalcXPos): New helper method so we can determine
19938         the proper place to start drawing vertical tabs.
19939         * ThemeWin32Classic.cs (DrawTab): Draw right aligned tabs.
19940         
19941 2004-11-09  Jackson Harper  <jackson@ximian.com>
19943         * TabControl.cs: Calculate sizing and rects for left aligned tabs.
19944         * ThemeWin32Classic.cs (GetTabControl*ScrollRect): Only handle Top
19945         and Bottom, left and right are illegal values for this and
19946         multiline is enabled when the alignment is set to left or right.
19947         (DrawTab): Each alignment block should draw the text itself now
19948         because Left requires special love. Also add rendering for Left
19949         aligned tabs.
19950         
19951 2004-11-09  Jordi Mas i Hernandez <jordi@ximian.com>
19953         *  Form.cs, MainMenu.cs, MenuAPI.cs: fixes menu navigation, fixes popups,
19954         does not destroy the windows, removes debugging messages
19956 2004-11-09  jba  <jba-mono@optusnet.com.au>
19958         * ThemeWin32Classic.cs
19959         (DrawButtonBase): Fix verticle text rect clipping in windows
19960         (DrawCheckBox): Fix CheckAlign.TopCenter and CheckAlign.BottomCenter
19961         rendering and incorrect text rect clipping
19962         (DrawRadioButton): Fix CheckAlign.TopCenter and CheckAlign.BottomCenter
19963         rendering and incorrect text rect clipping
19964         
19965 2004-11-08  Jackson Harper  <jackson@ximian.com>
19967         * ThemeWin32Classic.cs (DrawTabControl): Render tabs from top to
19968         bottom when they are bottom aligned so the bottoms of the tabs get
19969         displayed.
19970         * TabControl.cs (DropRow): Move rows up instead of down when the
19971         tab control is bottom aligned.
19973 2004-11-08 13:59  pbartok
19975         * XplatUIX11.cs:
19976           - Added handling for various window styles
19977           - Added handling for popup windows
19978           - Added SetTopmost handling
19980 2004-11-08 13:55  pbartok
19982         * XplatUIWin32.cs:
19983           - Added argument to SetTopmost method
19984           - Fixed broken ClientToScreen function
19986 2004-11-08 13:53  pbartok
19988         * XplatUIStructs.cs:
19989           - Added missing WS_EX styles
19991 2004-11-08 13:53  pbartok
19993         * XplatUI.cs, XplatUIDriver.cs:
19994           - Added argument to SetTopmost
19996 2004-11-08 13:52  pbartok
19998         * X11Structs.cs:
19999           - Added XSetWindowAttributes structure
20000           - Improved XWindowAttributes structure
20001           - Added SetWindowValuemask enum
20002           - Added window creation arguments enum
20003           - Added gravity enum
20004           - Added Motif hints structure
20005           - Added various Motif flags and enums
20006           - Added PropertyMode enum for property functions
20008 2004-11-08 13:50  pbartok
20010         * Form.cs:
20011           - Fixed arguments for updated SetTopmost method
20013 2004-11-08 13:49  pbartok
20015         * ToolTip.cs:
20016           - Fixed arguments for updated SetTopmost function
20017           - Fixed usage of PointToClient
20019 2004-11-08 13:44  pbartok
20021         * MenuAPI.cs:
20022           - Added Clipping of children and siblings
20024 2004-11-08 13:41  pbartok
20026         * MainMenu.cs:
20027           - Removed SetMenuBarWindow call. We do this in Form.cs
20029 2004-11-08 13:40  jackson
20031         * TabControl.cs, Theme.cs, ThemeWin32Classic.cs: Render the little
20032           scrolling jimmi in the correct location with bottom aligned tabs
20034 2004-11-08 13:36  pbartok
20036         * ContainerControl.cs:
20037           - Implemented BindingContext
20038           - Implemented ParentForm
20040 2004-11-08 12:46  jackson
20042         * TabControl.cs: Put bottom rendered tabs in the right location
20044 2004-11-08 07:15  jordi
20046         * ScrollBar.cs, ThemeWin32Classic.cs: fixes vertical scrollbar and
20047           removes dead code
20049 2004-11-05 17:30  jackson
20051         * TabControl.cs: When selected tabs are expanded make sure they
20052           don't go beyond the edges of the tab control
20054 2004-11-05 14:57  jackson
20056         * TabControl.cs: Reset show_slider so if the control is resized to
20057           a size where it is no longer needed it's not displayed anymore
20059 2004-11-05 13:16  jackson
20061         * TabControl.cs: Make tab pages non visible when added to the
20062           control
20064 2004-11-05 12:42  jackson
20066         * TabControl.cs: Implement SizeMode.FillToRight
20068 2004-11-05 12:16  jackson
20070         * Control.cs: Do not call CreateHandle if the handle is already
20071           created
20073 2004-11-05 11:46  jackson
20075         * TabControl.cs: Remove superflous call to CalcTabRows
20077 2004-11-05 09:07  jackson
20079         * XplatUIX11.cs: Update for Mono.Posix changes
20081 2004-11-05 07:00  ravindra
20083         * ListView.cs, ListViewItem.cs: Implemented some methods and fixed
20084           scrolling.
20086 2004-11-04 22:47  jba
20088         * ThemeWin32Classic.cs:
20089           - Fix Button rendering for FlatStyle = Flat or Popup
20090           - Fix RadioButton and CheckBox rendering when Appearance = Button
20091             (normal and flatstyle).
20092           - Correct outer rectangle color when drawing focus rectangle
20093           - Adjust button bounds to be 1 px smaller when focused
20094           - Make button not draw sunken 3d border when pushed (windows compat)
20095           - Fix CPDrawBorder3D to not make bottom right hand corner rounded
20096           - Offset the text in RadioButton and Checkbox when being rendered as
20097           a button.
20098           - Hover and Click behaviour for Colored FlatStyle.Flat and Popup
20099           radiobuttons
20100           - Fixed disabled rendering for colored flatstyle radiobuttons (both)
20101           - Fixed disabled text rendering for normally rendered radiobuttons
20103 2004-11-04 10:26  jackson
20105         * TabControl.cs: Recalculate tab rows when resizing
20107 2004-11-04 07:47  jordi
20109         * Form.cs, MainMenu.cs, Menu.cs, MenuAPI.cs, MenuItem.cs:
20110           collection completion, drawing issues, missing features
20112 2004-11-04 05:03  ravindra
20114         * ScrollBar.cs:
20115                 - We need to recalculate the Thumb area when
20116                 LargeChange/maximum/minimum values are changed.
20117           - We set the 'pos' in UpdatePos() method to minimum, if it's less
20118                 than minimum. This is required to handle the case if large_change is
20119                 more than max, and use LargeChange property instead of large_change
20120                 variable.
20121           - We return max+1 when large_change is more than max, like MS does.
20123 2004-11-04 04:29  ravindra
20125         * ColumnHeader.cs, ListView.cs, ListViewItem.cs:
20126                 - Changed default value signatures (prefixed all with ListView).
20127                 - Fixed/implemented layout LargeIcon, SmallIcon and List views for
20128                 ListView.
20129           - Fixed calculations for ListViewItem and implemented Clone()
20130           method.
20132 2004-11-04 04:26  ravindra
20134         * Theme.cs, ThemeWin32Classic.cs:
20135                 - Changed default ListView values signatures (prefixed all with
20136                 ListView).
20137           - Fixed default size values for VScrollBar and HScrollBar.
20138                 - Fixed DrawListViewItem method.
20140 2004-11-04 04:05  ravindra
20142         * ColumnHeaderStyle.cs: Typo. It should be Nonclickable.
20144 2004-11-04 04:04  ravindra
20146         * ImageList.cs: Implemented the missing overload for Draw method.
20148 2004-11-03 19:29  jackson
20150         * TabControl.cs: Handle dropping rows on selection properly
20152 2004-11-03 11:59  jackson
20154         * TabControl.cs: remove debug code
20156 2004-11-03 11:52  jackson
20158         * TabControl.cs, ThemeWin32Classic.cs: Initial implementation of
20159           the scrolly widgerywoo
20161 2004-11-02 13:52  jackson
20163         * TabControl.cs: Resize the tab pages and tabs when the tab control
20164           is resized
20166 2004-11-02 13:40  jackson
20168         * TabControl.cs, ThemeWin32Classic.cs: Move the row with the
20169           selected tab to the bottom
20171 2004-11-02 13:39  jackson
20173         * TabPage.cs: Store the tab pages row
20175 2004-11-02 12:33  jordi
20177         * MenuItem.cs: fixes handle creation
20179 2004-11-02 11:42  jackson
20181         * TabControl.cs: signature fix
20183 2004-11-02 08:56  jackson
20185         * TabControl.cs: Calculate whether the tab is on an edge properly.
20186           Remove top secret debugging code
20188 2004-11-01 19:57  jackson
20190         * TabControl.cs: Add click handling, and proper sizing
20192 2004-11-01 19:47  jackson
20194         * Theme.cs, ThemeWin32Classic.cs: New rendering and sizing code for
20195           tab controls
20197 2004-11-01 19:39  jackson
20199         * TabPage.cs: add internal property to store the bounds of a tab
20200           page
20202 2004-10-30 04:23  ravindra
20204         * Theme.cs, ThemeWin32Classic.cs: Drawing ListView and some default
20205           values.
20207 2004-10-30 04:21  ravindra
20209         * ListView.cs, ListViewItem.cs: Added support for scrolling and
20210           fixed calculations.
20212 2004-10-30 03:06  pbartok
20214         * XplatUIX11.cs:
20215           - Removed extension of DllImported libs
20217 2004-10-29 09:55  jordi
20219         * Form.cs, MainMenu.cs, Menu.cs, MenuAPI.cs, MenuItem.cs: Menu key
20220           navigation, itemcollection completion, menu fixes
20222 2004-10-27 22:58  pbartok
20224         * XplatUIX11.cs:
20225           - Now throws a nice error message when no X display could be opened
20227 2004-10-26 13:51  jordi
20229         * ListView.cs: removes warning
20231 2004-10-26 03:55  ravindra
20233         * ColumnHeader.cs, ListView.cs, ListViewItem.cs,
20234           ThemeWin32Classic.cs: Some formatting for my last checkins.
20236 2004-10-26 03:36  ravindra
20238         * ThemeWin32Classic.cs: Implemented DetailView drawing for ListView
20239           control and default values.
20241 2004-10-26 03:35  ravindra
20243         * Theme.cs: Added some default values for ListView control.
20245 2004-10-26 03:33  ravindra
20247         * ToolBar.cs: ToolBar should use the user specified button size, if
20248           there is any. Added a size_specified flag for the same.
20250 2004-10-26 03:33  ravindra
20252         * ColumnHeader.cs: Added some internal members and calculations for
20253           ColumnHeader.
20255 2004-10-26 03:32  ravindra
20257         * ListViewItem.cs: Calculations for ListViewItem.
20259 2004-10-26 03:31  ravindra
20261         * ListView.cs: Added some internal members and calculations for
20262           ListView.
20264 2004-10-22 13:31  jordi
20266         * MenuAPI.cs: speedup menus drawing
20268 2004-10-22 13:16  jackson
20270         * XplatUIX11.cs: Make sure to update exposed regions when adding an
20271           expose event
20273 2004-10-22 11:49  jackson
20275         * Control.cs: oops
20277 2004-10-22 11:41  jackson
20279         * Control.cs: Check to see if the window should have its background
20280           repainted by X when drawing.
20282 2004-10-22 11:31  jackson
20284         * XplatUIX11.cs: When invalidating areas only use XClearArea if
20285           clear is true, this way we do not get flicker from X repainting the
20286           background
20288 2004-10-22 11:28  jackson
20290         * XEventQueue.cs: Queue properly
20292 2004-10-21 09:38  jackson
20294         * XEventQueue.cs: Fix access modifier
20296 2004-10-21 09:36  jackson
20298         * XEventQueue.cs: Don't loose messages
20300 2004-10-21 09:22  jackson
20302         * XEventQueue.cs: Don't loose messages
20304 2004-10-20 04:15  jordi
20306         * BootMode.cs: enum need it by SystemInfo
20308 2004-10-19 21:58  pbartok
20310         * XplatUIWin32.cs:
20311           - Small sanity check
20313 2004-10-19 21:56  pbartok
20315         * Form.cs:
20316           - Added private FormParentWindow class which acts as the container
20317             for our form and as the non-client area where menus are drawn
20318           - Added/Moved required tie-ins to Jordi's menus
20319           - Fixed/Implemented the FormStartPosition functionality
20321 2004-10-19 21:52  pbartok
20323         * Control.cs:
20324           - Removed unneeded locals
20325           - Added code to all size and location properties to understand and
20326             deal with the parent container of Form
20328 2004-10-19 21:33  pbartok
20330         * Application.cs:
20331           - Fixed to deal with new Form subclasses for menus
20333 2004-10-19 17:48  jackson
20335         * XEventQueue.cs: commit correct version of file
20337 2004-10-19 16:50  jackson
20339         * XEventQueue.cs, XplatUIX11.cs: New optimized event queue
20341 2004-10-19 16:15  jordi
20343         * MenuAPI.cs: MenuBarCalcSize returns the height
20345 2004-10-19 08:31  pbartok
20347         * Control.cs:
20348           - Added missing call to PreProcessMessage before calling OnXXXKey
20349           methods
20351 2004-10-19 00:04  ravindra
20353         * ToolTip.cs: Fixed constructor.
20355 2004-10-18 09:31  jordi
20357         * MenuAPI.cs: menuitems in menubars do not have shortcuts
20359 2004-10-18 09:26  jordi
20361         * MenuItem.cs: fixes MenuItem class signature
20363 2004-10-18 08:56  jordi
20365         * MenuAPI.cs: prevents windows from showing in the taskbar
20367 2004-10-18 00:28  ravindra
20369         * ToolTip.cs: Suppressed a warning message.
20371 2004-10-18 00:27  ravindra
20373         * Control.cs: Default value of visible property must be true.
20375 2004-10-17 23:19  pbartok
20377         * ToolTip.cs:
20378           - Complete implementation
20380 2004-10-17 23:19  pbartok
20382         * XplatUIX11.cs:
20383           - Added EnableWindow method
20384           - Added SetModal stub
20385           - Added generation of WM_ACTIVATE message (still needs testing)
20386           - Added SetTopMost stub
20387           - Changes to deal with VirtualKeys being moved to XplatUIStructs.cs
20389 2004-10-17 23:17  pbartok
20391         * XplatUIWin32.cs:
20392           - Removed VirtualKeys to XplatUIStructs
20393           - Implemented SetTopMost method
20394           - Implemented EnableWindow method
20395           - Bugfix in ScreenToClient()
20396           - Bugfixes in ClientToScreen()
20398 2004-10-17 22:51  pbartok
20400         * XplatUIStructs.cs:
20401           - Added WS_EX styles to WindowStyles enumeration
20403 2004-10-17 22:50  pbartok
20405         * XplatUI.cs, XplatUIDriver.cs:
20406           - Added method for enabling/disabling windows
20407           - Added method for setting window modality
20408           - Added method for setting topmost window
20410 2004-10-17 22:49  pbartok
20412         * ThemeWin32Classic.cs:
20413           - Added ToolTip drawing code
20415 2004-10-17 22:49  pbartok
20417         * Theme.cs:
20418           - Added ToolTip abstracts
20420 2004-10-17 22:47  pbartok
20422         * Form.cs:
20423           - Fixed Form.ControlCollection to handle owner relations
20424           - Added Owner/OwnedForms handling
20425           - Implemented Z-Ordering for owned forms
20426           - Removed unneeded private overload of ShowDialog
20427           - Fixed ShowDialog, added the X11 incarnation of modal handling (or
20428             so I hope)
20429           - Fixed Close(), had wrong default
20430           - Added firing of OnLoad event
20431           - Added some commented out debug code for Ownership handling
20433 2004-10-17 22:16  pbartok
20435         * Control.cs:
20436           - Fixed/implemented flat list of controls
20438 2004-10-17 22:14  pbartok
20440         * Application.cs:
20441           - Added code to simulate modal dialogs on Win32
20443 2004-10-17 16:11  jordi
20445         * ScrollBar.cs: disabled scrollbar should not honor any keyboard or
20446           mouse event
20448 2004-10-17 13:39  jordi
20450         * MenuAPI.cs: menu drawing fixes
20452 2004-10-15 09:10  ravindra
20454         * StructFormat.cs: General Enum.
20456 2004-10-15 09:09  ravindra
20458         * SizeGripStyle.cs: Enum for Form.
20460 2004-10-15 09:08  ravindra
20462         * Theme.cs, ThemeWin32Classic.cs: Added ColumnHeaderHeight property
20463           in Theme for ListView.
20465 2004-10-15 09:06  ravindra
20467         * ColumnHeader.cs: Flushing some formatting changes.
20469 2004-10-15 09:05  ravindra
20471         * ListViewItem.cs: Implemented GetBounds method and fixed coding
20472           style.
20474 2004-10-15 09:03  ravindra
20476         * ListView.cs: Implemented Paint method and fixed coding style.
20478 2004-10-15 07:34  jordi
20480         * MenuAPI.cs: fix for X11
20482 2004-10-15 07:32  ravindra
20484         * ButtonBase.cs, CheckBox.cs, RadioButton.cs:
20485                 - Renamed Paint() method to Draw() for clarity. Also, moved
20486                 DrawImage() to OnPaint().
20488 2004-10-15 07:25  ravindra
20490         * CheckBox.cs, RadioButton.cs:
20491                 - Removed Redraw (), we get it from ButtonBase.
20492                 - Implemented Paint (), to do class specific painting.
20494 2004-10-15 07:16  ravindra
20496         * ButtonBase.cs:
20497                 - Redraw () is not virtual now.
20498                 - Added an internal virtual method Paint (), so that
20499                 derived classes can do their painting on their own.
20500                 - Modified OnPaint () to call Paint ().
20502 2004-10-15 06:43  jordi
20504         * ContextMenu.cs, DrawItemEventHandler.cs, Form.cs, MainMenu.cs,
20505           MenuAPI.cs, MenuItem.cs: menu work, mainmenu, subitems, etc
20507 2004-10-15 00:30  ravindra
20509         * MessageBox.cs:
20510                 - MessageBox on windows does not have min/max buttons.
20511                 This change in CreateParams fixes this on Windows. We
20512                 still need to implement this windowstyle behavior in
20513                 our X11 driver.
20515 2004-10-14 05:14  ravindra
20517         * ToolBar.cs:
20518                 - Changed Redraw () to do a Refresh () always.
20519                 - Fixed the MouseMove event handling when mouse is pressed,
20520                 ie drag event handling.
20521                 - Replaced the usage of ToolBarButton.Pressed property to
20522                 ToolBarButton.pressed internal variable.
20524 2004-10-14 05:10  ravindra
20526         * ToolBarButton.cs:
20527                 - Added an internal member 'inside' to handle mouse move
20528                 with mouse pressed ie mouse drag event.
20529                 - Changed 'Pressed' property to return true only when
20530                 'inside' and 'pressed' are both true.
20531                 - Some coding style love.
20533 2004-10-14 00:17  ravindra
20535         * Form.cs: Fixed class signature. ShowDialog (Control) is not a
20536           public method.
20538 2004-10-14 00:15  ravindra
20540         * ButtonBase.cs: Redraw () related improvements.
20542 2004-10-14 00:14  ravindra
20544         * MessageBox.cs: Moved InitFormSize () out of Paint method and
20545           removed unnecessary calls to Button.Show () method.
20547 2004-10-13 17:50  pbartok
20549         * XplatUIX11.cs:
20550           - Formatting fix
20551           - Removed destroying of window until we solve the problem of X
20552             destroying the window before us on shutdown
20554 2004-10-13 16:32  pbartok
20556         * ButtonBase.cs:
20557           - Now Redraws on MouseUp for FlatStyle Flat and Popup
20559 2004-10-13 14:18  pbartok
20561         * XplatUIX11.cs:
20562           - Added code to destroy the X window
20564 2004-10-13 14:18  pbartok
20566         * XplatUIWin32.cs:
20567           - Added code to destroy a window
20569 2004-10-13 14:12  pbartok
20571         * ButtonBase.cs:
20572           - Added the Redraw on Resize that got dropped in the last rev
20574 2004-10-13 09:06  pbartok
20576         * ThemeWin32Classic.cs:
20577           - Path from John BouAntoun:
20578             * Fix check rendering (centre correctly for normal style, offset
20579               correctly for FlatStyle).
20580             * Fix border color usage (use backcolor) for FlatStyle.Popup
20581             * Use checkbox.Capture instead of checkbox.is_pressed when
20582               rendering flatstyle states.
20584 2004-10-12 21:48  pbartok
20586         * ThemeWin32Classic.cs:
20587           - Removed all occurences of SystemColors and replaced them with the
20588             matching theme color
20590 2004-10-12 21:41  pbartok
20592         * ThemeWin32Classic.cs:
20593           - From John BouAntoun: Added an overload to CPDrawBorder3D to allow
20594             him using the function for flatstyle drawing
20595           - Changed functions to use the new version of CPDrawBorder3D
20597 2004-10-12 21:15  pbartok
20599         * ControlPaint.cs:
20600           - Fixed Dark(), DarkDark(), Light() and LightLight() methods to
20601             match MS documentation. They need to return defined colors if the
20602             passed color matches the configured control color. Thanks to John
20603             BouAntoun for pointing this out.
20605 2004-10-12 20:57  pbartok
20607         * Control.cs:
20608           - Fix from John BouAntoun: Raise ForeColorChanged event when text
20609             color is changed
20611 2004-10-12 20:46  pbartok
20613         * CheckBox.cs:
20614           - Fix from John BouAntoun: Now properly sets the Appearance property
20616 2004-10-12 20:45  pbartok
20618         * ThemeWin32Classic.cs:
20619           - Fixes from John BouAntoun: now handles forecolors and backcolors
20620             for flatstyle rendered controls much better; It also fixes normal
20621             checkbox rendering when pushed or disabled.
20623 2004-10-08 02:50  jordi
20625         * Form.cs, MainMenu.cs, Menu.cs, MenuAPI.cs, MenuItem.cs: more menu
20626           work
20628 2004-10-07 08:56  jordi
20630         * ThemeWin32Classic.cs: Removes deletion of cached brushes
20632 2004-10-06 03:59  jordi
20634         * Control.cs, StatusBar.cs, ThemeWin32Classic.cs, ToolBar.cs,
20635           XplatUIWin32.cs: removes warnings from compilation
20637 2004-10-05 12:23  jackson
20639         * RadioButton.cs: Fix ctor
20641 2004-10-05 11:10  pbartok
20643         * MessageBox.cs:
20644           - Partial implementation by Benjamin Dasnois
20646 2004-10-05 10:15  jackson
20648         * ThemeWin32Classic.cs: Improve rendering of the radio button patch
20649           by John BouAntoun
20651 2004-10-05 03:07  ravindra
20653         * ToolBar.cs:
20654                 - Removed a private method, Draw ().
20655                 - Fixed the ButtonDropDown event handling.
20656                 - Fixed MouseMove event handling.
20658 2004-10-05 03:04  ravindra
20660         * ThemeWin32Classic.cs:
20661                 - Added DrawListView method and ListViewDefaultSize property.
20662                 - Changed ControlPaint method calls to CPDrawXXX wherever possible.
20663                 - Changed DOS style CRLF to Unix format (dos2unix).
20665 2004-10-05 03:03  ravindra
20667         * Theme.cs:
20668                 - Added DrawListView method and ListViewDefaultSize property.
20670 2004-10-05 02:42  ravindra
20672         * ToolBarButton.cs: Added an internal member dd_pressed to handle
20673           clicks on DropDown arrow.
20675 2004-10-04 22:56  jackson
20677         * ButtonBase.cs, Label.cs, MenuAPI.cs, ProgressBar.cs,
20678           ScrollBar.cs, StatusBar.cs, ToolBar.cs, TrackBar.cs: Let the base
20679           Control handle the buffers, derived classes should not have to
20680           CreateBuffers themselves.
20682 2004-10-04 21:20  jackson
20684         * StatusBar.cs: The control handles resizing the buffers now.
20686 2004-10-04 21:18  jackson
20688         * Control.cs: When resizing the buffers should be invalidated. This
20689           should be handled in Control not in derived classes.
20691 2004-10-04 14:45  jackson
20693         * TabPage.cs: oops
20695 2004-10-04 02:14  pbartok
20697         * LeftRightAlignment.cs:
20698           - Initial check-in
20700 2004-10-04 01:09  jordi
20702         * ThemeWin32Classic.cs: fixes right button position causing right
20703           button not showing on horizontal scrollbars
20705 2004-10-02 13:12  pbartok
20707         * XplatUIX11.cs:
20708           - Simplified the Invalidate method by using an X call instead of
20709             generating the expose ourselves
20710           - Added an expose when the window background is changed
20711           - Implemented ClientToScreen method
20713 2004-10-02 13:08  pbartok
20715         * XplatUIWin32.cs:
20716           - Added Win32EnableWindow method (test for implementing modal
20717           dialogs)
20718           - Added ClientToScreen method and imports
20720 2004-10-02 13:07  pbartok
20722         * XplatUI.cs, XplatUIDriver.cs:
20723           - Added ClientToScreen coordinate translation method
20725 2004-10-02 13:06  pbartok
20727         * KeyPressEventArgs.cs:
20728           - Fixed access level for constructor
20730 2004-10-02 13:06  pbartok
20732         * NativeWindow.cs:
20733           - Changed access level for the window_collection hash table
20735 2004-10-02 13:05  pbartok
20737         * Form.cs:
20738           - Added KeyPreview property
20739           - Added Menu property (still incomplete, pending Jordi's menu work)
20740           - Implemented ProcessCmdKey
20741           - Implemented ProcessDialogKey
20742           - Implemented ProcessKeyPreview
20744 2004-10-02 13:02  pbartok
20746         * Control.cs:
20747           - Added private method to get the Control object from the window
20748           handle
20749           - Implemented ContextMenu property
20750           - Implemented PointToScreen
20751           - Implemented PreProcessMessage
20752           - Implemented IsInputChar
20753           - Implemented IsInputKey
20754           - Implemented ProcessCmdKey
20755           - Completed ProcessKeyEventArgs
20756           - Fixed message loop to call the proper chain of functions on key
20757           events
20758           - Implemented ProcessDialogChar
20759           - Implemented ProcessDialogKey
20760           - Implemented ProcessKeyMessage
20761           - Implemented ProcessKeyPreview
20762           - Added RaiseDragEvent stub (MS internal method)
20763           - Added RaiseKeyEvent stub (MS internal method)
20764           - Added RaiseMouseEvent stub (MS Internal method)
20765           - Added RaisePaintEvent stub (MS Internal method)
20766           - Added ResetMouseEventArgs stub (MS Internal method)
20767           - Implemented RtlTranslateAlignment
20768           - Implemented RtlTranslateContent
20769           - Implemented RtlTranslateHorizontal
20770           - Implemented RtlTranslateLeftRight
20771           - Added generation of KeyPress event
20773 2004-10-02 05:57  ravindra
20775         * ListViewItem.cs: Added attributes.
20777 2004-10-02 05:32  ravindra
20779         * ListView.cs: Added attributes.
20781 2004-10-01 11:53  jackson
20783         * Form.cs: Implement the Close method so work on MessageBox can
20784           continue.
20786 2004-09-30 14:06  pbartok
20788         * XplatUIX11.cs:
20789           - Bug fixes
20791 2004-09-30 11:34  jackson
20793         * RadioButton.cs: Fix typo. Patch by John BouAntoun.
20795 2004-09-30 07:26  ravindra
20797         * ListViewItemConverter.cs: Converter for ListViewItem.
20799 2004-09-30 07:26  ravindra
20801         * SortOrder.cs: Enum for ListView control.
20803 2004-09-30 07:25  ravindra
20805         * ColumnHeader.cs: Supporting class for ListView control.
20807 2004-09-30 07:24  ravindra
20809         * ListView.cs, ListViewItem.cs: Initial implementation.
20811 2004-09-30 07:20  ravindra
20813         * ItemActivation.cs: Enum for ListView Control.
20815 2004-09-29 20:29  pbartok
20817         * XplatUIX11.cs:
20818           - Added lookup of pixel value for background color; tries to get a
20819             color 'close' to the requested color, it avoids having to create a
20820             colormap.  Depending on the display this could mean the used color
20821             is slightly off the desired color. Might have to change it to a more
20822             resource intensive colormap approach, but it will work as a
20823           workaround to avoid red screens.
20825 2004-09-29 14:27  jackson
20827         * XplatUIX11.cs: Set the X DisplayHandle in System.Drawing
20829 2004-09-28 12:44  pbartok
20831         * ButtonBase.cs, CheckBox.cs, ControlPaint.cs, GroupBox.cs,
20832           HScrollBar.cs, Label.cs, LinkLabel.cs, Panel.cs, PictureBox.cs,
20833           ProgressBar.cs, RadioButton.cs, ScrollBar.cs, StatusBar.cs,
20834           Theme.cs, ThemeGtk.cs, ThemeWin32Classic.cs, ToolBar.cs,
20835           TrackBar.cs, VScrollBar.cs:
20836           - Streamlined Theme interfaces:
20837             * Each DrawXXX method for a control now is passed the object for
20838               the control to be drawn in order to allow accessing any state the
20839               theme might require
20841             * ControlPaint methods for the theme now have a CP prefix to avoid
20842               name clashes with the Draw methods for controls
20844             * Every control now retrieves it's DefaultSize from the current
20845             theme
20847 2004-09-28 12:17  jackson
20849         * Button.cs: Do not redraw OnClick MouseUp/Down will handle the
20850           drawing
20852 2004-09-24 14:57  jackson
20854         * XplatUIX11.cs: Don't lock/enqueue/dequeue for unhandled messages.
20855           Gives us a nice little performance boost.
20857 2004-09-24 12:02  jackson
20859         * TabAlignment.cs, TabAppearance.cs, TabControl.cs, TabDrawMode.cs,
20860           TabPage.cs, TabSizeMode.cs: Partial implementation of the Tab
20861           Control and supporting classes. Initial checkin
20863 2004-09-23 13:08  jackson
20865         * Form.cs: Temp build fixage
20867 2004-09-23 01:39  ravindra
20869         * ItemChangedEventArgs.cs, ItemChangedEventHandler.cs,
20870           ItemCheckEventArgs.cs, ItemCheckEventHandler.cs,
20871           ItemDragEventArgs.cs, ItemDragEventHandler.cs,
20872           LabelEditEventArgs.cs, LabelEditEventHandler.cs: EventArgs and
20873           EventHandlers needed by ListView Control.
20875 2004-09-22 14:12  pbartok
20877         * ScrollableControl.cs:
20878           - Implemented DockPadding property
20879           - Implemented AutoScroll property
20880           - Implemented AutoScrollMargin property
20881           - Implemented AutoScrollMinSize property
20882           - Implemented AutoScrollPosition property
20883           - Implemented DisplayRectangle property (still incomplete)
20884           - Implemented CreateParams property
20885           - Implemented HScroll property
20886           - Implemented VScroll property
20887           - Implemented OnVisibleChanged property
20889 2004-09-22 14:09  pbartok
20891         * Form.cs:
20892           - Added Form.ControllCollection class
20893           - Added handling for Form owners: Owner, OwnedForms, AddOwnedForm,
20894             RemoveOwnedForm (still incomplete, missing on-top and common
20895             minimize/maximize behaviour)
20896           - Added StartPosition property (still incomplete, does not use when
20897             creating the form)
20898           - Added ShowDialog() methods (still incomplete, missing forcing the
20899             dialog modal)
20901 2004-09-22 14:05  pbartok
20903         * Application.cs:
20904           - Added message loop for modal dialogs
20906 2004-09-22 14:02  pbartok
20908         * GroupBox.cs:
20909           - Fixed wrong types for events
20911 2004-09-22 14:00  pbartok
20913         * Shortcut.cs, FormWindowState.cs:
20914           - Fixed wrong values
20916 2004-09-22 12:01  jackson
20918         * Control.cs: Text is never null
20920 2004-09-20 22:14  pbartok
20922         * XplatUIWin32.cs:
20923           - Fixed accessibility level for Idle handler
20925 2004-09-20 18:54  jackson
20927         * Application.cs, XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs,
20928           XplatUIX11.cs: New message loop that uses poll so we don't get a
20929           busy loop
20931 2004-09-17 10:43  pbartok
20933         * ScrollBar.cs:
20934           - Fixed behaviour of arrow buttons. Now properly behaves like
20935             Buttons (and like Microsoft's scrollbar arrow buttons)
20937 2004-09-17 10:14  pbartok
20939         * ScrollBar.cs:
20940           - Added missing release of keyboard/mouse capture
20942 2004-09-17 06:18  jordi
20944         * ContextMenu.cs, MainMenu.cs, Menu.cs, MenuAPI.cs, MenuItem.cs,
20945           Theme.cs: Very early menu support
20947 2004-09-16 17:45  pbartok
20949         * XplatUIWin32.cs:
20950           - Fixed sending a window to the front
20951           - Added overload for SetWindowPos to avoid casting
20953 2004-09-16 17:44  pbartok
20955         * Control.cs:
20956           - Added SendToBack and BringToFront methods
20958 2004-09-16 07:00  ravindra
20960         * Copyright: Added Novell URL.
20962 2004-09-16 07:00  ravindra
20964         * ToolBar.cs: Invalidate should be done before redrawing.
20966 2004-09-15 21:19  ravindra
20968         * ColumnHeaderStyle.cs: Enum for ListView Control.
20970 2004-09-15 21:18  ravindra
20972         * ColumnClickEventArgs.cs, ColumnClickEventHandler.cs: Event for
20973           ListView Control.
20975 2004-09-13 18:26  jackson
20977         * Timer.cs, XplatUIX11.cs: Remove test code so timers are updated
20978           properly
20980 2004-09-13 18:13  jackson
20982         * Timer.cs, X11Structs.cs, XplatUIX11.cs: Timers are now handled in
20983           a second thread and post messages into the main threads message
20984           queue. This makes timing much more consistent. Both win2K and XP
20985           have a minimum timer value of 15 milliseconds, so we now do this
20986           too.
20988 2004-09-13 15:18  pbartok
20990         * X11Structs.cs, XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs,
20991           XplatUIX11.cs:
20992           - Added Z-Ordering methods
20994 2004-09-13 10:56  pbartok
20996         * Form.cs:
20997           - Fixed #region names
20998           - Moved properties and methods into their proper #regions
21000 2004-09-13 10:51  pbartok
21002         * Form.cs:
21003           - Added Accept and CancelButton properties
21004           - Added ProcessDialogKey() method
21006 2004-09-13 08:18  pbartok
21008         * IWindowTarget.cs:
21009           - Initial check-in
21011 2004-09-10 21:50  pbartok
21013         * Control.cs:
21014           - Added DoDragDrop() [incomplete]
21015           - Properly implemented 'Visible' handling
21016           - Added SetVisibleCore()
21017           - Implemented FindChildAtPoint()
21018           - Implemented GetContainerControl()
21019           - Implemented Hide()
21021 2004-09-10 19:28  pbartok
21023         * Control.cs:
21024           - Moved methods into their appropriate #regions
21025           - Reordered methods within regions alphabetically
21027 2004-09-10 18:57  pbartok
21029         * XplatUIX11.cs, XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs:
21030           - Added method to retrieve text from window
21032 2004-09-10 18:56  pbartok
21034         * Control.cs:
21035           - Moved some internal functions into the internal region
21036           - Implemented FontHeight
21037           - Implemented RenderRightToLeft
21038           - Implemented ResizeRedraw
21039           - Implemented ShowFocusCues
21040           - Implemented ShowKeyboardCues
21041           - Implemented FromChildHandle
21042           - Implemented FromHandle
21043           - Implemented IsMnemonic
21044           - Implemented ReflectMessage
21045           - All public and protected Static Methods are now complete
21047 2004-09-10 16:54  pbartok
21049         * Control.cs:
21050           - Implemented remaining missing public instance properties
21051           - Alphabetized some out of order properties
21053 2004-09-10 05:51  ravindra
21055         * PictureBox.cs: Added a check for null image.
21057 2004-09-10 00:59  jordi
21059         * GroupBox.cs: remove cvs tag
21061 2004-09-09 05:25  ravindra
21063         * ToolBar.cs: Make redraw accessible from ToolBarButton.
21065 2004-09-09 05:23  ravindra
21067         * ToolBarButton.cs: Changes in ToolBarButton need to make it's
21068           parent redraw.
21070 2004-09-09 02:28  pbartok
21072         * ThemeWin32Classic.cs:
21073           - Improve disabled string look
21075 2004-09-09 01:15  jordi
21077         * MeasureItemEventArgs.cs, MeasureItemEventHandler.cs: measureitem
21078           args and handler
21080 2004-09-08 23:56  ravindra
21082         * ItemBoundsPortion.cs: It's enum, not a class!
21084 2004-09-08 23:47  ravindra
21086         * FormBorderStyle.cs, FormStartPosition.cs, FormWindowState.cs:
21087           Enums for Form.
21089 2004-09-08 21:13  ravindra
21091         * ItemBoundsPortion.cs, ListViewAlignment.cs, View.cs: Enums for
21092           ListView control.
21094 2004-09-08 21:03  ravindra
21096         * ThemeWin32Classic.cs: PictureBox would not draw a null image to
21097           avoid crash.
21099 2004-09-08 21:01  ravindra
21101         * ScrollableControl.cs: Removed unreachable code.
21103 2004-09-08 06:45  jordi
21105         * MenuMerge.cs, Shortcut.cs: enumerations need it by menus
21107 2004-09-08 01:00  jackson
21109         * XplatUIX11.cs: Only run the timers when updating the message
21110           queue. This effectively gives X messages a higher priority then
21111           timer messages. Timers still need love though
21113 2004-09-07 14:01  jackson
21115         * XplatUIX11.cs: Do not call XDestroyWindow, X has already done
21116           this for us and the handle is no longer valid.
21118 2004-09-07 13:59  jackson
21120         * HandleData.cs, XplatUIX11.cs: First steps towards a new X event
21121           loop that manages to not crash. TODO: Add poll and cleanup timers
21123 2004-09-07 11:12  jordi
21125         * GroupBox.cs, Theme.cs, ThemeWin32Classic.cs: GroupBox control
21127 2004-09-07 03:40  jordi
21129         * Label.cs, LinkLabel.cs, Theme.cs, ThemeWin32Classic.cs: LinkLabel
21130           fixes, methods, multiple links
21132 2004-09-06 06:55  jordi
21134         * Control.cs: Caches ClientRectangle rectangle value
21136 2004-09-05 02:03  jordi
21138         * ScrollBar.cs, ThemeWin32Classic.cs: fixes bugs, adds flashing on
21139           certain situations
21141 2004-09-04 11:10  jordi
21143         * Label.cs: Refresh when font changed
21145 2004-09-02 16:24  pbartok
21147         * Control.cs:
21148           - Added sanity check to creation of double buffer bitmap
21150 2004-09-02 16:24  pbartok
21152         * ButtonBase.cs:
21153           - Fixed selection of text color
21154           - Fixed handling of resize event; now properly recreates double
21155             buffering bitmap
21156           - Added missing assignment of TextAlignment
21157           - Added proper default for TextAlignment
21159 2004-09-02 14:26  pbartok
21161         * RadioButton.cs:
21162           - Added missing RadioButton.RadioButtonAccessibleObject class
21164 2004-09-02 14:26  pbartok
21166         * Control.cs:
21167           - Added missing Control.ControlAccessibleObject class
21168           - Started to implement Select()ion mechanisms, still very incomplete
21170 2004-09-02 14:25  pbartok
21172         * AccessibleObject.cs:
21173           - Added missing methods
21175 2004-09-02 14:23  pbartok
21177         * AccessibleNavigation.cs, AccessibleSelection.cs:
21178           - Initial check-in
21180 2004-09-02 10:32  jordi
21182         * Theme.cs, ThemeGtk.cs, ThemeWin32Classic.cs: implements resource
21183           pool for pens, brushes, and hatchbruses
21185 2004-09-01 15:30  jackson
21187         * StatusBar.cs: Fix typo
21189 2004-09-01 14:44  pbartok
21191         * RadioButton.cs:
21192           - Fixed state
21194 2004-09-01 14:39  pbartok
21196         * Button.cs, RadioButton.cs:
21197           - Functional initial check-in
21199 2004-09-01 14:01  pbartok
21201         * CheckBox.cs:
21202           - Added missing default
21203           - Added missing region mark
21205 2004-09-01 09:10  jordi
21207         * Label.cs: fixes method signatures, new methods, events, fixes
21208           autosize
21210 2004-09-01 07:19  jordi
21212         * Control.cs: Init string variables with an empty object
21214 2004-09-01 04:20  jordi
21216         * Control.cs: fires OnFontChanged event
21218 2004-08-31 20:07  pbartok
21220         * ButtonBase.cs:
21221           - Enabled display of strings
21223 2004-08-31 20:05  pbartok
21225         * Form.cs:
21226           - Added (partial) implementation of DialogResult; rest needs to be
21227             implemented when the modal loop code is done
21229 2004-08-31 19:55  pbartok
21231         * CheckBox.cs:
21232           - Fixed to match the removal of the needs_redraw concept
21234 2004-08-31 19:55  pbartok
21236         * ButtonBase.cs:
21237           - Removed the rather odd split between 'needs redraw' and redrawing
21238           - Now handles the events that require regeneration (ambient
21239             properties and size)
21241 2004-08-31 19:41  pbartok
21243         * Control.cs:
21244           - Added firing of BackColorChanged event
21245           - Added TopLevelControl property
21246           - Fixed handling of WM_ERASEBKGRND message
21248 2004-08-31 12:49  pbartok
21250         * ButtonBase.cs:
21251           - Removed debug
21252           - Minor fixes
21254 2004-08-31 12:48  pbartok
21256         * CheckBox.cs:
21257           - Finished (famous last words)
21259 2004-08-31 04:35  jordi
21261         * ScrollBar.cs: adds autorepeat timer, uses a single timer, fixes
21262           scrolling bugs, adds new methods
21264 2004-08-30 14:42  pbartok
21266         * CheckBox.cs:
21267           - Implemented CheckBox drawing code
21269 2004-08-30 14:42  pbartok
21271         * ButtonBase.cs:
21272           - Made Redraw() and CheckRedraw() virtual
21273           - Improved mouse up/down/move logic to properly track buttons
21275 2004-08-30 09:44  pbartok
21277         * CheckBox.cs:
21278           - Updated to fix broken build. Not complete yet.
21280 2004-08-30 09:28  pbartok
21282         * CheckState.cs:
21283           - Initial checkin
21285 2004-08-30 09:17  pbartok
21287         * Appearance.cs:
21288           - Initial check-in
21290 2004-08-27 16:12  ravindra
21292         * ToolBarButton.cs: Added TypeConverter attribute.
21294 2004-08-27 16:07  ravindra
21296         * ImageIndexConverter.cs: Implemented.
21298 2004-08-27 14:17  pbartok
21300         * Control.cs:
21301           - Removed unneeded stack vars
21302           - First attempt to fix sizing issues when layout is suspended
21304 2004-08-25 15:35  jordi
21306         * ScrollBar.cs: more fixes to scrollbar
21308 2004-08-25 14:04  ravindra
21310         * Theme.cs, ThemeWin32Classic.cs, ToolBar.cs, ToolBarButton.cs:
21311           Added the missing divider code and grip for ToolBar Control.
21313 2004-08-25 13:20  pbartok
21315         * Control.cs:
21316           - Control now properly passes the ambient background color to child
21317             controls
21319 2004-08-25 13:20  jordi
21321         * ScrollBar.cs: small bug fix regarding bar position
21323 2004-08-25 12:33  pbartok
21325         * Timer.cs:
21326           - Now only calls SetTimer or KillTimer if the enabled state has
21327           changed
21329 2004-08-25 12:33  pbartok
21331         * XplatUIWin32.cs:
21332           - Fixed timer handling, now seems to work
21333           - Improved error message for window creation
21335 2004-08-25 12:32  pbartok
21337         * Control.cs:
21338           - Fixed generation of MouseUp message
21340 2004-08-25 12:29  jordi
21342         * ProgressBar.cs, ThemeWin32Classic.cs: new methods, properties,
21343           and fixes for progressbar
21345 2004-08-24 18:43  ravindra
21347         * ThemeWin32Classic.cs, ToolBar.cs: Fixed wrapping related issues
21348           in ToolBar control.
21350 2004-08-24 17:15  pbartok
21352         * Panel.cs:
21353           - Added #region
21354           - Added missing events
21355           - Alphabetized
21357 2004-08-24 17:14  pbartok
21359         * StatusBar.cs, PictureBox.cs:
21360           - Now uses Control's CreateParams
21362 2004-08-24 16:36  pbartok
21364         * XplatUIX11.cs:
21365           - Fixed background color handling
21366           - Fixed sending of enter/leave events on a grab
21368 2004-08-24 16:35  pbartok
21370         * X11Structs.cs:
21371           - Refined definitions for CrossingEvent
21373 2004-08-24 12:37  jordi
21375         * ScrollBar.cs, Theme.cs, ThemeGtk.cs, ThemeWin32Classic.cs: fixes
21376           formmating, methods signature, and adds missing events
21378 2004-08-24 12:24  jordi
21380         * Control.cs: fire OnEnabledChanged event
21382 2004-08-24 11:17  pbartok
21384         * XplatUIWin32.cs:
21385           - Implemented SetTimer() and KillTimer()
21387 2004-08-24 11:16  pbartok
21389         * XplatUIX11.cs:
21390           - Now uses Remove instead of Add to kill the timer
21392 2004-08-24 10:16  jackson
21394         * PictureBox.cs, Theme.cs, ThemeWin32Classic.cs: Handle drawing
21395           picture boxes in the theme now. Draw picture box borders and obey
21396           sizing modes
21398 2004-08-24 05:49  jackson
21400         * Timer.cs: Remove top secret debugging code
21402 2004-08-24 05:34  jackson
21404         * PictureBox.cs: Temp hack to make picture boxes draw their full
21405           image
21407 2004-08-24 05:29  jackson
21409         * Timer.cs, XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs,
21410           XplatUIX11.cs: Move timers to the driver level. On X they are
21411           queued by the driver and checked on idle.
21413 2004-08-24 01:07  jackson
21415         * XplatUIX11.cs: Use a queue for async messages instead of passing
21416           them as ClientMessages since that was totally broken. Also simply
21417           check for events and return an idle message if none are found. This
21418           gives us an idle handler, and prevents deadlocking when no messages
21419           are in the queue.
21421 2004-08-23 18:19  ravindra
21423         * XplatUIWin32.cs: Removed the unwanted destructor.
21425 2004-08-23 17:27  pbartok
21427         * ButtonBase.cs:
21428           - Finishing touches. Works now, just needs some optimizations.
21430 2004-08-23 16:53  jordi
21432         * ScrollBar.cs: small fix
21434 2004-08-23 16:45  pbartok
21436         * Application.cs:
21437           - Removed debug output
21438           - Simplifications
21440 2004-08-23 16:43  jordi
21442         * ScrollBar.cs: [no log message]
21444 2004-08-23 16:10  pbartok
21446         * Form.cs:
21447           - Fixed handling of WM_CLOSE message
21448           - Removed debug output
21450 2004-08-23 16:09  pbartok
21452         * Application.cs:
21453           - Added handling of Idle event
21454           - Added handling of form closing
21455           - Fixed reporting of MessageLoop property
21456           - Removed some unneeded code, should provide a bit of a speedup
21458 2004-08-23 15:22  pbartok
21460         * Control.cs:
21461           - Added InitLayout() method
21462           - Added code to properly perform layout when Anchor or Dock property
21463             is changed
21464           - Changed 'interpretation' of ResumeLayout. MS seems to have a
21465             LAMESPEC, tried to do it in a way that makes sense
21467 2004-08-23 14:10  jordi
21469         * HScrollBar.cs, ScrollBar.cs, TrackBar.cs, VScrollBar.cs: fixes
21470           properties and methods
21472 2004-08-23 13:55  pbartok
21474         * Control.cs:
21475           - Properly fixed Jordi's last fix
21476           - Now uses Cursor's Position property instead of calling XplatUI
21477           directly
21479 2004-08-23 13:44  jordi
21481         * PaintEventHandler.cs: Adding missing attribute
21483 2004-08-23 13:39  pbartok
21485         * Cursor.cs:
21486           - Implemented Position property
21488 2004-08-23 13:39  pbartok
21490         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs:
21491           - Added method to move mouse cursor
21493 2004-08-23 13:39  pbartok
21495         * XplatUIX11.cs:
21496           - Fixed setting of background color
21497           - Added method to move mouse cursor
21499 2004-08-23 13:16  jordi
21501         * Control.cs: avoids null exception
21503 2004-08-22 17:46  jackson
21505         * PictureBox.cs, PictureBoxSizeMode.cs: Initial implementation of
21506           PictureBox
21508 2004-08-22 17:40  jackson
21510         * XplatUIX11.cs: Add some missing locks
21512 2004-08-22 15:10  pbartok
21514         * Control.cs, Form.cs:
21515           - Removed OverlappedWindow style from Control, instead it's default
21516             now is child
21517           - Made form windows OverlappedWindow by default
21519 2004-08-22 13:34  jackson
21521         * ScrollBar.cs: Update the position through the Value property so
21522           the OnValueChanged event is raised.
21524 2004-08-22 12:04  pbartok
21526         * SWF.csproj:
21527           - Added Cursor.cs and UserControl.cs
21529 2004-08-22 12:03  pbartok
21531         * Cursor.cs:
21532           - Started implementation, not usable yet
21534 2004-08-22 12:00  pbartok
21536         * UserControl.cs:
21537           - Implemented UserControl (complete)
21539 2004-08-21 19:20  ravindra
21541         * ToolBar.cs: Correcting the formatting mess of VS.NET.
21543 2004-08-21 18:49  ravindra
21545         * ToolBar.cs: Probably this completes the missing attributes in
21546           toolbar control.
21548 2004-08-21 18:03  ravindra
21550         * ToolBar.cs, ToolBarButton.cs, ToolBarButtonClickEventArgs.cs:
21551           Fixed toolbar control signatures.
21553 2004-08-21 16:32  pbartok
21555         * LinkLabel.cs:
21556           - Signature Fixes
21558 2004-08-21 16:30  pbartok
21560         * Label.cs:
21561           - Signature fixes
21563 2004-08-21 16:19  pbartok
21565         * Control.cs, Label.cs:
21566           - Signature fixes
21568 2004-08-21 15:57  pbartok
21570         * ButtonBase.cs:
21571           - Added loads of debug output for development
21572           - Fixed typo in method name
21574 2004-08-21 15:52  pbartok
21576         * ToolBarButtonClickEventArgs.cs:
21577           - Added missing base class
21579 2004-08-21 14:53  pbartok
21581         * Control.cs:
21582           - Updated to match new GrabWindow signature
21584 2004-08-21 14:51  pbartok
21586         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIX11.cs:
21587           - Added method to get default display size
21589 2004-08-21 14:23  pbartok
21591         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIX11.cs:
21592           - Added method to query current grab state
21593           - Added argument to allow confining a grab to a window
21595 2004-08-21 14:22  pbartok
21597         * Keys.cs:
21598           - Added [Flags] attribute so that modifiers can be used in bitwise
21599           ops
21601 2004-08-21 14:21  pbartok
21603         * TrackBar.cs, ScrollBar.cs:
21604           - Replaced direct XplatUI calls with their Control counterpart
21606 2004-08-21 13:32  pbartok
21608         * Control.cs:
21609           - Implemented Created property
21611 2004-08-21 13:28  pbartok
21613         * Control.cs:
21614           - Implemented ContainsFocus
21616 2004-08-21 13:26  pbartok
21618         * Control.cs:
21619           - Implemented CausesValidation
21621 2004-08-21 13:21  pbartok
21623         * Control.cs:
21624           - Implemented CanFocus
21625           - Implemented CanSelect
21626           - Implemented Capture
21628 2004-08-21 12:35  pbartok
21630         * XplatUIWin32.cs:
21631           - Fixed bug with Async message handling
21632           - Implemented getting the ModifierKeys
21634 2004-08-21 12:32  jackson
21636         * AsyncMethodResult.cs: Make sure we have the mutex before we
21637           release it. Fixes BeginInvoke on windows
21639 2004-08-21 11:31  pbartok
21641         * XplatUIWin32.cs, XplatUIX11.cs:
21642           - Drivers now return proper mouse state
21644 2004-08-21 10:54  jackson
21646         * Control.cs: Implement EndInvoke
21648 2004-08-21 10:48  jackson
21650         * Timer.cs: Remove unneeded finalizer
21652 2004-08-20 19:52  ravindra
21654         * ThemeWin32Classic.cs, ToolBar.cs, ToolBarButton.cs: Improvments
21655           in mouse event handling in the ToolBar control.
21657 2004-08-20 19:50  ravindra
21659         * ImageList.cs: Changed draw method to use the arguments passed in
21660           to draw the image.
21662 2004-08-20 18:58  pbartok
21664         * XplatUIStructs.cs:
21665           - Added private message for async communication
21667 2004-08-20 17:38  ravindra
21669         * Control.cs: Made RightToLeft property virtual and removed a
21670           Console.WriteLine.
21672 2004-08-20 14:39  jordi
21674         * ThemeGtk.cs: use style_attach
21676 2004-08-20 14:39  pbartok
21678         * XplatUIWin32.cs:
21679           - Added jackson's Async code from X11 to Win32
21681 2004-08-20 14:09  pbartok
21683         * SWF.csproj:
21684           - Added all new files
21686 2004-08-20 14:09  pbartok
21688         * Control.cs:
21689           - Added call to set window background color
21691 2004-08-20 14:03  pbartok
21693         * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs:
21694           - Added method for setting the window background
21696 2004-08-20 14:02  pbartok
21698         * XplatUIWin32.cs:
21699           - Added method for setting the background color
21700           - Added handling for erasing the window background
21702 2004-08-20 13:45  jordi
21704         * TrackBar.cs: fixes timer, new properties and methods
21706 2004-08-20 13:34  jackson
21708         * ScrollBar.cs: Use the SWF timer so callbacks are run in the
21709           correct thread
21711 2004-08-20 13:22  jackson
21713         * Timer.cs: Timer Tick events are now handed through Controls Async
21714           mechanism so the callbacks are executed in the same thread as X
21716 2004-08-20 13:19  jackson
21718         * XplatUIDriver.cs: Expose functionality to send async messages
21719           through the driver
21721 2004-08-20 13:18  jackson
21723         * Control.cs: Implement Begininvoke
21725 2004-08-20 13:14  jackson
21727         * XplatUI.cs, XplatUIWin32.cs: Expose functionality to send async
21728           messages through the driver
21730 2004-08-20 13:12  jackson
21732         * XplatUIX11.cs: Lock before all X operations. Also added Async
21733           method functionality through XSendEvent
21735 2004-08-20 13:11  jackson
21737         * X11Structs.cs: Use IntPtrs for ClientMessage extra data (TODO:
21738           This will screw up on 64 bit systems)
21740 2004-08-20 13:10  jackson
21742         * AsyncMethodData.cs, AsyncMethodResult.cs: Classes for sending
21743           Async messages through X/Win32
21745 2004-08-19 19:39  pbartok
21747         * XplatUIX11.cs:
21748           - Updated code to match new HandleData.DeviceContext type
21750 2004-08-19 19:38  pbartok
21752         * HandleData.cs:
21753           - Made DeviceContext a generic object to allow usage from various
21754           drivers
21755           - Added support for queueing Windows messages
21757 2004-08-19 19:37  pbartok
21759         * XplatUIWin32.cs:
21760           - Added generation of MouseEnter, MouseLeave and MouseHover events
21761           - Added cleanup on EndPaint
21763 2004-08-19 19:17  pbartok
21765         * Control.cs:
21766           - Added handling of WM_MOUSEHOVER
21767           - Worked around 'bug' in Win32 WM_MOUSE_ENTER/WM_MOUSE_LEAVE driver
21768           code
21770 2004-08-19 18:55  jordi
21772         * ThemeGtk.cs: fixes button order
21774 2004-08-19 18:12  jordi
21776         * Theme.cs, ThemeWin32Classic.cs: fixes methods signature
21778 2004-08-19 17:09  pbartok
21780         * Control.cs:
21781           - Added Right property
21782           - Added RightToLeft property
21784 2004-08-19 16:27  jordi
21786         * ThemeGtk.cs: experimental GTK theme support
21788 2004-08-19 16:26  jordi
21790         * ITheme.cs, Theme.cs: move themes from an interface to a class
21792 2004-08-19 16:25  jordi
21794         * Control.cs, ScrollBar.cs, ThemeEngine.cs, ThemeWin32Classic.cs:
21795           theme enhancaments
21797 2004-08-19 16:04  pbartok
21799         * XplatUIX11.cs:
21800           - Added colormap basics
21801           - Added a way to re-initialize with a different display handle
21802           - Fixed setting of the window background color
21803           - Added various X11 imports related to colors and colormaps
21805 2004-08-19 15:51  pbartok
21807         * X11Structs.cs:
21808           - Removed packing hints (Paolo suggested this a while back)
21809           - fixed colormap type
21810           - Added default Atom types
21811           - Added Screen and color structs and enums
21813 2004-08-19 15:39  pbartok
21815         * ImageList.cs:
21816           - Added missing Draw() method
21817           - Added missing RecreateHandle event
21819 2004-08-19 15:30  pbartok
21821         * Form.cs:
21822           - Added handling of WM_CLOSE
21824 2004-08-18 13:16  jordi
21826         * ITheme.cs, ThemeWin32Classic.cs, XplatUIWin32.cs: Move colors to
21827           a table
21829 2004-08-18 09:56  jordi
21831         * ScrollBar.cs: fixes to scrollbar: steps and multiple timers
21833 2004-08-17 15:31  ravindra
21835         * SWF.csproj: Updated project.
21837 2004-08-17 15:25  pbartok
21839         * Control.cs:
21840           - Drawing improvement; don't call UpdateBounds if we are not visible
21841             (or have been minimized)
21843 2004-08-17 15:24  pbartok
21845         * XplatUIWin32.cs:
21846           - Finished IsVisible
21847           - Added Win32GetWindowPlacement
21849 2004-08-17 15:08  jackson
21851         * Panel.cs: Initial checkin of the Panel
21853 2004-08-17 14:25  pbartok
21855         * Control.cs:
21856           - Fixed broken handling of default window sizes
21858 2004-08-17 13:29  jackson
21860         * ThemeWin32Classic.cs: Don't use KnownColor to create colours. It
21861           has a large startup time.
21863 2004-08-17 10:25  jackson
21865         * HandleData.cs: union areas properly
21867 2004-08-17 10:12  jackson
21869         * HandleData.cs: union areas properly
21871 2004-08-16 20:00  ravindra
21873         * ToolBar.cs, ToolBarButton.cs: Added attributes.
21875 2004-08-16 18:48  ravindra
21877         * ToolBar.cs: Added attributes.
21879 2004-08-16 17:17  ravindra
21881         * SWF.csproj: Updated project.
21883 2004-08-16 17:16  jackson
21885         * XplatUIX11.cs: Check for more expose events before sending a
21886           WM_PAINT so they can all be grouped together. This makes dragging a
21887           window across another window redraw in a sane way.
21889 2004-08-16 15:47  pbartok
21891         * Control.cs:
21892           - Added handling of WM_MOUSE_ENTER & WM_MOUSE_LEAVE to
21893             support OnMouseEnter/Leave()
21894           - Added WS_CLIPSIBLINGS and WS_CLIPCHILDREN window styles to improve
21895             exposure handling
21897 2004-08-16 15:46  pbartok
21899         * XplatUIStructs.cs, XplatUIX11.cs:
21900           - Added WM_MOUSE_ENTER & WM_MOUSE_LEAVE to support
21901           OnMouseEnter/Leave()
21903 2004-08-16 15:34  jackson
21905         * XplatUIX11.cs: Group multiple expose events in HandleData, make
21906           sure messages get the message field set to WM_NULL if they are not
21907           handled.
21909 2004-08-16 15:24  jackson
21911         * HandleData.cs: HandleData is used for storing message information
21912           for window handles
21914 2004-08-15 17:23  ravindra
21916         * ColorDepth.cs: Added attribute.
21918 2004-08-15 17:23  ravindra
21920         * SWF.csproj: Updated project for ToolBar Control.
21922 2004-08-15 17:20  ravindra
21924         * ITheme.cs, ThemeWin32Classic.cs: Changes to Theme for ToolBar
21925           control and also dos2unix format.
21927 2004-08-15 17:13  ravindra
21929         * ToolBar.cs, ToolBarAppearance.cs, ToolBarButton.cs,
21930           ToolBarButtonClickEventArgs.cs,
21931           ToolBarButtonClickEventHandler.cs, ToolBarButtonStyle.cs,
21932           ToolBarTextAlign.cs: First Implementation of ToolBar control.
21934 2004-08-15 15:31  pbartok
21936         * ButtonBase.cs:
21937           - First (mostly) working version
21939 2004-08-13 16:15  pbartok
21941         * Control.cs:
21942           - Fixed Anchor default
21944 2004-08-13 15:43  pbartok
21946         * Control.cs:
21947           - Changed GetCursorPos signature
21949 2004-08-13 15:42  pbartok
21951         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs:
21952           - Changed signature for GetCursorPos
21954 2004-08-13 15:25  pbartok
21956         * XplatUIX11.cs:
21957           - Cleanup
21958           - Fixed resizing/exposure handling
21960 2004-08-13 15:22  jordi
21962         * ThemeWin32Classic.cs: removes redundant code and fixes issues
21963           with tickposition
21965 2004-08-13 14:55  jordi
21967         * TrackBar.cs: change from wndproc to events
21969 2004-08-13 13:00  jordi
21971         * Control.cs, XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs,
21972           XplatUIX11.cs: implements PointToClient (ScreenToClient)
21974 2004-08-13 12:53  pbartok
21976         * XplatUIWin32.cs:
21977           - Changed GetWindowPos to also provide client area size
21978           - Fixed broken prototypes for several win32 functions
21980 2004-08-13 12:53  pbartok
21982         * XplatUI.cs, XplatUIDriver.cs:
21983           - Changed GetWindowPos to also provide client area size
21985 2004-08-13 12:52  pbartok
21987         * XplatUIX11.cs:
21988           - Added generation of WM_POSCHANGED
21989           - Changed GetWindowPos to also provide client area size
21991 2004-08-13 12:52  pbartok
21993         * Control.cs:
21994           - Added Dispose() and destructor
21995           - Fixed resizing and bounds calculation
21996           - Fixed Layout
21997           - Added memory savings for invisible windows
21999 2004-08-13 12:46  jordi
22001         * TrackBar.cs: adds timer and grap window
22003 2004-08-13 10:25  jackson
22005         * Timer.cs: SWF Timer
22007 2004-08-12 16:59  pbartok
22009         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIX11.cs:
22010           - Implemented method to get current mouse position
22012 2004-08-12 14:29  jordi
22014         * ITheme.cs, ThemeWin32Classic.cs, TrackBar.cs: Trackbar
22015           enhancement, fix mouse problems, highli thumb, etc
22017 2004-08-12 13:31  pbartok
22019         * Control.cs:
22020           - Fixed Anchoring bugs
22022 2004-08-12 13:01  jackson
22024         * StatusBar.cs: Don't forget things
22026 2004-08-12 12:54  jackson
22028         * ThemeWin32Classic.cs: Handle owner draw status bars
22030 2004-08-12 12:54  jackson
22032         * StatusBar.cs: Implement missing properties, events, and methods.
22033           Handle mouse clicking
22035 2004-08-12 10:19  jackson
22037         * StatusBarPanelClickEventArgs.cs,
22038           StatusBarPanelClickEventHandler.cs: Classes for handling status
22039           bar panel click events
22041 2004-08-12 10:10  jackson
22043         * Control.cs: Add missing properties
22045 2004-08-12 09:46  pbartok
22047         * BindingsManagerBase.cs:
22048           - Name changed to BindingManagerBase.cs
22050 2004-08-12 09:25  jordi
22052         * ScrollableControl.cs: calls ctrlbase instead of exeception
22054 2004-08-11 16:28  pbartok
22056         * InputLanguageChangingEventArgs.cs:
22057           - Never check in before compiling. Fixes the last check-in
22059 2004-08-11 16:26  pbartok
22061         * InputLanguageChangingEventArgs.cs:
22062           - More signature fixes
22064 2004-08-11 16:20  pbartok
22066         * BindingManagerBase.cs, BindingMemberInfo.cs, ContainerControl.cs,
22067           Control.cs, ControlEventArgs.cs, ControlPaint.cs, Form.cs,
22068           ImageListStreamer.cs, InputLanguage.cs,
22069           InputLanguageChangedEventArgs.cs,
22070           InputLanguageChangingEventArgs.cs, Keys.cs, LayoutEventArgs.cs,
22071           LinkArea.cs, Message.cs, MouseEventArgs.cs, NativeWindow.cs,
22072           ScrollEventArgs.cs, ScrollableControl.cs, XplatUI.cs,
22073           XplatUIDriver.cs, XplatUIWin32.cs, XplatUIX11.cs:
22074           - Signature fixes
22076 2004-08-11 16:16  pbartok
22078         * Application.cs:
22079           - Fixed Signature
22080           - Added .Net 1.1 method
22082 2004-08-11 15:25  pbartok
22084         * SWF.csproj:
22085           - Fixed BindingManagerBase.cs filename
22087 2004-08-11 15:22  pbartok
22089         * BindingManagerBase.cs:
22090           - Was checked in with wrong filename
22092 2004-08-11 14:50  pbartok
22094         * SWF.csproj:
22095           - Updated
22097 2004-08-11 13:41  jordi
22099         * XplatUIWin32.cs: Fixes ClientRect
22101 2004-08-11 13:19  pbartok
22103         * Control.cs, XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs,
22104           XplatUIX11.cs:
22105           - We had SetWindowPos and MoveWindow to set window positions and
22106             size, removed MoveWindow. We have GetWindowPos, so it made sense to
22107             keep SetWindowPos as matching counterpart
22108           - Added some X11 sanity checking
22110 2004-08-11 12:59  pbartok
22112         * Control.cs:
22113           - Major cleanup of my SetBounds/SetBoundsCore/UpdateBounds mess
22114             (It seems that SetBounds is just a front for SetBoundsCore and
22115              SetBoundsCore updates the underlying window system and
22116              UpdateBounds is responsible for updating the variables associated
22117              with the Control and sending the events)
22118           - Major cleanup of Size handling; we now have two sizes, client_size
22119             and bounds. Bounds defines the window with decorations, client_size
22120             without them.
22122 2004-08-11 12:55  pbartok
22124         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIX11.cs:
22125           - Added method to calculate difference between decorated window and
22126             raw client area
22128 2004-08-11 12:54  pbartok
22130         * Label.cs:
22131           - Forcing redraw on resize
22133 2004-08-11 11:43  pbartok
22135         * ImageList.cs:
22136           - Removed disposing of the actual images when the list is disposed
22138 2004-08-11 09:13  pbartok
22140         * Control.cs:
22141           - Now properly reparents windows
22143 2004-08-11 08:37  pbartok
22145         * Control.cs:
22146           - Duh!
22148 2004-08-11 07:47  pbartok
22150         * Control.cs:
22151           - Rewrote the collection stuff. Might not be as fast now, not
22152             keeping the number of children around and accessible directly, but
22153             it's more straightforward
22155 2004-08-11 07:44  pbartok
22157         * AccessibleObject.cs:
22158           - Fixed to match ControlCollection rewrite
22160 2004-08-11 07:43  pbartok
22162         * ImageList.cs:
22163           - Added missing creation of the collection list
22165 2004-08-10 20:08  jackson
22167         * StatusBar.cs: Get the paint message from WndProc
22169 2004-08-10 19:31  jackson
22171         * ThemeWin32Classic.cs: Create Brushes as little as possible
22173 2004-08-10 19:20  jackson
22175         * UICues.cs: Add Flags attribute
22177 2004-08-10 19:19  jackson
22179         * StatusBarPanel.cs: Signature cleanup
22181 2004-08-10 19:10  jackson
22183         * StatusBarDrawItemEventArgs.cs, StatusBarDrawItemEventHandler.cs:
22184           Initial implementation of status bar item drawing
22186 2004-08-10 17:27  jordi
22188         * TrackBar.cs: add missing methods, properties, and restructure to
22189           hide extra ones
22191 2004-08-10 16:24  jackson
22193         * AccessibleStates.cs, Border3DSide.cs, Border3DStyle.cs,
22194           ButtonState.cs, ControlStyles.cs, DragDropEffects.cs: Add flags
22195           attribute
22197 2004-08-10 13:21  jordi
22199         * ITheme.cs, ScrollBar.cs, ThemeWin32Classic.cs: scrollbar
22200           enhancements and standarize on win colors defaults
22202 2004-08-10 12:52  jackson
22204         * DrawItemEventArgs.cs, DrawItemState.cs, ITheme.cs,
22205           ThemeWin32Classic.cs: Implement DrawItem functionality
22207 2004-08-10 12:47  jordi
22209         * XplatUIWin32.cs: Calls InvalidateRect before UpdateWindow
22211 2004-08-10 12:32  jordi
22213         * Control.cs: throw ontextchange event
22215 2004-08-10 11:43  pbartok
22217         * Control.cs:
22218           - Added more to the still unfinished Dock/Anchor layout code
22220 2004-08-10 11:39  pbartok
22222         * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs:
22223           - Added GetWindowPos method
22225 2004-08-10 11:36  pbartok
22227         * XplatUIWin32.cs:
22228           - Implemented several methods
22230 2004-08-10 09:47  jackson
22232         * TrackBar.cs: Allow control to handle buffering
22234 2004-08-10 09:41  jackson
22236         * ProgressBar.cs, ScrollBar.cs: Allow control to handle buffering
22238 2004-08-10 09:24  jackson
22240         * Label.cs, LinkLabel.cs: Let Control handle buffering.
22242 2004-08-10 09:09  jackson
22244         * StatusBar.cs: Let Control handle all the buffering.
22246 2004-08-10 09:08  jackson
22248         * Control.cs: Control will now handle the buffering code, so each
22249           control does not have to implement this.
22251 2004-08-10 08:34  jackson
22253         * XplatUIDriver.cs: Use default colors from the theme
22255 2004-08-09 17:12  pbartok
22257         * ImageList.cs:
22258           - Fixed several bugs Ravindra pointed out
22260 2004-08-09 16:11  pbartok
22262         * Control.cs:
22263           - Added incomplete dock layout code
22264           - Added support for mouse wheel
22266 2004-08-09 16:09  pbartok
22268         * XplatUIX11.cs:
22269           - Added handling for middle and right mousebutton
22270           - Added handling for mouse wheel
22271           - Added handling for key state and mouse state and position
22272           - Now properly generates WM_xBUTTONx messages and WM_MOUSEWHEEL
22273           messages
22275 2004-08-09 15:40  jackson
22277         * StatusBarPanel.cs, StatusBarPanelAutoSize.cs,
22278           StatusBarPanelBorderStyle.cs, StatusBarPanelStyle.cs: Initial
22279           checkin
22281 2004-08-09 15:37  jackson
22283         * StatusBar.cs: Initial implementation of StatusBar
22285 2004-08-09 15:36  jackson
22287         * ITheme.cs: Add support for drawing status bar and getting status
22288           bar item sizes
22290 2004-08-09 15:35  pbartok
22292         * MouseButtons.cs:
22293           - Fixed values
22295 2004-08-09 15:34  jackson
22297         * ThemeWin32Classic.cs: Add support for drawing status bar and get
22298           status bar item sizes
22300 2004-08-09 15:21  jackson
22302         * ThemeWin32Classic.cs: Use known colors for default control
22303           colours
22305 2004-08-09 15:12  jackson
22307         * ThemeWin32Classic.cs: Make the default font static, it is static
22308           in control so this doesn't change functionality and creating fonts
22309           is sloooooow.
22311 2004-08-09 14:56  pbartok
22313         * X11Structs.cs:
22314           - Added GrabMode enum
22316 2004-08-09 14:55  pbartok
22318         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIX11.cs:
22319           - Removed Run method, was only required for initial development
22321 2004-08-09 14:51  pbartok
22323         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIX11.cs:
22324           - Implemented GrabWindow/ReleaseWindow methods to allow pointer
22325           capture
22327 2004-08-09 13:48  pbartok
22329         * XplatUIX11.cs:
22330           - Fixed default sizing for child windows
22332 2004-08-09 12:56  pbartok
22334         * XplatUIX11.cs:
22335           - Added generation of WM_DESTROY message
22336           - Added handling of window manager induced shutdown
22338 2004-08-09 11:31  jackson
22340         * ThemeWin32Classic.cs: New names for control properties
22342 2004-08-09 11:25  jackson
22344         * Control.cs: Use new color names
22346 2004-08-09 11:02  jackson
22348         * XplatUI.cs: Get default window properties from the theme
22350 2004-08-09 11:01  jackson
22352         * ITheme.cs: The theme engine now controls default window
22353           properties
22355 2004-08-09 11:00  jackson
22357         * ThemeWin32Classic.cs: Add default window color properties
22359 2004-08-09 10:17  jackson
22361         * ThemeWin32Classic.cs: Use correct default back color
22363 2004-08-09 10:05  jackson
22365         * XplatUIWin32.cs, XplatUIX11.cs: These properties are handled by
22366           the theme now.
22368 2004-08-09 09:56  jackson
22370         * XplatUI.cs: Remove defaults, these are handled by the theme now.
22372 2004-08-09 09:54  jackson
22374         * Control.cs: Get default properties from the theme.
22376 2004-08-09 09:53  jackson
22378         * ITheme.cs: Themes now handle default control properties
22380 2004-08-09 09:53  jackson
22382         * ThemeWin32Classic.cs: Themes now handle default control
22383           properties so coloring will be consistent
22385 2004-08-08 16:54  jordi
22387         * ITheme.cs, ThemeWin32Classic.cs: Label BorderStyles
22389 2004-08-08 15:08  jordi
22391         * XplatUIX11.cs: fixes keyboard crash
22393 2004-08-08 13:47  jordi
22395         * Label.cs: add cvs header info
22397 2004-08-08 12:09  jackson
22399         * ThemeWin32Classic.cs: Add pen_buttonface
22401 2004-08-08 11:52  jordi
22403         * Label.cs, LinkLabel.cs: [no log message]
22405 2004-08-08 11:34  jordi
22407         * ThemeWin32Classic.cs: Use Windows Standard Colours
22409 2004-08-07 17:32  jordi
22411         * TrackBar.cs: throw exceptions of invalid enums values
22413 2004-08-07 17:31  jordi
22415         * Label.cs, LinkLabel.cs, ThemeWin32Classic.cs: fixes label bug and
22416           draw method name
22418 2004-08-07 16:56  jackson
22420         * HorizontalAlignment.cs: Initial checkin
22422 2004-08-07 13:16  jordi
22424         * Label.cs, LinkLabel.cs: throw exceptions, fixes events, missing
22425           methods
22427 2004-08-07 13:05  jordi
22429         * ITheme.cs, ThemeWin32Classic.cs: Theme colour support and
22430           GetSysColor defines
22432 2004-08-06 18:01  pbartok
22434         * ThemeWin32Classic.cs:
22435           - Fixed some rounding issues with float/int
22437 2004-08-06 18:00  jackson
22439         * DockStyle.cs, AnchorStyles.cs:
22441                   Add flags and serializable attributes.
22443 2004-08-06 17:46  pbartok
22445         * XplatUIX11.cs:
22446           - Implemented GetParent
22448 2004-08-06 17:18  pbartok
22450         * TrackBar.cs:
22451           - Fixed some rounding issues with float/int
22453 2004-08-06 17:17  pbartok
22455         * X11Structs.cs, XplatUIX11.cs:
22456           - Fixed Refresh and Invalidate
22458 2004-08-06 15:30  pbartok
22460         * Control.cs, X11Structs.cs, XplatUIX11.cs:
22461           - Fixed recursive loop when resizing
22462           - Improved/fixed redrawing on expose messages
22464 2004-08-06 09:53  jordi
22466         * Control.cs, X11Structs.cs, XplatUIWin32.cs, XplatUIX11.cs: X11
22467           keyboard navigation
22469 2004-08-06 08:02  pbartok
22471         * X11Structs.cs, XplatUIX11.cs:
22472           - Fixed reparenting
22473           - Fixed window border creation
22475 2004-08-05 15:38  pbartok
22477         * XplatUIX11.cs:
22478           - Attempted fix for reparenting problems
22480 2004-08-04 15:14  pbartok
22482         * Control.cs:
22483           - Fixed Invalidation bug (calculated wrong client area)
22484           - Added ClientSize setter
22486 2004-08-04 15:13  pbartok
22488         * Form.cs:
22489           - Added AutoScale properties
22491 2004-08-04 15:13  pbartok
22493         * SWF.csproj:
22494           - Added latest files
22496 2004-08-04 14:11  pbartok
22498         * Control.cs, XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs,
22499           XplatUIX11.cs:
22500           - Added Invalidate handling
22502 2004-08-03 17:09  jordi
22504         * XplatUIDriver.cs: fixes spelling mistake
22506 2004-07-27 09:53  jordi
22508         * TrackBar.cs: fixes trackbar events, def classname, methods
22509           signature
22511 2004-07-27 09:29  jordi
22513         * ScrollBar.cs: fixes scrollbar events
22515 2004-07-27 04:38  jordi
22517         * Control.cs: changes to be able to run winforms samples
22519 2004-07-26 11:42  jordi
22521         * ControlPaint.cs, ITheme.cs, ProgressBar.cs, ScrollBar.cs,
22522           ThemeEngine.cs, ThemeWin32Classic.cs, TrackBar.cs: Theme support
22524 2004-07-26 05:41  jordi
22526         * MessageBox.cs, MessageBoxButtons.cs, MessageBoxDefaultButton.cs,
22527           MessageBoxIcon.cs, MessageBoxOptions.cs: initial messagebox
22528           implementation
22530 2004-07-22 09:22  jordi
22532         * LinkLabel.cs, LinkLabelLinkClickedEventHandler.cs: link label:
22533           check link overlapping, implement events, and fixes
22535 2004-07-21 10:28  jordi
22537         * DialogResult.cs, IButtonControl.cs: fixes comments filenames
22539 2004-07-21 10:19  jordi
22541         * DialogResult.cs, IButtonControl.cs, Label.cs, LinkArea.cs,
22542           LinkBehavior.cs, LinkClickedEventArgs.cs, LinkLabel.cs,
22543           LinkLabelLinkClickedEventArgs.cs,
22544           LinkLabelLinkClickedEventHandler.cs, LinkState.cs,
22545           XplatUIWin32.cs, LinkClickedEventHandler.cs: LinkLabel control
22546           implementation
22548 2004-07-19 13:09  jordi
22550         * Control.cs, Label.cs: label control re-written: added missing
22551           functionlity, events, and properties
22553 2004-07-19 10:49  jordi
22555         * Control.cs: fixes SetBounds logic
22557 2004-07-19 01:29  jordi
22559         * Control.cs: Call RefreshWindow only if the window has created
22561 2004-07-15 14:05  pbartok
22563         * ColorDepth.cs, ImageList.cs, ImageListStreamer.cs, SWF.csproj:
22564           - Implemented ImageList and ImageList.ImageCollection classes
22565           - Added ColorDepth enumeration
22566           - Updated SWF VS.Net project
22568 2004-07-15 11:06  jordi
22570         * XplatUIStructs.cs: added MsgButons enum
22572 2004-07-15 11:03  jordi
22574         * Control.cs: added basic mouse handeling events
22576 2004-07-15 03:38  jordi
22578         * Orientation.cs, TickStyle.cs, TrackBar.cs: Horizontal and
22579           Vertical TrackBar control implementation
22581 2004-07-13 09:33  jordi
22583         * HScrollBar.cs, VScrollBar.cs: vertical and hort. classes commit
22585 2004-07-13 09:31  jordi
22587         * Control.cs, Form.cs: commit: new properties and fixes form size
22588           problems
22590 2004-07-09 14:13  miguel
22592         * ProgressBar.cs: Spelling
22594 2004-07-09 11:25  pbartok
22596         * ProgressBar.cs:
22597           - Removed usage of Rectangle for drawing. Miguel pointed out it's
22598           faster
22600 2004-07-09 11:17  miguel
22602         * ProgressBar.cs: 2004-07-09  Miguel de Icaza  <miguel@ximian.com>
22604                 * ProgressBar.cs: Fixed spelling for `block'
22606                 drawProgressBar: renamed to `DrawProgressBar' to follow the coding
22607                 style guidelines.
22609                 Avoid using the += on rect.X, that exposed a bug in the compiler.
22611 2004-07-08 23:21  pbartok
22613         * AccessibleObject.cs, AccessibleRole.cs, AccessibleStates.cs,
22614           AnchorStyles.cs, Application.cs, ApplicationContext.cs,
22615           BaseCollection.cs, Binding.cs, BindingContext.cs,
22616           BindingMemberInfo.cs, BindingsCollection.cs,
22617           BindingsManagerBase.cs, Border3DSide.cs, Border3DStyle.cs,
22618           BorderStyle.cs, BoundsSpecified.cs, ButtonBorderStyle.cs,
22619           ButtonState.cs, CaptionButton.cs, CheckBox.cs,
22620           ContainerControl.cs, Control.cs, ControlEventArgs.cs,
22621           ControlEventHandler.cs, ControlPaint.cs, ControlStyles.cs,
22622           ConvertEventArgs.cs, ConvertEventHandler.cs, Copyright,
22623           CreateParams.cs, DockStyle.cs, DragAction.cs, DragDropEffects.cs,
22624           DragEventArgs.cs, DragEventHandler.cs, FlatStyle.cs, Form.cs,
22625           FrameStyle.cs, GiveFeedbackEventArgs.cs,
22626           GiveFeedbackEventHandler.cs, HelpEventArgs.cs,
22627           HelpEventHandler.cs, IContainerControl.cs, IDataObject.cs,
22628           IMessageFilter.cs, IWin32Window.cs, ImeMode.cs, InputLanguage.cs,
22629           InputLanguageChangedEventArgs.cs,
22630           InputLanguageChangedEventHandler.cs,
22631           InputLanguageChangingEventArgs.cs,
22632           InputLanguageChangingEventHandler.cs, InputLanguageCollection.cs,
22633           InvalidateEventArgs.cs, InvalidateEventHandler.cs,
22634           KeyEventArgs.cs, KeyEventHandler.cs, KeyPressEventArgs.cs,
22635           KeyPressEventHandler.cs, Keys.cs, Label.cs, LayoutEventArgs.cs,
22636           LayoutEventHandler.cs, MenuGlyph.cs, Message.cs, MouseButtons.cs,
22637           MouseEventArgs.cs, MouseEventHandler.cs, NativeWindow.cs,
22638           PaintEventArgs.cs, PaintEventHandler.cs, ProgressBar.cs,
22639           QueryAccessibilityHelpEventArgs.cs,
22640           QueryAccessibilityHelpEventHandler.cs,
22641           QueryContinueDragEventArgs.cs, QueryContinueDragEventHandler.cs,
22642           RightToLeft.cs, SWF.csproj, SWF.csproj.user, ScrollBar.cs,
22643           ScrollBars.cs, ScrollButton.cs, ScrollEventArgs.cs,
22644           ScrollEventHandler.cs, ScrollEventType.cs, ScrollableControl.cs,
22645           TODO, TODOAttribute.cs, UICues.cs, UICuesEventArgs.cs,
22646           UICuesEventHandler.cs, X11Structs.cs, XplatUI.cs,
22647           XplatUIDriver.cs, XplatUIStructs.cs, XplatUIWin32.cs,
22648           XplatUIX11.cs, lang.cs:
22649           - Initial check-in