* ToolTip.cs: use Visible instead of is_visible.
[mono-project.git] / mcs / class / Managed.Windows.Forms / System.Windows.Forms / ChangeLog
blob9ffe1cd7f32ebf2be2154f50e9041d29d576d98e
1 2006-12-06  Chris Toshok  <toshok@ximian.com>
3         * ToolTip.cs: use Visible instead of is_visible.
5         * TreeView.cs: same.
7         * ListBox.cs: same.
9         * ListView.cs: same.
11 2006-12-06  Chris Toshok  <toshok@ximian.com>
13         * ListView.cs: the BackgroundImage override is just to set
14         attributes.  chain up to base.BackgroundImage.
16         * RichTextBox.cs: same.
18         * ToolBar.cs: same, but we need to also redraw the toolbar when it
19         changes, so instead a handler for BackgroundImageChanged.
20         
21         * Control.cs: make background_image private.
23 2006-12-06  Chris Toshok  <toshok@ximian.com>
25         * ScrollBar.cs: change the assignment of cursor to Cursor.  not
26         sure we even need this assignment, but roll with it for now.
28         * Control.cs: make the cursor field private.
30 2006-12-06  Chris Toshok  <toshok@ximian.com>
32         * Form.cs: we don't need to explicitly set ImeMode to
33         ImeMode.NoControl - that's a natural fallout of Control.ImeMode's
34         behavior in the face of ImeMode.Inherit.
36         * ButtonBase.cs: change DefaultImeMode to ImeMode.Disable, and
37         change the ctor's assignment to use ImeMode instead of ime_mode.
39         * Control.cs (get_ImeMode): don't assume DefaultImeMode ==
40         ImeModeInherit.  Only check for the parent's imemode (and return
41         NoControl if there is no parent) if ime_Mode == ImeMode.Inherit.
42         This fixes the button unit test, which sets both ImeMode and
43         DefaultImeMode to ImeMode.Disable.
45         also make the ime_mode field private.
47 2006-12-06  Chris Toshok  <toshok@ximian.com>
49         * Control.cs: make control_style private.
51         * TextBoxBase.cs: fix the HandleClick override.  it was explicitly
52         setting the styles to true, then setting them to false instead of
53         reverting to their previous values.
55         also, call SetStyle on the scrollbars instead of using
56         control_style directly.
58 2006-12-06  Jonathan Pobst  <monkey@jpobst.com>
60         * FormCollection.cs: Implement. [2.0]
62 2006-12-06  Chris Toshok  <toshok@ximian.com>
64         * Control.cs: make tab_stop private.
66         * Label.cs: set TabStop, not tab_stop.  reformat some event
67         add/remove methods to make them more compact.
69 2006-12-06  Chris Toshok  <toshok@ximian.com>
71         * RadioButton.cs: fix TabStop handling.
73 2006-12-06  Chris Toshok  <toshok@ximian.com>
75         * TextBox.cs: remove the explicit assignments to has_focus.
76         Control does that.
78         * ButtonBase.cs: remove the assignment to has_focus.  Control will
79         manage that.
80         
81 2006-12-06  Chris Toshok  <toshok@ximian.com>
83         * ButtonBase.cs: remove all uses of is_enabled from this code.
84         it's always true when any of the code containing the checks is
85         executed.
87 2006-12-06  Chris Toshok  <toshok@ximian.com>
89         * ImageList.cs: reinstate the ShouldSerialize*/Reset* methods,
90         with different semantics (some are present in both 1.1 and 2.0
91         profiles) so that we match MS's behavior in our unit tests.
93 2006-12-06  Jackson Harper  <jackson@ximian.com>
95         * TextControl.cs: Make this operation undoable.
96         * TextBoxBase.cs: Factor the border width into the preferred
97         height.
98         - implement Modified as per the spec.
100 2006-12-06  Chris Toshok  <toshok@ximian.com>
102         * Timer.cs, Control.cs, Menu.cs: make control_tag private.
104 2006-12-06  Chris Toshok  <toshok@ximian.com>
106         * Control.cs: make right_to_left and context_menu fields private.
108 2006-12-06  Chris Toshok  <toshok@ximian.com>
110         * AccessibleObject.cs, Control.cs, XplatUIX11GTK.cs,
111         XplatUIX11.cs, Form.cs, RadioButton.cs, ScrollableControl.cs: make
112         Control.child_controls private.  switch all uses over to
113         Control.Controls.
115 2006-12-06  Chris Toshok  <toshok@ximian.com>
117         * System.Windows.Forms/GroupBox.cs,
118         System.Windows.Forms/AccessibleObject.cs,
119         System.Windows.Forms/ErrorProvider.cs,
120         System.Windows.Forms/Control.cs,
121         System.Windows.Forms/UpDownBase.cs,
122         System.Windows.Forms/ScrollBar.cs,
123         System.Windows.Forms/DateTimePicker.cs,
124         System.Windows.Forms/Form.cs, System.Windows.Forms/Label.cs,
125         System.Windows.Forms/ToolTip.cs,
126         System.Windows.Forms/RadioButton.cs,
127         System.Windows.Forms/LinkLabel.cs,
128         System.Windows.Forms/Splitter.cs,
129         System.Windows.Forms/TextBoxBase.cs,
130         System.Windows.Forms/ToolStripTextBox.cs,
131         System.Windows.Forms/ContainerControl.cs,
132         System.Windows.Forms/ThemeWin32Classic.cs,
133         System.Windows.Forms/SizeGrip.cs,
134         System.Windows.Forms/ToolStripDropDown.cs,
135         System.Windows.Forms/ScrollableControl.cs: Make Control.parent
136         private.  switch all uses over to Control.Parent.
138 2006-12-06  Chris Toshok  <toshok@ximian.com>
140         * RichTextBox.cs: don't assign to has_focus in GotFocus/LostFocus.
141         Control does this before calling emitting these events.
143         * TabControl.cs: same.
145         * ThemeWin32Classic.cs: use Control.ClientRectangle instead of
146         Control.client_rect.
148         * ButtonBase.cs: use the ClientSize property instead of the
149         client_size field.
151         * ScrollableControl.cs: same.
153         * Control.cs: another pass at making properties private.  also,
154         move the initialization of tab_stop to the ctor.
156 2006-12-05  Andreia Gaita <avidigal@novell.com>
158         * TabControl.cs: Let the selected index be set freely if the 
159         control handle is not yet created.
161 2006-12-05  Jonathan Pobst  <monkey@jpobst.com>
163         * Control.cs: Revert dist_top, dist_right, and dist_bottom to 
164         internal until I can rewrite DefaultLayout.
165         * ToolStrip.cs: Fix build error and some general cleaning.
166         * ToolStripControlHost.cs, SplitterPanel.cs, DataGridView.cs:
167         Fix build errors caused by making some of Control's fields private.
169 2006-12-05  Jackson Harper  <jackson@ximian.com>
171         * TextControl.cs: Redo Insert a little so that it use IndexOf
172         instead of Split, this prevents it from messing up on things like
173         \n\n\n. Also more effecient since the split array doesn't need to
174         be created.
175         * TextBoxBase.cs: AppendText doesnt handle multiline and non
176         multiline text differently, this is the first of many fixes that
177         will make multiline/non-multiline the same thing as far as the
178         TextBoxBase is concerned.
179         - Don't split the text and insert lines, this can lose some line
180         endings (like is the last line a soft or hard break). Instead use
181         the new Insert.
182         - Fix an off by one when combining all the lines in the Text
183         getter.
184         - Remove separate multiline handling from the Text getter/setter.
186 2006-12-05  Chris Toshok  <toshok@ximian.com>
188         * ButtonBase.cs: a few changes:
190         - don't reinitialize internal Control fields in the ctor when they
191         have the same values as Control sets them.
193         - don't set has_focus in OnGotFocus/OnLostFocus.  Control does
194         this before calling those methods.
196         - we don't need to call Refresh for anything.  use Invalidate
197         instead.
199         - OnEnabledChanged doesn't need to redraw at all - Control.cs
200         calls Refresh in its OnEnabledChanged.
201         
202         - several of the events we were registered for in the ctor to
203         redraw ourselves already include calls to Invalidate in the
204         property setters that raise the events.  remove the extra
205         invalidation.
207         - reformat a switch statement that was 83274658 columns wide.
208         
209 2006-12-05  Mike Kestner  <mkestner@novell.com>
211         * ComboBox.cs: fix a unit test regression from a TextBox
212         SelectionLength return of -1 when there's no selection.  
214 2006-12-05  Chris Toshok  <toshok@ximian.com>
216         * Control.cs, Button.cs, ThemeGtk.cs, Form.cs, ListView.cs,
217         ThemeWin32Classic.cs, SizeGrip.cs, ToolBar.cs: first pass at
218         cleaning up some of the internal Control fields being used by
219         subclasses.
221 2006-12-05  Mike Kestner  <mkestner@novell.com>
223         * ComboBox.cs: fix some Simple mode regressions.  Set Visible on the
224         listbox after AddImplicit calls since it defaults to hidden. Add a 
225         hack to preserve requested heights across DropDownStyle changes.
227 2006-12-05  Jonathan Pobst  <monkey@jpobst.com>
229         * PropertyGrid.cs: Hide FindFirstItem method from public API.
231 2006-12-05  Chris Toshok  <toshok@ximian.com>
233         * DataGridView.cs: fix compiler warnings.
235         * PrintControllerWithStatusDialog.cs: same.
237         * ToolBar.cs: same.
239         * FolderBrowserDialog.cs: same.
241         * Splitter.cs: same.
243         * DataGridViewComboBoxCell.cs: same.
245         * XplatUIWin32.cs: same.
247         * PictureBox.cs: same.
249         * Win32DnD.cs: same.
251         * PageSetupDialog.cs: same.
253         * FileDialog.cs: same.
255         * PrintDialog.cs: same.
257         * DataGridTextBoxColumn.cs: same.
259         * DrawTreeNodeEventArgs.cs: same (and fix corcompare)
261 2006-12-05  Chris Toshok  <toshok@ximian.com>
263         * TextBox.cs, CheckedListBox.cs, MonthCalendar.cs, Menu.cs,
264         MainMenu.cs, ListView.cs, LabelEditTextBox.cs, ToolBar.cs: more
265         System.ComponentModel.EventHandlerList work.
267 2006-12-05  Jonathan Chambers  <joncham@gmail.com>
269         * DrawTreeNodeEventArgs.cs: Added.
271 2006-12-05  Rolf Bjarne Kvinge  <RKvinge@novell.com>
272         
273         * InternalWindowManager.cs: Remove an unused field.
274         
275 2006-12-05  Rolf Bjarne Kvinge  <RKvinge@novell.com>
277         * InternalWindowManager.cs:
278         - Save the point where the title bar is clicked.
279         
280         * MdiWindowManager.cs:
281         - Only allow moving of the window as long as the 
282         clicked point on the title bar does not get out of
283         MdiClient's rectangle. Fixes #79982.
284         
285         * MdiClient.cs:
286         - Added Horizontal/VerticalScrollbarVisible.
287         - Simplified the scrollbar sizing algorithm.
288         - Cache the difference in scrolled value in
289         H/VBarValueChanged and move the calculation out
290         of the for loop.
292 2006-12-05  Rolf Bjarne Kvinge  <RKvinge@novell.com>
294         * Control.cs: Make the Console.WriteLine in WndProc 
295         write more info.
297 2006-12-05  Chris Toshok  <toshok@ximian.com>
299         * ToolStripManager.cs, ToolStripButton.cs,
300         ToolStripContentPanel.cs, ToolStripComboBox.cs, ToolStrip.cs,
301         ToolStripMenuItem.cs, ToolStripItem.cs, ToolStripControlHost.cs,
302         ToolStripSplitButton.cs, ToolStripSeparator.cs,
303         ToolStripRenderer.cs, ToolStripDropDownItem.cs,
304         ToolStripProgressBar.cs, ToolStripContainer.cs,
305         ToolStripTextBox.cs, ToolStripPanel.cs, ToolStripDropDown.cs: move
306         to using System.ComponentModel.EventHandlerList.
308 2006-12-04  Chris Toshok  <toshok@ximian.com>
310         * LinkLabel.cs: fix up compiler warnings.
312         * TableLayoutSettings.cs: same.
314         * TreeView.cs: same.
316         * ToolBar.cs: same.
318         * TabControl.cs: same.
320         * RichTextBox.cs: same.
322         * ListViewItem.cs: same.
324         * PropertyGrid.cs: same.
326         * DataGridViewRowPostPaintEventArgs.cs: corcompare fix.
328         * ToolTip.cs same.
330         * TextRenderer.cs: fix up compiler warnings.
332         * Label.cs: same.
334         * Form.cs: corcompare fixes.
336         * PictureBox.cs: fix up compiler warnings.
338         * ImageListStreamer.cs: same.
340         * TrackBar.cs: corcompare fix.
342         * Control.cs: fix up compiler warnings.
344         * SplitterPanel.cs: same.
346         * NumericTextBox.cs: same.
348         * ImageList.cs: same.
350         * StatusStrip.cs: same.
352         * ProgressBar.cs: corcompare fix.
354         * ToolStripButton.cs: fix up compiler warnings.
356         * ToolStripStatusLabel.cs: same.
358         * ToolStripSplitButton.cs: same.
360         * ToolStripSeparator.cs: same.
362         * ToolStripProgressBar.cs: same.
364         * ToolStripDropDownMenu.cs: same
366         * ToolStripDropDown.cs: same.
368         * ToolStripDropDownButton.cs: same.
370         * ToolStrip.cs: same.
372         * ToolStripControlHost.cs: same.
374         * ToolStripContentPanel.cs: same.
376         * ToolStripDropDown.cs: same.
378         * ToolStripContainer.cs: same.
380         * ToolStripPanel.cs: same, and add "new" where we need it to work
381         with the new ArrangedElementCollection.
383         * ToolStripItemCollection.cs: add "new" where we need it to work
384         with the new ArrangedElementCollection.
386 2006-12-04  Andreia Gaita <avidigal@novell.com>
388         * TabControl.cs: Fix default tab selection to after TabControl
389         gets focus and not before. Fixes #80128
391 2006-12-04  Chris Toshok  <toshok@ximian.com>
393         * DataGridTableStyle.cs: remove the gross calling of
394         datagrid.Refresh from here.  It's a broken idea and it doesn't
395         work anyway.
397         * DataGrid.cs: instead, just register/unregister from the
398         DataGridTableStyle events in CurrentTableStyle.  we play it
399         conservatively and EndEdit + CalcAreasAndInvalidate on any event,
400         even though some would most likely not require it.  Fixes bug
401         #80115 (and one portion of #80117 as a side effect).
403 2006-12-04  Chris Toshok  <toshok@ximian.com>
405         * DataGrid.cs (set_CaptionVisible): EndEdit before doing the work
406         so the textbox (if any) goes away.  Fixes bug #80117.
408 2006-12-04  Chris Toshok  <toshok@ximian.com>
410         * DataGridColumnStyle.cs: set the column's readonly property
411         initially based on the property descriptor's IsReadOnly.  Fixes
412         bug #80044.
414 2006-12-04  Chris Toshok  <toshok@ximian.com>
416         * ComboBox.cs: wrap the dropdown style changing work in
417         SuspendLayout/ResumeLayout.  Fixes bug #79968.
419 2006-12-04  Jackson Harper  <jackson@ximian.com>
421         * TextBoxBase.cs: Fix off by one, since these are one-based.
422         * TextBox.cs: Select all the text when we get focus.  The TextBox
423         does this but the RTB does not.
425 2006-12-04  Chris Toshok  <toshok@ximian.com>
427         * DataGridTextBoxColumn.cs: remove some spew.
429         * DataGridColumnStyle.cs (SetColumnValueAtRow): this seems right
430         but some part of me is saying "it shouldn't be here.."  At any
431         rate, it fixes bug #80046.  Call IEditableObject.EndEdit after
432         setting the value.
434 2006-12-04  Chris Toshok  <toshok@ximian.com>
436         * DataGridColumnStyle.cs (SetDataGrid): call CheckValidDataSource
437         to reassign the propertydescriptor.
439 2006-12-04  Jackson Harper  <jackson@ximian.com>
441         * TextBoxBase.cs:
442         * TextControl.cs: Remove some unused variables.  Maybe this will
443         patch things up between mike and I.
444         - don't split lines less then one char wide, if the viewport is
445         that small text won't be visible anyways.
446         
447 2006-12-04  Jackson Harper  <jackson@ximian.com>
449         * TextBoxBase.cs: Default selection length is -1, need to do some
450         more testing on windows to see when this is used for the property.
451         - Redid the Lines [] property to that we properly remove soft line
452         breaks
453         - added support for preserving carriage returns
454         -  CanUndo is not a variable like 'is undo enabled' it just returns
455         true if there is undo operations available.
456         - AppendText doesn't need to grab the last tag itself anymore,
457         this happens automatically when we move the cursor.
458         * TextControl.cs: Add CompoundActions to the undo class. This
459         allows combining the other operations into one big option.  ie a
460         paste will combine { delete old, insert new, move cursor }
461         - Add InsertString undo operation
462         - New method for deleting multiline text
463         - Add carriage returns to lines. So we can preserve carriage
464         returns when text is 'roundtripped'
466 2006-12-04  Chris Toshok  <toshok@ximian.com>
468         * DataGrid.cs (CalcCellsArea): cells_area.Width/Height are at a
469         minimum 0.  Fixes the scrollbar exception in bug #80136.
471 2006-12-04  Rolf Bjarne Kvinge  <RKvinge@novell.com>
473         * MdiClient.cs: 
474         * MdiWindowManager: Removed unused fields and methods.
475         
476 2006-12-04  Rolf Bjarne Kvinge  <RKvinge@novell.com>
477         
478         * StatusBar.cs: Update all panels when a AutoSize=Contents
479         panel needs updating.
480         
481         * StatusBarPanel.cs: Remove twidth and only use initialize.
482         Fixes #80031.
483                 
484 2006-12-04  Rolf Bjarne Kvinge  <RKvinge@novell.com>
486         * Form.cs: When a form's MdiParent is set add it directly
487         on top of the z-order in stead of relying on MdiClient's
488         ActivateChild to do it. Fixes #80135.
489         
490         * MdiClient.cs: 
491         - Remove original_order, mdi_child_list is already doing
492         the same thing.
493         - Create mdi_child_list on construction in
494         stead of first use (avoids a few null checks).
496         * MenuItem.cs: Use an already existing list of mdi children
497         to get the correct order of children and remove the other
498         redundant list.
500 2006-12-04  Chris Toshok  <toshok@ximian.com>
502         * PropertyGridView.cs: cached_splitter_location is only used in
503         !DOUBLEBUFFER code.
505         * PropertyGrid.cs: implement the ComComponentNameChanged event
506         using Events, hoping that would fix the warning.  Looks like a
507         compiler bug instead (#80144).
509         * PropertyManager.cs: remove unused method.
511 2006-11-04  Everaldo Canuto  <everaldo@simios.org>
513         * ThemeWin32Classic.cs: Dont draw arrow when menuitem on menubar, 
514         include parentesis to fix expression evaluation. Fixes #79634.
516 2006-11-02  Everaldo Canuto  <everaldo@simios.org>
517         
518         * MenuAPI.cs:
519         - Changes to fix behavior in Menu control, some reported in #80097
520         and other detected during behavior refactory like a select event
521         problems.
522         - Remove unneded "if's" conditions.
523         - Created an internal to flag when popup is active in control, we need 
524         it because in .NET you can have menu active but without popup active
525         when you active menu using popup without visible items.
526         - Mimic win32 behavior for Select and Popup events.  
527         - Dont open popup menu when you dont have visible subitems.
528         - Do nothing when click on disabled menu item.
529         - Some small changes to follow the coding style guidelines.
530         - Unselect menu only when another control gives focus. Fixes #80097.
531         - Remove unused code.
532         
533         * MenuItem.cs: internal VisibleItems method to check if menu
534         theres visible subitems, it will be usefull to fix some 
535         behavior in Menu control.
536         
537 2006-11-01  Everaldo Canuto  <everaldo@simios.org>
538         
539         * Timer.cs: Tag property for 2.0 profile.
540         
541 2006-12-01  Chris Toshok  <toshok@ximian.com>
543         [ after removing all warning suppressions, this cleans up over 100 warnings. ]
544         
545         * Win32DnD.cs: comment out some unused fields.
547         * XplatUIWin32.cs: comment out some unused pinvokes, and remove
548         some unused properties/methods.
550         * XplatUIX11.cs: fix MousePosition so we override the base class's
551         property instead of conflicting with it.
553         * PictureBox.cs: comment out some unused fields
555         * OSXStructs.cs: make some struct fields public.
557         * XplatUIOSX.cs: comment out some unused pinvokes, and fix
558         MousePosition so we override the base class's property instead of
559         conflicting with it.
561         * X11Dnd.cs: comment out some unused fields
563         * X11DesktopColors.cs: fix some struct field visibility to quiet
564         the compiler.
566         * X11Dnd.cs: remove some debug code.
568         * ThemeClearlooks.cs: comment out unused field.
570         * ThemeNice.cs: mark some methods as overriding ThemeWin32Classic as needed.
572         * ThemeGtk.cs: comment out some unused pinvokes.
574         * Timer.cs: remove some unused fields.
576         * ThemeClearlooks.cs: comment out unused field.
578         * UpDownBase.cs: comment out unused field.
580         * DataObject.cs: comment out unused field.
582         * DataGridBoolColumn.cs: reomve unused field.
584         * DataGrid.cs: remove unused field.
586         * Cursor.cs: remove old ToBitmap code.
588         * ControlPaint.cs: remove unused method.
590         * ScrollBar.cs: remove unused fields.
592         * ComboBox.cs: remove unused field, and chain up to
593         AccessibleObject ctor.
595         * ListBox.cs: remove unused field.
597         * ButtonBase.cs: wrap a couple fields in NET_2_0.
599         * GridEntry.cs: remove unused fields.
601         * Binding.cs: remove unused fields.
603         * AxHost.cs: remove unused method.
605         * ContainerControl.cs: remove unused field.
607         * ScrollableControl.cs: remove unused fields.
609 2006-12-01  Chris Toshok  <toshok@ximian.com>
611         * XplatUI.cs, XplatUIWin32.cs, XplatUIGTK.cs: nuke
612         the Where/WhereString stuff.  it's easy enough to CWL
613         Environment.StackTrace.
615         * XplatUIX11.cs: same, but also fix up a lot of mcs warnings about
616         unused private fields.
618 2006-12-01  Jackson Harper  <jackson@ximian.com>
620         * TextControl.cs: Do not update the view while inserting multiline
621         text. If we update the view we might wrap lines, before entering
622         the new lines, which causes the new line insertion calculations to
623         be totally fubared.
624         - Remove an old TODO
625         - Make debug output a little nicer
626         
627 2006-12-01  Chris Toshok  <toshok@ximian.com>
629         * ToolBar.cs: revert the ImeMode fix here and add an XXX comment.
631 2006-12-01  Chris Toshok  <toshok@ximian.com>
633         [ fix the majority of the CS0108 warnings we've been suppressing ]
634         
635         * TreeView.cs: mark BackgroundImageChanged as 'new'.
637         * ToolBar.cs: ImeMode just passes stuff to Control.  Rename Layout
638         to "LayoutToolBar" to quiet mcs.
639         
640         * TabControl.cs: mark our ControlCollection class as 'new'.
642         * TextBoxBase.cs: mark some events as 'new'.
644         * Splitter.cs: TabStop is 'new'.
646         * ControlBindingsCollection.cs: mark a few methods as new since
647         they change the visibility from protected to public.
649         * RadioButton.cs: DoubleClick -> base class, and remove unused
650         HaveDoubleClick.
652         * MonthCalendar.cs: ImeMode property -> base class, and mark many
653         events as new.
655         * NumericUpDown.cs: TextChanged -> base class.
657         * CheckedListBox.cs: mark our ObjectCollection class as new to
658         quiet mcs.
660         * FolderBrowserDialog.cs: make HelpRequest event new and have it
661         muck with the base class.
663         * StatusBar.cs: fix some mcs warnings about Update being the same
664         name as a base class method.
666         * RichTextBox.cs: mark some events as new, and make them do things
667         to the base class impl.
669         * UserControl.cs: mark TextChanged as new, and have it manipulate
670         base.TextChanged.
672         * UpDownBase.cs: mark some things new.
674         * CheckBox.cs: mark DoubleClick "new", and add some text about
675         what we need to look at.
677         * Panel.cs: make the events "new", and manipulate the base
678         version.  these are just here for attributes.
680         * AccessibleObject.cs: make owner private.
682         * Control.cs: deal with AccessibleObject.owner being private.
683         cache our own copy if we need it.
685         * Button.cs: add "new" to the DoubleClickEvent.
687         * ListBox.cs: no need to track our own has_focus here.  let
688         Control.has_focus do it for us.  Also some other work to clear up
689         warnings about not overriding base class methods of the same name.
690         
691         * ComboBox.cs: clear up some warnings about not override base
692         class methods of the same name.
694 2006-12-01  Chris Toshok  <toshok@ximian.com>
696         * Form.cs: flag a few things as "new" to quiet some of the mcs
697         warnings.
699         * AxHost.cs: same.
701         * PrintPreviewDialog.cs: same.
703         * DataGridView.cs: fix a ton of corcompare warnings.  not all, but
704         now DGV isn't so horrible on the class status page.  also, move
705         all events to using System.ComponentModel.EventHandlerList.  my
706         wrists hurt.
708 2006-12-01  Rolf Bjarne Kvinge  <RKvinge@novell.com>
710         * MdiWindowManager.cs:
711         - Set form to active mdi child if shown,
712         and update the active mdi child to the next 
713         remaining child in the z-order if the form is hidden.
715         * Form.cs: 
716         - Track if the form has been visible and if its 
717         visibility is beeing changed, so that the MdiClient
718         can properly decide the ActiveMdiChild. The MdiClient 
719         cannot track this since the form can change visibility 
720         before MdiClient is created.
722         * MdiClient.cs:
723         - Don't activate anything of the parent form is changing
724         its visibility.
725         - Rework ActiveMdiChild to only return visible mdi 
726         children and take into account several other corner 
727         cases.
729 2006-12-01  Chris Toshok  <toshok@ximian.com>
731         * IBindableComponent.cs: new 2.0 interface.
733 2006-12-01  Gert Driesen  <drieseng@users.sourceforge.net>
735         * DataGrid.cs: Font for caption area is bold by default.
737 2006-12-01  Everaldo Canuto  <everaldo@simios.org>
739         * Menu.cs: Tag property for 2.0.
740         
741 2006-11-01  Everaldo Canuto  <everaldo@simios.org>
743         * ThemeWin32Classic.cs: Adjust menu separator drawing. 
744         
745 2006-12-01  Chris Toshok  <toshok@ximian.com>
747         * TreeView.cs: doh, the Begin* events should be
748         TreeViewCancelEventHandler.
750 2006-12-01  Chris Toshok  <toshok@ximian.com>
752         * Form.cs: Form.ControlCollection already stores off the
753         form_owner field.  don't access the base class's internal "owner"
754         field.
756         * Control.cs: make all the fields in Control.ControlCollection
757         private.  there's no need for any internal fields here.
759 2006-12-01  Chris Toshok  <toshok@ximian.com>
761         * DataGrid.cs: call SetDataSource instead of CalcGridAreas in
762         OnHandleCreated.  Fixes bug #80109.
764 2006-12-01  Chris Toshok  <toshok@ximian.com>
766         * Button.cs, PropertyGridTextBox.cs, ComboBox.cs,
767         SplitContainer.cs, Control.cs, StatusStrip.cs,
768         DataGridTableStyle.cs, MenuItem.cs, DomainUpDown.cs, ImageList.cs,
769         NumericTextBox.cs, NumericUpDown.cs, Panel.cs, CommonDialog.cs,
770         DataGrid.cs, ScrollBar.cs, TrackBar.cs, PictureBox.cs,
771         DateTimePicker.cs, StatusBar.cs, Form.cs, PrintPreviewDialog.cs,
772         Label.cs, UserControl.cs, CheckBox.cs, RadioButton.cs,
773         LinkLabel.cs, ListControl.cs, PropertyGrid.cs, Splitter.cs,
774         MenuStrip.cs, FolderBrowserDialog.cs, NotifyIcon.cs,
775         TextBoxBase.cs, ListView.cs, DataGridBoolColumn.cs,
776         PrintPreviewControl.cs, RichTextBox.cs, ListBox.cs, TabControl.cs,
777         DataGridColumnStyle.cs, ContextMenu.cs, TreeView.cs:
779         do most of the work to convert our code over to use
780         System.ComponentModel.Component.Events for
781         adding/removing/dispatching events.
784 2006-11-30  Jonathan Pobst  <monkey@jpobst.com>
786         * DataGridView.cs: Fix an ArgumentNullException reported 
787         twice today in IRC.
789 2006-11-30  Mike Kestner  <mkestner@novell.com>
791         * ComboBox.cs: fix the scrollbar mouse event forwarding in the 
792         grabbed listbox.  Fixes #80036 and #80101.
794 2006-11-30  Rolf Bjarne Kvinge <RKvinge@novell.com>
796         * Message.cs: Changed ToString() to match MS.
797         
798 2006-11-30  Jackson Harper  <jackson@ximian.com>
800         * TextBoxBase.cs: You can still change the selected text on a read
801         only textbox.
802         * TextControl.cs: Lower magic number for wrap calculations. This
803         lets text get closer to the right (far) edge.
805 2006-11-30  Jonathan Pobst  <monkey@jpobst.com>
807         * Control.cs: Tweak 2.0 layout properties.
808         * Form.cs: Switch ToolStripMenuTracker hooks to ToolStripManager.
809         * TextRenderer.cs: Add a new overload.
810         * ToolStrip*: Huge amount of changes and new features.
812 2006-11-30  Mike Kestner  <mkestner@novell.com>
814         * ComboBox.cs: fixes for LargeChange and Maximum to get the 
815         scroll range correct.  Fixes #79994.
817 2006-11-30  Rolf Bjarne Kvinge <RKvinge@novell.com>
819         * MdiWindowManager.cs: Update main form's text when
820         a form is closed. (fixes #80038)
821         
822 2006-11-30  Everaldo Canuto  <everaldo@simios.org>
824         * ToolBar.cs:
825         - Fix an regression in ButtonSize.
826         - Get ImeMode default value change to "Disable".
827         - Get ShowTooltips default value change to true, default value is 
828         "false" but after make a test in .NET we get "true" result as default.
829         
830 2006-11-29  Jonathan Pobst  <monkey@jpobst.com>
832         * ToolStripDropDown.cs: Fix for SupportsTransparency change.
834 2006-11-29  Chris Toshok  <toshok@ximian.com>
836         * XplatUIWin32.cs (GetWindowTransparency): check return value of
837         GetLayeredWindowAttributes.  if it's 0, return 1.0, as
838         SetWindowTransparency hasn't been called.
840 2006-11-29  Chris Toshok  <toshok@ximian.com>
842         * Form.cs (set_TransparencyKey): only call SetWindowTransparency
843         if it's supported.
844         (set_AllowTransparency): reorder things a little so that the
845         WS_EX_LAYERED style is removed properly.
847 2006-11-29  Chris Toshok  <toshok@ximian.com>
849         [ totally cosmetic eye-candy feature, fixes bug #80089 ]
850         
851         * Form.cs: only call the XplatUI transparency method (get/set) if
852         SupportsTransparency says it's supported. Otherwise fallback to
853         doing nothing (in the set case) or returning the instance field we
854         cache (in the get case).
856         * XplatUIStructs.cs: add TransparencySupport flag enum.
857         
858         * XplatUIDriver.cs: add abstract GetWindowTransparency, and track
859         change to SupportsTransparency.
861         * XplatUIOSX.cs: stub out GetWindowTransparency, and return
862         TransparencySupport.None from SupportsTransparency.
864         * XplatUIX11.cs: Stub out GetWindowTransparency, and return
865         TransparencySupport.Set from SupportsTransparency.
867         * XplatUIWin32.cs: implement GetWindowTransparency calling
868         GetLayeredWindowAttributes, and implement SupportsTransparency by
869         checking whether or not both
870         GetWindowTransparency/SetWindowTransparency are available
871         entrypoints.  We need to do this since SetWindowTransparency is
872         available as of win2k, but GetWindowTransparency requires winxp.
873         yay win32 api.
875         * XplatUI.cs: Add GetWindowTransparency, and change
876         SupportsTransparency to allow for either/both Get/Set.
878 2006-11-29  Chris Toshok  <toshok@ximian.com>
880         * DataGrid.cs: keep from going into an infinite loop redrawing a
881         datagrid that has no datasource.  Fixes bug #80033.
883 2006-11-29  Chris Toshok  <toshok@ximian.com>
885         * MenuItem.cs: fix the NRE when we assign text (and therefore call
886         Invalidate) before the mainmenu has been assigned to a control.
888 2006-11-29  Chris Toshok  <toshok@ximian.com>
890         * DataGrid.cs: detect when we should be double the double click
891         row/column autosize stuff, although that codepath has yet to be
892         written.  part of the work for bug #79891.
894 2006-11-29  Chris Toshok  <toshok@ximian.com>
896         * Binding.cs (SetControl): fix unit test.
898 2006-11-29  Carlos Alberto Cortez <calberto.cortez@gmail.com>
900         * PageSetupDialog.cs: Validate the margins and set them in
901         PageSettings. 
902         * NumericTextBox.cs: New class to mimic the behavior of the
903         textboxes used in the printing dialogs.
905 2006-11-29  Andreia Gaita  <avidigal@novell.com>
906         
907         * Form.cs: Revert previous change (remove call UpdateBounds
908         from form constructor), because it messes with the handle creation
909         order, and that one needs lots and lots of love.
910         * PrintPreviewDialog.cs: Revert change to CreateHandle (add check
911         for valid printer and throw InvalidPrinterException if document
912         is set but printer not valid), adding a MonoTODO. Once 
913         handle creation is done properly, we can put this back in.
915 2006-11-28  Everaldo Canuto  <everaldo@simios.org>
917         * MenuItem.cs: Create a invalidate method for menu item, to be
918         calling from set text, it make text changes to imadiate update
919         on screen. Fixes #80013. 
920         
921 2006-11-28  Everaldo Canuto  <everaldo@simios.org>
923         * ToolBar.cs: Fixes and simplify toolbar button layout, it 
924         fixes bug #80070 and some other problem on toolbar buttons
925         layout.
927 2006-11-28  Everaldo Canuto  <everaldo@simios.org>
929         * ThemeWin32Classic.cs: Paint toolbar toggle button background 
930         with dotted brush.      Fixes #79564
931         
932 2006-11-28  Andreia Gaita  <avidigal@novell.com>
934         * Form.cs: Removed call to UpdateBounds on Form
935         constructor, it was causing a call to CreateHandle
936         before it was supposed to.
937         * PrintControllerWithStatusDialog: Applied patch
938         by Chris Toshok to hide controller when there are
939         no printers available.
940         PrintDialog.cs: initialize printer settings to 
941         null - correct DefaultValues test #5
942         * PrintPreviewControl.cs: Move PrintController
943         initialization to GeneratePreview
944         * PrintPreviewDialog.cs: 
945         - Remove Preview generation     from Document_set(). It is 
946         called on OnPaint
947         - Throw InvalidPrinterException on CreateHandle if
948         a Document is set but there are no printers or 
949         printer is not valid.
950         * ThemeWin32Classic: don't paint PrintPreviewControl
951         if there is nothing to paint    
953 2006-11-28  Miguel de Icaza  <miguel@novell.com>
955         * Form.cs: Add another popular method.
957         * TabPage.cs: ditto.
959 2006-11-28  Rolf Bjarne Kvinge  <RKvinge@novell.com>
961         * MenuItem.cs: Fixed a warning.
962         * InternalWindowManager: Fixed a warning.
964 2006-11-28  Rolf Bjarne Kvinge  <RKvinge@novell.com>
966         * MenuItem.cs:
967         - When cloning a menu also clone MdiList and clone the 
968           window menu items properly (as the forms and menuitems
969           are kept in an internal hashtable, these need updating 
970           as well)
971         - Rewrote the window menu code, menu items are added in the
972           order the forms were added to their parent, and they are
973           updated every time the window menu is shown (before the
974           list was only generated once, in the current order of the
975           forms, and would never be updated). A checkmark is shown
976           next to the item corresponding to the active mdi child.
978 2006-11-28  Rolf Bjarne Kvinge  <RKvinge@novell.com>
980         * XplatUIStructs.cs: 
981         - Added WM_NCMOUSEHOVER and WM_NCMOUSELEAVE.
982         
983         * XplatUIWin32.cs: 
984         - Added TME_NONCLIENT to TMEFlags.
985         - Handles WM_NCMOUSEMOVE in GetMessage to 
986           generate WM_NCMOUSEHOVER and WM_NCMOUSELEAVE messages.
988         * MdiWindowManager:
989         - Now merges mdi child menu to parent menu when maximized.
990         - Recalculate NC areas of both mdi child and mdi parent. 
991           Fixes #79757 (4).
992           on window state and size changes.Fixes #79844 (3).
993         - Handle WM_NCCALCSIZE to properly calculate borders.
995         * Form.cs:
996         - Add/remove to the mdi containers list of mdi children 
997           in the order they are added.
998         - Pass on WM_NCLBUTTONUP, WM_NCMOUSEMOVE and WM_NCMOUSELEAVE 
999           to the maximized mdi child.
1000         
1001         * InternalWindowManager.cs:
1002         - Only execute a click on the control buttons on the mouse up,
1003           not on the mouse down. Show the state of the button 
1004           (was only showing Normal state, never Pressed state). The
1005           pressed button now follows the mouse (if you click the Close 
1006           button and move the mouse over the Maximize button, the 
1007           Maximize button will be shown as pressed). Since Win32 does
1008           not generate WM_NCLBUTTONUP if you release the button outside
1009           of the nc area, we need to handle WM_NCMOUSELEAVE and treat
1010           it as a mouse up.
1011         
1012         * ThemeWin32Classic.cs:
1013         - Draw a missing border around mdi child forms. Fixes #79844 (2).
1015         * MdiClient.cs:
1016         - Added a list of forms which contains the order the forms are
1017           added to the mdi parent.
1018         - Handle WM_NCPAINT to properly draw a 3D border. Fixes #79844 (2).
1019         - Handle WM_NCCALCSIZE to properly calculate the 3D border.
1020         - If the active form changes set the scrollbars to the top
1021           of the Z order, otherwise the form could hide them.
1022         - Scrollbars are now sized according to ClientSize, not 
1023           to Size, and they take into account the other scrollbar
1024           to determine maximum.
1025         
1026 2006-11-28  Rolf Bjarne Kvinge <RKvinge@novell.com>
1027         
1028         * XplatUI.cs:
1029         * XplatUIDriver.cs:
1030         * XplatUIX11.cs:
1031         * XplatUIWin32.cs:
1032         * XplatUIOSX.cs:
1033         - Added RequestAdditionalWM_NCMessages for windows to 
1034           opt in for WM_NCMOUSELEAVE and WM_NCMOUSEHOVER.
1035           Currently only implemented in XplatUIWin32.
1037 2006-11-27  Chris Toshok  <toshok@ximian.com>
1039         * Hwnd.cs: only add the hwnd to the windows hash in
1040         set_WholeWindow and set_ClientWindow if whole_window/client_window
1041         are not IntPtr.Zero.  also, remove the unused SetObjectWindow.
1043 2006-11-27  Mike Kestner  <mkestner@novell.com>
1045         * ComboBox.cs: remove redundant OnDropDown call.  It is called
1046         from the ComboListBox.ShowWindow code. Fixes #79969.
1048 2006-11-27  Chris Toshok  <toshok@ximian.com>
1050         * Hwnd.cs: remove the setters for ExposePending and
1051         NCExposePending - noone uses them.
1053 2006-11-27  Jackson Harper  <jackson@ximian.com>
1055         * TextControl.cs: new param for ReplaceSelection which determines
1056         whether we select the new selection, or set the cursor to the end
1057         of the new selection.
1058         * TextBoxBase.cs: Use new param for ReplaceSelection.  When
1059         pasting, select the new text.
1060         * RichTextBox.cs: Use new param for ReplaceSelection.
1062 2006-11-27  Jackson Harper  <jackson@ximian.com>
1064         * TextBoxBase.cs: Set the selection to the caret after the caret
1065         is moved, otherwise they get out of sync.
1067 2006-11-26  Everaldo Canuto  <everaldo@simios.org>
1069         * ToolBar.cs: Fixe size of ToolBar when AutoSize is false,
1070         it fixes #80015
1072 2006-11-26  Everaldo Canuto  <everaldo@simios.org>
1074         * ThemeWin32Classic.cs: 
1075         - Fix toolbar drop down arrow position.
1076         - Fix drop down appearance when ToolBar.Appearance is normal,
1077         it fixes #80018.
1078         
1079 2006-11-26  Gert Driesen  <drieseng@users.sourceforge.net>
1081         * ProgressBar.cs: GetStyle fixes for 2.0 profile.
1082         * Control.cs: Same.
1083         * UpDownBase.cs: Same.
1084         * ButtonBase.cs: Same.
1085         * ScrollBar.cs: Same.
1086         * TrackBar.cs: Same.
1087         * PictureBox.cs: Same.
1088         * UserControl.cs: Same.
1089         * Label.cs: Same.
1090         * ListControl.cs: Same.
1091         * TextBoxBase.cs: Same.
1092         * ListView.cs: Same.
1093         * RichTextBox.cs: Same.
1094         * TreeView.cs: Same.
1096 2006-11-25  Jordi Mas i Hernandez <jordimash@gmail.com>
1098         * PrintDialog.cs:
1099         - Text label for where 
1100         - Text label comment was not shown
1102 2006-11-23  Everaldo Canuto  <everaldo@simios.org>
1104         * ThemeWin32Classic.cs: Fix toolbar drop down arrow size.
1106 2006-11-23  Rolf Bjarne Kvinge  <RKvinge@novell.com> 
1108         * InternalWindowManager.cs: 
1109         - Handle WM_PARENTNOTIFY to activate the form
1110         if any child control is clicked.
1111         - The form is only sizable if not minimized.
1113         * MdiWindowManager.cs:
1114         - Save the IconicBounds if the form is moved.
1115         - Rework SetWindowState, now the window bounds 
1116         are stored only if the old window state is Normal.
1117         
1118         * MdiClient.cs:
1119         - In SetWindowStates store the old window state if 
1120         the window is maximized and restore window state if
1121         the window looses focus.
1122         - Don't handle any scrollbar value changes if 
1123         initializing the scroll bars. Fixes #79771.
1124         - Reworked ArrangeIconicWindows. Current algorithm
1125         tests bounds agains all other minimized windows, if
1126         any intersections create new bounds (going left to 
1127         right, bottom to top) and then test again. When 
1128         successful the bounds are saved and never computed
1129         again. Fixes #79774.
1131 2006-11-23  Rolf Bjarne Kvinge  <RKvinge@novell.com> 
1133         * InternalWindowManager.cs: Added HandleTitleBarUp.
1135 2006-11-23  Gert Driesen  <drieseng@users.sourceforge.net>
1137         * NumericUpDown.cs: In .NET 1.1, user entered text is still
1138         hexadecimal in ParseUserEdit.
1140         
1141 2006-11-23  Rolf Bjarne Kvinge  <RKvinge@novell.com> 
1143         * MdiWindowManager.cs: 
1144         - Handle a click on the form's icon to show the 
1145         system menu (when maximized). Fixes #79775.
1146         - Change the existing click handler for the form's
1147         icon when not maximized to show on MouseUp.
1148         Fixes #79776.
1150         * Form.cs: In OnResize only layout the mdi child's
1151         parent if it actually has a parent. Might not if
1152         the window is closing.
1155 2006-11-23  Gert Driesen  <drieseng@users.sourceforge.net>
1157         * MdiClient.cs: Ignore active MDI client for text of parent, if
1158         child has no text set.
1160 2006-11-23  Gert Driesen  <drieseng@users.sourceforge.net>
1162         * ToolBar.cs: Fixed ToString to match MS.
1164 2006-11-22  Andreia Gaita  <avidigal@novell.com>
1166         * NumericUpDown: 
1167         - Fix DecimalPlaces, Hexadecimal and ThousandsSeparator to 
1168         update inner values on set. Fixes #79966.
1169         - Override OnLostFocus to update value on NET 2. Fixes #79950.
1170         - Fix hexadecimal parsing.
1171         
1172         * UpDownBase: Override OnGotFocus and OnLostFocus to notify 
1173         parent. Fixes #79957
1175 2006-11-22  Rolf Bjarne Kvinge  <RKvinge@novell.com>
1177         * Control.cs: After calling SetWindowsPos in SetBoundsCore 
1178         the actual size has to be queried, since if height /
1179         width is negative Win32 changes it to 0. 
1180         Fixes #79999 on Windows.
1181         
1182         * XplatUIX11.cs: Set height / width to 0 if negative
1183         in SetWindowPos. Fixes #79999 on Linux.
1184         
1185 2006-11-22  Everaldo Canuto  <everaldo@simios.org>
1187         * ThemeWin32Classic.cs: Fix text redenring when button is
1188         pressed.
1190 2006-11-22  Everaldo Canuto  <everaldo@simios.org>
1192         * MenuAPI.cs: Fixes behavior when menu is opened by kerboard
1193         and later navigate by mouse. Fixes #79528.
1195 2006-11-21  Everaldo Canuto  <everaldo@simios.org>
1197         * ToolBar.cs: Set default value for TabStop to false in
1198         constructor, it fixes remaining behavior of bug #79863.
1200 2006-11-21  Rolf Bjarne Kvinge  <RKvinge@novell.com>
1202         * MdiWindowManager.cs:
1203         * InternalWindowManager.cs:
1204         - Moved a few methods specific to Mdi from 
1205         InternalWindowManager to MdiWindowManager.
1206         Fixes #79996.
1207         
1208 2006-11-21  Chris Toshok  <toshok@ximian.com>
1210         * XplatUIOSX.cs: stub out InvalidateNC.
1212         * XplatUIWin32.cs: implement InvalidateNC using the call I found
1213         at http://www.dotnet247.com/247reference/msgs/58/292037.aspx.
1215         * XplatUIX11.cs: rename InvalidateWholeWindow to InvalidateNC.
1217         * XplatUIDriver.cs: add InvalidateNC abstract method.
1219         * XplatUI.cs: add InvalidateNC.
1221 2006-11-21  Everaldo Canuto  <everaldo@simios.org>
1223         * ToolBar.cs: Invalidate complete button area when pressed status 
1224         was changed.
1225         * ToolButton.cs: Fix InvalidateBorder for DropDown buttons.
1226         * ThemeWin32Classic.cs: Increase vertical and horizontal position 
1227         by 1 when button is pressed.
1229 2006-11-20  Everaldo Canuto  <everaldo@simios.org>
1231         * ToolButton.cs: Invalidate middle of DropDown button when
1232         ToolBar theres DropDownArrows.
1233         * ThemeWin32Classic.cs: Change position of DropDown arrow and
1234         fix DropDown drawing operations.
1236 2006-11-20  Chris Toshok  <toshok@ximian.com>
1238         * NativeWindow.cs: fix the formatting of functions ('{' on the
1239         following line), and enable the thread exception dialog.
1241         * Application.cs: remove the duplicate exception catching from
1242         here.
1244 2006-11-20  Everaldo Canuto  <everaldo@simios.org>
1246         * Toolbar.cs: Triggers button click event when click on icon
1247         of dropdown ToolBarButton. Fixes #79912.
1248         
1249 2006-11-20  Rolf Bjarne Kvinge  <RKvinge@novell.com>
1251         * Theme.cs:
1252         * ThemeWin32Classic.cs:
1253         - Added a property WindowBorderFont to enable themeing
1254           of mdi child windows' Text.
1255           
1256 2006-11-20  Rolf Bjarne Kvinge  <RKvinge@novell.com>
1258         * InternalWindowManager.cs:
1259         * Form.cs:
1260         * MdiClient.cs:
1261         * MdiWindowManager.cs: 
1262         - If mdi child is maximized, set mdi parent's
1263           text to "Parent - [Child]". Fixes #79770.
1264         - If there is any maximized mdi child windows, only the active 
1265           window (and any new windows) is maximized, the rest are normal.
1266         - On a WindowState change only save mdi child's window bounds 
1267           if the old window state was normal. Fixes #79774.
1268         - The scroll bars are now calculated on hopefully all
1269           necessary events. Fixed #79771 / #79844->6 / #79906.
1270         - MdiClient.SizeScrollBars() now takes into account docked 
1271           controls in the parent when calculating available space.
1272         - InternalWindowManager now always repaints the entire title
1273           area. Fixes #79844->1/4/5.
1274         - Added RequestNCRecalc on mdi child windowstate changes.
1275           Fixes #79772.
1277 2006-11-20  Mike Kestner  <mkestner@novell.com>
1279         * ComboBox.cs: setup LargeChange on the scrollbar. Invoke FireMouseUp
1280         in the MouseUp handler of the listbox and move the return handling
1281         code to FireMouseUp to avoid scrolling on ups.  Fixes #79952.
1283 2006-11-20  Everaldo Canuto  <everaldo@simios.org>
1285         * Toolbar.cs: Ignore right mouse clicks in toolbar. Fixes #79855. 
1287 2006-11-17  Alexander Olk  <alex.olk@googlemail.com>
1289         * MimeIcon.cs: Seems that DllImports that were fine in 1.2 are not
1290           working in 1.2.x anymore. So, updated.
1292 2006-11-19  Gert Driesen  <drieseng@users.sourceforge.net>
1294         * NumericUpDown.cs: Use NegativeSign, NumberDecimalSeparator and
1295         NumberGroupSeparator of current culture instead of assuming en-US.
1296         Fixed bug #79967.
1298 2006-11-17  Mike Kestner  <mkestner@novell.com>
1300         * Control.cs: Add the concept of implicit bounds setting so that
1301         dock/undock round trips preserve explicitly set size/locations.
1302         Fixes #79313.
1304 2006-11-17  Alexander Olk  <alex.olk@googlemail.com>
1306         * FileDialog.cs: Trim all filters, otherwise DirInfo.GetFiles
1307           can't handle those filters. (Fixes bug #79961)
1309 2006-11-17  Chris Toshok  <toshok@ximian.com>
1311         [ fixes the exit/crashes associated with #79835.  it's clearly
1312         suboptimal though, we need to figure out a better way to solve
1313         this. ]
1314         
1315         * PrintPreviewControl.cs: deal with the new invalid printer
1316         exceptions.
1318         * PageSetupDialog.cs: if the printer is invalid, pop up a dialog
1319         and return false (so CommonDialog.ShowDialog doesn't actually show
1320         the form.)
1322         * PrintDialog.cs: enable/disable the Ok button depending on
1323         whether or not the printer is valid.
1325         * CommonDialog.cs (ShowDialog): only actually show the form if
1326         RunDialog returns true.
1328 2006-11-17  Jackson Harper  <jackson@ximian.com>
1330         * TextControl.cs: When soft splitting a line, mark it as a soft
1331         split line. Also carry over the current line break to the next
1332         line.
1334 2006-11-17  Chris Toshok  <toshok@ximian.com>
1336         * XplatUIX11.cs: when scrolling a window with an invalid area, we
1337         only want to shift the part of the invalid area that overlaps the
1338         area we're scrolling.  we also don't want to clear the invalid
1339         area unless the invalid area was entirely contained within the
1340         scrolling area.
1342 2006-11-16  Chris Toshok  <toshok@ximian.com>
1344         * XplatUIX11.cs: remove the handling of the TimerEvent stuff, and
1345         also make sure to free the memory returned by XGetWindowProperty
1346         in GetText().
1348         * X11Structs.cs: remove the TimerEvent stuff, it's unused.
1350 2006-11-16  Chris Toshok  <toshok@ximian.com>
1352         * XplatUI.cs: add a new super secret way to get at the totally
1353         unsupported X11 backend.
1355 2006-11-16  Gert Driesen  <drieseng@users.sourceforge.net>
1357         * NumericUpDown.cs: Allow lowercase letters when in hex-mode.
1359 2006-11-16  Jackson Harper  <jackson@ximian.com>
1361         * TreeView.cs: Allow more explicit setting of top node position
1362         for scrollbars. Slower algo, but more accurate.
1363         - CollapseAll should maintain the current top node.
1364         * TextBoxBase.cs: When positioning the caret, use the line, pos
1365         method, since the x, y method does not grab the correct tag, and
1366         the caret height never gets set correctly. (Maybe I should just do
1367         away with the caret having its own height, and always use the
1368         carets current tag for height).
1370 2006-11-16  Jonathan Pobst  <monkey@jpobst.com
1372         [Fixes 79778, 79923]
1374         * XplatUIWin32.cs: Don't allow a parent to be set to IntPtr.Zero.
1375         Parent to the FosterParent instead.
1377 2006-11-16  Jackson Harper  <jackson@ximian.com>
1379         * TreeView.cs: Need to recalc the topnode when we expand or
1380         collapse. The scrolling methods can't handle this on their own,
1381         since they use differences between the last scroll position, and
1382         those difference get completely messed up since we are expanding
1383         nodes.  This problem should probably be fixed in the scrolling
1384         methods, so they can figure out exactly where they are, but this
1385         will slow things down a little.
1386         * ThemeWin32Classic.cs: Special case for groupboxes with empty
1387         strings, makes nunit-gui look a lot nicer.
1389 2006-11-16  Chris Toshok  <toshok@ximian.com>
1391         * XplatUIX11.cs: nasty, nasty, nasty changes required because of
1392         the broken multithreaded event handling we have in here.  File
1393         this entry under "Why we should move to the new X11 backend".
1395         Any thread can make it into UpdateMessageQueue, which gets events
1396         from the X socket - some of which could belong to hwnds being
1397         managed by a different thread.  We can also have multiple threads
1398         in UpdateMessageQueue at the same time, with each one reading from
1399         the X socket.  This leads to many problems, with the following
1400         solutions:
1402         We can't use hwnd.Queue.Enqueue anywhere in here and must use
1403         EnqueueLocked.
1405         The MotionNotify compression we do can't work across threads
1406         (without locking the entire queue, perhaps) since we call
1407         hwnd.Queue.Peek, so we just punt and don't compress motion events
1408         unless the owning thread is the one which got the X event.
1410         ConfigureNotify is another fun one, since it modifies the hwnd's
1411         bounds and then enqueues the event.  We add a lock to Hwnd which
1412         is held when setting configure_pending to true (and enqueuing the
1413         event).
1415         There is a race wrt the wake socket.  we need to make sure that
1416         only 1 thread is waiting on that socket, or else a thread could
1417         sleep waiting for data that never comes.  It's difficult (but not
1418         impossible) to make happen, because it seems to require something
1419         like the following:
1421             1. Thread 1 polls on wake_receive
1422         
1423             2. poll returns saying there's data to be read on
1424                wake_receive.
1425         
1426             3. Thread 2 polls on wake_receive and immediately returns
1427                saying there's data to be read.
1429             4. Thread 2 reads the wakeup byte from wake_receive
1431             5. Thread 1 attempts to read the wakeup byte from
1432                wake_receive.
1434             6. Thread 2 exits (due to a form closing, perhaps).
1436             7. Thread 1 blocks forever.
1437         
1438         Fun, eh?
1440         Fixing the Expose handling isn't done yet, and the races inherent
1441         in that piece of code are responsible for the drawing mistakes you
1442         see when generating expose events in a MT app (like NPlot).  This
1443         one is the likely to be the hardest to bandaid, and it doesn't
1444         appear to cause anything but drawing problems.  The other issues
1445         caused apps to exit or hang.
1447         * XEventQueue.cs: output some spew when Dequeue/Enqueue/Peek are
1448         called from a different thread than the one that should be calling
1449         these functions.
1451         * Hwnd.cs: add some locks to be used by the XplatUIX11 code.
1453 2006-11-15  Chris Toshok  <toshok@ximian.com>
1455         * Application.cs: null out the context's MainForm when we exit
1456         RunLoop.  Fixes a newly checked in unit test as well as the last
1457         ODE from bug #79933.
1459 2006-11-15  Chris Toshok  <toshok@ximian.com>
1461         * Form.cs (set_Owner): allow a null value so we can clear the
1462         form's owner.
1463         (Dispose): set all our owned_form's Owner properties to null, and
1464         clear the owned_forms collection.
1465         (WM_CLOSE): clean up this a little bit.. still not right though.
1467         * ApplicationContext.cs: OnMainFormClosed should only call
1468         ExitThreadCore if the main form isn't recreating.  Fixes unit
1469         test.
1471 2006-11-15  Jonathan Pobst  <monkey@jpobst.com>
1473         [Fixes 78346]
1475         * ComboBox.cs: Set the Hwnd.no_activate flag for the ComboListBox.
1477 2006-11-15  Jonathan Pobst  <monkey@jpobst.com>
1479         [Fixes 79433]
1481         * Hwnd.cs: Add a flag to show a window, but not activate it, to 
1482         keep popup window types from stealing focus from the main form
1483         on Windows.
1485         * XPlatUIWin32.cs: Use SW_SHOWNOACTIVATE if above field is true.
1487         * MenuAPI.cs: Set above flag to true.
1489 2006-11-15  Chris Toshok  <toshok@ximian.com>
1491         * XplatUIX11.cs: mimic win32 behavior on BUTTONUP events, where
1492         the button being released is not in wParam.
1494 2006-11-15  Jonathan Pobst  <monkey@jpobst.com>
1496         * Form.cs: Add the released button to MouseEventArgs.Button
1497         for the OnMouseUp call to the MenuTracker.  Fixes menu clicking
1498         on Win32.
1500 2006-11-15  Chris Toshok  <toshok@ximian.com>
1502         * XplatUIX11.cs: add (untested) a _NET_WM_NAME implementation of
1503         GetText().  untested because it's unused in our implementation.
1504         Control.Text always caches the text, even if
1505         ControlStyles.CacheText is not set.
1507         fixes bug #79939.
1509 2006-11-15  Chris Toshok  <toshok@ximian.com>
1511         [ fixes #79933 ]
1512         
1513         * Form.cs: in Close() don't do anything after we send the WM_CLOSE
1514         message.  no hiding, no disposing.
1516         in the WM_CLOSE handler, hide the form if it's modal.
1518 2006-11-15  Chris Toshok  <toshok@ximian.com>
1520         * XplatUIX11.cs: use AddExpose instead of sending a message.
1521         fixes textbox border drawing.
1523 2006-11-15  Chris Toshok  <toshok@ximian.com>
1525         * PropertyGridView.cs: keep from crashing on mouse move/down when
1526         the property grid is empty.
1528 2006-11-14  Jackson Harper  <jackson@ximian.com>
1530         * TextControl.cs: Make PageUp and PageDown more like the MS
1531         versions.
1532         * TextBoxBase.cs: When we set the text property position the
1533         cursor at the beginning of the document.
1535 2006-11-14  Rolf Bjarne Kvinge  <RKvinge@novell.com>
1537         * Form.cs: if a mdi child's WindowState has changed
1538         before it's creation, it would display wrong control
1539         buttons.
1540         
1541 2006-11-14  Alexander Olk  <alex.olk@googlemail.com>
1543         * TreeView.cs: De-uglify TreeView checkbox checkmarks.
1544           (Fixes bug #79927)
1546 2006-11-14  Rolf Bjarne Kvinge <RKvinge@novell.com> 
1548         * XplatUIX11.cs: send a WM_NCPAINT on WM_NCCALCSIZE so that 
1549         the window gets to paint its borders even if the window is
1550         getting smaller.
1551         
1552         * Form.cs: on a WM_NCPAINT invalidate the entire menu, 
1553         otherwise the old control buttons would still be painted 
1554         if the window gets bigger.
1555         
1556         * PaintEventArgs.cs: add an internal method so that the clip 
1557         rectangle can be changed.
1558         
1559 2006-11-13  Chris Toshok  <toshok@ximian.com>
1561         [ fixes bug #79745 ]
1562         
1563         * NotifyIcon.cs: lots of cleanup.
1565         * X11Structs.cs: add an enum for XEMBED messages.
1567         * XplatUIX11.cs: reindent one of the giant switch statements, it
1568         was taking up an additional tab stop, and this file is already way
1569         too wide for my laptop's screen.
1571         Also, add handling for the XEmbed EMBEDDED_NOTIFY message.  When
1572         we get it, resize the hwnd to the WMNormalHints max_width/height.
1574 2006-11-13  Jackson Harper  <jackson@ximian.com>
1576         * TextBoxBase.cs: Compute the value changes for the mouse wheel
1577         teh simple way.
1579 2006-11-13  Chris Toshok  <toshok@ximian.com>
1581         * XplatUIX11.cs, XplatUIStructs.cs: kind of a gross fix for
1582         #79898.  force a reference to the Region to stick around so the
1583         unmanaged object isn't collected (rendering our handle in the MSG
1584         stale).
1586 2006-11-13  Chris Toshok  <toshok@ximian.com>
1588         * XplatUIX11.cs: fix #79917 for window managers which support
1590         using XStoreName on the raw utf8, and we need to convert to
1591         COMPOUND_TEXT if it's non-latin1.
1593 2006-11-13  Chris Toshok  <toshok@ximian.com>
1595         * Form.cs (set_DialogResult): we need to set closing to false if
1596         we're setting our result to None.  fixes bug #79908.
1598 2006-11-13  Jackson Harper  <jackson@ximian.com>
1600         * TextControl.cs: When formatting text, compute the adjusted tag
1601         lengths correctly, using FindTag for the end tag instead of trying
1602         to figure it out outselves.
1603         * TreeNode.cs: Use ActualItemHeight, which is the actual height of
1604         the item, ItemHeight doesn't work, because trees with large
1605         imagelists use those for their height
1606         * TreeView.cs: ActualItemHeight factors in the image height
1607         - compute left edge of checkboxes correctly
1608         - when expanding/collapsing move the bottom down one pixel, so we
1609         aren't moving part of the node
1611 2006-11-13  Rolf Bjarne Kvinge  <RKvinge@novell.com>
1613         * XplatUIX11.cs: The PaintEventArgs is also added to the drawing
1614         stack in PaintEventStart so that it won't get disposed by the gc
1615         before reaching PaintEventEnd.
1617 2006-11-13  Jackson Harper  <jackson@ximian.com>
1619         * TextBoxBase.cs: Don't select the word if we are on a line with
1620         no text.
1621         - We don't need to position the caret on mouse up, since the mouse
1622         move handler should be doing this
1623         - When double clicking a blank line, the caret is advanced to the
1624         next line.
1626 2006-11-13  Gert Driesen  <drieseng@users.sourceforge.net>
1628         * TreeNodeCollection.cs: Avoid duplicating indexer code.
1630 2006-11-12  Gert Driesen  <drieseng@users.sourceforge.net>
1632         * ColorDialog.cs: Reset size of dialog between calls to ShowDialog.
1633         Fixes part of bug #79910.
1635 2006-11-11  Alexander Olk  <alex.olk@googlemail.com>
1637         * ColorDialog.cs: Fix a NRE when adding a color to custom colors
1638           (bug #79903). Some minor string updates to match ms.
1640 2006-11-10  Alexander Olk  <alex.olk@googlemail.com>
1642         * FileDialog.cs: Don't add an extension if the filename
1643           already ends with that extension.
1645 2006-11-10  Jackson Harper  <jackson@ximian.com>
1647         * TreeView.cs: Use the currently highlighted node for the
1648         BeforeSelect event.
1649         * TextBoxBase.cs: There is no need to expand selection on
1650         MouseMove.
1651         - CanUndo means 'is there any undo operations', not 'is undo
1652         allowed on this textcontrol. Fixed ClearUndo unit test.
1654 2006-11-10  Andreia Gaita  <shana.ufie@gmail.com>
1656         * Button.cs: only perform click when button is Selectable (so as 
1657         not to activate default buttons when they're disabled)
1658         
1659         * Control.cs: Rewrite of the SelectNextControl and related 
1660         methods. HandleClick now selects next control if the current one
1661         is being disabled.
1662         
1663         * Form.cs: OnActivated selects next active control only if Load 
1664         has already occurred. If Load hasn't run, there's no point in 
1665         selecting here, Load might change the state of controls.
1666         
1667         * FocusTest.cs: Tests marked as working again for these fixes
1669 2006-11-10  Chris Toshok  <toshok@ximian.com>
1671         * XplatUIX11.cs: a couple of fixes.
1673         - use XInternAtoms with almost all the atoms we need to register,
1674         instead of many, many calls to XInternAtom.  should help a bit on
1675         startup time, at the expense of making the code look a little
1676         worse.
1678         - fall back to setting TransientFor on TOOLWINDOW's if their hwnd
1679         isn't reparented (which seems to be a clue that we're running fon
1680         compiz) and they have an Owner form.  This fixes the tool windows
1681         in paint.net when running under compiz.
1683         - when setting the opacity of a window, support both the case
1684         where the window has been reparented and also when it hasn't been.
1685         Since compiz/beryl doesn't seem to reparent windows, and these are
1686         the only window managers which support translucency, I'm not sure
1687         why we need the hwnd.reparented case at all.. but leave it in.
1688         now we get translucent windows in paint.net under compiz/beryl.
1690 2006-11-10  Alexander Olk  <alex.olk@googlemail.com>
1692         * FileDialog.cs: Always return the value for FilterIndex that
1693           was set. Internally convert it to values that make sense.
1695 2006-11-10  Everaldo Canuto  <everaldo@simios.org>
1696         
1697         * ThemeWin32Classic.cs: Fix drowp down arrow borders.
1699 2006-11-10  Everaldo Canuto  <everaldo@simios.org>
1701         * Toolbar.cs: Change default value of DropDownArrows to true, the 
1702         signature still using false to make it compatible with MS but the 
1703         initial value is true. Fixes #79855.
1705 2006-11-10  Alexander Olk  <alex.olk@googlemail.com>
1707         * MimeIcon.cs: Don't throw an exception on windows. Mime stuff is
1708           only available on Linux.
1710 2006-11-09  Everaldo Canuto  <everaldo@simios.org>
1712         * Toolbar.cs, ToolBarButton.cs: Fix wrong separator size and
1713         reduce number of calls to redraw method during toolbar creation.
1715 2006-11-09  Mike Kestner  <mkestner@novell.com>
1717         * ListView.cs : raise SelectedIndexChanged when an item is selected
1718         programmatically via the Item.Selected property.  Gert's nice 
1719         ListViewSelectedIndexChanged test fixture now runs clean.
1721 2006-11-09  Mike Kestner  <mkestner@novell.com>
1723         * ListView.cs : raise SelectedIndexChanged when a selected item is
1724         removed from the item collection using Remove or RemoveAt.
1726 2006-11-09  Mike Kestner  <mkestner@novell.com>
1728         * ListView.cs : raise SelectedIndexChanged once per selected item
1729         for compat with MS.  Fixes #79849+.
1731 2006-11-09  Chris Toshok  <toshok@ximian.com>
1733         * TabControl.cs: initialize row_count to 0, and set it to 1 when
1734         we need to (if we have any tab pages).  Fixes unit test.
1736 2006-11-09  Chris Toshok  <toshok@ximian.com>
1738         * Label.cs (CalcPreferredWidth): if Text == "", our preferred
1739         width is 0, not 3.  Fixes a unit test.
1741 2006-11-09  Mike Kestner  <mkestner@novell.com>
1743         * ListView.cs : use Implicit scrollbars so that focus isn't 
1744         stolen from the listview when they are clicked. Fixes #79850.
1746 2006-11-09  Chris Toshok  <toshok@ximian.com>
1748         * PropertyGridView.cs (OnPaint): only call DrawGridItems if we
1749         have a root item.  Fixes #79879.
1751 2006-11-09  Alexander Olk  <alex.olk@googlemail.com>
1753         * FileDialog.cs:
1754           - Fix ToString ()
1755           - An ArgumentException is now thrown if a wrong filter
1756             is applied (matches ms). The previous filter doesn't change
1757             anymore if an exception is thrown.
1758           - Changing the FileName property also affects FileNames
1759         * ColorDialog.cs: The length of the CustomColors array is always
1760           16. It doesn't matter if we use a smaller array or null to update
1761           or change the custom colors property.
1762         * FolderBrowserDialog.cs: Throw an InvalidEnumArgumentException if
1763           for RootFolder if we get a undefined value.
1765 2006-11-09  Rolf Bjarne Kvinge  <RKvinge@novell.com>
1767         * StatusBarPanel.cs: 
1768         - Width is set to MinWidth if Width is smaller than
1769         MinWidth. Fixes #79842.
1770         - MinWidth now always overrides Width (MSDN says MinWidth
1771         is set to Width when AutoSize = None, but they do not 
1772         behave like that).
1773         - Style has now the the correct default value.
1774         
1775 2006-11-09  Rolf Bjarne Kvinge  <RKvinge@novell.com>
1777         * TrackBar.cs: 
1778         - The control is completely invalidated on 
1779         Got/LostFocus to draw the focus rectangle correctly.
1780         - When AutoSize then height is always 45 (width for 
1781         vertical controls).
1782         
1783         * ThemeWin32Classic.cs: The TrackBar thumb is now centered
1784         on the mouse when moved and it doesn't move when grabbed
1785         until the mouse moves as well. Also fixed some wrong 
1786         calculations when clicking on the thumb (control thought
1787         click was outside of thumb and didn't grab it).
1788         Fixes some of the issues in #79718.
1790 2006-11-08  Everaldo Canuto  <everaldo@simios.org>
1792         * Toolbar.cs: Prevent disabled button to highlight. Fixes #79868.
1794 2006-11-08  Chris Toshok  <toshok@ximian.com>
1796         * PropertyGridView.cs: only call ToggleValue if the item is not
1797         readonly.
1799 2006-11-08  Jackson Harper  <jackson@ximian.com>
1801         * TextBoxBase.cs: The RichTextBox and textbox have very different
1802         word selection methods.  Implement the textbox's simple word
1803         selection here, and let the RichTextBox override and provide it's
1804         own.
1805         - Don't do extra selection on mouseup
1806         * RichTextBox.cs: Use the documents word selection algorithm, I
1807         think ideally, this function will be pulled into the
1808         RichTextBox.cs code someday.
1810 2006-11-08  Chris Toshok  <toshok@ximian.com>
1812         * RootGridEntry.cs: new class to represent GridItemType.Root.
1814         * CategoryGridEntry.cs: reformat, and add boilerplate.
1815         
1816         * GridEntry.cs: remove the UIParent stuff - turns out .Parent
1817         returns the UI parent anyway, and we need special handling to
1818         implement the GetTarget method in the face of it.  Also, implement
1819         Select().
1821         * PropertyGrid.cs, PropertyGridView.cs: a number of fixes.  create
1822         a root grid item, and use that instead of PropertyGrid.grid_items.
1823         Also, make use of TypeConverters (and add limitted support for
1824         ICustomTypeDescriptors) when initially populating the grid.
1825         Arrays now show up more or less properly.
1827 2006-11-08  Chris Toshok  <toshok@ximian.com>
1829         * Application.cs: set the modal dialog to non modal after we close
1830         it.  Fixes bug #79866.
1832 2006-11-08  Jackson Harper  <jackson@ximian.com>
1834         * TextControl.cs: When combining lines carry over the line end
1835         style from the end line.
1836         - Invalidate the selected area when setting it, if it is visible.
1837         * TextBoxBase.cs: Only rich text box can do full line selects.
1838         - Make sure to set the cursor position when there is a click,
1839         otherwise two clicks in separate areas could cause a large chunk
1840         to be selected.
1842 2006-11-07  Everaldo Canuto  <everaldo@simios.org>
1844         * Toolbar.cs: Release flat button borders when Toolbar lost focus. 
1845         Fixes #79863.
1847 2006-11-07  Everaldo Canuto  <everaldo@simios.org>
1849         * Toolbar.cs: Prevent toolbar to open more than one tooltip at same
1850         time. Remove tooltips when ToolButton click events.  Fixes #79856.
1852 2006-11-07  Everaldo Canuto  <everaldo@simios.org>
1854         * MenuAPI.cs: Ignore right click for menu actions and fixes
1855         menu border when clicked.  Fixes #79846.
1857 2006-11-07  Everaldo Canuto  <everaldo@simios.org>
1859         * XplatUIX11.cs, XplatUIX11.cs: Fix MouseRelease to only release
1860         MouseState after create wParam for message, this fixes mouse button 
1861         equal none in mouse up events.
1862         
1863 2006-11-07  Andreia Gaita  <shana.ufie@gmail.com>
1865         * Control.cs : Focus() now calls Select to set the Container's
1866         Active Control and to give it focus. To avoid infinite recursion
1867         (because ActiveControl also calls Focus at one point), a check 
1868         is made in Focus with the help of a new internal variable
1869         is_focusing.
1871 2006-11-07  Mike Kestner  <mkestner@novell.com>
1873         * ListView.cs : raise OnSelectedIndexChanged in CreateHandle
1874         if there's a selection.  Fixes #79849.
1876 2006-11-07  Gert Driesen  <drieseng@users.sourceforge.net>
1878         * PropertyGrid.cs: Avoid fixed height of help description label.
1879         Fixes part of bug #79829.
1881 2006-11-07  Chris Toshok  <toshok@ximian.com>
1883         * XplatUIX11.cs: fix #79790 again, by using the
1884         _NET_WM_STATE_SKIP_TASKBAR atom to implement Form.ShowInTaskbar.
1886 2006-11-07  Everaldo Canuto  <everaldo@simios.org>
1888         * ToolBar.cs: Fix left click checking.
1890 2006-11-07  Chris Toshok  <toshok@ximian.com>
1892         * ProgressBar.cs: fix a typo in ToString().  fixes a unit test.
1894 2006-11-07  Chris Toshok  <toshok@ximian.com>
1896         * RelatedPropertyManager.cs: set property_name in our ctor.  fixes
1897         PropertyManager unit tests.
1899         * PropertyManager.cs: make property_name internal.
1901 2006-11-07  Chris Toshok  <toshok@ximian.com>
1903         * ButtonBase.cs: initialize base.ime_mode to ImeMode.Disable to
1904         pass a unit test.  Also, don't set image_index to anything in
1905         response to setting the ImageList property.
1907 2006-11-07  Everaldo Canuto  <everaldo@simios.org>
1909         * ToolBar.cs: Ignore click events when mouse button is not a
1910         left button, only accepts other button for dropdown menus.  
1911         Fixes #79854.
1913 2006-11-07  Chris Toshok  <toshok@ximian.com>
1915         * DataGrid.cs: make the back and parent row buttons a little less
1916         ugly.
1918 2006-11-07  Jackson Harper  <jackson@ximian.com>
1920         * TextBoxBase.cs: When converting to Text don't put line breaks in
1921         for soft line breaks.
1922         * TextControl.cs: There is an initial "fake" line in the document,
1923         this is now a soft break line, so that an extra line feed doesn't
1924         get added to the end of documents.
1926 2006-11-07  Chris Toshok  <toshok@ximian.com>
1928         [ fix bug #79778 ]
1929         
1930         * CurrencyManager.cs: if the list is readonly, don't bother
1931         checking if IBindingList.AllowNew is true.
1933         * ThemeWin32Classic.cs (DataGridPaintParentRow): make this work
1934         for non-DataRowView datasources..  or rather, make it not crash.
1935         (DataGridPaintRelationRow): make sure we limit the row painting to
1936         the area not covered by the row header, and make our cell width at
1937         least large enough to cover the relation area.  This allows grids
1938         that have relations but no rows to render correctly.
1939         (DataGridPaintRowContents): same type of changes here.
1940         (SetDataSource): move back to always calling
1941         CalcAreasAndInvalidate.  this fixes a crash/drawing problem when
1942         navigating back through relations.
1943         (HitTest): handle the case where we have no cells but have
1944         relations.  Right now we generate a hit in cell 0 of whatever the
1945         row is, not sure if this is strictly correct, but it works for our
1946         purposes.
1947         
1948         * DataGrid.cs (EndEdit, CancelEdit): if we have no columns, don't
1949         bother doing anything.
1951 2006-11-07  Jonathan Pobst  <monkey@jpobst.com>
1953         * StatusStrip.cs, ToolStripStatusLabel.cs: By request, an
1954         early version of StatusStrip.  Not responsible for eaten
1955         application or firstborn children.
1957 2006-11-06  Chris Toshok  <toshok@ximian.com>
1959         * TabControl.cs: in OnGotFocusInternal/OnLostFocusInternal don't
1960         call GetTabRect with a -1 index.  Fixes #79847.
1962 2006-11-06  Jackson Harper  <jackson@ximian.com>
1964         * TreeNodeCollection.cs: Update scrollbars after clearing.
1966 2006-11-06  Chris Toshok  <toshok@ximian.com>
1968         * NumericUpDown.cs: fix the ToString method for some unit test
1969         love.
1971 2006-11-06  Chris Toshok  <toshok@ximian.com>
1973         * PropertyGrid.cs:
1974         - set the initial SelectedGridItem if we can.
1976         - Exclude non-mergable properties only if we're merging > 1
1977         object.  Merging 1 object isn't really merging, obviously.
1979         - Handle PropertySort.NoSort just like Alphabetical, which is
1980         wrong of course, but at least gets things on the screen.
1981         
1982         * PropertyGridView.cs:
1983         - Add method "FindFirstItem" which finds the first property grid
1984         item, so we can select it by default.
1986         - make use of GridEntry.CanResetValue.
1988         - Don't call RedrawBelowItemOnExpansion here anymore, the
1989         individual GridEntry's will do that.
1991         - Remove the ITypeDescriptorContextImpl internal class.
1992         
1993         * GridEntry.cs:
1994         - this class needs to implement ITypeDescriptorContext, as it's
1995         what MS's PropertyDescriptorGridEntry does, which means we can
1996         remove the ITypeDescriptorContextImpl internal class from
1997         PropertyGrid.cs.  This fixes the crashing portion of bug #79829.
1999         - keep a reference to our PropertyGridView, and move the call to
2000         RedrawBelowItemOnExpansion here from PGV.  This means
2001         programmaticly setting Expanded actually does something visible.
2003         - add a CanResetValue() function which takes into account our
2004         possibly multiple "selected_objects" in the merged case.  Shifting
2005         PropertyGridView to use this method fixes another unreported
2006         crasher found running the test for #79829.
2008         - when Top or Bounds is updated, make sure the PropertyGridTextBox
2009         is updated to reflect this.
2011         * CategoryGridEntry.cs: the ctor takes the PGV now.
2012         
2013 2006-11-06  Jackson Harper  <jackson@ximian.com>
2015         * TextControl.cs: These are 1 based.
2016         * TextBoxBase.cs: When setting the selected text, don't change the
2017         selected text tags, this is done by ReplaceText, just position the
2018         cursor at the end of the new text.
2020 2006-11-06  Alexander Olk  <alex.olk@googlemail.com>
2022         * ListView.cs: Allow label edit only when, when LabelEdit is
2023           set to true.
2025 2006-11-06  Jackson Harper  <jackson@ximian.com>
2027         * TextControl.cs: If a suitable wrapping position isn't found,
2028         just wrap right in the middle of a word.
2030 2006-11-06  Alexander Olk  <alex.olk@googlemail.com>
2032         * ListView.cs, ListViewItem.cs: Implement LabelEdit. Fixes
2033           bug #79820.
2035 2006-11-06  Jackson Harper  <jackson@ximian.com>
2037         * TreeView.cs: Can't use the VisibleCount property when setting
2038         scrollbar heights, because this doesn't take into account whether
2039         or not the horz scrollbar just came visible.
2041 2006-11-05  Everaldo Canuto  <everaldo@simios.org>
2043         * MenuAPI.cs: Deactivate menu on mouse up when menus it is already
2044         activated.  Fixes #79369, #79832.
2046 2006-11-05  Alexander Olk  <alex.olk@googlemail.com>
2048         * FileDialog.cs: *sigh* Because of recent runtime changes (r67043) I
2049           had to remove support for links that point to a directory. FileInfo
2050           returns no usefull information (means, the directory they point to)
2051           for such links. Replaced some empty string ("") with String.Empty.
2053 2006-11-04  Gert Driesen  <drieseng@users.sourceforge.net>
2055         * TreeNodeCollection.cs: To match MS, in 1.0 profile throw 
2056         NullReferenceException when attempting to remove node that is not in
2057         collection. Throw NullReferenceException when null is passed to 
2058         Remove. Allow first element of the collection to be removed. Fixes
2059         bug #79831.  In GetEnumerator ().Current return null if positioned 
2060         before the first element of the collection. In GetEnumerator ().Reset,
2061         position before first element of the collection.
2063 2006-11-04  Gert Driesen  <drieseng@users.sourceforge.net>
2065         * PropertyGrid.cs: To match MS, remove default title and description
2066         for panel. Fixed tooltips for Categorized and Alphabetic toolbar
2067         buttons.
2069 2006-11-04  Chris Toshok  <toshok@ximian.com>
2071         * Theme.cs: add a Clamp method, just for kicks.
2073         * ThemeWin32Classic.cs: clamp all color components to [0..255].
2075 2006-11-04  Chris Toshok  <toshok@ximian.com>
2077         * Form.cs: if the form isn't visible, Close() does nothing.
2079 2006-11-03  Chris Toshok  <toshok@ximian.com>
2081         * Form.cs (Close): if the form is modal, don't Dispose of it, only
2082         Hide it.
2083         (WndProc): don't Dispose after handling the WM_CLOSE message.
2085         * Application.cs (RunLoop): toplevels is a list of Forms, so treat
2086         them as such, instead of using casts from Control to Form.  Also,
2087         don't Dispose of the modal dialog when we fall out of the loop -
2088         Close() it instead.
2090         fixes bug #79813.
2092 2006-11-03  Chris Toshok  <toshok@ximian.com>
2094         * Control.cs (Dispose): only go through the dispose thing if we're
2095         @disposing, and we haven't already been disposed.  Fixes bug
2096         #79814.
2098         * Form.cs: no reason to call "base.Dispose()" here instead of
2099         "Dispose()".
2101 2006-11-03  Mike Kestner  <mkestner@novell.com>
2103         * ComboBox.cs : use ToString instead of casts in AddItem for
2104         sorting functionality.  Fixes #79812.
2106 2006-11-03  Chris Toshok  <toshok@ximian.com>
2108         * Application.cs: pave the way for actually using the thread
2109         exception dialog.  it's ifdefed out at the moment.
2111 2006-11-03  Chris Toshok  <toshok@ximian.com>
2113         * ThreadExceptionDialog.cs: until we get a better layout, actually
2114         hide the details textbox and label when we shouldn't see them.
2116 2006-11-03  Jackson Harper  <jackson@ximian.com>
2118         * TextBoxBase.cs: Don't bail from the scrollbar calcs for non
2119         multiline textboxes anymore.  This method also determines the
2120         width/height of a textboxes canvas area.
2121         - Sorta a revert of the last patch.  For multiline just position
2122         the controls, then bail.  This way the scrollbar width won't be
2123         altered.
2125 2006-11-03  Everaldo Canuto  <everaldo@simios.org>
2127         * ThemeWin32Classic.cs: Dont paint inner lines of 3D border when
2128         it dont need.  Fixes #79537.
2130 2006-11-02  Jackson Harper  <jackson@ximian.com>
2132         * X11Dnd.cs: We always allow copy, since XDND implies Copy.  Also
2133         send the status after firing the DndOver event.
2135 2006-11-02  Rolf Bjarne Kvinge  <RKvinge@novell.com>
2137         * TrackBar.cs: Now orientation only switches height / width if
2138         the control's handle is created (Win32 does it like this). Also 
2139         fixed a typo in ToString() for a test to pass, changed the 
2140         exception thrown in set_LargeChange and set_SmallChange to 
2141         match Win32 behaviour, and added TrackBar tests to the unit 
2142         tests.
2144 2006-11-02  Chris Toshok  <toshok@ximian.com>
2146         * XplatUIX11.cs: the atom we want is _NET_WM_STATE_SKIP_TASKBAR,
2147         not _NET_WM_STATE_NO_TASKBAR.
2149 2006-11-02  Jackson Harper  <jackson@ximian.com>
2151         * TextControl.cs: Increment count by one, since in the update view
2152         count - 1 is used.
2154 2006-11-02  Jackson Harper  <jackson@ximian.com>
2156         * TextBoxBase.cs: Use client rectangle not bounds for checking if
2157         the mouse is in the client rectangle (duh).
2159 2006-11-02  Rolf Bjarne Kvinge  <RKvinge@novell.com>
2160         
2161         * TrackBar.cs: Fixed trackbar jumping around when clicking
2162         on it - the trackbar was not detecting correctly at which
2163         side of the thumb the click was done. (fixes #79718)
2165 2006-11-02  Everaldo Canuto  <everaldo@simios.org>
2167         * ListBox.cs: scroll visible area when change SelectedIndex to
2168         a non visible area.  Fixes #79481.
2170 2006-11-01  Jackson Harper  <jackson@ximian.com>
2172         * TextControl.cs: When replacing the selection move the selection
2173         start/end/anchor to the end of the new text.
2175 2006-11-01  Jackson Harper  <jackson@ximian.com>
2177         * XplatUIWin32.cs: When setting the parent change the controls
2178         visibility to it's visibility flag, not to it's old parents
2179         visibility (.Visible walks the parent chain).
2181 2006-11-01  Chris Toshok  <toshok@ximian.com>
2183         * XplatUIX11.cs: revert the #79790 fix, as the simple.
2184         XSetTransientForHint fix breaks paint .net's tool windows.  more
2185         work needed for that one.
2187 2006-11-01  Chris Toshok  <toshok@ximian.com>
2189         * ScrollBar.cs: throw ArgumentException instead of Exception in
2190         LargeChange/SmallChange setters.  fixes unit tests.
2192 2006-10-31      Andreia Gaita <shana.ufie@gmail.com>
2194         * ContainerControl.cs: reverted rev.67183 (which was itself
2195         a reversion of rev.66853... eh).
2196         
2197         * Control.cs: Fixes Reflector hang by changing Focus() call
2198         to what it was before rev.66643 (calling Select() here sets 
2199         ActiveControl, which in some situations calls back Focus and 
2200         eventually does a stack overflow). Temp fix.    
2201         Changes to GetNextControl() to not look for children to select when
2202         parent cannot be selectable (so it looks for siblings instead)  
2203         
2204 2006-10-31  Mike Kestner  <mkestner@novell.com>
2206         * CheckedListBox.cs : off by one error in returned index from
2207         ObjectCollection.Add.  Fixes #79758.
2209 2006-10-31  Chris Toshok  <toshok@ximian.com>
2211         * UpDownBase.cs: remove the OnGotFocusInternal/OnLostFocusInternal
2212         calls for the textbox/spinner, to keep from recursing to the point
2213         where we crash.  Fixes #79760.
2215 2006-10-31  Chris Toshok  <toshok@ximian.com>
2217         * ListControl.cs (set_SelectedValue): don't throw exceptions on
2218         null/"" value, just return.  matches ms's behavior and fixes some
2219         failing tests.
2221 2006-10-31  Chris Toshok  <toshok@ximian.com>
2223         * Control.cs (set_Capture): make a logic a little easier to
2224         follow.
2226         * XplatUIX11.cs (CleanupCachedWindows): zero out the Grab window
2227         if it's being destroyed.  A necessary fix surely, but a bandaid
2228         also, to fix the stuck capture problem in bug #78413.
2230 2006-10-31  Chris Toshok  <toshok@ximian.com>
2232         * XplatUIX11.cs: fix a couple of compiler warnings, and follow the
2233         convention of clearing hwnd.ClientRect when we set the
2234         width/height (so it'll be recalculated by Hwnd).
2236 2006-10-31      Andreia Gaita <shana.ufie@gmail.com>
2238         * ContainerControl.cs: reversed Contains check from
2239         ActiveControl due to hanging problems. This fix
2240         partly regresses #79667 (button does not have
2241         initial focus), so this might be a symptom for 
2242         a larger parenting problem (set_ActiveControl
2243         is being called but the child control does
2244         not have the parent set yet?)   
2245         
2246 2006-10-31  Mike Kestner  <mkestner@novell.com>
2248         * MenuAPI.cs : fix keynav when menu is click activated.
2250 2006-10-31  Jonathan Pobst  <monkey@jpobst.com>
2252         * ToolStrip*: Version 0.2.
2254         * MenuStrip.cs: Version 0.1.
2256         * Form.cs: Add a 2.0 MenuStrip tracker like the 1.1 Menu one.
2258 2006-10-30  Chris Toshok  <toshok@ximian.com>
2260         [ fixes the oversized notify icon issue in bug #79745 ]
2261         
2262         * NotifyIcon.cs: scale the icon down to the size we're given by
2263         the XplatUI layer (this would be faster if we did it once instead
2264         of whenever we paint..)  Also, remove the WM_NCPAINT handling,
2265         since it's never invoked.
2267         * XplatUIX11.cs: the gnome and kde systrays use icons that are 24
2268         pixels high by default, so let's hardcode our systray icon to that
2269         size.  The SYSTEM_TRAY protocol should really have a way for
2270         client apps to query for the correct icon size.. but oh well.  A
2271         couple of patches to deal with the screwy client_window ==
2272         whole_window notifyicon stuff (we don't want to PerformNCCalc, for
2273         instance, and also make sure we don't XSelectInput twice).
2275 2006-10-30  Chris Toshok  <toshok@ximian.com>
2277         * Control.cs: ugh, the unit test fix (CH11, yesterday) breaks when
2278         recreating forms.  Control recreation is the bane of my existence.
2279         Fix it in a way that keeps everyone happy.
2281 2006-10-30  Chris Toshok  <toshok@ximian.com>
2283         * XplatUIX11.cs: use StructureNotifyMask on all whole_windows, not
2284         just non-CHILD ones.  otherwise sometimes scrollbars end up with
2285         client_windows not being resized to the proper size (ReportBuilder
2286         shows this extremely well).
2288 2006-10-30  Chris Toshok  <toshok@ximian.com>
2290         * XplatUIX11.cs (SetWMStyles): reinstate the XSetTransientForHint
2291         for non-WS_EX_APPWINDOW windows.  This is what keeps them from
2292         showing up in the gnome taskbar.  Fixes bug #79790.
2294 2006-10-30  Chris Toshok  <toshok@ximian.com>
2296         * ApplicationContext.cs: guard against a NRE.
2298         * Application.cs: null out the old MainForm for the context, so we
2299         don't try to use it again once it's disposed.  Fixes bug #79783.
2301 2006-10-30  Chris Toshok  <toshok@ximian.com>
2303         * DataGrid.cs (set_DataSource, set_DataMember): if we have a
2304         BindingContext, set the data source directly, otherwise do the
2305         lazy approach - the actual ListManager will be created when we get
2306         a BindingContext. Fixes bug #79700.
2308 2006-10-30  Jonathan Pobst  <monkey@jpobst.com>
2310         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIOSX.cs,
2311           XplatUIX11.cs: Remove old 2 parameter SetVisible.
2313         * Control.cs: Use the new 3 parameter SetVisible with activate = true.
2315 2006-10-30  Jonathan Pobst  <monkey@jpobst.com>
2317         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs: Add an overload
2318         of SetVisible that allows a window to be shown, but not activated.
2319         This is needed on Windows for MenuStrip, and can probably be used
2320         with MainMenu and ComboBox to fix the focus stealing issues on
2321         Windows.
2323         * XplatUIOSX.cs, XplatUIX11.cs: Not needed, call existing SetVisible.
2325 2006-10-30  Alexander Olk  <alex.olk@googlemail.com>
2327         * PictureBox.cs: Fix the output of the ToString method.
2329 2006-10-29  Chris Toshok  <toshok@ximian.com>
2331         * Control.cs (get_TopLevelControl): fix bug #79781.
2333 2006-10-29  Chris Toshok  <toshok@ximian.com>
2335         * ListControl.cs (set_DataSource): throw Exception here, not
2336         ArgumentException, to match MS behavior.
2338 2006-10-29  Chris Toshok  <toshok@ximian.com>
2340         * Form.cs: remove the try-catch's around calls to GetWindowState.
2341         We can just check the return value.
2343         * XplatUIX11.cs: don't throw exceptions from GetWindowState.
2344         Instead return -1.
2346         * XplatUI.cs: Add note about additional return value for
2347         GetWindowState.
2349 2006-10-29  Chris Toshok  <toshok@ximian.com>
2351         * Control.cs (CreateHandle): when we create our handle, we also
2352         create the handles of our child controls.  Fixes one of the
2353         Control unit tests (CH11).
2355 2006-10-28  Alexander Olk  <alex.olk@googlemail.com>
2357         * MimeIcon.cs: If a gnome icon doesn't exist add a default icon.
2359 2006-10-28  Alexander Olk  <alex.olk@googlemail.com>
2361         * ThemeClearlooks.cs: A little speedup.
2363 2006-10-27  Chris Toshok  <toshok@ximian.com>
2365         * Control.cs: implement Control.FromChildHandle in a way that
2366         matches the docs (and fixes the failed test.)
2368 2006-10-27  Chris Toshok  <toshok@ximian.com>
2370         * DataGridTableStyle.cs: reproduce buggy MS behavior (with
2371         comments).
2373         * DataGrid.cs: implement ResetForeColor such that the tests
2374         succeed.
2375         
2376 2006-10-27  Chris Toshok  <toshok@ximian.com>
2378         * ToolBarButton.cs: setting text/tooltiptext to null results in it
2379         being set to "".  Fixes bug #79759.
2381 2006-10-27  Jackson Harper  <jackson@ximian.com>
2383         * TextControl.cs: We need to clear the entire selection area when
2384         setting the start, otherwise multiline selections are still
2385         visible.
2387 2006-10-26  Chris Toshok  <toshok@ximian.com>
2389         * PropertyGridView.cs: 
2391         - ifdef all the code specific to the double
2392         buffer case, and provide some alternatives in the non-doublebuffer
2393         code, which makes heavy use of XplatUI.ScrollWindow to move things
2394         around without having to invalidate (and cause flicker).  There
2395         are still some drawing problems in the non-doublebuffered case, so
2396         DOUBLEBUFFER is defined by default.
2398         - Fix the way dropdowns are handled.  now we explicitly watch for
2399         the events which might cause the dropdown to close, and break out
2400         of the nested event loop there.  This gets rid of all Capture
2401         code, at the expense of the Msg special casing.  Seems to work,
2402         though, and fixes bug #79743.
2404 2006-10-27  Rolf Bjarne Kvinge <RKvinge@novell.com>
2405         * Control.cs: SetIsRecreating now recreates implicitly added
2406         child controls as well. Finally fixes #79629. The flag passed to 
2407         SetIsRecreating has also been removed since it wasn't used.
2408         
2409 2006-10-26  Carlos Alberto Cortez <calberto.cortez@gmail.com>
2411         * PageSetupDialog.cs: Clean some code, fix some bits, 
2412         add some checks, and add a printer sub-dialog.
2414 2006-10-26  Chris Toshok  <toshok@ximian.com>
2416         * PropertyGrid.cs: make set_SelectedObject call
2417         set_SelectedObjects, and move the duplicate logic to the
2418         SelectedObjects setter.  Also, raise SelectedObjectsChanged.
2420         * PropertyGridView.cs: hide the textbox when we get a
2421         SelectedObjectsChanged event.
2423         Fixes bug #79748.
2425 2006-10-26  Chris Toshok  <toshok@ximian.com>
2427         * PropertyGridView.cs: deal with the type converter not supporting
2428         GetStandardValues() or GetStandardValues() returning null, which
2429         is does in the default case.  Fixes #79742.
2431 2006-10-25  Andreia Gaita <shana.ufie@gmail.com>
2433         * CheckedListBox.cs: nunit no longer crashes when selecting 
2434         Project/Edit menu option
2435         
2436 2006-10-25  Andreia Gaita <shana.ufie@gmail.com>
2438         * MenuAPI.cs: prevent ExecFocusedItem from blowing up if there
2439         is no menu selected. fixes #79739
2441 2006-10-25  Chris Toshok  <toshok@ximian.com>
2443         * PropertyGridView.cs: factor out the splitter invalidation code
2444         into the SplitterPercent setter, and for kicks implement the
2445         Ctrl-Left/Ctrl-Right handling that moves the splitter by a small
2446         amount in either direction.
2448 2006-10-25  Chris Toshok  <toshok@ximian.com>
2450         * PropertyGridView.cs: do some cleanup of the brush used to draw
2451         text - read only fields should be grayed out.  not sure how to do
2452         this with the textbox, though.  but the textbox's should also be
2453         readonly now at least.  Also, hide/show the textbox when resizing
2454         the control.
2455         
2456         * CursorConverter.cs: use System.Reflection when getting the
2457         properties of Cursors, as TypeDescriptor.GetProperties isn't
2458         returning static properties.
2460 2006-10-25  Chris Toshok  <toshok@ximian.com>
2462         * PropertyGridView.cs: factor out the up/down handling, and reuse
2463         it for page up/down.  also add End/Home support.
2465 2006-10-25  Chris Toshok  <toshok@ximian.com>
2467         * PropertyGridView.cs:
2469         - ensure the selected grid item is visible in the scrolled area,
2470         fixes bug #79572.
2472         - fix Keys.Down handling when you're on the last item in the
2473         propertygrid.
2475 2006-10-25  Mike Kestner  <mkestner@novell.com>
2477         * MenuAPI.cs : set the ActiveTracker for MainMenu non-popup 
2478         clicks too.  Fixes #79725.
2480 2006-10-24  Chris Toshok  <toshok@ximian.com>
2482         * PropertyGrid.cs: use property.Converter instead of
2483         TypeDescriptor.GetConverter(property.PropertyType), so we catch
2484         TypeConverters declared on the property as well as on the
2485         PropertyType.  Fixes bug #79678.
2487 2006-10-24  Alexander Olk  <alex.olk@googlemail.com>
2489         * MimeIcon.cs, Mime.cs:
2490           Fallback to the default platform handler if no shared mime info
2491           stuff exists (fixes #79693).
2493 2006-10-20 Andreia Gaita <shana.ufie@gmail.com>
2494         * ContainerControl.cs: Incorrect contains check in ActiveControl 
2495         from previous fix (duh).
2497 2006-10-20  Chris Toshok  <toshok@ximian.com>
2499         * PropertyGridView.cs: the dropdown should be MIN(number of items
2500         in list, 15).  Fixes #79551.
2502 2006-10-20 Andreia Gaita <shana.ufie@gmail.com>
2503         Fixes #79384, #79394, #79652, #79667
2504         * Application.cs: 
2505         
2506         - Modal windows are now destroyed in the proper order for windows
2507         
2508         * ContainerControl.cs:
2509         
2510         - ActiveControl setter has more conditions on when to return:
2511                 - if we're reselecting the active control, but it actually
2512                 didn't have focus (window hidden or some such), it runs
2513                 - if the active control being selected doesn't actually 
2514                 exist in the container, it returns
2515         
2516         * Form.cs
2517         
2518         - The ShowDialog now gets the current form as the owner when
2519         invoking without parameters, and correctly activates the owner 
2520         when returning
2521         
2522         * MessageBox.cs
2523         
2524         - MessageBox now catches the Escape key to exit
2526 2006-10-20  Chris Toshok  <toshok@ximian.com>
2528         * PropertyGridView.cs: fix a number of issues (bug #78565, and
2529         most of bug #79676):
2531         - you can navigate around the property grid with the arrow keys.
2533         - the dropdown is sized properly when the pg has a vertical
2534         scrollbar.
2536         - fix the indentation for subentries, and properly select the
2537         entire label rect.
2539         - fix the gray bar's drawing (only draw it to the last element,
2540         not for the height of the control.  Also make sure we draw that
2541         last horizontal grid line.
2543         - use the same mechanism the datagrid uses wrt the editing textbox
2544         when scrolling/resizing/etc.  Namely, we hide it first, do the
2545         operation, then show it again (if it's still visible).
2546         
2547         - aggressively remove a lot of unnecessary refreshes (and also
2548         calls to Invalidate(). call more limited variants, and only redraw
2549         what we need.)
2550         
2551         * PropertyGrid.cs:
2553         - when we're populating the merged collection, fill in the UI
2554         parent with either the passed in item, or the category item we
2555         create.
2557         - remove the Refresh call from the BorderHelpControl.OnSizeChanged.
2559         * GridItem.cs: drop some fully qualified names.
2560         
2561         * GridEntry.cs: add a "UIParent", which is basically the parent
2562         treenode.
2564         * GridItemCollection.cs: add an IndexOf method.
2566 2006-10-20  Mike Kestner  <mkestner@novell.com>
2568         * MainMenu.cs : go back to Draw in OnMenuChanged.  Until we get
2569         a working win32 NC invalidation mechanism, we can't invalidate
2570         menus.  [Fixes #79705]
2572 2006-10-20  Mike Kestner  <mkestner@novell.com>
2574         * ListBox.cs : don't update the VScrollbar if the list is empty,
2575         just hide it.  [Fixes #79692]
2577 2006-10-20  Jackson Harper  <jackson@ximian.com>
2579         * RichTextBox.cs: Handle some special chars better, and don't skip
2580         the entire group when we encounter a special char that we don't
2581         handle correctly.
2583 2006-10-18  Chris Toshok  <toshok@ximian.com>
2585         * PropertyGridView.cs: address a number of issues from bug #79676,
2586         mostly of the cosmetic variety.
2588         - The highlight rectangle for indented items not extends all the
2589         way to the left.
2591         - Indented items aren't indented so much.
2593         - the dropdown is properly sized width-wise if the pg has a
2594         vertical scrollbar.
2596 2006-10-18  Chris Toshok  <toshok@ximian.com>
2598         * XplatUIX11.cs (SystrayAdd): a rather convoluted change, but the
2599         systray stuff is rather convoluted to begin with.
2601         systray icons are a single window for some reason (that I haven't
2602         figured out yet), and for them, client_window == whole_window.
2603         Given the way the tests are structured elsewhere to determine
2604         which paints are pending (client vs. nc), that situation will
2605         always yield PAINT, not NCPAINT.  So, if we have a pending
2606         nc_expose and no pending expose, remove the hwnd from the paint
2607         queue, and also set nc_expose_pending to false, to keep us from
2608         blocking further expose's adding the hwnd to the paint queue.
2610         phew.  like i said, a rather convoluted change.  Fixes the
2611         notifyicon repaint issues in bug #79645.
2613 2006-10-18  Chris Toshok  <toshok@ximian.com>
2615         * Form.cs: when getting the backcolor of the form, don't get
2616         base.BackColor, as this allows parents to influence the background
2617         color.  This breaks mdi forms.  Instead, if the background_color
2618         is empty, return the default.
2620 2006-10-18  Chris Toshok  <toshok@ximian.com>
2622         * XplatUIX11.cs: change some debug ifdefs, and return XGetParent
2623         to being private instead of internal static.
2625         * Control.cs: remove all the stupid ParentWaitingOnRecreation
2626         crap, it wasn't working for more deeply nested controls anyway,
2627         and we already have the is_recreating flag - use that instead.
2628         Before calling DestroyHandle in RecreateHandle, recurse through
2629         the control tree setting it to true.  this returns the recreate
2630         code to much of its original simplicity, while now guaranteeing we
2631         actually recreate everything we're supposed to.  This change gets
2632         fyireporting actually showing mdi children.
2634 2006-10-17  Chris Toshok  <toshok@ximian.com>
2636         * Form.cs: remove some debug spew, and collapse some duplicate
2637         code at the end of SetClientSizeCore.
2639         * XplatUIX11.cs: 
2640         - add some more debug spew here too wrt Destroy handling.
2641         - don't call hwnd.Dispose in DestroyWindow, it's effectively done
2642         in Control's handling of WM_DESTROY.
2643         - Remove the handling of zombie window DestroyNotifies from the
2644         event loop - we don't need it.  Now the only DestroyNotifies we
2645         actually handle are ones generated by X.
2646         - When sending _NET_ACTIVE_WINDOW, the first param should be 1, to
2647         match gtk's (functioning) handling of this. This keep metacity
2648         from leaving droppings in the form of wm borders with no window
2649         contents all over the place.
2651         * Control.cs:
2652         - add a bunch of debug spew wrt control recreation.
2653         - fix a bug where we weren't tracking Visible properly on
2654         recreated hwnds.
2655         - fixed the WM_PAINT double buffer handling to support re-entrant
2656         calls (yes, i know it's gross, but it's happening to us).
2658 2006-10-17  Rolf Bjarne Kvinge  <rolfkvinge@ya.com>
2659         * ThemeWin32Classic.cs: changed drawing of selected days
2660         to make them look better.
2662 2006-10-16  Chris Toshok  <toshok@ximian.com>
2664         * Hwnd.cs: replace the user_data/client_dc/non_client_dc with
2665         drawing_stack.  Nuke the ClientDC/NonClientDC properties.
2667         * XplatUIX11.cs: move away from using hwnd.client_dc and
2668         hwnd.non_client_dc and on to a stack of dc's (and in window's
2669         case, PAINTSTRUCT's), so we can deal with nested Paint calls
2670         without puking or not disposing of Graphics objects.
2672         * XplatUIOSX.cs: same.
2674         * XplatUIWin32.cs: same.
2676 2006-10-03  Alexander Olk  <alex.olk@googlemail.com>
2678         * FileDialog.cs: Don't call on_directory_changed inside
2679           OnSelectedIndexChanged (it changes the SelectedIndex too).
2680           Instead move it to OnSelectionChangeCommitted.
2682 2006-10-13  Chris Toshok  <toshok@ximian.com>
2684         * XplatUIX11.cs: more Destroy work.  the current code does the
2685         following things, in order:
2687         1. Enumerates all handles of all controls at or below the one
2688         being destroyed, in pre-order.  As it is doing this, it marks the
2689         handles as zombie and clears all references to them.
2690         
2691         2. calls XDestroyWindow on the window passed in.
2693         3. SendMessage's WM_DESTROY to all he handles in the accumulated
2694         list.
2696 2006-10-13  Chris Toshok  <toshok@ximian.com>
2698         * XplatUIX11.cs: set hwnd.zombie to true before calling
2699         SendMessage (WM_DESTROY).  this keeps us from marking the new
2700         window a zombie, and also keeps us from calling sendmessage at
2701         all.
2703 2006-10-13  Jackson Harper  <jackson@ximian.com>
2705         * TextControl.cs: Do not show the caret and selection at the same
2706         time.  Reduces ugliness by 35%.
2708 2006-10-13  Chris Toshok  <toshok@ximian.com>
2710         * XplatUIX11.cs (SendWMDestroyMessages): set the hwnd to be a
2711         zombie after we do the recursive call, so we actually do call
2712         SendMessage on the children controls.
2713         (GetMessage): if we find a pending paint event for a zombie hwnd,
2714         remove the hwnd from the paint queue, or else it will always be
2715         there (and we'll effectively loop infinitely)
2717 2006-10-13  Mike Kestner  <mkestner@novell.com>
2719         * MenuItem.cs : add Selected format under keynav too.
2720         Fixes #79528.
2722 2006-10-13  Gert Driesen  <drieseng@users.sourceforge.net>
2724         * PropertyGrid.cs: Fixed some NRE's and small difference between our
2725         implementation and that of MS.
2727 2006-10-13  Chris Toshok  <toshok@ximian.com>
2729         * Control.cs (OnInvalidated) only futz with the invalid_region if
2730         the control is double buffered.  this fixes the apparent hang in
2731         the ListView unit tests.  Someone needs to make the
2732         BeginEndUpdateTest not call OnInvalidated 15004 times, though..
2734 2006-10-13  Chris Toshok  <toshok@ximian.com>
2736         * PropertyGridView.cs:
2738         - do a little refactoring so that only one place calls
2739         dropdown_form.Hide, and that is CloseDropDown.  make everywhere
2740         else call that.  Also make it Refresh, since there are redraw bugs
2741         otherwise (we should take a look at that...)
2743         - do a little more refactoring work to share the body of code
2744         involved with the drop down.  it was duplicated in the code
2745         dealing with the listbox handling and in the code dealing with the
2746         UITypeEditors.
2748         - add a Capture to the dropdown form's control once it's
2749         displayed, and add a MouseDown handler that checks to make sure
2750         the position is inside the control.  If it's not, close the
2751         dropdown.  This fixes #78190.
2753         - in SetPropertyValueFromUITypeEditor, only call SetPropertyValue
2754         if the value is different than the initial value.
2755         
2756 2006-10-13  Andreia Gaita  <shana.ufie@gmail.com>
2758         * Control.cs: see #78650
2759         - Fixed GetNextControl for several cases:
2760                 - Changed FindFlatForward to return 
2761                 correct sibling control when more than one
2762                 control has same TabIndex as the currently 
2763                 focused one.
2764                 - Changed FindFlatBackward to loop children
2765                 from last to first and apply same logic as in
2766                 FindFlatForward
2767                 - Changed FindControlForward to search for
2768                 children when control is not a container
2769                 but has children, or search for siblings if
2770                 control is a container...
2771                 - Changed FindControlBackward   to continue
2772                 searching for child controls when hitting 
2773                 Panel-like parents
2774                 
2775         - Fixed Focus method to update ActiveControl
2776         (FocusTest.FocusSetsActive failure)
2777         
2778         * TabControl.cs:
2779         - Focus rectangle now refreshes when gaining
2780         or losing focus
2781         - Removed grab for Tab key on IsInputKey that 
2782         was keeping tab navigation from working (#78650)
2784 2006-10-13  Chris Toshok  <toshok@ximian.com>
2786         * PropertyGridView.cs:
2787         - Rewrite SetPropertyValue to loop over SelectedGridItem's
2788         SelectedObjects.
2790         - Deal with GridItem.Value == null a few places.
2792         * PropertyGrid.cs: 
2793         - replace the PopulateGridItemCollection with a pair of methods
2794         which compute the intersection of all the properties in the
2795         SelectedObjects array.  Fixes #79615.
2797         - Throw ArgumentException from set_SelectedObjects if there's a
2798         null in the array.
2800         - Add GetTarget method which can be used to traverse up the
2801         GridItem.Parent chain.  It depends on the assumption that
2802         selected_objects for different GridEntries are always in the same
2803         order (a safe assumption).  Use this method and loop over all the
2804         selected objects in the entry when calling RemoveValueChanged and
2805         AddValueChanged.
2806         
2807         * GridEntry.cs: Make this handle multiple selected objects.
2808         .Value returns null if not all the selected objects share the same
2809         value.
2811 2006-10-12  Jonathan Pobst  <monkey@jpobst.com>
2812         * ToolStrip.cs, ToolStripButton.cs, ToolStripComboBox.cs,
2813           ToolStripControlHost.cs, ToolStripItem.cs, ToolStripLabel.cs,
2814           ToolStripProfessionalRenderer.cs, ToolStripProgressBar.cs,
2815           ToolStripSeparator.cs, ToolStripSplitStackLayout.cs,
2816           ToolStripTextBox.cs: Add accessibility, fix attributes/API and
2817         add additional functionality.
2819 2006-10-12  Mike Kestner  <mkestner@novell.com>
2821         * ErrorProvider.cs : new ToolTipWindow ctor sig.
2822         * HelpProvider.cs : new ToolTipWindow ctor sig.
2823         * ToolTip.cs : remove ToolTip param from Window sig since it is
2824         not used.
2825         * ToolBar.cs : add tooltip support.  Fixes #79565.
2827 2006-10-12  Rolf Bjarne Kvinge  <rolfkvinge@ya.com>
2829         * ComboBox.cs: move the events in set_SelectedIndex to 
2830         after the call to HighlightIndex in order to avoid 
2831         possible recursion and subsequent problems with the call
2832         to HighlightIndex and include a range check in 
2833         set_HighlightIndex. Fixes #79588
2834         
2835 2006-10-12  Rolf Bjarne Kvinge  <rolfkvinge@ya.com>
2837         * MonthCalendar.cs: When FirstDayOfWeek is default set firstday 
2838         to ui thread's settings instead of sunday. 
2839         * ThemeWin32Classic.cs: Localize the day string. Fixes #79563
2841 2006-10-12  Rolf Bjarne Kvinge  <rolfkvinge@ya.com>
2843         * DateTimePicker.cs
2844         * MonthCalendar.cs
2845         * ThemeWin32Classic.cs: rewrote DateTimePicker to fix bug #78364
2846         and implement missing functionality (selecting different parts 
2847         of the date and edit them individually with the keyboard).
2848         
2849 2006-10-11  Chris Toshok  <toshok@ximian.com>
2851         * Control.cs (OnInvalidated): fix NRE relating to last change.
2853 2006-10-11  Chris Toshok  <toshok@ximian.com>
2855         * XplatUIX11.cs (SetWMStyles): make sure we include the MAXIMIZED
2856         atoms in _NET_WM_STATE here if the window is maximized.  We need
2857         to do this because we're *replacing* the existing _NET_WM_STATE
2858         property, so those atoms will be lost otherwise, and any further
2859         call to GetWindowState will return Normal for a window which is
2860         actually maximized.  Fixes #79338.
2862 2006-10-11  Jackson Harper  <jackson@ximian.com>
2864         * TextControl.cs: Special case for setting selection end to
2865         selection start, we basically kill the anchor.
2866         - some todo comments.
2868 2006-10-11  Chris Toshok  <toshok@ximian.com>
2870         * Control.cs: switch to using an "invalid_region" to track which
2871         parts of the image buffer need updating.  This is more code than
2872         the simple fix from r66532.  That version just attempted to always
2873         fill the entire buffer on redraw, which turns out to be
2874         inefficient when invalidating small rectangles.  This version
2875         simply adds the invalid rectangle to the invalid region.  When we
2876         get any WM_PAINT message we see if it can be filled using the
2877         image buffer, and if it can't (if the paint event's clip rectangle
2878         is visible in the invalid region) we first fill the image buffer.
2879         So, the image buffer is still a cache, we just fill it lazily.
2881         * PaintEventArgs.cs: remove the SetClipRectangle method, we don't
2882         need it any longer.
2884 2006-10-11  Chris Toshok  <toshok@ximian.com>
2886         * XplatUIX11.cs (SetWindowPos): we need to update both position as
2887         well as size after calling XMoveResizeWindow.  This keeps us from
2888         ignoring future SetWindowPos calls.  Fixes the disappearing
2889         DateTimePicker in the ToolBarDockExample from bug #72499.
2891 2006-10-11  Chris Toshok  <toshok@ximian.com>
2893         * TextBoxBase.cs: reorder things a bit when it comes to
2894         resizing-causing-recalculation.  we were recalculating the
2895         document when our position was changed, which shouldn't happen.
2896         We only care about size changes.  Clear up some more redundant
2897         recalculation calls while I'm at it.  This makes the toolbar dock
2898         example snappy when you're just dragging toolbars around (since it
2899         causes a relayout whenever you move one.)
2901 2006-10-11  Chris Toshok  <toshok@ximian.com>
2903         * ToolBarButton.cs (get_Rectangle): this only returns
2904         Rectangle.Empty if Visible == false, or Parent == null.
2905         Parent.Visible doesn't matter.
2907 2006-10-10  Chris Toshok  <toshok@ximian.com>
2909         * Control.cs, PaintEventArgs.cs: "internal set { .. }" isn't loved
2910         by .net 1.1, so switch to an internal method instead.
2912 2006-10-10  Chris Toshok  <toshok@ximian.com>
2914         * Control.cs (WM_PAINT): when a control is double buffered we draw
2915         initially to the ImageBuffer and then copy from there.  But when a
2916         parent control which has child controls is double buffered, the
2917         initial drawing doesn't encompass the entire ClientRectangle of
2918         the parent control, so we end up with uninitialized bits (this is
2919         easily seen by dragging the top toolbar in
2920         wf-apps/ToolBarDockExample to the right, quickly).  The fix is to
2921         manually set the ClipRectangle of the paint_event (only the one we
2922         use to populate the ImageBuffer) to ClientRectangle.  Fixes more
2923         of the nastiness in bug #72499.
2925         * PaintEventArgs.cs: Add an internal setter for ClipRectangle,
2926         which we use in Control.cs's WM_PAINT handling.
2928 2006-10-10  Jackson Harper  <jackson@ximian.com>
2930         * TextBoxBase.cs: Finish off the autoscrolling stuff.
2932 2006-10-10  Chris Toshok  <toshok@ximian.com>
2934         * Cursor.cs: Apply a slightly different patch to the one suggested
2935         in #79609.
2937 2006-10-10  Jackson Harper  <jackson@ximian.com>
2939         * MenuItem.cs: Make sure to put the mdi child in the hashtable,
2940         not the parent form.
2941         * TextControl.cs: use difference in old line count vs new count to
2942         calculate how many lines were added, this takes into account soft
2943         line breaks properly.
2945 2006-10-10  Chris Toshok  <toshok@ximian.com>
2947         * LinkLabel.cs: don't call MeasureCharacterRanges against a
2948         rectangle located at 0,0 and the size of the text.  Use
2949         ClientRectangle instead.  This fixes rendering of non-left aligned
2950         link labels.
2952 2006-10-10  Jackson Harper  <jackson@ximian.com>
2954         * TextBoxBase.cs: When we set the selection start position the
2955         caret.
2956         * TextControl.cs: Need to update the caret when we decrement it to
2957         zero.
2958         - Make sure that the selection_visible flag gets reset to false if
2959         the selection isn't visible.  Before this you could get it set to
2960         visible by changing the selection start, then changing the end to
2961         equal the start.
2963 2006-10-09  Jackson Harper  <jackson@ximian.com>
2965         * TreeView.cs: Don't update scrollbars when we aren't visible.
2966         * TreeNodeCollection.cs: Only need to update scrollbars if being
2967         added to an expanded visible node or the root node.
2969 2006-10-09  Chris Toshok  <toshok@ximian.com>
2971         * XplatUIX11.cs (SendMessage): fix NRE.
2973 2006-10-09  Jackson Harper  <jackson@ximian.com>
2975         * TextBoxBase.cs: Implement horizontal autoscrolling.
2976         * TextControl.cs: Add a movement types that allows moving forward
2977         and backwards without wrapping.
2979 2006-10-09  Mike Kestner  <mkestner@novell.com>
2981         * ListViewItem.cs : layout changes for wrapped LargeIcon labels
2982         with focus "expansion" of labels.  Fixes #79532 and then some.
2983         * ThemeWin32Classic.cs : add LineLimit to ListView label format
2984         when wrapping.
2986 2006-10-09  Jackson Harper  <jackson@ximian.com>
2988         * TextBoxBase.cs: Set the default max values to MaxValue since
2989         we use the scrollbar for autoscrolling and the default value is
2990         100.  If we don't do this the caret won't keep up with typing
2991         after about 18 characters.
2992         * TextControl.cs: Make sure the selection is offset by the
2993         viewport x.  This fixes selection when using auto scrolling.
2995 2006-10-07  Andreia Gaita <shana.ufie@gmail.com>
2996         
2997         * Form.cs: The active control should be selected after the 
2998         OnLoad so that any child control initialization that affects
2999         the selection is done. Fixes #79406
3001 2006-10-06  Chris Toshok  <toshok@ximian.com>
3003         * XplatUIX11.cs: This is perhaps a dangerous change, but it seems
3004         to have no evil effects.
3006         - Stop selecting StructureNotifyMask on non-toplevel windows.
3008           The only way children should be resized is by using the SWF api,
3009           and we already send WM_WINDOWPOSCHANGED messages in those cases.
3010           Toplevel windows can be interacted with via the window manager,
3011           and so we keep the input mask there.
3013           The other event StructureNotifyMask gives us (that we care
3014           about) is DestroyNotify.  The code is already structured such
3015           that it assumes we won't be getting a DestroyNotify event for
3016           the window we pass to XDestroyWindow (which is what
3017           StructureNotifyMask is supposed to guarantee.)  So, that code
3018           shouldn't be affected by this either.
3020         - Stop selecting VisibilityChangeMask altogether.
3022           We weren't doing anything with the resulting events anyway.
3023         
3024         This vastly reduces the number of X requests and events we see
3025         when resizing/laying out a large ui.
3027 2006-10-06  Chris Toshok  <toshok@ximian.com>
3029         * ScrollableControl.cs (DisplayRectangle): we need to take into
3030         account the DockPadding regardless of whether or not auto_scroll
3031         == true.  rework this slightly to this effect, and fix bug #79606,
3032         and part of #72499 (you can now see the drag handles and drag
3033         toolbars around).
3035 2006-10-06  Gert Driesen  <drieseng@users.souceforge.net>
3037         * ListViewItem.cs: Collections of selected and checked items are now
3038         dynamically rebuilt. Whenever an item is (un)checked or (de)selected
3039         we mark the collection "dirty".
3040         * ListView.cs: Marked collections readonly. Modified UpdateSelection
3041         to only clear SelectedItems when a new item is selected and MultiSelect
3042         is enabled. CheckedItems and SelectedItems now subscribe to Changed
3043         event of ListViewItemCollection, and mark its list dirty whenever
3044         that event is fire. This allows us to return selected/checked items 
3045         in the same order as they are in the Items collection. This matches
3046         the MS behavior.
3048 2006-10-06  Chris Toshok  <toshok@ximian.com>
3050         * NotifyIcon.cs (HandleMouseUp): only show the context menu on
3051         right mouse clicks.  Fixes bug #79593.
3053 2006-10-06  Chris Toshok  <toshok@ximian.com>
3055         * Splitter.cs: doh, fix splitters that don't want to cancel the
3056         movement when you drag them.  Also, impose the limits on the
3057         values we send to the SplitterMovingEvent.  Fixes #79598.
3059 2006-10-06  Jackson Harper  <jackson@ximian.com>
3061         * TextBoxBase.cs: Ignore whether or not the scrollbar is enabled,
3062         since we use this for auto scrolling also.
3064 2006-10-05  Chris Toshok  <toshok@ximian.com>
3066         * DataGridBoolColumn.cs: Nuke the code from ConcedeFocus.  I'm
3067         beginning to think that most datagrid column types don't need this
3068         method.  Fixes bug #79392.
3070 2006-10-05  Chris Toshok  <toshok@ximian.com>
3072         * DataGrid.cs: move back to a more lazy scheme for creating the
3073         CurrencyManager, so we aren't updating it every time you set
3074         either DataSource or DataMember.  Also, don't call
3075         RecreateDataGridRows if the currency manager hasn't changed.
3077 2006-10-05  Chris Toshok  <toshok@ximian.com>
3079         * ComboBox.cs: by the time the OnSelectionChangeCommitted event is
3080         emitted, SelectedIndex should already be updated.  Fixes bug
3081         #78929.
3083 2006-10-05  Jonathan Pobst  <monkey@jpobst.com>
3085         * ToolStripComboBox.cs, ToolStripControlHost.cs, ToolStripProgressBar,
3086           ToolStripTextBox.cs: Initial commit.
3087         * ToolStripItem.cs: Fixes for OnLayout, BackColor, Parent.
3089 2006-10-05  Jackson Harper  <jackson@ximian.com>
3091         * TabControl.cs: We need to invalidate the tab control area when
3092         new ones are added (duh).
3094 2006-10-03  Chris Toshok  <toshok@ximian.com>
3096         * Form.cs (ProcessDialogKey): if the focused control is in this
3097         form and is a button, call its PerformClick method here.  Fixes
3098         #79534.
3100 2006-10-04  Jackson Harper  <jackson@ximian.com>
3102         * TabPage.cs: Ignore setting of Visible, and add an internal
3103         method for setting the controls visibility.  TabPage's Visible
3104         property is a little strange on MS, this seems to make us
3105         compatible, and fixes cases where people set all the tab pages to
3106         visible.
3107         * TabControl.cs: Use the new internal setting on tab pages
3108         visibility.
3110 2006-10-03  Mike Kestner  <mkestner@novell.com>
3112         * ComboBox.cs : raise Click on ComboTextBox clicks. Fixes #79555.
3114 2006-10-03  Mike Kestner  <mkestner@novell.com>
3116         * ListView.cs : use is_visible instead of Visible to check if 
3117         scrollbars should be placed/sized.  Also some max_wrap_width
3118         love for LargeIcon view.  [Fixes #79533]
3120 2006-10-03  Atsushi Enomoto  <atsushi@ximian.com>
3122         * TextControl.cs :
3123           Make set_TextAlign() do actually update the align. Fixed #78403.
3125 2006-10-03  Chris Toshok  <toshok@ximian.com>
3127         * DataGrid.cs: fix a crash when switching datasources if the
3128         vertical scrollbar is at someplace other than Value = 0.  Also,
3129         reduce the number of recalculation passes we do in SetDataSource
3130         from 2 to 1.
3132 2006-10-03  Jackson Harper  <jackson@ximian.com>
3134         * TextBoxBase.cs: Move the if value the same bail check up, we
3135         don't want to empty the document if it is already empty, this
3136         seems to severly mess up the caret.  TODO: I should probably fix
3137         the empty statement to update teh caret somehow.
3139 2006-10-03  Chris Toshok  <toshok@ximian.com>
3141         * ThemeWin32Classic.cs, DataGrid.cs: some changes so that the
3142         incredibly hacky Windows.Forms FAQ autosize rows entry (it uses
3143         reflection, an internal row type, properties on said type, etc.)
3144         will work with our datagrid.  Fixes #79531.
3146 2006-10-03  Alexander Olk  <alex.olk@googlemail.com>
3148         * FileDialog.cs: Don't crash if a path is not accessible
3149           (System.UnauthorizedAccessException). Fixes #79569.
3150         * MimeIcon.cs: Workaround for a Uri bug. Unix paths/files can have
3151           a ':' too. Return unknown icon for those paths/files.
3153 2006-10-03  Sebastien Pouliot  <sebastien@ximian.com>
3155         * ToolTip.cs: Fix rare, but possible, NRE on MouseEnter when 
3156         GetContainerControl returns null.
3158 2006-10-02  Chris Toshok  <toshok@ximian.com>
3160         * XplatUIX11.cs (GetWindowState): use hwnd.client_window in the
3161         call to XGetWindowAttributes instead of "handle".  fixes an X
3162         error using notifyicon after the NotifyIconWindow to Form base
3163         class switch.
3165 2006-10-02  Chris Toshok  <toshok@ximian.com>
3167         * XplatUIX11.cs (QueryPointer): new function, encapsulating the
3168         server grab and looping we need to do to get down to the most
3169         deeply nested child window.
3170         (SetCursorPos): use QueryPointer instead of GetCursorPos, and call
3171         QueryPointer again after the WarpPointer so we can generate a
3172         proper (fake) MotionNotify event to be enqueued in the destination
3173         window's queue.
3174         (GetCursorPos): call QueryPointer.
3176         Fixes #79556.
3178 2006-10-02  Jackson Harper  <jackson@ximian.com>
3180         * NotifyIcon.cs: Derive the notify icon from a form, so things
3181         like FindForm work on it.
3182         - Swallow the WM_CONTEXTMENU message, since that is generated on
3183         mouse down, and context menu is a mouse up kinda guy.  I believe
3184         the correct fix here is probably to make the notify icon entirely
3185         NC area, but this seems to work fine for anyone not manipulating
3186         WndProc.
3188 2006-10-02  Jonathan Pobst  <monkey@jpobst.com>
3190         * ToolStrip.cs, ToolStripButton.cs, ToolStripItem.cs,
3191           ToolStripItemCollection.cs, ToolStripLabel.cs,
3192           ToolStripProfessionalRenderer.cs, ToolStripRenderer.cs,
3193           ToolStripSeparator.cs, ToolStripSplitStackLayout.cs:
3194           Initial implementation.
3195         * TextRenderer.cs: Provide padding to MeasureText.
3197 2006-10-02  Sebastien Pouliot  <sebastien@ximian.com>
3199         * ButtonBase.cs: Fix CreateAccessibilityInstance to return an instance
3200         of ButtonBaseAccessibleObject. Fix bug #79552.
3202 2006-10-02  Jackson Harper  <jackson@ximian.com>
3204         * MdiWindowManager.cs: When maximizing use the containers client
3205         rect, not it's bounds, so nc area is accounted correctly.
3206         - Use the parent form's size for the menu position, since the
3207         client isn't always the full form size.
3209 2006-10-01  Chris Toshok  <toshok@ximian.com>
3211         * ScrollableControl.cs: make sure neither right_edge or
3212         bottom_edge are < 0, since they're used as LargeChange for the
3213         horiz/vert scrollbars respectively.  Fixes #79539.
3215 2006-10-01  Chris Toshok  <toshok@ximian.com>
3217         * NotifyIcon.cs: add NotifyIconWindow.InternalRecreateHandle, so
3218         the xplatuix11 code can cause us to destroy/recreate our handle.
3220         * XplatUIX11.cs
3221         (SystrayAdd):
3222         - this code can be invoked many times for the same Hwnd.  Make
3223           sure we only destroy the client window once (the first time this
3224           method is called).  This fixes bug #79544.
3225         - Remove the call to the improperly bound XSync.  why we had two
3226           bindings to this, I will never know, but this call resulted in
3227           events being discarded from the queue(!).
3228         - correct a misunderstanding of _XEMBED_INFO - the second atom is
3229           not our current state but the state we wish to be in.  So, 0 if
3230           we don't want to be mapped.  Change it to 1.
3231         (SystrayRemove): The XEMBED spec makes mention of the fact that
3232         gtk doesn't support the reparent of client windows away from the
3233         embedder.  Looking at gtksocket-x11.c seems to agree with this.
3234         The only avenue we have for removing systray icons is to destroy
3235         them.  We don't want the handle to go away for good, though, so
3236         call InternalRecreateHandle on the NotifyIconWindow.  Fixes
3237         #79545.
3238         
3239 2006-10-01  Chris Toshok  <toshok@ximian.com>
3241         * Form.cs (WndProc): inline the native_enabled variable usage into
3242         the cases in which it's used.  Fixes #79536.
3244 2006-09-29  Mike Kestner  <mkestner@novell.com>
3246         * ListView.cs : toggle the selection state for ctrl clicks in 
3247         multiselect mode. [Fixes #79417]
3249 2006-09-29  Mike Kestner  <mkestner@novell.com>
3251         * ListView.cs : kill CanMultiSelect and refactor the selection
3252         code to support multiselection in the absence of mod keys. Steal
3253         arrow/home/end keys by overriding InternalPreProcessMessage to
3254         restore regressed keynav behavior.
3255         [Fixes #79416]
3257 2006-09-29  Jackson Harper  <jackson@ximian.com>
3259         * MdiClient.cs: Repaint the titlebars when the active window is
3260         changed.
3262 2006-09-29  Chris Toshok  <toshok@ximian.com>
3264         * Application.cs: when entering a runloop with a modal, make sure
3265         the hwnd is enabled.  Fixes #79480.
3267 2006-09-29  Chris Toshok  <toshok@ximian.com>
3269         * DataGrid.cs (CurrentCell): if we try to navigate to the add row
3270         when ListManager.CanAddRows == false, bump us back one.
3272         * DataGridColumnStyle.cs (ParentReadOnly): remove the
3273         listmanager.CanAddRows check.  This makes ArrayLists uneditable
3274         using a datagrid, which is not right.
3275         (SetColumnValueAtRow): call IEditable.BeginEdit if source[rowNum]
3276         is an IEditable, but call property_descriptor.SetValue regardless.
3277         fixes #79435.
3279 2006-09-29  Chris Toshok  <toshok@ximian.com>
3281         * DataGridBoolColumn.cs: we need to test equality in the face of
3282         possible null values (as is the case with the default NullValue).
3283         This patch keeps us from crashing in that case.
3285 2006-09-29  Jackson Harper  <jackson@ximian.com>
3287         * TreeNodeCollection.cs: Don't do a recalculate/updatescrollbars
3288         here, since it will get called for every node collection in the
3289         tree. This is now done in the treeview once the sorting is
3290         finished.
3291         * TreeView.cs: Recalculate the visible order, and update the
3292         scrollbars after sorting, set the top nope to the root so that the
3293         recalc actually works.
3295 2006-09-29  Chris Toshok  <toshok@ximian.com>
3297         * LinkLabel.cs: more handling of the default link collection in
3298         the face of LinkArea manipulation.  The default link collection
3299         contains 1 element (start=0,length=-1).  If the user sets LinkArea
3300         to anything and the links collection is the default, clear it.
3301         Then only add the link if its nonempty.  Fixes #79518.
3303 2006-09-29  Chris Toshok  <toshok@ximian.com>
3305         * LinkLabel.cs (CreatePiecesFromText): calculate the length of a
3306         piece correctly when we hit a '\n'.  Fixes #79517.
3308 2006-09-29  Chris Toshok  <toshok@ximian.com>
3310         * MimeIcon.cs, ThemeGtk.cs, X11DesktopColors.cs, XplatUIX11GTK.cs:
3311         change the binding of gdk_init_check to take two IntPtr's, and
3312         pass IntPtr.Zero for both of them.  Fixes #79520.
3314 2006-09-29  Mike Kestner  <mkestner@novell.com>
3316         * ComboBox.cs : raise TextChanged on ComboTextBox.TextChanged.
3317         [Fixes #78779]
3319 2006-09-28  Jackson Harper  <jackson@ximian.com>
3321         * XplatUIX11.cs: When translating NC messages make sure we go from
3322         whole window to screen, not client window to screen.
3323         * MdiClient.cs: Remove the calls to PaintWindowDecorations, this
3324         method doesn't exist
3325         - Skip over controls that aren't forms when arranging.
3327 2006-09-28  Jackson Harper  <jackson@ximian.com>
3329         * XplatUIWin32.cs: Clip the rect to the parent window.
3330         * XplatUIStructs.cs: Add clipping modes struct.
3331         * InternalWindowManager.cs: New private method that factors title
3332         bar heights in when calculating the pos of an NC mouse message.
3333         - Use SendMessage to force a paint when the form's size is changed
3334         instead of painting the decorations immediately.
3335         - Don't let the NC button click messages get to DefWndProc,
3336         because they will attempt to handle windowing themself, and this
3337         messes up z-order (it will put them in front of the scrollbars).
3338         * XplatUIX11.cs: Make sure that we don't reset window managers if
3339         we already have one (ie the window is an MDI window).
3341 2006-09-28  Chris Toshok  <toshok@ximian.com>
3343         * MainMenu.cs: fix #79405 by way of a disgusting hack.  all the
3344         menu code really needs going over.
3346 2006-09-27  Chris Toshok  <toshok@ximian.com>
3348         * XplatUIX11.cs (SetWMStyles): more metacity wonderment.  turns
3349         out metacity ignores the MAXIMIZE_HORZ/VERT messages unless the
3350         window is maximizable.  So, we need to make sure that even if we
3351         clear the border/wm frame of those functions, they're still
3352         available (basically, we remove the decoration without removing
3353         the function).  Half the fix for #79338.
3355 2006-09-27  Chris Toshok  <toshok@ximian.com>
3357         * DataGrid.cs (ProcessGridKey): implement Shift-Tab handling.
3358         Fixes bug #79515.
3360 2006-09-27  Chris Toshok  <toshok@ximian.com>
3362         * Splitter.cs: reorder things a bit so that we don't actually
3363         draw/move the splitter until after calling OnSplitterMoving.  This
3364         lets users cancel/disallow the movement by explicitly setting
3365         event.SplitX/SplitY.  Fixes #79372.
3367 2006-09-27  Jackson Harper  <jackson@ximian.com>
3369         * XplatUIX11.cs: Don't hide the caret when it is being destroyed,
3370         because it is most likely on a window being destroyed, and that
3371         will give us an X11 error.
3373 2006-09-27  Chris Toshok  <toshok@ximian.com>
3375         * PropertyGridView.cs: half of the fix for #78190.  Clicking on
3376         the dropdown button now toggles between showing and hiding the
3377         dropdown.  Also, get rid of dropdown_form_showing and just use
3378         dropdown_form.Visible.  We still don't do a grab, but I'll leave
3379         that part to someone who has handled Capture-fu before.
3381 2006-09-27  Chris Toshok  <toshok@ximian.com>
3383         * DataGrid.cs: return false if alt isn't pressed when '0' is
3384         pressed.  this keeps the '0' key from being swallowed, and fixes
3385         bug #79350.
3387 2006-09-27  Chris Toshok  <toshok@ximian.com>
3389         * ComboBox.cs: use Invalidate when scrolling the dropdown list.
3390         Calling Refresh (in response to a scrollbar event) screws up the
3391         scrollbar painting.  Fixes bug #78923.
3393 2006-09-27  Chris Toshok  <toshok@ximian.com>
3395         * Theme.cs (SystemResPool): make the "if hashtable[key] == null
3396         then insert into hashtable" blocks threadsafe.
3398 2006-09-27  Chris Toshok  <toshok@ximian.com>
3400         * MessageBox.cs (CreateParams): the styles should be |'ed with our
3401         baseclass's, since otherwise the
3402         ControlBox/MinimizeBox/MaximizeBox assignments above have no
3403         effect.  This gets the close button back in messageboxes.
3405 2006-09-27  Chris Toshok  <toshok@ximian.com>
3407         * XplatUIX11.cs: make StyleSet and ExStyleSet check == with the
3408         flag, not just != 0.  this makes flags that are actually multiple
3409         bits (like WS_CAPTION) work.  fixes bug #79508.
3411 2006-09-27  Jordi Mas i Hernandez <jordimash@gmail.com>
3413         * PageSetupDialog.cs: add support for getting and settings the 
3414         paper size, source and orientation.
3416 2006-09-26  Chris Toshok  <toshok@ximian.com>
3418         * XplatUIX11.cs (SetWMStyles): turns out when SYSMENU is not set
3419         and caption == "", we need to remove the resize handles as well as
3420         the title bar.
3422         * Control.cs (set_Text): turns out that setting Text on a form
3423         should change the WM styles on the window, since if ControlBox ==
3424         false, the only way to get a window border is to have a non-""
3425         Text property.  check winforms/forms/text.cs for an example.  so,
3426         call both XplatUI.SetWindowStyle and XplatUI.Text here to properly
3427         update both window styles and title.  This fixes a lot of dialogs
3428         (including the preferences dialog in MonoCalendar.)
3430 2006-09-26  Chris Toshok  <toshok@ximian.com>
3432         * XplatUIWin32.cs (SetParent): if parent == IntPtr.Zero (and the
3433         control isn't a Form), call Win32ShowWindow to hide the window,
3434         but don't update the control Visible property.  When we reparent
3435         back to a parent control, call SetVisible in order for the
3436         window's visibility to be reinstated.
3438         * XplatUIX11.cs (SetParent): if hwnd.parent == null, reparent to
3439         the FosterParent.
3441         * Control.cs (ControlCollection.Remove): remove that value.Hide()
3442         call for good, since it breaks MonoCalendar (and other things I'm
3443         sure.) Also, set all_controls to null *after* the owner calls,
3444         which end up regenerating it.
3445         (ChangeParent): allow new_parent to be == null, passing
3446         IntPtr.Zero down to XplatUI.
3448         this fixes #79294 the right way.
3450 2006-09-26  Mike Kestner  <mkestner@novell.com>
3452         * GridEntry.cs : internal SetParent method.
3453         * PropertyGrid.cs : attach to property changed on the proper
3454         target if we have a hierarchical grid with subobjects. Setup
3455         GridItem.Parent for hierarchical items.
3456         * PropertyGridView.cs : Set value on the correct target for
3457         hierarchical grids. [Fixes #78903]
3459 2006-09-26  Chris Toshok  <toshok@ximian.com>
3461         * Control.cs (ChildNeedsRecreating): this should return true if
3462         either we're being recreated and the child is in our list, or our
3463         parent is waiting for our recreation.
3465 2006-09-26  Chris Toshok  <toshok@ximian.com>
3467         * Control.cs (ControlCollection.Remove): reinstate the
3468         value.Hide() call as suggested in bug #79294.
3470 2006-09-26  Sebastien Pouliot  <sebastien@ximian.com>
3472         * XplatUIX11.cs: Fixed SetCursorPos to move the cursor to screen
3473         coordinates (versus a relative move).
3475 2006-09-26  Chris Toshok  <toshok@ximian.com>
3477         * Control.cs: rework child recreation a little bit.  It turns out
3478         that we race between the DestroyNotify the WM_DESTROY message.  If
3479         the parent gets its DestroyNotify before the child gets the
3480         WM_DESTROY message, the child ends up not recreating (since the
3481         parent finishes its recreation on DestroyNotify, and the child
3482         checks ParentIsRecreating.)
3484         So, instead we store off a list of all the child controls which
3485         need to be recreated when the parent control starts to recreate
3486         itself.  Then, when child controls get their WM_DESTROY message we
3487         check to see if they're in the parent's pending recreation list,
3488         and if so, we recreate.  This removes all dependency on ordering
3489         from the code and fixes the initial MonoCalendar upgrade dialog.
3490         
3491 2006-09-26  Jackson Harper  <jackson@ximian.com>
3493         * TextControl.cs: Use the Line to get the length of the line,
3494         since soft line breaks can change the end line.
3496 2006-09-26  Chris Toshok  <toshok@ximian.com>
3498         * Control.cs (ControlCollection.AddImplicit): don't add the
3499         control again if it's already in one of our lists.  This keeps us
3500         from adding controls over and over again for comboboxes when their
3501         handle gets recreated (as the combobox adds implicit controls in
3502         OnHandleCreated).  Fixes the X11 errors in bug #79480.
3504 2006-09-26  Jackson Harper  <jackson@ximian.com>
3506         * TextControl.cs: When deleting characters make sure that any
3507         orphaned zero lengthed tags get deleted.
3508         - Fix ToString for zero lengthed tags.
3510 2006-09-25  Jackson Harper  <jackson@ximian.com>
3512         * TextControl.cs: When getting a tag at the location there can be
3513         multiple tags at the same spot, these are 0-lengthed tags that
3514         appear when extra formatting has been stuck in a location.  We
3515         need to pull out the last of these 0 lengthed tags.
3517 2006-09-25  Jackson Harper  <jackson@ximian.com>
3519         * TextControl.cs: Fix print out in debug method.
3520         * TextBoxBase.cs: When text is set bail if we are setting to the
3521         previous value.
3522         
3523 2006-09-24  Alexander Olk  <alex.olk@googlemail.com>
3525         * FontDialog.cs: Fixed the up/down arrow keys issue from bug #79478.
3526           It is now possible to change the selected index in a FontXXXListBox
3527           with the up and down arrow keys from the FontXXXTextBoxes.
3528           Also, send the FontXXXTextBox mouse wheel event to the corresponding
3529           FontXXXListBoxes to match ms.
3531 2006-09-22  Sebastien Pouliot  <sebastien@ximian.com>
3533         * SystemInformation.cs: Return a clone of the theme's MenuFont because
3534         anyone can dispose it, anytime. All other properties returns enums, 
3535         structs or basic types so they don't need such tricks.
3537 2006-09-22  Jackson Harper  <jackson@ximian.com>
3539         * XplatUI.cs:
3540         * XplatUIWin32.cs:
3541         * Clipboard.cs:
3542         * DataFormats.cs:
3543         * XplatUIOSX.cs:
3544         * XplatUIDriver.cs: Update interface to add a primary selection
3545         flag, so the driver can use the primary selection buffer if
3546         needed.
3547         * XplatUIX11.cs: Allow the clipboard to retrieve from PRIMARY.
3549         * RichTextBox.cs: We need to supply the data object to paste now
3550         (so we can choose to supply CLIPBOARD or PRIMARY).
3551         * TextBoxBase.cs: Supply data object to paste (see above).
3552         - Middle click uses the primary selection data object.
3553         
3554 2006-09-21  Chris Toshok  <toshok@ximian.com>
3556         * XplatUIX11.cs: first little cleanup of the StyleSet (...) block
3557         of SetWMStyles.  It's still a rat's nest and is largely
3558         order-dependent which I dislike immensely.  This also fixes the X
3559         button disappearing from toplevel forms.
3561 2006-09-21  Mike Kestner <mkestner@novell.com>
3563         * ListBox.cs: move Jordi's click/dblclick raising code to the
3564         mouse up handler.
3566 2006-09-21  Jordi Mas i Hernandez <jordimash@gmail.com>
3568         * ListBox.cs: Fixes 79450
3570 2006-09-21  Mike Kestner <mkestner@novell.com>
3572         * TreeView.cs: guard against disposed conditions in UpdateScrollbars
3573         to deal with people updating the TreeNodeCollection after the tree
3574         is disposed.  "Fixes" 79330.
3576 2006-09-20  Jackson Harper <jackson@ximian.com>
3578         * TextControl.cs: Push the cursor record onto the undo stack
3579         before the delete action. This fixes 78651.
3581 2006-09-20  Jonathan Chambers  <joncham@gmail.com>
3583         * PropertyGridView.cs: Remove WindowStyles.WS_VISIBLE from
3584         CreateParams. Fixes 79329.
3586 2006-09-19  Chris Toshok  <toshok@ximian.com>
3588         * XplatUIX11.cs: a couple of blanket code massage passes to clean
3589         things up a bit.  First, get rid of the NetAtoms array (and the NA
3590         enum), and just embed the atoms as static fields.  Also, add a
3591         couple of functions (StyleSet and ExStyleSet) to clean up all the
3592         bitmask testing of styles.
3594         * X11Structs.cs: remove the NA enum, not needed anymore.
3595         
3596 2006-09-19  Chris Toshok  <toshok@ximian.com>
3598         * XplatUIX11.cs: apply Alexander's tool window fix for bug #79245
3599         (mapping them to _NET_WM_WINDOW_TYPE_UTILITY).  and add a little
3600         added cleanup to get MessageBox titles appearing again, which were
3601         broken by my earlier fix for caption-less/ControlBox-less windows.
3603 2006-09-18  Jonathan Pobst <monkey@jpobst.com>
3605         * ToolStripArrowRenderEventArgs.cs, ToolStripArrowRenderEventHandler.cs,
3606           ToolStripContentPanelRenderEventArgs.cs, ToolStripContentPanelRenderEventHandler.cs,
3607           ToolStripGripRenderEventArgs.cs, ToolStripGripRenderEventHandler.cs,
3608           ToolStripItemClickedEventArgs.cs, ToolStripItemClickedEventHandler.cs,
3609           ToolStripItemEventArgs.cs, ToolStripItemEventHandler.cs,
3610           ToolStripItemImageRenderEventArgs.cs, ToolStripItemImageRenderEventHandler.cs,
3611           ToolStripItemRenderEventArgs.cs, ToolStripItemRenderEventHandler.cs,
3612           ToolStripItemTextRenderEventArgs.cs, ToolStripItemTextRenderEventHandler.cs,
3613           ToolStripPanelRenderEventArgs.cs, ToolStripPanelRenderEventHandler.cs,
3614           ToolStripRenderEventArgs.cs, ToolStripRenderEventHandler.cs,
3615           ToolStripSeparatorRenderEventArgs.cs, ToolStripSeparatorRenderEventHandler.cs:
3616             Inital import.
3617         * ToolStripPanel.cs, ToolStripContentPanel.cs, ToolStripSeparator.cs,
3618           ToolStripButton.cs: Stubs needed for above.
3619         * ToolStrip.cs, ToolStripItem.cs: Stub a few variables/properties for above.
3621 2006-09-15  Chris Toshok  <toshok@ximian.com>
3623         * XplatUIX11.cs:
3624         - make the MessageQueues hashtable Synchronized.
3625         
3626         - SendMessage: if the Hwnd is owned by a different thread, use the
3627         AsyncMethod stuff to dispatch the SendMessage on the hwnd's
3628         thread.  Fixes bug #79201.
3630 2006-09-15  Chris Toshok  <toshok@ximian.com>
3632         * XplatUIX11.cs (SetWMStyles): rework the #79368 fix slightly.  If
3633         ControlBox == false, we disallow maximize/minimize/close.  If the
3634         form Caption is "" we also disallow move (and get rid of the Title
3635         decoration).  Unfortunately, regardless of how things are set,
3636         we're stuck with the Title and WM menu.
3638 2006-09-15  Chris Toshok  <toshok@ximian.com>
3640         * Application.cs: add locking around the static message_filters
3641         ArrayList, part of #79196.
3643 2006-09-15  Chris Toshok  <toshok@ximian.com>
3645         * XplatUIX11.cs (SetWMStyles): if Form.Text == "" and
3646         Form.ControlBox == false, the window has no titlebar nor resize
3647         handles.  fixes bug #79368.
3649 2006-09-15  Chris Toshok  <toshok@ximian.com>
3651         * TextBoxBase.cs: in CalculateScrollBars make sure LargeChange is
3652         >= 0.  Fixes bug #79370.
3654 2006-09-15  Jonathan Pobst <monkey@jpobst.com>
3655         * FlowLayoutPanel.cs, FlowLayoutSettings.cs: Initial commit.
3656         * Control.cs:
3657             Add properties: LayoutEngine, Margin, DefaultMargin.
3658             Add method: GetPreferredSize.
3659             Move layout logic from PerformLayout to layout engines. 
3661 2006-09-13  Chris Toshok  <toshok@ximian.com>
3663         * XplatUIX11.cs: more destroy work.  Jackson pointed out that my
3664         fix for #79326 broke #78718, so this change addresses that.
3666         - in SendWMDestroyMessages remove the call to
3667         CleanupCachedWindows, since we might be recreating the control and
3668         need to maintain the references to right Hwnd handles.  Also, set
3669         the zombie flag to true for each of the children in the hierarchy
3670         instead of calling hwnd.Dispose.  This will cause GetMessage to
3671         ignore all events for the window except for DestroyNotify.
3673         - In GetMessage, ignore messages except for DestroyNotify for
3674         zombie hwnds.
3675         
3676         * Control.cs: revert the is_recreating fix from the last
3677         ChangeLog.  It's definitely "right", but it breaks switching from
3678         an MDI form to a non-MDI form.  Will need to revisit that.
3680         * Hwnd.cs: add a zombie flag, which means "the
3681         client_window/whole_window handles are invalid, but we're waiting
3682         for the DestroyNotify event to come in for them".  Set the flag to
3683         false explicitly if setting WholeWindow/ClientWindow, and also
3684         when Disposing.
3685         
3686 2006-09-13  Chris Toshok  <toshok@ximian.com>
3688         * XplatUIX11.cs: rework window destruction slightly.
3690         - when destroying the windows associated with a control, we don't
3691         need 2 separate XDestroyWindow calls.  Just the one for the
3692         whole_window (or for client_window if whole_window is somehow
3693         IntPtr.Zero -- can this happen?) is enough.
3695         - reworked SendWMDestroyMessages slightly, so we always dispose
3696         the child control hwnd's after sending the messages.
3697         
3698         - refactored out the ActiveWindow/FocusWindow/Caret clearing from
3699         the two places it was used (one was even using hwnd.Handle and the
3700         other hwnd.client_window.  ugh), adding another call in
3701         SendWMDestroyMessages.  We need this new call because now the
3702         DestroyNotify events in the queue will be ignored for the child
3703         controls (as their hwnd's were disposed, and the window id's
3704         removed from the hashtable in SendWMDestroyMessages.) fun, eh?
3706         - this fixes bug #79326.
3708 2006-09-13  Chris Toshok  <toshok@ximian.com>
3710         * Control.cs: don't always set is_recreating to false at the end
3711         of RecreateHandle, since sometimes we're not done (and won't be
3712         until WndProc handles the WM_DESTROY message).  Also, set
3713         is_recreating to false in the WM_DESTROY handling code.  Part of
3714         the fix for bug #79326.
3716 2006-09-13  Miguel de Icaza  <miguel@novell.com>
3718         * X11DesktopColors.cs: Start the droppage of debugging messages.
3720         * FileDialog.cs: Store the configuration file in ~/.mono/mwf_config
3722 2006-09-13  Jonathan Pobst <monkey@jpobst.com>
3724         * SplitContainer.cs, SplitterPanel.cs: Initial implementation [2.0].
3726 2006-09-12  Chris Toshok  <toshok@ximian.com>
3728         * DataGrid.cs (get_ListManager): if the list_manager is null, try
3729         to create it using SetDataSource.  Fixes bug #79151.
3731 2006-09-11  Chris Toshok  <toshok@ximian.com>
3733         * XEventQueue.cs: add a DispatchIdle property.
3735         * XplatUIX11.cs (UpdateMessageQueue): only emit the Idle event if
3736         either the queue is null, or the queue has DispatchIdle set to
3737         true.
3738         (DoEvents): set queue.DispatchIdle to false around the
3739         peek/translate/dispatch message loop in this method.  This keeps
3740         Application.Doevents from emitting idle events.  Part of the fix
3741         for #78823.
3743 2006-09-11  Chris Toshok  <toshok@ximian.com>
3745         * DataGrid.cs (set_DataSource): make this work for both the
3746         winforms/datagrid test and ReportBuilder.  It seems as though when
3747         we've created a ListManager (or maybe it's if we have a
3748         BindingContext?), when we set the DataSource it clears the
3749         DataMember to "".  otherwise we reuse the datamember.  Fixes bug
3750         #79333.
3752 2006-09-11  Chris Toshok  <toshok@ximian.com>
3754         * XplatUIX11.cs: deal with queue being null, which happens in all
3755         the Clipboard functions.  Fixes one of the two problems mentioned
3756         in #78612.
3758 2006-09-11  Chris Toshok  <toshok@ximian.com>
3760         * MenuAPI.cs: rework OnMouseUp a bit so that releasing the mouse
3761         button on various spots (including outside the menu) works closer
3762         to MS, and doesn't crash.  Fixes #79343.
3764 2006-09-11  Gert Driesen  <drieseng@users.sourceforge.net>
3766         * ListView.cs: Do not initialize item_sorter in init. To match MS,
3767         return null for ListViewItemSorter if View is SmallIcon or LargeIcon
3768         and the internal comparer is set. When a new ListViewItemSorter is set,
3769         sort the items. Use Enum.IsDefined to verify whether a valid SortOrder
3770         was specified. No further processing is necessary if SortOrder is set
3771         to it's current value. If Sorting is modified to None, and View is
3772         neither SmallIcon nor LargeIcon then: on 2.0 profile set item_sorter
3773         (either custom or our internal ItemComparer) to null, on 1.0 profile
3774         only set item_sorter to null if its our internal IComparer. If Sorting
3775         is modified to Ascending or Descending, then use our internal IComparer
3776         if none is set, and if the current IComparer is our internal one then:
3777         on 2.0 profile always replace it with one for new Sorting, and on 1.0
3778         profile only use new Sorting if view is not SmallIcon or LargeIcon. Use
3779         Enum.IsDefined to verify whether a valid View value is specified in
3780         its setter. Automatically sort listview items when listview is
3781         created. In Sort, do nothing if ListView is not yet created, or if
3782         no item_sorter is set (no Sorting was set, Sorting was explicitly set
3783         to None or ListViewItemSorter was set to null). Added Sort overload
3784         taking a bool to indicate whether the ListView should be redrawn when
3785         items are sorted (we use this in ListViewItemCollection to avoid double
3786         redraws). Modified our internal IComparer to take the sort order into
3787         account. In Add and AddRange methods of ListViewItemCollection, also
3788         call Sort if Sorting is None (necessary for SmallIcon and LargeIcon
3789         view), but use overload with noredraw option to avoid double redraw.
3790         On 2.0 profile, throw NotSupportedException when setting CheckBoxes to
3791         true when View is Tile, and do the same when attempting to set View to
3792         Tile when CheckBoxes is true. Avoid maintaining separate ArrayLists
3793         for selected/checked indices, as it involves overhead when sorting is
3794         done while these collections are not used all that often. Instead
3795         we'll build the indices on demand. Modified IList implementation of
3796         CheckedIndexCollection to use public methods if object is int.
3797         Modified CheckedListViewItemCollection to hide checked items if
3798         ListView.CheckBoxes is false. Removed LAMESPEC remark in 
3799         ListViewItemCollection as the .NET SDK docs have been fixed. Modified
3800         IList implementation in SelectedIndexCollection to use public methods
3801         if object is int. Modified SelectedListViewItemCollection to hide
3802         selected items if listview is not yet created.
3803         * ListViewItem.cs: CheckedIndices list no longer needs to be
3804         maintained separately (see ListView changes). Also clone font, fixes
3805         test failure.
3807 2006-09-11  Mike Kestner  <mkestner@novell.com>
3809         * ComboBox.cs: if we are updating the contents of the currently
3810         selected index, refresh the control or the textbox selection.
3811         [Fixes #79066]
3813 2006-09-11  Mike Kestner  <mkestner@novell.com>
3815         * ComboBox.cs (UpdateBounds): use SetBounds not SetBoundsCore since 
3816         the 'specified' logic has been moved there.  This seems like a bug 
3817         in Control.cs, since our current SetBoundsCore completely ignores 
3818         the specified parameter.  Peter's commit seems to indicate that is 
3819         the way the MS control implementation works.  [Fixes #79325]
3821 2006-09-10  Jonathan Chambers  <joncham@gmail.com>
3823         * XplatUI.cs: Set default_class_name to be composed
3824         of current domain id. This allows MWF to be loaded in multiple
3825         domains on Win32.
3827 2006-09-09  Miguel de Icaza  <miguel@novell.com>
3829         * X11Keyboard.cs: If we are unable to obtain the input method, do
3830         not call CreateXic to create the input context.   Should fix
3831         #78944/79276.
3833 2006-09-08  Alexander Olk  <alex.olk@googlemail.com>
3835         * MimeIcon.cs: Rewrote major parts. Dropped KDE support for now.
3836           Simplified gnome support by adding more pinvokes to get the
3837           icon for a file or mime type.
3839 2006-09-08  Jackson Harper  <jackson@ximian.com>
3841         * MenuAPI.cs: Deslect popup context menu items before closing the
3842         window, so that you don't see the previously selected item
3843         selected when you reopen the menu.
3844         * TextControl.cs: Update the cursor position even if we don't have
3845         focus.  This fixes typing in things like the ComboBox.  I'm not
3846         totally sure we should always set the visibility if we don't have
3847         focus, but couldn't find any corner cases where the cursor showed
3848         up when it shouldn't.
3850 2006-09-08  Chris Toshok  <toshok@ximian.com>
3852         * X11Keyboard.cs: In UpdateKeyState vkey can be any integer, but
3853         our arrays are length 256.  & 0xff before indexing.  Fixes the
3854         crash in bug #78077.
3855         
3856 2006-09-08  Carlos Alberto Cortez <calberto.cortez@gmail.com>
3858         * ThemeWin32Classic.cs: 
3859         * DateTimePicker.cs: Draw check box if DateTimePicker.ShowCheckBox
3860         is true. Handle that check box too.
3862 2006-09-07  Chris Toshok  <toshok@ximian.com>
3864         * MenuAPI.cs: move the PerformClick call to OnMouseUp.  Fixes bug
3865         79244.
3867 2006-09-07  Chris Toshok  <toshok@ximian.com>
3869         * Control.cs: in set_BackColor only do the work if
3870         background_color != value.
3872         * XplatUIX11.cs: move the clearing of invalid areas (both client
3873         and nc) to the same block of code where we set (nc_)expose_pending
3874         to false.  That is, move it from PaintEventEnd to PaintEventStart,
3875         so things that cause invalidates from within OnPaint will trigger
3876         another call to OnPaint.  Fixes bug #79262.
3878 2006-09-07  Alexander Olk  <alex.olk@googlemail.com>
3880         * Theme.cs: Use correct icon for UIIcon.PlacesPersonal
3881         * FileDialog.cs: Fix typo
3883 2006-09-07  Jackson Harper  <jackson@ximian.com>
3885         * ThemeWin32Classic.cs:  oops, forgot to commit.  Draw the images
3886         for tab pages if they have any.
3888 2006-09-06  Mike Kestner  <mkestner@novell.com>
3890         * Splitter.cs: use the "current" rect when finishing drag handle
3891         to avoid an artifact demonstrated by resedit.exe.  [Fixes #79251]
3893 2006-09-06  Mike Kestner  <mkestner@novell.com>
3895         * Splitter.cs: draw the drag handle at X or Y instead of 0 to deal
3896         support offset splitters. [Fixes #79298]
3898 2006-09-06  Alexander Olk  <alex.olk@googlemail.com>
3900         * Mime.cs: Fixed a bug that could override the global mime type
3901           result.
3903 2006-09-05  Jackson Harper  <jackson@ximian.com>
3905         * TabControl.cs: Better calculation method for setting the slider
3906         pos. Prevents crashes on really wide tabs.
3907         - Draw Image on tab pages if an image list is used.
3909 2006-09-02  Carlos Alberto Cortez <calberto.cortez@gmail.com>
3911         * MonthCalendar.cs: When Font changes, the Size should be
3912         updated to fit the new font's space requirements.
3914 2006-09-02  Alexander Olk  <alex.olk@googlemail.com>
3916         * ListBox.cs: If the items are cleared with Items.Clear set
3917           top_index to 0.
3919 2006-09-01  Carlos Alberto Cortez <calberto.cortez@gmail.com>
3921         * MonthCalendar.cs: Handle arrow keys as input keys. Also
3922         fire DateChanged event instead of DateSelected event when
3923         the date was changed by keyboard interaction.
3925 2006-09-01  Carlos Alberto Cortez <calberto.cortez@gmail.com>
3927         * DateTimePicker.cs: Handle DateChanged for the associated
3928         month_calendar control, and set month_calendar.Font from 
3929         OnFontChanged method, as well as resize the height of the
3930         control when needed. Make PreferredHeight proportional.
3932 2006-09-01  Chris Toshok  <toshok@ximian.com>
3934         * DataGrid.cs: grr, stop overthinking the DataMember/DataSource
3935         properties.
3937         * BindingContext.cs (HashKey.GetHashCode): use ^ instead of +.
3939 2006-09-01  Peter Dennis Bartok  <pbartok@novell.com> 
3941         * FileDialog.cs: Set ClientSize instead of window size, to allow space
3942           for decorations (Fixes #79219)
3944 2006-09-01  Mike Kestner  <mkestner@novell.com>
3946         * ComboBox.cs: first stab at sorting plus some selection handling
3947         fixes to bring us more in line with MS behavior.  Also switches back
3948         to index based selection.  Alternative patches for index-based 
3949         selection were provided by Jackson Harper, Carlos Alberto Cortez, 
3950         and latency@gmx.de on bug 78848.  I assume they were similar to this
3951         code I've had simmering in my tree forever.
3952         [Fixes #78848]
3954 2006-09-01  Chris Toshok  <toshok@ximian.com>
3956         * CurrencyManager.cs (ListChangedHandler): in the ItemAdded case,
3957         when setting list position guard against ending up with a -1 index
3958         (the other part of the fix for #78812).  Should probably make sure
3959         we don't need the analogous fix in the ItemDeleted case.
3961         * DataGrid.cs:
3962         - in SetDataSource, work around the fact that the way
3963         OnBindingContextChanged is invoked will cause us to re-enter this
3964         method.  I'll remove the hack once I investigate
3965         OnBindingContextChanged.
3967         - fix the logic in set_DataSource and set_DataMember (basically
3968         what to do if the other of the two is null.)
3969         
3970         - in OnListManagerItemChanged, we need to take into account the
3971         edit row when deciding whether or not to call RecreateDataGridRows
3972         (part of the fix for #78812).
3974 2006-09-01  Jackson Harper  <jackson@ximian.com>
3976         * Splitter.cs: Don't do anything if there is no control to affect
3977         (prevents us from crashing in weird tet cases).
3978         * TreeView.cs: Bounding box for the mouse movement reverting
3979         focus/selection back to previously selected node.  This matches
3980         MS, and makes the tree a lot more useable.
3981         * GroupBox.cs: Instead of drawing over the lines of the groupbox,
3982         use clipping so they are not drawn.  This fixes when the control
3983         is set to have a transparent background, or if it was over an
3984         image.
3986 2006-09-01  Alexander Olk  <alex.olk@googlemail.com>
3988         * MimeIcon.cs: Improved handling for reading default icons when
3989           using gnome (2.16 made it necessary). Check and read svg icons
3990           first, then 48x48 and then 32x32 icons.
3992 2006-08-31  Chris Toshok  <toshok@ximian.com>
3994         * DataGridTextBoxColumn.cs: only hide the textbox if it's still
3995         visible.
3997         * DataGridTextBox.cs: Pass Tab's up to the datagrid by calling
3998         ProcessKeyPreview.  Fixes part of #77806.
4000         * DataGrid.cs: big patch.
4002         - revert the queueing up of DataSource/DataMember if inside
4003         BeginInit/EndInit calls.  That's not the way the datagrid achieves
4004         its delayed databinding.  Instead, call SetDataSource in
4005         OnBindingContextChanged.  This mimic's MS's behavior, and fixes
4006         #78811.
4008         - Also, it wasn't mentioned in #78811, but the test case exhibits
4009         behavior that was lacking in our datagrid implementation - Columns
4010         that have mapping names that don't exist in the datasource's
4011         properties aren't shown.  Yuck.  To fix this I added the bound
4012         field to the column style, and basically any calculation to figure
4013         out anything about columns uses a loop to find the bound columns.
4014         still need to investigate if I can cache an array of the bound
4015         columns or if the indices must be the same.
4017         - When setting CurrentCell, we no longer abort if the cell being
4018         edited was in the add row.  This fixes the other part of #77806.
4020         - The new code also fixes #78807.
4021         
4022         * ThemeWin32Classic.cs: perpetrate the same disgusting
4023         column.bound field hack, and only render bound fields.
4025 2006-08-31  Chris Toshok  <toshok@ximian.com>
4027         * DataGridColumnStyle.cs: add bound field.  this field is true if
4028         the datasource has a property corresponding to the mapping name.
4030         * DataGridTableStyle.cs: set the bound field on the column styles
4031         depending on whether or not we have a column for that property.
4033 2006-08-31  Peter Dennis Bartok  <pbartok@novell.com> 
4035         * Splitter.cs (SetBoundsCore): Don't ignore width/height of the 
4036           splitter control (fixes #79228)
4038 2006-08-31  Chris Toshok  <toshok@ximian.com>
4040         * DataGridColumnStyle.cs: we need to delay the assignment of
4041         property descriptor until the last possible moment due to the lazy
4042         databinding stuff in the datagrid.  Also, fix the exceptions
4043         thrown by CheckValidDataSource to match MS.
4045 2006-08-31  Jackson Harper  <jackson@ximian.com>
4047         * Form.cs: When activated select the active control, if there is
4048         no active control, we select the first control.
4049         * XplatUIX11.cs: If there is no focus control when we get a
4050         FocusIn event, find the toplevel form and activate it.  This
4051         occurs when you popup a window, it becomes the focus window, then
4052         you close that window, giving focus back to the main window.
4054 2006-08-21  Carlos Alberto Cortez <calberto.cortez@gmail.com>
4056         * MonthCalendar.cs: 
4057         * ThemeWin32Classic.cs: Cache Font in bold style, as well
4058         as StringFormat with Center alignments in MonthCalendar,
4059         instead of creating new ones when drawing the control. 
4060         Also, draw the month name in bold style.
4062 2006-08-30  Peter Dennis Bartok  <pbartok@novell.com> 
4064         * Control.cs:
4065           - PerformLayout(): It would seem MS performs the fill even if the 
4066             control is not visible (part of #79218 fix)
4067           - ResetBackColor(): Use the setter to reset the color, to allow
4068             overriders to catch the change.
4069         * Form.cs:
4070           - .ctor: Call UpdateBounds to adjust client rectangle (part of #79218 fix)
4071           - CreateHandle(): dito (part of $79218 fix)
4072           - Don't set an icon if we have a dialog
4073         * ScrollableControl.cs:
4074           - set_AutoScrollMinSize: Setting the property enables AutoScroll (#79218)
4075           - ScrollIntoView(): No need to scroll if control is already visible
4076             (resolves fixme and fixes #79218)
4078 2006-08-30  Carlos Alberto Cortez <calberto.cortez@gmail.com>
4080         * MonthCalendar.cs: Change proportions in SingleMonthSize
4081         to match the aspect of the original control.
4083 2006-08-29  Alexander Olk  <alex.olk@googlemail.com>
4085         * XplatUIX11.cs: Fix for a metacity/X problem where windows don't
4086           get updated when they get maximized.
4088 2006-08-29  Peter Dennis Bartok  <pbartok@novell.com> 
4090         * XplatUIX11.cs: Handle windows with no border (Fixes part of #79160)
4092 2006-08-29  Chris Toshok  <toshok@ximian.com>
4094         * XplatUIX11.cs: when destroying the FocusWindow, send KILLFOCUS.
4096 2006-08-29  Jackson Harper  <jackson@ximian.com>
4098         * TreeView.cs: Need to track selected node and highlighted node,
4099         they aren't always the same thing, when the mouse is down on a
4100         node it is hilighted, but not selected yet.
4101         - Do the HideSelection stuff right
4102         - Need to focus on rbutton mouse down. And redraw selection when
4103         right click is mouse upped.
4105 2006-08-29  Mike Kestner  <mkestner@novell.com>
4107         * ThemeWin32Classic.cs: draw selections for columns in FullRowSelect
4108         when SubItems.Count < Columns.Count.  [Fixes #79167]
4110 2006-08-28  Peter Dennis Bartok  <pbartok@novell.com> 
4112         * TextControl.cs (FindCursor): Fix math error (Fixes #78402)
4114 2006-08-28  Peter Dennis Bartok  <pbartok@novell.com>
4116         * XplatUIX11.cs: Preempt the roundtrip for getting the location back
4117           from X. Only send based on ConfigureNotify if we don't have the
4118           correct location in hwnd (if the window manager moved us)
4120 2006-08-28  Mike Kestner  <mkestner@novell.com>
4122         * ListView.cs: remove a TODO. 
4123         * ThemeWin32Classic.cs: implement HideSelection support for ListView.
4124         [Fixes ListView part of #79166]
4126 2006-08-28  Mike Kestner  <mkestner@novell.com>
4128         * ListView.cs: move wheel handler to parent since it is focused
4129         instead of the item_control now.  [Fixes #79177]
4131 2006-08-28  Mike Kestner  <mkestner@novell.com>
4133         * ThemeWin32Classic.cs: only highlight subitems in fullrowselect
4134         when the control is focused. [Fixes #79171]
4136 2006-08-28  Mike Kestner  <mkestner@novell.com>
4138         * ListView.cs: size the item and header controls for empty and
4139         unscrollable views.
4140         * ThemeWin32Classic.cs: draw disabled backgrounds.
4141         [Fixes #79187]
4143 2006-08-28  Chris Toshok  <toshok@ximian.com>
4145         * Form.cs: remove unused "active_form" static field.
4147         * Hwnd.cs: lock around accesses to static windows collection.
4149         * Application.cs: lock threads in Exit ().
4151 2006-08-28  Chris Toshok  <toshok@ximian.com>
4153         * NativeWindow.cs: lock around accesses to window_collection.
4154         
4155 2006-08-28  Chris Toshok  <toshok@ximian.com>
4157         * Control.cs: err, fix this the right way, by locking on controls
4158         when using it.  not by making it synchronized.
4160 2006-08-28  Chris Toshok  <toshok@ximian.com>
4162         * Control.cs: make the static "controls" field synchronized, as it
4163         gets updated from multiple threads.
4165 2006-08-27  Peter Dennis Bartok  <pbartok@novell.com>
4167         * XplatUIX11.cs: PostQuitMessage is thread-specific not app-specific.
4168           Prevent other threads from exiting when calling thread sets quit state.
4169         * XEventQueue.cs: Added PostQuitState property
4171 2006-08-27  Chris Toshok  <toshok@ximian.com>
4173         * AsyncMethodData.cs: add a slot for the window handle.
4175         * XplatUIX11.cs (SendAsyncMethod): send the event to the right
4176         window (the destination control's window, not the foster window).
4178         * Control.cs (BeginInvokeInternal): store the window's handle in
4179         the AsyncMethodData.
4180         
4182 2006-08-27  Peter Dennis Bartok  <pbartok@novell.com>
4184         * XplatUIX11.cs:
4185           - PostQuitMessage: Removed resetting S.D display handle, we might have
4186             another loop started after calling PostQuitMessage (Fixes #79119)
4187           - Created destructor to reset S.D handle
4189 2006-08-27  Peter Dennis Bartok  <pbartok@novell.com> 
4191         * XplatUIX11.cs (SetCursor): Issue flush after setting the cursor (#79168)
4193 2006-08-23  Peter Dennis Bartok  <pbartok@novell.com>
4195         * TextControl.cs (Insert): Update the caret position even if we don't
4196           have a handle yet, just don't call the driver in that case.
4197         * TextBoxBase.cs (set_SelectedText): Set the Start and End selection
4198           to the end of the new selection text (Fixes #79184)
4200 2006-08-23  Peter Dennis Bartok  <pbartok@novell.com> 
4202         * Form.cs (Activate): Only activate if the handle is created)
4203         * Control.c:
4204           - Mark window as invisible when it's disposed
4205           - Check if window handle is created when setting window visible, 
4206             instead of relying just on the is_created variable
4207           - Check if object is disposed when creating the control (Fixes #79155)
4209 2006-08-23  Peter Dennis Bartok  <pbartok@novell.com>
4211         * ScrollableWindow.cs (ScrollWindow): Don't actually perform layouting
4212           when allowing layout again. Otherwise we re-generate the anchoring 
4213           distance to the border again and actually alter what the user wanted
4214           This is ugly, it'd be better if we used DisplayRectangle instead of
4215           ClientRectangle for Control.UpdateDistances, but that causes us to
4216           have other problems (initial anchoring positons would be wrong)
4217           (Fixes #78835)
4219 2006-08-23  Peter Dennis Bartok  <pbartok@novell.com> 
4221         * Control.cs:
4222           - The size and location setters shouldn't go directly to 
4223             SetBoundsCore, but to SetBounds, which triggers layout on the
4224             parent, then calls SetBoundsCore. (Related to fix for #78835)
4225           - SetBounds: Moved actual location update code into this function
4226             from SetBoundsCore, to match MS. Added call to PerformLayout if
4227             we have a parent (to trigger resizing of anchored parents if the 
4228             child size has changed (see testcase for #78835) 
4229         * ListBox.cs, Form.cs: Call SetBounds instead of SetBoundsCore to match 
4230           new control code
4231         * ScrollableControl.cs (CalculateCanvasSize): Use shortcut variable
4233 2006-08-23  Peter Dennis Bartok  <pbartok@novell.com>
4235         * XplatUIX11.cs: Don't reset the DisplayHandle that's stored in
4236           System.Drawing when a toplevel window gets closed; there might
4237           be other toplevel windows belonging to the same app (Fixes #78052)
4239 2006-08-26  Alexander Olk  <alex.olk@googlemail.com>
4241         * FileDialog.cs: After reading FileDialog settings from mwf_config
4242           use Desktop prefix only if a real folder doesn't exist anymore.
4243         * FontDialog.cs: Added char sets.
4244           It is now possible to select the font, size or style with the
4245           textboxes.
4247 2006-08-25  Kornél Pál  <kornelpal@gmail.com>
4249         * PrintPreviewDialog.cs: Use assembly name constants.
4251 2006-08-23  Peter Dennis Bartok  <pbartok@novell.com>
4253         * XplatUIWin32.cs (ScrollWindow): Use clipping rectangle arg (prevents
4254           scrollbar from whacking it's buttons)
4256 2006-08-24  Chris Toshok  <toshok@ximian.com>
4258         * ScrollableControl.cs: fix #78271.  There's a lot of misc stuff
4259         in this patch (aggregating setting Left/Top/Width/Height to
4260         setting Bounds on the scrollbars), but the crux of the fix is in
4261         Recalculate, where we scroll by the remaining scroll_position if
4262         we're hiding a scrollbar.  The 2*$5 reward in the comment is
4263         serious.
4265 2006-08-24  Jackson Harper  <jackson@ximian.com>
4267         * MdiClient.cs:
4268         * MdiWindowManager.cs: If the form is made a non-mdi window we
4269         need to remove the form closed event so that closing forms works
4270         correctly.
4272 2006-08-24  Jackson Harper  <jackson@ximian.com>
4274         * Control.cs: Make IsRecreating internal so that the driver can
4275         check it
4276         - Temporarily remove the Hide when controls are removed, its
4277         making a whole bunch of things not work because visibility isn't
4278         getting reset elsewhere correctly
4279         * Form.cs: Need to do a full handle recreation when the mdi parent
4280         is set.
4281         * XplatUIX11.cs: If we are recreating handles don't dispose the
4282         HWNDs.  What was happening is the handles were being recreated in
4283         SendWMDestroyMessages, but then flow continued on in that method
4284         and destroyed the new handles.
4286 2006-08-23  Jackson Harper  <jackson@ximian.com>
4288         * Form.cs: MdiClient is always at the back of the bus
4289         * Control.cs: When the order of items in the collection is changed
4290         we need to reset the all_controls array
4291         - do the same sorta setup thats done when adding a control when a
4292         control is set on the collection.
4294 2006-08-23  Peter Dennis Bartok  <pbartok@novell.com>
4296         * TextBoxBase.cs (get_Text): Return an empty array if our document
4297           is empty (fixes #79052)
4299 2006-08-23  Peter Dennis Bartok  <pbartok@novell.com> 
4301         * Control.cs: We should call IsInputChar on only on WM_CHAR but not
4302           on WM_SYSCHAR messages (fixes #79053)
4304 2006-08-23  Chris Toshok  <toshok@ximian.com>
4306         * DataGrid.cs: fix flickering when scrolling vertically.
4308 2006-08-23  Chris Toshok  <toshok@ximian.com>
4310         * DataGrid.cs (EndEdit): only invalidate the row header when we
4311         need to.
4313 2006-08-23  Chris Toshok  <toshok@ximian.com>
4315         * ThemeWin32Classic.cs: fix the clip munging of the datagrid paint
4316         methods.  fixes the flicker when scrolling around.
4318 2006-08-23  Peter Dennis Bartok  <pbartok@novell.com> 
4320         * FileDialog.cs: Making sure the control is created before we get a 
4321           chance to use it with BeginInvoke (Fixes #79096)
4323 2006-08-23  Chris Toshok  <toshok@ximian.com>
4325         * ThemeWin32Classic.cs (DataGridPaintRows): calculate the proper
4326         width to use when painting the rows.
4328 2006-08-23  Peter Dennis Bartok  <pbartok@novell.com> 
4330         * TextBoxBase.cs:
4331           - Throw ArgumentException if a negative value is passed to SelectionLength
4332           - Update the selection end if start is moved. end needs to be always
4333             after start. (Fixes #79095)
4334           - Track selection length; MS keeps the selection length even if start
4335             is changed; reset on all other operations affection selection
4337 2006-08-22  Jackson Harper  <jackson@ximian.com>
4339         * TreeView.cs: Make sure both scrollbars get displayed and sized
4340         correctly when the other bar is visible.
4341         - Use the original clip rectangle for checking if the area between
4342         the two scrollbars is visible, not the viewport adjusted clipping
4343         rectangle.
4345 2006-08-22  Jackson Harper  <jackson@ximian.com>
4347         * Binding.cs: We don't use IsBinding because it requires the
4348         control to be created, which really shouldn't be necessary just to
4349         set a property on the control.
4351 2006-08-21  Carlos Alberto Cortez <calberto.cortez@gmail.com>
4353         * ComboBox.cs: Some CB.ObjectCollection methods must throw
4354         ArgumentNullReferenceException when the argument is null.
4356 2006-08-21  Jackson Harper  <jackson@ximian.com>
4358         * Timer.cs: Track the thread that the timer is started in (NOT
4359         CREATED), this way messages for it will only be triggered on its
4360         queue.
4361         * XEventQueue.cs: Track the timers here, this makes timers per
4362         thread, like MS.
4363         * XplatUIX11.cs: The timers are moved to the XEventQueue.
4365 2006-08-19  Chris Toshok  <toshok@ximian.com>
4367         * XplatUIX11.cs: after further communication with pdb, we get the
4368         best of both worlds.  SetZOrder working for un-Mapped windows, and
4369         no X errors for un-mapped windows.
4371 2006-08-19  Chris Toshok  <toshok@ximian.com>
4373         * XplatUIX11.cs (SetZOrder): remove the if (!hwnd.mapped) check,
4374         as it was causing pdn toolbars to not have the correct stacking.
4376 2006-08-18  Mike Kestner  <mkestner@novell.com> 
4378         * ListView.cs : guard against negative ClientArea.Width in scrollbar
4379         calculation.  Not sure why control should ever be setting a negative
4380         width though.  Fixes #78931.
4382 2006-08-18  Carlos Alberto Cortez <calberto.cortez@gmail.com>
4384         * ComboBox.cs: Throw ArgumentNullException when adding/modifyng
4385         null items in ObjectCollection class.
4386         * ListBox.cs.: Likewise.
4388 2006-08-18  Atsushi Enomoto  <atsushi@ximian.com>
4390         * ThemeNice.cs, ThemeClearlooks.cs : remove RadioButton_DrawFocus()
4391           as the base method in ThemeWin32Classic should work fine.
4392           Fixed bug #78607.
4394 2006-08-18  Jackson Harper  <jackson@ximian.com>
4396         * Binding.cs: When validating if the value entered doesn't convert
4397         properly reset to the old value.
4398         * RadioButton.cs: Don't fire click when we get focus.
4400 2006-08-18  Jackson Harper  <jackson@ximian.com>
4402         * FileDialog.cs: Paint the selection on the directory combobox the
4403         same way as on MS. 
4405 2006-08-17  Jackson Harper  <jackson@ximian.com>
4407         * ErrorProvider.cs: Don't allow the error control to be selected.
4408         * Control.cs: Don't send the SetFocus messages, the control
4409         activation will do this, and if we do it blindly here validation
4410         does not work.
4412 2006-08-17  Jackson Harper  <jackson@ximian.com>
4414         * Control.cs:
4415         * ContainerControl.cs: Make validation events fire in the correct
4416         order.  TODO: For some reason the first validation event is not
4417         getting fired.
4419 2006-08-17  Mike Kestner  <mkestner@novell.com> 
4421         * ComboBox.cs : some null guarding for ComboListBox.Scroll.
4423 2006-08-17  Mike Kestner  <mkestner@novell.com> 
4425         * ComboBox.cs : implement scroll wheel support for popped-down
4426         state. Fixes #78945. 
4428 2006-08-17  Jackson Harper  <jackson@ximian.com>
4430         * TreeView.cs: Specify treeview actions (old patch that didn't get
4431         committed for some reason).
4432         - Don't let the mouse wheel scroll us too far.  Just want to make
4433         the bottom node visible, not scroll it all the ways to the top.
4435 2006-08-17  Jackson Harper  <jackson@ximian.com>
4437         * XplatUIX11.cs: Mouse wheel events go to the focused window.
4439 2006-08-17  Mike Kestner  <mkestner@novell.com> 
4441         * ComboBox.cs : don't do mouseover selection in simple mode.
4443 2006-08-16  Jackson Harper  <jackson@ximian.com>
4445         * Form.cs: Fire the closing events for all the mdi child windows
4446         when a window is closed.  If the cancel args are set to true, the
4447         main window still gets the event fired, but it doesn't not close.
4448         * MdiWindowManager.cs: Do this closing cleanup in a Closed
4449         handler, instead of when the button is clicked, so cancelling the
4450         close works correctly.
4451         * ComboBox.cs: Send the mouse down to the scrollbar.
4453 2006-08-16  Carlos Alberto Cortez <calberto.cortez@gmail.com>
4455         * ListBox.cs: When passing 'null' to SelectedItem,
4456         set SelectedIndex to -1, to unselect items. This is the
4457         observed behaviour in .Net.
4459 2006-08-16  Peter Dennis Bartok  <pbartok@novell.com> 
4461         * TextBoxBase.cs: Overriding HandleClick to get clicks in spite of
4462           MS flags saying there won't be any. (fixes #78800)
4463         * Control.cs (HandleClick): Made virtual
4465 2006-08-16  Atsushi Enomoto  <atsushi@ximian.com>
4467         * PageSetupDialog.cs : use Yard-Pound units only in en-GB and en-US
4468           cultures. Fixed bug #78399.
4470 2006-08-16  Jackson Harper  <jackson@ximian.com>
4472         * Form.cs: Use the MdiClients MdiChildren property to access
4473         MdiChildren instead of creating the array from the child controls.
4474         * MdiClient.cs: Maintain a separate array of the mdi children, so
4475         that insertion order is maintained when the Z-order is changed.
4477 2006-08-16  Mike Kestner  <mkestner@novell.com> 
4479         * ListView.cs : add an ItemComparer and default to it for sorting.
4480         Fixes #79076, but sorting needs a complete overhaul to be compat with
4481         MS.
4483 2006-08-15  Peter Dennis Bartok  <pbartok@novell.com> 
4485         * XplatUIX11.cs (SetZOrder): Fix debugging leftover (fixes #79080)
4487 2006-08-15  Peter Dennis Bartok  <pbartok@novell.com>
4489         * Hwnd.cs (Mapped): Properly traverse the tree
4491 2006-08-15  Chris Toshok  <toshok@ximian.com>
4493         * Binding.cs: fix PullData/SetPropertyValue.  We don't want to
4494         pass manager.Current.GetType() to ParseData.  It has to be the
4495         property type.  So, hold off doing the ParseData until we're in
4496         SetPropertyValue where we know the type.  This fixes the crash in
4497         #78821 but the textbox is still empty.
4499 2006-08-15  Chris Toshok  <toshok@ximian.com>
4501         * DataGrid.cs:
4502         - when we're scrolling, only call Edit() again if the
4503         current cell is still unobscured. Fixes bug #78927.
4504         - when handling mousedown on a cell, ensure the cell is visible
4505         before calling Edit.
4506         - remove the properties from DataGridRow, and remove the
4507         DataGridParentRow class altogether.
4508         
4510 2006-08-15  Peter Dennis Bartok  <pbartok@novell.com>
4512         * TextBoxBase.cs (set_Text): Don't use base.Text, instead just
4513           fire OnTextChanged by ourselves. There's no point calling base,
4514           we don't set the base value anywhere else. Fixes #78773.
4516 2006-08-15  Carlos Alberto Cortez <calberto.cortez@gmail.com>
4518         * ListBox.cs: Call CollectionChanged when modifying
4519         an item from Items indexer, to update the actual items
4520         in the list box.
4522 2006-08-15  Carlos Alberto Cortez <calberto.cortez@gmail.com>
4524         * PrintDialog.cs: Small fixes for focus and a pair of checks,
4525         to match .Net behaviour.
4527 2006-08-15  Peter Dennis Bartok  <pbartok@novell.com>
4529         * XplatUIX11.cs (SetZOrder): Handle raising toplevel windows
4531 2006-08-15  Peter Dennis Bartok  <pbartok@novell.com> 
4533         * Control.cs: Handle BringToFront for toplevel windows (Fixes #78737)
4535 2006-08-15  Peter Dennis Bartok  <pbartok@novell.com>
4537         * MessageBox.cs: Prevent potential NRE exception.
4538         * TextBoxBase.cs: AutoSize only applies if MultiLine is false. Fixes #78889
4540 2006-08-14  Peter Dennis Bartok  <pbartok@novell.com>
4542         * MessageBox.cs: Calculate the owner of a messagebox, also make
4543           it topmost. Fixes #78753
4545 2006-08-14  Chris Toshok  <toshok@ximian.com>
4547         * XplatUIX11.cs: A couple of fixes so that metacity will let us
4548         programmatically move windows.  first, set the PPosition hint as
4549         well as the USPosition hint.  Second include some code from pdb
4550         that sets the window type to NORMAL when we set the transient for
4551         hint.  This is because, in the absence of a window type, metacity
4552         thinks any window with TransientFor set is a dialog, and refuses
4553         to let us move it programmatically.  fascists.
4555 2006-08-14  Peter Dennis Bartok  <pbartok@novell.com>
4557         * XplatUIX11.cs: When setting normal hints, take into consideration
4558           an different hints previously set so we don't delete them (fixes #78866)
4560 2006-08-12  Chris Toshok  <toshok@ximian.com>
4562         * ToolBarButton.cs: make Layout return a boolean, if something to
4563         do with the button's layout changed.
4565         * ToolBar.cs:
4566         - add another parameter to Redraw, @force, which all existing
4567           calls set to true.
4568         - make the Layout function return a boolean which is true if the
4569           layout has actually changed.  Redraw now uses this (and @force)
4570           to determine when to invalidate.  At present the only place
4571           where @force can be false is the call from OnResize, when
4572           background_image == null.  So, resizing a toolbar when the
4573           layout doesn't change results in no drawing.
4575 2006-08-12  Chris Toshok  <toshok@ximian.com>
4577         * ThemeWin32Classic.cs: fix the bottom right corner painting.  had
4578         the VScrollBar and HScrollbar reversed.  oops.
4580         * DataGrid.cs: fix the logic that assigns sizes to the implicit
4581         scrollbars.  we were assigning them twice (once in
4582         Calc{Horiz,Vertical}Scrollbar, and once in CalcGridAreas),
4583         therefore causing two scrollbar resizes (and redraws?) to happen
4584         per grid resize.
4586 2006-08-12  Chris Toshok  <toshok@ximian.com>
4588         * ToolBarButton.cs: redraw the entire button if the theme tells us
4589         to.
4591         * Theme.cs: add ToolBarInvalidateEntireButton.
4593         * ThemeWin32Classic.cs: we don't need to redraw the entire toolbar
4594         buttons, just the border.
4596         * ThemeNice.cs: redraw the entire toolbar button since we need to
4597         draw the highlight image.
4599         * ThemeClearlooks.cs: the rounded corners of toolbar buttons mean
4600         we need to redraw the entire button (not just the border).
4602 2006-08-11  Peter Dennis Bartok  <pbartok@novell.com>
4604         * TextBoxBase.cs (CalculateScrollbars): Set the proper thumb size
4605           for vertical bars. Fixes the mismatches shown by #78513
4607 2006-08-11  Alexander Olk  <alex.olk@googlemail.com>
4609         * FileDialog.cs: If a saved/remembered path doesn't exist
4610           anymore, fall back to "Desktop".
4612 2006-08-11  Peter Dennis Bartok  <pbartok@novell.com>
4614         * Form.cs (CreateParams): Don't use Parent.Handle unless we have a
4615           parent. It's apparently legal to not have one
4616         * XplatUIX11.cs:
4617           - SetZOrder: Don't try to set Z-Order on an unmapped window
4618           - CreateWindow: 0,0 are legal coordinates for a window. don't move
4619             it unless the coordinates are negative
4621 2006-08-10  Mike Kestner  <mkestner@novell.com>
4623         * ListControl.cs: allow null for DataSource.  Clear DisplayMember
4624         when setting to null per msdn docs.  Fixes #78854.
4626 2006-08-10  Chris Toshok  <toshok@ximian.com>
4628         * Menu.cs, MainMenu.cs, MenuAPI.cs: get rid of most of the
4629         flickering by setting a clip rectangle on the Graphics when we
4630         need to redraw just a particular menuitem.  Also, rename "OnClick"
4631         to "OnMouseDown" to reflect what it actually is.
4632         
4633         * Form.cs: track the OnMouseDown change.
4635 2006-08-10  Peter Dennis Bartok  <pbartok@novell.com>
4637         * CommonDialog.cs: Properly inherit the CreateParams from the form
4638           and only change what we need. Fixes #78865
4640 2006-08-10  Chris Toshok  <toshok@ximian.com>
4642         * ToolBar.cs, ToolBarButton.cs: fix the redraw-on-highlight
4643         flickering in flat mode (and most of the flickering in general) by
4644         only invalidating the button border (and not the entire rectangle)
4645         when the state changes.  A couple of cases still flicker:
4646         ToggleButtons, and the dropdown arrow case when the user mouse
4647         ups.
4649 2006-08-10  Alexander Olk  <alex.olk@googlemail.com>
4651         * X11Keyboard.cs: Fixed handling of the Del key on the cursorblock
4652           for german keyboards. Numlock state shouldn't affect the behaviour
4653           of the Del key. Fixes bug #78291.
4655 2006-08-10  Chris Toshok  <toshok@ximian.com>
4657         * ListControl.cs: remove the items.Clear line from BindDataItems,
4658         as this is the first thing done by both subclasses in their
4659         SetItemsCore overrides.  Also, add a ItemChanged handler, and when
4660         passed -1, refresh the list.  This gets databinding working when
4661         the datasource is set on the list before the datasource is
4662         populated (as in wf-apps/ReportBuilder.)
4664         * ComboBox.cs: remove the argument to BindDataItems.  This call
4665         should really go away, and be initiated by the ListControl code.
4667         * ListBox.cs: same.
4669 2006-08-09  Peter Dennis Bartok  <pbartok@novell.com>
4671         * TextControl.cs (Document.ctor): Initialize caret so we don't crash
4672           if no data is in the document when the control is displayed
4674 2006-08-09  Peter Dennis Bartok  <pbartok@novell.com> 
4676         * TextBoxBase.cs: Don't try moving the caret if we don't have a window
4677           yes (fixes #78806)
4678         * TextControl.cs: 
4679           - PositionCaret: Allow positioning of caret but don't call methods 
4680             requiring a handle if the window isn't created yet
4681           - CharIndexToLineTag: Fix ending loop early error. Lines is 1 based
4682           - owner_HandleCreated: Don't position the caret, just update it's 
4683             location. User might have already set a different position
4685 2006-08-09  Peter Dennis Bartok  <pbartok@novell.com>
4687         * XplatUIWin32.cs: Don't use the desktop as basis for foster-parented
4688           windows. Screws up the returned coordinates for child windows. 
4689           Fixes #78825. I'm hoping this doesn't break something, since the
4690           code was explicitly put in 8 months ago, but no bug was attached.
4691           Menus still seem to work properly.
4693 2006-08-08  Chris Toshok  <toshok@ximian.com>
4695         * DataGrid.cs: make BeginInit/EndInit actually do what they're
4696         supposed to do - delay data binding until the EndInit call.  Also,
4697         make the table style collection's CollectionChangeAction.Refresh
4698         work properly.
4700         * GridTableStylesCollection.cs: raise a CollectionChangeEvent
4701         (with action = Refresh) when a consituent table's MappingName is
4702         changed.
4704 2006-08-08  Chris Toshok  <toshok@ximian.com>
4706         * ToolBarButton.cs: in set_Text, call Parent.Redraw, not
4707         Invalidate, since changing the text can change the size of the all
4708         toolbar buttons.
4710 2006-08-08  Peter Dennis Bartok  <pbartok@novell.com>
4712         * Form.cs (AddOwnedForm): Still need to add the form to our listif
4713           we don't have it yet
4715 2006-08-08  Chris Toshok  <toshok@ximian.com>
4717         * PrintControllerWithStatusDialog.cs: don't .Close() the status
4718         dialog, as this causes X errors later on, since we actually
4719         destroy the window.  Instead, .Hide() it.
4721 2006-08-08  Peter Dennis Bartok  <pbartok@novell.com>
4723         * ComboBox.cs: Added focus reflection for popup window
4724         * XplatUIX11.cs: 
4725           - Removed transient setting for non-app windows for now, not sure it
4726             was needed
4727           - Fixed logic checking if we have captions when deciding 
4728             override_redirect, WS_CAPTION is two bits and a 0 check was not
4729             sufficient
4730           - Removed the WINDOW_TYPE stuff, it was unneeded and making things
4731             complicated
4732         * Form.cs: 
4733           - AddOwnedForm: Don't just add the form to the list, call the property
4734             to ensure the driver is informed about the ownership as well
4735           - CreateHandle: Set the TopMost status in the driver if we have an owner
4736         * XplatUI.cs: Fixed debug statement
4738 2006-08-08  Jonathan Pobst <monkey@jpobst.com>
4739         * ButtonRenderer.cs, CheckBoxRenderer.cs, ComboBoxRenderer.cs
4740           GroupBoxRenderer.cs, ProgressBarRenderer.cs, RadioButtonRenderer.cs,
4741           ScrollBarRenderer.cs, TabRenderer.cs, TextBoxRenderer.cs, 
4742           TrackBarRenderer.cs: Make constructor private.
4743         * ProfessionalColors.cs, ProfessionalColorTable.cs: Fix misnamed properties.
4744         * ProfessionalColorTable.cs: Make properties virtual.
4746 2006-08-06  Duncan Mak  <duncan@novell.com>
4748         * NumericUpDown.cs (Value): Don't call OnValueChanged if the value
4749         is not changing.
4751 2006-08-04  Jonathan Pobst <monkey@jpobst.com>
4752         * ButtonRenderer.cs, CheckBoxRenderer.cs, ComboBoxRenderer.cs
4753           GroupBoxRenderer.cs, ProfessionalColors.cs, ProfessionalColorTable.cs,
4754           ProgressBarRenderer.cs, RadioButtonRenderer.cs, ScrollBarRenderer.cs,
4755           TabRenderer.cs, TextBoxRenderer.cs, TextRenderer.cs, TrackBarRenderer.cs:
4756           Initial import of new 2.0 classes.
4758 2006-08-04  Jonathan Pobst <monkey@jpobst.com>
4759         * Application.cs: Add 2.0 VisualStyles properties.
4761 2006-08-04  Jonathan Pobst <monkey@jpobst.com>
4762         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs, XplatUIWin32.cs,
4763           XplatUIX11.cs: Create property to allow access to existing private
4764           variable "themes_enabled"
4766 2006-08-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
4768         * ImageListStreamer.cs: generate the MemoryStreams with the exact BMP
4769         file size, as otherwise our class libraries fail using windows. Fixes
4770         bug #78759.
4772 2006-08-04  Jackson Harper  <jackson@ximian.com>
4774         * Form.cs:
4775         * XplatUIX11.cs: Move the toolwindow window manager creation into
4776         the X11 driver, this way on win32 we can let windows create/handle
4777         the toolwindows.
4779 2006-08-04  Carlos Alberto Cortez <calberto.cortez@gmail.com>
4781         * PrintDialog.cs: Remove some redundant checks, add some others,
4782         clean some code, and move the focus to the text boxes when the
4783         values are incorrect.
4785 2006-08-04  Alexander Olk  <alex.olk@googlemail.com>
4787         * FontDialog.cs: Remove Form.MinimumSize. It's not needed.
4789 2006-08-03  Alexander Olk  <alex.olk@googlemail.com>
4791         * NumericUpDown.cs: Setting the Minimum and Maximum is now
4792           handled correctly. Fixes bug #79001.
4794 2006-08-03  Carlos Alberto Cortez <calberto.cortez@gmail.com>
4796         * PrintDialog.cs: The "Copies" numeric up down must have
4797         set the Minimum property to 1; only if the value is bigger
4798         than 1, activate "Collate" check box. This is the behaviour of .Net.
4799         Also modify the Document elements only if it is not null.
4801 2006-08-03  Jackson Harper  <jackson@ximian.com>
4803         * TreeNodeCollection.cs: Fix copyto to use the correct nodes
4804         length. (We have a larger array then actual node count).
4805                 
4806 2006-08-03  Jackson Harper  <jackson@ximian.com>
4808         * ComboBox.cs: Don't show selection by default.
4809         - The SelectAll isn't needed here, since the focus code should do
4810         that
4811         - DDL style lists to manual selection drawing, so when they
4812         get/lose focus they have to invalidate.
4814 2006-08-03  Peter Dennis Bartok  <pbartok@novell.com>
4816         * TextBoxBase.cs: Don't always show all selections by default.
4818 2006-08-03  Jonathan Pobst  <monkey@jpobst.com>
4819         * ControlUpdateMode.cs, DataSourceUpdateMode.cs,
4820           HelpNavigator.cs, WebBrowserEncryptionLevel.cs:
4821           Fixed various typos.
4823 2006-08-03  Alexander Olk  <alex.olk@googlemail.com>
4825         * Control.cs: Removing the controls in a ControlCollection with
4826           Clear now hides the controls as expected. Fixes bug #78804. 
4828 2006-08-03  Jackson Harper  <jackson@ximian.com>
4830         * Control.cs: Revert previous focus patch, it breaks reflector.
4832 2006-08-03  Jackson Harper  <jackson@ximian.com>
4834         * ComboBox.cs: Cleanup selection and focus with the combobox.
4835         This also eliminates some duplicated keyboard code, since now
4836         everything is handled by the main class.
4837         - Make list selection work on mouse up instead of down, to match
4838         MS.
4840 2006-08-02  Jackson Harper  <jackson@ximian.com>
4842         * Control.cs: Setting focus needs to go through the whole
4843         selection mechanism.
4845 2006-08-02  Chris Toshok  <toshok@ximian.com>
4847         * PrintPreviewDialog.cs: change MinimumSize to use
4848         base.MinimumSize so it works.
4850 2006-08-02  Peter Dennis Bartok  <pbartok@novell.com>
4852         * TextControl.cs:
4853           - UpdateCaret: Added sanity check in case caret isn't defined yet
4854           - Line.Delete: Now updating selection and caret markers if we're
4855             transfering a node (Properly fixes #78323)
4856           - SetSelectionEnd: Added sanity check
4857         * TextBoxBase.cs: Removed broken attempt to fix #78323
4859 2006-08-01  Chris Toshok  <toshok@ximian.com>
4861         * PrintPreviewDialog.cs: the CancelEventArgs stuff surrounding the
4862         Close() call is handled in Form, not here.
4864 2006-08-01  Chris Toshok  <toshok@ximian.com>
4866         * Theme.cs, ThemeWin32Classic.cs: fix the PrintPreviewControl
4867         layout/rendering.
4869         * PrintPreviewDialog.cs: add scrollbars, and add an image cache
4870         for sizes < 100% zoom.  The code now aggressively attempts to keep
4871         from calling document.Print (), and tries not to use the scaling
4872         g.DrawImage whenever possible (it still does if you scale to >
4873         100%, since usually that involves huge images).
4875         * PrintPreviewControl.cs: hook up the close button.
4877 2006-08-01  Jonathan Pobst  <monkey@jpobst.com>
4878         * ColumnClickEventHandler.cs, DrawItemEventHandler.cs,
4879           ItemChangedEventHandler.cs, ItemCheckEventHandler.cs,
4880           ItemDragEventHandler.cs, LabelEditEventHandler.cs,
4881           LinkClickedEventHandler.cs, LinkLabelLinkClickedEventHandler.cs,
4882           MeasureItemEventHandler.cs, MethodInvoker.cs, PaintEventHandler.cs,
4883           PropertyTabChangedEventHandler.cs, PropertyValueChangedEventHandler.cs,
4884           SelectedGridItemChangedEventHandler.cs, ToolBarButtonClickEventHandler.cs:
4885           Removed [Serializable] for 2.0 Event Handlers.
4887 2006-07-31  Jackson Harper  <jackson@ximian.com>
4889         * TextBoxBase.cs: Make ShowSelection invalidate when changed.
4890         * TextControl.cs: Uncomment out the body of this method.
4892 2006-07-31  Alexander Olk  <alex.olk@googlemail.com>
4894         * XplatUIX11.cs: Use the correct cursor shapes for arrow and default
4895           standard cursors.
4897 2006-07-31  Peter Dennis Bartok  <pbartok@novell.com>
4899         * TextBoxBase.cs: Added internal property ShowSelection to allow controls
4900           that embed TextBox and need selections visible even if textbox is not
4901           focused to enforce that behaviour.
4902         * TextControl.cs (Draw): Use ShowSelection instead of has_focus to determine
4903           selection drawing
4905 2006-07-31  Peter Dennis Bartok  <pbartok@novell.com>
4907         * TextControl.cs:
4908           - Added new SetSelectionStart/SetSelectionEnd overloads
4909           - Fixed viewport width assignment to be accurate
4910           - Adjusted alignment line shift calculations to allow cursor on right
4911             aligned lines to be always visible at the right border (like MS)
4912         * TextBoxBase.cs:
4913           - SetBoundsCore: Re-adjust caret location after resize (Fixes #78323)
4914           - TextBoxBase_SizeChanged: recalculating canvas on size changes
4915           - CalculateScrollBars: Use ViewPort size instead of window size, to
4916             properly consider space occupied by the border and scrollbars 
4917             (Fixes #78661)
4918           - hscroll_ValueChanged, vscroll_ValueChanged: Fixed scroll 
4919             calculations; no longer leaves artifacts
4920           - CaretMoved: Adjusted window scrolling to match MS and fixed several
4921             calculation bugs (Still missing right/center align calculations)
4923 2006-07-31  Peter Dennis Bartok  <pbartok@novell.com> 
4925         * XPlatUIWin32.cs: Made ScrollRectEx a bit more flexible, and removed
4926           use of both scroll rect and clip rect, as they do the same.
4928 2006-07-31  Peter Dennis Bartok  <pbartok@novell.com>
4930         * Control.cs (WM_CHAR WndProc): 2.0 profile allows changing the key 
4931           in the event handler (fixes #78912)
4933 2006-07-31  Chris Toshok  <toshok@ximian.com>
4935         * ThemeWin32Classic.cs: use grid.RowsCount here instead of
4936         grid.ListManager.Count, since grid.ListManager might be null.
4937         This of course begs the question "why are we drawing rows for a
4938         grid with no list manager (and therefor no rows)?"  Fixes the
4939         crash in bug #78929.
4941 2006-07-31  Chris Toshok  <toshok@ximian.com>
4943         * RelatedPropertyManager.cs: Don't always chain up to the parent
4944         ctor.  instead, call SetDataSource if the parent's position is !=
4945         -1.  Fixes the crash in #78822.
4947 2006-07-31  Chris Toshok  <toshok@ximian.com>
4949         * DataGrid.cs (get_ListManager): use field instead of property
4950         accessors for datasource and datamember.
4951         (RowsCount): make internal again.
4952         (OnMouseDown): end edits before resizing columns/rows.
4953         (OnMouseUp): restart edits after resizing columns/rows.
4955 2006-07-30  Peter Dennis Bartok  <pbartok@novell.com>
4957         * XplatUIX11.cs: Default cursor cannot be 0 or it will not get set.
4958           This fixes the situation where the last set cursor is displayed
4959           whenever the mouse is over scrollbars.
4961 2006-07-30  Carlos Alberto Cortez <calberto.cortez@gmail.com>
4963         * PrintDialog.cs: Fix the behaviour of PrinterSettings and
4964         Document properties, as well as initial values.
4966 2006-07-29  Peter Dennis Bartok  <pbartok@novell.com>
4968         * XplatUIWin32.cs (SetBorderStyle): Setting both border
4969           and ClientEdge results in a 3-pixel border, which is
4970           wrong.
4972 2006-07-28  Jackson Harper  <jackson@ximian.com>
4974         * TreeNodeCollection.cs: Fix the clear method.
4975         - Fix the Shrink also
4977 2006-07-27  Jackson Harper  <jackson@ximian.com>
4979         * TreeView.cs: Make sure the visible order is computed when we
4980         attempt to size the scrollbars (for trees that mess with the
4981         scrolling when they shouldn't.
4982         - Make sure to give the scrollbars valid values.
4984 2006-07-26  Peter Dennis Bartok  <pbartok@novell.com> 
4986         * XplatUIX11.cs: Move motion compression code to where it
4987           has less performance impact
4989 2006-07-26  Jackson Harper  <jackson@ximian.com>
4991         * UpDownBase.cs: When the control is selected make the child
4992         controls non selectable, so that a click on them won't do a
4993         focus/unfocus cycle.
4994         - Don't give focus to the text box when the spinner is selected.
4995         * XEventQueue.cs: Peek on both the x11 queue and the lock queue.
4997 2006-07-26  Chris Toshok  <toshok@ximian.com>
4999         * ThemeWin32Classic.cs: add print preview rendering.  I'm not
5000         satisfied with this solution.  If the bitmaps are small, we should
5001         just cache them in the PrintPreviewDialog and draw them here.
5002         Also, the layout is broken for the 2-up and 3-up cases.
5004         * Theme.cs: add PrintPReviewControlPaint.
5006         * PrintPreviewDialog.cs: first pass implementation.
5008         * PrintPreviewControl.cs: first pass implementation.  No
5009         scrollbars yet.
5011         * PrintDialog.cs: only validate fields if that particular portion
5012         of the UI is enabled.  Also, set the document's controller to a
5013         PrintControllerWithStatusDialog wrapping the document's print
5014         controller.
5016         * PrintControllerWithStatusDialog.cs: if we're printing to a file,
5017         bring up a SaveFileDialog (i hope we don't want to match the
5018         behavior of the crappy windows file entry) and set the
5019         PrinterSettings.PrintFileName accordingly.
5021 2006-07-26  Jackson Harper  <jackson@ximian.com>
5023         * ContainerControl.cs: Add a field that disables auto selecting
5024         the next control in a container when the container is activated.
5025         * UpDownBase.cs: Don't select the text box when the up down is
5026         selected.
5028 2006-07-26  Peter Dennis Bartok  <pbartok@novell.com> 
5030         * XEventQueue.cs: Added methods for peeking (used for compression
5031           of successive events)
5032         * XplatUIX11.cs (GetMessage): We're now compressing consecutive
5033           mouse move events (fixes #78732)
5035 2006-07-25  Jackson Harper  <jackson@ximian.com>
5037         * UpDownBase.cs: Use an internal class for the textbox so that we
5038         can control focus.  the updown control should always have focus,
5039         if either the text area or the buttons are clicked.
5040         - Send the key messages to the textbox, since it never actually
5041         has focus
5042         - Activate and decativate the textbox caret.
5044 2006-07-24  Jackson Harper  <jackson@ximian.com>
5046         * Control.cs: Use the directed select when selecting a control,
5047         this way the container controls override will get called and the
5048         whole ActiveControl chain will get triggered.  TODO: probably need
5049         to make sure this gets done everywhere instead of the old
5050         Select(Control).
5051         * ContainerControl.cs: Implement the directed Select method to
5052         find and activate the correct child control.    
5053         
5054 2006-07-22  Mike Kestner  <mkestner@novell.com>
5056         * Form.cs: use Control.MousePosition for NCLBUTTONDOWN in the menu
5057         menu handling code so that clicks without a grab work too.
5058         [Fixes #78914]
5060 2006-07-22  Alexander Olk  <alex.olk@googlemail.com>
5062         * FileDialog.cs: Enable the BackButton when dirstack has one element.
5063           Added some small optimizations.
5065 2006-07-21  Matt Hargett  <matt@use.net>
5067         * Control.cs: Implemented 2.0 MinimumSize/MaximumSize properties
5069 2006-07-21  Peter Dennis Bartok  <pbartok@novell.com> 
5071         * Control.cs (GetNextControl): Fixes to make all of Jackson's unit 
5072           tests pass and match MS in some strange border cases.
5074 2006-07-21  Chris Toshok  <toshok@ximian.com>
5076         * ThemeWin32Classic.cs: handle drawing of the relation links and
5077         parent row buttons.
5079         * Theme.cs: change args to DataGridPaintParentRow.
5081         * DataGrid.cs: Don't use controls for the relation links and
5082         parent buttons, so we have to handle all their interactions in
5083         MouseMove, MouseDown, MouseUp, etc.  Also, store a lot more stuff
5084         when we're navigating through child tables, so we can reinstate
5085         selection, expanded state, current cell, etc.
5087 2006-07-20  Chris Toshok  <toshok@ximian.com>
5089         * ToolBar.cs: When we redraw a button, for whatever reason,
5090         there's no reason to redraw the entire toolbar.  Also, don't call
5091         Control.Refresh from within Redraw, as it's much heavier than
5092         Invalidate (which is really what we want).
5094 2006-07-20  Chris Toshok  <toshok@ximian.com>
5096         * DataGrid.cs, CurrencyManager.cs, DataGridColumnStyle.cs,
5097         DataGridTextBoxColumn.cs, DataGridTextBox.cs,
5098         ThemeWin32Classic.cs, ListControl.cs: After staring at stack
5099         traces from within a debug IBindingList datasource
5100         (in mono/winforms/datagrid) for *days*, I've finally gotten things
5101         to work in a similar fashion.
5103 2006-07-20  Carlos Alberto Cortez <calberto.cortez@gmail.com>
5105         * ListBox.cs: Don't call Sort () when setting 
5106         the Sorted property to false (avoid an unnecessary sort).
5108 2006-07-20  Carlos Alberto Cortez <calberto.cortez@gmail.com>
5110         * ListControl.cs: DataSource should throw an ArgumentException
5111         instead of a normal exception when the argument is not of the 
5112         correct type.
5114 2006-07-20  Mike Kestner  <mkestner@novell.com>
5116         * Control.cs: add InternalPreProcessMessage to allow us to steal
5117         key events before MWF gets its paws on them.  Adapted from a
5118         suggestion by eno.
5119         * ToolBar.cs: add GotLostFocus handing for flat toolbars, with 
5120         up/down/left/right navigation. Override the new internal control
5121         method to steal the events since they never make it to WndProc.
5122         * ToolBarButton.cs: don't worry about pushed when setting hilight
5123         since the drawing code prefers pushed to hilight. Invalidate on 
5124         Hilight changes. Fixes #78547 and #78525.
5126 2006-07-20  Peter Dennis Bartok  <pbartok@novell.com> 
5128         * ScrollableControl.cs: Consider AutoScrollMinSize when calculating
5129           the canvas size. Fixes #78868
5131 2006-07-20  Peter Dennis Bartok  <pbartok@novell.com>
5133         * Splitter.cs: Track requested split position until first layout
5134           is performed. Fixes #78871
5136 2006-07-20  Peter Dennis Bartok  <pbartok@novell.com> 
5138         * Application.cs: Removed code that forces 1.x for the version
5139           number if the version started with 0. Not sure why that code was
5140           there and I couldn't find any bugs that indicated we needed it.
5141           Fixes #78869
5143 2006-07-20  Alexander Olk  <alex.olk@googlemail.com>
5145         * ThemeWin32Classic.cs: Don't throw a NotImplementedException in
5146           ResetDefaults(), just write some output to the console until it's
5147           implemented. Fixes bug #78907 for now. Eliminated two warnings.
5149 2006-07-19  Jonathan Chambers  <joncham@gmail.com>
5151         * PropertyGridView.cs: set StartPosition of drop down forms
5152         so they appear in correct initial spot.  Fixes #78190.
5154 2006-07-19  Mike Kestner  <mkestner@novell.com>
5156         * ThemeWin32Classic.cs: use parent background color when drawing
5157         flat toolbars.  Restructure the conditionals to make sure non-flat
5158         non-Divider toolbars are filled too.  Fixes #78837.
5160 2006-07-19  Mike Kestner  <mkestner@novell.com>
5162         * ListBox.cs: Sort on collection changes even if the handle
5163         isn't created yet.  Fixes #78813.
5165 2006-07-18  Carlos Alberto Cortez <calberto.cortez@gmail.com>
5167         * ListControl.cs: DisplayMember should never be null,
5168         and now we assign String.Empty when null is passed to it (this
5169         is the .Net way).
5171 2006-07-17  Mike Kestner  <mkestner@novell.com>
5173         * ListViewItem.cs: restructure Font and subitem Font handling 
5174         to hold a specific font and refer back to owner on null.
5175         Fixes #78761.
5177 2006-07-17  Mike Kestner  <mkestner@novell.com>
5179         * ToolBar.cs: bandaid for side-effect of previous patch which was
5180         discarding explicit heights for non-AutoSize toolbars.  Need to
5181         extend my format tester to deal with AutoSize=false. Fixes #78864.
5183 2006-07-15  Jackson Harper  <jackson@ximian.com>
5185         * LabelEditTextBox.cs:
5186         * TreeView.cs: Use a new LabelEdit class for node editing, this
5187         class automatically 'closes' itself when it gets the enter key or
5188         loses focus.
5189         - Use the client rectangle when setting the trees scrollbars, so
5190         border style is taken into account.
5191         
5192 2006-07-14  Jackson Harper  <jackson@ximian.com>
5194         * TreeNode.cs:
5195         * TreeView.cs: Make the editing work similar to MSs, firing the
5196         events correctly and ending edits correctly.
5198 2006-07-14  Mike Kestner  <mkestner@novell.com>
5200         * ToolBarButton.cs:
5201         * ToolBar.cs: layout restructuring and redraw enhancements to support
5202         formatting changes gracefully, like setting TextAlign, ImageList, 
5203         ButtonSize, and Appearance.  Handles explicit button sizing quirks
5204         of the MS controls.  Things like flat toolbars ignoring button size
5205         but becoming constant sized at the largest button's size.  Normal
5206         toolbars with an image set cannot be shrunk smaller than the image,
5207         but text can be clipped/ignored.
5208         * ThemeWin32Classic.cs: don't draw text if text_rect height or width
5209         is zero.  Seems like DrawString should be smart enough to not put
5210         anything on screen though. Also trim labels and ellipsize at the char
5211         boundary, not word.
5212         Fixes #78711 and #78483.
5214 2006-07-14  Alexander Olk  <alex.olk@googlemail.com>
5216         * FolderBrowserDialog.cs: Disable "New Folder" button and
5217           "New Folder" contextmenu menuitem if a folder like "My Computer"
5218           is selected.
5220 2006-07-14  Alexander Olk  <alex.olk@googlemail.com>
5222         * FileDialog.cs: Don't create a new folder in "MyComputer" folder.
5223         * FolderBrowserDialog.cs:
5224           - Use MWFConfig to store and read size and position settings
5225           - Added code to create a new folder (button or context menu).
5226             Use TreeView labeledit to change the name of the new folder.
5228 2006-07-14  Jackson Harper  <jackson@ximian.com>
5230         * TreeView.cs: Raise the OnAfterLabelEdit event correctly.  Also,
5231         when the tree is scrolled we end editing.
5233 2006-07-14  Alexander Olk  <alex.olk@googlemail.com>
5235         * ThemeWin32Classic.cs: Fixed position of CPDrawScrollButton Up and
5236           Down arrows
5238 2006-07-14  Jonathan Pobst  <monkey@ipobst.com> 
5240         WebBrowserProgressChangedEventHandler.cs, BindingCompleteEventArgs.cs,
5241         BindingCompleteEventHandler.cs, BindingManagerDataErrorEventArgs.cs,
5242         BindingManagerDataErrorEventHandler.cs, CacheVirtualItemsEventArgs.cs,
5243         CacheVirtualItemsEventHandler.cs, ColumnReorderedEventArgs.cs,
5244         ColumnReorderedEventHandler.cs, ColumnWidthChangedEventArgs.cs,
5245         ColumnWidthChangedEventHandler.cs, ColumnWidthChangingEventArgs.cs,
5246         ColumnWidthChangingEventHandler.cs, FormClosedEventArgs.cs,
5247         FormClosedEventHandler.cs, FormClosingEventArgs.cs,
5248         FormClosingEventHandler.cs, ItemCheckedEventArgs.cs,
5249         ItemCheckedEventHandler.cs, ListControlConvertEventArgs.cs,
5250         ListControlConvertEventHandler.cs, ListViewItemMouseHoverEventArgs.cs,
5251         ListViewItemMouseHoverEventHandler.cs, ListViewItemSelectionChangedEventArgs.cs,
5252         ListViewItemSelectionChangedEventHandler.cs,
5253         ListViewVirtualItemsSelectionRangeChangedEventArgs.cs,
5254         ListViewVirtualItemsSelectionRangeChangedEventHandler.cs,
5255         MaskInputRejectedEventArgs.cs, MaskInputRejectedEventHandler.cs,
5256         PopupEventArgs.cs, PopupEventHandler.cs, PreviewKeyDownEventArgs.cs,
5257         PreviewKeyDownEventHandler.cs, RetrieveVirtualItemEventArgs.cs,
5258         RetrieveVirtualItemEventHandler.cs, SearchForVirtualItemEventArgs.cs,
5259         SearchForVirtualItemEventHandler.cs, SplitterCancelEventArgs.cs,
5260         SplitterCancelEventHandler.cs, TabControlCancelEventArgs.cs, 
5261         TabControlCancelEventHandler.cs, TabControlEventArgs.cs, 
5262         TabControlEventHandler.cs, TableLayoutCellPaintEventArgs.cs,
5263         TableLayoutCellPaintEventHandler.cs, ToolStripDropDownClosedEventArgs.cs,
5264         ToolStripDropDownClosedEventHandler.cs, ToolStripDropDownClosingEventArgs.cs,
5265         ToolStripDropDownClosingEventHandler.cs, TreeNodeMouseClickEventArgs.cs,
5266         TreeNodeMouseClickEventHandler.cs, TreeNodeMouseHoverEventArgs.cs,
5267         TreeNodeMouseHoverEventHandler.cs, TypeValidationEventArgs.cs,
5268         TypeValidationEventHandler.cs, WebBrowserDocumentCompletedEventArgs.cs,
5269         WebBrowserDocumentCompletedEventHandler.cs, WebBrowserNavigatedEventArgs.cs,
5270         WebBrowserNavigatedEventHandler.cs, WebBrowserNavigatingEventArgs.cs,
5271         WebBrowserNavigatingEventHandler.cs, 
5272         WebBrowserProgressChangedEventArgs.cs: New 2.0 Event Handlers
5274 2006-07-14  Jonathan Pobst  <monkey@ipobst.com>
5276         MergeAction.cs, PowerLineStatus.cs, PowerState.cs, PreProcessControlState.cs,
5277         RichTextBoxLanguageOptions.cs, ScreenOrientation.cs, ScrollOrientation.cs,
5278         SearchDirectionHint.cs, SystemParameter.cs, TabControlAction.cs,
5279         TableLayoutPanelCellBorderStyle.cs, TextDataFormat.cs, TextImageRelation.cs,
5280         ToolStripDropDownCloseReason.cs, ToolStripDropDownDirection.cs,
5281         ToolStripGripDisplayStyle.cs, ToolStripGripStyle.cs,
5282         ToolStripItemAlignment.cs, ToolStripItemDisplayStyle.cs,
5283         ToolStripItemImageScaling.cs, ToolStripItemOverflow.cs,
5284         ToolStripItemPlacement.cs, ToolStripLayoutStyle.cs,
5285         ToolStripManagerRenderMode.cs, ToolStripRenderMode.cs,
5286         ToolStripStatusLabelBorderSides.cs, ToolStripTextDirection.cs,
5287         ToolTipIcon.cs, TreeNodeStates.cs, TreeViewDrawMode.cs,
5288         TreeViewHitTestLocations.cs, UnhandledExceptionMode.cs, ValidationConstraints.cs,
5289         WebBrowserEncryptionLevel.cs, WebBrowserReadyState.cs, WebBrowserRefreshOption.cs,
5290         ArrowDirection.cs, AutoCompleteMode.cs, AutoCompleteSource.cs, AutoSizeMode.cs,
5291         AutoValidate.cs, BatteryChargeStatus.cs, BindingCompleteContext.cs,
5292         BindingCompleteState.cs, CloseReason.cs, ColumnHeaderAutoResizeStyle.cs,
5293         ControlUpdateMode.cs, DataSourceUpdateMode.cs, DockingBehavior.cs,
5294         FixedPanel.cs, FlowDirection.cs, GetChildAtPointSkip.cs,
5295         HtmlElementInsertionOrientation.cs, InsertKeyMode.cs, ListViewHitTestLocations.cs,
5296         ListViewItemStates.cs, MaskFormat.cs: Added
5298 2006-07-13  Jonathan Chambers  <joncham@gmail.com>
5300         * PropertyGridView.cs: Fix keyboard navigation of drop down.
5301         Patch from eno for bug 78558.
5302         
5303 2006-07-13  Jackson Harper  <jackson@ximian.com>
5305         * TreeView.cs: When an edit is finished make sure that the
5306         selected node is visible.
5307         - When setting the top/bottom use the scrollbars is_visible, so
5308         everything will be set correctly even if the tree isn't visible
5309         yet.
5311 2006-07-13  Jackson Harper  <jackson@ximian.com>
5313         * ComboBox.cs: Revert the item->index part of my previous patch.
5314         * TreeView.cs: Use LostFocus instead of Leave for detecting when
5315         the edit box has lost focus (duh).
5316         - Just make the edit box not visible when we get return, that will
5317         take the focus, which will call EndEdit
5318         * TreeNode.cs When we start editing, notify the treeview.
5320 2006-07-12  Jackson Harper  <jackson@ximian.com>
5322         * ComboBox.cs: Clear out old items before setting the item list.
5323         This prevents databound controls from having their items added
5324         twice.
5325         - Switch the combobox to use indices whereever possible instead of
5326         using Item's.  This allows usto navigate through lists that have
5327         more then one item with the same string value (ie a, b, b, a).
5328         - Scroll the listboxes scrollbar when a non visible item is
5329         highlighted
5330         - Allow keypress to cycle through all the possible values. For
5331         example if you have b1, b2, b3 and hold down the B key all the
5332         values will be cycled through.
5333         
5334 2006-07-12  Jackson Harper  <jackson@ximian.com>
5336         * TextBoxBase.cs:
5337         * ListView.cs: Don't need to override SETFOCUS anymore, we can do
5338         this using the internal methods.
5339         * Control.cs: Add OnGotFocusInternal.  A new method that allows
5340         controls to "override" OnGotFocus and change focus behavior if
5341         needed.
5342         - Same thing for LostFocus
5343         * ComboBox.cs: Pass off focus to the text control properly.
5345 2006-07-12  Alexander Olk  <alex.olk@googlemail.com>
5347         * FileDialog.cs: Added GetFoldersOnly to MWFVFS
5348         * FolderBrowserDialog.cs: Almost a complete rewrite.
5349           - Better support for Environment.Specialfolders
5350           - Added support for MWFVFS
5351           - Made setting SelectedPath work
5353 2006-07-12  Jackson Harper  <jackson@ximian.com>
5355         * Control.cs: Optimze getting all the controls.
5357 2006-07-11  Jackson Harper  <jackson@ximian.com>
5359         * ContainerControl.cs: Override SETFOCUS in the container control,
5360         so that it is not selected on mouse click.
5362 2006-07-11  Peter Dennis Bartok  <pbartok@novell.com> 
5364         * LinkLabel.cs: Hack to handle Shift-Tabbing to the linklabel. 
5365           Hopefully we will have a better way once all of focus is complete.
5367 2006-07-11  Peter Dennis Bartok  <pbartok@novell.com>
5369         * ThemeWin32Classic.cs: Commented out some debug code and fixed
5370           a compile error with csc.
5372 2006-07-11  Jackson Harper  <jackson@ximian.com>
5374         * Control.cs: When hiding a control only select the next control
5375         if the current control was focused.
5376         - Don't handle enter/leave when setting/killing focus, this is
5377         done by the container control.
5378         - Remove is_selected, it's not needed anymore.
5379         - Add utility methods for selecting a child control, and for
5380         firing the Enter/Leave events.
5381         * ContainerControl.cs: When a control is activated fire the
5382         enter/leave events.
5383         - Don't wrap when processing the tab key, so that focus can be
5384         moved outside of the container.
5385         - Use the correct active control
5387 2006-07-11  Jackson Harper  <jackson@ximian.com>
5389         * ComboBox.cs: Remove some debug code that was blinding me.
5390         * UpDownBase.cs: These controls actually aren't implicit, they are
5391         visible to the user.
5393 2006-07-10  Chris Toshok  <toshok@ximian.com>
5395         * DataGrid.cs: move back to the is_adding boolean field.  god i
5396         hate this is_editing/is_adding/is_changing stuff.
5398 2006-07-10  Chris Toshok  <toshok@ximian.com>
5400         * DataGridTableStyle.cs: just check if the property type is bool.
5401         if it is, use DataGridBoolColumn, otherwise DataGridTextBoxColumn.
5402         Don't use CanRenderType.
5404         * DataGridTextBoxColumn.cs: set the value to DBNull.Value, not "",
5405         if our text == NullText.  Remove CanRenderType.
5407         * DataGridBoolColumn.cs: nuke CanRenderType.
5409         * DataGrid.cs: reenable some code to end the current edit inside
5410         of set_CurrentCell.  This fixes the other 1.1.16 regression.
5411         Also, remove rowhdrs_maxheight and just use rowhdrs_area.Height.
5412         Also, remove the visible_row_count arg from CalcRowHeaders, since
5413         we don't need to worry about the actual height of the area.
5415 2006-07-10  Chris Toshok  <toshok@ximian.com>
5417         * DataGridTextBoxColumn.cs: if when we Commit we're in navigate
5418         mode, just return.
5420         * DataGridTextBox.cs: change "isedit" to "isnavigating" to reflect
5421         the real sense of the IsInEditOrNavigateMode property (true =
5422         navigate, false = edit).  Also, update OnKeyPress to reflect this.
5424         * DataGridTableStyle.cs (CreateColumnsForTable): even if the
5425         column style exists, we still need to set its property descriptor
5426         to match up with our list manager.
5428 2006-07-10  Chris Toshok  <toshok@ximian.com>
5430         * ThemeWin32Classic.cs: implement the new row/header painting
5431         approach.  The parent row painting will likely go away and
5432         replaced with label controls, but the rest seems to work ok (and
5433         efficiently).
5435         * Theme.cs: change the way we draw datagrid rows.  we don't draw
5436         the row headers as a block now.  Instead we draw them in the
5437         normal draw-row loop.  Add some calls for drawing parent rows and
5438         relation rows.
5440         * DataGridTableStyle.cs: add tons of ArgumentExceptions if this is
5441         a default table style.  Set the defaults from ThemeEngine.Current,
5442         not SystemColors.  Fix lots of misc issues with property setters.
5444         * DataGrid.cs: move loads of style information out of this class
5445         as it's being duplicated with DataGridTableStyle.  keep track of a
5446         special DataGridTableStyle for the properties we used to mirror
5447         here.  Switch all the style properties to access this table style
5448         instead of instance fields of this class.  Also add a internal
5449         class to represent parent rows (more needs to be stored here, like
5450         the selection state from the parent table, as well as the
5451         expansion state.)  Also, for datasources with relations, do the
5452         right thing for collapse/expand, and add support for the
5453         navigation/parent row buttons.
5455         Lastly, fix the crash in the 1.1.16 build.
5457         * GridTableStylesCollection.cs: make the explicit interface
5458         implementations call the class's methods as opposed to duplicating
5459         them.
5461         * DataGridTextBoxColumn.cs: set the x/y offset of the textfield to
5462         0 so the text doesn't jump around when we move the cursor.
5464 2006-07-10  Jackson Harper  <jackson@ximian.com>
5466         * TextBoxBase.cs:
5467         * ListBox.cs: Match MS's ToString (this makes debugging focus
5468         stuff infinitely easier).
5470 2006-07-10  Jackson Harper  <jackson@ximian.com>
5472         * Control.cs (SelectNextControl): When checking the control's
5473         parent use this instead of ctrl.parent so that null can be passed
5474         to SelectNextControl. (I have unit tests for this).
5475         - Remove unused var.
5477 2006-07-10  Chris Toshok  <toshok@ximian.com>
5479         * CurrencyManager.cs: correct one regression, the removal of the
5480         finalType field.  Also, add a MonoTODO on CanAddRows, implement
5481         Refresh() correctly, and fix some event emission in
5482         ListChangedHandler.
5484 2006-07-07  Alexander Olk  <alex.olk@googlemail.com>
5486         * FileDialog.cs: Don't use brackets for new folders if they exist
5487           under *nix. Instead use -(number of existing folders +1).
5489 2006-07-07  Alexander Olk  <alex.olk@googlemail.com>
5491         * FileDialog.cs:
5492           - Fixed really nasty bug #78771
5493           - Don't block the whole GUI when reading directories with a lot of
5494             entries. Use an other thread instead and call BeginInvoke to
5495             update the ListView in MWFFileView
5497 2006-07-07  Chris Toshok  <toshok@ximian.com>
5499         * Control.cs (Dispose): release any Capture when disposing.
5501 2006-07-07  Chris Toshok  <toshok@ximian.com>
5503         * LinkLabel.cs (Select): if we chain up to the parent, set
5504         focused_index to -1 so we'll search for the first available link
5505         the next time the user tabs into us.  Also, if the direction is
5506         backward and focused_index == -1, start the search from the last
5507         element.
5509 2006-07-07  Chris Toshok  <toshok@ximian.com>
5511         * LinkLabel.cs (CreatePiecesFromText): if the link's range piece
5512         is beyond the end of the text, don't do anything.
5513         (CreateLinkPieces): set our ControlStyles.Selectable based on
5514         whether or not we have any links.
5515         (Link.Invalidate): use a loop instead of foreach.
5516         (Link.set_Start): null out owner.sorted_links so it'll be
5517         recreated by CreateLinkPieces.
5519 2006-07-06  Chris Toshok  <toshok@ximian.com>
5521         * LinkLabel.cs: revert the SetStyle change.
5523 2006-07-06  Chris Toshok  <toshok@ximian.com>
5525         * LinkLabel.cs (.ctor): SetStyle Selectable to true.
5526         (OnEnableChanged): s/Refresh/Invalidate
5527         (OnGotFocus): if we have a focused index already, refocus it (so
5528         if we mouse out/in to the window it'll focus the right link).
5529         (OnKeyDown): move the tab handling out of here.
5530         (OnLostFocus): don't set focused_index to -1, so we can refocus it
5531         when we lose focus.
5532         (OnMouseDown): don't Capture here - Control handles it.  Also,
5533         focus the active link.
5534         (OnMouseUp): don't deal with Capture.
5535         (OnPaintBackgroundInternal): remove.
5536         (OnTextAlignChanged): CreateLinkPieces before calling the
5537         superclass's method.
5538         (OnTextChanged): call CreateLinkPieces before calling superclass's
5539         method.
5540         (ProcessDialogKey): handle Tab here, and call Select(bool,bool) to
5541         move around.
5542         (Select): implement this, moving the selection between different
5543         links, and call parent.SelectNextControl if we don't have another
5544         link to focus in the given direction.
5545         (CreateLinkPieces): call Invalidate instead of Refresh.
5546         
5547 2006-07-06  Chris Toshok  <toshok@ximian.com>
5549         * ThemeWin32Classic.cs: DrawLinkLabel changes to accomodate the
5550         new LinkLabel internals.
5552         * LinkLabel.cs: fairly major rewrite.  get rid of all the loops
5553         over pieces looking for active/focused/etc links.  also, deal with
5554         runs of text (and links) with embedded \n's in them, and use
5555         MeasureCharacterRanges instead of MeasureString to figure out the
5556         regions text occupies.  Lastly, do the usual s/Refresh/Invalidate
5557         two-step.
5559 2006-07-04  Jackson Harper  <jackson@ximian.com>
5561         * XplatUIX11.cs: Enable key auto repeat. If the user doesn't have
5562         XKB or key auto repeat, do it manually.  Without key auto repeat,
5563         when a key is held down we get key press, key release, key press,
5564         key release, ... with auto repeat we get key press, key press, key
5565         press ..., and then a release when the key is actually released.
5567 2006-07-03  Jackson Harper  <jackson@ximian.com>
5569         * TabControl.cs:
5570         * ThemeWin32Classic.cs: Tabs do not obey normal background color
5571         rules, they are always control color regardless of the background
5572         color.
5574 2006-07-02  Alexander Olk  <alex.olk@googlemail.com>
5576         * FileDialog.cs: Added internal class MWFConfig.
5577           Removed Registry support and replaced it with support for the new
5578           MWFConfig class. See MWFConfig comments for more information.
5580 2006-06-30  Alexander Olk  <alex.olk@googlemail.com>
5582         * ThemeWin32Classic.cs: Added RadioButton and CheckBox focus
5583           rectangle. Added some patches from eno from bug #78490 and fixed
5584           the arrow position for small up and down CPDrawScrollButtons.
5586 2006-06-30  Jackson Harper  <jackson@ximian.com>
5588         * InternalWindowManager.cs: Remove some debug code.
5589         * Form.cs: When an MdiParent is set to null, the window is
5590         "detatched" and becomes a normal window.
5591         * MdiClient.cs: Don't bring the new child form to the front until
5592         it is activated (setting it as active does this), this makes the
5593         previously active forms titlebar get redrawn as inactive.
5595 2006-06-29  Peter Dennis Bartok  <pbartok@novell.com>
5597         * PrintDialog.cs: Labels need a tab index too, otherwise they overlap
5598           with later controls
5600 2006-06-29  Mike Kestner  <mkestner@novell.com>
5602         * MenuAPI.cs: handle arrow keys in keynav state. Go active on down
5603         arrow in keynav state.  Fixes #78682.
5605 2006-06-28  Atsushi Enomoto  <atsushi@ximian.com>
5607         * PrintDialog.cs: Reorder, relayout, remove extra code, set tab 
5608           order (fixes #78393)
5610 2006-06-28  Jonathan Pobst  <monkey@ipobst.com>
5612         * AccessibleRole.cs, AccessibleStates.cs, AnchorStyles.cs, 
5613           ArrangeDirection.cs, ArrangeStartingPosition.cs, ColorDepth.cs,
5614           ControlStyles.cs, DataGridViewImageCellLayout.cs, DrawMode.cs,
5615           FormBorderStyle.cs, FormStartPosition.cs, FormWindowState.cs,
5616           GridItemType.cs, HelpNavigator.cs, ImeMode.cs, ItemActivation.cs,
5617           ItemBoundsPortion.cs, Keys.cs, ListViewAlignment.cs, 
5618           PictureBoxSizeMode.cs, PropertySort.cs, SelectionMode.cs,
5619           Shortcut.cs, SizeGripStyle.cs, SortOrder.cs, StructFormat.cs,
5620           TextFormatFlags.cs, ToolBarAppearance.cs, ToolBarButtonStyle.cs,
5621           ToolBarTextAlign.cs, View.cs: 2.0 Changes to existing 1.x
5622           enumerations (FlagsAttribute, SerializableAttribute, added/removed
5623           values)
5625 2006-06-28  Mike Kestner  <mkestner@novell.com>
5627         * ComboBox.cs: implement scroll wheel support. Fixes #78360.
5629 2006-06-28  Atsushi Enomoto  <atsushi@ximian.com>
5631         * PropertyGrid.cs,
5632           PropertyGridTextBox.cs : explicitly set BackColor to differentiate
5633           item lines from other area (It also makes BackColor consistent and
5634           compatible with .NET). Fixed bug #78564.
5636 2006-06-28  Jonathan Chambers  <jonathan.chambers@ansys.com>
5638         * PropertyGrid.cs: refresh toolbar when PropertySort is set.
5639         Patch from Eno for #78555.
5641 2006-06-27  Chris Toshok  <toshok@ximian.com>
5643         * ThemeWin32Classic.cs: s/grid.grid_drawing/grid
5645         * DataGridColumnStyle.cs: same.
5647         * DataGrid.cs: Roll DataGridDrawingLogic.cs into this file.
5648         
5649         * DataGridDrawingLogic.cs: nuke.
5651 2006-06-27  Chris Toshok  <toshok@ximian.com>
5653         * DataGridTableStyle.cs: clean up the constructors, and build the
5654         list of child relations for this table.  I have no idea if this is
5655         where we should be doing it (it probably isn't), but since we're
5656         already iterating over the properties..
5658         * DataGrid.cs: add row resizing.  for now we add a DataGridRow
5659         struct and array for keeping track of row information, similar to
5660         what's shown in a hack on
5661         http://www.syncfusion.com/FAQ/WindowsForms/FAQ_c44c.aspx.
5663         * Theme.cs: be consistent about the naming of DataGrid methods,
5664         prefering ColumnWidths and RowHeights over columnsWidths and
5665         RowsHeights.
5667         * ThemeWin32Classic.cs: same, and also add support for variable
5668         sized rows (and the +/- expansion icons for related rows).
5670 2006-06-27  Peter Dennis Bartok  <pbartok@novell.com>
5672         * TextBoxBase.cs: Applied Eno's patch from #78660
5674 2006-06-27  Peter Dennis Bartok  <pbartok@novell.com> 
5676         * Form.cs (ScaleCore): We don't want to scale our form if it's
5677           state is minimized or maximized, but we still need to scale our
5678           child windows. Also, added try/finally block to ensure layout
5679           gets reset (Fixes #78697)
5681 2006-06-27  Peter Dennis Bartok  <pbartok@novell.com>
5683         * Control.cs: Added 2.0 Scale(SizeF) method (Fixes 78700)
5685 2006-06-27  Peter Dennis Bartok  <pbartok@novell.com> 
5687         * Form.cs: Fixed c+p error and added check to resize form if minimum
5688           size is bigger than current size (Fixes #78709)
5690 2006-06-26  Peter Dennis Bartok  <pbartok@novell.com> 
5692         * ThemeEngine.cs (..ctor): Properly use ToLower() (Fixes #78704)
5694 2006-06-26  Mike Kestner  <mkestner@novell.com>
5696         * ComboBox.cs: only do Keypress handling in the combo when there  
5697         are items in the collection. Fixes #78710.
5699 2006-06-26  Chris Toshok  <toshok@ximian.com>
5701         * Binding.cs: make this work bi-directionally.  also, clear up
5702         other mixups between Push/Pull Data (e.g. we're supposed to pull
5703         data when validating).
5705         * BindingManagerBase.cs: trim some fully qualified collection
5706         types.
5708         * PropertyManager.cs (get_IsSuspended): oops, fix this check.
5710 2006-06-23  Chris Toshok  <toshok@ximian.com>
5712         * PropertyManager.cs: It appears (according to the unit tests)
5713         that PropertyManager doesn't use
5714         PropertyDescriptor.AddValueChanged to track propery value changes
5715         in its datasource, but uses the same scheme as Binding, where it
5716         looks for a <Property>Changed event and binds to it.
5718         Also, according to the docs, IsSuspended always returns false for
5719         a property manager with a non-null datasource.
5721 2006-06-22  Peter Dennis Bartok  <pbartok@novell.com> 
5723         * Form.cs: (ShowDialog): If we're returning a forced cancel we still
5724           need to update the actual DialogResult. (Fixes #78613)
5726 2006-06-22  Peter Dennis Bartok  <pbartok@novell.com>
5728         * Form.cs (ShowDialog): Release any captures before running the
5729           new message pump (fixes #78680)
5731 2006-06-22  Mike Kestner  <mkestner@novell.com>
5733         * ListView.cs: Layout column widths properly in details mode even 
5734         if HeaderStyle.None is set.  Fixes #78691.
5736 2006-06-21  Peter Dennis Bartok  <pbartok@novell.com>
5738         * FileDialog.cs: Fixed taborder to match MS. Fixes #77873 partially.
5740 2006-06-21  Peter Dennis Bartok  <pbartok@novell.com> 
5742         * Control.cs (ContainsFocus): Using new driver method to get focused
5743           window, instead of trying to use internal tracking var, which can
5744           recursion issues (Fixes #78685)
5745         * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs, XplatUIOSX.cs, 
5746           XplatUIWin32.cs: Added GetFocus method to return focused window
5748 2006-06-21 Gonzalo Paniagua Javier <gonzalo@ximian.com>
5750         * ColorDialog.cs: when the mouse button is pressed inside the color
5751         matrix, don't let the cursor move out of it until the button is
5752         released, which is the behavior on windows. Changed 'colours' by
5753         'colors' to use the same word consistently.
5755 2006-06-21  Chris Toshok  <toshok@ximian.com>
5757         * DataGrid.cs: add in some basic navigation stuff (navigating to a
5758         child relation and back, using a stack).  Also, remove
5759         GetDataSource and the code that calls it - it's not needed.  Also,
5760         track CurrencyManager.ListName's removal.
5762 2006-06-21  Chris Toshok  <toshok@ximian.com>
5764         * CurrencyManager.cs: push some of the original type checking from
5765         BindingContext.CreateBindingManager to here, and remove some of
5766         the finalType stuff.  Need more tests to make sure I've got the
5767         ListName part right, and we might need more in SetDataSource.
5769         * PropertyManager.cs: add a ctor that takes just the datasource,
5770         and no property name.  Make SetDataSource work with a null
5771         property_name, and make Current return the data_source if the
5772         property descriptor is null.  this makes 'string foo = "hi";
5773         BindingContext[foo].Current' return "hi" as it should.
5775         * RelatedCurrencyManager.cs: make this code more generic - there's
5776         no reason the parent manager has to be CurrencyManager, and
5777         there's no reason to pass the DataRelation.  It suffices to use a
5778         BindingManagerBase and PropetyDescriptor.
5780         * RelatedPropertyManager.cs: make a similar change here.
5781         
5782         * BindingContext.cs: make CreateBindingManager the beautiful, tiny
5783         flower I knew it could be.
5785 2006-06-20  Chris Toshok  <toshok@ximian.com>
5787         * PropertyManager.cs: the PropertyChangedHandler is invoked when
5788         data in the source has changed and we need to update the control,
5789         so s/PullData/PushData.
5791         * CurrencyManager.cs: Refresh is meant to update the control from
5792         data in the datasource.  So, s/PullData/PushData.
5794         * BindingContext.cs: add more ugliness (we weren't handling the
5795         case where data_source = DataTable and data_member = column_name).
5797         * Binding.cs: fix PushData/PullData mixup.  Both are interpreted
5798         from the perspective of the datasource.  PullData pulls from the
5799         control, PushData pushes to the control.
5801 2006-06-20  Chris Toshok  <toshok@ximian.com>
5803         * BindingContext.cs: rewrite the CreateBindingManager code to
5804         handle navigation paths more or less properly.  This could
5805         definitely stand some more work, in particular to push the
5806         recursion up to the toplevel.  But that relies on fixes in other
5807         places (System.Data comes to mind).
5809         Also, move to a flat hashtable (and encode the twolevel nature of
5810         the dictionary into the hash key).  This lets us implement the
5811         IEnumerable.GetEnumerator method.
5813         * RelatedCurrencyManager.cs: new class.  Update our view based on
5814         our relation and our parent CurrencyManager's position.
5816         * CurrencyManager.cs: split out some logic from the ctor into
5817         SetView, so it can be called from the new RelatedCurrencyManager
5818         subclass.
5820         * RelatedPropertyManager.cs: new class.  Update our datasource
5821         based on the position of our parent CurrencyManager.
5823         * PropertyManager.cs: split out some logic from the ctor into
5824         SetDataSource, so it can be called from the new RelatedDataSource
5825         subclass.  Also, make the Current getter return the value
5826         of the PropertyDescriptor, not the data_source.
5828         * Binding.cs: no need to duplicate the string splitting code here.
5830 2006-06-19  Peter Dennis Bartok  <pbartok@novell.com> 
5832         * Control.cs:
5833           - set_Enabled: OnEnabledChanged is not called if the inherited state 
5834             of the control is not altered, even though  we might be changing the
5835             internal state of the control (#78458)
5836           - set_Enabled: (Re)Moved the enabling/disabling of the window to 
5837             OnEnabledChanged, to allow easy altering of any child window state
5838           - OnEnabledChanged: Added code to enable/disable driver window state
5839           - OnParentEnabledChanged: Instead of firing the event, call 
5840             OnEnabledChanged, which will fire the event and also a) set driver
5841             window state and pass the enabled state to any grandchildren (#78458)
5843 2006-06-19  Jackson Harper  <jackson@ximian.com>
5845         * InternalWindowManager.cs: We don't set the cursor explicitly
5846         thats done via the response to NCHITTESTs.
5847         - Don't need to adjust for titlebar heights anymore, the
5848         coordinates are coming in the correct coordinates now (see peters
5849         last patch).
5852 2006-06-19  Peter Dennis Bartok  <pbartok@novell.com> 
5854         * XplatUIX11.cs (GetMessage): WM_NCxBUTTONx messages were wrongly
5855           being translated relative to whole window, instead of client window.
5856           That caused broken offsets on mouseclick (and caused gas for our
5857           InternalWindowManager)
5859 2006-06-15  Peter Dennis Bartok  <pbartok@novell.com> 
5861         * TextControl.cs:
5862           - MoveCaret: Implemented PgUp, PgDown, CtrlPgUp and CtrlPgDown
5863           - Undo(): Added replay of cursor move on DeleteChars action; added
5864             calling Undo() again if a recorded cursor move is invalid (to
5865             ensure that some action is performed on Undo)
5866         * TextBoxBase.cs (ProcessKey): Added handling of PgUp and PgDown (#78482)
5868 2006-06-16  Jackson Harper  <jackson@ximian.com>
5870         * MdiClient.cs: Instead of just sizing maximized windows when
5871         there is a resize we also have to adjust the Y of minimized
5872         windows, so they stay pinned to the bottom of the mdi container.
5873         - Eliminate separate tracking of the active control, we can just
5874         get this from the controls collection.
5875         - Paint the decorations for the newly activated titlebar so we get
5876         a pretty blue bar.
5877         * InternalWindowManager.cs:
5878         * ThemeWin32Classic.cs: Minimized windows get all three buttons
5879         even if they are a tool window.
5880         
5881 2006-06-15  Peter Dennis Bartok  <pbartok@novell.com> 
5883         * TextControl.cs (Undo): Handle non-existent cursor locations in the
5884           undo buffer, these can happen when text was deleted and the cursor
5885           was recorded first. Since we will also have a recorded cursor
5886           after the delete this is not an issue. (Fixes #78651)
5888 2006-06-14  Peter Dennis Bartok  <pbartok@novell.com> 
5890         * AccessibleObject.cs: Remove dependence on Control.is_selected;
5891           instead properly track control states internally (allows us to
5892           remove is_selected from Control)
5894 2006-06-14 Gonzalo Paniagua Javier <gonzalo@ximian.com>
5896         * ImageListStreamer.cs: correctly generate the 1bpp mask for images
5897         whose width is not a multiple of 8.
5899 2006-06-13  Jackson Harper  <jackson@ximian.com>
5901         * MdiClient.cs:  Only maximize the next child if the current one
5902         is maximized.
5904 2006-06-13  Chris Toshok  <toshok@ximian.com>
5906         * DataGridColumnStyle.cs: Invalidate the column when HeaderText is
5907         modified.  Also, guard against grid or grid_drawing being null in
5908         Invalidate.
5910         * DataGrid.cs: Reformat tons of getters/setters.  In the
5911         DataMember setter, just call SetNewDataSource instead of
5912         duplicating some of its functionality.  In SetNewDataSource, don't
5913         check ListManager for null, since the property getter creates the
5914         object if needed.
5916         * DataGridTableStyle.cs: don't set TableStyle or call
5917         SetDataGridInternal on the column here, it's done in
5918         GridColumnStylesCollection.Add.
5920         * GridColumnStylesCollection.cs: fix all the explicit interface
5921         implementations to just call our methods.  Nuke AddInternal() and
5922         move the body of it to Add().  Also, add a call to
5923         column.SetDataGridInternal to Add().
5925         * DataGridTextBoxColumn.cs (.ctors): call this() instead of
5926         base()+duplicate code.  Also, use the Format property instead of
5927         format to generate an Invalidate ala MS.  Lastly, create the
5928         textbox here, unconditionally.
5929         (set_Format): call Invalidate.
5930         (get_TextBox): no need to call EnsureTextBox.
5931         (Commit): remove the message box.
5932         (Edit) remove the call to EnsureTextBox.
5933         (EndEdit): call HideEditBox instead of ReleaseHostedControl.
5934         (EnterNullValue): no need to check textbox for null.
5935         (HideEditBox): no need to check textbox for null.
5936         (SetDataGridInColumn): add the textbox to the grid's controls.
5937         (EnsureTextBox): nuke.
5938         
5939 2006-06-13  Jackson Harper  <jackson@ximian.com>
5941         * MdiWindowManager.cs: Hook up to the maximized menus paint event
5942         and redraw the buttons when needed. Unhook when the window is
5943         unmaximized.
5944         * MainMenu.cs: Add an internal Paint event, the mdi window manager
5945         needs this so that it can redraw its buttons when the menu is
5946         repainted.
5947         * InternalWindowManager.cs:
5948         * Form.cs: The method order has changed for DrawMaximizedButtons,
5949         so that it can be a PaintEventHandler.
5950         
5951 2006-06-13  Jackson Harper  <jackson@ximian.com>
5953         * MdiClient.cs: When we close a maximized mdi window, the next mdi
5954         window is activated and maximized, even if it wasn't before.
5955         - When  a new window is activated repaint the decorations of the
5956         old one, so that it no longer has the Active "look" (the blue
5957         titlebar).
5958         * InternalWindowManager.cs: Open up CreateButtons to base classes
5959         so they can recreate the buttons on state changes.
5960         - If a window is maximized give it all three buttons
5961         * MdiWindowManager.cs: Create the titlebar buttons when the state
5962         is changed, this is needed because a toolwindow will not have all
5963         three buttons until it is maximized.
5965 2006-06-13  Atsushi Enomoto  <atsushi@ximian.com>
5967         * ProgressBar.cs : PerformStep() shouldn't exceed Maximum.
5968           Fixed bug #78609.
5970 2006-06-12  Jackson Harper  <jackson@ximian.com>
5972         * KeysConverter.cs: Make sure we handle the Ctrl special case
5973         if its the only key.
5974         
5975 2006-06-12  Jackson Harper  <jackson@ximian.com>
5977         * Theme.cs: Add a method to get the size of a managed window
5978         toolbar button.
5979         * InternalWindowManager.cs: Remove the ButtonSize property, this
5980         should be retrieved from the theme.
5981         * MdiWindowManager.cs: Get the button size from the theme
5982         * ThemeWin32Classic.cs: Make the method to get the managed window
5983         titlebar button size public.
5984         - Handle the different button sizes of maximized toolwindows
5985         (should match any maximized window).
5986         - Get the titlebar height from the theme, not the WM (which gets
5987         it from the theme).
5989 2006-06-12  Jackson Harper  <jackson@ximian.com>
5991         * InternalWindowManager.cs: Handle NC Double Clicks, passing the
5992         event down to the mdi window manager.
5993         - Expose some extra stuff to base classes
5994         - Make sure to end the Capture on an NC Mouse up, so that we can
5995         get double clicks properly, and the sizing doens't stick.
5996         - When doing PointToClient contain it in the workable desktop
5997         area, this prevents windows from changing size when the cursor is
5998         pulled outside of the working area while sizing.
5999         * MdiWindowManager.cs: When we get a double click maximize the
6000         window.
6001         - Reset the cursor after handling mode changes.
6003 2006-06-12  Peter Dennis Bartok  <pbartok@novell.com> 
6005         * XplatUIX11.cs (WorkingArea): Read the actual workarea for the 
6006           current desktop, instead of just assuming a 0, 0 origin. This
6007           is needed for our internal window manager, to know the top
6008           margin of the desktop
6010 2006-06-12  Chris Toshok  <toshok@ximian.com>
6012         * DataGrid.cs (set_CurrentCell): concede focus as we move around.
6013         we need this to get rid of the selected background in the bool
6014         column.
6015         (CancelEditing): move the ConcedeFocus call to above the Abort
6016         call.  Also, set is_changing to false and invalidate the row
6017         header if we were changing before.
6018         (ProcessKeyPreviewInternal): remove, since noone outside this
6019         class calls it anymore.  Roll the code into ProcessKeyPreview.
6020         (EndEdit): remove the internal version.
6021         (InvalidateCurrentRowHeader): make private.
6023         * DataGridBoolColumn.cs: simplify this class a bunch.  remove the
6024         Keys.Escape handling (and with it the last call to
6025         DataGrid.EndEdit from outside the class.)
6028 2006-06-12  Chris Toshok  <toshok@ximian.com>
6030         * DataGridTextBox.cs (.ctor): isedit defaults to false.
6031         (OnKeyPress): set isedit to true.
6032         (ProcessKeyMessage): remove Keys.Enter handling from here.  it's
6033         already handled by the grid.
6035         * DataGrid.cs (set_CurrentCell): more work here.  it's still not
6036         right.  ugh.
6037         (set_DataSource): SetDataSource always returns true, so stop
6038         putting it in an if statement.
6039         (EndEdit): get rid of some {}'s
6040         (ProcessGridKey): return true in case Keys.Escape.
6041         (ProcessKeyPreviewInternal): only handle KEYDOWN messages.
6042         (ConnectListManagerEvents,DisconnectListManagerEvents): connect to
6043         PositionChanged, stopped connecting to CurrentChanged.
6044         (GetDataSource): simplify this a bunch.
6045         (SetDataSource): change return type from bool to void.
6046         (OnListManagerPositionChanged): rename OnListManagerCurrentChanged
6047         to this, and make sure we don't set ListManager.Position inside
6048         set_CurrentCell.
6049         (OnListManagerItemChanged): if we're passed an actual index,
6050         redraw that row.
6052         * CurrencyManager.cs (set_Position): don't call PullData here.
6054 2006-06-09  Jackson Harper  <jackson@ximian.com>
6056         * TreeNode.cs:  Recalculate the visible order before doing the
6057         Expand/Collapse Below calls, because those calls generate an
6058         expose.
6059         - Reduce calls to the TreeView property, which is mildly expensive
6060         by using a local var.
6061         * Form.cs: Layout the MDI child windows when creating the parent
6062         form.
6063         - Don't use the internal constructor anymore
6064         * MdiClient.cs: use the parent form width/height (if available)
6065         when laying out the child windows, we do this because the
6066         mdiclient isn't docked yet when the initial layout is done.
6067         - Don't need an internal constructor anymore.
6069 2006-06-08 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6071         * FileDialog.cs: handle access errors when trying to create a folder
6072         or changing to a directory. No need to initialize out parameters.
6074 2006-06-08  Alexander Olk  <alex.olk@googlemail.com>
6076         * FileDialog.cs: Append a number when creating a new folder if the
6077           folder already exists (use parenthesis instead of square brackets)
6079 2006-06-08  Alexander Olk  <alex.olk@googlemail.com>
6081         * FileDialog.cs:
6082           - Disabled registry support for windows and added better registry
6083             error checking for other systems (need to investigate why it
6084             works perfectly on my system)
6085           - If a folder already exist show an error MessageBox instead of
6086             trying to create an indexed name.
6087           - Fixed a non intentional typo.
6089 2006-06-08 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6091         * FileDialog.cs: (SetFileName) don't crash if CurrentRealFolder is null.
6093 2006-06-08  Alexander Olk  <alex.olk@googlemail.com>
6095         * FileDialog.cs: When creating a new folder don't crash if the
6096           folder already exists.
6098 2006-06-08  Alexander Olk  <alex.olk@googlemail.com>
6100         * FileDialog.cs: Allmost a complete rewrite.
6101           - added a "virtual" file system that handles the differences
6102             between unix and windows file systems (especially the directory
6103             structure). Moved most of the directory and file handling code
6104             into the vfs.
6105             Added vfs classes: MWFVFS, FileSystem, WinFileSystem,
6106             UnixFileSystem and FSEntry.
6107           - Recently used folder/directory, size, location and used file names
6108             (file name ComboBox) are now stored in the registry and get read
6109             before the dialog shows up (fixes part 6 of bug #78446).
6110           - Creation of new folders/directories is now possible (context menu
6111             or ToolBar). Added TextEntryDialog for this that fills in the gap
6112             until ListView.LabelEdit works.
6113           - Fixed cursor handling (bug #78527) and focus handling for
6114             PopupButtonPanel
6115           - Various "Search in" ComboBox enhancements. The content of the
6116             dropdown listbox now almost matches ms.
6117           - Changed the behaviour when the user switches to SpecialFolder
6118             Recent to show the ListView in View.Details.
6119           - Beside using the ToolBar to change the View property of the
6120             file ListView it is now possible to use the context menu too.
6122 2006-06-08  Alexander Olk  <alex.olk@googlemail.com>
6124         * ComboBox.cs: Don't create a new ObjectCollection when an item
6125           gets inserted. Just insert the item in the existing object_items
6126           ArrayList.
6128 2006-06-08  Jackson Harper  <jackson@ximian.com>
6130         * OpenTreeNodeEnumerator.cs: Fix to use the Parent property, so
6131         that the treeview and root node checks are done also, this fixes a
6132         regression i caused in the unit tests.
6134 2006-06-07  Wade Berrier <wberrier@novell.com> 
6136         * RichTextBox.cs: More ISO8859-1 -> unicode
6138 2006-06-07  Mike Kestner  <mkestner@novell.com>
6140         * ComboBox.cs : use items to hold highlight/selection so that
6141         collection insertions don't require synchronization.
6143 2006-06-07  Jackson Harper  <jackson@ximian.com>
6145         * InternalWindowManager.cs: Simplify (and FIX) the window sizing
6146         routine.  We now always keep the sized edge at the cursor instead
6147         of computing movement and adjusting rects.  There is one buglet
6148         with this method though when the cursor is moved over area that
6149         the window can not expand too (such as the toolbars on the desktop).
6151 2006-06-07 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6153         * XplatUIX11.cs: (IsEnabled,IsVisible) the window handler can be null
6154         here. Fixes crash on startup in AlbumSurfer.
6156 2006-06-07  Peter Dennis Bartok  <pbartok@novell.com> 
6158         * RichTextBox.cs: Replaced embedded ISO8859-1 chars with proper unicode
6159           values
6161 2006-06-07 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6163         * XplatUIX11.cs: call XPending and XNextEvent inside the same lock()
6164         statement to avoid calling XNextEvent which will block if another thread
6165         took the event that we were expecting. Fixes bug #78605.
6167 2006-06-07  Mike Kestner  <mkestner@novell.com>
6169         * ListView.cs : isolated checkbox clicking from the selection logic.
6170         Toggle check state on item doubleclicks.  Really fixes #78454 part2.
6172 2006-06-06  Carlos Alberto Cortez <calberto.cortez@gmail.com>
6174         * Form.cs: Check that the value passed to Form.DialogResult
6175         is a valid enum value.
6177 2006-06-06 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6179         * FileDialog.cs: disable the up button when in 'Recently Used' or 'My
6180         Computer'. Clicking it in the network view goes to 'My Computer'.
6181         Added CIFS filesystem type. Display the mount point of filesystems.
6182         Avoid duplicate mount points (happens for me with CIFS);
6184 2006-06-06  Jackson Harper  <jackson@ximian.com>
6186         * InternalWindowManager.cs: Draw the maximized windows buttons
6187         when resizing.
6189 2006-06-06 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6191         * Form.cs: when running a modal dialog, ignore WM_CLOSE requests for
6192         all other dialogs. Fixes bug #78585.
6194 2006-06-06  Mike Kestner  <mkestner@novell.com>
6196         * CheckedListBox.cs : apply CheckOnClick behavior to unchecking too.
6197         Only invalidate checkbox on checkstate changes to avoid flicker.
6198         * ListBox.cs : avoid unselect/select when clicking selected item.
6199         avoid reselection flicker for already multiselected items.
6200         Fixes #78382.
6202 2006-06-06  Jackson Harper  <jackson@ximian.com>
6204         * MdiWindowManager.cs: When the window is closed do an NCRecalc on
6205         the parent form so that the menu is removed if needed.
6207 2006-06-06  Mike Kestner  <mkestner@novell.com>
6209         * ListBox.cs : add ScrollWindow call to UpdateTopItem.  fix
6210         Prev/Next/PrevPage/NextPage/Home/End index calculation.  Fixes #78559.
6212 2006-06-06  Mike Kestner  <mkestner@novell.com>
6214         * CheckedListBox.cs : rebuild check collection on Add.  Fixes #78426.
6217 2006-06-06  Jackson Harper  <jackson@ximian.com>
6219         * Control.cs: Use the property (instead of the field) to get the
6220         default cursor so it is instantiated correctly.
6221         * InternalWindowManager.cs: The OS doesn't give us an NCPAINT with
6222         resizes so we need to manually repaint the window decorations here.
6223         - Set the titlebar button locations as soon as they are created,
6224         otherwise they are not set correctly on win32.
6225         
6226 2006-06-06  Chris Toshok  <toshok@ximian.com>
6228         * CurrencyManager.cs (set_Position): call PullData before
6229         OnCurrentChanged.
6230         (AddNew): after calling IBindingList.AddNew, update our
6231         listposition, and call OnCurrentChanged/OnPositionChanged (without
6232         calling PullData).
6233         (OnCurrentChanged): remove the call to PullData from here.
6234         (OnItemChanged): remove the call to PushData from here.
6235         (OnPositionChanged): change the test from == null to != null to
6236         match the other methods.
6237         (ListChangedHandler): the grossest part of the patch.  Implement
6238         this such that it passes the unit tests in CurrencyManagerTest and
6239         the output more or less matches that of MS's implementation.
6241 2006-06-06  Mike Kestner  <mkestner@novell.com>
6243         * ListView.cs : only update check state on single click.
6244         * ThemeWin32Classic.cs : fix focus drawing for details view without
6245         fullrowselect.  Fixes #78454.
6246         * XplatUIX11.cs : fix for double click emission.
6248 2006-06-05  Jonathan Chambers  <jonathan.chambers@ansys.com>
6250         * PropertyGridView.cs : Applied Atsushi's patch to fix
6251         font dialog bug  (#78197).
6253 2006-06-05  Jackson Harper  <jackson@ximian.com>
6255         * TreeNode.cs: Compute the next node for expanding/collapsing
6256         correctly. We now factor in nodes without a NextNode
6257         correctly. (Fixes somes cases in nunit-gui).
6258         * InternalWindowManager.cs: Set the bounds when updating the
6259         virtual position of a tool window.
6260         
6261 2006-06-05  Chris Toshok  <toshok@ximian.com>
6263         * DataGrid.cs: rename cached_currencymgr to list_manager.
6264         (set_CurrentCell): move SetCurrentCell code here, and clean it up
6265         some.
6266         (CurrentRow, CurrentColumn): single accessors so we can make the
6267         cursor movement code a lot easier to understand.
6268         (CurrentRowIndex): implement this in terms of CurrentRow.
6269         (BeginEdit): clean this up a bit.
6270         (CancelEditing): sort out the is_editing/is_changing/is_adding
6271         stuff a little.
6272         (EndEdit): minor changes.
6273         (OnKeyDown): add a comment about a (most likely) unnecessary
6274         check.
6275         (OnMouseDown): cancel editing when we click on a row header.  And
6276         use the CurrentRow setter, not CurrentCell.
6277         (ProcessDialogKey): directly call ProcessGridKey.
6278         (UpdateSelectionAfterCursorMove): factor out this common block of
6279         code (it's used everywhere that we move the cursor by updating row
6280         or column).
6281         (ProcessGridKey): pretty substantial overhaul.  Use the
6282         CurrentRow/CurrentColumn properties to make the code a lot more
6283         readable.  Only use the CurrentCell property when we have to
6284         modify both row and column at once.  Tab behavior is still broken,
6285         and Delete is untested.
6286         (Select): if we have no selected rows, set selection_start to
6287         @row.
6288         (EditCurrentCell): rename EditCell this.  It was only ever invoked
6289         with CurrentCell as the arg, so drop the arg and rename it.
6291         * DataGridColumnStyle.cs: clean up the constructors a little, and
6292         drop CommonConstructor().
6294         * DataGridTextBox.cs (.ctor): set accepts_return to true so we
6295         actually get notified when the user hits it.
6296         (ProcessKeyMessage): *substantially* simplify this method.
6297         There's no reason (that I can see) for the textbox to be making
6298         calls into the datagrid at all.  Remove all of them but the ones
6299         for Enter handling.  those will take some more work.
6301         * DataGridTextBoxColumn.cs (ConcedeFocus): implement this by
6302         calling HideEditBox.
6303         (HideEditBox): if we have an active textbox, render it invisible
6304         without causing a re-layout of the datagrid.
6306 2006-06-05  Mike Kestner  <mkestner@novell.com>
6308         * ListView.cs : fix NRE crasher when focuseditem is cleared by
6309         collection changes by resetting it to Items[0].  Fixes #78587.
6311 2006-06-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6313         * MessageBox.cs: if the height of the text is larger than the icon_size,
6314         use that. Fixes bug #78575.
6316 2006-06-05  Jackson Harper  <jackson@ximian.com>
6318         * TreeView.cs: Fix line drawing when scrolling.  To do this each
6319         node is basically responsible for drawing its entire horizontal
6320         area.  When drawing a node it draws its parent node lines if
6321         needed.
6322         - Adjust the clip area to the viewport rectangle
6323         - Fix Left/Right key handling to match MS. (It expand/collapses
6324         and moves to parents/first child but does not move selection to
6325         sibling nodes).
6326         - Fix SetTop to work with new bound calculation code
6327         - When scrollbars are no longer needed we need to reset scrolling
6328         vars and recalculate the visible order so the redraw is correct
6329         * TreeNode.cs: We can't expand/collapse nodes with no children.
6331 2006-06-03  John Luke  <john.luke@gmail.com> 
6333         * X11DesktopColors.cs: dllimport the exact gtk and gdk versions
6334         so the colors work without dev packages
6335         
6336 2006-06-02  Peter Dennis Bartok  <pbartok@novell.com> 
6338         * Control.cs 
6339           - Select: Implemented to just use activate. Seems to match MS 
6340             behaviour closest. Documented to only do actual control walking 
6341             based on it's parameters if in a container control so I moved 
6342             the code there.
6343           - Removed selection check logic from our internal Select() method
6344         * ContainerControl.cs:
6345           - Select: Moved selection logic from Control here, since MS documents
6346             that containers obey the bool arguments. No longer calling base
6348 2006-06-02  Jackson Harper  <jackson@ximian.com>
6350         * TreeView.cs: If the selected node isn't changed when we get
6351         focus update the previously selected node so that we see the
6352         selection box.
6354 2006-06-02  Mike Kestner  <mkestner@novell.com>
6356         * ComboBox.cs: restructure grab and general mouse event handling.
6357         Make the composite control raise mouse events like it was a single
6358         control for leaves/enters/motion/up/down events.  fix dropdown list
6359         coordinate mangling and refactor it into the scrollbar subclass to
6360         reduce code duplication.  Fixes #78282 #78361 and #78457.
6362 2006-06-02  Mike Kestner  <mkestner@novell.com>
6364         * ScrollBar.cs: remove Capture setting/clearing, as it happens
6365         automatically in the Control.WndProc.
6367 2006-06-01 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6369         * FileDialog.cs: fix crash when running SharpChess, which sets the
6370         FilterIndex to 2 with only one Filter.
6372 2006-06-01 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6374         * ToolBar.cs: add SizeSpecified property.
6375         * ToolBarButton.cs: when the ButtonSize is calculated by the container,
6376         try to figure out our real size, otherwise fallback to what the
6377         container says.
6379 2006-06-01  Peter Dennis Bartok  <pbartok@novell.com> 
6381         * XplatUIX11.cs (DefWndProc): WM_MOUSEWHEEL needs to be passed up
6382         * Control.cs (WndProc): MS always calls the DefWndProc to pass
6383           up the event
6385 2006-06-01  Mike Kestner  <mkestner@novell.com>
6387         * ListView.cs: revamp the focus management in ListView.  It still
6388         causes churn of LostFocus/GotFocus emissions on clicks, but it's
6389         better than not handling focus at all.  Will revisit when pdb feels
6390         the general focus handling is solid.  Fixes #78526.
6392 2006-06-01  Jackson Harper  <jackson@ximian.com>
6394         * TreeView.cs: Set the default border style in the constructor.
6395         - Move painting to use OnPaintInternal instead of capturing
6396         WM_PAINT, this is the correct way of doing things
6397         - UpdateBelow shouldn't invalidate the scrollbar area
6398         - Cap the top on update below in case the node was above the top
6399         of the viewport rectangle.
6400         - ExpandBelow and Collapse below need to obey Begin/End Update.
6401         * TreeNode.cs: Make is_expanded internal so the treenode
6402         collection can change it without firing the whole event chain.
6403         * TreeNodeCollection.cs: When clearing all the child nodes make
6404         sure to recalc the visible order.
6405         - Improve algo for remove the top node
6407 2006-06-01  Peter Dennis Bartok  <pbartok@novell.com> 
6409         * XplatUIX11.cs (SetFocus): Make sure we can handle re-entrancy due to
6410           SendMessage directly calling window procedures, which in turn might
6411           call SetFocus()
6413 2006-06-01  Peter Dennis Bartok  <pbartok@novell.com>
6415         * Control.cs: Don't handle WM_SETFOCUS if the same window already
6416           has focus (works around X11 sending a FocusIn after our SetFocus)
6417         * XplatUIX11.cs: Send KILLFOCUS before setting SETFOCUS on new window
6419 2006-06-01  Alexander Olk  <alex.olk@googlemail.com>
6421         * Mime.cs: Fix for the NET_2_0 build.
6422           NameValueCollection needs StringComparer now.
6424 2006-05-31  Chris Toshok  <toshok@ximian.com>
6426         * DataGridDrawingLogic.cs (FromPixelToColumn): modify this to also
6427         return (via an out parameter) the starting X of the column.
6428         (UpdateVisibleColumn): track change to FromPixelToColumn.
6429         (HitTest): add a ColumnResize case here.
6430         (DrawResizeLine): new function, probably poorly named.
6432         * DataGrid.cs (.ctor): get rid of cached_currencymgr_events.  We
6433         only need to keep one reference.
6434         (set_ListManager): same.
6435         (OnMouseDown): call HitTest instead of grid_drawing.HitTest.
6436         Also, add support for HitTestType.ColumnResize.
6437         (OnMouseMove): add column resize behavior here, and change the
6438         cursor to the correct one as we move around the datagrid.
6439         (OnMouseUp): terminate the column resize if we're resizing.
6440         (ProcessGridKey): from the MS docs, Alt-0 enters the null value
6441         for the current cell.
6442         (ConnectListManagerEvents): use cached_currencymgr.
6443         (DisconnectListManagerEvents): fill this in, using
6444         cached_currencymgr.
6445         (SetCurrentCell): remove cached_currencymgr_events handling.
6446         (SetDataMember): only call DisconnectListManagerEvents if
6447         cached_currencymgr is != null.
6448         (SetDataSource): same.
6449         (OnListManagerCurrentChanged): cached_currencymgr_events ->
6450         cached_currencymgr.
6452 2006-05-31  Jackson Harper  <jackson@ximian.com>
6454         * BindingManagerBase.cs: Remove somedebug code that creeped into
6455         SVN.
6456         * TreeNode.cs: We get the indent level dynamically right now, so
6457         don't track it as a member.
6458         * TreeNodeCollection.cs: Make sure all nodes added to the list
6459         have parents, treeviews/topnodes setup properly.
6460         - Don't attempt to track indent level.
6462 2006-05-30  Jackson Harper  <jackson@ximian.com>
6464         * BindingContext.cs: Create the currency manager tables here.
6465         This allows us to more easily create null tables (when bad data
6466         members are used), and more easily create related currency
6467         managers.
6468         * CurrencyManager.cs: All the table creation stuff is done by the
6469         binding context now.
6470         - Current should throw an exception if listposition is -1.
6471         - CancelCurrentEdit/EndCurrentEdit, do nothing if the list hasn't
6472         been bound yet.
6474 2006-05-30  Mike Kestner  <mkestner@novell.com>
6476         * ListView.cs: allow reexpansion of zero-width column headers.
6477         Fixes #78528.
6479 2006-05-28  Chris Toshok  <toshok@ximian.com>
6481         * CurrencyManager.cs (get_Current): after the late binding
6482         listposition = -1 fix, we need to guard against it here and return
6483         null, otherwise we raise an exception (which is swallowed
6484         elsewhere, and breaks datagrid databinding.)
6486 2006-05-26  Peter Dennis Bartok  <pbartok@novell.com>
6488         * MenuAPI.cs (ProcessMenuKey): We can legally get msg types other
6489           than WM_SYSKEY, don't throw if get something unexpected (#78507)
6491 2006-05-26  Jackson Harper  <jackson@ximian.com>
6493         * ControlPaint.cs:
6494         * ThemeWin32Classic.cs: For color comparisons just use the ARGB
6495         values, it's faster and it's all we care about (we don't care if
6496         the names aren't equal).
6497         * KeyboardLayouts.cs: Eliminate some dead code.
6498         - Lazy init things
6499         * X11Keyboard.cs: Lazy init keyboard detection.
6500         - Cleanup access modifiers a little.
6502 2006-05-26  Peter Dennis Bartok  <pbartok@novell.com>
6504         * XplatUIX11.cs: Once again, attempting to get layout just right.
6506 2006-05-26  Peter Dennis Bartok  <pbartok@novell.com> 
6508         * LinkLabel.cs (CreateLinkPieces): Use MeasureString to calculate
6509           the sizes of each link section, that will result in sizes that
6510           match DrawString's layout (Fixes #78391)
6512 2006-05-27  Alexander Olk  <alex.olk@googlemail.com>
6514         * FileDialog.cs: If AddExtension property is true autocomplete the
6515           extensions in SaveFileDialog correctly. Fixes bug #78453.
6516           Set MyNetwork and MyComputer to "C:\" for windows. This should
6517           fix part 8 of bug #78446 for now.
6519 2006-05-26  Chris Toshok  <toshok@ximian.com>
6521         * DataGrid.cs (ColumnStartedEditing): fill these in.  for now just
6522         invalidate the current row header if we need to, but presumably
6523         we'll invalidate the row corrsponding to the bounds or
6524         editingControl.
6525         (GridHScrolled): switch back to this method, as it's part of the
6526         public api.  *sigh*.
6527         (GridVScrolled): same.
6528         (OnMouseWheel): hack up something that more or less works.  Call
6529         GridHScrolled/GridVScrolled directly, instead of duplicating much
6530         of their code here.
6531         (EnsureCellVisibility): reinstate a bunch of this code, since we
6532         can't just set the scrollbar Value and expect to do all the work
6533         in the ValueChanged handler.  Also, Call Update() after scrolling
6534         in one direction so the other XplatX11.ScrollWindow call has the
6535         proper stuff in the proper places.
6536         (EditCell): set is_editing to true before calling .Edit.
6538         * DataGridTextBox.cs (set_IsInEditOrNavigateMode): just set it,
6539         don't bother comparing first.
6540         (OnKeyPress): call grid.ColumnStartedEditing before calling
6541         base.OnKeyPress.  this will set is_changing and invalidate the row
6542         header if necessary.
6543         (ProcessKeyMessage): for WM_CHAR messages, call
6544         ProcessKeyEventArgs directly.  swallow anything other than WM_CHAR
6545         and WM_KEYDOWN.
6546         
6547         * DataGridBoolColumn.cs (Edit): don't set is_editing to true here.
6548         it's done in the DataGrid.
6549         (NextState): call grid.ColumnStartedEditing, which takes care of
6550         invalidating the row header (and setting is_changing).
6552         * DataGridTextBoxColumn.cs (Edit): don't set is_editing to true
6553         here.  it's done in the DataGrid.
6555 2006-05-25 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6557         * Control.cs: allow changing the cursor when the mouse position is
6558         out of bounds but Capture is set.
6559         * LinkLabel.cs: handle the case when the mouse button is pressed on the
6560         linklabel but released somewhere else.
6562 2006-05-25  Jackson Harper  <jackson@ximian.com>
6564         * TreeView.cs: When we get focus if there is no selected node make
6565         it the top node
6566         - Remove some uneeded setup code from Draw.
6567         * TreeNodeCollection.cs: If the tree doesn't have a top node when
6568         a new node is inserted make the new node the top.
6569         * XplatUIX11.cs:
6570         * Timer.cs: Use Utc time so that no local time zone stuff needs to
6571         be used (should be faster).
6572         
6573 2006-05-25  Chris Toshok  <toshok@ximian.com>
6575         * DataGrid.cs (EnsureCellVisibility): remove some code to fix a
6576         problem with the last commit.
6578 2006-05-25  Chris Toshok  <toshok@ximian.com>
6580         * DataGridTextBoxColumn.cs (ReleaseHostedControl): turns out we do
6581         need the invalidate call here, while scrolling right-to-left via
6582         the left arrow key (i.e. moving the editing cell while scrolling).
6584         * DataGrid.cs (.ctor): remove the initialization of
6585         ctrl_pressed/shift_pressed.  We no longer track them using key
6586         up/down handlers, but by using Control.ModifierKeys.  Also, switch
6587         to using ValueChanged handlers on the scrollbars instead of
6588         Scrolled event handlers.  This simplifies a bunch of the scrolling
6589         code.
6590         (GridHValueChanged): rename from GridHScrolled, and change it to
6591         work with the new event args.
6592         (GridVValueChanged): same.
6593         (OnMouseDown): initialize ctrl_pressed/shift_pressed here.
6594         (OnMouseWheel): actually scroll the datagrid.  Don't change the
6595         selected cell.
6596         (ProcessGridKey): correct all the keyboard navigation stuff I
6597         could find.  Ctrl up/down/left/right/home/end work now.
6598         (EnsureCellVisibility): correct method name spelling.  Also,
6599         simplify this a touch by not explicitly calling the
6600         ScrollToRow/ScrollToColumnInPixels methods.  We just set the
6601         scrollbar value.
6602         (OnKeyUpDG): no need for this method now.
6603         
6604 2006-05-25 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6606         * LinkLabel.cs: display the OverrideCursor when hovering the label.
6607         Fixes bug #78392.
6609 2006-05-25  Chris Toshok  <toshok@ximian.com>
6611         * ThemeWin32Classic.cs: fix datagrid clipping problems caused by
6612         r61019.
6614 2006-05-25  Peter Dennis Bartok  <pbartok@novell.com> 
6616         * Application.cs: Moved setting of is_modal and closing to before
6617           we create the control, to allow the event handlers called as a
6618           result of creation affect closing. Also removed Gonzalo's previous
6619           change to setting DialogResult, the behaviour has been moved to 
6620           Form.ShowDialog()
6621         * Form.cs: 
6622           - ShowDialog(): Removed explicit creation of the form, let RunLoop
6623             handle it instead
6624           - ShowDialog(): If no dialog result is set, we need to return Cancel
6625           - WM_CLOSE: Fire Closing/Closed events, and reset dialog result if
6626             the close is cancelled
6628 2006-05-25  Jackson Harper  <jackson@ximian.com>
6630         * StatusBar.cs: We only need to update the sizes of the other
6631         panels when we have auto size contents.  Also we are only updating
6632         the contents of the panel, not the borders, so compensate for the
6633         border width (TODO: get this width from the theme somehow).
6634         * TreeView.cs: Scrollable is true by default
6635         - Use invalidate instead of refresh where needed
6636         - Factor the scrollable value into scrollbar updating
6637         - Update the scrollbars if the Scrollable property is altered
6638         - Update the selected node if its ImageIndex is changed
6639         - Handle null nodes in UpdateNode (mainly so we don't have to
6640         check if selected is null when updating it
6641         - Fix VisibleCount to use the ViewportRectangle so that scrollbars
6642         are factored into the visible count
6643         - Use VisibleCount for clarity in the code
6644         - When the font is changed we need to recurse through all the
6645         nodes and invalidate their sizes
6646         
6647 2006-05-25 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6649         * Application.cs: set the DialogResult to fixed when the main form is
6650         hidden or destroyed while being modal.
6652 2006-05-25  Miguel de Icaza  <miguel@novell.com>
6654         * Theme.cs: Use Tangoified messagebox icons. 
6656         (GetSizedResourceImage): Also cope with width = 0 and do not
6657         trigger a warning in that case (0 means "give me your icon from
6658         the resouce, no special size needed).
6660 2006-05-25  Peter Dennis Bartok  <pbartok@novell.com> 
6662         * Application.cs: Leave runloop if the the main modal form is 
6663           hidden (fixes #78484)
6665 2006-05-25  Atsushi Enomoto  <atsushi@ximian.com>
6667         * BindingContext.cs : reject null datasource in Contains() and
6668           Item[].
6669         * CurrencyManager.cs : check data_member validity when data_source
6670           is dataset. When it is late binding, the initial position is -1.
6672 2006-05-24  Jackson Harper  <jackson@ximian.com>
6674         * TreeNodeCollection.cs: Dont't recalculate the visible order on
6675         inserted nodes that aren't visible.  This changes the
6676         max_visible_order which confuses scrollbar settings.
6677         - Use the enumerator to get the prev node instead of duplicating
6678         code.
6679         * TreeView.cs: Use new method for setting scrollbar values
6680         - Don't set the bounds every time the scrollbar is updated
6681         - When updating below the root node use an invalidate instead of a
6682         refresh to prevent the child controls (scrollbars) from being
6683         refreshed. (UpdateBelow still needs to be reworked anyways).
6684         - Reenable SetBottom now that visible orders are set correctly,
6685         added some debug code incase we ever get bad values there again.
6686         - Set the scrollbar max to 2 less then the max value, this
6687         compensates for the max value being one above the node count, and
6688         for scrollbars adding one extra "notch".
6689         - When drawing image nodes if there is an imagelist we draw the
6690         first image in the list if the supplied image index is out of the
6691         image list's bounds.
6692         
6693 2006-05-24  Peter Dennis Bartok  <pbartok@novell.com> 
6695         * XplatUIX11.cs: Don't blindly cache hwnd.ClientRect, reset it when 
6696           we receive a size change from the WM (Fixes #78503)
6698 2006-05-24  Peter Dennis Bartok  <pbartok@novell.com>
6700         * XplatUIWin32.cs, XplatUIX11.cs: Refresh when setting the Clip 
6701           rectangle (Fixes #78501)
6703 2006-05-24  Peter Dennis Bartok  <pbartok@novell.com> 
6705         * ButtonBase.cs: 
6706           - Fixed MouseUp, MouseDown and MouseMove to treat mouseevent.Button 
6707             as a bitfield.
6708           - Fixed MouseMove to no longer switch pressed state unless the left
6709             mouse button is pressed. Atsushi provided the original patch (#78485)
6710           
6711 2006-05-24  Jackson Harper  <jackson@ximian.com>
6713         * ScrollBar.cs: New internal methods that allow us to change a
6714         couple values on the scrollbar (the most common case is maximum
6715         and large change) without getting multiple invalidates.
6717 2006-05-24  Chris Toshok  <toshok@ximian.com>
6719         * DataGridBoolColumn.cs (Abort): revert back to the saved setting.
6720         (Edit): save off the original state in oldState, and set
6721         grid.is_editing to true.
6722         (OnKeyDown): abort editing if escape is pressed.  also, call
6723         NextState if space is pressed.
6724         (OnMouseDown): call NextState.
6725         (NextState): factor out shared code from OnKeyDown and OnMouseDown
6726         here.  Also, only invalidate the row header once (on the initial
6727         is_changing switch) to save on redraws.
6729 2006-05-24  Chris Toshok  <toshok@ximian.com>
6731         * DataGridTextBoxColumn.cs (Commit): only call SetColumnValueAtRow
6732         if the value in the cell is different than it was before.  This
6733         keeps us from triggering a layout when we move around a datarid
6734         with a highlighted cell.
6735         (Edit): suspend layout when creating/positining the text box, and
6736         resume passing false so we don't ever actually re-layout.
6737         (ReleaseHostedControl): same.
6738         (EnsureTextBox): reformat slightly, and set WordWrap to false.
6740         * DataGridTextBox.cs (ProcessKeyMessage): it's not true that all
6741         control-key sequences should go to the datagrid - remove that
6742         lock.  Also, modify the conditions under which we move between
6743         cells when moving the cursor within a cell, and remove the "this"
6744         and "base" from field accesses.  We weren't even consistent, given
6745         they all were in the base class.
6747 2006-05-24  Atsushi Enomoto  <atsushi@ximian.com>
6749         * Binding.cs : (.ctor)
6750           An obvious NRE fix for BindingTest.CtorNullTest().
6752 2006-05-23  Chris Toshok  <toshok@ximian.com>
6754         * TextBoxBase.cs (get_Text): don't add a trailing newline, add
6755         them between lines.  This fixes some quirks editing cells in the
6756         datagrid.
6758 2006-05-23  Jackson Harper  <jackson@ximian.com>
6760         * TreeView.cs: Use begin/end update when doing expand/collapse all
6761         so that we don't get flicker on the scrollbar.
6763 2006-05-23  Jackson Harper  <jackson@ximian.com>
6765         * TreeNode.cs: Bounds are computed 'on the fly' now.  This allows
6766         treenode calculations to be independant of the painting code. To
6767         do this nodes track a visible order which is calculated by the
6768         treeview.
6769         - Call new methods for expanding/collapsing nodes.  These methods
6770         use scrollwindow so we don't have to update everything below the
6771         node.
6772         * TreeView.cs: Refactored drawing and scrolling code.  We don't
6773         need to update nodes when drawing anymore or calculate scrollbar
6774         stuff.
6775         - Added new methods for expanding/collapsing nodes. These methods
6776         use ScrollWindow so as to not have to redraw all the nodes below.
6777         * TreeNodeCollection.cs: Recalc visible order and scrollbars when
6778         we add/remove nodes or sort.
6779         - Handle removing the selected and the top node properly.
6781 2006-05-23  Chris Toshok  <toshok@ximian.com>
6783         * DataGridTextBoxColumn.cs (Edit): set grid.is_editing to true.
6784         maybe this should actually happen in the datagrid code?
6785         (EndEdit): no need to invalidate anything, given that
6786         ReleaseHostedControl causes the datagrid to relayout, which
6787         invalidates everything anyway.
6789         * DataGrid.cs (set_CurrentCell): remove duplicate check (it's also
6790         in SetCurrentCell).
6791         (set_SelectionBackColor): call InvalidateSelection instead of
6792         Refresh.
6793         (set_SelectionForeColor): same.
6794         (BeginEdit): Flesh this out a bit.
6795         (CancelEditing): only do any of this if we're editing/adding.
6796         (EndEdit): same.
6797         (OnMouseDown): there's no need to cancel editing here, it's done
6798         in SetCurrentCell.
6799         (SetCurrentCell): only invalidate the current row header if it's a
6800         different row than the new one.
6801         (ShiftSelection): fix this to work like MS does.
6802         (ResetSelection): factor out the invalidation of selected_rows to
6803         InvalidateSelection.
6804         (SetDataSource): cancel any editing that's going on.
6806         * DataGridColumnStyle.cs
6807         (IDataGridColumnStyleEditingNotificationService.ColumnStartedEditing):
6808         call the non-interface version.
6810         * ThemeWin32Classic.cs (DataGridPaintColumsHdrs): intersect the
6811         header rectangle with the clip rectangle so we don't redraw the
6812         entire header for just a small area.  Gets rid of the last flicker
6813         when horizontally scrolling.
6814         (DataGridPaintRow): same.
6816 2006-05-23  Mike Kestner  <mkestner@novell.com>
6818         * ListViewItem.cs: remove size for line hack from LargeIcon layout.
6819         * ThemeWin32Classic.cs: don't draw line.  it's really the top of a
6820         poorly placed checkbox on the MS control.  Fixes Alex's unfiled
6821         Critical bug report.
6823 2006-05-23  Peter Dennis Bartok  <pbartok@novell.com> 
6825         * PictureBox.cs: Fixed broken ControlStyles. Unit test no longer fails,
6826           and this fixes #78493
6828 2006-05-23  Miguel de Icaza  <miguel@novell.com>
6830         * Theme.cs (GetSizedResourceImage): Scale images if the proper
6831         size is not found.  
6832         
6833         * FileDialog.cs: Do not change the background for the side bar as
6834         it wont work nicely with the theme, and also reduces the artifacts
6835         in rendering the icons (which I want to fix too).
6837         * MimeIcon.cs (ResourceImageLoader): Load images from assembly
6838         resources, not resgen resources. 
6840         (PlatformDefaultHandler): Pull images using the new API.
6842 2006-05-23  Peter Dennis Bartok  <pbartok@novell.com> 
6844         * Hwnd.cs (Dispose): Remove any pending exposures. XEventQueue holds
6845           a reference to the hwnd and will not remove it unless there are
6846           no pending exposures (fixes #78341)
6847         * XplatUI.cs: Improved debug
6849 2006-05-23  Atsushi Enomoto  <atsushi@ximian.com>
6851         * MenuAPI.cs : don't handle OnClick event when it was not the left
6852           button. Fixed bug #78487.
6854 2006-05-23  Mike Kestner  <mkestner@novell.com>
6856         * MenuAPI.cs: fix placement of submenus for multi-row menu bars, and
6857         prefer submenus to the top menu for item lookup, to avoid popping down
6858         top-row items.
6860 2006-05-23  Alexander Olk  <alex.olk@googlemail.com>
6862         * ThemeWin32Classic.cs: Rewrote CPCPDrawScrollButton to drop
6863           Graphics.FillRectangle as the visual results are really bad (even
6864           on win). We now draw perfect arrows (and perfect shadows when the
6865           scrollbar is disabled). Simplified CPDrawGrid. CPDrawGrid now uses
6866           Pen.DashPattern to draw the dots of each line.
6868 2006-05-22  Alexander Olk  <alex.olk@googlemail.com>
6870         * FileDialog.cs: Update the filename combobox when navigating through
6871           the ListView with the cursor keys. Fixes part 7 of bug #78446.
6873 2006-05-22  Mike Kestner  <mkestner@novell.com>
6875         * ListView.cs: raise SelectedIndexChanged on keyboard selection.
6876         Fixes #78463.
6878 2006-05-22  Mike Kestner  <mkestner@novell.com>
6880         * ComboBox.cs: Refresh in EndUpdate to pick up all the dropped Paint
6881         requests. Fix a misspelled parameter and a copy paste exception error
6882         in Select.
6884 2006-05-22  Peter Dennis Bartok  <pbartok@novell.com> 
6886         * ThemeWin32Classic.cs: Changed DefaultFont emSize from 8.25 to 8
6887           to get the same width/height (5/13) on X11 as the default font has on
6888           win32. This means that our DefaultFont emSize is smaller than the 
6889           the MS SWF equivalent (even thought the width/height stays the same)
6891 2006-05-20  Jackson Harper  <jackson@ximian.com>
6893         * MdiClient.cs:
6894         * MdiWindowManager.cs:
6895         * InternalWindowManager.cs: Make sure to use the border width from
6896         the theme.
6898 2006-05-20  Jordi Mas i Hernandez <jordimash@gmail.com>
6900         * PrintDialog.cs: Implements printer details
6902 2006-05-19  Alexander Olk  <alex.olk@googlemail.com>
6904         * FileDialog.cs: Added focus handling for PopupButtonPanel.
6905           Fixes part 1 and 2 of bug #78446
6907 2006-05-19  Peter Dennis Bartok  <pbartok@novell.com> 
6909         * XplatUIX11.cs (SetWindowPos): Recalculate client area size on resizes
6910           instead of sticking to the first ever calculated value
6912 2006-05-19  Mike Kestner  <mkestner@novell.com>
6914         * ComboBox.cs: fix mouse motion selection to use MousePosition and
6915         PointToClient, since Capture is set. Fixes #78344.
6917 2006-05-19  Mike Kestner  <mkestner@novell.com>
6919         * ListView.cs: match MS behavior in Details view where items are not
6920         drawn if Columns.Count == 0. 
6921         * ThemeWin32Classic.cs: only highlight ListView selection if focused.
6922         Use a separate pen to draw the check, since changing the width affects
6923         the box as well.  Fixes #78454.
6925 2006-05-18  Miguel de Icaza  <miguel@novell.com>
6927         * ListView.cs: ArgumentOutOfRangeException, single versions of the
6928         exception should throw the name of the invalid argument.
6930         * FileDialog.cs (OnClickOpenSaveButton): Avoid crash in open if
6931         there are no files listed. 
6933 2006-05-18  Jackson Harper  <jackson@ximian.com>
6935         * ThemeWin32Classic.cs: Don't use endcaps, they mess the drawing
6936         up.
6938 2006-05-18  Peter Dennis Bartok  <pbartok@novell.com> 
6940         * Control.cs: Brought back our old UpdateZOrder method as a private
6941           function and switched our calls from UpdateZOrder to the new one.
6942           This fixes the Paint.Net canvas disappearing bug.
6944 2006-05-18  Jackson Harper  <jackson@ximian.com>
6946         * Theme.cs:
6947         * ThemeWin32Classic.cs:
6948         * InternalWindowManager.cs: Move the drawing into the theme,
6949         expose everything the theme should need from the window manager.
6951 2006-05-18  Peter Dennis Bartok  <pbartok@novell.com>
6953         * XplatUIX11.cs (DefWndProc): WM_SETCURSOR: Assign the return value 
6954           from the call to NativeWindow to avoid walking up the parent chain
6955           further than needed (speeds up setting cursors and avoids setting
6956           the wrong cursor if a parent has another cursor defined)
6957         * Cursor.cs: When loading an icon as cursor, MS uses the center of
6958           the icon as hotspot, not what's contained as hotspot in the icon
6959           file. This fixes the perceived drawing offset seen with Paint.Net
6960         
6961 2006-05-18  Peter Dennis Bartok  <pbartok@novell.com> 
6963         * XplatUIX11.cs: 
6964           - Store the calculated rectangle in Hwnd object and use it when 
6965             setting the client size
6966           - Force Toolwindows to always be type Dock, to ensure they're on top
6968 2006-05-18  Mike Kestner  <mkestner@novell.com>
6970         * ComboBox.cs: first pass at ComboBox rework.  Layout is more
6971         consistent with MS positioning.  IntegralHeight, ItemHeight, Sizing.
6972         Correctly initialize textcontrol and ListBox on DropDownStyle changes. 
6973         Substantial refactoring to remove confusing nested classes. Coding
6974         standard and Get+Set->property refactorings.  Shift to index based
6975         highlighting in ComboListBox instead of constantly using IndexOf and
6976         Items[]. Add invalidations on resize for DropDownList to fix ugliness
6977         in FileDialog growth.  Draw borders manually since Simple mode needs
6978         to look like two independent controls.  Make listbox border
6979         conditional to DropDownStyle.  Improved OwnerDraw support.
6981 2006-05-18  Sebastien Pouliot  <sebastien@ximian.com>
6983         * PaintEventArgs.cs: For 2.0, check for a null Graphics in the .ctor. 
6984         Don't set the disposed graphics to null, so we can throw the "right"
6985         exception if the graphics is reused later (added a flag to avoid 
6986         double disposing). Some behaviours are different under 2.0 and are
6987         filled under bug #78448.
6989 2006-05-18  Peter Dennis Bartok  <pbartok@novell.com>
6991         * Control.cs: When double-buffering is enabled, we need to reset
6992           our graphics context between paint calls. Otherwise, any 
6993           transformations and other alterations on the context will 
6994           become cumulative (#77734)
6996 2006-05-18  Mike Kestner  <mkestner@novell.com>
6998         * ListView.cs: do focused item selection like MS on clicks. 
6999         Rework focus handling for ItemControl so LostFocus invalidates as
7000         well.
7001         * ThemeWin32Classic.cs: only draw focus rectangle for ListViewItems if
7002         the ListView ItemControl has focus.
7004 2006-05-17  Peter Dennis Bartok  <pbartok@novell.com>
7006         * XplatUIX11.cs: If client_window ends up being width or height zero
7007           due to border settings, move it off window inside whole_window (#78433)
7009 2006-05-17  Alexander Olk  <alex.olk@googlemail.com>
7011         * Mime.cs: Shrink the mime file cache correctly.
7013 2006-05-17  Alexander Olk  <alex.olk@googlemail.com>
7015         * ThemeWin32Classic.cs: Readded button focus drawing code. (#78429)
7017 2006-05-16  Peter Dennis Bartok  <pbartok@novell.com>
7019         * XplatUIX11.cs (AddExpose): More sanity checks
7021 2006-05-16  Peter Dennis Bartok  <pbartok@novell.com> 
7023         * XplatUIX11.cs:
7024           - AddExpose: Don't add expose ranges outside the size of our
7025             window
7026           - Cast opacity values to Int32 to avoid crashes with certain
7027             values
7028           - Added disabled code paths that protect against illegal cross-
7029             thread painting (Developers.exe)
7031 2006-05-16  Peter Dennis Bartok  <pbartok@novell.com>
7033         * ProgressBar.cs: Invalidate the control when it's resized
7034           since block size is based on control size. (#78388)
7036 2006-05-16  Miguel de Icaza  <miguel@novell.com>
7038         * DataGrid.cs (SetDataBinding): per the discussion on irc, instead
7039         of setting the incoming argument to the "reset" value, we set the
7040         this.datamember to string.empty (before we were invalidating the
7041         incoming data).   
7043         Fixes 78420
7045 2006-05-16  Peter Dennis Bartok  <pbartok@novell.com> 
7047         * Form.cs: Only apply transparency settings after the form
7048           is created. (Fixes #77800)
7050 2006-05-16  Peter Dennis Bartok  <pbartok@novell.com>
7052         * ApplicationContext.cs: Grab the HandleDestroyed event so
7053           we know when to fire OnMainFormClosed 
7055 2006-05-16  Peter Dennis Bartok  <pbartok@novell.com> 
7057         * Application.cs: Introduced sub-class to allow tracking of
7058           threads and centralized triggering of the event mess for
7059           ThreadExit, AppExit, etc..  (#76156)
7061 2006-05-16  Alexander Olk  <alex.olk@googlemail.com>
7063         * MimeIcon.cs:
7064           - Do not return a null icon index value for a mime subclass.
7065             Instead try the main mime type class too.
7066           - Seems that some newer distributions don't have a link to some
7067             gnome default icons anymore. So check the default gnome dir too.
7068           
7070 2006-05-16  Jackson Harper  <jackson@ximian.com>
7072         * MdiClient.cs: Don't paint the parent background image if we have
7073         our own background image.
7075 2006-05-16  Peter Dennis Bartok  <pbartok@novell.com> 
7077         * Control.cs:
7078           - PerformLayout: Do not shrink space filled by DockStyle.Fill
7079             controls, all filled controls are supposed to overlap (#78080)
7080           - UpdateZOrder is supposed to update the control's z-order in the
7081             parent's z-order chain. Fixed to behave like that
7082           - BringToFront: Removed obsolete code
7083           - SendToBack: Simplyfied
7084           - SetChildIndex: Trigger layout calculations when Z-order changes
7085             since layout is done by z-order
7087 2006-05-16  Chris Toshok  <toshok@ximian.com>
7089         [ fixes bug #78410 ]
7090         * DataGrid.cs (set_AlternatingBackColor): use
7091         grid_drawing.InvalidateCells instead of Refresh().
7092         (set_BackColor): call grid_drawing.InvalidateCells.
7093         (set_BackgroundColor): use Invalidate instead of Refresh.
7095         * DataGridDrawingLogic.cs (InvalidateCells): new function, just
7096         invalidate the cell area.
7098 2006-05-15  Chris Toshok  <toshok@ximian.com>
7100         [ fixes bug #78011 ]
7101         * ThemeWin32Classic.cs (DataGridPaintRows): pass the clip argument
7102         on to DataGridPaintRow.
7103         (DataGridPaintRow): take a clip argument, and only draw the cells
7104         which intersect it.  same with the not_usedarea.
7106         * Theme.cs (DataGridPaintRow) add @clip parameter.
7108         * DataGrid.cs (ScrollToColumnInPixels): simplify, use
7109         XplatUI.ScrollWindow.
7110         (ScrollToRow): same.
7112         * DataGridDrawingLogic.cs (UpdateVisibleColumn): fix corner case
7113         with last column which was causing a gray swath to appear with the
7114         XplatUI.ScrollWindow code.
7116 2006-05-15  Chris Toshok  <toshok@ximian.com>
7118         * ListBox.cs (HorizontalScrollEvent): in the non-multicolumn case,
7119         use XplatUI.ScrollWindow.
7120         (VerticalScrollEvent): use XplatUI.ScrollWindow.
7122 2006-05-15  Peter Dennis Bartok  <pbartok@novell.com> 
7124         * TextBoxBase.cs: Added handling of middle-button paste for X11. (#78375)
7126 2006-05-15  Peter Dennis Bartok  <pbartok@novell.com>
7128         * Cursors.cs: For X11, read NWSE and NESW cursors from our resource
7129           file since there are no equivalent X11 cursors
7131 2006-05-15  Atsushi Enomoto  <atsushi@ximian.com>
7133         * MonthCalendar.cs : DateTimePicker should reflect selected date
7134           on mouse*up*, not mouse*down*. Fixed originally reported part of
7135           bug #76474.
7137 2006-05-15  Atsushi Enomoto  <atsushi@ximian.com>
7139         * TabControl.cs : When argument index is equal or more than tab
7140           count, just ignore. Fixed bug #78395.
7142 2006-05-15  Peter Dennis Bartok  <pbartok@novell.com>
7144         * Control.cs: Dispose all child controls when control is diposed (#78394)
7146 2006-05-14  Alexander Olk  <alex.olk@googlemail.com>
7148         * ColorDialog.cs: Finally it is possible to select the color with
7149           the text boxes
7151 2006-05-14  Alexander Olk  <alex.olk@googlemail.com>
7153         * PrintDialog.cs: Fix typo
7155 2006-05-14  Alexander Olk  <alex.olk@googlemail.com>
7157         * PrintDialog.cs: PrintDialog is not resizable
7158         * ThemeWin32Classic.cs: Draw non links in LinkLabel with the correct
7159           color. Made some ToolBar drawing methods protected virtual.
7161 2006-05-13  Jordi Mas i Hernandez <jordimash@gmail.com>
7163         * PrintDialog.cs: Implementation of the PrintDialog
7165 2006-05-12  Chris Toshok  <toshok@ximian.com>
7167         * ScrollBar.cs (set_Value): don't use Dirty/Invalidate to move the
7168         thumb, instead use MoveThumb.  This has the side effect of making
7169         most of the other thumb moving machinery use MoveThumb as well.
7170         (OnHandleCreated): pass false for @dirty to UpdateThumbPos, as we
7171         need to actually invalidate the rectangle where the new thumb will
7172         go.
7173         (MoveThumb): use XplatUI.ScrollWindow to move the thumb around.
7174         We force an Update() after, so it's not as fast as it could be,
7175         but at least there's zero flicker and no droppings.
7176         (OnMouseMoveSB): in the thumb dragging case, use MoveThumb.
7177         (UpdateThumbPos): add another argument (dirty), which says whether
7178         or not to calculate/add dirty regions which we later invalidate.
7179         For cases where we know we're going to use MoveThumb, we pass
7180         false for this.  Otherwise, pass true.
7182 2006-05-12  Jackson Harper  <jackson@ximian.com>
7184         * ThemeWin32Class.cs: Fixes for alignment and icon rendering in
7185         the status bar.
7186         
7187 2006-05-12  Peter Dennis Bartok  <pbartok@novell.com>
7189         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs: Added new SetClipRegion
7190           and GetClipRegion methods and UserClipWontExposeParent property.
7191         * XplatUIWin32.cs: Implemented SetClipRegion/GetClipRegion methods,
7192           overriding UserClipWontExposeParent property, setting to false, since
7193           Win32 handles the required expose messages to draw our clipped parent
7194           areas internally
7195         * XplatUIX11.cs: Implemented SetClipRegion and GetClipRegion; updated
7196           PaintEventStart to set the user clip region if set.
7197         * Control.cs: 
7198           - Now internally tracking the Region for the control since we need to
7199             store it if the handle is not yet created and only set it when it
7200             becomes created. Before setting the region forced handle creation
7201           - Added code to draw the parents underneath a user-clipped region
7202         * Hwnd.cs: Added UserClip property
7204 2006-05-12  Chris Toshok  <toshok@ximian.com>
7206         * ScrollBar.cs (set_LargeChange): Refresh() -> InvalidateDirty()
7207         (set_Maximum): same.
7208         (set_Minimum): same.
7209         (set_SmallChange): same.
7210         (OnMouseUpSB): remove the call to refresh when releasing the
7211         thumb.  We shouldn't need it.
7212         
7213 2006-05-12  Miguel de Icaza  <miguel@novell.com>
7215         * StatusBar.cs (UpdatePanel): If the panel being refreshes has the
7216         AutoSize set to None, we do not need to relayout everything, we
7217         just need to invalidate the current region.
7219         (Draw): Do not draw the entire ClientArea, just redraw the
7220         clip area being passed.
7222         * MdiClient.cs: Make MdiClient constructor with the Form argument
7223         internal. 
7225 2006-05-12  Jackson Harper  <jackson@ximian.com>
7227         * ThemeWin32Classic.cs (DrawToolBar): Flat toolbars get their
7228         parents background image,  but strangely not their own.
7229         - (DrawStatusBarPanel): Take into account horizontal alignment
7230         when drawing the strings and icons.
7232 2006-05-12  Mike Kestner  <mkestner@novell.com>
7234         * ListBox.cs: avoid invalidations for focus when the collection is
7235         empty. 
7237 2006-05-12  Chris Toshok  <toshok@ximian.com>
7239         * ScrollBar.cs (OnMouseMoveSB): when dragging the thumb, don't
7240         invalidate the entire thumb area.  Call InvalidateDirty which
7241         limits the redraw to the thumb itself and surrounding pixels.
7243         * XplatUIX11.cs (ScrollWindow): optimize copying.
7244         
7245 2006-05-12  Chris Toshok  <toshok@ximian.com>
7247         * DataGridDrawingLogic.cs: make CalcGridAreas non-reentrant.
7248         Figure out the positioning/layout in a single pass instead of
7249         multiple recursive invocations.  Speeds up the initial display of
7250         the data grid.  Also, make many things private that were
7251         originally public but unused outside this class.
7253 2006-05-11  Jackson Harper  <jackson@ximian.com>
7255         * MdiClient.cs: Improved layout code.
7257 2006-05-11  Jonathan Chambers  <jonathan.chambers@ansys.com>
7259         * PropertyGrid.cs : Only check GetPropertiesSupported for properties,
7260           not SelectedObject.
7262 2006-05-11  Chris Toshok  <toshok@ximian.com>
7264         * Hwnd.cs (Invalid): don't start off with Rectangle.Empty, as
7265         union of that will always be {0,0,width,height}.
7267 2006-05-11  Jackson Harper  <jackson@ximian.com>
7269         * Form.cs: Match MS's DefaultSize for forms (they must have
7270         changed the size in sp2).
7272 2006-05-11  Atsushi Enomoto  <atsushi@ximian.com>
7274         * TextBoxBase.cs : implement CTRL+A (select all). Fixed bug #78368.
7276 2006-05-11  Atsushi Enomoto  <atsushi@ximian.com>
7278         * TextControl.cs : Fixed bug #78109. This incorrect position
7279           comparison caused crash on automatic line split.
7280         * TextBoxBase.cs : reduce duplicate code.
7282 2006-05-10  Jackson Harper  <jackson@ximian.com>
7284         * MdiClient.cs: Active form is only sent to the back when using
7285         the Next form functionality, when a form is clicked the current
7286         active shouldn't be sent to the back.
7287         - Layout the mdi windows when the container is first made visible.
7288         * Form.cs: Give the MdiClient a ref to the containing form when we
7289         create it.
7290         
7291 2006-05-10  Atsushi Enomoto  <atsushi@ximian.com>
7293         * LinkLabel.cs : link_font could be uninitialized, so populate one
7294           before actual use. Fixed bug #78340.
7296 2006-05-10  Atsushi Enomoto  <atsushi@ximian.com>
7298         * XplatUIX11.cs : clipboard format native value is IntPtr.
7299           Fixed bug #78283.
7301 2006-05-10  Peter Dennis Bartok  <pbartok@novell.com>
7303         * Control.cs: 
7304           - Instead of showing context menus directly we send WM_CONTEXTMENU, 
7305             which is passed up the parent chain by DefWndProc
7306           - We now handle WM_CONTEXTMENU to display any menu, or pass it 
7307             to DefWndProc (#77956)
7308         * XplatUIX11.cs: Added handling of WM_CONTEXTMENU (pass up) to DefWndProc
7310 2006-05-10  Jackson Harper  <jackson@ximian.com>
7312         * MdiClient.cs: We need to remove the controls from the mdi
7313         collection, when we close the window.
7314         * MdiWindowManager.cs: Special handling of closing mdi windows.
7315         * InternalWindowManager.cs: Make the close method virtual so the
7316         mdi window manager can handle it specially.
7318 2006-05-10  Jordi Mas i Hernandez <jordimash@gmail.com>
7320         * DataGrid.cs:
7321           - Recalculate grid when the data source has changed
7322           - Matches styles provided by user from all data sources types
7323         * DataGridTableStyle.cs: For columns that provided by the user set the
7324         with the preferred value is there was unassigned.
7325         * CurrencyManager.cs: throw OnItemChanged event
7327 2006-05-10  Peter Dennis Bartok  <pbartok@novell.com> 
7329         * PictureBox.cs: Don't animate until handle is created. Start animation
7330           when handle is created.
7332 2006-05-10  Peter Dennis Bartok  <pbartok@novell.com>
7334         * XplatUIX11.cs, Hwnd.cs: Adopted Mike's patch from #77979 to match
7335           current codebase.
7336         * XEventQueue.cs: We don't need to provide the extra info
7338 2006-05-10  Jackson Harper  <jackson@ximian.com>
7340         * MdiClient.cs: If the mdi clients parent form has a background
7341         image set, we draw that background image for the mdi area's
7342         background.
7344 2006-05-10  Peter Dennis Bartok  <pbartok@novell.com>
7346         * TextBoxBase.cs: Set IBeam cursor (#78347)
7348 2006-05-10  Mike Kestner  <mkestner@novell.com>
7350         * ToolBar.cs: fix some text padding issues with ButtonSize
7351         calculation. Update the default size to match MS documentation.
7352         * ToolBarButton.cs: use ToolBar.ButtonSize for layout of unspecified
7353         button size. Fixes #78296.
7355 2006-05-10  Mike Kestner  <mkestner@novell.com>
7357         * ListBox.cs: use is_visible for scrollbar positioning in case the
7358         control isn't on screen yet.  Fix off by one with Right vs Width
7359         usage.  Update Scrollbars in SetBoundsCore. Fixes #78188 and #78258.
7360         
7361 2006-05-10  Jackson Harper  <jackson@ximian.com>
7363         * X11Dnd.cs: Drop to a control with another control on top of it.
7364         * ToolBar.cs: Work on a copy of the buttons list, so that it can
7365         be modified in click handlers. TODO: Look for similar problems in
7366         other controls.
7368 2006-05-09  Jackson Harper  <jackson@ximian.com>
7370         * Form.cs: Window managers need the old window state when setting
7371         window state now.
7372         * InternalWindowManager.cs: Allow the base mdi window manager to
7373         handle more of the MDI only stuff (like maximize buttons).
7374         * MdiWindowManager.cs: Fix some snafus in changing the window
7375         state.  Add all the menu functionality, for both popup and
7376         maximized menus.
7377         * MdiClient.cs: When a new form is selected the currently
7378         activated form is sent to the back, this matches MS.
7379         - Implement a new method to activate the next mdi child window.
7381 2006-05-08  Peter Dennis Bartok  <pbartok@novell.com>
7383         * Control.cs: 
7384           - Added new InternalCapture method to allow controls to prevent
7385             the capture behaviour on the click handlers
7386           - Switched to use InternalCapture
7387         * ComboBox.cs:
7388           - Using InternalCapture to prevent mouse captures from being released
7389             on mouse button release (Fixes #78100)
7390         * XplatUIX11.cs (DeriveStyles): Now checks caption state and only
7391           returns Form borders if a caption is present. (Fixes #78310)
7393 2006-05-08  Peter Dennis Bartok  <pbartok@novell.com> 
7395         * TreeNode.cs: Changed serialization .ctor to not require every field
7396           to be present. (#78265)
7397         * OwnerDrawPropertyBag.cs: Added serialization .ctor
7399 2006-05-05  Alexander Olk  <alex.olk@googlemail.com>
7401         * MimeIcon.cs: for is faster than foreach for strings.
7403 2006-05-05  Mike Kestner  <mkestner@novell.com>
7405         * CheckedListBox.cs: update check handling code to not use selected.
7406         * ListBox.cs: rewrite of mouse selection handling to correspond to MS
7407         behavior for visual feedback, motion response, shift/ctrl handling,
7408         and properly deal with all 4 selection modes. Updates to bounds
7409         handling logic.  Add scroll wheel support. [Fixes #77842]
7411 2006-05-05  Peter Dennis Bartok  <pbartok@novell.com> 
7413         * ListView.cs:
7414           - Moved adding of Implicit controls into .ctor. That way, subsequent
7415             creation of the controls will not cause them to think they are 
7416             toplevel windows (fixes #78200 header problem)
7417           - Added 2.0 ShowGroups and UseCompatibleStateImageBehaviour
7418           - Switched visibility setting of header control to use internal field
7419             to avoid triggering handle creation
7420           - Now checking if handle is created before causing a refresh when items
7421             are added (This makes us now match handle creation time with MS)
7422         * Splitter.cs: Removed loading of private splitter cursor, switched to
7423           Cursors version now that that is loading the right ones
7424         * Cursors.cs: Load proper splitter cursors from resources
7425         * Cursor.cs: Added second method of loading resource cursors for the 
7426           VS.Net users amongst us
7428 2006-05-05  Mike Kestner  <mkestner@novell.com>
7430         * ListView.cs: give header_control a minimum size based on the
7431         ListView size.
7433 2006-05-05  Peter Dennis Bartok  <pbartok@novell.com> 
7435         * XplatUIX11.cs: WS_EX_TOPMOST requires window to be on top. A dock
7436           window seems to do that with metacity, so set that type. (#78120)
7438 2006-05-05  Mike Kestner  <mkestner@novell.com>
7440         * ListViewItem.cs: fix Details mode checkbox layout bug.
7441         * ThemeWin32Classic.cs: draw a ListView column header for unused space
7442         at the end of the header, if it exists. [Fixes for #78200]
7444 2006-05-04  Jackson Harper  <jackson@ximian.com>
7446         * MdiClient.cs: Add a helper property to get the container form.
7447         * MdiWindowManager.cs: We have to make sure to use the menu origin
7448         when drawing the icons and buttons, this fixes maximized window
7449         icons/buttons on win32.
7450         * InternalWindowManager.cs: Reset the restore captions when a
7451         window goes from Maximized to Minimized and vice versa. Move the
7452         DrawMaximizedButtons into the MdiWindowManager source, tool
7453         windows can't be maximized. NOTE: This could use a little
7454         refactoring if time ever permits.
7455         
7456 2006-05-03  Jonathan Chambers  <jonathan.chambers@ansys.com>
7458         * TextBox.cs: Add MWFCategoryAttributes
7459         * TextBoxBase.cs: Add MWFCategoryAttributes
7460         * Form.cs: Add MWFCategoryAttributes
7462 2006-05-03  Jonathan Chambers  <jonathan.chambers@ansys.com>
7464         * Control.cs: Add MWFCategoryAttributes
7465         * ScrollableControl.cs: Add MWFCategoryAttributes
7467 2006-05-03  Alexander Olk  <alex.olk@googlemail.com>
7469         * ThemeWin32Classic.cs: Draw the ToolBar top border only if
7470           Divider is true. Fix a little glitch in PropertyToolBar
7471           drawing code
7473 2006-05-02  Peter Dennis Bartok  <pbartok@novell.com> 
7475         * Control.cs:
7476           - Dispose: Call base.Dispose, this causes the disposed event
7477             to be fired (and probably other, more important stuff)
7478           - SetVisibleCore: Set is_visible to true after creating the
7479             window so that the window still gets created invisible (if
7480             WM_VISIBLE isn't set). That will cause the ShowWindow afterwards
7481             to generate a WM_ACTIVE message
7482         * Form.cs: Call Dispose when we want to destroy the window, instead of
7483           just destroying the handle (Dispose will do that for us)
7484         * XplatUIX11.cs:
7485           - RootWindow also needs a queue, so we can properly process the
7486             property change events from RootWindow (like Activate)
7487           - Generatic synthetic WM_ACTIVE message when the active window is
7488             being destroyed
7490 2006-05-01  Peter Dennis Bartok  <pbartok@novell.com> 
7492         * LinkLabel.cs: Trigger a recalc of our label dimensions when
7493           bounds are changed
7495 2006-05-01  Peter Dennis Bartok  <pbartok@novell.com>
7497         * ThemeWin32Classic.cs (ButtonBase_DrawImage): Use the proper image
7498           for determining width and height (image might not be assigned if
7499           we're drawing an imagelist)
7501 2006-05-01  Peter Dennis Bartok  <pbartok@novell.com> 
7503         * XplatUI.cs, XplatUIDriver.cs: Added MenuHeight property
7504         * XplatUIWin32.cs: Overriding new MenuHeight property, retrieving
7505           height from system
7506         * Theme.cs: No longer returns hardcoded menu height, instead calls
7507           new driver method
7508         * Form.cs (OnLoad): Scaling happens before triggering Load events 
7509           on MS (# 78257)
7511 2006-05-01  Mike Kestner  <mkestner@novell.com>
7513         * MenuItem.cs: fix NRE for text == null.  Fixes #78250.
7515 2006-04-30  Peter Dennis Bartok  <pbartok@novell.com> 
7517         * TextBoxBase.cs: Removed Fixme
7518         * RichTextBox.cs (set_RTF): Invalidate document after update (#78247)
7520 2006-04-30  Peter Dennis Bartok  <pbartok@novell.com>
7522         * XplatUIX11.cs:
7523           - ScrollWindow: We were passing hwnd.ClientRectangle which returns
7524             the rectangle relative to the parent, considering borders. We
7525             don't really want that.
7526           - ScrollWindow: Fixed warning to be more understandable
7527         * TextBoxBase.cs: Fixed ScrollWindow calculations to consider our
7528           scrollbars and scroll only the visible area
7529         * RichTextBox.cs: Removed debug output
7531 2006-04-29  Peter Dennis Bartok  <pbartok@novell.com>
7533         * NumericUpDown.cs (Text): Just use base
7534         * UpDownBase.cs: Ensure txtView is created before using it
7536 2006-04-29  Peter Dennis Bartok  <pbartok@novell.com> 
7538         * XplatUIX11.cs (SetWindowTransparency): Casting opacity to int before
7539           casting to IntPtr to avoid 64bit overflow errors
7541 2006-04-29  Peter Dennis Bartok  <pbartok@novell.com>
7543         * Control.cs:
7544           - AllowDrop: Don't force handle creation.
7545           - CreateHandle: Added call to tell driver if we're allowed to drop
7547 2006-04-27  Alexander Olk  <alex.olk@googlemail.com>
7549         * FileDialog.cs: Remember the last directory not only for the
7550           current instance but also for new FileDialog instances.
7552 2006-04-29  Peter Dennis Bartok  <pbartok@novell.com> 
7553         
7554         * XplatUIX11.cs: Forgot to set the queue on the foster parent. That
7555           broke sending async messages
7557 2006-04-29  Peter Dennis Bartok  <pbartok@novell.com>
7559         * XplatUIX11.cs:
7560           - ScrollWindow: Fixed method. We finally generate expose events again
7561             for scrolled areas. This was causing 'garbage' when scrolling
7562             textbox and other controls that used ScrollWindow
7563           - Switched from using the regular queue for paint events to the MS 
7564             model of 'generating' paint events when the queue is empty.
7565             We use the new XQueueEvent.Paint subclass to store which windows
7566             need painting.
7567           - AddExpose now takes the x/y/width/height of the exposed area
7568             and inserts the window into the paint queue if not already there
7569           - InvalidateWholeWindow: Switched to use new AddExpose method
7570           - UpdateMessageQueue: Added which queue to monitor for paint events
7571           - DefWndProc: Added default handler for WM_PAINT and WM_NCPAINT in
7572             the unlikely case nothing above handles it. We reset the expose
7573             pending states to get them off the queue.
7574           - GetMessage: Now pulls a paint event if no other events are in the
7575             queue
7576           - Invalidate: Switched to new AddExpose method
7577           - PeekMessage: Updated to understand pending paint events
7578           - UpdateWindow: Fixed logic bug. We were only updating if the window
7579             didn't need updating. Also switched to sending WM_PAINT directly,
7580             like MS does.
7581         * XEventQueue.cs: Added Paint queue support. Allows enqueue/dequeue
7582           and random access Remove(). The random access is needed to handle
7583           UpdateWindow() where a WM_PAINT is sent directly without accessing
7584           the queue.
7585         * ScrollBar.cs: Added Update() calls to cause immediate updates to
7586           allow for better feedback when scrolling. Scrollbars are small and
7587           the immediate update should make it 'feel' more responsive without
7588           slowing things down. ScrollBar still needs it's invaliate logic
7589           updated to not always invalidate the whole bar on certain changes.
7591 2006-04-28 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7593         * Control.cs:
7594         (BackColor): if the control does not support a transparent background,
7595         return the default backcolor when the parent backcolor is transparent.
7597 2006-04-28  Peter Dennis Bartok  <pbartok@novell.com>
7599         * Application.cs: Updated to new StartLoop/GetMessage API
7600         * RichTextBox.cs: Provide some output on RTF parsing errors
7601         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs, XplatUIWin32.cs: Added
7602           new queue_id argument to GetMessage and PeekMessage to allow faster
7603           handling of per-thread queues in drivers.
7604         * Hwnd.cs: Added Queue tracking and property
7605         * MenuAPI.cs: Updated to new StartLoop/GetMessage API
7606         * XEventQueue.cs: Added thread trackingA
7607         * PropertyGridView.cs: Updated to new StartLoop/GetMessage API
7608         * XplatUIX11.cs:
7609           - Implemented new per-thread queue
7610           - GetMessage: Fixed return/break behaviour on several cases. We were
7611             returning stale messages in some cases, instead of just processing
7612             the next message
7614 2006-04-27  Jonathan Chambers  <jonathan.chambers@ansys.com>
7616         * PropertyGrid.cs: Call GetPropertiesSupported on TypeConverter.
7618 2006-04-27  Peter Dennis Bartok  <pbartok@novell.com>
7620         * ThemeWin32Classic.cs (DrawToolBar): Refactored, simplified the logic,
7621           fixed off-by-one comparisons between Width/Height and Right/Bottom.
7623 2006-04-27  Jonathan Chambers  <jonathan.chambers@ansys.com>
7625         * PropertyGridView.cs: Fix drop down width.
7627 2006-04-27  Alexander Olk  <alex.olk@googlemail.com>
7629         * ThemeWin32Classic.cs: Peter thinks that three additional lines are
7630           a mess in DrawToolBar, so I removed one of them.
7632 2006-04-27  Alexander Olk  <alex.olk@googlemail.com>
7634         * ThemeWin32Classic.cs: Draw the ToolBar border lines only if
7635           needed (clip). Otherwise we get artifacts.
7637 2006-04-26  Peter Dennis Bartok  <pbartok@novell.com>
7639         * FixedSizeTextBox.cs: Added constructor to allow specifying which
7640           dimension is fixed
7641         * UpDownBase.cs: Set the spinner control to be fixed height vertical,
7642           and switched FixedSizeTextBox to only be fixed vertical (#78116)
7643         * Form.cs: Not applying the 'MS 0.08 fudge factor' for a given dimension
7644           if it matches the scale base font (avoids unneeded scaling)
7646 2006-04-26  Alexander Olk  <alex.olk@googlemail.com>
7648         * X11DesktopColors.cs: One gtk_init_check should be enough
7650 2006-04-26  Peter Dennis Bartok  <pbartok@novell.com> 
7652         * TextBoxBase.cs: Moved Backspace handling into WM_CHAR block to
7653           match MS behaviour
7655 2006-04-26  Peter Dennis Bartok  <pbartok@novell.com>
7657         * TextBoxBase.cs: 
7658           - Generate OnTextChanged for Backspace even if we're only deleting
7659             the current selection
7660           - When setting the Text property, only select all text if the
7661             control does not have focus when it is being set. Otherwise
7662             just place the cursor at the beginning of the control
7664 2006-04-26  Alexander Olk  <alex.olk@googlemail.com>
7666         * ThemeWin32Classic.cs: ToolBars get drawn with two lines at the top.
7667           Added a little helper to draw PropertyGrid ToolBar with a different
7668           border and a different BackColor.
7669         * PropertyGrid.cs: Some background parts didn't get painted with the
7670           correct background color. Added a class that helps us to draw the
7671           correct border for PropertyGridView and a class that helps us to
7672           draw ToolBars with a different backcolor
7673         * PropertyGridView.cs: Draw PlusMinus with the correct colors.
7675 2006-04-25  Jonathan Chambers  <jonathan.chambers@ansys.com>
7677         * PropertyGrid.cs: Bug 78196, font size, and splitter location.
7678         * PropertyGridView.cs: Bug 78196, font size, and splitter location.
7680 2006-04-25  Peter Dennis Bartok  <pbartok@novell.com> 
7682         * XplatUIWin32.cs (DIBtoImage): ORing instead of ANDing the alpha
7683           into the palette entries. Also, since we're working on a copy
7684           we needed to copy the palette back onto the bitmap.
7685         * Cursor.cs: Same fix as XplatUIWin32.cs.
7687 2006-04-25  Peter Dennis Bartok  <pbartok@novell.com>
7689         * ImageListStreamer.cs: Need to read the var (or we're off)
7691 2006-04-25  Peter Dennis Bartok  <pbartok@novell.com> 
7693         * TextControl.cs, ComboBox.cs, CommonDialog.cs, Theme.cs, 
7694           XplatUIWin32.cs, RichTextBox.cs, ImageListStreamer.cs,
7695           TextBoxBase.cs: Unused var fixes
7696         * AxHost.cs: Small 2.0 fix
7697         * XplatUIX11.cs: Switched to IntPtr from int for XA_CARDINAL atoms 
7698           as it seems that is what at least Metacity expects. This will make
7699           icons show up on 64bit platforms. We still have some 64bit size
7700           issues, though, since the startup app window size still won't match.
7702 2006-04-25  Mike Kestner  <mkestner@novell.com>
7704         * *.cs: cleanup newly reported exception var unused warnings.
7706 2006-04-25  Alexander Olk  <alex.olk@googlemail.com>
7708         * ThemeWin32Classic.cs: Button image alignment now matches exactly
7709           ms
7711 2006-04-25  Alexander Olk  <alex.olk@googlemail.com>
7713         * ThemeWin32Classic.cs: Fixed drawing code for buttons with an
7714           image. The image position is always the same, no matter if the
7715           button is pressed or not.
7717 2006-04-25  Alexander Olk  <alex.olk@googlemail.com>
7719         * FileDialog.cs: SaveFileDialog shouldn't rely on a MWFFileView
7720           selection and set the correct filename for SaveFileDialog.
7721           Patch by Emery Conrad.
7723 2006-04-24  Mike Kestner  <mkestner@novell.com>
7725         * ListView.cs (LastVisibleIndex): when in List mode of Alignment.Left,
7726         check for item.X outside the ClientRect instead of item.Y. Fixes
7727         #78151.
7729 2006-04-21 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7731         * ImageListStreamer.cs: some images store a wrong grow factor, so don't
7732         trust that value blindly and do some sanity check. Fixes bug #77814.
7734 2006-04-21 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7736         * ImageListStreamer.cs: save the mask as a 1bpp image.
7738 2006-04-21  Mike Kestner  <mkestner@novell.com>
7740         * CheckedListBox.cs: maintain CheckStatus here. Use DrawItemState to
7741         pass Checked and Indeterminate to the Theme Engine. Improve
7742         encapsulation with ListBox.
7743         * ListBox.cs: Keep a StringFormat instead of calculating it every item
7744         draw. Kill ListBoxItem. Refactor away the ListBoxInfo and ListBoxItem
7745         nested types.  Move all CheckState functionality to CheckedListBox.
7746         Make IntegralHeight work like MS.  Rewrite of Layout engine.  Fix
7747         OwnerDrawVariable layout/rendering.  Fix multicolumn rendering.  Fix
7748         ScrollAlwaysVisible handling. Refactor "selected" collections to use a
7749         single base list. Fix scrollbar sizing and placement to mirror MS.
7750         * Theme.cs: remove CheckedListBoxCheckRectangle. It wasn't really
7751         used.
7752         * ThemeWin32Classic.cs: implement Indeterminate CheckState rendering
7753         for CheckedListBox by using new DrawItemState info.  Center the
7754         checkboxes on the items. Use new StringFormat property.
7756 2006-04-18  Jackson Harper  <jackson@ximian.com>
7758         * Form.cs: MdiChildren don't do default locations the same way as
7759         regular forms.  This prevents a crash when trying to position the
7760         mdi windows.
7762 2006-04-17  Jonathan Chambers  <jonathan.chambers@ansys.com>
7764         * PropertyGridTextBox.cs: Formatting, copyright
7765         * PropertiesTab.cs: Formatting
7766         * PropertyGrid.cs: Formatting
7767         * PropertyGridView.cs: Formatting, fix drop down, enabled double 
7768           click toggling of values
7769           
7770 2006-04-17  Peter Dennis Bartok  <pbartok@novell.com> 
7772         * KeyPressEventArgs: Added 2.0 only setter for KeyChar
7773         * Control.cs (.ctor): verify_thread_handle is static, don't reset
7774           every time a control is created
7775         * Application.cs: Removed obsolete EnableRTLMirroring method
7777 2006-04-18  Gert Driesen  <drieseng@users.sourceforge.net>
7779         * TabControl.cs: Avoid ArgumentOutOfRangeException when setting
7780         SelectedIndex to -1. Fixes bug #78121.
7782 2006-04-17  Jackson Harper  <jackson@ximian.com>
7784         * Binding.cs: Handle null values for Current and BindingContext.
7785         This occurs when binding is a little delayed.
7786         * CurrencyManager.cs: return null for Current when there are no
7787         items in the list.
7788         - Hookup to the listchanged event on the DataView and update
7789         bindings when the list is changed.  This fixes late binding of
7790         controls.
7792 2006-04-17  Jackson Harper  <jackson@ximian.com>
7794         * X11Dnd.cs:
7795         * XplatUIX11.cs: Drops should not create a mousedown. Patch by Tim
7796         Ringenbach.
7798 2006-04-15  Alexander Olk  <alex.olk@googlemail.com>
7800         * ThemeWin32Classic.cs: Draw disabled combo button in the correct
7801           place
7802         * ComboBox.cs: If the combobox is disabled call CPDrawComboButton
7803           with the correct ButtonState
7805 2006-04-14  Peter Dennis Bartok  <pbartok@novell.com>
7807         * XplatUIX11.cs: Improved distinguishing between window types to
7808           tell the WM a type closer to what the app wants (Fixes #78107)
7810 2006-04-14  Alexander Olk  <alex.olk@googlemail.com>
7812         * ThemeWin32Classic.cs: Fixed drawing of ContainerGrabHandle and
7813           GrabHandle
7815 2006-04-14  Alexander Olk  <alex.olk@googlemail.com>
7817         * ThemeWin32Classic.cs: Fixed size grip drawing and updated StatusBar
7818           drawing code to reflect the size grip changes
7820 2006-04-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7822         * ImageListStreamer.cs: fix handling of the mask that follows the main
7823         bitmap when deserializing and serialize it properly. The generated mask
7824         should better be a 1bpp image, but I'll do that later.
7826 2006-04-13  Alexander Olk  <alex.olk@googlemail.com>
7828         * FileDialog.cs: Show something in the DirComboBox on *nix if the
7829           path doesn't fit into some of our Current.Places
7831 2006-04-13  Jackson Harper  <jackson@ximian.com>
7833         * ComboBox.cs: Use borders instead of drawing our own decorations,
7834         try to obey correct rules for heights.
7835         * Theme.cs:
7836         * ThemeNice.cs:
7837         * ThemeClearLooks.cs:
7838         * ThemeWin32Classic.cs: Remove combobox decoration drawing code,
7839         this is now handled by borders.
7840         - Remove unused DrawListBoxDecorationSize method.
7841         
7842 2006-04-13  Mike Kestner  <mkestner@novell.com>
7844         * MenuAPI.cs: null guarding for the disbled click check fixes crash
7845         reported by Alex.
7847 2006-04-13  Alexander Olk  <alex.olk@googlemail.com>
7849         * ThemeWin32Classic.cs: 
7850           - Fixed CPDrawStringDisabled
7851           - Corrected drawing of disabled menu items
7852           - Fixed drawing of disabled radio buttons (bug #78095)
7853           - Draw check in a disabled CheckBox with color ControlDark 
7855 2006-04-12  Peter Dennis Bartok  <pbartok@novell.com>
7857         * Form.cs: Use the provided width when calculating the menu size;
7858           when being maximized we get WM_NCCALCSIZE before WM_WINDOWPOSCHANGED
7859           and ClientSize.Width won't be updated yet
7860         * Application.cs: Use Visible instead of Show() to make form visible,
7861           this way we create the handle later and menusize is considered
7863 2006-04-12  Mike Kestner  <mkestner@novell.com>
7865         * MenuAPI.cs: ignore clicks on disabled menu items. Thanks to Alex for
7866         reporting.
7868 2006-04-12  Peter Dennis Bartok  <pbartok@novell.com>
7870         * TextBox.cs: Implemented context menu
7872 2006-04-12  Mike Kestner  <mkestner@novell.com>
7874         * ListView.cs: implement box selection. fixes #77838.
7875         * ThemeWin32Classic.cs: draw box select rect, remove a ResetClip.
7877 2006-04-12  Peter Dennis Bartok  <pbartok@novell.com> 
7879         * XplatUIX11.cs: Added setting of window type when transient window
7880           is created (metacity would move it otherwise)
7881         * X11Structs.cs: Added WINDOW_TYPE atoms
7882         * LinkLabel.cs: Override OnPaintBackgroundInternal and draw the
7883           background (the control is Opaque but still wants transparent
7884           backgrounds)
7886 2006-04-12  Peter Dennis Bartok  <pbartok@novell.com>
7888         * Control.cs: Added OnPaintBackgroundInternal to allow controls
7889           that set Opaque but don't mean it (like all ButtonBase-derived
7890           controls) to still draw their background
7891         * ButtonBase.cs: Override OnPaintBackgroundInternal and draw
7892           the background
7894 2006-04-12  Peter Dennis Bartok  <pbartok@novell.com> 
7896         * Control.cs (PaintControlBackground): Set the graphics object
7897           on our PaintEvent to null to prevent it from being disposed
7898           when the PaintEvent gets disposed
7900 2006-04-12  Alexander Olk  <alex.olk@googlemail.com>
7902         * ThemeWin32Classic.cs: Use even more SystemBrushes and SystemPens
7903         * ThemeNice.cs, ThemeClearlooks.cs: fix typo
7905 2006-04-12  Peter Dennis Bartok  <pbartok@novell.com>
7907         * Control.cs: 
7908           - Added transparency check to BackColor property. Transparent
7909             backgrounds are only allowed if the control styles permit it
7910           - Added recursive painting of parent control background and
7911             foreground if a control with a transparent backcolor is drawn
7912             (Thanks to Tim Ringenback for providing his 'hack' as a base
7913              for this patch) Fixes #77985 and #78026.
7914           - Added Opaque style check before calling OnPaintBackground, no
7915             need to draw the background if the control is opaque
7916           - Removed ControlAccessibleObject owner variable (inherited from
7917             base, no need to define again)
7918           - Added some documentation links explaining the drawing events
7919             and styles
7921 2006-04-11  Peter Dennis Bartok  <pbartok@novell.com> 
7923         * Splitter.cs (CalculateSplitPosition): Corrected the bad assumption
7924           that the affected control is the located at the left border of our
7925           parent (Fixes #77936)
7927 2006-04-11  Peter Dennis Bartok  <pbartok@novell.com>
7929         * TextBoxBase.cs: When rendering disabled or readonly controls,
7930           draw the background with 'Control' instead of 'Window' color as
7931           long as the user hasn't specifically set a color
7933 2006-04-11  Peter Dennis Bartok  <pbartok@novell.com> 
7935         * TextBoxBase.cs: Don't try to shortcut by checking against base.Text
7936           since that won't be updated if the user types text (only if it's
7937           programatically set)
7939 2006-04-11  Peter Dennis Bartok  <pbartok@novell.com>
7941         * ScrollableControl.cs: Calculate DisplayRect dynamically, so that
7942           layout changes do to app-triggered resizes will have the proper
7943           display rectangle for layout
7945 2006-04-11  Alexander Olk  <alex.olk@googlemail.com>
7947         * ThemeWin32Classic.cs:
7948           - Make use of the SystemBrushes and SystemPens wherever possible
7949           - Corrected some highlight colors
7950           - Corrected RadioButton and CheckBox FlatStyle.Flat and Popup
7951             drawing
7952         * Theme.cs: Added Empty field to CPColor struct
7954 2006-04-11  Peter Dennis Bartok  <pbartok@novell.com>
7956         * ScrollabeControl.cs: We need to consider whether or not a scrollbar
7957           is displayed when calculating the display rectangle. Thanks to Mike
7958           for teaching me the err of my ways.
7960 2006-04-10  Peter Dennis Bartok  <pbartok@novell.com>
7962         * ScrollableControl.cs:
7963           - Rewrote DisplayRectangle code, now returning the proper x/y coords 
7964             (instead of 0,0) and we now return the real width/height instead of
7965             just the clientrectangle, adjusted for padding. The rectangle is
7966             now cached and created by the new CalculateDisplayRectangle method.
7967           - Created new CalculateDisplayRectange method, which basically does
7968             what get_DisplayRectangle() did originally, but now using the 
7969             right edge instead of DisplayRectangle to determine the size of
7970             our scrollbars
7971           - get_Canvas(): Fixed it to properly calculate canvas for 
7972             right/bottom controls which seem to be placed to the right/bottom
7973             of any controls that have a fixed location
7974           - Removed TODO that's taken care of
7975           - Removed NotImplementeds and attempted to implement AdjustFormScrollBars
7976             and SetDisplayRectLocation according to new MSDN2 docs
7977           - Added call to PerformLayout in OnVisibleChanged, MS causes a layout
7978             event when that is called, this is added for compatibility
7979           - ScrollControlIntoView(): Implemented.
7980           - Switched scrollbars to be implicit, they shouldn't be selectable
7981         * ContainerControl: Now that ScrollControlIntoView is implemented, we 
7982           call it when the active control is set/changed
7983         * ScrollBar.cs: Added support for generating Win32 scrollbar messages
7984         * ImplicitHScrollBar.cs, ImplicitVScrollBar.cs: Now setting new base
7985           implicit_control variable (used for native Win32 message generation)
7986         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs: Added new 
7987           HorizontalScrollBarHeight and VerticalScrollBarWidth properties
7988         * ThemeWin32Classic.cs: Now calling the driver for the scrollbar sizes
7989         * XplatUIStructs.cs: Added ScrollBarCommands enum
7991 2006-04-10  Jackson Harper  <jackson@ximian.com>
7993         * ButtonBase.cs:
7994         * CheckedListBox.cs:
7995         * ComboBox.cs:
7996         * DataGrid.cs:
7997         * DataGridView.cs:
7998         * Form.cs:
7999         * GroupBox.cs:
8000         * ListBox.cs:
8001         * PrintPreviewControl.cs:
8002         * ProgressBar.cs:
8003         * PropertyGrid.cs:
8004         * Splitter.cs:
8005         * StatusBar.cs:
8006         * TrackBar.cs:
8007         * UpDownBase.cs: Fixup base event overrides.
8008         
8009 2006-04-06  Mike Kestner  <mkestner@novell.com>
8011         * ScrollBar.cs: fix "new event" declarations (#76509) and bounds check
8012         all user-initiated value changes to min <= value <= max-thumbsz+1.
8013         (set_Value): check for vert/horiz when calculating new thumb position.
8014         (LargeIncrement): bounds check to stop pos at max - thumb_size + 1
8015         like MS does.
8016         (OnMouseMoveSB): refactor the thumb dragging code and refine
8017         invalidation logic to reduce flicker.
8018         (SetEndPosition): bounds check to stop pos at max - thumb_size + 1
8019         (SmallIncrement): bounds check to stop pos at max - thumb_size + 1
8020         (UpdateThumbPosition): small code readability cleanup
8022 2006-04-10  Alexander Olk  <alex.olk@googlemail.com>
8024         * ThemeNice.cs: Small UI polishing. Draw borders a little bit
8025           different
8027 2006-04-08  Alexander Olk  <alex.olk@googlemail.com>
8029         * ThemeNice.cs: Use a better graphics effect when a button is pressed
8031 2006-04-08  Alexander Olk  <alex.olk@googlemail.com>
8033         * Theme.cs: Added GetDashPen and GetSizedPen to SystemResPool
8034         * ThemeWin32Classic.cs: Make use of the new SystemResPool methods.
8035           This dramatically reduces the number of Pen.Dispose calls. 
8036           Where possible call ResPool methods only once instead of calling it
8037           over and over again (for example for the same color).
8039 2006-04-06  Mike Kestner  <mkestner@novell.com>
8041         * TabControl.cs: fix for SelectedIndex updating on TabPage removals.
8042         Also remove an unused private field on the collection. Fixes #77972.
8044 2006-04-06  Alexander Olk  <alex.olk@googlemail.com>
8046         * ThemeNice.cs: Added ToolBar drawing code
8048 2006-04-06  Mike Kestner  <mkestner@novell.com>
8050         * Form.cs (ShowDialog): MS allows IWin32Window param to be a non-form.
8051         I'm assuming that means we need to look up the toplevel for the
8052         provided control. Fixes the crash trace in #77911 but exposes another
8053         crash in some strange reflection usage in NDocGui.
8055 2006-04-06  Alexander Olk  <alex.olk@googlemail.com>
8057         * ThemeNice.cs: Gave it a little silver touch and added Images
8058           method
8059         * FontDialog.cs: FontDialog is not resizable
8060         * FileDialg.cs: Added SizeGripStyle.Show
8062 2006-04-05  Jackson Harper  <jackson@ximian.com>
8064         * KeyboardLayouts.cs: Remove warning.
8066 2006-04-05  Jackson Harper  <jackson@ximian.com>
8068         * Control.cs: Enable OnPaintInternal so we can use it for drawing
8069         all of our controls instead of Paint +=.
8070         * ListBox.cs:
8071         * ListView.cs:
8072         * MenuAPI.cs:
8073         * MessageBox.cs:
8074         * NotifyIcon.cs:
8075         * ProgressBar.cs:
8076         * ScrollBar.cs:
8077         * Splitter.cs:
8078         * StatusBar.cs:
8079         * TabControl.cs:
8080         * TextBoxBase.cs:
8081         * ToolBar.cs:
8082         * TrackBar.cs:
8083         * UpDownBase.cs:
8084         * ComboBox.cs: Remove handling of WM_PAINT and WM_ERASEBKGND and
8085         use OnPaintInternal. Remove Width/Height and Visible checks in
8086         paint handler, this is done at a higher level now.
8087         * GroupBox.cs: Don't need to handle WM_ERASEBKGND anymore.
8088         * PaintEventArgs.cs: Add a handled flag so controls that don't
8089         want anymore painting after OnPaintInternal can make sure OnPaint
8090         isn't called.
8092 2006-04-05  Mike Kestner  <mkestner@novell.com>
8094         * Form.cs: fix the menu WndProc hacks to respect the native enabled
8095         state of the form, so that we don't process events when Modal dialogs
8096         are up. Fixes #77922.
8098 2006-04-05  Alexander Olk  <alex.olk@googlemail.com>
8100         * Mime.cs: Default for range length is 1 not 0. If set to 0 no match
8101           checking is done.
8103 2006-04-05  Mike Kestner  <mkestner@novell.com>
8105         * XplatUIX11.cs: fix typo in the EX_APPWINDOW transient patch.
8107 2006-04-05  Mike Kestner  <mkestner@novell.com>
8109         * ListView.cs (HeaderMouseMove): null guarding for the over column
8110         when setting up the drag_to_index.  Fixes #78015.
8112 2006-04-04  Peter Dennis Bartok  <pbartok@novell.com>
8114         * XplatUIX11.cs: If WS_EX_APPWINDOW isn't set we don't want to show up
8115           in the taskbar. Transient windows seem to accomplish that.
8117 2006-04-04  Peter Dennis Bartok  <pbartok@novell.com> 
8119         * Form.cs:
8120           - Re-enabled CreateParams.X/Y code for FormStartPosition
8121           - Added code for manual placement when creating the Control
8122           - Incomplete patch to treat MDI forms differently when
8123             setting the ClientSizeCore. (Still need to figure out handling
8124             x/y coords there)
8125         * XplatUIX11.cs:
8126           - When we're explicitly setting the X/Y position of a non-Child
8127             window, let the WM know. Metacity really wants this.
8129 2006-04-04  Alexander Olk  <alex.olk@googlemail.com>
8131         * ThemeNice.cs: Added CPDrawButton
8133 2006-04-04  Alexander Olk  <alex.olk@googlemail.com>
8135         * ThemeNice.cs: Changed the color for focused buttons and activated
8136           the arrows for small scroll buttons.
8138 2006-04-04  Alexander Olk  <alex.olk@googlemail.com>
8140         * ThemeWin32Classic.cs: Removed DrawFlatStyleButton, not needed
8141           anymore. Changed some method modifiers to protected (virtual)
8142         * ThemeClearlooks.cs: Updated to reflect the ThemeWin32Classic
8143           changes
8144         * ThemeNice.cs: Updated to reflect the ThemeWin32Classic changes.
8145           Updated drawing of menus, buttons and progressbars; added
8146           CPDrawBorder3D 
8148 2006-04-03 Gonzalo Paniagua Javier <gonzalo@ximian.com>
8150         * ImageListStreamer.cs: implemented serialization/deserialization
8151         of the images.
8153 2006-04-03  Alexander Olk  <alex.olk@googlemail.com>
8155         * ThemeWin32Classic.cs:
8156           - Removed all the DrawFrameControl stuff; CPDrawButton,
8157             CPDrawCheckBox and CPDrawRadioButton are now handled directly
8158             inside the methods
8159           - Updated and corrected the drawing code of CPDrawButton,
8160             CPDrawCheckBox and CPDrawRadioButton to better match ms
8161           - Updated theme checkbox and radiobutton code to use the CP*
8162             methods
8164 2006-03-31  Peter Dennis Bartok  <pbartok@novell.com> 
8166         * XplatUIX11.cs: Enable clipping again now that the libgdiplus
8167           bug is fixed
8169 2006-03-31  Jackson Harper  <jackson@ximian.com>
8171         * XplatUIX11.cs: Somehow we get SETCURSORS for bad windows
8172         sometimes.
8173         * UpDownBase.cs: Don't CreateGraphics manually, use a
8174         Refresh. Ideally we would invalidate the correct areas here.
8176 2006-03-31  Peter Dennis Bartok  <pbartok@novell.com> 
8178         * XplatUIX11.cs: 
8179           - We now track the mapping state of windows. If a window (or 
8180             one of it's parents) is not mapped we no longer permit
8181             WM_PAINT messages to be generated since we'd otherwise get 
8182             lots of BadMatch X errors. Jackson did all the work figuring
8183             out the problem.
8184           - Destroying the caret if the window it's contained in is 
8185             destroyed. Can't use regular DestroyCaret method since it
8186             might fall into a drawing function (trying to remove the
8187             caret) and with that generate new BadMatch errors. Again,
8188             Jackson tracked this down.
8189           - Changed DestroyChildWindows to SendWMDestroyMessages, we now
8190             make sure we send the messages to all windows. (The old code
8191             would send the WM_DESTROY to the window, and then all child
8192             windows would be 'gone' because the WM_DESTROY handle lookup
8193             would no longer find the destroyed window)
8194         * Hwnd.cs: Added Mapping property to track mapping state of hwnd
8195         * X11Structs.cs: Added WindowType enum for MapWindow/UnmapWindow
8197 2006-03-31  Jackson Harper  <jackson@ximian.com>
8199         * ScrollableControl.cs: Dont recalc if we are not visible.
8201 2006-03-31  Mike Kestner  <mkestner@novell.com>
8203         * Control.cs (SetVisibleCore): move the CreateControl call up ahead of
8204         the visibility branch.
8206 2006-03-31  Jackson Harper  <jackson@ximian.com>
8208         * ScrollBar.cs: Cap values when incrementing/decrementing.
8210 2006-03-31  Mike Kestner  <mkestner@novell.com>
8212         * MenuAPI.cs: setup menu.tracker for popup/context menus.
8213         * ToolTip.cs: guard against timer expirations with no active control.
8214         Not sure why it happened.
8216 2006-03-31  Mike Kestner  <mkestner@novell.com>
8218         * ThemeWin32Classic.cs: add some horizontal padding space for the tip
8219         text.
8220         * ToolTip.cs: Position the tooltip based on where the cursor is at
8221         popup time, not at MouseEnter time.  Add a Down state so that we don't
8222         redisplay tips without a Leave. Use faked XplatUI.GetCursorInfo for
8223         positioning offset. Lookup DisplaySize at positioning time, since it
8224         can theoretically change during invocation.
8225         * XplatUIWin32.cs: fake GetCursorInfo until pdb can do it properly.
8226         * XplatUIX11.cs: fake GetCursorInfo until pdb can do it properly.
8228 2006-03-31  Alexander Olk  <alex.olk@googlemail.com>
8230         * ThemeWin32Classic.cs: Use CPDrawBorder3D to draw a GroupBox.
8231           Fixes behaviour when the Text property of the box is String.Empty
8233 2006-03-31  Peter Dennis Bartok  <pbartok@novell.com>
8235         * XplatUIX11.cs: Only send mouseleave for our client windows, not
8236           for the whole window (otherwise we get WM_MOUSE_LEAVE twice for
8237           a window)
8239 2006-03-31  Alexander Olk  <alex.olk@googlemail.com>
8241         * FileDialog.cs: Visual enhancement for the popup buttons in 
8242           PopupButtonPanel
8244 2006-03-31  Alexander Olk  <alex.olk@googlemail.com>
8246         * ColorDialog.cs, FontDialog.cs: Make use of the updated 3D border
8247           code
8249 2006-03-30  Alexander Olk  <alex.olk@googlemail.com>
8251         * ThemeWin32Classic.cs: Updated MainMenu drawing of selected and
8252           highlighted menu items to match ms
8254 2006-03-30  Peter Dennis Bartok  <pbartok@novell.com> 
8256         * XplatUIX11.cs: Don't set a clip rectangle unless it's not empty
8258 2006-03-30  Mike Kestner  <mkestner@novell.com>
8260         * Menu.cs (SelectedItem): use new MenuItem.Selected prop.
8261         * MenuAPI.cs: use new MenuItem.Selected prop. redraw MainMenu when we
8262         go active to account for HotLight to Selected transition.
8263         * MenuItem.cs: add internal Selected prop. Fill out the Status
8264         property by calculating it from item info. Add HotLight,
8265         NoAccelerator, Checked, Grayed, and Disabled flags where appropriate.
8267 2006-03-30  Mike Kestner  <mkestner@novell.com>
8269         * MenuItem.cs: only emit DrawItem and MeasureItem for OwnerDraw.
8271 2006-03-29  Jackson Harper  <jackson@ximian.com>
8273         * Form.cs: Implement TODO.
8275 2006-03-29  Peter Dennis Bartok  <pbartok@novell.com> 
8277         * PrintPreviewDialog.cs: Implemented missing methods and events; still
8278           missing proper dialog setup in the constructor
8280 2006-03-29  Peter Dennis Bartok  <pbartok@novell.com>
8282         * ProgressBar.cs: Added 2.0 Style property that apps seem to use
8283         * Control.cs:
8284           - Implemented CheckForIllegalCrossThreadCalls, removed TODO
8285           - Fixed ResetBindings and removed TODO
8286           - Added check for cross-thread calls to get_Handle()
8287           - Added Marshaller attribute for set_Font to satisfy class status
8288         * FontDialog.cs: Removed TODOs that seemed implemented
8289         * UpDownBase.cs: Removed unneeded TODO and Fixme
8290         * MessageBox.cs: Implemented support for Default button and removed TODO
8291         * FileDialog.cs: Removed obsolete TODO
8292         * DomainUpDown.cs: Removed obsolete TODO
8293         * ButtonBase.cs: Removed obsolete TODO
8294         * XplatUIWin32.cs: Removed obsolete TODO
8295         * Form.cs:
8296           - Removed obsolete TODO
8297           - Calling CheckAcceptButton when the acceptbutton is changed to allow
8298             internal status updates
8299           - Making sure the active control is selected when the control is created
8300         * CurrencyManager.cs: Removed obsolete TODO
8302 2006-03-29  Mike Kestner  <mkestner@novell.com>
8304         * *.cs: fix remaining corcompare issues for 1.1 API with the exception
8305         of PrintPreviewDialog and RichTextBox.
8307 2006-03-29  Alexander Olk  <alex.olk@googlemail.com>
8309         * Theme.cs: Added a little helper to SystemResPool to get the Dark,
8310           DarkDark, Light and LightLight colors for a specific color
8311         * ThemeWin32Classic.cs:
8312           - Use Button drawing code to draw RadioButtons and CheckBoxes with
8313             Appearance = Button 
8314           - Make use of the new ResPool helper CPColor
8315           - Draw ProgressBar and StatusBar with correct 3D borders
8317 2006-03-29  Alexander Olk  <alex.olk@googlemail.com>
8319         * ColorDialog.cs: Return selected color. Fixes bug #77940.
8321 2006-03-28  Mike Kestner  <mkestner@novell.com>
8323         * ListView.cs: fix Icon layout to plan for scrollbar widths when
8324         calculating col/row counts.
8326 2006-03-28  Mike Kestner  <mkestner@novell.com>
8328         * ColumnHeader.cs:
8329         * ListView.cs:
8330         * ListViewItem.cs:
8331         * Menu.cs: 
8332         switch to explicit interface method implementation for some methods
8333         corcompare identifies as inconsistent with MS.
8335 2006-03-28  Mike Kestner  <mkestner@novell.com>
8337         * MainMenu.cs: 
8338         * Menu.cs:
8339         add a few missing methods from the class status output.
8341 2006-03-28  Alexander Olk  <alex.olk@googlemail.com>
8343         * ControlPaint.cs: Fixed ControlPaint.Light method. Results are now
8344           correct.
8346 2006-03-28  Mike Kestner  <mkestner@novell.com>
8348         * MenuAPI.cs: Deactivate on MainMenu item click. Fixes #77917.
8350 2006-03-27  Mike Kestner  <mkestner@novell.com>
8352         * ThemeWin32Classic.cs: Switch flat toolbars to use RaisedInner for
8353         the Hilight state to adapt to Alex's CPDrawBorder3D changes.
8355 2006-03-27  Alexander Olk  <alex.olk@googlemail.com>
8357         * ThemeWin32Classic.cs: Rewrote Button drawing code to match ms.
8359 2006-03-25  Alexander Olk  <alex.olk@googlemail.com>
8361         * ThemeWin32Classic.cs:
8362           - GroupBox: Inserted a little gap between the text and the lines
8363             on the right side
8364           - Made the code in CPDrawBorder3D more readable
8365           - Corrected the drawing location of the up and down arrows in 
8366             CPDrawScrollButton
8368 2006-03-25  Alexander Olk  <alex.olk@googlemail.com>
8370         * ControlPaint.cs: Corrected line widths in DrawBorder for
8371           ButtonBorderStyle Inset and Outset
8373 2006-03-25  Alexander Olk  <alex.olk@googlemail.com>
8375         * ThemeWin32Classic.cs:
8376           - Rewrote the totally broken CPDrawBorder3D method. That was
8377             one of the main problems for the terrific ThemeWin32Classic
8378             look
8379           - Updated and corrected Button drawing
8380           - Correct the dimensions of the SizeGrip to match ms ones
8381           - Removed a small drawing glitch in DrawComboBoxEditDecorations
8382         * XplatUIX11.cs: Draw borders with BorderStyle = Fixed3D with
8383           Border3DStyle.Sunken to match ms.
8385 2006-03-25  Alexander Olk  <alex.olk@googlemail.com>
8387         * ThemeWin32Classic.cs: First small part of the "de-uglify
8388           ThemeWin32Classic" effort, SizeGrip
8390 2006-03-24  Jackson Harper  <jackson@ximian.com>
8392         * XplatUIX11.cs: Give a max idle time of one second, this matches
8393         MS and forces an Idle event every second when there are no other
8394         events in the queue.
8396 2006-03-24  Mike Kestner  <mkestner@novell.com>
8398         * ListView.cs: Handle (Large|Small)ImageList == null more robustly.
8399         * ListView.Item.cs: fix layout issues with null image lists and images
8400         smaller than checkbox size.
8401         * ThemeWin32Classic.cs: Draw a 12 pixel line in ListView LargeIcon
8402         mode like MS does.  It's weird, but consistent.  ;-)
8403         Fixes #77890.
8405 2006-03-24  Mike Kestner  <mkestner@novell.com>
8407         * ListView.cs: Scroll wheel support for the item control.  Fixes
8408         #77839.
8410 2006-03-23  Jackson Harper  <jackson@ximian.com>
8412         * ScrollableControl.cs: Special case negative sized areas, not
8413         zero.
8414         * MonthCalendar.cs: Save the rect of the clicked date so we can
8415         use it for invalidation.
8416         - Try to cut down on the number of invalidates
8417         - Invalidate the rect the mouse is over and was over when moving
8418         the mouse, so we get the focus box following the cursor.
8420 2006-03-23  Mike Kestner  <mkestner@novell.com>
8422         * ThemeWin32Classic.cs: fix FullRowSelect selection background and
8423         focus rectangle drawing. Fixes #77835.
8425 2006-03-23  Mike Kestner  <mkestner@novell.com>
8427         * XplatUIX11.cs: rework the fix for #77828 by changing the order of
8428         the if and else if and reverting back to the original == check on the
8429         None conditional.
8431 2006-03-23  Alexander Olk  <alex.olk@googlemail.com>
8433         * FontDialog.cs: Update the example panel if the selected index of
8434           the fontListBox changes.
8436 2006-03-23  Alexander Olk  <alex.olk@googlemail.com>
8438         * FileDialog.cs: Make FileDialog remember which directory it was in
8439           last in the same execution.
8441 2006-03-22  Mike Kestner  <mkestner@novell.com>
8443         * FileDialog.cs: make the DropDownMenu on the toolbar display
8444         RadioChecks since they are mutually exclusive and that's what MS does.
8446 2006-03-22  Mike Kestner  <mkestner@novell.com>
8448         * Theme.cs: add Color param to CPDrawMenuGlyph.
8449         * ThemeWin32Classic.cs: do color specific menu glyph rendering so that
8450         checks and radio marks and arrows are visible on highlighted items.
8451         * ControlPaint.cs: update to use new Theme signature.
8453 2006-03-22  Mike Kestner  <mkestner@novell.com>
8455         * MenuAPI.cs: only process Enter and arrow keypresses if the tracker
8456         is active. Fixes #77870.
8458 2006-03-22  Alexander Olk  <alex.olk@googlemail.com>
8460         * FileDialog.cs: Corrected TabIndex order and set fileNameComboBox
8461           to be focused/selected after startup
8463 2006-03-22  Alexander Olk  <alex.olk@googlemail.com>
8465         * ColorDialog.cs: 
8466           - Corrected behaviour of Color, AllowFullOpen, FullOpen,
8467             CustomColors and ShowHelp properties
8468           - Some internal rewrites to get better results when using the
8469             ColorMatrix
8471 2006-03-22  Mike Kestner  <mkestner@novell.com>
8473         * ListView.cs: hook into Peter's new ResetMouseHover capability to fix
8474         HoverSelection.  Fixes #77836.
8476 2006-03-22  Mike Kestner  <mkestner@novell.com>
8478         * FileDialog.cs: bugfixes for the toolbar.  Use PushButtons instead of
8479         ToggleButtons.  (De)Sensitize the Back button around a stack count of
8480         1, not 0.  Update ButtonSize based on a pixel count of the win32
8481         control.  Adjust the toolbar size/location for new button size.
8483 2006-03-22  Jackson Harper  <jackson@ximian.com>
8485         * XplatUIX11.cs: Don't handle configurenotifys if PostQuitState is
8486         true.
8487         * ScrollBar.cs: When doing increments and decrements we need to
8488         set the Value property so that ValueChanged gets raised. A
8489         possible optimization here would be to make an internal SetValue
8490         that doesn't invalidate immediately.
8491         * ToolTip.cs: Tooltips get added to their container (when
8492         supplied) so they get disposed when the container is disposed.
8493         - Don't create tooltips for String.Empty. This prevents all these
8494         little 2-3 pixel windows from showing up when running nunit-gui
8495         and driving me mad.
8496         * Form.cs: Don't set topmost when setting the owner if the handles
8497         haven't been created yet.  The topmost set will happen when the
8498         handles are created.
8500 2006-03-22  Peter Dennis Bartok  <pbartok@novell.com> 
8502         * XplatUIX11.cs:
8503           - DeriveWindowStyles: Fixed typo in borderstyle generation (#77828)
8504           - SetVisible: Sending WINDOWPOSCHANGED for all controls when made 
8505             visible (to allow them to recalculate their sizes)
8507 2006-03-21  Mike Kestner  <mkestner@novell.com>
8509         * ThemeWin32Classic.cs: major refactoring of the ToolBar rendering
8510         methods. Removed a ton of redundant code.  Still not really happy with
8511         the border rendering, but I think that's mainly because of the
8512         ControlDarkDark being black instead of a dark grey. Depending on how 
8513         close we want to be, we might want to revisit those color choices.
8514         Among the new features added during the refactor were DropDownArrow
8515         pressed rendering, Disabled image rendering.  Proper flat appearance
8516         boundary rendering.  Removed the Divider and Wrapping dividers since I
8517         can't figure out any combination of themes and conditions to make the
8518         MS control draw a horizontal line on a toolbar despite what the
8519         Divider property docs indicate.
8520         * ToolBar.cs: rewrite the layout engine. Fixes numerous flicker
8521         conditions and incorrect layout.  Updated to coding standard.
8522         * ToolBarButton.cs: refactored layout and positioning code from
8523         ToolBar to here.  Invalidate wherever possible instead of forcing
8524         redraws of the whole toolbar. 
8525         (Known remaining issues: explicit ButtonSize smaller than provided
8526         images.)
8528 2006-03-21  Mike Kestner  <mkestner@novell.com>
8530         * ContextMenu.cs (Show): use the position parameter instead of just
8531         showing at the MousePosition.
8533 2006-03-21  Jackson Harper  <jackson@ximian.com>
8535         * TabControl.cs: Remove the call to ProcessKeyEventArgs and let
8536         control handle this.
8537         * TreeNodeCollection.cs: If we are clearing the root node we need
8538         to reset top_node so calcs can still happen.
8539         * ThemeWin32Classic.cs: This is a Flags so we need to check
8540         properly.
8541         
8542 2006-03-21  Jackson Harper  <jackson@ximian.com>
8544         * DataGrid.cs: Create columns when the binding context has been
8545         changed.
8546         * X11Structs.cs: Keysyms are uints.
8547         - Add size to fix build.
8549 2006-03-21  Peter Dennis Bartok  <pbartok@novell.com> 
8551         * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs, XplatUIWin32.cs, 
8552           XplatUIOSX.cs: 
8553           - Added ResetMouseHover method to allow controls to retrigger
8554             hovering if they need it more than once
8555           - Implemented MouseHoverTime and MouseHoverSize properties
8556         * Timer.cs: Start() must reset the interval
8557         * SystemInformation.cs: Added 2.0 MouseHoverTime and MouseHoverSize
8558           properties
8560 2006-03-21  Jackson Harper  <jackson@ximian.com>
8562         * X11Keyboard.cs: improved layout detection. Move the nonchar
8563         tables into this file.
8564         * KeyboardLayouts.cs: Move the tables into resource files.
8566 2006-03-21  Mike Kestner  <mkestner@novell.com>
8568         * ListView.cs: use OnItemActivated to raise events. Fixes #77834.
8570 2006-03-21  Alexander Olk  <alex.olk@googlemail.com>
8572         * Mime.cs: Various speed optimizations. Looking up mime types
8573           is now 2 times faster than before
8575 2006-03-17  Peter Dennis Bartok  <pbartok@novell.com> 
8577         * CreateParams.cs: Added internal menu field
8578         * Control.cs: 
8579           - Switched call order for UpdateBounds; now we always call
8580             the one that also takes ClientSize, and we're calculating the 
8581             client size via driver method in the others. The previous
8582             method of tracking client size by difference wasn't working
8583             for forms where even the starting client size wouldn't match
8584             the overall form size (due to borders) (Part of fix for #77729)
8585           - CreateParams(): Do not use parent.Handle unless the handle is
8586             already created. Causes havoc with Nexxia and throws off our
8587             creation of controls
8588         * XplatUIX11.cs:
8589           - Created new PerformNCCalc method to trigger WM_NCCALCSIZE message
8590           - Switched handling of ConfigureNotify over to new PerformNCCalc 
8591             method (consolidates code)
8592           - Changed RequestNCRecalc to use new PerformNCCalc method
8593           - Added calls to RequestNCRecalc when menus and borders are changed
8594             to allow app to set NC size. (Part of fix for #77729) This matches
8595             when MS send a WM_NCRECALC on Win32 windows.
8596           - Now sending WM_WINDOWPOSCHANGED when toplevel for is made visible
8597             (Part of fix for #77729). This matches what MS does, they also
8598             send that message when the form is made visible.
8599           - XException.GetMessage: Improved usability of X errors by including
8600             a translation of the window into Hwnd and Control class
8601           - Improved debug info for window creation, reparenting and destruction
8602           - Created helper method WindowIsMapped() [Currently not used]
8603         * XplatUIWin32.cs: Added ToString() debug helper to RECT structure
8604         * Form.cs:
8605           - CreateParams: Now setting our menu on the new internal menu field
8606           - SetClientSizeCore: Now passing cp.menu instead of ActiveMenu to
8607             avoid calculating the same property twice
8608         * Hwnd.cs:
8609           - Improved usability of ToString() for debugging purposes
8610           - GetWindowRectangle(): Now uses proper CalcMenuBarSize method to
8611             determine the height of the menu, instead of just the font. This
8612             required to also create a graphics context and to keep a bmp 
8613             around (for performance reasons)
8615 2006-03-17  Peter Dennis Bartok  <pbartok@novell.com>
8617         * MenuAPI.cs: Added OnMouseUp method
8618         * Form.cs:
8619           - Now remembering the requested client size, avoids size errors
8620           - WndProc: Now handling WM_xBUTTONUP and passing it to MenuTracker
8621             instead of base if the menu is active. This is required due to
8622             control now capturing and releasing on down/up and it would
8623             prematurely release our menu capture
8625 2006-03-17  Jackson Harper  <jackson@ximian.com>
8627         * KeyboardLayouts.cs: Add the czech layouts.
8629 2006-03-16  Jackson Harper  <jackson@ximian.com>
8631         * Control.cs: Use the viewport space when sizing not the controls
8632         client size, so things like ScrollableControl that effect the
8633         viewport size (when scrollbars are added) are computed correctly.
8634         * BindingContext.cs: Cleanup to use the DataSourceEntrys instead
8635         of ManagerEntrys.
8636         - Handle creating BindingManagers for null data sources.
8637         * DataGrid.cs: Bind the cached_currencymgr_events to the real data
8638         source, otherwise when rows are added they are added to the 'fake'
8639         datasource and we will crash when trying to set the position in
8640         those rows.
8641         - Use Implicit scrollbars on the datagrid so they arent
8642         selectable.
8643         
8644 2006-03-16  Jackson Harper  <jackson@ximian.com>
8646         * Binding.cs:
8647         * InternalWindowManager.cs:
8648         * MdiWindowManager.cs:
8649         * X11Keyboard.cs: I really want Mike to love me again (fix
8650         compiler warnings).
8652 2006-03-16  Peter Dennis Bartok  <pbartok@novell.com>
8654         * DataGrid.cs:
8655           - OnMouseDown: Switch to editing mode when clicking on the cell
8656                          even if we're clicking on the cell that's currently 
8657                          selected
8658           - ProcessGridKey: Left/Right now wrap like MS.Net does
8659           - ProcessGridKey: Tab now knows to add a new row when tab is
8660                             pressed in the cell of the last column of the 
8661                             last row
8662           - ProcessGridKey: Enter now adds another row  if pressed in the last
8663                             row and selectes the new row, same column cell
8664           - ProcessGridKey: Home/End navigate columns, not rows, like 
8665                             originally implemented
8666           - Broke ProcessKeyPreview code out into an extra Internal method
8667             so it can be called from the edit code
8668         * DataGridTextBox.cs (ProcessKeyMessage):
8669           - Switched to accept Tab keypresses
8670           - Added F2 handling to allow jumping to the end of the edited cell
8671           - Added logic to allow moving caret left/right inside edited cell
8672             and making the edited cell jump when the caret hits cell borders
8673           - Tab and Enter are now passed to the datagrid after being handled
8674         * TextBoxBase.cs:
8675           - Removed capture code now that Control handles it
8676           - set_SelectionStart now ensures caret is visible
8678 2006-03-16  Jackson Harper  <jackson@ximian.com>
8680         * TrackBar.cs: Debackwards the increment/decrement for handling
8681         mouse clicks on the bar with vertical trackbars.
8682         * ThemeWin32Classic.cs: Draw vertical trackbars with 0 at the
8683         bottom to match MS.
8685 2006-03-16  Mike Kestner  <mkestner@novell.com>
8687         * ListView.cs: make shift/ctrl keyboard and mouse selection 
8688         consistent with the MS control. Fix a bug in
8689         SelectedListViewItemCollection.Clear that was pissing me off for the
8690         better part of a day because the collection was being altered
8691         underneath us as we walked the list.
8693 2006-03-16  Peter Dennis Bartok  <pbartok@novell.com> 
8695         * Control.cs: Not sure how we could miss this so long, but it seems
8696           that MS.Net has Capture set all the way from before calling 
8697           OnMouseDown through sending the mouse events until after
8698           OnMouseUp. This will fix DataGrid's selection being set to end
8699           at the location of the MouseUp.
8701 2006-03-15  Jackson Harper  <jackson@ximian.com>
8703         * BindingContext.cs: Check the binding after its added so that it
8704           can initialize the binding managers and hookup to events.
8705         * Binding.cs: Data members seem to sometimes include rows/cols in
8706           the format Row.Column we now take this into account.
8707           - Hookup to the position changed event so we can update the
8708           control when the position has changed in the data set.
8709         * CurrencyManager.cs: Take into account the row/col naming
8710           convention when creating dataset tables.
8711         * BindingContext.cs: Using a newer better way of storing
8712           datasource/datamember pairs.  Hopefully this better matches MS for
8713           looking up binding managers.
8716 2006-03-15  Jackson Harper  <jackson@ximian.com>
8718         * BindingContext.cs: The currency manager needs the data member
8719         name, if the member is a data set we use the name to find the
8720         correct table.
8721         * CurrencyManager.cs: When creating the list prefer an IList over
8722         an IListSource.
8723         - Attempt to create a DataTable from a DataSet (TODO: might need
8724         some better error checking here, although MS doesn't seem to have much)
8725         - If we have a DataTable create a view and use it as our list.
8727 2006-03-15  Mike Kestner  <mkestner@novell.com>
8729         * ListView.cs: keep a matrix of the icon mode layout to facilitate
8730         keyboard navigation. Support Up/Down/Left/Right selection correctly
8731         for all 4 View modes.
8732         * ListViewItem.cs: add internal row/col fields for icon layouts.
8734 2006-03-15  Jackson Harper  <jackson@ximian.com>
8736         * TabControl.cs: Redraw the tabs when we resize so their newly
8737         calculated sizes are drawn on screen.
8738         * X11Keyboard.cs: Begginnings of XIM support.  We also now support
8739         composite characters.
8740         * XplatUIX11.cs: Keyboard driver needs to know about focus changes
8741         - filter events so that composite characters can be created
8742         patches by peter
8743         * X11Structs.cs: Add XIMProperties enum.
8745 2006-03-14  Peter Dennis Bartok  <pbartok@novell.com> 
8747         * Control.cs (BringToFront, SendToBack): Don't use window or handle
8748           unless it's created
8750 2006-03-14  Peter Dennis Bartok  <pbartok@novell.com>
8752         * Control.cs (PerformLayout): We don't need to consider visiblity
8753           for anchoring, only for docking. This fixes 'whacky' alignment
8754           in listbox and other controls that use implicit scrollbars after
8755           the previous PerformLayout patch
8756         * ListBox.cs: Switched to use implicit scrollbars
8757           
8758 2006-03-14  Mike Kestner  <mkestner@novell.com>
8760         * ToolBar.cs: 
8761         * VScrollBar.cs:
8762         - chain up the "new event" overrides to base and use
8763         OnEvent to raise them.  Part of fix for bug #76509.
8765 2006-03-14  Alexander Olk  <alex.olk@googlemail.com>
8767         * FileDialog.cs: Do not select an item in the parent directory
8768           on backspace
8770 2006-03-14  Peter Dennis Bartok  <pbartok@novell.com> 
8772         * Control.cs (PerformLayout): It would seem that we considered
8773           invisible windows for our layout. Not quite the right thing
8774           to do. Now we don't any longer, thereby fixing bug #76889.
8776 2006-03-14  Peter Dennis Bartok  <pbartok@novell.com>
8778         * Control.cs (CanFocus): I goofed. A control can have focus 
8779           even though it's not selectable. Made it match MS docs.
8781 2006-03-13  Peter Dennis Bartok  <pbartok@novell.com>
8783         * ControlPaint.cs (DrawBorder3D): DrawBorder3D does not fill the
8784           center by default (fixes #76895)
8785         * ThemeWin32Classic.cs, ThemeNice.cs, ThemeClearlooks.cs: Replaced 
8786           all uses of Border3DSides.All with the explicit ORd together
8787           Left|Right|Top|Bottom because I assume that nobody was aware 
8788           that All also implies a center fill. Most places I checked had
8789           a fill right above.
8790         * ProgressBarStyle.cs: Added
8792 2006-03-13  Mike Kestner  <mkestner@novell.com>
8794         * ListView.cs: fix breakage in drag shadow header positioning 
8795         from Peter's csc compilation fix.
8797 2006-03-13  Mike Kestner  <mkestner@novell.com>
8799         * ListView.cs: fix NRE produced by backspacing twice in a focused
8800         FileDialog.
8802 2006-03-13  Mike Kestner  <mkestner@novell.com>
8804         * ListView.cs: proxy Key(Down|Up) from ItemControl to ListView.
8806 2006-03-13  Peter Dennis Bartok  <pbartok@novell.com>
8808         * Hwnd.cs: Added fixed_size field to track windows whose size cannot
8809           be changed
8810         * XplatUIX11.cs: Now setting fixed_size on hwnd and if set, re-setting
8811           the allowed size before making programmatic size changes
8813 2006-03-13  Peter Dennis Bartok  <pbartok@novell.com> 
8815         * XplatUIX11.cs: Don't call XSetWMNormalHints if no flags are 
8816           set, metacity is broken and will still use the emty sizes in 
8817           the struct. (Fix for #77089)
8819 2006-03-13  Peter Dennis Bartok  <pbartok@novell.com>
8821         * XplatUIStructs.cs: Split WindowStyles into WindowStyles and 
8822           WindowExStyles and marked both enums as Flags
8823         * Form.cs, ComboBox.cs, ToolTip.cs, Control.cs, PropertyGridView.cs,
8824           NotifyIcon.cs, MenuAPI.cs, XplatUIOSX.cs, MonthCalendar.cs: Updated
8825           to match WindowStyles split
8826         * XplatUIX11.cs:
8827           - SetWMStyles: Added cehck to not apply WM attributes to Child windows
8828           - Updated to match WindowStyles split
8829         * XplatUIWin32.cs:
8830           - Fixed FosterParent creation, was using ExStyle on the Style field
8831             (This should help with Popup focus issues)
8832           - Updated to match WindowStyles split
8834 2006-03-13  Jackson Harper  <jackson@ximian.com>
8836         * MdiWindowManager.cs: Use the system menu height. Fixes some
8837         strange sizing issues.
8839 2006-03-12  Peter Dennis Bartok  <pbartok@novell.com>
8841         * RichTextBox.cs: Need to scroll to caret after text is inserted (#77672)
8842         * TextBoxBase.cs:
8843           - Scroll to caret after inserting text (#77672)
8844           - Make scroll range one pixel higher, fixes off-by-one error (and
8845             makes underlines visible on the last line)
8847 2006-03-12  Peter Dennis Bartok  <pbartok@novell.com> 
8849         * XplatUIX11.cs: Added call to new Keyboard.ResetKeyState to prevent
8850           the keyboard state from being stuck with keys in 'pressed' state when
8851           focus is switched away via keyboard
8852         * X11Keyboard.cs: Added new ResetKeyState method to allow drivers to
8853           reset the keyboard if no X11 KeyUp events are expected to come
8854         * X11Structs.cs: Switched type of Visible to bool to match driver
8856 2006-03-12  Peter Dennis Bartok  <pbartok@novell.com>
8858         * TextControl.cs:
8859           - Switched caret to be just 1 pixel wide, matches MS and looks less
8860             clunky
8861           - Moved caret display 1 pixel down from the top of the control
8862             to improve view
8863           - InsertCharAtCharet: Update the selection start if moving the caret
8864             (fixes bug #77696; based on patch suggested by kazuki@panicode.com)
8865           - No longer always creating the caret when the caret methods are
8866             called. Only the actual ShowCaret/HideCaret will do that now
8867           - Only setting caret visible if the owner control has focus
8868           - UpdateView: Added invalidation-shortcut logic for center and right 
8869             aligned text. Previously we'd update all according to the left
8870             logic which caused drawing errors. Also fixed height of invalidated
8871             areas, now properly invalidating the whole area (was off-by-one)
8872           - owner_HandleCreated: Always generate the document when the
8873             handle is created; this ensures that 
8874         * TextBoxBase.cs:
8875           - Fixed situation where caret would disappear under the right
8876             window border, also improved scrolling behaviour on left-
8877             aligned textboxes
8878           - Fixed right-aligned textboxes to have a border to the
8879             right instead of the caret being under the right border
8880         * XplatUIX11.cs:
8881           - Switched from 'nested' to simple visible/not visible tracking 
8882             for caret (part of fix for #77671)
8883           - No longer passing through translated FocusIn/FocusOut messages
8884             since we were notifying too often and the wrong windows. Instead
8885             we just notify our focussed window of receiving or loosing focus
8886         * XplatUIWin32.cs: Switched from 'nested' show/hide 
8887           counting for caret to simple visible yes/no behaviour (part of 
8888           fix for #77671)
8890 2006-03-11  Alexander Olk  <alex.olk@googlemail.com>
8892         * Mime.cs: Remove debug code...
8894 2006-03-11  Alexander Olk  <alex.olk@googlemail.com>
8896         * MimeGenerated.cs: Removed
8897         * Mime.cs: Mime now reads the mime data (magic, globs, aliases
8898           and subclasses) from /usr/(local/)share/mime and
8899           $HOME/.local/share/mime.
8901 2006-03-10  Jackson Harper  <jackson@ximian.com>
8903         * MdiWindowManager.cs: Recalc the NC area when a window is
8904         maximized/restored so that the menu area is drawn on forms that
8905         don't have a menu.
8907 2006-03-10  Peter Dennis Bartok  <pbartok@novell.com>
8909         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs, XplatUIWin32.cs,
8910           XplatUIX11.cs: Added RequestNCRecalc method to driver to allow
8911           us to force a WM_NCCALCRESIZE message being sent. This is needed
8912           for MDI maximizing.
8914 2006-03-10  Jackson Harper  <jackson@ximian.com>
8916         * Form.cs: We need to use the ActiveMenu when calculating menu
8917         height.
8918         - Fix nullref when the window manager hasn't been created yet.
8919         * Control.cs: Fix nullref when we try to bring a control to the
8920         front that has no parent.
8921         * MdiWindowManager.cs: Use the MaximizedMenu for calculating
8922         height.
8923         - Add a dummy item to the maximized menu so it always has the
8924         correct height. Otherwise when there are no menus we don't get our
8925         icon and buttons.
8926         
8928 2006-03-10  Jackson Harper  <jackson@ximian.com>
8930         * MenuAPI.cs: Make this available elsewhere. I need it in some MDI
8931         stuff.
8932         * Form.cs: Make the window_state internal so the window managers
8933         can track it.
8934         - When an MDI child is maximized let its window manager create the
8935         main menu (so it can add its icon).
8936         - Notify the window managers of state changes
8937         - Let the window manager paint its buttons and handle button
8938         clicks on the menu when it is maximized.
8939         * InternalWindowManager.cs: Move the prev_bounds into the mdi
8940         window manager, since tool windows don't use it, only mdi windows.
8941         - Tell the main form that we don't want it to handle NCPAINT
8942         itself to avoid extra painting.
8943         - Handle clicks on a maximized windows menu.
8944         - Handle window state changes
8945         - Handle minimize/maximize clicks correctly by setting the window state.
8946         * MdiWindowManager.cs: Add an icon menu that (the menu you get
8947         when clicking on the forms icon).
8948         - New method to create a forms maximized menu. This is its normal
8949         menu + an icon.
8950         - Handle window state changes.
8951         - Handle sizing of maximized windows.  Maximized windows are just
8952         drawn bigger then the parent visible area. All controls are still
8953         there, they are just outside the visible area (this matches windows).
8954         * MdiClient.cs: No scrollbars when a child window is maximized.
8955         - Let the children windows figure out how big they should be when
8956         sizing maximized windows.
8957         - Implement a version of ArrangeIconicWindows somewhat similar to
8958         Windows version.  There are some little differences, but I don't
8959         think any app will rely on the layout of minimized mdi windows.
8961 2006-03-10  Peter Dennis Bartok  <pbartok@novell.com>
8963         * Padding.cs: Several fixes to allow compiling with csc 2.0
8965 2006-03-09  Jackson Harper  <jackson@ximian.com>
8967         * Menu.cs:
8968         * MenuItem.cs: Cheap hack so we can add items to the list without
8969         the events being raised.  This allows adding mdi items during
8970         drawing. TODO: Should probably find a better time to add the items.
8972 2006-03-10  Peter Dennis Bartok  <pbartok@novell.com>
8974         * ThemeWin32Classic.cs:
8975           - CheckBox_DrawText: Added logic to not wrap if not enough space
8976             is available (Fix for bug #77727)
8977           - RadioButton_DrawText: Added logic not to wrap if not enough
8978             space is available (Fix for bug #77727). Also removed some
8979             duplicate code, DrawString always drawing the regular text
8980             before hitting the if statement.
8982 2006-03-10  Peter Dennis Bartok  <pbartok@novell.com> 
8984         * XplatUIX11.cs: Handle an unmapped window state in SetWindowState
8986 2006-03-10  Peter Dennis Bartok  <pbartok@novell.com>
8988         * PictureBox.cs: Implemented ISupportInitialize interface (fixes #77726)
8989         * ContainerControl.cs: Partial implementation of some 2.0 scaling
8990           methods. Moved the new 2.0 properties into alphabetical order with
8991           other properties and added MonoTODO tags
8993 2006-03-09  Peter Dennis Bartok  <pbartok@novell.com> 
8995         * AutoScaleMode.cs: Added. Fix build.
8997 2006-03-09  Peter Dennis Bartok  <pbartok@novell.com>
8999         * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs, XplatUIWin32.cs, 
9000           XplatUIOSX.cs: Removed HWnd argument from CalcuateClientRect, not used
9001           and was requiring premature handle creation for calls from above
9002         * Form.cs, Control.cs: Removed handle arguments from calls to
9003           CalculateClientRect()
9005 2006-03-09  Peter Dennis Bartok  <pbartok@novell.com> 
9007         * ListView.cs (HeaderMouseMove): Fix csc compilation. 
9008           drag_column.column_rect is MarshalByRef and can't be used that way
9010 2006-03-09  Peter Dennis Bartok  <pbartok@novell.com>
9012         * AxHost.cs: Added deserialization constructor for 
9013           AxHost+State (fixes 77743)
9015 2006-03-09  Mike Kestner  <mkestner@novell.com>
9017         * ListView.cs: 
9018         - Added column drag reordering for details view.
9019         - fixed behavior when mouse is dragged off column and
9020         AllowColumnReorder is false.
9021         * ColumnHeader.cs: clone the format too in Clone.
9022         * Theme.cs: add DrawListViewHeaderDragDetails method.
9023         * ThemeWin32Classic.cs:
9024         - impl new method for drawing drag column shadows and targets.
9025         - support column offset for details mode in DrawListViewItem.
9027 2006-03-09  Peter Dennis Bartok  <pbartok@novell.com>
9029         * TextControl.cs: Reset the char_count when the document is cleared
9030           (Fixes bug reported on mono-winforms mailing list)
9032 2006-03-09  Peter Dennis Bartok  <pbartok@novell.com> 
9034         * TextBoxBase.cs: Honor the Handled state of KeyPress events. Instead
9035           of calling base we simply process the key ourselves, since both
9036           DefWindowProc and the handled method would set m.Result. 
9037           (Fixes #77732)
9039 2006-03-09  Peter Dennis Bartok  <pbartok@novell.com>
9041         * Form.cs(ScaleCore): No longer calling base.ScaleCore since that
9042           method also moves the window; instead implemented a copy of
9043           Control.ScaleCore (Part of fix for #77456)
9044         * TextBoxBase.cs: 
9045           - Created new CreateGraphicsInternal method to allow providing
9046             a graphics context when no handle is created without triggering
9047             handle creation. (Part of fix for #77456)
9048           - Replaced use of Control.CreateGraphics with CreateGraphicsInternal
9049         * TextControl.cs: 
9050           - Switched Constructor to require TextBoxBase instead of Control (to
9051             allow uncast access to CreateGraphicsInternal)
9052           - Safeguarded use of owner.Handle property. No longer accessing it
9053             unless the handle is already created.
9054           - Replaced use of Control.CreateGraphics with CreateGraphicsInternal
9055           - Now triggering a recalc when owning control becomes visible
9056         * TextBox.cs, RichTextBox.cs: Switched to use new internal 
9057           TextBoxBase.CreateGraphicsInternal() method to avoid triggering
9058           premature handle creation (Part of fix for #77456)
9059         * Control.cs:
9060           - We now only destroy our double-buffering buffers when the
9061             control is resized or disposed, but not when visibility
9062             changes. (The code even re-created them twice every time)
9063           - Now requiring a redraw of the buffer on visibility changes
9064             (fixes bug 77654 part 2)
9065           - Not passing OnParentVisibleChanged up unless the control
9066             is visible
9067           - CanFocus: Fixed to match MS documentation
9068           - Focus: Fixed to return actual focus state and to check if
9069             setting focus is legal before setting it
9071 2006-03-08  Peter Dennis Bartok  <pbartok@novell.com>
9073         * ThemeWin32Classic.cs: TabPages cannot have focus. Determine
9074           when to draw focus rectangle by looking at parent focus and
9075           selected state instead. This fixes TabPages on Linux sometimes
9076           having none or multiple focus rectangles.
9077         * XplatUIX11.cs (SetFocus): 
9078           - Don't set the focus if the same window already has focus
9079           - Use SendMessage instead of PostMessage (like it's Win32
9080             equivalent) and send the WM_SETFOCUS before the WM_KILLFOCUS
9081             to match MS behaviour
9082         * TabControl.cs(SelectedIndex): Don't set Focus on TabPage, TabPages
9083           are not selectable.
9085 2006-03-07  Jackson Harper  <jackson@ximian.com>
9087         * PictureBox.cs: Revert line I accidently committed last week.
9089 2006-03-07  Peter Dennis Bartok  <pbartok@novell.com>
9091         * Control.cs: 
9092           - Added new IsRecreating and ParentIsRecreating properties to
9093             allow testing if RecreateHandle has been called on ourselves
9094             or one of our parents
9095           - WndProc(WM_DESTROY): If our control handle is being recreated
9096             we immediately need to create the handle when receiving the
9097             destroy, that way our child windows find a valid parent handle
9098             when they themselves are being recreated upon WM_DESTROY receipt
9099             (fix for bug #77654 part 1)
9100         * XplatUIX11.cs:
9101           - DestroyWindow: WM_DESTROY must be sent to our own window before
9102             notifying any child windows. MS documents that child windows
9103             are still valid when WM_DESTROY is received. (Control now relies on
9104             this behaviour)
9105           - Added some fine-grain debug options
9107 2006-03-06  Jackson Harper  <jackson@ximian.com>
9109         * MdiClient.cs: Redid scrolling logic a bit to create a virtual
9110         box and base calculations off this.
9111         * MdiChildContext.cs:
9112         * MdiWindowManager.cs: Don't need to ensure scrollbars here
9113         anymore.
9114         
9115 2006-03-06  Peter Dennis Bartok  <pbartok@novell.com>
9117         * Splitter.cs: In situations where the affected control is added
9118           to the parent's control list after the splitter, we would not
9119           populate affected. Now we try populating it on mousedown, if
9120           it's not already set, and force it to be re-set whenever our
9121           parent changes.
9123 2006-03-03  Matt Hargett  <matt@use.net>
9125         * Control.cs: implement Control.Padding
9126         * Padding.cs: -Padding.All returns -1 when constructing with the
9127         implicit default ctor
9128         -Padding.ToString() matches MS.NET
9129         * ContainerControl.cs: implement
9130         ContainerControl.AutoScaleDimensions
9131         * ListControl.cs: implement ListControl.FormattingEnabled
9132         * TextBox.cs: Implemented TextBox.UseSystemPasswordChar.
9133         * ButtonBase.cs:
9134         * TabPage.cs: Implement UseVisualStyleBackColor.
9135         * PictureBox.cs: Implement PictureBox.InitialImage.
9137 2006-03-03  Mike Kestner  <mkestner@novell.com>
9139         * ListView.cs: Refactor into HeaderControl and ItemControl. Fix new
9140         event declarations to proxy to base event.
9141         * ListViewItem.cs: update to use ItemControl.
9142         * Theme.cs: make DrawListViewHeader. s/DrawListView/DrawListViewItems.
9143         * ThemeWin32Classic.cs: update to new ListView theme API and fix
9144         column header label rendering for 0 width columns.
9146 2006-03-03  Peter Dennis Bartok  <pbartok@novell.com>
9148         * Control.cs (ControlCollection.SetChildIndex): Avoid using a call
9149           that causes the control to be created. Fixes #77476.
9151 2006-03-02  Jackson Harper  <jackson@ximian.com>
9153         * Hwnd.cs: Clear the nc pending when clearing the NC area, not the
9154         expose_pending.
9156 2006-03-02  Peter Dennis Bartok  <pbartok@novell.com>
9158         * Control.cs: Implemented 2.0 feature where OnClick has MouseEventArgs
9159           passed in for the EventArgs (fixes #77690)
9161 2006-03-01  Jackson Harper  <jackson@ximian.com>
9163         * ScrollBar.cs: Refresh afterbeing resized.
9165 2006-02-28  Mike Kestner  <mkestner@novell.com>
9167         * MenuAPI.cs: Call PerformPopup internal method to emit Popup.
9168         Clean up a tracker compile warning.
9169         * MenuItem.cs: add internal PerformPopup method.
9170         [Fixes #77457]
9172 2006-02-28  Peter Dennis Bartok  <pbartok@novell.com> 
9174         * TextBoxBase.cs (set_Text): Recalculate the document (causing an
9175           implicit expose) when the text is set to null
9177 2006-02-28  Peter Dennis Bartok  <pbartok@novell.com>
9179         * RichTextBox.cs (FlushText): When newline is true, we always
9180           need to split the line, even if no text is on it and we may
9181           never eat newlines. (Fixes #77669)
9183 2006-02-28  Mike Kestner  <mkestner@novell.com>
9185         * ListView.cs: Add UpdateSelection internal method. Remove SelectItem 
9186         and set Selected instead.
9187         * ListViewItem.cs: Call owner.UpdateSelection to manipulate the 
9188         collections.
9190 2006-02-28  Peter Dennis Bartok  <pbartok@novell.com> 
9192         * ComboBox.cs: Allow setting SelectedIndex to -1. Fixes #77665
9194 2006-02-28  Alexander Olk  <alex.olk@googlemail.com>
9196         * FontDialog.cs:
9197           - Got rid of the panel. All controls are now directly added to
9198             the dialog form
9199           - It is now possible to set a font with the Font property
9200           - MinSize and MaxSize property do now what they should
9201           - ShowApply, ShowHelp, ShowColor, ShowEffects likewise
9202           - Searching and selecting a font with the font textbox works now,
9203             the same applies to the style and size textbox
9204           - Draw the correct 3D border in the example panel
9205           - Fixed a little mem leak (unused fonts didn't get disposed)
9206           - Many other internal updates/rewrites...
9207           - Fix typo
9209 2006-02-27  Peter Dennis Bartok  <pbartok@novell.com> 
9211         * TextControl.cs: 
9212           - InsertRTFFromStream: Added 'number of characters inserted' argument
9213           - set_SelectedRTF: Now using the number of characters to calculate
9214             the new location for the selection and cursor (x/y cannot be used
9215             due to potentially already wrapped text)
9217 2006-02-27  Peter Dennis Bartok  <pbartok@novell.com>
9219         * TextControl.cs: Added property and implemented means to allow 
9220           disabling recalculation of a document (can be used to speed up
9221           multiple inserts and is needed to make RTF inserts predictable, see
9222           bug #77659)
9223         * RichTextBox.cs: Using the new NoRecalc property of Document to
9224           keep x/y insert locations predictable. Also makes it faster inserting
9225           large chunks of RTF
9227 2006-02-27  Peter Dennis Bartok  <pbartok@novell.com> 
9229         * Control.cs: Separated special WM_SYSKEYUP keyboard handling. That way
9230           it's easier for a child control to handle the other messages without
9231           having to duplicate the special functionality
9232         * TextBoxBase.cs
9233           - WndProc: Removed calling base handler for WM_KEYDOWN and added 
9234             code to handle processing the key ourselves, in order to get 
9235             access to the result of KeyEventArgs.Handled. We now only call 
9236             ProcessKey if they key hasn't been handled already. Fixes #77526.
9237           - set_Text: If null or empty string is given, just clear the 
9238             document. Fixes part of #77526
9240 2006-02-27  Jackson Harper  <jackson@ximian.com>
9242         * SizeGrip.cs: Paint the background color before painting the grip
9243         so things look right.
9244         * MdiClient.cs: Add the sizegrip when both scrollbars are used.
9246 2006-02-27  Mike Kestner  <mkestner@novell.com>
9248         * ListView.cs:
9249           - Restructure layout and invalidation model to remove a ton of
9250           flicker from the control and speed up performance in general.
9251           - Add manual column resize, flickers like crazy, but I already have
9252           some ideas on how I'll fix that. (#76822)
9253           - Merge the three Icon-based views into a single layout method.
9254           - Move item selection interaction logic from the item since 
9255           interaction with the collections is more appropriate to the view.
9256           - Deselection on non-item clicks.
9257         * ListViewItem.cs:
9258           - Encapsulate most of the layout. Add some internal props to trigger
9259           layout.  Move to a model where Items invalidate themselves instead
9260           of just invalidating the whole control every time something changes.
9261           - Invalidate on Text/Caption changes.
9262           - switch to an offset based layout model to avoid having to absolute
9263           position every element on item moves.
9264           - correct checkbox layout to conform to MS layout.
9265         * ThemeWin32Classic.cs:
9266           - refactor some column header drawing code.
9267           - fix string justification for column headers (#76821)
9268           - make SmallIcon labels top justified for compat with MS impl.
9269         * ThemeClearlooks.cs:
9270           - adjust to new ListViewItem internal checkbox bounds api.
9272 2006-02-27  Jackson Harper  <jackson@ximian.com>
9274         * Control.cs:  Change where implicit controls fall in the zorder.
9275         They are now on top of all children.
9276         - Synced AddImplicit code with Add
9277         - Removed unused enumerator.
9278         * SizeGrip.cs: Remove the TODO as its been TODONE.
9280 2006-02-26  Peter Dennis Bartok  <pbartok@novell.com> 
9282         * TextControl.cs(Insert): Combine the last lines unless the insertion
9283           string ends with \n\n, otherwise we leave one line too many (Fixes
9284           something I noticed with the testapp for #77526; the bug itself was
9285           already fixed in the previous checkin)
9287 2006-02-26  Peter Dennis Bartok  <pbartok@novell.com>
9289         * RichTextBox.cs:
9290           - SelectionColor and SelectionFont methods no longer set absolute
9291             styles. Instead, the keep font or color respectively (This 
9292             resolves a long-standing FIXME in the code)
9293           - When flushing RTF text, the insert code now considers text trailing
9294             behind the insertion point (Fixes the bug where when replacing
9295             the selected text via SelectedRTF the remainder of the line behind 
9296             the selection would stay on the first insertion line)
9297         * TextBoxBase.cs:
9298           - AppendText now updates the selection points after inserting text
9299           - AppendText now ensures that the last tag (sometimes 0-length) of
9300             the document is used for the style information (Fixes part of 
9301             bug #77220)
9302         * TextControl.cs:
9303           - Created new FontDefiniton class to allow describing partial style
9304             changes
9305           - StreamLine() now takes a lines argument, to allow it to decide
9306             whether an encountered zero-length tag is the last in the document
9307             (which must be kept to not loose the font/color contained in it,
9308             for later appends)
9309           - Created Combine() and Split() methods for Marker structs, to 
9310             support marker updates due to reformatted documents (soft line
9311             wraps)
9312           - Implemented Document.CaretTag setter
9313           - Fixed MoveCaret(CtrlEnd) handling, now moves to the last character
9314             of the last line (Not the cause, but also exposed by bug #77220)
9315           - Added LineTag argument to InsertString method, to allow callers
9316             to force a certain tag to be used (required to force use of the
9317             trailing zero-length tag of a document)
9318           - Now updating markers in Combine(), to avoid stale tag markers
9319           - Added some method descriptions to aid maintenance
9320           - Implemented new FormatText concept, allowing additive/subtractive
9321             formatting by only specifying the components that are to be 
9322             changed. This was needed for resolving the RTB.SelectedColor/
9323             RTB.SelectedFont fixmes
9324           - Added Break() support method to allow breaking up linetags (used
9325             for partial formatting)
9326           - Added GenerateTextFormat() method. It is used for partial 
9327             formatting and allows to generate a full font/color from given
9328             attributes and an existing tag.
9330 2006-02-26  Jackson Harper  <jackson@ximian.com>
9332         * XplatUIX11.cs:  Use the correct caption height.
9333         - Translate hittest coordinates to screen coords to match MS.
9334         * XplatUIWin32.cs: When we create MDI windows we need to reset
9335         some of the style flags, so we get a nice blank window, and can
9336         draw all the decorations ourselves.
9337         - Set a clipping rectangle on the non client paint event, the
9338         window manager drawing code needs one.
9339         * Form.cs: The window manager needs to know when the window state
9340         has been updated.
9341         * Hwnd.cs: The window manager stuff now does a proper NCCALC so we
9342         don't need to factor in border and title sizes in these
9343         methods. TODO: Remove the args and fix the call points.
9344         * InternalWindowManager.cs: Handle NCHITTEST and NCCALCAREA
9345         properly.
9346         - Let the driver set the cursors.
9347         - Improve active window handling
9348         - Correct sizes for title bars and buttons.
9349         - Match MS drawing better
9350         * MdiWindowManager.cs: We don't need to handle border style
9351         updates specially anymore.
9352         - Check for scrollbars when windows are done moving
9353         - Handle Active properly.
9354         * MimeIcon.cs: Don't crash when we can't load the GNOME stuff
9355         correctly. I am spewing the exception though, so we don't hide the
9356         bugs.
9357         
9358 2006-02-26  Pedro Martinez Julia  <pedromj@gmail.com>
9360         * DataGridViewRowPostPaintEventArgs.cs,
9361           DataGridViewCellPaintingEventArgs.cs,
9362           DataGridViewRowCollection.cs,
9363           DataGridViewRowPrePaintEventArgs.cs,
9364           DataGridViewCell.cs: Clear a few warnings and implement a few
9365           exceptions that should be thrown.
9367 2006-02-22  Peter Dennis Bartok  <pbartok@novell.com>
9369         * ScrollBar.cs (ctor): Explicitly set a cursor to avoid
9370           'inheriting' our parent's (non-default) cursor. (Part of
9371            the fix for #77479)
9373 2006-02-22  Peter Dennis Bartok  <pbartok@novell.com> 
9375         * XplatUIX11.cs: Fixed cast to make csc happy
9377 2006-02-22  Peter Dennis Bartok  <pbartok@novell.com>
9379         * Control.cs (WndProc): Only handle WM_SETCURSOR messages if
9380           it's for the client area (part of fix for #77479 and needed
9381           for MDI window cursor handling)
9382         * XplatUIX11.cs
9383           - DefWindowProc: Now handles the WM_SETCURSOR messages, setting
9384             the appropriate default cursors and also passing the message
9385             up the parent chain 
9386           - GetMessage: Now generating WM_NCHITTEST and WM_SETCURSOR even
9387             for non-client areas
9389 2006-02-15  Jackson Harper  <jackson@ximian.com>
9391         * XplatUIWin32.cs: Since we fake MDI dont tell Windows that this
9392         is a real MDI window
9394 2006-02-14  Alexander Olk  <alex.olk@googlemail.com>
9396         * X11DesktopColors.cs: Instead of checking the desktop session
9397           string for "KDE" check if it starts with "KDE"
9399 2006-02-10  Jackson Harper  <jackson@ximian.com>
9401         * XplatUIX11.cs: These should be unsigned (fixes crash on 32 bit
9402         systems).
9404 2006-02-10  Alexander Olk  <alex.olk@googlemail.com>
9406         * FileDialog.cs: Added Refresh to RunDialog to fix some drawing
9407           errors
9408         * ColorDialog.cs:
9409           - Got rid of the panel. All controls are now directly added to
9410             the dialog form
9411           - Changed to mono coding style
9413 2006-02-10  Jackson Harper  <jackson@ximian.com>
9415         * InternalWindowManager.cs: We don't need the set visibility to
9416         false hack anymore now that peter has written beautiful shutdown
9417         code.
9419 2006-02-10  Peter Dennis Bartok  <pbartok@novell.com>
9421         * XplatUIX11.cs: Ignore DestroyNotify messages for windows that
9422           where already explicitly destroyed
9424 2006-02-10  Jackson Harper  <jackson@ximian.com>
9426         * MdiClient.cs: Handle the case where windows are too high or to
9427         the left and we need scrollbars.
9429 2006-02-10  Alexander Olk  <alex.olk@googlemail.com>
9431         * MimeIcon.cs: Added some icons
9432         * FileDialog.cs:
9433           - Fixed bug #77477
9434           - Got rid of the panel. All controls are now directly added to
9435             the dialog form
9436           - Changed to mono coding style
9437           - On Linux "My Computer" and "My Network" will now show some
9438             more usefull information. A new class, MasterMount, gathers
9439             this information from /proc/mount. Updated MWFFileView to make
9440             use of this information
9441           - Fixed a bug that caused FileDialog to crash when
9442             ".recently_used" file had a zero size
9443           - FilterIndex does now what it should
9444           - Some Refactoring
9445         * OpenFileDialog.cs, SaveFileDialog.cs: Updated to reflect latest
9446             FileDialog changes
9448 2006-02-09  Jackson Harper  <jackson@ximian.com>
9450         * ComboBox.cs: Don't touch if null.
9452 2006-02-09  Peter Dennis Bartok  <pbartok@novell.com>
9454         * Cursor.cs: 64bit safeness fix
9455         * XplatUIX11.cs: Removed several unneeded and one moronic cast.
9457 2006-02-09  Jackson Harper  <jackson@ximian.com>
9459         * Form.cs: If a form is made into an MDI form update the styles so
9460         all the props can get set correctly.
9461         - Kill the mdi_container when we dont need it anymore.
9462         * InternalWindowManager.cs: Add missing NOT
9464 2006-02-08  Jackson Harper  <jackson@ximian.com>
9466         * InternalWindowManager.cs: Respek clipping when drawing MDi
9467         decorations.
9469 2006-02-08  Jackson Harper  <jackson@ximian.com>
9471         * Hwnd.cs: Add bits to track non client expose events.
9472         * XplatUIX11.cs: Track non client expose events on the hwnd. This
9473         gives us a proper invalid rect and will allow for some nice
9474         optimizations with NC client drawing
9475         - MDI windows are children windows, so move their style handling
9476         into the child window block.
9477         * InternalWindowManager.cs: Remove a state reset that was
9478         getting invoked at the wrong time. Fixes managed windows getting
9479         into a 'stuck' captured state.
9481 2006-02-07  Peter Dennis Bartok  <pbartok@novell.com>
9483         * TextControl.cs (Document.ctor): Now initializing 
9484           selection_anchor. Fixes #77493
9486 2006-02-07  Jackson Harper  <jackson@ximian.com>
9488         * TrackBar.cs: The increment/decrements were backwards.
9490 2006-02-07  Mike Kestner  <mkestner@novell.com>
9492         * Theme*.cs : remove ThemeEngine.Current usage as it just points back
9493         to the instance itself.
9495 2006-02-07  Peter Dennis Bartok  <pbartok@novell.com>
9497         * X11DesktopColors.cs, ThemeGtk.cs: The GObject structure is based
9498           on ulongs and pointers, the size differs between 32bit and 64bit
9499           systems. 
9501 2006-02-07  Mike Kestner  <mkestner@novell.com>
9503         * XplatUIX11.cs : force the WorkingArea away from XGetWindowProperty
9504         for 64 bit platforms to work around a metacity bug. 
9506 2006-02-07  Jackson Harper  <jackson@ximian.com>
9508         * TrackBar.cs: Process the input keys we need, and hookup to
9509         KeyDown instead of using WndProc, so we get key messages.
9511 2006-02-06  Peter Dennis Bartok  <pbartok@novell.com>
9513         * XplatUIX11.cs: Atoms are only 32bit on the wire, no matter what
9514           machine we're on. 
9515         * X11Dnd.cs(SetAllowDrop): Since atoms are always 32bit on the wire
9516           we need to translate the XdndVersion atoms array before sending it
9518 2006-02-06  Peter Dennis Bartok  <pbartok@novell.com> 
9520         * XplatUIX11.cs: 
9521           - The preceeding 64bit fixes had a bug: ChangeProperty expects the
9522             number of bits for the property, not the number of bytes. The
9523             change to provide IntPtr.Size broke 32bit. (64bit was also wrong
9524             but would not crash since it specified 8 bits instead of 4 bits)
9525           - More 64bit fixes: Switched all atoms from int to IntPtr (they are
9526             defined as XID -> long in the C headers)
9527           - Removed 'new IntPtr((int))' and '(IntPtr)' casts from all NetAtoms 
9528             references since those are now IntPtr to begin with
9529           - Switched all Atom.XXX 'int' casts to IntPtr casts
9530           - Fixed XGrabPointer DllImport signature to work for 64bit (cursor arg)
9531           - Fixed XInternAtom signature for 64bit, now returns an IntPtr
9532           - Added XChangeActivePointerGrab DllImport (for X11DnD)
9533         * X11Structs.cs:
9534           - Changed 'int' type for Atoms in XEvent structures to IntPtr
9535           - Changed atom in HoverStruct to be IntPtr
9536         * X11DnD.cs:
9537           - Removed local DllImports, switched code to use those from XplatUIX11
9538           - Removed/fixed casts related to the switch of Atom to be a IntPtr
9540 2006-02-06  Mike Kestner  <mkestner@novell.com>
9542         * XplatUIX11.cs : many more 64 bit pinvoke changes.  I've audited all the 
9543         method signatures in the import region.  There may still be some
9544         lingering struct marshaling issues, as I didn't drill down into those.
9545         Yet.
9547 2006-02-06  Jackson Harper  <jackson@ximian.com>
9549         * ComboBox.cs: Dont manually set the top_item, this is computed
9550         when the scrollbar position is set.
9552 2006-02-06  Mike Kestner  <mkestner@novell.com>
9554         * XplatUIX11.cs : 64 bit changes to XGetWindowProperty usage. Fixes
9555         startup crashes on amd64.  There's other fixes needed.  All pinvoke
9556         usage of Atom needs to be mapped to IntPtr for example.  And there are
9557         likely other int/long issues to be addressed.
9559 2006-02-04  Alexander Olk  <alex.olk@googlemail.com>
9561         * FileDialog.cs: One more...
9563 2006-02-03  Alexander Olk  <alex.olk@googlemail.com>
9565         * FileDialog.cs: Next try
9567 2006-02-03  Alexander Olk  <alex.olk@googlemail.com>
9569         * FileDialog.cs: First part of fix for #77464
9571 2006-02-03  Alexander Olk  <alex.olk@googlemail.com>
9573         * ButtonBase.cs, ContainerControl.cs, Forms.cs,
9574           ThemeWin32Classic.cs: Fix for #77458. Correct handling of
9575           AcceptButton border drawing.
9577 2006-02-03  Peter Dennis Bartok  <pbartok@novell.com> 
9579         * Form.cs: Moved positioning of form after auto scaling is applied,
9580           otherwise it would possibly use wrong form size.
9582 2006-02-03  Peter Dennis Bartok  <pbartok@novell.com>
9584         * Control.cs (RecreateHandle): No need to re-create any child
9585           controls, the child windows will get destroyed automatically by
9586           the windowing system or driver, and re-created when the handle
9587           is being accessed the first time. Fixes #77456
9588         * Form.cs: No longer setting the form to closing if the handle is 
9589           being recreated. This seems like the right thing to do, don't
9590           have a bug or testcase for this, though.
9592 2006-02-02  Peter Dennis Bartok  <pbartok@novell.com>
9594         * FileDialog.cs: Suspend/Resume layouting when changing sizes of
9595           controls to avoid unwanted side effects
9597 2006-02-02  Peter Dennis Bartok  <pbartok@novell.com> 
9599         * Control.cs: 
9600           - ScaleCore needs to scale the bounds, not the ClientSize of the 
9601             control. Fixes #77416.
9602           - DefaultSize is 0,0 for control
9603         * TextBoxBase.cs: 
9604           - DefaultSize is 100, 20
9605           - SetBoundsCore: Now enforcing the height, no matter if the provided
9606             height is more or less than the preferred one, as long as AutoSize
9607             is on
9608         * Form.cs: Apply documented fudge factor. Part of item 3 fix for #77416
9610 2006-02-02  Peter Dennis Bartok  <pbartok@novell.com>
9612         * Control.cs:
9613           - ResumeLayout: Fixed logic when to call PerformLayout, we may not
9614             call unless both performLayout is true *and* we have a pending
9615             layout change
9616           - ResumeLayout: MS does not completely nest Suspend and Resume,
9617             they bottom out at 0, fixed our code to match that.
9618           - UpdateBounds/SetBoundsCore: Moved calling of UpdateDistances() to
9619             SetBoundsCore, we were updating even when we shouldn't. This fixes
9620             swf-anchors mis-anchoring when resizing the app fast and lots.
9621           - UpdateDistances: Now only setting the left and top distance if 
9622             we have a parent and are not suspended, this is based on
9623             a suggestion by Don Edvaldson in bug #77355.
9624           - OnVisibleChanged: Fixed logic when to create the control. We may
9625             not create the control if we have no parent or if it's not visible;
9626             switched to using Visible property instead of is_visible field 
9627             since the property also considers parent states. This fixes a bug
9628             when starting Paint.Net
9630 2006-02-02  Jackson Harper  <jackson@ximian.com>
9632         * Form.cs: If the forms handle hasn't been created yet don't call
9633         into xplatui to make it top most, just set the topmost flag on the
9634         form in CreateParams
9635         * XplatUIX11.cs: Handle WS_EX_TOPMOST.
9637 2006-02-01  Jackson Harper  <jackson@ximian.com>
9639         * ScrollableControl.cs: Refactored the Recalculate method a
9640         little, this wasn't handling all the variants of bottom and right
9641         bars needed to be added and added/removed based on their
9642         counterparts being added/removed (which changes the drawable
9643         size). Also we special case client widths and heights of 0 and
9644         don't add the scrollbar for those.
9646 2006-02-01  Peter Dennis Bartok  <pbartok@novell.com>
9648         * XplatUIX11.cs: 
9649           - Added method to get AbsoluteGeometry(); currently unused, but might
9650             be used in the future, if we try again to figure out toplevel
9651             coordinates with some more crappy window managers
9652           - Added FrameExtents() method to retrieve the WM set decoration size
9653           - Tried to fix up AddConfigureNotify and handling of ReparentNotify 
9654             to deal with at least KDE, FVWM and metacity (Fixes #77092)
9655         * Hwnd.cs: 
9656           - Added whacky_wm tracking var for metacity
9657           - Added logic to have default menu height if the actual menu height
9658             has not yet been calculated (part of fix for #77426)
9659         * Form.cs: Keep track whether client size has been set and re-set 
9660           it if a menu is added/removed afterwards (Fixes #77426)
9662 2006-01-31  Jackson Harper  <jackson@ximian.com>
9664         * Control.cs: When a new Site is set on the component attempt to
9665         pull the AmbientProperties from it.
9667 2006-01-31  Peter Dennis Bartok  <pbartok@novell.com>
9669         * ThemeWin32Classic.cs: Menu background is drawn in ColorMenu, not
9670           in the background of the owning form. Fixes #77332
9672 2006-01-31  Alexander Olk  <alex.olk@googlemail.com>
9674         * MimeIcon.cs: Fix for #77409
9676 2006-01-31  Alexander Olk  <alex.olk@googlemail.com>
9678         * XplatUIX11GTK.cs: Initial import
9680 2006-01-31  Jordi Mas i Hernandez <jordimash@gmail.com>
9682         * FixedSizeTextBox: fixes class signature
9684 2006-01-30  Jackson Harper  <jackson@ximian.com>
9686         * FixedSizeTextBox.cs: New internal class that represents a
9687         textBox that will not be scaled.
9688         * TreeView.cs:
9689         * ComboBox.cs:
9690         * UpDownBase.cs: Use the new FixedSizeTextBox instead of a
9691         standard TextBox.
9692                 
9693 2006-01-30  Peter Dennis Bartok  <pbartok@novell.com> 
9695         * XplatUIX11.cs: Retrieve default screen number instead of
9696           assuming 0. Attempted fix for #77318
9698 2006-01-30  Peter Dennis Bartok  <pbartok@novell.com>
9700         * XplatUIWin32.cs: 
9701           - GetWindowPos: When a window is parented by FosterParent, use 
9702             the desktop instead of FosterParent as the base to get coordinates
9703           - CreateWindow: Don't make FosterParent the parent window for Popups
9704             if we don't want a taskbar entry, Popups automatically don't get one
9705         * Hwnd.cs: Need to call remove to actually remove the key from the
9706           hash table
9708 2006-01-30  Mike Kestner  <mkestner@novell.com>
9710         * MenuAPI.cs: adjust MainMenu item popup location to y=0.
9712 2006-01-30  Jackson Harper  <jackson@ximian.com>
9714         * TreeView.cs:
9715         * TreeNode.cs: Raise events no matter how the treenode is
9716         checked. Patch by Don Edvalson.
9718 2006-01-30  Jackson Harper  <jackson@ximian.com>
9720         * TreeNode.cs: Signature fix.
9722 2006-01-29  Alexander Olk  <alex.olk@googlemail.com>
9724         * ThemeClearlooks.cs: Fixed a crash in ProgressBar drawing.
9726 2006-01-20  Mike Kestner  <mkestner@novell.com>
9728         * Form.cs: Add ActiveTracker property to do Captures and perform mouse
9729         event forwarding when menus are active.
9730         * MenuAPI.cs: kill the GrabControl hack.  Use Form.ActiveTracker.
9731         Most of the patch is pdb's with a little rework.
9733 2006-01-26  Peter Dennis Bartok  <pbartok@novell.com> 
9735         * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs, XplatUIOSX.cs: 
9736           Removed GetMenuDC and ReleaseMenuDC methods; replaced
9737           by PaintEventStart(handle, false) and PaintEventEnd(handle, false)
9738         * Form.cs: Changed WM_NCPAINT handler to use PaintEventStart and End
9739         * InternalWindowManager.cs: Added use of PaintEventStart/End to
9740           handling of WM_NCPAINT message, now passing the PaintEventArgs to
9741           the PaintWindowDecorations method
9742         * MainMenu.cs: Switched logic from GetMenuDC to PaintEventStart
9743         * MdiChildContext.cs: Switched logic from GetMenuDC to PaintEventStart
9744         * MenuAPI.cs: Made tracker window invisible
9745         * XplatUIWin32.cs:
9746           - Removed GetMenuDC and ReleaseMenuDC methods
9747           - Implemented the client=false path for PaintEventStart and
9748             PaintEventEnd
9750 2006-01-26  Peter Dennis Bartok  <pbartok@novell.com>
9752         * XplatUIWin32.cs(SetBorderStyle): Fixed3D needs a border
9753         * XplatUIX11.cs(DeriveWindowStyles): Updated to match fixed Form
9754           styles
9755         * Form.cs: 
9756           - MaximizeBox, MinimizeBox: Recreate the handle when setting
9757             the style
9758           - CreateParams: Reworked the styles to match MS look'n'feel,
9759             removed automatic setting of MinimizeBox, MaximizeBox, etc. via
9760             the WS_OVERLAPPEDWINDOW style. This fixes #76823.
9762 2006-01-26  Peter Dennis Bartok  <pbartok@novell.com> 
9764         * XplatUIX11.cs(GetWindowState): Now throwing an exception when the 
9765           window is not mapped, since otherwise every form that's being 
9766           created is considered minimized, which is wrong.
9767         * Form.cs: Catching the exception and returning our internal value
9768           instead
9770 2006-01-26  Peter Dennis Bartok  <pbartok@novell.com>
9772         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs: Added new driver method
9773           SetWindowMinMax() to have means to tell the driver about the minimum,
9774           maximum and maximized state window sizes. (Part of the fix for #76485)
9775         * Form.cs:
9776           - Implemented tracking of minimum and maximum window size, now calling
9777             new SetWindowMinMax() driver method to tell the driver (Part of the
9778             fix for #76485)
9779           - Finished handling of WM_GETMINMAXINFO method, now setting all values
9780             (Completes fix for #76485)
9781           - Calling new SetWindowMinMax driver method when the handle for a 
9782             form is created, to make sure the driver knows about it even if
9783             the values have been set before the window was created
9784           - Now eating the WM_WINDOWPOSCHANGED message if the form is minimized
9785             to avoid messing up our anchoring calculations (partial fix
9786             for #77355)
9787         * XplatUIStructs.cs: Added MINMAXINFO struct (moved from Win32 driver)
9788         * XplatUIX11.cs:
9789           - Added _NET_WM_STATE_HIDDEN property for detecting minimized state
9790           - Improved GetWindowState() to detect 'Minimized' state on Metacity 
9791             (and presumably other freedesktop.org compliant WMs). Left the
9792             assumption unmapped=minimized, needed for SetVisible to work.
9793           - Now setting the window state when creating windows
9794           - Fixed SetVisible to consider/set the window state when mapping
9795             a Form. We cannot set the state before it's mapped, and we cannot
9796             use Form.WindowState once it's mapped (since it would ask the
9797             driver and get 'normal'. Therefore, we grab the state before
9798             mapping, map, and then set state.
9799           - Implmemented SetWindowMinMax method; Metacity does not seem to
9800             honor the ZoomHints, though.
9801         * XplatUIWin32.cs:
9802           - Removed MINMAXINFO (moved to XplatUIStructs)
9803           - Added SetWindowMinMax stub (on Win32 the only way to set that
9804             information is in response to the WM_GETMINMAXINFO message, which
9805             is handled in Form.cs)
9806           - Added logic to SetVisible to set the proper window state when a 
9807             form is made visible (fixes #75720)
9809 2006-01-26  Jackson Harper  <jackson@ximian.com>
9811         * Control.cs (BeginInvoke): Automagically handle EventHandlers the
9812         same way we handle them with Invoke.
9814 2006-01-25  Peter Dennis Bartok  <pbartok@novell.com> 
9816         * Form.cs:
9817           - Added tracking of window state so CreateParams can return
9818             the appropriate style
9819           - Moved setting of WS_CAPTION style in CreateParams to allow
9820             styles without caption
9821         * DataGridTextBoxColumn.cs: We are now also creating the TextBox 
9822           control if the TextBox property is accessed. Fixes #77345
9823         * Control.cs:
9824           - get_Created: now uses is_disposed and is_created to determine
9825             return value (suggested by Jackson)
9826           - CreateHandle: No longer exits if the handle is being recreated
9827           - RecreateHandle: If the handle is not yet created call the 
9828             appropriate method to create either control or handle. If the
9829             control is already created CreateHandle will simply exit instead
9830             of just creating the handle
9831         * Hwnd.cs: Removed expose_pending tracking, no longer needed since we
9832           now SendMessage WM_DESTROY directly to the control when DestroyWindow
9833           is called.
9834         * XplatUIX11.cs: 
9835           - When DestroyWindow is called, instead of waiting for the 
9836             DestroyNotification from X11, we directly post it to the WndProc
9837             and immediately dispose the hwnd object.
9838             Same applies to DestroyChildWindows, and this obsoletes the
9839             expose_pending tracking. Contrary to Win32 behaviour we destroy our
9840             child windows before our own, to avoid X11 errors.
9841           - Removed the direct sending of WM_PAINT on UpdateWindow
9842         * XplatUIWin32.cs:
9843           - Reworked DoEvents and GetMessage to allow access to internal queue
9844             even when trying non-blocking access to the queue.  Fixes #77335. 
9845             Based on a patch suggestion by Don Edvalson. The new private
9846             GetMessage can now also be used as a backend for a PeekMessage
9847             frontend version.
9848         * XplatUI.cs: Improved debug output for CreateWindow
9850 2006-01-25  Jackson Harper  <jackson@ximian.com>
9852         * Help.cs: Allow param to be null. Patch by Don Edvalson.
9854 2006-01-24  Jackson Harper  <jackson@ximian.com>
9856         * ComboBox.cs: Clamp the max value set for the vertical scrollbar
9857         when we have a MaxDropItems lower then the selected index.
9859 2006-01-24  Jackson Harper  <jackson@ximian.com>
9861         * Control.cs: Don't allow selection of non visible controls, allow
9862         selection of controls without parents.
9864 2006-01-24  Jordi Mas i Hernandez <jordimash@gmail.com>
9866         * ThemeWin32Classic.cs: Fixes Datagrid drawing issues
9867         * DataGridDrawingLogic.cs: Add editing row only when is necessary
9869 2006-01-23  Jackson Harper  <jackson@ximian.com>
9871         * UpDownBase.cs: Make the textbox handle all the selection and
9872         tabbing. This fixes tabing to updown controls.
9874 2006-01-24  Jordi Mas i Hernandez <jordimash@gmail.com>
9876         * TextBoxBase.cs: fixes exception thown the object was null
9878 2006-01-23  Jackson Harper  <jackson@ximian.com>
9880         * ButtonBase.cs: Just use the base CreateParams. They set
9881         visibility and enabled correctly.
9882         * ComboBox.cs:
9883         * TrackBar.cs:
9884         * MonthCalendar.cs: Lets let the base set as much of the
9885         createparams as possible so we don't have duplicate code all over
9886         the place.
9888 2006-01-22  Alexander Olk  <alex.olk@googlemail.com>
9890         * ThemeGtk.cs: Added TrackBar and some experimental code to
9891           get double buffering back
9893 2006-01-21  Jordi Mas i Hernandez <jordimash@gmail.com>
9895         * DataGrid.cs: Allows row number set internally higher than the last
9896         when creating a new row. Restores the editing functionality.
9898 2006-01-20  Mike Kestner  <mkestner@novell.com>
9900         * MimeIcon.cs: delay Image creation until the icons are accessed
9901         instead of creating 190 scaled images on GnomeHandler startup.
9903 2006-01-19  Peter Dennis Bartok  <pbartok@novell.com> 
9905         * TextBoxBase.cs (WndProc): When handling WM_KEYDOWN we need to
9906           first call base before processing the event. Fixes #77279
9908 2006-01-19  Peter Dennis Bartok  <pbartok@novell.com>
9910         * XplatUIWin32.cs, Cursor.cs: Fixed code that wrongly assumed
9911           that the stride for the GDI bitmap would match the stride of
9912           a DIB or a Cursor.
9914 2006-01-19  Alexander Olk  <alex.olk@googlemail.com>
9916         * ThemeGtk.cs: Added ProgressBar, RadioButton, CheckBox
9918 2006-01-19  Jackson Harper  <jackson@ximian.com>
9920         * ComboBox.cs: Hookup the text controls keydown event so we get
9921         those when the text control has the focus.
9923 2006-01-18  Peter Dennis Bartok  <pbartok@novell.com> 
9925         * Label.cs: Now using the base events instead of defining new ones;
9926           this allows us to just call the base properties without having to
9927           duplicate all base property logic 
9929 2006-01-18  Peter Dennis Bartok  <pbartok@novell.com>
9931         * Label.cs: A label by default is not a tabstop (Fixes one of our
9932           failing nunit tests)
9934 2006-01-18  Peter Dennis Bartok  <pbartok@novell.com> 
9936         * XplatUIWin32.cs: Fixed wrong DoEvents logic. Fixes #77282
9937         * XplatUIX11.cs: Removed WM_PAINT check from DoEvents. Fixes #77282
9939 2006-01-18  Peter Dennis Bartok  <pbartok@novell.com>
9941         * Cursor.cs: Reimplemented creating cursor bitmaps without using
9942           the Bitmap(Stream) constructor which is semi-broken on MS GDI+.
9943           This fixes #77218
9944         * XplatUIWin32.cs: 
9945           - Reimplemented creating Bitmaps from DIBs since the Bitmap(Stream) 
9946             constructor creates images that can't be saved. Part of the fix
9947             for #76103
9948           - Added handling of CF_BITMAP as CF_DIB to clipboard code (Fixes #76103)
9949           - SetWindowState: Switched ShowWindow flags (part of an upcoming 
9950             bug fix for handling window state in forms properly)
9952 2006-01-18  Alexander Olk  <alex.olk@googlemail.com>
9954         * ThemeGtk.cs: Simplify ScrollBar drawing
9956 2006-01-18  Jackson Harper  <jackson@ximian.com>
9958         * Splitter.cs: Set the default dock style for the splitter control
9959         in the constructor.
9961 2006-01-18  Alexander Olk  <alex.olk@googlemail.com>
9963         * ThemeGtk.cs: Corrected StateType and ShadowType for
9964           gtk_paint_box
9966 2006-01-18  Alexander Olk  <alex.olk@googlemail.com>
9968         * Control.cs: Make use of Theme.DoubleBufferingSupported
9969         * ThemeGtk.cs:
9970           - Added drawing for flat style buttons
9971           - Added ScrollBar drawing
9973 2006-01-18  Alexander Olk  <alex.olk@googlemail.com>
9975         * ThemeClearlooks.cs: Removed some unneeded code.
9976         * ThemeGtk.cs: First part of ThemeGtk enhancements.
9978 2006-01-17  Peter Dennis Bartok  <pbartok@novell.com>
9980         * LinkLabel.cs: We need to update the hover drawing when
9981           leaving the control as well.
9983 2006-01-18  Jordi Mas i Hernandez <jordimash@gmail.com>
9985         * DataGrid.cs: Clicking on non empty areas in the columns
9986            area was giving an exception
9988 2006-01-17  Jackson Harper  <jackson@ximian.com>
9990         * ThemeWin32Classic.cs:
9991         * ListView.cs: Do not draw/clip the headers when the header style
9992         is None.
9994 2006-01-17  Jordi Mas i Hernandez <jordimash@gmail.com>
9996         * DataGrid.cs: Fixes 77260
9997         
9998 2006-01-17  Jordi Mas i Hernandez <jordimash@gmail.com>
10000         * DataGrid.cs: Clicking on a column on a empty grid was giving
10001           an exception
10003 2006-01-17  Peter Dennis Bartok  <pbartok@novell.com>
10005         * DataGrid.cs (OnKeyDown): Don't use the array if it's empty
10006           or any keypress will crash the grid.
10008 2006-01-17  Mike Kestner  <mkestner@novell.com>
10010         * MainMenu.cs (OnMenuChanged): set Height=0 to cause relayout.
10011         * ThemeWin32Classic.cs (CalcItemSize): clear Height/Width for 
10012         invisible/previously-visible items.
10013         [Fixes #76909]
10015 2006-01-17  Alexander Olk  <alex.olk@googlemail.com>
10017         * ThemeClearlooks.cs:
10018         - Added CL_Draw_Button method; now other theme controls that are 
10019           not derived from button or do not have a button can draw buttons
10020           too
10021         - Updated ComboBox drawing
10022         - Beautified RadioButton drawing
10023         - Corrected drawing of bottom and left tabs
10024         - Beautified DateTimePicker and MonthCalendar
10025         - Added CPDrawButton and CPDrawRadioButton
10027 2006-01-16  Jackson Harper  <jackson@ximian.com>
10029         * ComboBox.cs: Set the initial value of the scrollbar to the
10030         current index. Reduce the numbers of refreshs and IndexOfs called.
10032 2006-01-14  Alexander Olk  <alex.olk@googlemail.com>
10034         * FileDialog.cs: When the file listview is focused hitting the
10035           backspace key moves the fileview to the parent directory
10037 2006-01-13  Peter Dennis Bartok  <pbartok@novell.com>
10039         * Form.cs: 
10040           - Added RecreateHandle call when changing taskbar visibility to 
10041             trigger reparenting in Win32 driver (Fixes #75719)
10042           - If a window has minimize or maximize buttons, it cannot have
10043             a help button
10044         * XplatUIWin32.cs:
10045           - CreateWindow: When no WS_EX_APPWINDOW style is found we parent
10046             the toplevel form with FosterParent (A toolwindow not on the
10047             taskbar) (Fixes #75719)
10048           - Made FosterParent a toolwindow
10050 2006-01-13  Alexander Olk  <alex.olk@googlemail.com>
10052         * FileDialog.cs: Don't crash if InitialDirectory doesn't exist
10054 2006-01-13  Alexander Olk  <alex.olk@googlemail.com>
10056         * ToolTip.cs: If SetToolTip is called from a control and the mouse
10057           is currently over that control, make sure that tooltip_window.Text
10058           gets updated
10060 2006-01-13  Mike Kestner  <mkestner@novell.com>
10062         * MimeIcon.cs: size_t on lp64 fix for gdk_pixbuf_save_to_file extern.
10064 2006-01-13  Jackson Harper  <jackson@ximian.com>
10066         * TreeView.cs: On MS GetNodeAt never actually factors in the X
10067         value passed.  Also redraw the selected node when we recieve
10068         focus, so tabbing between trees works correctly.
10070 2006-01-13  Alexander Olk  <alex.olk@googlemail.com>
10072         * MimeIcon.cs: GnomeHandler: older gnome versions don't have
10073           ~/.gconf/%gconf-tree.xml, so use
10074           .gconf/desktop/gnome/interface/%gconf.xml
10076 2006-01-13  Peter Dennis Bartok  <pbartok@novell.com> 
10078         * TextControl.cs: Draw text in gray if control is disabled
10080 2006-01-13  Peter Dennis Bartok  <pbartok@novell.com> 
10082         * TreeView.cs: Draw the focus rectangle outside the highlight, to
10083           make sure it's always visible. Fixes #76680.
10085 2006-01-13  Peter Dennis Bartok  <pbartok@novell.com>
10087         * TreeView.cs: Implemented Wheel scrolling. Fixes #76531
10089 2006-01-13  Jonathan Chambers  <jonathan.chambers@ansys.com>
10091         * PageSetupDialog.cs: Added.
10092         * PrintDialog.cs: Attributes.
10093         * PrintPreviewControl.cs: Updates.
10094         * PrintPreviewDialog.cs: Updates.
10095         
10096 2006-01-12  Peter Dennis Bartok  <pbartok@novell.com>
10098         * Control.cs: Undid my selection check fix, since it's not needed
10099         * TextBoxBase.cs:
10100           - Now considering the presence of hscroll/vscroll when sizing
10101             vscroll/hscroll respectively. Fixed bug #77077
10102           - Added Left/Up/Down/Right to IsInputKey list to prevent
10103             ContainerControl from stealing them. This fixes what I broke
10104             with my last checkin.
10106 2006-01-12  Peter Dennis Bartok  <pbartok@novell.com> 
10108         * ScrollableControl.cs: Implemented dockpadding. Fixes #77166. And
10109           I finally understand how the property can be set without a setter :-)
10111 2006-01-12  Peter Dennis Bartok  <pbartok@novell.com>
10113         * Application.cs:
10114           - Switched RunLoop to use static Message.Create to create a 
10115             Message object
10116           - Added PreProcessMessage call in runloop for keyboard events; this
10117             is part of the fix for #77219, I overlooked this originally in the
10118             MSDN doc for PreProcessMessage
10119         * Control.cs:
10120           - Removed call to PreProcessMessage from handling of keyboard 
10121             messages; it's supposed to be done in the message pump
10122           - Moved call to ProcessKeyEventArgs inside ProcessKeyMessage as
10123             per MSDN documentation.
10124           - IsInputChar: All chars are input chars by default; removed the 
10125             parent calling chain, MS does not document that
10126           - PreProcessMessage: If IsInputChar is true, we want to return false
10127             to allow dispatching of the message
10128           - When selecting the next control, now also check that we're not
10129             selecting ourselves again and therefore return a false positive.
10130         * TextBoxBase.cs:
10131           - Tried to match return values for IsInputKey and ProcessDialogKey
10132             to what MS returns; moved processing of our special keys outside
10133             ProcessDialogKey since MS does not seem to return true on those.
10134           - Moved code that previously was in ProcessDialogKey into new private
10135             ProcessKey method, which gets called upon receipt of WM_KEYDOWN
10136           - Reworked handling of WM_CHAR to not have to duplicate code from
10137             Control.cs anymore, instead we simply call down to base.
10138            
10139 2006-01-12  Jackson Harper  <jackson@ximian.com>
10141         * ComboBox.cs: We always need to refresh the text area when
10142         EndUpdate is called. Fixes the combobox in the file dialog.
10143         * Control.cs: Don't create the creator_thread until the controls
10144         handle is created.  Also in InvokeRequired we check if the
10145         creator_thread is null. This gives the effect of InvokeRequired
10146         returning true if the controls handle is not created yet, and
10147         matches MS.
10149 2006-01-12  Peter Dennis Bartok  <pbartok@novell.com>
10151         * XplatUI.cs:
10152           - Added StartLoop() driver method. This is used to allow drivers to
10153             prepare for an upcoming GetMessage/TranslateMessage/DispatchMessage
10154             loop for a particular thread
10155           - Added EndLoop() driver method. This is called once the message
10156             pump for the thread is shut down
10157           - Added SupportsTransparency method to allow the driver to indicate
10158             opacity support for windows
10159         * Form.cs:
10160           - Removed TODO attribute, completed AllowTransparency property
10161           - Added documented logic to Opacity
10162         * GroupBox.cs, Label.cs, LinkLabel.cs, PropertyGrid.cs, Control.cs,
10163           ButtonBase.cs, CheckedListBox.cs: Combined Jackson's and Miguel's
10164           versions of CompatibleTextRendering
10165         * X11Structs.cs: Added opacity atom to our atom enumeration
10166         * Hwnd.cs: Added opacity tracking (we need to track since the opacity
10167           of a form might be set before it's reparented by the WM, and we need
10168           the opacity value without calling up to Form)
10169         * XplatUIDriver.cs: Added StartLoop(), EndLoop() and 
10170           SupportsTransparency() driver methods
10171         * Application.cs: Now calling StartLoop and EndLoop driver methods
10172         * XplatUIX11.cs:
10173           - Added opacity atom registration
10174           - Added StartLoop()/EndLoop() methods. They're empty right now but
10175             will need to get implemented when we switch to a per-thread queue
10176           - Implemented SupportsTransparency() method
10177           - Implemented SetWindowTransparency() method
10178           - Added support for setting the opacity value when a window is
10179             reparented (since the opacity needs to be set on the WM frame)
10180         * XplatUIOSX.cs, XplatUIWin32.cs:
10181           - Added SupportsTransparency(), StartLoop() and EndLoop() methods
10183 2006-01-12  Alexander Olk  <alex.olk@googlemail.com>
10185         * ThemeClearlooks.cs: Don't crash if TabControl.Parent is null.
10187 2006-01-12  Alexander Olk  <alex.olk@googlemail.com>
10189         * FileDialog.cs: Added ToolTip for MWFFileView
10190         * MimeIcon.cs: Rewrote GnomeHandler.
10191           - Get currently used gnome icon theme from
10192             ($HOME)/.gconf/%gconf-tree.xml
10193           - Make use of inherited icon themes
10194           - Support SVG icon themes like Tango via librsvg
10196 2006-01-12  Miguel de Icaza  <miguel@novell.com>
10198         Revert's Jackson's revert which broke 2.0 builds.   Fix both
10199         builds. 
10200         
10201         * Application.cs: Move the use_compatible_text_rendering outside
10202         the NET_2_0 define.  If we ever need to use the
10203         use_compatible_text_rendering on the individual controls they will
10204         access the variable from the common shared code paths.
10206 2006-01-12  Peter Dennis Bartok  <pbartok@novell.com>
10208         * XplatUI.cs:
10209           - Added more granular debug options
10210           - Added method to print both window text and id
10211           - Switched debug output to use new Window() debug method
10212           - Added IsEnabled() driver method
10213           - Added EnableWindow() driver method
10214         * Form.cs:
10215           - Removed end_modal; no longer needed, new loop handles termination
10216             via 'closing' variable
10217           - If form is modal, setting DialogResult will now initiate loop
10218             termination via 'closing' variable
10219           - Added support for is_enabled/WS_DISABLED to CreateParams
10220           - Close() now just send the WM_CLOSE message; the WM_CLOSE handler
10221             does all the work
10222           - Removed code that's now in RunLoop from ShowDialog()
10223           - Added various documented sanity checks to ShowDialog()
10224           - Added handling of WM_DESTROY message; we set 'closing' on getting
10225             the message to indicate the message pump to terminate
10226           - Added handling of new internal WM_CLOSE_INTERNAL message - it's
10227             send by the Application.ExitThread method. (We send the message
10228             to destroy the window after all other events have been
10229             processed through the queue, instead of destroying the handle 
10230             directly)
10231           - Moved code from Close() method to WM_CLOSE handler; added logic
10232             to only send close-related events if the form is not displayed
10233             modal
10234         * Splitter.cs (..ctor): Fixed typo in resource name
10235         * Control.cs:
10236           - DrawBackgroundImage: Explicitly selecting the wrap mode for the
10237             brush now
10238           - set_Cursor: Now only setting calling into XplatUI if the handle for
10239             the control is already created; this avoids implict handle creation
10240             or crashes if it's not created
10241           - set_Enabled: Now setting the enabled state via the new driver method
10242             instead of just tracking it
10243           - CreateParams: Added logic to set WS_DISABLED based on enabled state
10244           - CreateControl: Reordered event firing and method calls to more
10245             closely fire events in the order MS does. Now setting the
10246             enabled state in the driver when creating the control.
10247           - SetVisibleCore: Moved when the OnVisibleChanged event is fired to
10248             match MS order
10249         * FolderBrowserDialog.cs, MessageBox.cs, ButtonBase.cs, TrackBar.cs,
10250           MonthCalendar.cs: get_CreateParams: Added setting of WS_DISABLED 
10251         * XplatUIStructs.cs: Added internal WM_CLOSE_INTERNAL mesage id
10252         * Hwnd.cs:
10253           - Added tracking of window enabled state (get_Enabled/set_Enabled)
10254           - Added EnabledHwnd property to easily allow a driver to find the
10255             handle of the first enabled window in the parent chain (this is
10256             used by drivers to pass up input events of disabled windows)
10257         * XplatUIDriver.cs: Added IsEnabled() method
10258         * Application.cs:
10259           - Removed crude and obsolete exiting tracking variable
10260           - Removed internal ModalRun(); replaced by RunLoop()
10261           - Implemented private CloseForms() method to allow closing all 
10262             windows owned by a particular (or all) threads
10263           - Exit() now properly closes all windows without forcing the message
10264             pump to quit
10265           - Removed obsolete InternalExit() method
10266           - Changed Run() methods to use new RunLoop() message pump
10267           - Implemented new RunLoop() method for both modal and non-modal forms
10268         * CommonDialog.cs:
10269           - get_CreateParams: Added setting of WS_DISABLED
10270           - Simplified ShowDialog(); now all the work is done in RunLoop(),
10271             invoked via Form.ShowDialog()
10272         * NativeWindow.cs: We don't remove the window from the collection when
10273           the handle is destroyed; there might still be messages for it in the
10274           queue (mainly the resulting WM_DESTROY); instead it will be removed
10275           when Control calls InvalidateHandle in the WM_DESTROY handler
10276         * XplatUIX11.cs:
10277           - CreateWindow: Added logic to handle the WS_DISABLED window style
10278           - EnableWindow: Implemented based on Hwnd.Enabled
10279           - GetMessage: Reset PostQuitState so the method can be called again
10280           - Implemented support for disabled windows (passing messages to the
10281             first enabled parent) in handling all input messages
10282           - Added optimizations for handling Expose events
10283           - Implemeted new driver method IsEnabled()
10284           - Now always resetting paint pending tracking vars when we start paint
10285           - Re-implemented UpdateWindow via just sending a WM_PAINT message
10286         * XplatUIOSX.cs: Added IsEnabled method stub
10287         * XplatUIWin32.cs: Implemented new IsEnabled() method
10289 2006-01-11  Jackson Harper  <jackson@ximian.com>
10291         * ButtonBase.cs, CheckedListBox.cs, GroupBox.cs, Label.cs,
10292         LinkLabel.cs, PropertyGrid.cs: Unbreak 1.1 build. Consolidate the
10293         variables a little.
10294         * ColorDialog.cs: Clear out the old form before adding the new
10295         panel.  
10297 2006-01-11  Jackson Harper  <jackson@ximian.com>
10299         * X11Dnd.cs: Make sure to add all the text formats when adding
10300         strings to the data object.
10301         * TreeNodeCollection.cs: When adding to a sorted tree we need to
10302         do some redrawing too.  Also change the UpdateNode to an
10303         UpdateBelow so the newly added node gets painted.
10304         
10305 2006-01-11  Miguel de Icaza  <miguel@novell.com>
10307         * ButtonBase.cs, CheckedListBox.cs, GroupBox.cs, Label.cs,
10308         LinkLabel.cs, PropertyGrid.cs: Implement the
10309         UseCompatibleTextRendering property for 2.x
10311         * Application.cs (SetCompatibleTextRenderingDefault): Add. 
10313 2006-01-11  Jackson Harper  <jackson@ximian.com>
10315         * TreeView.cs: Use the property for setting the selected node so
10316         the correct events get raised.
10317         * TreeNode.cs: Update the tree when the fore/back colours of a
10318         node are set.
10320 2006-01-10  Jackson Harper  <jackson@ximian.com>
10322         * TreeView.cs: Allow setting SelectedNode to null.
10324 2006-01-9  Jonathan Chambers  <jonathan.chambers@ansys.com>
10326         * Form.cs: Fix support for Form TransparencyKey and Opacity on Windows.
10328 2006-01-9  Jonathan Chambers  <jonathan.chambers@ansys.com>
10330         * PrintControllerWithStatusDialog.cs: Update page number in dialog.
10332 2006-01-9  Jonathan Chambers  <jonathan.chambers@ansys.com>
10334         * PrintDialog.cs: Added attributes and set default property values.
10336 2006-01-9  Jonathan Chambers  <jonathan.chambers@ansys.com>
10338         * PrintControllerWithStatusDialog.cs: 
10339         Added PrintControllerWithStatusDialog.
10341 2006-01-9  Jonathan Chambers  <jonathan.chambers@ansys.com>
10343         * XplatUI.cs, Form.cs, XplatUIDriver.cs, XplatUIX11.cs, XplatUIOSX.cs, 
10344         XplatUIWin32.cs: Added support for Form TransparencyKey and Opacity on Windows.
10346 2006-01-9  Jonathan Chambers  <jonathan.chambers@ansys.com>
10348         * ComboBox.cs: Fix crash when there is no selected item (due to last commit)
10350 2006-01-09  Jonathan Chambers  <jonathan.chambers@ansys.com>
10352         * ComboBox.cs: Added KeyDown event handler for processing arrow keys
10353         and PgUp/PgDown. Also, scroll to selected item upon dropdown. Bugs 76857 and 76788.
10355 2006-01-08  Alexander Olk  <alex.olk@googlemail.com>
10357         * MimeIcon.cs: Added internal class SVGUtil.
10359 2006-01-08  Alexander Olk  <alex.olk@googlemail.com>
10361         * FileDialog.cs: Don't crash if there are two files with the
10362           same name but different locations.
10364 2006-01-08  John BouAntoun  <jba-mono@optusnet.com.au>
10366         * MonthCalendar.cs: Fixed annoying rendering bug when selecting
10367         dates across multiple month grids. Used to not highlight entire 
10368         month, but does now.
10369         
10370 2006-01-06  Jackson Harper  <jackson@ximian.com>
10372         * MonthCalendar.cs: Removed DoEvents call to prevent a running
10373         message loop. Change timer intervals to numbers that seem more
10374         natural.
10376 2006-01-06  John BouAntoun  <jba-mono@optusnet.com.au>
10378         * DateTimePicker.cs: Modified CalculateDropDownLocation to use the screen
10379           object for location info since screen object is now implemented.
10381 2006-01-05  Jackson Harper  <jackson@ximian.com>
10383         * AsyncMethodData.cs: Check if the call is complete before doing a WaitOne
10384         * AsyncMethodResult.cs: We no longer use a WeakReference for the
10385         AsyncMethodResult, this is because we ALWAYS want the
10386         ManualResetEvent to get set.
10387         * Control.cs: When disposing use an async invoke to call shutdown
10388         code, so that thigns don't block on the finalizer thread.  Also
10389         check if we even have a message loop before trying to send
10390         messages, if we don't then don't bother sending messages.
10391         - No more weak references for async methods
10392         * XplatUIDriver.cs: No more weak references for async methods.
10394 2006-01-04  Alexander Olk  <alex.olk@googlemail.com>
10396         * FontDialog.cs: Fix, don't throw an exception if FontFamily.Families
10397           returns two FontFamily with the same name
10399 2006-01-04  Peter Dennis Bartok  <pbartok@novell.com>
10401         * ThemeWin32Classic.cs, ThemeClearlooks.cs: Dropped stupid scheme of 
10402           drawing disabled text. Instead using the ColorGrayText color
10404 2006-01-04  Jackson Harper  <jackson@ximian.com>
10406         * TreeNode.cs: redraw the node when its image index is changed.
10408 2006-01-04  Peter Dennis Bartok  <pbartok@novell.com>
10410         * RichTextBox.cs: Same fix as last, just for SelectionColor. This
10411           time I checked there are no others like it.
10413 2006-01-04  Jackson Harper  <jackson@ximian.com>
10415         * AsyncMethodResult.cs: Use a ManualResetEvent instead of a mutex,
10416         this gives the behavoir I was looking for.
10417         * Control.cs: Special case Invoking EventHandlers, this matches MS
10418         and fixes part of bug #76326.
10420 2006-01-04  Alexander Olk  <alex.olk@googlemail.com>
10422         * ThemeClearlooks.cs, FileDialog.cs:
10423           - Reflect the latest Theme class changes
10424           - Remove Mono.Unix.Syscall.time in FileDialg and replace it 
10425             with DateTime
10426             
10427 2006-01-04  Alexander Olk  <alex.olk@googlemail.com>
10429         * Theme.cs: Cache UI resource images and resize them if needed
10431 2006-01-03  Peter Dennis Bartok  <pbartok@novell.com>
10433         * RichTextBox.cs: FormatText is 1-based, make it so when SelectionFont
10434           is called. This fixes the crash in Nexxia when setting the font
10435           attributes in the chat. [However, RTF needs a look-over to make sure
10436           that all SelectionXXX methods handle the special case that selection
10437           is empty and therefore the change must be applied to all text starting
10438           at the cursor/selection start]
10440 2006-01-03  Peter Dennis Bartok  <pbartok@novell.com> 
10442         * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs, XplatUIWin32.cs,
10443           XplatUIOSX.cs: Added SendMessage and PostMessage methods
10444         * X11Keyboard.cs: Switched to new way of calling PostMessage
10446 2006-01-03  Peter Dennis Bartok  <pbartok@novell.com>
10448         * Theme.cs: Added theme interface for images to allow the theme to
10449           control what images are used for things like FileDialog, MessageBox
10450           icons, etc.
10451         * MessageBox.cs: Now uses the new Theme icon/image interfaces
10453 2006-01-03  Alexander Olk  <alex.olk@googlemail.com>
10455         * FileDialog.cs:
10456           - Removed some dead code
10457           - Opening a recently used file does work now
10458           - Small UI enhancements
10459           - Refactoring
10461 2006-01-02  Alexander Olk  <alex.olk@googlemail.com>
10463         * FileDialog.cs: Forgot too add __MonoCS__
10465 2006-01-02  Alexander Olk  <alex.olk@googlemail.com>
10467         * FileDialog.cs: We are able to read recently used files now let's
10468           go on and write them.
10470 2006-01-01  Alexander Olk  <alex.olk@googlemail.com>
10472         * FileDialog.cs: Breathe some life into "last open"/"recently used"
10473           button
10474         * MimeIcon.cs: Do a check for the top level media type also
10476 2005-12-31  Alexander Olk  <alex.olk@googlemail.com>
10478         * ThemeClearlooks.cs:
10479           - Added CPDrawStringDisabled
10480           - ButtonBase_DrawText: Workaround for a DrawString bug; cut off
10481             some chars if the text doesn't fit into text_rect
10482           - DrawListViewItem: If View = View.LargeIcon center the image;
10483             rewrote the drawing of ListViewItem.Text if View = 
10484             View.LargeIcon
10486 2005-12-31  Alexander Olk  <alex.olk@googlemail.com>
10488         * MimeIcon.cs: Use default KDE icon theme if there is no
10489           "48x48" directory for the current icon theme, fixes #77114
10490         * Mime.cs: Disable not working and actually not used code. 
10491         * ThemeWin32Classic.cs:
10492           - Replace "new SolidBrush" in GetControlBackBrush and
10493             GetControlForeBrush with ResPool.GetSolidBrush
10494           - Changed DrawListViewItem from private to protected virtual
10495         * FileDialog.cs:
10496           - Added form.MaximizeBox = true
10497           - Don't throw an exception if there is a broken symbolic link
10499 2005-12-23  Jackson Harper  <jackson@ximian.com>
10501         * TabControl.cs: Give the panels focus, keyboard navigation is
10502         fixed so this works correctly now.
10503         - We need these key events also.
10504         * ToolBar.cs: Remove some of the poor mans double buffering.
10505         
10506 2005-12-24  Alexander Olk  <alex.olk@googlemail.com>
10508         * ComboBox.cs: The internal TextBox now returns the focus.
10510 2005-12-23  Jackson Harper  <jackson@ximian.com>
10512         * ThemeWin32Classic.cs:  Draw the text for all tab appearances.
10514 2005-12-23  Peter Dennis Bartok  <pbartok@novell.com>
10516         * Control.cs: Removed debug code
10517         * XplatUIX11.cs: Changed DestroyChildWindows to also consider
10518           implicit children
10520 2005-12-23  Peter Dennis Bartok  <pbartok@novell.com> 
10522         * Control.cs: When creating the control, update the Z-order after
10523           all it's children are created, too. (Fixes nexxia not showing
10524           picturebox bug)
10526 2005-12-23  Peter Dennis Bartok  <pbartok@novell.com>
10528         * Control.cs: Do not update the anchoring distances if layout is
10529           suspended, instead do it once layout is resumed
10531 2005-12-22  Peter Dennis Bartok  <pbartok@novell.com> 
10533         * Control.cs: 
10534           - After many hours of debugging, for both Jackson and
10535             myself, it turns out that it helps to set the parent of a control
10536             if you want to actually see it onscreen. In the spirit of that
10537             discovery, we're now setting the parent of the control and
10538             it's children when the control's handle is created. This fix
10539             will make Lutz Roeder's Reflector run happily. 
10540           - now just creating the handle instead of the whole control when
10541             getting a graphics context for the control.
10543 2005-12-22  Peter Dennis Bartok  <pbartok@novell.com>
10545         * ScrollableControl.cs: When calculating the canvas, don't consider
10546           the scrollbar widths. Instead, predict if horizontal scrollbar
10547           will affect canvas when deciding on vertical display and vice versa.
10549 2005-12-22  Peter Dennis Bartok  <pbartok@novell.com>
10551         * RichTextBox.cs: Set default RTF font for documents that don't
10552           have a font table (Fixes #77076)
10554 2005-12-22  Jackson Harper  <jackson@ximian.com>
10556         * TextBoxBase.cs: It's difficult to do, but you can have an empty
10557         clipboard. This prevents a NullRef in that case.
10558         * XplatUIX11.cs: Use CLIPBOARD not PRIMARY for our
10559         clipboard. PRIMARY is for the currently selected text only. (We
10560         should implement PRIMARY at some point.
10562 2005-12-21  Peter Dennis Bartok  <pbartok@novell.com>
10564         * XplatUIWin32.cs: Fixed the TEXTMETRIC structure, we were calling
10565           a Unicode function with a structure that was defined in Ansi way.
10566           This fixes #76942.
10568 2005-12-21  Jackson Harper  <jackson@ximian.com>
10570         * StatusBar.cs: Statusbar handles its fore/back colours on it's
10571         on. Because thats how it rolls. (and this avoids it using ambient
10572         colours).
10573         * ThemeWin32Classic.cs: Use the proper back color for filling.
10574         * Menu.cs: Use the system menu bar color for drawing menu
10575         bars. Using the window back color will bring ambient colours into
10576         the picture.
10578 2005-12-21  Alexander Olk  <alex.olk@googlemail.com>
10580         * ColorDialog.cs: Fixed a memory leak that caused a SIGSEV. A lot of
10581           Bitmaps were created and not disposed.
10583 2005-12-21  Peter Dennis Bartok  <pbartok@novell.com>
10585         * Control.cs (CreateControl): Don't do anything if the control is
10586           already created, otherwise we'd fire the OnCreated event more than
10587           once
10589 2005-12-21  Peter Dennis Bartok  <pbartok@novell.com> 
10591         * ComboBox.cs (FindStringCaseInsensitive): Don't search for emtpy strings,
10592           will always match. Instead return -1. Fixes #76464.
10594 2005-12-21  Peter Dennis Bartok  <pbartok@novell.com>
10596         * TextControl.cs (RecalculateLine): Only wrap if the wrap point is
10597           neither the beginning nor the end of the line (Fixes bug #76479)
10599 2005-12-21  Peter Dennis Bartok  <pbartok@novell.com> 
10601         * Control.cs:
10602           - ControlNativeWindow.ControlFromHandle(): Now handling situation
10603             where handle is invalid
10604           - FromHandle(): Now using hashtable-based ControlFromHandle() lookup
10605             instead of slower linear search
10606         * NativeWindow.cs: Don't remove the window from the hashtable until
10607           after the driver has destroyed it (since the driver might use
10608           Control.FromHandle to lookup the control object
10609         * Hwnd.cs: Added DestroyPending property to track if a window is 
10610           already destroyed as far as the driver is concerned and only hasn't
10611           yet notified the control
10612         * XplatUIX11.cs:
10613           - Activate(): Check if the window is still valid before using the 
10614             handle
10615           - Implemented DestroyChildWindow() method to mark child windows as
10616             destroyed when a window is destroyed. This prevents situations 
10617             where we might call an X method based on queued events for a
10618             window that already has been destroyed but we haven't yet pulled
10619             the destroy method from the queue.
10620           - Added a call to the new DestroyChildWindow() method to the drivers
10621             DestroyWindow code. Also now marking the destroyed window itself
10622             as pending
10624 2005-12-20  Jackson Harper  <jackson@ximian.com>
10626         * StatusBar.cs:
10627         * StatusBarPanel.cs: Don't calculate panel sizes on draw
10628         anymore. Just do them when needed, also track the rects of panels
10629         so that we can optimize refreshing more in the future.
10631 2005-12-20  Alexander Olk  <alex.olk@googlemail.com>
10633         * ColorDialog.cs: Fixed focus drawing in small color controls
10635 2005-12-19  Jackson Harper  <jackson@ximian.com>
10637         * InternalWindowManager.cs:
10638         * MdiWindowManager.cs: Cleanup some coordinate system changes so
10639         moving windows works properly.
10641 2005-12-19  Peter Dennis Bartok  <pbartok@novell.com> 
10643         * Control.cs: 
10644           - Removed call to InitLayout() from SetBoundsCore(); doc says
10645             it's only called when a control is added to a container
10646           - Split InitLayout logic, moved to separate UpdateDistances() method
10647             since we need to perform those calculations more often than just
10648             when adding the control to a container. (Needed to fix #77022)
10649           - Now calling UpdateDistances() from UpdateBounds() (fixes #77022)
10650           - Reduced the OnBindingContextChanged events count, don't send them
10651             unless the control is created, we still aren't totally matching
10652             MS, but I can't quite figure out some of their rules
10654 2005-12-18  Alexander Olk  <alex.olk@googlemail.com>
10656         * ThemeClearlooks.cs: Corrected distance between ProgressBar
10657           stripes
10659 2005-12-18  Alexander Olk  <alex.olk@googlemail.com>
10661         * ThemeClearlooks.cs:
10662           - Updated ProgressBar drawing
10663           - Corrected drawing of ScrollBars and scroll buttons
10664           - Some temporary fixes for minor pixel artefacts
10666 2005-12-18  Peter Dennis Bartok  <pbartok@novell.com> 
10668         * Control.cs:
10669           - Reworked Controls.Add(), Controls.Remove() and set_Parent() to
10670             cause events to be sent in the same order as MS does.
10671           - Added ChangeParent() method to trigger various OnXXXChanged events
10672             that need to be fired when a parent changes (This is a reworking
10673             of the patch from r54254, with the X11 errors fixed)
10674           - Removed SuspendLayout()/ResumeLayout() calls from Controls.Clear()
10675             since on MS we get OnLayoutChanged events when calling Clear()
10676           - Changed Enabled property to consider parent state as well, if a
10677             parent is not enabled, the control will not be either
10678           - Changed Parent property to simply call Controls.Add() since that
10679             now does all the work required, this way we avoid code duplication
10680           - Threw in a few OnBindingsContextChanged calls to try and match
10681             when MS sends them. We seem to send a few too many, though.
10682           - Added call to CreateControl when adding the control to a parent.
10683             We were never calling CreateControl. Still needs some work, in
10684             some places we treat HandleCreated and ControlCreated as equal, 
10685             which is wrong
10686           - Removed obsolete commented out code from UpdateZOrder()
10688 2005-12-18  Alexander Olk  <alex.olk@googlemail.com>
10690         * ThemeClearlooks.cs: Updated TrackBar drawing.
10692 2005-12-17  Alexander Olk  <alex.olk@googlemail.com>
10694         * FileDialog.cs: Patch for #76901 by Atsushi Enomoto
10696 2005-12-17  Alexander Olk  <alex.olk@googlemail.com>
10698         * FileDialog.cs: Add the Help button and the open readonly
10699           checkbox only if needed
10701 2005-12-16  Jackson Harper  <jackson@ximian.com>
10703         * Control.cs: Make sure we have an active menu before trying to
10704         process commands on it. Prevents menu-less forms from crashing
10705         when Alt is pressed.
10706         * TreeNodeCollection.cs: Some fixes to prevent null refs. Patch by
10707         Dieter Bremes.
10708         * RichTextBox.cs: Expand statement to help out gmcs and fix the
10709         2.0 build.
10711 2005-12-16  Jackson Harper  <jackson@ximian.com>
10713         * InternalWindowManager.cs: Don't translate tool windows screen
10714         coordinates. This fixes windows 'bouncing' around when being moved.
10716 2005-12-15  Peter Dennis Bartok  <pbartok@novell.com> 
10718         * TextBoxBase.cs:
10719           - MaxLength now treats 2^31-1 equal to unlimited length (this is
10720             not quite MS compatible, MS uses that number only for single line
10721             and 2^32-1 for multi-line, but I figure it won't hurt keeping
10722             the limit at 2GB)
10723           - Now enforcing the MaxLength limit when entering characters
10724           - Added argument to internal Paste() method to track if it's called
10725             from programatically or via keyboard, since keyboard driven pastes
10726             need to enforce max-length
10727           - Added logic to Paste to only paste as many chars as MaxLength 
10728             allows
10729         * RichTextBox.cs: Updated to use new obey argument for internal Paste()
10730         * TextControl.cs:
10731           - Added Length property to return number of characters in document
10732           - Added private CharCount property which only tracks actual chars
10733             in the document (no linefeeds) and fires event when CharCount
10734             changes
10735           - Added tracking of character count to all methods that alter it
10736           - Added LengthChanged event to allow applications to subscribe
10737             to any changes to the document
10739 2005-12-15  Peter Dennis Bartok  <pbartok@novell.com> 
10741         * TextBox.cs: 
10742           - Removed local password_char field (moved to TextBoxBase)
10743           - Now setting the document's password var when password is
10744             set
10745         * TextBoxBase.cs:
10746           - Added password_char field (needed here so MultiLine can
10747             access it)
10748           - Added logic to MultiLine property setter to set the document's
10749             variable when password display is allowed
10750           - Removed debug code and made some debug code conditional
10751         * TextControl.cs:
10752           - Added RecalculatePasswordLine() method to handle special password
10753             char only lines
10754           - Added PasswordChar property, also added related tracking vars
10755           - Draw() method now uses local text var for grabbing text to draw,
10756             this var is set to line.text unless we're doing password display,
10757             then it is set to the pre-generated all-password-chars line
10758           - Added calling RecalculatePasswordLine() method for password lines
10760 2005-12-14  Peter Dennis Bartok  <pbartok@novell.com> 
10762         * Hwnd.cs: 
10763           - Added Reparented property to allow tracking of Window Manager
10764             reparenting actions (which affect X/Y calculations of toplevel 
10765             windows)
10766           - Made ToString() print window handles in hex
10767         * XplatUIX11.cs:
10768           - AddConfigureNotify(): Now uses reparented state off Hwnd to
10769             determine if X/Y needs offsetting
10770           - AddConfigureNotify(): Fixed offset calculations
10771           - Now adds ReparentNotify messages into the queue
10772           - Now processes ReparentNotify messages and causes a 
10773             WM_WINDOWPOSCHANGED message to be sent upstream if a window
10774             is reparented (as most likely it's X/Y coordinates are changed
10775             due to that)
10777 2005-12-14  Jackson Harper  <jackson@ximian.com>
10779         * XplatUIX11.cs: Tool windows still need to respek focus.
10781 2005-12-14  Peter Dennis Bartok  <pbartok@novell.com> 
10783         * Control.cs: Undid 54254 (causing XConfigure errors) so we can
10784           have a working release
10786 2005-12-13  Jackson Harper  <jackson@ximian.com>
10788         * Form.cs: Update styles after setting the border style regardless
10789         of whether or not the window is using a window manager.
10791 2005-12-13  Jackson Harper  <jackson@ximian.com>
10793         * Form.cs: We now hook into an internal window manager instead of just an
10794         MDI subsystem, this is so we can have properly behaving tool windows.
10795         * MdiClient.cs: Naming change, MdiChildContext is now WindowManager
10796         * InternalWindowManager.cs: New internal class that acts as a
10797         window manager for tool windows and as a base for mdi windows.
10798         * MdiWindowManager.cs: New class that acts as a window manager for
10799         mdi windows.
10801 2005-12-12  Jackson Harper  <jackson@ximian.com>
10803         * Control.cs: Updates so we match behavoir for for implicit
10804         controls. Fixes explosions in MDI.
10806 2005-12-12  Jackson Harper  <jackson@ximian.com>
10808         * Control.cs: Implement Invalidate (Region).
10810 2005-12-12  Peter Dennis Bartok  <pbartok@novell.com> 
10812         * Control.cs: 
10813           - Changed handling of Controls.Add/Controls.Remove to fire (almost) 
10814             the same events as MS does. MS fires events for each property 
10815             except, for unknown reasons, Cursor, when the control is reparented. 
10816             I can't seem to totally match add/remove since MS also fires some 
10817             VisibleChanged events, which makes no sense. Consolidated the
10818             parenting code into a separate method so it can be called from
10819             both Add and Remove. set_Parent no longer needs any special logic
10820             as it calls the parent's add method which implicitly fires
10821             all events
10822           - Removed some obsolete code and debug output
10823           - Enabled state is inherited from parents, if this is enabled
10825 2005-12-08  Peter Dennis Bartok  <pbartok@novell.com> 
10827         * Form.cs: Removed commented out code
10829 2005-12-08  Peter Dennis Bartok  <pbartok@novell.com>
10831         * Control.cs:
10832           - Added internal version of Invoke, with additional argument 
10833             indicating if we're calling it from a Dispose() handler. That
10834             way we can avoid BeginInvoke throwing an exception if we're
10835             calling for an already destroyed window.
10836           - Added a dispose argument to BeginInvokeInternal, and made the
10837             check if a valid window handle chain exists conditional on
10838             it not being a dispose call
10839           - Removed code in DestroyHandle to destroy our children. Since we
10840             now handle the WM_DESTROY message we will catch all our children
10841             being destroyed.
10842           - Now calling OnHandleDestroyed from our new WM_DESTROY handler
10843         * Form.cs:
10844           - Added a field to track the application context of the form.
10845           - No need to set closing variable as response to WM_CLOSE, instead
10846             we destroy the window. We also call PostQuitMessage if the form
10847             has an application context (which makes it the main app form,
10848             which, when closed terminates the app)
10849         * XplatUI.cs:
10850           - Dropped Exit() method, it's naming was confusing
10851           - Added PostQuitMessage() which causes GetMessage to return false
10852             once the message queue is empty
10853         * XplatUIDriver.cs, XplatUIWin32.cs: Dropped Exit(), added 
10854           PostQuitMessage()
10855         * XplatUIOSX.cs: Switched signature for Exit method since Exit() is
10856           no longer a valid XplatUI method, but left it in since it's used
10857           internally. Added empty PostQuitMessage() method.
10858         * MenuAPI.cs: Replaced call to Exit() with call to
10859           PostQuitMessage, even though this is probably no longer needed.
10860         * Hwnd.cs: Added 'pretty' ToString() to support debugging.
10861         * X11Structs.cs: Added pretty XEvent.ToString() to support debugging.
10862         * Application.cs:
10863           - Replaced call to XplatUI.Exit() with PostQuitMessage()
10864           - Removed old debug code that would call XplatUI for exception
10865             display, enabled standard exception handling (Still not enabled
10866             though, until NativeWindow's ExternalExceptionHandler define
10867             is removed
10868         * NativeWindow.cs:
10869           - Added internal method to allow control to update NativeWindow
10870             after a window has been destroyed
10871           - Added handling of already destroyed windows when calling i
10872             DestroyWindow
10873           - Added removal of handle from list on ReleaseHandle
10874         * XplatUIX11.cs:
10875           - Dropped GetMessageResult var and related code
10876           - Added PostQuitState to field to track if PostQuitMessage has been
10877             called
10878           - Dropped Exit() method
10879           - Added PostQuitMessage() method
10880           - GetMessage now will return false if PostQuitState is set and no
10881             more messages are in the queue.
10882           - Expose handler will no longer generate WM_PAINT messages if we are
10883             in PostQuitState since it's very likely any windows have already
10884             been destroyed, and since Hwnd won't get updated until we have
10885             processed the DestroyNotify we'd be causing X errors.
10886         
10887 2005-12-07  Peter Dennis Bartok  <pbartok@novell.com>
10889         * Control.cs(WndProc): Apparently I'm suffering from brain cloud.
10890           Thanks to Mike for pointing out the err of my ways.
10892 2005-12-07  Peter Dennis Bartok  <pbartok@novell.com>
10894         * Control.cs(PreProcessMessage): Moved menu handling back, but
10895           after all other key handling, to match MS (who handles Menu in
10896           DefWndProc)
10897         * Menu.cs (WndProc): Removed my brainfart
10899 2005-12-07  Peter Dennis Bartok  <pbartok@novell.com>
10901         * Control.cs(PreProcessMessage): Removed special menu handling 
10902         * Menu.cs (WndProc): Added handling of WM_SYSKEYUP for menu purposes.
10904 2005-12-07  Mike Kestner  <mkestner@novell.com>
10906         * Control.cs : special case SYSKEYUP so that we can adjust keynav
10907         state according in tracker.
10908         * Menu.cs : promote tracker field to base class and provide a tracker
10909         lookup capability.  Add/Remove shortcuts dynamically if the top menu
10910         has a tracker. Unparent items that are removed from the collection.
10911         * MenuAPI.cs : implement mnemonic, shortcut, and arrow-based keynav.
10912         * Theme*.cs: add always_show_hotkeys field to support configurability
10913         of mnemonic display.  win32 doesn't show mnemonics until Alt is
10914         pressed.
10916 2005-12-07  Jackson Harper  <jackson@ximian.com>
10918         * MdiChildContext.cs: Use Control.ResetCursor.
10919         * Control.cs: ResetCursor needs to set the property so that the
10920         correct XplatUI call gets made.
10922 2005-12-07  Peter Dennis Bartok  <pbartok@novell.com>
10924         * Control.cs: More fixes to make our key events match MS. We
10925           were not setting the modifier state on KeyData, and we were
10926           not generating any events when Alt was pressed with a key
10927           since handling of WM_SYSxxx was missing for the OnKey methods.
10929 2005-12-07  Jackson Harper  <jackson@ximian.com>
10931         * MdiChildContext.cs: reenable the sizing code.
10932         - When the mouse leaves a window reset its cursor.
10934 2005-12-07  Alexander Olk  <alex.olk@googlemail.com>
10936         * ThemeClearlooks.cs: Reflect latest Hwnd changes
10938 2005-12-07  Peter Dennis Bartok  <pbartok@novell.com>
10940         * Hwnd.cs: Now using the theme 3d bordersize to calculate
10941           widths of Fixed3D borders
10943 2005-12-07  Jackson Harper  <jackson@ximian.com>
10945         * MdiClient.cs: Fix warnings. Earn Mike's love.
10947 2005-12-07  Alexander Olk  <alex.olk@googlemail.com>
10949         * ThemeClearlooks.cs:
10950           - Adjusted mouse over button color
10951           - Added first parts of CheckBox drawing
10952           - Added correct color for selected text background
10953           - Fixed ComboBox drawing
10954           - Added CPDrawBorder3D and CPDrawBorder
10956 2005-12-06  Peter Dennis Bartok  <pbartok@novell.com>
10958         * XplatUIX11.cs: Added call to XBell for AudibleAlert
10960 2005-12-06  Peter Dennis Bartok  <pbartok@novell.com> 
10962         * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs, XplatUIWin32.cs,
10963           XplatUIOSX.cs: Added AudibleAlert() method to have a means to
10964           alert users via sound. We could add an enum arg with different
10965           types of alerts in the future
10967 2005-12-06  Peter Dennis Bartok  <pbartok@novell.com>
10969         * Control.cs: Fix behaviour problems pointed out by Mike
10971 2005-12-05  Mike Kestner  <mkestner@novell.com>
10973         * StatusBarPanel.cs: add Invalidate method and hook it into all the
10974         prop setters.  Calls parent.Refresh for now, but could be maybe be
10975         optimized with an internal method on StatusBar at some point.
10976         [Fixes #76513]
10978 2005-12-05  Peter Dennis Bartok  <pbartok@novell.com> 
10980         * RichTextBox.cs: Implemented get_SelectionColor
10982 2005-12-05  Alexander Olk  <alex.olk@googlemail.com>
10984         * ThemeClearlooks.cs:
10985           - Removed dead code
10986           - Draw black button border only if button is Form.AcceptButton
10987           - Draw correct button color for pressed RadioButton if the mouse 
10988             has entered the button
10989           - Updated ProgressBar drawing!
10990           - Updated CPDrawSizeGrip drawing
10991           - Updated StatusBarPanel drawing
10993 2005-12-05  Mike Kestner  <mkestner@novell.com>
10995         * Control.cs (PreProcessMessage): add Keys.Alt based on LParam value.
10996         * X11Keyboard.cs (SendKeyboardInput): formal lParam for alt mod.
10998 2005-12-04  Alexander Olk  <alex.olk@googlemail.com>
11000         * ThemeClearlooks.cs: Initial check-in, activate with
11001           export MONO_THEME=clearlooks
11002         * ThemeEngine.cs: Added ThemeClearlooks
11004 2005-12-03  Mike Kestner  <mkestner@novell.com>
11006         * MenuAPI.cs: deactivate menus prior to calling item.PerformClick.
11007         [Fixes #76897]
11009 2005-12-02  Jackson Harper  <jackson@ximian.com>
11011         * Form.cs: If the child form has no menu the default main menu is
11012         used as the active menu.
11014 2005-12-02  Peter Dennis Bartok  <pbartok@novell.com> 
11016         * ListBox.cs: Check if any items exist before trying to resolve 
11017           coordinates into items
11019 2005-12-02  Peter Dennis Bartok  <pbartok@novell.com>
11021         * ThemeWin32Classic.cs: Hatchbrush on Win32 seems to always use white
11022           as the second color for the background hatch
11024 2005-12-02  Peter Dennis Bartok  <pbartok@novell.com>
11026         * TextBoxBase.cs: Now uses Jackson's new and improved ImplicitScrollbar
11027         * RichTextBox.cs: FormatText position arguments are 1-based, now making
11028           sure that what we pass to FormatText is always 1-based. Fixes #76885
11030 2005-11-29  Miguel de Icaza  <miguel@novell.com>
11032         * NumericUpDown.cs (EndInit): When we are done initializing,
11033         reflect any updates on the UI.
11035 2005-12-02  Jackson Harper  <jackson@ximian.com>
11037         * ImplicitHScrollBar.cs:
11038         * ImplicitVScrollBar.cs: New scrollbars that don't take focus from
11039         their container controls.
11040         * TreeView.cs: Use the new implicit scrollbars.
11042 2005-12-02  Jackson Harper  <jackson@ximian.com>
11044         * TreeView.cs: Make top_node internal so the TreeNodeCollections
11045         can play with it.
11046         * TreeNodeCollection.cs: If we remove the topnode we need to
11047         update topnode to the next node in line.
11048         - When clearing nodes go through the same process as removing
11049         them, so they get depareneted and checked if they are top node.
11051 2005-12-01  Jackson Harper  <jackson@ximian.com>
11053         * TreeView.cs: When imagelists are used the image area is
11054         selectable as well as the text.
11055         - If there are no selected nodes select the first one.
11056         * TreeNodeCollection.cs: Getting the TreeView is mildly expensive,
11057         so don't do it more then we need to.
11059 2005-12-01  Jackson Harper  <jackson@ximian.com>
11061         * ThemeWin32Classic.cs: Reimplement the scroll arrow drawing so
11062         that arrows can be scaled.
11064 2005-12-01  Jackson Harper  <jackson@ximian.com>
11066         * TreeNode.cs : Fixed bugs that caused FullPathTest + Traverse to
11067         fail. Patch by Dieter Bremes
11069 2005-11-30  Jackson Harper  <jackson@ximian.com>
11071         * Form.cs: Property is 2.0 only
11072         * PrintDialog.cs: Signature fix.
11074 2005-11-30  Peter Dennis Bartok  <pbartok@novell.com>
11076         * TextControl.cs: 
11077           - No longer artificially moves text 2 pixels down (now that we have
11078             borders this is no longer needed)
11079           - Added calcs for left, hanging and right indent
11081 2005-11-23  Mike Kestner  <mkestner@novell.com>
11083         * Menu.cs: mark MenuChanged internal, since it's not exposed by MS.
11085 2005-11-30  Jackson Harper  <jackson@ximian.com>
11087         * MdiChildContext.cs: Set the cloned menus forms, as these don't
11088         get cloned as part of CloneMenu ().
11089         * Menu.cs: Make sure the parent of the items get set correctly
11090         when they are added.  And the owners are notified of the changes.
11091         * Form.cs: Create an ActiveMenu property, so that when MDI is used
11092         we can change the menu being displayed/handled by the form without
11093         changing the menu assosciated with the form.
11094         - Don't let Mdi children draw/handle menus.
11095         
11096 2005-11-30  Jackson Harper  <jackson@ximian.com>
11098         * Menu.cs: Switch the MenuChanged method to OnMenuChanged and add
11099         a MenuChanged event. Just to make the API a little more
11100         consistent.
11101         * MainMenu.cs:
11102         * MenuItem.cs: Use the new OnMenuChanged
11103         * MdiChildContext.cs: Handle menu merging.
11104         * Form.cs: Implement MergedMenu.
11105         
11106 2005-11-30  Jackson Harper  <jackson@ximian.com>
11108         * Menu.cs: We were misusing Add. Add goes behind the specified
11109         index according to the docs, and does not replace the specified
11110         index. So I added an Insert method.
11112 2005-11-30  Peter Dennis Bartok  <pbartok@novell.com>
11114         * TextBoxBase.cs:  Implemented Ctrl-Ins (Copy), Shift-Ins (Paste) and
11115           Shift-Del (Cut), apparently Emacs uses these old Win 2.x keys. This
11116           is for Jackson
11117         * RichTextBox.cs: Added calls to base for DnD events
11119 2005-11-28  Peter Dennis Bartok  <pbartok@novell.com>
11121         * TextControl.cs:
11122           - Fixed drag-selection related crash; style fixes
11123           - Implemented undo class
11124             o Implemented method to capture document state for specified
11125               range in document tree
11126             o Implemented method to restore captured document state
11127             o Implemented cursor tracking
11128             o Implemented basic undo stack
11129           - Added undo cursor tracking to methods altering cursor location
11130           - Added undo tracking to selection deletion (still missing
11131             other text-altering hookups)
11132         * RichTextBox.cs:
11133           - Added SelectionLength property
11134           - Implemented CanPaste()
11135           - Implemented Paste()
11136           - Added missing protected methods
11137           - Fixed RTF->Document conversion; now uses font index 0 and color 
11138             index 0 as the default font for the parsed text
11139           - Fixed RTF<->Document font size translation
11140           - Fixed RTF generation, now properly handles cross-tag boundaries
11141             for single line selection
11142           - No longer always appends blank line to generated RTF
11143           - Removed TODOs
11144           - Added missing attributes
11145           - Hooked up undo-related methods
11146         * TextBoxBase.cs:
11147           - Implemented Copy()
11148           - Implemented Paste()
11149           - Implemented Cut()
11150           - Fixed caret mis-behaviour on backspace across line-boundaries
11152 2005-11-29  Jackson Harper  <jackson@ximian.com>
11154         * MdiClient.cs: Add a method for activating mdi children. Very
11155         basic right now. I imagine someday it might need more girth.
11156         * MenuItem.cs: Implement MDI lists. When mdilist is true the mdi
11157         children windows names are added to the menu item.
11158         * ThemeWin32Classic.cs: Draw the arrow if the item is an
11159         mdilist. This happens regardless of whether or not there are any
11160         mdi windows to see in the list, and according to my tests happens
11161         before the items are even added. Also happens if there isn't even
11162         an mdi client to get windows from.
11164 2005-11-29  Alexander Olk  <alex.olk@googlemail.com>
11166         * ThemeWin32Classic.cs: Make DrawFlatStyleRadioButton protected
11167         * ThemeNice.cs: Fix drawing of flatstyle radiobuttons
11169 2005-11-29  Jordi Mas i Hernandez <jordimash@gmail.com>
11171         * DataGridTableStyle.cs:
11172           - Create always the styles for the missing columns even if they are
11173             provided by the user (not default table style)
11174         * DataGrid.cs:
11175           - Fixes bug 76770
11176           - Fixes SetDataBinding (always re-attach source)
11177           - Fixes SetNewDataSource (only clear styles if they are not for 
11178             this source)
11179          -  Expands OnTableStylesCollectionChanged to handle style refresh 
11180             and remove properly
11182 2005-11-29  Jackson Harper  <jackson@ximian.com>
11184         * FileDialog.cs: Implement missing bits, remove some dead
11185         code.
11186         * FontDialog.cs: Implement missing Apply stuff, and ToString. Move
11187         creation of the panel so that the options set on the dialog are
11188         seen when the panel is created.
11189         * TreeView.cs: raise a click when items are clicked.
11190         
11191 2005-11-29  Jackson Harper  <jackson@ximian.com>
11193         * MdiClient.cs: Pass some signature methods through to base.
11195 2005-11-28  Jackson Harper  <jackson@ximian.com>
11197         * ListView.cs: Raise the click event when items are clicked.
11199 2005-11-28  Jackson Harper  <jackson@ximian.com>
11201         * MdiClient.cs: Make this algorithm even more beautiful.  And fix
11202         a nullref.
11204 2005-11-27  Alexander Olk  <alex.olk@googlemail.com>
11206         * ThemeNice.cs: - Removed 1 pixel bitmaps
11207           - Use SmoothingMode.AntiAlias where it makes sense
11208             (ScrollButton arrow for example)
11209           - Enhanced Button focus drawing
11210           - Fixed ComboBox drawing (no artefacts anymore, focus
11211             rectangle is back again, reduced size of ComboButton, etc.)
11212           - Fixed RadioButton focus drawing for Appearence.Button
11213           - Slight ScrollButton redesign
11214           - Some LinearGradientBrush size fixes
11215           - GroupBoxes have now rounded edges
11216           - Fixed StatusBar drawing
11218 2005-11-25  Alexander Olk  <alex.olk@googlemail.com>
11220         * ThemeNice.cs: - Remove dead code
11221           - use correct background colors for menus, etc.
11222           - Fake pixel drawing with 1 pixel bitmaps
11224 2005-11-24  Jackson Harper  <jackson@ximian.com>
11226         * MdiClient.cs: Size the scrollbars when resizing the window.
11227         - Resize the maximized windows when the client is resized
11228         * Form.cs: Make the child context available
11229         
11230 2005-11-23  Jackson Harper  <jackson@ximian.com>
11232         * MdiChildContext.cs: Don't size windows if they are maximized.
11234 2005-11-23  Mike Kestner  <mkestner@novell.com>
11236         * ContextMenu.cs: use MenuTracker.
11237         * Control.cs: remove menu handle usage.
11238         * Form.cs: remove menu handle usage.
11239         * Hwnd.cs: remove menu handle usage.
11240         * MainMenu.cs: Draw method moved here from MenuAPI.DrawMenuBar. Proxy
11241         motion and clicks to the new Tracker handlers.
11242         * Menu.cs: add sizing accessors, SelectedItem prop, kill CreateItems
11243         and handle usage.
11244         * MenuAPI.cs: refactored to combine popup and menubar event handling.
11245         Killed the MENU and MENUITEM data types and associated collections
11246         since we now keep the info on Menu and MenuItem. Expanded TRACKER into
11247         MenuTracker class that exposes the leftovers from the old MenuAPI
11248         static methods. Restructured Capture handling so that only one grab is
11249         done for the entire menu hierarchy instead of handing off grabs to
11250         submenus. Tracker now has an invisible control to Capture when active.
11251         * MenuItem.cs: add sizing accessors, kill Create
11252         and handle usage.
11253         * Theme.cs: remove menu handle and MENU(ITEM) usage.
11254         * ThemeWin32Classic.cs: use Menu/MenuItem sizing props instead of
11255         MENU(ITEM). remove menu handle usage, use Menu directly.
11256         * XplatUIDriver.cs: remove menu handle usage.
11257         * XplatUIOSX.cs: remove menu handle usage.
11258         * XplatUIWin32.cs: remove menu handle usage.
11259         * XplatUIX11.cs: remove menu handle usage.
11261 2005-11-22  Jackson Harper  <jackson@ximian.com>
11263         * Hwnd.cs: Don't compute the menu size for
11264         DefaultClientRectangle.
11265         - Reenable menu sizes being computed for GetClienRectangle.
11266         * Form.cs: Remove comment of trechery
11267         
11268 2005-11-22  Jackson Harper  <jackson@ximian.com>
11270         * Hwnd.cs: The adjustments for the menu bar are made when it is
11271         attached to the form.
11273 2005-11-19  Jackson Harper  <jackson@ximian.com>
11275         * XplatUIX11.cs: Create an HGRN of the invalid area for WM_NCPAINT
11276         (just like on windows).
11278 2005-11-19  Jackson Harper  <jackson@ximian.com>
11280         * MdiChildContext.cs: Handle all the buttons ourselves. We can't
11281         use real buttons anymore because they are in non client area. The
11282         one TODO here is that I need to somehow invalidate a section of
11283         the non client area.
11285 2005-11-18  Jackson Harper  <jackson@ximian.com>
11287         * Control.cs: Put the enum check back in now that MDI doesnt have
11288         to use this to set border styles.
11289         * Form.cs: Only set mdi child windows borders if the handle has
11290         been created.
11291         * MdiChildContext.cs: Don't set the InternalBorderStyle, just pass
11292         this directly on to the driver.
11293         - Get the move start position before adjusting for the titlebar
11294         height, this fixes the windows "skipping" when they are first
11295         moved.
11297 2005-11-18  Jackson Harper  <jackson@ximian.com>
11299         * XplatUIX11.cs: Just compute the mdi borders separately as they
11300         don't totally match up with normal form borders.
11302 2005-11-18  Jackson Harper  <jackson@ximian.com>
11304         * Control.cs: Set WS_ styles for borders, so that the driver does
11305         not have to retrieve the control instance to figure out what kind
11306         of borders it should have.
11307         * Form.cs: Set the WS_EX_MDICHILD flag on mdi children, so the
11308         driver can know its an mdi child easily.
11309         * XplatUIX11.cs: Get the border styles and whether the window is
11310         MDI from the Styles and ExStyles params instead of having to get a
11311         control. This prevents a chicken and egg problem.       
11313 2005-11-18  Jackson Harper  <jackson@ximian.com>
11315         * MdiClient.cs: Fix typo so scrollbars show up correctly.
11317 2005-11-18  Jackson Harper  <jackson@ximian.com>
11319         * MdiClient.cs: Calculate when to add and remove scrollbars
11320         correctly.
11321         * MdiChildContext.cs: Adjust the y position to take the titlebar
11322         into account.
11323         - No height for FormBorderStyle.None
11325 2005-11-18  Jackson Harper  <jackson@ximian.com>
11327         * Control.cs: Allow non enum values to be used for
11328         InternalBorderStyle.  MDI does this to set a special border style.
11329         - New utility methods for converting points to/from client coords
11330         - Add the newly created control to the Controls collection before
11331         updating its style. This way UpdateStyle can walk the control
11332         heirarchy to find the control if needed.
11333         so I don't need to create a new Point object all the time.
11334         * Form.cs: Let MDI windows handle their border styles.
11335         - Set styles on MDI windows so the correct title style is derived.
11336         * MdiChildContext.cs: Move all the painting and window handling
11337         into the non client area.
11338         - Use correct sizing and put correct buttons on frames based on
11339         the FormBorderStyle.
11340         - Notify the mdi client about scrolling
11341         - Need to handle the buttons ourselves now, because they are all
11342         in non client areas and we can't add controls there.
11343         * MdiClient.cs: Halfway to scrolling, this implementation is
11344         somewhat broken though, we need to check to make sure other
11345         windows aren't causing scrolling before removing the bars. Also
11346         the bars need to be drawn on top, maybe I can switch implicit
11347         controls to be on top.
11348         * Hwnd.cs: caption_height and tool_caption_height are now
11349         properties of an hwnd, this way they can be set by the driver
11350         based on the type of window they are.  In X11 the window manager
11351         handles the decorations so caption_height is zero unless its an
11352         MDI window.
11353         - Add 3 pixel borders for MDI windows (0xFFFF).
11354         - Get rid of some code duplication, have DefaultClientRectanle
11355         just call GetClientRectangle.
11356         * XplatUIX11.cs: Pass caption_height and tool_caption_height to
11357         Hwnd now.
11358         - Set border styles differently for mdi windows.
11359         * XplatUIOSX.cs: Pass caption_height and tool_caption_height to
11360         Hwnd now.
11361         
11362 2005-11-15  Mike Kestner  <mkestner@novell.com>
11364         * Menu.cs: when adding an item to the collection, if item is already 
11365         parented, remove it from the parent.
11367 2005-11-13  Alexander Olk  <alex.olk@googlemail.com>
11369         * X11DesktopColors.cs: Added KDE support
11371 2005-11-11  Peter Dennis Bartok  <pbartok@novell.com>
11373         * XplatUIWin32.cs: 
11374           - Clipboard methods now can translate Rtf format
11375           - No longer removes clipboard contents whenever a new format is added
11376             to allow placing multiple formats on the clipboard
11377         * Clipboard.cs: Clipboard now supports getting a IDataObject and
11378           will place all formats contained in it onto the clipboard. Also
11379           now cleans the clipboard before placing a new object onto it
11380         * RichTextBox.cs:
11381           - Implemented set_Rtf
11382           - Implemented set_SelectedRtf
11383           - Created InsertRTFFromStream() method to allow single code base
11384             for all properties and methods that insert RTF into document
11385           - Removed debug output
11386         * TextControl.cs:
11387           - Fixed Delete(int) to fix up line numbers
11388           - Fixed ReplaceSelection to combine start and end line
11389           - Fixed serious DeleteChars bug that would leave the document tree
11390             broken
11391           - Improved DumpTree with several logic checks to detect broken
11392             document trees
11393           - Removed debug lines
11394           - Fixed Caret.WordForward/WordBack moving code, now always also 
11395             updates caret.tag (fixes crash when word-selecting across tag
11396             boundaries via keyboard)
11397           - Added Insert() method for inserting multiline text into documents
11398           - Fixed DeleteChars() calculation errors that would cause a broken
11399             tag chain with multiple tag lines
11400           - DeleteChars() no longer crashes on multi-tag lines if not all tags
11401           - Split() no longer moves caret if split is at caret location
11402           - ReplaceSelection() now updates the cursor and re-displays it
11403           - ReplaceSelection() now uses new Insert() method to avoid code
11404             duplication
11405           - FormatText() can now handle formatting partial lines
11406         * TextBoxBase.cs:
11407           - Append now uses new TextControl.Insert() method (this avoids 
11408             duplicate code)
11409           - Implemented Ctrl-X (Cut) (
11410           - Implemented Ctrl-C (Copy)
11411           - Implemented Ctrl-V (Paste) (Still some bugs related to screen 
11412             regeneration when pasting text; roundtripping Copy&Paste within
11413             edit control still fails due to some calculation bugs in GenerateRTF)
11414           - The Delete key will now remove the current selection if it is visible
11415         * TextBox.cs: Removed debug lines
11416         * XplatUI.cs: Trigger initialization of DataFormats (which requires the
11417           driver to be initialized and can't therefore be done via a static ctor)
11419 2005-11-10  Peter Dennis Bartok  <pbartok@novell.com>
11421         * TextControl.cs: Added backend code for finding char arrays and strings
11422         * TextBoxBase.cs:
11423           - Added mouse wheel scroll support
11424           - Added support for VScroll and HScroll events
11425         * RichTextBox.cs:
11426           - Implemented all seven Find() variants
11427           - Implemented GetCharFromPosition()
11428           - Implemented GetCharIndexFromPosition()
11429           - Implemented GetLineFromIndex()
11430           - Implemented GetPositionFromCharIndex();
11431           - Implemented SaveFile for PlainText and UnicodeText
11432           - Fixed set_Font, now setting a new font applies that font to
11433             the whole document
11434           - Implemented generic Document to RTF converter
11435           - Implemented SaveFile for RichText format (still missing unicode
11436             conversion for non-ansi chars)
11437           - Implemented get_Rtf
11438           - Implemented get_SelectedRtf
11440 2005-11-09  Peter Dennis Bartok  <pbartok@novell.com>
11442         * Control.cs (WndProc): Call HandleClick after having sent OnMouseUp
11443           to allow any captures to be released before triggering OnClick. This
11444           way a click handler may capture the mouse without interference.
11445         * XplatUIX11.cs: Always send mouse messages to grab window if one exists.
11446           This way we send them even though X may not allow a grab (if the window
11447           isn't visible, for example)
11449 2005-11-08  Pedro Martinez Julia <pedromj@gmail.com>
11451         * DataGridViewRowEventArgs.cs: DataGridView implementation
11452         * DataGridViewElement.cs: DataGridView implementation
11453         * DataGridViewComboBoxCell.cs: DataGridView implementation
11454         * DataGridViewDataErrorContexts.cs: DataGridView implementation
11455         * DataGridViewCellErrorTextNeededEventArgs.cs: DataGridView implementation
11456         * DataGridViewColumnHeadersHeightSizeMode.cs: DataGridView implementation
11457         * ImageLayout.cs: DataGridView implementation
11458         * DataGridViewComboBoxColumn.cs: DataGridView implementation
11459         * DataGridViewCellMouseEventHandler.cs: DataGridView implementation
11460         * DataGridViewSelectionMode.cs: DataGridView implementation
11461         * IDataGridViewEditingControl.cs: DataGridView implementation
11462         * DataGridViewSortCompareEventHandler.cs: DataGridView implementation
11463         * DataGridViewCellStyleContentChangedEventHandler.cs: DataGridView implementation
11464         * DataGridViewAutoSizeModeEventHandler.cs: DataGridView implementation
11465         * DataGridViewColumnStateChangedEventHandler.cs: DataGridView implementation
11466         * DataGridViewColumnSortMode.cs: DataGridView implementation
11467         * DataGridView.cs: DataGridView implementation
11468         * DataGridViewRowStateChangedEventHandler.cs: DataGridView implementation
11469         * DataGridViewRowPostPaintEventArgs.cs: DataGridView implementation
11470         * DataGridViewDataErrorEventArgs.cs: DataGridView implementation
11471         * Padding.cs: DataGridView implementation
11472         * DataGridViewCellParsingEventArgs.cs: DataGridView implementation
11473         * DataGridViewCellStateChangedEventHandler.cs: DataGridView implementation
11474         * DataGridViewRowEventHandler.cs: DataGridView implementation
11475         * DataGridViewCellPaintingEventHandler.cs: DataGridView implementation
11476         * DataGridViewCellFormattingEventHandler.cs: DataGridView implementation
11477         * DataGridViewButtonCell.cs: DataGridView implementation
11478         * DataGridViewCellStyleContentChangedEventArgs.cs: DataGridView implementation
11479         * DataGridViewEditMode.cs: DataGridView implementation
11480         * DataGridViewCellValueEventArgs.cs: DataGridView implementation
11481         * DataGridViewRowCancelEventArgs.cs: DataGridView implementation
11482         * DataGridViewRowHeadersWidthSizeMode.cs: DataGridView implementation
11483         * DataGridViewCheckBoxColumn.cs: DataGridView implementation
11484         * DataGridViewCellToolTipTextNeededEventHandler.cs: DataGridView implementation
11485         * DataGridViewAutoSizeColumnsMode.cs: DataGridView implementation
11486         * DataGridViewCellEventHandler.cs: DataGridView implementation
11487         * DataGridViewEditingControlShowingEventHandler.cs: DataGridView implementation
11488         * DataGridViewCellStyleConverter.cs: DataGridView implementation
11489         * DataGridViewSelectedRowCollection.cs: DataGridView implementation
11490         * DataGridViewBindingCompleteEventHandler.cs: DataGridView implementation
11491         * DataGridViewColumnEventArgs.cs: DataGridView implementation
11492         * DataGridViewRowHeightInfoPushedEventHandler.cs: DataGridView implementation
11493         * DataGridViewRowContextMenuStripNeededEventHandler.cs: DataGridView implementation
11494         * QuestionEventArgs.cs: DataGridView implementation
11495         * IDataGridViewEditingCell.cs: DataGridView implementation
11496         * DataGridViewTriState.cs: DataGridView implementation
11497         * DataGridViewColumnDesignTimeVisibleAttribute.cs: DataGridView implementation
11498         * DataGridViewCellStateChangedEventArgs.cs: DataGridView implementation
11499         * DataGridViewColumnCollection.cs: DataGridView implementation
11500         * DataGridViewCellValueEventHandler.cs: DataGridView implementation
11501         * DataGridViewRowDividerDoubleClickEventHandler.cs: DataGridView implementation
11502         * DataGridViewCellFormattingEventArgs.cs: DataGridView implementation
11503         * DataGridViewColumn.cs: DataGridView implementation
11504         * DataGridViewCellBorderStyle.cs: DataGridView implementation
11505         * DataGridViewCellContextMenuStripNeededEventHandler.cs: DataGridView implementation
11506         * DataGridViewCellValidatingEventArgs.cs: DataGridView implementation
11507         * DataGridViewRow.cs: DataGridView implementation
11508         * DataGridViewImageCellLayout.cs: DataGridView implementation
11509         * DataGridViewImageCell.cs: DataGridView implementation
11510         * DataGridViewTopLeftHeaderCell.cs: DataGridView implementation
11511         * DataGridViewCheckBoxCell.cs: DataGridView implementation
11512         * DataGridViewHeaderCell.cs: DataGridView implementation
11513         * DataGridViewCellErrorTextNeededEventHandler.cs: DataGridView implementation
11514         * DataGridViewRowHeightInfoPushedEventArgs.cs: DataGridView implementation
11515         * DataGridViewAutoSizeColumnsModeEventHandler.cs: DataGridView implementation
11516         * DataGridViewTextBoxColumn.cs: DataGridView implementation
11517         * QuestionEventHandler.cs: DataGridView implementation
11518         * DataGridViewCellStyleScopes.cs: DataGridView implementation
11519         * DataGridViewSortCompareEventArgs.cs: DataGridView implementation
11520         * DataGridViewCellContextMenuStripNeededEventArgs.cs: DataGridView implementation
11521         * DataGridViewCell.cs: DataGridView implementation
11522         * DataGridViewCellEventArgs.cs: DataGridView implementation
11523         * DataGridViewClipboardCopyMode.cs: DataGridView implementation
11524         * DataGridViewCellStyle.cs: DataGridView implementation
11525         * DataGridViewColumnHeaderCell.cs: DataGridView implementation
11526         * DataGridViewRowPrePaintEventHandler.cs: DataGridView implementation
11527         * DataGridViewRowCancelEventHandler.cs: DataGridView implementation
11528         * TextFormatFlags.cs: DataGridView implementation
11529         * DataGridViewCellToolTipTextNeededEventArgs.cs: DataGridView implementation
11530         * DataGridViewDataErrorEventHandler.cs: DataGridView implementation
11531         * DataGridViewAdvancedCellBorderStyle.cs: DataGridView implementation
11532         * DataGridViewCellPaintingEventArgs.cs: DataGridView implementation
11533         * DataGridViewButtonColumn.cs: DataGridView implementation
11534         * DataGridViewRowsRemovedEventArgs.cs: DataGridView implementation
11535         * HandledMouseEventArgs.cs: DataGridView implementation
11536         * DataGridViewCellParsingEventHandler.cs: DataGridView implementation
11537         * DataGridViewColumnDividerDoubleClickEventHandler.cs: DataGridView implementation
11538         * DataGridViewCellMouseEventArgs.cs: DataGridView implementation
11539         * DataGridViewAutoSizeRowsMode.cs: DataGridView implementation
11540         * DataGridViewRowCollection.cs: DataGridView implementation
11541         * DataGridViewAdvancedBorderStyle.cs: DataGridView implementation
11542         * DataGridViewCellCancelEventHandler.cs: DataGridView implementation
11543         * DataGridViewHitTestType.cs: DataGridView implementation
11544         * DataGridViewAutoSizeModeEventArgs.cs: DataGridView implementation
11545         * DataGridViewColumnStateChangedEventArgs.cs: DataGridView implementation
11546         * DataGridViewColumnEventHandler.cs: DataGridView implementation
11547         * DataGridViewRowDividerDoubleClickEventArgs.cs: DataGridView implementation
11548         * DataGridViewAutoSizeRowMode.cs: DataGridView implementation
11549         * DataGridViewRowHeightInfoNeededEventArgs.cs: DataGridView implementation
11550         * DataGridViewRowsDeletedEventArgs.cs: DataGridView implementation
11551         * DataGridViewTextBoxEditingControl.cs: DataGridView implementation
11552         * DataGridViewContentAlignment.cs: DataGridView implementation
11553         * DataGridViewRowPostPaintEventHandler.cs: DataGridView implementation
11554         * DataGridViewComboBoxEditingControl.cs: DataGridView implementation
11555         * DataGridViewCellValidatingEventHandler.cs: DataGridView implementation
11556         * DataGridViewSelectedColumnCollection.cs: DataGridView implementation
11557         * DataGridViewPaintParts.cs: DataGridView implementation
11558         * DataGridViewCellCollection.cs: DataGridView implementation
11559         * DataGridViewRowsAddedEventArgs.cs: DataGridView implementation
11560         * DataGridViewImageColumn.cs: DataGridView implementation
11561         * DataGridViewRowsRemovedEventHandler.cs: DataGridView implementation
11562         * DataGridViewElementStates.cs: DataGridView implementation
11563         * DataGridViewRowHeightInfoNeededEventHandler.cs: DataGridView implementation
11564         * DataGridViewColumnDividerDoubleClickEventArgs.cs: DataGridView implementation
11565         * DataGridViewRowPrePaintEventArgs.cs: DataGridView implementation
11566         * DataGridViewRowStateChangedEventArgs.cs: DataGridView implementation
11567         * DataGridViewEditingControlShowingEventArgs.cs: DataGridView implementation
11568         * DataGridViewCellCancelEventArgs.cs: DataGridView implementation
11569         * DataGridViewRowHeaderCell.cs: DataGridView implementation
11570         * DataGridViewBindingCompleteEventArgs.cs: DataGridView implementation
11571         * DataGridViewTextBoxCell.cs: DataGridView implementation
11572         * DataGridViewBand.cs: DataGridView implementation
11573         * DataGridViewAutoSizeColumnModeEventArgs.cs: DataGridView implementation
11574         * DataGridViewHeaderBorderStyle.cs: DataGridView implementation
11575         * DataGridViewRowsAddedEventHandler.cs: DataGridView implementation
11576         * DataGridViewAutoSizeColumnMode.cs: DataGridView implementation
11577         * DataGridViewAutoSizeColumnModeEventHandler.cs: DataGridView implementation
11578         * DataGridViewAutoSizeColumnsModeEventArgs.cs: DataGridView implementation
11579         * DataGridViewRowErrorTextNeededEventHandler.cs: DataGridView implementation
11580         * DataGridViewSelectedCellCollection.cs: DataGridView implementation
11581         * DataGridViewRowContextMenuStripNeededEventArgs.cs: DataGridView implementation
11582         * DataGridViewRowErrorTextNeededEventArgs.cs: DataGridView implementation
11583         * DataGridViewComboBoxDisplayStyle.cs: DataGridView implementation
11585 2005-11-08  Peter Dennis Bartok  <pbartok@novell.com>
11587         * ThemeWin32Classic.cs: 
11588           - Draw the outside focus rectangle around buttons
11589           - Use CPDrawFocusRectangle to draw focus rectangles until Cairo
11590             doesn't use end caps for every dash of a line anymore. This
11591             workaround ignores the forecolor.
11593 2005-11-08  Kornél Pál  <kornelpal@hotmail.com>
11595         * ImageList.cs: Don't use ArgbColor with LayoutKind.Explicit as it isn't
11596           endian safe.
11598 2005-11-07  Jackson Harper  <jackson@ximian.com>
11600         * X11Dnd.cs: Set the X/Y positions on the DragEventArgs correctly.
11602 2005-11-07  Jackson Harper  <jackson@ximian.com>
11604         * ScrollableControl.cs: Calculate the maximum and change vars
11605         (more) correctly so that scrollbars appear as a sensible size.
11607 2005-11-04  Jackson Harper  <jackson@ximian.com>
11609         * TreeNodeCollection.cs: Refresh when nodes are cleared from the
11610         collection.
11611         * TreeView.cs: When the tree is sorted null out the top_node so
11612         that it is recalculated.
11613         - Use dotted lines instead of dashed lines to match MS better.
11615 2005-11-04  Jordi Mas i Hernandez <jordimash@gmail.com>
11617         * ListView.cs: 
11618           - Implements key search for items. Useful when browsing files with FileDialog
11619           - When changing view mode or when clear the items reset scrollbar positions
11621 2005-11-04  Jackson Harper  <jackson@ximian.com>
11623         * CurrencyManager.cs: Implement the MetaDataChanged event, the
11624         Reset method, and the CheckEmpty. CheckEmpty is just a total guess
11625         as to what the method may do as there is no real way of creating a
11626         derived CurrencyManager and calling the method. 
11628 2005-11-03  Jackson Harper  <jackson@ximian.com>
11630         * ThemeWin32Classic.cs: Implement ownerdrawing in the tab control
11631         * TabControl.cs: Add Ownerdrawing bits, add the UpdateTabSelection
11632         method which seems to just be used internally to refresh the tabs.
11634 2005-11-03  Jackson Harper  <jackson@ximian.com>
11636         * TabControl.cs: Implement the remove method. Fix some broken
11637         comments.
11639 2005-11-03  Peter Dennis Bartok  <pbartok@novell.com>
11641         * DateTimePicker.cs:
11642           - Added missing DateTimePickerAccessibleObject class
11643           - Added missing events
11644           - Added OnFontChanged method
11645         * Form.cs: Added missing attributes
11646         * TreeView.cs: Added missing attributes
11648 2005-11-03  Peter Dennis Bartok  <pbartok@novell.com> 
11650         * GridItemCollection.cs: Fix signatures
11652 2005-11-03  Peter Dennis Bartok  <pbartok@novell.com>
11654         * XplatUI.cs: Updated build rev/date
11655         * ComboBox.cs, DataGridTextBoxColumn.cs Control.cs, 
11656           DataGridTableStyle.cs, DataGrid.cs, DateTimePicker.cs: Signature fixes
11657         * Application.cs: Trigger context-specific ExitThread events
11659 2005-11-03  Jackson Harper  <jackson@ximian.com>
11661         * Menu.cs:
11662         * MainMenu.cs:
11663         * GridTableStylesCollection.cs:
11664         * Timer.cs:
11665         * TabPage.cs:
11666         * HelpProvider.cs:
11667         * StatusBar.cs:
11668         * MonthCalendar.cs: Signature fixes
11670 2005-11-03  Jackson Harper  <jackson@ximian.com>
11672         * TreeNodeCollection.cs: Remove should not be virtual.
11673         * TreeView.cs: Implement the last of the missing methods.
11675 2005-11-03  Jackson Harper  <jackson@ximian.com>
11677         * TreeNodeConverter.cs: Implement to get off my class-status back.
11679 2005-11-03  Jackson Harper  <jackson@ximian.com>
11681         * TreeView.cs: Hookup the bits for drag and drop.
11682         * TreeNode.cs: Don't cache the tree_view or index anymore, now
11683         that nodes can be moved from tree to tree easily this just causes
11684         all sorts of problems.
11685         * TreeNodeCollection: Don't need to give treenodes an index and
11686         treeview anymore when they are added, these are computed on the
11687         fly. Also make sure to remove a node before its added.
11689 2005-11-03  Peter Dennis Bartok  <pbartok@novell.com>
11691         * TextControl.cs:
11692           - Added CaretSelection enum
11693           - Added comparison methods to Marker struct, makes selection code
11694             more readable
11695           - Added SelectionStart and SelectionEnd as 'moveable' location for
11696             the CaretDirection enum and handler
11697           - Added selection_prev variable to track optimized invalidation for
11698             word and line selection
11699           - Added SelectionVisible property (returns true if there is a valid 
11700             selection)
11701           - Switched CaretHasFocus to only display the caret if there is no
11702             visible selection
11703           - Avoiding StringBuilder.ToString to retrieve a single char, instead
11704             using the direct character index; should be much faster
11705           - Added various conditional debug statements
11706           - Fixed invalidation calculation for selection ranges
11707           - Added ExpandSelection() method to support word and line selection
11708           - Switched SetSelectionToCaret to use new Marker compare overloads
11709           - Added central IsWordSeparator() method to determine word 
11710             separators/whitespace and FindWordSeparator() to streamline common
11711             usage of IsWordSeparator()
11712         * TextBoxBase.cs:
11713           - Removed unneeded grabbed variable, it was just mirroring
11714             Control.Capture
11715           - No longer firing OnTextChanged event when Text setter is called,
11716             since the base will fire the event for us
11717           - Added handling of Ctrl-Up/Down selection
11718           - Added handling of Shift-Cursorkey selection
11719           - Added handling for Ctrl-Delete and Ctrl-Backspace to remove
11720             words
11721           - Added handling of Shift and Ctrl-Shift-Home/End selection
11722           - Removed some debug output
11723           - Added handling for single/double/tripple-click to place caret/
11724             select word/select line respectively (Fixes bug #76031)
11725           - Added support for drag expansion of word/line selection
11726         * RichTextBox.cs: Handle GotFocus event to trigger redrawing of
11727           current selection
11729 2005-11-02  Jackson Harper  <jackson@ximian.com>
11731         * X11Dnd.cs: If the drag is going to and from a MWF window just
11732         copy the data instead of sending it out through the X Selection
11733         mechanism.
11735 2005-11-02  Jackson Harper  <jackson@ximian.com>
11737         * X11Dnd.cs:
11738         * XplatUIX11.cs: When in a drag we don't want motion notify
11739         messages to get passed on to the other controls. This prevents
11740         mouse move messages from showing up in the drag source.
11742 2005-11-02  Jackson Harper  <jackson@ximian.com>
11744         * X11Dnd.cs: Remove unneeded call to XAllowEvents.  Make sure that
11745         the correct button is release to end a drag.
11746         * XplatUIX11.cs: Make the button state internal so the drag system
11747         can access it.  Dragging needs to know about all button releases,
11748         not just left button.
11750 2005-11-02  Miguel de Icaza  <miguel@novell.com>
11752         * Form.cs (Icon): If the icon is null, reset the icon to the
11753         default value. 
11755         * Cursor.cs: When writing the AND-mask bitmap do not include the
11756         number of colors, but hardcode those to two (black and white),
11757         fixes the loading of color cursors (Paint Dot Net).
11759         * Form.cs: To debug, allow MONO_MWF_SCALING=disable variable to
11760         turn off autoscaling.
11762         * Cursor.cs: Allow resource type to be 1 or 2 (from ImageMagic).
11764 2005-11-02  Jackson Harper  <jackson@ximian.com>
11766         * X11Dnd.cs: Make sure to send a status message if the pointer
11767         enters a control that can not accept a drop, otherwise the cursor
11768         isn't updated correctly. Also tried to compress the lines of code
11769         a bit.
11771 2005-11-02  Jackson Harper  <jackson@ximian.com>
11773         * X11Dnd.cs: Change cursors based on drag action. Also attempt to
11774         set actions correctly.  This isn't perfect as XDND and win32 have
11775         some differences on how you allow actions. I'll clear this up by
11776         adding a path for drag from MWF to MWF windows.
11777         * XplatUIX11.cs: Hook into the dnd system.
11779 2005-11-02  Jordi Mas i Hernandez <jmas@softcatala.org>
11781         * ListView.cs: Fixes scroll bar visibility. Hide them if they were
11782         previously shown but they are no longer need it. Very obvious when 
11783         browsing files with FileDialog.
11785 2005-11-01  Peter Dennis Bartok  <pbartok@novell.com>
11787         * Control.cs: We always need to call OnPaintBackground. We pretty much
11788           ignore AllPaintingInWmPaint and always do the painting there, whether 
11789           it's set or not, since we always ignore the WM_ERASEBKGND message 
11790           (which we don't generate on X11). This fixes #76616.
11791         * Panel.cs: Removed unneeded background painting. This happens properly
11792           in Control.cs already
11794 2005-10-31  Mike Kestner  <mkestner@novell.com>
11796         * Menu.cs: Add items to collection before setting their index.
11797         * MenuItem.cs : add range checking with ArgumentException like MS.
11798         [Fixes #76510]
11800 2005-10-31  Jackson Harper  <jackson@ximian.com>
11802         * ListBox.cs: Invalidate if the area is visible at all not just
11803         contained in the visible rect. Fixes unselection of semi visible
11804         items.
11806 2005-10-31  Jackson Harper  <jackson@ximian.com>
11808         * Control.cs: Consistently name the dnd methods. Make them
11809         internal so we can override them to match some MS behavoir
11810         internally.
11811         * Win32DnD.cs: Use the new consistent names.
11813 2005-10-31  Jackson Harper  <jackson@ximian.com>
11815         * TreeView.cs: Don't draw the selected node when we lose focus.
11817 2005-10-31  Jackson Harper  <jackson@ximian.com>
11819         * X11Dnd.cs: We still need to reset the state even though a full
11820         reset isn't being done, otherwise status's still get sent all over
11821         the place.
11823 2005-10-31  Jackson Harper  <jackson@ximian.com>
11825         * Control.cs: Make the dnd_aware flag internal so the dnd
11826         subsystem can check it. Catch exceptions thrown in dnd handlers to
11827         match MS behavoir.
11828         * Hwnd.cs: Add a flag for whether or not a window is dnd aware.
11829         * X11Dnd.cs: Handle null data in the converters. Set the XDND
11830         version when sending a XdndEnter. Use the control/hwnd dnd_aware
11831         flags to reduce the number of dnd enters/status's sent.
11833 2005-10-31  Jackson Harper  <jackson@ximian.com>
11835         * X11Dnd.cs: Don't need the sizeof here. Patch by Jordi Mas.
11837 2005-10-31  Jordi Mas i Hernandez <jordi@ximian.com>
11839         * PictureBox.cs: Fixes 76512
11841 2005-10-28  Jackson Harper  <jackson@ximian.com>
11843         * X11Dnd.cs: Early implementation to support winforms being a drag
11844         source for data on X11. Also restructured the converters so they
11845         can go both ways now.
11846         * XplatUIX11.cs: Tie ins to the the Dnd stuff.
11847         
11848 2005-10-27  Peter Dennis Bartok  <pbartok@novell.com>
11850         * XplatUIX11.cs: Fixed FIXME - implemented ASCII encoding for XA_STRING
11851           clipboard requests
11853 2005-10-27  Jackson Harper  <jackson@ximian.com>
11855         * TreeNode.cs: Implement serialization so my DnD examples will work.
11857 2005-10-24  Kornél Pál  <kornelpal@hotmail.com>
11859         * ButtonBase.cs, ListView.cs, NotifyIcon.cs, PictureBox.cs, ToolBar.cs,
11860           TreeView.cs: Don't dispose objects that are not owned.
11861           
11862 2005-10-24  Peter Dennis Bartok  <pbartok@novell.com>
11864         * Cursor.cs: Defaulting the Current cursor to Cursors.Default. We
11865           should retrieve the current cursor and report that, but XplatUI
11866           doesn't (yet) have an interface for that (and I'm not sure I even
11867           can, on X11)
11868         * XplatUIWin32.cs: Fixed override behaviour. The override is temporary,
11869           until any message loop processing is done (and the WM_SETCURSOR
11870           replaces the cursor to the proper one)
11871         * XplatUIX11.cs: 
11872           - Fixed override behaviour, we can't set the cursor globally on X11, 
11873             just for our windows.
11874           - Invalidating the System.Drawing X11 display handle when we are
11875             shutting down
11876         * Control.cs: Fix to make csc happy
11878 2005-10-23  Peter Dennis Bartok  <pbartok@novell.com>
11880         * TextBoxBase.cs: 
11881           - get_Text: Add last line (without trailing newline) to returned
11882             value (Fixes 76212)
11883           - get_TextLength: Count last line in returned length
11884           - ToString: Call Text property instead of duplicating code
11886 2005-10-23  Kornél Pál  <kornelpal@hotmail.com>
11888         * ImageList.cs: Dispose ImageAttributes objects.
11890 2005-10-22  Kornél Pál  <kornelpal@hotmail.com>
11892         * ImageList.cs: Use attribute constructors with less arguments where
11893           possible.
11895 2005-10-22  Kornél Pál  <kornelpal@hotmail.com>
11897         * ImageList.cs: Added lastKeyIndex field and use in IndexOfKey.
11898           Use typeof instead of strings when assembly is referenced. Added
11899           some more comments.
11901 2005-10-21  Jackson Harper  <jackson@ximian.com>
11903         * ListView.cs: Raise a double click event. Also tried to somewhat
11904         fix when the selectedindexchanged event is raised. Its still
11905         broken though.
11907 2005-10-21  Jackson Harper  <jackson@ximian.com>
11909         * TreeView.cs: New method to invalidate the plus minus area of a
11910         node without invalidating the whole node (maybe this can be used
11911         in some more places).
11912         * TreeNodeCollection.cs: When adding to an empty node we need to
11913         invalidate its plus minus area so the little block shows up.
11914         
11915 2005-10-21  Jackson Harper  <jackson@ximian.com>
11917         * TreeView.cs: Make sure that when we invalidate a node the bounds
11918         are big enough to cover the selected box and the focus
11919         rectangle. Use a different colour for the lines connecting nodes
11920         so they show up with all themes.
11922 2005-10-21  Peter Dennis Bartok  <pbartok@novell.com>
11924         * NativeWindow.cs: Don't call anything that could call into the driver,
11925           we might be on a different thread.
11927 2005-10-21  Peter Dennis Bartok  <pbartok@novell.com> 
11929         * Control.cs(Dispose): Since Dispose might run on a different thread,
11930           make sure that we call methods that could call into the driver via
11931           invoke, to avoid thread issues
11933 2005-10-21  Peter Dennis Bartok  <pbartok@novell.com>
11935         * XplatUI.cs: Removed finalizer
11936         * XplatUIX11.cs: Removed Destructor, was causing crashes due to X11
11937           not allowing to be called on the finalizer thread.
11939 2005-10-21  Kornél Pál  <kornelpal@hotmail.com>
11941         * ImageList.cs:
11942           - Reverted r51889 and r51891.
11943           - Added ImageListItem class that stores unmodified image items and image
11944             properties required to create list images until handle is created.
11945           - Added AddItem and moved image creation logic to AddItemInternal.
11946           - Added CreateHandle method that creates images based on unmodified items.
11947           - Added DestroyHandle that changes state to store unmodified items.
11948           - Add and AddStrip methods no more create handle.
11949           - ReduceColorDepth has no return value.
11950           - Dispose destroys handle.
11951           - Modified other methods to reflect the above changes.
11952           - Implemented key support.
11953           - Added profile 2.0 members and attributes.
11954           - Added private Reset and ShouldSerialize methods that provide the same
11955             behavior as MS.NET but the Visual Studio .NET designer seems to ignore
11956             them as they are private.
11957           - Added some more comments about implementation details.
11959 2005-10-21  Jordi Mas i Hernandez <jordi@ximian.com>
11961         * DataGrid.cs: Adds support for vertical scrolling using the mousewheel
11963 2005-10-21  Jordi Mas i Hernandez <jordi@ximian.com>
11965         * Binding.cs: No PushData/PullData if there is no binding (fixes crash)
11967 2005-10-21  Jordi Mas i Hernandez <jordi@ximian.com>
11969         * DataGridDrawingLogic.cs: Fixes column hit calcultation
11970         * DataGridColumnStyle.cs: Remove debug message
11972 2005-10-20  Jackson Harper  <jackson@ximian.com>
11974         * TreeView.cs: We can always get input keys regardless of whether
11975         or not editing is enabled. They are used for navigation.
11977 2005-10-20  Jackson Harper  <jackson@ximian.com>
11979         * TreeNode.cs: Use the viewport rect for determining if a node
11980         needs to be moved for visibility. Don't use Begin/End edit. This
11981         calls a full refresh when its done.
11982         * TreeView.cs: New SetBottom works correctly.  Make the viewport
11983         rect property internal so the treenodes can see it. When clicking
11984         on a node we need to ensure that its visible because it might just
11985         be partly visible when clicked.
11987 2005-10-20  Jackson Harper  <jackson@ximian.com>
11989         * TreeNodeCollection.cs: Remove debug code.
11991 2005-10-20  Jordi Mas i Hernandez <jordi@ximian.com>
11993         * Datagrid.cs: Implements column sorting in Datagrid
11994         * DataGridColumnStyle.cs: Implements column sorting in Datagrid
11996 2005-10-20  Jackson Harper  <jackson@ximian.com>
11998         * TreeNodeCollection.cs: Remove items properly. Update the correct
11999         area after removing them.
12001 2005-10-20  Jordi Mas i Hernandez <jordi@ximian.com>
12003         * Datagrid.cs: Should not call base.OnPaintBackground
12005 2005-10-20  Peter Dennis Bartok  <pbartok@novell.com>
12007         * XplatUIX11.cs (GetMessage):
12008           - Now properly calculates NC_xBUTTONDOWN coordinates off the whole
12009             window instead of client window
12010           - Now properly calculates NC_xBUTTONUP message coordinates
12011           - ScreenToMenu now properly calculates it's coordinates of whole 
12012             window, since menus are in the whole window, not in the client
12013             window
12014           - Added WholeToScreen coordinate translation method
12016 2005-10-20  Peter Dennis Bartok  <pbartok@novell.com> 
12018         * XplatUIX11.cs (GetMessage): Don't return in situations where we don't
12019           want to return a message, loop back to the beginning of the function
12020           and grab the next real message to process instead.
12022 2005-10-20  Peter Dennis Bartok  <pbartok@novell.com>
12024         * Splitter.cs: Properly set limits if no filler control is used
12026 2005-10-19  Jackson Harper  <jackson@ximian.com>
12028         * ColorDialog.cs: Don't show the help button if it is not enabled
12029         instead of disabling it (this is what MS does). Don't create the
12030         panel until the dialog is run, otherwise the vars (such as
12031         ShowHelp) are not set yet.
12033 2005-10-19  Jackson Harper  <jackson@ximian.com>
12035         * TreeView.cs: Implement Begin/EndEdit more correctly so refreshes
12036         are reduced when adding nodes.
12037         * TreeNode.cs:
12038         * TreeNodeCollection.cs: Use UpdateNode instead of refreshing the
12039         tree.
12040         
12041 2005-10-19  Jackson Harper  <jackson@ximian.com>
12043         * FolderBrowserDialog.cs: End editing our treeview so the window
12044         actually gets refreshed.
12046 2005-10-18  Peter Dennis Bartok  <pbartok@novell.com>
12048         * Control.cs: Fixed logic flip on when to call OnPaintBackground. 
12049           Obsoleted handling of WM_ERASEBKGND, now always draws our background
12050           inside of WM_PAINT
12052 2005-10-18  Jordi Mas i Hernandez <jordi@ximian.com>
12054         * MenuAPI.cs: Returns after Hidding window
12055         * XplatUIX11.cs: Added TODO found while debugging menu issues
12057 2005-10-18  Peter Dennis Bartok  <pbartok@novell.com>
12059         * XplatUIX11.cs: Do not re-map the whole window when it's size
12060           becomes non-zero unless it's supposed to be actually visible
12062 2005-10-18  Jackson Harper  <jackson@ximian.com>
12064         * TreeView.cs: We don't need to keep a count anymore.
12065         * TreeNodeCollection.cs: Fix off by one in RemoveAt, Insert can
12066         use the Grow method.
12068 2005-10-18  Jackson Harper  <jackson@ximian.com>
12070         * TreeNodeCollection.cs: Insert is not supported on arrays, so
12071         implement it manually here.
12073 2005-10-18  Jackson Harper  <jackson@ximian.com>
12075         * ImageList.cs: Dont kill the list when the colour depth is
12076         changed, just change the colour depth of all the images.
12077         - Same goes for setting the image size. Just resize them all
12078         instead of killing the list softly.
12080 2005-10-18  Jackson Harper  <jackson@ximian.com>
12082         * Control.cs: Don't invalidate empty rectangles.
12084 2005-10-18  Jordi Mas i Hernandez <jordi@ximian.com>
12086         * ListViewItem.cs:
12087           - Adds checked item to the Checked/Item lists (where empty before)
12088           - Do not add items to the Selected lists if they are already present
12089         * ListView.cs:
12090           - Fixes IsFixedSize, SyncRoot, IsReadOnly in many collections
12091           - When deleting items make sure that we delete them for the Selected
12092           and Checked list also.
12094 2005-10-18  Jordi Mas i Hernandez <jordi@ximian.com>
12096         * Label.cs: Dispose objects no longer used
12097         * ThemeWin32Classic.cs: Dispose objects no longer used
12099 2005-10-18  Jackson Harper  <jackson@ximian.com>
12101         * TabControl.cs: Don't refresh the whole control when the tabs are
12102         scrolled, we just need to refresh the tab area.
12104 2005-10-17  Jackson Harper  <jackson@ximian.com>
12106         * XplatUIX11.cs: Compress code a little bit. Only calculate the
12107         after handle when we need it.
12109 2005-10-17  Peter Dennis Bartok  <pbartok@novell.com>
12111         * Control.cs: When the parent size changes, recalculate anchor 
12112           positions. Partial fix for #76462
12114 2005-10-17  Peter Dennis Bartok  <pbartok@novell.com>
12116         * ThemeWin32Classic.cs: Make sure the picturebox has it's background 
12117           drawn. Fixes #76462
12119 2005-10-17  Jackson Harper  <jackson@ximian.com>
12121         * MonthCalendar.cs: Don't create the numeric up down until our
12122         handle is created. Otherwise our handle is created in the
12123         constructor and we don't know if we are a WS_CHILD or WS_POPUP
12124         yet.
12126 2005-10-17  Jackson Harper  <jackson@ximian.com>
12128         * TreeView.cs: Merge in patch by Rafael Teixeira to align strings
12129         correctly.
12131 2005-10-17  Rafael Teixeira <rafaelteixeirabr@hotmail.com> 
12132         * TreeNode.cs : small logical fix (was using local var instead of field)
12133         
12134 2005-10-17  Jordi Mas i Hernandez <jordi@ximian.com>
12136         * ThemeWin32Classic.cs: Fixes vert/horz scrollbar colours
12138 2005-10-17  Jordi Mas i Hernandez <jordi@ximian.com>
12140         * ThemeWin32Classic.cs: Fixes focus drawing in for non-flat/popup buttons
12142 2005-10-16  Peter Dennis Bartok  <pbartok@novell.com> 
12144         * Control.cs: 
12145           - Re-implemented anchoring code. My first version was really broken.
12146             This fixes bug #76033. Unlike the previous implementation we will
12147             no longer have round errors since all numbers are calculated from
12148             scratch every time. Removed various anchor-related obsolete vars.
12149           - InitLayout no longer causes layout event firing and layout to be 
12150             performed
12152 2005-10-16  Jackson Harper  <jackson@ximian.com>
12154         * Hwnd.cs: Compute invalid area correctly (fixes my last commit
12155         which was broken).
12157 2005-10-16  Jackson Harper  <jackson@ximian.com>
12159         * TabControl.cs: Remove debug code.
12161 2005-10-16  Jackson Harper  <jackson@ximian.com>
12163         * XEventQueue.cs: Increase the default queue size (very simple
12164         apps needed to grow the queue).
12165         * Hwnd.cs: No finalizer so we don't need to suppress
12166         finalization. Compute the invalid area manually so a new rectangle
12167         does not newto be created.
12168         * ScrollableControl.cs: Don't set any params (otherwise visibility
12169         isn't set correctly).
12170         * MdiChildContext.cs: New constructor takes the mdi parent so it
12171         doesn't have to be computed and avoids a crash on windows. Draw
12172         the window icon properly, and allow the text to be seen.
12173         * Form.cs: Use new MdiChildContext constructor. Make sure the
12174         child context isn't null in wndproc.
12175         * TabControl.cs: Don't set focus, this is muddling keyboard
12176         behavoir. Expand the tab rows when a window size increase will
12177         allow extra tabs to be seen. Don't allow tabs smaller than the
12178         width of a window to be scrolled out of view.
12179         * TreeNode.cs:
12180         * TreeView.cs: Use measure string to calculate a nodes width, the
12181         width is cached and only updated when the text or the font is
12182         changed. Don't check for expand/collapse clicks on the first level
12183         nodes if root lines are disabled.
12184         
12185 2005-10-16  Ritvik Mayank  <mritvik@novell.com>
12187         * TextBoxBase.cs: Fixes #76352 (passing tab key in a multiline textbox)
12189 2005-10-16  Jordi Mas i Hernandez <jordi@ximian.com>
12191         * DataGridBoolColumn.cs: fixes warning
12193 2005-10-16  Jordi Mas i Hernandez <jordi@ximian.com>
12195         * ControlPaint.cs: Fixes methods Dark, DarkDark, Light, LightLight
12196         to match more to match more precisely the MS Net behavior
12198 2005-10-13  Peter Dennis Bartok  <pbartok@novell.com> 
12200         * Hwnd.cs: Added field to track if window is mapped
12201         * XplatUIX11.cs: 
12202           - Unmap windows if they become 0-size, re-map when 
12203             they are >0 again; fixes #76035
12204           - Re-set our error handler after initializing X11Desktop
12205             to override any error handlers Gtk or whatever was called
12206             may have set.
12208 2005-10-13  Peter Dennis Bartok  <pbartok@novell.com> 
12210         * CheckedListBox.cs: Removed unused vars
12211         * ListView.cs: Fixed signatures
12212         * RichTextBox.cs: Removed unused vars
12213         * TextBoxBase.cs: Removed unused vars
12214         * XplatUIWin32.cs: Removed unused vars
12215         * XplatUIX11.cs: Removed unused vars
12216         * XplatUI.cs: Updated version and date to latest published
12218 2005-10-13  Peter Dennis Bartok  <pbartok@novell.com>
12220         * Cursor.cs: Added private .ctor to work around a bug in
12221           resourceset (Thanks to Geoff Norton for the help on this)
12222         * SplitterEventArgs.cs: Made fields accessible so we don't
12223           waste boatloads of objects and can reuse the same one
12224           in Splitter
12225         * XplatUIWin32.cs(DrawReversibleLine): Now also considers
12226           any captions and borders when generating screen coordinates
12227         * Splitter.cs: Reimplemented control, now fully complete, uses
12228           rubberband drawing, supports and obeys all properties, has
12229           proper cursors
12231 2005-10-13  Miguel de Icaza  <miguel@novell.com>
12233         * Form.cs (Form): Setup default values for autoscale and
12234         autoscale_base_size;  Make these instance variables, not static
12235         variables. 
12237         (OnLoad): on the first load, adjust the size of the form.
12239 2005-10-13  Peter Dennis Bartok  <pbartok@novell.com>
12241         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs: Added 
12242           width argument to DrawReversibleRectangle()
12243         * XplatUIWin32.cs, XplatUIX11.cs: 
12244           - Implemented width for DrawReversibleRectangle()
12245           - Added logic to DrawReversibleRectangle that recognizes a zero
12246             width or height and only draws a line in that situation
12247         
12248 2005-10-12  Peter Dennis Bartok  <pbartok@novell.com> 
12250         * XplatUI.cs, XplatUIDriver.cs: Added GetAutoScaleSize()
12251         * XplatUIOSX.cs: Stubbed GetAutoScaleSize() method
12252         * XplatUIWin32.cs, XplatUIX11.cs: Implemented GetAutoScaleSize()
12253           method (it uses our FosterParent window to get a graphics context)
12255 2005-10-12  Peter Dennis Bartok  <pbartok@novell.com>
12257         * XplatUI.cs, XplatUIDriver.cs: Removed EraseWindowBackground 
12258           and SetWindowBackground methods
12259         * Control.cs:
12260           - Setting proper ControlStyles
12261           - We no longer call XplatUI.SetWindowBackground and XplatUI.
12262             EraseWindowBackground, instead we draw the window background
12263             ourselves in PaintControlBackground. This behaviour is
12264             required to match MS, where, when OnPaintBackground is not
12265             called, the background is not drawn.
12266           - Removed unneeded Refresh() in set_Text
12267         * Hwnd.cs: Dropped the ErasePending support. No longer needed
12268         * XplatUIX11.cs:
12269           - Created DeriveStyles method to translate from CreateParams to
12270             FormBorderStyle and TitleStyle, also handles BorderStyle (which
12271             matches FormBorderStyle enum values)
12272           - Consolidated SetHwndStyles and CalculateWindowRect border/title
12273             style calculations into single DeriveStyles method
12274           - Fixed CreateWindow to (finally) use Gravity. This prevents X11
12275             from redrawing the whole window on any resize or expose.
12276           - Fixed CreateWindow usage of SetWindowValuemask. Before not
12277             all styles were applied to our whole/client window appropriately
12278           - Removed EraseWindowBackground() and SetWindowBackground() methods
12279           - Removed handling of WM_ERASEBKGND message from DefWndProc, we
12280             no longer clear/redraw the background through X
12281           - Removed handling of erase_pending bit, we have no use for it (or
12282             so it seems)
12283         * XplatUIOSX.cs:
12284           - Removed generation and handling of WM_ERASEBKGND message
12285           - Removed EraseWindowBackground() and SetWindowBackground() methods
12286           - Removed handling of hwnd.ErasePending flag
12287         * XplatUIWin32.cs:
12288           - Removed EraseWindowBackground() and SetWindowBackground() methods
12289           - We no longer call EraseWindowBackground on PaintEventStart, we 
12290             ignore the fErase flag, erasing is handled in Control in the
12291             background handler
12292         * Button.cs, GroupBox.cs, Label.cs, CheckBox.cs, ProgressBar.cs,
12293           LinkLabel.cs, ListControl.cs, TabPage.cs, UpDownBase.cs,
12294           TextBoxBase.cs, TextBox.cs, ListView.cs, ButtonBase.cs, 
12295           CheckedListBox.cs, MdiClient.cs, Panel.cs, DataGrid.cs, 
12296           DataGridTextBox.cs, ScrollBar.cs, ListBox.cs, TrackBar.cs, 
12297           TabControl.cs, ScrollableControl.cs, ToolBar.cs, PictureBox.cs,
12298           DateTimePicker.cs, StatusBar.cs, MonthCalendar.cs: Setting proper ControlStyles
12300 2005-10-12  Jonathan Chambers <jonathan.chambers@ansys.com>
12302         * PropertyGrids.cs: Get sub properties
12303         * PropertyGridView.cs: Fix drawing code
12305 2005-10-11  Jordi Mas i Hernandez <jordi@ximian.com>
12307         * ListBox.cs: Fixes 76383
12309 2005-10-11  Jordi Mas i Hernandez <jordi@ximian.com>
12311         * DataGridTextBoxColumn.cs: Sets location and size before attachment
12312         * ThemeWin32Classic.cs: Fixes border drawing and calculations
12313         * DataGridDrawingLogic.cs: Fixes border drawing and calculations
12316 2005-10-11  Jordi Mas i Hernandez <jordi@ximian.com>
12318         * ComboBox.cs: Fixes border drawing
12320 2005-10-10  Miguel de Icaza  <miguel@novell.com>
12322         * MimeIcon.cs: Ignore errors if the file can not be read.
12324 2005-10-11  Jordi Mas i Hernandez <jordi@ximian.com>
12326         * Theme.cs, ThemeWin32Classic.cs, ListBox.cs:
12327          - Fixed border calculations
12328          - Fixed horizontal scrolling in single column listboxes
12329          - Fixed drawing issues
12331 2005-10-10  Peter Dennis Bartok  <pbartok@novell.com>
12333         * XplatUI.cs, XplatUIOSX.cs, XplatUIWin32.cs: Switched from BorderStyle to 
12334           FormBorderStyle enum
12335         * XplatUIX11.cs: Switched BorderStyle to FormBorderStyle, added 
12336           code to determine FormBorderStyles from CreateParams
12337         * Form.cs:
12338           - Fixed bug where we'd set the wrong window styles if we were
12339             not creating an MDI window
12340           - Added call to XplatUI.SetBorderStyle when form borders are set
12341         * Control.cs: Casting BorderStyles to accommodate changed XplatUI APIs
12342         * Hwnd.cs:
12343           - Removed obsolete edge style
12344           - Switched from BorderStyle to FormBorderStyle
12345         
12346 2005-10-10  Jackson Harper  <jackson@ximian.com>
12348         * Form.cs: Use the property to get the window handle instead of
12349         accessing it directly. Prevents a null reference exception.
12351 2005-10-10  Jackson Harper  <jackson@ximian.com>
12353         * TreeView.cs: Don't adjust the rect given to DrawString now that
12354         our libgdiplus draws correctly.
12356 2005-10-08  Jackson Harper  <jackson@ximian.com>
12358         * TreeView.cs: Don't try to find the clicked on node if there are
12359         no nodes in the tree.
12361 2005-10-08  Alexander Olk  <alex.olk@googlemail.com>
12363         * RichTextBox.cs:
12365           restore
12367 2005-10-08  Alexander Olk  <alex.olk@googlemail.com>
12369         * ImageListStreamer.cs, TreeView.cs, UpDownBase.cs, RichTextBox.cs,
12370           ColorDialog.cs, TextControl.cs, Panel.cs, MdiChildContext.cs,
12371           ErrorProvider.cs:
12372           Use ResPool for brushes and dispose System.Drawing objects that
12373           are not used anymore.
12375 2005-10-07  Jackson Harper  <jackson@ximian.com>
12377         * MdiChildContext.cs: Use the new borders instead of drawing them
12378         ourselves.
12380 2005-10-06  Jordi Mas i Hernandez <jordi@ximian.com>
12382         * Calling UpdateBounds after changing the window's BorderStyle 
12383         since the style can change the ClientSize
12385 2005-10-06  Peter Dennis Bartok  <pbartok@novell.com>
12387         * Control.cs: Made PaintControlBackground virtual
12388         * Panel.cs: Overriding PaintControlBackground instead of using paint
12389           event; paint event method was interfering with 'real' users of the
12390           event.
12392 2005-10-06  Jordi Mas i Hernandez <jordi@ximian.com>
12394         * ThemeWin32Classic.cs: remove border drawing since it is handled
12395         by the base control class now and was causing double border drawing.
12397 2005-10-06  Peter Dennis Bartok  <pbartok@novell.com>
12399         * Panel.cs: Redraw our background on paint. Not a pretty solution,
12400           but it does seem to match MS behaviour. This fixes bug #75324
12402 2005-10-06  Peter Dennis Bartok  <pbartok@novell.com>
12404         * XplatUIX11.cs: A better DrawReversibleRectangle version, however
12405           somewhat hackish looking
12407 2005-10-06  Peter Dennis Bartok  <pbartok@novell.com> 
12409         * TextBoxBase.cs:
12410           - We now accept Enter even if AcceptEnter is false, if the containing
12411             form does not have an AcceptButton configured (fixes bug #76355)
12412           - Calculations are now fixed to no longer use Width/Height, but
12413             ClientSize.Width/Height, since we now support borders (this was
12414             a result of fixing borders and therefore bug #76166)
12415           - We no longer show the horizontal scrollbar if TextBox.WordWrap is 
12416             true (fixes bug #76354)
12417         
12418 2005-10-06  Peter Dennis Bartok  <pbartok@novell.com>
12420         * Control.cs: 
12421           - Defaulting BorderStyle and setting it in XplatUI when our window 
12422             is created
12423           - Added enum check to InternalBorderStyle setter
12424         * XplatUIX11.cs: 
12425           - Added drawing of window borders
12426           - Now properly calculates WM decorations offset for toplevel 
12427             windows (fixes bug #74763)
12428         * XplatUIWin32.cs: 
12429           - Implemented BorderStyles for windows (we're letting win32 draw 
12430             the border for us)
12431           - Fixed the signature for SetWindowLong
12432         * PictureBox.cs, DataGrid.cs, TextBoxBase.cs, ToolBar.cs, Panel.cs,
12433           ListBox.cs, Label.cs: Now uses Control.InternalBorderStyle for 
12434           setting borders
12435         * UpDownBase.cs: Remove drawing of borders, this is handled by
12436           the driver, outside the client area
12437         * ListView.cs: Removed bogus border calculations. The control should
12438           be oblivious to borders, since those are not part of the client
12439           area. 
12440         * X11DesktopColors.cs: Commented out (currently) unneeded variables
12441         * ThemeWin32Classic.cs: Removed border calculations from ListView 
12442           drawing code
12444 2005-10-06  Jackson Harper  <jackson@ximian.com>
12446         * MdiChildContext.cs: Clear out the old virtual position remove
12447         all the unneeded calls to CreateGraphics.
12449 2005-10-06  Peter Dennis Bartok  <pbartok@novell.com> 
12451         * TextControl.cs: Use proper color for highlighted text; fixes #76350
12453 2005-10-06  Peter Dennis Bartok  <pbartok@novell.com> 
12455         * Form.cs: 
12456           - Added loading and setting of our new default icon
12457           - Only set icon if window is already created
12459 2005-10-06  Peter Dennis Bartok  <pbartok@novell.com>
12461         * Label.cs:
12462           - Do not explicitly set the foreground and background colors, to
12463             allow inheriting from parents (fixes #76302)
12464           - Use Control's InternalBorderStyle property to deal with borders
12466 2005-10-06  Jackson Harper  <jackson@ximian.com>
12468         * MdiChildContext.cs: Use the new xplatui function to draw a
12469         reversible rect.
12471 2005-10-06  Jackson Harper  <jackson@ximian.com>
12473         * Form.cs: Add the parent before creating the child context cause
12474         we need the parent when setting up the child.
12476 2005-10-06  Jackson Harper  <jackson@ximian.com>
12478         * FolderBrowserDialog.cs: redo the tree population code so a
12479         second thread isn't used. Should be a lot faster and more stable
12480         now.
12482 2005-10-05  Jackson Harper  <jackson@ximian.com>
12484         * TreeView.cs: There are no expand/collapse boxes if the node has
12485         no children.
12487 2005-10-05  Jackson Harper  <jackson@ximian.com>
12489         * X11DesktopColors.cs: Get menu colours for the gtk theme.
12491 2005-10-05  Alexander Olk  <alex.olk@googlemail.com>
12493         * FileDialog.cs: Fix InitialDirectory
12495 2005-10-05  Jordi Mas i Hernandez <jordi@ximian.com>
12497         * ComboBox.cs:
12498                 - Fixes changing between styles
12499                 - Fixes simple mode
12500                 - Fixes last item crashing when navigating with keyboard
12502 2005-10-05  Jordi Mas i Hernandez <jordi@ximian.com>
12504         * LinkLabel.cs: Related to 76045. Stops the LinkLabel been drawn as a Label
12506 2005-10-05  Jackson Harper  <jackson@ximian.com>
12508         * TreeView.cs: If updating the root node do a full refresh.
12509         * TreeNode.cs: The root node should be expanded by default. Also
12510         added a utility prop to tell if we are the root node.
12511         * TreeNodeCollection.cs: Only refresh if the node we are being
12512         added to is expanded. Also added a comment on a potential
12513         optimization.
12514         
12515 2005-10-04  Peter Dennis Bartok  <pbartok@novell.com>
12517         * Cursor.cs, Hwnd.cs: Added call to GC.SuppressFinalize() 
12518           in dispose method. Fixes #76330
12520 2005-10-04  Jordi Mas i Hernandez <jordi@ximian.com>
12522         * ListView.cs, ThemeWin32Classic.cs, ListViewItem.cs:
12524                 - Implements vertical and horizontal scrolling using XplatUI
12525                 - Fixes keyboard navagation
12526                 - Fixes EnsureVisible
12527                 - Drawing fixes
12528                 - Handles and draws focus properly
12531 2005-10-04  Kornél Pál  <kornelpal@hotmail.com>
12533         * ImageList.cs: Use upper case initials for internal fields. ImageStream:
12534           Create handle. NET_2_0: Destroy handle when value is null.
12536 2005-10-03  Jackson Harper  <jackson@ximian.com>
12538         * ScrollBar.cs: My last scrollbar patch was broken. This is a
12539         revert and a new patch to prevent the thumb from refreshing so
12540         much.
12542 2005-10-02  Jackson Harper  <jackson@ximian.com>
12544         * ScrollBar.cs: Don't update position if it hasn't actually
12545         changed. This occurs when you hold down the increment/decrement
12546         buttons and the thumb gets to the max/min.
12548 2005-10-01  Jackson Harper  <jackson@ximian.com>
12550         * Form.cs:
12551         * MdiChildContext.cs:
12552         * MdiClient.cs: Implement ActiveMdiChild in Form.
12554 2005-10-01  Jordi Mas i Hernandez <jordi@ximian.com>
12556         * ComboBox.cs: Include ComboBoxEdit flag for the edit item
12558 2005-10-01  Peter Dennis Bartok  <pbartok@novell.com>
12560         * X11DesktopColors.cs: Bow out gracefully if the Gtk libs cannot
12561           be found
12563 2005-09-30  Jackson Harper  <jackson@ximian.com>
12565         * ListBox.cs: Don't do a full refresh unless some data has
12566         actually changed.
12568 2005-09-30  Jackson Harper  <jackson@ximian.com>
12570         * TreeView.cs: Make sure that the checkboxes size is factored in
12571         even when not visible.
12573 2005-09-30  Peter Dennis Bartok  <pbartok@novell.com> 
12575         * FileDialog.cs: Fix Jordi's build break
12577 2005-09-30  Jordi Mas i Hernandez <jordi@ximian.com>
12579         * FileDialog.cs: 
12580                 - Use standard the Windows colours for the combobox as espected
12581                 - Dispose objects that use resouces when no longer need them
12583 2005-09-30  Peter Dennis Bartok  <pbartok@novell.com> 
12585         * X11DesktopColors.cs: Initial incomplete implementation
12586         * XplatUIX11.cs: Added call to initialize X11DesktopColors
12588 2005-09-30  Peter Dennis Bartok  <pbartok@novell.com>
12590         * Theme.cs: 
12591           - Switched Theme color names to match the names defined in 
12592             System.Drawing.KnownColors. Life's hard enough, no need to make 
12593             it harder.
12594           - Added setters to all theme color properties so themes can set
12595             their color schemes. The setters also propagate the color changes
12596             to System.Drawing.KnownColors via reflection
12597         * ControlPaint.cs,  Label.cs, TextControl.cs, ToolTip.cs, ThemeNice.cs,
12598           ComboBox.cs, MdiChildContext.cs, TextBoxBase.cs, DateTimePicker.cs
12599           DataGridColumnStyle.cs, MonthCalendar.cs, TreeView.cs: Updated to
12600           use the new, more logical theme color names
12601         * XplatUIWin32.cs: Updated the GetSysColorIndex enum to include new
12602           post-NT colors
12603         * ThemeWin32Classic.cs:
12604           - Removed code to set the old classic Windows colors. Instead it
12605             now relies on the colors returned by System.Drawing.KnownColors
12606             which will be either modern static colors (Unix) or colors
12607             read from the user's configuration (Win32)
12608           - Updated to use the new, more logical theme color names
12609           - Switched DataGrid drawing code to use only Theme colors instead of
12610             a mix of System.Drawing.KnownColors and Theme colors
12611           - DrawFrameControl(): Removed code that fills the button area, the
12612             fill would overwrite any previous fill done by a control. This
12613             fixes bug #75338 
12614           - Added DrawReversibleRectangle() stub
12615         * ScrollableControl.cs: Set visible state to false when scrollbars
12616           are removed (pdn fix)
12617         * XplatUI.cs, XplatUIOSX.cs, XplatUIDriver.cs: Added 
12618           DrawReversibleRectangle() method to allow drawing primitive 
12619           'rubber bands'
12620         * XplatUIX11.cs: Implemented DrawReversibleRectangle()
12622 2005-09-30  Kornél Pál  <kornelpal@hotmail.com>
12624         * ImageList.cs: Add(Icon): Create handle.
12626 2005-09-30  Jordi Mas i Hernandez <jordi@ximian.com>
12628         * ListView.cs:
12629         * ThemeWin32Classic.cs:
12630                 - Fixes detail mode
12631                 - Sets clippings
12632                 - Issues with drawing
12634 2005-09-30  Kornél Pál  <kornelpal@hotmail.com>
12636         * ImageList.cs: Moved RecreateHandle back to ImageList as event
12637           source has to be the ImageList.
12639 2005-09-30  Kornél Pál  <kornelpal@hotmail.com>
12641         * ImageList.cs: Add(Icon): Use Graphics.DrawIcon instead of Icon.ToBitmap.
12643 2005-09-30  Kornél Pál  <kornelpal@hotmail.com>
12645         * ImageList.cs: ReduceColorDepth: Clean up pointer operations.
12647 2005-09-30  Kornél Pál  <kornelpal@hotmail.com>
12649         * ImageList.cs: ImageCollection: Removed owner field as it is no more used.
12651 2005-09-29  Jonathan Chambers <jonathan.chambers@ansys.com>
12652         * GridItem.cs: Fixed TODOs
12653         * GridItemCollection.cs: Added ICollection interface
12655 2005-09-30  Kornél Pál  <kornelpal@hotmail.com>
12657         * ImageList.cs: Resize icons when needed.
12659 2005-09-29  Jordi Mas i Hernandez <jordi@ximian.com>
12661         * ListViewItem.cs
12662                 - Fixes GetBounds and returns on screen rects
12663         * ListView.cs:
12664                 - Fixes vertical and horzintal scrolling of items
12665         * ThemeWin32Classic.cs:
12666                 - Fixes drawing
12667                 
12668 2005-09-29  Raja R Harinath  <harinath@gmail.com>
12670         * ImageList.cs (ImageStream) [NET_2_0]: Reflect re-factoring.
12672 2005-09-29  Kornél Pál  <kornelpal@hotmail.com>
12674         * ImageList.cs: Added comments about handle creation. Moved Handle,
12675           HandleCreated and OnRecreateHandle implementations to ImageCollection.
12676           Handle is created in Add methods.
12678 2005-09-28  Jordi Mas i Hernandez <jordi@ximian.com>
12679          
12680         * DataGridDrawingLogic.cs: 
12681                 - Takes rows into account on Colum calculations
12682                 - Returns the column when clickig
12683         * DataGrid.cs:
12684                 - Fixes default HitTestInfo values
12685                 - Fixes HitTestInfo.ToString
12686                 - Fixes ResetBackColor          
12687         
12688 2005-09-28  Jackson Harper  <jackson@ximian.com>
12690         * MdiChildContext.cs: Obey rules for fixed sized windows (no
12691         sizing or cursor changes). Also added some temp code to draw the
12692         titlebars text (Makes dev a little easier).
12694 2005-09-28  Kornél Pál  <kornelpal@hotmail.com>
12696         * ImageList.cs: AddStrip: Throw ArgumentException when Image is not a Bitmap.
12698 2005-09-28  Jordi Mas i Hernandez <jordi@ximian.com>
12699          
12700         * ListBox.cs: Fixes bug 76253
12702 2005-09-28  Kornél Pál  <kornelpal@hotmail.com>
12704         * ImageList.cs: Added comments about the current implementation. Added
12705           ReduceColorDepth, IndexedColorDepths and GetNearestColor to can use
12706           Format32bppArgb to preserve transparency and can use Graphics.FromImage
12707           while using the specified ColorDepth. ReduceColorDepth uses unsafe code
12708           with Bitmap.LockBits for better performance. Revised the whole file to
12709           match MS.NET behaviour and provide better performance. Non-public
12710           interface members are calling public members even when they throw
12711           NotSupportedException for better maintainability. Moved ColorDepth,
12712           ImageSize, ImageStream and TransparentColor implementations to
12713           ImageCollection for better performance as these properties are not used
12714           by ImageList.
12715         * ImageListStreamer.cs: Added a new internal constructor that takes an
12716           ImageList.ImageCollection and serializes Images based on
12717           ImageCollection.ToArray(). Renamed ImageColorDepth to ColorDepth to
12718           match ImageList property name.
12720 2005-09-28  Kazuki Oikawa <kazuki@panicode.com>
12722         * ListBox.cs: Fixes IndexFromPoint for last item
12724 2005-09-27  Jackson Harper  <jackson@ximian.com>
12726         * Form.cs: Set the position of new mdi children correctly.
12728 2005-09-27  Jackson Harper  <jackson@ximian.com>
12730         * MdiClient.cs: New mdi children need to be added to the back of
12731         the controls collection so the zorder is set correctly. Also add a
12732         count of all the child windows that have been created.
12734 2005-09-27  Jackson Harper  <jackson@ximian.com>
12736         * Form.cs (CreateParams): Setup MDI forms correctly.
12738 2005-09-27  Jackson Harper  <jackson@ximian.com>
12740         * MdiChildContext.cs:
12741         * MonthCalendar.cs:
12742         * UpDownBase.cs:
12743         * ListBox.cs:
12744         * ListView.cs:
12745         * TextBoxBase.cs:
12746         * TreeView.cs:
12747         * ScrollableControl.cs:
12748         * ComboBox.cs: Add implicit controls using the new implict control
12749         functionality in ControlCollection. Also try to block multiple
12750         control add in a suspend/resume layout to save some cycles.
12751         
12752 2005-09-27  Jackson Harper  <jackson@ximian.com>
12754         * Control.cs: Add functionality to the controls collection to add
12755         'implicit controls' these are controls that are created by the
12756         containing control but should not be exposed to the user. Such as
12757         scrollbars in the treeview.
12758         * Form.cs: The list var of the ControlsCollection is no longer
12759         available because of the potential of implicit controls getting
12760         ignored by someone accessing the list directly.
12762 2005-09-26  Peter Dennis Bartok  <pbartok@novell.com>
12764         * Control.cs: Fixed SetChildIndex; it no longer causes a child to
12765           loose it's parent. (Fixed bug introduced in r49103 when we added
12766           setting the child parent to null on Remove)
12768 2005-09-26  Gert Driesen  <drieseng@users.sourceforge.net>
12770         * DataGridBoolColumn.cs: Marked CheckState private to fix public API.
12771         * Splitter.cs: Added missing attributes for BorderStyle property.
12772         * TextBoxBase.cs: Marked Calculate* methods internal.
12773         * TextBox.cs: Fixed DefaultValue for PasswordChar property to match
12774         MS.NET.
12776 2005-09-26  Jordi Mas i Hernandez <jordi@ximian.com>
12777          
12778         * ListBox.cs: Fixes navigation to the last item in multicolumn lists
12780 2005-09-25  Jackson Harper  <jackson@ximian.com>
12782         * TreeView.cs: Update the node bounds correctly regardless of
12783         whether the node is visible.
12785 2005-09-25  Jackson Harper  <jackson@ximian.com>
12787         * ImageList.cs: Don't dispose the image after it is added to the
12788         image list. Only reformat images that need to be resized.
12790 2005-09-25  Jackson Harper  <jackson@ximian.com>
12792         * ImageList.cs: Don't set the format when changing the image.
12794 2005-09-25  Jackson Harper  <jackson@ximian.com>
12796         * TreeView.cs: We can't just assume the node has a font. Use the
12797         treeviews font if no node font is available.
12799 2005-09-25  Jackson Harper  <jackson@ximian.com>
12801         * TreeView.cs: Allow the scrollbars to be reset with negative
12802         values.
12803         - Don't add scrollbars to negative sized windows.
12805 2005-09-23  Jackson Harper  <jackson@ximian.com>
12807         * XplatUIX11.cs: Update to use Mono.Posix.Native instead of plain
12808         old Mono.Posix. Also remove some stray code that shouldn't have
12809         been committed.
12811 2005-09-23  Jackson Harper  <jackson@ximian.com>
12813         * TreeView.cs: Attempt at proper sizing of the horizontal
12814         scrollbar. Also don't resize the scrollbars unless they are
12815         visible.
12817 2005-09-23  Jackson Harper  <jackson@ximian.com>
12819         * TreeView.cs: We don't need to expand the invalid area when the
12820         selection changes, as this is all drawn in the node's bounding
12821         box. The area needs to be expanded (previous typo was contracting
12822         it) when the focus rect moves.
12824 2005-09-23  Jackson Harper  <jackson@ximian.com>
12826         * TreeView.cs: Display the selection box under the correct
12827         circumstances. We were rendering white text with no selection box
12828         before.
12830 2005-09-23  Peter Dennis Bartok  <pbartok@novell.com>
12832         * TextControl.cs(Split): Now updates selection start/end if it points 
12833           into a line that's being split. Fixes a FIXME and bug #75258
12835 2005-09-23  Jackson Harper  <jackson@ximian.com>
12837         * Binding.cs:
12838         * ListControl.cs: Don't use the path when retrieving binding
12839         managers from the binding context. My bat sense tells me that the
12840         path is only used on insertion.
12842 2005-09-22  Jackson Harper  <jackson@ximian.com>
12844         * Splitter.cs: Set the cursor an easier way. (Thanks peter).
12846 2005-09-22  Jackson Harper  <jackson@ximian.com>
12848         * Splitter.cs: There are special cursors used for splitting.
12849         * XplatUIX11.cs: The VSplit and HSplit cursors were backwards.
12851 2005-09-22  Jackson Harper  <jackson@ximian.com>
12853         * Splitter.cs: Change the cursor appropriately when the splitter
12854         is moused over, so the user actually knows there is a splitter
12855         there.
12857 2005-09-22 Hisham Mardam Bey <hisham.mardambey@gmail.com>
12859        * Label.cs : Fix ToString method to give same output as MS.NET
12861 2005-09-22  Jackson Harper  <jackson@ximian.com>
12863         * TreeView.cs: Create the scrollbars when the handle is created
12864         and add them right away, just make them invisble. Also account for
12865         the window being shrunk vertically to the point that the vert
12866         scrollbar needs to be added.
12867         - Remove some 0.5 adjustments to get around anti aliasing issues.
12868         
12869 2005-09-22  Jordi Mas i Hernandez <jordi@ximian.com>
12870          
12871         * MainMenu.cs: Fixes default value
12872         * MenuItem.cs: Fixes default value
12874 2005-09-22  Kazuki Oikawa  <kazuki@panicode.com>
12876         * AsyncMethodResult.cs: Fixes Control.Invoke is blocked infinitely.
12878 2005-09-21  Jackson Harper  <jackson@ximian.com>
12880         * Control.cs: Don't try to set the border style on the window if
12881         it hasn't been created. When the window is created the border
12882         style will be used.
12884 2005-09-21  Peter Dennis Bartok  <pbartok@novell.com>
12886         * Control.cs (Update): Don't call XplatUI if we don't have a
12887           window handle yet
12889 2005-09-21  Peter Dennis Bartok  <pbartok@novell.com> 
12891         * ContainerControl.cs: Instead of throwing an exception, print
12892           a one-time warning about Validate not being implemented
12893         * XplatUIWin32.cs: Removed debug output
12895 2005-09-21  Peter Dennis Bartok  <pbartok@novell.com> 
12897         * Control.cs: Only set XplatUI background if we expect the windowing
12898           system to handle the background. This stops controls that draw their
12899           own background from flickering
12901         * XplatUIX11.cs: Support custom visuals and colormaps for window 
12902           creation. This allows, amongst other things, using MWF X11 windows 
12903           with OpenGL.
12905 2005-09-21  Peter Dennis Bartok  <pbartok@novell.com>
12907         * OpenFileDialog.cs, ContentsResizedEventArgs.cs, LibSupport.cs, GridItem.cs,
12908           CursorConverter.cs, SplitterEventHandler.cs, PropertyGridTextBox.cs,
12909           GridTablesFactory.cs, MethodInvoker.cs, AccessibleEvents.cs,
12910           SplitterEventArgs.cs, XplatUI.cs, Mime.cs, PropertySort.cs,
12911           TreeViewCancelEventHandler.cs, Form.cs, PropertyGridCommands.cs,
12912           IDataGridEditingService.cs, DateBoldEventHandler.cs, Label.cs,
12913           KeyboardLayouts.cs, TextControl.cs, ProgressBar.cs, ToolTip.cs,
12914           RadioButton.cs, OSFeature.cs, LinkLabel.cs, ColorDialog.cs,
12915           ThemeNice.cs, ErrorIconAlignment.cs, TreeNode.cs, MimeGenerated.cs,
12916           ComboBox.cs, DataGridTextBoxColumn.cs, ArrangeStartingPosition.cs,
12917           GridColumnStylesCollection.cs, 
12918           IDataGridColumnStyleEditingNotificationService.cs,
12919           PropertyGrid.cs, IFeatureSupport.cs, ICommandExecutor.cs,
12920           MdiLayout.cs, GridEntry.cs, ControlBindingsCollection.cs,
12921           GridTableStylesCollection.cs, TreeViewCancelEventArgs.cs, 
12922           TreeNodeCollection.cs, AmbientProperties.cs, 
12923           RichTextBoxSelectionAttribute.cs, RichTextBoxSelectionTypes.cs,
12924           DataObject.cs, ErrorProvider.cs, Splitter.cs,
12925           DataGridLineStyle.cs, Shortcut.cs, Control.cs,
12926           FontDialog.cs, SecurityIDType.cs, GridItemType.cs,
12927           BindingMemberInfo.cs, DataGridCell.cs, MdiChildContext.cs,
12928           IRootGridEntry.cs, PropertyGridView.cs, DataGridParentRowsLabelStyle.cs,
12929           FolderBrowserDialog.cs, OpacityConverter.cs, HelpProvider.cs,
12930           IComponentEditorPageSite.cs, DataGridTableStyle.cs, NavigateEventArgs.cs,
12931           NotifyIcon.cs, ContentsResizedEventHandler.cs, MenuItem.cs,
12932           PropertyTabChangedEventHandler.cs, TextBoxBase.cs, OpenTreeNodeEnumerator.cs,
12933           SelectionMode.cs, TextBox.cs, ListBindingConverter.cs,
12934           FileDialog.cs, KeysConverter.cs, DomainUpDown.cs,
12935           DataFormats.cs, SaveFileDialog.cs, GridItemCollection.cs,
12936           ArrangeDirection.cs, FeatureSupport.cs, SelectionRangeConverter.cs,
12937           RichTextBoxScrollBars.cs, NodeLabelEditEventHandler.cs, TreeNodeConverter.cs,
12938           MimeIcon.cs, X11Structs.cs, PropertyGridEntry.cs,
12939           ImageList.cs, ThemeWin32Classic.cs, X11Keyboard.cs,
12940           CheckedListBox.cs, HelpNavigator.cs, DateTimePickerFormat.cs,
12941           MdiClient.cs, DataGridDrawingLogic.cs, DataGridBoolColumn.cs,
12942           NodeLabelEditEventArgs.cs, Screen.cs, PropertyManager.cs,
12943           ComponentModel.cs, PropertiesTab.cs, CurrencyManager.cs,
12944           SizeGrip.cs, DateBoldEventArgs.cs, X11Dnd.cs, Panel.cs,
12945           Hwnd.cs, OSXStructs.cs, DrawMode.cs, XplatUIDriver.cs,
12946           RichTextBox.cs, PropertyTabChangedEventArgs.cs, CommonDialog.cs,
12947           DataGrid.cs, XplatUIX11.cs, RichTextBoxStreamType.cs, Win32DnD.cs,
12948           ErrorBlinkStyle.cs, TreeViewEventHandler.cs,
12949           PropertyValueChangedEventHandler.cs, IFileReaderService.cs,
12950           DataGridTextBox.cs, SelectedGridItemChangedEventArgs.cs, ScrollBar.cs,
12951           ListBox.cs, TreeViewAction.cs, Help.cs, TrackBar.cs,
12952           AxHost.cs, PropertyValueChangedEventArgs.cs, XplatUIOSX.cs,
12953           RichTextBoxFinds.cs, UpDownEventArgs.cs, Cursors.cs,
12954           CategoryGridEntry.cs, RichTextBoxWordPunctuations.cs, DataGridColumnStyle.cs,
12955           SelectedGridItemChangedEventHandler.cs, DateTimePicker.cs, NavigateEventHandler.cs,
12956           Clipboard.cs, UpDownEventHandler.cs, MonthCalendar.cs,
12957           SendKeys.cs, DataGridPreferredColumnWidthTypeConverter.cs, TreeView.cs,
12958           ThreadExceptionDialog.cs, ImageListConverter.cs, XplatUIWin32.cs,
12959           TreeViewEventArgs.cs: Fixed whitespace and set eol-style:native attribute
12961 2005-09-21  Jackson Harper  <jackson@ximian.com>
12963         * TreeNode.cs: Call Before/After Expand not Collapse when
12964         expanding.
12966 2005-09-20  Jackson Harper  <jackson@ximian.com>
12967         
12968         * XplatUIX11.cs: Use the more hand looking hand (in most themes).
12970 2005-09-16  Jordi Mas i Hernandez <jordi@ximian.com>
12971          
12972         * ListViewItem.cs:
12973                 - Fixes bug 76120
12974                 - Fixes proper storing of subitems
12975                 - Fixes not updated items
12977 2005-09-20  Peter Dennis Bartok  <pbartok@novell.com>
12979         * Control.cs, TextBoxBase.cs, TextControl.cs: Don't do certain
12980           things if our window handle isn't created yet. Also disabled 
12981           debug for TextBoxBase
12983 2005-09-20  Peter Dennis Bartok  <pbartok@novell.com> 
12985         * MenuAPI.cs: Remove filtering of events to allow menu usage
12987 2005-09-20  Miguel de Icaza  <miguel@novell.com>
12989         * Cursor.cs: Allow null to be passed to Cursor.Current.
12991 2005-09-20  Alexander Olk  <alex.olk@googlemail.com>
12993         * ThemeWin32Classic.cs:
12994           - Change some private methods/fields to protected virtual so that 
12995             they can be accessed and overriden in derived classes
12996           - First refactoring of some methods. Derived themes now don't 
12997             need to duplicate the complete code from ThemeWin32Classic
12998         * ThemeNice.cs:
12999           - Added nice StatusBar
13000           - Derive from ThemeWin32Classic and not Theme
13001           - Removed duplicate ThemeWin32Classic code
13003 2005-09-20  Miguel de Icaza  <miguel@novell.com>
13005         * Control.cs (ControlCollection.Add): If the value null is passed
13006         the control is ignored. 
13008         Optimize this loop.
13010 2005-09-19  Peter Dennis Bartok  <pbartok@novell.com> 
13012         * MenuAPI.cs: Replaced Application.Run() with a loop that tracks
13013           PostQuitMessage state.
13014         * XplatUIWin32.cs: Removed bogus PostQuitMessage P/Invoke with HWND arg
13016 2005-09-19  Peter Dennis Bartok  <pbartok@novell.com>
13018         * Application.cs: Our constructor will never get called, move 
13019           initialization to fields; fixes bug #75933
13021 2005-09-19 Hisham Mardam Bey <hisham.mardambey@gmail.com>
13023         * FileDialog.cs :
13024                 - Allow files to be selected properly using file name
13025                 combo box.
13026                 - Add ability to change diretory (absolute / relative)
13027                 using file name combo box.
13029 2005-09-16  Jordi Mas i Hernandez <jordi@ximian.com>
13030          
13031         * ListBox.cs: 
13032                 - Fixes Multicolumn listboxes item wrong calculations
13033                 - Allows to click when only one item is in the listbox
13034                 - Fixes crash when no items using keyboard navigation
13036 2005-09-16  Alexander Olk  <alex.olk@googlemail.com>
13038         * ComboBox.cs: Reverted almost everything from the latest patch which
13039           broke ComboBox
13041 2005-09-16  Kazuki Oikawa <kazuki@panicode.com>
13042         
13043         * ToolTip.cs:
13044                 - Fixed #Mtd2 of ToolTipTest.RemoveToolTipTest.
13045         * ComboBox.cs:
13046                 - When DropDownStyle is Simple, it does not show scrollbar 
13047                 to the last item of the list.
13048                 - When DropDownStyle is Simple, it crashed when the list was 
13049                 scrolled down with the down cursor key.
13050                 - Fixed a bug that when DropDownStyle is DropDownList, the 
13051                 selected item was not shown.
13052                 - The position of the selected item was not preserved when 
13053                 the next dropdown happened.
13054         * ThemeWin32Classic.cs:
13055                 - Items were wrapped at the right end.
13056         * CheckedListBox.cs:
13057                 - Fixed Add method
13058         * ListBox.cs:
13059                 - Items should be fully shown.
13060                 - When resizing and vertical scrollbar disappeared, the item 
13061                 of index 0 should be on the top of the list.
13062                 - GetItemRectangle should consider the size of ver. scrollbar
13063         * StatusBar.cs:
13064                 - SizingGrip area should not be allocated when it is not 
13065                 displayed.
13066                 - Now it reflects MinWidth of the containing panel and 
13067                 fixed a crash that happens when its width becomes so small.
13069 2005-09-13  Jordi Mas i Hernandez <jordi@ximian.com>
13071         * CheckedListBox.cs: Fixes bug 76028
13072         * ListBox.cs: Fixes bug 76028
13074 2005-09-13  Jordi Mas i Hernandez <jordi@ximian.com>
13076         * ThemeWin32Classic.cs: Sets clipping on DataGridPaintRowsHeaders
13077         * DataGridDrawingLogic.cs: fixes issues with Datagrid drawing
13079 2005-09-12  Jordi Mas i Hernandez <jordi@ximian.com>
13081         * XplatUIX11.cs: fixes System.NullReferenceException in some situations
13083 2005-09-09  Jonathan Chambers  <jonathan.chambers@ansys.com>
13085         * IRootGridEntry.cs: Changed namespace to PropertyGridInternal 
13087 2005-09-09  Jonathan Chambers  <jonathan.chambers@ansys.com>
13089         * IRootGridEntry.cs: Added
13090         * PropertyGridCommands.cs: Added
13091         * PropertiesTab.cs: Added missing methods and property
13092         * PropertyGridView.cs: Made class internal
13093         * PropertyGridTextBox.cs: Made class internal
13095 2005-09-09  Alexander Olk  <alex.olk@googlemail.com>
13097         * MimeIcon.cs: Try to check some other environment variables
13098           if "DESKTOP_SESSION" returns "default"
13100 2005-09-09  Alexander Olk  <alex.olk@googlemail.com>
13102         * ThemeNice.cs: Corrected background colors (e.g. menus)
13103         * ColorDialog.cs: Use correct background colors for controls
13105 2005-09-09  Alexander Olk  <alex.olk@googlemail.com>
13107         * ThemeNice.cs: Merged r49535 from ThemeWin32Classic
13109 2005-09-08  Peter Dennis Bartok  <pbartok@novell.com>
13111         * RichTextBox.cs: Added initial implementation
13112         * lang.cs: Removed. Was accidentally checked in long time ago
13113         * TODO: Removed. Contents were obsolete
13115 2005-09-06  Jonathan Chambers  <jonathan.chambers@ansys.com>
13116                                                                                 
13117         * PropertiesTab.cs : Added
13119 2005-09-06  Jonathan Chambers  <jonathan.chambers@ansys.com>
13120                                                                                 
13121         * PropertyGrid.cs : Update
13122         * PropertyGridView.cs : Update
13123         * System.Windows.Forms.resx : Added images and strings
13125 2005-09-06  Peter Dennis Bartok  <pbartok@novell.com> 
13127         * ThemeNice.cs: Do not dispose Pens retrieved from ResPool
13129 2005-09-06  Peter Dennis Bartok  <pbartok@novell.com>
13131         * XplatUIX11.cs: Force a flush after Ungrab; if case the app enters
13132           a busy loop right after the Ungrab the X11 display is otherwise 
13133           blocked
13135 2005-09-06  Jordi Mas i Hernandez <jordi@ximian.com>
13137         * ThemeWin32Classic.cs: Optimise the use of clipping
13139 2005-09-05  Jordi Mas i Hernandez <jordi@ximian.com>
13141         * DataGrid.cs: fixes recursion bug
13143 2005-09-03  Alexander Olk  <alex.olk@googlemail.com>
13145         * ThemeNice.cs: 
13146           - Draw RadioButton and CheckBox Buttons with DrawButtonBase
13147           - Cleanup
13149 2005-09-02  Alexander Olk  <alex.olk@googlemail.com>
13151         * ThemeNice.cs: Draw nice ProgressBars
13153 2005-09-01  Miguel de Icaza  <miguel@novell.com>
13155         * VScrollBar.cs: Another buglet found by Aaron's tool. 
13157         * ProgressBar.cs: Fix three recursive bugs found by Aaron Tomb's
13158         bug finder.
13160 2005-08-30  Alexander Olk  <alex.olk@googlemail.com>
13162         * ThemeNice.cs:
13163           - Added nicer menu drawing
13164           - Updated DrawTab
13165           - some refactoring
13167 2005-08-30  Peter Dennis Bartok  <pbartok@novell.com>
13169         * CreateParams.cs (ToString): Made output match MS
13170         * Control.cs (Text): Don't set Text or Focus via XplatUI unless 
13171             handle is already created (to avoid forcing window creation)
13172         * XplatUIX11.cs: Set window text to caption after creating window,
13173           in case Text was set before window was created
13174         * Form.cs: Use this.Text instead of a static string as caption
13176 2005-08-30  Peter Dennis Bartok  <pbartok@novell.com> 
13178         * NotifyIcon.cs: Don't set the window to visible; this screws
13179           up Win32 (causes WM_NCPAINT to be sent on Win32, which calls
13180           OnPaint without a bitmap)
13181         * XplatUIX11.cs: Removed Visible optimization in AddExpose; doesn't 
13182           happen very often anyway; we could add the check to the WM_PAINT 
13183           event generation code
13185 2005-08-30  Peter Dennis Bartok  <pbartok@novell.com>
13187         * NotifyIcon.cs: Fill the icon area with a background color, to 
13188           avoid 'residue' when transparent icons are drawn
13189         * XplatUIX11.cs:
13190           - Handle whole_window == client_window when destroying windows
13191           - SystrayAdd(): Set client_window to whole_window value to
13192             get mouse and other events passed to NotifyIcon
13194 2005-08-30  Peter Dennis Bartok  <pbartok@novell.com> 
13196         * Form.cs: Set proper default for Opacity property
13197         * NotifyIcon.cs:
13198           - ShowSystray(): Don't bother creating telling the OS
13199             about the systray item if no icon is provided
13200           - Now handles WM_NCPAINT message to deal with whole/client window
13201             split
13202           - Create window as visible to not get caught by Expose optimization
13203         * Hwnd.cs: Removed debug message
13204         * ComboBox.cs, ScrollBar.cs, ListBox.cs, TrackBar.cs, TabControl.cs,
13205           StatusBar.cs, TreeView.cs, XplatUIOSX.cs, XplatUIWin32.cs: Switched 
13206             PaintEventStart/End to use new client argument
13207         * TextBoxBase.cs:
13208           - Commented out debug messages
13209           - Switched PaintEventStart/End to use new client argument
13210         * XplatUI.cs: Added client window bool to PaintEventStart()/
13211           PaintEventEnd() calls, to support drawing in non-client areas
13212         * XplatUIDriver.cs: 
13213           - Added client window bool to PaintEventStart()/PaintEventEnd() 
13214             calls, to support drawing in non-client areas
13215           - Added conditional compile to allow using MWF BeginInvoke 
13216             on MS runtime
13217         * XplatUIX11.cs:
13218           - Added some conditional debug output
13219           - Fixed SystrayAdd() method to support new (for SystrayAdd, anyway)
13220             whole/client window split
13221           - Implemented handling of client argument to PaintEventStart()/End()
13222         * Control.cs:
13223           - Throw exception if BeginInvoke() is called and the window handle
13224             or one of the window's parent handles is not created
13225           - Added conditional compile to allow using MWF BeginInvoke on
13226             MS runtime
13227           - get_Parent(): Only sets parent if handle is created. This avoids
13228             forcing window handle creation when parent is set.
13229           - Now fires Layout and Parent changed events in proper order
13230           - Switched to use Handle instead of window.Handle for Z-Order setting,
13231             the get_Parent() patch above causes us to possibly get null for 'window'
13232           - Implemented handling of client argument to PaintEventStart()/End()
13233           - Now reports back to windows that WM_SETCURSOR was handled (to avoid
13234             default handling)
13235           - Now sends a Refresh() to all child windows when Refresh() is called
13237 2005-08-29  Peter Dennis Bartok  <pbartok@novell.com> 
13239         * Form.cs: Added (non-functional) Opacity property
13240         * XplatUIWin32.cs (SystrayAdd): Removed bogus line of code
13242 2005-08-29  Alexander Olk  <xenomorph2@onlinehome.de>
13243         * ThemeNice.cs: New theme for MWF, based on ThemWin32Classic
13244           use export MONO_THEME=nice to activate it.
13245           Currently supported controls:
13246           - Button
13247           - ComboBox
13248           - ScrollBar
13249           - TabControl (TabAlignment.Top only, other will follow)
13250         * ThemeEngine.cs: Add theme nice
13251         * ButtonBase.cs: Redraw button on MouseEnter and MouseLeave everytime,
13252           if enabled
13254 2005-08-25  Jonathan Chambers  <jonathan.chambers@ansys.com> 
13256         * Splitter.cs: Resize docked control and its neighbor.
13258 2005-08-24  Rafael Teixeira <rafaelteixeirabr@hotmail.com> 
13259         -- Making Windows with Menus layout correctly --
13260         * Form.cs : The first leg of the fix
13261                 Menu setter - adjust Client Size as needed to make space for the menu
13262                 SetClientSizeCore - doesn't call base version to be able to pass the 
13263                         menu handle to XplatUI.CalculateWindowRect
13264         * Hwnd.cs: Fix for menu_height, now gets from MenuAPI.MENU
13265         * XplatUIX11.cs: The critical second leg of the fix
13266                 GetWindowPos needs to use a recalculated client_rect
13267                 so that resizing the window doesn't break layout of child controls. 
13268                 Also a more complete rule to avoid X Server roundtrips in SetWindowPos
13269                 Lots of \t\n killed
13271 2005-08-23  Peter Dennis Bartok  <pbartok@novell.com> 
13273         * Label.cs: Now properly recalculates width and height on Font and Text
13274           changes if AutoSize is set
13276 2005-08-19  Rafael Teixeira <rafaelteixeirabr@hotmail.com> 
13277         * TreeView.cs : Revamped drawing logic, and support for FullRowSelect
13279 2005-08-19  Jordi Mas i Hernandez <jordi@ximian.com>
13281         * ImageList.cs: Makes ToString method compatible with MS
13283 2005-08-18  Jordi Mas i Hernandez <jordi@ximian.com>
13285         * MenuAPI.cs: fixes bug 75716
13287 2005-08-11 Umadevi S <sumadevi@novell.com>
13288         * Control.cs: Fixed Remove & RemoveAt to make the parent of the control null.
13290 2005-08-11 Umadevi S <sumadevi@novell.com>
13291         * Contorl.cs: Fixed ResetRightToLeft and ResetImeMode to work correctly
13293 2005-08-10  Umadevi S <sumadevi@novell.com>
13294         * CheckedListBox.cs: Fixed event firing on Adding to the CheckedListBox
13296 2005-08-07  Jordi Mas i Hernandez <jordi@ximian.com>
13298         * Menu.cs: fixes bug 75700
13299         * MenuAPI.cs: fixes navigation issues
13301 2005-08-09  Umadevi S <sumadevi@novell.com>
13302         * CheckedListBox.cs - simple fix for GetItemChecked.
13304 2005-08-08  Jordi Mas i Hernandez <jordi@ximian.com>
13306         * ComboBox.cs: Serveral fixes
13307         * ListBox.cs: Serveral fixes
13309 2005-08-05  Jordi Mas i Hernandez <jordi@ximian.com>
13311         * ComboBox.cs: Fixes FindString methods and GetItemHeight
13312         * ListBox.cs: Fixes FindString methods
13314 2005-08-05  Jordi Mas i Hernandez <jordi@ximian.com>
13316         * DataGrid.cs: fixes bugs exposed by new tests
13318 2005-08-04  Peter Dennis Bartok  <pbartok@novell.com> 
13320         * Mime.cs: Compile Mono assembly references only if compiling
13321           with Mono (Allows to build with VS.Net again)
13323 2005-07-28  Marek Safar  <marek.safar@seznam.cz>
13325         * Control.cs (PaintControlBackground): Draw background image
13326         corrrectly.
13327         (CheckForIllegalCrossThreadCalls): Stubbed.
13328         
13329         * Form.cs (OnCreateControl): Center when should be centered.
13330         
13331         * ThemeWin32Classic.cs (DrawPictureBox): Pass size.
13333 2005-07-19  Jordi Mas i Hernandez <jordi@ximian.com>
13335         * Binding.cs: Binding to properties should be case unsensitive
13337 2005-07-18 vlindos@nucleusys.com
13339         * DataGrid.cs: fixes setmember order
13341 2005-07-07  Alexander Olk  <xenomorph2@onlinehome.de>
13343         * MimeIcon.cs: added MimeIcon stuff (MimeIconEngine)
13344         * FileDialog.cs: FileDialog is now resizable and uses the new
13345           MimeIconEngine
13347 2005-07-06  Jordi Mas i Hernandez <jordi@ximian.com>
13349         * DataGridTextBoxColumn.cs: default value
13350         * GridColumnStylesCollection.cs: fixes event firing, checking MappingName
13351         * GridTableStylesCollection.cs: fixes checking MappingName
13352         * DataGridDrawingLogic.cs: fixes drawing logic issues
13353         * DataSourceHelper.cs: rewritten to make compatible with more data sources
13354         * DataGrid.cs: fixes    
13356 2005-07-06  Alexander Olk  <xenomorph2@onlinehome.de>
13358         * MimeGenerated.cs: Use case sensitive comparer for
13359           NameValueCollections
13361 2005-07-01  Jordi Mas i Hernandez <jordi@ximian.com>
13363         * DataGridTextBoxColumn.cs: bug fixes, code refactoring 
13364         * ThemeWin32Classic.cs: bug fixes, code refactoring
13365         * DataGridDrawingLogic.cs:  bug fixes, code refactoring
13366         * DataGrid.cs: bug fixes, code refactoring
13367         * DataGridTextBox.cs: bug fixes, code refactoring
13368         * DataGridColumnStyle.cs:  bug fixes, code refactoring
13369         * Theme.cs:  bug fixes, code refactoring
13371 2005-07-01  Peter Bartok  <pbartok@novell.com> 
13373         * TextControl.cs: Quick fix for the reported crash on ColorDialog
13374           and other text box usage
13376 2005-07-01  Jackson Harper  <jackson@ximian.com>
13378         * TabControl.cs: Make sure the bottom of the tab covers the pages
13379         border.
13381 2005-06-30  Peter Bartok  <pbartok@novell.com> 
13383         * Form.cs (ShowDialog): Assign owner of the dialog
13384         * TextBoxBase.cs: Always refresh caret size when deleting, caret
13385           might have been moved to a tag with different height
13387 2005-06-30  Jackson Harper  <jackson@ximian.com>
13389         * Form.cs: Don't create an infinite loop when setting focus
13390         * MenuItem.cs: Don't dirty the parents if we don't have any
13392 2005-06-29  Ben Maurer  <bmaurer@ximian.com>
13394         * LibSupport.cs: Rename
13396 2005-06-29  Peter Bartok  <pbartok@novell.com>
13398         * TextBoxBase.cs: Re-align caret after deleting a character
13399         * TextControl.cs:
13400           - DeleteChars(): Ensure that tag covers the provided position
13401           - StreamLine(): Drop reference for dropped tag
13403 2005-06-29  Peter Bartok  <pbartok@novell.com> 
13405         * TextControl.cs: 
13406           - Selections now work properly, anchoring at the initial location
13407             and properly extending in either direction (SetSelectionToCaret(),
13408             SetSelectionStart() and SetSelectionEnd())
13409           - No longer redraws the whole control on selection change, now
13410             calculates delta between previous and new selection and only
13411             invalidates/redraws that area
13412           - Fixed FindPos() math off-by-one errors
13413           - Changed DeleteChars() to verify the provided tag covers the
13414             provided position, selections may have a tag that doesn't cover
13415             the position if the selection is at a tag border
13416           - Fixed off-by-one errors in DeleteChars()
13417           - Added missing streamlining check in DeleteChars() to remove
13418             zero-length tags
13419           - Implemented Invalidate() method, now properly calculates exposures
13420             between two given lines/positions
13421           - Implemented SetSelection()
13422           - Obsoleted and removed FixupSelection()
13423           - Improved RecalculateDocument() logic, removing code duplication
13425 2005-06-29 Gonzalo Paniagua Javier <gonzalo@ximian.com>
13427         * LibSupport.cs: changes to match different input/output arguments.
13429 2005-06-29 Gonzalo Paniagua Javier <gonzalo@ximian.com>
13431         * LibSupport.cs: added libsupport.so init routine.
13433 2005-06-29  Jordi Mas i Hernandez <jordi@ximian.com>
13434         
13435         * ControlBindingsCollection.cs
13436                 - Throws an exception on null datasource when adding
13437                 - Checks for duplicated bindings when adding
13439 2005-06-28  Jackson Harper  <jackson@ximian.com>
13441         * TreeView.cs (OnKeyDown): Support left and right properly
13442         (navigates as well as expanding and collapsing.
13443         - Add support for Multiply, this expands all the selected nodes
13444         children.
13445         - Fix some tabbing.
13447 2005-06-28  Jackson Harper  <jackson@ximian.com>
13449         * TreeView.cs: Implement keyboard navigation, currently supports,
13450         LEFT, RIGHT, UP, DOWN, PGUP, PGDOWN, HOME, END, ADD, SUBTRACT. Add
13451         support for toggling checkboxes with the space bar.
13453 2005-06-28  Jackson Harper  <jackson@ximian.com>
13455         * OpenTreeNodeEnumerator.cs: Don't move past the begining of the
13456         tree.
13458 2005-06-28  Jackson Harper  <jackson@ximian.com>
13460         * TreeView.cs: Add missing event.
13462 2005-06-27  Peter Bartok  <pbartok@novell.com> 
13464         * TextControl.cs:
13465           - Made line ending size configurable (now allows for counting 
13466             lineendings as \n or \r\n)
13467           - Added margin to viewport to keep caret visible on right side
13468           - Fixed translation routines for line/pos to documentpos to consider
13469             cr/lf when counting (Fixes RichTextBox.SelectionFont issues)
13470           - Fixed some line-endings to be unix style
13471           - Fixed Document.FormatText to perform it's calculations 1-based
13472           - Added descriptions for a few methods that might otherwise get 
13473             used wrong
13474           - Added NOTE section with some basic conventions to remember at 
13475             the top of the file
13476           - Major fixup for RichTextBox selection drawing:
13477             * Fixed crashes when multiple tags on a single line were selected
13478             * fixed selection box drawing not overlaying text
13479             * fixed bogus offset calculation for tags not starting at index 1
13480             * Switched behaviour from using multiple Substrings of a 
13481               StringBuilder.ToString() to using multiple 
13482               StringBuilder.ToString(start, length) statements, hoping this is
13483               faster (kept original version commented out in the code, in case
13484               original version was faster)
13485         * TextBox.cs (set_TextAlignment): TextBox always needs to wrap if 
13486           alignment != Left
13487         * TextBoxBase.cs (CalculateDocument): Made protected so RichTextBox can
13488           call it as well
13490 2005-06-27  Jackson Harper  <jackson@ximian.com>
13492         * TabControl.cs: Move to the left and right with the arrow
13493         keys. These keys don't cycle beyond first and last like
13494         tab. Refresh all the tabs when scrolling them to the left or
13495         right.
13497 2005-06-27  Jackson Harper  <jackson@ximian.com>
13499         * TabControl.cs:
13500           - ToString: Added method
13501           - CreateParams: Remove TODO and comment
13502           - OnKeyDown: Cycle through bounds properly.
13503           - SelectedIndex: Scroll to the right or left if we need to
13504           display the newly selected tab.
13506 2005-06-23  Jackson Harper  <jackson@ximian.com>
13508         * TabControl.cs: Stay in bounds when cycling. Make sure Handled is
13509         set.
13511 2005-06-23  Jackson Harper  <jackson@ximian.com>
13513         * TabControl.cs: Keyboard handling. We now support CTRL-TAB,
13514         CTRL-SHIFT-TAB, and HOME, END are there any others?
13516 2005-06-23  Jackson Harper  <jackson@ximian.com>
13518         * XplatUIX11.cs: Get the modifier keys from the keyboard driver.
13520 2005-06-22  Jordi Mas i Hernandez <jordi@ximian.com>
13521         
13522         * DataGridTextBoxColumn.cs: fixes and enhancements
13523         * ThemeWin32Classic.cs: fixes and enhancements
13524         * DataGridBoolColumn.cs:  fixes and enhancements
13525         * DataGridDrawingLogic.cs:  fixes and enhancements
13526         * CurrencyManager.cs: fixes and enhancements
13527         * DataGrid.cs: fixes and enhancements
13528         * DataGridColumnStyle.cs:  fixes and enhancements
13530 2005-06-22  Jackson Harper  <jackson@ximian.com>
13532         * TabControl.cs: Add some missing methods that just call into the
13533         base. Make the TabPageCollection's IList interface behave in the
13534         same manner as the MS implementation.
13536 2005-06-22  Peter Bartok  <pbartok@novell.com> 
13538         * TextControl.cs: Added sanity check
13539         * TextBoxBase.cs: 
13540           - Fixed wrapping behaviour, don't set wrap on single line controls
13541             (this fixes the breakage of colordialog introduced in an earlier
13542              checkin)
13543           - Added rudimentary support for autoscrolling right-aligned controls
13544             (still needs fixing, also, center alignment scroll is missing)
13546 2005-06-22  Jordi Mas i Hernandez <jordi@ximian.com>
13547         
13548         * ScrollBar.cs: Fixes thumbpos on Maximum values
13550 2005-06-21  Jonathan Chambers <jonathan.chambers@ansys.com>
13551         
13552         * PropertyGridView.cs: Pass context information to UITypeEditors 
13554 2005-06-21  Peter Bartok  <pbartok@novell.com> 
13556         * TextBoxBase.cs:
13557           - Now calling PositionCaret with absolute space coordinates
13558           - Enabled vertical scrolling
13559           - Better tracking of scrollbar changes, tied into WidthChange
13560             event
13561           - Improved cursor tracking
13562           - Removed debug output
13563         * TextControl.cs:
13564           - PositionCaret coordinates are now works in absolute space, not 
13565             the canvas
13566           - Improved tracking of document size
13567           - Added events for width and height changes
13569 2005-06-21  Peter Bartok  <pbartok@novell.com>
13571         * Form.cs: Set focus to active control when form is activated
13572         * TextControl.cs: 
13573           - Added word-wrap functionality to RecalculateLine() 
13574           - Added some short function descriptions for VS.Net to aid in
13575             writing dependent controls
13576           - Added Caret property, returning the current coords of the caret
13577           - Added ViewPortWidth and ViewPortHeight properties
13578           - Added Wrap property
13579           - Added CaretMoved event
13580           - Removed some old debug code
13581           - Split() can now create soft splits
13582           - Added PreviousTag()/NextTag() to allow walking "tag-lists"
13583           - Added method to format existing text
13584           - Fixed size/alignment calculations to use viewport
13585           - RecalculateDocument now can handle changing line-numbers while
13586             calculating lines
13588         * TextBox.cs:
13589           - Added some wrap logic, we don't wrap if alignment is not left
13590           - Added casts for scrollbar var, base class switched types to
13591             also support RichTextBoxA
13592           - Implemented handling of scrollbar visibility flags
13594         * TextBoxBase.cs:
13595           - Switched scrollbars type to RichTextBoxScrollBars to support
13596             RichTextBox
13597           - Added tracking of canvas width/height
13598           - Switched scrollbars to be not selectable (to keep focus on text)
13599           - Added central CalculateDocument() method to handle all redraw
13600             requirements
13601           - Added ReadOnly support
13602           - Added WordWrap support
13603           - Fixed handling of Enter key (we now treat it as a DialogKey)
13604           - Fixed caret positioning when h or v scroll is not zero
13605           - Fixed placing/generation of vertical scrollbar
13606           - Added CalculateScrollBars() method to allow updating scrollbar
13607             limits and visibility
13608           - Fixed handling of horizontal scroll
13609           - Added handling of vertical scroll
13610           - Implemented auto-'jump' when caret moves to close to a left or
13611             right border and there is text to be scrolled into view (currently
13612             there's the potential for a stack overflow, until a bug in
13613             scrollbar is fixed)
13615 2005-06-21  Geoff Norton  <gnorton@customerdna.com>
13616         
13617         * XplatUIOSX.cs: Initial implementation of WM_ERASEBKGND
13619 2005-06-19  Alexander Olk  <xenomorph2@onlinehome.de>
13621         * Mime.cs:
13622         - added inodes.
13623         - return application/x-zerosize for files with size zero
13624           (if no extension pattern matches).
13625         - check matches collection for strings too.
13626         - return only the first mime type if the name value
13627           collection has more than one mime type.
13629 2005-06-18  Jonathan Chambers <jonathan.chambers@ansys.com>
13630         
13631         * PropertyGrid.cs: Cleaned up some TODOs
13632         * PropertyGridView.cs: Added support for UITypeEditors
13634 2005-06-17  Jordi Mas i Hernandez <jordi@ximian.com>
13635         
13636         * DataGrid.cs: clears cached value
13638 2005-06-17  Jordi Mas i Hernandez <jordi@ximian.com>
13640         * DataGridTextBoxColumn.cs: new rows, speed improvements, fixes, readonly prop.
13641         * DataGridDrawingLogic.cs: new rows, speed improvements, fixes, readonly prop.
13642         * DataGrid.cs: new rows, speed improvements, fixes, readonly prop.
13643         * DataGridColumnStyle.cs: new rows, speed improvements, fixes, readonly prop.
13644         
13645 2005-06-16  Jordi Mas i Hernandez <jordi@ximian.com>
13647         * ThemeWin32Classic.cs: fixes colour
13649 2005-06-15  Peter Bartok  <pbartok@novell.com>
13651         * MWFCategoryAttribute.cs: Added (Needed for PropertyGrid designer support)
13652         * MWFDescriptionAttribute.cs: Added (Needed for PropertyGrid designer support)
13653         * ButtonBase.cs: Added MWFCategory and MWFDescription attributes
13654         * Control.cs: Added some MWFCategory and MWFDescription attributes
13655         * ScrollBar.cs: Added some MWFCategory and MWFDescription attributes
13657 2005-06-15  Alexander Olk  <xenomorph2@onlinehome.de>
13659         * Mime.cs, MimeGenerated.cs: First draft of MWF mime stuff, see Mime.cs for
13660         usage
13662 2005-06-14  Jordi Mas i Hernandez <jordi@ximian.com>
13664         * DataGridTextBoxColumn.cs: default datagrid settings for Default Styles, fixes
13665         * DataGridTableStyle.cs: default datagrid settings for Default Styles, fixes
13666         * DataGridDrawingLogic.cs: default datagrid settings for Default Styles, fixes
13667         * DataGridBoolColumn.cs: default datagrid settings for Default Styles, fixes
13668         * DataGrid.cs: default datagrid settings for Default Styles, fixes
13669         * DataGridColumnStyle.cs: default datagrid settings for Default Styles, fixes
13671 2005-06-13  Jackson Harper  <jackson@ximian.com>
13673         * XplatUIX11.cs: Override SetAllowDrop on X11 so an error message
13674         isn't printed when the user enables dropping. (X11 does accept
13675         drops).
13676         
13677 2005-06-13  Jackson Harper  <jackson@ximian.com>
13679         * TreeView.cs: Remove some TODOS.
13681 2005-06-13  Jackson Harper  <jackson@ximian.com>
13683         * Form.cs: Hook into the mdi framework.
13684         * MdiClient.cs: Use the base control collections add method so
13685         parents get setup correctly. Set the default back colour and dock
13686         style.
13687         * MdiChildContext.cs: New class, this bad actor handles an
13688         instance of an MDI window. Right now there is only basic
13689         support. You can drag, close, and resize windows. Minimize and
13690         Maximize are partially implemented.
13692 2005-06-13  Jackson Harper  <jackson@ximian.com>
13694         * XplatUIX11.cs: Mash numbers together properly, otherwise we get
13695         freaky when both vals are negative. NOTE: There are probably other
13696         places in XplatUIX11 that this needs to be done.
13698 2005-06-13  Jordi Mas i Hernandez <jordi@ximian.com>
13700         * DataGrid.cs: implement missing methods, move KeyboardNavigation
13701         * DataGridColumnStyle.cs: fixes signature
13703 2005-06-12  Jackson Harper  <jackson@ximian.com>
13705         * XplatUIX11.cs: Use sizing cursors similar to the ones on
13706         windows.
13708 2005-06-11  Jackson Harper  <jackson@ximian.com>
13710         * StatusBarPanel.cs: Signature cleanups. Implement
13711         BeginInit/EndInit.
13713 2005-06-10  Jordi Mas i Hernandez <jordi@ximian.com>
13715         * DataGridTextBoxColumn.cs: Honors aligment
13716         * GridColumnStylesCollection.cs: Contains is case unsensitive
13717         * GridTableStylesCollection.cs: several fixes
13718         * DataGridTableStyle.cs: default column creation
13719         * DataGridDrawingLogic.cs: fixes
13720         * CurrencyManager.cs: ListName property
13721         * DataGrid.cs: multiple styles support
13722         * DataGridColumnStyle.cs: fixes
13723         
13725 2005-06-10  Peter Bartok  <pbartok@novell.com>
13727         * Control.cs(Select): Moved SetFocus call to avoid potential
13728           loops if controls change the active control when getting focus
13729         * UpDownBase.cs: Fixes to allow proper keyboard focus after clicking
13730           the up/down buttons
13732 2005-06-10  Matthias Felgner  <matthiasf@voelcker.ocm>
13734         * ImageListConverter.cs: Implemented
13736 2005-06-10  John BouAntoun <jba-mono@optusnet.com.au>
13738         * MonthCalendar.cs: Wired in NumericUpDown control for year
13740 2005-06-10  John BouAntoun <jba-mono@optusnet.com.au>
13742         * MonthCalendar.cs: Removed MonoTodo attributes on Click and
13743           DoubleClick events, since they are not meant to be fired.
13745 2005-06-09  Peter Bartok  <pbartok@novell.com>
13747         * UpDownBase.cs, NumericUpDown.cs, DomainUpDown.cs: Integrated
13748           Jonathan's standalone controls into MWF, implemented missing
13749           events, attributes and methods; added xxxAccessible classes
13750         * AccessibleObject.cs: Made fields internal so other classes
13751           can change them if needed
13753 2005-06-09  Jonathan Gilbert  <2a5gjx302@sneakemail.com>
13755         * UpDownBase.cs: Complete implementation
13756         * NumericUpDown.cs: Complete implementation
13757         * DomainUpDown.cs: Complete implementation
13759 2005-06-09  Jordi Mas i Hernandez <jordi@ximian.com>
13761         * DataGridTextBoxColumn.cs: drawing fixes
13762         * DataGridCell.cs: fixes ToString method to match MSNet
13763         * DataGridTableStyle.cs: fixes
13764         * DataGridBoolColumn.cs: fixes, drawing
13765         * DataGridDrawingLogic.cs: fixes, new methods
13766         * DataGridTextBox.cs: Keyboard and fixes
13767         * DataGrid.cs:
13768                 - Keyboard navigation
13769                 - Scrolling fixes
13770                 - Row selection (single, multiple, deletion, etc)
13771                 - Lots of fixes
13772         
13773 2005-06-07  Jackson Harper  <jackson@ximian.com>
13775         * ThemeWin32Classic.cs: Clear the background area when drawing
13776         buttons.
13778 2005-06-06  Peter Bartok  <pbartok@novell.com>
13780         * ImageListStreamer.cs: Fixed signature for GetData
13781         * CheckBox.cs: Fixed base class for CheckBoxAccessibleObject
13782         * ComboBox.cs:
13783           - Added missing ChildAccessibleObject class
13784           - Added missing OnXXXFocus overrides, switched to using those
13785             instead of the event handler
13786         * Control.cs:
13787           - Added Parent property for ControlAccessibleObject
13788           - Fixed signatures
13789           - Fixed attributes
13790           - Added ResetBindings()
13791         * ListBindingConverter.cs: Implemented some methods
13792         * ButtonBase.cs: Added missing ButtonBaseAccessibleObject class
13793         * ImageList.cs: Implemented basic handle scheme, removed TODOs
13794         * ContainerControl.cs: Fixed signature, now subscribing to the
13795           ControlRemoved event instead of overriding the handler, LAMESPEC
13796         * CurrencyManager.cs: Added missing attribute
13797         * MonthCalendar.cs: Added missing properties
13799 2005-06-06  Jordi Mas i Hernandez <jordi@ximian.com>
13801         * DataGridColumnStyle.cs: fixes for DataGridColumnStyle
13802         
13803 2005-06-06  Gaurav Vaish and Ankit Jain
13805         * DataSourceHelper.cs: Gaurav Vaish and Ankit Jain patch for databinding
13806         * DataGrid.cs: Gaurav Vaish and Ankit Jain patch for databinding
13807         
13808 2005-06-06  Jordi Mas i Hernandez <jordi@ximian.com>
13810         * Control.cs: fixes CreateParams Width / Height.
13812 2005-06-05  Peter Bartok  <pbartok@novell.com>
13814         * Win32DnD.cs: Removed compilation warnings
13816 2005-06-05  Peter Bartok  <pbartok@novell.com>
13818         * Control.cs (CreateParams): Since we don't know if one of the
13819           properties we use is overridden, lets make sure if we fail accessing
13820           we continue with a backup plan
13822 2005-06-05  Peter Bartok  <pbartok@novell.com>
13824         * Win32DnD.cs:
13825           - Removed debug output
13826           - Added MarshalAs attribute to ensure proper marshalling of FORMATETC
13827             struct
13828           - Plugged resource leak
13829         * XplatUIStructs.cs: Changed ClipboardFormats size to ushort, to match
13830           MS size
13832 2005-06-05  Peter Bartok  <pbartok@novell.com>
13834         * XplatUIWin32.cs: Removed DnD code
13835         * Win32DnD.cs: Implemented drop source and drop target functionality
13837 2005-06-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
13839         * UpDownBase.cs: remove duplicate addition of event, enable some code
13840         that was commented out.
13841         * NumericUpDown.cs: added missing attributes and Hexadecimal property.
13842         Validate input when a key is pressed. It works fine now for every
13843         combination of Hexadecimal. Only missing some drawing love when sharing
13844         space with other controls.
13846 2005-06-04  Peter Bartok  <pbartok@novell.com>
13848         * Control.cs:
13849           - We need to pass a window for DragDrop, so enable callback events
13850           - Added DnD callback events when being a DragSource
13851         * XplatUI.cs (StartDrag): Added window handle argument
13852         * XplatUIDriver.cs (StartDrag): Added window handle argument
13853         * QueryContinueDragEventArgs: Made fields internally accessible so
13854           drivers can set them
13855         * GiveFeedbackEventArgs: Made fields internally accessible so drivers
13856           can set them
13858 2005-06-03  Jordi Mas i Hernandez <jordi@ximian.com>
13860         * DataGridTextBoxColumn.cs: column text editing
13861         * DataGridTableStyle.cs: Respect columns styles created by the user
13862         * DataGridDrawingLogic.cs: lots of drawing fixes and enhanments
13863         * DataGridBoolColumn.cs: bool column editing
13864         * DataGrid.cs: fixes to scrolling, properties, etc
13865         * DataGridTextBox.cs: handle keyboard
13866         * DataGridColumnStyle.cs: fixes
13868 2005-06-02  Jackson Harper  <jackson@ximian.com>
13870         * ImageListStreamer.cs: Somewhat broken implementation of
13871         GetObjectData. The RLE needs some work to match MS properly.
13873 2005-06-02  Jackson Harper  <jackson@ximian.com>
13875         * X11Dnd.cs: Attempting to keep at least one file in MWF
13876         monostyled.
13878 2005-06-02  Peter Bartok  <pbartok@novell.com>
13880         * X11DnD.cs: Use Marshal.SizeOf instead of sizeof, no /unsafe required
13881           that way
13883 2005-06-02  Peter Bartok  <pbartok@novell.com>
13885         * Control.cs: Removed MonoTODO from DoDragDrop and added call to Xplat
13886         * XplatUI.cs: Added DoDragDrop() method
13887         * XplatUIDriver.cs: Added DoDragDrop() method
13889 2005-06-02  Jackson Harper  <jackson@ximian.com>
13891         * Splitter.cs: Implement BorderStyle.
13893 2005-06-02  Jackson Harper  <jackson@ximian.com>
13895         * XplatUIX11.cs: Tie into the X11Dnd subsystem.
13896         * X11Dnd.cs: New file. A subsystem that handles drag and drop on
13897         X11 using XDND.
13899 2005-06-02  Peter Bartok  <pbartok@novell.com>
13901         * DataObject.cs:
13902           - Added Data setter
13903           - Fixed broken insertion code for SetData, now also
13904             overwrites any existing entry of the same format name
13905         * Hwnd.cs: Added list of pointers that automatically gets
13906           freed when the window is disposed
13907         * XplatUI.cs: Call driver initialization method when loading
13908           a driver
13909         * Control.cs:
13910           - OnDragLeave takes EventArgs, not DragEventArgs
13911           - Added setting of WS_EX_ACCEPTFILES style when dropping is
13912             supported
13913           - Forces style update when drop state changes
13914         * XplatUIWin32.cs: Implemented Drag'n'Drop (as good as possible,
13915           not perfect since we cannot (yet) call the IDataObject.GetData()
13916           method, we keep getting 0x80004005 error, dunno why)
13918 2005-06-02  Peter Bartok  <pbartok@novell.com>
13920         * DragEventArgs.cs: Make fields internal so we can cache the
13921           object and re-set the fields from XplatUI
13923 2005-06-02  Jackson Harper  <jackson@ximian.com>
13925         * Control.cs: Add some internal methods so the DnD subsystem can
13926         raise DnD events. Also call into the driver when AllowDrop is set.
13927         * XplatUI.cs:
13928         * XplatUIDriver.cs: New method for setting whether or not a window
13929         is allowed to accept drag and drop messages.
13930                 
13931 2005-06-01  Jordi Mas i Hernandez <jordi@ximian.com>
13932         
13933         * ScrollBar.cs: Make sure that values sent in Scroll events
13934         are always between Maximum and Minimum.
13936 2005-06-01  Marek Safar  <marek.safar@seznam.cz>
13938         * Menu.cs: Call MenuChanged when menuitem visibility has been
13939         changed.
13940         * MenuItem.cs: Rebuild menu when item is (not) visible.
13941         * MainMenu.cs: MainMenu has special MenuChanged.
13942         * Theme.cs: Caption and FrameBorderSize are not fixed.
13943         * XplatUI.cs: Added CaptionHeight,FrameBorderSize.
13944         * XplatUIDriver.cs: Introduced Caption and FrameBorderSize.
13945         * XplatUIX11.cs,
13946         * XplatUIOSX: Caption and FrameBorderSize not implemented yet.
13947         * XplatUIWin32.cs: Get Caption and FrameBorderSize from system.
13949 2005-05-30  Jackson Harper  <jackson@ximian.com>
13951         * DataFormat.cs: We can't statically initialize this stuff because
13952         it calls into the xplatui and could create a loop. So we lazy init
13953         it.
13955 2005-05-28  Jackson Harper  <jackson@ximian.com>
13957         * Control.cs: Proper implementation of Product(Name/Version).
13959 2005-05-27  Jackson Harper  <jackson@ximian.com>
13961         * DataObject.cs: Dont crash if no data is found.
13963 2005-05-26  Rafael Teixeira  <rafaelteixeirabr@hotmail.com>
13964         * MdiClient.cs: Add missing Localizable attribute to BackgroundImage property
13965                 as per status page, guessing it should be set to true
13967 2005-05-26  Jordi Mas i Hernandez <jordi@ximian.com>
13969         * DataGridTextBoxColumn.cs: Draws text and basic text formatting
13970         * DataGridTableStyle.cs: set proper formatting text, def header text
13971         * ThemeWin32Classic.cs: new themable paramaters
13972         * DataGridBoolColumn.cs: paint check box, get data, fixes
13973         * DataGridDrawingLogic.cs: huge improvements in painting, fixes, new methods
13974         * DataGrid.cs: fixes properties, implements vertical and horizontal scrolling
13975         * DataGridColumnStyle.cs: fixes
13976         * Theme.cs: new themable paramaters
13977                 
13978 2005-05-26  Peter Bartok  <pbartok@novell.com>
13980         * ContainerControl.cs: Pass AdjustFormScrollbars() call on to base
13982 2005-05-24 Jonathan S. Chambers <jonathan.chambers@ansys.com>
13983         * Control.cs: Fixed LowOrder and HighOrder to preserve sign.
13985 2005-05-24  Peter Bartok  <pbartok@novell.com>
13987         * OpenFileDialog.cs, Form.cs, Menu.cs, GroupBox.cs, UserControl.cs,
13988           Label.cs, DataGridTextBoxColumn.cs, PropertyGrid.cs, ErrorProvider.cs
13989           Splitter.cs, Control.cs, FontDialog.cs, TabPage.cs,
13990           FolderBrowserDialog.cs, HelpProvider.cs, DataGridTableStyle.cs,
13991           NotifyIcon.cs, FileDialog.cs, ListView.cs, SaveFileDialog.cs,
13992           ToolBarButton.cs, ImageList.cs, DataGridBoolColumn.cs, Panel.cs,
13993           DataGrid.cs, DataGridTextBox.cs, ListBox.cs, TrackBar.cs,
13994           AxHost.cs, TabControl.cs, ScrollableControl.cs, ToolBar.cs,
13995           DataGridColumnStyle.cs, PictureBox.cs, DateTimePicker.cs,
13996           StatusBar.cs, MonthCalendar.cs, TreeView.cs: Added
13997           missing attributes, etc
13998         * DataGridPreferredColumnWidthTypeConverter.cs: Added
14000 2005-05-24  Peter Bartok  <pbartok@novell.com>
14002         * Help.cs: Added, implemented trivial functions, throws up MessageBox
14003           when user tries to get help
14004         * DataObject.cs, DataFormats.cs, LinkArea.cs,
14005           SelectionRangeConverter.cs, Clipboard.cs : Removed unused variables
14006           to suppress warnings
14007         * XplatUIWin32.cs, XplatUIOSX.cs, XplatUIX11.cs: Removed unused code to
14008           avoid unreachable code warning
14010 2005-05-20  Peter Bartok  <pbartok@novell.com>
14012         * CursorConverter.cs (ConvertTo): Switched to use Cursor.GetObjectData
14014 2005-05-20  Jordi Mas i Hernandez <jordi@ximian.com>
14016         * DataGridTextBoxColumn.cs: Basic painting methods
14017         * DataGridTableStyle.cs: Set table style in the column
14018         * ThemeWin32Classic.cs: Use Theme for colors
14019         * DataGridDrawingLogic.cs: Implement more drawing
14020         * DataGrid.cs: drawing, theming, enhacements, fixes
14021         * DataGridColumnStyle.cs: fixes, drawing
14022         * Theme.cs: theming for Datagrid
14024 2005-05-20  Peter Bartok  <pbartok@novell.com>
14026         * Cursor.cs: Implemented GetObjectData() method
14028 2005-05-20  Peter Bartok  <pbartok@novell.com>
14030         * Cursors.cs: Added setting of cursor name
14031         * Cursor.cs:
14032           - Implemented constructors
14033           - Implemented Draw and DrawStretched
14034           - Implemented Current property
14035           - Implemented == and != operators
14036           - Implemented Dispose()
14037           - Implemented ToString
14038           - Added missing attributes
14039         * XplatUIX11.cs:
14040           - Added missing reset for OverrideCursor when DoEvents is called
14041           - Fixed creation of cursor, logic was wrong
14042         * XplatUIWin32.cs:
14043           - Added missing reset for OverrideCursor when DoEvents is called
14044           - Fixed creation of cursor, bit arrays were swapped
14045         * Clipboard.cs: Removed obsolete MonoTODO attribute
14047 2005-05-20  Jordi Mas i Hernandez <jordi@ximian.com>
14049         * ComboBox.cs: fixes OnSelectedItemChanged
14050         * ControlBindingsCollection.cs: fixes item range check
14052 2005-05-20  Jordi Mas i Hernandez <jordi@ximian.com>
14054         * UpDownBase.cs:
14055                 - Calc preferred height properly
14056                 - Implement missing properties
14057                 
14058         * NumericUpDown.cs: Implement missing events
14060 2005-05-19  Jackson Harper  <jackson@ximian.com>
14062         * TabControl.cs: New method that resizes the tab pages before
14063         redrawing them. This as needed as the control is double buffered
14064         and sizing will not be recalculated unless ResizeTabPages is
14065         called.
14066         * TabPage.cs: Set base.Text instead of Text in the constructor so
14067         that UpdateOwner does not get called. Use the new Redraw method of
14068         TabControl instead of Refresh so the sizing is recalculated.
14069         * ThemeWin32Classic.cs: Draw the text for button tabs.
14071 2005-05-19  Jackson Harper  <jackson@ximian.com>
14073         * Control.cs: Paint control background images. Fix typo where
14074         PaintControlBackground was not getting called correctly.
14076 2005-05-19  Peter Bartok  <pbartok@novell.com>
14078         * ScrollableControl.cs (DisplayRectangle): Undid my last change until
14079           I can investigate, apparently I broke FileDialog
14081 2005-05-19  Marek Safar  <marek.safar@seznam.cz>
14083         * AxHost.cs: Some simple properties.
14084         * Control.cs: window must be accessible after ctor.
14085         * Form.cs: Added TransparencyKey property.
14086         * TextBoxBase.cs: Implemented Clear. Text property can be null.
14087         * XplatUIWin32.cs: SetBorderStyle implemented.
14089 2005-05-18  Peter Bartok  <pbartok@novell.com>
14091         * DataObject.cs: Entries are not global but particular to the
14092           DataObject, now it behaves that way
14093         * XplatUIWin32.cs: Implemented Clipboard methods
14094         * Clipboard.cs: Implemented
14095         * ScrollableControl.cs (DisplayRectangle): Fixed calculation
14096         * XplatUIOSX.cs: Updated to final clipboard prototypes
14097         * XplatUIX11.cs: Implemented Clipboard methods
14098         * XplatUIDriver.cs: Updated to final clipboard prototypes
14099         * XplatUIStructs.cs:
14100           - Added BITMAPINFOHEADER struct
14101           - Added ClipboardFormats enum
14102         * X11Structs.cs:
14103           - Added ClipboardStruct
14104           - Added Atom enum items for clipboard types
14105           - Fixed atom types for Selection event structures
14106         * DataFormats.cs:
14107           - Added internal properties and methods for drivers to enumerate
14108             all known formats
14109           - Switched initialization method to allow drivers to assign their
14110             own IDs even for the MS predefined clipboard IDs
14111         * XplatUI.cs: Updated to final clipboard interface
14113 2005-05-18 Jonathan S. Chambers <jonathan.chambers@ansys.com>
14114         * PropertyGridView.cs: Fixed compiler warnings.
14116 2005-05-18 Jonathan S. Chambers <jonathan.chambers@ansys.com>
14117         * PropertyGrid.cs: Added some event calls
14118         * PropertyGridView.cs: Change drawing code to use double buffering
14119         * PropertyGridTextBox.cs: Changed Text property name
14120         * GridItem.cs: Added Bounds property.
14121         * GridEntry.cs: Added Bounds property.
14123 2005-05-17  Lluis Sanchez Gual  <lluis@novell.com>
14125         * Binding.cs: Use IsInstanceOfType instead of IsAssignableFrom
14126         since GetType() may not return the correct type if the object is
14127         a remoting proxy.
14129 2005-05-17  Jordi Mas i Hernandez <jordi@ximian.com>
14131         * TreeNodeCollection.cs: fixes get/set item ranges
14132         
14133 2005-05-15  Jordi Mas i Hernandez <jordi@ximian.com>
14135         * ListBox.cs: Kazuki Oikawa's PreferredHeight and ItemHeight fixes
14136                 
14137 2005-05-15  Jordi Mas i Hernandez <jordi@ximian.com>
14139         * ComboBox.cs: Fix item range comparation
14140         * ListView.cs: Fix item range comparation
14142 2005-05-03  Alexander Olk  <xenomorph2@onlinehome.de>
14144         * FontDialog.cs:
14145           - Clear example panel when OnPaint is called
14146           - Better solution for displaying the example panel text
14147           - Select default indexes in the ListBoxes
14149 2005-05-11  Geoff Norton  <gnorton@customerdna.com>
14151         * XplatUIOSX.cs: Avoid painting into invisible views.  Fixes #74926
14153 2005-05-11  Peter Bartok  <pbartok@novell.com>
14155         * LinkArea.cs: Added and implemented LinkAreaTypeConverter class
14156         * SelectionRangeConverter.cs: Implemented
14157         * PropertyGrid.cs: Fixed attribute value
14158         * Control.cs:
14159           - Invoke(): Don't call Begin/EndInvoke if it is not neccessary
14160           - Added Sebastien Pouliot's CAS Stack Propagation fixes
14161         * XplatUIDriver.cs: Added new XplatUIDriverSupport class, for code
14162           that's common to all drivers. First methods to go there are
14163           Sebastien Pouliot's CAS Stack Propagation helper methods
14164         * XplatUIWin32.cs, XplatUIX11.cs, AsyncMethodData.cs: Fixes by
14165           Sebastien Pouliot for CAS Stack Propagation
14167 2005-05-11  Geoff Norton  <gnorton@customerdna.com>
14169         * OSXStructs.cs:
14170           XplatUIOSX.cs: More cosmetic cleanup courtesy of Artyom Tyazhelov (Artyom.Tyazhelov@helmes.ee)
14172 2005-05-12  Jordi Mas i Hernandez <jordi@ximian.com>
14174         * DataGridTextBoxColumn.cs: fixed some members
14175         * GridColumnStylesCollection.cs: indexed column is case insensitive
14176         * DataGridTableStyle.cs: fixes
14177         * ThemeWin32Classic.cs: add new theme parameter
14178         * Theme.cs: add new theme parameter
14179         * DataGridDrawingLogic.cs: Datagrid's drawing logic
14180         * DataGrid.cs: fixes, new internal properties, etc.
14181         * DataGridColumnStyle.cs: allows to set grid value
14182         *
14184 2005-05-10  Peter Bartok  <pbartok@novell.com>
14186         * AccessibleObject.cs:
14187           - Removed MonoTODO attribute on help, method is correct
14188           - Fixed Bounds property
14189         * AxHost.cs: Moved MonoTODO
14190         * ButtonBase.cs: Now setting AccessibleObject properties
14191         * RadioButton.cs: Setting proper AccessibleObject role
14192         * CheckBox.cs: Setting proper AccessibleObject role
14193         * ControlBindingsCollection.cs: Added properties, methods and attributes
14194         * DataFormats.cs: Fixed awkward internal API, and changed to enable
14195           userdefined DataFormats.Format items as well
14196         * ListControl.cs: Removed data_member from the public eye
14197         * OpenFileDialog.cs:
14198           - Made class sealed
14199           - Added missing attributes
14200         * SaveFileDialog.cs: Added missing attributes
14201         * ImageListStreamer.cs: Fixed code that caused warnings
14202         * LinkLabel.cs: Removed unreachable code
14203         * TreeView.cs: Fixed code that caused warnings
14204         * PropertyGridView.cs: Fixed code that caused warnings
14205         * GridColumnStylesCollection.cs: Added missing attributes
14206         * GridTableStylesCollection: Added missing attribute
14207         * PropertyManager: Added .ctor
14208         * SecurityIDType: Added
14209         * DataObject.cs: Implemented class
14210         * LinkArea.cs: Added missing attribute
14212 2005-05-11  Jordi Mas i Hernandez <jordi@ximian.com>
14214         * RadioButton.cs: call base method to allow to fire OnClick event
14215         * UpDownBase.cs: OnMouseUp call base method
14216         * CheckedListBox.cs: call base method before returning
14217         * TrackBar.cs: call base method before returning
14218         
14220 2005-05-10  Peter Bartok  <pbartok@novell.com>
14222         * XplatUIX11.cs: Fix for #74902, check pending timers when peeking
14223           for messages
14225 2005-05-10  Peter Bartok  <pbartok@novell.com>
14227         * DataFormats.cs: Implemented
14228         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs,
14229           XplatUIX11.cs: Added Clipboard APIs
14230         * XplatUIWin32.cs: Implemented Clipboard APIs
14231         * FolderBrowserDialog.cs: Added missing event, attributes
14233 2005-05-10  Jordi Mas i Hernandez <jordi@ximian.com>
14235         * CheckBox.cs: call base method to allow to fire OnClick event
14237 2005-05-09  Sebastien Pouliot  <sebastien@ximian.com>
14239         * XplatUI.cs: Use PlatformID.Unix under NET_2_0.
14241 2005-05-06  Peter Bartok  <pbartok@novell.com>
14243         * XplatUIX11.cs: Redid Jackson's fix, it was causing a busy loop
14244         * Screen.cs: Implemented
14245         * HelpNavigator.cs: Added
14246         * XplatUIWin32.cs: Added SystemParametersInfo call, fixed WorkArea
14247           property
14248         * HelpProvider.cs: Implemented all we can do until we have a CHM
14249           help library (which means that "What's This" does work now)
14251 2005-05-06  Jackson Harper  <jackson@ximian.com>
14253         * XplatUIX11.cs: Fix waking up the main loop.
14254                 
14255 2005-05-05  Peter Bartok  <pbartok@novell.com>
14257         * XplatUI.cs: Updated revision
14258         * Form.cs: Removed enless loop
14259         * GroupBox.cs (OnPaint): Added call to base.OnPaint()
14260         * Label.cs (OnPaint): Added call to base.OnPaint()
14261         * ToolTip.cs: Made ToolTipWindow reusable for other controls
14262         * LinkLabel.cs (OnPaint): Added call to base.OnPaint()
14263         * UpDownBase.cs (OnPaint): Moved base.OnPaint() call to end of method
14264         * AxHost.cs: Added
14265         * ButtonBase.cs: Moved base.OnPaint() call to end of method
14266         * ThemeWin32Classic.cs: Replaced references to ToolTip with references
14267           to ToolTip.ToolTipWindow for drawing and size methods; this allows
14268           reuse of ToolTipWindow by other controls
14269         * SizeGrip.cs: Moved base.OnPaint() call to end of method
14270         * XplatUIX11.cs: Now clipping drawing area (experimental)
14271         * PictureBox.cs: Moved base.OnPaint() call to end of method
14272         * Theme.cs: Fixed ToolTip abstracts to match new format
14273         * ErrorProvider.cs: Implemented
14275 2005-05-05  Jordi Mas i Hernandez <jordi@ximian.com>
14277         * Label.cs: fire events using OnAutoSizeChanged and OnTextAlignChanged
14278         * LinkLabel.cs:
14279                 - Adds cursors
14280                 - Handles focus
14281                 - Implements LinkBehavior
14282                 - Fixes many issues
14284 2005-05-03  Jackson Harper  <jackson@ximian.com>
14286         * ListView.cs: Calculate the scrollbar positioning on resize and
14287         paint, so they get put in the correct place.
14289 2005-05-03  Alexander Olk  <xenomorph2@onlinehome.de>
14291         * ColorDialogs.cs: The small color panels are now handled by
14292           SmallColorControl. This fixes drawing of the focus rectangle
14293           and adds a 3D border.
14295 2005-05-03  Peter Bartok  <pbartok@novell.com>
14297         * Control.cs: Modified version of Jonathan Chamber's fix for
14298           double-buffering
14300 2005-05-03  Jackson Harper  <jackson@ximian.com>
14302         * ListView.cs: Remove redraw variable. Control now handles whether
14303         or not a redraw needs to be done, and will only raise the paint
14304         event if redrawing is needed.
14306 2005-05-03  Jackson Harper  <jackson@ximian.com>
14308         * Splitter.cs: No decorations for the splitter form. Cache the
14309         hatch brush.
14311 2005-05-03  Jackson Harper  <jackson@ximian.com>
14313         * TreeView.cs: Use dashed lines to connect nodes. Use the
14314         ControlPaint method for drawing the focus rect instead of doing
14315         that in treeview.
14317 2005-05-02  Peter Bartok  <pbartok@novell.com>
14319         * LinkLabel.cs: Fixed the fixes from r43566 and 43521
14321 2005-04-29  Jackson Harper  <jackson@ximian.com>
14323         * ThemeWin32Classic.cs: Don't clear the GC that will clear the
14324         entire image buffer. Just clear the clipping rectangle.
14326 2005-04-29  Jackson Harper  <jackson@ximian.com>
14328         * ThemeWin32Classic.cs: Don't draw list view items that are
14329         outside the clipping rectangle.
14331 2005-04-29  Jordi Mas i Hernandez <jordi@ximian.com>
14333         * ListBox.cs: added horizontal item scroll
14335 2005-04-29  Jackson Harper  <jackson@ximian.com>
14337         * ThemeWin32Classic.cs: Remove some old debug code that was
14338         causing flicker with the new double buffering code.
14340 2005-04-29  John BouAntoun  <jba-mono@optusnet.com.au>
14342         * MonthCalendar.cs, DateTimePicker.cs: Made monthcalendar dropdwon
14343         behave like combobox and comboboxlist (still not sure if this is
14344         correct though).
14346 2005-04-28  Jackson Harper  <jackson@ximian.com>
14348         * ThemeWin32Classic.cs: Don't fill the middle of progress
14349         bars. This fills areas outside of the clip bounds that don't need
14350         to be filled.
14352 2005-04-28  Jackson Harper  <jackson@ximian.com>
14354         * Control.cs: Don't expose functionality to touch the image buffers.
14355         * ProgressBar.cs:
14356         * ListView.cs: We do not need to (and no longer can) manipulate
14357         the image buffers directly. All of this is handled by Control.
14359 2005-04-28  Peter Bartok  <pbartok@novell.com>
14361         * RichTextBoxSelectionAttribute.cs, RichTextBoxSelectionTypes.cs,
14362           RichTextBoxScrollBars.cs, RichTextBoxStreamType.cs,
14363           RichTextBoxFinds.cs, RichTextBoxWordPunctuations.cs: Added
14365 2005-04-28  Jordi Mas i Hernandez <jordi@ximian.com>
14367         * Combobox:
14368                 - Adjust control's height for non-simple comboboxes (bug fix)
14369                 - Remove dead code
14370         * MenuAPI.cs: remove unused var
14371         * ScrollBar.cs: remove unsed var
14372                  
14373         * ListBox.cs: unselect items when clearing
14375 2005-04-28  Jordi Mas i Hernandez <jordi@ximian.com>
14377         * ListControl.cs: honors OnPositionChanged and default Selected Item
14378         * ListBox.cs: unselect items when clearing
14380 2005-04-27  Jackson Harper  <jackson@ximian.com>
14382         * X11Keyboard.cs: Initialize a default keyboard and give a warning
14383         if a "correct" keyboard is not found. This will make us not crash,
14384         but might give some users bad keyboard layouts...seems to be the
14385         same thing rewind does.
14387 2005-04-27  Jackson Harper  <jackson@ximian.com>
14389         * BindingManagerBase.cs: Attach the current/position changed
14390         handlers to their respective events.
14392 2005-04-27  Jackson Harper  <jackson@ximian.com>
14394         * Control.cs: Make sure that the first WM_PAINT does a full draw,
14395         not just a blit.
14396         * ThemeWin32Classic.cs: Don't fill the background for picture
14397         boxes. This could overright user drawing.
14398         * ComboBox.cs: Just fill the clipping rect not the entire client
14399         rect when drawing the background. This prevents pieces of the
14400         image buffer from getting overwritten and is theoretically faster.
14402 2005-04-26  Jordi Mas i Hernandez <jordi@ximian.com>
14404         * ComboBox.cs: Databinding support fixes, fire missing events
14405         * ListControl.cs: implement missing methods and properties, fixes
14406         * ThemeWin32Classic.cs: Databiding support on Drawing
14407         * CheckedListBox.cs: Databinding support fixes, fire missing events
14408         * ListBox.cs: Databinding support fixes, fire missing events
14409         
14410 2005-04-25  Peter Bartok  <pbartok@novell.com>
14412         * LinkLabel.cs: Length of LinkArea is not allowed to be negative
14414 2005-04-25  Jackson Harper  <jackson@ximian.com>
14416         * TreeView.cs: Use the horizontal scrollbars height not width when
14417         determining how much of the client area is available.
14419 2005-04-25  Jackson Harper  <jackson@ximian.com>
14421         * Control.cs: Double buffering is handled differently now. As per
14422         the spec, the extra buffer is created in the WM_PAINT message and
14423         passed down to the control's drawing code.
14424         * GroupBox.cs:
14425         * Label.cs:
14426         * CheckBox.cs:
14427         * ProgressBar.cs:
14428         * RadioButton.cs:
14429         * ColorDialog.cs:
14430         * ComboBox.cs:
14431         * PropertyGridView.cs:
14432         * UpDownBase.cs:
14433         * MessageBox.cs:
14434         * MenuAPI.cs:
14435         * ListView.cs:
14436         * ButtonBase.cs:
14437         * SizeGrip.cs:
14438         * ScrollBar.cs:
14439         * ListBox.cs:
14440         * TrackBar.cs:
14441         * ToolBar.cs:
14442         * PictureBox.cs:
14443         * DateTimePicker.cs:
14444         * StatusBar.cs:
14445         * TreeView.cs: Update to new double buffering system.
14446         * MonthCalendar.cs: Uncomment block, as Capture is now
14447         working. Update to new double buffering
14448         * LinkLabel.cs: Lazy init the link collection. Update to new double buffering
14449         * PaintEventArgs.cs: New internal method allows us to set the
14450         graphics object. This is used for double buffering.
14451         * ThemeWin32Classic.cs: Give the picture box drawing code a clip
14452         rectangle. The internal paint_area var has been removed from
14453         StatusBar. The clipping rect should be used instead.
14454         * Theme.cs: Give the PictureBox drawing method a clipping rect.
14455         * TabPage.cs: The RefreshTabs method was removed, so just call the
14456         tab controls Refresh method now.
14457         * TabControl.cs: Update to new double buffering. Make sure the
14458         handle is created before sizing the tab pages, otherwise we will
14459         get stuck in a loop.
14461 2005-04-24  Borja Sanchez Zamorano <borsanza@gmail.com>
14463         * LinkLabel.cs: Fix typo, bug #74719; patch
14464           from Borja Sanchez Zamorano
14466 2005-04-22  Jackson Harper  <jackson@ximian.com>
14468         * TreeNode.cs: Implement Handle stuff.
14469         * TreeView.cs: Utility methods so nodes can get/lookup by handle.
14471 2005-04-22  Jordi Mas i Hernandez <jordi@ximian.com>
14473         * DataGridTextBoxColumn.cs: call base constructors, fixes
14474         * GridColumnStylesCollection.cs: missing events, methods, and functionality
14475         * GridTableStylesCollection.cs: fixes, check duplicate mapping names
14476         * DataGridTableStyle.cs: implements create default column styles
14477         * DataGridBoolColumn.cs: which types can handle
14478         * DataGrid.cs: missing methods, fixes, new functionality
14479         * DataGridColumnStyle.cs: fixes
14481 2005-04-20  Alexander Olk  <xenomorph2@onlinehome.de>
14482         * FolderBrowserDialog.cs:
14483         - Use a thread to fill the TreeView
14484         - Adjusted some sizes
14486 2005-04-19  Peter Bartok  <pbartok@novell.com>
14488         * LinkLabel.cs: (Re-)create the pieces when setting the Text
14489           property. Fixes #74360.
14491 2005-04-19  Jackson Harper  <jackson@ximian.com>
14493         * XEventQueue.cs: Lock when getting the lockqueue size.
14494         * PictureBox.cs: Call base OnPaint
14495         
14496 2005-04-19  Peter Bartok  <pbartok@novell.com>
14498         * XplatUIX11.cs: Fixed bug introduced with the HWND rewrite, Async
14499           messages were no longer being processed (this broke BeginInvoke)
14501           
14502 2005-04-18  Jackson Harper  <jackson@ximian.com>
14504         * TreeView.cs: buglet that caused node images to get drawn
14505         regardless of whether or not they were in the clipping rectangle.
14507 2005-04-18  Jackson Harper  <jackson@ximian.com>
14509         * CurrencyManager.cs: There are four rules for GetItemProperties:
14510         - If the type is an array use the element type of the array
14511         - If the type is a typed list, use the type
14512         - If the list contains an Item property that is not an object, use
14513         that property
14514         - use the first element of the list if there are any elements in
14515         the list.
14516         
14517 2005-04-17  Jackson Harper  <jackson@ximian.oom>
14519         * TreeView.cs: Calculate plus minus and checkbox bounds when there is a
14520         click. This handles offsets for scrolling properly and reduces
14521         memory. Also fixed GetNode to not offset now that TopNode works
14522         properly.
14523         * TreeNode.cs: No longer need to track the plus minus or checkbox bounds.
14524         
14525 2005-04-17  Jackson Harper  <jackson@ximian.com>
14527         * CursorConverter.cs: Initial implementation.
14529 2005-04-15  Jordi Mas i Hernandez <jordi@ximian.com>
14531         * ListControl.cs: work towards complex data binding support on ListControl
14532         * CurrencyManager.cs: work towards complex data binding support on ListControl
14533         * ListBox.cs: work towards complex data binding support on ListControl
14536 2005-04-15  Jordi Mas i Hernandez <jordi@ximian.com>
14538         * GridTableStylesCollection.cs: fixes name and constructor
14539         * DataGridTableStyle.cs: fixes
14540         * DataGridBoolColumn.cs: fixes names and constructors
14541         * DataGrid.cs: define methods and properties. Some init implementations
14542         * DataGridCell.cs: define methods and properties. Some init implementations
14543         * GridTablesFactory.cs: Define methods and properties
14545 2005-04-15  Geoff Norton  <gnorton@customerdna.com>
14547         * XplatUIOSX.cs:  Handle proper mouse tracking even if the current
14548         graphics port changes.  We still want the coordinates in global screen
14549         coordinates.
14551 2005-04-14  Jackson Harper  <jackson@ximian.com>
14553         * TreeView.cs: Handle clicks when plus minus is disabled. Don't
14554         check plus minus or checkbox clicks unless those features are enabled.
14556 2005-04-14  Jackson Harper  <jackson@ximian.com>
14558         * TreeView.cs: Add methods for setting the top and bottom visible
14559         nodes. TreeNode::EnsureVisible uses these methods.
14560         * TreeNode.cs: Implement EnsureVisible
14562 2005-04-13  Jordi Mas i Hernandez <jordi@ximian.com>
14564         * Form.cs: Pospone menu assignation if the window has not been created yet
14565         * XplatUIWin32.cs: Fixes Win32SetWindowPos, then does not change window
14566         size and position
14568 2005-04-12  Jackson Harper  <jackson@ximian.com>
14570         * TreeView.cs: Set the TopNode properly when scrolling
14571         occurs. This has the added benifit of reducing the amount of
14572         walking that needs to be done when drawing. Also removed an old
14573         misleading TODO.
14574         * OpenTreeNodeEnumerator.cs: Fix moving backwards.
14575         
14576 2005-04-11  Jordi Mas i Hernandez <jordi@ximian.com>
14578         * Timer.cs: fixes interval setting when the timer is already enabled
14579         
14580 2005-04-10  Alexander Olk  <xenomorph2@onlinehome.de>
14582         * FolderBrowserDialog.cs: First approach
14584 2005-04-09  Peter Bartok  <pbartok@novell.com>
14586         * FolderBrowserDialog: Added
14588 2005-04-07  Jordi Mas i Hernandez <jordi@ximian.com>
14590         * LinkLabel.cs: move drawing code into the theme
14591         * ThemeWin32Classic.cs: drawing code and painting background bugfix
14592         * Theme.cs: define DrawLinkLabel method
14594 2005-04-05  Jackson Harper  <jackson@ximian.com>
14596         * BindingContext.cs: Use weak references so these bad actors don't
14597         stay alive longer then they need to.
14599 2005-04-05  Jackson Harper  <jackson@ximian.com>
14601         * ListControl.cs: Basic implementation of complex databinding.
14602         * ComboBox.cs:
14603         * ListBox.cs: Add calls to ListControl databinding methods.
14605 2005-04-05  Alexander Olk  <xenomorph2@onlinehome.de>
14607         * FileDialog.cs:
14608           - Don't change PopupButtonState to Normal when the
14609             PopupButton gets pressed several times.
14610           - Renamed ButtonPanel to PopupButtonPanel
14612 2005-04-05  Jordi Mas i Hernandez <jordi@ximian.com>
14614         * ColorDialog.cs: Use cached objects instead of creating them
14615         * LinkLabel.cs: Use cached objects instead of creating them
14616         * Splitter.cs: Use cached objects instead of creating them
14617         * FontDialog.cs: Use cached objects instead of creating them
14618         * PropertyGridView.cs: Use cached objects instead of creating them
14619         * MessageBox.cs: Use cached objects instead of creating them
14620         * FileDialog.cs: Use cached objects instead of creating them
14621         * ThemeWin32Classic.cs: Use cached objects instead of creating them
14622         * TreeView.cs: Use cached objects instead of creating them
14623         
14624 2005-04-04  Jordi Mas i Hernandez <jordi@ximian.com>
14626         * Control.cs: use Equals to compare the font since no == op
14627         * ScrollBar.cs: use Equals to compare the font since no == op
14629 2005-04-04  Alexander Olk  <xenomorph2@onlinehome.de>
14631         * SaveFileDialog.cs: Open stream in OpenFile with FileMode Create
14633 2005-04-01  Jackson Harper  <jackson@ximian.com>
14635         * Binding.cs: Implement IsBinding.
14636         * BindingManagerBase.cs:
14637         * PropertyManager.cs:
14638         * CurrencyManager.cs: Add IsSuspended property.
14640 2005-04-01  Jackson Harper  <jackson@ximian.com>
14642         * Binding.cs: Had some IsAssignableFrom calls backwards.
14644 2005-04-01  Jackson Harper  <jackson@ximian.com>
14646         * Binding.cs: Handle null data members when pulling data.
14647         * PropertyManager.cs: Handle the data member being a property that
14648         does not exist.
14650 2005-04-01  Jordi Mas i Hernandez <jordi@ximian.com>
14652         * DataGridTextBoxColumn.cs: fixes signature
14653         * DataGrid.cs: calls right constructor
14655 2005-04-01  Jordi Mas i Hernandez <jordi@ximian.com>
14657         * DataGridTextBoxColumn.cs: implements DataGridTextBoxColumn class
14658         * GridColumnStylesCollection.cs: implements GridColumnStylesCollection
14659         * GridTableStylesCollection.cs: implements GridTableStylesCollection
14660         * DataGridTableStyle.cs: implements DataGridTableStyle
14661         * DataGridBoolColumn.cs: implements DataGridBoolColumn
14662         * DataGridTextBox.cs: implements DataGridTextBox
14663         * DataGridColumnStyle.cs: implements DataGridColumnStyle
14665 2005-03-31  Alexander Olk  <xenomorph2@onlinehome.de>
14667         * FileDialog.cs: Added simple PopupButton class for ButtonPanel
14669 2005-03-29  Peter Bartok  <pbartok@novell.com>
14671         * Application.cs:
14672           - Properly implemented CompanyName property
14673           - Fixed LocalUserAppDataPath and UserAppDataPath, now properly
14674             returns a path that includes CompanyName, ProductName and
14675             Version (fixes bug #70330)
14677 2005-03-29  Stefan Buehler  <sbuehler@gmx.ch>
14679         * TabPage.cs: Don't use Owner.DisplayRectangle unless owner is valid,
14680           fixes bug #72588.
14682 2005-03-28  Alexander Olk  <xenomorph2@onlinehome.de>
14684         * FileDialog.cs, SaveFileDialog.cs OpenFileDialog.cs:
14685         
14686           - Added ReadOnly CheckBox
14687           - Further refactoring: moved some code from Open-/SaveFileDialog
14688             to FileDialog
14690 2005-03-28  Alexander Olk  <xenomorph2@onlinehome.de>
14692         * OpenFileDialog.cs: Fixed CheckFileExists
14693         * FileDialog.cs:
14694           Moved FileView and DirComboBox outside FileDialog class.
14695           They can now be used outside FileDialog
14697 2005-03-27  Alexander Olk  <xenomorph2@onlinehome.de>
14699         * FileDialog.cs: Added a contextmenu to change ShowHiddenFiles
14700         * SaveDialog.cs, OpenFileDialog.cs: Fixes for Reset() method
14702 2005-03-27  Alexander Olk  <xenomorph2@onlinehome.de>
14704         * FileDialog.cs, OpenFileDialog.cs, SaveFileDialog.cs:
14705           - Added missing CreatePrompt property in SaveDialog
14706           - Overall SaveDialog handling should be better now
14707           - Added non standard ShowHiddenFiles property
14708           - Added extension, CreatePrompt and OverwritePrompt support in SaveDialog
14709           - Added InitialDirectory and RestoreDirectory support
14711 2005-03-26  Alexander Olk  <xenomorph2@onlinehome.de>
14713         * FileDialog.cs: Made dirComboBox usable
14715 2005-03-24  Alexander Olk  <xenomorph2@onlinehome.de>
14717         * FileDialog.cs: Added Filter support (case sensitiv)
14719 2005-03-24  Jackson Harper  <jackson@ximian.com>
14721         * TabControl.cs: Need a couple more pixels for the lines.
14723 2005-03-23  Jackson Harper  <jackson@ximian.com>
14725         * TabControl.cs: Give the tab page focus when it is selected.
14727 2005-03-23  Jackson Harper  <jackson@ximian.com>
14729         * TabControl.cs: Account for the drawing of tabs borders when
14730         invalidating. If the slider was clicked dont do click detection on
14731         the tabs.
14733 2005-03-23  Jackson Harper  <jackson@ximian.com>
14735         * TabControl.cs: Fix typo, emilinates an unneeded expose event.
14737 2005-03-22  Jonathan Chambers  <jonathan.chambers@ansys.com>
14739         * CategoryGridEntry.cs: Added
14740         * GridItem.cs: Added helper properties
14741         * PropertyGridTextBox.cs: Custom textbox control for PropertyGrid.
14742         * GridEntry.cs: Updated code for collection
14743         * PropertyGrid.cs: Cleaned up some formatting
14744         * PropertyGridView.cs: Added drop down functionality for enums.
14745         * GridItemCollection.cs: Added enumerator logic
14746         * PropertyGridEntry.cs: Added
14748 2005-03-19  Alexander Olk  <xenomorph2@onlinehome.de>
14750         * FileDialog.cs:
14751           - Removed unnecessary commented code
14752           - Fixed handling for entering the filename manually in the combobox
14754 2005-03-19  Alexander Olk  <xenomorph2@onlinehome.de>
14756         * FileDialog.cs, OpenFileDialog.cs: OpenFileDialog Multiselect now works
14758 2005-03-18  Peter Bartok  <pbartok@novell.com>
14760         * ThemeWin32Classic.cs: Moved listview column headers a bit, to avoid
14761           them being touching the border
14763 2005-03-18  Peter Bartok  <pbartok@novell.com>
14765         * TextControl.cs: Quick hack to center text better
14767 2005-03-18  Peter Bartok  <pbartok@novell.com>
14769         * ControlPaint.cs:
14770           - Don't throw NotImplemented exceptions, just print a notice once
14771             instead (requested by Miguel). This makes running existing SWF
14772             apps a bit easier
14773         * Control.cs:
14774           - Commented out Drag'N'Drop XplatUI call (no driver support yet)
14775           - Added context menu trigger on right click
14776         * Panel.cs: Trigger invalidate on resize
14777         * StatusBar.cs:
14778           - Removed old double-buffer drawing
14779           - Added ResizeRedraw style to force proper update of statusbar
14780         * ListView.cs:
14781           - Removed debug output
14782         * ThemeWin32Classic.cs:
14783           - Fixed drawing of status bar, now draws Text property if there
14784             are no defined panels
14786 2005-03-18  Jackson Harper  <jackson@ximian.com>
14788         * ImageList.cs: When the image stream is set pull all the images
14789         from it.
14790         * ImageListStreamer.cs: Implement reading image list streams.
14792 2005-03-18  Peter Bartok  <pbartok@novell.com>
14794         * ThemeWin32Classic.cs (DrawPictureBox):
14795           - Fixed calculations for centered drawing
14796           - Fixed drawing for normal mode, not scaling the image on normal
14798 2005-03-18  Peter Bartok  <pbartok@novell.com>
14800         * ComboBox.cs: Now also firing the OnKeyPress events for the embedded
14801           textbox
14802         * FileDialog.cs:
14803           - Made Open/Save button the accept button for FileDialog
14804           - Tied the cancel button to the IButtonControl cancel button
14805           - Save/Open now properly builds the pathname
14806           - Now handles user-entered text
14807           - Preventing crash on right-click if no item is selected
14808           - Fixed Text property, now uses contents of textbox
14809           - Fixed SelectedText property, now just returns the text part that
14810             is selected in the text box
14812 2005-03-18  Jackson Harper  <jackson@ximian.com>
14814         * ThemeWin32Classic.cs: Use the proper func for drawing the focus
14815         rect, make sure to de-adjust the interior rect after drawing the
14816         tab text.
14818 2005-03-18  Peter Bartok  <pbartok@novell.com>
14820         * MenuAPI.cs: Remove menu *before* executing selected action to
14821           prevent the menu from 'hanging around'
14822           
14823 2005-03-17  Geoff Norton  <gnorton@customerdna.com>
14825         * XplatUIOSX.cs: Implemented WorkingArea property
14827 2005-03-17  Peter Bartok  <pbartok@novell.com>
14829         * XplatUIX11.cs: Fixed menu coord calculations
14830         * MenuAPI.cs: Now using new ScreenToMenu()/MenuToScreen() methods
14831           for calculating offsets
14833 2005-03-17  Peter Bartok  <pbartok@novell.com>
14835         * Hwnd.cs: Do not consider menu presence for default client
14836           rectangle location/size
14837         * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs, XplatUIOSX.cs,
14838           XplatUIWin32.cs: Added MenuToScreen() and ScreenToMenu() coord
14839           translation functions
14840         * FileDialog.cs: Fixed (what I presume is a) typo
14842 2005-03-17  Jonathan Gilbert  <logic@deltaq.org>
14844         * XplatUIX11.cs: Added call to XInitThreads() to allow multi-threaded
14845           X access (avoids X-Async errors)
14847 2005-03-16  Jackson Harper  <jackson@ximian.com>
14849         * TabControl.cs: Raise the SelectedIndexChanged event.
14851 2005-03-16  Alexander Olk  <xenomorph2@onlinehome.de>
14853         * FileDialog.cs, OpenFileDialog.cs, SaveFileDialog.cs:
14854           - Removed vertical ToolBar and replaced it with a custom panel
14855             (desktop and home button already work)
14856           - Added Help button (some controls get resized or relocated then)
14857           - Draw correct text depending on Open or Save.
14858           - Fixed some typos...
14860 2005-03-16  Jordi Mas i Hernandez <jordi@ximian.com>
14862         * ScrollBar.cs:
14863           - Only change Maximum and Minimum when need it (bug fix)
14865 2005-03-15  Peter Bartok  <pbartok@novell.com>
14867         * Form.cs: Use Handle for icon, to trigger creation if
14868           the window does not yet exist
14869         * Control.cs:
14870           - CanSelect: Slight performance improvement
14871           - Focus(): Preventing possible recursion
14872           - Invalidate(): Removed ControlStyle based clear flag setting
14873           - WM_PAINT: fixed logic for calling OnPaintBackground
14874           - WM_ERASEBKGND: Fixed logic, added call to new driver method
14875             EraseWindowBackground if the control doesn't paint background
14876         * XplatUIWin32.cs:
14877           - Moved EraseWindowBackground() method to internal methods
14878           - Removed unused WM_ERASEBKGND handling in GetMessage; msg never comes;
14879             is sent via SendMessage on BeginPaint call on Win32
14880         * XplatUIX11.cs:
14881           - Added EraseWindowBackground() method
14882           - No longer sends WM_ERASEBKGND on .Expose, but on call to
14883             PaintEventStart, which more closely matches Win32 behaviour
14884           - Fixed Invalidate() call, now updates new ErasePending Hwnd property
14885           - Fixed SetFocus() to properly deal with client and whole windows
14886         * Hwnd.cs: Added ErasePending property
14887         * XplatUIOSX.cs: Stubbed EraseWindowBackground() method
14888         * XplatUI.cs, XplatUIDriver.cs: Added EraseWindowBackground() method
14890 2005-03-12  Geoff Norton  <gnorton@customerdna.com>
14892         * XplatUIOSX.cs:
14893           - Fix hard loop when timers exist.
14894           - Fix bugs with middle and right click for 3 button mice.
14896 2005-03-11  Peter Bartok  <pbartok@novell.com>
14898         * XplatUIX11.cs:
14899           - get_WorkingArea: Need to call X directly, GetWindowPos only
14900             returns cached data now
14901           - Added sanity check to GetWindowPos hwnd usage
14903 2005-03-11  Jackson Harper  <jackson@ximian.com>
14905         * BindingManagerBase.cs: This method isn't used anymore as
14906         PullData now updates the data in the control.
14908 2005-03-11  Jordi Mas i Hernandez <jordi@ximian.com>
14910         * Form.cs: fixes menu drawing on X11
14911         * MenuAPI.cs:  fixes menu drawing on X11
14913 2005-03-11  Peter Bartok  <pbartok@novell.com>
14915         * Control.cs: Changed OnCreateControl behaviour based on a suggestion
14916           from Jonathan Gilbert; should fix bug #73606
14917         * XplatUIX11.cs: Fixed NC Mouse message coordinates, they need to be
14918           in Screen coordinates. Thanks, Jordi.
14919         * Form.cs: Added missing attribute
14921 2005-03-11  Peter Bartok  <pbartok@novell.com>
14923         * Form.cs:
14924           - Rudimentary Mdi support
14925           - Removed outdated FormParent code
14926           - Implemented lots of missing properties and methods, still missing
14927             transparency support
14928           - Added missing attributes
14929           - Implemented support for MaximumBounds
14930           - Added firing of various events
14931         * XplatUI.cs: Added SetIcon() method
14932         * XplatUIDriver.cs: Added SetIcon() abstract
14933         * XplatUIOSX.cs: Stubbed out SetIcon() method
14934         * XplatUIX11.cs:
14935           - Implemented SetIcon() support
14936           - Moved SetMenu() and SetBorderStyle() to proper alphabetical pos
14937           - Switched to unix line endings
14938         * XplatUIWin32.cs:
14939           - Made POINT internal so for can access it as part of MINMAX
14940           - Implemented SetIcon() support
14941           - Implemented support for CLIENTCREATESTRUCT (but might have to drop
14942             native Mdi support again, might have to go managed)
14943         * Control.cs: Now fires the StyleChanged event
14944         * MdiClient.cs: Added; still mostly empty
14946 2005-03-10  Peter Bartok  <pbartok@novell.com>
14948         * SaveFileDialog.cs: Added emtpy file
14950 2005-03-08  Peter Bartok  <pbartok@novell.com>
14952         * Control.cs: Fixed bug #73190; now invokes CreateControl (which
14953           in turn triggers OnCreateContro) when creating a handle for the
14954           first time.
14955         * TextControl.cs: Fixed endless loop in certain cases when
14956           replacing the current selection
14958 2005-03-08  Jordi Mas i Hernandez <jordi@ximian.com>
14960         * ScrollBar.cs:
14961           - Honors NewValue changes in Scroll events allowing apps to change it
14962           - Adds First and Last Scroll events
14963           - Fixes Thumb events
14965 2005-03-07  Peter Bartok  <pbartok@novell.com>
14967         * Hwnd.cs: Added DefaultClientRectangle property
14968         * XplatUI.cs: Now using the X11 driver Where() method, which provides
14969           more detailed debug information
14970         * XplatUIX11.cs:
14971           - Fixed size-change feedback loop, where we would pull an old size
14972             off the queue and mistakenly change our window's size to an
14973             earlier value
14974           - Now compressing ConfigureNotify events, to reduce looping and
14975             redraw issues
14976         * TextBoxBase.cs: Preventing crash when no text is set and ToString()
14977           is called
14979 2005-03-07  Jackson Harper  <jackson@ximian.com>
14981         * Binding.cs: Push data pushes from data -> property. Check if the
14982         property is readonly when attempting to set it.
14984 2005-03-07  Jackson Harper  <jackson@ximian.com>
14986         * Binding.cs: Format and parse data correctly. Use ASsignableFrom
14987         instead of IsSubclassOf. Pulling data now sets the value on the
14988         control.
14989         * PropertyManager.cs:
14990         * CurrencyManager.cs: Just need to pull data when updating now,
14991         because PullData will set the value on the control.
14993 2005-03-04  Jackson Harper  <jackson@ximian.com>
14995         * Binding.cs: Implement data type parsing and converting on pulled
14996         data. TODO: Are there more ways the data can be converted?
14998 2005-03-04  Jackson Harper  <jackson@ximian.com>
15000         * Binding.cs: Support <Property>IsNull checks. Also bind to the
15001         controls Validating method so we can repull the data when the
15002         control loses focus.
15004 2005-03-03  Jordi Mas i Hernandez <jordi@ximian.com>
15006         * ColumnHeader.cs:
15007           - Fixes null string format
15008           
15009         * ListView.cs:
15010           - Adds enum type checks
15011           - Fixes redrawing and recalc need after changing some properties
15012           - Fixes on focus_item set after the event
15013           - Fixes adding columns after the control has been created
15014           
15015         * ThemeWin32Classic.cs:
15016           - Fixes CheckBox focus rectangle
15017           - Fixes ColumnHeader drawing
15020 2005-03-03  Jackson Harper  <jackson@ximian.com>
15022         * Binding.cs: Bind to <Property>Changed events so we can detect
15023         when properties are changed and update the data.
15025 2005-03-02  Jordi Mas i Hernandez <jordi@ximian.com>
15027         * ImageList.cs:
15028           - Changes 32-bit pixel format to Format32bppArgb to allow transparency
15029           - Fixes ImageList constructor with ImageList container
15030           - Fixes image scaling (wrong parameters at DrawImage)
15032 2005-02-02  Jackson Harper  <jackson@ximian.com>
15034         * Binding.cs: Make property searches case-insensitive. Eliminate
15035         some duplicated code.
15037 2005-03-01  Jordi Mas i Hernandez <jordi@ximian.com>
15039         * ComboBox.cs:
15040                 - Handle focus event
15041                 - Fix scrollbar events
15042                 - Discard highlighted item if remove it
15043                 - Fixes SelectedItem with strings
15045 2005-03-01  Peter Bartok  <pbartok@novell.com>
15047         * Control.cs:
15048           - Fixed Visible property, now follows (once again) parent chain
15049             to return false if any control in the chain is visible=false
15050           - Fixed OnParentVisibleChanged, now just calls OnVisibleChanged event
15051           - Fixed several places where is_visible instead of Visible was used
15052           - Implemented FIXME related to focus selection when setting focused
15053             control to be invisible
15055         * XplatUIWin32.cs: Now using proper method to find out if window is
15056           visible. Thanks to Jordi for pointing it out
15058 2005-02-28  Jordi Mas i Hernandez <jordi@ximian.com>
15060         * ComboBox.cs: show/hide scrollbar instead of creating it
15062 2005-02-27  Jackson Harper  <jackson@ximian.com>
15064         * CurrencyManager.cs: Add PositionChanged stuff.
15066 2005-02-27  Peter Bartok  <pbartok@novell.com>
15068         * XplatUI.cs, XplatUIDriver.cs: Added new GetMenuOrigin() method
15069         * XplatUIOSX.cs: Added GetMenuOrigin() stub
15070         * XplatUIWin32.cs: Implemented GetMenuOrigin()
15071         * XplatUIX11.cs:
15072           - Implemented GetMenuDC()
15073           - Implemented GetMenuOrigin()
15074           - Implemented ReleaseMenuDC()
15075           - Implemented generation of WM_NCPAINT message
15076           - Implemented generation and handling of WM_NCCALCSIZE message
15077         * Form.cs: Added debug helper message for Jordi's menu work
15078         * Hwnd.cs:
15079           - Modified ClientRect property; added setter, fixed getter to handle
15080             setting of ClientRect
15081           - Added MenuOrigin property
15083 2005-02-26  Peter Bartok  <pbartok@novell.com>
15085         * XplatUIX11.cs:
15086           - Destroys the caret if a window that's being destroyed contains it
15087           - Ignores expose events coming from the X11 queue for windows that
15088             already are destroyed
15089           - Now uses the proper variable for handling DestroyNotify, before we
15090             marked the wrong window as destroyed
15091           - Improved/added some debug output
15093 2005-02-26  Peter Bartok  <pbartok@novell.com>
15095         * X11Keyboard.cs: Fixes to work on 64bit systems
15097 2005-02-26  Peter Bartok  <pbartok@novell.com>
15099         * Control.cs:
15100           - Now calling OnHandleDestroyed from DestroyHandle()
15101             instead of Dispose()
15102           - Removed bogus call to controls.Remove() from DestroyHandle()
15104 2005-02-26  Peter Bartok  <pbartok@novell.com>
15106         * Control.cs: Properly destroy child windows when our handle is
15107           destroyed
15109 2005-02-25  Peter Bartok  <pbartok@novell.com>
15111         * XplatUI.cs:
15112           - Added 'DriverDebug' define to allow tracing XplatUI API calls
15113           - Alphabetized Static Methods and Subclasses
15115         * XplatUIX11.cs:
15116           - Added XException class to allow custom handling of X11 exceptions
15117           - Created custom X11 error handler, tied into XException class
15118           - Added support for MONO_XEXCEPTIONS env var to allow the user
15119             to either throw an exception on X errors or continue running
15120             after displaying the error
15121           - Added handling of DestroyNotify message
15122           - Added handler for CreateNotify message (still disabled)
15123           - Improved (tried to at least) Where method to provide file and lineno
15124         * X11Structs.cs:
15125           - Added XErrorHandler delegate
15126           - Added XRequest enumeration (to suppor translation of errors)
15128 2005-02-25  Jackson Harper  <jackson@ximian.com>
15130         * PropertyManager.cs: Implement editing features
15131         * CurrencyManager.cs:
15132         * Binding.cs: First attempt at UpdateIsBinding
15133         * BindingManagerBase.cs: Call UpdateIsBinding before
15134         pushing/pulling data.
15136 2005-02-25  Jordi Mas i Hernandez <jordi@ximian.com>
15138         * MenuAPI.cs: Respect disabled items
15139         * ThemeWin32Classic.cs
15140                 - Caches ImageAttributes creation for DrawImageDisabled
15141                 - Fixes vertical menu line drawing
15142                 - Draws disabled arrows in disable menu items
15144 2005-02-24  Peter Bartok  <pbartok@novell.com>
15146         * Hwnd.cs:
15147           - Added UserData property to allow associating arbitrary objects
15148             with the handle
15149           - Fixed leak; now removing Hwnd references from static windows array
15150         * XplatUIWin32.cs:
15151           - Fixed Graphics leak in PaintEventEnd
15152           - Removed usage of HandleData, switched over to Hwnd class
15153         * HandleData.cs: Removed, obsoleted by Hwnd.cs
15155 2005-02-24  Jordi Mas i Hernandez <jordi@ximian.com>
15157         * ThemeWin32Classic.cs: Adds Cliping to TrackBar drawing
15158         * ScrollBar.cs: Fixes bug
15159         * TrackBar.cs: removes death code, clipping, mimize refreshes,
15160          keyboard navigation enhancements
15162 2005-02-24  Jordi Mas i Hernandez <jordi@ximian.com>
15164         * Control.cs: Call DefWndProc at WM_PAINT only if UserPaint not defined
15165         * GroupBox.cs: Add control styles
15166         * Label.cs: Add control styles
15167         * UpDownBase.cs: Add control styles
15168         * ListBox.cs: Add control styles
15169         * XplatUIWin32.cs: Fixes wrong parameter order
15172 2005-02-23  Chris Bacon  <chris.bacon@docobo.co.uk>
15174         * ListView.cs: Assign owner for ColumnHeader. Patch by Chris Bacon
15176 2005-02-23  Jackson Harper  <jackson@ximian.com>
15178         * PropertyManager.cs: Implement property binding. This doesn't
15179         seem to work yet though as (I think) there are some bugs in
15180         System.ComponentModel.PropertyDescriptor.
15181         * BindingContext.cs: Use new PropertyManager constructor.
15183 2005-02-23  Jordi Mas i Hernandez <jordi@ximian.com>
15185         * ProgressBar.cs: use clip region in ProgressBar
15186         * ThemeWin32Classic.cs: use clip region in ProgressBar
15188 2004-02-22  Jackson Harper  <jackson@ximian.com>
15190         * BindingsCollection.cs: Remove some debug code.
15192 2005-02-22  Jackson Harper  <jackson@ximian.com>
15194         * BindingContext.cs:
15195         * ControlBindingsCollection.cs:
15196         * CurrencyManager.cs:
15197         * Binding.cs:
15198         * BindingManagerBase.cs: Initial implementation
15199         * BindingsCollection.cs: Add an internal contains method that the
15200         BindingManagerBase uses to ensure bindings aren't added twice to
15201         the collection.
15202         * PropertyManager.cs: Stubbed out.
15203         * Control.cs:
15204         * ContainerControl.cs: Hook up databinding
15205         
15206 2005-02-22  Geoff Norton  <gnorton@customerdna.com>
15208         * XplatUIOSX.cs:
15209           OSXStructs.cs: Refactored to handle the new Hwnd NC logic area.
15210           Fixed Invalidate/Update chain.
15211           Fixed tons of other minor bugs (this is almost a complete rewrite).
15213 2005-02-22  Jordi Mas i Hernandez <jordi@ximian.com>
15215         * ComboBox.cs: do subcontrol creation when the control is created
15217 2005-02-19  Jordi Mas i Hernandez <jordi@ximian.com>
15219         * Label.cs: fixes image drawing (image and imagelist)
15220         * ThemeWin32Classic.cs: cache brushes
15221         
15222 2005-02-19  Jordi Mas i Hernandez <jordi@ximian.com>
15224         * Form.cs: Move menu drawing code to Theme class
15225         * ComboBox.cs: Move ComboBox drawing code to Theme class
15226         * MenuItem.cs: Move menu drawing code to Theme class
15227         * MenuAPI.cs: Move menu drawing code to Theme class
15228         * ThemeWin32Classic.cs: New methods
15229         * CheckedListBox.cs: Move CheckedListbox drawing code to Theme class
15230         * ListBox.cs: Move Listbox drawing code to Theme class
15231         * Theme.cs: New methods
15233 2005-02-20  Peter Bartok  <pbartok@novell.com>
15235         * Control.cs:
15236           - Fixed ProcessKeyEventArgs to also handle WM_SYSKEY messages (and
15237             only process mnemonics on those)
15238           - Fixed event sequence for key handling; first calling
15239             ProcessKeyEventArgs now
15240         * TextBoxBase.cs:
15241           - Removed WM_KEYDOWN hook, instead we now use ProcessDialogKey()
15242             for processing non-character keys
15243           - Fixed WM_CHAR to generate proper event sequence before processing
15244         * XplatUIWin32.cs: Added ALT key state to ModifierKeys property
15245           generation
15247 2005-02-19  Peter Bartok  <pbartok@novell.com>
15249         * UserControl.cs: Added TextChanged event; added attributes
15250         * SizeGrip.cs: Implemented resizing and optional display of grip
15251         * Form.cs: Fixed attribute
15252         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs, XplatUIWin32.cs:
15253           Changed meaning of ScrollWindow bool argument; instead of the
15254           clear attribute (which will be true usually anyway), it gives the
15255           option of moving child controls as well.
15256         * XplatUIX11.cs:
15257           - Changed to match new ScrollWindow argument
15258           - Fixed GetWindowPos/SetWindowPos behaviour for toplevel controls,
15259             now handles the implicit parent window a WM puts around us
15260         * ScrollableControl.cs: Implemented (not the prettiest, but it seems
15261           to work)
15262         * TextBoxBase.cs: Adjusted to new ScrollWindow arguments
15263         * TreeView.cs: Adjusted to new ScrollWindow arguments
15265 2005-02-19  Jordi Mas i Hernandez <jordi@ximian.com>
15267         * Form.cs: Menu integration with non-client area
15268         * MenuItem.cs: Menu integration with non-client area
15269         * MenuAPI.cs: Menu integration with non-client area
15271 2005-02-18  Peter Bartok  <pbartok@novell.com>
15273         * MethodInvoker.cs: Added
15274         * MdiLayout.cs: Added
15275         * SendKeys.cs: Started implementation
15276         * ErrorIconAlignment.cs: Added
15278 2005-02-18  Peter Bartok  <pbartok@novell.com>
15280         * XplatUIWin32.cs: Implemented SetMenu(); fixed GetMenuDC()
15281         * Form.cs: Added handling for Menu-related Non-client messages
15283 2005-02-17  Peter Bartok  <pbartok@novell.com>
15285         * UpDownBase.cs: Fixed typo, compilation errors
15286         * DomainUpDown.cs: Fixed attribute value
15288 2005-02-16  Miguel de Icaza  <miguel@novell.com>
15290         * UpDownBase.cs: Attach entry events.
15291         Propagate events.
15292         Add ForeColor property, Focused, InterceptArrowKeys (interception
15293         does not work yet).
15295 2005-02-17  Jordi Mas i Hernandez <jordi@ximian.com>
15297         * Form.cs:
15298                 - Redraw non client are on Setmenu
15299                 - Calc proper menu starting point
15301 2005-02-17  Peter Bartok  <pbartok@novell.com>
15303         * Application.cs: Fixed message_filter check
15305 2005-02-17  Peter Bartok  <pbartok@novell.com>
15307         * Application.cs: Now calls registered message filters
15308         * DockStyle.cs: Fixed attribute
15309         * Form.cs: Fixed attribute
15310         * Menu.cs: Fixed attribute
15311         * ToolTip.cs: Fixed attribute
15312         * TreeNode.cs: Added missing attributes and arranged in regions
15313         * PropertyGrid.cs: Fixed signatures
15314         * TreeNodeCollection.cs: Added attributes
15315         * Splitter.cs: Added missing attributes; arranged into regions
15316         * TabPage.cs: Added missing attributes; arranged into regions
15317         * TextBoxBase.cs: Added missing attributes
15318         * TextBox.cs: Added missing attributes
15319         * ArrangeDirection.cs: Added missing attributes
15320         * TreeNodeConverter.cs: Added stub (needed for TreeNode)
15321         * ToolBarButton.cs: Fixed attributes
15322         * AnchorStyles.cs: Fixed attribute
15323         * TrackBar.cs: Fixed attributes
15324         * TabControl.cs: Added missing attributes and arranged into regions
15325         * ToolBar.cs: Fixed attribute
15326         * StatusBar.cs: Fixed signature, organized into regions and added
15327           attributes
15328         * StatusBarPanel.cs: Fixed attributes
15329         * ContentsResizedEventArgs.cs: Implemented
15330         * ContentsResizedEventHandler.cs: Implemented
15331         * DateBoldEventArgs.cs: Implemented
15332         * DateBoldEventHandler.cs: Implemented
15333         * UpDownEventArgs.cs: Implemented
15334         * UpDownEventHandler.cs: Implemented
15335         
15336 2005-02-16  Jordi Mas i Hernandez <jordi@ximian.com>
15338         * Form.cs: first Menu NC refactoring
15339         * MenuAPI.cs: first Menu NC refactoring
15340         
15341 2005-02-16  Peter Bartok  <pbartok@novell.com>
15343         * ImeMode.cs: Added missing attributes
15344         * Menu.cs: Fixed attribute
15345         * GroupBox.cs: Fixed attribute
15346         * Label.cs: Fixed attribute
15347         * ColorDialog.cs (RunDialog): Removed TODO attribute
15348         * ComboBox.cs: Fixed attributes
15349         * ListControl.cs: Added missing attributes
15350         * PropertyGrid.cs: Fixed attributes
15351         * Control.cs: Fixed attributes
15352         * ListViewItem.cs: Added TypeConverter attribute
15353         * NotifyIcon.cs: Fixed attributes
15354         * ListView.cs: Fixed attributes
15355         * ButtonBase.cs: Fixed attribute
15356         * ImageList.cs: Added missing attributes
15357         * ContainerControl.cs: Fixed signature
15358         * CheckedListBox.cs: Fixed attribute; added missing attributes
15359         * Panel.cs: Fixed attributes
15360         * PropertyTabChangedEventArgs.cs: Added missing attribute
15361         * PropertyValueChangedEventArgs.cs: Added missing attribute
15362         * Binding.cs: Fixed attribute
15363         * ListViewItemConverter: Implemented ListViewSubItemConverter class
15364         * ListBox.cs: Fixed attribute; added missing attributes;
15365         * ScrollableControl.cs: Added missing attributes
15366         * PictureBox.cs: Added missing attributes; implemented missing property
15367         * DateTimePicker.cs: Added missing attributes
15368         * Theme.cs (ToolWindowCaptionHeight): Fixed type
15369         * MonthCalendar.cs: Fixed attributes
15370         * StatusBarPanel.cs: Added missing attributes
15371         * SystemInformation.cs (ToolWindowCaptionHeight): Fixed type
15373 2005-02-16  Peter Bartok  <pbartok@novell.com>
15375         * TextBoxBase.cs: The previous method to enforce height yet remember
15376           the requested high was less than ideal, this is an attempt to do
15377           it better.
15378         * Control.cs: Added comment about possible problem
15379         * Copyright: Updated format
15380         * GridItemType.cs: Fixed swapped values
15382 2005-02-15  Jackson Harper  <jackson@ximian.com>
15384         * BaseCollection.cs: Use property so we never access an
15385         uninitialized list. Also initialize the list in the property.
15387 2005-02-15  Peter Bartok  <pbartok@novell.com>
15389         * GroupBox.cs (ProcessMnemonic): Implemented
15390         * Label.cs (ProcessMnemonic): Implemented
15391         * ThemeWin32Classic.cs (DrawGroupBox): Added stringformat to show
15392           hotkeys
15394 2005-02-15  Peter Bartok  <pbartok@novell.com>
15396         * RadioButton.cs (ProcessMnemonic): Implemented
15397         * CheckBox.cs (ProcessMnemonic): Implemented
15398         * Control.cs:
15399           - Added handling of WM_SYSxxx keyboard messages to support mnemonic
15400             handling
15401           - Added internal method to allow calling ProcessMnemonic from other
15402             controls
15403         * ContainerControl.cs:
15404           - Started support for handling validation chain handling
15405           - Implemented ProcessMnemonic support
15406           - Added Select() call to Active, to make sure the active control
15407             receives focus
15408         * Form.cs: Setting toplevel flag for Forms (this was lost in the
15409           FormParent rewrite)
15410         * ThemeWin32Classic.cs:
15411           - DrawCheckBox(): Fixed stringformat to show hotkeys
15412           - DrawRadioButton(): Fixed stringformat to show hotkeys
15413         * CommonDialog.cs: Removed WndProc override, not needed
15415 2005-02-14  Peter Bartok  <pbartok@novell.com>
15417         * XplatUIX11.cs: Fixed NotImplemented exceptions for properties,
15418           missed those in the rewrite
15420 2005-02-14  Miguel de Icaza  <miguel@novell.com>
15422         * NumericUpDown.cs (Increment, ToString): Add.
15423         (DecimalPlaces): implement.
15424         
15425         Add attributes.
15426         
15427         * UpDownBase.cs: Add the designer attributes.
15429 2005-02-13  Peter Bartok  <pbartok@novell.com>
15431         * Panel.cs: Removed border_style, now in Control
15432         * XplatUIDriver.cs: Added SetBorderStyle, SetMenu, GetMenuDC and
15433           ReleaseMenuDC Methods; renmaed ReleaseWindow to UngrabWindow
15435 2005-02-13  Peter Bartok  <pbartok@novell.com>
15437         * MouseButtons.cs: Added missing attributes
15438         * XplatUIStructs.cs: Added enumeration for title styles
15439         * LeftRightAlignment.cs: Added missing attributes
15440         * Hwnd.cs: Switched to use client_window as handle (slower, but makes
15441           it compatible with Graphics.FromHwnd()
15442         * SelectedGridItemChangedEventArgs.cs: Fixed property type
15443         * Keys.cs: Added missing attributes
15444         * SelectionRange.cs: Added missing attributes
15445         * SelectionRangeConverter.cs: Added
15446         * XplatUI.cs:
15447           - Introduced SetBorderStyle, SetMenu, GetMenuDC and
15448             ReleaseMenuDC methods
15449           - Renamed ReleaseWindow to UngrabWindow
15450           - Added proper startup notice to allow version identification
15451         * Form.cs:
15452           - Added missing attributes
15453           - Removed FormParent concept
15454         * Label.cs: Removed border_style field, now in Control
15455         * RadioButton.cs: Now properly selects RadioButton when focus is
15456           received
15457         * ThemeGtk.cs: Fixed SetDisplay call to match new X11 behaviour
15458         * Control.cs:
15459           - Added missing attributes
15460           - Added borderstyle handling
15461           - Removed FormParent concept support
15462           - Fixed calls to XplatUI to match changed APIs
15463           - Fixed bug that would case us to use disposed Graphics objects
15464           - Removed unneeded internal methods
15465           - PerformLayout(): Fixed to handle DockStyle.Fill properly
15466           - SelectNextControl(): Fixed to properly check common parents
15467         * TextBoxBase.cs: Removed border_style field (now in Control)
15468         * MessageBox.cs:
15469           - Patch by Robert Thompson (rmt@corporatism.org): Added icon support,
15470             fixed calculations for form size
15471           - Added support for localized strings and icons
15472           - Improved form size calculations, added border
15473         * ListView.cs: Removed border_style field (now in Control)
15474         * X11Structs.cs: Moved several structs from X11 driver here
15475         * X11Keyboard.cs: Changed debug message
15476         * Application.cs: Removed FormParent concept support
15477         * CommonDialog.cs:
15478           - Resetting end_modal flag
15479           - Removed FormParent concept support
15480         * NativeWindow.cs: Removed FormParent concept support
15481         * XplatUIX11.cs: Rewritten, now using the new Hwnd class, implementing
15482           Client area and Non-Client whole window to allow support for WM_NC
15483           messages
15484         * XplatUIOSX.cs: Updated to match latest driver spec; added exception
15485           prevent using it until it supports Hwnd as per Geoff Norton's request
15486         * ToolBar.cs: Fixed drawing, was not doing proper drawing
15487         * PictureBox.cs: Removed border_style field, now in Control
15488         * XplatUIWin32.cs: Added new driver methods
15490 2005-02-12  Peter Bartok  <pbartok@novell.com>
15492         * OpacityConverter.cs: Implemented
15493         * Hwnd.cs: Internal class to support drivers that need to emulate
15494           client area/non-client area window behaviour
15496 2005-02-11  Peter Bartok  <pbartok@novell.com>
15498         * KeysConverter.cs: Implemented
15500 2005-02-11  Jordi Mas i Hernandez <jordi@ximian.com>
15502         * Menu.cs: fixes methods GetContextMenu, GetMainMenu, ToString
15503         * LinkLabel: Added missing attributes
15504         * MainMenu.cs: fixes ToString
15505         * MenuItem.cs: fixes methods GetContextMenu, GetMainMenu
15506         * ListBox.cs: fixes event position
15507         * TrackBar.cs: adds missing attributes and events
15508         
15509 2005-02-10  Jordi Mas i Hernandez <jordi@ximian.com>
15511         * MenuItem.cs: Use SystemInformation and bug fixes
15512         * MenuAPI.cs: Use SystemInformation and bug fixes
15514 2005-02-09  Jackson Harper  <jackson@ximian.com>
15516         * X11Keyboard.cs: We ignore some keys, but still need to set/reset
15517         their keystate otherwise things like VK_MENU get stuck "on".
15519 2005-02-09  Kazuki Oikawa <kazuki@panicode.com>
15521         * ListBox.cs: Fixes AddRange bug
15522         
15523 2005-02-09  Jordi Mas i Hernandez <jordi@ximian.com>
15525         * ProgressBar.cs
15526                 - Add missing attributes
15527                 - Add missing method
15528                 
15529         * CheckedListBox.cs: Added missing attributes
15530                 - Add missing attributes
15531                 - Remove extra method
15532         
15533         * ComboBox.cs: Added missing attributes
15534         * VScrollBar.cs: Added missing attributes
15535         * ScrollBar.cs:  Added missing attributes
15536         * ListBox.cs: Fixes signature, add missing consts
15537         * LinkArea.cs:   Added missing attributes
15538         
15540 2005-02-08  Peter Bartok  <pbartok@novell.com>
15542         * Menu.cs: Added missing attributes
15543         * MainMenu.cs: Added missing attributes
15544         * GroupBox.cs: Added missing attributes
15545         * Label.cs: Added missing attributes
15546         * CheckBox.cs: Implemented CheckBoxAccessibleObject class
15547         * ColorDialog.cs:
15548           - Added Instance and Options properties
15549           - Added missing attributes
15550         * Cursor.cs: Made Serializable
15551         * NotifyIcon: Added missing attributes
15552         * MenuItem.cs: Added missing attributes
15553         * TextBoxBase.cs: Implemented AppendText() and Select() methods
15554         * Panel.cs: Added Missing attributes
15555         * MonthCalendar.cs: Fixed CreateParams
15557 2005-02-08  Jordi Mas i Hernandez <jordi@ximian.com>
15558         
15559         * LinkLabel.cs:
15560                 - Fixes signature
15561                 - Fixes issues with links
15562                 - Adds the class attributes
15564 2005-02-08  Jordi Mas i Hernandez <jordi@ximian.com>
15565         
15566         * ComboBox.cs:
15567                 - Fixes button when no items available in dropdown
15568                 - Fixes repainting problems
15569                 - Adds the class attributes
15570                 
15571 2005-02-07  Geoff Norton  <gnorton@customerdna.com>
15573         * XplatUIOSX.cs: Detect the menu bar and title bar height from
15574         the current theme.  Cache these on startup.
15576 2005-02-07  Jackson Harper  <jackson@ximian.com>
15578         * ScrollBar.cs: Give the correct clipping rect to the theme. Dirty
15579         the scrollbar buttons when they are depressed.
15581 2005-02-07  Geoff Norton  <gnorton@customerdna.com>
15583         * XplatUIOSX.cs: Really fix working at resolutions not 1024x768.
15584         Get the display size from the main displayid.  We currently dont
15585         support multiple display configurations.
15587 2005-02-07  Geoff Norton  <gnorton@customerdna.com>
15589         * XplatUIOSX.cs: Ensure the window doesn't get stuck behind the statusbar.
15591 2005-02-07  Miguel de Icaza  <miguel@novell.com>
15593         * UpDownBase.cs: Add ReadOnly and UpDownAlign properties.
15595 2005-02-05  Jonathan Chambers  <jonathan.chambers@ansys.com>
15597         * PropertyGrid.cs: Updated. Patch by Jonathan Chambers
15599 2005-02-04  Jackson Harper  <jackson@ximian.com>
15601         * ThemeWin32Classic.cs: Respect the clipping rect when
15602         drawing. Only fill the intersection of clips and rects so there
15603         isn't a lot of large fills.
15604         * ScrollBar.cs: Pass the correct clipping rect to the theme
15605         engine. Remove some debug code.
15607 2005-02-05  John BouAntoun  <jba-mono@optusnet.com.au>
15608         
15609         * DateTimePicker.cs:
15610                 - Fixed crash on DateTime.Parse, use Constructor instead
15612 2005-02-04  Jordi Mas i Hernandez <jordi@ximian.com>
15613         
15614         * MenuItem.cs:
15615         * MenuAPI.cs:
15616                 - Owner draw support (MeasureItem and DrawItem)
15618 2005-02-04  Jordi Mas i Hernandez <jordi@ximian.com>
15619         
15620         *  Menu.cs:
15621                 - Implements FindMergePosition and MergeMenu functions (very poor documented)
15622                 - Fixes MenuItems.Add range
15623         * MenuItem.cs:
15624                 - MergeMenu and Clone and CloneMenu functions
15626 2005-02-03  Jackson Harper  <jackson@ximian.com>
15628         * ScrollBar.cs: Make abstract
15629         * ScrollableControl.cs: Create H/V scrollbars now that scrollbar
15630         is abstract.
15632 2005-02-03  Jackson Harper  <jackson@ximian.com>
15634         * ScrollBar.cs: First part of my scrollbar fixups. This removes
15635         all the unneeded refreshes and uses invalidates with properly
15636         computed rects.
15638 2005-02-03  Peter Bartok  <pbartok@novell.com>
15640         * ComponentModel.cs: Added
15641         * IDataGridEditingService.cs: Added
15642         * Timer.cs: Added missing attributes
15643         * ToolTip.cs: Added missing attributes
15645 2005-02-03  Jonathan Chambers  <jonathan.chambers@ansys.com>
15647         * PropertyGridView.cs: Added. Patch by Jonathan Chambers
15649 2005-02-03  Peter Bartok  <pbartok@novell.com>
15651         * ListBox.cs: Added missing attributes
15653 2005-02-03  Jordi Mas i Hernandez <jordi@ximian.com>
15654         
15655         * ListBox.cs:
15656                 - Fixes font height after font change
15657                 - Avoid generating unnecesary OnSelectedIndexChanged on clearing
15658                 
15659 2005-02-02  Peter Bartok  <pbartok@novell.com>
15661         * HandleData.cs: Introduced static methods to allow class
15662           to be more self-contained and track it's own HandleData objects
15663         * XplatUIOSX.cs, XplatUIWin32.cs, XplatUIX11.cs: Fixed usage of
15664           HandleData to use new static methods
15666 2005-02-02  Jordi Mas i Hernandez <jordi@ximian.com>
15668         * Combobox.cs:
15669                 - Fixes default size and PreferredHeight
15670                 - Missing events
15671                 - ObjectCollection.Insert implementation
15672                 
15673         * ListControl.cs
15674                 - Fixes signature
15675         * ListBox.cs:
15676                 - Several fixes
15677                 - ObjectCollection.Insert implementation
15678                 - No selection after clean
15679                 - Small fixes
15681 2005-01-31      John BouAntoun  <jba-mono@optusnet.com.au>
15683         * ThemeWin32Classic.cs: quick fix to comboboxbutton pushed painting
15685 2005-02-01  Jordi Mas i Hernandez <jordi@ximian.com>
15687         * Combobox.cs:
15688                 - Caches ItemHeight calculation for OwnerDrawVariable
15689                 - Handles dropdown properly
15690                 - Fixes several minor bugs
15692 2005-01-31  Jordi Mas i Hernandez <jordi@ximian.com>
15694         * ListBox.cs:
15695                 - Fixes 71946 and 71950
15696                 - Fixes changing Multicolumn on the fly
15697                 - Fixes keyboard navigation on Multicolumn listboxes
15699 2005-01-31  Geoff Norton  <gnorton@customerdna.com>
15700         
15701         * XplatUIOSX.cs: Call ExitToShell in our teardown to avoid a
15702         crash reporter log.
15704 2005-01-31  Geoff Norton  <gnorton@customerdna.com>
15706         * XplatUIOSX.cs: Allow applications to actually exit.
15708 2005-01-31  Geoff Norton  <gnorton@customerdna.com>
15710         * XplatUIOSX.cs: SetWindowStyle implemented.  Reposition views in
15711         their parent at creation time rather than lazily later.  Fixes a major
15712         regression we were experiencing.
15714 2005-01-31      John BouAntoun  <jba-mono@optusnet.com.au>
15716         * ThemeWin32Classic.cs: more date time picker painting fixes
15717         * DateTimePicker.cs: more monthcalendar drop down fixes
15718         * MonthCalendar.cs: more CreateParams fixes to ensure correct drop down
15720 2005-01-31  Jordi Mas i Hernandez <jordi@ximian.com>
15722         * ScrollBar.cs:
15723                 - When moving the thumb going outside the control should stop the moving
15724                 - Adds the firing of missing events
15725                 - Fixes no button show if Size is not specified
15726                 - End / Home keys for keyboard navigation
15728 2005-01-30  Peter Bartok  <pbartok@novell.com>
15730         * NotifyIcon.cs (CalculateIconRect): Removed debug output and added
15731           sanity check to prevent theoretical loop
15732         * XplatUIWin32.cs (SetVisible): Removed debug output
15733         * XplatUIX11.cs (SystrayChange): Added sanity check
15734         * ScrollableControl.cs (OnVisibleChanged): Now calls base method
15735         * Control.cs (OnVisibleChanged): Added workaround for ParentForm
15736           behaviour, valid until the X11 client window rewrite is done
15737         * TextBox.cs (ctor): Setting proper default foreground and background
15738           colors
15740 2005-01-30      John BouAntoun  <jba-mono@optusnet.com.au>
15742         * Theme: Added DrawDateTimePicker to interface
15743         * ThemeWin32Classic.cs: Added DrawDateTimePicker (incomplete)
15744         * DateTimePicker.cs: Created (still needs keys and painting code)
15745         * DateTimePickerFormat.cs: added
15746         * MonthCalendar.cs: fixed CreateParams for popup window mode
15747           
15748 2005-01-29  Peter Bartok  <pbartok@novell.com>
15750         * ControlPaint.cs: Fixed luminace value returned on achromatic colors,
15751           this should also the calculations for ligher/darker
15752         * Theme.cs: Fixed defaults for ScrollBar widths/heights
15754 2005-01-29  Peter Bartok  <pbartok@novell.com>
15756         * ArrangeDirection.cs: Added
15757         * ArrangeStartingPositon.cs: Added
15758         * SystemInformation.cs: Implemented
15759         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs, XplatUIWin32.cs,
15760           XplatUIX11.cs, Theme.cs: Added/implemented new static properties
15761           used by SystemInformation class
15762         * X11Strucs.cs: Added XSizeHints structure
15763         * MenuAPI.cs:
15764           - Fixed CreateParams to make sure the menu window is always visible
15765           - TrackPopupMenu: Added check to make sure we don't draw the
15766             menu offscreen
15768 2005-01-29  Peter Bartok  <pbartok@novell.com>
15770         * HandleData.cs: Added method for altering invalid area
15771         * TextBoxBase.cs: Implemented TextLength
15773 2005-01-28  Peter Bartok  <pbartok@novell.com>
15775         * XplatUIX11.cs: Improvement over last patch, not sending
15776           the WM_PAINT directly anymore, instead we scroll any pending
15777           exposed areas and let the system pick out the WM_PAINT later
15779 2005-01-28  Peter Bartok  <pbartok@novell.com>
15781         * SWF.csproj: Deleted, no longer used. Instead,
15782           Managed.Windows.Forms/SWF.csproj should be used
15783         * XplatUIX11.cs: Instead of posting the WM_PAINT, we send it
15784           directly, to avoid a potential race condition with the next
15785           scroll
15787 2005-01-28  Peter Bartok  <pbartok@novell.com>
15789         * XplatUI.cs: Made class internal
15791 2005-01-28  Jordi Mas i Hernandez <jordi@ximian.com>
15793         * CheckedListBox.cs:
15794                 - Draw focus
15795                 - Fixed Drawing
15796                 - Missing methods and events
15798 2005-01-27  Peter Bartok  <pbartok@novell.com>
15800         * Application.cs (Run): Don't use form if we don't have one
15802 2005-01-27  Peter Bartok  <pbartok@novell.com>
15804         * TextBoxBase.cs (get_Lines): Fixed index off by one error
15806 2005-01-27  Peter Bartok  <pbartok@novell.com>
15808         * GridEntry.cs: Added; Patch by Jonathan S. Chambers
15809         * GridItem.cs: Added; Patch by Jonathan S. Chambers
15810         * GridItemCollection.cs: Added; Patch by Jonathan S. Chambers
15811         * GridItemType.cs: Added; Patch by Jonathan S. Chambers
15812         * PropertyGrid.cs: Added; Patch by Jonathan S. Chambers
15813         * PropertySort.cs: Added; Patch by Jonathan S. Chambers
15814         * PropertyTabChangedEventArgs.cs: Added; Patch by Jonathan S. Chambers
15815         * PropertyTabChangedEventHandler.cs: Added; Patch by Jonathan S. Chambers
15816         * PropertyValueChangedEventArgs.cs: Added; Patch by Jonathan S. Chambers
15817         * PropertyValueChangedEventArgs.cs: Added; Patch by Jonathan S. Chambers
15818         * SelectedGridItemChangedEventArgs.cs: Added; Patch by Jonathan S. Chambers
15819         * SelectedGridItemChangedEventHandler.cs: Added; Patch by Jonathan S. Chambers
15821 2005-01-27  Jordi Mas i Hernandez <jordi@ximian.com>
15823         * Combobox.cs:
15824                 - Draw focus on Simple Combobox
15825                 - Fixes drawing issues
15826                 - fixes 71834
15828 2005-01-27  Peter Bartok  <pbartok@novell.com>
15830         * Form.cs:
15831           - Place window in default location, instead of hardcoded 0/0
15832           - Send initial LocationChanged event
15833         * Control.cs:
15834           - UpdateBounds after creation to find out where the WM placed us
15835           - Make sure that if the ParentForm changes location the Form
15836             is notified
15837         * XplatUIX11.cs: XGetGeometry will not return the coords relative
15838             to the root, but to whatever the WM placed around us.
15839             Translate to root coordinates before returning toplevel
15840             coordinates
15841         * XplatUIWin32.cs: Removed debug output
15842         * XplatUIOSX.cs, XplatUI.cs, XplatUIDriver.cs: Added toplevel
15843           flag to GetWindowPos, to allow translation of coordinates on X11
15845 2005-01-27  Jordi Mas i Hernandez <jordi@ximian.com>
15847         * ListBox.cs: connect LostFocus Event
15849 2005-01-27  Peter Bartok  <pbartok@novell.com>
15851         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIOSX.cs,
15852           XplatUIX11.cs: Extended the Systray API
15853         * Form.cs: Removed debug output
15854         * Application.cs: Fixed focus assignment, always need to call
15855           XplatUI.Activate() since Form.Activate() has rules that may
15856           prevent activation
15857         * NotifyIcon.cs: Should be complete now
15858         * ToolTip.cs: Worked around possible timer bug
15860 2005-01-27  Jackson Harper  <jackson@ximian.com>
15862         * TabControl.cs:
15863         - Only invalidate the effected tabs when the
15864         selected index changes. This reduces drawing and gets rid of some
15865         flicker.
15866         - Only refresh if the tabs need to be shifted, otherwise only
15867         invalidate the slider button.
15868         - On windows the tabs are not filled to right if the slider is
15869         visible.
15870         
15871 2005-01-27  Jackson Harper  <jackson@ximian.com>
15873         * TabControl.cs: Only refresh on mouseup if we are showing the
15874         slider. Also only invalidate the button whose state has changed.
15876 2005-01-26  Peter Bartok  <pbartok@novell.com>
15878         * XplatUI.cs, XplatUIDriver.cs: Added Systray methods
15879         * XplatUIWin32.cs: Implemented SystrayAdd(), SystrayChange()
15880           and SystrayRemove() methods
15881         * XplatUIOSX.cs: Stubbed Systray methods
15882         * XplatUIX11.cs:
15883           - Implemented SystrayAdd(), SystrayChange() and SystrayRemove()
15884             methods
15885           - Fixed broken XChangeProperty calls (marshalling messed up things)
15886         * X11Structs.cs: Added enums and structs required for Size hinting
15887         * NotifyIcon.cs: Added & implemented
15889 2005-01-26  Jackson Harper  <jackson@ximian.com>
15891         * TabControl.cs: Space vertically layed out tabs properly.
15893 2005-01-26  Peter Bartok  <pbartok@novell.com>
15895         * Form.cs (CreateClientParams): Always set the location to 0,0
15896           since we're a child window.
15898         * Control.cs (SetVisibleCore): Always explicitly setting the location
15899           of a toplevel window, apparently X11 doesn't like to move windows
15900           while they're not mapped.
15902 2005-01-26  Jackson Harper  <jackson@ximian.com>
15904         * TabControl.cs: Implement FillToRight size mode with vertically
15905         rendered tabs.
15907 2005-01-26  Jordi Mas i Hernandez <jordi@ximian.com>
15909         * ControlPaint.cs, ThemeWin32Classic.cs
15910                 - Fixes DrawFocusRectangle
15912 2005-01-26  Jordi Mas i Hernandez <jordi@ximian.com>
15914         * MenuAPI.cs:
15915                 - MenuBar tracking only starts when item is first clicked
15916                 - Fixes menu hidding for multiple subitems
15917                 - Unselect item in MenuBar when item Executed
15918                 - Fixes bug 71495
15920 2005-01-25  Jordi Mas i Hernandez <jordi@ximian.com>
15922         * ListControl.cs:
15923                 - IsInputKey for ListBox
15924         * ListBox.cs:
15925                 - Focus item
15926                 - Shift and Control item selection
15927                 - Implement SelectionMode.MultiExtended
15928                 - Fixes RightToLeft
15929         * ComboBox.cs:
15930                 - IsInputKey implemented
15931                 - Do not generate OnTextChangedEdit on internal txt changes
15932                 
15933 2005-01-23  Peter Bartok  <pbartok@novell.com>
15935         * AccessibleObject.cs: Partially implemented Select()
15936         * MonthCalendar.cs: Added missing attributes and events
15937         * Form.cs: Fixed CreateParams behaviour, now controls derived from
15938           form can properly override CreateParams.
15939         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs, XplatUIWin32.cs,
15940           XplatUIX11.cs: Dropped RefreshWindow method, not needed if
15941           Control performs Invalidate & Update
15942         * NativeWindow (CreateHandle): Added special handling for Form
15943           and Form.FormParent classes to allow overriding of From.CreateParams
15944         * Control.cs:
15945           - ControlNativeWindow: Renamed 'control' variable to more intuitive
15946             name 'owner'
15947           - ControlNativeWindow: Added Owner property
15948           - Removed usage of Refresh() on property changes, changed into
15949             Invalidate(), we need to wait until the queue is processed for
15950             updates, direct calls might cause problems if not all vars for
15951             Paint are initialized
15952           - Added call to UpdateStyles() when creating the window, to set any
15953             styles that CreateWindow might have ignored.
15954           - Added support for Form CreateParent overrides to UpdateStyles()
15955         * MessageBox.cs: Removed no longer needed FormParent override stuff,
15956           CreateParams are now properly overridable
15957         * CommonDialog.cs: Removed no longer needed FormParent override stuff,
15958           CreateParams are now properly overridable
15960 2005-01-23  Miguel de Icaza  <miguel@ximian.com>
15962         * UpDownBase.cs (ctor): Connect TextChanged in the entry to the
15963         OnTextBoxChanged.
15965         Capture LostFocus and OnTextBoxChanged.  The later introduces a
15966         recursive invocation that I have not figured out yet.
15968         Reset the timer when not using (it was accumulating).
15971         (OnTextBoxChanged): Set UserEdit to true here to track whether the
15972         user has made changes that require validation.
15974         Reset changing to avoid loops.
15976 2005-01-22  Miguel de Icaza  <miguel@ximian.com>
15978         * NumericUpDown.cs: Display value at startup.
15980         * UpDownBase.cs (Text): Do not call UpdateEditText here, only call
15981         ValidateEditText.
15983         * NumericUpDown.cs: Minimum, Maximum, Text, Value properties
15984         filled in.  Added some basic parsing of text.
15986         Still missing the OnXXX method overrides, and figuring out the
15987         events that must be emitted.
15989         * UpDownBase.cs: Handle UserEdit on the Text property.
15990         
15991 2005-01-22  Jordi Mas i Hernandez <jordi@ximian.com>
15993         * ComboBox.cs:
15994           - Fixes IntegralHeight
15995           - ToString method
15997 2005-01-21  Jackson Harper  <jackson@ximian.com>
15999         * TabControl.cs: Set the SelectedIndex property when SelectedTab
16000         is set so that the page visibility is updated and the tabs are
16001         sized correctly.
16003 2005-01-21  Jackson Harper  <jackson@ximian.com>
16005         * TabControl.cs: Use cliping rectangle for blitting. Give the
16006         theme the clipping rect so we can do clipping while
16007         drawing. Remove some debug code.
16009 2005-01-21  Jackson Harper  <jackson@ximian.com>
16011         * TabPage.cs: Add a new method so tab pages can force the tab
16012         control to recalculate the tab page sizes.
16013         * TabControl.cs: UpdateOwner needs to make the tab control recalc
16014         sizes.
16016 2005-01-20  Jackson Harper  <jackson@ximian.com>
16018         * ThemeWin32Classic.cs: Clip text to the staus bar panels rects.
16020 2005-01-20  Jackson Harper  <jackson@ximian.com>
16022         * TreeView.cs: Set the bounds for nodes properly. They were
16023         getting screwed up when checkboxes were not enabled, but images
16024         were.
16026 2005-01-20  Jordi Mas i Hernandez <jordi@ximian.com>
16028         * ListBox.cs:
16029                 - Owner draw support
16030                 - Fixes
16031                 
16032 2005-01-20  Jackson Harper  <jackson@ximian.com>
16034         * XplatUIStructs.cs: More misc keys
16035         * X11Keyboard.cs: Ignore some control keys.
16037 2005-01-20  Jackson Harper  <jackson@ximian.com>
16039         * X11Structs.cs: Add the modmaps to the keymask struct and tabify.
16040         * X11Keyboard.cs: Set the AltGr mask when we get a key event.
16042 2005-01-19  Peter Bartok  <pbartok@novell.com>
16044         * Control.cs: Un-selecting the control when it is loosing focus
16046 2005-01-19  Jackson Harper  <jackson@ximian.com>
16048         * TreeView.cs: Hook up to the text controls leave event so we can
16049         end editing when the users clicks outside the text box.
16050         
16051 2005-01-19  Jackson Harper  <jackson@ximian.com>
16053         * X11Keyboard.cs: Fix typo that was causing the wrong keycodes to
16054         get set in the conversion array.
16056 2005-01-19  Peter Bartok  <pbartok@novell.com>
16058         * Application.cs (ModalRun): Added a call to CreateControl to ensure
16059           focus is properly set
16060         * Button.cs:
16061           - Added missing attributes
16062           - removed styles, those are already set in the base class
16063         * ButtonBase.cs:
16064           - Added missing attributes
16065           - Added clip window styles
16066         * CheckBox.cs: Added missing attributes
16067         * CommonDialog.cs:
16068           - FormParentWindow.CreateParams: Added required clip styles
16069         * Form.cs (ProcessDialogKey): Fixed handling of Escape key, now
16070           also filters modifier keys
16071         * MessageBox.cs:
16072           - Added assignment of Accept and Cancel button to enable Enter
16073             and Esc keys in MessageBox dialogs
16074           - FormParentWindow.CreateParams: Added required clip styles
16075         * RadioButton.cs: Added missing attributes
16076         * TextControl.cs: No longer draws selection if control does not
16077           have focus
16078         * TextBoxBase.cs:
16079           - Now draws simple rectangle around test area to make it obvious
16080             there's a control. This is a hack until we properly support borders
16081           - A few simple fixes to support selections better, now erases selected
16082             text when typing, and resets selection when using movement keys
16084 2005-01-19  Miguel de Icaza  <miguel@ximian.com>
16086         * UpDownBase.cs: Added some new properties.
16088         * DomainUpDown.cs: Implement a lot to get my test working.
16090 2005-01-19  Geoff Norton  <gnorton@customerdna.com>
16092         * XplatUIOSX.cs: Fix a minor bug to bring the close box back
16094 2005-01-19  Geoff Norton  <gnorton@customerdna.com>
16096         * OSXStructs (WindowAttributes): Fixed csc complaints
16098 2005-01-19  Geoff Norton  <gnorton@customerdna.com>
16100         * XplayUIOSX.cs:
16101           OSXStructs.cs: Initial refactor to move enums and consts into
16102           OSXStructs and use them in the driver for greater readability.
16104 2005-01-19  Geoff Norton  <gnorton@customerdna.com>
16106         * XplatUIOSX.cs: Initial support for Standard Cursors.
16107         * OSXStructs.cs: Move our structs here; added ThemeCursor enum
16109 2005-01-19  Jordi Mas i Hernandez <jordi@ximian.com>
16111         * ComboBox.cs: ability to change style when the ctrl is already
16112         created, missing methods and events, bug fixes, signature fixes
16114 2005-01-19  Peter Bartok  <pbartok@novell.com>
16116         * Cursors.cs (ctor): Added ctor to fix signature
16118 2005-01-18  Peter Bartok  <pbartok@novell.com>
16120         * Button.cs: Implemented DoubleClick event
16121         * ButtonBase.cs:
16122           - Fixed keyboard handling to behave like MS, where the press of
16123             Spacebar is equivalent to a mousedown, and the key release is
16124             equivalent to mouseup. Now a spacebar push will give the same
16125             visual feedback like a mouse click.
16126           - Added missing attributes
16127           - Added ImeModeChanged event
16128           - Added support for generating DoubleClick event for derived classes
16129         * CheckBox.cs:
16130           - Implemented DoubleClick event
16131           - Added missing attributes
16132         * CommonDialog.cs: Added missing attribute
16133         * ContextMenu.cs: Added missing attributes
16134         * RadioButton.cs:
16135           - AutoChecked buttons do not allow to be unselected when clicked
16136             (otherwise we might end up with no selected buttons in a group)
16137           - Added missing attributes
16138           - Implemented DoubleClickEvent
16139         * ThreadExceptionDialog.cs: Enabled TextBox code
16141 2005-01-18  Peter Bartok  <pbartok@novell.com>
16143         * Form.cs: Removed debug output
16144         * Button.cs: Added support for DoubleClick method
16146 2005-01-18  Peter Bartok  <pbartok@novell.com>
16148         * Form.cs:
16149           - Added method to parent window that allows triggering size
16150             calculations when a menu is added/removed
16151           - set_Menu: Cleaned up mess from early days of Form and Control,
16152             now properly triggers a recalc when a menu is added/removed
16153           - Added case to select form itself as focused form if no child
16154             controls exist
16155           - Added PerformLayout call when showing dialog, to ensure properly
16156             placed controls
16157         * Control.cs:
16158           - Select(): Made internal so Form can access it
16159           - Focus(): Only call Xplat layer if required (avoids loop), and sets
16160             status
16161         * Application.cs (Run): Removed hack and calls PerformLayout instead
16162           to trigger calculation when Form becomes visible
16164 2005-01-18  Jordi Mas i Hernandez <jordi@ximian.com>
16166         * ComboBox.cs: fixes for ownerdraw
16168 2005-01-18  Peter Bartok  <pbartok@novell.com>
16170         * TextControl.cs:
16171           - Sentinel is no longer static, each Document gets it's own, this
16172             avoids locking or alternatively overwrite problems when more
16173             than one text control is used simultaneously.
16174           - Switched to use Hilight and HilightText brushes for text selection
16176         * TextBoxBase.cs (PaintControl): Disabled AntiAliasing to improve looks
16178 2005-01-18  Peter Bartok  <pbartok@novell.com>
16180         * Control.cs:
16181           - Hooked up the following events:
16182                 o ControlAdded
16183                 o ControlRemoved
16184                 o HandleDestroyed
16185                 o ImeModeChanged
16186                 o ParentChanged
16187                 o TabStopChanged
16188                 o Invalidated
16189                 o SystemColorsChanged
16190                 o ParentFontChanged
16191                 o Move
16192           - Removed debug output
16193           - Added a call to the current theme's ResetDefaults when a color change
16194             is detected
16195         * Form.cs: Now setting the proper ImeMode
16196         * Theme.cs: Defined a method to force recreation of cached resources
16197           and rereading of system defaults (ResetDefaults())
16198         * ThemeWin32Classic.cs: Added ResetDefaults() stub
16200 2005-01-17  Peter Bartok  <pbartok@novell.com>
16202         * Control.cs: Added missing attributes
16204 2005-01-17  Jackson Harper  <jackson@ximian.com>
16206         * TreeNode.cs: Implement editing. Add missing properties selected
16207         and visible.
16208         * TreeView.cs: Implement node editing. Also some fixes to use
16209         Invalidate (invalid area) instead of Refresh when selecting.
16211 2005-01-17  Peter Bartok  <pbartok@novell.com>
16213         * Control.cs:
16214           - Implemented InvokeGotFocus() method
16215           - Implemented InvokeLostFocus() method
16216           - Implemented InvokePaint() method
16217           - Implemented InvokePaintBackground() method
16218           - Implemented InvokeClick() method
16219           - Implemented FindForm() method
16220           - Implemented RectangleToClient() method
16221           - Implemented ClientToRectangle() method
16222           - Implemented ResetBackColor() method
16223           - Implemented ResetCursor() method
16224           - Implemented ResetFont() method
16225           - Implemented ResteForeColor() method
16226           - Implemented ResetImeMode() method
16227           - Implemented ResetLeftToRight() method
16228           - Implemented ResetText() method
16229           - Implemented Scale() methods
16230           - Implemented ScaleCore() method
16231           - Implemented Update() method
16232           - Removed unused variables
16233           - Stubbed AccessibilityNotifyClients and
16234             ControlAccessibleObject.NotifyClients() methods (dunno what to do
16235             with those yet)
16236           - Now setting proper default for RightToLeft property
16237           - Fixed bug in SetClientSizeCore that would cause windows to get
16238             really big
16239           - Now sending Click/DoubleClick events
16240           - Now selecting controls when left mouse button is clicked on
16241             selectable control
16242         * AccessibleEvents.cs: Added
16243         * XplatUI.cs, XplatUIDriver.cs: Added UpdateWindow() method
16244         * XplatUIOSX.cs: Stubbed UpdateWindow() method
16245         * XplatUIWin32.cs: Implemented UpdateWindow() method
16246         * XplatUIX11.cs: Implemented UpdateWindow() method
16247         * Form.cs: Removed stray semicolon causing CS0162 warning
16248         * ThemeWin32Classic.cs: Fixed unused variable warnings
16249         * ScrollableControl.cs: Now calls base method for ScaleCore
16250         * ButtonBase.cs: Now disabling StandardClick and StandardDoubleClick
16251           style to avoid interference with internal click handler (which is
16252           different than standard Control click handling)
16253         * RadioButton.cs:
16254           - Now unchecks all sibling radio buttons when control is
16255             selected (Fixes #68756)
16256           - Removed internal tabstop variable, using the one inherited from
16257             Control
16259 2005-01-17  Jackson Harper  <jackson@ximian.com>
16261         * NavigateEventArgs.cs: Fix base type.
16262         * LinkLabel.cs: Sig fix
16263         
16264 2005-01-17  Jackson Harper  <jackson@ximian.com>
16266         * TreeView.cs: Only invalidate the effected nodes bounds when
16267         selecting nodes.
16269 2005-01-13  Jordi Mas i Hernandez <jordi@ximian.com>
16271         * XplatUIWin32.cs: fixes Win32 marshaling
16272         * XplatUIX11.cs: fixes method signature
16274 2005-01-17  Peter Bartok  <pbartok@novell.com>
16276         * XplatUIX11.cs: Clean up resources when we no longer need them
16278 2005-01-17  Peter Bartok  <pbartok@novell.com>
16280         * XplatUI.cs, XplatUIDriver.cs: Added SetCursor(), ShowCursor(),
16281           OverrideCursor(), DefineCursor(), DefineStdCursor(), GetCursorInfo()
16282           and DestroyCursor() methods.
16283         * Cursor.cs: Partially implemented, now supports standard cursors;
16284           still contains some debug code
16285         * Cursors.cs: Implemented class
16286         * Control.cs:
16287           - WndProc(): Added handling of WM_SETCURSOR message, setting the
16288             appropriate cursor
16289           - Implemented Cursor property
16290           - Replaced break; with return; more straightforwar and possibly
16291             faster
16292           - Now properly setting the result for WM_HELP
16293         * X11Structs.cs: Added CursorFontShape enum
16294         * XplatUIStructs.cs:
16295           - Added StdCursor enum (to support DefineStdCursor() method)
16296           - Added HitTest enum (to support sending WM_SETCURSOR message)
16297         * XplatUIX11.cs:
16298           - Now sends the WM_SETCURSOR message
16299           - Implemented new cursor methods
16300         * XplatUIOSX.cs: Stubbed new cursor methods
16301         * XplatUIWin32.cs:
16302           - Implemented new cursor methods
16303           - Added GetSystemMetrics function and associated enumeration
16305 2005-01-15  Peter Bartok  <pbartok@novell.com>
16307         * Control.cs:
16308           - WndProc(): Now handles EnableNotifyMessage
16309           - SelectNextControl(): Fixed bug where if no child or sibling
16310             controls exist we looped endlessly
16312 2005-01-14  Jackson Harper  <jackson@ximian.com>
16314         * TreeView.cs: Recalculate the tab pages when a new one is added
16315         so that the proper bounding rects are created.
16317 2005-01-14  Jackson Harper  <jackson@ximian.com>
16319         * TreeView.cs: Draw a gray box instead of a grip in the lower
16320         right hand corner when there are both horizontal and vertical
16321         scroll bars.
16323 2005-01-14  Jackson Harper  <jackson@ximian.com>
16325         * Control.cs: When erasing backgrounds use FromHwnd instead of
16326         FromHdc when there is a NULL wparam. This occurs on the X driver.
16327         * XplatUIX11.cs: Set the wparam to NULL.
16329 2005-01-13  Jackson Harper  <jackson@ximian.com>
16331         * PictureBox.cs: Implement missing methods (except ToString, need
16332         to test that on windows) and events. When visibility is changed we
16333         need to redraw the image because the buffers are killed. When size
16334         is changed refresh if the sizemode needs it.
16336 2005-01-13  Peter Bartok  <pbartok@novell.com>
16338         * Control.cs (SelectNextControl): Was using wrong method to select
16339           a control
16341 2005-01-13  Jordi Mas i Hernandez <jordi@ximian.com>
16343         * ComboBox.cs: fixes dropstyle
16345 2005-01-13  Peter Bartok  <pbartok@novell.com>
16347         * Form.cs:
16348           - Implemented Select() override
16349           - Now handles WM_SETFOCUS/WM_KILLFOCUS messages
16350           - Now sets keyboard focus on startup
16351         * Control.cs (SelectNextControl): Now properly handles directed=true
16352         * TextBoxBase.cs:
16353           - WndProc: Now passes tab key on to base if AcceptTabChar=false
16354           - Added (really bad) focus rectangle (mostly for testing)
16355         * TextBox.cs: Added code to handle getting/loosing focus and invalidating
16356           to enforce redraw on focus changes
16357         * ContainerControl.cs:
16358           - Fixed detection of Shift-Tab key presses
16359           - Fixed traversal with arrow keys
16360         * XplatUIX11.cs: Implemented simulated keyboard focus; not sure if we're
16361           gonna keep this or if it's complete yet
16362         
16363 2005-01-13  Jordi Mas i Hernandez <jordi@ximian.com>
16365         * ComboBox.cs: missing properties, fixes
16367 2005-01-13  Peter Bartok  <pbartok@novell.com>
16369         * Panel.cs (ctor): Setting Selectable window style to off
16370         * Splitter.cs (ctor): Setting Selectable window style to off
16371         * GroupBox.cs (ctor): Setting Selectable window style to off
16372         * Label.cs (ctor): Setting Selectable window style to off
16374 2005-01-12  Miguel de Icaza  <miguel@ximian.com>
16376         * UpDownBase.cs (InitTimer): If the timer has been already
16377         created, enable it.
16379         Use a TextBox instead of a Label.
16381 2005-01-12  Jackson Harper  <jackson@ximian.com>
16383         * TreeView.cs: Refresh the tree after sorting the nodes. Always
16384         draw the connecting node lines (when ShowLines is true).
16385         * TreeNode.cs: The nodes index can now be updated. This is used
16386         when a node collection is sorted.
16387         * TreeNodeCollection.cs: Implement sorting. Nodes can be sorted on
16388         insert or an existing unsorted node collection can be sorted.
16389         
16390 2005-01-12  Peter Bartok  <pbartok@novell.com>
16392         * ContainerControl.cs: Implemented ProcessDialogKeys()
16394 2005-01-12  Peter Bartok  <pbartok@novell.com>
16396         * Control.cs:
16397           - Implemented SelectNextControl() method
16398           - Several focus related bug fixes
16399           - Fixed Docking calculations to match MS documentation and
16400             behaviour
16402 2005-01-12  Jordi Mas i Hernandez <jordi@ximian.com>
16404         * ContainerControl.cs, ListControl.cs, ListBox.cs: keyboard navigation and
16405         bug fixes
16407 2005-01-12  Peter Bartok  <pbartok@novell.com>
16409         * Control.cs:
16410           - Fixed broken Contains() method
16411           - Implemented GetNextControl() method. Finally. This is the pre-
16412             requisite for focus handling.
16414 2005-01-12  Peter Bartok  <pbartok@novell.com>
16416         * OSXStrucs.cs: Added
16418 2005-01-12  Peter Bartok  <pbartok@novell.com>
16420         * XplatUIWin32.cs:
16421           - Removed PeekMessageFlags
16422           - Implemented SetWindowStyle() method
16423         * XplatUIStructs.cs: Added PeekMessageFlags
16424         * X11Structs: Added missing border_width field to XWindowChanges struct
16425         * XplatUIX11.cs:
16426           - PeekMessage: Now throws exception if flags which are not yet
16427             supported are passed
16428           - Implemented SetWindowStyle() method
16429           - Fixed SetZOrder to handle AfterHwnd properly
16430         * XplatUI.cs: Added SetWindowStyle() method
16431         * XplatUIDriver.cs: Added SetWindowStyle() abstract
16432         * Control.cs:
16433           - Implemented UpdateStyles() method
16434           - Implemented UpdateZOrder() method
16435         * XplatUIOSX.cs: Added SetWindowStyle() stub
16437 2005-01-12  Geoff Norton  <gnorton@customerdna.com>
16439         * XplatUIOSX.cs: Fix SetZOrder (this needs more testing with a 3
16440         button mouse).
16443 2005-01-11  Jackson Harper  <jackson@ximian.com>
16445         * TreeView.cs: Still need to draw lines to siblings even if out of
16446         the current node is out of the clip.
16448 2005-01-11  Jackson Harper  <jackson@ximian.com>
16450         * TreeView.cs: When setting the hbar/vbar/grip position use
16451         SetBounds so that perform layout is only called once. Also suspend
16452         and resume layout so layout is only done once for all controls.
16453         - Removed some debug fluff
16454         * SizeGrip.cs: Call base implmentation in overriding methods.
16455         - When visibility is changed the drawing buffers are killed so we
16456         need to redraw.
16458 2005-01-11  Jackson Harper  <jackson@ximian.com>
16460         * TreeView.cs: Calculate the open node count while drawing. This
16461         saves us an entire tree traversal for every paint operation. Use
16462         a member var for the open node count so less vars are passed around.
16464 2005-01-11  John BouAntoun  <jba-mono@optusnet.com.au>
16466         * MonthCalendar.cs:
16467         - fixed selection to use mousemove, not mouse polling on timer
16468         * ThemeWin32Classic.cs
16469         - removed redundant unused variable "no_more_content"
16470         
16471 2005-01-11  Peter Bartok  <pbartok@novell.com>
16473         * XplatUIX11.cs (DoEvents): Needs to return when no more events
16474           are pending, so it now calls PeekMessage instead of GetMessage;
16475           implemented a incomplete version of PeekMessage
16476         
16477 2005-01-11  Peter Bartok  <pbartok@novell.com>
16479         * XplatUIWin32.cs: Switched P/Invokes to unicode charset to avoid
16480           I18n issues
16481         * TextBoxBase.cs: Added sending of TextChanged event
16483 2005-01-10  Jackson Harper  <jackson@ximian.com>
16485         * TreeView.cs: Try not to draw outside the clipping rectangle on
16486         each node element.
16488 2005-01-10  Jordi Mas i Hernandez <jordi@ximian.com>
16490         * ComboBox.cs: keyboard navigation, item navigation, bug fixes
16492 2005-01-10  Jackson Harper  <jackson@ximian.com>
16494         * TreeView.cs:
16495         - Implement fast scrolling. Now only the newly
16496         exposed nodes are drawn and the old image is moved using the
16497         XplatUI::ScrollWindow method.
16498         - Factor in height of nodes when calculating whether or not the
16499         node is in the clipping rect.
16501 2005-01-10  Jackson Harper  <jackson@ximian.com>
16503         * TreeNodeCollection.cs: Refresh the tree when a new node is added.
16505 2005-01-10  Peter Bartok  <pbartok@novell.com>
16507         * Application.cs: Added temporary hack to resolve all our resize
16508           required issues on startup. This will get fixed properly at
16509           some point in the future
16511 2005-01-10  Jackson Harper  <jackson@ximian.com>
16513         * SizeGrip.cs: New internal class that is used as a sizing
16514         grip control...hence the name.
16516 2005-01-10  Peter Bartok  <pbartok@novell.com>
16518         * Control.cs: Implemented proper TabIndex handling, now assigning
16519           a tabindex when a control is added to a container
16520         * GroupBox.cs (ctor): Now sets the Container style bit, required
16521           for Control.GetNextControl()
16523 2005-01-09  Jackson Harper  <jackson@ximian.com>
16525         * TextBoxBase.cs: Clear window when scrolling (fixes build).
16527 2005-01-09  Peter Bartok <pbartok@novell.com>
16529         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIOSX.cs,
16530           XplatUIX11.cs: Added ability to control ScrollWindow expose and
16531           an overload for ScrollWindow to allow only scrolling a rectangle
16533 2005-01-09  Peter Bartok <pbartok@novell.com>
16535         * Form.cs:
16536           - Implemented SetDesktopBounds method
16537           - Implemented SetDesktopLocation method
16539 2005-01-08  Jackson Harper  <jackson@ximian.com>
16541         * TreeView.cs: Only set the vbar's Maximum and LargeChange when
16542         the node count has changed, this removes to VScroll::Refresh calls
16543         when drawing.
16545 2005-01-08  Geoff Norton  <gnorton@customerdna.com>
16547         * XplatUIOSX.cs: Fix GetWindowState & SetWindowState
16549 2005-01-07  Jackson Harper  <jackson@ximian.com>
16551         * TreeNode.cs: Just update the single node when it is
16552         checked. Don't refresh after toggling, the Expand/Collapse already
16553         handles this.
16554         * TreeView.cs: Respect clipping a little more when drawing. Try
16555         not to redraw things that don't need to be redrawn. Just hide the
16556         scrollbars when they are no longer needed instead of removing
16557         them, so they don't have to be created again and again.
16558         
16559 2005-01-07  Geoff Norton  <gnorton@customerdna.com>
16561         * XplatUIOSX.cs (SetCaretPos):  We need to translate the view
16562         coordinates to window space to place the caret properly, FIXED.
16563         Implement GetWindowState & SetWindowState
16565 2005-01-06  Peter Bartok <pbartok@novell.com>
16567         * Form.cs:
16568           - Implemented ClientSize property
16569           - Implemented DesktopBounds property
16570           - Implemented DesktopLocation property
16571           - Implemented IsRestrictedWindow property
16572           - Implemented Size property
16573           - Implemented TopLevel property
16574           - Implemented FormWindowState property
16575         * Control.cs:
16576           - Implemented GetTopLevel() method
16577           - Implemented SetTopLevel() method
16578         * X11Structs.cs (Atom):
16579           - Added AnyPropertyType definition
16580           - Added MapState definiton and updated XWindowAttribute struct
16581         * XplatUI.cs: Added GetWindowState() and SetWindowState() methods
16582         * XplatUIDriver.cs: Added GetWindowState() and SetWindowState() methods
16583         * XplatUIOSX.cs: Stubbed GetWindowState() and SetWindowState() methods
16584         * XplatUIWin32.cs:
16585           - Implemented GetWindowState() and SetWindowState() methods
16586           - Fixed Win32GetWindowLong return type
16587         * XplatUIX11.cs:
16588           - Introduced central function for sending NET_WM messages
16589           - Implemented GetWindowState() and SetWindowState() methods
16590         * TextBoxBase.cs (set_Lines):
16591           - Now uses Foreground color for text added via Text property (Duh!)
16592           - Added code to remember programmatically requested size (fixes
16593             behaviour when Multiline is set after Size)
16594           - Added AutoSize logic
16596 2005-01-06  Jackson Harper  <jackson@ximian.com>
16598         * TreeView.cs: Draw the image after the checkbox if checkboxes are enabled.
16600 2005-01-06  Jackson Harper  <jackson@ximian.com>
16602         * ListBox.cs: Don't allow the horizontal scrollbars maximum to be
16603         set to less then 0.
16605 2005-01-06  Jackson Harper  <jackson@ximian.com>
16607         * ScrollableControl.cs: Lazy init the scrollbars.
16608         
16609 2005-01-06  Jackson Harper  <jackson@ximian.com>
16611         * Theme.cs: Speed up getting pens and solid brushes, by using
16612         their ARGB as a hash instead of tostring and not calling Contains.
16614 2005-01-06  Peter Bartok <pbartok@novell.com>
16616         * Form.cs:
16617           - Implemented OnActivated and OnDeactivate event trigger
16618           - Implemented Activate() method
16619           - Fixed ShowDialog() to activate the form that was active before
16620             the dialog was shown
16621         * XplatUIX11.cs:
16622           - Added global active_window var that tracks the currently active
16623             X11 window
16624           - Now always grabs Property changes from the root window to always
16625             catch changes on the active window property
16626           - Added code to PropertyNotify handler to send Active/Inactive
16627             messages when state changes. This puts X11 and Win32 en par on
16628             WM_ACTIVATE notifications (except for double notifications when
16629             the user clicks away from our modal window to another one of our
16630             windows)
16632 2005-01-05  Jackson Harper  <jackson@ximian.com>
16634         * ImageList.cs: Implment ctor
16636 2005-01-05  Geoff Norton  <gnorton@customerdna.com>
16638         * XplatUIOSX.cs: Implement Activate/SetTopmost
16640 2005-01-05  Geoff Norton  <gnorton@customerdna.com>
16642         * XplatUIOSX.cs: Implement SetZOrder, minor cleanup
16644 2005-01-05  Geoff Norton  <gnorton@customerdna.com>
16646         * XplatUIOSX.cs: Implement GetActive/SetFocus.
16648 2005-01-05  Peter Bartok <pbartok@novell.com>
16650         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIX11.cs,
16651           XplatUIOSX.cs: Added GetActive method to return the currently
16652           active window for the application (or null, if none is active)
16653         * Form.cs:
16654           - Implemented ActiveForm
16655           - Commented out owner assignment for modal dialogs (causes problems
16656             on Win32, since the owner will be disabled)
16657           - Reworked some Active/Focus handling (still incomplete)
16658         * CommonDialog.cs: Commented out owner assignment for modal dialogs
16659           (causes problems on Win32, since the owner will be disabled)
16660         * IWin32Window: Added ComVisible attribute
16662 2005-01-05  Peter Bartok <pbartok@novell.com>
16664         * ToolTip.cs (WndProc): Enable setting focus now that we have the
16665           required XplatUI functions.
16667 2005-01-05  Peter Bartok <pbartok@novell.com>
16669         * XplatUI.cs, XplatUIOSX.cs, XplatUIWin32.cs, XplatUIDriver.cs,
16670           XplatUIX11.cs, X11Structs.cs, Form.cs: Framework code required
16671           to implement focus and activation handling; still incomplete and
16672           with debug output
16674 2005-01-04  Peter Bartok <pbartok@novell.com>
16676         * TextBoxBase.cs: Changed access level for Document property to
16677           match switch to internal for TextControl
16679 2005-01-04  Peter Bartok <pbartok@novell.com>
16681         * AccessibleObject: Added ComVisible attribute
16683 2005-01-04  Jackson Harper  <jackson@ximian.com>
16685         * X11Keyboard.cs: Remove unneeded var.
16687 2005-01-04  Jackson Harper  <jackson@ximian.com>
16689         * XplatUIX11.cs (DoEvents): Implement, Just cast aside all events
16690         but PAINT.
16691         * XplatUIX11.cs (GetMessage): Call Exit when we get an unknown
16692         ClientMessage. This makes apps exit cleanly (more often).
16693         
16694 2005-01-04  Jackson Harper  <jackson@ximian.com>
16696         * TreeNode.cs: Patches by Kazuki Oikawa (kazuki@panicode.com) for
16697         handling focus, return correct colors and fonts,
16698         * TreeView.cs: Patches by Kazuki Oikawa (kazuki@panicode.com) to
16699         handle selection, horizontal scrolling, and mouse interaction.
16701 2005-01-04  Peter Bartok <pbartok@novell.com>
16703         * ICommandExecutor.cs: Added
16704         * IDataGridColumnStyleEditingNotificationService.cs: Added
16705         * IFeatureSupport.cs: Added
16706         * IFileReaderService.cs: Added
16707         * IDataObject.cs: Added ComVisible attribute
16708         * AmbientProperties.cs: Added
16709         * BaseCollection.cs: Added missing attributes
16710         * ListBindingConverter.cs: Added (stubbed, required for certain attributes)
16711         * BaseCollection.cs: Added missing attributes
16712         * Binding.cs: Added TypeConverter attribute
16713         * BindingContext.cs: Added DefaultEvent attribute
16714         * BindingsCollection.cs: Added DefaultEvent attribute
16715         * Button.cs: Added DefaultValue attribute
16716         * DragEventArgs.cs: Added ComVisible attribute
16717         * GiveFeedbackEventArgs.cs: Added ComVisible attribute
16718         * KeyEventArgs.cs: Added ComVisible attribute
16719         * KeyPressEventArgs.cs: Added ComVisible attribute
16720         * MouseEventArgs.cs: Added ComVisible attribute
16721         * NavigateEventArgs.cs: Added
16722         * NavigateEventHandler.cs: Added
16723         * FeatureSupport.cs: Added
16724         * OSFeature.cs: Added
16725         * Theme.cs: Added abstract Version property to support OSFeature
16726         * ThemeWin32Classic.cs: Added Version property to
16727           support OSFeature.Themes
16728         * ProgressBar.cs: Removed OnPaintBackground override, not required since
16729           the proper styles to avoid background drawing are set, also doesn't
16730           match MS signature
16731         * QueryAccessibilityHelpEventArgs.cs: Added ComVisible attribute
16732         * QueryContinueDragEventArgs.cs: Added ComVisible attribute
16733         * ScrollEventArgs.cs: Added ComVisible attribute
16734         * SplitterEventArgs.cs: Added ComVisible attribute
16735         * AccessibleSelection.cs: Added Flags attribute
16736         * Appearance.cs: Added ComVisible attribute
16737         * Border3DSide.cs: Added ComVisible attribute
16738         * Border3DStyle.cs: Added ComVisible attribute
16739         * BorderStyle.cs: Added ComVisible attribute
16740         * DragAction.cs: Added ComVisible attribute
16741         * ErrorBlinkStyle.cs: Added
16742         * ScrollEventType.cs: Added ComVisible attribute
16743         * AnchorStyles.cs: Added Editor attribute
16744         * DockStyle.cs: Added Editor attribute
16745         * HorizontalAlignment.cs: Added ComVisible attribute
16746         * HelpEventArgs.cs: Added ComVisible attribute
16747         * PaintEventArgs.cs: Added IDisposable
16749 2005-01-04  Peter Bartok <pbartok@novell.com>
16751         * TextControl.cs: Switched Line, LineTag and Document classes to
16752           internal
16754 2005-01-04  Jordi Mas i Hernandez <jordi@ximian.com>
16756         * ComboBox.cs, ThemeWin32Classic.cs, ListBox.cs, Theme.cs:
16757         Simple mode, fixes, IntegralHeight, etc.
16759 2005-01-04  Peter Bartok <pbartok@novell.com>
16761         * TextBoxBase.cs: Using proper font variable now
16763 2005-01-04  Peter Bartok <pbartok@novell.com>
16765         * Form.cs (ShowDialog): Set parent to owner, if provided
16766         * GroupBox.cs: Removed unused vars
16767         * TextControl.cs:
16768           - Added GetHashCode() for Document and LineTag classes
16769           - Removed unused variables
16770           - Added CharIndexToLineTag() and LineTagToCharIndex() methods
16771             to allow translation between continuous char position and line/pos
16772         * CheckBox.cs: Removed vars that are provided by base class
16773         * RadioButton.cs: Removed vars that are provided by base class, added
16774           new keyword where required
16775         * LinkLabel.cs: Added new keyword where required
16776         * Control.cs (WndProc): Removed unused variable
16777         * TextBoxBase.cs:
16778           - Finished SelectionLength property
16779           - Implemented SelectionStart property
16780           - Implemented Text property
16781           - Removed unused vars
16782         * MessageBox.cs: Added new keyword where required
16783         * TextBox.cs: Removed Text property code (now in TextBoxBase), fixed
16784           WndProc signature
16785         * MenuAPI.cs: Added new keyword where required
16786         * ButtonBase.cs: Removed vars that are provided by base class, added
16787           new keyword where required
16788         * ThemeWin32Classic.cs (DrawMonthCalendarDate): Now cast Math.Floor
16789           argument to double, to allow compiling with csc 2.0 (Atsushi ran
16790           into this)
16791         * Application.cs (Run): Now triggers the ThreadExit event
16792         * CommonDialog.cs: Added new keyword where required; now properly sets
16793           parent (owner) for dialog
16794         * XplatUIX11.cs: Commented out unused vars
16795         * StatusBar.cs: Fixed signature for Text property
16796         * TabPage.cs: Undid Jordi's removal of unused var, now using the var
16798 2005-01-04  Jordi Mas i Hernandez <jordi@ximian.com>
16800         * ComboBox.cs, TabPage.cs, MenuAPI.cs, ThemeWin32Classic.cs,
16801         TrackBar.cs, MonthCalendar.cs: remove unused vars
16803 2005-01-03  Jackson Harper  <jackson@ximian.com>
16805         * ThemeWin32Classic.cs:
16806         * X11Keyboard.cs: Remove unused vars.
16808 2005-01-03  Peter Bartok  <pbartok@novell.com>
16810         * TextBox.cs:
16811           - set_Text: Tied into TextControl
16812           - set_TextAlignment: Tied into TextControl
16813         * TextControl.cs:
16814           - Added alignment properties and implemented alignment handling
16815             and drawing (still has a bug, not generating proper expose events)
16816           - Added new Line() constructor to allow passing the line alignment
16817           - Fixed selection setting, properly handling end<start now
16818           - Added aligment considerations to RecalculateDocument()
16819         * TextBoxBase.cs:
16820           - Now properly enforces control height for single line controls
16821           - Added support for CharacterCasing
16822           - Added IsInputKey override
16823           - Fixed Keys.Enter logic
16824           - Added SetBoundsCore override
16825           - Fixed mouse selection handling
16827 2005-01-03  Jackson Harper  <jackson@ximian.com>
16829         * TreeView.cs:
16830           - Collapse and uncheck all nodes when CheckBoxes is disabled.
16831           - Checkboxes are always aligned to the bottom of the node,
16832           regardless of item height.
16833           - Use the node bounds to draw the text so we can center it when
16834           the item height is greater then the font height.
16835           - Node::Bounds are only the text part of the node.
16836         * TreeNode.cs: New method to combine collapsing and unchecking all
16837           nodes recursively.
16839 2005-01-02  Jackson Harper  <jackson@ximian.com>
16841         * TreeView.cs: Draw checkmarks, handle detecting check mark clicks
16842         * TreeNode.cs: Add a bounding box for the checkbox, refresh the
16843         tree when a check is changed. TODO: Only refresh the checked node.
16845 2004-12-30  Jackson Harper  <jackson@ximian.com>
16847         * TreeView.cs: Draw checkbox boxes when checkboxes are enabled.
16848         * TreeNode.cs: When collapsing make sure to never collapse the
16849         root node.
16851 2004-12-29  Jackson Harper  <jackson@ximian.com>
16853         * TreeView.cs: Align lines to the bottom of plus minus boxes properly.
16854         
16855 2004-12-28  Zoltan Varga  <vargaz@freemail.hu>
16857         * X11Structs.cs X11Keyboard.cs XplatUIX11.cs: Fix 64 bit issues.
16859 2004-12-28  Peter Bartok  <pbartok@novell.com>
16861         * MessageBox.cs (get_CreateParams): Don't use owner var if it's
16862           not yet assigned
16864 2004-12-28  Peter Bartok  <pbartok@novell.com>
16866         * Control.cs (WndProc): Added WM_HELP handler, now generates
16867           HelpRequested event
16868         * Form.cs: Added HelpButton property and required support code
16869         * XplatUIStructs.cs: Added HELPINFO structure for WM_HELP handling
16871 2004-12-28  Peter Bartok  <pbartok@novell.com>
16873         * CommonDialog.cs:
16874           - Made DialogForm.owner variable internal
16875           - Added check to ensure owner form is set before setting
16876             owner properties in CreateParams
16878 2004-12-28  Geoff Norton  <gnorton@customerdna.com>
16880         * XplatUIOSX.cs: Implement mouse hovering.  Fix QDPoint struct to avoid
16881           swizzling.  Implement ClientToScreen and ScreenToClient.  Implement
16882           GetCursorPos.  Fix major visibility issues.  Rework the windowing
16883           system to support borderless/titleless windows (implements menus).
16884           Fix GetWindowPos.  Implement initial background color support for
16885           views.
16887 2004-12-28  Peter Bartok  <pbartok@novell.com>
16889         * Form.cs (get_CreateParams): Make sure we have an owner before using
16890           the owner variable. Implement proper default if no owner exists
16892 2004-12-28  Peter Bartok  <pbartok@novell.com>
16894         * In preparation for making Managed.Windows.Forms the default build target
16895           for System.Windows.Forms, the following stubbed files were added.
16896           Dialogs are currently being implemented by contributors and are only
16897           short-term place holders.
16898         * ColorDialog.cs: Initial check-in (minmal stub)
16899         * DataGrid.cs: Initial check-in (minimal stub)
16900         * DataGridLineStyle.cs: Initial check-in (minimal stub)
16901         * DataGridParentRowsLabelStyle.cs: Initial check-in (minimal stub)
16902         * DataGridTableStyle.cs: Initial check-in (minimal stub)
16903         * FontDialog.cs: Initial check-in (minimal stub)
16904         * FileDialog.cs: Initial check-in (minimal stub)
16905         * GridColumnStylesCollection.cs: Initial check-in (minimal stub)
16906         * GridTableStylesCollection.cs: Initial check-in (minimal stub)
16907         * OpenFileDialog: Initial check-in (minimal stub)
16908         * IComponentEditorPageSite.cs: Initial check-in
16909         * Splitter.cs: Initial check-in (for Jackson)
16910         * SplitterEventArgs.cs: Initial check-in (for Jackson)
16911         * SplitterEventHandler.cs: Initial check-in (for Jackson)
16912         * TextBox.cs: Initial check-in; still needs some wiring to
16913           TextControl backend
16914         * Form.cs: Implemented ControlBox property
16915         * MessageBox.cs: Added proper coding for Minimize/Maximize/ControlBox
16916         * CommonDialog.cs: Added proper coding for Minimize/Maximize/ControlBox
16917         * TextControl.cs: Added selection functionality; added todo header
16918         * TextBoxBase.cs:
16919           - Implemented Lines property
16920           - Implemented TextHeight property
16921           - Implemented SelectedText property
16922           - Implemented SelectionLength property
16923           - Implemented SelectAll method
16924           - Implemented ToString method
16925           - Removed and cleaned up some debug code
16926           - Implemented (still buggy) mouse text selection
16928 2004-12-27  Jordi Mas i Hernandez <jordi@ximian.com>
16930         * ComboBox.cs: Complete DropDownList implementation, fixes.
16932 2004-12-26  Jordi Mas i Hernandez <jordi@ximian.com>
16934         * ThemeWin32Classic, Theme.cs: ComboBox drawing methods
16935         * ComboBoxStyle.cs: ComboBoxStyle enum
16936         * ComboBox.cs: Initial work on ComboBox control
16938 2004-12-21  Peter Bartok  <pbartok@novell.com>
16940         * Control.cs (ctor, CreateParams): Moved setting of is_visible
16941           forward so that anything that creates a window gets the default,
16942           also no longer uses Visible property in CreateParams to avoid
16943           walking up the parent chain and possibly get the wrong visible
16944           status. Fixed IsVisible to no longer walk up to the parent.
16946 2004-12-21  Peter Bartok  <pbartok@novell.com>
16948         * Form.cs (ShowDialog): Unset modality for the proper window
16950 2004-12-20  Peter Bartok  <pbartok@novell.com>
16952         * CommonDialog.cs: Initial check-in
16954 2004-12-20  Peter Bartok  <pbartok@novell.com>
16956         * Control.cs (Visible): Now uses the parent window instead of the
16957           client area window for the property
16959         * Form.cs
16960           - ShowDialog(): Now uses the proper window for modality
16961           - The default visibility state for the form parent is now false. This
16962             will prevent the user from seeing all the changes to the form and
16963             its controls before the application hits Application.Run()
16964           - Removed some stale commented out code
16966         * NativeWindow.cs:
16967           - Added FindWindow() method to have a method to check for existence
16968             of a window handle
16969           - Added ability to override default exception handling (for example
16970             when debugging with VS.Net; to do this the ExternalExceptionHandler
16971             define must be set
16972           - Removed some useless debug output
16974         * XplatUIX11.cs:
16975           - Removed r37929 (SetModal patch from Ashwin Bharambe), was
16976             not working as expected
16977           - Implemented modal_window stack and checking for _WM_ACTIVE_WINDOW
16978             property to allow switching back to the modal window if focus is
16979             given to another one of our windows (Application Modal)
16980           - Now only sets override_redirect if we create a window
16981             without WS_CAPTION
16982           - Moved EventMask selection before mapping of newly created window
16983             so we can catch the map event as well
16984           - Implemented Activate() method via the _WM_ACTIVE_WINDOW property
16985           - Added various Atom related DllImports
16986           - Implemented Exit() method
16987           - .ctor() : No longer shows window if WS_VISIBLE is not defined
16988             in the CreateParams
16990         * MessageBox.cs: Now properly deals with the FormParent window by
16991           providing an override the FormParent CreateParams property to
16992           set as POPUP instead of OVERLAPPED window.
16994 2004-12-19  Geoff Norton  <gnorton@customerdna.com>
16996         * XplatUIOSX.cs: Implement DestroyWindow.  Implement ScrollWindow
16997         Minor code cleanup.
16999 2004-12-19  Geoff Norton  <gnorton@customerdna.com>
17000         
17001         * XplatUIOSX.cs (SetModal): Implement this method on OSX.
17003 2004-12-18  Peter Bartok  <pbartok@novell.com>
17005         * XplatUIX11.cs (SetModal): Applied patch from Ashwin Bharambe,
17006           implementing SetModal() method
17008 2004-12-18  Peter Bartok  <pbartok@novell.com>
17010         * X11Structs.cs (XGCValues): Fixed type of function element
17011         * XplatUI.cs: Added ScrollWindow() method
17012         * XplatUIDriver.cs: Added ScrollWindow() abstract
17013         * XplatUIWin32.cs: Implemented ScrollWindow() method
17014         * XplatUIX11.cs: Implemented ScrollWindow() method
17015         * XplatUIOSX.cs: Stubbed out ScrollWindow() method
17017 2004-12-17  Geoff Norton  <gnorton@customerdna.com>
17019         * XplatUIOSX.cs:  Fix cursor to use an Invert instead of drawing it
17020         Some more keyboard support (INCOMPLETE)
17022 2004-12-17  Peter Bartok  <pbartok@novell.com>
17024         * TextControl.cs:
17025         - Added color attribute to line tags.
17026         - Added color argument to all functions dealing with tags
17027         - Added color argument support to various functions
17028         - Fixed miss-calculation of baseline/shift in certain circumstances
17030         * TextBoxBase.cs: Added new color option to test code
17032 2004-12-17  Jackson Harper  <jackson@ximian.com>
17034         * TreeNode.cs:
17035         * MonthCalendar.cs: Signature fixes
17037 2004-12-17  Geoff Norton  <gnorton@customerdna.com>
17039         * XplatUIOSX.cs: Find the missing caret; caret was dissappearing after a
17040         keyboard event moved it.  Create a new graphics context for each paint resolves this
17042 2004-12-17  Geoff Norton  <gnorton@customerdna.com>
17044         * XplatUIOSX.cs: Fix hard cpu eat on loop with existing timers,
17045         Make caret exist and go blink blink.  Initial keyboard support.
17046         Fix exception handler, Add Invalidate support.  Change way RefreshWindow
17047         works.
17049 2004-12-17  Jackson Harper  <jackson@ximian.com>
17051         * XplatUIStructs.cs: Updated set of virtual keycodes.
17052         * KeyboardLayouts.cs: SCROLL_LOCK is now SCROLL
17054 2004-12-17  Jackson Harper  <jackson@ximian.com>
17056         * XplatUIX11.cs: Prune old keyboard code.
17058 2004-12-17  Jackson Harper  <jackson@ximian.com>
17060         * XplatUIX11.cs: When generating mouse wparams get the modifier
17061         keys from the ModifierKeys property.
17063 2004-12-17  Jackson Harper  <jackson@ximian.com>
17065         * X11Keyboard.cs: Send up/down input when generating
17066         messages. Remove some unused vars.
17068 2004-12-17  Jackson Harper  <jackson@ximian.com>
17070         * TabControl.cs:
17071         * TreeView.cs: get rid of warnings.
17073 2004-12-17  Jackson Harper  <jackson@ximian.com>
17075         * XplatUIStructs.cs: Fix a couple wrong virtual keycodes.
17077 2004-12-17  Jordi Mas i Hernandez <jordi@ximian.com>
17079         * ListBox.cs: bug fixes, changes for CheckedListBox.cs
17080           CheckedListBox.cs: Implementation
17082 2004-12-17  Peter Bartok  <pbartok@novell.com>
17084         * TextControl.cs (RecalculateLine): Fixed baseline aligning calcs
17086 2004-12-16  Peter Bartok  <pbartok@novell.com>
17088         * TextControl.cs:
17089           - InsertCharAtCaret(): Fixed start pos fixup
17090           - CaretLine_get: No longer derives the line from the tag, the tag
17091             could be stale if lines in the document have been added or deleted
17092           - RebalanceAfterDelete(): Fixed bug in balancing code
17093           - RebalanceAfterAdd(): Fixed really stupid bug in balancing code
17094           - Line.Streamline(): Now can also elminate leading empty tags
17095           - DumpTree(): Added a few more tests and prevented exception on
17096             uninitialized data
17097           - Added Debug section for Combining lines
17098           - Delete(): Now copies all remaining properties of a line
17099           
17100         * TextBoxBase.cs:
17101           - Left mousebutton now sets the caret (and middle button still acts
17102             as formatting tester, which must go away soon)
17103           - Added Debug section for Deleting/Combining lines
17104           - Fixed calculations for UpdateView after Combining lines
17106 2004-12-16  Peter Bartok  <pbartok@novell.com>
17108         * TextControl.cs: Now properly aligns text on a baseline, using the
17109           new XplatUI.GetFontMetrics() method. Simplified several calculations
17110         * TextBoxBase.cs: Moved #endif to allow compiling if Debug is not
17111           defined
17113 2004-12-16  Peter Bartok  <pbartok@novell.com>
17115         * XplatUI.cs: Added GetFontMetrics() method
17116         * XplatUIDriver.cs: Added GetFontMetrics() abstract
17117         * XplatUIX11.cs: Implemented GetFontMetrics() method, now calls
17118           into libgdiplus, our private GetFontMetrics function
17119         * XplatUIOSX.cs: Implemented GetFontMetrics() method, same as X11
17120         * XplatUIWin32.cs: Implemented GetFontMetrics() method
17122 2004-12-16  Jackson Harper  <jackson@ximain.com>
17124         * XplatUIStruct.cs: Add enum for dead keys
17125         * X11Keyboard.cs: Map and unmap dead keys.
17127 2004-12-16  Jackson Harper  <jackson@ximian.com>
17129         * X11Keyboard.cs: Detect and use the num lock mask.
17131 2004-12-16  Peter Bartok  <pbartok@novell.com>
17133         * Control.cs (CreateGraphics): Added check to make sure the
17134           handle of the window exists before calling Graphics.FromHwnd()
17136 2004-12-16  Peter Bartok  <pbartok@novell.com>
17138         * TextBoxBase.cs: Initial check-in. DO NOT TRY TO USE THIS YET. It
17139           contains a lot of code that's not supposed to be there for the
17140           real thing, but required for developing/testing the textbox
17141           backend.
17143 2004-12-16  Peter Bartok  <pbartok@novell.com>
17145         * TextControl.cs:
17146         - Fixed Streamline method
17147         - Added FindTag method to Line
17148         - Added DumpTree method for debugging
17149         - Added DecrementLines() method for deleting lines
17150         - Fixed UpdateView to update the cursor to end-of-line on single-line
17151           updates
17152         - Added PositionCaret() method
17153         - Fixed MoveCaret(LineDown) to move into the last line, too
17154         - Added InsertChar overload
17155         - Fixed InsertChar tag offset calculations
17156         - Added DeleteChar() method
17157         - Added Combine() method for folding lines
17158         - Fixed Delete() method, no longer allocates wasted Line object and
17159           now copies all properties when swapping nodes
17160         - Delete() method now updates document line counter
17162 2004-12-15  Jackson Harper  <jackson@ximian.com>
17164         * XplatUIX11.cs: Get the modifier keys from the keyboard driver
17165         * X11Keyboard.cs: Expose the currently selected modifier keys
17166         through a property.
17168 2004-12-15  Peter Bartok  <pbartok@novell.com>
17170         * TextControl.cs: Initial check-in. Still incomplete
17172 2004-12-15  Jackson Harper  <jackson@ximian.com>
17174         * TreeNode.cs:
17175         * TreeView.cs: Fix build on csc (second time today ;-))
17177 2004-12-15  Jackson Harper  <jackson@ximian.com>
17179         * TreeView.cs: Store the treenodes plus/minus box bounds when it
17180         is calculated and use this for click testing.
17181         * TreeNode.cs: Add functionality to store the nodes plus minus box bounds.
17183 2004-12-15  Jackson Harper  <jackson@ximian.com>
17185         * TreeView.cs: Pass the nodes image index to the image list when
17186         drawing that image.
17188 2004-12-15  Jackson Harper  <jackson@ximian.com>
17190         * X11Keyboard.cs: Set messages hwnd.
17191         * XplatUIX11.cs: Pass proper hwnd wot keyboard driver. Set hwnd on
17192         post_message calls.
17194 2004-12-15  Jackson Harper  <jackson@ximian.com>
17196         * X11Keyboard.cs: Fix to compile with csc.
17197         
17198 2004-12-15  Jackson Harper  <jackson@ximian.com>
17200         * X11Structs.cs: Add key mask values
17201         * XplatUIStruct.cs: Add keyboard event flags, and keyboard definitions
17202         * X11Keyboard.cs: New file - Extrapolates and interpolates key
17203         down/up foo into WM_CHAR foo
17204         * KeyboardLayouts.cs: Common keyboard layouts
17205         * XplatUIX11.cs: Add the keyboard driver. Add functionality to
17206         post messages into the main queue.
17208 2004-12-13  Jordi Mas i Hernandez <jordi@ximian.com>
17210         * Button.cs: implement ProcessMnemonic
17211         * ThemeWin32Classic.cs: use ResPool (caching) instead of creating
17212           brushes everytime
17213         * Control.cs: fixes IsMnemonic (support for &&, case insensitive, etc)
17214         * ButtonBase.cs: Show HotkeyPrefix (not the &)
17216 2004-12-12  John BouAntoun  <jba-mon@optusnet.com.au>
17217         
17218         * MonthCalendar.cs: Implemented click-hold for next/previous month
17219           and date selection
17220           
17221 2004-12-11  Peter Bartok  <pbartok@novell.com>
17223         * X11Structs.cs:
17224           - Added XKeyboardState (moved from XplatUIX11.cs)
17225           - Added XCreateGC related enums and structures
17226           - Added GXFunction for XSetFunction
17228         * XplatUIStructs.cs: Added missing WS_EX_xxx definitions
17230         * XplatUI.cs: Added CreateCaret(), DestroyCaret(), SetCaretPos() and
17231           CaretVisible() calls
17233         * ToolTip.cs: Added code to prevent stealing focus from app windows
17235         * XplatUIDriver.cs: Added abstracts for caret functions (CreateCaret,
17236           DestroyCaret, SetCaretPos and CaretVisible)
17238         * XplatUIX11.cs:
17239           - Added implementation for caret functions
17240           - Moved hover variables into a struct, to make it a bit easier
17241             on the eyes and to debug
17242           - Removed XKeyboardState (moved to XplatUIX11.cs)
17243           - Moved Keyboard properties into the properties region
17245         * Control.cs (get_Region): Control.CreateGraphics is the appropriate
17246           call to get a graphics context for our control
17248         * XplatUIOSX.cs: Added empty overrides for the new caret functions
17250         * TreeView.cs: Fixed bug. No matter what color was set it would always
17251           return SystemColors.Window
17253         * XplatUIWin32.cs: Implemented caret overrides
17255 2004-12-10  Jordi Mas i Hernandez <jordi@ximian.com>
17257         * ListBox.cs: fire events, implement missing methods and properties,
17258         sorting.
17260 2004-12-10  John BouAntoun <jba-mono@optusnet.com.au>
17262         * MonthCalendar.cs: invalidation bug fixing
17263         * ThemeWin32Classic.cs: paint fixing
17265 2004-12-09  Geoff Norton  <gnorton@customerdna.com>
17267         * XplatUIOSX.cs: Refactor to pass the real hwnd into Graphics.FromHwnd, we
17268         prepare the CGContextRef there now.
17270 2004-12-09  John BouAntoun <jba-mono@optusnet.com.au>
17272         * MonthCalendar.cs:
17273           - optimisationL only invalidate areas that have changed
17274         * ThemeWin32Classic.cs:
17275           - only paint parts that intersect with clip_area
17277 2004-12-09  Peter Bartok  <pbartok@novell.com>
17279         * Application.cs: Undid changes from r37004 which cause problems
17280         on X11
17282 2004-12-09  Ravindra  <rkumar@novell.com>
17284         * ToolBar.cs: Added support for displaying ContextMenu
17285         attached to a button on ToolBar.
17286         * ToolBarButton.cs: Uncomment/fixed the DropDownMenu
17287         property.
17289 2004-12-09  Jordi Mas i Hernandez <jordi@ximian.com>
17291         * Label.cs: autosize works in text change and removes unnecessary
17292         invalidate
17294 2004-12-09  Jordi Mas i Hernandez <jordi@ximian.com>
17296         * ThemeWin32Classic.cs, XplatUIOSX.cs, XplatUIWin32.cs:
17297         remove warnings
17299 2004-12-08  Geoff Norton  <gnorton@customerdna.com>
17301         * XplatUIOSX.cs: Added mouse move/click/grab support
17302         Remove some debugging WriteLines not needed anymore.
17303         Add window resizing/positioning.
17304         Fix visibility on reparenting.
17306 2004-12-08  Peter Bartok  <pbartok@novell.com>
17308         * XplatUIOSX.cs: Added Idle event, now compiles on VS.Net
17310 2004-12-07  Geoff Norton  <gnorton@customerdna.com>
17312         * XplatUIOSX.cs: Initial checkin
17313         * XplatUI.cs: Use the Quartz driver if the environment is set to use it
17315 2004-12-03  Ravindra <rkumar@novell.com>
17317         * ListView.cs: Added some keybindings and fixed scrolling.
17318         ScrollBars listen to ValueChanged event instead of Scroll
17319         Event. This would let us take care of all changes being
17320         done in the scrollbars' values programmatically or manually.
17321         * ListView.cs (CanMultiselect): Added a check for shift key.
17322         * ListView.cs (EnsureVisible): Fixed. Do proper scrolling.
17323         * ListViewItem.cs (Clone): Fixed. We need to make a copy
17324         of ListViewSubItemCollection as well.
17326 2004-12-06  Peter Bartok <pbartok@novell.com>
17328         * Control.cs (Parent): Added check and exception to prevent
17329         circular parenting
17331 2004-12-03  Jordi Mas i Hernandez <jordi@ximian.com>
17333         * ListBox.cs: implemented clipping, selection single and multiple,
17334         bug fixing
17336 2004-12-03  Ravindra <rkumar@novell.com>
17338         * ListView.cs (ListView_KeyDown):
17339         * ListView.cs (ListView_KeyUp): Fixed multiple selection handling
17340         when CTRL key is pressed.
17341         * ListViewItem.cs (Selected): Fixed setting the property.
17343 2004-12-03  Marek Safar  <marek.safar@seznam.cz>
17345         * Application.cs (OnThreadException): Use ThreadExceptionDialog.
17347         * Form.cs: Add ActiveForm, FormBorderStyle, MaximizeBox,
17348         MinimizeBox, ShowInTaskbar, TopMost properties.
17350         * ThreadExceptionDialog.cs: Implemented (disabled TextBox until
17351         will be implemented).
17353 2004-12-03  Marek Safar  <marek.safar@seznam.cz>
17355         * OwnerDrawPropertyBag.cs: New internal parameterless ctor.
17357         * TreeNode.cs: Implemented ICloneable, Fixed to pass my simple
17358         tests.
17359         
17360         * TreeNodeCollection.cs: Add exception throwing for Add,AddRange.
17361         
17362         * TreeView.cs: BackColor is Colors.Window.
17364 2004-12-01  Jackson Harper  <jackson@ximian.com>
17366         * TreeView.cs: When resizing the tree if the user is making it
17367         smaller we don't get expose events, so we need to handle adding
17368         the horizontal scrollbar in the size changed handler as well as
17369         the expose handler.
17371 2004-12-02  Jordi Mas i Hernandez <jordi@ximian.com>
17373         * DrawItemState.cs: fixes wrong enum values
17375 2004-12-01  Jackson Harper  <jackson@ximian.com>
17377         * TreeView.cs: Resize the hbar as well as the vbar on resize.
17379 2004-12-01  Jackson Harper  <jackson@ximian.com>
17381         * NodeLabelEditEventArgs.cs:
17382         * NodeLabelEditEventHandler.cs:
17383         * OpenTreeNodeEnumerator.cs:
17384         * TreeNode.cs:
17385         * TreeNodeCollection.cs:
17386         * TreeView.cs:
17387         * TreeViewAction.cs:
17388         * TreeViewCancelEventArgs.cs:
17389         * TreeViewCancelEventHandler.cs:
17390         * TreeViewEventArgs.cs:
17391         * TreeViewEventHandler.cs: Initial implementation.
17393 2004-12-01  Ravindra <rkumar@novell.com>
17395         * ListView.cs (CalculateListView): Fixed scrolling related
17396         calculations. Also, removed some debug statements from other
17397         places.
17398         * ListViewItem.cs: Changed access to 'selected' instance variable
17399         from private to internal.
17400         * ThemeWin32Classic.cs (DrawListViewItem): Fixed SubItem drawing.
17402 2004-12-01  Jordi Mas i Hernandez <jordi@ximian.com>
17404         * ThemeWin32Classic.cs: remove cache of brush and pens for
17405         specific controls and use the global system, fixes scrollbutton
17406         bugs (for small sizes, disabled, etc)
17407         
17408         * ScrollBar.cs: does not show the thumb for very small controls
17409         (as MS) and allow smaller buttons that the regular size
17411 2004-12-01  Miguel de Icaza  <miguel@ximian.com>
17413         * UpDownBase.cs: Add abstract methods for the interface.
17414         Add new virtual methods (need to be hooked up to TextEntry when it
17415         exists).
17416         Add override methods for most features.
17417         Computes the size, forces the height of the text entry.
17419         * NumericUpDown.cs: Put here the current testing code.
17421         * Set eol-style property on all files that do not have mixed line
17422         endings, to minimize the future problems.  There are still a few
17423         files with mixed endings, and someone should choose whether they
17424         want to move it or not.
17426 2004-11-30  Jordi Mas i Hernandez <jordi@ximian.com>
17428         * MonthCalendar.cs, ListView.cs: use Theme colours instead of
17429         System.Colors
17430         
17431 2004-11-30  Ravindra <rkumar@novell.com>
17433         * ThemeWin32Classic.cs (DrawListViewItem): Fixed selected item
17434         drawing and replaced use of SystemColors by theme colors.
17435         * ListView.cs (ListView_Paint): Fixed painting done during scrolling.
17436         * ListView.cs (ListViewItemCollection.Add): Throw exception when
17437         same ListViewItem is being added more than once.
17439 2004-11-30  John BouAntoun <jba-mono@optusnet.com.au>
17441         * MonthCalendar.cs:
17442           - ControlStyles love to make the control not flicker
17443           
17444 2004-11-30  Peter Bartok  <pbartok@novell.com>
17446         * CharacterCasing.cs: Added
17448 2004-11-29  Peter Bartok  <pbartok@novell.com>
17450         * TreeNode.cs, TreeNodeCollection.cs, TreeView.cs,
17451           TreeViewAction.cs, TreeViewEventArgs.cs: Removed new files.
17452           I am removing these files as they conflict with already completed
17453           work. While it is fantastic to get contributions to MWF, I
17454           respectfully ask that everyone please coordinate their contributions
17455           through mono-winforms-list or #mono-winforms at this time. We're
17456           explicitly avoiding stubbing and don't want controls that don't have
17457           their basic functionality implemented in svn. Please also see
17458           http://www.mono-project.com/contributing/winforms.html
17461 2004-11-29  Marek Safar  <marek.safar@seznam.cz>
17463         * Application.cs (ModalRun): Don't hang after exit.
17465         * Theme.cs: New TreeViewDefaultSize property.
17467         * ThemeWin32Classic.cs: Replaced hardcoded defaultWindowBackColor
17468         with less hardcoded SystemColors constant.
17469         Implemented TreeViewDefaultSize.
17471         * TreeNode.cs, TreeNodeCollection.cs, TreeView.cs,
17472         TreeViewAction.cs, TreeViewEventArgs.cs: New files.
17475 2004-11-29  John BouAntoun <jba-mono@optusnet.com.au>
17477         * MonthCalendar.cs:
17478           - Fix NextMonthDate and PrevMonthDate click moving calendar
17480 2004-11-26  John BouAntoun <jba-mono@optusnet.com.au>
17482         * MonthCalendar.cs:
17483           - Fix usage of ScrollChange Property when scrolling months
17485 2004-11-26  Jordi Mas i Hernandez <jordi@ximian.com>
17487         * Menu.cs, MainMenu.cs, MenuItem.cs, MenuAPI.cs
17488          - Fixes menu destroying
17489          - Support adding and removing items on already created menus
17491 2004-11-26  John BouAntoun <jba-mono@optusnet.com.au>
17493         * MonthCalendar.cs:
17494           - Re-worked all bolded dates handling to match win32
17495         * ThemeWin32Classic.cs:
17496           - Fixed rendering with bolded dates
17498 2004-11-25  Jordi Mas i Hernandez <jordi@ximian.com>
17500         * ListBox.cs, Theme.cs, ThemeWin32Classic.cs:
17501         - Horizontal scroolbar
17502         - Multicolumn
17503         - Fixes
17506 2004-11-25  John BouAntoun <jba-mono@optusnet.com.au>
17508         * MonthCalendar.cs:
17509           - Fix Usage of MaxSelectionCount from SelectionRange
17510           - Fixed Shift + Cursor Selection
17511           - Fixed Shift + (Pg up/Pg dn, Home/End) selection
17512           - Fixed normal cursor selection to be compat with win32
17513           - Fixed Shift + Mouse Click selection
17515 2004-11-24  Peter Bartok <pbartok@novell.com>
17517         * XplatUI.cs (DispatchMessage): Switched to return IntPtr
17518         * XplatUIDriver.cs (DispatchMessage): Switched to return IntPtr
17519         * XplatUIX11.cs:
17520           - CreatedKeyBoardMsg now updates keystate with Alt key
17521           - Added workaround for timer crash to CheckTimers, Jackson will
17522             develop a proper fix and check in later
17523           - Implemented DispatchMessage
17524           - Removed calling the native window proc from GetMessage (call
17525             now moved to DispatchMessage)
17527         * KeyEventArgs.cs (Constructor): Now combines modifierkeys into
17528           the keydata (Fixes bug #69831)
17530         * XplatUIWin32.cs:
17531           - (DispatchMessage): Switched to return IntPtr
17532           - Added DllImport for SetFocus
17534 2004-11-24  Ravindra <rkumar@novell.com>
17536         * ThemeWin32Classic.cs: Fixed ListView border and checkbox
17537         background drawing.
17538         * ListViewItem.cs: Fixed various properties, calculations
17539         and Clone() method. Fixed ListViewSubItemCollection.Clear() method.
17540         * ListView.cs: Fixed calculations, BackColor, ForeColor properties
17541         and some internal properties. Fixed MouseDown handler and Paint
17542         method.
17544 2004-11-24  John BouAntoun <jba-mono@optusnet.com.au>
17546         * MonthCalendar.cs: Add TitleMonth ContextMenu handling
17548 2004-11-24  John BouAntoun <jba-mono@optusnet.com.au>
17550         * ContainerControl.cs: correct accidental check in of local changes
17552 2004-11-24  John BouAntoun <jba-mono@optusnet.com.au>
17554         * ThemeWin32Classic.cs:
17555                 - Fixed Drawing Last month in grid (sometimes not showing)
17556         * MonthCalendar.cs:
17557                 - Fixed title width calculation bug (makeing title small)
17559 2004-11-23  Peter Bartok <pbartok@novell.com>
17561         * XplatUIX11.cs:
17562           - Added generation of WM_MOUSEHOVER event
17563           - Added missing assignment of async_method atom
17564           - Fixed WM_ERASEBKGND; now only redraws the exposed area
17566 2004-11-23  John BouAntoun <jba-mono@optusnet.com.au>
17568         * ThemeWin32Classic.cs:
17569                 - Fixed Drawing of today circle when showtodaycircle not set
17570                 - fixed drawing of first and last month in the grid (gay dates)
17571         * MonthCalendar.cs:
17572                 - Fixed Drawing of today circle
17573                 - Fixed drawing of grady dates
17574                 - Fixed HitTest for today link when ShowToday set to false
17575                 - Fixed DefaultSize to obey ShowToday
17577 2004-11-23  John BouAntoun <jba-mono@optusnet.com.au>
17579         * ThemeWin32Classic.cs: Fixed DrawMonthCalendar and private support methods
17580         * System.Windows.Forms/Theme.cs
17581         * MonthCalendar.cs: added for MonthCalendar
17582         * SelectionRange.cs: added for MonthCalendar
17583         * Day.cs: added for MonthCalendar: added for MonthCalendar
17584         * DateRangeEventArgs.cs: added for MonthCalendar
17585         * DateRangeEventHandler.cs: added for MonthCalendar
17587 2004-11-22  Ravindra <rkumar@novell.com>
17589         * ThemeWin32Classic.cs: Fixed ListViewDrawing with 'UseItemStyleForSubItems'
17590         property.
17592 2004-11-22  Miguel de Icaza  <miguel@ximian.com>
17594         * UpDownBase.cs (InitTimer): Use prehistoric C# 1.0 notation for
17595         event handler.
17596         
17597         * NumericUpDown.cs: Added new implementation.
17598         * UpDownBase.cs: Added new implementation.
17600         * XplatUIWin32.cs (KeyboardSpeed, KeyboardDelay): added default
17601         implementations.
17602         
17603         * XplatUIX11.cs (KeyboardSpeed, KeyboardDelay): added default
17604         implementations.
17606         * XplatUIDriver.cs ((KeyboardSpeed, KeyboardDelay): added new
17607         methods.
17609 2004-11-21  Miguel de Icaza  <miguel@ximian.com>
17611         * Timer.cs  (Dispose): Should call the base dispose when
17612         overriding.
17614 2004-11-19  Jordi Mas i Hernandez <jordi@ximian.com>
17616         * ScrollBar.cs: updates thumb position when max, min or increment
17617         is changed
17619 2004-11-21  Ravindra <rkumar@novell.com>
17621         * ListView.cs: Implemented item selection, activation and
17622         column header style. Fixed properties to do a redraw, if
17623         required. Added support for MouseHover, DoubleClick, KeyDown
17624         and KeyUp event handling and some minor fixes.
17625         * ListViewItem.cs: Fixed constructor.
17626         * ThemeWin32Classic.cs: Improved drawing for ListView.
17628 2004-11-19  Jordi Mas i Hernandez <jordi@ximian.com>
17630         * ThemeWin32Classic.cs: initial listbox drawing code
17631         * DrawMode.cs: new enumerator
17632         * ListControl.cs: stubbed class
17633         * ListBox.cs: initial implementation
17634         * Theme.cs: new methods definitions
17635         * SelectionMode.cs: new enumerator
17637 2004-11-17  Peter Bartok  <pbartok@novell.com>
17639         * XplatUIWin32.cs: Added double-click events to the class style
17640         * Control.cs (WndProc):
17641           - Added handling of click-count to MouseDown/ MouseUp events.
17642           - Added handling of middle and right mouse buttons
17643           - Removed old debug code
17645 2004-11-17  Jackson Harper  <jackson@ximian.com>
17647         * XplatUIX11.cs: Use the new Mono.Unix namespace.
17649 2004-11-17  Ravindra <rkumar@novell.com>
17651         * ListView.cs: Added event handling for MouseMove/Up/Down.
17652         * ColumnHeader.cs: Added a read-only internal property 'Pressed'.
17653         * ThemeWin32Classic.cs: We need to clear the graphics context and
17654         draw column header in a proper state.
17657 2004-11-17  Jordi Mas i Hernandez <jordi@ximian.com>
17659         *  Menu.cs: fixes signature
17661 2004-11-16  Peter Bartok  <pbartok@novell.com>
17663         * XplatUIX11.cs (GetMessage): Implemented generation of
17664           double click mouse messages
17666 2004-11-12  Jordi Mas i Hernandez <jordi@ximian.com>
17668         *  Form.cs, MainMenu.cs, MenuAPI.cs: tracker should be for tracking session
17669         not by menu
17671 2004-11-11  Peter Bartok  <pbartok@novell.com>
17673         * HandleData.cs: Added Visible property
17674         * XplatUIX11.cs (IsVisible): Now uses Visible property from
17675           HandleData
17676         * XplatUIX11.cs: Removed old debug leftovers
17677         * XplatUIX11.cs (DefWndProc): Added WM_ERASEBKGND handler
17678         * Control.cs (WndProc): Removed old debug leftovers,
17679           streamlined handling of WM_WINDOWPOSCHANGED, removed un-
17680           needed WM_SIZE handling
17682 2004-11-11  Jackson Harper  <jackson@ximian.com>
17684         * OwnerDrawPropertyBag.cs:
17685         * TreeViewImageIndexConverter.cs: Initial implementation
17687 2004-11-10  Jackson Harper  <jackson@ximian.com>
17689         * ThemeWin32Classic.cs:
17690         * TabControl.cs: instead of moving tabs by the slider pos just
17691         start drawing at the tab that is offset by the slider. This way
17692         scrolling always moves by exactly one tab.
17694 2004-11-10  Jackson Harper  <jackson@ximian.com>
17696         * TabControl.cs: You can only scroll left when the slider has
17697         already ben moved right.
17698         
17699 2004-11-10  Jackson Harper  <jackson@ximian.com>
17701         * ThemeWin32Classic.cs: Do not draw the selected tab if its not in
17702         the clip area.
17703         
17704 2004-11-10  Jackson Harper  <jackson@ximian.com>
17706         * ThemeWin32Classic.cs: Don't bother drawing tabs outside of the
17707         clip area.
17708         
17709 2004-11-09  Jackson Harper  <jackson@ximian.com>
17711         * TabControl.cs (CalcXPos): New helper method so we can determine
17712         the proper place to start drawing vertical tabs.
17713         * ThemeWin32Classic.cs (DrawTab): Draw right aligned tabs.
17714         
17715 2004-11-09  Jackson Harper  <jackson@ximian.com>
17717         * TabControl.cs: Calculate sizing and rects for left aligned tabs.
17718         * ThemeWin32Classic.cs (GetTabControl*ScrollRect): Only handle Top
17719         and Bottom, left and right are illegal values for this and
17720         multiline is enabled when the alignment is set to left or right.
17721         (DrawTab): Each alignment block should draw the text itself now
17722         because Left requires special love. Also add rendering for Left
17723         aligned tabs.
17724         
17725 2004-11-09  Jordi Mas i Hernandez <jordi@ximian.com>
17727         *  Form.cs, MainMenu.cs, MenuAPI.cs: fixes menu navigation, fixes popups,
17728         does not destroy the windows, removes debugging messages
17730 2004-11-09  jba  <jba-mono@optusnet.com.au>
17732         * ThemeWin32Classic.cs
17733         (DrawButtonBase): Fix verticle text rect clipping in windows
17734         (DrawCheckBox): Fix CheckAlign.TopCenter and CheckAlign.BottomCenter
17735         rendering and incorrect text rect clipping
17736         (DrawRadioButton): Fix CheckAlign.TopCenter and CheckAlign.BottomCenter
17737         rendering and incorrect text rect clipping
17738         
17739 2004-11-08  Jackson Harper  <jackson@ximian.com>
17741         * ThemeWin32Classic.cs (DrawTabControl): Render tabs from top to
17742         bottom when they are bottom aligned so the bottoms of the tabs get
17743         displayed.
17744         * TabControl.cs (DropRow): Move rows up instead of down when the
17745         tab control is bottom aligned.
17747 2004-11-08 13:59  pbartok
17749         * XplatUIX11.cs:
17750           - Added handling for various window styles
17751           - Added handling for popup windows
17752           - Added SetTopmost handling
17754 2004-11-08 13:55  pbartok
17756         * XplatUIWin32.cs:
17757           - Added argument to SetTopmost method
17758           - Fixed broken ClientToScreen function
17760 2004-11-08 13:53  pbartok
17762         * XplatUIStructs.cs:
17763           - Added missing WS_EX styles
17765 2004-11-08 13:53  pbartok
17767         * XplatUI.cs, XplatUIDriver.cs:
17768           - Added argument to SetTopmost
17770 2004-11-08 13:52  pbartok
17772         * X11Structs.cs:
17773           - Added XSetWindowAttributes structure
17774           - Improved XWindowAttributes structure
17775           - Added SetWindowValuemask enum
17776           - Added window creation arguments enum
17777           - Added gravity enum
17778           - Added Motif hints structure
17779           - Added various Motif flags and enums
17780           - Added PropertyMode enum for property functions
17782 2004-11-08 13:50  pbartok
17784         * Form.cs:
17785           - Fixed arguments for updated SetTopmost method
17787 2004-11-08 13:49  pbartok
17789         * ToolTip.cs:
17790           - Fixed arguments for updated SetTopmost function
17791           - Fixed usage of PointToClient
17793 2004-11-08 13:44  pbartok
17795         * MenuAPI.cs:
17796           - Added Clipping of children and siblings
17798 2004-11-08 13:41  pbartok
17800         * MainMenu.cs:
17801           - Removed SetMenuBarWindow call. We do this in Form.cs
17803 2004-11-08 13:40  jackson
17805         * TabControl.cs, Theme.cs, ThemeWin32Classic.cs: Render the little
17806           scrolling jimmi in the correct location with bottom aligned tabs
17808 2004-11-08 13:36  pbartok
17810         * ContainerControl.cs:
17811           - Implemented BindingContext
17812           - Implemented ParentForm
17814 2004-11-08 12:46  jackson
17816         * TabControl.cs: Put bottom rendered tabs in the right location
17818 2004-11-08 07:15  jordi
17820         * ScrollBar.cs, ThemeWin32Classic.cs: fixes vertical scrollbar and
17821           removes dead code
17823 2004-11-05 17:30  jackson
17825         * TabControl.cs: When selected tabs are expanded make sure they
17826           don't go beyond the edges of the tab control
17828 2004-11-05 14:57  jackson
17830         * TabControl.cs: Reset show_slider so if the control is resized to
17831           a size where it is no longer needed it's not displayed anymore
17833 2004-11-05 13:16  jackson
17835         * TabControl.cs: Make tab pages non visible when added to the
17836           control
17838 2004-11-05 12:42  jackson
17840         * TabControl.cs: Implement SizeMode.FillToRight
17842 2004-11-05 12:16  jackson
17844         * Control.cs: Do not call CreateHandle if the handle is already
17845           created
17847 2004-11-05 11:46  jackson
17849         * TabControl.cs: Remove superflous call to CalcTabRows
17851 2004-11-05 09:07  jackson
17853         * XplatUIX11.cs: Update for Mono.Posix changes
17855 2004-11-05 07:00  ravindra
17857         * ListView.cs, ListViewItem.cs: Implemented some methods and fixed
17858           scrolling.
17860 2004-11-04 22:47  jba
17862         * ThemeWin32Classic.cs:
17863           - Fix Button rendering for FlatStyle = Flat or Popup
17864           - Fix RadioButton and CheckBox rendering when Appearance = Button
17865             (normal and flatstyle).
17866           - Correct outer rectangle color when drawing focus rectangle
17867           - Adjust button bounds to be 1 px smaller when focused
17868           - Make button not draw sunken 3d border when pushed (windows compat)
17869           - Fix CPDrawBorder3D to not make bottom right hand corner rounded
17870           - Offset the text in RadioButton and Checkbox when being rendered as
17871           a button.
17872           - Hover and Click behaviour for Colored FlatStyle.Flat and Popup
17873           radiobuttons
17874           - Fixed disabled rendering for colored flatstyle radiobuttons (both)
17875           - Fixed disabled text rendering for normally rendered radiobuttons
17877 2004-11-04 10:26  jackson
17879         * TabControl.cs: Recalculate tab rows when resizing
17881 2004-11-04 07:47  jordi
17883         * Form.cs, MainMenu.cs, Menu.cs, MenuAPI.cs, MenuItem.cs:
17884           collection completion, drawing issues, missing features
17886 2004-11-04 05:03  ravindra
17888         * ScrollBar.cs:
17889                 - We need to recalculate the Thumb area when
17890                 LargeChange/maximum/minimum values are changed.
17891           - We set the 'pos' in UpdatePos() method to minimum, if it's less
17892                 than minimum. This is required to handle the case if large_change is
17893                 more than max, and use LargeChange property instead of large_change
17894                 variable.
17895           - We return max+1 when large_change is more than max, like MS does.
17897 2004-11-04 04:29  ravindra
17899         * ColumnHeader.cs, ListView.cs, ListViewItem.cs:
17900                 - Changed default value signatures (prefixed all with ListView).
17901                 - Fixed/implemented layout LargeIcon, SmallIcon and List views for
17902                 ListView.
17903           - Fixed calculations for ListViewItem and implemented Clone()
17904           method.
17906 2004-11-04 04:26  ravindra
17908         * Theme.cs, ThemeWin32Classic.cs:
17909                 - Changed default ListView values signatures (prefixed all with
17910                 ListView).
17911           - Fixed default size values for VScrollBar and HScrollBar.
17912                 - Fixed DrawListViewItem method.
17914 2004-11-04 04:05  ravindra
17916         * ColumnHeaderStyle.cs: Typo. It should be Nonclickable.
17918 2004-11-04 04:04  ravindra
17920         * ImageList.cs: Implemented the missing overload for Draw method.
17922 2004-11-03 19:29  jackson
17924         * TabControl.cs: Handle dropping rows on selection properly
17926 2004-11-03 11:59  jackson
17928         * TabControl.cs: remove debug code
17930 2004-11-03 11:52  jackson
17932         * TabControl.cs, ThemeWin32Classic.cs: Initial implementation of
17933           the scrolly widgerywoo
17935 2004-11-02 13:52  jackson
17937         * TabControl.cs: Resize the tab pages and tabs when the tab control
17938           is resized
17940 2004-11-02 13:40  jackson
17942         * TabControl.cs, ThemeWin32Classic.cs: Move the row with the
17943           selected tab to the bottom
17945 2004-11-02 13:39  jackson
17947         * TabPage.cs: Store the tab pages row
17949 2004-11-02 12:33  jordi
17951         * MenuItem.cs: fixes handle creation
17953 2004-11-02 11:42  jackson
17955         * TabControl.cs: signature fix
17957 2004-11-02 08:56  jackson
17959         * TabControl.cs: Calculate whether the tab is on an edge properly.
17960           Remove top secret debugging code
17962 2004-11-01 19:57  jackson
17964         * TabControl.cs: Add click handling, and proper sizing
17966 2004-11-01 19:47  jackson
17968         * Theme.cs, ThemeWin32Classic.cs: New rendering and sizing code for
17969           tab controls
17971 2004-11-01 19:39  jackson
17973         * TabPage.cs: add internal property to store the bounds of a tab
17974           page
17976 2004-10-30 04:23  ravindra
17978         * Theme.cs, ThemeWin32Classic.cs: Drawing ListView and some default
17979           values.
17981 2004-10-30 04:21  ravindra
17983         * ListView.cs, ListViewItem.cs: Added support for scrolling and
17984           fixed calculations.
17986 2004-10-30 03:06  pbartok
17988         * XplatUIX11.cs:
17989           - Removed extension of DllImported libs
17991 2004-10-29 09:55  jordi
17993         * Form.cs, MainMenu.cs, Menu.cs, MenuAPI.cs, MenuItem.cs: Menu key
17994           navigation, itemcollection completion, menu fixes
17996 2004-10-27 22:58  pbartok
17998         * XplatUIX11.cs:
17999           - Now throws a nice error message when no X display could be opened
18001 2004-10-26 13:51  jordi
18003         * ListView.cs: removes warning
18005 2004-10-26 03:55  ravindra
18007         * ColumnHeader.cs, ListView.cs, ListViewItem.cs,
18008           ThemeWin32Classic.cs: Some formatting for my last checkins.
18010 2004-10-26 03:36  ravindra
18012         * ThemeWin32Classic.cs: Implemented DetailView drawing for ListView
18013           control and default values.
18015 2004-10-26 03:35  ravindra
18017         * Theme.cs: Added some default values for ListView control.
18019 2004-10-26 03:33  ravindra
18021         * ToolBar.cs: ToolBar should use the user specified button size, if
18022           there is any. Added a size_specified flag for the same.
18024 2004-10-26 03:33  ravindra
18026         * ColumnHeader.cs: Added some internal members and calculations for
18027           ColumnHeader.
18029 2004-10-26 03:32  ravindra
18031         * ListViewItem.cs: Calculations for ListViewItem.
18033 2004-10-26 03:31  ravindra
18035         * ListView.cs: Added some internal members and calculations for
18036           ListView.
18038 2004-10-22 13:31  jordi
18040         * MenuAPI.cs: speedup menus drawing
18042 2004-10-22 13:16  jackson
18044         * XplatUIX11.cs: Make sure to update exposed regions when adding an
18045           expose event
18047 2004-10-22 11:49  jackson
18049         * Control.cs: oops
18051 2004-10-22 11:41  jackson
18053         * Control.cs: Check to see if the window should have its background
18054           repainted by X when drawing.
18056 2004-10-22 11:31  jackson
18058         * XplatUIX11.cs: When invalidating areas only use XClearArea if
18059           clear is true, this way we do not get flicker from X repainting the
18060           background
18062 2004-10-22 11:28  jackson
18064         * XEventQueue.cs: Queue properly
18066 2004-10-21 09:38  jackson
18068         * XEventQueue.cs: Fix access modifier
18070 2004-10-21 09:36  jackson
18072         * XEventQueue.cs: Don't loose messages
18074 2004-10-21 09:22  jackson
18076         * XEventQueue.cs: Don't loose messages
18078 2004-10-20 04:15  jordi
18080         * BootMode.cs: enum need it by SystemInfo
18082 2004-10-19 21:58  pbartok
18084         * XplatUIWin32.cs:
18085           - Small sanity check
18087 2004-10-19 21:56  pbartok
18089         * Form.cs:
18090           - Added private FormParentWindow class which acts as the container
18091             for our form and as the non-client area where menus are drawn
18092           - Added/Moved required tie-ins to Jordi's menus
18093           - Fixed/Implemented the FormStartPosition functionality
18095 2004-10-19 21:52  pbartok
18097         * Control.cs:
18098           - Removed unneeded locals
18099           - Added code to all size and location properties to understand and
18100             deal with the parent container of Form
18102 2004-10-19 21:33  pbartok
18104         * Application.cs:
18105           - Fixed to deal with new Form subclasses for menus
18107 2004-10-19 17:48  jackson
18109         * XEventQueue.cs: commit correct version of file
18111 2004-10-19 16:50  jackson
18113         * XEventQueue.cs, XplatUIX11.cs: New optimized event queue
18115 2004-10-19 16:15  jordi
18117         * MenuAPI.cs: MenuBarCalcSize returns the height
18119 2004-10-19 08:31  pbartok
18121         * Control.cs:
18122           - Added missing call to PreProcessMessage before calling OnXXXKey
18123           methods
18125 2004-10-19 00:04  ravindra
18127         * ToolTip.cs: Fixed constructor.
18129 2004-10-18 09:31  jordi
18131         * MenuAPI.cs: menuitems in menubars do not have shortcuts
18133 2004-10-18 09:26  jordi
18135         * MenuItem.cs: fixes MenuItem class signature
18137 2004-10-18 08:56  jordi
18139         * MenuAPI.cs: prevents windows from showing in the taskbar
18141 2004-10-18 00:28  ravindra
18143         * ToolTip.cs: Suppressed a warning message.
18145 2004-10-18 00:27  ravindra
18147         * Control.cs: Default value of visible property must be true.
18149 2004-10-17 23:19  pbartok
18151         * ToolTip.cs:
18152           - Complete implementation
18154 2004-10-17 23:19  pbartok
18156         * XplatUIX11.cs:
18157           - Added EnableWindow method
18158           - Added SetModal stub
18159           - Added generation of WM_ACTIVATE message (still needs testing)
18160           - Added SetTopMost stub
18161           - Changes to deal with VirtualKeys being moved to XplatUIStructs.cs
18163 2004-10-17 23:17  pbartok
18165         * XplatUIWin32.cs:
18166           - Removed VirtualKeys to XplatUIStructs
18167           - Implemented SetTopMost method
18168           - Implemented EnableWindow method
18169           - Bugfix in ScreenToClient()
18170           - Bugfixes in ClientToScreen()
18172 2004-10-17 22:51  pbartok
18174         * XplatUIStructs.cs:
18175           - Added WS_EX styles to WindowStyles enumeration
18177 2004-10-17 22:50  pbartok
18179         * XplatUI.cs, XplatUIDriver.cs:
18180           - Added method for enabling/disabling windows
18181           - Added method for setting window modality
18182           - Added method for setting topmost window
18184 2004-10-17 22:49  pbartok
18186         * ThemeWin32Classic.cs:
18187           - Added ToolTip drawing code
18189 2004-10-17 22:49  pbartok
18191         * Theme.cs:
18192           - Added ToolTip abstracts
18194 2004-10-17 22:47  pbartok
18196         * Form.cs:
18197           - Fixed Form.ControlCollection to handle owner relations
18198           - Added Owner/OwnedForms handling
18199           - Implemented Z-Ordering for owned forms
18200           - Removed unneeded private overload of ShowDialog
18201           - Fixed ShowDialog, added the X11 incarnation of modal handling (or
18202             so I hope)
18203           - Fixed Close(), had wrong default
18204           - Added firing of OnLoad event
18205           - Added some commented out debug code for Ownership handling
18207 2004-10-17 22:16  pbartok
18209         * Control.cs:
18210           - Fixed/implemented flat list of controls
18212 2004-10-17 22:14  pbartok
18214         * Application.cs:
18215           - Added code to simulate modal dialogs on Win32
18217 2004-10-17 16:11  jordi
18219         * ScrollBar.cs: disabled scrollbar should not honor any keyboard or
18220           mouse event
18222 2004-10-17 13:39  jordi
18224         * MenuAPI.cs: menu drawing fixes
18226 2004-10-15 09:10  ravindra
18228         * StructFormat.cs: General Enum.
18230 2004-10-15 09:09  ravindra
18232         * SizeGripStyle.cs: Enum for Form.
18234 2004-10-15 09:08  ravindra
18236         * Theme.cs, ThemeWin32Classic.cs: Added ColumnHeaderHeight property
18237           in Theme for ListView.
18239 2004-10-15 09:06  ravindra
18241         * ColumnHeader.cs: Flushing some formatting changes.
18243 2004-10-15 09:05  ravindra
18245         * ListViewItem.cs: Implemented GetBounds method and fixed coding
18246           style.
18248 2004-10-15 09:03  ravindra
18250         * ListView.cs: Implemented Paint method and fixed coding style.
18252 2004-10-15 07:34  jordi
18254         * MenuAPI.cs: fix for X11
18256 2004-10-15 07:32  ravindra
18258         * ButtonBase.cs, CheckBox.cs, RadioButton.cs:
18259                 - Renamed Paint() method to Draw() for clarity. Also, moved
18260                 DrawImage() to OnPaint().
18262 2004-10-15 07:25  ravindra
18264         * CheckBox.cs, RadioButton.cs:
18265                 - Removed Redraw (), we get it from ButtonBase.
18266                 - Implemented Paint (), to do class specific painting.
18268 2004-10-15 07:16  ravindra
18270         * ButtonBase.cs:
18271                 - Redraw () is not virtual now.
18272                 - Added an internal virtual method Paint (), so that
18273                 derived classes can do their painting on their own.
18274                 - Modified OnPaint () to call Paint ().
18276 2004-10-15 06:43  jordi
18278         * ContextMenu.cs, DrawItemEventHandler.cs, Form.cs, MainMenu.cs,
18279           MenuAPI.cs, MenuItem.cs: menu work, mainmenu, subitems, etc
18281 2004-10-15 00:30  ravindra
18283         * MessageBox.cs:
18284                 - MessageBox on windows does not have min/max buttons.
18285                 This change in CreateParams fixes this on Windows. We
18286                 still need to implement this windowstyle behavior in
18287                 our X11 driver.
18289 2004-10-14 05:14  ravindra
18291         * ToolBar.cs:
18292                 - Changed Redraw () to do a Refresh () always.
18293                 - Fixed the MouseMove event handling when mouse is pressed,
18294                 ie drag event handling.
18295                 - Replaced the usage of ToolBarButton.Pressed property to
18296                 ToolBarButton.pressed internal variable.
18298 2004-10-14 05:10  ravindra
18300         * ToolBarButton.cs:
18301                 - Added an internal member 'inside' to handle mouse move
18302                 with mouse pressed ie mouse drag event.
18303                 - Changed 'Pressed' property to return true only when
18304                 'inside' and 'pressed' are both true.
18305                 - Some coding style love.
18307 2004-10-14 00:17  ravindra
18309         * Form.cs: Fixed class signature. ShowDialog (Control) is not a
18310           public method.
18312 2004-10-14 00:15  ravindra
18314         * ButtonBase.cs: Redraw () related improvements.
18316 2004-10-14 00:14  ravindra
18318         * MessageBox.cs: Moved InitFormSize () out of Paint method and
18319           removed unnecessary calls to Button.Show () method.
18321 2004-10-13 17:50  pbartok
18323         * XplatUIX11.cs:
18324           - Formatting fix
18325           - Removed destroying of window until we solve the problem of X
18326             destroying the window before us on shutdown
18328 2004-10-13 16:32  pbartok
18330         * ButtonBase.cs:
18331           - Now Redraws on MouseUp for FlatStyle Flat and Popup
18333 2004-10-13 14:18  pbartok
18335         * XplatUIX11.cs:
18336           - Added code to destroy the X window
18338 2004-10-13 14:18  pbartok
18340         * XplatUIWin32.cs:
18341           - Added code to destroy a window
18343 2004-10-13 14:12  pbartok
18345         * ButtonBase.cs:
18346           - Added the Redraw on Resize that got dropped in the last rev
18348 2004-10-13 09:06  pbartok
18350         * ThemeWin32Classic.cs:
18351           - Path from John BouAntoun:
18352             * Fix check rendering (centre correctly for normal style, offset
18353               correctly for FlatStyle).
18354             * Fix border color usage (use backcolor) for FlatStyle.Popup
18355             * Use checkbox.Capture instead of checkbox.is_pressed when
18356               rendering flatstyle states.
18358 2004-10-12 21:48  pbartok
18360         * ThemeWin32Classic.cs:
18361           - Removed all occurences of SystemColors and replaced them with the
18362             matching theme color
18364 2004-10-12 21:41  pbartok
18366         * ThemeWin32Classic.cs:
18367           - From John BouAntoun: Added an overload to CPDrawBorder3D to allow
18368             him using the function for flatstyle drawing
18369           - Changed functions to use the new version of CPDrawBorder3D
18371 2004-10-12 21:15  pbartok
18373         * ControlPaint.cs:
18374           - Fixed Dark(), DarkDark(), Light() and LightLight() methods to
18375             match MS documentation. They need to return defined colors if the
18376             passed color matches the configured control color. Thanks to John
18377             BouAntoun for pointing this out.
18379 2004-10-12 20:57  pbartok
18381         * Control.cs:
18382           - Fix from John BouAntoun: Raise ForeColorChanged event when text
18383             color is changed
18385 2004-10-12 20:46  pbartok
18387         * CheckBox.cs:
18388           - Fix from John BouAntoun: Now properly sets the Appearance property
18390 2004-10-12 20:45  pbartok
18392         * ThemeWin32Classic.cs:
18393           - Fixes from John BouAntoun: now handles forecolors and backcolors
18394             for flatstyle rendered controls much better; It also fixes normal
18395             checkbox rendering when pushed or disabled.
18397 2004-10-08 02:50  jordi
18399         * Form.cs, MainMenu.cs, Menu.cs, MenuAPI.cs, MenuItem.cs: more menu
18400           work
18402 2004-10-07 08:56  jordi
18404         * ThemeWin32Classic.cs: Removes deletion of cached brushes
18406 2004-10-06 03:59  jordi
18408         * Control.cs, StatusBar.cs, ThemeWin32Classic.cs, ToolBar.cs,
18409           XplatUIWin32.cs: removes warnings from compilation
18411 2004-10-05 12:23  jackson
18413         * RadioButton.cs: Fix ctor
18415 2004-10-05 11:10  pbartok
18417         * MessageBox.cs:
18418           - Partial implementation by Benjamin Dasnois
18420 2004-10-05 10:15  jackson
18422         * ThemeWin32Classic.cs: Improve rendering of the radio button patch
18423           by John BouAntoun
18425 2004-10-05 03:07  ravindra
18427         * ToolBar.cs:
18428                 - Removed a private method, Draw ().
18429                 - Fixed the ButtonDropDown event handling.
18430                 - Fixed MouseMove event handling.
18432 2004-10-05 03:04  ravindra
18434         * ThemeWin32Classic.cs:
18435                 - Added DrawListView method and ListViewDefaultSize property.
18436                 - Changed ControlPaint method calls to CPDrawXXX wherever possible.
18437                 - Changed DOS style CRLF to Unix format (dos2unix).
18439 2004-10-05 03:03  ravindra
18441         * Theme.cs:
18442                 - Added DrawListView method and ListViewDefaultSize property.
18444 2004-10-05 02:42  ravindra
18446         * ToolBarButton.cs: Added an internal member dd_pressed to handle
18447           clicks on DropDown arrow.
18449 2004-10-04 22:56  jackson
18451         * ButtonBase.cs, Label.cs, MenuAPI.cs, ProgressBar.cs,
18452           ScrollBar.cs, StatusBar.cs, ToolBar.cs, TrackBar.cs: Let the base
18453           Control handle the buffers, derived classes should not have to
18454           CreateBuffers themselves.
18456 2004-10-04 21:20  jackson
18458         * StatusBar.cs: The control handles resizing the buffers now.
18460 2004-10-04 21:18  jackson
18462         * Control.cs: When resizing the buffers should be invalidated. This
18463           should be handled in Control not in derived classes.
18465 2004-10-04 14:45  jackson
18467         * TabPage.cs: oops
18469 2004-10-04 02:14  pbartok
18471         * LeftRightAlignment.cs:
18472           - Initial check-in
18474 2004-10-04 01:09  jordi
18476         * ThemeWin32Classic.cs: fixes right button position causing right
18477           button not showing on horizontal scrollbars
18479 2004-10-02 13:12  pbartok
18481         * XplatUIX11.cs:
18482           - Simplified the Invalidate method by using an X call instead of
18483             generating the expose ourselves
18484           - Added an expose when the window background is changed
18485           - Implemented ClientToScreen method
18487 2004-10-02 13:08  pbartok
18489         * XplatUIWin32.cs:
18490           - Added Win32EnableWindow method (test for implementing modal
18491           dialogs)
18492           - Added ClientToScreen method and imports
18494 2004-10-02 13:07  pbartok
18496         * XplatUI.cs, XplatUIDriver.cs:
18497           - Added ClientToScreen coordinate translation method
18499 2004-10-02 13:06  pbartok
18501         * KeyPressEventArgs.cs:
18502           - Fixed access level for constructor
18504 2004-10-02 13:06  pbartok
18506         * NativeWindow.cs:
18507           - Changed access level for the window_collection hash table
18509 2004-10-02 13:05  pbartok
18511         * Form.cs:
18512           - Added KeyPreview property
18513           - Added Menu property (still incomplete, pending Jordi's menu work)
18514           - Implemented ProcessCmdKey
18515           - Implemented ProcessDialogKey
18516           - Implemented ProcessKeyPreview
18518 2004-10-02 13:02  pbartok
18520         * Control.cs:
18521           - Added private method to get the Control object from the window
18522           handle
18523           - Implemented ContextMenu property
18524           - Implemented PointToScreen
18525           - Implemented PreProcessMessage
18526           - Implemented IsInputChar
18527           - Implemented IsInputKey
18528           - Implemented ProcessCmdKey
18529           - Completed ProcessKeyEventArgs
18530           - Fixed message loop to call the proper chain of functions on key
18531           events
18532           - Implemented ProcessDialogChar
18533           - Implemented ProcessDialogKey
18534           - Implemented ProcessKeyMessage
18535           - Implemented ProcessKeyPreview
18536           - Added RaiseDragEvent stub (MS internal method)
18537           - Added RaiseKeyEvent stub (MS internal method)
18538           - Added RaiseMouseEvent stub (MS Internal method)
18539           - Added RaisePaintEvent stub (MS Internal method)
18540           - Added ResetMouseEventArgs stub (MS Internal method)
18541           - Implemented RtlTranslateAlignment
18542           - Implemented RtlTranslateContent
18543           - Implemented RtlTranslateHorizontal
18544           - Implemented RtlTranslateLeftRight
18545           - Added generation of KeyPress event
18547 2004-10-02 05:57  ravindra
18549         * ListViewItem.cs: Added attributes.
18551 2004-10-02 05:32  ravindra
18553         * ListView.cs: Added attributes.
18555 2004-10-01 11:53  jackson
18557         * Form.cs: Implement the Close method so work on MessageBox can
18558           continue.
18560 2004-09-30 14:06  pbartok
18562         * XplatUIX11.cs:
18563           - Bug fixes
18565 2004-09-30 11:34  jackson
18567         * RadioButton.cs: Fix typo. Patch by John BouAntoun.
18569 2004-09-30 07:26  ravindra
18571         * ListViewItemConverter.cs: Converter for ListViewItem.
18573 2004-09-30 07:26  ravindra
18575         * SortOrder.cs: Enum for ListView control.
18577 2004-09-30 07:25  ravindra
18579         * ColumnHeader.cs: Supporting class for ListView control.
18581 2004-09-30 07:24  ravindra
18583         * ListView.cs, ListViewItem.cs: Initial implementation.
18585 2004-09-30 07:20  ravindra
18587         * ItemActivation.cs: Enum for ListView Control.
18589 2004-09-29 20:29  pbartok
18591         * XplatUIX11.cs:
18592           - Added lookup of pixel value for background color; tries to get a
18593             color 'close' to the requested color, it avoids having to create a
18594             colormap.  Depending on the display this could mean the used color
18595             is slightly off the desired color. Might have to change it to a more
18596             resource intensive colormap approach, but it will work as a
18597           workaround to avoid red screens.
18599 2004-09-29 14:27  jackson
18601         * XplatUIX11.cs: Set the X DisplayHandle in System.Drawing
18603 2004-09-28 12:44  pbartok
18605         * ButtonBase.cs, CheckBox.cs, ControlPaint.cs, GroupBox.cs,
18606           HScrollBar.cs, Label.cs, LinkLabel.cs, Panel.cs, PictureBox.cs,
18607           ProgressBar.cs, RadioButton.cs, ScrollBar.cs, StatusBar.cs,
18608           Theme.cs, ThemeGtk.cs, ThemeWin32Classic.cs, ToolBar.cs,
18609           TrackBar.cs, VScrollBar.cs:
18610           - Streamlined Theme interfaces:
18611             * Each DrawXXX method for a control now is passed the object for
18612               the control to be drawn in order to allow accessing any state the
18613               theme might require
18615             * ControlPaint methods for the theme now have a CP prefix to avoid
18616               name clashes with the Draw methods for controls
18618             * Every control now retrieves it's DefaultSize from the current
18619             theme
18621 2004-09-28 12:17  jackson
18623         * Button.cs: Do not redraw OnClick MouseUp/Down will handle the
18624           drawing
18626 2004-09-24 14:57  jackson
18628         * XplatUIX11.cs: Don't lock/enqueue/dequeue for unhandled messages.
18629           Gives us a nice little performance boost.
18631 2004-09-24 12:02  jackson
18633         * TabAlignment.cs, TabAppearance.cs, TabControl.cs, TabDrawMode.cs,
18634           TabPage.cs, TabSizeMode.cs: Partial implementation of the Tab
18635           Control and supporting classes. Initial checkin
18637 2004-09-23 13:08  jackson
18639         * Form.cs: Temp build fixage
18641 2004-09-23 01:39  ravindra
18643         * ItemChangedEventArgs.cs, ItemChangedEventHandler.cs,
18644           ItemCheckEventArgs.cs, ItemCheckEventHandler.cs,
18645           ItemDragEventArgs.cs, ItemDragEventHandler.cs,
18646           LabelEditEventArgs.cs, LabelEditEventHandler.cs: EventArgs and
18647           EventHandlers needed by ListView Control.
18649 2004-09-22 14:12  pbartok
18651         * ScrollableControl.cs:
18652           - Implemented DockPadding property
18653           - Implemented AutoScroll property
18654           - Implemented AutoScrollMargin property
18655           - Implemented AutoScrollMinSize property
18656           - Implemented AutoScrollPosition property
18657           - Implemented DisplayRectangle property (still incomplete)
18658           - Implemented CreateParams property
18659           - Implemented HScroll property
18660           - Implemented VScroll property
18661           - Implemented OnVisibleChanged property
18663 2004-09-22 14:09  pbartok
18665         * Form.cs:
18666           - Added Form.ControllCollection class
18667           - Added handling for Form owners: Owner, OwnedForms, AddOwnedForm,
18668             RemoveOwnedForm (still incomplete, missing on-top and common
18669             minimize/maximize behaviour)
18670           - Added StartPosition property (still incomplete, does not use when
18671             creating the form)
18672           - Added ShowDialog() methods (still incomplete, missing forcing the
18673             dialog modal)
18675 2004-09-22 14:05  pbartok
18677         * Application.cs:
18678           - Added message loop for modal dialogs
18680 2004-09-22 14:02  pbartok
18682         * GroupBox.cs:
18683           - Fixed wrong types for events
18685 2004-09-22 14:00  pbartok
18687         * Shortcut.cs, FormWindowState.cs:
18688           - Fixed wrong values
18690 2004-09-22 12:01  jackson
18692         * Control.cs: Text is never null
18694 2004-09-20 22:14  pbartok
18696         * XplatUIWin32.cs:
18697           - Fixed accessibility level for Idle handler
18699 2004-09-20 18:54  jackson
18701         * Application.cs, XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs,
18702           XplatUIX11.cs: New message loop that uses poll so we don't get a
18703           busy loop
18705 2004-09-17 10:43  pbartok
18707         * ScrollBar.cs:
18708           - Fixed behaviour of arrow buttons. Now properly behaves like
18709             Buttons (and like Microsoft's scrollbar arrow buttons)
18711 2004-09-17 10:14  pbartok
18713         * ScrollBar.cs:
18714           - Added missing release of keyboard/mouse capture
18716 2004-09-17 06:18  jordi
18718         * ContextMenu.cs, MainMenu.cs, Menu.cs, MenuAPI.cs, MenuItem.cs,
18719           Theme.cs: Very early menu support
18721 2004-09-16 17:45  pbartok
18723         * XplatUIWin32.cs:
18724           - Fixed sending a window to the front
18725           - Added overload for SetWindowPos to avoid casting
18727 2004-09-16 17:44  pbartok
18729         * Control.cs:
18730           - Added SendToBack and BringToFront methods
18732 2004-09-16 07:00  ravindra
18734         * Copyright: Added Novell URL.
18736 2004-09-16 07:00  ravindra
18738         * ToolBar.cs: Invalidate should be done before redrawing.
18740 2004-09-15 21:19  ravindra
18742         * ColumnHeaderStyle.cs: Enum for ListView Control.
18744 2004-09-15 21:18  ravindra
18746         * ColumnClickEventArgs.cs, ColumnClickEventHandler.cs: Event for
18747           ListView Control.
18749 2004-09-13 18:26  jackson
18751         * Timer.cs, XplatUIX11.cs: Remove test code so timers are updated
18752           properly
18754 2004-09-13 18:13  jackson
18756         * Timer.cs, X11Structs.cs, XplatUIX11.cs: Timers are now handled in
18757           a second thread and post messages into the main threads message
18758           queue. This makes timing much more consistent. Both win2K and XP
18759           have a minimum timer value of 15 milliseconds, so we now do this
18760           too.
18762 2004-09-13 15:18  pbartok
18764         * X11Structs.cs, XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs,
18765           XplatUIX11.cs:
18766           - Added Z-Ordering methods
18768 2004-09-13 10:56  pbartok
18770         * Form.cs:
18771           - Fixed #region names
18772           - Moved properties and methods into their proper #regions
18774 2004-09-13 10:51  pbartok
18776         * Form.cs:
18777           - Added Accept and CancelButton properties
18778           - Added ProcessDialogKey() method
18780 2004-09-13 08:18  pbartok
18782         * IWindowTarget.cs:
18783           - Initial check-in
18785 2004-09-10 21:50  pbartok
18787         * Control.cs:
18788           - Added DoDragDrop() [incomplete]
18789           - Properly implemented 'Visible' handling
18790           - Added SetVisibleCore()
18791           - Implemented FindChildAtPoint()
18792           - Implemented GetContainerControl()
18793           - Implemented Hide()
18795 2004-09-10 19:28  pbartok
18797         * Control.cs:
18798           - Moved methods into their appropriate #regions
18799           - Reordered methods within regions alphabetically
18801 2004-09-10 18:57  pbartok
18803         * XplatUIX11.cs, XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs:
18804           - Added method to retrieve text from window
18806 2004-09-10 18:56  pbartok
18808         * Control.cs:
18809           - Moved some internal functions into the internal region
18810           - Implemented FontHeight
18811           - Implemented RenderRightToLeft
18812           - Implemented ResizeRedraw
18813           - Implemented ShowFocusCues
18814           - Implemented ShowKeyboardCues
18815           - Implemented FromChildHandle
18816           - Implemented FromHandle
18817           - Implemented IsMnemonic
18818           - Implemented ReflectMessage
18819           - All public and protected Static Methods are now complete
18821 2004-09-10 16:54  pbartok
18823         * Control.cs:
18824           - Implemented remaining missing public instance properties
18825           - Alphabetized some out of order properties
18827 2004-09-10 05:51  ravindra
18829         * PictureBox.cs: Added a check for null image.
18831 2004-09-10 00:59  jordi
18833         * GroupBox.cs: remove cvs tag
18835 2004-09-09 05:25  ravindra
18837         * ToolBar.cs: Make redraw accessible from ToolBarButton.
18839 2004-09-09 05:23  ravindra
18841         * ToolBarButton.cs: Changes in ToolBarButton need to make it's
18842           parent redraw.
18844 2004-09-09 02:28  pbartok
18846         * ThemeWin32Classic.cs:
18847           - Improve disabled string look
18849 2004-09-09 01:15  jordi
18851         * MeasureItemEventArgs.cs, MeasureItemEventHandler.cs: measureitem
18852           args and handler
18854 2004-09-08 23:56  ravindra
18856         * ItemBoundsPortion.cs: It's enum, not a class!
18858 2004-09-08 23:47  ravindra
18860         * FormBorderStyle.cs, FormStartPosition.cs, FormWindowState.cs:
18861           Enums for Form.
18863 2004-09-08 21:13  ravindra
18865         * ItemBoundsPortion.cs, ListViewAlignment.cs, View.cs: Enums for
18866           ListView control.
18868 2004-09-08 21:03  ravindra
18870         * ThemeWin32Classic.cs: PictureBox would not draw a null image to
18871           avoid crash.
18873 2004-09-08 21:01  ravindra
18875         * ScrollableControl.cs: Removed unreachable code.
18877 2004-09-08 06:45  jordi
18879         * MenuMerge.cs, Shortcut.cs: enumerations need it by menus
18881 2004-09-08 01:00  jackson
18883         * XplatUIX11.cs: Only run the timers when updating the message
18884           queue. This effectively gives X messages a higher priority then
18885           timer messages. Timers still need love though
18887 2004-09-07 14:01  jackson
18889         * XplatUIX11.cs: Do not call XDestroyWindow, X has already done
18890           this for us and the handle is no longer valid.
18892 2004-09-07 13:59  jackson
18894         * HandleData.cs, XplatUIX11.cs: First steps towards a new X event
18895           loop that manages to not crash. TODO: Add poll and cleanup timers
18897 2004-09-07 11:12  jordi
18899         * GroupBox.cs, Theme.cs, ThemeWin32Classic.cs: GroupBox control
18901 2004-09-07 03:40  jordi
18903         * Label.cs, LinkLabel.cs, Theme.cs, ThemeWin32Classic.cs: LinkLabel
18904           fixes, methods, multiple links
18906 2004-09-06 06:55  jordi
18908         * Control.cs: Caches ClientRectangle rectangle value
18910 2004-09-05 02:03  jordi
18912         * ScrollBar.cs, ThemeWin32Classic.cs: fixes bugs, adds flashing on
18913           certain situations
18915 2004-09-04 11:10  jordi
18917         * Label.cs: Refresh when font changed
18919 2004-09-02 16:24  pbartok
18921         * Control.cs:
18922           - Added sanity check to creation of double buffer bitmap
18924 2004-09-02 16:24  pbartok
18926         * ButtonBase.cs:
18927           - Fixed selection of text color
18928           - Fixed handling of resize event; now properly recreates double
18929             buffering bitmap
18930           - Added missing assignment of TextAlignment
18931           - Added proper default for TextAlignment
18933 2004-09-02 14:26  pbartok
18935         * RadioButton.cs:
18936           - Added missing RadioButton.RadioButtonAccessibleObject class
18938 2004-09-02 14:26  pbartok
18940         * Control.cs:
18941           - Added missing Control.ControlAccessibleObject class
18942           - Started to implement Select()ion mechanisms, still very incomplete
18944 2004-09-02 14:25  pbartok
18946         * AccessibleObject.cs:
18947           - Added missing methods
18949 2004-09-02 14:23  pbartok
18951         * AccessibleNavigation.cs, AccessibleSelection.cs:
18952           - Initial check-in
18954 2004-09-02 10:32  jordi
18956         * Theme.cs, ThemeGtk.cs, ThemeWin32Classic.cs: implements resource
18957           pool for pens, brushes, and hatchbruses
18959 2004-09-01 15:30  jackson
18961         * StatusBar.cs: Fix typo
18963 2004-09-01 14:44  pbartok
18965         * RadioButton.cs:
18966           - Fixed state
18968 2004-09-01 14:39  pbartok
18970         * Button.cs, RadioButton.cs:
18971           - Functional initial check-in
18973 2004-09-01 14:01  pbartok
18975         * CheckBox.cs:
18976           - Added missing default
18977           - Added missing region mark
18979 2004-09-01 09:10  jordi
18981         * Label.cs: fixes method signatures, new methods, events, fixes
18982           autosize
18984 2004-09-01 07:19  jordi
18986         * Control.cs: Init string variables with an empty object
18988 2004-09-01 04:20  jordi
18990         * Control.cs: fires OnFontChanged event
18992 2004-08-31 20:07  pbartok
18994         * ButtonBase.cs:
18995           - Enabled display of strings
18997 2004-08-31 20:05  pbartok
18999         * Form.cs:
19000           - Added (partial) implementation of DialogResult; rest needs to be
19001             implemented when the modal loop code is done
19003 2004-08-31 19:55  pbartok
19005         * CheckBox.cs:
19006           - Fixed to match the removal of the needs_redraw concept
19008 2004-08-31 19:55  pbartok
19010         * ButtonBase.cs:
19011           - Removed the rather odd split between 'needs redraw' and redrawing
19012           - Now handles the events that require regeneration (ambient
19013             properties and size)
19015 2004-08-31 19:41  pbartok
19017         * Control.cs:
19018           - Added firing of BackColorChanged event
19019           - Added TopLevelControl property
19020           - Fixed handling of WM_ERASEBKGRND message
19022 2004-08-31 12:49  pbartok
19024         * ButtonBase.cs:
19025           - Removed debug
19026           - Minor fixes
19028 2004-08-31 12:48  pbartok
19030         * CheckBox.cs:
19031           - Finished (famous last words)
19033 2004-08-31 04:35  jordi
19035         * ScrollBar.cs: adds autorepeat timer, uses a single timer, fixes
19036           scrolling bugs, adds new methods
19038 2004-08-30 14:42  pbartok
19040         * CheckBox.cs:
19041           - Implemented CheckBox drawing code
19043 2004-08-30 14:42  pbartok
19045         * ButtonBase.cs:
19046           - Made Redraw() and CheckRedraw() virtual
19047           - Improved mouse up/down/move logic to properly track buttons
19049 2004-08-30 09:44  pbartok
19051         * CheckBox.cs:
19052           - Updated to fix broken build. Not complete yet.
19054 2004-08-30 09:28  pbartok
19056         * CheckState.cs:
19057           - Initial checkin
19059 2004-08-30 09:17  pbartok
19061         * Appearance.cs:
19062           - Initial check-in
19064 2004-08-27 16:12  ravindra
19066         * ToolBarButton.cs: Added TypeConverter attribute.
19068 2004-08-27 16:07  ravindra
19070         * ImageIndexConverter.cs: Implemented.
19072 2004-08-27 14:17  pbartok
19074         * Control.cs:
19075           - Removed unneeded stack vars
19076           - First attempt to fix sizing issues when layout is suspended
19078 2004-08-25 15:35  jordi
19080         * ScrollBar.cs: more fixes to scrollbar
19082 2004-08-25 14:04  ravindra
19084         * Theme.cs, ThemeWin32Classic.cs, ToolBar.cs, ToolBarButton.cs:
19085           Added the missing divider code and grip for ToolBar Control.
19087 2004-08-25 13:20  pbartok
19089         * Control.cs:
19090           - Control now properly passes the ambient background color to child
19091             controls
19093 2004-08-25 13:20  jordi
19095         * ScrollBar.cs: small bug fix regarding bar position
19097 2004-08-25 12:33  pbartok
19099         * Timer.cs:
19100           - Now only calls SetTimer or KillTimer if the enabled state has
19101           changed
19103 2004-08-25 12:33  pbartok
19105         * XplatUIWin32.cs:
19106           - Fixed timer handling, now seems to work
19107           - Improved error message for window creation
19109 2004-08-25 12:32  pbartok
19111         * Control.cs:
19112           - Fixed generation of MouseUp message
19114 2004-08-25 12:29  jordi
19116         * ProgressBar.cs, ThemeWin32Classic.cs: new methods, properties,
19117           and fixes for progressbar
19119 2004-08-24 18:43  ravindra
19121         * ThemeWin32Classic.cs, ToolBar.cs: Fixed wrapping related issues
19122           in ToolBar control.
19124 2004-08-24 17:15  pbartok
19126         * Panel.cs:
19127           - Added #region
19128           - Added missing events
19129           - Alphabetized
19131 2004-08-24 17:14  pbartok
19133         * StatusBar.cs, PictureBox.cs:
19134           - Now uses Control's CreateParams
19136 2004-08-24 16:36  pbartok
19138         * XplatUIX11.cs:
19139           - Fixed background color handling
19140           - Fixed sending of enter/leave events on a grab
19142 2004-08-24 16:35  pbartok
19144         * X11Structs.cs:
19145           - Refined definitions for CrossingEvent
19147 2004-08-24 12:37  jordi
19149         * ScrollBar.cs, Theme.cs, ThemeGtk.cs, ThemeWin32Classic.cs: fixes
19150           formmating, methods signature, and adds missing events
19152 2004-08-24 12:24  jordi
19154         * Control.cs: fire OnEnabledChanged event
19156 2004-08-24 11:17  pbartok
19158         * XplatUIWin32.cs:
19159           - Implemented SetTimer() and KillTimer()
19161 2004-08-24 11:16  pbartok
19163         * XplatUIX11.cs:
19164           - Now uses Remove instead of Add to kill the timer
19166 2004-08-24 10:16  jackson
19168         * PictureBox.cs, Theme.cs, ThemeWin32Classic.cs: Handle drawing
19169           picture boxes in the theme now. Draw picture box borders and obey
19170           sizing modes
19172 2004-08-24 05:49  jackson
19174         * Timer.cs: Remove top secret debugging code
19176 2004-08-24 05:34  jackson
19178         * PictureBox.cs: Temp hack to make picture boxes draw their full
19179           image
19181 2004-08-24 05:29  jackson
19183         * Timer.cs, XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs,
19184           XplatUIX11.cs: Move timers to the driver level. On X they are
19185           queued by the driver and checked on idle.
19187 2004-08-24 01:07  jackson
19189         * XplatUIX11.cs: Use a queue for async messages instead of passing
19190           them as ClientMessages since that was totally broken. Also simply
19191           check for events and return an idle message if none are found. This
19192           gives us an idle handler, and prevents deadlocking when no messages
19193           are in the queue.
19195 2004-08-23 18:19  ravindra
19197         * XplatUIWin32.cs: Removed the unwanted destructor.
19199 2004-08-23 17:27  pbartok
19201         * ButtonBase.cs:
19202           - Finishing touches. Works now, just needs some optimizations.
19204 2004-08-23 16:53  jordi
19206         * ScrollBar.cs: small fix
19208 2004-08-23 16:45  pbartok
19210         * Application.cs:
19211           - Removed debug output
19212           - Simplifications
19214 2004-08-23 16:43  jordi
19216         * ScrollBar.cs: [no log message]
19218 2004-08-23 16:10  pbartok
19220         * Form.cs:
19221           - Fixed handling of WM_CLOSE message
19222           - Removed debug output
19224 2004-08-23 16:09  pbartok
19226         * Application.cs:
19227           - Added handling of Idle event
19228           - Added handling of form closing
19229           - Fixed reporting of MessageLoop property
19230           - Removed some unneeded code, should provide a bit of a speedup
19232 2004-08-23 15:22  pbartok
19234         * Control.cs:
19235           - Added InitLayout() method
19236           - Added code to properly perform layout when Anchor or Dock property
19237             is changed
19238           - Changed 'interpretation' of ResumeLayout. MS seems to have a
19239             LAMESPEC, tried to do it in a way that makes sense
19241 2004-08-23 14:10  jordi
19243         * HScrollBar.cs, ScrollBar.cs, TrackBar.cs, VScrollBar.cs: fixes
19244           properties and methods
19246 2004-08-23 13:55  pbartok
19248         * Control.cs:
19249           - Properly fixed Jordi's last fix
19250           - Now uses Cursor's Position property instead of calling XplatUI
19251           directly
19253 2004-08-23 13:44  jordi
19255         * PaintEventHandler.cs: Adding missing attribute
19257 2004-08-23 13:39  pbartok
19259         * Cursor.cs:
19260           - Implemented Position property
19262 2004-08-23 13:39  pbartok
19264         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs:
19265           - Added method to move mouse cursor
19267 2004-08-23 13:39  pbartok
19269         * XplatUIX11.cs:
19270           - Fixed setting of background color
19271           - Added method to move mouse cursor
19273 2004-08-23 13:16  jordi
19275         * Control.cs: avoids null exception
19277 2004-08-22 17:46  jackson
19279         * PictureBox.cs, PictureBoxSizeMode.cs: Initial implementation of
19280           PictureBox
19282 2004-08-22 17:40  jackson
19284         * XplatUIX11.cs: Add some missing locks
19286 2004-08-22 15:10  pbartok
19288         * Control.cs, Form.cs:
19289           - Removed OverlappedWindow style from Control, instead it's default
19290             now is child
19291           - Made form windows OverlappedWindow by default
19293 2004-08-22 13:34  jackson
19295         * ScrollBar.cs: Update the position through the Value property so
19296           the OnValueChanged event is raised.
19298 2004-08-22 12:04  pbartok
19300         * SWF.csproj:
19301           - Added Cursor.cs and UserControl.cs
19303 2004-08-22 12:03  pbartok
19305         * Cursor.cs:
19306           - Started implementation, not usable yet
19308 2004-08-22 12:00  pbartok
19310         * UserControl.cs:
19311           - Implemented UserControl (complete)
19313 2004-08-21 19:20  ravindra
19315         * ToolBar.cs: Correcting the formatting mess of VS.NET.
19317 2004-08-21 18:49  ravindra
19319         * ToolBar.cs: Probably this completes the missing attributes in
19320           toolbar control.
19322 2004-08-21 18:03  ravindra
19324         * ToolBar.cs, ToolBarButton.cs, ToolBarButtonClickEventArgs.cs:
19325           Fixed toolbar control signatures.
19327 2004-08-21 16:32  pbartok
19329         * LinkLabel.cs:
19330           - Signature Fixes
19332 2004-08-21 16:30  pbartok
19334         * Label.cs:
19335           - Signature fixes
19337 2004-08-21 16:19  pbartok
19339         * Control.cs, Label.cs:
19340           - Signature fixes
19342 2004-08-21 15:57  pbartok
19344         * ButtonBase.cs:
19345           - Added loads of debug output for development
19346           - Fixed typo in method name
19348 2004-08-21 15:52  pbartok
19350         * ToolBarButtonClickEventArgs.cs:
19351           - Added missing base class
19353 2004-08-21 14:53  pbartok
19355         * Control.cs:
19356           - Updated to match new GrabWindow signature
19358 2004-08-21 14:51  pbartok
19360         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIX11.cs:
19361           - Added method to get default display size
19363 2004-08-21 14:23  pbartok
19365         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIX11.cs:
19366           - Added method to query current grab state
19367           - Added argument to allow confining a grab to a window
19369 2004-08-21 14:22  pbartok
19371         * Keys.cs:
19372           - Added [Flags] attribute so that modifiers can be used in bitwise
19373           ops
19375 2004-08-21 14:21  pbartok
19377         * TrackBar.cs, ScrollBar.cs:
19378           - Replaced direct XplatUI calls with their Control counterpart
19380 2004-08-21 13:32  pbartok
19382         * Control.cs:
19383           - Implemented Created property
19385 2004-08-21 13:28  pbartok
19387         * Control.cs:
19388           - Implemented ContainsFocus
19390 2004-08-21 13:26  pbartok
19392         * Control.cs:
19393           - Implemented CausesValidation
19395 2004-08-21 13:21  pbartok
19397         * Control.cs:
19398           - Implemented CanFocus
19399           - Implemented CanSelect
19400           - Implemented Capture
19402 2004-08-21 12:35  pbartok
19404         * XplatUIWin32.cs:
19405           - Fixed bug with Async message handling
19406           - Implemented getting the ModifierKeys
19408 2004-08-21 12:32  jackson
19410         * AsyncMethodResult.cs: Make sure we have the mutex before we
19411           release it. Fixes BeginInvoke on windows
19413 2004-08-21 11:31  pbartok
19415         * XplatUIWin32.cs, XplatUIX11.cs:
19416           - Drivers now return proper mouse state
19418 2004-08-21 10:54  jackson
19420         * Control.cs: Implement EndInvoke
19422 2004-08-21 10:48  jackson
19424         * Timer.cs: Remove unneeded finalizer
19426 2004-08-20 19:52  ravindra
19428         * ThemeWin32Classic.cs, ToolBar.cs, ToolBarButton.cs: Improvments
19429           in mouse event handling in the ToolBar control.
19431 2004-08-20 19:50  ravindra
19433         * ImageList.cs: Changed draw method to use the arguments passed in
19434           to draw the image.
19436 2004-08-20 18:58  pbartok
19438         * XplatUIStructs.cs:
19439           - Added private message for async communication
19441 2004-08-20 17:38  ravindra
19443         * Control.cs: Made RightToLeft property virtual and removed a
19444           Console.WriteLine.
19446 2004-08-20 14:39  jordi
19448         * ThemeGtk.cs: use style_attach
19450 2004-08-20 14:39  pbartok
19452         * XplatUIWin32.cs:
19453           - Added jackson's Async code from X11 to Win32
19455 2004-08-20 14:09  pbartok
19457         * SWF.csproj:
19458           - Added all new files
19460 2004-08-20 14:09  pbartok
19462         * Control.cs:
19463           - Added call to set window background color
19465 2004-08-20 14:03  pbartok
19467         * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs:
19468           - Added method for setting the window background
19470 2004-08-20 14:02  pbartok
19472         * XplatUIWin32.cs:
19473           - Added method for setting the background color
19474           - Added handling for erasing the window background
19476 2004-08-20 13:45  jordi
19478         * TrackBar.cs: fixes timer, new properties and methods
19480 2004-08-20 13:34  jackson
19482         * ScrollBar.cs: Use the SWF timer so callbacks are run in the
19483           correct thread
19485 2004-08-20 13:22  jackson
19487         * Timer.cs: Timer Tick events are now handed through Controls Async
19488           mechanism so the callbacks are executed in the same thread as X
19490 2004-08-20 13:19  jackson
19492         * XplatUIDriver.cs: Expose functionality to send async messages
19493           through the driver
19495 2004-08-20 13:18  jackson
19497         * Control.cs: Implement Begininvoke
19499 2004-08-20 13:14  jackson
19501         * XplatUI.cs, XplatUIWin32.cs: Expose functionality to send async
19502           messages through the driver
19504 2004-08-20 13:12  jackson
19506         * XplatUIX11.cs: Lock before all X operations. Also added Async
19507           method functionality through XSendEvent
19509 2004-08-20 13:11  jackson
19511         * X11Structs.cs: Use IntPtrs for ClientMessage extra data (TODO:
19512           This will screw up on 64 bit systems)
19514 2004-08-20 13:10  jackson
19516         * AsyncMethodData.cs, AsyncMethodResult.cs: Classes for sending
19517           Async messages through X/Win32
19519 2004-08-19 19:39  pbartok
19521         * XplatUIX11.cs:
19522           - Updated code to match new HandleData.DeviceContext type
19524 2004-08-19 19:38  pbartok
19526         * HandleData.cs:
19527           - Made DeviceContext a generic object to allow usage from various
19528           drivers
19529           - Added support for queueing Windows messages
19531 2004-08-19 19:37  pbartok
19533         * XplatUIWin32.cs:
19534           - Added generation of MouseEnter, MouseLeave and MouseHover events
19535           - Added cleanup on EndPaint
19537 2004-08-19 19:17  pbartok
19539         * Control.cs:
19540           - Added handling of WM_MOUSEHOVER
19541           - Worked around 'bug' in Win32 WM_MOUSE_ENTER/WM_MOUSE_LEAVE driver
19542           code
19544 2004-08-19 18:55  jordi
19546         * ThemeGtk.cs: fixes button order
19548 2004-08-19 18:12  jordi
19550         * Theme.cs, ThemeWin32Classic.cs: fixes methods signature
19552 2004-08-19 17:09  pbartok
19554         * Control.cs:
19555           - Added Right property
19556           - Added RightToLeft property
19558 2004-08-19 16:27  jordi
19560         * ThemeGtk.cs: experimental GTK theme support
19562 2004-08-19 16:26  jordi
19564         * ITheme.cs, Theme.cs: move themes from an interface to a class
19566 2004-08-19 16:25  jordi
19568         * Control.cs, ScrollBar.cs, ThemeEngine.cs, ThemeWin32Classic.cs:
19569           theme enhancaments
19571 2004-08-19 16:04  pbartok
19573         * XplatUIX11.cs:
19574           - Added colormap basics
19575           - Added a way to re-initialize with a different display handle
19576           - Fixed setting of the window background color
19577           - Added various X11 imports related to colors and colormaps
19579 2004-08-19 15:51  pbartok
19581         * X11Structs.cs:
19582           - Removed packing hints (Paolo suggested this a while back)
19583           - fixed colormap type
19584           - Added default Atom types
19585           - Added Screen and color structs and enums
19587 2004-08-19 15:39  pbartok
19589         * ImageList.cs:
19590           - Added missing Draw() method
19591           - Added missing RecreateHandle event
19593 2004-08-19 15:30  pbartok
19595         * Form.cs:
19596           - Added handling of WM_CLOSE
19598 2004-08-18 13:16  jordi
19600         * ITheme.cs, ThemeWin32Classic.cs, XplatUIWin32.cs: Move colors to
19601           a table
19603 2004-08-18 09:56  jordi
19605         * ScrollBar.cs: fixes to scrollbar: steps and multiple timers
19607 2004-08-17 15:31  ravindra
19609         * SWF.csproj: Updated project.
19611 2004-08-17 15:25  pbartok
19613         * Control.cs:
19614           - Drawing improvement; don't call UpdateBounds if we are not visible
19615             (or have been minimized)
19617 2004-08-17 15:24  pbartok
19619         * XplatUIWin32.cs:
19620           - Finished IsVisible
19621           - Added Win32GetWindowPlacement
19623 2004-08-17 15:08  jackson
19625         * Panel.cs: Initial checkin of the Panel
19627 2004-08-17 14:25  pbartok
19629         * Control.cs:
19630           - Fixed broken handling of default window sizes
19632 2004-08-17 13:29  jackson
19634         * ThemeWin32Classic.cs: Don't use KnownColor to create colours. It
19635           has a large startup time.
19637 2004-08-17 10:25  jackson
19639         * HandleData.cs: union areas properly
19641 2004-08-17 10:12  jackson
19643         * HandleData.cs: union areas properly
19645 2004-08-16 20:00  ravindra
19647         * ToolBar.cs, ToolBarButton.cs: Added attributes.
19649 2004-08-16 18:48  ravindra
19651         * ToolBar.cs: Added attributes.
19653 2004-08-16 17:17  ravindra
19655         * SWF.csproj: Updated project.
19657 2004-08-16 17:16  jackson
19659         * XplatUIX11.cs: Check for more expose events before sending a
19660           WM_PAINT so they can all be grouped together. This makes dragging a
19661           window across another window redraw in a sane way.
19663 2004-08-16 15:47  pbartok
19665         * Control.cs:
19666           - Added handling of WM_MOUSE_ENTER & WM_MOUSE_LEAVE to
19667             support OnMouseEnter/Leave()
19668           - Added WS_CLIPSIBLINGS and WS_CLIPCHILDREN window styles to improve
19669             exposure handling
19671 2004-08-16 15:46  pbartok
19673         * XplatUIStructs.cs, XplatUIX11.cs:
19674           - Added WM_MOUSE_ENTER & WM_MOUSE_LEAVE to support
19675           OnMouseEnter/Leave()
19677 2004-08-16 15:34  jackson
19679         * XplatUIX11.cs: Group multiple expose events in HandleData, make
19680           sure messages get the message field set to WM_NULL if they are not
19681           handled.
19683 2004-08-16 15:24  jackson
19685         * HandleData.cs: HandleData is used for storing message information
19686           for window handles
19688 2004-08-15 17:23  ravindra
19690         * ColorDepth.cs: Added attribute.
19692 2004-08-15 17:23  ravindra
19694         * SWF.csproj: Updated project for ToolBar Control.
19696 2004-08-15 17:20  ravindra
19698         * ITheme.cs, ThemeWin32Classic.cs: Changes to Theme for ToolBar
19699           control and also dos2unix format.
19701 2004-08-15 17:13  ravindra
19703         * ToolBar.cs, ToolBarAppearance.cs, ToolBarButton.cs,
19704           ToolBarButtonClickEventArgs.cs,
19705           ToolBarButtonClickEventHandler.cs, ToolBarButtonStyle.cs,
19706           ToolBarTextAlign.cs: First Implementation of ToolBar control.
19708 2004-08-15 15:31  pbartok
19710         * ButtonBase.cs:
19711           - First (mostly) working version
19713 2004-08-13 16:15  pbartok
19715         * Control.cs:
19716           - Fixed Anchor default
19718 2004-08-13 15:43  pbartok
19720         * Control.cs:
19721           - Changed GetCursorPos signature
19723 2004-08-13 15:42  pbartok
19725         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs:
19726           - Changed signature for GetCursorPos
19728 2004-08-13 15:25  pbartok
19730         * XplatUIX11.cs:
19731           - Cleanup
19732           - Fixed resizing/exposure handling
19734 2004-08-13 15:22  jordi
19736         * ThemeWin32Classic.cs: removes redundant code and fixes issues
19737           with tickposition
19739 2004-08-13 14:55  jordi
19741         * TrackBar.cs: change from wndproc to events
19743 2004-08-13 13:00  jordi
19745         * Control.cs, XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs,
19746           XplatUIX11.cs: implements PointToClient (ScreenToClient)
19748 2004-08-13 12:53  pbartok
19750         * XplatUIWin32.cs:
19751           - Changed GetWindowPos to also provide client area size
19752           - Fixed broken prototypes for several win32 functions
19754 2004-08-13 12:53  pbartok
19756         * XplatUI.cs, XplatUIDriver.cs:
19757           - Changed GetWindowPos to also provide client area size
19759 2004-08-13 12:52  pbartok
19761         * XplatUIX11.cs:
19762           - Added generation of WM_POSCHANGED
19763           - Changed GetWindowPos to also provide client area size
19765 2004-08-13 12:52  pbartok
19767         * Control.cs:
19768           - Added Dispose() and destructor
19769           - Fixed resizing and bounds calculation
19770           - Fixed Layout
19771           - Added memory savings for invisible windows
19773 2004-08-13 12:46  jordi
19775         * TrackBar.cs: adds timer and grap window
19777 2004-08-13 10:25  jackson
19779         * Timer.cs: SWF Timer
19781 2004-08-12 16:59  pbartok
19783         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIX11.cs:
19784           - Implemented method to get current mouse position
19786 2004-08-12 14:29  jordi
19788         * ITheme.cs, ThemeWin32Classic.cs, TrackBar.cs: Trackbar
19789           enhancement, fix mouse problems, highli thumb, etc
19791 2004-08-12 13:31  pbartok
19793         * Control.cs:
19794           - Fixed Anchoring bugs
19796 2004-08-12 13:01  jackson
19798         * StatusBar.cs: Don't forget things
19800 2004-08-12 12:54  jackson
19802         * ThemeWin32Classic.cs: Handle owner draw status bars
19804 2004-08-12 12:54  jackson
19806         * StatusBar.cs: Implement missing properties, events, and methods.
19807           Handle mouse clicking
19809 2004-08-12 10:19  jackson
19811         * StatusBarPanelClickEventArgs.cs,
19812           StatusBarPanelClickEventHandler.cs: Classes for handling status
19813           bar panel click events
19815 2004-08-12 10:10  jackson
19817         * Control.cs: Add missing properties
19819 2004-08-12 09:46  pbartok
19821         * BindingsManagerBase.cs:
19822           - Name changed to BindingManagerBase.cs
19824 2004-08-12 09:25  jordi
19826         * ScrollableControl.cs: calls ctrlbase instead of exeception
19828 2004-08-11 16:28  pbartok
19830         * InputLanguageChangingEventArgs.cs:
19831           - Never check in before compiling. Fixes the last check-in
19833 2004-08-11 16:26  pbartok
19835         * InputLanguageChangingEventArgs.cs:
19836           - More signature fixes
19838 2004-08-11 16:20  pbartok
19840         * BindingManagerBase.cs, BindingMemberInfo.cs, ContainerControl.cs,
19841           Control.cs, ControlEventArgs.cs, ControlPaint.cs, Form.cs,
19842           ImageListStreamer.cs, InputLanguage.cs,
19843           InputLanguageChangedEventArgs.cs,
19844           InputLanguageChangingEventArgs.cs, Keys.cs, LayoutEventArgs.cs,
19845           LinkArea.cs, Message.cs, MouseEventArgs.cs, NativeWindow.cs,
19846           ScrollEventArgs.cs, ScrollableControl.cs, XplatUI.cs,
19847           XplatUIDriver.cs, XplatUIWin32.cs, XplatUIX11.cs:
19848           - Signature fixes
19850 2004-08-11 16:16  pbartok
19852         * Application.cs:
19853           - Fixed Signature
19854           - Added .Net 1.1 method
19856 2004-08-11 15:25  pbartok
19858         * SWF.csproj:
19859           - Fixed BindingManagerBase.cs filename
19861 2004-08-11 15:22  pbartok
19863         * BindingManagerBase.cs:
19864           - Was checked in with wrong filename
19866 2004-08-11 14:50  pbartok
19868         * SWF.csproj:
19869           - Updated
19871 2004-08-11 13:41  jordi
19873         * XplatUIWin32.cs: Fixes ClientRect
19875 2004-08-11 13:19  pbartok
19877         * Control.cs, XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs,
19878           XplatUIX11.cs:
19879           - We had SetWindowPos and MoveWindow to set window positions and
19880             size, removed MoveWindow. We have GetWindowPos, so it made sense to
19881             keep SetWindowPos as matching counterpart
19882           - Added some X11 sanity checking
19884 2004-08-11 12:59  pbartok
19886         * Control.cs:
19887           - Major cleanup of my SetBounds/SetBoundsCore/UpdateBounds mess
19888             (It seems that SetBounds is just a front for SetBoundsCore and
19889              SetBoundsCore updates the underlying window system and
19890              UpdateBounds is responsible for updating the variables associated
19891              with the Control and sending the events)
19892           - Major cleanup of Size handling; we now have two sizes, client_size
19893             and bounds. Bounds defines the window with decorations, client_size
19894             without them.
19896 2004-08-11 12:55  pbartok
19898         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIX11.cs:
19899           - Added method to calculate difference between decorated window and
19900             raw client area
19902 2004-08-11 12:54  pbartok
19904         * Label.cs:
19905           - Forcing redraw on resize
19907 2004-08-11 11:43  pbartok
19909         * ImageList.cs:
19910           - Removed disposing of the actual images when the list is disposed
19912 2004-08-11 09:13  pbartok
19914         * Control.cs:
19915           - Now properly reparents windows
19917 2004-08-11 08:37  pbartok
19919         * Control.cs:
19920           - Duh!
19922 2004-08-11 07:47  pbartok
19924         * Control.cs:
19925           - Rewrote the collection stuff. Might not be as fast now, not
19926             keeping the number of children around and accessible directly, but
19927             it's more straightforward
19929 2004-08-11 07:44  pbartok
19931         * AccessibleObject.cs:
19932           - Fixed to match ControlCollection rewrite
19934 2004-08-11 07:43  pbartok
19936         * ImageList.cs:
19937           - Added missing creation of the collection list
19939 2004-08-10 20:08  jackson
19941         * StatusBar.cs: Get the paint message from WndProc
19943 2004-08-10 19:31  jackson
19945         * ThemeWin32Classic.cs: Create Brushes as little as possible
19947 2004-08-10 19:20  jackson
19949         * UICues.cs: Add Flags attribute
19951 2004-08-10 19:19  jackson
19953         * StatusBarPanel.cs: Signature cleanup
19955 2004-08-10 19:10  jackson
19957         * StatusBarDrawItemEventArgs.cs, StatusBarDrawItemEventHandler.cs:
19958           Initial implementation of status bar item drawing
19960 2004-08-10 17:27  jordi
19962         * TrackBar.cs: add missing methods, properties, and restructure to
19963           hide extra ones
19965 2004-08-10 16:24  jackson
19967         * AccessibleStates.cs, Border3DSide.cs, Border3DStyle.cs,
19968           ButtonState.cs, ControlStyles.cs, DragDropEffects.cs: Add flags
19969           attribute
19971 2004-08-10 13:21  jordi
19973         * ITheme.cs, ScrollBar.cs, ThemeWin32Classic.cs: scrollbar
19974           enhancements and standarize on win colors defaults
19976 2004-08-10 12:52  jackson
19978         * DrawItemEventArgs.cs, DrawItemState.cs, ITheme.cs,
19979           ThemeWin32Classic.cs: Implement DrawItem functionality
19981 2004-08-10 12:47  jordi
19983         * XplatUIWin32.cs: Calls InvalidateRect before UpdateWindow
19985 2004-08-10 12:32  jordi
19987         * Control.cs: throw ontextchange event
19989 2004-08-10 11:43  pbartok
19991         * Control.cs:
19992           - Added more to the still unfinished Dock/Anchor layout code
19994 2004-08-10 11:39  pbartok
19996         * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs:
19997           - Added GetWindowPos method
19999 2004-08-10 11:36  pbartok
20001         * XplatUIWin32.cs:
20002           - Implemented several methods
20004 2004-08-10 09:47  jackson
20006         * TrackBar.cs: Allow control to handle buffering
20008 2004-08-10 09:41  jackson
20010         * ProgressBar.cs, ScrollBar.cs: Allow control to handle buffering
20012 2004-08-10 09:24  jackson
20014         * Label.cs, LinkLabel.cs: Let Control handle buffering.
20016 2004-08-10 09:09  jackson
20018         * StatusBar.cs: Let Control handle all the buffering.
20020 2004-08-10 09:08  jackson
20022         * Control.cs: Control will now handle the buffering code, so each
20023           control does not have to implement this.
20025 2004-08-10 08:34  jackson
20027         * XplatUIDriver.cs: Use default colors from the theme
20029 2004-08-09 17:12  pbartok
20031         * ImageList.cs:
20032           - Fixed several bugs Ravindra pointed out
20034 2004-08-09 16:11  pbartok
20036         * Control.cs:
20037           - Added incomplete dock layout code
20038           - Added support for mouse wheel
20040 2004-08-09 16:09  pbartok
20042         * XplatUIX11.cs:
20043           - Added handling for middle and right mousebutton
20044           - Added handling for mouse wheel
20045           - Added handling for key state and mouse state and position
20046           - Now properly generates WM_xBUTTONx messages and WM_MOUSEWHEEL
20047           messages
20049 2004-08-09 15:40  jackson
20051         * StatusBarPanel.cs, StatusBarPanelAutoSize.cs,
20052           StatusBarPanelBorderStyle.cs, StatusBarPanelStyle.cs: Initial
20053           checkin
20055 2004-08-09 15:37  jackson
20057         * StatusBar.cs: Initial implementation of StatusBar
20059 2004-08-09 15:36  jackson
20061         * ITheme.cs: Add support for drawing status bar and getting status
20062           bar item sizes
20064 2004-08-09 15:35  pbartok
20066         * MouseButtons.cs:
20067           - Fixed values
20069 2004-08-09 15:34  jackson
20071         * ThemeWin32Classic.cs: Add support for drawing status bar and get
20072           status bar item sizes
20074 2004-08-09 15:21  jackson
20076         * ThemeWin32Classic.cs: Use known colors for default control
20077           colours
20079 2004-08-09 15:12  jackson
20081         * ThemeWin32Classic.cs: Make the default font static, it is static
20082           in control so this doesn't change functionality and creating fonts
20083           is sloooooow.
20085 2004-08-09 14:56  pbartok
20087         * X11Structs.cs:
20088           - Added GrabMode enum
20090 2004-08-09 14:55  pbartok
20092         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIX11.cs:
20093           - Removed Run method, was only required for initial development
20095 2004-08-09 14:51  pbartok
20097         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIX11.cs:
20098           - Implemented GrabWindow/ReleaseWindow methods to allow pointer
20099           capture
20101 2004-08-09 13:48  pbartok
20103         * XplatUIX11.cs:
20104           - Fixed default sizing for child windows
20106 2004-08-09 12:56  pbartok
20108         * XplatUIX11.cs:
20109           - Added generation of WM_DESTROY message
20110           - Added handling of window manager induced shutdown
20112 2004-08-09 11:31  jackson
20114         * ThemeWin32Classic.cs: New names for control properties
20116 2004-08-09 11:25  jackson
20118         * Control.cs: Use new color names
20120 2004-08-09 11:02  jackson
20122         * XplatUI.cs: Get default window properties from the theme
20124 2004-08-09 11:01  jackson
20126         * ITheme.cs: The theme engine now controls default window
20127           properties
20129 2004-08-09 11:00  jackson
20131         * ThemeWin32Classic.cs: Add default window color properties
20133 2004-08-09 10:17  jackson
20135         * ThemeWin32Classic.cs: Use correct default back color
20137 2004-08-09 10:05  jackson
20139         * XplatUIWin32.cs, XplatUIX11.cs: These properties are handled by
20140           the theme now.
20142 2004-08-09 09:56  jackson
20144         * XplatUI.cs: Remove defaults, these are handled by the theme now.
20146 2004-08-09 09:54  jackson
20148         * Control.cs: Get default properties from the theme.
20150 2004-08-09 09:53  jackson
20152         * ITheme.cs: Themes now handle default control properties
20154 2004-08-09 09:53  jackson
20156         * ThemeWin32Classic.cs: Themes now handle default control
20157           properties so coloring will be consistent
20159 2004-08-08 16:54  jordi
20161         * ITheme.cs, ThemeWin32Classic.cs: Label BorderStyles
20163 2004-08-08 15:08  jordi
20165         * XplatUIX11.cs: fixes keyboard crash
20167 2004-08-08 13:47  jordi
20169         * Label.cs: add cvs header info
20171 2004-08-08 12:09  jackson
20173         * ThemeWin32Classic.cs: Add pen_buttonface
20175 2004-08-08 11:52  jordi
20177         * Label.cs, LinkLabel.cs: [no log message]
20179 2004-08-08 11:34  jordi
20181         * ThemeWin32Classic.cs: Use Windows Standard Colours
20183 2004-08-07 17:32  jordi
20185         * TrackBar.cs: throw exceptions of invalid enums values
20187 2004-08-07 17:31  jordi
20189         * Label.cs, LinkLabel.cs, ThemeWin32Classic.cs: fixes label bug and
20190           draw method name
20192 2004-08-07 16:56  jackson
20194         * HorizontalAlignment.cs: Initial checkin
20196 2004-08-07 13:16  jordi
20198         * Label.cs, LinkLabel.cs: throw exceptions, fixes events, missing
20199           methods
20201 2004-08-07 13:05  jordi
20203         * ITheme.cs, ThemeWin32Classic.cs: Theme colour support and
20204           GetSysColor defines
20206 2004-08-06 18:01  pbartok
20208         * ThemeWin32Classic.cs:
20209           - Fixed some rounding issues with float/int
20211 2004-08-06 18:00  jackson
20213         * DockStyle.cs, AnchorStyles.cs:
20215                   Add flags and serializable attributes.
20217 2004-08-06 17:46  pbartok
20219         * XplatUIX11.cs:
20220           - Implemented GetParent
20222 2004-08-06 17:18  pbartok
20224         * TrackBar.cs:
20225           - Fixed some rounding issues with float/int
20227 2004-08-06 17:17  pbartok
20229         * X11Structs.cs, XplatUIX11.cs:
20230           - Fixed Refresh and Invalidate
20232 2004-08-06 15:30  pbartok
20234         * Control.cs, X11Structs.cs, XplatUIX11.cs:
20235           - Fixed recursive loop when resizing
20236           - Improved/fixed redrawing on expose messages
20238 2004-08-06 09:53  jordi
20240         * Control.cs, X11Structs.cs, XplatUIWin32.cs, XplatUIX11.cs: X11
20241           keyboard navigation
20243 2004-08-06 08:02  pbartok
20245         * X11Structs.cs, XplatUIX11.cs:
20246           - Fixed reparenting
20247           - Fixed window border creation
20249 2004-08-05 15:38  pbartok
20251         * XplatUIX11.cs:
20252           - Attempted fix for reparenting problems
20254 2004-08-04 15:14  pbartok
20256         * Control.cs:
20257           - Fixed Invalidation bug (calculated wrong client area)
20258           - Added ClientSize setter
20260 2004-08-04 15:13  pbartok
20262         * Form.cs:
20263           - Added AutoScale properties
20265 2004-08-04 15:13  pbartok
20267         * SWF.csproj:
20268           - Added latest files
20270 2004-08-04 14:11  pbartok
20272         * Control.cs, XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs,
20273           XplatUIX11.cs:
20274           - Added Invalidate handling
20276 2004-08-03 17:09  jordi
20278         * XplatUIDriver.cs: fixes spelling mistake
20280 2004-07-27 09:53  jordi
20282         * TrackBar.cs: fixes trackbar events, def classname, methods
20283           signature
20285 2004-07-27 09:29  jordi
20287         * ScrollBar.cs: fixes scrollbar events
20289 2004-07-27 04:38  jordi
20291         * Control.cs: changes to be able to run winforms samples
20293 2004-07-26 11:42  jordi
20295         * ControlPaint.cs, ITheme.cs, ProgressBar.cs, ScrollBar.cs,
20296           ThemeEngine.cs, ThemeWin32Classic.cs, TrackBar.cs: Theme support
20298 2004-07-26 05:41  jordi
20300         * MessageBox.cs, MessageBoxButtons.cs, MessageBoxDefaultButton.cs,
20301           MessageBoxIcon.cs, MessageBoxOptions.cs: initial messagebox
20302           implementation
20304 2004-07-22 09:22  jordi
20306         * LinkLabel.cs, LinkLabelLinkClickedEventHandler.cs: link label:
20307           check link overlapping, implement events, and fixes
20309 2004-07-21 10:28  jordi
20311         * DialogResult.cs, IButtonControl.cs: fixes comments filenames
20313 2004-07-21 10:19  jordi
20315         * DialogResult.cs, IButtonControl.cs, Label.cs, LinkArea.cs,
20316           LinkBehavior.cs, LinkClickedEventArgs.cs, LinkLabel.cs,
20317           LinkLabelLinkClickedEventArgs.cs,
20318           LinkLabelLinkClickedEventHandler.cs, LinkState.cs,
20319           XplatUIWin32.cs, LinkClickedEventHandler.cs: LinkLabel control
20320           implementation
20322 2004-07-19 13:09  jordi
20324         * Control.cs, Label.cs: label control re-written: added missing
20325           functionlity, events, and properties
20327 2004-07-19 10:49  jordi
20329         * Control.cs: fixes SetBounds logic
20331 2004-07-19 01:29  jordi
20333         * Control.cs: Call RefreshWindow only if the window has created
20335 2004-07-15 14:05  pbartok
20337         * ColorDepth.cs, ImageList.cs, ImageListStreamer.cs, SWF.csproj:
20338           - Implemented ImageList and ImageList.ImageCollection classes
20339           - Added ColorDepth enumeration
20340           - Updated SWF VS.Net project
20342 2004-07-15 11:06  jordi
20344         * XplatUIStructs.cs: added MsgButons enum
20346 2004-07-15 11:03  jordi
20348         * Control.cs: added basic mouse handeling events
20350 2004-07-15 03:38  jordi
20352         * Orientation.cs, TickStyle.cs, TrackBar.cs: Horizontal and
20353           Vertical TrackBar control implementation
20355 2004-07-13 09:33  jordi
20357         * HScrollBar.cs, VScrollBar.cs: vertical and hort. classes commit
20359 2004-07-13 09:31  jordi
20361         * Control.cs, Form.cs: commit: new properties and fixes form size
20362           problems
20364 2004-07-09 14:13  miguel
20366         * ProgressBar.cs: Spelling
20368 2004-07-09 11:25  pbartok
20370         * ProgressBar.cs:
20371           - Removed usage of Rectangle for drawing. Miguel pointed out it's
20372           faster
20374 2004-07-09 11:17  miguel
20376         * ProgressBar.cs: 2004-07-09  Miguel de Icaza  <miguel@ximian.com>
20378                 * ProgressBar.cs: Fixed spelling for `block'
20380                 drawProgressBar: renamed to `DrawProgressBar' to follow the coding
20381                 style guidelines.
20383                 Avoid using the += on rect.X, that exposed a bug in the compiler.
20385 2004-07-08 23:21  pbartok
20387         * AccessibleObject.cs, AccessibleRole.cs, AccessibleStates.cs,
20388           AnchorStyles.cs, Application.cs, ApplicationContext.cs,
20389           BaseCollection.cs, Binding.cs, BindingContext.cs,
20390           BindingMemberInfo.cs, BindingsCollection.cs,
20391           BindingsManagerBase.cs, Border3DSide.cs, Border3DStyle.cs,
20392           BorderStyle.cs, BoundsSpecified.cs, ButtonBorderStyle.cs,
20393           ButtonState.cs, CaptionButton.cs, CheckBox.cs,
20394           ContainerControl.cs, Control.cs, ControlEventArgs.cs,
20395           ControlEventHandler.cs, ControlPaint.cs, ControlStyles.cs,
20396           ConvertEventArgs.cs, ConvertEventHandler.cs, Copyright,
20397           CreateParams.cs, DockStyle.cs, DragAction.cs, DragDropEffects.cs,
20398           DragEventArgs.cs, DragEventHandler.cs, FlatStyle.cs, Form.cs,
20399           FrameStyle.cs, GiveFeedbackEventArgs.cs,
20400           GiveFeedbackEventHandler.cs, HelpEventArgs.cs,
20401           HelpEventHandler.cs, IContainerControl.cs, IDataObject.cs,
20402           IMessageFilter.cs, IWin32Window.cs, ImeMode.cs, InputLanguage.cs,
20403           InputLanguageChangedEventArgs.cs,
20404           InputLanguageChangedEventHandler.cs,
20405           InputLanguageChangingEventArgs.cs,
20406           InputLanguageChangingEventHandler.cs, InputLanguageCollection.cs,
20407           InvalidateEventArgs.cs, InvalidateEventHandler.cs,
20408           KeyEventArgs.cs, KeyEventHandler.cs, KeyPressEventArgs.cs,
20409           KeyPressEventHandler.cs, Keys.cs, Label.cs, LayoutEventArgs.cs,
20410           LayoutEventHandler.cs, MenuGlyph.cs, Message.cs, MouseButtons.cs,
20411           MouseEventArgs.cs, MouseEventHandler.cs, NativeWindow.cs,
20412           PaintEventArgs.cs, PaintEventHandler.cs, ProgressBar.cs,
20413           QueryAccessibilityHelpEventArgs.cs,
20414           QueryAccessibilityHelpEventHandler.cs,
20415           QueryContinueDragEventArgs.cs, QueryContinueDragEventHandler.cs,
20416           RightToLeft.cs, SWF.csproj, SWF.csproj.user, ScrollBar.cs,
20417           ScrollBars.cs, ScrollButton.cs, ScrollEventArgs.cs,
20418           ScrollEventHandler.cs, ScrollEventType.cs, ScrollableControl.cs,
20419           TODO, TODOAttribute.cs, UICues.cs, UICuesEventArgs.cs,
20420           UICuesEventHandler.cs, X11Structs.cs, XplatUI.cs,
20421           XplatUIDriver.cs, XplatUIStructs.cs, XplatUIWin32.cs,
20422           XplatUIX11.cs, lang.cs:
20423           - Initial check-in