In System.Windows.Forms:
[mono-project.git] / mcs / class / Managed.Windows.Forms / System.Windows.Forms / ChangeLog
blob9f4fe1392b39adf778088b4371b047db41e3a211
1 2006-12-06  Chris Toshok  <toshok@ximian.com>
3         * RadioButton.cs: fix TabStop handling.
5 2006-12-06  Chris Toshok  <toshok@ximian.com>
7         * TextBox.cs: remove the explicit assignments to has_focus.
8         Control does that.
10         * ButtonBase.cs: remove the assignment to has_focus.  Control will
11         manage that.
12         
13 2006-12-06  Chris Toshok  <toshok@ximian.com>
15         * ButtonBase.cs: remove all uses of is_enabled from this code.
16         it's always true when any of the code containing the checks is
17         executed.
19 2006-12-06  Chris Toshok  <toshok@ximian.com>
21         * ImageList.cs: reinstate the ShouldSerialize*/Reset* methods,
22         with different semantics (some are present in both 1.1 and 2.0
23         profiles) so that we match MS's behavior in our unit tests.
25 2006-12-06  Jackson Harper  <jackson@ximian.com>
27         * TextControl.cs: Make this operation undoable.
28         * TextBoxBase.cs: Factor the border width into the preferred
29         height.
30         - implement Modified as per the spec.
32 2006-12-06  Chris Toshok  <toshok@ximian.com>
34         * Timer.cs, Control.cs, Menu.cs: make control_tag private.
36 2006-12-06  Chris Toshok  <toshok@ximian.com>
38         * Control.cs: make right_to_left and context_menu fields private.
40 2006-12-06  Chris Toshok  <toshok@ximian.com>
42         * AccessibleObject.cs, Control.cs, XplatUIX11GTK.cs,
43         XplatUIX11.cs, Form.cs, RadioButton.cs, ScrollableControl.cs: make
44         Control.child_controls private.  switch all uses over to
45         Control.Controls.
47 2006-12-06  Chris Toshok  <toshok@ximian.com>
49         * System.Windows.Forms/GroupBox.cs,
50         System.Windows.Forms/AccessibleObject.cs,
51         System.Windows.Forms/ErrorProvider.cs,
52         System.Windows.Forms/Control.cs,
53         System.Windows.Forms/UpDownBase.cs,
54         System.Windows.Forms/ScrollBar.cs,
55         System.Windows.Forms/DateTimePicker.cs,
56         System.Windows.Forms/Form.cs, System.Windows.Forms/Label.cs,
57         System.Windows.Forms/ToolTip.cs,
58         System.Windows.Forms/RadioButton.cs,
59         System.Windows.Forms/LinkLabel.cs,
60         System.Windows.Forms/Splitter.cs,
61         System.Windows.Forms/TextBoxBase.cs,
62         System.Windows.Forms/ToolStripTextBox.cs,
63         System.Windows.Forms/ContainerControl.cs,
64         System.Windows.Forms/ThemeWin32Classic.cs,
65         System.Windows.Forms/SizeGrip.cs,
66         System.Windows.Forms/ToolStripDropDown.cs,
67         System.Windows.Forms/ScrollableControl.cs: Make Control.parent
68         private.  switch all uses over to Control.Parent.
70 2006-12-06  Chris Toshok  <toshok@ximian.com>
72         * RichTextBox.cs: don't assign to has_focus in GotFocus/LostFocus.
73         Control does this before calling emitting these events.
75         * TabControl.cs: same.
77         * ThemeWin32Classic.cs: use Control.ClientRectangle instead of
78         Control.client_rect.
80         * ButtonBase.cs: use the ClientSize property instead of the
81         client_size field.
83         * ScrollableControl.cs: same.
85         * Control.cs: another pass at making properties private.  also,
86         move the initialization of tab_stop to the ctor.
88 2006-12-05  Andreia Gaita <avidigal@novell.com>
90         * TabControl.cs: Let the selected index be set freely if the 
91         control handle is not yet created.
93 2006-12-05  Jonathan Pobst  <monkey@jpobst.com>
95         * Control.cs: Revert dist_top, dist_right, and dist_bottom to 
96         internal until I can rewrite DefaultLayout.
97         * ToolStrip.cs: Fix build error and some general cleaning.
98         * ToolStripControlHost.cs, SplitterPanel.cs, DataGridView.cs:
99         Fix build errors caused by making some of Control's fields private.
101 2006-12-05  Jackson Harper  <jackson@ximian.com>
103         * TextControl.cs: Redo Insert a little so that it use IndexOf
104         instead of Split, this prevents it from messing up on things like
105         \n\n\n. Also more effecient since the split array doesn't need to
106         be created.
107         * TextBoxBase.cs: AppendText doesnt handle multiline and non
108         multiline text differently, this is the first of many fixes that
109         will make multiline/non-multiline the same thing as far as the
110         TextBoxBase is concerned.
111         - Don't split the text and insert lines, this can lose some line
112         endings (like is the last line a soft or hard break). Instead use
113         the new Insert.
114         - Fix an off by one when combining all the lines in the Text
115         getter.
116         - Remove separate multiline handling from the Text getter/setter.
118 2006-12-05  Chris Toshok  <toshok@ximian.com>
120         * ButtonBase.cs: a few changes:
122         - don't reinitialize internal Control fields in the ctor when they
123         have the same values as Control sets them.
125         - don't set has_focus in OnGotFocus/OnLostFocus.  Control does
126         this before calling those methods.
128         - we don't need to call Refresh for anything.  use Invalidate
129         instead.
131         - OnEnabledChanged doesn't need to redraw at all - Control.cs
132         calls Refresh in its OnEnabledChanged.
133         
134         - several of the events we were registered for in the ctor to
135         redraw ourselves already include calls to Invalidate in the
136         property setters that raise the events.  remove the extra
137         invalidation.
139         - reformat a switch statement that was 83274658 columns wide.
140         
141 2006-12-05  Mike Kestner  <mkestner@novell.com>
143         * ComboBox.cs: fix a unit test regression from a TextBox
144         SelectionLength return of -1 when there's no selection.  
146 2006-12-05  Chris Toshok  <toshok@ximian.com>
148         * Control.cs, Button.cs, ThemeGtk.cs, Form.cs, ListView.cs,
149         ThemeWin32Classic.cs, SizeGrip.cs, ToolBar.cs: first pass at
150         cleaning up some of the internal Control fields being used by
151         subclasses.
153 2006-12-05  Mike Kestner  <mkestner@novell.com>
155         * ComboBox.cs: fix some Simple mode regressions.  Set Visible on the
156         listbox after AddImplicit calls since it defaults to hidden. Add a 
157         hack to preserve requested heights across DropDownStyle changes.
159 2006-12-05  Jonathan Pobst  <monkey@jpobst.com>
161         * PropertyGrid.cs: Hide FindFirstItem method from public API.
163 2006-12-05  Chris Toshok  <toshok@ximian.com>
165         * DataGridView.cs: fix compiler warnings.
167         * PrintControllerWithStatusDialog.cs: same.
169         * ToolBar.cs: same.
171         * FolderBrowserDialog.cs: same.
173         * Splitter.cs: same.
175         * DataGridViewComboBoxCell.cs: same.
177         * XplatUIWin32.cs: same.
179         * PictureBox.cs: same.
181         * Win32DnD.cs: same.
183         * PageSetupDialog.cs: same.
185         * FileDialog.cs: same.
187         * PrintDialog.cs: same.
189         * DataGridTextBoxColumn.cs: same.
191         * DrawTreeNodeEventArgs.cs: same (and fix corcompare)
193 2006-12-05  Chris Toshok  <toshok@ximian.com>
195         * TextBox.cs, CheckedListBox.cs, MonthCalendar.cs, Menu.cs,
196         MainMenu.cs, ListView.cs, LabelEditTextBox.cs, ToolBar.cs: more
197         System.ComponentModel.EventHandlerList work.
199 2006-12-05  Jonathan Chambers  <joncham@gmail.com>
201         * DrawTreeNodeEventArgs.cs: Added.
203 2006-12-05  Rolf Bjarne Kvinge  <RKvinge@novell.com>
204         
205         * InternalWindowManager.cs: Remove an unused field.
206         
207 2006-12-05  Rolf Bjarne Kvinge  <RKvinge@novell.com>
209         * InternalWindowManager.cs:
210         - Save the point where the title bar is clicked.
211         
212         * MdiWindowManager.cs:
213         - Only allow moving of the window as long as the 
214         clicked point on the title bar does not get out of
215         MdiClient's rectangle. Fixes #79982.
216         
217         * MdiClient.cs:
218         - Added Horizontal/VerticalScrollbarVisible.
219         - Simplified the scrollbar sizing algorithm.
220         - Cache the difference in scrolled value in
221         H/VBarValueChanged and move the calculation out
222         of the for loop.
224 2006-12-05  Rolf Bjarne Kvinge  <RKvinge@novell.com>
226         * Control.cs: Make the Console.WriteLine in WndProc 
227         write more info.
229 2006-12-05  Chris Toshok  <toshok@ximian.com>
231         * ToolStripManager.cs, ToolStripButton.cs,
232         ToolStripContentPanel.cs, ToolStripComboBox.cs, ToolStrip.cs,
233         ToolStripMenuItem.cs, ToolStripItem.cs, ToolStripControlHost.cs,
234         ToolStripSplitButton.cs, ToolStripSeparator.cs,
235         ToolStripRenderer.cs, ToolStripDropDownItem.cs,
236         ToolStripProgressBar.cs, ToolStripContainer.cs,
237         ToolStripTextBox.cs, ToolStripPanel.cs, ToolStripDropDown.cs: move
238         to using System.ComponentModel.EventHandlerList.
240 2006-12-04  Chris Toshok  <toshok@ximian.com>
242         * LinkLabel.cs: fix up compiler warnings.
244         * TableLayoutSettings.cs: same.
246         * TreeView.cs: same.
248         * ToolBar.cs: same.
250         * TabControl.cs: same.
252         * RichTextBox.cs: same.
254         * ListViewItem.cs: same.
256         * PropertyGrid.cs: same.
258         * DataGridViewRowPostPaintEventArgs.cs: corcompare fix.
260         * ToolTip.cs same.
262         * TextRenderer.cs: fix up compiler warnings.
264         * Label.cs: same.
266         * Form.cs: corcompare fixes.
268         * PictureBox.cs: fix up compiler warnings.
270         * ImageListStreamer.cs: same.
272         * TrackBar.cs: corcompare fix.
274         * Control.cs: fix up compiler warnings.
276         * SplitterPanel.cs: same.
278         * NumericTextBox.cs: same.
280         * ImageList.cs: same.
282         * StatusStrip.cs: same.
284         * ProgressBar.cs: corcompare fix.
286         * ToolStripButton.cs: fix up compiler warnings.
288         * ToolStripStatusLabel.cs: same.
290         * ToolStripSplitButton.cs: same.
292         * ToolStripSeparator.cs: same.
294         * ToolStripProgressBar.cs: same.
296         * ToolStripDropDownMenu.cs: same
298         * ToolStripDropDown.cs: same.
300         * ToolStripDropDownButton.cs: same.
302         * ToolStrip.cs: same.
304         * ToolStripControlHost.cs: same.
306         * ToolStripContentPanel.cs: same.
308         * ToolStripDropDown.cs: same.
310         * ToolStripContainer.cs: same.
312         * ToolStripPanel.cs: same, and add "new" where we need it to work
313         with the new ArrangedElementCollection.
315         * ToolStripItemCollection.cs: add "new" where we need it to work
316         with the new ArrangedElementCollection.
318 2006-12-04  Andreia Gaita <avidigal@novell.com>
320         * TabControl.cs: Fix default tab selection to after TabControl
321         gets focus and not before. Fixes #80128
323 2006-12-04  Chris Toshok  <toshok@ximian.com>
325         * DataGridTableStyle.cs: remove the gross calling of
326         datagrid.Refresh from here.  It's a broken idea and it doesn't
327         work anyway.
329         * DataGrid.cs: instead, just register/unregister from the
330         DataGridTableStyle events in CurrentTableStyle.  we play it
331         conservatively and EndEdit + CalcAreasAndInvalidate on any event,
332         even though some would most likely not require it.  Fixes bug
333         #80115 (and one portion of #80117 as a side effect).
335 2006-12-04  Chris Toshok  <toshok@ximian.com>
337         * DataGrid.cs (set_CaptionVisible): EndEdit before doing the work
338         so the textbox (if any) goes away.  Fixes bug #80117.
340 2006-12-04  Chris Toshok  <toshok@ximian.com>
342         * DataGridColumnStyle.cs: set the column's readonly property
343         initially based on the property descriptor's IsReadOnly.  Fixes
344         bug #80044.
346 2006-12-04  Chris Toshok  <toshok@ximian.com>
348         * ComboBox.cs: wrap the dropdown style changing work in
349         SuspendLayout/ResumeLayout.  Fixes bug #79968.
351 2006-12-04  Jackson Harper  <jackson@ximian.com>
353         * TextBoxBase.cs: Fix off by one, since these are one-based.
354         * TextBox.cs: Select all the text when we get focus.  The TextBox
355         does this but the RTB does not.
357 2006-12-04  Chris Toshok  <toshok@ximian.com>
359         * DataGridTextBoxColumn.cs: remove some spew.
361         * DataGridColumnStyle.cs (SetColumnValueAtRow): this seems right
362         but some part of me is saying "it shouldn't be here.."  At any
363         rate, it fixes bug #80046.  Call IEditableObject.EndEdit after
364         setting the value.
366 2006-12-04  Chris Toshok  <toshok@ximian.com>
368         * DataGridColumnStyle.cs (SetDataGrid): call CheckValidDataSource
369         to reassign the propertydescriptor.
371 2006-12-04  Jackson Harper  <jackson@ximian.com>
373         * TextBoxBase.cs:
374         * TextControl.cs: Remove some unused variables.  Maybe this will
375         patch things up between mike and I.
376         - don't split lines less then one char wide, if the viewport is
377         that small text won't be visible anyways.
378         
379 2006-12-04  Jackson Harper  <jackson@ximian.com>
381         * TextBoxBase.cs: Default selection length is -1, need to do some
382         more testing on windows to see when this is used for the property.
383         - Redid the Lines [] property to that we properly remove soft line
384         breaks
385         - added support for preserving carriage returns
386         -  CanUndo is not a variable like 'is undo enabled' it just returns
387         true if there is undo operations available.
388         - AppendText doesn't need to grab the last tag itself anymore,
389         this happens automatically when we move the cursor.
390         * TextControl.cs: Add CompoundActions to the undo class. This
391         allows combining the other operations into one big option.  ie a
392         paste will combine { delete old, insert new, move cursor }
393         - Add InsertString undo operation
394         - New method for deleting multiline text
395         - Add carriage returns to lines. So we can preserve carriage
396         returns when text is 'roundtripped'
398 2006-12-04  Chris Toshok  <toshok@ximian.com>
400         * DataGrid.cs (CalcCellsArea): cells_area.Width/Height are at a
401         minimum 0.  Fixes the scrollbar exception in bug #80136.
403 2006-12-04  Rolf Bjarne Kvinge  <RKvinge@novell.com>
405         * MdiClient.cs: 
406         * MdiWindowManager: Removed unused fields and methods.
407         
408 2006-12-04  Rolf Bjarne Kvinge  <RKvinge@novell.com>
409         
410         * StatusBar.cs: Update all panels when a AutoSize=Contents
411         panel needs updating.
412         
413         * StatusBarPanel.cs: Remove twidth and only use initialize.
414         Fixes #80031.
415                 
416 2006-12-04  Rolf Bjarne Kvinge  <RKvinge@novell.com>
418         * Form.cs: When a form's MdiParent is set add it directly
419         on top of the z-order in stead of relying on MdiClient's
420         ActivateChild to do it. Fixes #80135.
421         
422         * MdiClient.cs: 
423         - Remove original_order, mdi_child_list is already doing
424         the same thing.
425         - Create mdi_child_list on construction in
426         stead of first use (avoids a few null checks).
428         * MenuItem.cs: Use an already existing list of mdi children
429         to get the correct order of children and remove the other
430         redundant list.
432 2006-12-04  Chris Toshok  <toshok@ximian.com>
434         * PropertyGridView.cs: cached_splitter_location is only used in
435         !DOUBLEBUFFER code.
437         * PropertyGrid.cs: implement the ComComponentNameChanged event
438         using Events, hoping that would fix the warning.  Looks like a
439         compiler bug instead (#80144).
441         * PropertyManager.cs: remove unused method.
443 2006-11-04  Everaldo Canuto  <everaldo@simios.org>
445         * ThemeWin32Classic.cs: Dont draw arrow when menuitem on menubar, 
446         include parentesis to fix expression evaluation. Fixes #79634.
448 2006-11-02  Everaldo Canuto  <everaldo@simios.org>
449         
450         * MenuAPI.cs:
451         - Changes to fix behavior in Menu control, some reported in #80097
452         and other detected during behavior refactory like a select event
453         problems.
454         - Remove unneded "if's" conditions.
455         - Created an internal to flag when popup is active in control, we need 
456         it because in .NET you can have menu active but without popup active
457         when you active menu using popup without visible items.
458         - Mimic win32 behavior for Select and Popup events.  
459         - Dont open popup menu when you dont have visible subitems.
460         - Do nothing when click on disabled menu item.
461         - Some small changes to follow the coding style guidelines.
462         - Unselect menu only when another control gives focus. Fixes #80097.
463         - Remove unused code.
464         
465         * MenuItem.cs: internal VisibleItems method to check if menu
466         theres visible subitems, it will be usefull to fix some 
467         behavior in Menu control.
468         
469 2006-11-01  Everaldo Canuto  <everaldo@simios.org>
470         
471         * Timer.cs: Tag property for 2.0 profile.
472         
473 2006-12-01  Chris Toshok  <toshok@ximian.com>
475         [ after removing all warning suppressions, this cleans up over 100 warnings. ]
476         
477         * Win32DnD.cs: comment out some unused fields.
479         * XplatUIWin32.cs: comment out some unused pinvokes, and remove
480         some unused properties/methods.
482         * XplatUIX11.cs: fix MousePosition so we override the base class's
483         property instead of conflicting with it.
485         * PictureBox.cs: comment out some unused fields
487         * OSXStructs.cs: make some struct fields public.
489         * XplatUIOSX.cs: comment out some unused pinvokes, and fix
490         MousePosition so we override the base class's property instead of
491         conflicting with it.
493         * X11Dnd.cs: comment out some unused fields
495         * X11DesktopColors.cs: fix some struct field visibility to quiet
496         the compiler.
498         * X11Dnd.cs: remove some debug code.
500         * ThemeClearlooks.cs: comment out unused field.
502         * ThemeNice.cs: mark some methods as overriding ThemeWin32Classic as needed.
504         * ThemeGtk.cs: comment out some unused pinvokes.
506         * Timer.cs: remove some unused fields.
508         * ThemeClearlooks.cs: comment out unused field.
510         * UpDownBase.cs: comment out unused field.
512         * DataObject.cs: comment out unused field.
514         * DataGridBoolColumn.cs: reomve unused field.
516         * DataGrid.cs: remove unused field.
518         * Cursor.cs: remove old ToBitmap code.
520         * ControlPaint.cs: remove unused method.
522         * ScrollBar.cs: remove unused fields.
524         * ComboBox.cs: remove unused field, and chain up to
525         AccessibleObject ctor.
527         * ListBox.cs: remove unused field.
529         * ButtonBase.cs: wrap a couple fields in NET_2_0.
531         * GridEntry.cs: remove unused fields.
533         * Binding.cs: remove unused fields.
535         * AxHost.cs: remove unused method.
537         * ContainerControl.cs: remove unused field.
539         * ScrollableControl.cs: remove unused fields.
541 2006-12-01  Chris Toshok  <toshok@ximian.com>
543         * XplatUI.cs, XplatUIWin32.cs, XplatUIGTK.cs: nuke
544         the Where/WhereString stuff.  it's easy enough to CWL
545         Environment.StackTrace.
547         * XplatUIX11.cs: same, but also fix up a lot of mcs warnings about
548         unused private fields.
550 2006-12-01  Jackson Harper  <jackson@ximian.com>
552         * TextControl.cs: Do not update the view while inserting multiline
553         text. If we update the view we might wrap lines, before entering
554         the new lines, which causes the new line insertion calculations to
555         be totally fubared.
556         - Remove an old TODO
557         - Make debug output a little nicer
558         
559 2006-12-01  Chris Toshok  <toshok@ximian.com>
561         * ToolBar.cs: revert the ImeMode fix here and add an XXX comment.
563 2006-12-01  Chris Toshok  <toshok@ximian.com>
565         [ fix the majority of the CS0108 warnings we've been suppressing ]
566         
567         * TreeView.cs: mark BackgroundImageChanged as 'new'.
569         * ToolBar.cs: ImeMode just passes stuff to Control.  Rename Layout
570         to "LayoutToolBar" to quiet mcs.
571         
572         * TabControl.cs: mark our ControlCollection class as 'new'.
574         * TextBoxBase.cs: mark some events as 'new'.
576         * Splitter.cs: TabStop is 'new'.
578         * ControlBindingsCollection.cs: mark a few methods as new since
579         they change the visibility from protected to public.
581         * RadioButton.cs: DoubleClick -> base class, and remove unused
582         HaveDoubleClick.
584         * MonthCalendar.cs: ImeMode property -> base class, and mark many
585         events as new.
587         * NumericUpDown.cs: TextChanged -> base class.
589         * CheckedListBox.cs: mark our ObjectCollection class as new to
590         quiet mcs.
592         * FolderBrowserDialog.cs: make HelpRequest event new and have it
593         muck with the base class.
595         * StatusBar.cs: fix some mcs warnings about Update being the same
596         name as a base class method.
598         * RichTextBox.cs: mark some events as new, and make them do things
599         to the base class impl.
601         * UserControl.cs: mark TextChanged as new, and have it manipulate
602         base.TextChanged.
604         * UpDownBase.cs: mark some things new.
606         * CheckBox.cs: mark DoubleClick "new", and add some text about
607         what we need to look at.
609         * Panel.cs: make the events "new", and manipulate the base
610         version.  these are just here for attributes.
612         * AccessibleObject.cs: make owner private.
614         * Control.cs: deal with AccessibleObject.owner being private.
615         cache our own copy if we need it.
617         * Button.cs: add "new" to the DoubleClickEvent.
619         * ListBox.cs: no need to track our own has_focus here.  let
620         Control.has_focus do it for us.  Also some other work to clear up
621         warnings about not overriding base class methods of the same name.
622         
623         * ComboBox.cs: clear up some warnings about not override base
624         class methods of the same name.
626 2006-12-01  Chris Toshok  <toshok@ximian.com>
628         * Form.cs: flag a few things as "new" to quiet some of the mcs
629         warnings.
631         * AxHost.cs: same.
633         * PrintPreviewDialog.cs: same.
635         * DataGridView.cs: fix a ton of corcompare warnings.  not all, but
636         now DGV isn't so horrible on the class status page.  also, move
637         all events to using System.ComponentModel.EventHandlerList.  my
638         wrists hurt.
640 2006-12-01  Rolf Bjarne Kvinge  <RKvinge@novell.com>
642         * MdiWindowManager.cs:
643         - Set form to active mdi child if shown,
644         and update the active mdi child to the next 
645         remaining child in the z-order if the form is hidden.
647         * Form.cs: 
648         - Track if the form has been visible and if its 
649         visibility is beeing changed, so that the MdiClient
650         can properly decide the ActiveMdiChild. The MdiClient 
651         cannot track this since the form can change visibility 
652         before MdiClient is created.
654         * MdiClient.cs:
655         - Don't activate anything of the parent form is changing
656         its visibility.
657         - Rework ActiveMdiChild to only return visible mdi 
658         children and take into account several other corner 
659         cases.
661 2006-12-01  Chris Toshok  <toshok@ximian.com>
663         * IBindableComponent.cs: new 2.0 interface.
665 2006-12-01  Gert Driesen  <drieseng@users.sourceforge.net>
667         * DataGrid.cs: Font for caption area is bold by default.
669 2006-12-01  Everaldo Canuto  <everaldo@simios.org>
671         * Menu.cs: Tag property for 2.0.
672         
673 2006-11-01  Everaldo Canuto  <everaldo@simios.org>
675         * ThemeWin32Classic.cs: Adjust menu separator drawing. 
676         
677 2006-12-01  Chris Toshok  <toshok@ximian.com>
679         * TreeView.cs: doh, the Begin* events should be
680         TreeViewCancelEventHandler.
682 2006-12-01  Chris Toshok  <toshok@ximian.com>
684         * Form.cs: Form.ControlCollection already stores off the
685         form_owner field.  don't access the base class's internal "owner"
686         field.
688         * Control.cs: make all the fields in Control.ControlCollection
689         private.  there's no need for any internal fields here.
691 2006-12-01  Chris Toshok  <toshok@ximian.com>
693         * DataGrid.cs: call SetDataSource instead of CalcGridAreas in
694         OnHandleCreated.  Fixes bug #80109.
696 2006-12-01  Chris Toshok  <toshok@ximian.com>
698         * Button.cs, PropertyGridTextBox.cs, ComboBox.cs,
699         SplitContainer.cs, Control.cs, StatusStrip.cs,
700         DataGridTableStyle.cs, MenuItem.cs, DomainUpDown.cs, ImageList.cs,
701         NumericTextBox.cs, NumericUpDown.cs, Panel.cs, CommonDialog.cs,
702         DataGrid.cs, ScrollBar.cs, TrackBar.cs, PictureBox.cs,
703         DateTimePicker.cs, StatusBar.cs, Form.cs, PrintPreviewDialog.cs,
704         Label.cs, UserControl.cs, CheckBox.cs, RadioButton.cs,
705         LinkLabel.cs, ListControl.cs, PropertyGrid.cs, Splitter.cs,
706         MenuStrip.cs, FolderBrowserDialog.cs, NotifyIcon.cs,
707         TextBoxBase.cs, ListView.cs, DataGridBoolColumn.cs,
708         PrintPreviewControl.cs, RichTextBox.cs, ListBox.cs, TabControl.cs,
709         DataGridColumnStyle.cs, ContextMenu.cs, TreeView.cs:
711         do most of the work to convert our code over to use
712         System.ComponentModel.Component.Events for
713         adding/removing/dispatching events.
716 2006-11-30  Jonathan Pobst  <monkey@jpobst.com>
718         * DataGridView.cs: Fix an ArgumentNullException reported 
719         twice today in IRC.
721 2006-11-30  Mike Kestner  <mkestner@novell.com>
723         * ComboBox.cs: fix the scrollbar mouse event forwarding in the 
724         grabbed listbox.  Fixes #80036 and #80101.
726 2006-11-30  Rolf Bjarne Kvinge <RKvinge@novell.com>
728         * Message.cs: Changed ToString() to match MS.
729         
730 2006-11-30  Jackson Harper  <jackson@ximian.com>
732         * TextBoxBase.cs: You can still change the selected text on a read
733         only textbox.
734         * TextControl.cs: Lower magic number for wrap calculations. This
735         lets text get closer to the right (far) edge.
737 2006-11-30  Jonathan Pobst  <monkey@jpobst.com>
739         * Control.cs: Tweak 2.0 layout properties.
740         * Form.cs: Switch ToolStripMenuTracker hooks to ToolStripManager.
741         * TextRenderer.cs: Add a new overload.
742         * ToolStrip*: Huge amount of changes and new features.
744 2006-11-30  Mike Kestner  <mkestner@novell.com>
746         * ComboBox.cs: fixes for LargeChange and Maximum to get the 
747         scroll range correct.  Fixes #79994.
749 2006-11-30  Rolf Bjarne Kvinge <RKvinge@novell.com>
751         * MdiWindowManager.cs: Update main form's text when
752         a form is closed. (fixes #80038)
753         
754 2006-11-30  Everaldo Canuto  <everaldo@simios.org>
756         * ToolBar.cs:
757         - Fix an regression in ButtonSize.
758         - Get ImeMode default value change to "Disable".
759         - Get ShowTooltips default value change to true, default value is 
760         "false" but after make a test in .NET we get "true" result as default.
761         
762 2006-11-29  Jonathan Pobst  <monkey@jpobst.com>
764         * ToolStripDropDown.cs: Fix for SupportsTransparency change.
766 2006-11-29  Chris Toshok  <toshok@ximian.com>
768         * XplatUIWin32.cs (GetWindowTransparency): check return value of
769         GetLayeredWindowAttributes.  if it's 0, return 1.0, as
770         SetWindowTransparency hasn't been called.
772 2006-11-29  Chris Toshok  <toshok@ximian.com>
774         * Form.cs (set_TransparencyKey): only call SetWindowTransparency
775         if it's supported.
776         (set_AllowTransparency): reorder things a little so that the
777         WS_EX_LAYERED style is removed properly.
779 2006-11-29  Chris Toshok  <toshok@ximian.com>
781         [ totally cosmetic eye-candy feature, fixes bug #80089 ]
782         
783         * Form.cs: only call the XplatUI transparency method (get/set) if
784         SupportsTransparency says it's supported. Otherwise fallback to
785         doing nothing (in the set case) or returning the instance field we
786         cache (in the get case).
788         * XplatUIStructs.cs: add TransparencySupport flag enum.
789         
790         * XplatUIDriver.cs: add abstract GetWindowTransparency, and track
791         change to SupportsTransparency.
793         * XplatUIOSX.cs: stub out GetWindowTransparency, and return
794         TransparencySupport.None from SupportsTransparency.
796         * XplatUIX11.cs: Stub out GetWindowTransparency, and return
797         TransparencySupport.Set from SupportsTransparency.
799         * XplatUIWin32.cs: implement GetWindowTransparency calling
800         GetLayeredWindowAttributes, and implement SupportsTransparency by
801         checking whether or not both
802         GetWindowTransparency/SetWindowTransparency are available
803         entrypoints.  We need to do this since SetWindowTransparency is
804         available as of win2k, but GetWindowTransparency requires winxp.
805         yay win32 api.
807         * XplatUI.cs: Add GetWindowTransparency, and change
808         SupportsTransparency to allow for either/both Get/Set.
810 2006-11-29  Chris Toshok  <toshok@ximian.com>
812         * DataGrid.cs: keep from going into an infinite loop redrawing a
813         datagrid that has no datasource.  Fixes bug #80033.
815 2006-11-29  Chris Toshok  <toshok@ximian.com>
817         * MenuItem.cs: fix the NRE when we assign text (and therefore call
818         Invalidate) before the mainmenu has been assigned to a control.
820 2006-11-29  Chris Toshok  <toshok@ximian.com>
822         * DataGrid.cs: detect when we should be double the double click
823         row/column autosize stuff, although that codepath has yet to be
824         written.  part of the work for bug #79891.
826 2006-11-29  Chris Toshok  <toshok@ximian.com>
828         * Binding.cs (SetControl): fix unit test.
830 2006-11-29  Carlos Alberto Cortez <calberto.cortez@gmail.com>
832         * PageSetupDialog.cs: Validate the margins and set them in
833         PageSettings. 
834         * NumericTextBox.cs: New class to mimic the behavior of the
835         textboxes used in the printing dialogs.
837 2006-11-29  Andreia Gaita  <avidigal@novell.com>
838         
839         * Form.cs: Revert previous change (remove call UpdateBounds
840         from form constructor), because it messes with the handle creation
841         order, and that one needs lots and lots of love.
842         * PrintPreviewDialog.cs: Revert change to CreateHandle (add check
843         for valid printer and throw InvalidPrinterException if document
844         is set but printer not valid), adding a MonoTODO. Once 
845         handle creation is done properly, we can put this back in.
847 2006-11-28  Everaldo Canuto  <everaldo@simios.org>
849         * MenuItem.cs: Create a invalidate method for menu item, to be
850         calling from set text, it make text changes to imadiate update
851         on screen. Fixes #80013. 
852         
853 2006-11-28  Everaldo Canuto  <everaldo@simios.org>
855         * ToolBar.cs: Fixes and simplify toolbar button layout, it 
856         fixes bug #80070 and some other problem on toolbar buttons
857         layout.
859 2006-11-28  Everaldo Canuto  <everaldo@simios.org>
861         * ThemeWin32Classic.cs: Paint toolbar toggle button background 
862         with dotted brush.      Fixes #79564
863         
864 2006-11-28  Andreia Gaita  <avidigal@novell.com>
866         * Form.cs: Removed call to UpdateBounds on Form
867         constructor, it was causing a call to CreateHandle
868         before it was supposed to.
869         * PrintControllerWithStatusDialog: Applied patch
870         by Chris Toshok to hide controller when there are
871         no printers available.
872         PrintDialog.cs: initialize printer settings to 
873         null - correct DefaultValues test #5
874         * PrintPreviewControl.cs: Move PrintController
875         initialization to GeneratePreview
876         * PrintPreviewDialog.cs: 
877         - Remove Preview generation     from Document_set(). It is 
878         called on OnPaint
879         - Throw InvalidPrinterException on CreateHandle if
880         a Document is set but there are no printers or 
881         printer is not valid.
882         * ThemeWin32Classic: don't paint PrintPreviewControl
883         if there is nothing to paint    
885 2006-11-28  Miguel de Icaza  <miguel@novell.com>
887         * Form.cs: Add another popular method.
889         * TabPage.cs: ditto.
891 2006-11-28  Rolf Bjarne Kvinge  <RKvinge@novell.com>
893         * MenuItem.cs: Fixed a warning.
894         * InternalWindowManager: Fixed a warning.
896 2006-11-28  Rolf Bjarne Kvinge  <RKvinge@novell.com>
898         * MenuItem.cs:
899         - When cloning a menu also clone MdiList and clone the 
900           window menu items properly (as the forms and menuitems
901           are kept in an internal hashtable, these need updating 
902           as well)
903         - Rewrote the window menu code, menu items are added in the
904           order the forms were added to their parent, and they are
905           updated every time the window menu is shown (before the
906           list was only generated once, in the current order of the
907           forms, and would never be updated). A checkmark is shown
908           next to the item corresponding to the active mdi child.
910 2006-11-28  Rolf Bjarne Kvinge  <RKvinge@novell.com>
912         * XplatUIStructs.cs: 
913         - Added WM_NCMOUSEHOVER and WM_NCMOUSELEAVE.
914         
915         * XplatUIWin32.cs: 
916         - Added TME_NONCLIENT to TMEFlags.
917         - Handles WM_NCMOUSEMOVE in GetMessage to 
918           generate WM_NCMOUSEHOVER and WM_NCMOUSELEAVE messages.
920         * MdiWindowManager:
921         - Now merges mdi child menu to parent menu when maximized.
922         - Recalculate NC areas of both mdi child and mdi parent. 
923           Fixes #79757 (4).
924           on window state and size changes.Fixes #79844 (3).
925         - Handle WM_NCCALCSIZE to properly calculate borders.
927         * Form.cs:
928         - Add/remove to the mdi containers list of mdi children 
929           in the order they are added.
930         - Pass on WM_NCLBUTTONUP, WM_NCMOUSEMOVE and WM_NCMOUSELEAVE 
931           to the maximized mdi child.
932         
933         * InternalWindowManager.cs:
934         - Only execute a click on the control buttons on the mouse up,
935           not on the mouse down. Show the state of the button 
936           (was only showing Normal state, never Pressed state). The
937           pressed button now follows the mouse (if you click the Close 
938           button and move the mouse over the Maximize button, the 
939           Maximize button will be shown as pressed). Since Win32 does
940           not generate WM_NCLBUTTONUP if you release the button outside
941           of the nc area, we need to handle WM_NCMOUSELEAVE and treat
942           it as a mouse up.
943         
944         * ThemeWin32Classic.cs:
945         - Draw a missing border around mdi child forms. Fixes #79844 (2).
947         * MdiClient.cs:
948         - Added a list of forms which contains the order the forms are
949           added to the mdi parent.
950         - Handle WM_NCPAINT to properly draw a 3D border. Fixes #79844 (2).
951         - Handle WM_NCCALCSIZE to properly calculate the 3D border.
952         - If the active form changes set the scrollbars to the top
953           of the Z order, otherwise the form could hide them.
954         - Scrollbars are now sized according to ClientSize, not 
955           to Size, and they take into account the other scrollbar
956           to determine maximum.
957         
958 2006-11-28  Rolf Bjarne Kvinge <RKvinge@novell.com>
959         
960         * XplatUI.cs:
961         * XplatUIDriver.cs:
962         * XplatUIX11.cs:
963         * XplatUIWin32.cs:
964         * XplatUIOSX.cs:
965         - Added RequestAdditionalWM_NCMessages for windows to 
966           opt in for WM_NCMOUSELEAVE and WM_NCMOUSEHOVER.
967           Currently only implemented in XplatUIWin32.
969 2006-11-27  Chris Toshok  <toshok@ximian.com>
971         * Hwnd.cs: only add the hwnd to the windows hash in
972         set_WholeWindow and set_ClientWindow if whole_window/client_window
973         are not IntPtr.Zero.  also, remove the unused SetObjectWindow.
975 2006-11-27  Mike Kestner  <mkestner@novell.com>
977         * ComboBox.cs: remove redundant OnDropDown call.  It is called
978         from the ComboListBox.ShowWindow code. Fixes #79969.
980 2006-11-27  Chris Toshok  <toshok@ximian.com>
982         * Hwnd.cs: remove the setters for ExposePending and
983         NCExposePending - noone uses them.
985 2006-11-27  Jackson Harper  <jackson@ximian.com>
987         * TextControl.cs: new param for ReplaceSelection which determines
988         whether we select the new selection, or set the cursor to the end
989         of the new selection.
990         * TextBoxBase.cs: Use new param for ReplaceSelection.  When
991         pasting, select the new text.
992         * RichTextBox.cs: Use new param for ReplaceSelection.
994 2006-11-27  Jackson Harper  <jackson@ximian.com>
996         * TextBoxBase.cs: Set the selection to the caret after the caret
997         is moved, otherwise they get out of sync.
999 2006-11-26  Everaldo Canuto  <everaldo@simios.org>
1001         * ToolBar.cs: Fixe size of ToolBar when AutoSize is false,
1002         it fixes #80015
1004 2006-11-26  Everaldo Canuto  <everaldo@simios.org>
1006         * ThemeWin32Classic.cs: 
1007         - Fix toolbar drop down arrow position.
1008         - Fix drop down appearance when ToolBar.Appearance is normal,
1009         it fixes #80018.
1010         
1011 2006-11-26  Gert Driesen  <drieseng@users.sourceforge.net>
1013         * ProgressBar.cs: GetStyle fixes for 2.0 profile.
1014         * Control.cs: Same.
1015         * UpDownBase.cs: Same.
1016         * ButtonBase.cs: Same.
1017         * ScrollBar.cs: Same.
1018         * TrackBar.cs: Same.
1019         * PictureBox.cs: Same.
1020         * UserControl.cs: Same.
1021         * Label.cs: Same.
1022         * ListControl.cs: Same.
1023         * TextBoxBase.cs: Same.
1024         * ListView.cs: Same.
1025         * RichTextBox.cs: Same.
1026         * TreeView.cs: Same.
1028 2006-11-25  Jordi Mas i Hernandez <jordimash@gmail.com>
1030         * PrintDialog.cs:
1031         - Text label for where 
1032         - Text label comment was not shown
1034 2006-11-23  Everaldo Canuto  <everaldo@simios.org>
1036         * ThemeWin32Classic.cs: Fix toolbar drop down arrow size.
1038 2006-11-23  Rolf Bjarne Kvinge  <RKvinge@novell.com> 
1040         * InternalWindowManager.cs: 
1041         - Handle WM_PARENTNOTIFY to activate the form
1042         if any child control is clicked.
1043         - The form is only sizable if not minimized.
1045         * MdiWindowManager.cs:
1046         - Save the IconicBounds if the form is moved.
1047         - Rework SetWindowState, now the window bounds 
1048         are stored only if the old window state is Normal.
1049         
1050         * MdiClient.cs:
1051         - In SetWindowStates store the old window state if 
1052         the window is maximized and restore window state if
1053         the window looses focus.
1054         - Don't handle any scrollbar value changes if 
1055         initializing the scroll bars. Fixes #79771.
1056         - Reworked ArrangeIconicWindows. Current algorithm
1057         tests bounds agains all other minimized windows, if
1058         any intersections create new bounds (going left to 
1059         right, bottom to top) and then test again. When 
1060         successful the bounds are saved and never computed
1061         again. Fixes #79774.
1063 2006-11-23  Rolf Bjarne Kvinge  <RKvinge@novell.com> 
1065         * InternalWindowManager.cs: Added HandleTitleBarUp.
1067 2006-11-23  Gert Driesen  <drieseng@users.sourceforge.net>
1069         * NumericUpDown.cs: In .NET 1.1, user entered text is still
1070         hexadecimal in ParseUserEdit.
1072         
1073 2006-11-23  Rolf Bjarne Kvinge  <RKvinge@novell.com> 
1075         * MdiWindowManager.cs: 
1076         - Handle a click on the form's icon to show the 
1077         system menu (when maximized). Fixes #79775.
1078         - Change the existing click handler for the form's
1079         icon when not maximized to show on MouseUp.
1080         Fixes #79776.
1082         * Form.cs: In OnResize only layout the mdi child's
1083         parent if it actually has a parent. Might not if
1084         the window is closing.
1087 2006-11-23  Gert Driesen  <drieseng@users.sourceforge.net>
1089         * MdiClient.cs: Ignore active MDI client for text of parent, if
1090         child has no text set.
1092 2006-11-23  Gert Driesen  <drieseng@users.sourceforge.net>
1094         * ToolBar.cs: Fixed ToString to match MS.
1096 2006-11-22  Andreia Gaita  <avidigal@novell.com>
1098         * NumericUpDown: 
1099         - Fix DecimalPlaces, Hexadecimal and ThousandsSeparator to 
1100         update inner values on set. Fixes #79966.
1101         - Override OnLostFocus to update value on NET 2. Fixes #79950.
1102         - Fix hexadecimal parsing.
1103         
1104         * UpDownBase: Override OnGotFocus and OnLostFocus to notify 
1105         parent. Fixes #79957
1107 2006-11-22  Rolf Bjarne Kvinge  <RKvinge@novell.com>
1109         * Control.cs: After calling SetWindowsPos in SetBoundsCore 
1110         the actual size has to be queried, since if height /
1111         width is negative Win32 changes it to 0. 
1112         Fixes #79999 on Windows.
1113         
1114         * XplatUIX11.cs: Set height / width to 0 if negative
1115         in SetWindowPos. Fixes #79999 on Linux.
1116         
1117 2006-11-22  Everaldo Canuto  <everaldo@simios.org>
1119         * ThemeWin32Classic.cs: Fix text redenring when button is
1120         pressed.
1122 2006-11-22  Everaldo Canuto  <everaldo@simios.org>
1124         * MenuAPI.cs: Fixes behavior when menu is opened by kerboard
1125         and later navigate by mouse. Fixes #79528.
1127 2006-11-21  Everaldo Canuto  <everaldo@simios.org>
1129         * ToolBar.cs: Set default value for TabStop to false in
1130         constructor, it fixes remaining behavior of bug #79863.
1132 2006-11-21  Rolf Bjarne Kvinge  <RKvinge@novell.com>
1134         * MdiWindowManager.cs:
1135         * InternalWindowManager.cs:
1136         - Moved a few methods specific to Mdi from 
1137         InternalWindowManager to MdiWindowManager.
1138         Fixes #79996.
1139         
1140 2006-11-21  Chris Toshok  <toshok@ximian.com>
1142         * XplatUIOSX.cs: stub out InvalidateNC.
1144         * XplatUIWin32.cs: implement InvalidateNC using the call I found
1145         at http://www.dotnet247.com/247reference/msgs/58/292037.aspx.
1147         * XplatUIX11.cs: rename InvalidateWholeWindow to InvalidateNC.
1149         * XplatUIDriver.cs: add InvalidateNC abstract method.
1151         * XplatUI.cs: add InvalidateNC.
1153 2006-11-21  Everaldo Canuto  <everaldo@simios.org>
1155         * ToolBar.cs: Invalidate complete button area when pressed status 
1156         was changed.
1157         * ToolButton.cs: Fix InvalidateBorder for DropDown buttons.
1158         * ThemeWin32Classic.cs: Increase vertical and horizontal position 
1159         by 1 when button is pressed.
1161 2006-11-20  Everaldo Canuto  <everaldo@simios.org>
1163         * ToolButton.cs: Invalidate middle of DropDown button when
1164         ToolBar theres DropDownArrows.
1165         * ThemeWin32Classic.cs: Change position of DropDown arrow and
1166         fix DropDown drawing operations.
1168 2006-11-20  Chris Toshok  <toshok@ximian.com>
1170         * NativeWindow.cs: fix the formatting of functions ('{' on the
1171         following line), and enable the thread exception dialog.
1173         * Application.cs: remove the duplicate exception catching from
1174         here.
1176 2006-11-20  Everaldo Canuto  <everaldo@simios.org>
1178         * Toolbar.cs: Triggers button click event when click on icon
1179         of dropdown ToolBarButton. Fixes #79912.
1180         
1181 2006-11-20  Rolf Bjarne Kvinge  <RKvinge@novell.com>
1183         * Theme.cs:
1184         * ThemeWin32Classic.cs:
1185         - Added a property WindowBorderFont to enable themeing
1186           of mdi child windows' Text.
1187           
1188 2006-11-20  Rolf Bjarne Kvinge  <RKvinge@novell.com>
1190         * InternalWindowManager.cs:
1191         * Form.cs:
1192         * MdiClient.cs:
1193         * MdiWindowManager.cs: 
1194         - If mdi child is maximized, set mdi parent's
1195           text to "Parent - [Child]". Fixes #79770.
1196         - If there is any maximized mdi child windows, only the active 
1197           window (and any new windows) is maximized, the rest are normal.
1198         - On a WindowState change only save mdi child's window bounds 
1199           if the old window state was normal. Fixes #79774.
1200         - The scroll bars are now calculated on hopefully all
1201           necessary events. Fixed #79771 / #79844->6 / #79906.
1202         - MdiClient.SizeScrollBars() now takes into account docked 
1203           controls in the parent when calculating available space.
1204         - InternalWindowManager now always repaints the entire title
1205           area. Fixes #79844->1/4/5.
1206         - Added RequestNCRecalc on mdi child windowstate changes.
1207           Fixes #79772.
1209 2006-11-20  Mike Kestner  <mkestner@novell.com>
1211         * ComboBox.cs: setup LargeChange on the scrollbar. Invoke FireMouseUp
1212         in the MouseUp handler of the listbox and move the return handling
1213         code to FireMouseUp to avoid scrolling on ups.  Fixes #79952.
1215 2006-11-20  Everaldo Canuto  <everaldo@simios.org>
1217         * Toolbar.cs: Ignore right mouse clicks in toolbar. Fixes #79855. 
1219 2006-11-17  Alexander Olk  <alex.olk@googlemail.com>
1221         * MimeIcon.cs: Seems that DllImports that were fine in 1.2 are not
1222           working in 1.2.x anymore. So, updated.
1224 2006-11-19  Gert Driesen  <drieseng@users.sourceforge.net>
1226         * NumericUpDown.cs: Use NegativeSign, NumberDecimalSeparator and
1227         NumberGroupSeparator of current culture instead of assuming en-US.
1228         Fixed bug #79967.
1230 2006-11-17  Mike Kestner  <mkestner@novell.com>
1232         * Control.cs: Add the concept of implicit bounds setting so that
1233         dock/undock round trips preserve explicitly set size/locations.
1234         Fixes #79313.
1236 2006-11-17  Alexander Olk  <alex.olk@googlemail.com>
1238         * FileDialog.cs: Trim all filters, otherwise DirInfo.GetFiles
1239           can't handle those filters. (Fixes bug #79961)
1241 2006-11-17  Chris Toshok  <toshok@ximian.com>
1243         [ fixes the exit/crashes associated with #79835.  it's clearly
1244         suboptimal though, we need to figure out a better way to solve
1245         this. ]
1246         
1247         * PrintPreviewControl.cs: deal with the new invalid printer
1248         exceptions.
1250         * PageSetupDialog.cs: if the printer is invalid, pop up a dialog
1251         and return false (so CommonDialog.ShowDialog doesn't actually show
1252         the form.)
1254         * PrintDialog.cs: enable/disable the Ok button depending on
1255         whether or not the printer is valid.
1257         * CommonDialog.cs (ShowDialog): only actually show the form if
1258         RunDialog returns true.
1260 2006-11-17  Jackson Harper  <jackson@ximian.com>
1262         * TextControl.cs: When soft splitting a line, mark it as a soft
1263         split line. Also carry over the current line break to the next
1264         line.
1266 2006-11-17  Chris Toshok  <toshok@ximian.com>
1268         * XplatUIX11.cs: when scrolling a window with an invalid area, we
1269         only want to shift the part of the invalid area that overlaps the
1270         area we're scrolling.  we also don't want to clear the invalid
1271         area unless the invalid area was entirely contained within the
1272         scrolling area.
1274 2006-11-16  Chris Toshok  <toshok@ximian.com>
1276         * XplatUIX11.cs: remove the handling of the TimerEvent stuff, and
1277         also make sure to free the memory returned by XGetWindowProperty
1278         in GetText().
1280         * X11Structs.cs: remove the TimerEvent stuff, it's unused.
1282 2006-11-16  Chris Toshok  <toshok@ximian.com>
1284         * XplatUI.cs: add a new super secret way to get at the totally
1285         unsupported X11 backend.
1287 2006-11-16  Gert Driesen  <drieseng@users.sourceforge.net>
1289         * NumericUpDown.cs: Allow lowercase letters when in hex-mode.
1291 2006-11-16  Jackson Harper  <jackson@ximian.com>
1293         * TreeView.cs: Allow more explicit setting of top node position
1294         for scrollbars. Slower algo, but more accurate.
1295         - CollapseAll should maintain the current top node.
1296         * TextBoxBase.cs: When positioning the caret, use the line, pos
1297         method, since the x, y method does not grab the correct tag, and
1298         the caret height never gets set correctly. (Maybe I should just do
1299         away with the caret having its own height, and always use the
1300         carets current tag for height).
1302 2006-11-16  Jonathan Pobst  <monkey@jpobst.com
1304         [Fixes 79778, 79923]
1306         * XplatUIWin32.cs: Don't allow a parent to be set to IntPtr.Zero.
1307         Parent to the FosterParent instead.
1309 2006-11-16  Jackson Harper  <jackson@ximian.com>
1311         * TreeView.cs: Need to recalc the topnode when we expand or
1312         collapse. The scrolling methods can't handle this on their own,
1313         since they use differences between the last scroll position, and
1314         those difference get completely messed up since we are expanding
1315         nodes.  This problem should probably be fixed in the scrolling
1316         methods, so they can figure out exactly where they are, but this
1317         will slow things down a little.
1318         * ThemeWin32Classic.cs: Special case for groupboxes with empty
1319         strings, makes nunit-gui look a lot nicer.
1321 2006-11-16  Chris Toshok  <toshok@ximian.com>
1323         * XplatUIX11.cs: nasty, nasty, nasty changes required because of
1324         the broken multithreaded event handling we have in here.  File
1325         this entry under "Why we should move to the new X11 backend".
1327         Any thread can make it into UpdateMessageQueue, which gets events
1328         from the X socket - some of which could belong to hwnds being
1329         managed by a different thread.  We can also have multiple threads
1330         in UpdateMessageQueue at the same time, with each one reading from
1331         the X socket.  This leads to many problems, with the following
1332         solutions:
1334         We can't use hwnd.Queue.Enqueue anywhere in here and must use
1335         EnqueueLocked.
1337         The MotionNotify compression we do can't work across threads
1338         (without locking the entire queue, perhaps) since we call
1339         hwnd.Queue.Peek, so we just punt and don't compress motion events
1340         unless the owning thread is the one which got the X event.
1342         ConfigureNotify is another fun one, since it modifies the hwnd's
1343         bounds and then enqueues the event.  We add a lock to Hwnd which
1344         is held when setting configure_pending to true (and enqueuing the
1345         event).
1347         There is a race wrt the wake socket.  we need to make sure that
1348         only 1 thread is waiting on that socket, or else a thread could
1349         sleep waiting for data that never comes.  It's difficult (but not
1350         impossible) to make happen, because it seems to require something
1351         like the following:
1353             1. Thread 1 polls on wake_receive
1354         
1355             2. poll returns saying there's data to be read on
1356                wake_receive.
1357         
1358             3. Thread 2 polls on wake_receive and immediately returns
1359                saying there's data to be read.
1361             4. Thread 2 reads the wakeup byte from wake_receive
1363             5. Thread 1 attempts to read the wakeup byte from
1364                wake_receive.
1366             6. Thread 2 exits (due to a form closing, perhaps).
1368             7. Thread 1 blocks forever.
1369         
1370         Fun, eh?
1372         Fixing the Expose handling isn't done yet, and the races inherent
1373         in that piece of code are responsible for the drawing mistakes you
1374         see when generating expose events in a MT app (like NPlot).  This
1375         one is the likely to be the hardest to bandaid, and it doesn't
1376         appear to cause anything but drawing problems.  The other issues
1377         caused apps to exit or hang.
1379         * XEventQueue.cs: output some spew when Dequeue/Enqueue/Peek are
1380         called from a different thread than the one that should be calling
1381         these functions.
1383         * Hwnd.cs: add some locks to be used by the XplatUIX11 code.
1385 2006-11-15  Chris Toshok  <toshok@ximian.com>
1387         * Application.cs: null out the context's MainForm when we exit
1388         RunLoop.  Fixes a newly checked in unit test as well as the last
1389         ODE from bug #79933.
1391 2006-11-15  Chris Toshok  <toshok@ximian.com>
1393         * Form.cs (set_Owner): allow a null value so we can clear the
1394         form's owner.
1395         (Dispose): set all our owned_form's Owner properties to null, and
1396         clear the owned_forms collection.
1397         (WM_CLOSE): clean up this a little bit.. still not right though.
1399         * ApplicationContext.cs: OnMainFormClosed should only call
1400         ExitThreadCore if the main form isn't recreating.  Fixes unit
1401         test.
1403 2006-11-15  Jonathan Pobst  <monkey@jpobst.com>
1405         [Fixes 78346]
1407         * ComboBox.cs: Set the Hwnd.no_activate flag for the ComboListBox.
1409 2006-11-15  Jonathan Pobst  <monkey@jpobst.com>
1411         [Fixes 79433]
1413         * Hwnd.cs: Add a flag to show a window, but not activate it, to 
1414         keep popup window types from stealing focus from the main form
1415         on Windows.
1417         * XPlatUIWin32.cs: Use SW_SHOWNOACTIVATE if above field is true.
1419         * MenuAPI.cs: Set above flag to true.
1421 2006-11-15  Chris Toshok  <toshok@ximian.com>
1423         * XplatUIX11.cs: mimic win32 behavior on BUTTONUP events, where
1424         the button being released is not in wParam.
1426 2006-11-15  Jonathan Pobst  <monkey@jpobst.com>
1428         * Form.cs: Add the released button to MouseEventArgs.Button
1429         for the OnMouseUp call to the MenuTracker.  Fixes menu clicking
1430         on Win32.
1432 2006-11-15  Chris Toshok  <toshok@ximian.com>
1434         * XplatUIX11.cs: add (untested) a _NET_WM_NAME implementation of
1435         GetText().  untested because it's unused in our implementation.
1436         Control.Text always caches the text, even if
1437         ControlStyles.CacheText is not set.
1439         fixes bug #79939.
1441 2006-11-15  Chris Toshok  <toshok@ximian.com>
1443         [ fixes #79933 ]
1444         
1445         * Form.cs: in Close() don't do anything after we send the WM_CLOSE
1446         message.  no hiding, no disposing.
1448         in the WM_CLOSE handler, hide the form if it's modal.
1450 2006-11-15  Chris Toshok  <toshok@ximian.com>
1452         * XplatUIX11.cs: use AddExpose instead of sending a message.
1453         fixes textbox border drawing.
1455 2006-11-15  Chris Toshok  <toshok@ximian.com>
1457         * PropertyGridView.cs: keep from crashing on mouse move/down when
1458         the property grid is empty.
1460 2006-11-14  Jackson Harper  <jackson@ximian.com>
1462         * TextControl.cs: Make PageUp and PageDown more like the MS
1463         versions.
1464         * TextBoxBase.cs: When we set the text property position the
1465         cursor at the beginning of the document.
1467 2006-11-14  Rolf Bjarne Kvinge  <RKvinge@novell.com>
1469         * Form.cs: if a mdi child's WindowState has changed
1470         before it's creation, it would display wrong control
1471         buttons.
1472         
1473 2006-11-14  Alexander Olk  <alex.olk@googlemail.com>
1475         * TreeView.cs: De-uglify TreeView checkbox checkmarks.
1476           (Fixes bug #79927)
1478 2006-11-14  Rolf Bjarne Kvinge <RKvinge@novell.com> 
1480         * XplatUIX11.cs: send a WM_NCPAINT on WM_NCCALCSIZE so that 
1481         the window gets to paint its borders even if the window is
1482         getting smaller.
1483         
1484         * Form.cs: on a WM_NCPAINT invalidate the entire menu, 
1485         otherwise the old control buttons would still be painted 
1486         if the window gets bigger.
1487         
1488         * PaintEventArgs.cs: add an internal method so that the clip 
1489         rectangle can be changed.
1490         
1491 2006-11-13  Chris Toshok  <toshok@ximian.com>
1493         [ fixes bug #79745 ]
1494         
1495         * NotifyIcon.cs: lots of cleanup.
1497         * X11Structs.cs: add an enum for XEMBED messages.
1499         * XplatUIX11.cs: reindent one of the giant switch statements, it
1500         was taking up an additional tab stop, and this file is already way
1501         too wide for my laptop's screen.
1503         Also, add handling for the XEmbed EMBEDDED_NOTIFY message.  When
1504         we get it, resize the hwnd to the WMNormalHints max_width/height.
1506 2006-11-13  Jackson Harper  <jackson@ximian.com>
1508         * TextBoxBase.cs: Compute the value changes for the mouse wheel
1509         teh simple way.
1511 2006-11-13  Chris Toshok  <toshok@ximian.com>
1513         * XplatUIX11.cs, XplatUIStructs.cs: kind of a gross fix for
1514         #79898.  force a reference to the Region to stick around so the
1515         unmanaged object isn't collected (rendering our handle in the MSG
1516         stale).
1518 2006-11-13  Chris Toshok  <toshok@ximian.com>
1520         * XplatUIX11.cs: fix #79917 for window managers which support
1522         using XStoreName on the raw utf8, and we need to convert to
1523         COMPOUND_TEXT if it's non-latin1.
1525 2006-11-13  Chris Toshok  <toshok@ximian.com>
1527         * Form.cs (set_DialogResult): we need to set closing to false if
1528         we're setting our result to None.  fixes bug #79908.
1530 2006-11-13  Jackson Harper  <jackson@ximian.com>
1532         * TextControl.cs: When formatting text, compute the adjusted tag
1533         lengths correctly, using FindTag for the end tag instead of trying
1534         to figure it out outselves.
1535         * TreeNode.cs: Use ActualItemHeight, which is the actual height of
1536         the item, ItemHeight doesn't work, because trees with large
1537         imagelists use those for their height
1538         * TreeView.cs: ActualItemHeight factors in the image height
1539         - compute left edge of checkboxes correctly
1540         - when expanding/collapsing move the bottom down one pixel, so we
1541         aren't moving part of the node
1543 2006-11-13  Rolf Bjarne Kvinge  <RKvinge@novell.com>
1545         * XplatUIX11.cs: The PaintEventArgs is also added to the drawing
1546         stack in PaintEventStart so that it won't get disposed by the gc
1547         before reaching PaintEventEnd.
1549 2006-11-13  Jackson Harper  <jackson@ximian.com>
1551         * TextBoxBase.cs: Don't select the word if we are on a line with
1552         no text.
1553         - We don't need to position the caret on mouse up, since the mouse
1554         move handler should be doing this
1555         - When double clicking a blank line, the caret is advanced to the
1556         next line.
1558 2006-11-13  Gert Driesen  <drieseng@users.sourceforge.net>
1560         * TreeNodeCollection.cs: Avoid duplicating indexer code.
1562 2006-11-12  Gert Driesen  <drieseng@users.sourceforge.net>
1564         * ColorDialog.cs: Reset size of dialog between calls to ShowDialog.
1565         Fixes part of bug #79910.
1567 2006-11-11  Alexander Olk  <alex.olk@googlemail.com>
1569         * ColorDialog.cs: Fix a NRE when adding a color to custom colors
1570           (bug #79903). Some minor string updates to match ms.
1572 2006-11-10  Alexander Olk  <alex.olk@googlemail.com>
1574         * FileDialog.cs: Don't add an extension if the filename
1575           already ends with that extension.
1577 2006-11-10  Jackson Harper  <jackson@ximian.com>
1579         * TreeView.cs: Use the currently highlighted node for the
1580         BeforeSelect event.
1581         * TextBoxBase.cs: There is no need to expand selection on
1582         MouseMove.
1583         - CanUndo means 'is there any undo operations', not 'is undo
1584         allowed on this textcontrol. Fixed ClearUndo unit test.
1586 2006-11-10  Andreia Gaita  <shana.ufie@gmail.com>
1588         * Button.cs: only perform click when button is Selectable (so as 
1589         not to activate default buttons when they're disabled)
1590         
1591         * Control.cs: Rewrite of the SelectNextControl and related 
1592         methods. HandleClick now selects next control if the current one
1593         is being disabled.
1594         
1595         * Form.cs: OnActivated selects next active control only if Load 
1596         has already occurred. If Load hasn't run, there's no point in 
1597         selecting here, Load might change the state of controls.
1598         
1599         * FocusTest.cs: Tests marked as working again for these fixes
1601 2006-11-10  Chris Toshok  <toshok@ximian.com>
1603         * XplatUIX11.cs: a couple of fixes.
1605         - use XInternAtoms with almost all the atoms we need to register,
1606         instead of many, many calls to XInternAtom.  should help a bit on
1607         startup time, at the expense of making the code look a little
1608         worse.
1610         - fall back to setting TransientFor on TOOLWINDOW's if their hwnd
1611         isn't reparented (which seems to be a clue that we're running fon
1612         compiz) and they have an Owner form.  This fixes the tool windows
1613         in paint.net when running under compiz.
1615         - when setting the opacity of a window, support both the case
1616         where the window has been reparented and also when it hasn't been.
1617         Since compiz/beryl doesn't seem to reparent windows, and these are
1618         the only window managers which support translucency, I'm not sure
1619         why we need the hwnd.reparented case at all.. but leave it in.
1620         now we get translucent windows in paint.net under compiz/beryl.
1622 2006-11-10  Alexander Olk  <alex.olk@googlemail.com>
1624         * FileDialog.cs: Always return the value for FilterIndex that
1625           was set. Internally convert it to values that make sense.
1627 2006-11-10  Everaldo Canuto  <everaldo@simios.org>
1628         
1629         * ThemeWin32Classic.cs: Fix drowp down arrow borders.
1631 2006-11-10  Everaldo Canuto  <everaldo@simios.org>
1633         * Toolbar.cs: Change default value of DropDownArrows to true, the 
1634         signature still using false to make it compatible with MS but the 
1635         initial value is true. Fixes #79855.
1637 2006-11-10  Alexander Olk  <alex.olk@googlemail.com>
1639         * MimeIcon.cs: Don't throw an exception on windows. Mime stuff is
1640           only available on Linux.
1642 2006-11-09  Everaldo Canuto  <everaldo@simios.org>
1644         * Toolbar.cs, ToolBarButton.cs: Fix wrong separator size and
1645         reduce number of calls to redraw method during toolbar creation.
1647 2006-11-09  Mike Kestner  <mkestner@novell.com>
1649         * ListView.cs : raise SelectedIndexChanged when an item is selected
1650         programmatically via the Item.Selected property.  Gert's nice 
1651         ListViewSelectedIndexChanged test fixture now runs clean.
1653 2006-11-09  Mike Kestner  <mkestner@novell.com>
1655         * ListView.cs : raise SelectedIndexChanged when a selected item is
1656         removed from the item collection using Remove or RemoveAt.
1658 2006-11-09  Mike Kestner  <mkestner@novell.com>
1660         * ListView.cs : raise SelectedIndexChanged once per selected item
1661         for compat with MS.  Fixes #79849+.
1663 2006-11-09  Chris Toshok  <toshok@ximian.com>
1665         * TabControl.cs: initialize row_count to 0, and set it to 1 when
1666         we need to (if we have any tab pages).  Fixes unit test.
1668 2006-11-09  Chris Toshok  <toshok@ximian.com>
1670         * Label.cs (CalcPreferredWidth): if Text == "", our preferred
1671         width is 0, not 3.  Fixes a unit test.
1673 2006-11-09  Mike Kestner  <mkestner@novell.com>
1675         * ListView.cs : use Implicit scrollbars so that focus isn't 
1676         stolen from the listview when they are clicked. Fixes #79850.
1678 2006-11-09  Chris Toshok  <toshok@ximian.com>
1680         * PropertyGridView.cs (OnPaint): only call DrawGridItems if we
1681         have a root item.  Fixes #79879.
1683 2006-11-09  Alexander Olk  <alex.olk@googlemail.com>
1685         * FileDialog.cs:
1686           - Fix ToString ()
1687           - An ArgumentException is now thrown if a wrong filter
1688             is applied (matches ms). The previous filter doesn't change
1689             anymore if an exception is thrown.
1690           - Changing the FileName property also affects FileNames
1691         * ColorDialog.cs: The length of the CustomColors array is always
1692           16. It doesn't matter if we use a smaller array or null to update
1693           or change the custom colors property.
1694         * FolderBrowserDialog.cs: Throw an InvalidEnumArgumentException if
1695           for RootFolder if we get a undefined value.
1697 2006-11-09  Rolf Bjarne Kvinge  <RKvinge@novell.com>
1699         * StatusBarPanel.cs: 
1700         - Width is set to MinWidth if Width is smaller than
1701         MinWidth. Fixes #79842.
1702         - MinWidth now always overrides Width (MSDN says MinWidth
1703         is set to Width when AutoSize = None, but they do not 
1704         behave like that).
1705         - Style has now the the correct default value.
1706         
1707 2006-11-09  Rolf Bjarne Kvinge  <RKvinge@novell.com>
1709         * TrackBar.cs: 
1710         - The control is completely invalidated on 
1711         Got/LostFocus to draw the focus rectangle correctly.
1712         - When AutoSize then height is always 45 (width for 
1713         vertical controls).
1714         
1715         * ThemeWin32Classic.cs: The TrackBar thumb is now centered
1716         on the mouse when moved and it doesn't move when grabbed
1717         until the mouse moves as well. Also fixed some wrong 
1718         calculations when clicking on the thumb (control thought
1719         click was outside of thumb and didn't grab it).
1720         Fixes some of the issues in #79718.
1722 2006-11-08  Everaldo Canuto  <everaldo@simios.org>
1724         * Toolbar.cs: Prevent disabled button to highlight. Fixes #79868.
1726 2006-11-08  Chris Toshok  <toshok@ximian.com>
1728         * PropertyGridView.cs: only call ToggleValue if the item is not
1729         readonly.
1731 2006-11-08  Jackson Harper  <jackson@ximian.com>
1733         * TextBoxBase.cs: The RichTextBox and textbox have very different
1734         word selection methods.  Implement the textbox's simple word
1735         selection here, and let the RichTextBox override and provide it's
1736         own.
1737         - Don't do extra selection on mouseup
1738         * RichTextBox.cs: Use the documents word selection algorithm, I
1739         think ideally, this function will be pulled into the
1740         RichTextBox.cs code someday.
1742 2006-11-08  Chris Toshok  <toshok@ximian.com>
1744         * RootGridEntry.cs: new class to represent GridItemType.Root.
1746         * CategoryGridEntry.cs: reformat, and add boilerplate.
1747         
1748         * GridEntry.cs: remove the UIParent stuff - turns out .Parent
1749         returns the UI parent anyway, and we need special handling to
1750         implement the GetTarget method in the face of it.  Also, implement
1751         Select().
1753         * PropertyGrid.cs, PropertyGridView.cs: a number of fixes.  create
1754         a root grid item, and use that instead of PropertyGrid.grid_items.
1755         Also, make use of TypeConverters (and add limitted support for
1756         ICustomTypeDescriptors) when initially populating the grid.
1757         Arrays now show up more or less properly.
1759 2006-11-08  Chris Toshok  <toshok@ximian.com>
1761         * Application.cs: set the modal dialog to non modal after we close
1762         it.  Fixes bug #79866.
1764 2006-11-08  Jackson Harper  <jackson@ximian.com>
1766         * TextControl.cs: When combining lines carry over the line end
1767         style from the end line.
1768         - Invalidate the selected area when setting it, if it is visible.
1769         * TextBoxBase.cs: Only rich text box can do full line selects.
1770         - Make sure to set the cursor position when there is a click,
1771         otherwise two clicks in separate areas could cause a large chunk
1772         to be selected.
1774 2006-11-07  Everaldo Canuto  <everaldo@simios.org>
1776         * Toolbar.cs: Release flat button borders when Toolbar lost focus. 
1777         Fixes #79863.
1779 2006-11-07  Everaldo Canuto  <everaldo@simios.org>
1781         * Toolbar.cs: Prevent toolbar to open more than one tooltip at same
1782         time. Remove tooltips when ToolButton click events.  Fixes #79856.
1784 2006-11-07  Everaldo Canuto  <everaldo@simios.org>
1786         * MenuAPI.cs: Ignore right click for menu actions and fixes
1787         menu border when clicked.  Fixes #79846.
1789 2006-11-07  Everaldo Canuto  <everaldo@simios.org>
1791         * XplatUIX11.cs, XplatUIX11.cs: Fix MouseRelease to only release
1792         MouseState after create wParam for message, this fixes mouse button 
1793         equal none in mouse up events.
1794         
1795 2006-11-07  Andreia Gaita  <shana.ufie@gmail.com>
1797         * Control.cs : Focus() now calls Select to set the Container's
1798         Active Control and to give it focus. To avoid infinite recursion
1799         (because ActiveControl also calls Focus at one point), a check 
1800         is made in Focus with the help of a new internal variable
1801         is_focusing.
1803 2006-11-07  Mike Kestner  <mkestner@novell.com>
1805         * ListView.cs : raise OnSelectedIndexChanged in CreateHandle
1806         if there's a selection.  Fixes #79849.
1808 2006-11-07  Gert Driesen  <drieseng@users.sourceforge.net>
1810         * PropertyGrid.cs: Avoid fixed height of help description label.
1811         Fixes part of bug #79829.
1813 2006-11-07  Chris Toshok  <toshok@ximian.com>
1815         * XplatUIX11.cs: fix #79790 again, by using the
1816         _NET_WM_STATE_SKIP_TASKBAR atom to implement Form.ShowInTaskbar.
1818 2006-11-07  Everaldo Canuto  <everaldo@simios.org>
1820         * ToolBar.cs: Fix left click checking.
1822 2006-11-07  Chris Toshok  <toshok@ximian.com>
1824         * ProgressBar.cs: fix a typo in ToString().  fixes a unit test.
1826 2006-11-07  Chris Toshok  <toshok@ximian.com>
1828         * RelatedPropertyManager.cs: set property_name in our ctor.  fixes
1829         PropertyManager unit tests.
1831         * PropertyManager.cs: make property_name internal.
1833 2006-11-07  Chris Toshok  <toshok@ximian.com>
1835         * ButtonBase.cs: initialize base.ime_mode to ImeMode.Disable to
1836         pass a unit test.  Also, don't set image_index to anything in
1837         response to setting the ImageList property.
1839 2006-11-07  Everaldo Canuto  <everaldo@simios.org>
1841         * ToolBar.cs: Ignore click events when mouse button is not a
1842         left button, only accepts other button for dropdown menus.  
1843         Fixes #79854.
1845 2006-11-07  Chris Toshok  <toshok@ximian.com>
1847         * DataGrid.cs: make the back and parent row buttons a little less
1848         ugly.
1850 2006-11-07  Jackson Harper  <jackson@ximian.com>
1852         * TextBoxBase.cs: When converting to Text don't put line breaks in
1853         for soft line breaks.
1854         * TextControl.cs: There is an initial "fake" line in the document,
1855         this is now a soft break line, so that an extra line feed doesn't
1856         get added to the end of documents.
1858 2006-11-07  Chris Toshok  <toshok@ximian.com>
1860         [ fix bug #79778 ]
1861         
1862         * CurrencyManager.cs: if the list is readonly, don't bother
1863         checking if IBindingList.AllowNew is true.
1865         * ThemeWin32Classic.cs (DataGridPaintParentRow): make this work
1866         for non-DataRowView datasources..  or rather, make it not crash.
1867         (DataGridPaintRelationRow): make sure we limit the row painting to
1868         the area not covered by the row header, and make our cell width at
1869         least large enough to cover the relation area.  This allows grids
1870         that have relations but no rows to render correctly.
1871         (DataGridPaintRowContents): same type of changes here.
1872         (SetDataSource): move back to always calling
1873         CalcAreasAndInvalidate.  this fixes a crash/drawing problem when
1874         navigating back through relations.
1875         (HitTest): handle the case where we have no cells but have
1876         relations.  Right now we generate a hit in cell 0 of whatever the
1877         row is, not sure if this is strictly correct, but it works for our
1878         purposes.
1879         
1880         * DataGrid.cs (EndEdit, CancelEdit): if we have no columns, don't
1881         bother doing anything.
1883 2006-11-07  Jonathan Pobst  <monkey@jpobst.com>
1885         * StatusStrip.cs, ToolStripStatusLabel.cs: By request, an
1886         early version of StatusStrip.  Not responsible for eaten
1887         application or firstborn children.
1889 2006-11-06  Chris Toshok  <toshok@ximian.com>
1891         * TabControl.cs: in OnGotFocusInternal/OnLostFocusInternal don't
1892         call GetTabRect with a -1 index.  Fixes #79847.
1894 2006-11-06  Jackson Harper  <jackson@ximian.com>
1896         * TreeNodeCollection.cs: Update scrollbars after clearing.
1898 2006-11-06  Chris Toshok  <toshok@ximian.com>
1900         * NumericUpDown.cs: fix the ToString method for some unit test
1901         love.
1903 2006-11-06  Chris Toshok  <toshok@ximian.com>
1905         * PropertyGrid.cs:
1906         - set the initial SelectedGridItem if we can.
1908         - Exclude non-mergable properties only if we're merging > 1
1909         object.  Merging 1 object isn't really merging, obviously.
1911         - Handle PropertySort.NoSort just like Alphabetical, which is
1912         wrong of course, but at least gets things on the screen.
1913         
1914         * PropertyGridView.cs:
1915         - Add method "FindFirstItem" which finds the first property grid
1916         item, so we can select it by default.
1918         - make use of GridEntry.CanResetValue.
1920         - Don't call RedrawBelowItemOnExpansion here anymore, the
1921         individual GridEntry's will do that.
1923         - Remove the ITypeDescriptorContextImpl internal class.
1924         
1925         * GridEntry.cs:
1926         - this class needs to implement ITypeDescriptorContext, as it's
1927         what MS's PropertyDescriptorGridEntry does, which means we can
1928         remove the ITypeDescriptorContextImpl internal class from
1929         PropertyGrid.cs.  This fixes the crashing portion of bug #79829.
1931         - keep a reference to our PropertyGridView, and move the call to
1932         RedrawBelowItemOnExpansion here from PGV.  This means
1933         programmaticly setting Expanded actually does something visible.
1935         - add a CanResetValue() function which takes into account our
1936         possibly multiple "selected_objects" in the merged case.  Shifting
1937         PropertyGridView to use this method fixes another unreported
1938         crasher found running the test for #79829.
1940         - when Top or Bounds is updated, make sure the PropertyGridTextBox
1941         is updated to reflect this.
1943         * CategoryGridEntry.cs: the ctor takes the PGV now.
1944         
1945 2006-11-06  Jackson Harper  <jackson@ximian.com>
1947         * TextControl.cs: These are 1 based.
1948         * TextBoxBase.cs: When setting the selected text, don't change the
1949         selected text tags, this is done by ReplaceText, just position the
1950         cursor at the end of the new text.
1952 2006-11-06  Alexander Olk  <alex.olk@googlemail.com>
1954         * ListView.cs: Allow label edit only when, when LabelEdit is
1955           set to true.
1957 2006-11-06  Jackson Harper  <jackson@ximian.com>
1959         * TextControl.cs: If a suitable wrapping position isn't found,
1960         just wrap right in the middle of a word.
1962 2006-11-06  Alexander Olk  <alex.olk@googlemail.com>
1964         * ListView.cs, ListViewItem.cs: Implement LabelEdit. Fixes
1965           bug #79820.
1967 2006-11-06  Jackson Harper  <jackson@ximian.com>
1969         * TreeView.cs: Can't use the VisibleCount property when setting
1970         scrollbar heights, because this doesn't take into account whether
1971         or not the horz scrollbar just came visible.
1973 2006-11-05  Everaldo Canuto  <everaldo@simios.org>
1975         * MenuAPI.cs: Deactivate menu on mouse up when menus it is already
1976         activated.  Fixes #79369, #79832.
1978 2006-11-05  Alexander Olk  <alex.olk@googlemail.com>
1980         * FileDialog.cs: *sigh* Because of recent runtime changes (r67043) I
1981           had to remove support for links that point to a directory. FileInfo
1982           returns no usefull information (means, the directory they point to)
1983           for such links. Replaced some empty string ("") with String.Empty.
1985 2006-11-04  Gert Driesen  <drieseng@users.sourceforge.net>
1987         * TreeNodeCollection.cs: To match MS, in 1.0 profile throw 
1988         NullReferenceException when attempting to remove node that is not in
1989         collection. Throw NullReferenceException when null is passed to 
1990         Remove. Allow first element of the collection to be removed. Fixes
1991         bug #79831.  In GetEnumerator ().Current return null if positioned 
1992         before the first element of the collection. In GetEnumerator ().Reset,
1993         position before first element of the collection.
1995 2006-11-04  Gert Driesen  <drieseng@users.sourceforge.net>
1997         * PropertyGrid.cs: To match MS, remove default title and description
1998         for panel. Fixed tooltips for Categorized and Alphabetic toolbar
1999         buttons.
2001 2006-11-04  Chris Toshok  <toshok@ximian.com>
2003         * Theme.cs: add a Clamp method, just for kicks.
2005         * ThemeWin32Classic.cs: clamp all color components to [0..255].
2007 2006-11-04  Chris Toshok  <toshok@ximian.com>
2009         * Form.cs: if the form isn't visible, Close() does nothing.
2011 2006-11-03  Chris Toshok  <toshok@ximian.com>
2013         * Form.cs (Close): if the form is modal, don't Dispose of it, only
2014         Hide it.
2015         (WndProc): don't Dispose after handling the WM_CLOSE message.
2017         * Application.cs (RunLoop): toplevels is a list of Forms, so treat
2018         them as such, instead of using casts from Control to Form.  Also,
2019         don't Dispose of the modal dialog when we fall out of the loop -
2020         Close() it instead.
2022         fixes bug #79813.
2024 2006-11-03  Chris Toshok  <toshok@ximian.com>
2026         * Control.cs (Dispose): only go through the dispose thing if we're
2027         @disposing, and we haven't already been disposed.  Fixes bug
2028         #79814.
2030         * Form.cs: no reason to call "base.Dispose()" here instead of
2031         "Dispose()".
2033 2006-11-03  Mike Kestner  <mkestner@novell.com>
2035         * ComboBox.cs : use ToString instead of casts in AddItem for
2036         sorting functionality.  Fixes #79812.
2038 2006-11-03  Chris Toshok  <toshok@ximian.com>
2040         * Application.cs: pave the way for actually using the thread
2041         exception dialog.  it's ifdefed out at the moment.
2043 2006-11-03  Chris Toshok  <toshok@ximian.com>
2045         * ThreadExceptionDialog.cs: until we get a better layout, actually
2046         hide the details textbox and label when we shouldn't see them.
2048 2006-11-03  Jackson Harper  <jackson@ximian.com>
2050         * TextBoxBase.cs: Don't bail from the scrollbar calcs for non
2051         multiline textboxes anymore.  This method also determines the
2052         width/height of a textboxes canvas area.
2053         - Sorta a revert of the last patch.  For multiline just position
2054         the controls, then bail.  This way the scrollbar width won't be
2055         altered.
2057 2006-11-03  Everaldo Canuto  <everaldo@simios.org>
2059         * ThemeWin32Classic.cs: Dont paint inner lines of 3D border when
2060         it dont need.  Fixes #79537.
2062 2006-11-02  Jackson Harper  <jackson@ximian.com>
2064         * X11Dnd.cs: We always allow copy, since XDND implies Copy.  Also
2065         send the status after firing the DndOver event.
2067 2006-11-02  Rolf Bjarne Kvinge  <RKvinge@novell.com>
2069         * TrackBar.cs: Now orientation only switches height / width if
2070         the control's handle is created (Win32 does it like this). Also 
2071         fixed a typo in ToString() for a test to pass, changed the 
2072         exception thrown in set_LargeChange and set_SmallChange to 
2073         match Win32 behaviour, and added TrackBar tests to the unit 
2074         tests.
2076 2006-11-02  Chris Toshok  <toshok@ximian.com>
2078         * XplatUIX11.cs: the atom we want is _NET_WM_STATE_SKIP_TASKBAR,
2079         not _NET_WM_STATE_NO_TASKBAR.
2081 2006-11-02  Jackson Harper  <jackson@ximian.com>
2083         * TextControl.cs: Increment count by one, since in the update view
2084         count - 1 is used.
2086 2006-11-02  Jackson Harper  <jackson@ximian.com>
2088         * TextBoxBase.cs: Use client rectangle not bounds for checking if
2089         the mouse is in the client rectangle (duh).
2091 2006-11-02  Rolf Bjarne Kvinge  <RKvinge@novell.com>
2092         
2093         * TrackBar.cs: Fixed trackbar jumping around when clicking
2094         on it - the trackbar was not detecting correctly at which
2095         side of the thumb the click was done. (fixes #79718)
2097 2006-11-02  Everaldo Canuto  <everaldo@simios.org>
2099         * ListBox.cs: scroll visible area when change SelectedIndex to
2100         a non visible area.  Fixes #79481.
2102 2006-11-01  Jackson Harper  <jackson@ximian.com>
2104         * TextControl.cs: When replacing the selection move the selection
2105         start/end/anchor to the end of the new text.
2107 2006-11-01  Jackson Harper  <jackson@ximian.com>
2109         * XplatUIWin32.cs: When setting the parent change the controls
2110         visibility to it's visibility flag, not to it's old parents
2111         visibility (.Visible walks the parent chain).
2113 2006-11-01  Chris Toshok  <toshok@ximian.com>
2115         * XplatUIX11.cs: revert the #79790 fix, as the simple.
2116         XSetTransientForHint fix breaks paint .net's tool windows.  more
2117         work needed for that one.
2119 2006-11-01  Chris Toshok  <toshok@ximian.com>
2121         * ScrollBar.cs: throw ArgumentException instead of Exception in
2122         LargeChange/SmallChange setters.  fixes unit tests.
2124 2006-10-31      Andreia Gaita <shana.ufie@gmail.com>
2126         * ContainerControl.cs: reverted rev.67183 (which was itself
2127         a reversion of rev.66853... eh).
2128         
2129         * Control.cs: Fixes Reflector hang by changing Focus() call
2130         to what it was before rev.66643 (calling Select() here sets 
2131         ActiveControl, which in some situations calls back Focus and 
2132         eventually does a stack overflow). Temp fix.    
2133         Changes to GetNextControl() to not look for children to select when
2134         parent cannot be selectable (so it looks for siblings instead)  
2135         
2136 2006-10-31  Mike Kestner  <mkestner@novell.com>
2138         * CheckedListBox.cs : off by one error in returned index from
2139         ObjectCollection.Add.  Fixes #79758.
2141 2006-10-31  Chris Toshok  <toshok@ximian.com>
2143         * UpDownBase.cs: remove the OnGotFocusInternal/OnLostFocusInternal
2144         calls for the textbox/spinner, to keep from recursing to the point
2145         where we crash.  Fixes #79760.
2147 2006-10-31  Chris Toshok  <toshok@ximian.com>
2149         * ListControl.cs (set_SelectedValue): don't throw exceptions on
2150         null/"" value, just return.  matches ms's behavior and fixes some
2151         failing tests.
2153 2006-10-31  Chris Toshok  <toshok@ximian.com>
2155         * Control.cs (set_Capture): make a logic a little easier to
2156         follow.
2158         * XplatUIX11.cs (CleanupCachedWindows): zero out the Grab window
2159         if it's being destroyed.  A necessary fix surely, but a bandaid
2160         also, to fix the stuck capture problem in bug #78413.
2162 2006-10-31  Chris Toshok  <toshok@ximian.com>
2164         * XplatUIX11.cs: fix a couple of compiler warnings, and follow the
2165         convention of clearing hwnd.ClientRect when we set the
2166         width/height (so it'll be recalculated by Hwnd).
2168 2006-10-31      Andreia Gaita <shana.ufie@gmail.com>
2170         * ContainerControl.cs: reversed Contains check from
2171         ActiveControl due to hanging problems. This fix
2172         partly regresses #79667 (button does not have
2173         initial focus), so this might be a symptom for 
2174         a larger parenting problem (set_ActiveControl
2175         is being called but the child control does
2176         not have the parent set yet?)   
2177         
2178 2006-10-31  Mike Kestner  <mkestner@novell.com>
2180         * MenuAPI.cs : fix keynav when menu is click activated.
2182 2006-10-31  Jonathan Pobst  <monkey@jpobst.com>
2184         * ToolStrip*: Version 0.2.
2186         * MenuStrip.cs: Version 0.1.
2188         * Form.cs: Add a 2.0 MenuStrip tracker like the 1.1 Menu one.
2190 2006-10-30  Chris Toshok  <toshok@ximian.com>
2192         [ fixes the oversized notify icon issue in bug #79745 ]
2193         
2194         * NotifyIcon.cs: scale the icon down to the size we're given by
2195         the XplatUI layer (this would be faster if we did it once instead
2196         of whenever we paint..)  Also, remove the WM_NCPAINT handling,
2197         since it's never invoked.
2199         * XplatUIX11.cs: the gnome and kde systrays use icons that are 24
2200         pixels high by default, so let's hardcode our systray icon to that
2201         size.  The SYSTEM_TRAY protocol should really have a way for
2202         client apps to query for the correct icon size.. but oh well.  A
2203         couple of patches to deal with the screwy client_window ==
2204         whole_window notifyicon stuff (we don't want to PerformNCCalc, for
2205         instance, and also make sure we don't XSelectInput twice).
2207 2006-10-30  Chris Toshok  <toshok@ximian.com>
2209         * Control.cs: ugh, the unit test fix (CH11, yesterday) breaks when
2210         recreating forms.  Control recreation is the bane of my existence.
2211         Fix it in a way that keeps everyone happy.
2213 2006-10-30  Chris Toshok  <toshok@ximian.com>
2215         * XplatUIX11.cs: use StructureNotifyMask on all whole_windows, not
2216         just non-CHILD ones.  otherwise sometimes scrollbars end up with
2217         client_windows not being resized to the proper size (ReportBuilder
2218         shows this extremely well).
2220 2006-10-30  Chris Toshok  <toshok@ximian.com>
2222         * XplatUIX11.cs (SetWMStyles): reinstate the XSetTransientForHint
2223         for non-WS_EX_APPWINDOW windows.  This is what keeps them from
2224         showing up in the gnome taskbar.  Fixes bug #79790.
2226 2006-10-30  Chris Toshok  <toshok@ximian.com>
2228         * ApplicationContext.cs: guard against a NRE.
2230         * Application.cs: null out the old MainForm for the context, so we
2231         don't try to use it again once it's disposed.  Fixes bug #79783.
2233 2006-10-30  Chris Toshok  <toshok@ximian.com>
2235         * DataGrid.cs (set_DataSource, set_DataMember): if we have a
2236         BindingContext, set the data source directly, otherwise do the
2237         lazy approach - the actual ListManager will be created when we get
2238         a BindingContext. Fixes bug #79700.
2240 2006-10-30  Jonathan Pobst  <monkey@jpobst.com>
2242         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIOSX.cs,
2243           XplatUIX11.cs: Remove old 2 parameter SetVisible.
2245         * Control.cs: Use the new 3 parameter SetVisible with activate = true.
2247 2006-10-30  Jonathan Pobst  <monkey@jpobst.com>
2249         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs: Add an overload
2250         of SetVisible that allows a window to be shown, but not activated.
2251         This is needed on Windows for MenuStrip, and can probably be used
2252         with MainMenu and ComboBox to fix the focus stealing issues on
2253         Windows.
2255         * XplatUIOSX.cs, XplatUIX11.cs: Not needed, call existing SetVisible.
2257 2006-10-30  Alexander Olk  <alex.olk@googlemail.com>
2259         * PictureBox.cs: Fix the output of the ToString method.
2261 2006-10-29  Chris Toshok  <toshok@ximian.com>
2263         * Control.cs (get_TopLevelControl): fix bug #79781.
2265 2006-10-29  Chris Toshok  <toshok@ximian.com>
2267         * ListControl.cs (set_DataSource): throw Exception here, not
2268         ArgumentException, to match MS behavior.
2270 2006-10-29  Chris Toshok  <toshok@ximian.com>
2272         * Form.cs: remove the try-catch's around calls to GetWindowState.
2273         We can just check the return value.
2275         * XplatUIX11.cs: don't throw exceptions from GetWindowState.
2276         Instead return -1.
2278         * XplatUI.cs: Add note about additional return value for
2279         GetWindowState.
2281 2006-10-29  Chris Toshok  <toshok@ximian.com>
2283         * Control.cs (CreateHandle): when we create our handle, we also
2284         create the handles of our child controls.  Fixes one of the
2285         Control unit tests (CH11).
2287 2006-10-28  Alexander Olk  <alex.olk@googlemail.com>
2289         * MimeIcon.cs: If a gnome icon doesn't exist add a default icon.
2291 2006-10-28  Alexander Olk  <alex.olk@googlemail.com>
2293         * ThemeClearlooks.cs: A little speedup.
2295 2006-10-27  Chris Toshok  <toshok@ximian.com>
2297         * Control.cs: implement Control.FromChildHandle in a way that
2298         matches the docs (and fixes the failed test.)
2300 2006-10-27  Chris Toshok  <toshok@ximian.com>
2302         * DataGridTableStyle.cs: reproduce buggy MS behavior (with
2303         comments).
2305         * DataGrid.cs: implement ResetForeColor such that the tests
2306         succeed.
2307         
2308 2006-10-27  Chris Toshok  <toshok@ximian.com>
2310         * ToolBarButton.cs: setting text/tooltiptext to null results in it
2311         being set to "".  Fixes bug #79759.
2313 2006-10-27  Jackson Harper  <jackson@ximian.com>
2315         * TextControl.cs: We need to clear the entire selection area when
2316         setting the start, otherwise multiline selections are still
2317         visible.
2319 2006-10-26  Chris Toshok  <toshok@ximian.com>
2321         * PropertyGridView.cs: 
2323         - ifdef all the code specific to the double
2324         buffer case, and provide some alternatives in the non-doublebuffer
2325         code, which makes heavy use of XplatUI.ScrollWindow to move things
2326         around without having to invalidate (and cause flicker).  There
2327         are still some drawing problems in the non-doublebuffered case, so
2328         DOUBLEBUFFER is defined by default.
2330         - Fix the way dropdowns are handled.  now we explicitly watch for
2331         the events which might cause the dropdown to close, and break out
2332         of the nested event loop there.  This gets rid of all Capture
2333         code, at the expense of the Msg special casing.  Seems to work,
2334         though, and fixes bug #79743.
2336 2006-10-27  Rolf Bjarne Kvinge <RKvinge@novell.com>
2337         * Control.cs: SetIsRecreating now recreates implicitly added
2338         child controls as well. Finally fixes #79629. The flag passed to 
2339         SetIsRecreating has also been removed since it wasn't used.
2340         
2341 2006-10-26  Carlos Alberto Cortez <calberto.cortez@gmail.com>
2343         * PageSetupDialog.cs: Clean some code, fix some bits, 
2344         add some checks, and add a printer sub-dialog.
2346 2006-10-26  Chris Toshok  <toshok@ximian.com>
2348         * PropertyGrid.cs: make set_SelectedObject call
2349         set_SelectedObjects, and move the duplicate logic to the
2350         SelectedObjects setter.  Also, raise SelectedObjectsChanged.
2352         * PropertyGridView.cs: hide the textbox when we get a
2353         SelectedObjectsChanged event.
2355         Fixes bug #79748.
2357 2006-10-26  Chris Toshok  <toshok@ximian.com>
2359         * PropertyGridView.cs: deal with the type converter not supporting
2360         GetStandardValues() or GetStandardValues() returning null, which
2361         is does in the default case.  Fixes #79742.
2363 2006-10-25  Andreia Gaita <shana.ufie@gmail.com>
2365         * CheckedListBox.cs: nunit no longer crashes when selecting 
2366         Project/Edit menu option
2367         
2368 2006-10-25  Andreia Gaita <shana.ufie@gmail.com>
2370         * MenuAPI.cs: prevent ExecFocusedItem from blowing up if there
2371         is no menu selected. fixes #79739
2373 2006-10-25  Chris Toshok  <toshok@ximian.com>
2375         * PropertyGridView.cs: factor out the splitter invalidation code
2376         into the SplitterPercent setter, and for kicks implement the
2377         Ctrl-Left/Ctrl-Right handling that moves the splitter by a small
2378         amount in either direction.
2380 2006-10-25  Chris Toshok  <toshok@ximian.com>
2382         * PropertyGridView.cs: do some cleanup of the brush used to draw
2383         text - read only fields should be grayed out.  not sure how to do
2384         this with the textbox, though.  but the textbox's should also be
2385         readonly now at least.  Also, hide/show the textbox when resizing
2386         the control.
2387         
2388         * CursorConverter.cs: use System.Reflection when getting the
2389         properties of Cursors, as TypeDescriptor.GetProperties isn't
2390         returning static properties.
2392 2006-10-25  Chris Toshok  <toshok@ximian.com>
2394         * PropertyGridView.cs: factor out the up/down handling, and reuse
2395         it for page up/down.  also add End/Home support.
2397 2006-10-25  Chris Toshok  <toshok@ximian.com>
2399         * PropertyGridView.cs:
2401         - ensure the selected grid item is visible in the scrolled area,
2402         fixes bug #79572.
2404         - fix Keys.Down handling when you're on the last item in the
2405         propertygrid.
2407 2006-10-25  Mike Kestner  <mkestner@novell.com>
2409         * MenuAPI.cs : set the ActiveTracker for MainMenu non-popup 
2410         clicks too.  Fixes #79725.
2412 2006-10-24  Chris Toshok  <toshok@ximian.com>
2414         * PropertyGrid.cs: use property.Converter instead of
2415         TypeDescriptor.GetConverter(property.PropertyType), so we catch
2416         TypeConverters declared on the property as well as on the
2417         PropertyType.  Fixes bug #79678.
2419 2006-10-24  Alexander Olk  <alex.olk@googlemail.com>
2421         * MimeIcon.cs, Mime.cs:
2422           Fallback to the default platform handler if no shared mime info
2423           stuff exists (fixes #79693).
2425 2006-10-20 Andreia Gaita <shana.ufie@gmail.com>
2426         * ContainerControl.cs: Incorrect contains check in ActiveControl 
2427         from previous fix (duh).
2429 2006-10-20  Chris Toshok  <toshok@ximian.com>
2431         * PropertyGridView.cs: the dropdown should be MIN(number of items
2432         in list, 15).  Fixes #79551.
2434 2006-10-20 Andreia Gaita <shana.ufie@gmail.com>
2435         Fixes #79384, #79394, #79652, #79667
2436         * Application.cs: 
2437         
2438         - Modal windows are now destroyed in the proper order for windows
2439         
2440         * ContainerControl.cs:
2441         
2442         - ActiveControl setter has more conditions on when to return:
2443                 - if we're reselecting the active control, but it actually
2444                 didn't have focus (window hidden or some such), it runs
2445                 - if the active control being selected doesn't actually 
2446                 exist in the container, it returns
2447         
2448         * Form.cs
2449         
2450         - The ShowDialog now gets the current form as the owner when
2451         invoking without parameters, and correctly activates the owner 
2452         when returning
2453         
2454         * MessageBox.cs
2455         
2456         - MessageBox now catches the Escape key to exit
2458 2006-10-20  Chris Toshok  <toshok@ximian.com>
2460         * PropertyGridView.cs: fix a number of issues (bug #78565, and
2461         most of bug #79676):
2463         - you can navigate around the property grid with the arrow keys.
2465         - the dropdown is sized properly when the pg has a vertical
2466         scrollbar.
2468         - fix the indentation for subentries, and properly select the
2469         entire label rect.
2471         - fix the gray bar's drawing (only draw it to the last element,
2472         not for the height of the control.  Also make sure we draw that
2473         last horizontal grid line.
2475         - use the same mechanism the datagrid uses wrt the editing textbox
2476         when scrolling/resizing/etc.  Namely, we hide it first, do the
2477         operation, then show it again (if it's still visible).
2478         
2479         - aggressively remove a lot of unnecessary refreshes (and also
2480         calls to Invalidate(). call more limited variants, and only redraw
2481         what we need.)
2482         
2483         * PropertyGrid.cs:
2485         - when we're populating the merged collection, fill in the UI
2486         parent with either the passed in item, or the category item we
2487         create.
2489         - remove the Refresh call from the BorderHelpControl.OnSizeChanged.
2491         * GridItem.cs: drop some fully qualified names.
2492         
2493         * GridEntry.cs: add a "UIParent", which is basically the parent
2494         treenode.
2496         * GridItemCollection.cs: add an IndexOf method.
2498 2006-10-20  Mike Kestner  <mkestner@novell.com>
2500         * MainMenu.cs : go back to Draw in OnMenuChanged.  Until we get
2501         a working win32 NC invalidation mechanism, we can't invalidate
2502         menus.  [Fixes #79705]
2504 2006-10-20  Mike Kestner  <mkestner@novell.com>
2506         * ListBox.cs : don't update the VScrollbar if the list is empty,
2507         just hide it.  [Fixes #79692]
2509 2006-10-20  Jackson Harper  <jackson@ximian.com>
2511         * RichTextBox.cs: Handle some special chars better, and don't skip
2512         the entire group when we encounter a special char that we don't
2513         handle correctly.
2515 2006-10-18  Chris Toshok  <toshok@ximian.com>
2517         * PropertyGridView.cs: address a number of issues from bug #79676,
2518         mostly of the cosmetic variety.
2520         - The highlight rectangle for indented items not extends all the
2521         way to the left.
2523         - Indented items aren't indented so much.
2525         - the dropdown is properly sized width-wise if the pg has a
2526         vertical scrollbar.
2528 2006-10-18  Chris Toshok  <toshok@ximian.com>
2530         * XplatUIX11.cs (SystrayAdd): a rather convoluted change, but the
2531         systray stuff is rather convoluted to begin with.
2533         systray icons are a single window for some reason (that I haven't
2534         figured out yet), and for them, client_window == whole_window.
2535         Given the way the tests are structured elsewhere to determine
2536         which paints are pending (client vs. nc), that situation will
2537         always yield PAINT, not NCPAINT.  So, if we have a pending
2538         nc_expose and no pending expose, remove the hwnd from the paint
2539         queue, and also set nc_expose_pending to false, to keep us from
2540         blocking further expose's adding the hwnd to the paint queue.
2542         phew.  like i said, a rather convoluted change.  Fixes the
2543         notifyicon repaint issues in bug #79645.
2545 2006-10-18  Chris Toshok  <toshok@ximian.com>
2547         * Form.cs: when getting the backcolor of the form, don't get
2548         base.BackColor, as this allows parents to influence the background
2549         color.  This breaks mdi forms.  Instead, if the background_color
2550         is empty, return the default.
2552 2006-10-18  Chris Toshok  <toshok@ximian.com>
2554         * XplatUIX11.cs: change some debug ifdefs, and return XGetParent
2555         to being private instead of internal static.
2557         * Control.cs: remove all the stupid ParentWaitingOnRecreation
2558         crap, it wasn't working for more deeply nested controls anyway,
2559         and we already have the is_recreating flag - use that instead.
2560         Before calling DestroyHandle in RecreateHandle, recurse through
2561         the control tree setting it to true.  this returns the recreate
2562         code to much of its original simplicity, while now guaranteeing we
2563         actually recreate everything we're supposed to.  This change gets
2564         fyireporting actually showing mdi children.
2566 2006-10-17  Chris Toshok  <toshok@ximian.com>
2568         * Form.cs: remove some debug spew, and collapse some duplicate
2569         code at the end of SetClientSizeCore.
2571         * XplatUIX11.cs: 
2572         - add some more debug spew here too wrt Destroy handling.
2573         - don't call hwnd.Dispose in DestroyWindow, it's effectively done
2574         in Control's handling of WM_DESTROY.
2575         - Remove the handling of zombie window DestroyNotifies from the
2576         event loop - we don't need it.  Now the only DestroyNotifies we
2577         actually handle are ones generated by X.
2578         - When sending _NET_ACTIVE_WINDOW, the first param should be 1, to
2579         match gtk's (functioning) handling of this. This keep metacity
2580         from leaving droppings in the form of wm borders with no window
2581         contents all over the place.
2583         * Control.cs:
2584         - add a bunch of debug spew wrt control recreation.
2585         - fix a bug where we weren't tracking Visible properly on
2586         recreated hwnds.
2587         - fixed the WM_PAINT double buffer handling to support re-entrant
2588         calls (yes, i know it's gross, but it's happening to us).
2590 2006-10-17  Rolf Bjarne Kvinge  <rolfkvinge@ya.com>
2591         * ThemeWin32Classic.cs: changed drawing of selected days
2592         to make them look better.
2594 2006-10-16  Chris Toshok  <toshok@ximian.com>
2596         * Hwnd.cs: replace the user_data/client_dc/non_client_dc with
2597         drawing_stack.  Nuke the ClientDC/NonClientDC properties.
2599         * XplatUIX11.cs: move away from using hwnd.client_dc and
2600         hwnd.non_client_dc and on to a stack of dc's (and in window's
2601         case, PAINTSTRUCT's), so we can deal with nested Paint calls
2602         without puking or not disposing of Graphics objects.
2604         * XplatUIOSX.cs: same.
2606         * XplatUIWin32.cs: same.
2608 2006-10-03  Alexander Olk  <alex.olk@googlemail.com>
2610         * FileDialog.cs: Don't call on_directory_changed inside
2611           OnSelectedIndexChanged (it changes the SelectedIndex too).
2612           Instead move it to OnSelectionChangeCommitted.
2614 2006-10-13  Chris Toshok  <toshok@ximian.com>
2616         * XplatUIX11.cs: more Destroy work.  the current code does the
2617         following things, in order:
2619         1. Enumerates all handles of all controls at or below the one
2620         being destroyed, in pre-order.  As it is doing this, it marks the
2621         handles as zombie and clears all references to them.
2622         
2623         2. calls XDestroyWindow on the window passed in.
2625         3. SendMessage's WM_DESTROY to all he handles in the accumulated
2626         list.
2628 2006-10-13  Chris Toshok  <toshok@ximian.com>
2630         * XplatUIX11.cs: set hwnd.zombie to true before calling
2631         SendMessage (WM_DESTROY).  this keeps us from marking the new
2632         window a zombie, and also keeps us from calling sendmessage at
2633         all.
2635 2006-10-13  Jackson Harper  <jackson@ximian.com>
2637         * TextControl.cs: Do not show the caret and selection at the same
2638         time.  Reduces ugliness by 35%.
2640 2006-10-13  Chris Toshok  <toshok@ximian.com>
2642         * XplatUIX11.cs (SendWMDestroyMessages): set the hwnd to be a
2643         zombie after we do the recursive call, so we actually do call
2644         SendMessage on the children controls.
2645         (GetMessage): if we find a pending paint event for a zombie hwnd,
2646         remove the hwnd from the paint queue, or else it will always be
2647         there (and we'll effectively loop infinitely)
2649 2006-10-13  Mike Kestner  <mkestner@novell.com>
2651         * MenuItem.cs : add Selected format under keynav too.
2652         Fixes #79528.
2654 2006-10-13  Gert Driesen  <drieseng@users.sourceforge.net>
2656         * PropertyGrid.cs: Fixed some NRE's and small difference between our
2657         implementation and that of MS.
2659 2006-10-13  Chris Toshok  <toshok@ximian.com>
2661         * Control.cs (OnInvalidated) only futz with the invalid_region if
2662         the control is double buffered.  this fixes the apparent hang in
2663         the ListView unit tests.  Someone needs to make the
2664         BeginEndUpdateTest not call OnInvalidated 15004 times, though..
2666 2006-10-13  Chris Toshok  <toshok@ximian.com>
2668         * PropertyGridView.cs:
2670         - do a little refactoring so that only one place calls
2671         dropdown_form.Hide, and that is CloseDropDown.  make everywhere
2672         else call that.  Also make it Refresh, since there are redraw bugs
2673         otherwise (we should take a look at that...)
2675         - do a little more refactoring work to share the body of code
2676         involved with the drop down.  it was duplicated in the code
2677         dealing with the listbox handling and in the code dealing with the
2678         UITypeEditors.
2680         - add a Capture to the dropdown form's control once it's
2681         displayed, and add a MouseDown handler that checks to make sure
2682         the position is inside the control.  If it's not, close the
2683         dropdown.  This fixes #78190.
2685         - in SetPropertyValueFromUITypeEditor, only call SetPropertyValue
2686         if the value is different than the initial value.
2687         
2688 2006-10-13  Andreia Gaita  <shana.ufie@gmail.com>
2690         * Control.cs: see #78650
2691         - Fixed GetNextControl for several cases:
2692                 - Changed FindFlatForward to return 
2693                 correct sibling control when more than one
2694                 control has same TabIndex as the currently 
2695                 focused one.
2696                 - Changed FindFlatBackward to loop children
2697                 from last to first and apply same logic as in
2698                 FindFlatForward
2699                 - Changed FindControlForward to search for
2700                 children when control is not a container
2701                 but has children, or search for siblings if
2702                 control is a container...
2703                 - Changed FindControlBackward   to continue
2704                 searching for child controls when hitting 
2705                 Panel-like parents
2706                 
2707         - Fixed Focus method to update ActiveControl
2708         (FocusTest.FocusSetsActive failure)
2709         
2710         * TabControl.cs:
2711         - Focus rectangle now refreshes when gaining
2712         or losing focus
2713         - Removed grab for Tab key on IsInputKey that 
2714         was keeping tab navigation from working (#78650)
2716 2006-10-13  Chris Toshok  <toshok@ximian.com>
2718         * PropertyGridView.cs:
2719         - Rewrite SetPropertyValue to loop over SelectedGridItem's
2720         SelectedObjects.
2722         - Deal with GridItem.Value == null a few places.
2724         * PropertyGrid.cs: 
2725         - replace the PopulateGridItemCollection with a pair of methods
2726         which compute the intersection of all the properties in the
2727         SelectedObjects array.  Fixes #79615.
2729         - Throw ArgumentException from set_SelectedObjects if there's a
2730         null in the array.
2732         - Add GetTarget method which can be used to traverse up the
2733         GridItem.Parent chain.  It depends on the assumption that
2734         selected_objects for different GridEntries are always in the same
2735         order (a safe assumption).  Use this method and loop over all the
2736         selected objects in the entry when calling RemoveValueChanged and
2737         AddValueChanged.
2738         
2739         * GridEntry.cs: Make this handle multiple selected objects.
2740         .Value returns null if not all the selected objects share the same
2741         value.
2743 2006-10-12  Jonathan Pobst  <monkey@jpobst.com>
2744         * ToolStrip.cs, ToolStripButton.cs, ToolStripComboBox.cs,
2745           ToolStripControlHost.cs, ToolStripItem.cs, ToolStripLabel.cs,
2746           ToolStripProfessionalRenderer.cs, ToolStripProgressBar.cs,
2747           ToolStripSeparator.cs, ToolStripSplitStackLayout.cs,
2748           ToolStripTextBox.cs: Add accessibility, fix attributes/API and
2749         add additional functionality.
2751 2006-10-12  Mike Kestner  <mkestner@novell.com>
2753         * ErrorProvider.cs : new ToolTipWindow ctor sig.
2754         * HelpProvider.cs : new ToolTipWindow ctor sig.
2755         * ToolTip.cs : remove ToolTip param from Window sig since it is
2756         not used.
2757         * ToolBar.cs : add tooltip support.  Fixes #79565.
2759 2006-10-12  Rolf Bjarne Kvinge  <rolfkvinge@ya.com>
2761         * ComboBox.cs: move the events in set_SelectedIndex to 
2762         after the call to HighlightIndex in order to avoid 
2763         possible recursion and subsequent problems with the call
2764         to HighlightIndex and include a range check in 
2765         set_HighlightIndex. Fixes #79588
2766         
2767 2006-10-12  Rolf Bjarne Kvinge  <rolfkvinge@ya.com>
2769         * MonthCalendar.cs: When FirstDayOfWeek is default set firstday 
2770         to ui thread's settings instead of sunday. 
2771         * ThemeWin32Classic.cs: Localize the day string. Fixes #79563
2773 2006-10-12  Rolf Bjarne Kvinge  <rolfkvinge@ya.com>
2775         * DateTimePicker.cs
2776         * MonthCalendar.cs
2777         * ThemeWin32Classic.cs: rewrote DateTimePicker to fix bug #78364
2778         and implement missing functionality (selecting different parts 
2779         of the date and edit them individually with the keyboard).
2780         
2781 2006-10-11  Chris Toshok  <toshok@ximian.com>
2783         * Control.cs (OnInvalidated): fix NRE relating to last change.
2785 2006-10-11  Chris Toshok  <toshok@ximian.com>
2787         * XplatUIX11.cs (SetWMStyles): make sure we include the MAXIMIZED
2788         atoms in _NET_WM_STATE here if the window is maximized.  We need
2789         to do this because we're *replacing* the existing _NET_WM_STATE
2790         property, so those atoms will be lost otherwise, and any further
2791         call to GetWindowState will return Normal for a window which is
2792         actually maximized.  Fixes #79338.
2794 2006-10-11  Jackson Harper  <jackson@ximian.com>
2796         * TextControl.cs: Special case for setting selection end to
2797         selection start, we basically kill the anchor.
2798         - some todo comments.
2800 2006-10-11  Chris Toshok  <toshok@ximian.com>
2802         * Control.cs: switch to using an "invalid_region" to track which
2803         parts of the image buffer need updating.  This is more code than
2804         the simple fix from r66532.  That version just attempted to always
2805         fill the entire buffer on redraw, which turns out to be
2806         inefficient when invalidating small rectangles.  This version
2807         simply adds the invalid rectangle to the invalid region.  When we
2808         get any WM_PAINT message we see if it can be filled using the
2809         image buffer, and if it can't (if the paint event's clip rectangle
2810         is visible in the invalid region) we first fill the image buffer.
2811         So, the image buffer is still a cache, we just fill it lazily.
2813         * PaintEventArgs.cs: remove the SetClipRectangle method, we don't
2814         need it any longer.
2816 2006-10-11  Chris Toshok  <toshok@ximian.com>
2818         * XplatUIX11.cs (SetWindowPos): we need to update both position as
2819         well as size after calling XMoveResizeWindow.  This keeps us from
2820         ignoring future SetWindowPos calls.  Fixes the disappearing
2821         DateTimePicker in the ToolBarDockExample from bug #72499.
2823 2006-10-11  Chris Toshok  <toshok@ximian.com>
2825         * TextBoxBase.cs: reorder things a bit when it comes to
2826         resizing-causing-recalculation.  we were recalculating the
2827         document when our position was changed, which shouldn't happen.
2828         We only care about size changes.  Clear up some more redundant
2829         recalculation calls while I'm at it.  This makes the toolbar dock
2830         example snappy when you're just dragging toolbars around (since it
2831         causes a relayout whenever you move one.)
2833 2006-10-11  Chris Toshok  <toshok@ximian.com>
2835         * ToolBarButton.cs (get_Rectangle): this only returns
2836         Rectangle.Empty if Visible == false, or Parent == null.
2837         Parent.Visible doesn't matter.
2839 2006-10-10  Chris Toshok  <toshok@ximian.com>
2841         * Control.cs, PaintEventArgs.cs: "internal set { .. }" isn't loved
2842         by .net 1.1, so switch to an internal method instead.
2844 2006-10-10  Chris Toshok  <toshok@ximian.com>
2846         * Control.cs (WM_PAINT): when a control is double buffered we draw
2847         initially to the ImageBuffer and then copy from there.  But when a
2848         parent control which has child controls is double buffered, the
2849         initial drawing doesn't encompass the entire ClientRectangle of
2850         the parent control, so we end up with uninitialized bits (this is
2851         easily seen by dragging the top toolbar in
2852         wf-apps/ToolBarDockExample to the right, quickly).  The fix is to
2853         manually set the ClipRectangle of the paint_event (only the one we
2854         use to populate the ImageBuffer) to ClientRectangle.  Fixes more
2855         of the nastiness in bug #72499.
2857         * PaintEventArgs.cs: Add an internal setter for ClipRectangle,
2858         which we use in Control.cs's WM_PAINT handling.
2860 2006-10-10  Jackson Harper  <jackson@ximian.com>
2862         * TextBoxBase.cs: Finish off the autoscrolling stuff.
2864 2006-10-10  Chris Toshok  <toshok@ximian.com>
2866         * Cursor.cs: Apply a slightly different patch to the one suggested
2867         in #79609.
2869 2006-10-10  Jackson Harper  <jackson@ximian.com>
2871         * MenuItem.cs: Make sure to put the mdi child in the hashtable,
2872         not the parent form.
2873         * TextControl.cs: use difference in old line count vs new count to
2874         calculate how many lines were added, this takes into account soft
2875         line breaks properly.
2877 2006-10-10  Chris Toshok  <toshok@ximian.com>
2879         * LinkLabel.cs: don't call MeasureCharacterRanges against a
2880         rectangle located at 0,0 and the size of the text.  Use
2881         ClientRectangle instead.  This fixes rendering of non-left aligned
2882         link labels.
2884 2006-10-10  Jackson Harper  <jackson@ximian.com>
2886         * TextBoxBase.cs: When we set the selection start position the
2887         caret.
2888         * TextControl.cs: Need to update the caret when we decrement it to
2889         zero.
2890         - Make sure that the selection_visible flag gets reset to false if
2891         the selection isn't visible.  Before this you could get it set to
2892         visible by changing the selection start, then changing the end to
2893         equal the start.
2895 2006-10-09  Jackson Harper  <jackson@ximian.com>
2897         * TreeView.cs: Don't update scrollbars when we aren't visible.
2898         * TreeNodeCollection.cs: Only need to update scrollbars if being
2899         added to an expanded visible node or the root node.
2901 2006-10-09  Chris Toshok  <toshok@ximian.com>
2903         * XplatUIX11.cs (SendMessage): fix NRE.
2905 2006-10-09  Jackson Harper  <jackson@ximian.com>
2907         * TextBoxBase.cs: Implement horizontal autoscrolling.
2908         * TextControl.cs: Add a movement types that allows moving forward
2909         and backwards without wrapping.
2911 2006-10-09  Mike Kestner  <mkestner@novell.com>
2913         * ListViewItem.cs : layout changes for wrapped LargeIcon labels
2914         with focus "expansion" of labels.  Fixes #79532 and then some.
2915         * ThemeWin32Classic.cs : add LineLimit to ListView label format
2916         when wrapping.
2918 2006-10-09  Jackson Harper  <jackson@ximian.com>
2920         * TextBoxBase.cs: Set the default max values to MaxValue since
2921         we use the scrollbar for autoscrolling and the default value is
2922         100.  If we don't do this the caret won't keep up with typing
2923         after about 18 characters.
2924         * TextControl.cs: Make sure the selection is offset by the
2925         viewport x.  This fixes selection when using auto scrolling.
2927 2006-10-07  Andreia Gaita <shana.ufie@gmail.com>
2928         
2929         * Form.cs: The active control should be selected after the 
2930         OnLoad so that any child control initialization that affects
2931         the selection is done. Fixes #79406
2933 2006-10-06  Chris Toshok  <toshok@ximian.com>
2935         * XplatUIX11.cs: This is perhaps a dangerous change, but it seems
2936         to have no evil effects.
2938         - Stop selecting StructureNotifyMask on non-toplevel windows.
2940           The only way children should be resized is by using the SWF api,
2941           and we already send WM_WINDOWPOSCHANGED messages in those cases.
2942           Toplevel windows can be interacted with via the window manager,
2943           and so we keep the input mask there.
2945           The other event StructureNotifyMask gives us (that we care
2946           about) is DestroyNotify.  The code is already structured such
2947           that it assumes we won't be getting a DestroyNotify event for
2948           the window we pass to XDestroyWindow (which is what
2949           StructureNotifyMask is supposed to guarantee.)  So, that code
2950           shouldn't be affected by this either.
2952         - Stop selecting VisibilityChangeMask altogether.
2954           We weren't doing anything with the resulting events anyway.
2955         
2956         This vastly reduces the number of X requests and events we see
2957         when resizing/laying out a large ui.
2959 2006-10-06  Chris Toshok  <toshok@ximian.com>
2961         * ScrollableControl.cs (DisplayRectangle): we need to take into
2962         account the DockPadding regardless of whether or not auto_scroll
2963         == true.  rework this slightly to this effect, and fix bug #79606,
2964         and part of #72499 (you can now see the drag handles and drag
2965         toolbars around).
2967 2006-10-06  Gert Driesen  <drieseng@users.souceforge.net>
2969         * ListViewItem.cs: Collections of selected and checked items are now
2970         dynamically rebuilt. Whenever an item is (un)checked or (de)selected
2971         we mark the collection "dirty".
2972         * ListView.cs: Marked collections readonly. Modified UpdateSelection
2973         to only clear SelectedItems when a new item is selected and MultiSelect
2974         is enabled. CheckedItems and SelectedItems now subscribe to Changed
2975         event of ListViewItemCollection, and mark its list dirty whenever
2976         that event is fire. This allows us to return selected/checked items 
2977         in the same order as they are in the Items collection. This matches
2978         the MS behavior.
2980 2006-10-06  Chris Toshok  <toshok@ximian.com>
2982         * NotifyIcon.cs (HandleMouseUp): only show the context menu on
2983         right mouse clicks.  Fixes bug #79593.
2985 2006-10-06  Chris Toshok  <toshok@ximian.com>
2987         * Splitter.cs: doh, fix splitters that don't want to cancel the
2988         movement when you drag them.  Also, impose the limits on the
2989         values we send to the SplitterMovingEvent.  Fixes #79598.
2991 2006-10-06  Jackson Harper  <jackson@ximian.com>
2993         * TextBoxBase.cs: Ignore whether or not the scrollbar is enabled,
2994         since we use this for auto scrolling also.
2996 2006-10-05  Chris Toshok  <toshok@ximian.com>
2998         * DataGridBoolColumn.cs: Nuke the code from ConcedeFocus.  I'm
2999         beginning to think that most datagrid column types don't need this
3000         method.  Fixes bug #79392.
3002 2006-10-05  Chris Toshok  <toshok@ximian.com>
3004         * DataGrid.cs: move back to a more lazy scheme for creating the
3005         CurrencyManager, so we aren't updating it every time you set
3006         either DataSource or DataMember.  Also, don't call
3007         RecreateDataGridRows if the currency manager hasn't changed.
3009 2006-10-05  Chris Toshok  <toshok@ximian.com>
3011         * ComboBox.cs: by the time the OnSelectionChangeCommitted event is
3012         emitted, SelectedIndex should already be updated.  Fixes bug
3013         #78929.
3015 2006-10-05  Jonathan Pobst  <monkey@jpobst.com>
3017         * ToolStripComboBox.cs, ToolStripControlHost.cs, ToolStripProgressBar,
3018           ToolStripTextBox.cs: Initial commit.
3019         * ToolStripItem.cs: Fixes for OnLayout, BackColor, Parent.
3021 2006-10-05  Jackson Harper  <jackson@ximian.com>
3023         * TabControl.cs: We need to invalidate the tab control area when
3024         new ones are added (duh).
3026 2006-10-03  Chris Toshok  <toshok@ximian.com>
3028         * Form.cs (ProcessDialogKey): if the focused control is in this
3029         form and is a button, call its PerformClick method here.  Fixes
3030         #79534.
3032 2006-10-04  Jackson Harper  <jackson@ximian.com>
3034         * TabPage.cs: Ignore setting of Visible, and add an internal
3035         method for setting the controls visibility.  TabPage's Visible
3036         property is a little strange on MS, this seems to make us
3037         compatible, and fixes cases where people set all the tab pages to
3038         visible.
3039         * TabControl.cs: Use the new internal setting on tab pages
3040         visibility.
3042 2006-10-03  Mike Kestner  <mkestner@novell.com>
3044         * ComboBox.cs : raise Click on ComboTextBox clicks. Fixes #79555.
3046 2006-10-03  Mike Kestner  <mkestner@novell.com>
3048         * ListView.cs : use is_visible instead of Visible to check if 
3049         scrollbars should be placed/sized.  Also some max_wrap_width
3050         love for LargeIcon view.  [Fixes #79533]
3052 2006-10-03  Atsushi Enomoto  <atsushi@ximian.com>
3054         * TextControl.cs :
3055           Make set_TextAlign() do actually update the align. Fixed #78403.
3057 2006-10-03  Chris Toshok  <toshok@ximian.com>
3059         * DataGrid.cs: fix a crash when switching datasources if the
3060         vertical scrollbar is at someplace other than Value = 0.  Also,
3061         reduce the number of recalculation passes we do in SetDataSource
3062         from 2 to 1.
3064 2006-10-03  Jackson Harper  <jackson@ximian.com>
3066         * TextBoxBase.cs: Move the if value the same bail check up, we
3067         don't want to empty the document if it is already empty, this
3068         seems to severly mess up the caret.  TODO: I should probably fix
3069         the empty statement to update teh caret somehow.
3071 2006-10-03  Chris Toshok  <toshok@ximian.com>
3073         * ThemeWin32Classic.cs, DataGrid.cs: some changes so that the
3074         incredibly hacky Windows.Forms FAQ autosize rows entry (it uses
3075         reflection, an internal row type, properties on said type, etc.)
3076         will work with our datagrid.  Fixes #79531.
3078 2006-10-03  Alexander Olk  <alex.olk@googlemail.com>
3080         * FileDialog.cs: Don't crash if a path is not accessible
3081           (System.UnauthorizedAccessException). Fixes #79569.
3082         * MimeIcon.cs: Workaround for a Uri bug. Unix paths/files can have
3083           a ':' too. Return unknown icon for those paths/files.
3085 2006-10-03  Sebastien Pouliot  <sebastien@ximian.com>
3087         * ToolTip.cs: Fix rare, but possible, NRE on MouseEnter when 
3088         GetContainerControl returns null.
3090 2006-10-02  Chris Toshok  <toshok@ximian.com>
3092         * XplatUIX11.cs (GetWindowState): use hwnd.client_window in the
3093         call to XGetWindowAttributes instead of "handle".  fixes an X
3094         error using notifyicon after the NotifyIconWindow to Form base
3095         class switch.
3097 2006-10-02  Chris Toshok  <toshok@ximian.com>
3099         * XplatUIX11.cs (QueryPointer): new function, encapsulating the
3100         server grab and looping we need to do to get down to the most
3101         deeply nested child window.
3102         (SetCursorPos): use QueryPointer instead of GetCursorPos, and call
3103         QueryPointer again after the WarpPointer so we can generate a
3104         proper (fake) MotionNotify event to be enqueued in the destination
3105         window's queue.
3106         (GetCursorPos): call QueryPointer.
3108         Fixes #79556.
3110 2006-10-02  Jackson Harper  <jackson@ximian.com>
3112         * NotifyIcon.cs: Derive the notify icon from a form, so things
3113         like FindForm work on it.
3114         - Swallow the WM_CONTEXTMENU message, since that is generated on
3115         mouse down, and context menu is a mouse up kinda guy.  I believe
3116         the correct fix here is probably to make the notify icon entirely
3117         NC area, but this seems to work fine for anyone not manipulating
3118         WndProc.
3120 2006-10-02  Jonathan Pobst  <monkey@jpobst.com>
3122         * ToolStrip.cs, ToolStripButton.cs, ToolStripItem.cs,
3123           ToolStripItemCollection.cs, ToolStripLabel.cs,
3124           ToolStripProfessionalRenderer.cs, ToolStripRenderer.cs,
3125           ToolStripSeparator.cs, ToolStripSplitStackLayout.cs:
3126           Initial implementation.
3127         * TextRenderer.cs: Provide padding to MeasureText.
3129 2006-10-02  Sebastien Pouliot  <sebastien@ximian.com>
3131         * ButtonBase.cs: Fix CreateAccessibilityInstance to return an instance
3132         of ButtonBaseAccessibleObject. Fix bug #79552.
3134 2006-10-02  Jackson Harper  <jackson@ximian.com>
3136         * MdiWindowManager.cs: When maximizing use the containers client
3137         rect, not it's bounds, so nc area is accounted correctly.
3138         - Use the parent form's size for the menu position, since the
3139         client isn't always the full form size.
3141 2006-10-01  Chris Toshok  <toshok@ximian.com>
3143         * ScrollableControl.cs: make sure neither right_edge or
3144         bottom_edge are < 0, since they're used as LargeChange for the
3145         horiz/vert scrollbars respectively.  Fixes #79539.
3147 2006-10-01  Chris Toshok  <toshok@ximian.com>
3149         * NotifyIcon.cs: add NotifyIconWindow.InternalRecreateHandle, so
3150         the xplatuix11 code can cause us to destroy/recreate our handle.
3152         * XplatUIX11.cs
3153         (SystrayAdd):
3154         - this code can be invoked many times for the same Hwnd.  Make
3155           sure we only destroy the client window once (the first time this
3156           method is called).  This fixes bug #79544.
3157         - Remove the call to the improperly bound XSync.  why we had two
3158           bindings to this, I will never know, but this call resulted in
3159           events being discarded from the queue(!).
3160         - correct a misunderstanding of _XEMBED_INFO - the second atom is
3161           not our current state but the state we wish to be in.  So, 0 if
3162           we don't want to be mapped.  Change it to 1.
3163         (SystrayRemove): The XEMBED spec makes mention of the fact that
3164         gtk doesn't support the reparent of client windows away from the
3165         embedder.  Looking at gtksocket-x11.c seems to agree with this.
3166         The only avenue we have for removing systray icons is to destroy
3167         them.  We don't want the handle to go away for good, though, so
3168         call InternalRecreateHandle on the NotifyIconWindow.  Fixes
3169         #79545.
3170         
3171 2006-10-01  Chris Toshok  <toshok@ximian.com>
3173         * Form.cs (WndProc): inline the native_enabled variable usage into
3174         the cases in which it's used.  Fixes #79536.
3176 2006-09-29  Mike Kestner  <mkestner@novell.com>
3178         * ListView.cs : toggle the selection state for ctrl clicks in 
3179         multiselect mode. [Fixes #79417]
3181 2006-09-29  Mike Kestner  <mkestner@novell.com>
3183         * ListView.cs : kill CanMultiSelect and refactor the selection
3184         code to support multiselection in the absence of mod keys. Steal
3185         arrow/home/end keys by overriding InternalPreProcessMessage to
3186         restore regressed keynav behavior.
3187         [Fixes #79416]
3189 2006-09-29  Jackson Harper  <jackson@ximian.com>
3191         * MdiClient.cs: Repaint the titlebars when the active window is
3192         changed.
3194 2006-09-29  Chris Toshok  <toshok@ximian.com>
3196         * Application.cs: when entering a runloop with a modal, make sure
3197         the hwnd is enabled.  Fixes #79480.
3199 2006-09-29  Chris Toshok  <toshok@ximian.com>
3201         * DataGrid.cs (CurrentCell): if we try to navigate to the add row
3202         when ListManager.CanAddRows == false, bump us back one.
3204         * DataGridColumnStyle.cs (ParentReadOnly): remove the
3205         listmanager.CanAddRows check.  This makes ArrayLists uneditable
3206         using a datagrid, which is not right.
3207         (SetColumnValueAtRow): call IEditable.BeginEdit if source[rowNum]
3208         is an IEditable, but call property_descriptor.SetValue regardless.
3209         fixes #79435.
3211 2006-09-29  Chris Toshok  <toshok@ximian.com>
3213         * DataGridBoolColumn.cs: we need to test equality in the face of
3214         possible null values (as is the case with the default NullValue).
3215         This patch keeps us from crashing in that case.
3217 2006-09-29  Jackson Harper  <jackson@ximian.com>
3219         * TreeNodeCollection.cs: Don't do a recalculate/updatescrollbars
3220         here, since it will get called for every node collection in the
3221         tree. This is now done in the treeview once the sorting is
3222         finished.
3223         * TreeView.cs: Recalculate the visible order, and update the
3224         scrollbars after sorting, set the top nope to the root so that the
3225         recalc actually works.
3227 2006-09-29  Chris Toshok  <toshok@ximian.com>
3229         * LinkLabel.cs: more handling of the default link collection in
3230         the face of LinkArea manipulation.  The default link collection
3231         contains 1 element (start=0,length=-1).  If the user sets LinkArea
3232         to anything and the links collection is the default, clear it.
3233         Then only add the link if its nonempty.  Fixes #79518.
3235 2006-09-29  Chris Toshok  <toshok@ximian.com>
3237         * LinkLabel.cs (CreatePiecesFromText): calculate the length of a
3238         piece correctly when we hit a '\n'.  Fixes #79517.
3240 2006-09-29  Chris Toshok  <toshok@ximian.com>
3242         * MimeIcon.cs, ThemeGtk.cs, X11DesktopColors.cs, XplatUIX11GTK.cs:
3243         change the binding of gdk_init_check to take two IntPtr's, and
3244         pass IntPtr.Zero for both of them.  Fixes #79520.
3246 2006-09-29  Mike Kestner  <mkestner@novell.com>
3248         * ComboBox.cs : raise TextChanged on ComboTextBox.TextChanged.
3249         [Fixes #78779]
3251 2006-09-28  Jackson Harper  <jackson@ximian.com>
3253         * XplatUIX11.cs: When translating NC messages make sure we go from
3254         whole window to screen, not client window to screen.
3255         * MdiClient.cs: Remove the calls to PaintWindowDecorations, this
3256         method doesn't exist
3257         - Skip over controls that aren't forms when arranging.
3259 2006-09-28  Jackson Harper  <jackson@ximian.com>
3261         * XplatUIWin32.cs: Clip the rect to the parent window.
3262         * XplatUIStructs.cs: Add clipping modes struct.
3263         * InternalWindowManager.cs: New private method that factors title
3264         bar heights in when calculating the pos of an NC mouse message.
3265         - Use SendMessage to force a paint when the form's size is changed
3266         instead of painting the decorations immediately.
3267         - Don't let the NC button click messages get to DefWndProc,
3268         because they will attempt to handle windowing themself, and this
3269         messes up z-order (it will put them in front of the scrollbars).
3270         * XplatUIX11.cs: Make sure that we don't reset window managers if
3271         we already have one (ie the window is an MDI window).
3273 2006-09-28  Chris Toshok  <toshok@ximian.com>
3275         * MainMenu.cs: fix #79405 by way of a disgusting hack.  all the
3276         menu code really needs going over.
3278 2006-09-27  Chris Toshok  <toshok@ximian.com>
3280         * XplatUIX11.cs (SetWMStyles): more metacity wonderment.  turns
3281         out metacity ignores the MAXIMIZE_HORZ/VERT messages unless the
3282         window is maximizable.  So, we need to make sure that even if we
3283         clear the border/wm frame of those functions, they're still
3284         available (basically, we remove the decoration without removing
3285         the function).  Half the fix for #79338.
3287 2006-09-27  Chris Toshok  <toshok@ximian.com>
3289         * DataGrid.cs (ProcessGridKey): implement Shift-Tab handling.
3290         Fixes bug #79515.
3292 2006-09-27  Chris Toshok  <toshok@ximian.com>
3294         * Splitter.cs: reorder things a bit so that we don't actually
3295         draw/move the splitter until after calling OnSplitterMoving.  This
3296         lets users cancel/disallow the movement by explicitly setting
3297         event.SplitX/SplitY.  Fixes #79372.
3299 2006-09-27  Jackson Harper  <jackson@ximian.com>
3301         * XplatUIX11.cs: Don't hide the caret when it is being destroyed,
3302         because it is most likely on a window being destroyed, and that
3303         will give us an X11 error.
3305 2006-09-27  Chris Toshok  <toshok@ximian.com>
3307         * PropertyGridView.cs: half of the fix for #78190.  Clicking on
3308         the dropdown button now toggles between showing and hiding the
3309         dropdown.  Also, get rid of dropdown_form_showing and just use
3310         dropdown_form.Visible.  We still don't do a grab, but I'll leave
3311         that part to someone who has handled Capture-fu before.
3313 2006-09-27  Chris Toshok  <toshok@ximian.com>
3315         * DataGrid.cs: return false if alt isn't pressed when '0' is
3316         pressed.  this keeps the '0' key from being swallowed, and fixes
3317         bug #79350.
3319 2006-09-27  Chris Toshok  <toshok@ximian.com>
3321         * ComboBox.cs: use Invalidate when scrolling the dropdown list.
3322         Calling Refresh (in response to a scrollbar event) screws up the
3323         scrollbar painting.  Fixes bug #78923.
3325 2006-09-27  Chris Toshok  <toshok@ximian.com>
3327         * Theme.cs (SystemResPool): make the "if hashtable[key] == null
3328         then insert into hashtable" blocks threadsafe.
3330 2006-09-27  Chris Toshok  <toshok@ximian.com>
3332         * MessageBox.cs (CreateParams): the styles should be |'ed with our
3333         baseclass's, since otherwise the
3334         ControlBox/MinimizeBox/MaximizeBox assignments above have no
3335         effect.  This gets the close button back in messageboxes.
3337 2006-09-27  Chris Toshok  <toshok@ximian.com>
3339         * XplatUIX11.cs: make StyleSet and ExStyleSet check == with the
3340         flag, not just != 0.  this makes flags that are actually multiple
3341         bits (like WS_CAPTION) work.  fixes bug #79508.
3343 2006-09-27  Jordi Mas i Hernandez <jordimash@gmail.com>
3345         * PageSetupDialog.cs: add support for getting and settings the 
3346         paper size, source and orientation.
3348 2006-09-26  Chris Toshok  <toshok@ximian.com>
3350         * XplatUIX11.cs (SetWMStyles): turns out when SYSMENU is not set
3351         and caption == "", we need to remove the resize handles as well as
3352         the title bar.
3354         * Control.cs (set_Text): turns out that setting Text on a form
3355         should change the WM styles on the window, since if ControlBox ==
3356         false, the only way to get a window border is to have a non-""
3357         Text property.  check winforms/forms/text.cs for an example.  so,
3358         call both XplatUI.SetWindowStyle and XplatUI.Text here to properly
3359         update both window styles and title.  This fixes a lot of dialogs
3360         (including the preferences dialog in MonoCalendar.)
3362 2006-09-26  Chris Toshok  <toshok@ximian.com>
3364         * XplatUIWin32.cs (SetParent): if parent == IntPtr.Zero (and the
3365         control isn't a Form), call Win32ShowWindow to hide the window,
3366         but don't update the control Visible property.  When we reparent
3367         back to a parent control, call SetVisible in order for the
3368         window's visibility to be reinstated.
3370         * XplatUIX11.cs (SetParent): if hwnd.parent == null, reparent to
3371         the FosterParent.
3373         * Control.cs (ControlCollection.Remove): remove that value.Hide()
3374         call for good, since it breaks MonoCalendar (and other things I'm
3375         sure.) Also, set all_controls to null *after* the owner calls,
3376         which end up regenerating it.
3377         (ChangeParent): allow new_parent to be == null, passing
3378         IntPtr.Zero down to XplatUI.
3380         this fixes #79294 the right way.
3382 2006-09-26  Mike Kestner  <mkestner@novell.com>
3384         * GridEntry.cs : internal SetParent method.
3385         * PropertyGrid.cs : attach to property changed on the proper
3386         target if we have a hierarchical grid with subobjects. Setup
3387         GridItem.Parent for hierarchical items.
3388         * PropertyGridView.cs : Set value on the correct target for
3389         hierarchical grids. [Fixes #78903]
3391 2006-09-26  Chris Toshok  <toshok@ximian.com>
3393         * Control.cs (ChildNeedsRecreating): this should return true if
3394         either we're being recreated and the child is in our list, or our
3395         parent is waiting for our recreation.
3397 2006-09-26  Chris Toshok  <toshok@ximian.com>
3399         * Control.cs (ControlCollection.Remove): reinstate the
3400         value.Hide() call as suggested in bug #79294.
3402 2006-09-26  Sebastien Pouliot  <sebastien@ximian.com>
3404         * XplatUIX11.cs: Fixed SetCursorPos to move the cursor to screen
3405         coordinates (versus a relative move).
3407 2006-09-26  Chris Toshok  <toshok@ximian.com>
3409         * Control.cs: rework child recreation a little bit.  It turns out
3410         that we race between the DestroyNotify the WM_DESTROY message.  If
3411         the parent gets its DestroyNotify before the child gets the
3412         WM_DESTROY message, the child ends up not recreating (since the
3413         parent finishes its recreation on DestroyNotify, and the child
3414         checks ParentIsRecreating.)
3416         So, instead we store off a list of all the child controls which
3417         need to be recreated when the parent control starts to recreate
3418         itself.  Then, when child controls get their WM_DESTROY message we
3419         check to see if they're in the parent's pending recreation list,
3420         and if so, we recreate.  This removes all dependency on ordering
3421         from the code and fixes the initial MonoCalendar upgrade dialog.
3422         
3423 2006-09-26  Jackson Harper  <jackson@ximian.com>
3425         * TextControl.cs: Use the Line to get the length of the line,
3426         since soft line breaks can change the end line.
3428 2006-09-26  Chris Toshok  <toshok@ximian.com>
3430         * Control.cs (ControlCollection.AddImplicit): don't add the
3431         control again if it's already in one of our lists.  This keeps us
3432         from adding controls over and over again for comboboxes when their
3433         handle gets recreated (as the combobox adds implicit controls in
3434         OnHandleCreated).  Fixes the X11 errors in bug #79480.
3436 2006-09-26  Jackson Harper  <jackson@ximian.com>
3438         * TextControl.cs: When deleting characters make sure that any
3439         orphaned zero lengthed tags get deleted.
3440         - Fix ToString for zero lengthed tags.
3442 2006-09-25  Jackson Harper  <jackson@ximian.com>
3444         * TextControl.cs: When getting a tag at the location there can be
3445         multiple tags at the same spot, these are 0-lengthed tags that
3446         appear when extra formatting has been stuck in a location.  We
3447         need to pull out the last of these 0 lengthed tags.
3449 2006-09-25  Jackson Harper  <jackson@ximian.com>
3451         * TextControl.cs: Fix print out in debug method.
3452         * TextBoxBase.cs: When text is set bail if we are setting to the
3453         previous value.
3454         
3455 2006-09-24  Alexander Olk  <alex.olk@googlemail.com>
3457         * FontDialog.cs: Fixed the up/down arrow keys issue from bug #79478.
3458           It is now possible to change the selected index in a FontXXXListBox
3459           with the up and down arrow keys from the FontXXXTextBoxes.
3460           Also, send the FontXXXTextBox mouse wheel event to the corresponding
3461           FontXXXListBoxes to match ms.
3463 2006-09-22  Sebastien Pouliot  <sebastien@ximian.com>
3465         * SystemInformation.cs: Return a clone of the theme's MenuFont because
3466         anyone can dispose it, anytime. All other properties returns enums, 
3467         structs or basic types so they don't need such tricks.
3469 2006-09-22  Jackson Harper  <jackson@ximian.com>
3471         * XplatUI.cs:
3472         * XplatUIWin32.cs:
3473         * Clipboard.cs:
3474         * DataFormats.cs:
3475         * XplatUIOSX.cs:
3476         * XplatUIDriver.cs: Update interface to add a primary selection
3477         flag, so the driver can use the primary selection buffer if
3478         needed.
3479         * XplatUIX11.cs: Allow the clipboard to retrieve from PRIMARY.
3481         * RichTextBox.cs: We need to supply the data object to paste now
3482         (so we can choose to supply CLIPBOARD or PRIMARY).
3483         * TextBoxBase.cs: Supply data object to paste (see above).
3484         - Middle click uses the primary selection data object.
3485         
3486 2006-09-21  Chris Toshok  <toshok@ximian.com>
3488         * XplatUIX11.cs: first little cleanup of the StyleSet (...) block
3489         of SetWMStyles.  It's still a rat's nest and is largely
3490         order-dependent which I dislike immensely.  This also fixes the X
3491         button disappearing from toplevel forms.
3493 2006-09-21  Mike Kestner <mkestner@novell.com>
3495         * ListBox.cs: move Jordi's click/dblclick raising code to the
3496         mouse up handler.
3498 2006-09-21  Jordi Mas i Hernandez <jordimash@gmail.com>
3500         * ListBox.cs: Fixes 79450
3502 2006-09-21  Mike Kestner <mkestner@novell.com>
3504         * TreeView.cs: guard against disposed conditions in UpdateScrollbars
3505         to deal with people updating the TreeNodeCollection after the tree
3506         is disposed.  "Fixes" 79330.
3508 2006-09-20  Jackson Harper <jackson@ximian.com>
3510         * TextControl.cs: Push the cursor record onto the undo stack
3511         before the delete action. This fixes 78651.
3513 2006-09-20  Jonathan Chambers  <joncham@gmail.com>
3515         * PropertyGridView.cs: Remove WindowStyles.WS_VISIBLE from
3516         CreateParams. Fixes 79329.
3518 2006-09-19  Chris Toshok  <toshok@ximian.com>
3520         * XplatUIX11.cs: a couple of blanket code massage passes to clean
3521         things up a bit.  First, get rid of the NetAtoms array (and the NA
3522         enum), and just embed the atoms as static fields.  Also, add a
3523         couple of functions (StyleSet and ExStyleSet) to clean up all the
3524         bitmask testing of styles.
3526         * X11Structs.cs: remove the NA enum, not needed anymore.
3527         
3528 2006-09-19  Chris Toshok  <toshok@ximian.com>
3530         * XplatUIX11.cs: apply Alexander's tool window fix for bug #79245
3531         (mapping them to _NET_WM_WINDOW_TYPE_UTILITY).  and add a little
3532         added cleanup to get MessageBox titles appearing again, which were
3533         broken by my earlier fix for caption-less/ControlBox-less windows.
3535 2006-09-18  Jonathan Pobst <monkey@jpobst.com>
3537         * ToolStripArrowRenderEventArgs.cs, ToolStripArrowRenderEventHandler.cs,
3538           ToolStripContentPanelRenderEventArgs.cs, ToolStripContentPanelRenderEventHandler.cs,
3539           ToolStripGripRenderEventArgs.cs, ToolStripGripRenderEventHandler.cs,
3540           ToolStripItemClickedEventArgs.cs, ToolStripItemClickedEventHandler.cs,
3541           ToolStripItemEventArgs.cs, ToolStripItemEventHandler.cs,
3542           ToolStripItemImageRenderEventArgs.cs, ToolStripItemImageRenderEventHandler.cs,
3543           ToolStripItemRenderEventArgs.cs, ToolStripItemRenderEventHandler.cs,
3544           ToolStripItemTextRenderEventArgs.cs, ToolStripItemTextRenderEventHandler.cs,
3545           ToolStripPanelRenderEventArgs.cs, ToolStripPanelRenderEventHandler.cs,
3546           ToolStripRenderEventArgs.cs, ToolStripRenderEventHandler.cs,
3547           ToolStripSeparatorRenderEventArgs.cs, ToolStripSeparatorRenderEventHandler.cs:
3548             Inital import.
3549         * ToolStripPanel.cs, ToolStripContentPanel.cs, ToolStripSeparator.cs,
3550           ToolStripButton.cs: Stubs needed for above.
3551         * ToolStrip.cs, ToolStripItem.cs: Stub a few variables/properties for above.
3553 2006-09-15  Chris Toshok  <toshok@ximian.com>
3555         * XplatUIX11.cs:
3556         - make the MessageQueues hashtable Synchronized.
3557         
3558         - SendMessage: if the Hwnd is owned by a different thread, use the
3559         AsyncMethod stuff to dispatch the SendMessage on the hwnd's
3560         thread.  Fixes bug #79201.
3562 2006-09-15  Chris Toshok  <toshok@ximian.com>
3564         * XplatUIX11.cs (SetWMStyles): rework the #79368 fix slightly.  If
3565         ControlBox == false, we disallow maximize/minimize/close.  If the
3566         form Caption is "" we also disallow move (and get rid of the Title
3567         decoration).  Unfortunately, regardless of how things are set,
3568         we're stuck with the Title and WM menu.
3570 2006-09-15  Chris Toshok  <toshok@ximian.com>
3572         * Application.cs: add locking around the static message_filters
3573         ArrayList, part of #79196.
3575 2006-09-15  Chris Toshok  <toshok@ximian.com>
3577         * XplatUIX11.cs (SetWMStyles): if Form.Text == "" and
3578         Form.ControlBox == false, the window has no titlebar nor resize
3579         handles.  fixes bug #79368.
3581 2006-09-15  Chris Toshok  <toshok@ximian.com>
3583         * TextBoxBase.cs: in CalculateScrollBars make sure LargeChange is
3584         >= 0.  Fixes bug #79370.
3586 2006-09-15  Jonathan Pobst <monkey@jpobst.com>
3587         * FlowLayoutPanel.cs, FlowLayoutSettings.cs: Initial commit.
3588         * Control.cs:
3589             Add properties: LayoutEngine, Margin, DefaultMargin.
3590             Add method: GetPreferredSize.
3591             Move layout logic from PerformLayout to layout engines. 
3593 2006-09-13  Chris Toshok  <toshok@ximian.com>
3595         * XplatUIX11.cs: more destroy work.  Jackson pointed out that my
3596         fix for #79326 broke #78718, so this change addresses that.
3598         - in SendWMDestroyMessages remove the call to
3599         CleanupCachedWindows, since we might be recreating the control and
3600         need to maintain the references to right Hwnd handles.  Also, set
3601         the zombie flag to true for each of the children in the hierarchy
3602         instead of calling hwnd.Dispose.  This will cause GetMessage to
3603         ignore all events for the window except for DestroyNotify.
3605         - In GetMessage, ignore messages except for DestroyNotify for
3606         zombie hwnds.
3607         
3608         * Control.cs: revert the is_recreating fix from the last
3609         ChangeLog.  It's definitely "right", but it breaks switching from
3610         an MDI form to a non-MDI form.  Will need to revisit that.
3612         * Hwnd.cs: add a zombie flag, which means "the
3613         client_window/whole_window handles are invalid, but we're waiting
3614         for the DestroyNotify event to come in for them".  Set the flag to
3615         false explicitly if setting WholeWindow/ClientWindow, and also
3616         when Disposing.
3617         
3618 2006-09-13  Chris Toshok  <toshok@ximian.com>
3620         * XplatUIX11.cs: rework window destruction slightly.
3622         - when destroying the windows associated with a control, we don't
3623         need 2 separate XDestroyWindow calls.  Just the one for the
3624         whole_window (or for client_window if whole_window is somehow
3625         IntPtr.Zero -- can this happen?) is enough.
3627         - reworked SendWMDestroyMessages slightly, so we always dispose
3628         the child control hwnd's after sending the messages.
3629         
3630         - refactored out the ActiveWindow/FocusWindow/Caret clearing from
3631         the two places it was used (one was even using hwnd.Handle and the
3632         other hwnd.client_window.  ugh), adding another call in
3633         SendWMDestroyMessages.  We need this new call because now the
3634         DestroyNotify events in the queue will be ignored for the child
3635         controls (as their hwnd's were disposed, and the window id's
3636         removed from the hashtable in SendWMDestroyMessages.) fun, eh?
3638         - this fixes bug #79326.
3640 2006-09-13  Chris Toshok  <toshok@ximian.com>
3642         * Control.cs: don't always set is_recreating to false at the end
3643         of RecreateHandle, since sometimes we're not done (and won't be
3644         until WndProc handles the WM_DESTROY message).  Also, set
3645         is_recreating to false in the WM_DESTROY handling code.  Part of
3646         the fix for bug #79326.
3648 2006-09-13  Miguel de Icaza  <miguel@novell.com>
3650         * X11DesktopColors.cs: Start the droppage of debugging messages.
3652         * FileDialog.cs: Store the configuration file in ~/.mono/mwf_config
3654 2006-09-13  Jonathan Pobst <monkey@jpobst.com>
3656         * SplitContainer.cs, SplitterPanel.cs: Initial implementation [2.0].
3658 2006-09-12  Chris Toshok  <toshok@ximian.com>
3660         * DataGrid.cs (get_ListManager): if the list_manager is null, try
3661         to create it using SetDataSource.  Fixes bug #79151.
3663 2006-09-11  Chris Toshok  <toshok@ximian.com>
3665         * XEventQueue.cs: add a DispatchIdle property.
3667         * XplatUIX11.cs (UpdateMessageQueue): only emit the Idle event if
3668         either the queue is null, or the queue has DispatchIdle set to
3669         true.
3670         (DoEvents): set queue.DispatchIdle to false around the
3671         peek/translate/dispatch message loop in this method.  This keeps
3672         Application.Doevents from emitting idle events.  Part of the fix
3673         for #78823.
3675 2006-09-11  Chris Toshok  <toshok@ximian.com>
3677         * DataGrid.cs (set_DataSource): make this work for both the
3678         winforms/datagrid test and ReportBuilder.  It seems as though when
3679         we've created a ListManager (or maybe it's if we have a
3680         BindingContext?), when we set the DataSource it clears the
3681         DataMember to "".  otherwise we reuse the datamember.  Fixes bug
3682         #79333.
3684 2006-09-11  Chris Toshok  <toshok@ximian.com>
3686         * XplatUIX11.cs: deal with queue being null, which happens in all
3687         the Clipboard functions.  Fixes one of the two problems mentioned
3688         in #78612.
3690 2006-09-11  Chris Toshok  <toshok@ximian.com>
3692         * MenuAPI.cs: rework OnMouseUp a bit so that releasing the mouse
3693         button on various spots (including outside the menu) works closer
3694         to MS, and doesn't crash.  Fixes #79343.
3696 2006-09-11  Gert Driesen  <drieseng@users.sourceforge.net>
3698         * ListView.cs: Do not initialize item_sorter in init. To match MS,
3699         return null for ListViewItemSorter if View is SmallIcon or LargeIcon
3700         and the internal comparer is set. When a new ListViewItemSorter is set,
3701         sort the items. Use Enum.IsDefined to verify whether a valid SortOrder
3702         was specified. No further processing is necessary if SortOrder is set
3703         to it's current value. If Sorting is modified to None, and View is
3704         neither SmallIcon nor LargeIcon then: on 2.0 profile set item_sorter
3705         (either custom or our internal ItemComparer) to null, on 1.0 profile
3706         only set item_sorter to null if its our internal IComparer. If Sorting
3707         is modified to Ascending or Descending, then use our internal IComparer
3708         if none is set, and if the current IComparer is our internal one then:
3709         on 2.0 profile always replace it with one for new Sorting, and on 1.0
3710         profile only use new Sorting if view is not SmallIcon or LargeIcon. Use
3711         Enum.IsDefined to verify whether a valid View value is specified in
3712         its setter. Automatically sort listview items when listview is
3713         created. In Sort, do nothing if ListView is not yet created, or if
3714         no item_sorter is set (no Sorting was set, Sorting was explicitly set
3715         to None or ListViewItemSorter was set to null). Added Sort overload
3716         taking a bool to indicate whether the ListView should be redrawn when
3717         items are sorted (we use this in ListViewItemCollection to avoid double
3718         redraws). Modified our internal IComparer to take the sort order into
3719         account. In Add and AddRange methods of ListViewItemCollection, also
3720         call Sort if Sorting is None (necessary for SmallIcon and LargeIcon
3721         view), but use overload with noredraw option to avoid double redraw.
3722         On 2.0 profile, throw NotSupportedException when setting CheckBoxes to
3723         true when View is Tile, and do the same when attempting to set View to
3724         Tile when CheckBoxes is true. Avoid maintaining separate ArrayLists
3725         for selected/checked indices, as it involves overhead when sorting is
3726         done while these collections are not used all that often. Instead
3727         we'll build the indices on demand. Modified IList implementation of
3728         CheckedIndexCollection to use public methods if object is int.
3729         Modified CheckedListViewItemCollection to hide checked items if
3730         ListView.CheckBoxes is false. Removed LAMESPEC remark in 
3731         ListViewItemCollection as the .NET SDK docs have been fixed. Modified
3732         IList implementation in SelectedIndexCollection to use public methods
3733         if object is int. Modified SelectedListViewItemCollection to hide
3734         selected items if listview is not yet created.
3735         * ListViewItem.cs: CheckedIndices list no longer needs to be
3736         maintained separately (see ListView changes). Also clone font, fixes
3737         test failure.
3739 2006-09-11  Mike Kestner  <mkestner@novell.com>
3741         * ComboBox.cs: if we are updating the contents of the currently
3742         selected index, refresh the control or the textbox selection.
3743         [Fixes #79066]
3745 2006-09-11  Mike Kestner  <mkestner@novell.com>
3747         * ComboBox.cs (UpdateBounds): use SetBounds not SetBoundsCore since 
3748         the 'specified' logic has been moved there.  This seems like a bug 
3749         in Control.cs, since our current SetBoundsCore completely ignores 
3750         the specified parameter.  Peter's commit seems to indicate that is 
3751         the way the MS control implementation works.  [Fixes #79325]
3753 2006-09-10  Jonathan Chambers  <joncham@gmail.com>
3755         * XplatUI.cs: Set default_class_name to be composed
3756         of current domain id. This allows MWF to be loaded in multiple
3757         domains on Win32.
3759 2006-09-09  Miguel de Icaza  <miguel@novell.com>
3761         * X11Keyboard.cs: If we are unable to obtain the input method, do
3762         not call CreateXic to create the input context.   Should fix
3763         #78944/79276.
3765 2006-09-08  Alexander Olk  <alex.olk@googlemail.com>
3767         * MimeIcon.cs: Rewrote major parts. Dropped KDE support for now.
3768           Simplified gnome support by adding more pinvokes to get the
3769           icon for a file or mime type.
3771 2006-09-08  Jackson Harper  <jackson@ximian.com>
3773         * MenuAPI.cs: Deslect popup context menu items before closing the
3774         window, so that you don't see the previously selected item
3775         selected when you reopen the menu.
3776         * TextControl.cs: Update the cursor position even if we don't have
3777         focus.  This fixes typing in things like the ComboBox.  I'm not
3778         totally sure we should always set the visibility if we don't have
3779         focus, but couldn't find any corner cases where the cursor showed
3780         up when it shouldn't.
3782 2006-09-08  Chris Toshok  <toshok@ximian.com>
3784         * X11Keyboard.cs: In UpdateKeyState vkey can be any integer, but
3785         our arrays are length 256.  & 0xff before indexing.  Fixes the
3786         crash in bug #78077.
3787         
3788 2006-09-08  Carlos Alberto Cortez <calberto.cortez@gmail.com>
3790         * ThemeWin32Classic.cs: 
3791         * DateTimePicker.cs: Draw check box if DateTimePicker.ShowCheckBox
3792         is true. Handle that check box too.
3794 2006-09-07  Chris Toshok  <toshok@ximian.com>
3796         * MenuAPI.cs: move the PerformClick call to OnMouseUp.  Fixes bug
3797         79244.
3799 2006-09-07  Chris Toshok  <toshok@ximian.com>
3801         * Control.cs: in set_BackColor only do the work if
3802         background_color != value.
3804         * XplatUIX11.cs: move the clearing of invalid areas (both client
3805         and nc) to the same block of code where we set (nc_)expose_pending
3806         to false.  That is, move it from PaintEventEnd to PaintEventStart,
3807         so things that cause invalidates from within OnPaint will trigger
3808         another call to OnPaint.  Fixes bug #79262.
3810 2006-09-07  Alexander Olk  <alex.olk@googlemail.com>
3812         * Theme.cs: Use correct icon for UIIcon.PlacesPersonal
3813         * FileDialog.cs: Fix typo
3815 2006-09-07  Jackson Harper  <jackson@ximian.com>
3817         * ThemeWin32Classic.cs:  oops, forgot to commit.  Draw the images
3818         for tab pages if they have any.
3820 2006-09-06  Mike Kestner  <mkestner@novell.com>
3822         * Splitter.cs: use the "current" rect when finishing drag handle
3823         to avoid an artifact demonstrated by resedit.exe.  [Fixes #79251]
3825 2006-09-06  Mike Kestner  <mkestner@novell.com>
3827         * Splitter.cs: draw the drag handle at X or Y instead of 0 to deal
3828         support offset splitters. [Fixes #79298]
3830 2006-09-06  Alexander Olk  <alex.olk@googlemail.com>
3832         * Mime.cs: Fixed a bug that could override the global mime type
3833           result.
3835 2006-09-05  Jackson Harper  <jackson@ximian.com>
3837         * TabControl.cs: Better calculation method for setting the slider
3838         pos. Prevents crashes on really wide tabs.
3839         - Draw Image on tab pages if an image list is used.
3841 2006-09-02  Carlos Alberto Cortez <calberto.cortez@gmail.com>
3843         * MonthCalendar.cs: When Font changes, the Size should be
3844         updated to fit the new font's space requirements.
3846 2006-09-02  Alexander Olk  <alex.olk@googlemail.com>
3848         * ListBox.cs: If the items are cleared with Items.Clear set
3849           top_index to 0.
3851 2006-09-01  Carlos Alberto Cortez <calberto.cortez@gmail.com>
3853         * MonthCalendar.cs: Handle arrow keys as input keys. Also
3854         fire DateChanged event instead of DateSelected event when
3855         the date was changed by keyboard interaction.
3857 2006-09-01  Carlos Alberto Cortez <calberto.cortez@gmail.com>
3859         * DateTimePicker.cs: Handle DateChanged for the associated
3860         month_calendar control, and set month_calendar.Font from 
3861         OnFontChanged method, as well as resize the height of the
3862         control when needed. Make PreferredHeight proportional.
3864 2006-09-01  Chris Toshok  <toshok@ximian.com>
3866         * DataGrid.cs: grr, stop overthinking the DataMember/DataSource
3867         properties.
3869         * BindingContext.cs (HashKey.GetHashCode): use ^ instead of +.
3871 2006-09-01  Peter Dennis Bartok  <pbartok@novell.com> 
3873         * FileDialog.cs: Set ClientSize instead of window size, to allow space
3874           for decorations (Fixes #79219)
3876 2006-09-01  Mike Kestner  <mkestner@novell.com>
3878         * ComboBox.cs: first stab at sorting plus some selection handling
3879         fixes to bring us more in line with MS behavior.  Also switches back
3880         to index based selection.  Alternative patches for index-based 
3881         selection were provided by Jackson Harper, Carlos Alberto Cortez, 
3882         and latency@gmx.de on bug 78848.  I assume they were similar to this
3883         code I've had simmering in my tree forever.
3884         [Fixes #78848]
3886 2006-09-01  Chris Toshok  <toshok@ximian.com>
3888         * CurrencyManager.cs (ListChangedHandler): in the ItemAdded case,
3889         when setting list position guard against ending up with a -1 index
3890         (the other part of the fix for #78812).  Should probably make sure
3891         we don't need the analogous fix in the ItemDeleted case.
3893         * DataGrid.cs:
3894         - in SetDataSource, work around the fact that the way
3895         OnBindingContextChanged is invoked will cause us to re-enter this
3896         method.  I'll remove the hack once I investigate
3897         OnBindingContextChanged.
3899         - fix the logic in set_DataSource and set_DataMember (basically
3900         what to do if the other of the two is null.)
3901         
3902         - in OnListManagerItemChanged, we need to take into account the
3903         edit row when deciding whether or not to call RecreateDataGridRows
3904         (part of the fix for #78812).
3906 2006-09-01  Jackson Harper  <jackson@ximian.com>
3908         * Splitter.cs: Don't do anything if there is no control to affect
3909         (prevents us from crashing in weird tet cases).
3910         * TreeView.cs: Bounding box for the mouse movement reverting
3911         focus/selection back to previously selected node.  This matches
3912         MS, and makes the tree a lot more useable.
3913         * GroupBox.cs: Instead of drawing over the lines of the groupbox,
3914         use clipping so they are not drawn.  This fixes when the control
3915         is set to have a transparent background, or if it was over an
3916         image.
3918 2006-09-01  Alexander Olk  <alex.olk@googlemail.com>
3920         * MimeIcon.cs: Improved handling for reading default icons when
3921           using gnome (2.16 made it necessary). Check and read svg icons
3922           first, then 48x48 and then 32x32 icons.
3924 2006-08-31  Chris Toshok  <toshok@ximian.com>
3926         * DataGridTextBoxColumn.cs: only hide the textbox if it's still
3927         visible.
3929         * DataGridTextBox.cs: Pass Tab's up to the datagrid by calling
3930         ProcessKeyPreview.  Fixes part of #77806.
3932         * DataGrid.cs: big patch.
3934         - revert the queueing up of DataSource/DataMember if inside
3935         BeginInit/EndInit calls.  That's not the way the datagrid achieves
3936         its delayed databinding.  Instead, call SetDataSource in
3937         OnBindingContextChanged.  This mimic's MS's behavior, and fixes
3938         #78811.
3940         - Also, it wasn't mentioned in #78811, but the test case exhibits
3941         behavior that was lacking in our datagrid implementation - Columns
3942         that have mapping names that don't exist in the datasource's
3943         properties aren't shown.  Yuck.  To fix this I added the bound
3944         field to the column style, and basically any calculation to figure
3945         out anything about columns uses a loop to find the bound columns.
3946         still need to investigate if I can cache an array of the bound
3947         columns or if the indices must be the same.
3949         - When setting CurrentCell, we no longer abort if the cell being
3950         edited was in the add row.  This fixes the other part of #77806.
3952         - The new code also fixes #78807.
3953         
3954         * ThemeWin32Classic.cs: perpetrate the same disgusting
3955         column.bound field hack, and only render bound fields.
3957 2006-08-31  Chris Toshok  <toshok@ximian.com>
3959         * DataGridColumnStyle.cs: add bound field.  this field is true if
3960         the datasource has a property corresponding to the mapping name.
3962         * DataGridTableStyle.cs: set the bound field on the column styles
3963         depending on whether or not we have a column for that property.
3965 2006-08-31  Peter Dennis Bartok  <pbartok@novell.com> 
3967         * Splitter.cs (SetBoundsCore): Don't ignore width/height of the 
3968           splitter control (fixes #79228)
3970 2006-08-31  Chris Toshok  <toshok@ximian.com>
3972         * DataGridColumnStyle.cs: we need to delay the assignment of
3973         property descriptor until the last possible moment due to the lazy
3974         databinding stuff in the datagrid.  Also, fix the exceptions
3975         thrown by CheckValidDataSource to match MS.
3977 2006-08-31  Jackson Harper  <jackson@ximian.com>
3979         * Form.cs: When activated select the active control, if there is
3980         no active control, we select the first control.
3981         * XplatUIX11.cs: If there is no focus control when we get a
3982         FocusIn event, find the toplevel form and activate it.  This
3983         occurs when you popup a window, it becomes the focus window, then
3984         you close that window, giving focus back to the main window.
3986 2006-08-21  Carlos Alberto Cortez <calberto.cortez@gmail.com>
3988         * MonthCalendar.cs: 
3989         * ThemeWin32Classic.cs: Cache Font in bold style, as well
3990         as StringFormat with Center alignments in MonthCalendar,
3991         instead of creating new ones when drawing the control. 
3992         Also, draw the month name in bold style.
3994 2006-08-30  Peter Dennis Bartok  <pbartok@novell.com> 
3996         * Control.cs:
3997           - PerformLayout(): It would seem MS performs the fill even if the 
3998             control is not visible (part of #79218 fix)
3999           - ResetBackColor(): Use the setter to reset the color, to allow
4000             overriders to catch the change.
4001         * Form.cs:
4002           - .ctor: Call UpdateBounds to adjust client rectangle (part of #79218 fix)
4003           - CreateHandle(): dito (part of $79218 fix)
4004           - Don't set an icon if we have a dialog
4005         * ScrollableControl.cs:
4006           - set_AutoScrollMinSize: Setting the property enables AutoScroll (#79218)
4007           - ScrollIntoView(): No need to scroll if control is already visible
4008             (resolves fixme and fixes #79218)
4010 2006-08-30  Carlos Alberto Cortez <calberto.cortez@gmail.com>
4012         * MonthCalendar.cs: Change proportions in SingleMonthSize
4013         to match the aspect of the original control.
4015 2006-08-29  Alexander Olk  <alex.olk@googlemail.com>
4017         * XplatUIX11.cs: Fix for a metacity/X problem where windows don't
4018           get updated when they get maximized.
4020 2006-08-29  Peter Dennis Bartok  <pbartok@novell.com> 
4022         * XplatUIX11.cs: Handle windows with no border (Fixes part of #79160)
4024 2006-08-29  Chris Toshok  <toshok@ximian.com>
4026         * XplatUIX11.cs: when destroying the FocusWindow, send KILLFOCUS.
4028 2006-08-29  Jackson Harper  <jackson@ximian.com>
4030         * TreeView.cs: Need to track selected node and highlighted node,
4031         they aren't always the same thing, when the mouse is down on a
4032         node it is hilighted, but not selected yet.
4033         - Do the HideSelection stuff right
4034         - Need to focus on rbutton mouse down. And redraw selection when
4035         right click is mouse upped.
4037 2006-08-29  Mike Kestner  <mkestner@novell.com>
4039         * ThemeWin32Classic.cs: draw selections for columns in FullRowSelect
4040         when SubItems.Count < Columns.Count.  [Fixes #79167]
4042 2006-08-28  Peter Dennis Bartok  <pbartok@novell.com> 
4044         * TextControl.cs (FindCursor): Fix math error (Fixes #78402)
4046 2006-08-28  Peter Dennis Bartok  <pbartok@novell.com>
4048         * XplatUIX11.cs: Preempt the roundtrip for getting the location back
4049           from X. Only send based on ConfigureNotify if we don't have the
4050           correct location in hwnd (if the window manager moved us)
4052 2006-08-28  Mike Kestner  <mkestner@novell.com>
4054         * ListView.cs: remove a TODO. 
4055         * ThemeWin32Classic.cs: implement HideSelection support for ListView.
4056         [Fixes ListView part of #79166]
4058 2006-08-28  Mike Kestner  <mkestner@novell.com>
4060         * ListView.cs: move wheel handler to parent since it is focused
4061         instead of the item_control now.  [Fixes #79177]
4063 2006-08-28  Mike Kestner  <mkestner@novell.com>
4065         * ThemeWin32Classic.cs: only highlight subitems in fullrowselect
4066         when the control is focused. [Fixes #79171]
4068 2006-08-28  Mike Kestner  <mkestner@novell.com>
4070         * ListView.cs: size the item and header controls for empty and
4071         unscrollable views.
4072         * ThemeWin32Classic.cs: draw disabled backgrounds.
4073         [Fixes #79187]
4075 2006-08-28  Chris Toshok  <toshok@ximian.com>
4077         * Form.cs: remove unused "active_form" static field.
4079         * Hwnd.cs: lock around accesses to static windows collection.
4081         * Application.cs: lock threads in Exit ().
4083 2006-08-28  Chris Toshok  <toshok@ximian.com>
4085         * NativeWindow.cs: lock around accesses to window_collection.
4086         
4087 2006-08-28  Chris Toshok  <toshok@ximian.com>
4089         * Control.cs: err, fix this the right way, by locking on controls
4090         when using it.  not by making it synchronized.
4092 2006-08-28  Chris Toshok  <toshok@ximian.com>
4094         * Control.cs: make the static "controls" field synchronized, as it
4095         gets updated from multiple threads.
4097 2006-08-27  Peter Dennis Bartok  <pbartok@novell.com>
4099         * XplatUIX11.cs: PostQuitMessage is thread-specific not app-specific.
4100           Prevent other threads from exiting when calling thread sets quit state.
4101         * XEventQueue.cs: Added PostQuitState property
4103 2006-08-27  Chris Toshok  <toshok@ximian.com>
4105         * AsyncMethodData.cs: add a slot for the window handle.
4107         * XplatUIX11.cs (SendAsyncMethod): send the event to the right
4108         window (the destination control's window, not the foster window).
4110         * Control.cs (BeginInvokeInternal): store the window's handle in
4111         the AsyncMethodData.
4112         
4114 2006-08-27  Peter Dennis Bartok  <pbartok@novell.com>
4116         * XplatUIX11.cs:
4117           - PostQuitMessage: Removed resetting S.D display handle, we might have
4118             another loop started after calling PostQuitMessage (Fixes #79119)
4119           - Created destructor to reset S.D handle
4121 2006-08-27  Peter Dennis Bartok  <pbartok@novell.com> 
4123         * XplatUIX11.cs (SetCursor): Issue flush after setting the cursor (#79168)
4125 2006-08-23  Peter Dennis Bartok  <pbartok@novell.com>
4127         * TextControl.cs (Insert): Update the caret position even if we don't
4128           have a handle yet, just don't call the driver in that case.
4129         * TextBoxBase.cs (set_SelectedText): Set the Start and End selection
4130           to the end of the new selection text (Fixes #79184)
4132 2006-08-23  Peter Dennis Bartok  <pbartok@novell.com> 
4134         * Form.cs (Activate): Only activate if the handle is created)
4135         * Control.c:
4136           - Mark window as invisible when it's disposed
4137           - Check if window handle is created when setting window visible, 
4138             instead of relying just on the is_created variable
4139           - Check if object is disposed when creating the control (Fixes #79155)
4141 2006-08-23  Peter Dennis Bartok  <pbartok@novell.com>
4143         * ScrollableWindow.cs (ScrollWindow): Don't actually perform layouting
4144           when allowing layout again. Otherwise we re-generate the anchoring 
4145           distance to the border again and actually alter what the user wanted
4146           This is ugly, it'd be better if we used DisplayRectangle instead of
4147           ClientRectangle for Control.UpdateDistances, but that causes us to
4148           have other problems (initial anchoring positons would be wrong)
4149           (Fixes #78835)
4151 2006-08-23  Peter Dennis Bartok  <pbartok@novell.com> 
4153         * Control.cs:
4154           - The size and location setters shouldn't go directly to 
4155             SetBoundsCore, but to SetBounds, which triggers layout on the
4156             parent, then calls SetBoundsCore. (Related to fix for #78835)
4157           - SetBounds: Moved actual location update code into this function
4158             from SetBoundsCore, to match MS. Added call to PerformLayout if
4159             we have a parent (to trigger resizing of anchored parents if the 
4160             child size has changed (see testcase for #78835) 
4161         * ListBox.cs, Form.cs: Call SetBounds instead of SetBoundsCore to match 
4162           new control code
4163         * ScrollableControl.cs (CalculateCanvasSize): Use shortcut variable
4165 2006-08-23  Peter Dennis Bartok  <pbartok@novell.com>
4167         * XplatUIX11.cs: Don't reset the DisplayHandle that's stored in
4168           System.Drawing when a toplevel window gets closed; there might
4169           be other toplevel windows belonging to the same app (Fixes #78052)
4171 2006-08-26  Alexander Olk  <alex.olk@googlemail.com>
4173         * FileDialog.cs: After reading FileDialog settings from mwf_config
4174           use Desktop prefix only if a real folder doesn't exist anymore.
4175         * FontDialog.cs: Added char sets.
4176           It is now possible to select the font, size or style with the
4177           textboxes.
4179 2006-08-25  Kornél Pál  <kornelpal@gmail.com>
4181         * PrintPreviewDialog.cs: Use assembly name constants.
4183 2006-08-23  Peter Dennis Bartok  <pbartok@novell.com>
4185         * XplatUIWin32.cs (ScrollWindow): Use clipping rectangle arg (prevents
4186           scrollbar from whacking it's buttons)
4188 2006-08-24  Chris Toshok  <toshok@ximian.com>
4190         * ScrollableControl.cs: fix #78271.  There's a lot of misc stuff
4191         in this patch (aggregating setting Left/Top/Width/Height to
4192         setting Bounds on the scrollbars), but the crux of the fix is in
4193         Recalculate, where we scroll by the remaining scroll_position if
4194         we're hiding a scrollbar.  The 2*$5 reward in the comment is
4195         serious.
4197 2006-08-24  Jackson Harper  <jackson@ximian.com>
4199         * MdiClient.cs:
4200         * MdiWindowManager.cs: If the form is made a non-mdi window we
4201         need to remove the form closed event so that closing forms works
4202         correctly.
4204 2006-08-24  Jackson Harper  <jackson@ximian.com>
4206         * Control.cs: Make IsRecreating internal so that the driver can
4207         check it
4208         - Temporarily remove the Hide when controls are removed, its
4209         making a whole bunch of things not work because visibility isn't
4210         getting reset elsewhere correctly
4211         * Form.cs: Need to do a full handle recreation when the mdi parent
4212         is set.
4213         * XplatUIX11.cs: If we are recreating handles don't dispose the
4214         HWNDs.  What was happening is the handles were being recreated in
4215         SendWMDestroyMessages, but then flow continued on in that method
4216         and destroyed the new handles.
4218 2006-08-23  Jackson Harper  <jackson@ximian.com>
4220         * Form.cs: MdiClient is always at the back of the bus
4221         * Control.cs: When the order of items in the collection is changed
4222         we need to reset the all_controls array
4223         - do the same sorta setup thats done when adding a control when a
4224         control is set on the collection.
4226 2006-08-23  Peter Dennis Bartok  <pbartok@novell.com>
4228         * TextBoxBase.cs (get_Text): Return an empty array if our document
4229           is empty (fixes #79052)
4231 2006-08-23  Peter Dennis Bartok  <pbartok@novell.com> 
4233         * Control.cs: We should call IsInputChar on only on WM_CHAR but not
4234           on WM_SYSCHAR messages (fixes #79053)
4236 2006-08-23  Chris Toshok  <toshok@ximian.com>
4238         * DataGrid.cs: fix flickering when scrolling vertically.
4240 2006-08-23  Chris Toshok  <toshok@ximian.com>
4242         * DataGrid.cs (EndEdit): only invalidate the row header when we
4243         need to.
4245 2006-08-23  Chris Toshok  <toshok@ximian.com>
4247         * ThemeWin32Classic.cs: fix the clip munging of the datagrid paint
4248         methods.  fixes the flicker when scrolling around.
4250 2006-08-23  Peter Dennis Bartok  <pbartok@novell.com> 
4252         * FileDialog.cs: Making sure the control is created before we get a 
4253           chance to use it with BeginInvoke (Fixes #79096)
4255 2006-08-23  Chris Toshok  <toshok@ximian.com>
4257         * ThemeWin32Classic.cs (DataGridPaintRows): calculate the proper
4258         width to use when painting the rows.
4260 2006-08-23  Peter Dennis Bartok  <pbartok@novell.com> 
4262         * TextBoxBase.cs:
4263           - Throw ArgumentException if a negative value is passed to SelectionLength
4264           - Update the selection end if start is moved. end needs to be always
4265             after start. (Fixes #79095)
4266           - Track selection length; MS keeps the selection length even if start
4267             is changed; reset on all other operations affection selection
4269 2006-08-22  Jackson Harper  <jackson@ximian.com>
4271         * TreeView.cs: Make sure both scrollbars get displayed and sized
4272         correctly when the other bar is visible.
4273         - Use the original clip rectangle for checking if the area between
4274         the two scrollbars is visible, not the viewport adjusted clipping
4275         rectangle.
4277 2006-08-22  Jackson Harper  <jackson@ximian.com>
4279         * Binding.cs: We don't use IsBinding because it requires the
4280         control to be created, which really shouldn't be necessary just to
4281         set a property on the control.
4283 2006-08-21  Carlos Alberto Cortez <calberto.cortez@gmail.com>
4285         * ComboBox.cs: Some CB.ObjectCollection methods must throw
4286         ArgumentNullReferenceException when the argument is null.
4288 2006-08-21  Jackson Harper  <jackson@ximian.com>
4290         * Timer.cs: Track the thread that the timer is started in (NOT
4291         CREATED), this way messages for it will only be triggered on its
4292         queue.
4293         * XEventQueue.cs: Track the timers here, this makes timers per
4294         thread, like MS.
4295         * XplatUIX11.cs: The timers are moved to the XEventQueue.
4297 2006-08-19  Chris Toshok  <toshok@ximian.com>
4299         * XplatUIX11.cs: after further communication with pdb, we get the
4300         best of both worlds.  SetZOrder working for un-Mapped windows, and
4301         no X errors for un-mapped windows.
4303 2006-08-19  Chris Toshok  <toshok@ximian.com>
4305         * XplatUIX11.cs (SetZOrder): remove the if (!hwnd.mapped) check,
4306         as it was causing pdn toolbars to not have the correct stacking.
4308 2006-08-18  Mike Kestner  <mkestner@novell.com> 
4310         * ListView.cs : guard against negative ClientArea.Width in scrollbar
4311         calculation.  Not sure why control should ever be setting a negative
4312         width though.  Fixes #78931.
4314 2006-08-18  Carlos Alberto Cortez <calberto.cortez@gmail.com>
4316         * ComboBox.cs: Throw ArgumentNullException when adding/modifyng
4317         null items in ObjectCollection class.
4318         * ListBox.cs.: Likewise.
4320 2006-08-18  Atsushi Enomoto  <atsushi@ximian.com>
4322         * ThemeNice.cs, ThemeClearlooks.cs : remove RadioButton_DrawFocus()
4323           as the base method in ThemeWin32Classic should work fine.
4324           Fixed bug #78607.
4326 2006-08-18  Jackson Harper  <jackson@ximian.com>
4328         * Binding.cs: When validating if the value entered doesn't convert
4329         properly reset to the old value.
4330         * RadioButton.cs: Don't fire click when we get focus.
4332 2006-08-18  Jackson Harper  <jackson@ximian.com>
4334         * FileDialog.cs: Paint the selection on the directory combobox the
4335         same way as on MS. 
4337 2006-08-17  Jackson Harper  <jackson@ximian.com>
4339         * ErrorProvider.cs: Don't allow the error control to be selected.
4340         * Control.cs: Don't send the SetFocus messages, the control
4341         activation will do this, and if we do it blindly here validation
4342         does not work.
4344 2006-08-17  Jackson Harper  <jackson@ximian.com>
4346         * Control.cs:
4347         * ContainerControl.cs: Make validation events fire in the correct
4348         order.  TODO: For some reason the first validation event is not
4349         getting fired.
4351 2006-08-17  Mike Kestner  <mkestner@novell.com> 
4353         * ComboBox.cs : some null guarding for ComboListBox.Scroll.
4355 2006-08-17  Mike Kestner  <mkestner@novell.com> 
4357         * ComboBox.cs : implement scroll wheel support for popped-down
4358         state. Fixes #78945. 
4360 2006-08-17  Jackson Harper  <jackson@ximian.com>
4362         * TreeView.cs: Specify treeview actions (old patch that didn't get
4363         committed for some reason).
4364         - Don't let the mouse wheel scroll us too far.  Just want to make
4365         the bottom node visible, not scroll it all the ways to the top.
4367 2006-08-17  Jackson Harper  <jackson@ximian.com>
4369         * XplatUIX11.cs: Mouse wheel events go to the focused window.
4371 2006-08-17  Mike Kestner  <mkestner@novell.com> 
4373         * ComboBox.cs : don't do mouseover selection in simple mode.
4375 2006-08-16  Jackson Harper  <jackson@ximian.com>
4377         * Form.cs: Fire the closing events for all the mdi child windows
4378         when a window is closed.  If the cancel args are set to true, the
4379         main window still gets the event fired, but it doesn't not close.
4380         * MdiWindowManager.cs: Do this closing cleanup in a Closed
4381         handler, instead of when the button is clicked, so cancelling the
4382         close works correctly.
4383         * ComboBox.cs: Send the mouse down to the scrollbar.
4385 2006-08-16  Carlos Alberto Cortez <calberto.cortez@gmail.com>
4387         * ListBox.cs: When passing 'null' to SelectedItem,
4388         set SelectedIndex to -1, to unselect items. This is the
4389         observed behaviour in .Net.
4391 2006-08-16  Peter Dennis Bartok  <pbartok@novell.com> 
4393         * TextBoxBase.cs: Overriding HandleClick to get clicks in spite of
4394           MS flags saying there won't be any. (fixes #78800)
4395         * Control.cs (HandleClick): Made virtual
4397 2006-08-16  Atsushi Enomoto  <atsushi@ximian.com>
4399         * PageSetupDialog.cs : use Yard-Pound units only in en-GB and en-US
4400           cultures. Fixed bug #78399.
4402 2006-08-16  Jackson Harper  <jackson@ximian.com>
4404         * Form.cs: Use the MdiClients MdiChildren property to access
4405         MdiChildren instead of creating the array from the child controls.
4406         * MdiClient.cs: Maintain a separate array of the mdi children, so
4407         that insertion order is maintained when the Z-order is changed.
4409 2006-08-16  Mike Kestner  <mkestner@novell.com> 
4411         * ListView.cs : add an ItemComparer and default to it for sorting.
4412         Fixes #79076, but sorting needs a complete overhaul to be compat with
4413         MS.
4415 2006-08-15  Peter Dennis Bartok  <pbartok@novell.com> 
4417         * XplatUIX11.cs (SetZOrder): Fix debugging leftover (fixes #79080)
4419 2006-08-15  Peter Dennis Bartok  <pbartok@novell.com>
4421         * Hwnd.cs (Mapped): Properly traverse the tree
4423 2006-08-15  Chris Toshok  <toshok@ximian.com>
4425         * Binding.cs: fix PullData/SetPropertyValue.  We don't want to
4426         pass manager.Current.GetType() to ParseData.  It has to be the
4427         property type.  So, hold off doing the ParseData until we're in
4428         SetPropertyValue where we know the type.  This fixes the crash in
4429         #78821 but the textbox is still empty.
4431 2006-08-15  Chris Toshok  <toshok@ximian.com>
4433         * DataGrid.cs:
4434         - when we're scrolling, only call Edit() again if the
4435         current cell is still unobscured. Fixes bug #78927.
4436         - when handling mousedown on a cell, ensure the cell is visible
4437         before calling Edit.
4438         - remove the properties from DataGridRow, and remove the
4439         DataGridParentRow class altogether.
4440         
4442 2006-08-15  Peter Dennis Bartok  <pbartok@novell.com>
4444         * TextBoxBase.cs (set_Text): Don't use base.Text, instead just
4445           fire OnTextChanged by ourselves. There's no point calling base,
4446           we don't set the base value anywhere else. Fixes #78773.
4448 2006-08-15  Carlos Alberto Cortez <calberto.cortez@gmail.com>
4450         * ListBox.cs: Call CollectionChanged when modifying
4451         an item from Items indexer, to update the actual items
4452         in the list box.
4454 2006-08-15  Carlos Alberto Cortez <calberto.cortez@gmail.com>
4456         * PrintDialog.cs: Small fixes for focus and a pair of checks,
4457         to match .Net behaviour.
4459 2006-08-15  Peter Dennis Bartok  <pbartok@novell.com>
4461         * XplatUIX11.cs (SetZOrder): Handle raising toplevel windows
4463 2006-08-15  Peter Dennis Bartok  <pbartok@novell.com> 
4465         * Control.cs: Handle BringToFront for toplevel windows (Fixes #78737)
4467 2006-08-15  Peter Dennis Bartok  <pbartok@novell.com>
4469         * MessageBox.cs: Prevent potential NRE exception.
4470         * TextBoxBase.cs: AutoSize only applies if MultiLine is false. Fixes #78889
4472 2006-08-14  Peter Dennis Bartok  <pbartok@novell.com>
4474         * MessageBox.cs: Calculate the owner of a messagebox, also make
4475           it topmost. Fixes #78753
4477 2006-08-14  Chris Toshok  <toshok@ximian.com>
4479         * XplatUIX11.cs: A couple of fixes so that metacity will let us
4480         programmatically move windows.  first, set the PPosition hint as
4481         well as the USPosition hint.  Second include some code from pdb
4482         that sets the window type to NORMAL when we set the transient for
4483         hint.  This is because, in the absence of a window type, metacity
4484         thinks any window with TransientFor set is a dialog, and refuses
4485         to let us move it programmatically.  fascists.
4487 2006-08-14  Peter Dennis Bartok  <pbartok@novell.com>
4489         * XplatUIX11.cs: When setting normal hints, take into consideration
4490           an different hints previously set so we don't delete them (fixes #78866)
4492 2006-08-12  Chris Toshok  <toshok@ximian.com>
4494         * ToolBarButton.cs: make Layout return a boolean, if something to
4495         do with the button's layout changed.
4497         * ToolBar.cs:
4498         - add another parameter to Redraw, @force, which all existing
4499           calls set to true.
4500         - make the Layout function return a boolean which is true if the
4501           layout has actually changed.  Redraw now uses this (and @force)
4502           to determine when to invalidate.  At present the only place
4503           where @force can be false is the call from OnResize, when
4504           background_image == null.  So, resizing a toolbar when the
4505           layout doesn't change results in no drawing.
4507 2006-08-12  Chris Toshok  <toshok@ximian.com>
4509         * ThemeWin32Classic.cs: fix the bottom right corner painting.  had
4510         the VScrollBar and HScrollbar reversed.  oops.
4512         * DataGrid.cs: fix the logic that assigns sizes to the implicit
4513         scrollbars.  we were assigning them twice (once in
4514         Calc{Horiz,Vertical}Scrollbar, and once in CalcGridAreas),
4515         therefore causing two scrollbar resizes (and redraws?) to happen
4516         per grid resize.
4518 2006-08-12  Chris Toshok  <toshok@ximian.com>
4520         * ToolBarButton.cs: redraw the entire button if the theme tells us
4521         to.
4523         * Theme.cs: add ToolBarInvalidateEntireButton.
4525         * ThemeWin32Classic.cs: we don't need to redraw the entire toolbar
4526         buttons, just the border.
4528         * ThemeNice.cs: redraw the entire toolbar button since we need to
4529         draw the highlight image.
4531         * ThemeClearlooks.cs: the rounded corners of toolbar buttons mean
4532         we need to redraw the entire button (not just the border).
4534 2006-08-11  Peter Dennis Bartok  <pbartok@novell.com>
4536         * TextBoxBase.cs (CalculateScrollbars): Set the proper thumb size
4537           for vertical bars. Fixes the mismatches shown by #78513
4539 2006-08-11  Alexander Olk  <alex.olk@googlemail.com>
4541         * FileDialog.cs: If a saved/remembered path doesn't exist
4542           anymore, fall back to "Desktop".
4544 2006-08-11  Peter Dennis Bartok  <pbartok@novell.com>
4546         * Form.cs (CreateParams): Don't use Parent.Handle unless we have a
4547           parent. It's apparently legal to not have one
4548         * XplatUIX11.cs:
4549           - SetZOrder: Don't try to set Z-Order on an unmapped window
4550           - CreateWindow: 0,0 are legal coordinates for a window. don't move
4551             it unless the coordinates are negative
4553 2006-08-10  Mike Kestner  <mkestner@novell.com>
4555         * ListControl.cs: allow null for DataSource.  Clear DisplayMember
4556         when setting to null per msdn docs.  Fixes #78854.
4558 2006-08-10  Chris Toshok  <toshok@ximian.com>
4560         * Menu.cs, MainMenu.cs, MenuAPI.cs: get rid of most of the
4561         flickering by setting a clip rectangle on the Graphics when we
4562         need to redraw just a particular menuitem.  Also, rename "OnClick"
4563         to "OnMouseDown" to reflect what it actually is.
4564         
4565         * Form.cs: track the OnMouseDown change.
4567 2006-08-10  Peter Dennis Bartok  <pbartok@novell.com>
4569         * CommonDialog.cs: Properly inherit the CreateParams from the form
4570           and only change what we need. Fixes #78865
4572 2006-08-10  Chris Toshok  <toshok@ximian.com>
4574         * ToolBar.cs, ToolBarButton.cs: fix the redraw-on-highlight
4575         flickering in flat mode (and most of the flickering in general) by
4576         only invalidating the button border (and not the entire rectangle)
4577         when the state changes.  A couple of cases still flicker:
4578         ToggleButtons, and the dropdown arrow case when the user mouse
4579         ups.
4581 2006-08-10  Alexander Olk  <alex.olk@googlemail.com>
4583         * X11Keyboard.cs: Fixed handling of the Del key on the cursorblock
4584           for german keyboards. Numlock state shouldn't affect the behaviour
4585           of the Del key. Fixes bug #78291.
4587 2006-08-10  Chris Toshok  <toshok@ximian.com>
4589         * ListControl.cs: remove the items.Clear line from BindDataItems,
4590         as this is the first thing done by both subclasses in their
4591         SetItemsCore overrides.  Also, add a ItemChanged handler, and when
4592         passed -1, refresh the list.  This gets databinding working when
4593         the datasource is set on the list before the datasource is
4594         populated (as in wf-apps/ReportBuilder.)
4596         * ComboBox.cs: remove the argument to BindDataItems.  This call
4597         should really go away, and be initiated by the ListControl code.
4599         * ListBox.cs: same.
4601 2006-08-09  Peter Dennis Bartok  <pbartok@novell.com>
4603         * TextControl.cs (Document.ctor): Initialize caret so we don't crash
4604           if no data is in the document when the control is displayed
4606 2006-08-09  Peter Dennis Bartok  <pbartok@novell.com> 
4608         * TextBoxBase.cs: Don't try moving the caret if we don't have a window
4609           yes (fixes #78806)
4610         * TextControl.cs: 
4611           - PositionCaret: Allow positioning of caret but don't call methods 
4612             requiring a handle if the window isn't created yet
4613           - CharIndexToLineTag: Fix ending loop early error. Lines is 1 based
4614           - owner_HandleCreated: Don't position the caret, just update it's 
4615             location. User might have already set a different position
4617 2006-08-09  Peter Dennis Bartok  <pbartok@novell.com>
4619         * XplatUIWin32.cs: Don't use the desktop as basis for foster-parented
4620           windows. Screws up the returned coordinates for child windows. 
4621           Fixes #78825. I'm hoping this doesn't break something, since the
4622           code was explicitly put in 8 months ago, but no bug was attached.
4623           Menus still seem to work properly.
4625 2006-08-08  Chris Toshok  <toshok@ximian.com>
4627         * DataGrid.cs: make BeginInit/EndInit actually do what they're
4628         supposed to do - delay data binding until the EndInit call.  Also,
4629         make the table style collection's CollectionChangeAction.Refresh
4630         work properly.
4632         * GridTableStylesCollection.cs: raise a CollectionChangeEvent
4633         (with action = Refresh) when a consituent table's MappingName is
4634         changed.
4636 2006-08-08  Chris Toshok  <toshok@ximian.com>
4638         * ToolBarButton.cs: in set_Text, call Parent.Redraw, not
4639         Invalidate, since changing the text can change the size of the all
4640         toolbar buttons.
4642 2006-08-08  Peter Dennis Bartok  <pbartok@novell.com>
4644         * Form.cs (AddOwnedForm): Still need to add the form to our listif
4645           we don't have it yet
4647 2006-08-08  Chris Toshok  <toshok@ximian.com>
4649         * PrintControllerWithStatusDialog.cs: don't .Close() the status
4650         dialog, as this causes X errors later on, since we actually
4651         destroy the window.  Instead, .Hide() it.
4653 2006-08-08  Peter Dennis Bartok  <pbartok@novell.com>
4655         * ComboBox.cs: Added focus reflection for popup window
4656         * XplatUIX11.cs: 
4657           - Removed transient setting for non-app windows for now, not sure it
4658             was needed
4659           - Fixed logic checking if we have captions when deciding 
4660             override_redirect, WS_CAPTION is two bits and a 0 check was not
4661             sufficient
4662           - Removed the WINDOW_TYPE stuff, it was unneeded and making things
4663             complicated
4664         * Form.cs: 
4665           - AddOwnedForm: Don't just add the form to the list, call the property
4666             to ensure the driver is informed about the ownership as well
4667           - CreateHandle: Set the TopMost status in the driver if we have an owner
4668         * XplatUI.cs: Fixed debug statement
4670 2006-08-08  Jonathan Pobst <monkey@jpobst.com>
4671         * ButtonRenderer.cs, CheckBoxRenderer.cs, ComboBoxRenderer.cs
4672           GroupBoxRenderer.cs, ProgressBarRenderer.cs, RadioButtonRenderer.cs,
4673           ScrollBarRenderer.cs, TabRenderer.cs, TextBoxRenderer.cs, 
4674           TrackBarRenderer.cs: Make constructor private.
4675         * ProfessionalColors.cs, ProfessionalColorTable.cs: Fix misnamed properties.
4676         * ProfessionalColorTable.cs: Make properties virtual.
4678 2006-08-06  Duncan Mak  <duncan@novell.com>
4680         * NumericUpDown.cs (Value): Don't call OnValueChanged if the value
4681         is not changing.
4683 2006-08-04  Jonathan Pobst <monkey@jpobst.com>
4684         * ButtonRenderer.cs, CheckBoxRenderer.cs, ComboBoxRenderer.cs
4685           GroupBoxRenderer.cs, ProfessionalColors.cs, ProfessionalColorTable.cs,
4686           ProgressBarRenderer.cs, RadioButtonRenderer.cs, ScrollBarRenderer.cs,
4687           TabRenderer.cs, TextBoxRenderer.cs, TextRenderer.cs, TrackBarRenderer.cs:
4688           Initial import of new 2.0 classes.
4690 2006-08-04  Jonathan Pobst <monkey@jpobst.com>
4691         * Application.cs: Add 2.0 VisualStyles properties.
4693 2006-08-04  Jonathan Pobst <monkey@jpobst.com>
4694         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs, XplatUIWin32.cs,
4695           XplatUIX11.cs: Create property to allow access to existing private
4696           variable "themes_enabled"
4698 2006-08-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
4700         * ImageListStreamer.cs: generate the MemoryStreams with the exact BMP
4701         file size, as otherwise our class libraries fail using windows. Fixes
4702         bug #78759.
4704 2006-08-04  Jackson Harper  <jackson@ximian.com>
4706         * Form.cs:
4707         * XplatUIX11.cs: Move the toolwindow window manager creation into
4708         the X11 driver, this way on win32 we can let windows create/handle
4709         the toolwindows.
4711 2006-08-04  Carlos Alberto Cortez <calberto.cortez@gmail.com>
4713         * PrintDialog.cs: Remove some redundant checks, add some others,
4714         clean some code, and move the focus to the text boxes when the
4715         values are incorrect.
4717 2006-08-04  Alexander Olk  <alex.olk@googlemail.com>
4719         * FontDialog.cs: Remove Form.MinimumSize. It's not needed.
4721 2006-08-03  Alexander Olk  <alex.olk@googlemail.com>
4723         * NumericUpDown.cs: Setting the Minimum and Maximum is now
4724           handled correctly. Fixes bug #79001.
4726 2006-08-03  Carlos Alberto Cortez <calberto.cortez@gmail.com>
4728         * PrintDialog.cs: The "Copies" numeric up down must have
4729         set the Minimum property to 1; only if the value is bigger
4730         than 1, activate "Collate" check box. This is the behaviour of .Net.
4731         Also modify the Document elements only if it is not null.
4733 2006-08-03  Jackson Harper  <jackson@ximian.com>
4735         * TreeNodeCollection.cs: Fix copyto to use the correct nodes
4736         length. (We have a larger array then actual node count).
4737                 
4738 2006-08-03  Jackson Harper  <jackson@ximian.com>
4740         * ComboBox.cs: Don't show selection by default.
4741         - The SelectAll isn't needed here, since the focus code should do
4742         that
4743         - DDL style lists to manual selection drawing, so when they
4744         get/lose focus they have to invalidate.
4746 2006-08-03  Peter Dennis Bartok  <pbartok@novell.com>
4748         * TextBoxBase.cs: Don't always show all selections by default.
4750 2006-08-03  Jonathan Pobst  <monkey@jpobst.com>
4751         * ControlUpdateMode.cs, DataSourceUpdateMode.cs,
4752           HelpNavigator.cs, WebBrowserEncryptionLevel.cs:
4753           Fixed various typos.
4755 2006-08-03  Alexander Olk  <alex.olk@googlemail.com>
4757         * Control.cs: Removing the controls in a ControlCollection with
4758           Clear now hides the controls as expected. Fixes bug #78804. 
4760 2006-08-03  Jackson Harper  <jackson@ximian.com>
4762         * Control.cs: Revert previous focus patch, it breaks reflector.
4764 2006-08-03  Jackson Harper  <jackson@ximian.com>
4766         * ComboBox.cs: Cleanup selection and focus with the combobox.
4767         This also eliminates some duplicated keyboard code, since now
4768         everything is handled by the main class.
4769         - Make list selection work on mouse up instead of down, to match
4770         MS.
4772 2006-08-02  Jackson Harper  <jackson@ximian.com>
4774         * Control.cs: Setting focus needs to go through the whole
4775         selection mechanism.
4777 2006-08-02  Chris Toshok  <toshok@ximian.com>
4779         * PrintPreviewDialog.cs: change MinimumSize to use
4780         base.MinimumSize so it works.
4782 2006-08-02  Peter Dennis Bartok  <pbartok@novell.com>
4784         * TextControl.cs:
4785           - UpdateCaret: Added sanity check in case caret isn't defined yet
4786           - Line.Delete: Now updating selection and caret markers if we're
4787             transfering a node (Properly fixes #78323)
4788           - SetSelectionEnd: Added sanity check
4789         * TextBoxBase.cs: Removed broken attempt to fix #78323
4791 2006-08-01  Chris Toshok  <toshok@ximian.com>
4793         * PrintPreviewDialog.cs: the CancelEventArgs stuff surrounding the
4794         Close() call is handled in Form, not here.
4796 2006-08-01  Chris Toshok  <toshok@ximian.com>
4798         * Theme.cs, ThemeWin32Classic.cs: fix the PrintPreviewControl
4799         layout/rendering.
4801         * PrintPreviewDialog.cs: add scrollbars, and add an image cache
4802         for sizes < 100% zoom.  The code now aggressively attempts to keep
4803         from calling document.Print (), and tries not to use the scaling
4804         g.DrawImage whenever possible (it still does if you scale to >
4805         100%, since usually that involves huge images).
4807         * PrintPreviewControl.cs: hook up the close button.
4809 2006-08-01  Jonathan Pobst  <monkey@jpobst.com>
4810         * ColumnClickEventHandler.cs, DrawItemEventHandler.cs,
4811           ItemChangedEventHandler.cs, ItemCheckEventHandler.cs,
4812           ItemDragEventHandler.cs, LabelEditEventHandler.cs,
4813           LinkClickedEventHandler.cs, LinkLabelLinkClickedEventHandler.cs,
4814           MeasureItemEventHandler.cs, MethodInvoker.cs, PaintEventHandler.cs,
4815           PropertyTabChangedEventHandler.cs, PropertyValueChangedEventHandler.cs,
4816           SelectedGridItemChangedEventHandler.cs, ToolBarButtonClickEventHandler.cs:
4817           Removed [Serializable] for 2.0 Event Handlers.
4819 2006-07-31  Jackson Harper  <jackson@ximian.com>
4821         * TextBoxBase.cs: Make ShowSelection invalidate when changed.
4822         * TextControl.cs: Uncomment out the body of this method.
4824 2006-07-31  Alexander Olk  <alex.olk@googlemail.com>
4826         * XplatUIX11.cs: Use the correct cursor shapes for arrow and default
4827           standard cursors.
4829 2006-07-31  Peter Dennis Bartok  <pbartok@novell.com>
4831         * TextBoxBase.cs: Added internal property ShowSelection to allow controls
4832           that embed TextBox and need selections visible even if textbox is not
4833           focused to enforce that behaviour.
4834         * TextControl.cs (Draw): Use ShowSelection instead of has_focus to determine
4835           selection drawing
4837 2006-07-31  Peter Dennis Bartok  <pbartok@novell.com>
4839         * TextControl.cs:
4840           - Added new SetSelectionStart/SetSelectionEnd overloads
4841           - Fixed viewport width assignment to be accurate
4842           - Adjusted alignment line shift calculations to allow cursor on right
4843             aligned lines to be always visible at the right border (like MS)
4844         * TextBoxBase.cs:
4845           - SetBoundsCore: Re-adjust caret location after resize (Fixes #78323)
4846           - TextBoxBase_SizeChanged: recalculating canvas on size changes
4847           - CalculateScrollBars: Use ViewPort size instead of window size, to
4848             properly consider space occupied by the border and scrollbars 
4849             (Fixes #78661)
4850           - hscroll_ValueChanged, vscroll_ValueChanged: Fixed scroll 
4851             calculations; no longer leaves artifacts
4852           - CaretMoved: Adjusted window scrolling to match MS and fixed several
4853             calculation bugs (Still missing right/center align calculations)
4855 2006-07-31  Peter Dennis Bartok  <pbartok@novell.com> 
4857         * XPlatUIWin32.cs: Made ScrollRectEx a bit more flexible, and removed
4858           use of both scroll rect and clip rect, as they do the same.
4860 2006-07-31  Peter Dennis Bartok  <pbartok@novell.com>
4862         * Control.cs (WM_CHAR WndProc): 2.0 profile allows changing the key 
4863           in the event handler (fixes #78912)
4865 2006-07-31  Chris Toshok  <toshok@ximian.com>
4867         * ThemeWin32Classic.cs: use grid.RowsCount here instead of
4868         grid.ListManager.Count, since grid.ListManager might be null.
4869         This of course begs the question "why are we drawing rows for a
4870         grid with no list manager (and therefor no rows)?"  Fixes the
4871         crash in bug #78929.
4873 2006-07-31  Chris Toshok  <toshok@ximian.com>
4875         * RelatedPropertyManager.cs: Don't always chain up to the parent
4876         ctor.  instead, call SetDataSource if the parent's position is !=
4877         -1.  Fixes the crash in #78822.
4879 2006-07-31  Chris Toshok  <toshok@ximian.com>
4881         * DataGrid.cs (get_ListManager): use field instead of property
4882         accessors for datasource and datamember.
4883         (RowsCount): make internal again.
4884         (OnMouseDown): end edits before resizing columns/rows.
4885         (OnMouseUp): restart edits after resizing columns/rows.
4887 2006-07-30  Peter Dennis Bartok  <pbartok@novell.com>
4889         * XplatUIX11.cs: Default cursor cannot be 0 or it will not get set.
4890           This fixes the situation where the last set cursor is displayed
4891           whenever the mouse is over scrollbars.
4893 2006-07-30  Carlos Alberto Cortez <calberto.cortez@gmail.com>
4895         * PrintDialog.cs: Fix the behaviour of PrinterSettings and
4896         Document properties, as well as initial values.
4898 2006-07-29  Peter Dennis Bartok  <pbartok@novell.com>
4900         * XplatUIWin32.cs (SetBorderStyle): Setting both border
4901           and ClientEdge results in a 3-pixel border, which is
4902           wrong.
4904 2006-07-28  Jackson Harper  <jackson@ximian.com>
4906         * TreeNodeCollection.cs: Fix the clear method.
4907         - Fix the Shrink also
4909 2006-07-27  Jackson Harper  <jackson@ximian.com>
4911         * TreeView.cs: Make sure the visible order is computed when we
4912         attempt to size the scrollbars (for trees that mess with the
4913         scrolling when they shouldn't.
4914         - Make sure to give the scrollbars valid values.
4916 2006-07-26  Peter Dennis Bartok  <pbartok@novell.com> 
4918         * XplatUIX11.cs: Move motion compression code to where it
4919           has less performance impact
4921 2006-07-26  Jackson Harper  <jackson@ximian.com>
4923         * UpDownBase.cs: When the control is selected make the child
4924         controls non selectable, so that a click on them won't do a
4925         focus/unfocus cycle.
4926         - Don't give focus to the text box when the spinner is selected.
4927         * XEventQueue.cs: Peek on both the x11 queue and the lock queue.
4929 2006-07-26  Chris Toshok  <toshok@ximian.com>
4931         * ThemeWin32Classic.cs: add print preview rendering.  I'm not
4932         satisfied with this solution.  If the bitmaps are small, we should
4933         just cache them in the PrintPreviewDialog and draw them here.
4934         Also, the layout is broken for the 2-up and 3-up cases.
4936         * Theme.cs: add PrintPReviewControlPaint.
4938         * PrintPreviewDialog.cs: first pass implementation.
4940         * PrintPreviewControl.cs: first pass implementation.  No
4941         scrollbars yet.
4943         * PrintDialog.cs: only validate fields if that particular portion
4944         of the UI is enabled.  Also, set the document's controller to a
4945         PrintControllerWithStatusDialog wrapping the document's print
4946         controller.
4948         * PrintControllerWithStatusDialog.cs: if we're printing to a file,
4949         bring up a SaveFileDialog (i hope we don't want to match the
4950         behavior of the crappy windows file entry) and set the
4951         PrinterSettings.PrintFileName accordingly.
4953 2006-07-26  Jackson Harper  <jackson@ximian.com>
4955         * ContainerControl.cs: Add a field that disables auto selecting
4956         the next control in a container when the container is activated.
4957         * UpDownBase.cs: Don't select the text box when the up down is
4958         selected.
4960 2006-07-26  Peter Dennis Bartok  <pbartok@novell.com> 
4962         * XEventQueue.cs: Added methods for peeking (used for compression
4963           of successive events)
4964         * XplatUIX11.cs (GetMessage): We're now compressing consecutive
4965           mouse move events (fixes #78732)
4967 2006-07-25  Jackson Harper  <jackson@ximian.com>
4969         * UpDownBase.cs: Use an internal class for the textbox so that we
4970         can control focus.  the updown control should always have focus,
4971         if either the text area or the buttons are clicked.
4972         - Send the key messages to the textbox, since it never actually
4973         has focus
4974         - Activate and decativate the textbox caret.
4976 2006-07-24  Jackson Harper  <jackson@ximian.com>
4978         * Control.cs: Use the directed select when selecting a control,
4979         this way the container controls override will get called and the
4980         whole ActiveControl chain will get triggered.  TODO: probably need
4981         to make sure this gets done everywhere instead of the old
4982         Select(Control).
4983         * ContainerControl.cs: Implement the directed Select method to
4984         find and activate the correct child control.    
4985         
4986 2006-07-22  Mike Kestner  <mkestner@novell.com>
4988         * Form.cs: use Control.MousePosition for NCLBUTTONDOWN in the menu
4989         menu handling code so that clicks without a grab work too.
4990         [Fixes #78914]
4992 2006-07-22  Alexander Olk  <alex.olk@googlemail.com>
4994         * FileDialog.cs: Enable the BackButton when dirstack has one element.
4995           Added some small optimizations.
4997 2006-07-21  Matt Hargett  <matt@use.net>
4999         * Control.cs: Implemented 2.0 MinimumSize/MaximumSize properties
5001 2006-07-21  Peter Dennis Bartok  <pbartok@novell.com> 
5003         * Control.cs (GetNextControl): Fixes to make all of Jackson's unit 
5004           tests pass and match MS in some strange border cases.
5006 2006-07-21  Chris Toshok  <toshok@ximian.com>
5008         * ThemeWin32Classic.cs: handle drawing of the relation links and
5009         parent row buttons.
5011         * Theme.cs: change args to DataGridPaintParentRow.
5013         * DataGrid.cs: Don't use controls for the relation links and
5014         parent buttons, so we have to handle all their interactions in
5015         MouseMove, MouseDown, MouseUp, etc.  Also, store a lot more stuff
5016         when we're navigating through child tables, so we can reinstate
5017         selection, expanded state, current cell, etc.
5019 2006-07-20  Chris Toshok  <toshok@ximian.com>
5021         * ToolBar.cs: When we redraw a button, for whatever reason,
5022         there's no reason to redraw the entire toolbar.  Also, don't call
5023         Control.Refresh from within Redraw, as it's much heavier than
5024         Invalidate (which is really what we want).
5026 2006-07-20  Chris Toshok  <toshok@ximian.com>
5028         * DataGrid.cs, CurrencyManager.cs, DataGridColumnStyle.cs,
5029         DataGridTextBoxColumn.cs, DataGridTextBox.cs,
5030         ThemeWin32Classic.cs, ListControl.cs: After staring at stack
5031         traces from within a debug IBindingList datasource
5032         (in mono/winforms/datagrid) for *days*, I've finally gotten things
5033         to work in a similar fashion.
5035 2006-07-20  Carlos Alberto Cortez <calberto.cortez@gmail.com>
5037         * ListBox.cs: Don't call Sort () when setting 
5038         the Sorted property to false (avoid an unnecessary sort).
5040 2006-07-20  Carlos Alberto Cortez <calberto.cortez@gmail.com>
5042         * ListControl.cs: DataSource should throw an ArgumentException
5043         instead of a normal exception when the argument is not of the 
5044         correct type.
5046 2006-07-20  Mike Kestner  <mkestner@novell.com>
5048         * Control.cs: add InternalPreProcessMessage to allow us to steal
5049         key events before MWF gets its paws on them.  Adapted from a
5050         suggestion by eno.
5051         * ToolBar.cs: add GotLostFocus handing for flat toolbars, with 
5052         up/down/left/right navigation. Override the new internal control
5053         method to steal the events since they never make it to WndProc.
5054         * ToolBarButton.cs: don't worry about pushed when setting hilight
5055         since the drawing code prefers pushed to hilight. Invalidate on 
5056         Hilight changes. Fixes #78547 and #78525.
5058 2006-07-20  Peter Dennis Bartok  <pbartok@novell.com> 
5060         * ScrollableControl.cs: Consider AutoScrollMinSize when calculating
5061           the canvas size. Fixes #78868
5063 2006-07-20  Peter Dennis Bartok  <pbartok@novell.com>
5065         * Splitter.cs: Track requested split position until first layout
5066           is performed. Fixes #78871
5068 2006-07-20  Peter Dennis Bartok  <pbartok@novell.com> 
5070         * Application.cs: Removed code that forces 1.x for the version
5071           number if the version started with 0. Not sure why that code was
5072           there and I couldn't find any bugs that indicated we needed it.
5073           Fixes #78869
5075 2006-07-20  Alexander Olk  <alex.olk@googlemail.com>
5077         * ThemeWin32Classic.cs: Don't throw a NotImplementedException in
5078           ResetDefaults(), just write some output to the console until it's
5079           implemented. Fixes bug #78907 for now. Eliminated two warnings.
5081 2006-07-19  Jonathan Chambers  <joncham@gmail.com>
5083         * PropertyGridView.cs: set StartPosition of drop down forms
5084         so they appear in correct initial spot.  Fixes #78190.
5086 2006-07-19  Mike Kestner  <mkestner@novell.com>
5088         * ThemeWin32Classic.cs: use parent background color when drawing
5089         flat toolbars.  Restructure the conditionals to make sure non-flat
5090         non-Divider toolbars are filled too.  Fixes #78837.
5092 2006-07-19  Mike Kestner  <mkestner@novell.com>
5094         * ListBox.cs: Sort on collection changes even if the handle
5095         isn't created yet.  Fixes #78813.
5097 2006-07-18  Carlos Alberto Cortez <calberto.cortez@gmail.com>
5099         * ListControl.cs: DisplayMember should never be null,
5100         and now we assign String.Empty when null is passed to it (this
5101         is the .Net way).
5103 2006-07-17  Mike Kestner  <mkestner@novell.com>
5105         * ListViewItem.cs: restructure Font and subitem Font handling 
5106         to hold a specific font and refer back to owner on null.
5107         Fixes #78761.
5109 2006-07-17  Mike Kestner  <mkestner@novell.com>
5111         * ToolBar.cs: bandaid for side-effect of previous patch which was
5112         discarding explicit heights for non-AutoSize toolbars.  Need to
5113         extend my format tester to deal with AutoSize=false. Fixes #78864.
5115 2006-07-15  Jackson Harper  <jackson@ximian.com>
5117         * LabelEditTextBox.cs:
5118         * TreeView.cs: Use a new LabelEdit class for node editing, this
5119         class automatically 'closes' itself when it gets the enter key or
5120         loses focus.
5121         - Use the client rectangle when setting the trees scrollbars, so
5122         border style is taken into account.
5123         
5124 2006-07-14  Jackson Harper  <jackson@ximian.com>
5126         * TreeNode.cs:
5127         * TreeView.cs: Make the editing work similar to MSs, firing the
5128         events correctly and ending edits correctly.
5130 2006-07-14  Mike Kestner  <mkestner@novell.com>
5132         * ToolBarButton.cs:
5133         * ToolBar.cs: layout restructuring and redraw enhancements to support
5134         formatting changes gracefully, like setting TextAlign, ImageList, 
5135         ButtonSize, and Appearance.  Handles explicit button sizing quirks
5136         of the MS controls.  Things like flat toolbars ignoring button size
5137         but becoming constant sized at the largest button's size.  Normal
5138         toolbars with an image set cannot be shrunk smaller than the image,
5139         but text can be clipped/ignored.
5140         * ThemeWin32Classic.cs: don't draw text if text_rect height or width
5141         is zero.  Seems like DrawString should be smart enough to not put
5142         anything on screen though. Also trim labels and ellipsize at the char
5143         boundary, not word.
5144         Fixes #78711 and #78483.
5146 2006-07-14  Alexander Olk  <alex.olk@googlemail.com>
5148         * FolderBrowserDialog.cs: Disable "New Folder" button and
5149           "New Folder" contextmenu menuitem if a folder like "My Computer"
5150           is selected.
5152 2006-07-14  Alexander Olk  <alex.olk@googlemail.com>
5154         * FileDialog.cs: Don't create a new folder in "MyComputer" folder.
5155         * FolderBrowserDialog.cs:
5156           - Use MWFConfig to store and read size and position settings
5157           - Added code to create a new folder (button or context menu).
5158             Use TreeView labeledit to change the name of the new folder.
5160 2006-07-14  Jackson Harper  <jackson@ximian.com>
5162         * TreeView.cs: Raise the OnAfterLabelEdit event correctly.  Also,
5163         when the tree is scrolled we end editing.
5165 2006-07-14  Alexander Olk  <alex.olk@googlemail.com>
5167         * ThemeWin32Classic.cs: Fixed position of CPDrawScrollButton Up and
5168           Down arrows
5170 2006-07-14  Jonathan Pobst  <monkey@ipobst.com> 
5172         WebBrowserProgressChangedEventHandler.cs, BindingCompleteEventArgs.cs,
5173         BindingCompleteEventHandler.cs, BindingManagerDataErrorEventArgs.cs,
5174         BindingManagerDataErrorEventHandler.cs, CacheVirtualItemsEventArgs.cs,
5175         CacheVirtualItemsEventHandler.cs, ColumnReorderedEventArgs.cs,
5176         ColumnReorderedEventHandler.cs, ColumnWidthChangedEventArgs.cs,
5177         ColumnWidthChangedEventHandler.cs, ColumnWidthChangingEventArgs.cs,
5178         ColumnWidthChangingEventHandler.cs, FormClosedEventArgs.cs,
5179         FormClosedEventHandler.cs, FormClosingEventArgs.cs,
5180         FormClosingEventHandler.cs, ItemCheckedEventArgs.cs,
5181         ItemCheckedEventHandler.cs, ListControlConvertEventArgs.cs,
5182         ListControlConvertEventHandler.cs, ListViewItemMouseHoverEventArgs.cs,
5183         ListViewItemMouseHoverEventHandler.cs, ListViewItemSelectionChangedEventArgs.cs,
5184         ListViewItemSelectionChangedEventHandler.cs,
5185         ListViewVirtualItemsSelectionRangeChangedEventArgs.cs,
5186         ListViewVirtualItemsSelectionRangeChangedEventHandler.cs,
5187         MaskInputRejectedEventArgs.cs, MaskInputRejectedEventHandler.cs,
5188         PopupEventArgs.cs, PopupEventHandler.cs, PreviewKeyDownEventArgs.cs,
5189         PreviewKeyDownEventHandler.cs, RetrieveVirtualItemEventArgs.cs,
5190         RetrieveVirtualItemEventHandler.cs, SearchForVirtualItemEventArgs.cs,
5191         SearchForVirtualItemEventHandler.cs, SplitterCancelEventArgs.cs,
5192         SplitterCancelEventHandler.cs, TabControlCancelEventArgs.cs, 
5193         TabControlCancelEventHandler.cs, TabControlEventArgs.cs, 
5194         TabControlEventHandler.cs, TableLayoutCellPaintEventArgs.cs,
5195         TableLayoutCellPaintEventHandler.cs, ToolStripDropDownClosedEventArgs.cs,
5196         ToolStripDropDownClosedEventHandler.cs, ToolStripDropDownClosingEventArgs.cs,
5197         ToolStripDropDownClosingEventHandler.cs, TreeNodeMouseClickEventArgs.cs,
5198         TreeNodeMouseClickEventHandler.cs, TreeNodeMouseHoverEventArgs.cs,
5199         TreeNodeMouseHoverEventHandler.cs, TypeValidationEventArgs.cs,
5200         TypeValidationEventHandler.cs, WebBrowserDocumentCompletedEventArgs.cs,
5201         WebBrowserDocumentCompletedEventHandler.cs, WebBrowserNavigatedEventArgs.cs,
5202         WebBrowserNavigatedEventHandler.cs, WebBrowserNavigatingEventArgs.cs,
5203         WebBrowserNavigatingEventHandler.cs, 
5204         WebBrowserProgressChangedEventArgs.cs: New 2.0 Event Handlers
5206 2006-07-14  Jonathan Pobst  <monkey@ipobst.com>
5208         MergeAction.cs, PowerLineStatus.cs, PowerState.cs, PreProcessControlState.cs,
5209         RichTextBoxLanguageOptions.cs, ScreenOrientation.cs, ScrollOrientation.cs,
5210         SearchDirectionHint.cs, SystemParameter.cs, TabControlAction.cs,
5211         TableLayoutPanelCellBorderStyle.cs, TextDataFormat.cs, TextImageRelation.cs,
5212         ToolStripDropDownCloseReason.cs, ToolStripDropDownDirection.cs,
5213         ToolStripGripDisplayStyle.cs, ToolStripGripStyle.cs,
5214         ToolStripItemAlignment.cs, ToolStripItemDisplayStyle.cs,
5215         ToolStripItemImageScaling.cs, ToolStripItemOverflow.cs,
5216         ToolStripItemPlacement.cs, ToolStripLayoutStyle.cs,
5217         ToolStripManagerRenderMode.cs, ToolStripRenderMode.cs,
5218         ToolStripStatusLabelBorderSides.cs, ToolStripTextDirection.cs,
5219         ToolTipIcon.cs, TreeNodeStates.cs, TreeViewDrawMode.cs,
5220         TreeViewHitTestLocations.cs, UnhandledExceptionMode.cs, ValidationConstraints.cs,
5221         WebBrowserEncryptionLevel.cs, WebBrowserReadyState.cs, WebBrowserRefreshOption.cs,
5222         ArrowDirection.cs, AutoCompleteMode.cs, AutoCompleteSource.cs, AutoSizeMode.cs,
5223         AutoValidate.cs, BatteryChargeStatus.cs, BindingCompleteContext.cs,
5224         BindingCompleteState.cs, CloseReason.cs, ColumnHeaderAutoResizeStyle.cs,
5225         ControlUpdateMode.cs, DataSourceUpdateMode.cs, DockingBehavior.cs,
5226         FixedPanel.cs, FlowDirection.cs, GetChildAtPointSkip.cs,
5227         HtmlElementInsertionOrientation.cs, InsertKeyMode.cs, ListViewHitTestLocations.cs,
5228         ListViewItemStates.cs, MaskFormat.cs: Added
5230 2006-07-13  Jonathan Chambers  <joncham@gmail.com>
5232         * PropertyGridView.cs: Fix keyboard navigation of drop down.
5233         Patch from eno for bug 78558.
5234         
5235 2006-07-13  Jackson Harper  <jackson@ximian.com>
5237         * TreeView.cs: When an edit is finished make sure that the
5238         selected node is visible.
5239         - When setting the top/bottom use the scrollbars is_visible, so
5240         everything will be set correctly even if the tree isn't visible
5241         yet.
5243 2006-07-13  Jackson Harper  <jackson@ximian.com>
5245         * ComboBox.cs: Revert the item->index part of my previous patch.
5246         * TreeView.cs: Use LostFocus instead of Leave for detecting when
5247         the edit box has lost focus (duh).
5248         - Just make the edit box not visible when we get return, that will
5249         take the focus, which will call EndEdit
5250         * TreeNode.cs When we start editing, notify the treeview.
5252 2006-07-12  Jackson Harper  <jackson@ximian.com>
5254         * ComboBox.cs: Clear out old items before setting the item list.
5255         This prevents databound controls from having their items added
5256         twice.
5257         - Switch the combobox to use indices whereever possible instead of
5258         using Item's.  This allows usto navigate through lists that have
5259         more then one item with the same string value (ie a, b, b, a).
5260         - Scroll the listboxes scrollbar when a non visible item is
5261         highlighted
5262         - Allow keypress to cycle through all the possible values. For
5263         example if you have b1, b2, b3 and hold down the B key all the
5264         values will be cycled through.
5265         
5266 2006-07-12  Jackson Harper  <jackson@ximian.com>
5268         * TextBoxBase.cs:
5269         * ListView.cs: Don't need to override SETFOCUS anymore, we can do
5270         this using the internal methods.
5271         * Control.cs: Add OnGotFocusInternal.  A new method that allows
5272         controls to "override" OnGotFocus and change focus behavior if
5273         needed.
5274         - Same thing for LostFocus
5275         * ComboBox.cs: Pass off focus to the text control properly.
5277 2006-07-12  Alexander Olk  <alex.olk@googlemail.com>
5279         * FileDialog.cs: Added GetFoldersOnly to MWFVFS
5280         * FolderBrowserDialog.cs: Almost a complete rewrite.
5281           - Better support for Environment.Specialfolders
5282           - Added support for MWFVFS
5283           - Made setting SelectedPath work
5285 2006-07-12  Jackson Harper  <jackson@ximian.com>
5287         * Control.cs: Optimze getting all the controls.
5289 2006-07-11  Jackson Harper  <jackson@ximian.com>
5291         * ContainerControl.cs: Override SETFOCUS in the container control,
5292         so that it is not selected on mouse click.
5294 2006-07-11  Peter Dennis Bartok  <pbartok@novell.com> 
5296         * LinkLabel.cs: Hack to handle Shift-Tabbing to the linklabel. 
5297           Hopefully we will have a better way once all of focus is complete.
5299 2006-07-11  Peter Dennis Bartok  <pbartok@novell.com>
5301         * ThemeWin32Classic.cs: Commented out some debug code and fixed
5302           a compile error with csc.
5304 2006-07-11  Jackson Harper  <jackson@ximian.com>
5306         * Control.cs: When hiding a control only select the next control
5307         if the current control was focused.
5308         - Don't handle enter/leave when setting/killing focus, this is
5309         done by the container control.
5310         - Remove is_selected, it's not needed anymore.
5311         - Add utility methods for selecting a child control, and for
5312         firing the Enter/Leave events.
5313         * ContainerControl.cs: When a control is activated fire the
5314         enter/leave events.
5315         - Don't wrap when processing the tab key, so that focus can be
5316         moved outside of the container.
5317         - Use the correct active control
5319 2006-07-11  Jackson Harper  <jackson@ximian.com>
5321         * ComboBox.cs: Remove some debug code that was blinding me.
5322         * UpDownBase.cs: These controls actually aren't implicit, they are
5323         visible to the user.
5325 2006-07-10  Chris Toshok  <toshok@ximian.com>
5327         * DataGrid.cs: move back to the is_adding boolean field.  god i
5328         hate this is_editing/is_adding/is_changing stuff.
5330 2006-07-10  Chris Toshok  <toshok@ximian.com>
5332         * DataGridTableStyle.cs: just check if the property type is bool.
5333         if it is, use DataGridBoolColumn, otherwise DataGridTextBoxColumn.
5334         Don't use CanRenderType.
5336         * DataGridTextBoxColumn.cs: set the value to DBNull.Value, not "",
5337         if our text == NullText.  Remove CanRenderType.
5339         * DataGridBoolColumn.cs: nuke CanRenderType.
5341         * DataGrid.cs: reenable some code to end the current edit inside
5342         of set_CurrentCell.  This fixes the other 1.1.16 regression.
5343         Also, remove rowhdrs_maxheight and just use rowhdrs_area.Height.
5344         Also, remove the visible_row_count arg from CalcRowHeaders, since
5345         we don't need to worry about the actual height of the area.
5347 2006-07-10  Chris Toshok  <toshok@ximian.com>
5349         * DataGridTextBoxColumn.cs: if when we Commit we're in navigate
5350         mode, just return.
5352         * DataGridTextBox.cs: change "isedit" to "isnavigating" to reflect
5353         the real sense of the IsInEditOrNavigateMode property (true =
5354         navigate, false = edit).  Also, update OnKeyPress to reflect this.
5356         * DataGridTableStyle.cs (CreateColumnsForTable): even if the
5357         column style exists, we still need to set its property descriptor
5358         to match up with our list manager.
5360 2006-07-10  Chris Toshok  <toshok@ximian.com>
5362         * ThemeWin32Classic.cs: implement the new row/header painting
5363         approach.  The parent row painting will likely go away and
5364         replaced with label controls, but the rest seems to work ok (and
5365         efficiently).
5367         * Theme.cs: change the way we draw datagrid rows.  we don't draw
5368         the row headers as a block now.  Instead we draw them in the
5369         normal draw-row loop.  Add some calls for drawing parent rows and
5370         relation rows.
5372         * DataGridTableStyle.cs: add tons of ArgumentExceptions if this is
5373         a default table style.  Set the defaults from ThemeEngine.Current,
5374         not SystemColors.  Fix lots of misc issues with property setters.
5376         * DataGrid.cs: move loads of style information out of this class
5377         as it's being duplicated with DataGridTableStyle.  keep track of a
5378         special DataGridTableStyle for the properties we used to mirror
5379         here.  Switch all the style properties to access this table style
5380         instead of instance fields of this class.  Also add a internal
5381         class to represent parent rows (more needs to be stored here, like
5382         the selection state from the parent table, as well as the
5383         expansion state.)  Also, for datasources with relations, do the
5384         right thing for collapse/expand, and add support for the
5385         navigation/parent row buttons.
5387         Lastly, fix the crash in the 1.1.16 build.
5389         * GridTableStylesCollection.cs: make the explicit interface
5390         implementations call the class's methods as opposed to duplicating
5391         them.
5393         * DataGridTextBoxColumn.cs: set the x/y offset of the textfield to
5394         0 so the text doesn't jump around when we move the cursor.
5396 2006-07-10  Jackson Harper  <jackson@ximian.com>
5398         * TextBoxBase.cs:
5399         * ListBox.cs: Match MS's ToString (this makes debugging focus
5400         stuff infinitely easier).
5402 2006-07-10  Jackson Harper  <jackson@ximian.com>
5404         * Control.cs (SelectNextControl): When checking the control's
5405         parent use this instead of ctrl.parent so that null can be passed
5406         to SelectNextControl. (I have unit tests for this).
5407         - Remove unused var.
5409 2006-07-10  Chris Toshok  <toshok@ximian.com>
5411         * CurrencyManager.cs: correct one regression, the removal of the
5412         finalType field.  Also, add a MonoTODO on CanAddRows, implement
5413         Refresh() correctly, and fix some event emission in
5414         ListChangedHandler.
5416 2006-07-07  Alexander Olk  <alex.olk@googlemail.com>
5418         * FileDialog.cs: Don't use brackets for new folders if they exist
5419           under *nix. Instead use -(number of existing folders +1).
5421 2006-07-07  Alexander Olk  <alex.olk@googlemail.com>
5423         * FileDialog.cs:
5424           - Fixed really nasty bug #78771
5425           - Don't block the whole GUI when reading directories with a lot of
5426             entries. Use an other thread instead and call BeginInvoke to
5427             update the ListView in MWFFileView
5429 2006-07-07  Chris Toshok  <toshok@ximian.com>
5431         * Control.cs (Dispose): release any Capture when disposing.
5433 2006-07-07  Chris Toshok  <toshok@ximian.com>
5435         * LinkLabel.cs (Select): if we chain up to the parent, set
5436         focused_index to -1 so we'll search for the first available link
5437         the next time the user tabs into us.  Also, if the direction is
5438         backward and focused_index == -1, start the search from the last
5439         element.
5441 2006-07-07  Chris Toshok  <toshok@ximian.com>
5443         * LinkLabel.cs (CreatePiecesFromText): if the link's range piece
5444         is beyond the end of the text, don't do anything.
5445         (CreateLinkPieces): set our ControlStyles.Selectable based on
5446         whether or not we have any links.
5447         (Link.Invalidate): use a loop instead of foreach.
5448         (Link.set_Start): null out owner.sorted_links so it'll be
5449         recreated by CreateLinkPieces.
5451 2006-07-06  Chris Toshok  <toshok@ximian.com>
5453         * LinkLabel.cs: revert the SetStyle change.
5455 2006-07-06  Chris Toshok  <toshok@ximian.com>
5457         * LinkLabel.cs (.ctor): SetStyle Selectable to true.
5458         (OnEnableChanged): s/Refresh/Invalidate
5459         (OnGotFocus): if we have a focused index already, refocus it (so
5460         if we mouse out/in to the window it'll focus the right link).
5461         (OnKeyDown): move the tab handling out of here.
5462         (OnLostFocus): don't set focused_index to -1, so we can refocus it
5463         when we lose focus.
5464         (OnMouseDown): don't Capture here - Control handles it.  Also,
5465         focus the active link.
5466         (OnMouseUp): don't deal with Capture.
5467         (OnPaintBackgroundInternal): remove.
5468         (OnTextAlignChanged): CreateLinkPieces before calling the
5469         superclass's method.
5470         (OnTextChanged): call CreateLinkPieces before calling superclass's
5471         method.
5472         (ProcessDialogKey): handle Tab here, and call Select(bool,bool) to
5473         move around.
5474         (Select): implement this, moving the selection between different
5475         links, and call parent.SelectNextControl if we don't have another
5476         link to focus in the given direction.
5477         (CreateLinkPieces): call Invalidate instead of Refresh.
5478         
5479 2006-07-06  Chris Toshok  <toshok@ximian.com>
5481         * ThemeWin32Classic.cs: DrawLinkLabel changes to accomodate the
5482         new LinkLabel internals.
5484         * LinkLabel.cs: fairly major rewrite.  get rid of all the loops
5485         over pieces looking for active/focused/etc links.  also, deal with
5486         runs of text (and links) with embedded \n's in them, and use
5487         MeasureCharacterRanges instead of MeasureString to figure out the
5488         regions text occupies.  Lastly, do the usual s/Refresh/Invalidate
5489         two-step.
5491 2006-07-04  Jackson Harper  <jackson@ximian.com>
5493         * XplatUIX11.cs: Enable key auto repeat. If the user doesn't have
5494         XKB or key auto repeat, do it manually.  Without key auto repeat,
5495         when a key is held down we get key press, key release, key press,
5496         key release, ... with auto repeat we get key press, key press, key
5497         press ..., and then a release when the key is actually released.
5499 2006-07-03  Jackson Harper  <jackson@ximian.com>
5501         * TabControl.cs:
5502         * ThemeWin32Classic.cs: Tabs do not obey normal background color
5503         rules, they are always control color regardless of the background
5504         color.
5506 2006-07-02  Alexander Olk  <alex.olk@googlemail.com>
5508         * FileDialog.cs: Added internal class MWFConfig.
5509           Removed Registry support and replaced it with support for the new
5510           MWFConfig class. See MWFConfig comments for more information.
5512 2006-06-30  Alexander Olk  <alex.olk@googlemail.com>
5514         * ThemeWin32Classic.cs: Added RadioButton and CheckBox focus
5515           rectangle. Added some patches from eno from bug #78490 and fixed
5516           the arrow position for small up and down CPDrawScrollButtons.
5518 2006-06-30  Jackson Harper  <jackson@ximian.com>
5520         * InternalWindowManager.cs: Remove some debug code.
5521         * Form.cs: When an MdiParent is set to null, the window is
5522         "detatched" and becomes a normal window.
5523         * MdiClient.cs: Don't bring the new child form to the front until
5524         it is activated (setting it as active does this), this makes the
5525         previously active forms titlebar get redrawn as inactive.
5527 2006-06-29  Peter Dennis Bartok  <pbartok@novell.com>
5529         * PrintDialog.cs: Labels need a tab index too, otherwise they overlap
5530           with later controls
5532 2006-06-29  Mike Kestner  <mkestner@novell.com>
5534         * MenuAPI.cs: handle arrow keys in keynav state. Go active on down
5535         arrow in keynav state.  Fixes #78682.
5537 2006-06-28  Atsushi Enomoto  <atsushi@ximian.com>
5539         * PrintDialog.cs: Reorder, relayout, remove extra code, set tab 
5540           order (fixes #78393)
5542 2006-06-28  Jonathan Pobst  <monkey@ipobst.com>
5544         * AccessibleRole.cs, AccessibleStates.cs, AnchorStyles.cs, 
5545           ArrangeDirection.cs, ArrangeStartingPosition.cs, ColorDepth.cs,
5546           ControlStyles.cs, DataGridViewImageCellLayout.cs, DrawMode.cs,
5547           FormBorderStyle.cs, FormStartPosition.cs, FormWindowState.cs,
5548           GridItemType.cs, HelpNavigator.cs, ImeMode.cs, ItemActivation.cs,
5549           ItemBoundsPortion.cs, Keys.cs, ListViewAlignment.cs, 
5550           PictureBoxSizeMode.cs, PropertySort.cs, SelectionMode.cs,
5551           Shortcut.cs, SizeGripStyle.cs, SortOrder.cs, StructFormat.cs,
5552           TextFormatFlags.cs, ToolBarAppearance.cs, ToolBarButtonStyle.cs,
5553           ToolBarTextAlign.cs, View.cs: 2.0 Changes to existing 1.x
5554           enumerations (FlagsAttribute, SerializableAttribute, added/removed
5555           values)
5557 2006-06-28  Mike Kestner  <mkestner@novell.com>
5559         * ComboBox.cs: implement scroll wheel support. Fixes #78360.
5561 2006-06-28  Atsushi Enomoto  <atsushi@ximian.com>
5563         * PropertyGrid.cs,
5564           PropertyGridTextBox.cs : explicitly set BackColor to differentiate
5565           item lines from other area (It also makes BackColor consistent and
5566           compatible with .NET). Fixed bug #78564.
5568 2006-06-28  Jonathan Chambers  <jonathan.chambers@ansys.com>
5570         * PropertyGrid.cs: refresh toolbar when PropertySort is set.
5571         Patch from Eno for #78555.
5573 2006-06-27  Chris Toshok  <toshok@ximian.com>
5575         * ThemeWin32Classic.cs: s/grid.grid_drawing/grid
5577         * DataGridColumnStyle.cs: same.
5579         * DataGrid.cs: Roll DataGridDrawingLogic.cs into this file.
5580         
5581         * DataGridDrawingLogic.cs: nuke.
5583 2006-06-27  Chris Toshok  <toshok@ximian.com>
5585         * DataGridTableStyle.cs: clean up the constructors, and build the
5586         list of child relations for this table.  I have no idea if this is
5587         where we should be doing it (it probably isn't), but since we're
5588         already iterating over the properties..
5590         * DataGrid.cs: add row resizing.  for now we add a DataGridRow
5591         struct and array for keeping track of row information, similar to
5592         what's shown in a hack on
5593         http://www.syncfusion.com/FAQ/WindowsForms/FAQ_c44c.aspx.
5595         * Theme.cs: be consistent about the naming of DataGrid methods,
5596         prefering ColumnWidths and RowHeights over columnsWidths and
5597         RowsHeights.
5599         * ThemeWin32Classic.cs: same, and also add support for variable
5600         sized rows (and the +/- expansion icons for related rows).
5602 2006-06-27  Peter Dennis Bartok  <pbartok@novell.com>
5604         * TextBoxBase.cs: Applied Eno's patch from #78660
5606 2006-06-27  Peter Dennis Bartok  <pbartok@novell.com> 
5608         * Form.cs (ScaleCore): We don't want to scale our form if it's
5609           state is minimized or maximized, but we still need to scale our
5610           child windows. Also, added try/finally block to ensure layout
5611           gets reset (Fixes #78697)
5613 2006-06-27  Peter Dennis Bartok  <pbartok@novell.com>
5615         * Control.cs: Added 2.0 Scale(SizeF) method (Fixes 78700)
5617 2006-06-27  Peter Dennis Bartok  <pbartok@novell.com> 
5619         * Form.cs: Fixed c+p error and added check to resize form if minimum
5620           size is bigger than current size (Fixes #78709)
5622 2006-06-26  Peter Dennis Bartok  <pbartok@novell.com> 
5624         * ThemeEngine.cs (..ctor): Properly use ToLower() (Fixes #78704)
5626 2006-06-26  Mike Kestner  <mkestner@novell.com>
5628         * ComboBox.cs: only do Keypress handling in the combo when there  
5629         are items in the collection. Fixes #78710.
5631 2006-06-26  Chris Toshok  <toshok@ximian.com>
5633         * Binding.cs: make this work bi-directionally.  also, clear up
5634         other mixups between Push/Pull Data (e.g. we're supposed to pull
5635         data when validating).
5637         * BindingManagerBase.cs: trim some fully qualified collection
5638         types.
5640         * PropertyManager.cs (get_IsSuspended): oops, fix this check.
5642 2006-06-23  Chris Toshok  <toshok@ximian.com>
5644         * PropertyManager.cs: It appears (according to the unit tests)
5645         that PropertyManager doesn't use
5646         PropertyDescriptor.AddValueChanged to track propery value changes
5647         in its datasource, but uses the same scheme as Binding, where it
5648         looks for a <Property>Changed event and binds to it.
5650         Also, according to the docs, IsSuspended always returns false for
5651         a property manager with a non-null datasource.
5653 2006-06-22  Peter Dennis Bartok  <pbartok@novell.com> 
5655         * Form.cs: (ShowDialog): If we're returning a forced cancel we still
5656           need to update the actual DialogResult. (Fixes #78613)
5658 2006-06-22  Peter Dennis Bartok  <pbartok@novell.com>
5660         * Form.cs (ShowDialog): Release any captures before running the
5661           new message pump (fixes #78680)
5663 2006-06-22  Mike Kestner  <mkestner@novell.com>
5665         * ListView.cs: Layout column widths properly in details mode even 
5666         if HeaderStyle.None is set.  Fixes #78691.
5668 2006-06-21  Peter Dennis Bartok  <pbartok@novell.com>
5670         * FileDialog.cs: Fixed taborder to match MS. Fixes #77873 partially.
5672 2006-06-21  Peter Dennis Bartok  <pbartok@novell.com> 
5674         * Control.cs (ContainsFocus): Using new driver method to get focused
5675           window, instead of trying to use internal tracking var, which can
5676           recursion issues (Fixes #78685)
5677         * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs, XplatUIOSX.cs, 
5678           XplatUIWin32.cs: Added GetFocus method to return focused window
5680 2006-06-21 Gonzalo Paniagua Javier <gonzalo@ximian.com>
5682         * ColorDialog.cs: when the mouse button is pressed inside the color
5683         matrix, don't let the cursor move out of it until the button is
5684         released, which is the behavior on windows. Changed 'colours' by
5685         'colors' to use the same word consistently.
5687 2006-06-21  Chris Toshok  <toshok@ximian.com>
5689         * DataGrid.cs: add in some basic navigation stuff (navigating to a
5690         child relation and back, using a stack).  Also, remove
5691         GetDataSource and the code that calls it - it's not needed.  Also,
5692         track CurrencyManager.ListName's removal.
5694 2006-06-21  Chris Toshok  <toshok@ximian.com>
5696         * CurrencyManager.cs: push some of the original type checking from
5697         BindingContext.CreateBindingManager to here, and remove some of
5698         the finalType stuff.  Need more tests to make sure I've got the
5699         ListName part right, and we might need more in SetDataSource.
5701         * PropertyManager.cs: add a ctor that takes just the datasource,
5702         and no property name.  Make SetDataSource work with a null
5703         property_name, and make Current return the data_source if the
5704         property descriptor is null.  this makes 'string foo = "hi";
5705         BindingContext[foo].Current' return "hi" as it should.
5707         * RelatedCurrencyManager.cs: make this code more generic - there's
5708         no reason the parent manager has to be CurrencyManager, and
5709         there's no reason to pass the DataRelation.  It suffices to use a
5710         BindingManagerBase and PropetyDescriptor.
5712         * RelatedPropertyManager.cs: make a similar change here.
5713         
5714         * BindingContext.cs: make CreateBindingManager the beautiful, tiny
5715         flower I knew it could be.
5717 2006-06-20  Chris Toshok  <toshok@ximian.com>
5719         * PropertyManager.cs: the PropertyChangedHandler is invoked when
5720         data in the source has changed and we need to update the control,
5721         so s/PullData/PushData.
5723         * CurrencyManager.cs: Refresh is meant to update the control from
5724         data in the datasource.  So, s/PullData/PushData.
5726         * BindingContext.cs: add more ugliness (we weren't handling the
5727         case where data_source = DataTable and data_member = column_name).
5729         * Binding.cs: fix PushData/PullData mixup.  Both are interpreted
5730         from the perspective of the datasource.  PullData pulls from the
5731         control, PushData pushes to the control.
5733 2006-06-20  Chris Toshok  <toshok@ximian.com>
5735         * BindingContext.cs: rewrite the CreateBindingManager code to
5736         handle navigation paths more or less properly.  This could
5737         definitely stand some more work, in particular to push the
5738         recursion up to the toplevel.  But that relies on fixes in other
5739         places (System.Data comes to mind).
5741         Also, move to a flat hashtable (and encode the twolevel nature of
5742         the dictionary into the hash key).  This lets us implement the
5743         IEnumerable.GetEnumerator method.
5745         * RelatedCurrencyManager.cs: new class.  Update our view based on
5746         our relation and our parent CurrencyManager's position.
5748         * CurrencyManager.cs: split out some logic from the ctor into
5749         SetView, so it can be called from the new RelatedCurrencyManager
5750         subclass.
5752         * RelatedPropertyManager.cs: new class.  Update our datasource
5753         based on the position of our parent CurrencyManager.
5755         * PropertyManager.cs: split out some logic from the ctor into
5756         SetDataSource, so it can be called from the new RelatedDataSource
5757         subclass.  Also, make the Current getter return the value
5758         of the PropertyDescriptor, not the data_source.
5760         * Binding.cs: no need to duplicate the string splitting code here.
5762 2006-06-19  Peter Dennis Bartok  <pbartok@novell.com> 
5764         * Control.cs:
5765           - set_Enabled: OnEnabledChanged is not called if the inherited state 
5766             of the control is not altered, even though  we might be changing the
5767             internal state of the control (#78458)
5768           - set_Enabled: (Re)Moved the enabling/disabling of the window to 
5769             OnEnabledChanged, to allow easy altering of any child window state
5770           - OnEnabledChanged: Added code to enable/disable driver window state
5771           - OnParentEnabledChanged: Instead of firing the event, call 
5772             OnEnabledChanged, which will fire the event and also a) set driver
5773             window state and pass the enabled state to any grandchildren (#78458)
5775 2006-06-19  Jackson Harper  <jackson@ximian.com>
5777         * InternalWindowManager.cs: We don't set the cursor explicitly
5778         thats done via the response to NCHITTESTs.
5779         - Don't need to adjust for titlebar heights anymore, the
5780         coordinates are coming in the correct coordinates now (see peters
5781         last patch).
5784 2006-06-19  Peter Dennis Bartok  <pbartok@novell.com> 
5786         * XplatUIX11.cs (GetMessage): WM_NCxBUTTONx messages were wrongly
5787           being translated relative to whole window, instead of client window.
5788           That caused broken offsets on mouseclick (and caused gas for our
5789           InternalWindowManager)
5791 2006-06-15  Peter Dennis Bartok  <pbartok@novell.com> 
5793         * TextControl.cs:
5794           - MoveCaret: Implemented PgUp, PgDown, CtrlPgUp and CtrlPgDown
5795           - Undo(): Added replay of cursor move on DeleteChars action; added
5796             calling Undo() again if a recorded cursor move is invalid (to
5797             ensure that some action is performed on Undo)
5798         * TextBoxBase.cs (ProcessKey): Added handling of PgUp and PgDown (#78482)
5800 2006-06-16  Jackson Harper  <jackson@ximian.com>
5802         * MdiClient.cs: Instead of just sizing maximized windows when
5803         there is a resize we also have to adjust the Y of minimized
5804         windows, so they stay pinned to the bottom of the mdi container.
5805         - Eliminate separate tracking of the active control, we can just
5806         get this from the controls collection.
5807         - Paint the decorations for the newly activated titlebar so we get
5808         a pretty blue bar.
5809         * InternalWindowManager.cs:
5810         * ThemeWin32Classic.cs: Minimized windows get all three buttons
5811         even if they are a tool window.
5812         
5813 2006-06-15  Peter Dennis Bartok  <pbartok@novell.com> 
5815         * TextControl.cs (Undo): Handle non-existent cursor locations in the
5816           undo buffer, these can happen when text was deleted and the cursor
5817           was recorded first. Since we will also have a recorded cursor
5818           after the delete this is not an issue. (Fixes #78651)
5820 2006-06-14  Peter Dennis Bartok  <pbartok@novell.com> 
5822         * AccessibleObject.cs: Remove dependence on Control.is_selected;
5823           instead properly track control states internally (allows us to
5824           remove is_selected from Control)
5826 2006-06-14 Gonzalo Paniagua Javier <gonzalo@ximian.com>
5828         * ImageListStreamer.cs: correctly generate the 1bpp mask for images
5829         whose width is not a multiple of 8.
5831 2006-06-13  Jackson Harper  <jackson@ximian.com>
5833         * MdiClient.cs:  Only maximize the next child if the current one
5834         is maximized.
5836 2006-06-13  Chris Toshok  <toshok@ximian.com>
5838         * DataGridColumnStyle.cs: Invalidate the column when HeaderText is
5839         modified.  Also, guard against grid or grid_drawing being null in
5840         Invalidate.
5842         * DataGrid.cs: Reformat tons of getters/setters.  In the
5843         DataMember setter, just call SetNewDataSource instead of
5844         duplicating some of its functionality.  In SetNewDataSource, don't
5845         check ListManager for null, since the property getter creates the
5846         object if needed.
5848         * DataGridTableStyle.cs: don't set TableStyle or call
5849         SetDataGridInternal on the column here, it's done in
5850         GridColumnStylesCollection.Add.
5852         * GridColumnStylesCollection.cs: fix all the explicit interface
5853         implementations to just call our methods.  Nuke AddInternal() and
5854         move the body of it to Add().  Also, add a call to
5855         column.SetDataGridInternal to Add().
5857         * DataGridTextBoxColumn.cs (.ctors): call this() instead of
5858         base()+duplicate code.  Also, use the Format property instead of
5859         format to generate an Invalidate ala MS.  Lastly, create the
5860         textbox here, unconditionally.
5861         (set_Format): call Invalidate.
5862         (get_TextBox): no need to call EnsureTextBox.
5863         (Commit): remove the message box.
5864         (Edit) remove the call to EnsureTextBox.
5865         (EndEdit): call HideEditBox instead of ReleaseHostedControl.
5866         (EnterNullValue): no need to check textbox for null.
5867         (HideEditBox): no need to check textbox for null.
5868         (SetDataGridInColumn): add the textbox to the grid's controls.
5869         (EnsureTextBox): nuke.
5870         
5871 2006-06-13  Jackson Harper  <jackson@ximian.com>
5873         * MdiWindowManager.cs: Hook up to the maximized menus paint event
5874         and redraw the buttons when needed. Unhook when the window is
5875         unmaximized.
5876         * MainMenu.cs: Add an internal Paint event, the mdi window manager
5877         needs this so that it can redraw its buttons when the menu is
5878         repainted.
5879         * InternalWindowManager.cs:
5880         * Form.cs: The method order has changed for DrawMaximizedButtons,
5881         so that it can be a PaintEventHandler.
5882         
5883 2006-06-13  Jackson Harper  <jackson@ximian.com>
5885         * MdiClient.cs: When we close a maximized mdi window, the next mdi
5886         window is activated and maximized, even if it wasn't before.
5887         - When  a new window is activated repaint the decorations of the
5888         old one, so that it no longer has the Active "look" (the blue
5889         titlebar).
5890         * InternalWindowManager.cs: Open up CreateButtons to base classes
5891         so they can recreate the buttons on state changes.
5892         - If a window is maximized give it all three buttons
5893         * MdiWindowManager.cs: Create the titlebar buttons when the state
5894         is changed, this is needed because a toolwindow will not have all
5895         three buttons until it is maximized.
5897 2006-06-13  Atsushi Enomoto  <atsushi@ximian.com>
5899         * ProgressBar.cs : PerformStep() shouldn't exceed Maximum.
5900           Fixed bug #78609.
5902 2006-06-12  Jackson Harper  <jackson@ximian.com>
5904         * KeysConverter.cs: Make sure we handle the Ctrl special case
5905         if its the only key.
5906         
5907 2006-06-12  Jackson Harper  <jackson@ximian.com>
5909         * Theme.cs: Add a method to get the size of a managed window
5910         toolbar button.
5911         * InternalWindowManager.cs: Remove the ButtonSize property, this
5912         should be retrieved from the theme.
5913         * MdiWindowManager.cs: Get the button size from the theme
5914         * ThemeWin32Classic.cs: Make the method to get the managed window
5915         titlebar button size public.
5916         - Handle the different button sizes of maximized toolwindows
5917         (should match any maximized window).
5918         - Get the titlebar height from the theme, not the WM (which gets
5919         it from the theme).
5921 2006-06-12  Jackson Harper  <jackson@ximian.com>
5923         * InternalWindowManager.cs: Handle NC Double Clicks, passing the
5924         event down to the mdi window manager.
5925         - Expose some extra stuff to base classes
5926         - Make sure to end the Capture on an NC Mouse up, so that we can
5927         get double clicks properly, and the sizing doens't stick.
5928         - When doing PointToClient contain it in the workable desktop
5929         area, this prevents windows from changing size when the cursor is
5930         pulled outside of the working area while sizing.
5931         * MdiWindowManager.cs: When we get a double click maximize the
5932         window.
5933         - Reset the cursor after handling mode changes.
5935 2006-06-12  Peter Dennis Bartok  <pbartok@novell.com> 
5937         * XplatUIX11.cs (WorkingArea): Read the actual workarea for the 
5938           current desktop, instead of just assuming a 0, 0 origin. This
5939           is needed for our internal window manager, to know the top
5940           margin of the desktop
5942 2006-06-12  Chris Toshok  <toshok@ximian.com>
5944         * DataGrid.cs (set_CurrentCell): concede focus as we move around.
5945         we need this to get rid of the selected background in the bool
5946         column.
5947         (CancelEditing): move the ConcedeFocus call to above the Abort
5948         call.  Also, set is_changing to false and invalidate the row
5949         header if we were changing before.
5950         (ProcessKeyPreviewInternal): remove, since noone outside this
5951         class calls it anymore.  Roll the code into ProcessKeyPreview.
5952         (EndEdit): remove the internal version.
5953         (InvalidateCurrentRowHeader): make private.
5955         * DataGridBoolColumn.cs: simplify this class a bunch.  remove the
5956         Keys.Escape handling (and with it the last call to
5957         DataGrid.EndEdit from outside the class.)
5960 2006-06-12  Chris Toshok  <toshok@ximian.com>
5962         * DataGridTextBox.cs (.ctor): isedit defaults to false.
5963         (OnKeyPress): set isedit to true.
5964         (ProcessKeyMessage): remove Keys.Enter handling from here.  it's
5965         already handled by the grid.
5967         * DataGrid.cs (set_CurrentCell): more work here.  it's still not
5968         right.  ugh.
5969         (set_DataSource): SetDataSource always returns true, so stop
5970         putting it in an if statement.
5971         (EndEdit): get rid of some {}'s
5972         (ProcessGridKey): return true in case Keys.Escape.
5973         (ProcessKeyPreviewInternal): only handle KEYDOWN messages.
5974         (ConnectListManagerEvents,DisconnectListManagerEvents): connect to
5975         PositionChanged, stopped connecting to CurrentChanged.
5976         (GetDataSource): simplify this a bunch.
5977         (SetDataSource): change return type from bool to void.
5978         (OnListManagerPositionChanged): rename OnListManagerCurrentChanged
5979         to this, and make sure we don't set ListManager.Position inside
5980         set_CurrentCell.
5981         (OnListManagerItemChanged): if we're passed an actual index,
5982         redraw that row.
5984         * CurrencyManager.cs (set_Position): don't call PullData here.
5986 2006-06-09  Jackson Harper  <jackson@ximian.com>
5988         * TreeNode.cs:  Recalculate the visible order before doing the
5989         Expand/Collapse Below calls, because those calls generate an
5990         expose.
5991         - Reduce calls to the TreeView property, which is mildly expensive
5992         by using a local var.
5993         * Form.cs: Layout the MDI child windows when creating the parent
5994         form.
5995         - Don't use the internal constructor anymore
5996         * MdiClient.cs: use the parent form width/height (if available)
5997         when laying out the child windows, we do this because the
5998         mdiclient isn't docked yet when the initial layout is done.
5999         - Don't need an internal constructor anymore.
6001 2006-06-08 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6003         * FileDialog.cs: handle access errors when trying to create a folder
6004         or changing to a directory. No need to initialize out parameters.
6006 2006-06-08  Alexander Olk  <alex.olk@googlemail.com>
6008         * FileDialog.cs: Append a number when creating a new folder if the
6009           folder already exists (use parenthesis instead of square brackets)
6011 2006-06-08  Alexander Olk  <alex.olk@googlemail.com>
6013         * FileDialog.cs:
6014           - Disabled registry support for windows and added better registry
6015             error checking for other systems (need to investigate why it
6016             works perfectly on my system)
6017           - If a folder already exist show an error MessageBox instead of
6018             trying to create an indexed name.
6019           - Fixed a non intentional typo.
6021 2006-06-08 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6023         * FileDialog.cs: (SetFileName) don't crash if CurrentRealFolder is null.
6025 2006-06-08  Alexander Olk  <alex.olk@googlemail.com>
6027         * FileDialog.cs: When creating a new folder don't crash if the
6028           folder already exists.
6030 2006-06-08  Alexander Olk  <alex.olk@googlemail.com>
6032         * FileDialog.cs: Allmost a complete rewrite.
6033           - added a "virtual" file system that handles the differences
6034             between unix and windows file systems (especially the directory
6035             structure). Moved most of the directory and file handling code
6036             into the vfs.
6037             Added vfs classes: MWFVFS, FileSystem, WinFileSystem,
6038             UnixFileSystem and FSEntry.
6039           - Recently used folder/directory, size, location and used file names
6040             (file name ComboBox) are now stored in the registry and get read
6041             before the dialog shows up (fixes part 6 of bug #78446).
6042           - Creation of new folders/directories is now possible (context menu
6043             or ToolBar). Added TextEntryDialog for this that fills in the gap
6044             until ListView.LabelEdit works.
6045           - Fixed cursor handling (bug #78527) and focus handling for
6046             PopupButtonPanel
6047           - Various "Search in" ComboBox enhancements. The content of the
6048             dropdown listbox now almost matches ms.
6049           - Changed the behaviour when the user switches to SpecialFolder
6050             Recent to show the ListView in View.Details.
6051           - Beside using the ToolBar to change the View property of the
6052             file ListView it is now possible to use the context menu too.
6054 2006-06-08  Alexander Olk  <alex.olk@googlemail.com>
6056         * ComboBox.cs: Don't create a new ObjectCollection when an item
6057           gets inserted. Just insert the item in the existing object_items
6058           ArrayList.
6060 2006-06-08  Jackson Harper  <jackson@ximian.com>
6062         * OpenTreeNodeEnumerator.cs: Fix to use the Parent property, so
6063         that the treeview and root node checks are done also, this fixes a
6064         regression i caused in the unit tests.
6066 2006-06-07  Wade Berrier <wberrier@novell.com> 
6068         * RichTextBox.cs: More ISO8859-1 -> unicode
6070 2006-06-07  Mike Kestner  <mkestner@novell.com>
6072         * ComboBox.cs : use items to hold highlight/selection so that
6073         collection insertions don't require synchronization.
6075 2006-06-07  Jackson Harper  <jackson@ximian.com>
6077         * InternalWindowManager.cs: Simplify (and FIX) the window sizing
6078         routine.  We now always keep the sized edge at the cursor instead
6079         of computing movement and adjusting rects.  There is one buglet
6080         with this method though when the cursor is moved over area that
6081         the window can not expand too (such as the toolbars on the desktop).
6083 2006-06-07 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6085         * XplatUIX11.cs: (IsEnabled,IsVisible) the window handler can be null
6086         here. Fixes crash on startup in AlbumSurfer.
6088 2006-06-07  Peter Dennis Bartok  <pbartok@novell.com> 
6090         * RichTextBox.cs: Replaced embedded ISO8859-1 chars with proper unicode
6091           values
6093 2006-06-07 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6095         * XplatUIX11.cs: call XPending and XNextEvent inside the same lock()
6096         statement to avoid calling XNextEvent which will block if another thread
6097         took the event that we were expecting. Fixes bug #78605.
6099 2006-06-07  Mike Kestner  <mkestner@novell.com>
6101         * ListView.cs : isolated checkbox clicking from the selection logic.
6102         Toggle check state on item doubleclicks.  Really fixes #78454 part2.
6104 2006-06-06  Carlos Alberto Cortez <calberto.cortez@gmail.com>
6106         * Form.cs: Check that the value passed to Form.DialogResult
6107         is a valid enum value.
6109 2006-06-06 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6111         * FileDialog.cs: disable the up button when in 'Recently Used' or 'My
6112         Computer'. Clicking it in the network view goes to 'My Computer'.
6113         Added CIFS filesystem type. Display the mount point of filesystems.
6114         Avoid duplicate mount points (happens for me with CIFS);
6116 2006-06-06  Jackson Harper  <jackson@ximian.com>
6118         * InternalWindowManager.cs: Draw the maximized windows buttons
6119         when resizing.
6121 2006-06-06 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6123         * Form.cs: when running a modal dialog, ignore WM_CLOSE requests for
6124         all other dialogs. Fixes bug #78585.
6126 2006-06-06  Mike Kestner  <mkestner@novell.com>
6128         * CheckedListBox.cs : apply CheckOnClick behavior to unchecking too.
6129         Only invalidate checkbox on checkstate changes to avoid flicker.
6130         * ListBox.cs : avoid unselect/select when clicking selected item.
6131         avoid reselection flicker for already multiselected items.
6132         Fixes #78382.
6134 2006-06-06  Jackson Harper  <jackson@ximian.com>
6136         * MdiWindowManager.cs: When the window is closed do an NCRecalc on
6137         the parent form so that the menu is removed if needed.
6139 2006-06-06  Mike Kestner  <mkestner@novell.com>
6141         * ListBox.cs : add ScrollWindow call to UpdateTopItem.  fix
6142         Prev/Next/PrevPage/NextPage/Home/End index calculation.  Fixes #78559.
6144 2006-06-06  Mike Kestner  <mkestner@novell.com>
6146         * CheckedListBox.cs : rebuild check collection on Add.  Fixes #78426.
6149 2006-06-06  Jackson Harper  <jackson@ximian.com>
6151         * Control.cs: Use the property (instead of the field) to get the
6152         default cursor so it is instantiated correctly.
6153         * InternalWindowManager.cs: The OS doesn't give us an NCPAINT with
6154         resizes so we need to manually repaint the window decorations here.
6155         - Set the titlebar button locations as soon as they are created,
6156         otherwise they are not set correctly on win32.
6157         
6158 2006-06-06  Chris Toshok  <toshok@ximian.com>
6160         * CurrencyManager.cs (set_Position): call PullData before
6161         OnCurrentChanged.
6162         (AddNew): after calling IBindingList.AddNew, update our
6163         listposition, and call OnCurrentChanged/OnPositionChanged (without
6164         calling PullData).
6165         (OnCurrentChanged): remove the call to PullData from here.
6166         (OnItemChanged): remove the call to PushData from here.
6167         (OnPositionChanged): change the test from == null to != null to
6168         match the other methods.
6169         (ListChangedHandler): the grossest part of the patch.  Implement
6170         this such that it passes the unit tests in CurrencyManagerTest and
6171         the output more or less matches that of MS's implementation.
6173 2006-06-06  Mike Kestner  <mkestner@novell.com>
6175         * ListView.cs : only update check state on single click.
6176         * ThemeWin32Classic.cs : fix focus drawing for details view without
6177         fullrowselect.  Fixes #78454.
6178         * XplatUIX11.cs : fix for double click emission.
6180 2006-06-05  Jonathan Chambers  <jonathan.chambers@ansys.com>
6182         * PropertyGridView.cs : Applied Atsushi's patch to fix
6183         font dialog bug  (#78197).
6185 2006-06-05  Jackson Harper  <jackson@ximian.com>
6187         * TreeNode.cs: Compute the next node for expanding/collapsing
6188         correctly. We now factor in nodes without a NextNode
6189         correctly. (Fixes somes cases in nunit-gui).
6190         * InternalWindowManager.cs: Set the bounds when updating the
6191         virtual position of a tool window.
6192         
6193 2006-06-05  Chris Toshok  <toshok@ximian.com>
6195         * DataGrid.cs: rename cached_currencymgr to list_manager.
6196         (set_CurrentCell): move SetCurrentCell code here, and clean it up
6197         some.
6198         (CurrentRow, CurrentColumn): single accessors so we can make the
6199         cursor movement code a lot easier to understand.
6200         (CurrentRowIndex): implement this in terms of CurrentRow.
6201         (BeginEdit): clean this up a bit.
6202         (CancelEditing): sort out the is_editing/is_changing/is_adding
6203         stuff a little.
6204         (EndEdit): minor changes.
6205         (OnKeyDown): add a comment about a (most likely) unnecessary
6206         check.
6207         (OnMouseDown): cancel editing when we click on a row header.  And
6208         use the CurrentRow setter, not CurrentCell.
6209         (ProcessDialogKey): directly call ProcessGridKey.
6210         (UpdateSelectionAfterCursorMove): factor out this common block of
6211         code (it's used everywhere that we move the cursor by updating row
6212         or column).
6213         (ProcessGridKey): pretty substantial overhaul.  Use the
6214         CurrentRow/CurrentColumn properties to make the code a lot more
6215         readable.  Only use the CurrentCell property when we have to
6216         modify both row and column at once.  Tab behavior is still broken,
6217         and Delete is untested.
6218         (Select): if we have no selected rows, set selection_start to
6219         @row.
6220         (EditCurrentCell): rename EditCell this.  It was only ever invoked
6221         with CurrentCell as the arg, so drop the arg and rename it.
6223         * DataGridColumnStyle.cs: clean up the constructors a little, and
6224         drop CommonConstructor().
6226         * DataGridTextBox.cs (.ctor): set accepts_return to true so we
6227         actually get notified when the user hits it.
6228         (ProcessKeyMessage): *substantially* simplify this method.
6229         There's no reason (that I can see) for the textbox to be making
6230         calls into the datagrid at all.  Remove all of them but the ones
6231         for Enter handling.  those will take some more work.
6233         * DataGridTextBoxColumn.cs (ConcedeFocus): implement this by
6234         calling HideEditBox.
6235         (HideEditBox): if we have an active textbox, render it invisible
6236         without causing a re-layout of the datagrid.
6238 2006-06-05  Mike Kestner  <mkestner@novell.com>
6240         * ListView.cs : fix NRE crasher when focuseditem is cleared by
6241         collection changes by resetting it to Items[0].  Fixes #78587.
6243 2006-06-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6245         * MessageBox.cs: if the height of the text is larger than the icon_size,
6246         use that. Fixes bug #78575.
6248 2006-06-05  Jackson Harper  <jackson@ximian.com>
6250         * TreeView.cs: Fix line drawing when scrolling.  To do this each
6251         node is basically responsible for drawing its entire horizontal
6252         area.  When drawing a node it draws its parent node lines if
6253         needed.
6254         - Adjust the clip area to the viewport rectangle
6255         - Fix Left/Right key handling to match MS. (It expand/collapses
6256         and moves to parents/first child but does not move selection to
6257         sibling nodes).
6258         - Fix SetTop to work with new bound calculation code
6259         - When scrollbars are no longer needed we need to reset scrolling
6260         vars and recalculate the visible order so the redraw is correct
6261         * TreeNode.cs: We can't expand/collapse nodes with no children.
6263 2006-06-03  John Luke  <john.luke@gmail.com> 
6265         * X11DesktopColors.cs: dllimport the exact gtk and gdk versions
6266         so the colors work without dev packages
6267         
6268 2006-06-02  Peter Dennis Bartok  <pbartok@novell.com> 
6270         * Control.cs 
6271           - Select: Implemented to just use activate. Seems to match MS 
6272             behaviour closest. Documented to only do actual control walking 
6273             based on it's parameters if in a container control so I moved 
6274             the code there.
6275           - Removed selection check logic from our internal Select() method
6276         * ContainerControl.cs:
6277           - Select: Moved selection logic from Control here, since MS documents
6278             that containers obey the bool arguments. No longer calling base
6280 2006-06-02  Jackson Harper  <jackson@ximian.com>
6282         * TreeView.cs: If the selected node isn't changed when we get
6283         focus update the previously selected node so that we see the
6284         selection box.
6286 2006-06-02  Mike Kestner  <mkestner@novell.com>
6288         * ComboBox.cs: restructure grab and general mouse event handling.
6289         Make the composite control raise mouse events like it was a single
6290         control for leaves/enters/motion/up/down events.  fix dropdown list
6291         coordinate mangling and refactor it into the scrollbar subclass to
6292         reduce code duplication.  Fixes #78282 #78361 and #78457.
6294 2006-06-02  Mike Kestner  <mkestner@novell.com>
6296         * ScrollBar.cs: remove Capture setting/clearing, as it happens
6297         automatically in the Control.WndProc.
6299 2006-06-01 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6301         * FileDialog.cs: fix crash when running SharpChess, which sets the
6302         FilterIndex to 2 with only one Filter.
6304 2006-06-01 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6306         * ToolBar.cs: add SizeSpecified property.
6307         * ToolBarButton.cs: when the ButtonSize is calculated by the container,
6308         try to figure out our real size, otherwise fallback to what the
6309         container says.
6311 2006-06-01  Peter Dennis Bartok  <pbartok@novell.com> 
6313         * XplatUIX11.cs (DefWndProc): WM_MOUSEWHEEL needs to be passed up
6314         * Control.cs (WndProc): MS always calls the DefWndProc to pass
6315           up the event
6317 2006-06-01  Mike Kestner  <mkestner@novell.com>
6319         * ListView.cs: revamp the focus management in ListView.  It still
6320         causes churn of LostFocus/GotFocus emissions on clicks, but it's
6321         better than not handling focus at all.  Will revisit when pdb feels
6322         the general focus handling is solid.  Fixes #78526.
6324 2006-06-01  Jackson Harper  <jackson@ximian.com>
6326         * TreeView.cs: Set the default border style in the constructor.
6327         - Move painting to use OnPaintInternal instead of capturing
6328         WM_PAINT, this is the correct way of doing things
6329         - UpdateBelow shouldn't invalidate the scrollbar area
6330         - Cap the top on update below in case the node was above the top
6331         of the viewport rectangle.
6332         - ExpandBelow and Collapse below need to obey Begin/End Update.
6333         * TreeNode.cs: Make is_expanded internal so the treenode
6334         collection can change it without firing the whole event chain.
6335         * TreeNodeCollection.cs: When clearing all the child nodes make
6336         sure to recalc the visible order.
6337         - Improve algo for remove the top node
6339 2006-06-01  Peter Dennis Bartok  <pbartok@novell.com> 
6341         * XplatUIX11.cs (SetFocus): Make sure we can handle re-entrancy due to
6342           SendMessage directly calling window procedures, which in turn might
6343           call SetFocus()
6345 2006-06-01  Peter Dennis Bartok  <pbartok@novell.com>
6347         * Control.cs: Don't handle WM_SETFOCUS if the same window already
6348           has focus (works around X11 sending a FocusIn after our SetFocus)
6349         * XplatUIX11.cs: Send KILLFOCUS before setting SETFOCUS on new window
6351 2006-06-01  Alexander Olk  <alex.olk@googlemail.com>
6353         * Mime.cs: Fix for the NET_2_0 build.
6354           NameValueCollection needs StringComparer now.
6356 2006-05-31  Chris Toshok  <toshok@ximian.com>
6358         * DataGridDrawingLogic.cs (FromPixelToColumn): modify this to also
6359         return (via an out parameter) the starting X of the column.
6360         (UpdateVisibleColumn): track change to FromPixelToColumn.
6361         (HitTest): add a ColumnResize case here.
6362         (DrawResizeLine): new function, probably poorly named.
6364         * DataGrid.cs (.ctor): get rid of cached_currencymgr_events.  We
6365         only need to keep one reference.
6366         (set_ListManager): same.
6367         (OnMouseDown): call HitTest instead of grid_drawing.HitTest.
6368         Also, add support for HitTestType.ColumnResize.
6369         (OnMouseMove): add column resize behavior here, and change the
6370         cursor to the correct one as we move around the datagrid.
6371         (OnMouseUp): terminate the column resize if we're resizing.
6372         (ProcessGridKey): from the MS docs, Alt-0 enters the null value
6373         for the current cell.
6374         (ConnectListManagerEvents): use cached_currencymgr.
6375         (DisconnectListManagerEvents): fill this in, using
6376         cached_currencymgr.
6377         (SetCurrentCell): remove cached_currencymgr_events handling.
6378         (SetDataMember): only call DisconnectListManagerEvents if
6379         cached_currencymgr is != null.
6380         (SetDataSource): same.
6381         (OnListManagerCurrentChanged): cached_currencymgr_events ->
6382         cached_currencymgr.
6384 2006-05-31  Jackson Harper  <jackson@ximian.com>
6386         * BindingManagerBase.cs: Remove somedebug code that creeped into
6387         SVN.
6388         * TreeNode.cs: We get the indent level dynamically right now, so
6389         don't track it as a member.
6390         * TreeNodeCollection.cs: Make sure all nodes added to the list
6391         have parents, treeviews/topnodes setup properly.
6392         - Don't attempt to track indent level.
6394 2006-05-30  Jackson Harper  <jackson@ximian.com>
6396         * BindingContext.cs: Create the currency manager tables here.
6397         This allows us to more easily create null tables (when bad data
6398         members are used), and more easily create related currency
6399         managers.
6400         * CurrencyManager.cs: All the table creation stuff is done by the
6401         binding context now.
6402         - Current should throw an exception if listposition is -1.
6403         - CancelCurrentEdit/EndCurrentEdit, do nothing if the list hasn't
6404         been bound yet.
6406 2006-05-30  Mike Kestner  <mkestner@novell.com>
6408         * ListView.cs: allow reexpansion of zero-width column headers.
6409         Fixes #78528.
6411 2006-05-28  Chris Toshok  <toshok@ximian.com>
6413         * CurrencyManager.cs (get_Current): after the late binding
6414         listposition = -1 fix, we need to guard against it here and return
6415         null, otherwise we raise an exception (which is swallowed
6416         elsewhere, and breaks datagrid databinding.)
6418 2006-05-26  Peter Dennis Bartok  <pbartok@novell.com>
6420         * MenuAPI.cs (ProcessMenuKey): We can legally get msg types other
6421           than WM_SYSKEY, don't throw if get something unexpected (#78507)
6423 2006-05-26  Jackson Harper  <jackson@ximian.com>
6425         * ControlPaint.cs:
6426         * ThemeWin32Classic.cs: For color comparisons just use the ARGB
6427         values, it's faster and it's all we care about (we don't care if
6428         the names aren't equal).
6429         * KeyboardLayouts.cs: Eliminate some dead code.
6430         - Lazy init things
6431         * X11Keyboard.cs: Lazy init keyboard detection.
6432         - Cleanup access modifiers a little.
6434 2006-05-26  Peter Dennis Bartok  <pbartok@novell.com>
6436         * XplatUIX11.cs: Once again, attempting to get layout just right.
6438 2006-05-26  Peter Dennis Bartok  <pbartok@novell.com> 
6440         * LinkLabel.cs (CreateLinkPieces): Use MeasureString to calculate
6441           the sizes of each link section, that will result in sizes that
6442           match DrawString's layout (Fixes #78391)
6444 2006-05-27  Alexander Olk  <alex.olk@googlemail.com>
6446         * FileDialog.cs: If AddExtension property is true autocomplete the
6447           extensions in SaveFileDialog correctly. Fixes bug #78453.
6448           Set MyNetwork and MyComputer to "C:\" for windows. This should
6449           fix part 8 of bug #78446 for now.
6451 2006-05-26  Chris Toshok  <toshok@ximian.com>
6453         * DataGrid.cs (ColumnStartedEditing): fill these in.  for now just
6454         invalidate the current row header if we need to, but presumably
6455         we'll invalidate the row corrsponding to the bounds or
6456         editingControl.
6457         (GridHScrolled): switch back to this method, as it's part of the
6458         public api.  *sigh*.
6459         (GridVScrolled): same.
6460         (OnMouseWheel): hack up something that more or less works.  Call
6461         GridHScrolled/GridVScrolled directly, instead of duplicating much
6462         of their code here.
6463         (EnsureCellVisibility): reinstate a bunch of this code, since we
6464         can't just set the scrollbar Value and expect to do all the work
6465         in the ValueChanged handler.  Also, Call Update() after scrolling
6466         in one direction so the other XplatX11.ScrollWindow call has the
6467         proper stuff in the proper places.
6468         (EditCell): set is_editing to true before calling .Edit.
6470         * DataGridTextBox.cs (set_IsInEditOrNavigateMode): just set it,
6471         don't bother comparing first.
6472         (OnKeyPress): call grid.ColumnStartedEditing before calling
6473         base.OnKeyPress.  this will set is_changing and invalidate the row
6474         header if necessary.
6475         (ProcessKeyMessage): for WM_CHAR messages, call
6476         ProcessKeyEventArgs directly.  swallow anything other than WM_CHAR
6477         and WM_KEYDOWN.
6478         
6479         * DataGridBoolColumn.cs (Edit): don't set is_editing to true here.
6480         it's done in the DataGrid.
6481         (NextState): call grid.ColumnStartedEditing, which takes care of
6482         invalidating the row header (and setting is_changing).
6484         * DataGridTextBoxColumn.cs (Edit): don't set is_editing to true
6485         here.  it's done in the DataGrid.
6487 2006-05-25 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6489         * Control.cs: allow changing the cursor when the mouse position is
6490         out of bounds but Capture is set.
6491         * LinkLabel.cs: handle the case when the mouse button is pressed on the
6492         linklabel but released somewhere else.
6494 2006-05-25  Jackson Harper  <jackson@ximian.com>
6496         * TreeView.cs: When we get focus if there is no selected node make
6497         it the top node
6498         - Remove some uneeded setup code from Draw.
6499         * TreeNodeCollection.cs: If the tree doesn't have a top node when
6500         a new node is inserted make the new node the top.
6501         * XplatUIX11.cs:
6502         * Timer.cs: Use Utc time so that no local time zone stuff needs to
6503         be used (should be faster).
6504         
6505 2006-05-25  Chris Toshok  <toshok@ximian.com>
6507         * DataGrid.cs (EnsureCellVisibility): remove some code to fix a
6508         problem with the last commit.
6510 2006-05-25  Chris Toshok  <toshok@ximian.com>
6512         * DataGridTextBoxColumn.cs (ReleaseHostedControl): turns out we do
6513         need the invalidate call here, while scrolling right-to-left via
6514         the left arrow key (i.e. moving the editing cell while scrolling).
6516         * DataGrid.cs (.ctor): remove the initialization of
6517         ctrl_pressed/shift_pressed.  We no longer track them using key
6518         up/down handlers, but by using Control.ModifierKeys.  Also, switch
6519         to using ValueChanged handlers on the scrollbars instead of
6520         Scrolled event handlers.  This simplifies a bunch of the scrolling
6521         code.
6522         (GridHValueChanged): rename from GridHScrolled, and change it to
6523         work with the new event args.
6524         (GridVValueChanged): same.
6525         (OnMouseDown): initialize ctrl_pressed/shift_pressed here.
6526         (OnMouseWheel): actually scroll the datagrid.  Don't change the
6527         selected cell.
6528         (ProcessGridKey): correct all the keyboard navigation stuff I
6529         could find.  Ctrl up/down/left/right/home/end work now.
6530         (EnsureCellVisibility): correct method name spelling.  Also,
6531         simplify this a touch by not explicitly calling the
6532         ScrollToRow/ScrollToColumnInPixels methods.  We just set the
6533         scrollbar value.
6534         (OnKeyUpDG): no need for this method now.
6535         
6536 2006-05-25 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6538         * LinkLabel.cs: display the OverrideCursor when hovering the label.
6539         Fixes bug #78392.
6541 2006-05-25  Chris Toshok  <toshok@ximian.com>
6543         * ThemeWin32Classic.cs: fix datagrid clipping problems caused by
6544         r61019.
6546 2006-05-25  Peter Dennis Bartok  <pbartok@novell.com> 
6548         * Application.cs: Moved setting of is_modal and closing to before
6549           we create the control, to allow the event handlers called as a
6550           result of creation affect closing. Also removed Gonzalo's previous
6551           change to setting DialogResult, the behaviour has been moved to 
6552           Form.ShowDialog()
6553         * Form.cs: 
6554           - ShowDialog(): Removed explicit creation of the form, let RunLoop
6555             handle it instead
6556           - ShowDialog(): If no dialog result is set, we need to return Cancel
6557           - WM_CLOSE: Fire Closing/Closed events, and reset dialog result if
6558             the close is cancelled
6560 2006-05-25  Jackson Harper  <jackson@ximian.com>
6562         * StatusBar.cs: We only need to update the sizes of the other
6563         panels when we have auto size contents.  Also we are only updating
6564         the contents of the panel, not the borders, so compensate for the
6565         border width (TODO: get this width from the theme somehow).
6566         * TreeView.cs: Scrollable is true by default
6567         - Use invalidate instead of refresh where needed
6568         - Factor the scrollable value into scrollbar updating
6569         - Update the scrollbars if the Scrollable property is altered
6570         - Update the selected node if its ImageIndex is changed
6571         - Handle null nodes in UpdateNode (mainly so we don't have to
6572         check if selected is null when updating it
6573         - Fix VisibleCount to use the ViewportRectangle so that scrollbars
6574         are factored into the visible count
6575         - Use VisibleCount for clarity in the code
6576         - When the font is changed we need to recurse through all the
6577         nodes and invalidate their sizes
6578         
6579 2006-05-25 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6581         * Application.cs: set the DialogResult to fixed when the main form is
6582         hidden or destroyed while being modal.
6584 2006-05-25  Miguel de Icaza  <miguel@novell.com>
6586         * Theme.cs: Use Tangoified messagebox icons. 
6588         (GetSizedResourceImage): Also cope with width = 0 and do not
6589         trigger a warning in that case (0 means "give me your icon from
6590         the resouce, no special size needed).
6592 2006-05-25  Peter Dennis Bartok  <pbartok@novell.com> 
6594         * Application.cs: Leave runloop if the the main modal form is 
6595           hidden (fixes #78484)
6597 2006-05-25  Atsushi Enomoto  <atsushi@ximian.com>
6599         * BindingContext.cs : reject null datasource in Contains() and
6600           Item[].
6601         * CurrencyManager.cs : check data_member validity when data_source
6602           is dataset. When it is late binding, the initial position is -1.
6604 2006-05-24  Jackson Harper  <jackson@ximian.com>
6606         * TreeNodeCollection.cs: Dont't recalculate the visible order on
6607         inserted nodes that aren't visible.  This changes the
6608         max_visible_order which confuses scrollbar settings.
6609         - Use the enumerator to get the prev node instead of duplicating
6610         code.
6611         * TreeView.cs: Use new method for setting scrollbar values
6612         - Don't set the bounds every time the scrollbar is updated
6613         - When updating below the root node use an invalidate instead of a
6614         refresh to prevent the child controls (scrollbars) from being
6615         refreshed. (UpdateBelow still needs to be reworked anyways).
6616         - Reenable SetBottom now that visible orders are set correctly,
6617         added some debug code incase we ever get bad values there again.
6618         - Set the scrollbar max to 2 less then the max value, this
6619         compensates for the max value being one above the node count, and
6620         for scrollbars adding one extra "notch".
6621         - When drawing image nodes if there is an imagelist we draw the
6622         first image in the list if the supplied image index is out of the
6623         image list's bounds.
6624         
6625 2006-05-24  Peter Dennis Bartok  <pbartok@novell.com> 
6627         * XplatUIX11.cs: Don't blindly cache hwnd.ClientRect, reset it when 
6628           we receive a size change from the WM (Fixes #78503)
6630 2006-05-24  Peter Dennis Bartok  <pbartok@novell.com>
6632         * XplatUIWin32.cs, XplatUIX11.cs: Refresh when setting the Clip 
6633           rectangle (Fixes #78501)
6635 2006-05-24  Peter Dennis Bartok  <pbartok@novell.com> 
6637         * ButtonBase.cs: 
6638           - Fixed MouseUp, MouseDown and MouseMove to treat mouseevent.Button 
6639             as a bitfield.
6640           - Fixed MouseMove to no longer switch pressed state unless the left
6641             mouse button is pressed. Atsushi provided the original patch (#78485)
6642           
6643 2006-05-24  Jackson Harper  <jackson@ximian.com>
6645         * ScrollBar.cs: New internal methods that allow us to change a
6646         couple values on the scrollbar (the most common case is maximum
6647         and large change) without getting multiple invalidates.
6649 2006-05-24  Chris Toshok  <toshok@ximian.com>
6651         * DataGridBoolColumn.cs (Abort): revert back to the saved setting.
6652         (Edit): save off the original state in oldState, and set
6653         grid.is_editing to true.
6654         (OnKeyDown): abort editing if escape is pressed.  also, call
6655         NextState if space is pressed.
6656         (OnMouseDown): call NextState.
6657         (NextState): factor out shared code from OnKeyDown and OnMouseDown
6658         here.  Also, only invalidate the row header once (on the initial
6659         is_changing switch) to save on redraws.
6661 2006-05-24  Chris Toshok  <toshok@ximian.com>
6663         * DataGridTextBoxColumn.cs (Commit): only call SetColumnValueAtRow
6664         if the value in the cell is different than it was before.  This
6665         keeps us from triggering a layout when we move around a datarid
6666         with a highlighted cell.
6667         (Edit): suspend layout when creating/positining the text box, and
6668         resume passing false so we don't ever actually re-layout.
6669         (ReleaseHostedControl): same.
6670         (EnsureTextBox): reformat slightly, and set WordWrap to false.
6672         * DataGridTextBox.cs (ProcessKeyMessage): it's not true that all
6673         control-key sequences should go to the datagrid - remove that
6674         lock.  Also, modify the conditions under which we move between
6675         cells when moving the cursor within a cell, and remove the "this"
6676         and "base" from field accesses.  We weren't even consistent, given
6677         they all were in the base class.
6679 2006-05-24  Atsushi Enomoto  <atsushi@ximian.com>
6681         * Binding.cs : (.ctor)
6682           An obvious NRE fix for BindingTest.CtorNullTest().
6684 2006-05-23  Chris Toshok  <toshok@ximian.com>
6686         * TextBoxBase.cs (get_Text): don't add a trailing newline, add
6687         them between lines.  This fixes some quirks editing cells in the
6688         datagrid.
6690 2006-05-23  Jackson Harper  <jackson@ximian.com>
6692         * TreeView.cs: Use begin/end update when doing expand/collapse all
6693         so that we don't get flicker on the scrollbar.
6695 2006-05-23  Jackson Harper  <jackson@ximian.com>
6697         * TreeNode.cs: Bounds are computed 'on the fly' now.  This allows
6698         treenode calculations to be independant of the painting code. To
6699         do this nodes track a visible order which is calculated by the
6700         treeview.
6701         - Call new methods for expanding/collapsing nodes.  These methods
6702         use scrollwindow so we don't have to update everything below the
6703         node.
6704         * TreeView.cs: Refactored drawing and scrolling code.  We don't
6705         need to update nodes when drawing anymore or calculate scrollbar
6706         stuff.
6707         - Added new methods for expanding/collapsing nodes. These methods
6708         use ScrollWindow so as to not have to redraw all the nodes below.
6709         * TreeNodeCollection.cs: Recalc visible order and scrollbars when
6710         we add/remove nodes or sort.
6711         - Handle removing the selected and the top node properly.
6713 2006-05-23  Chris Toshok  <toshok@ximian.com>
6715         * DataGridTextBoxColumn.cs (Edit): set grid.is_editing to true.
6716         maybe this should actually happen in the datagrid code?
6717         (EndEdit): no need to invalidate anything, given that
6718         ReleaseHostedControl causes the datagrid to relayout, which
6719         invalidates everything anyway.
6721         * DataGrid.cs (set_CurrentCell): remove duplicate check (it's also
6722         in SetCurrentCell).
6723         (set_SelectionBackColor): call InvalidateSelection instead of
6724         Refresh.
6725         (set_SelectionForeColor): same.
6726         (BeginEdit): Flesh this out a bit.
6727         (CancelEditing): only do any of this if we're editing/adding.
6728         (EndEdit): same.
6729         (OnMouseDown): there's no need to cancel editing here, it's done
6730         in SetCurrentCell.
6731         (SetCurrentCell): only invalidate the current row header if it's a
6732         different row than the new one.
6733         (ShiftSelection): fix this to work like MS does.
6734         (ResetSelection): factor out the invalidation of selected_rows to
6735         InvalidateSelection.
6736         (SetDataSource): cancel any editing that's going on.
6738         * DataGridColumnStyle.cs
6739         (IDataGridColumnStyleEditingNotificationService.ColumnStartedEditing):
6740         call the non-interface version.
6742         * ThemeWin32Classic.cs (DataGridPaintColumsHdrs): intersect the
6743         header rectangle with the clip rectangle so we don't redraw the
6744         entire header for just a small area.  Gets rid of the last flicker
6745         when horizontally scrolling.
6746         (DataGridPaintRow): same.
6748 2006-05-23  Mike Kestner  <mkestner@novell.com>
6750         * ListViewItem.cs: remove size for line hack from LargeIcon layout.
6751         * ThemeWin32Classic.cs: don't draw line.  it's really the top of a
6752         poorly placed checkbox on the MS control.  Fixes Alex's unfiled
6753         Critical bug report.
6755 2006-05-23  Peter Dennis Bartok  <pbartok@novell.com> 
6757         * PictureBox.cs: Fixed broken ControlStyles. Unit test no longer fails,
6758           and this fixes #78493
6760 2006-05-23  Miguel de Icaza  <miguel@novell.com>
6762         * Theme.cs (GetSizedResourceImage): Scale images if the proper
6763         size is not found.  
6764         
6765         * FileDialog.cs: Do not change the background for the side bar as
6766         it wont work nicely with the theme, and also reduces the artifacts
6767         in rendering the icons (which I want to fix too).
6769         * MimeIcon.cs (ResourceImageLoader): Load images from assembly
6770         resources, not resgen resources. 
6772         (PlatformDefaultHandler): Pull images using the new API.
6774 2006-05-23  Peter Dennis Bartok  <pbartok@novell.com> 
6776         * Hwnd.cs (Dispose): Remove any pending exposures. XEventQueue holds
6777           a reference to the hwnd and will not remove it unless there are
6778           no pending exposures (fixes #78341)
6779         * XplatUI.cs: Improved debug
6781 2006-05-23  Atsushi Enomoto  <atsushi@ximian.com>
6783         * MenuAPI.cs : don't handle OnClick event when it was not the left
6784           button. Fixed bug #78487.
6786 2006-05-23  Mike Kestner  <mkestner@novell.com>
6788         * MenuAPI.cs: fix placement of submenus for multi-row menu bars, and
6789         prefer submenus to the top menu for item lookup, to avoid popping down
6790         top-row items.
6792 2006-05-23  Alexander Olk  <alex.olk@googlemail.com>
6794         * ThemeWin32Classic.cs: Rewrote CPCPDrawScrollButton to drop
6795           Graphics.FillRectangle as the visual results are really bad (even
6796           on win). We now draw perfect arrows (and perfect shadows when the
6797           scrollbar is disabled). Simplified CPDrawGrid. CPDrawGrid now uses
6798           Pen.DashPattern to draw the dots of each line.
6800 2006-05-22  Alexander Olk  <alex.olk@googlemail.com>
6802         * FileDialog.cs: Update the filename combobox when navigating through
6803           the ListView with the cursor keys. Fixes part 7 of bug #78446.
6805 2006-05-22  Mike Kestner  <mkestner@novell.com>
6807         * ListView.cs: raise SelectedIndexChanged on keyboard selection.
6808         Fixes #78463.
6810 2006-05-22  Mike Kestner  <mkestner@novell.com>
6812         * ComboBox.cs: Refresh in EndUpdate to pick up all the dropped Paint
6813         requests. Fix a misspelled parameter and a copy paste exception error
6814         in Select.
6816 2006-05-22  Peter Dennis Bartok  <pbartok@novell.com> 
6818         * ThemeWin32Classic.cs: Changed DefaultFont emSize from 8.25 to 8
6819           to get the same width/height (5/13) on X11 as the default font has on
6820           win32. This means that our DefaultFont emSize is smaller than the 
6821           the MS SWF equivalent (even thought the width/height stays the same)
6823 2006-05-20  Jackson Harper  <jackson@ximian.com>
6825         * MdiClient.cs:
6826         * MdiWindowManager.cs:
6827         * InternalWindowManager.cs: Make sure to use the border width from
6828         the theme.
6830 2006-05-20  Jordi Mas i Hernandez <jordimash@gmail.com>
6832         * PrintDialog.cs: Implements printer details
6834 2006-05-19  Alexander Olk  <alex.olk@googlemail.com>
6836         * FileDialog.cs: Added focus handling for PopupButtonPanel.
6837           Fixes part 1 and 2 of bug #78446
6839 2006-05-19  Peter Dennis Bartok  <pbartok@novell.com> 
6841         * XplatUIX11.cs (SetWindowPos): Recalculate client area size on resizes
6842           instead of sticking to the first ever calculated value
6844 2006-05-19  Mike Kestner  <mkestner@novell.com>
6846         * ComboBox.cs: fix mouse motion selection to use MousePosition and
6847         PointToClient, since Capture is set. Fixes #78344.
6849 2006-05-19  Mike Kestner  <mkestner@novell.com>
6851         * ListView.cs: match MS behavior in Details view where items are not
6852         drawn if Columns.Count == 0. 
6853         * ThemeWin32Classic.cs: only highlight ListView selection if focused.
6854         Use a separate pen to draw the check, since changing the width affects
6855         the box as well.  Fixes #78454.
6857 2006-05-18  Miguel de Icaza  <miguel@novell.com>
6859         * ListView.cs: ArgumentOutOfRangeException, single versions of the
6860         exception should throw the name of the invalid argument.
6862         * FileDialog.cs (OnClickOpenSaveButton): Avoid crash in open if
6863         there are no files listed. 
6865 2006-05-18  Jackson Harper  <jackson@ximian.com>
6867         * ThemeWin32Classic.cs: Don't use endcaps, they mess the drawing
6868         up.
6870 2006-05-18  Peter Dennis Bartok  <pbartok@novell.com> 
6872         * Control.cs: Brought back our old UpdateZOrder method as a private
6873           function and switched our calls from UpdateZOrder to the new one.
6874           This fixes the Paint.Net canvas disappearing bug.
6876 2006-05-18  Jackson Harper  <jackson@ximian.com>
6878         * Theme.cs:
6879         * ThemeWin32Classic.cs:
6880         * InternalWindowManager.cs: Move the drawing into the theme,
6881         expose everything the theme should need from the window manager.
6883 2006-05-18  Peter Dennis Bartok  <pbartok@novell.com>
6885         * XplatUIX11.cs (DefWndProc): WM_SETCURSOR: Assign the return value 
6886           from the call to NativeWindow to avoid walking up the parent chain
6887           further than needed (speeds up setting cursors and avoids setting
6888           the wrong cursor if a parent has another cursor defined)
6889         * Cursor.cs: When loading an icon as cursor, MS uses the center of
6890           the icon as hotspot, not what's contained as hotspot in the icon
6891           file. This fixes the perceived drawing offset seen with Paint.Net
6892         
6893 2006-05-18  Peter Dennis Bartok  <pbartok@novell.com> 
6895         * XplatUIX11.cs: 
6896           - Store the calculated rectangle in Hwnd object and use it when 
6897             setting the client size
6898           - Force Toolwindows to always be type Dock, to ensure they're on top
6900 2006-05-18  Mike Kestner  <mkestner@novell.com>
6902         * ComboBox.cs: first pass at ComboBox rework.  Layout is more
6903         consistent with MS positioning.  IntegralHeight, ItemHeight, Sizing.
6904         Correctly initialize textcontrol and ListBox on DropDownStyle changes. 
6905         Substantial refactoring to remove confusing nested classes. Coding
6906         standard and Get+Set->property refactorings.  Shift to index based
6907         highlighting in ComboListBox instead of constantly using IndexOf and
6908         Items[]. Add invalidations on resize for DropDownList to fix ugliness
6909         in FileDialog growth.  Draw borders manually since Simple mode needs
6910         to look like two independent controls.  Make listbox border
6911         conditional to DropDownStyle.  Improved OwnerDraw support.
6913 2006-05-18  Sebastien Pouliot  <sebastien@ximian.com>
6915         * PaintEventArgs.cs: For 2.0, check for a null Graphics in the .ctor. 
6916         Don't set the disposed graphics to null, so we can throw the "right"
6917         exception if the graphics is reused later (added a flag to avoid 
6918         double disposing). Some behaviours are different under 2.0 and are
6919         filled under bug #78448.
6921 2006-05-18  Peter Dennis Bartok  <pbartok@novell.com>
6923         * Control.cs: When double-buffering is enabled, we need to reset
6924           our graphics context between paint calls. Otherwise, any 
6925           transformations and other alterations on the context will 
6926           become cumulative (#77734)
6928 2006-05-18  Mike Kestner  <mkestner@novell.com>
6930         * ListView.cs: do focused item selection like MS on clicks. 
6931         Rework focus handling for ItemControl so LostFocus invalidates as
6932         well.
6933         * ThemeWin32Classic.cs: only draw focus rectangle for ListViewItems if
6934         the ListView ItemControl has focus.
6936 2006-05-17  Peter Dennis Bartok  <pbartok@novell.com>
6938         * XplatUIX11.cs: If client_window ends up being width or height zero
6939           due to border settings, move it off window inside whole_window (#78433)
6941 2006-05-17  Alexander Olk  <alex.olk@googlemail.com>
6943         * Mime.cs: Shrink the mime file cache correctly.
6945 2006-05-17  Alexander Olk  <alex.olk@googlemail.com>
6947         * ThemeWin32Classic.cs: Readded button focus drawing code. (#78429)
6949 2006-05-16  Peter Dennis Bartok  <pbartok@novell.com>
6951         * XplatUIX11.cs (AddExpose): More sanity checks
6953 2006-05-16  Peter Dennis Bartok  <pbartok@novell.com> 
6955         * XplatUIX11.cs:
6956           - AddExpose: Don't add expose ranges outside the size of our
6957             window
6958           - Cast opacity values to Int32 to avoid crashes with certain
6959             values
6960           - Added disabled code paths that protect against illegal cross-
6961             thread painting (Developers.exe)
6963 2006-05-16  Peter Dennis Bartok  <pbartok@novell.com>
6965         * ProgressBar.cs: Invalidate the control when it's resized
6966           since block size is based on control size. (#78388)
6968 2006-05-16  Miguel de Icaza  <miguel@novell.com>
6970         * DataGrid.cs (SetDataBinding): per the discussion on irc, instead
6971         of setting the incoming argument to the "reset" value, we set the
6972         this.datamember to string.empty (before we were invalidating the
6973         incoming data).   
6975         Fixes 78420
6977 2006-05-16  Peter Dennis Bartok  <pbartok@novell.com> 
6979         * Form.cs: Only apply transparency settings after the form
6980           is created. (Fixes #77800)
6982 2006-05-16  Peter Dennis Bartok  <pbartok@novell.com>
6984         * ApplicationContext.cs: Grab the HandleDestroyed event so
6985           we know when to fire OnMainFormClosed 
6987 2006-05-16  Peter Dennis Bartok  <pbartok@novell.com> 
6989         * Application.cs: Introduced sub-class to allow tracking of
6990           threads and centralized triggering of the event mess for
6991           ThreadExit, AppExit, etc..  (#76156)
6993 2006-05-16  Alexander Olk  <alex.olk@googlemail.com>
6995         * MimeIcon.cs:
6996           - Do not return a null icon index value for a mime subclass.
6997             Instead try the main mime type class too.
6998           - Seems that some newer distributions don't have a link to some
6999             gnome default icons anymore. So check the default gnome dir too.
7000           
7002 2006-05-16  Jackson Harper  <jackson@ximian.com>
7004         * MdiClient.cs: Don't paint the parent background image if we have
7005         our own background image.
7007 2006-05-16  Peter Dennis Bartok  <pbartok@novell.com> 
7009         * Control.cs:
7010           - PerformLayout: Do not shrink space filled by DockStyle.Fill
7011             controls, all filled controls are supposed to overlap (#78080)
7012           - UpdateZOrder is supposed to update the control's z-order in the
7013             parent's z-order chain. Fixed to behave like that
7014           - BringToFront: Removed obsolete code
7015           - SendToBack: Simplyfied
7016           - SetChildIndex: Trigger layout calculations when Z-order changes
7017             since layout is done by z-order
7019 2006-05-16  Chris Toshok  <toshok@ximian.com>
7021         [ fixes bug #78410 ]
7022         * DataGrid.cs (set_AlternatingBackColor): use
7023         grid_drawing.InvalidateCells instead of Refresh().
7024         (set_BackColor): call grid_drawing.InvalidateCells.
7025         (set_BackgroundColor): use Invalidate instead of Refresh.
7027         * DataGridDrawingLogic.cs (InvalidateCells): new function, just
7028         invalidate the cell area.
7030 2006-05-15  Chris Toshok  <toshok@ximian.com>
7032         [ fixes bug #78011 ]
7033         * ThemeWin32Classic.cs (DataGridPaintRows): pass the clip argument
7034         on to DataGridPaintRow.
7035         (DataGridPaintRow): take a clip argument, and only draw the cells
7036         which intersect it.  same with the not_usedarea.
7038         * Theme.cs (DataGridPaintRow) add @clip parameter.
7040         * DataGrid.cs (ScrollToColumnInPixels): simplify, use
7041         XplatUI.ScrollWindow.
7042         (ScrollToRow): same.
7044         * DataGridDrawingLogic.cs (UpdateVisibleColumn): fix corner case
7045         with last column which was causing a gray swath to appear with the
7046         XplatUI.ScrollWindow code.
7048 2006-05-15  Chris Toshok  <toshok@ximian.com>
7050         * ListBox.cs (HorizontalScrollEvent): in the non-multicolumn case,
7051         use XplatUI.ScrollWindow.
7052         (VerticalScrollEvent): use XplatUI.ScrollWindow.
7054 2006-05-15  Peter Dennis Bartok  <pbartok@novell.com> 
7056         * TextBoxBase.cs: Added handling of middle-button paste for X11. (#78375)
7058 2006-05-15  Peter Dennis Bartok  <pbartok@novell.com>
7060         * Cursors.cs: For X11, read NWSE and NESW cursors from our resource
7061           file since there are no equivalent X11 cursors
7063 2006-05-15  Atsushi Enomoto  <atsushi@ximian.com>
7065         * MonthCalendar.cs : DateTimePicker should reflect selected date
7066           on mouse*up*, not mouse*down*. Fixed originally reported part of
7067           bug #76474.
7069 2006-05-15  Atsushi Enomoto  <atsushi@ximian.com>
7071         * TabControl.cs : When argument index is equal or more than tab
7072           count, just ignore. Fixed bug #78395.
7074 2006-05-15  Peter Dennis Bartok  <pbartok@novell.com>
7076         * Control.cs: Dispose all child controls when control is diposed (#78394)
7078 2006-05-14  Alexander Olk  <alex.olk@googlemail.com>
7080         * ColorDialog.cs: Finally it is possible to select the color with
7081           the text boxes
7083 2006-05-14  Alexander Olk  <alex.olk@googlemail.com>
7085         * PrintDialog.cs: Fix typo
7087 2006-05-14  Alexander Olk  <alex.olk@googlemail.com>
7089         * PrintDialog.cs: PrintDialog is not resizable
7090         * ThemeWin32Classic.cs: Draw non links in LinkLabel with the correct
7091           color. Made some ToolBar drawing methods protected virtual.
7093 2006-05-13  Jordi Mas i Hernandez <jordimash@gmail.com>
7095         * PrintDialog.cs: Implementation of the PrintDialog
7097 2006-05-12  Chris Toshok  <toshok@ximian.com>
7099         * ScrollBar.cs (set_Value): don't use Dirty/Invalidate to move the
7100         thumb, instead use MoveThumb.  This has the side effect of making
7101         most of the other thumb moving machinery use MoveThumb as well.
7102         (OnHandleCreated): pass false for @dirty to UpdateThumbPos, as we
7103         need to actually invalidate the rectangle where the new thumb will
7104         go.
7105         (MoveThumb): use XplatUI.ScrollWindow to move the thumb around.
7106         We force an Update() after, so it's not as fast as it could be,
7107         but at least there's zero flicker and no droppings.
7108         (OnMouseMoveSB): in the thumb dragging case, use MoveThumb.
7109         (UpdateThumbPos): add another argument (dirty), which says whether
7110         or not to calculate/add dirty regions which we later invalidate.
7111         For cases where we know we're going to use MoveThumb, we pass
7112         false for this.  Otherwise, pass true.
7114 2006-05-12  Jackson Harper  <jackson@ximian.com>
7116         * ThemeWin32Class.cs: Fixes for alignment and icon rendering in
7117         the status bar.
7118         
7119 2006-05-12  Peter Dennis Bartok  <pbartok@novell.com>
7121         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs: Added new SetClipRegion
7122           and GetClipRegion methods and UserClipWontExposeParent property.
7123         * XplatUIWin32.cs: Implemented SetClipRegion/GetClipRegion methods,
7124           overriding UserClipWontExposeParent property, setting to false, since
7125           Win32 handles the required expose messages to draw our clipped parent
7126           areas internally
7127         * XplatUIX11.cs: Implemented SetClipRegion and GetClipRegion; updated
7128           PaintEventStart to set the user clip region if set.
7129         * Control.cs: 
7130           - Now internally tracking the Region for the control since we need to
7131             store it if the handle is not yet created and only set it when it
7132             becomes created. Before setting the region forced handle creation
7133           - Added code to draw the parents underneath a user-clipped region
7134         * Hwnd.cs: Added UserClip property
7136 2006-05-12  Chris Toshok  <toshok@ximian.com>
7138         * ScrollBar.cs (set_LargeChange): Refresh() -> InvalidateDirty()
7139         (set_Maximum): same.
7140         (set_Minimum): same.
7141         (set_SmallChange): same.
7142         (OnMouseUpSB): remove the call to refresh when releasing the
7143         thumb.  We shouldn't need it.
7144         
7145 2006-05-12  Miguel de Icaza  <miguel@novell.com>
7147         * StatusBar.cs (UpdatePanel): If the panel being refreshes has the
7148         AutoSize set to None, we do not need to relayout everything, we
7149         just need to invalidate the current region.
7151         (Draw): Do not draw the entire ClientArea, just redraw the
7152         clip area being passed.
7154         * MdiClient.cs: Make MdiClient constructor with the Form argument
7155         internal. 
7157 2006-05-12  Jackson Harper  <jackson@ximian.com>
7159         * ThemeWin32Classic.cs (DrawToolBar): Flat toolbars get their
7160         parents background image,  but strangely not their own.
7161         - (DrawStatusBarPanel): Take into account horizontal alignment
7162         when drawing the strings and icons.
7164 2006-05-12  Mike Kestner  <mkestner@novell.com>
7166         * ListBox.cs: avoid invalidations for focus when the collection is
7167         empty. 
7169 2006-05-12  Chris Toshok  <toshok@ximian.com>
7171         * ScrollBar.cs (OnMouseMoveSB): when dragging the thumb, don't
7172         invalidate the entire thumb area.  Call InvalidateDirty which
7173         limits the redraw to the thumb itself and surrounding pixels.
7175         * XplatUIX11.cs (ScrollWindow): optimize copying.
7176         
7177 2006-05-12  Chris Toshok  <toshok@ximian.com>
7179         * DataGridDrawingLogic.cs: make CalcGridAreas non-reentrant.
7180         Figure out the positioning/layout in a single pass instead of
7181         multiple recursive invocations.  Speeds up the initial display of
7182         the data grid.  Also, make many things private that were
7183         originally public but unused outside this class.
7185 2006-05-11  Jackson Harper  <jackson@ximian.com>
7187         * MdiClient.cs: Improved layout code.
7189 2006-05-11  Jonathan Chambers  <jonathan.chambers@ansys.com>
7191         * PropertyGrid.cs : Only check GetPropertiesSupported for properties,
7192           not SelectedObject.
7194 2006-05-11  Chris Toshok  <toshok@ximian.com>
7196         * Hwnd.cs (Invalid): don't start off with Rectangle.Empty, as
7197         union of that will always be {0,0,width,height}.
7199 2006-05-11  Jackson Harper  <jackson@ximian.com>
7201         * Form.cs: Match MS's DefaultSize for forms (they must have
7202         changed the size in sp2).
7204 2006-05-11  Atsushi Enomoto  <atsushi@ximian.com>
7206         * TextBoxBase.cs : implement CTRL+A (select all). Fixed bug #78368.
7208 2006-05-11  Atsushi Enomoto  <atsushi@ximian.com>
7210         * TextControl.cs : Fixed bug #78109. This incorrect position
7211           comparison caused crash on automatic line split.
7212         * TextBoxBase.cs : reduce duplicate code.
7214 2006-05-10  Jackson Harper  <jackson@ximian.com>
7216         * MdiClient.cs: Active form is only sent to the back when using
7217         the Next form functionality, when a form is clicked the current
7218         active shouldn't be sent to the back.
7219         - Layout the mdi windows when the container is first made visible.
7220         * Form.cs: Give the MdiClient a ref to the containing form when we
7221         create it.
7222         
7223 2006-05-10  Atsushi Enomoto  <atsushi@ximian.com>
7225         * LinkLabel.cs : link_font could be uninitialized, so populate one
7226           before actual use. Fixed bug #78340.
7228 2006-05-10  Atsushi Enomoto  <atsushi@ximian.com>
7230         * XplatUIX11.cs : clipboard format native value is IntPtr.
7231           Fixed bug #78283.
7233 2006-05-10  Peter Dennis Bartok  <pbartok@novell.com>
7235         * Control.cs: 
7236           - Instead of showing context menus directly we send WM_CONTEXTMENU, 
7237             which is passed up the parent chain by DefWndProc
7238           - We now handle WM_CONTEXTMENU to display any menu, or pass it 
7239             to DefWndProc (#77956)
7240         * XplatUIX11.cs: Added handling of WM_CONTEXTMENU (pass up) to DefWndProc
7242 2006-05-10  Jackson Harper  <jackson@ximian.com>
7244         * MdiClient.cs: We need to remove the controls from the mdi
7245         collection, when we close the window.
7246         * MdiWindowManager.cs: Special handling of closing mdi windows.
7247         * InternalWindowManager.cs: Make the close method virtual so the
7248         mdi window manager can handle it specially.
7250 2006-05-10  Jordi Mas i Hernandez <jordimash@gmail.com>
7252         * DataGrid.cs:
7253           - Recalculate grid when the data source has changed
7254           - Matches styles provided by user from all data sources types
7255         * DataGridTableStyle.cs: For columns that provided by the user set the
7256         with the preferred value is there was unassigned.
7257         * CurrencyManager.cs: throw OnItemChanged event
7259 2006-05-10  Peter Dennis Bartok  <pbartok@novell.com> 
7261         * PictureBox.cs: Don't animate until handle is created. Start animation
7262           when handle is created.
7264 2006-05-10  Peter Dennis Bartok  <pbartok@novell.com>
7266         * XplatUIX11.cs, Hwnd.cs: Adopted Mike's patch from #77979 to match
7267           current codebase.
7268         * XEventQueue.cs: We don't need to provide the extra info
7270 2006-05-10  Jackson Harper  <jackson@ximian.com>
7272         * MdiClient.cs: If the mdi clients parent form has a background
7273         image set, we draw that background image for the mdi area's
7274         background.
7276 2006-05-10  Peter Dennis Bartok  <pbartok@novell.com>
7278         * TextBoxBase.cs: Set IBeam cursor (#78347)
7280 2006-05-10  Mike Kestner  <mkestner@novell.com>
7282         * ToolBar.cs: fix some text padding issues with ButtonSize
7283         calculation. Update the default size to match MS documentation.
7284         * ToolBarButton.cs: use ToolBar.ButtonSize for layout of unspecified
7285         button size. Fixes #78296.
7287 2006-05-10  Mike Kestner  <mkestner@novell.com>
7289         * ListBox.cs: use is_visible for scrollbar positioning in case the
7290         control isn't on screen yet.  Fix off by one with Right vs Width
7291         usage.  Update Scrollbars in SetBoundsCore. Fixes #78188 and #78258.
7292         
7293 2006-05-10  Jackson Harper  <jackson@ximian.com>
7295         * X11Dnd.cs: Drop to a control with another control on top of it.
7296         * ToolBar.cs: Work on a copy of the buttons list, so that it can
7297         be modified in click handlers. TODO: Look for similar problems in
7298         other controls.
7300 2006-05-09  Jackson Harper  <jackson@ximian.com>
7302         * Form.cs: Window managers need the old window state when setting
7303         window state now.
7304         * InternalWindowManager.cs: Allow the base mdi window manager to
7305         handle more of the MDI only stuff (like maximize buttons).
7306         * MdiWindowManager.cs: Fix some snafus in changing the window
7307         state.  Add all the menu functionality, for both popup and
7308         maximized menus.
7309         * MdiClient.cs: When a new form is selected the currently
7310         activated form is sent to the back, this matches MS.
7311         - Implement a new method to activate the next mdi child window.
7313 2006-05-08  Peter Dennis Bartok  <pbartok@novell.com>
7315         * Control.cs: 
7316           - Added new InternalCapture method to allow controls to prevent
7317             the capture behaviour on the click handlers
7318           - Switched to use InternalCapture
7319         * ComboBox.cs:
7320           - Using InternalCapture to prevent mouse captures from being released
7321             on mouse button release (Fixes #78100)
7322         * XplatUIX11.cs (DeriveStyles): Now checks caption state and only
7323           returns Form borders if a caption is present. (Fixes #78310)
7325 2006-05-08  Peter Dennis Bartok  <pbartok@novell.com> 
7327         * TreeNode.cs: Changed serialization .ctor to not require every field
7328           to be present. (#78265)
7329         * OwnerDrawPropertyBag.cs: Added serialization .ctor
7331 2006-05-05  Alexander Olk  <alex.olk@googlemail.com>
7333         * MimeIcon.cs: for is faster than foreach for strings.
7335 2006-05-05  Mike Kestner  <mkestner@novell.com>
7337         * CheckedListBox.cs: update check handling code to not use selected.
7338         * ListBox.cs: rewrite of mouse selection handling to correspond to MS
7339         behavior for visual feedback, motion response, shift/ctrl handling,
7340         and properly deal with all 4 selection modes. Updates to bounds
7341         handling logic.  Add scroll wheel support. [Fixes #77842]
7343 2006-05-05  Peter Dennis Bartok  <pbartok@novell.com> 
7345         * ListView.cs:
7346           - Moved adding of Implicit controls into .ctor. That way, subsequent
7347             creation of the controls will not cause them to think they are 
7348             toplevel windows (fixes #78200 header problem)
7349           - Added 2.0 ShowGroups and UseCompatibleStateImageBehaviour
7350           - Switched visibility setting of header control to use internal field
7351             to avoid triggering handle creation
7352           - Now checking if handle is created before causing a refresh when items
7353             are added (This makes us now match handle creation time with MS)
7354         * Splitter.cs: Removed loading of private splitter cursor, switched to
7355           Cursors version now that that is loading the right ones
7356         * Cursors.cs: Load proper splitter cursors from resources
7357         * Cursor.cs: Added second method of loading resource cursors for the 
7358           VS.Net users amongst us
7360 2006-05-05  Mike Kestner  <mkestner@novell.com>
7362         * ListView.cs: give header_control a minimum size based on the
7363         ListView size.
7365 2006-05-05  Peter Dennis Bartok  <pbartok@novell.com> 
7367         * XplatUIX11.cs: WS_EX_TOPMOST requires window to be on top. A dock
7368           window seems to do that with metacity, so set that type. (#78120)
7370 2006-05-05  Mike Kestner  <mkestner@novell.com>
7372         * ListViewItem.cs: fix Details mode checkbox layout bug.
7373         * ThemeWin32Classic.cs: draw a ListView column header for unused space
7374         at the end of the header, if it exists. [Fixes for #78200]
7376 2006-05-04  Jackson Harper  <jackson@ximian.com>
7378         * MdiClient.cs: Add a helper property to get the container form.
7379         * MdiWindowManager.cs: We have to make sure to use the menu origin
7380         when drawing the icons and buttons, this fixes maximized window
7381         icons/buttons on win32.
7382         * InternalWindowManager.cs: Reset the restore captions when a
7383         window goes from Maximized to Minimized and vice versa. Move the
7384         DrawMaximizedButtons into the MdiWindowManager source, tool
7385         windows can't be maximized. NOTE: This could use a little
7386         refactoring if time ever permits.
7387         
7388 2006-05-03  Jonathan Chambers  <jonathan.chambers@ansys.com>
7390         * TextBox.cs: Add MWFCategoryAttributes
7391         * TextBoxBase.cs: Add MWFCategoryAttributes
7392         * Form.cs: Add MWFCategoryAttributes
7394 2006-05-03  Jonathan Chambers  <jonathan.chambers@ansys.com>
7396         * Control.cs: Add MWFCategoryAttributes
7397         * ScrollableControl.cs: Add MWFCategoryAttributes
7399 2006-05-03  Alexander Olk  <alex.olk@googlemail.com>
7401         * ThemeWin32Classic.cs: Draw the ToolBar top border only if
7402           Divider is true. Fix a little glitch in PropertyToolBar
7403           drawing code
7405 2006-05-02  Peter Dennis Bartok  <pbartok@novell.com> 
7407         * Control.cs:
7408           - Dispose: Call base.Dispose, this causes the disposed event
7409             to be fired (and probably other, more important stuff)
7410           - SetVisibleCore: Set is_visible to true after creating the
7411             window so that the window still gets created invisible (if
7412             WM_VISIBLE isn't set). That will cause the ShowWindow afterwards
7413             to generate a WM_ACTIVE message
7414         * Form.cs: Call Dispose when we want to destroy the window, instead of
7415           just destroying the handle (Dispose will do that for us)
7416         * XplatUIX11.cs:
7417           - RootWindow also needs a queue, so we can properly process the
7418             property change events from RootWindow (like Activate)
7419           - Generatic synthetic WM_ACTIVE message when the active window is
7420             being destroyed
7422 2006-05-01  Peter Dennis Bartok  <pbartok@novell.com> 
7424         * LinkLabel.cs: Trigger a recalc of our label dimensions when
7425           bounds are changed
7427 2006-05-01  Peter Dennis Bartok  <pbartok@novell.com>
7429         * ThemeWin32Classic.cs (ButtonBase_DrawImage): Use the proper image
7430           for determining width and height (image might not be assigned if
7431           we're drawing an imagelist)
7433 2006-05-01  Peter Dennis Bartok  <pbartok@novell.com> 
7435         * XplatUI.cs, XplatUIDriver.cs: Added MenuHeight property
7436         * XplatUIWin32.cs: Overriding new MenuHeight property, retrieving
7437           height from system
7438         * Theme.cs: No longer returns hardcoded menu height, instead calls
7439           new driver method
7440         * Form.cs (OnLoad): Scaling happens before triggering Load events 
7441           on MS (# 78257)
7443 2006-05-01  Mike Kestner  <mkestner@novell.com>
7445         * MenuItem.cs: fix NRE for text == null.  Fixes #78250.
7447 2006-04-30  Peter Dennis Bartok  <pbartok@novell.com> 
7449         * TextBoxBase.cs: Removed Fixme
7450         * RichTextBox.cs (set_RTF): Invalidate document after update (#78247)
7452 2006-04-30  Peter Dennis Bartok  <pbartok@novell.com>
7454         * XplatUIX11.cs:
7455           - ScrollWindow: We were passing hwnd.ClientRectangle which returns
7456             the rectangle relative to the parent, considering borders. We
7457             don't really want that.
7458           - ScrollWindow: Fixed warning to be more understandable
7459         * TextBoxBase.cs: Fixed ScrollWindow calculations to consider our
7460           scrollbars and scroll only the visible area
7461         * RichTextBox.cs: Removed debug output
7463 2006-04-29  Peter Dennis Bartok  <pbartok@novell.com>
7465         * NumericUpDown.cs (Text): Just use base
7466         * UpDownBase.cs: Ensure txtView is created before using it
7468 2006-04-29  Peter Dennis Bartok  <pbartok@novell.com> 
7470         * XplatUIX11.cs (SetWindowTransparency): Casting opacity to int before
7471           casting to IntPtr to avoid 64bit overflow errors
7473 2006-04-29  Peter Dennis Bartok  <pbartok@novell.com>
7475         * Control.cs:
7476           - AllowDrop: Don't force handle creation.
7477           - CreateHandle: Added call to tell driver if we're allowed to drop
7479 2006-04-27  Alexander Olk  <alex.olk@googlemail.com>
7481         * FileDialog.cs: Remember the last directory not only for the
7482           current instance but also for new FileDialog instances.
7484 2006-04-29  Peter Dennis Bartok  <pbartok@novell.com> 
7485         
7486         * XplatUIX11.cs: Forgot to set the queue on the foster parent. That
7487           broke sending async messages
7489 2006-04-29  Peter Dennis Bartok  <pbartok@novell.com>
7491         * XplatUIX11.cs:
7492           - ScrollWindow: Fixed method. We finally generate expose events again
7493             for scrolled areas. This was causing 'garbage' when scrolling
7494             textbox and other controls that used ScrollWindow
7495           - Switched from using the regular queue for paint events to the MS 
7496             model of 'generating' paint events when the queue is empty.
7497             We use the new XQueueEvent.Paint subclass to store which windows
7498             need painting.
7499           - AddExpose now takes the x/y/width/height of the exposed area
7500             and inserts the window into the paint queue if not already there
7501           - InvalidateWholeWindow: Switched to use new AddExpose method
7502           - UpdateMessageQueue: Added which queue to monitor for paint events
7503           - DefWndProc: Added default handler for WM_PAINT and WM_NCPAINT in
7504             the unlikely case nothing above handles it. We reset the expose
7505             pending states to get them off the queue.
7506           - GetMessage: Now pulls a paint event if no other events are in the
7507             queue
7508           - Invalidate: Switched to new AddExpose method
7509           - PeekMessage: Updated to understand pending paint events
7510           - UpdateWindow: Fixed logic bug. We were only updating if the window
7511             didn't need updating. Also switched to sending WM_PAINT directly,
7512             like MS does.
7513         * XEventQueue.cs: Added Paint queue support. Allows enqueue/dequeue
7514           and random access Remove(). The random access is needed to handle
7515           UpdateWindow() where a WM_PAINT is sent directly without accessing
7516           the queue.
7517         * ScrollBar.cs: Added Update() calls to cause immediate updates to
7518           allow for better feedback when scrolling. Scrollbars are small and
7519           the immediate update should make it 'feel' more responsive without
7520           slowing things down. ScrollBar still needs it's invaliate logic
7521           updated to not always invalidate the whole bar on certain changes.
7523 2006-04-28 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7525         * Control.cs:
7526         (BackColor): if the control does not support a transparent background,
7527         return the default backcolor when the parent backcolor is transparent.
7529 2006-04-28  Peter Dennis Bartok  <pbartok@novell.com>
7531         * Application.cs: Updated to new StartLoop/GetMessage API
7532         * RichTextBox.cs: Provide some output on RTF parsing errors
7533         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs, XplatUIWin32.cs: Added
7534           new queue_id argument to GetMessage and PeekMessage to allow faster
7535           handling of per-thread queues in drivers.
7536         * Hwnd.cs: Added Queue tracking and property
7537         * MenuAPI.cs: Updated to new StartLoop/GetMessage API
7538         * XEventQueue.cs: Added thread trackingA
7539         * PropertyGridView.cs: Updated to new StartLoop/GetMessage API
7540         * XplatUIX11.cs:
7541           - Implemented new per-thread queue
7542           - GetMessage: Fixed return/break behaviour on several cases. We were
7543             returning stale messages in some cases, instead of just processing
7544             the next message
7546 2006-04-27  Jonathan Chambers  <jonathan.chambers@ansys.com>
7548         * PropertyGrid.cs: Call GetPropertiesSupported on TypeConverter.
7550 2006-04-27  Peter Dennis Bartok  <pbartok@novell.com>
7552         * ThemeWin32Classic.cs (DrawToolBar): Refactored, simplified the logic,
7553           fixed off-by-one comparisons between Width/Height and Right/Bottom.
7555 2006-04-27  Jonathan Chambers  <jonathan.chambers@ansys.com>
7557         * PropertyGridView.cs: Fix drop down width.
7559 2006-04-27  Alexander Olk  <alex.olk@googlemail.com>
7561         * ThemeWin32Classic.cs: Peter thinks that three additional lines are
7562           a mess in DrawToolBar, so I removed one of them.
7564 2006-04-27  Alexander Olk  <alex.olk@googlemail.com>
7566         * ThemeWin32Classic.cs: Draw the ToolBar border lines only if
7567           needed (clip). Otherwise we get artifacts.
7569 2006-04-26  Peter Dennis Bartok  <pbartok@novell.com>
7571         * FixedSizeTextBox.cs: Added constructor to allow specifying which
7572           dimension is fixed
7573         * UpDownBase.cs: Set the spinner control to be fixed height vertical,
7574           and switched FixedSizeTextBox to only be fixed vertical (#78116)
7575         * Form.cs: Not applying the 'MS 0.08 fudge factor' for a given dimension
7576           if it matches the scale base font (avoids unneeded scaling)
7578 2006-04-26  Alexander Olk  <alex.olk@googlemail.com>
7580         * X11DesktopColors.cs: One gtk_init_check should be enough
7582 2006-04-26  Peter Dennis Bartok  <pbartok@novell.com> 
7584         * TextBoxBase.cs: Moved Backspace handling into WM_CHAR block to
7585           match MS behaviour
7587 2006-04-26  Peter Dennis Bartok  <pbartok@novell.com>
7589         * TextBoxBase.cs: 
7590           - Generate OnTextChanged for Backspace even if we're only deleting
7591             the current selection
7592           - When setting the Text property, only select all text if the
7593             control does not have focus when it is being set. Otherwise
7594             just place the cursor at the beginning of the control
7596 2006-04-26  Alexander Olk  <alex.olk@googlemail.com>
7598         * ThemeWin32Classic.cs: ToolBars get drawn with two lines at the top.
7599           Added a little helper to draw PropertyGrid ToolBar with a different
7600           border and a different BackColor.
7601         * PropertyGrid.cs: Some background parts didn't get painted with the
7602           correct background color. Added a class that helps us to draw the
7603           correct border for PropertyGridView and a class that helps us to
7604           draw ToolBars with a different backcolor
7605         * PropertyGridView.cs: Draw PlusMinus with the correct colors.
7607 2006-04-25  Jonathan Chambers  <jonathan.chambers@ansys.com>
7609         * PropertyGrid.cs: Bug 78196, font size, and splitter location.
7610         * PropertyGridView.cs: Bug 78196, font size, and splitter location.
7612 2006-04-25  Peter Dennis Bartok  <pbartok@novell.com> 
7614         * XplatUIWin32.cs (DIBtoImage): ORing instead of ANDing the alpha
7615           into the palette entries. Also, since we're working on a copy
7616           we needed to copy the palette back onto the bitmap.
7617         * Cursor.cs: Same fix as XplatUIWin32.cs.
7619 2006-04-25  Peter Dennis Bartok  <pbartok@novell.com>
7621         * ImageListStreamer.cs: Need to read the var (or we're off)
7623 2006-04-25  Peter Dennis Bartok  <pbartok@novell.com> 
7625         * TextControl.cs, ComboBox.cs, CommonDialog.cs, Theme.cs, 
7626           XplatUIWin32.cs, RichTextBox.cs, ImageListStreamer.cs,
7627           TextBoxBase.cs: Unused var fixes
7628         * AxHost.cs: Small 2.0 fix
7629         * XplatUIX11.cs: Switched to IntPtr from int for XA_CARDINAL atoms 
7630           as it seems that is what at least Metacity expects. This will make
7631           icons show up on 64bit platforms. We still have some 64bit size
7632           issues, though, since the startup app window size still won't match.
7634 2006-04-25  Mike Kestner  <mkestner@novell.com>
7636         * *.cs: cleanup newly reported exception var unused warnings.
7638 2006-04-25  Alexander Olk  <alex.olk@googlemail.com>
7640         * ThemeWin32Classic.cs: Button image alignment now matches exactly
7641           ms
7643 2006-04-25  Alexander Olk  <alex.olk@googlemail.com>
7645         * ThemeWin32Classic.cs: Fixed drawing code for buttons with an
7646           image. The image position is always the same, no matter if the
7647           button is pressed or not.
7649 2006-04-25  Alexander Olk  <alex.olk@googlemail.com>
7651         * FileDialog.cs: SaveFileDialog shouldn't rely on a MWFFileView
7652           selection and set the correct filename for SaveFileDialog.
7653           Patch by Emery Conrad.
7655 2006-04-24  Mike Kestner  <mkestner@novell.com>
7657         * ListView.cs (LastVisibleIndex): when in List mode of Alignment.Left,
7658         check for item.X outside the ClientRect instead of item.Y. Fixes
7659         #78151.
7661 2006-04-21 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7663         * ImageListStreamer.cs: some images store a wrong grow factor, so don't
7664         trust that value blindly and do some sanity check. Fixes bug #77814.
7666 2006-04-21 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7668         * ImageListStreamer.cs: save the mask as a 1bpp image.
7670 2006-04-21  Mike Kestner  <mkestner@novell.com>
7672         * CheckedListBox.cs: maintain CheckStatus here. Use DrawItemState to
7673         pass Checked and Indeterminate to the Theme Engine. Improve
7674         encapsulation with ListBox.
7675         * ListBox.cs: Keep a StringFormat instead of calculating it every item
7676         draw. Kill ListBoxItem. Refactor away the ListBoxInfo and ListBoxItem
7677         nested types.  Move all CheckState functionality to CheckedListBox.
7678         Make IntegralHeight work like MS.  Rewrite of Layout engine.  Fix
7679         OwnerDrawVariable layout/rendering.  Fix multicolumn rendering.  Fix
7680         ScrollAlwaysVisible handling. Refactor "selected" collections to use a
7681         single base list. Fix scrollbar sizing and placement to mirror MS.
7682         * Theme.cs: remove CheckedListBoxCheckRectangle. It wasn't really
7683         used.
7684         * ThemeWin32Classic.cs: implement Indeterminate CheckState rendering
7685         for CheckedListBox by using new DrawItemState info.  Center the
7686         checkboxes on the items. Use new StringFormat property.
7688 2006-04-18  Jackson Harper  <jackson@ximian.com>
7690         * Form.cs: MdiChildren don't do default locations the same way as
7691         regular forms.  This prevents a crash when trying to position the
7692         mdi windows.
7694 2006-04-17  Jonathan Chambers  <jonathan.chambers@ansys.com>
7696         * PropertyGridTextBox.cs: Formatting, copyright
7697         * PropertiesTab.cs: Formatting
7698         * PropertyGrid.cs: Formatting
7699         * PropertyGridView.cs: Formatting, fix drop down, enabled double 
7700           click toggling of values
7701           
7702 2006-04-17  Peter Dennis Bartok  <pbartok@novell.com> 
7704         * KeyPressEventArgs: Added 2.0 only setter for KeyChar
7705         * Control.cs (.ctor): verify_thread_handle is static, don't reset
7706           every time a control is created
7707         * Application.cs: Removed obsolete EnableRTLMirroring method
7709 2006-04-18  Gert Driesen  <drieseng@users.sourceforge.net>
7711         * TabControl.cs: Avoid ArgumentOutOfRangeException when setting
7712         SelectedIndex to -1. Fixes bug #78121.
7714 2006-04-17  Jackson Harper  <jackson@ximian.com>
7716         * Binding.cs: Handle null values for Current and BindingContext.
7717         This occurs when binding is a little delayed.
7718         * CurrencyManager.cs: return null for Current when there are no
7719         items in the list.
7720         - Hookup to the listchanged event on the DataView and update
7721         bindings when the list is changed.  This fixes late binding of
7722         controls.
7724 2006-04-17  Jackson Harper  <jackson@ximian.com>
7726         * X11Dnd.cs:
7727         * XplatUIX11.cs: Drops should not create a mousedown. Patch by Tim
7728         Ringenbach.
7730 2006-04-15  Alexander Olk  <alex.olk@googlemail.com>
7732         * ThemeWin32Classic.cs: Draw disabled combo button in the correct
7733           place
7734         * ComboBox.cs: If the combobox is disabled call CPDrawComboButton
7735           with the correct ButtonState
7737 2006-04-14  Peter Dennis Bartok  <pbartok@novell.com>
7739         * XplatUIX11.cs: Improved distinguishing between window types to
7740           tell the WM a type closer to what the app wants (Fixes #78107)
7742 2006-04-14  Alexander Olk  <alex.olk@googlemail.com>
7744         * ThemeWin32Classic.cs: Fixed drawing of ContainerGrabHandle and
7745           GrabHandle
7747 2006-04-14  Alexander Olk  <alex.olk@googlemail.com>
7749         * ThemeWin32Classic.cs: Fixed size grip drawing and updated StatusBar
7750           drawing code to reflect the size grip changes
7752 2006-04-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7754         * ImageListStreamer.cs: fix handling of the mask that follows the main
7755         bitmap when deserializing and serialize it properly. The generated mask
7756         should better be a 1bpp image, but I'll do that later.
7758 2006-04-13  Alexander Olk  <alex.olk@googlemail.com>
7760         * FileDialog.cs: Show something in the DirComboBox on *nix if the
7761           path doesn't fit into some of our Current.Places
7763 2006-04-13  Jackson Harper  <jackson@ximian.com>
7765         * ComboBox.cs: Use borders instead of drawing our own decorations,
7766         try to obey correct rules for heights.
7767         * Theme.cs:
7768         * ThemeNice.cs:
7769         * ThemeClearLooks.cs:
7770         * ThemeWin32Classic.cs: Remove combobox decoration drawing code,
7771         this is now handled by borders.
7772         - Remove unused DrawListBoxDecorationSize method.
7773         
7774 2006-04-13  Mike Kestner  <mkestner@novell.com>
7776         * MenuAPI.cs: null guarding for the disbled click check fixes crash
7777         reported by Alex.
7779 2006-04-13  Alexander Olk  <alex.olk@googlemail.com>
7781         * ThemeWin32Classic.cs: 
7782           - Fixed CPDrawStringDisabled
7783           - Corrected drawing of disabled menu items
7784           - Fixed drawing of disabled radio buttons (bug #78095)
7785           - Draw check in a disabled CheckBox with color ControlDark 
7787 2006-04-12  Peter Dennis Bartok  <pbartok@novell.com>
7789         * Form.cs: Use the provided width when calculating the menu size;
7790           when being maximized we get WM_NCCALCSIZE before WM_WINDOWPOSCHANGED
7791           and ClientSize.Width won't be updated yet
7792         * Application.cs: Use Visible instead of Show() to make form visible,
7793           this way we create the handle later and menusize is considered
7795 2006-04-12  Mike Kestner  <mkestner@novell.com>
7797         * MenuAPI.cs: ignore clicks on disabled menu items. Thanks to Alex for
7798         reporting.
7800 2006-04-12  Peter Dennis Bartok  <pbartok@novell.com>
7802         * TextBox.cs: Implemented context menu
7804 2006-04-12  Mike Kestner  <mkestner@novell.com>
7806         * ListView.cs: implement box selection. fixes #77838.
7807         * ThemeWin32Classic.cs: draw box select rect, remove a ResetClip.
7809 2006-04-12  Peter Dennis Bartok  <pbartok@novell.com> 
7811         * XplatUIX11.cs: Added setting of window type when transient window
7812           is created (metacity would move it otherwise)
7813         * X11Structs.cs: Added WINDOW_TYPE atoms
7814         * LinkLabel.cs: Override OnPaintBackgroundInternal and draw the
7815           background (the control is Opaque but still wants transparent
7816           backgrounds)
7818 2006-04-12  Peter Dennis Bartok  <pbartok@novell.com>
7820         * Control.cs: Added OnPaintBackgroundInternal to allow controls
7821           that set Opaque but don't mean it (like all ButtonBase-derived
7822           controls) to still draw their background
7823         * ButtonBase.cs: Override OnPaintBackgroundInternal and draw
7824           the background
7826 2006-04-12  Peter Dennis Bartok  <pbartok@novell.com> 
7828         * Control.cs (PaintControlBackground): Set the graphics object
7829           on our PaintEvent to null to prevent it from being disposed
7830           when the PaintEvent gets disposed
7832 2006-04-12  Alexander Olk  <alex.olk@googlemail.com>
7834         * ThemeWin32Classic.cs: Use even more SystemBrushes and SystemPens
7835         * ThemeNice.cs, ThemeClearlooks.cs: fix typo
7837 2006-04-12  Peter Dennis Bartok  <pbartok@novell.com>
7839         * Control.cs: 
7840           - Added transparency check to BackColor property. Transparent
7841             backgrounds are only allowed if the control styles permit it
7842           - Added recursive painting of parent control background and
7843             foreground if a control with a transparent backcolor is drawn
7844             (Thanks to Tim Ringenback for providing his 'hack' as a base
7845              for this patch) Fixes #77985 and #78026.
7846           - Added Opaque style check before calling OnPaintBackground, no
7847             need to draw the background if the control is opaque
7848           - Removed ControlAccessibleObject owner variable (inherited from
7849             base, no need to define again)
7850           - Added some documentation links explaining the drawing events
7851             and styles
7853 2006-04-11  Peter Dennis Bartok  <pbartok@novell.com> 
7855         * Splitter.cs (CalculateSplitPosition): Corrected the bad assumption
7856           that the affected control is the located at the left border of our
7857           parent (Fixes #77936)
7859 2006-04-11  Peter Dennis Bartok  <pbartok@novell.com>
7861         * TextBoxBase.cs: When rendering disabled or readonly controls,
7862           draw the background with 'Control' instead of 'Window' color as
7863           long as the user hasn't specifically set a color
7865 2006-04-11  Peter Dennis Bartok  <pbartok@novell.com> 
7867         * TextBoxBase.cs: Don't try to shortcut by checking against base.Text
7868           since that won't be updated if the user types text (only if it's
7869           programatically set)
7871 2006-04-11  Peter Dennis Bartok  <pbartok@novell.com>
7873         * ScrollableControl.cs: Calculate DisplayRect dynamically, so that
7874           layout changes do to app-triggered resizes will have the proper
7875           display rectangle for layout
7877 2006-04-11  Alexander Olk  <alex.olk@googlemail.com>
7879         * ThemeWin32Classic.cs:
7880           - Make use of the SystemBrushes and SystemPens wherever possible
7881           - Corrected some highlight colors
7882           - Corrected RadioButton and CheckBox FlatStyle.Flat and Popup
7883             drawing
7884         * Theme.cs: Added Empty field to CPColor struct
7886 2006-04-11  Peter Dennis Bartok  <pbartok@novell.com>
7888         * ScrollabeControl.cs: We need to consider whether or not a scrollbar
7889           is displayed when calculating the display rectangle. Thanks to Mike
7890           for teaching me the err of my ways.
7892 2006-04-10  Peter Dennis Bartok  <pbartok@novell.com>
7894         * ScrollableControl.cs:
7895           - Rewrote DisplayRectangle code, now returning the proper x/y coords 
7896             (instead of 0,0) and we now return the real width/height instead of
7897             just the clientrectangle, adjusted for padding. The rectangle is
7898             now cached and created by the new CalculateDisplayRectangle method.
7899           - Created new CalculateDisplayRectange method, which basically does
7900             what get_DisplayRectangle() did originally, but now using the 
7901             right edge instead of DisplayRectangle to determine the size of
7902             our scrollbars
7903           - get_Canvas(): Fixed it to properly calculate canvas for 
7904             right/bottom controls which seem to be placed to the right/bottom
7905             of any controls that have a fixed location
7906           - Removed TODO that's taken care of
7907           - Removed NotImplementeds and attempted to implement AdjustFormScrollBars
7908             and SetDisplayRectLocation according to new MSDN2 docs
7909           - Added call to PerformLayout in OnVisibleChanged, MS causes a layout
7910             event when that is called, this is added for compatibility
7911           - ScrollControlIntoView(): Implemented.
7912           - Switched scrollbars to be implicit, they shouldn't be selectable
7913         * ContainerControl: Now that ScrollControlIntoView is implemented, we 
7914           call it when the active control is set/changed
7915         * ScrollBar.cs: Added support for generating Win32 scrollbar messages
7916         * ImplicitHScrollBar.cs, ImplicitVScrollBar.cs: Now setting new base
7917           implicit_control variable (used for native Win32 message generation)
7918         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs: Added new 
7919           HorizontalScrollBarHeight and VerticalScrollBarWidth properties
7920         * ThemeWin32Classic.cs: Now calling the driver for the scrollbar sizes
7921         * XplatUIStructs.cs: Added ScrollBarCommands enum
7923 2006-04-10  Jackson Harper  <jackson@ximian.com>
7925         * ButtonBase.cs:
7926         * CheckedListBox.cs:
7927         * ComboBox.cs:
7928         * DataGrid.cs:
7929         * DataGridView.cs:
7930         * Form.cs:
7931         * GroupBox.cs:
7932         * ListBox.cs:
7933         * PrintPreviewControl.cs:
7934         * ProgressBar.cs:
7935         * PropertyGrid.cs:
7936         * Splitter.cs:
7937         * StatusBar.cs:
7938         * TrackBar.cs:
7939         * UpDownBase.cs: Fixup base event overrides.
7940         
7941 2006-04-06  Mike Kestner  <mkestner@novell.com>
7943         * ScrollBar.cs: fix "new event" declarations (#76509) and bounds check
7944         all user-initiated value changes to min <= value <= max-thumbsz+1.
7945         (set_Value): check for vert/horiz when calculating new thumb position.
7946         (LargeIncrement): bounds check to stop pos at max - thumb_size + 1
7947         like MS does.
7948         (OnMouseMoveSB): refactor the thumb dragging code and refine
7949         invalidation logic to reduce flicker.
7950         (SetEndPosition): bounds check to stop pos at max - thumb_size + 1
7951         (SmallIncrement): bounds check to stop pos at max - thumb_size + 1
7952         (UpdateThumbPosition): small code readability cleanup
7954 2006-04-10  Alexander Olk  <alex.olk@googlemail.com>
7956         * ThemeNice.cs: Small UI polishing. Draw borders a little bit
7957           different
7959 2006-04-08  Alexander Olk  <alex.olk@googlemail.com>
7961         * ThemeNice.cs: Use a better graphics effect when a button is pressed
7963 2006-04-08  Alexander Olk  <alex.olk@googlemail.com>
7965         * Theme.cs: Added GetDashPen and GetSizedPen to SystemResPool
7966         * ThemeWin32Classic.cs: Make use of the new SystemResPool methods.
7967           This dramatically reduces the number of Pen.Dispose calls. 
7968           Where possible call ResPool methods only once instead of calling it
7969           over and over again (for example for the same color).
7971 2006-04-06  Mike Kestner  <mkestner@novell.com>
7973         * TabControl.cs: fix for SelectedIndex updating on TabPage removals.
7974         Also remove an unused private field on the collection. Fixes #77972.
7976 2006-04-06  Alexander Olk  <alex.olk@googlemail.com>
7978         * ThemeNice.cs: Added ToolBar drawing code
7980 2006-04-06  Mike Kestner  <mkestner@novell.com>
7982         * Form.cs (ShowDialog): MS allows IWin32Window param to be a non-form.
7983         I'm assuming that means we need to look up the toplevel for the
7984         provided control. Fixes the crash trace in #77911 but exposes another
7985         crash in some strange reflection usage in NDocGui.
7987 2006-04-06  Alexander Olk  <alex.olk@googlemail.com>
7989         * ThemeNice.cs: Gave it a little silver touch and added Images
7990           method
7991         * FontDialog.cs: FontDialog is not resizable
7992         * FileDialg.cs: Added SizeGripStyle.Show
7994 2006-04-05  Jackson Harper  <jackson@ximian.com>
7996         * KeyboardLayouts.cs: Remove warning.
7998 2006-04-05  Jackson Harper  <jackson@ximian.com>
8000         * Control.cs: Enable OnPaintInternal so we can use it for drawing
8001         all of our controls instead of Paint +=.
8002         * ListBox.cs:
8003         * ListView.cs:
8004         * MenuAPI.cs:
8005         * MessageBox.cs:
8006         * NotifyIcon.cs:
8007         * ProgressBar.cs:
8008         * ScrollBar.cs:
8009         * Splitter.cs:
8010         * StatusBar.cs:
8011         * TabControl.cs:
8012         * TextBoxBase.cs:
8013         * ToolBar.cs:
8014         * TrackBar.cs:
8015         * UpDownBase.cs:
8016         * ComboBox.cs: Remove handling of WM_PAINT and WM_ERASEBKGND and
8017         use OnPaintInternal. Remove Width/Height and Visible checks in
8018         paint handler, this is done at a higher level now.
8019         * GroupBox.cs: Don't need to handle WM_ERASEBKGND anymore.
8020         * PaintEventArgs.cs: Add a handled flag so controls that don't
8021         want anymore painting after OnPaintInternal can make sure OnPaint
8022         isn't called.
8024 2006-04-05  Mike Kestner  <mkestner@novell.com>
8026         * Form.cs: fix the menu WndProc hacks to respect the native enabled
8027         state of the form, so that we don't process events when Modal dialogs
8028         are up. Fixes #77922.
8030 2006-04-05  Alexander Olk  <alex.olk@googlemail.com>
8032         * Mime.cs: Default for range length is 1 not 0. If set to 0 no match
8033           checking is done.
8035 2006-04-05  Mike Kestner  <mkestner@novell.com>
8037         * XplatUIX11.cs: fix typo in the EX_APPWINDOW transient patch.
8039 2006-04-05  Mike Kestner  <mkestner@novell.com>
8041         * ListView.cs (HeaderMouseMove): null guarding for the over column
8042         when setting up the drag_to_index.  Fixes #78015.
8044 2006-04-04  Peter Dennis Bartok  <pbartok@novell.com>
8046         * XplatUIX11.cs: If WS_EX_APPWINDOW isn't set we don't want to show up
8047           in the taskbar. Transient windows seem to accomplish that.
8049 2006-04-04  Peter Dennis Bartok  <pbartok@novell.com> 
8051         * Form.cs:
8052           - Re-enabled CreateParams.X/Y code for FormStartPosition
8053           - Added code for manual placement when creating the Control
8054           - Incomplete patch to treat MDI forms differently when
8055             setting the ClientSizeCore. (Still need to figure out handling
8056             x/y coords there)
8057         * XplatUIX11.cs:
8058           - When we're explicitly setting the X/Y position of a non-Child
8059             window, let the WM know. Metacity really wants this.
8061 2006-04-04  Alexander Olk  <alex.olk@googlemail.com>
8063         * ThemeNice.cs: Added CPDrawButton
8065 2006-04-04  Alexander Olk  <alex.olk@googlemail.com>
8067         * ThemeNice.cs: Changed the color for focused buttons and activated
8068           the arrows for small scroll buttons.
8070 2006-04-04  Alexander Olk  <alex.olk@googlemail.com>
8072         * ThemeWin32Classic.cs: Removed DrawFlatStyleButton, not needed
8073           anymore. Changed some method modifiers to protected (virtual)
8074         * ThemeClearlooks.cs: Updated to reflect the ThemeWin32Classic
8075           changes
8076         * ThemeNice.cs: Updated to reflect the ThemeWin32Classic changes.
8077           Updated drawing of menus, buttons and progressbars; added
8078           CPDrawBorder3D 
8080 2006-04-03 Gonzalo Paniagua Javier <gonzalo@ximian.com>
8082         * ImageListStreamer.cs: implemented serialization/deserialization
8083         of the images.
8085 2006-04-03  Alexander Olk  <alex.olk@googlemail.com>
8087         * ThemeWin32Classic.cs:
8088           - Removed all the DrawFrameControl stuff; CPDrawButton,
8089             CPDrawCheckBox and CPDrawRadioButton are now handled directly
8090             inside the methods
8091           - Updated and corrected the drawing code of CPDrawButton,
8092             CPDrawCheckBox and CPDrawRadioButton to better match ms
8093           - Updated theme checkbox and radiobutton code to use the CP*
8094             methods
8096 2006-03-31  Peter Dennis Bartok  <pbartok@novell.com> 
8098         * XplatUIX11.cs: Enable clipping again now that the libgdiplus
8099           bug is fixed
8101 2006-03-31  Jackson Harper  <jackson@ximian.com>
8103         * XplatUIX11.cs: Somehow we get SETCURSORS for bad windows
8104         sometimes.
8105         * UpDownBase.cs: Don't CreateGraphics manually, use a
8106         Refresh. Ideally we would invalidate the correct areas here.
8108 2006-03-31  Peter Dennis Bartok  <pbartok@novell.com> 
8110         * XplatUIX11.cs: 
8111           - We now track the mapping state of windows. If a window (or 
8112             one of it's parents) is not mapped we no longer permit
8113             WM_PAINT messages to be generated since we'd otherwise get 
8114             lots of BadMatch X errors. Jackson did all the work figuring
8115             out the problem.
8116           - Destroying the caret if the window it's contained in is 
8117             destroyed. Can't use regular DestroyCaret method since it
8118             might fall into a drawing function (trying to remove the
8119             caret) and with that generate new BadMatch errors. Again,
8120             Jackson tracked this down.
8121           - Changed DestroyChildWindows to SendWMDestroyMessages, we now
8122             make sure we send the messages to all windows. (The old code
8123             would send the WM_DESTROY to the window, and then all child
8124             windows would be 'gone' because the WM_DESTROY handle lookup
8125             would no longer find the destroyed window)
8126         * Hwnd.cs: Added Mapping property to track mapping state of hwnd
8127         * X11Structs.cs: Added WindowType enum for MapWindow/UnmapWindow
8129 2006-03-31  Jackson Harper  <jackson@ximian.com>
8131         * ScrollableControl.cs: Dont recalc if we are not visible.
8133 2006-03-31  Mike Kestner  <mkestner@novell.com>
8135         * Control.cs (SetVisibleCore): move the CreateControl call up ahead of
8136         the visibility branch.
8138 2006-03-31  Jackson Harper  <jackson@ximian.com>
8140         * ScrollBar.cs: Cap values when incrementing/decrementing.
8142 2006-03-31  Mike Kestner  <mkestner@novell.com>
8144         * MenuAPI.cs: setup menu.tracker for popup/context menus.
8145         * ToolTip.cs: guard against timer expirations with no active control.
8146         Not sure why it happened.
8148 2006-03-31  Mike Kestner  <mkestner@novell.com>
8150         * ThemeWin32Classic.cs: add some horizontal padding space for the tip
8151         text.
8152         * ToolTip.cs: Position the tooltip based on where the cursor is at
8153         popup time, not at MouseEnter time.  Add a Down state so that we don't
8154         redisplay tips without a Leave. Use faked XplatUI.GetCursorInfo for
8155         positioning offset. Lookup DisplaySize at positioning time, since it
8156         can theoretically change during invocation.
8157         * XplatUIWin32.cs: fake GetCursorInfo until pdb can do it properly.
8158         * XplatUIX11.cs: fake GetCursorInfo until pdb can do it properly.
8160 2006-03-31  Alexander Olk  <alex.olk@googlemail.com>
8162         * ThemeWin32Classic.cs: Use CPDrawBorder3D to draw a GroupBox.
8163           Fixes behaviour when the Text property of the box is String.Empty
8165 2006-03-31  Peter Dennis Bartok  <pbartok@novell.com>
8167         * XplatUIX11.cs: Only send mouseleave for our client windows, not
8168           for the whole window (otherwise we get WM_MOUSE_LEAVE twice for
8169           a window)
8171 2006-03-31  Alexander Olk  <alex.olk@googlemail.com>
8173         * FileDialog.cs: Visual enhancement for the popup buttons in 
8174           PopupButtonPanel
8176 2006-03-31  Alexander Olk  <alex.olk@googlemail.com>
8178         * ColorDialog.cs, FontDialog.cs: Make use of the updated 3D border
8179           code
8181 2006-03-30  Alexander Olk  <alex.olk@googlemail.com>
8183         * ThemeWin32Classic.cs: Updated MainMenu drawing of selected and
8184           highlighted menu items to match ms
8186 2006-03-30  Peter Dennis Bartok  <pbartok@novell.com> 
8188         * XplatUIX11.cs: Don't set a clip rectangle unless it's not empty
8190 2006-03-30  Mike Kestner  <mkestner@novell.com>
8192         * Menu.cs (SelectedItem): use new MenuItem.Selected prop.
8193         * MenuAPI.cs: use new MenuItem.Selected prop. redraw MainMenu when we
8194         go active to account for HotLight to Selected transition.
8195         * MenuItem.cs: add internal Selected prop. Fill out the Status
8196         property by calculating it from item info. Add HotLight,
8197         NoAccelerator, Checked, Grayed, and Disabled flags where appropriate.
8199 2006-03-30  Mike Kestner  <mkestner@novell.com>
8201         * MenuItem.cs: only emit DrawItem and MeasureItem for OwnerDraw.
8203 2006-03-29  Jackson Harper  <jackson@ximian.com>
8205         * Form.cs: Implement TODO.
8207 2006-03-29  Peter Dennis Bartok  <pbartok@novell.com> 
8209         * PrintPreviewDialog.cs: Implemented missing methods and events; still
8210           missing proper dialog setup in the constructor
8212 2006-03-29  Peter Dennis Bartok  <pbartok@novell.com>
8214         * ProgressBar.cs: Added 2.0 Style property that apps seem to use
8215         * Control.cs:
8216           - Implemented CheckForIllegalCrossThreadCalls, removed TODO
8217           - Fixed ResetBindings and removed TODO
8218           - Added check for cross-thread calls to get_Handle()
8219           - Added Marshaller attribute for set_Font to satisfy class status
8220         * FontDialog.cs: Removed TODOs that seemed implemented
8221         * UpDownBase.cs: Removed unneeded TODO and Fixme
8222         * MessageBox.cs: Implemented support for Default button and removed TODO
8223         * FileDialog.cs: Removed obsolete TODO
8224         * DomainUpDown.cs: Removed obsolete TODO
8225         * ButtonBase.cs: Removed obsolete TODO
8226         * XplatUIWin32.cs: Removed obsolete TODO
8227         * Form.cs:
8228           - Removed obsolete TODO
8229           - Calling CheckAcceptButton when the acceptbutton is changed to allow
8230             internal status updates
8231           - Making sure the active control is selected when the control is created
8232         * CurrencyManager.cs: Removed obsolete TODO
8234 2006-03-29  Mike Kestner  <mkestner@novell.com>
8236         * *.cs: fix remaining corcompare issues for 1.1 API with the exception
8237         of PrintPreviewDialog and RichTextBox.
8239 2006-03-29  Alexander Olk  <alex.olk@googlemail.com>
8241         * Theme.cs: Added a little helper to SystemResPool to get the Dark,
8242           DarkDark, Light and LightLight colors for a specific color
8243         * ThemeWin32Classic.cs:
8244           - Use Button drawing code to draw RadioButtons and CheckBoxes with
8245             Appearance = Button 
8246           - Make use of the new ResPool helper CPColor
8247           - Draw ProgressBar and StatusBar with correct 3D borders
8249 2006-03-29  Alexander Olk  <alex.olk@googlemail.com>
8251         * ColorDialog.cs: Return selected color. Fixes bug #77940.
8253 2006-03-28  Mike Kestner  <mkestner@novell.com>
8255         * ListView.cs: fix Icon layout to plan for scrollbar widths when
8256         calculating col/row counts.
8258 2006-03-28  Mike Kestner  <mkestner@novell.com>
8260         * ColumnHeader.cs:
8261         * ListView.cs:
8262         * ListViewItem.cs:
8263         * Menu.cs: 
8264         switch to explicit interface method implementation for some methods
8265         corcompare identifies as inconsistent with MS.
8267 2006-03-28  Mike Kestner  <mkestner@novell.com>
8269         * MainMenu.cs: 
8270         * Menu.cs:
8271         add a few missing methods from the class status output.
8273 2006-03-28  Alexander Olk  <alex.olk@googlemail.com>
8275         * ControlPaint.cs: Fixed ControlPaint.Light method. Results are now
8276           correct.
8278 2006-03-28  Mike Kestner  <mkestner@novell.com>
8280         * MenuAPI.cs: Deactivate on MainMenu item click. Fixes #77917.
8282 2006-03-27  Mike Kestner  <mkestner@novell.com>
8284         * ThemeWin32Classic.cs: Switch flat toolbars to use RaisedInner for
8285         the Hilight state to adapt to Alex's CPDrawBorder3D changes.
8287 2006-03-27  Alexander Olk  <alex.olk@googlemail.com>
8289         * ThemeWin32Classic.cs: Rewrote Button drawing code to match ms.
8291 2006-03-25  Alexander Olk  <alex.olk@googlemail.com>
8293         * ThemeWin32Classic.cs:
8294           - GroupBox: Inserted a little gap between the text and the lines
8295             on the right side
8296           - Made the code in CPDrawBorder3D more readable
8297           - Corrected the drawing location of the up and down arrows in 
8298             CPDrawScrollButton
8300 2006-03-25  Alexander Olk  <alex.olk@googlemail.com>
8302         * ControlPaint.cs: Corrected line widths in DrawBorder for
8303           ButtonBorderStyle Inset and Outset
8305 2006-03-25  Alexander Olk  <alex.olk@googlemail.com>
8307         * ThemeWin32Classic.cs:
8308           - Rewrote the totally broken CPDrawBorder3D method. That was
8309             one of the main problems for the terrific ThemeWin32Classic
8310             look
8311           - Updated and corrected Button drawing
8312           - Correct the dimensions of the SizeGrip to match ms ones
8313           - Removed a small drawing glitch in DrawComboBoxEditDecorations
8314         * XplatUIX11.cs: Draw borders with BorderStyle = Fixed3D with
8315           Border3DStyle.Sunken to match ms.
8317 2006-03-25  Alexander Olk  <alex.olk@googlemail.com>
8319         * ThemeWin32Classic.cs: First small part of the "de-uglify
8320           ThemeWin32Classic" effort, SizeGrip
8322 2006-03-24  Jackson Harper  <jackson@ximian.com>
8324         * XplatUIX11.cs: Give a max idle time of one second, this matches
8325         MS and forces an Idle event every second when there are no other
8326         events in the queue.
8328 2006-03-24  Mike Kestner  <mkestner@novell.com>
8330         * ListView.cs: Handle (Large|Small)ImageList == null more robustly.
8331         * ListView.Item.cs: fix layout issues with null image lists and images
8332         smaller than checkbox size.
8333         * ThemeWin32Classic.cs: Draw a 12 pixel line in ListView LargeIcon
8334         mode like MS does.  It's weird, but consistent.  ;-)
8335         Fixes #77890.
8337 2006-03-24  Mike Kestner  <mkestner@novell.com>
8339         * ListView.cs: Scroll wheel support for the item control.  Fixes
8340         #77839.
8342 2006-03-23  Jackson Harper  <jackson@ximian.com>
8344         * ScrollableControl.cs: Special case negative sized areas, not
8345         zero.
8346         * MonthCalendar.cs: Save the rect of the clicked date so we can
8347         use it for invalidation.
8348         - Try to cut down on the number of invalidates
8349         - Invalidate the rect the mouse is over and was over when moving
8350         the mouse, so we get the focus box following the cursor.
8352 2006-03-23  Mike Kestner  <mkestner@novell.com>
8354         * ThemeWin32Classic.cs: fix FullRowSelect selection background and
8355         focus rectangle drawing. Fixes #77835.
8357 2006-03-23  Mike Kestner  <mkestner@novell.com>
8359         * XplatUIX11.cs: rework the fix for #77828 by changing the order of
8360         the if and else if and reverting back to the original == check on the
8361         None conditional.
8363 2006-03-23  Alexander Olk  <alex.olk@googlemail.com>
8365         * FontDialog.cs: Update the example panel if the selected index of
8366           the fontListBox changes.
8368 2006-03-23  Alexander Olk  <alex.olk@googlemail.com>
8370         * FileDialog.cs: Make FileDialog remember which directory it was in
8371           last in the same execution.
8373 2006-03-22  Mike Kestner  <mkestner@novell.com>
8375         * FileDialog.cs: make the DropDownMenu on the toolbar display
8376         RadioChecks since they are mutually exclusive and that's what MS does.
8378 2006-03-22  Mike Kestner  <mkestner@novell.com>
8380         * Theme.cs: add Color param to CPDrawMenuGlyph.
8381         * ThemeWin32Classic.cs: do color specific menu glyph rendering so that
8382         checks and radio marks and arrows are visible on highlighted items.
8383         * ControlPaint.cs: update to use new Theme signature.
8385 2006-03-22  Mike Kestner  <mkestner@novell.com>
8387         * MenuAPI.cs: only process Enter and arrow keypresses if the tracker
8388         is active. Fixes #77870.
8390 2006-03-22  Alexander Olk  <alex.olk@googlemail.com>
8392         * FileDialog.cs: Corrected TabIndex order and set fileNameComboBox
8393           to be focused/selected after startup
8395 2006-03-22  Alexander Olk  <alex.olk@googlemail.com>
8397         * ColorDialog.cs: 
8398           - Corrected behaviour of Color, AllowFullOpen, FullOpen,
8399             CustomColors and ShowHelp properties
8400           - Some internal rewrites to get better results when using the
8401             ColorMatrix
8403 2006-03-22  Mike Kestner  <mkestner@novell.com>
8405         * ListView.cs: hook into Peter's new ResetMouseHover capability to fix
8406         HoverSelection.  Fixes #77836.
8408 2006-03-22  Mike Kestner  <mkestner@novell.com>
8410         * FileDialog.cs: bugfixes for the toolbar.  Use PushButtons instead of
8411         ToggleButtons.  (De)Sensitize the Back button around a stack count of
8412         1, not 0.  Update ButtonSize based on a pixel count of the win32
8413         control.  Adjust the toolbar size/location for new button size.
8415 2006-03-22  Jackson Harper  <jackson@ximian.com>
8417         * XplatUIX11.cs: Don't handle configurenotifys if PostQuitState is
8418         true.
8419         * ScrollBar.cs: When doing increments and decrements we need to
8420         set the Value property so that ValueChanged gets raised. A
8421         possible optimization here would be to make an internal SetValue
8422         that doesn't invalidate immediately.
8423         * ToolTip.cs: Tooltips get added to their container (when
8424         supplied) so they get disposed when the container is disposed.
8425         - Don't create tooltips for String.Empty. This prevents all these
8426         little 2-3 pixel windows from showing up when running nunit-gui
8427         and driving me mad.
8428         * Form.cs: Don't set topmost when setting the owner if the handles
8429         haven't been created yet.  The topmost set will happen when the
8430         handles are created.
8432 2006-03-22  Peter Dennis Bartok  <pbartok@novell.com> 
8434         * XplatUIX11.cs:
8435           - DeriveWindowStyles: Fixed typo in borderstyle generation (#77828)
8436           - SetVisible: Sending WINDOWPOSCHANGED for all controls when made 
8437             visible (to allow them to recalculate their sizes)
8439 2006-03-21  Mike Kestner  <mkestner@novell.com>
8441         * ThemeWin32Classic.cs: major refactoring of the ToolBar rendering
8442         methods. Removed a ton of redundant code.  Still not really happy with
8443         the border rendering, but I think that's mainly because of the
8444         ControlDarkDark being black instead of a dark grey. Depending on how 
8445         close we want to be, we might want to revisit those color choices.
8446         Among the new features added during the refactor were DropDownArrow
8447         pressed rendering, Disabled image rendering.  Proper flat appearance
8448         boundary rendering.  Removed the Divider and Wrapping dividers since I
8449         can't figure out any combination of themes and conditions to make the
8450         MS control draw a horizontal line on a toolbar despite what the
8451         Divider property docs indicate.
8452         * ToolBar.cs: rewrite the layout engine. Fixes numerous flicker
8453         conditions and incorrect layout.  Updated to coding standard.
8454         * ToolBarButton.cs: refactored layout and positioning code from
8455         ToolBar to here.  Invalidate wherever possible instead of forcing
8456         redraws of the whole toolbar. 
8457         (Known remaining issues: explicit ButtonSize smaller than provided
8458         images.)
8460 2006-03-21  Mike Kestner  <mkestner@novell.com>
8462         * ContextMenu.cs (Show): use the position parameter instead of just
8463         showing at the MousePosition.
8465 2006-03-21  Jackson Harper  <jackson@ximian.com>
8467         * TabControl.cs: Remove the call to ProcessKeyEventArgs and let
8468         control handle this.
8469         * TreeNodeCollection.cs: If we are clearing the root node we need
8470         to reset top_node so calcs can still happen.
8471         * ThemeWin32Classic.cs: This is a Flags so we need to check
8472         properly.
8473         
8474 2006-03-21  Jackson Harper  <jackson@ximian.com>
8476         * DataGrid.cs: Create columns when the binding context has been
8477         changed.
8478         * X11Structs.cs: Keysyms are uints.
8479         - Add size to fix build.
8481 2006-03-21  Peter Dennis Bartok  <pbartok@novell.com> 
8483         * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs, XplatUIWin32.cs, 
8484           XplatUIOSX.cs: 
8485           - Added ResetMouseHover method to allow controls to retrigger
8486             hovering if they need it more than once
8487           - Implemented MouseHoverTime and MouseHoverSize properties
8488         * Timer.cs: Start() must reset the interval
8489         * SystemInformation.cs: Added 2.0 MouseHoverTime and MouseHoverSize
8490           properties
8492 2006-03-21  Jackson Harper  <jackson@ximian.com>
8494         * X11Keyboard.cs: improved layout detection. Move the nonchar
8495         tables into this file.
8496         * KeyboardLayouts.cs: Move the tables into resource files.
8498 2006-03-21  Mike Kestner  <mkestner@novell.com>
8500         * ListView.cs: use OnItemActivated to raise events. Fixes #77834.
8502 2006-03-21  Alexander Olk  <alex.olk@googlemail.com>
8504         * Mime.cs: Various speed optimizations. Looking up mime types
8505           is now 2 times faster than before
8507 2006-03-17  Peter Dennis Bartok  <pbartok@novell.com> 
8509         * CreateParams.cs: Added internal menu field
8510         * Control.cs: 
8511           - Switched call order for UpdateBounds; now we always call
8512             the one that also takes ClientSize, and we're calculating the 
8513             client size via driver method in the others. The previous
8514             method of tracking client size by difference wasn't working
8515             for forms where even the starting client size wouldn't match
8516             the overall form size (due to borders) (Part of fix for #77729)
8517           - CreateParams(): Do not use parent.Handle unless the handle is
8518             already created. Causes havoc with Nexxia and throws off our
8519             creation of controls
8520         * XplatUIX11.cs:
8521           - Created new PerformNCCalc method to trigger WM_NCCALCSIZE message
8522           - Switched handling of ConfigureNotify over to new PerformNCCalc 
8523             method (consolidates code)
8524           - Changed RequestNCRecalc to use new PerformNCCalc method
8525           - Added calls to RequestNCRecalc when menus and borders are changed
8526             to allow app to set NC size. (Part of fix for #77729) This matches
8527             when MS send a WM_NCRECALC on Win32 windows.
8528           - Now sending WM_WINDOWPOSCHANGED when toplevel for is made visible
8529             (Part of fix for #77729). This matches what MS does, they also
8530             send that message when the form is made visible.
8531           - XException.GetMessage: Improved usability of X errors by including
8532             a translation of the window into Hwnd and Control class
8533           - Improved debug info for window creation, reparenting and destruction
8534           - Created helper method WindowIsMapped() [Currently not used]
8535         * XplatUIWin32.cs: Added ToString() debug helper to RECT structure
8536         * Form.cs:
8537           - CreateParams: Now setting our menu on the new internal menu field
8538           - SetClientSizeCore: Now passing cp.menu instead of ActiveMenu to
8539             avoid calculating the same property twice
8540         * Hwnd.cs:
8541           - Improved usability of ToString() for debugging purposes
8542           - GetWindowRectangle(): Now uses proper CalcMenuBarSize method to
8543             determine the height of the menu, instead of just the font. This
8544             required to also create a graphics context and to keep a bmp 
8545             around (for performance reasons)
8547 2006-03-17  Peter Dennis Bartok  <pbartok@novell.com>
8549         * MenuAPI.cs: Added OnMouseUp method
8550         * Form.cs:
8551           - Now remembering the requested client size, avoids size errors
8552           - WndProc: Now handling WM_xBUTTONUP and passing it to MenuTracker
8553             instead of base if the menu is active. This is required due to
8554             control now capturing and releasing on down/up and it would
8555             prematurely release our menu capture
8557 2006-03-17  Jackson Harper  <jackson@ximian.com>
8559         * KeyboardLayouts.cs: Add the czech layouts.
8561 2006-03-16  Jackson Harper  <jackson@ximian.com>
8563         * Control.cs: Use the viewport space when sizing not the controls
8564         client size, so things like ScrollableControl that effect the
8565         viewport size (when scrollbars are added) are computed correctly.
8566         * BindingContext.cs: Cleanup to use the DataSourceEntrys instead
8567         of ManagerEntrys.
8568         - Handle creating BindingManagers for null data sources.
8569         * DataGrid.cs: Bind the cached_currencymgr_events to the real data
8570         source, otherwise when rows are added they are added to the 'fake'
8571         datasource and we will crash when trying to set the position in
8572         those rows.
8573         - Use Implicit scrollbars on the datagrid so they arent
8574         selectable.
8575         
8576 2006-03-16  Jackson Harper  <jackson@ximian.com>
8578         * Binding.cs:
8579         * InternalWindowManager.cs:
8580         * MdiWindowManager.cs:
8581         * X11Keyboard.cs: I really want Mike to love me again (fix
8582         compiler warnings).
8584 2006-03-16  Peter Dennis Bartok  <pbartok@novell.com>
8586         * DataGrid.cs:
8587           - OnMouseDown: Switch to editing mode when clicking on the cell
8588                          even if we're clicking on the cell that's currently 
8589                          selected
8590           - ProcessGridKey: Left/Right now wrap like MS.Net does
8591           - ProcessGridKey: Tab now knows to add a new row when tab is
8592                             pressed in the cell of the last column of the 
8593                             last row
8594           - ProcessGridKey: Enter now adds another row  if pressed in the last
8595                             row and selectes the new row, same column cell
8596           - ProcessGridKey: Home/End navigate columns, not rows, like 
8597                             originally implemented
8598           - Broke ProcessKeyPreview code out into an extra Internal method
8599             so it can be called from the edit code
8600         * DataGridTextBox.cs (ProcessKeyMessage):
8601           - Switched to accept Tab keypresses
8602           - Added F2 handling to allow jumping to the end of the edited cell
8603           - Added logic to allow moving caret left/right inside edited cell
8604             and making the edited cell jump when the caret hits cell borders
8605           - Tab and Enter are now passed to the datagrid after being handled
8606         * TextBoxBase.cs:
8607           - Removed capture code now that Control handles it
8608           - set_SelectionStart now ensures caret is visible
8610 2006-03-16  Jackson Harper  <jackson@ximian.com>
8612         * TrackBar.cs: Debackwards the increment/decrement for handling
8613         mouse clicks on the bar with vertical trackbars.
8614         * ThemeWin32Classic.cs: Draw vertical trackbars with 0 at the
8615         bottom to match MS.
8617 2006-03-16  Mike Kestner  <mkestner@novell.com>
8619         * ListView.cs: make shift/ctrl keyboard and mouse selection 
8620         consistent with the MS control. Fix a bug in
8621         SelectedListViewItemCollection.Clear that was pissing me off for the
8622         better part of a day because the collection was being altered
8623         underneath us as we walked the list.
8625 2006-03-16  Peter Dennis Bartok  <pbartok@novell.com> 
8627         * Control.cs: Not sure how we could miss this so long, but it seems
8628           that MS.Net has Capture set all the way from before calling 
8629           OnMouseDown through sending the mouse events until after
8630           OnMouseUp. This will fix DataGrid's selection being set to end
8631           at the location of the MouseUp.
8633 2006-03-15  Jackson Harper  <jackson@ximian.com>
8635         * BindingContext.cs: Check the binding after its added so that it
8636           can initialize the binding managers and hookup to events.
8637         * Binding.cs: Data members seem to sometimes include rows/cols in
8638           the format Row.Column we now take this into account.
8639           - Hookup to the position changed event so we can update the
8640           control when the position has changed in the data set.
8641         * CurrencyManager.cs: Take into account the row/col naming
8642           convention when creating dataset tables.
8643         * BindingContext.cs: Using a newer better way of storing
8644           datasource/datamember pairs.  Hopefully this better matches MS for
8645           looking up binding managers.
8648 2006-03-15  Jackson Harper  <jackson@ximian.com>
8650         * BindingContext.cs: The currency manager needs the data member
8651         name, if the member is a data set we use the name to find the
8652         correct table.
8653         * CurrencyManager.cs: When creating the list prefer an IList over
8654         an IListSource.
8655         - Attempt to create a DataTable from a DataSet (TODO: might need
8656         some better error checking here, although MS doesn't seem to have much)
8657         - If we have a DataTable create a view and use it as our list.
8659 2006-03-15  Mike Kestner  <mkestner@novell.com>
8661         * ListView.cs: keep a matrix of the icon mode layout to facilitate
8662         keyboard navigation. Support Up/Down/Left/Right selection correctly
8663         for all 4 View modes.
8664         * ListViewItem.cs: add internal row/col fields for icon layouts.
8666 2006-03-15  Jackson Harper  <jackson@ximian.com>
8668         * TabControl.cs: Redraw the tabs when we resize so their newly
8669         calculated sizes are drawn on screen.
8670         * X11Keyboard.cs: Begginnings of XIM support.  We also now support
8671         composite characters.
8672         * XplatUIX11.cs: Keyboard driver needs to know about focus changes
8673         - filter events so that composite characters can be created
8674         patches by peter
8675         * X11Structs.cs: Add XIMProperties enum.
8677 2006-03-14  Peter Dennis Bartok  <pbartok@novell.com> 
8679         * Control.cs (BringToFront, SendToBack): Don't use window or handle
8680           unless it's created
8682 2006-03-14  Peter Dennis Bartok  <pbartok@novell.com>
8684         * Control.cs (PerformLayout): We don't need to consider visiblity
8685           for anchoring, only for docking. This fixes 'whacky' alignment
8686           in listbox and other controls that use implicit scrollbars after
8687           the previous PerformLayout patch
8688         * ListBox.cs: Switched to use implicit scrollbars
8689           
8690 2006-03-14  Mike Kestner  <mkestner@novell.com>
8692         * ToolBar.cs: 
8693         * VScrollBar.cs:
8694         - chain up the "new event" overrides to base and use
8695         OnEvent to raise them.  Part of fix for bug #76509.
8697 2006-03-14  Alexander Olk  <alex.olk@googlemail.com>
8699         * FileDialog.cs: Do not select an item in the parent directory
8700           on backspace
8702 2006-03-14  Peter Dennis Bartok  <pbartok@novell.com> 
8704         * Control.cs (PerformLayout): It would seem that we considered
8705           invisible windows for our layout. Not quite the right thing
8706           to do. Now we don't any longer, thereby fixing bug #76889.
8708 2006-03-14  Peter Dennis Bartok  <pbartok@novell.com>
8710         * Control.cs (CanFocus): I goofed. A control can have focus 
8711           even though it's not selectable. Made it match MS docs.
8713 2006-03-13  Peter Dennis Bartok  <pbartok@novell.com>
8715         * ControlPaint.cs (DrawBorder3D): DrawBorder3D does not fill the
8716           center by default (fixes #76895)
8717         * ThemeWin32Classic.cs, ThemeNice.cs, ThemeClearlooks.cs: Replaced 
8718           all uses of Border3DSides.All with the explicit ORd together
8719           Left|Right|Top|Bottom because I assume that nobody was aware 
8720           that All also implies a center fill. Most places I checked had
8721           a fill right above.
8722         * ProgressBarStyle.cs: Added
8724 2006-03-13  Mike Kestner  <mkestner@novell.com>
8726         * ListView.cs: fix breakage in drag shadow header positioning 
8727         from Peter's csc compilation fix.
8729 2006-03-13  Mike Kestner  <mkestner@novell.com>
8731         * ListView.cs: fix NRE produced by backspacing twice in a focused
8732         FileDialog.
8734 2006-03-13  Mike Kestner  <mkestner@novell.com>
8736         * ListView.cs: proxy Key(Down|Up) from ItemControl to ListView.
8738 2006-03-13  Peter Dennis Bartok  <pbartok@novell.com>
8740         * Hwnd.cs: Added fixed_size field to track windows whose size cannot
8741           be changed
8742         * XplatUIX11.cs: Now setting fixed_size on hwnd and if set, re-setting
8743           the allowed size before making programmatic size changes
8745 2006-03-13  Peter Dennis Bartok  <pbartok@novell.com> 
8747         * XplatUIX11.cs: Don't call XSetWMNormalHints if no flags are 
8748           set, metacity is broken and will still use the emty sizes in 
8749           the struct. (Fix for #77089)
8751 2006-03-13  Peter Dennis Bartok  <pbartok@novell.com>
8753         * XplatUIStructs.cs: Split WindowStyles into WindowStyles and 
8754           WindowExStyles and marked both enums as Flags
8755         * Form.cs, ComboBox.cs, ToolTip.cs, Control.cs, PropertyGridView.cs,
8756           NotifyIcon.cs, MenuAPI.cs, XplatUIOSX.cs, MonthCalendar.cs: Updated
8757           to match WindowStyles split
8758         * XplatUIX11.cs:
8759           - SetWMStyles: Added cehck to not apply WM attributes to Child windows
8760           - Updated to match WindowStyles split
8761         * XplatUIWin32.cs:
8762           - Fixed FosterParent creation, was using ExStyle on the Style field
8763             (This should help with Popup focus issues)
8764           - Updated to match WindowStyles split
8766 2006-03-13  Jackson Harper  <jackson@ximian.com>
8768         * MdiWindowManager.cs: Use the system menu height. Fixes some
8769         strange sizing issues.
8771 2006-03-12  Peter Dennis Bartok  <pbartok@novell.com>
8773         * RichTextBox.cs: Need to scroll to caret after text is inserted (#77672)
8774         * TextBoxBase.cs:
8775           - Scroll to caret after inserting text (#77672)
8776           - Make scroll range one pixel higher, fixes off-by-one error (and
8777             makes underlines visible on the last line)
8779 2006-03-12  Peter Dennis Bartok  <pbartok@novell.com> 
8781         * XplatUIX11.cs: Added call to new Keyboard.ResetKeyState to prevent
8782           the keyboard state from being stuck with keys in 'pressed' state when
8783           focus is switched away via keyboard
8784         * X11Keyboard.cs: Added new ResetKeyState method to allow drivers to
8785           reset the keyboard if no X11 KeyUp events are expected to come
8786         * X11Structs.cs: Switched type of Visible to bool to match driver
8788 2006-03-12  Peter Dennis Bartok  <pbartok@novell.com>
8790         * TextControl.cs:
8791           - Switched caret to be just 1 pixel wide, matches MS and looks less
8792             clunky
8793           - Moved caret display 1 pixel down from the top of the control
8794             to improve view
8795           - InsertCharAtCharet: Update the selection start if moving the caret
8796             (fixes bug #77696; based on patch suggested by kazuki@panicode.com)
8797           - No longer always creating the caret when the caret methods are
8798             called. Only the actual ShowCaret/HideCaret will do that now
8799           - Only setting caret visible if the owner control has focus
8800           - UpdateView: Added invalidation-shortcut logic for center and right 
8801             aligned text. Previously we'd update all according to the left
8802             logic which caused drawing errors. Also fixed height of invalidated
8803             areas, now properly invalidating the whole area (was off-by-one)
8804           - owner_HandleCreated: Always generate the document when the
8805             handle is created; this ensures that 
8806         * TextBoxBase.cs:
8807           - Fixed situation where caret would disappear under the right
8808             window border, also improved scrolling behaviour on left-
8809             aligned textboxes
8810           - Fixed right-aligned textboxes to have a border to the
8811             right instead of the caret being under the right border
8812         * XplatUIX11.cs:
8813           - Switched from 'nested' to simple visible/not visible tracking 
8814             for caret (part of fix for #77671)
8815           - No longer passing through translated FocusIn/FocusOut messages
8816             since we were notifying too often and the wrong windows. Instead
8817             we just notify our focussed window of receiving or loosing focus
8818         * XplatUIWin32.cs: Switched from 'nested' show/hide 
8819           counting for caret to simple visible yes/no behaviour (part of 
8820           fix for #77671)
8822 2006-03-11  Alexander Olk  <alex.olk@googlemail.com>
8824         * Mime.cs: Remove debug code...
8826 2006-03-11  Alexander Olk  <alex.olk@googlemail.com>
8828         * MimeGenerated.cs: Removed
8829         * Mime.cs: Mime now reads the mime data (magic, globs, aliases
8830           and subclasses) from /usr/(local/)share/mime and
8831           $HOME/.local/share/mime.
8833 2006-03-10  Jackson Harper  <jackson@ximian.com>
8835         * MdiWindowManager.cs: Recalc the NC area when a window is
8836         maximized/restored so that the menu area is drawn on forms that
8837         don't have a menu.
8839 2006-03-10  Peter Dennis Bartok  <pbartok@novell.com>
8841         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs, XplatUIWin32.cs,
8842           XplatUIX11.cs: Added RequestNCRecalc method to driver to allow
8843           us to force a WM_NCCALCRESIZE message being sent. This is needed
8844           for MDI maximizing.
8846 2006-03-10  Jackson Harper  <jackson@ximian.com>
8848         * Form.cs: We need to use the ActiveMenu when calculating menu
8849         height.
8850         - Fix nullref when the window manager hasn't been created yet.
8851         * Control.cs: Fix nullref when we try to bring a control to the
8852         front that has no parent.
8853         * MdiWindowManager.cs: Use the MaximizedMenu for calculating
8854         height.
8855         - Add a dummy item to the maximized menu so it always has the
8856         correct height. Otherwise when there are no menus we don't get our
8857         icon and buttons.
8858         
8860 2006-03-10  Jackson Harper  <jackson@ximian.com>
8862         * MenuAPI.cs: Make this available elsewhere. I need it in some MDI
8863         stuff.
8864         * Form.cs: Make the window_state internal so the window managers
8865         can track it.
8866         - When an MDI child is maximized let its window manager create the
8867         main menu (so it can add its icon).
8868         - Notify the window managers of state changes
8869         - Let the window manager paint its buttons and handle button
8870         clicks on the menu when it is maximized.
8871         * InternalWindowManager.cs: Move the prev_bounds into the mdi
8872         window manager, since tool windows don't use it, only mdi windows.
8873         - Tell the main form that we don't want it to handle NCPAINT
8874         itself to avoid extra painting.
8875         - Handle clicks on a maximized windows menu.
8876         - Handle window state changes
8877         - Handle minimize/maximize clicks correctly by setting the window state.
8878         * MdiWindowManager.cs: Add an icon menu that (the menu you get
8879         when clicking on the forms icon).
8880         - New method to create a forms maximized menu. This is its normal
8881         menu + an icon.
8882         - Handle window state changes.
8883         - Handle sizing of maximized windows.  Maximized windows are just
8884         drawn bigger then the parent visible area. All controls are still
8885         there, they are just outside the visible area (this matches windows).
8886         * MdiClient.cs: No scrollbars when a child window is maximized.
8887         - Let the children windows figure out how big they should be when
8888         sizing maximized windows.
8889         - Implement a version of ArrangeIconicWindows somewhat similar to
8890         Windows version.  There are some little differences, but I don't
8891         think any app will rely on the layout of minimized mdi windows.
8893 2006-03-10  Peter Dennis Bartok  <pbartok@novell.com>
8895         * Padding.cs: Several fixes to allow compiling with csc 2.0
8897 2006-03-09  Jackson Harper  <jackson@ximian.com>
8899         * Menu.cs:
8900         * MenuItem.cs: Cheap hack so we can add items to the list without
8901         the events being raised.  This allows adding mdi items during
8902         drawing. TODO: Should probably find a better time to add the items.
8904 2006-03-10  Peter Dennis Bartok  <pbartok@novell.com>
8906         * ThemeWin32Classic.cs:
8907           - CheckBox_DrawText: Added logic to not wrap if not enough space
8908             is available (Fix for bug #77727)
8909           - RadioButton_DrawText: Added logic not to wrap if not enough
8910             space is available (Fix for bug #77727). Also removed some
8911             duplicate code, DrawString always drawing the regular text
8912             before hitting the if statement.
8914 2006-03-10  Peter Dennis Bartok  <pbartok@novell.com> 
8916         * XplatUIX11.cs: Handle an unmapped window state in SetWindowState
8918 2006-03-10  Peter Dennis Bartok  <pbartok@novell.com>
8920         * PictureBox.cs: Implemented ISupportInitialize interface (fixes #77726)
8921         * ContainerControl.cs: Partial implementation of some 2.0 scaling
8922           methods. Moved the new 2.0 properties into alphabetical order with
8923           other properties and added MonoTODO tags
8925 2006-03-09  Peter Dennis Bartok  <pbartok@novell.com> 
8927         * AutoScaleMode.cs: Added. Fix build.
8929 2006-03-09  Peter Dennis Bartok  <pbartok@novell.com>
8931         * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs, XplatUIWin32.cs, 
8932           XplatUIOSX.cs: Removed HWnd argument from CalcuateClientRect, not used
8933           and was requiring premature handle creation for calls from above
8934         * Form.cs, Control.cs: Removed handle arguments from calls to
8935           CalculateClientRect()
8937 2006-03-09  Peter Dennis Bartok  <pbartok@novell.com> 
8939         * ListView.cs (HeaderMouseMove): Fix csc compilation. 
8940           drag_column.column_rect is MarshalByRef and can't be used that way
8942 2006-03-09  Peter Dennis Bartok  <pbartok@novell.com>
8944         * AxHost.cs: Added deserialization constructor for 
8945           AxHost+State (fixes 77743)
8947 2006-03-09  Mike Kestner  <mkestner@novell.com>
8949         * ListView.cs: 
8950         - Added column drag reordering for details view.
8951         - fixed behavior when mouse is dragged off column and
8952         AllowColumnReorder is false.
8953         * ColumnHeader.cs: clone the format too in Clone.
8954         * Theme.cs: add DrawListViewHeaderDragDetails method.
8955         * ThemeWin32Classic.cs:
8956         - impl new method for drawing drag column shadows and targets.
8957         - support column offset for details mode in DrawListViewItem.
8959 2006-03-09  Peter Dennis Bartok  <pbartok@novell.com>
8961         * TextControl.cs: Reset the char_count when the document is cleared
8962           (Fixes bug reported on mono-winforms mailing list)
8964 2006-03-09  Peter Dennis Bartok  <pbartok@novell.com> 
8966         * TextBoxBase.cs: Honor the Handled state of KeyPress events. Instead
8967           of calling base we simply process the key ourselves, since both
8968           DefWindowProc and the handled method would set m.Result. 
8969           (Fixes #77732)
8971 2006-03-09  Peter Dennis Bartok  <pbartok@novell.com>
8973         * Form.cs(ScaleCore): No longer calling base.ScaleCore since that
8974           method also moves the window; instead implemented a copy of
8975           Control.ScaleCore (Part of fix for #77456)
8976         * TextBoxBase.cs: 
8977           - Created new CreateGraphicsInternal method to allow providing
8978             a graphics context when no handle is created without triggering
8979             handle creation. (Part of fix for #77456)
8980           - Replaced use of Control.CreateGraphics with CreateGraphicsInternal
8981         * TextControl.cs: 
8982           - Switched Constructor to require TextBoxBase instead of Control (to
8983             allow uncast access to CreateGraphicsInternal)
8984           - Safeguarded use of owner.Handle property. No longer accessing it
8985             unless the handle is already created.
8986           - Replaced use of Control.CreateGraphics with CreateGraphicsInternal
8987           - Now triggering a recalc when owning control becomes visible
8988         * TextBox.cs, RichTextBox.cs: Switched to use new internal 
8989           TextBoxBase.CreateGraphicsInternal() method to avoid triggering
8990           premature handle creation (Part of fix for #77456)
8991         * Control.cs:
8992           - We now only destroy our double-buffering buffers when the
8993             control is resized or disposed, but not when visibility
8994             changes. (The code even re-created them twice every time)
8995           - Now requiring a redraw of the buffer on visibility changes
8996             (fixes bug 77654 part 2)
8997           - Not passing OnParentVisibleChanged up unless the control
8998             is visible
8999           - CanFocus: Fixed to match MS documentation
9000           - Focus: Fixed to return actual focus state and to check if
9001             setting focus is legal before setting it
9003 2006-03-08  Peter Dennis Bartok  <pbartok@novell.com>
9005         * ThemeWin32Classic.cs: TabPages cannot have focus. Determine
9006           when to draw focus rectangle by looking at parent focus and
9007           selected state instead. This fixes TabPages on Linux sometimes
9008           having none or multiple focus rectangles.
9009         * XplatUIX11.cs (SetFocus): 
9010           - Don't set the focus if the same window already has focus
9011           - Use SendMessage instead of PostMessage (like it's Win32
9012             equivalent) and send the WM_SETFOCUS before the WM_KILLFOCUS
9013             to match MS behaviour
9014         * TabControl.cs(SelectedIndex): Don't set Focus on TabPage, TabPages
9015           are not selectable.
9017 2006-03-07  Jackson Harper  <jackson@ximian.com>
9019         * PictureBox.cs: Revert line I accidently committed last week.
9021 2006-03-07  Peter Dennis Bartok  <pbartok@novell.com>
9023         * Control.cs: 
9024           - Added new IsRecreating and ParentIsRecreating properties to
9025             allow testing if RecreateHandle has been called on ourselves
9026             or one of our parents
9027           - WndProc(WM_DESTROY): If our control handle is being recreated
9028             we immediately need to create the handle when receiving the
9029             destroy, that way our child windows find a valid parent handle
9030             when they themselves are being recreated upon WM_DESTROY receipt
9031             (fix for bug #77654 part 1)
9032         * XplatUIX11.cs:
9033           - DestroyWindow: WM_DESTROY must be sent to our own window before
9034             notifying any child windows. MS documents that child windows
9035             are still valid when WM_DESTROY is received. (Control now relies on
9036             this behaviour)
9037           - Added some fine-grain debug options
9039 2006-03-06  Jackson Harper  <jackson@ximian.com>
9041         * MdiClient.cs: Redid scrolling logic a bit to create a virtual
9042         box and base calculations off this.
9043         * MdiChildContext.cs:
9044         * MdiWindowManager.cs: Don't need to ensure scrollbars here
9045         anymore.
9046         
9047 2006-03-06  Peter Dennis Bartok  <pbartok@novell.com>
9049         * Splitter.cs: In situations where the affected control is added
9050           to the parent's control list after the splitter, we would not
9051           populate affected. Now we try populating it on mousedown, if
9052           it's not already set, and force it to be re-set whenever our
9053           parent changes.
9055 2006-03-03  Matt Hargett  <matt@use.net>
9057         * Control.cs: implement Control.Padding
9058         * Padding.cs: -Padding.All returns -1 when constructing with the
9059         implicit default ctor
9060         -Padding.ToString() matches MS.NET
9061         * ContainerControl.cs: implement
9062         ContainerControl.AutoScaleDimensions
9063         * ListControl.cs: implement ListControl.FormattingEnabled
9064         * TextBox.cs: Implemented TextBox.UseSystemPasswordChar.
9065         * ButtonBase.cs:
9066         * TabPage.cs: Implement UseVisualStyleBackColor.
9067         * PictureBox.cs: Implement PictureBox.InitialImage.
9069 2006-03-03  Mike Kestner  <mkestner@novell.com>
9071         * ListView.cs: Refactor into HeaderControl and ItemControl. Fix new
9072         event declarations to proxy to base event.
9073         * ListViewItem.cs: update to use ItemControl.
9074         * Theme.cs: make DrawListViewHeader. s/DrawListView/DrawListViewItems.
9075         * ThemeWin32Classic.cs: update to new ListView theme API and fix
9076         column header label rendering for 0 width columns.
9078 2006-03-03  Peter Dennis Bartok  <pbartok@novell.com>
9080         * Control.cs (ControlCollection.SetChildIndex): Avoid using a call
9081           that causes the control to be created. Fixes #77476.
9083 2006-03-02  Jackson Harper  <jackson@ximian.com>
9085         * Hwnd.cs: Clear the nc pending when clearing the NC area, not the
9086         expose_pending.
9088 2006-03-02  Peter Dennis Bartok  <pbartok@novell.com>
9090         * Control.cs: Implemented 2.0 feature where OnClick has MouseEventArgs
9091           passed in for the EventArgs (fixes #77690)
9093 2006-03-01  Jackson Harper  <jackson@ximian.com>
9095         * ScrollBar.cs: Refresh afterbeing resized.
9097 2006-02-28  Mike Kestner  <mkestner@novell.com>
9099         * MenuAPI.cs: Call PerformPopup internal method to emit Popup.
9100         Clean up a tracker compile warning.
9101         * MenuItem.cs: add internal PerformPopup method.
9102         [Fixes #77457]
9104 2006-02-28  Peter Dennis Bartok  <pbartok@novell.com> 
9106         * TextBoxBase.cs (set_Text): Recalculate the document (causing an
9107           implicit expose) when the text is set to null
9109 2006-02-28  Peter Dennis Bartok  <pbartok@novell.com>
9111         * RichTextBox.cs (FlushText): When newline is true, we always
9112           need to split the line, even if no text is on it and we may
9113           never eat newlines. (Fixes #77669)
9115 2006-02-28  Mike Kestner  <mkestner@novell.com>
9117         * ListView.cs: Add UpdateSelection internal method. Remove SelectItem 
9118         and set Selected instead.
9119         * ListViewItem.cs: Call owner.UpdateSelection to manipulate the 
9120         collections.
9122 2006-02-28  Peter Dennis Bartok  <pbartok@novell.com> 
9124         * ComboBox.cs: Allow setting SelectedIndex to -1. Fixes #77665
9126 2006-02-28  Alexander Olk  <alex.olk@googlemail.com>
9128         * FontDialog.cs:
9129           - Got rid of the panel. All controls are now directly added to
9130             the dialog form
9131           - It is now possible to set a font with the Font property
9132           - MinSize and MaxSize property do now what they should
9133           - ShowApply, ShowHelp, ShowColor, ShowEffects likewise
9134           - Searching and selecting a font with the font textbox works now,
9135             the same applies to the style and size textbox
9136           - Draw the correct 3D border in the example panel
9137           - Fixed a little mem leak (unused fonts didn't get disposed)
9138           - Many other internal updates/rewrites...
9139           - Fix typo
9141 2006-02-27  Peter Dennis Bartok  <pbartok@novell.com> 
9143         * TextControl.cs: 
9144           - InsertRTFFromStream: Added 'number of characters inserted' argument
9145           - set_SelectedRTF: Now using the number of characters to calculate
9146             the new location for the selection and cursor (x/y cannot be used
9147             due to potentially already wrapped text)
9149 2006-02-27  Peter Dennis Bartok  <pbartok@novell.com>
9151         * TextControl.cs: Added property and implemented means to allow 
9152           disabling recalculation of a document (can be used to speed up
9153           multiple inserts and is needed to make RTF inserts predictable, see
9154           bug #77659)
9155         * RichTextBox.cs: Using the new NoRecalc property of Document to
9156           keep x/y insert locations predictable. Also makes it faster inserting
9157           large chunks of RTF
9159 2006-02-27  Peter Dennis Bartok  <pbartok@novell.com> 
9161         * Control.cs: Separated special WM_SYSKEYUP keyboard handling. That way
9162           it's easier for a child control to handle the other messages without
9163           having to duplicate the special functionality
9164         * TextBoxBase.cs
9165           - WndProc: Removed calling base handler for WM_KEYDOWN and added 
9166             code to handle processing the key ourselves, in order to get 
9167             access to the result of KeyEventArgs.Handled. We now only call 
9168             ProcessKey if they key hasn't been handled already. Fixes #77526.
9169           - set_Text: If null or empty string is given, just clear the 
9170             document. Fixes part of #77526
9172 2006-02-27  Jackson Harper  <jackson@ximian.com>
9174         * SizeGrip.cs: Paint the background color before painting the grip
9175         so things look right.
9176         * MdiClient.cs: Add the sizegrip when both scrollbars are used.
9178 2006-02-27  Mike Kestner  <mkestner@novell.com>
9180         * ListView.cs:
9181           - Restructure layout and invalidation model to remove a ton of
9182           flicker from the control and speed up performance in general.
9183           - Add manual column resize, flickers like crazy, but I already have
9184           some ideas on how I'll fix that. (#76822)
9185           - Merge the three Icon-based views into a single layout method.
9186           - Move item selection interaction logic from the item since 
9187           interaction with the collections is more appropriate to the view.
9188           - Deselection on non-item clicks.
9189         * ListViewItem.cs:
9190           - Encapsulate most of the layout. Add some internal props to trigger
9191           layout.  Move to a model where Items invalidate themselves instead
9192           of just invalidating the whole control every time something changes.
9193           - Invalidate on Text/Caption changes.
9194           - switch to an offset based layout model to avoid having to absolute
9195           position every element on item moves.
9196           - correct checkbox layout to conform to MS layout.
9197         * ThemeWin32Classic.cs:
9198           - refactor some column header drawing code.
9199           - fix string justification for column headers (#76821)
9200           - make SmallIcon labels top justified for compat with MS impl.
9201         * ThemeClearlooks.cs:
9202           - adjust to new ListViewItem internal checkbox bounds api.
9204 2006-02-27  Jackson Harper  <jackson@ximian.com>
9206         * Control.cs:  Change where implicit controls fall in the zorder.
9207         They are now on top of all children.
9208         - Synced AddImplicit code with Add
9209         - Removed unused enumerator.
9210         * SizeGrip.cs: Remove the TODO as its been TODONE.
9212 2006-02-26  Peter Dennis Bartok  <pbartok@novell.com> 
9214         * TextControl.cs(Insert): Combine the last lines unless the insertion
9215           string ends with \n\n, otherwise we leave one line too many (Fixes
9216           something I noticed with the testapp for #77526; the bug itself was
9217           already fixed in the previous checkin)
9219 2006-02-26  Peter Dennis Bartok  <pbartok@novell.com>
9221         * RichTextBox.cs:
9222           - SelectionColor and SelectionFont methods no longer set absolute
9223             styles. Instead, the keep font or color respectively (This 
9224             resolves a long-standing FIXME in the code)
9225           - When flushing RTF text, the insert code now considers text trailing
9226             behind the insertion point (Fixes the bug where when replacing
9227             the selected text via SelectedRTF the remainder of the line behind 
9228             the selection would stay on the first insertion line)
9229         * TextBoxBase.cs:
9230           - AppendText now updates the selection points after inserting text
9231           - AppendText now ensures that the last tag (sometimes 0-length) of
9232             the document is used for the style information (Fixes part of 
9233             bug #77220)
9234         * TextControl.cs:
9235           - Created new FontDefiniton class to allow describing partial style
9236             changes
9237           - StreamLine() now takes a lines argument, to allow it to decide
9238             whether an encountered zero-length tag is the last in the document
9239             (which must be kept to not loose the font/color contained in it,
9240             for later appends)
9241           - Created Combine() and Split() methods for Marker structs, to 
9242             support marker updates due to reformatted documents (soft line
9243             wraps)
9244           - Implemented Document.CaretTag setter
9245           - Fixed MoveCaret(CtrlEnd) handling, now moves to the last character
9246             of the last line (Not the cause, but also exposed by bug #77220)
9247           - Added LineTag argument to InsertString method, to allow callers
9248             to force a certain tag to be used (required to force use of the
9249             trailing zero-length tag of a document)
9250           - Now updating markers in Combine(), to avoid stale tag markers
9251           - Added some method descriptions to aid maintenance
9252           - Implemented new FormatText concept, allowing additive/subtractive
9253             formatting by only specifying the components that are to be 
9254             changed. This was needed for resolving the RTB.SelectedColor/
9255             RTB.SelectedFont fixmes
9256           - Added Break() support method to allow breaking up linetags (used
9257             for partial formatting)
9258           - Added GenerateTextFormat() method. It is used for partial 
9259             formatting and allows to generate a full font/color from given
9260             attributes and an existing tag.
9262 2006-02-26  Jackson Harper  <jackson@ximian.com>
9264         * XplatUIX11.cs:  Use the correct caption height.
9265         - Translate hittest coordinates to screen coords to match MS.
9266         * XplatUIWin32.cs: When we create MDI windows we need to reset
9267         some of the style flags, so we get a nice blank window, and can
9268         draw all the decorations ourselves.
9269         - Set a clipping rectangle on the non client paint event, the
9270         window manager drawing code needs one.
9271         * Form.cs: The window manager needs to know when the window state
9272         has been updated.
9273         * Hwnd.cs: The window manager stuff now does a proper NCCALC so we
9274         don't need to factor in border and title sizes in these
9275         methods. TODO: Remove the args and fix the call points.
9276         * InternalWindowManager.cs: Handle NCHITTEST and NCCALCAREA
9277         properly.
9278         - Let the driver set the cursors.
9279         - Improve active window handling
9280         - Correct sizes for title bars and buttons.
9281         - Match MS drawing better
9282         * MdiWindowManager.cs: We don't need to handle border style
9283         updates specially anymore.
9284         - Check for scrollbars when windows are done moving
9285         - Handle Active properly.
9286         * MimeIcon.cs: Don't crash when we can't load the GNOME stuff
9287         correctly. I am spewing the exception though, so we don't hide the
9288         bugs.
9289         
9290 2006-02-26  Pedro Martinez Julia  <pedromj@gmail.com>
9292         * DataGridViewRowPostPaintEventArgs.cs,
9293           DataGridViewCellPaintingEventArgs.cs,
9294           DataGridViewRowCollection.cs,
9295           DataGridViewRowPrePaintEventArgs.cs,
9296           DataGridViewCell.cs: Clear a few warnings and implement a few
9297           exceptions that should be thrown.
9299 2006-02-22  Peter Dennis Bartok  <pbartok@novell.com>
9301         * ScrollBar.cs (ctor): Explicitly set a cursor to avoid
9302           'inheriting' our parent's (non-default) cursor. (Part of
9303            the fix for #77479)
9305 2006-02-22  Peter Dennis Bartok  <pbartok@novell.com> 
9307         * XplatUIX11.cs: Fixed cast to make csc happy
9309 2006-02-22  Peter Dennis Bartok  <pbartok@novell.com>
9311         * Control.cs (WndProc): Only handle WM_SETCURSOR messages if
9312           it's for the client area (part of fix for #77479 and needed
9313           for MDI window cursor handling)
9314         * XplatUIX11.cs
9315           - DefWindowProc: Now handles the WM_SETCURSOR messages, setting
9316             the appropriate default cursors and also passing the message
9317             up the parent chain 
9318           - GetMessage: Now generating WM_NCHITTEST and WM_SETCURSOR even
9319             for non-client areas
9321 2006-02-15  Jackson Harper  <jackson@ximian.com>
9323         * XplatUIWin32.cs: Since we fake MDI dont tell Windows that this
9324         is a real MDI window
9326 2006-02-14  Alexander Olk  <alex.olk@googlemail.com>
9328         * X11DesktopColors.cs: Instead of checking the desktop session
9329           string for "KDE" check if it starts with "KDE"
9331 2006-02-10  Jackson Harper  <jackson@ximian.com>
9333         * XplatUIX11.cs: These should be unsigned (fixes crash on 32 bit
9334         systems).
9336 2006-02-10  Alexander Olk  <alex.olk@googlemail.com>
9338         * FileDialog.cs: Added Refresh to RunDialog to fix some drawing
9339           errors
9340         * ColorDialog.cs:
9341           - Got rid of the panel. All controls are now directly added to
9342             the dialog form
9343           - Changed to mono coding style
9345 2006-02-10  Jackson Harper  <jackson@ximian.com>
9347         * InternalWindowManager.cs: We don't need the set visibility to
9348         false hack anymore now that peter has written beautiful shutdown
9349         code.
9351 2006-02-10  Peter Dennis Bartok  <pbartok@novell.com>
9353         * XplatUIX11.cs: Ignore DestroyNotify messages for windows that
9354           where already explicitly destroyed
9356 2006-02-10  Jackson Harper  <jackson@ximian.com>
9358         * MdiClient.cs: Handle the case where windows are too high or to
9359         the left and we need scrollbars.
9361 2006-02-10  Alexander Olk  <alex.olk@googlemail.com>
9363         * MimeIcon.cs: Added some icons
9364         * FileDialog.cs:
9365           - Fixed bug #77477
9366           - Got rid of the panel. All controls are now directly added to
9367             the dialog form
9368           - Changed to mono coding style
9369           - On Linux "My Computer" and "My Network" will now show some
9370             more usefull information. A new class, MasterMount, gathers
9371             this information from /proc/mount. Updated MWFFileView to make
9372             use of this information
9373           - Fixed a bug that caused FileDialog to crash when
9374             ".recently_used" file had a zero size
9375           - FilterIndex does now what it should
9376           - Some Refactoring
9377         * OpenFileDialog.cs, SaveFileDialog.cs: Updated to reflect latest
9378             FileDialog changes
9380 2006-02-09  Jackson Harper  <jackson@ximian.com>
9382         * ComboBox.cs: Don't touch if null.
9384 2006-02-09  Peter Dennis Bartok  <pbartok@novell.com>
9386         * Cursor.cs: 64bit safeness fix
9387         * XplatUIX11.cs: Removed several unneeded and one moronic cast.
9389 2006-02-09  Jackson Harper  <jackson@ximian.com>
9391         * Form.cs: If a form is made into an MDI form update the styles so
9392         all the props can get set correctly.
9393         - Kill the mdi_container when we dont need it anymore.
9394         * InternalWindowManager.cs: Add missing NOT
9396 2006-02-08  Jackson Harper  <jackson@ximian.com>
9398         * InternalWindowManager.cs: Respek clipping when drawing MDi
9399         decorations.
9401 2006-02-08  Jackson Harper  <jackson@ximian.com>
9403         * Hwnd.cs: Add bits to track non client expose events.
9404         * XplatUIX11.cs: Track non client expose events on the hwnd. This
9405         gives us a proper invalid rect and will allow for some nice
9406         optimizations with NC client drawing
9407         - MDI windows are children windows, so move their style handling
9408         into the child window block.
9409         * InternalWindowManager.cs: Remove a state reset that was
9410         getting invoked at the wrong time. Fixes managed windows getting
9411         into a 'stuck' captured state.
9413 2006-02-07  Peter Dennis Bartok  <pbartok@novell.com>
9415         * TextControl.cs (Document.ctor): Now initializing 
9416           selection_anchor. Fixes #77493
9418 2006-02-07  Jackson Harper  <jackson@ximian.com>
9420         * TrackBar.cs: The increment/decrements were backwards.
9422 2006-02-07  Mike Kestner  <mkestner@novell.com>
9424         * Theme*.cs : remove ThemeEngine.Current usage as it just points back
9425         to the instance itself.
9427 2006-02-07  Peter Dennis Bartok  <pbartok@novell.com>
9429         * X11DesktopColors.cs, ThemeGtk.cs: The GObject structure is based
9430           on ulongs and pointers, the size differs between 32bit and 64bit
9431           systems. 
9433 2006-02-07  Mike Kestner  <mkestner@novell.com>
9435         * XplatUIX11.cs : force the WorkingArea away from XGetWindowProperty
9436         for 64 bit platforms to work around a metacity bug. 
9438 2006-02-07  Jackson Harper  <jackson@ximian.com>
9440         * TrackBar.cs: Process the input keys we need, and hookup to
9441         KeyDown instead of using WndProc, so we get key messages.
9443 2006-02-06  Peter Dennis Bartok  <pbartok@novell.com>
9445         * XplatUIX11.cs: Atoms are only 32bit on the wire, no matter what
9446           machine we're on. 
9447         * X11Dnd.cs(SetAllowDrop): Since atoms are always 32bit on the wire
9448           we need to translate the XdndVersion atoms array before sending it
9450 2006-02-06  Peter Dennis Bartok  <pbartok@novell.com> 
9452         * XplatUIX11.cs: 
9453           - The preceeding 64bit fixes had a bug: ChangeProperty expects the
9454             number of bits for the property, not the number of bytes. The
9455             change to provide IntPtr.Size broke 32bit. (64bit was also wrong
9456             but would not crash since it specified 8 bits instead of 4 bits)
9457           - More 64bit fixes: Switched all atoms from int to IntPtr (they are
9458             defined as XID -> long in the C headers)
9459           - Removed 'new IntPtr((int))' and '(IntPtr)' casts from all NetAtoms 
9460             references since those are now IntPtr to begin with
9461           - Switched all Atom.XXX 'int' casts to IntPtr casts
9462           - Fixed XGrabPointer DllImport signature to work for 64bit (cursor arg)
9463           - Fixed XInternAtom signature for 64bit, now returns an IntPtr
9464           - Added XChangeActivePointerGrab DllImport (for X11DnD)
9465         * X11Structs.cs:
9466           - Changed 'int' type for Atoms in XEvent structures to IntPtr
9467           - Changed atom in HoverStruct to be IntPtr
9468         * X11DnD.cs:
9469           - Removed local DllImports, switched code to use those from XplatUIX11
9470           - Removed/fixed casts related to the switch of Atom to be a IntPtr
9472 2006-02-06  Mike Kestner  <mkestner@novell.com>
9474         * XplatUIX11.cs : many more 64 bit pinvoke changes.  I've audited all the 
9475         method signatures in the import region.  There may still be some
9476         lingering struct marshaling issues, as I didn't drill down into those.
9477         Yet.
9479 2006-02-06  Jackson Harper  <jackson@ximian.com>
9481         * ComboBox.cs: Dont manually set the top_item, this is computed
9482         when the scrollbar position is set.
9484 2006-02-06  Mike Kestner  <mkestner@novell.com>
9486         * XplatUIX11.cs : 64 bit changes to XGetWindowProperty usage. Fixes
9487         startup crashes on amd64.  There's other fixes needed.  All pinvoke
9488         usage of Atom needs to be mapped to IntPtr for example.  And there are
9489         likely other int/long issues to be addressed.
9491 2006-02-04  Alexander Olk  <alex.olk@googlemail.com>
9493         * FileDialog.cs: One more...
9495 2006-02-03  Alexander Olk  <alex.olk@googlemail.com>
9497         * FileDialog.cs: Next try
9499 2006-02-03  Alexander Olk  <alex.olk@googlemail.com>
9501         * FileDialog.cs: First part of fix for #77464
9503 2006-02-03  Alexander Olk  <alex.olk@googlemail.com>
9505         * ButtonBase.cs, ContainerControl.cs, Forms.cs,
9506           ThemeWin32Classic.cs: Fix for #77458. Correct handling of
9507           AcceptButton border drawing.
9509 2006-02-03  Peter Dennis Bartok  <pbartok@novell.com> 
9511         * Form.cs: Moved positioning of form after auto scaling is applied,
9512           otherwise it would possibly use wrong form size.
9514 2006-02-03  Peter Dennis Bartok  <pbartok@novell.com>
9516         * Control.cs (RecreateHandle): No need to re-create any child
9517           controls, the child windows will get destroyed automatically by
9518           the windowing system or driver, and re-created when the handle
9519           is being accessed the first time. Fixes #77456
9520         * Form.cs: No longer setting the form to closing if the handle is 
9521           being recreated. This seems like the right thing to do, don't
9522           have a bug or testcase for this, though.
9524 2006-02-02  Peter Dennis Bartok  <pbartok@novell.com>
9526         * FileDialog.cs: Suspend/Resume layouting when changing sizes of
9527           controls to avoid unwanted side effects
9529 2006-02-02  Peter Dennis Bartok  <pbartok@novell.com> 
9531         * Control.cs: 
9532           - ScaleCore needs to scale the bounds, not the ClientSize of the 
9533             control. Fixes #77416.
9534           - DefaultSize is 0,0 for control
9535         * TextBoxBase.cs: 
9536           - DefaultSize is 100, 20
9537           - SetBoundsCore: Now enforcing the height, no matter if the provided
9538             height is more or less than the preferred one, as long as AutoSize
9539             is on
9540         * Form.cs: Apply documented fudge factor. Part of item 3 fix for #77416
9542 2006-02-02  Peter Dennis Bartok  <pbartok@novell.com>
9544         * Control.cs:
9545           - ResumeLayout: Fixed logic when to call PerformLayout, we may not
9546             call unless both performLayout is true *and* we have a pending
9547             layout change
9548           - ResumeLayout: MS does not completely nest Suspend and Resume,
9549             they bottom out at 0, fixed our code to match that.
9550           - UpdateBounds/SetBoundsCore: Moved calling of UpdateDistances() to
9551             SetBoundsCore, we were updating even when we shouldn't. This fixes
9552             swf-anchors mis-anchoring when resizing the app fast and lots.
9553           - UpdateDistances: Now only setting the left and top distance if 
9554             we have a parent and are not suspended, this is based on
9555             a suggestion by Don Edvaldson in bug #77355.
9556           - OnVisibleChanged: Fixed logic when to create the control. We may
9557             not create the control if we have no parent or if it's not visible;
9558             switched to using Visible property instead of is_visible field 
9559             since the property also considers parent states. This fixes a bug
9560             when starting Paint.Net
9562 2006-02-02  Jackson Harper  <jackson@ximian.com>
9564         * Form.cs: If the forms handle hasn't been created yet don't call
9565         into xplatui to make it top most, just set the topmost flag on the
9566         form in CreateParams
9567         * XplatUIX11.cs: Handle WS_EX_TOPMOST.
9569 2006-02-01  Jackson Harper  <jackson@ximian.com>
9571         * ScrollableControl.cs: Refactored the Recalculate method a
9572         little, this wasn't handling all the variants of bottom and right
9573         bars needed to be added and added/removed based on their
9574         counterparts being added/removed (which changes the drawable
9575         size). Also we special case client widths and heights of 0 and
9576         don't add the scrollbar for those.
9578 2006-02-01  Peter Dennis Bartok  <pbartok@novell.com>
9580         * XplatUIX11.cs: 
9581           - Added method to get AbsoluteGeometry(); currently unused, but might
9582             be used in the future, if we try again to figure out toplevel
9583             coordinates with some more crappy window managers
9584           - Added FrameExtents() method to retrieve the WM set decoration size
9585           - Tried to fix up AddConfigureNotify and handling of ReparentNotify 
9586             to deal with at least KDE, FVWM and metacity (Fixes #77092)
9587         * Hwnd.cs: 
9588           - Added whacky_wm tracking var for metacity
9589           - Added logic to have default menu height if the actual menu height
9590             has not yet been calculated (part of fix for #77426)
9591         * Form.cs: Keep track whether client size has been set and re-set 
9592           it if a menu is added/removed afterwards (Fixes #77426)
9594 2006-01-31  Jackson Harper  <jackson@ximian.com>
9596         * Control.cs: When a new Site is set on the component attempt to
9597         pull the AmbientProperties from it.
9599 2006-01-31  Peter Dennis Bartok  <pbartok@novell.com>
9601         * ThemeWin32Classic.cs: Menu background is drawn in ColorMenu, not
9602           in the background of the owning form. Fixes #77332
9604 2006-01-31  Alexander Olk  <alex.olk@googlemail.com>
9606         * MimeIcon.cs: Fix for #77409
9608 2006-01-31  Alexander Olk  <alex.olk@googlemail.com>
9610         * XplatUIX11GTK.cs: Initial import
9612 2006-01-31  Jordi Mas i Hernandez <jordimash@gmail.com>
9614         * FixedSizeTextBox: fixes class signature
9616 2006-01-30  Jackson Harper  <jackson@ximian.com>
9618         * FixedSizeTextBox.cs: New internal class that represents a
9619         textBox that will not be scaled.
9620         * TreeView.cs:
9621         * ComboBox.cs:
9622         * UpDownBase.cs: Use the new FixedSizeTextBox instead of a
9623         standard TextBox.
9624                 
9625 2006-01-30  Peter Dennis Bartok  <pbartok@novell.com> 
9627         * XplatUIX11.cs: Retrieve default screen number instead of
9628           assuming 0. Attempted fix for #77318
9630 2006-01-30  Peter Dennis Bartok  <pbartok@novell.com>
9632         * XplatUIWin32.cs: 
9633           - GetWindowPos: When a window is parented by FosterParent, use 
9634             the desktop instead of FosterParent as the base to get coordinates
9635           - CreateWindow: Don't make FosterParent the parent window for Popups
9636             if we don't want a taskbar entry, Popups automatically don't get one
9637         * Hwnd.cs: Need to call remove to actually remove the key from the
9638           hash table
9640 2006-01-30  Mike Kestner  <mkestner@novell.com>
9642         * MenuAPI.cs: adjust MainMenu item popup location to y=0.
9644 2006-01-30  Jackson Harper  <jackson@ximian.com>
9646         * TreeView.cs:
9647         * TreeNode.cs: Raise events no matter how the treenode is
9648         checked. Patch by Don Edvalson.
9650 2006-01-30  Jackson Harper  <jackson@ximian.com>
9652         * TreeNode.cs: Signature fix.
9654 2006-01-29  Alexander Olk  <alex.olk@googlemail.com>
9656         * ThemeClearlooks.cs: Fixed a crash in ProgressBar drawing.
9658 2006-01-20  Mike Kestner  <mkestner@novell.com>
9660         * Form.cs: Add ActiveTracker property to do Captures and perform mouse
9661         event forwarding when menus are active.
9662         * MenuAPI.cs: kill the GrabControl hack.  Use Form.ActiveTracker.
9663         Most of the patch is pdb's with a little rework.
9665 2006-01-26  Peter Dennis Bartok  <pbartok@novell.com> 
9667         * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs, XplatUIOSX.cs: 
9668           Removed GetMenuDC and ReleaseMenuDC methods; replaced
9669           by PaintEventStart(handle, false) and PaintEventEnd(handle, false)
9670         * Form.cs: Changed WM_NCPAINT handler to use PaintEventStart and End
9671         * InternalWindowManager.cs: Added use of PaintEventStart/End to
9672           handling of WM_NCPAINT message, now passing the PaintEventArgs to
9673           the PaintWindowDecorations method
9674         * MainMenu.cs: Switched logic from GetMenuDC to PaintEventStart
9675         * MdiChildContext.cs: Switched logic from GetMenuDC to PaintEventStart
9676         * MenuAPI.cs: Made tracker window invisible
9677         * XplatUIWin32.cs:
9678           - Removed GetMenuDC and ReleaseMenuDC methods
9679           - Implemented the client=false path for PaintEventStart and
9680             PaintEventEnd
9682 2006-01-26  Peter Dennis Bartok  <pbartok@novell.com>
9684         * XplatUIWin32.cs(SetBorderStyle): Fixed3D needs a border
9685         * XplatUIX11.cs(DeriveWindowStyles): Updated to match fixed Form
9686           styles
9687         * Form.cs: 
9688           - MaximizeBox, MinimizeBox: Recreate the handle when setting
9689             the style
9690           - CreateParams: Reworked the styles to match MS look'n'feel,
9691             removed automatic setting of MinimizeBox, MaximizeBox, etc. via
9692             the WS_OVERLAPPEDWINDOW style. This fixes #76823.
9694 2006-01-26  Peter Dennis Bartok  <pbartok@novell.com> 
9696         * XplatUIX11.cs(GetWindowState): Now throwing an exception when the 
9697           window is not mapped, since otherwise every form that's being 
9698           created is considered minimized, which is wrong.
9699         * Form.cs: Catching the exception and returning our internal value
9700           instead
9702 2006-01-26  Peter Dennis Bartok  <pbartok@novell.com>
9704         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs: Added new driver method
9705           SetWindowMinMax() to have means to tell the driver about the minimum,
9706           maximum and maximized state window sizes. (Part of the fix for #76485)
9707         * Form.cs:
9708           - Implemented tracking of minimum and maximum window size, now calling
9709             new SetWindowMinMax() driver method to tell the driver (Part of the
9710             fix for #76485)
9711           - Finished handling of WM_GETMINMAXINFO method, now setting all values
9712             (Completes fix for #76485)
9713           - Calling new SetWindowMinMax driver method when the handle for a 
9714             form is created, to make sure the driver knows about it even if
9715             the values have been set before the window was created
9716           - Now eating the WM_WINDOWPOSCHANGED message if the form is minimized
9717             to avoid messing up our anchoring calculations (partial fix
9718             for #77355)
9719         * XplatUIStructs.cs: Added MINMAXINFO struct (moved from Win32 driver)
9720         * XplatUIX11.cs:
9721           - Added _NET_WM_STATE_HIDDEN property for detecting minimized state
9722           - Improved GetWindowState() to detect 'Minimized' state on Metacity 
9723             (and presumably other freedesktop.org compliant WMs). Left the
9724             assumption unmapped=minimized, needed for SetVisible to work.
9725           - Now setting the window state when creating windows
9726           - Fixed SetVisible to consider/set the window state when mapping
9727             a Form. We cannot set the state before it's mapped, and we cannot
9728             use Form.WindowState once it's mapped (since it would ask the
9729             driver and get 'normal'. Therefore, we grab the state before
9730             mapping, map, and then set state.
9731           - Implmemented SetWindowMinMax method; Metacity does not seem to
9732             honor the ZoomHints, though.
9733         * XplatUIWin32.cs:
9734           - Removed MINMAXINFO (moved to XplatUIStructs)
9735           - Added SetWindowMinMax stub (on Win32 the only way to set that
9736             information is in response to the WM_GETMINMAXINFO message, which
9737             is handled in Form.cs)
9738           - Added logic to SetVisible to set the proper window state when a 
9739             form is made visible (fixes #75720)
9741 2006-01-26  Jackson Harper  <jackson@ximian.com>
9743         * Control.cs (BeginInvoke): Automagically handle EventHandlers the
9744         same way we handle them with Invoke.
9746 2006-01-25  Peter Dennis Bartok  <pbartok@novell.com> 
9748         * Form.cs:
9749           - Added tracking of window state so CreateParams can return
9750             the appropriate style
9751           - Moved setting of WS_CAPTION style in CreateParams to allow
9752             styles without caption
9753         * DataGridTextBoxColumn.cs: We are now also creating the TextBox 
9754           control if the TextBox property is accessed. Fixes #77345
9755         * Control.cs:
9756           - get_Created: now uses is_disposed and is_created to determine
9757             return value (suggested by Jackson)
9758           - CreateHandle: No longer exits if the handle is being recreated
9759           - RecreateHandle: If the handle is not yet created call the 
9760             appropriate method to create either control or handle. If the
9761             control is already created CreateHandle will simply exit instead
9762             of just creating the handle
9763         * Hwnd.cs: Removed expose_pending tracking, no longer needed since we
9764           now SendMessage WM_DESTROY directly to the control when DestroyWindow
9765           is called.
9766         * XplatUIX11.cs: 
9767           - When DestroyWindow is called, instead of waiting for the 
9768             DestroyNotification from X11, we directly post it to the WndProc
9769             and immediately dispose the hwnd object.
9770             Same applies to DestroyChildWindows, and this obsoletes the
9771             expose_pending tracking. Contrary to Win32 behaviour we destroy our
9772             child windows before our own, to avoid X11 errors.
9773           - Removed the direct sending of WM_PAINT on UpdateWindow
9774         * XplatUIWin32.cs:
9775           - Reworked DoEvents and GetMessage to allow access to internal queue
9776             even when trying non-blocking access to the queue.  Fixes #77335. 
9777             Based on a patch suggestion by Don Edvalson. The new private
9778             GetMessage can now also be used as a backend for a PeekMessage
9779             frontend version.
9780         * XplatUI.cs: Improved debug output for CreateWindow
9782 2006-01-25  Jackson Harper  <jackson@ximian.com>
9784         * Help.cs: Allow param to be null. Patch by Don Edvalson.
9786 2006-01-24  Jackson Harper  <jackson@ximian.com>
9788         * ComboBox.cs: Clamp the max value set for the vertical scrollbar
9789         when we have a MaxDropItems lower then the selected index.
9791 2006-01-24  Jackson Harper  <jackson@ximian.com>
9793         * Control.cs: Don't allow selection of non visible controls, allow
9794         selection of controls without parents.
9796 2006-01-24  Jordi Mas i Hernandez <jordimash@gmail.com>
9798         * ThemeWin32Classic.cs: Fixes Datagrid drawing issues
9799         * DataGridDrawingLogic.cs: Add editing row only when is necessary
9801 2006-01-23  Jackson Harper  <jackson@ximian.com>
9803         * UpDownBase.cs: Make the textbox handle all the selection and
9804         tabbing. This fixes tabing to updown controls.
9806 2006-01-24  Jordi Mas i Hernandez <jordimash@gmail.com>
9808         * TextBoxBase.cs: fixes exception thown the object was null
9810 2006-01-23  Jackson Harper  <jackson@ximian.com>
9812         * ButtonBase.cs: Just use the base CreateParams. They set
9813         visibility and enabled correctly.
9814         * ComboBox.cs:
9815         * TrackBar.cs:
9816         * MonthCalendar.cs: Lets let the base set as much of the
9817         createparams as possible so we don't have duplicate code all over
9818         the place.
9820 2006-01-22  Alexander Olk  <alex.olk@googlemail.com>
9822         * ThemeGtk.cs: Added TrackBar and some experimental code to
9823           get double buffering back
9825 2006-01-21  Jordi Mas i Hernandez <jordimash@gmail.com>
9827         * DataGrid.cs: Allows row number set internally higher than the last
9828         when creating a new row. Restores the editing functionality.
9830 2006-01-20  Mike Kestner  <mkestner@novell.com>
9832         * MimeIcon.cs: delay Image creation until the icons are accessed
9833         instead of creating 190 scaled images on GnomeHandler startup.
9835 2006-01-19  Peter Dennis Bartok  <pbartok@novell.com> 
9837         * TextBoxBase.cs (WndProc): When handling WM_KEYDOWN we need to
9838           first call base before processing the event. Fixes #77279
9840 2006-01-19  Peter Dennis Bartok  <pbartok@novell.com>
9842         * XplatUIWin32.cs, Cursor.cs: Fixed code that wrongly assumed
9843           that the stride for the GDI bitmap would match the stride of
9844           a DIB or a Cursor.
9846 2006-01-19  Alexander Olk  <alex.olk@googlemail.com>
9848         * ThemeGtk.cs: Added ProgressBar, RadioButton, CheckBox
9850 2006-01-19  Jackson Harper  <jackson@ximian.com>
9852         * ComboBox.cs: Hookup the text controls keydown event so we get
9853         those when the text control has the focus.
9855 2006-01-18  Peter Dennis Bartok  <pbartok@novell.com> 
9857         * Label.cs: Now using the base events instead of defining new ones;
9858           this allows us to just call the base properties without having to
9859           duplicate all base property logic 
9861 2006-01-18  Peter Dennis Bartok  <pbartok@novell.com>
9863         * Label.cs: A label by default is not a tabstop (Fixes one of our
9864           failing nunit tests)
9866 2006-01-18  Peter Dennis Bartok  <pbartok@novell.com> 
9868         * XplatUIWin32.cs: Fixed wrong DoEvents logic. Fixes #77282
9869         * XplatUIX11.cs: Removed WM_PAINT check from DoEvents. Fixes #77282
9871 2006-01-18  Peter Dennis Bartok  <pbartok@novell.com>
9873         * Cursor.cs: Reimplemented creating cursor bitmaps without using
9874           the Bitmap(Stream) constructor which is semi-broken on MS GDI+.
9875           This fixes #77218
9876         * XplatUIWin32.cs: 
9877           - Reimplemented creating Bitmaps from DIBs since the Bitmap(Stream) 
9878             constructor creates images that can't be saved. Part of the fix
9879             for #76103
9880           - Added handling of CF_BITMAP as CF_DIB to clipboard code (Fixes #76103)
9881           - SetWindowState: Switched ShowWindow flags (part of an upcoming 
9882             bug fix for handling window state in forms properly)
9884 2006-01-18  Alexander Olk  <alex.olk@googlemail.com>
9886         * ThemeGtk.cs: Simplify ScrollBar drawing
9888 2006-01-18  Jackson Harper  <jackson@ximian.com>
9890         * Splitter.cs: Set the default dock style for the splitter control
9891         in the constructor.
9893 2006-01-18  Alexander Olk  <alex.olk@googlemail.com>
9895         * ThemeGtk.cs: Corrected StateType and ShadowType for
9896           gtk_paint_box
9898 2006-01-18  Alexander Olk  <alex.olk@googlemail.com>
9900         * Control.cs: Make use of Theme.DoubleBufferingSupported
9901         * ThemeGtk.cs:
9902           - Added drawing for flat style buttons
9903           - Added ScrollBar drawing
9905 2006-01-18  Alexander Olk  <alex.olk@googlemail.com>
9907         * ThemeClearlooks.cs: Removed some unneeded code.
9908         * ThemeGtk.cs: First part of ThemeGtk enhancements.
9910 2006-01-17  Peter Dennis Bartok  <pbartok@novell.com>
9912         * LinkLabel.cs: We need to update the hover drawing when
9913           leaving the control as well.
9915 2006-01-18  Jordi Mas i Hernandez <jordimash@gmail.com>
9917         * DataGrid.cs: Clicking on non empty areas in the columns
9918            area was giving an exception
9920 2006-01-17  Jackson Harper  <jackson@ximian.com>
9922         * ThemeWin32Classic.cs:
9923         * ListView.cs: Do not draw/clip the headers when the header style
9924         is None.
9926 2006-01-17  Jordi Mas i Hernandez <jordimash@gmail.com>
9928         * DataGrid.cs: Fixes 77260
9929         
9930 2006-01-17  Jordi Mas i Hernandez <jordimash@gmail.com>
9932         * DataGrid.cs: Clicking on a column on a empty grid was giving
9933           an exception
9935 2006-01-17  Peter Dennis Bartok  <pbartok@novell.com>
9937         * DataGrid.cs (OnKeyDown): Don't use the array if it's empty
9938           or any keypress will crash the grid.
9940 2006-01-17  Mike Kestner  <mkestner@novell.com>
9942         * MainMenu.cs (OnMenuChanged): set Height=0 to cause relayout.
9943         * ThemeWin32Classic.cs (CalcItemSize): clear Height/Width for 
9944         invisible/previously-visible items.
9945         [Fixes #76909]
9947 2006-01-17  Alexander Olk  <alex.olk@googlemail.com>
9949         * ThemeClearlooks.cs:
9950         - Added CL_Draw_Button method; now other theme controls that are 
9951           not derived from button or do not have a button can draw buttons
9952           too
9953         - Updated ComboBox drawing
9954         - Beautified RadioButton drawing
9955         - Corrected drawing of bottom and left tabs
9956         - Beautified DateTimePicker and MonthCalendar
9957         - Added CPDrawButton and CPDrawRadioButton
9959 2006-01-16  Jackson Harper  <jackson@ximian.com>
9961         * ComboBox.cs: Set the initial value of the scrollbar to the
9962         current index. Reduce the numbers of refreshs and IndexOfs called.
9964 2006-01-14  Alexander Olk  <alex.olk@googlemail.com>
9966         * FileDialog.cs: When the file listview is focused hitting the
9967           backspace key moves the fileview to the parent directory
9969 2006-01-13  Peter Dennis Bartok  <pbartok@novell.com>
9971         * Form.cs: 
9972           - Added RecreateHandle call when changing taskbar visibility to 
9973             trigger reparenting in Win32 driver (Fixes #75719)
9974           - If a window has minimize or maximize buttons, it cannot have
9975             a help button
9976         * XplatUIWin32.cs:
9977           - CreateWindow: When no WS_EX_APPWINDOW style is found we parent
9978             the toplevel form with FosterParent (A toolwindow not on the
9979             taskbar) (Fixes #75719)
9980           - Made FosterParent a toolwindow
9982 2006-01-13  Alexander Olk  <alex.olk@googlemail.com>
9984         * FileDialog.cs: Don't crash if InitialDirectory doesn't exist
9986 2006-01-13  Alexander Olk  <alex.olk@googlemail.com>
9988         * ToolTip.cs: If SetToolTip is called from a control and the mouse
9989           is currently over that control, make sure that tooltip_window.Text
9990           gets updated
9992 2006-01-13  Mike Kestner  <mkestner@novell.com>
9994         * MimeIcon.cs: size_t on lp64 fix for gdk_pixbuf_save_to_file extern.
9996 2006-01-13  Jackson Harper  <jackson@ximian.com>
9998         * TreeView.cs: On MS GetNodeAt never actually factors in the X
9999         value passed.  Also redraw the selected node when we recieve
10000         focus, so tabbing between trees works correctly.
10002 2006-01-13  Alexander Olk  <alex.olk@googlemail.com>
10004         * MimeIcon.cs: GnomeHandler: older gnome versions don't have
10005           ~/.gconf/%gconf-tree.xml, so use
10006           .gconf/desktop/gnome/interface/%gconf.xml
10008 2006-01-13  Peter Dennis Bartok  <pbartok@novell.com> 
10010         * TextControl.cs: Draw text in gray if control is disabled
10012 2006-01-13  Peter Dennis Bartok  <pbartok@novell.com> 
10014         * TreeView.cs: Draw the focus rectangle outside the highlight, to
10015           make sure it's always visible. Fixes #76680.
10017 2006-01-13  Peter Dennis Bartok  <pbartok@novell.com>
10019         * TreeView.cs: Implemented Wheel scrolling. Fixes #76531
10021 2006-01-13  Jonathan Chambers  <jonathan.chambers@ansys.com>
10023         * PageSetupDialog.cs: Added.
10024         * PrintDialog.cs: Attributes.
10025         * PrintPreviewControl.cs: Updates.
10026         * PrintPreviewDialog.cs: Updates.
10027         
10028 2006-01-12  Peter Dennis Bartok  <pbartok@novell.com>
10030         * Control.cs: Undid my selection check fix, since it's not needed
10031         * TextBoxBase.cs:
10032           - Now considering the presence of hscroll/vscroll when sizing
10033             vscroll/hscroll respectively. Fixed bug #77077
10034           - Added Left/Up/Down/Right to IsInputKey list to prevent
10035             ContainerControl from stealing them. This fixes what I broke
10036             with my last checkin.
10038 2006-01-12  Peter Dennis Bartok  <pbartok@novell.com> 
10040         * ScrollableControl.cs: Implemented dockpadding. Fixes #77166. And
10041           I finally understand how the property can be set without a setter :-)
10043 2006-01-12  Peter Dennis Bartok  <pbartok@novell.com>
10045         * Application.cs:
10046           - Switched RunLoop to use static Message.Create to create a 
10047             Message object
10048           - Added PreProcessMessage call in runloop for keyboard events; this
10049             is part of the fix for #77219, I overlooked this originally in the
10050             MSDN doc for PreProcessMessage
10051         * Control.cs:
10052           - Removed call to PreProcessMessage from handling of keyboard 
10053             messages; it's supposed to be done in the message pump
10054           - Moved call to ProcessKeyEventArgs inside ProcessKeyMessage as
10055             per MSDN documentation.
10056           - IsInputChar: All chars are input chars by default; removed the 
10057             parent calling chain, MS does not document that
10058           - PreProcessMessage: If IsInputChar is true, we want to return false
10059             to allow dispatching of the message
10060           - When selecting the next control, now also check that we're not
10061             selecting ourselves again and therefore return a false positive.
10062         * TextBoxBase.cs:
10063           - Tried to match return values for IsInputKey and ProcessDialogKey
10064             to what MS returns; moved processing of our special keys outside
10065             ProcessDialogKey since MS does not seem to return true on those.
10066           - Moved code that previously was in ProcessDialogKey into new private
10067             ProcessKey method, which gets called upon receipt of WM_KEYDOWN
10068           - Reworked handling of WM_CHAR to not have to duplicate code from
10069             Control.cs anymore, instead we simply call down to base.
10070            
10071 2006-01-12  Jackson Harper  <jackson@ximian.com>
10073         * ComboBox.cs: We always need to refresh the text area when
10074         EndUpdate is called. Fixes the combobox in the file dialog.
10075         * Control.cs: Don't create the creator_thread until the controls
10076         handle is created.  Also in InvokeRequired we check if the
10077         creator_thread is null. This gives the effect of InvokeRequired
10078         returning true if the controls handle is not created yet, and
10079         matches MS.
10081 2006-01-12  Peter Dennis Bartok  <pbartok@novell.com>
10083         * XplatUI.cs:
10084           - Added StartLoop() driver method. This is used to allow drivers to
10085             prepare for an upcoming GetMessage/TranslateMessage/DispatchMessage
10086             loop for a particular thread
10087           - Added EndLoop() driver method. This is called once the message
10088             pump for the thread is shut down
10089           - Added SupportsTransparency method to allow the driver to indicate
10090             opacity support for windows
10091         * Form.cs:
10092           - Removed TODO attribute, completed AllowTransparency property
10093           - Added documented logic to Opacity
10094         * GroupBox.cs, Label.cs, LinkLabel.cs, PropertyGrid.cs, Control.cs,
10095           ButtonBase.cs, CheckedListBox.cs: Combined Jackson's and Miguel's
10096           versions of CompatibleTextRendering
10097         * X11Structs.cs: Added opacity atom to our atom enumeration
10098         * Hwnd.cs: Added opacity tracking (we need to track since the opacity
10099           of a form might be set before it's reparented by the WM, and we need
10100           the opacity value without calling up to Form)
10101         * XplatUIDriver.cs: Added StartLoop(), EndLoop() and 
10102           SupportsTransparency() driver methods
10103         * Application.cs: Now calling StartLoop and EndLoop driver methods
10104         * XplatUIX11.cs:
10105           - Added opacity atom registration
10106           - Added StartLoop()/EndLoop() methods. They're empty right now but
10107             will need to get implemented when we switch to a per-thread queue
10108           - Implemented SupportsTransparency() method
10109           - Implemented SetWindowTransparency() method
10110           - Added support for setting the opacity value when a window is
10111             reparented (since the opacity needs to be set on the WM frame)
10112         * XplatUIOSX.cs, XplatUIWin32.cs:
10113           - Added SupportsTransparency(), StartLoop() and EndLoop() methods
10115 2006-01-12  Alexander Olk  <alex.olk@googlemail.com>
10117         * ThemeClearlooks.cs: Don't crash if TabControl.Parent is null.
10119 2006-01-12  Alexander Olk  <alex.olk@googlemail.com>
10121         * FileDialog.cs: Added ToolTip for MWFFileView
10122         * MimeIcon.cs: Rewrote GnomeHandler.
10123           - Get currently used gnome icon theme from
10124             ($HOME)/.gconf/%gconf-tree.xml
10125           - Make use of inherited icon themes
10126           - Support SVG icon themes like Tango via librsvg
10128 2006-01-12  Miguel de Icaza  <miguel@novell.com>
10130         Revert's Jackson's revert which broke 2.0 builds.   Fix both
10131         builds. 
10132         
10133         * Application.cs: Move the use_compatible_text_rendering outside
10134         the NET_2_0 define.  If we ever need to use the
10135         use_compatible_text_rendering on the individual controls they will
10136         access the variable from the common shared code paths.
10138 2006-01-12  Peter Dennis Bartok  <pbartok@novell.com>
10140         * XplatUI.cs:
10141           - Added more granular debug options
10142           - Added method to print both window text and id
10143           - Switched debug output to use new Window() debug method
10144           - Added IsEnabled() driver method
10145           - Added EnableWindow() driver method
10146         * Form.cs:
10147           - Removed end_modal; no longer needed, new loop handles termination
10148             via 'closing' variable
10149           - If form is modal, setting DialogResult will now initiate loop
10150             termination via 'closing' variable
10151           - Added support for is_enabled/WS_DISABLED to CreateParams
10152           - Close() now just send the WM_CLOSE message; the WM_CLOSE handler
10153             does all the work
10154           - Removed code that's now in RunLoop from ShowDialog()
10155           - Added various documented sanity checks to ShowDialog()
10156           - Added handling of WM_DESTROY message; we set 'closing' on getting
10157             the message to indicate the message pump to terminate
10158           - Added handling of new internal WM_CLOSE_INTERNAL message - it's
10159             send by the Application.ExitThread method. (We send the message
10160             to destroy the window after all other events have been
10161             processed through the queue, instead of destroying the handle 
10162             directly)
10163           - Moved code from Close() method to WM_CLOSE handler; added logic
10164             to only send close-related events if the form is not displayed
10165             modal
10166         * Splitter.cs (..ctor): Fixed typo in resource name
10167         * Control.cs:
10168           - DrawBackgroundImage: Explicitly selecting the wrap mode for the
10169             brush now
10170           - set_Cursor: Now only setting calling into XplatUI if the handle for
10171             the control is already created; this avoids implict handle creation
10172             or crashes if it's not created
10173           - set_Enabled: Now setting the enabled state via the new driver method
10174             instead of just tracking it
10175           - CreateParams: Added logic to set WS_DISABLED based on enabled state
10176           - CreateControl: Reordered event firing and method calls to more
10177             closely fire events in the order MS does. Now setting the
10178             enabled state in the driver when creating the control.
10179           - SetVisibleCore: Moved when the OnVisibleChanged event is fired to
10180             match MS order
10181         * FolderBrowserDialog.cs, MessageBox.cs, ButtonBase.cs, TrackBar.cs,
10182           MonthCalendar.cs: get_CreateParams: Added setting of WS_DISABLED 
10183         * XplatUIStructs.cs: Added internal WM_CLOSE_INTERNAL mesage id
10184         * Hwnd.cs:
10185           - Added tracking of window enabled state (get_Enabled/set_Enabled)
10186           - Added EnabledHwnd property to easily allow a driver to find the
10187             handle of the first enabled window in the parent chain (this is
10188             used by drivers to pass up input events of disabled windows)
10189         * XplatUIDriver.cs: Added IsEnabled() method
10190         * Application.cs:
10191           - Removed crude and obsolete exiting tracking variable
10192           - Removed internal ModalRun(); replaced by RunLoop()
10193           - Implemented private CloseForms() method to allow closing all 
10194             windows owned by a particular (or all) threads
10195           - Exit() now properly closes all windows without forcing the message
10196             pump to quit
10197           - Removed obsolete InternalExit() method
10198           - Changed Run() methods to use new RunLoop() message pump
10199           - Implemented new RunLoop() method for both modal and non-modal forms
10200         * CommonDialog.cs:
10201           - get_CreateParams: Added setting of WS_DISABLED
10202           - Simplified ShowDialog(); now all the work is done in RunLoop(),
10203             invoked via Form.ShowDialog()
10204         * NativeWindow.cs: We don't remove the window from the collection when
10205           the handle is destroyed; there might still be messages for it in the
10206           queue (mainly the resulting WM_DESTROY); instead it will be removed
10207           when Control calls InvalidateHandle in the WM_DESTROY handler
10208         * XplatUIX11.cs:
10209           - CreateWindow: Added logic to handle the WS_DISABLED window style
10210           - EnableWindow: Implemented based on Hwnd.Enabled
10211           - GetMessage: Reset PostQuitState so the method can be called again
10212           - Implemented support for disabled windows (passing messages to the
10213             first enabled parent) in handling all input messages
10214           - Added optimizations for handling Expose events
10215           - Implemeted new driver method IsEnabled()
10216           - Now always resetting paint pending tracking vars when we start paint
10217           - Re-implemented UpdateWindow via just sending a WM_PAINT message
10218         * XplatUIOSX.cs: Added IsEnabled method stub
10219         * XplatUIWin32.cs: Implemented new IsEnabled() method
10221 2006-01-11  Jackson Harper  <jackson@ximian.com>
10223         * ButtonBase.cs, CheckedListBox.cs, GroupBox.cs, Label.cs,
10224         LinkLabel.cs, PropertyGrid.cs: Unbreak 1.1 build. Consolidate the
10225         variables a little.
10226         * ColorDialog.cs: Clear out the old form before adding the new
10227         panel.  
10229 2006-01-11  Jackson Harper  <jackson@ximian.com>
10231         * X11Dnd.cs: Make sure to add all the text formats when adding
10232         strings to the data object.
10233         * TreeNodeCollection.cs: When adding to a sorted tree we need to
10234         do some redrawing too.  Also change the UpdateNode to an
10235         UpdateBelow so the newly added node gets painted.
10236         
10237 2006-01-11  Miguel de Icaza  <miguel@novell.com>
10239         * ButtonBase.cs, CheckedListBox.cs, GroupBox.cs, Label.cs,
10240         LinkLabel.cs, PropertyGrid.cs: Implement the
10241         UseCompatibleTextRendering property for 2.x
10243         * Application.cs (SetCompatibleTextRenderingDefault): Add. 
10245 2006-01-11  Jackson Harper  <jackson@ximian.com>
10247         * TreeView.cs: Use the property for setting the selected node so
10248         the correct events get raised.
10249         * TreeNode.cs: Update the tree when the fore/back colours of a
10250         node are set.
10252 2006-01-10  Jackson Harper  <jackson@ximian.com>
10254         * TreeView.cs: Allow setting SelectedNode to null.
10256 2006-01-9  Jonathan Chambers  <jonathan.chambers@ansys.com>
10258         * Form.cs: Fix support for Form TransparencyKey and Opacity on Windows.
10260 2006-01-9  Jonathan Chambers  <jonathan.chambers@ansys.com>
10262         * PrintControllerWithStatusDialog.cs: Update page number in dialog.
10264 2006-01-9  Jonathan Chambers  <jonathan.chambers@ansys.com>
10266         * PrintDialog.cs: Added attributes and set default property values.
10268 2006-01-9  Jonathan Chambers  <jonathan.chambers@ansys.com>
10270         * PrintControllerWithStatusDialog.cs: 
10271         Added PrintControllerWithStatusDialog.
10273 2006-01-9  Jonathan Chambers  <jonathan.chambers@ansys.com>
10275         * XplatUI.cs, Form.cs, XplatUIDriver.cs, XplatUIX11.cs, XplatUIOSX.cs, 
10276         XplatUIWin32.cs: Added support for Form TransparencyKey and Opacity on Windows.
10278 2006-01-9  Jonathan Chambers  <jonathan.chambers@ansys.com>
10280         * ComboBox.cs: Fix crash when there is no selected item (due to last commit)
10282 2006-01-09  Jonathan Chambers  <jonathan.chambers@ansys.com>
10284         * ComboBox.cs: Added KeyDown event handler for processing arrow keys
10285         and PgUp/PgDown. Also, scroll to selected item upon dropdown. Bugs 76857 and 76788.
10287 2006-01-08  Alexander Olk  <alex.olk@googlemail.com>
10289         * MimeIcon.cs: Added internal class SVGUtil.
10291 2006-01-08  Alexander Olk  <alex.olk@googlemail.com>
10293         * FileDialog.cs: Don't crash if there are two files with the
10294           same name but different locations.
10296 2006-01-08  John BouAntoun  <jba-mono@optusnet.com.au>
10298         * MonthCalendar.cs: Fixed annoying rendering bug when selecting
10299         dates across multiple month grids. Used to not highlight entire 
10300         month, but does now.
10301         
10302 2006-01-06  Jackson Harper  <jackson@ximian.com>
10304         * MonthCalendar.cs: Removed DoEvents call to prevent a running
10305         message loop. Change timer intervals to numbers that seem more
10306         natural.
10308 2006-01-06  John BouAntoun  <jba-mono@optusnet.com.au>
10310         * DateTimePicker.cs: Modified CalculateDropDownLocation to use the screen
10311           object for location info since screen object is now implemented.
10313 2006-01-05  Jackson Harper  <jackson@ximian.com>
10315         * AsyncMethodData.cs: Check if the call is complete before doing a WaitOne
10316         * AsyncMethodResult.cs: We no longer use a WeakReference for the
10317         AsyncMethodResult, this is because we ALWAYS want the
10318         ManualResetEvent to get set.
10319         * Control.cs: When disposing use an async invoke to call shutdown
10320         code, so that thigns don't block on the finalizer thread.  Also
10321         check if we even have a message loop before trying to send
10322         messages, if we don't then don't bother sending messages.
10323         - No more weak references for async methods
10324         * XplatUIDriver.cs: No more weak references for async methods.
10326 2006-01-04  Alexander Olk  <alex.olk@googlemail.com>
10328         * FontDialog.cs: Fix, don't throw an exception if FontFamily.Families
10329           returns two FontFamily with the same name
10331 2006-01-04  Peter Dennis Bartok  <pbartok@novell.com>
10333         * ThemeWin32Classic.cs, ThemeClearlooks.cs: Dropped stupid scheme of 
10334           drawing disabled text. Instead using the ColorGrayText color
10336 2006-01-04  Jackson Harper  <jackson@ximian.com>
10338         * TreeNode.cs: redraw the node when its image index is changed.
10340 2006-01-04  Peter Dennis Bartok  <pbartok@novell.com>
10342         * RichTextBox.cs: Same fix as last, just for SelectionColor. This
10343           time I checked there are no others like it.
10345 2006-01-04  Jackson Harper  <jackson@ximian.com>
10347         * AsyncMethodResult.cs: Use a ManualResetEvent instead of a mutex,
10348         this gives the behavoir I was looking for.
10349         * Control.cs: Special case Invoking EventHandlers, this matches MS
10350         and fixes part of bug #76326.
10352 2006-01-04  Alexander Olk  <alex.olk@googlemail.com>
10354         * ThemeClearlooks.cs, FileDialog.cs:
10355           - Reflect the latest Theme class changes
10356           - Remove Mono.Unix.Syscall.time in FileDialg and replace it 
10357             with DateTime
10358             
10359 2006-01-04  Alexander Olk  <alex.olk@googlemail.com>
10361         * Theme.cs: Cache UI resource images and resize them if needed
10363 2006-01-03  Peter Dennis Bartok  <pbartok@novell.com>
10365         * RichTextBox.cs: FormatText is 1-based, make it so when SelectionFont
10366           is called. This fixes the crash in Nexxia when setting the font
10367           attributes in the chat. [However, RTF needs a look-over to make sure
10368           that all SelectionXXX methods handle the special case that selection
10369           is empty and therefore the change must be applied to all text starting
10370           at the cursor/selection start]
10372 2006-01-03  Peter Dennis Bartok  <pbartok@novell.com> 
10374         * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs, XplatUIWin32.cs,
10375           XplatUIOSX.cs: Added SendMessage and PostMessage methods
10376         * X11Keyboard.cs: Switched to new way of calling PostMessage
10378 2006-01-03  Peter Dennis Bartok  <pbartok@novell.com>
10380         * Theme.cs: Added theme interface for images to allow the theme to
10381           control what images are used for things like FileDialog, MessageBox
10382           icons, etc.
10383         * MessageBox.cs: Now uses the new Theme icon/image interfaces
10385 2006-01-03  Alexander Olk  <alex.olk@googlemail.com>
10387         * FileDialog.cs:
10388           - Removed some dead code
10389           - Opening a recently used file does work now
10390           - Small UI enhancements
10391           - Refactoring
10393 2006-01-02  Alexander Olk  <alex.olk@googlemail.com>
10395         * FileDialog.cs: Forgot too add __MonoCS__
10397 2006-01-02  Alexander Olk  <alex.olk@googlemail.com>
10399         * FileDialog.cs: We are able to read recently used files now let's
10400           go on and write them.
10402 2006-01-01  Alexander Olk  <alex.olk@googlemail.com>
10404         * FileDialog.cs: Breathe some life into "last open"/"recently used"
10405           button
10406         * MimeIcon.cs: Do a check for the top level media type also
10408 2005-12-31  Alexander Olk  <alex.olk@googlemail.com>
10410         * ThemeClearlooks.cs:
10411           - Added CPDrawStringDisabled
10412           - ButtonBase_DrawText: Workaround for a DrawString bug; cut off
10413             some chars if the text doesn't fit into text_rect
10414           - DrawListViewItem: If View = View.LargeIcon center the image;
10415             rewrote the drawing of ListViewItem.Text if View = 
10416             View.LargeIcon
10418 2005-12-31  Alexander Olk  <alex.olk@googlemail.com>
10420         * MimeIcon.cs: Use default KDE icon theme if there is no
10421           "48x48" directory for the current icon theme, fixes #77114
10422         * Mime.cs: Disable not working and actually not used code. 
10423         * ThemeWin32Classic.cs:
10424           - Replace "new SolidBrush" in GetControlBackBrush and
10425             GetControlForeBrush with ResPool.GetSolidBrush
10426           - Changed DrawListViewItem from private to protected virtual
10427         * FileDialog.cs:
10428           - Added form.MaximizeBox = true
10429           - Don't throw an exception if there is a broken symbolic link
10431 2005-12-23  Jackson Harper  <jackson@ximian.com>
10433         * TabControl.cs: Give the panels focus, keyboard navigation is
10434         fixed so this works correctly now.
10435         - We need these key events also.
10436         * ToolBar.cs: Remove some of the poor mans double buffering.
10437         
10438 2005-12-24  Alexander Olk  <alex.olk@googlemail.com>
10440         * ComboBox.cs: The internal TextBox now returns the focus.
10442 2005-12-23  Jackson Harper  <jackson@ximian.com>
10444         * ThemeWin32Classic.cs:  Draw the text for all tab appearances.
10446 2005-12-23  Peter Dennis Bartok  <pbartok@novell.com>
10448         * Control.cs: Removed debug code
10449         * XplatUIX11.cs: Changed DestroyChildWindows to also consider
10450           implicit children
10452 2005-12-23  Peter Dennis Bartok  <pbartok@novell.com> 
10454         * Control.cs: When creating the control, update the Z-order after
10455           all it's children are created, too. (Fixes nexxia not showing
10456           picturebox bug)
10458 2005-12-23  Peter Dennis Bartok  <pbartok@novell.com>
10460         * Control.cs: Do not update the anchoring distances if layout is
10461           suspended, instead do it once layout is resumed
10463 2005-12-22  Peter Dennis Bartok  <pbartok@novell.com> 
10465         * Control.cs: 
10466           - After many hours of debugging, for both Jackson and
10467             myself, it turns out that it helps to set the parent of a control
10468             if you want to actually see it onscreen. In the spirit of that
10469             discovery, we're now setting the parent of the control and
10470             it's children when the control's handle is created. This fix
10471             will make Lutz Roeder's Reflector run happily. 
10472           - now just creating the handle instead of the whole control when
10473             getting a graphics context for the control.
10475 2005-12-22  Peter Dennis Bartok  <pbartok@novell.com>
10477         * ScrollableControl.cs: When calculating the canvas, don't consider
10478           the scrollbar widths. Instead, predict if horizontal scrollbar
10479           will affect canvas when deciding on vertical display and vice versa.
10481 2005-12-22  Peter Dennis Bartok  <pbartok@novell.com>
10483         * RichTextBox.cs: Set default RTF font for documents that don't
10484           have a font table (Fixes #77076)
10486 2005-12-22  Jackson Harper  <jackson@ximian.com>
10488         * TextBoxBase.cs: It's difficult to do, but you can have an empty
10489         clipboard. This prevents a NullRef in that case.
10490         * XplatUIX11.cs: Use CLIPBOARD not PRIMARY for our
10491         clipboard. PRIMARY is for the currently selected text only. (We
10492         should implement PRIMARY at some point.
10494 2005-12-21  Peter Dennis Bartok  <pbartok@novell.com>
10496         * XplatUIWin32.cs: Fixed the TEXTMETRIC structure, we were calling
10497           a Unicode function with a structure that was defined in Ansi way.
10498           This fixes #76942.
10500 2005-12-21  Jackson Harper  <jackson@ximian.com>
10502         * StatusBar.cs: Statusbar handles its fore/back colours on it's
10503         on. Because thats how it rolls. (and this avoids it using ambient
10504         colours).
10505         * ThemeWin32Classic.cs: Use the proper back color for filling.
10506         * Menu.cs: Use the system menu bar color for drawing menu
10507         bars. Using the window back color will bring ambient colours into
10508         the picture.
10510 2005-12-21  Alexander Olk  <alex.olk@googlemail.com>
10512         * ColorDialog.cs: Fixed a memory leak that caused a SIGSEV. A lot of
10513           Bitmaps were created and not disposed.
10515 2005-12-21  Peter Dennis Bartok  <pbartok@novell.com>
10517         * Control.cs (CreateControl): Don't do anything if the control is
10518           already created, otherwise we'd fire the OnCreated event more than
10519           once
10521 2005-12-21  Peter Dennis Bartok  <pbartok@novell.com> 
10523         * ComboBox.cs (FindStringCaseInsensitive): Don't search for emtpy strings,
10524           will always match. Instead return -1. Fixes #76464.
10526 2005-12-21  Peter Dennis Bartok  <pbartok@novell.com>
10528         * TextControl.cs (RecalculateLine): Only wrap if the wrap point is
10529           neither the beginning nor the end of the line (Fixes bug #76479)
10531 2005-12-21  Peter Dennis Bartok  <pbartok@novell.com> 
10533         * Control.cs:
10534           - ControlNativeWindow.ControlFromHandle(): Now handling situation
10535             where handle is invalid
10536           - FromHandle(): Now using hashtable-based ControlFromHandle() lookup
10537             instead of slower linear search
10538         * NativeWindow.cs: Don't remove the window from the hashtable until
10539           after the driver has destroyed it (since the driver might use
10540           Control.FromHandle to lookup the control object
10541         * Hwnd.cs: Added DestroyPending property to track if a window is 
10542           already destroyed as far as the driver is concerned and only hasn't
10543           yet notified the control
10544         * XplatUIX11.cs:
10545           - Activate(): Check if the window is still valid before using the 
10546             handle
10547           - Implemented DestroyChildWindow() method to mark child windows as
10548             destroyed when a window is destroyed. This prevents situations 
10549             where we might call an X method based on queued events for a
10550             window that already has been destroyed but we haven't yet pulled
10551             the destroy method from the queue.
10552           - Added a call to the new DestroyChildWindow() method to the drivers
10553             DestroyWindow code. Also now marking the destroyed window itself
10554             as pending
10556 2005-12-20  Jackson Harper  <jackson@ximian.com>
10558         * StatusBar.cs:
10559         * StatusBarPanel.cs: Don't calculate panel sizes on draw
10560         anymore. Just do them when needed, also track the rects of panels
10561         so that we can optimize refreshing more in the future.
10563 2005-12-20  Alexander Olk  <alex.olk@googlemail.com>
10565         * ColorDialog.cs: Fixed focus drawing in small color controls
10567 2005-12-19  Jackson Harper  <jackson@ximian.com>
10569         * InternalWindowManager.cs:
10570         * MdiWindowManager.cs: Cleanup some coordinate system changes so
10571         moving windows works properly.
10573 2005-12-19  Peter Dennis Bartok  <pbartok@novell.com> 
10575         * Control.cs: 
10576           - Removed call to InitLayout() from SetBoundsCore(); doc says
10577             it's only called when a control is added to a container
10578           - Split InitLayout logic, moved to separate UpdateDistances() method
10579             since we need to perform those calculations more often than just
10580             when adding the control to a container. (Needed to fix #77022)
10581           - Now calling UpdateDistances() from UpdateBounds() (fixes #77022)
10582           - Reduced the OnBindingContextChanged events count, don't send them
10583             unless the control is created, we still aren't totally matching
10584             MS, but I can't quite figure out some of their rules
10586 2005-12-18  Alexander Olk  <alex.olk@googlemail.com>
10588         * ThemeClearlooks.cs: Corrected distance between ProgressBar
10589           stripes
10591 2005-12-18  Alexander Olk  <alex.olk@googlemail.com>
10593         * ThemeClearlooks.cs:
10594           - Updated ProgressBar drawing
10595           - Corrected drawing of ScrollBars and scroll buttons
10596           - Some temporary fixes for minor pixel artefacts
10598 2005-12-18  Peter Dennis Bartok  <pbartok@novell.com> 
10600         * Control.cs:
10601           - Reworked Controls.Add(), Controls.Remove() and set_Parent() to
10602             cause events to be sent in the same order as MS does.
10603           - Added ChangeParent() method to trigger various OnXXXChanged events
10604             that need to be fired when a parent changes (This is a reworking
10605             of the patch from r54254, with the X11 errors fixed)
10606           - Removed SuspendLayout()/ResumeLayout() calls from Controls.Clear()
10607             since on MS we get OnLayoutChanged events when calling Clear()
10608           - Changed Enabled property to consider parent state as well, if a
10609             parent is not enabled, the control will not be either
10610           - Changed Parent property to simply call Controls.Add() since that
10611             now does all the work required, this way we avoid code duplication
10612           - Threw in a few OnBindingsContextChanged calls to try and match
10613             when MS sends them. We seem to send a few too many, though.
10614           - Added call to CreateControl when adding the control to a parent.
10615             We were never calling CreateControl. Still needs some work, in
10616             some places we treat HandleCreated and ControlCreated as equal, 
10617             which is wrong
10618           - Removed obsolete commented out code from UpdateZOrder()
10620 2005-12-18  Alexander Olk  <alex.olk@googlemail.com>
10622         * ThemeClearlooks.cs: Updated TrackBar drawing.
10624 2005-12-17  Alexander Olk  <alex.olk@googlemail.com>
10626         * FileDialog.cs: Patch for #76901 by Atsushi Enomoto
10628 2005-12-17  Alexander Olk  <alex.olk@googlemail.com>
10630         * FileDialog.cs: Add the Help button and the open readonly
10631           checkbox only if needed
10633 2005-12-16  Jackson Harper  <jackson@ximian.com>
10635         * Control.cs: Make sure we have an active menu before trying to
10636         process commands on it. Prevents menu-less forms from crashing
10637         when Alt is pressed.
10638         * TreeNodeCollection.cs: Some fixes to prevent null refs. Patch by
10639         Dieter Bremes.
10640         * RichTextBox.cs: Expand statement to help out gmcs and fix the
10641         2.0 build.
10643 2005-12-16  Jackson Harper  <jackson@ximian.com>
10645         * InternalWindowManager.cs: Don't translate tool windows screen
10646         coordinates. This fixes windows 'bouncing' around when being moved.
10648 2005-12-15  Peter Dennis Bartok  <pbartok@novell.com> 
10650         * TextBoxBase.cs:
10651           - MaxLength now treats 2^31-1 equal to unlimited length (this is
10652             not quite MS compatible, MS uses that number only for single line
10653             and 2^32-1 for multi-line, but I figure it won't hurt keeping
10654             the limit at 2GB)
10655           - Now enforcing the MaxLength limit when entering characters
10656           - Added argument to internal Paste() method to track if it's called
10657             from programatically or via keyboard, since keyboard driven pastes
10658             need to enforce max-length
10659           - Added logic to Paste to only paste as many chars as MaxLength 
10660             allows
10661         * RichTextBox.cs: Updated to use new obey argument for internal Paste()
10662         * TextControl.cs:
10663           - Added Length property to return number of characters in document
10664           - Added private CharCount property which only tracks actual chars
10665             in the document (no linefeeds) and fires event when CharCount
10666             changes
10667           - Added tracking of character count to all methods that alter it
10668           - Added LengthChanged event to allow applications to subscribe
10669             to any changes to the document
10671 2005-12-15  Peter Dennis Bartok  <pbartok@novell.com> 
10673         * TextBox.cs: 
10674           - Removed local password_char field (moved to TextBoxBase)
10675           - Now setting the document's password var when password is
10676             set
10677         * TextBoxBase.cs:
10678           - Added password_char field (needed here so MultiLine can
10679             access it)
10680           - Added logic to MultiLine property setter to set the document's
10681             variable when password display is allowed
10682           - Removed debug code and made some debug code conditional
10683         * TextControl.cs:
10684           - Added RecalculatePasswordLine() method to handle special password
10685             char only lines
10686           - Added PasswordChar property, also added related tracking vars
10687           - Draw() method now uses local text var for grabbing text to draw,
10688             this var is set to line.text unless we're doing password display,
10689             then it is set to the pre-generated all-password-chars line
10690           - Added calling RecalculatePasswordLine() method for password lines
10692 2005-12-14  Peter Dennis Bartok  <pbartok@novell.com> 
10694         * Hwnd.cs: 
10695           - Added Reparented property to allow tracking of Window Manager
10696             reparenting actions (which affect X/Y calculations of toplevel 
10697             windows)
10698           - Made ToString() print window handles in hex
10699         * XplatUIX11.cs:
10700           - AddConfigureNotify(): Now uses reparented state off Hwnd to
10701             determine if X/Y needs offsetting
10702           - AddConfigureNotify(): Fixed offset calculations
10703           - Now adds ReparentNotify messages into the queue
10704           - Now processes ReparentNotify messages and causes a 
10705             WM_WINDOWPOSCHANGED message to be sent upstream if a window
10706             is reparented (as most likely it's X/Y coordinates are changed
10707             due to that)
10709 2005-12-14  Jackson Harper  <jackson@ximian.com>
10711         * XplatUIX11.cs: Tool windows still need to respek focus.
10713 2005-12-14  Peter Dennis Bartok  <pbartok@novell.com> 
10715         * Control.cs: Undid 54254 (causing XConfigure errors) so we can
10716           have a working release
10718 2005-12-13  Jackson Harper  <jackson@ximian.com>
10720         * Form.cs: Update styles after setting the border style regardless
10721         of whether or not the window is using a window manager.
10723 2005-12-13  Jackson Harper  <jackson@ximian.com>
10725         * Form.cs: We now hook into an internal window manager instead of just an
10726         MDI subsystem, this is so we can have properly behaving tool windows.
10727         * MdiClient.cs: Naming change, MdiChildContext is now WindowManager
10728         * InternalWindowManager.cs: New internal class that acts as a
10729         window manager for tool windows and as a base for mdi windows.
10730         * MdiWindowManager.cs: New class that acts as a window manager for
10731         mdi windows.
10733 2005-12-12  Jackson Harper  <jackson@ximian.com>
10735         * Control.cs: Updates so we match behavoir for for implicit
10736         controls. Fixes explosions in MDI.
10738 2005-12-12  Jackson Harper  <jackson@ximian.com>
10740         * Control.cs: Implement Invalidate (Region).
10742 2005-12-12  Peter Dennis Bartok  <pbartok@novell.com> 
10744         * Control.cs: 
10745           - Changed handling of Controls.Add/Controls.Remove to fire (almost) 
10746             the same events as MS does. MS fires events for each property 
10747             except, for unknown reasons, Cursor, when the control is reparented. 
10748             I can't seem to totally match add/remove since MS also fires some 
10749             VisibleChanged events, which makes no sense. Consolidated the
10750             parenting code into a separate method so it can be called from
10751             both Add and Remove. set_Parent no longer needs any special logic
10752             as it calls the parent's add method which implicitly fires
10753             all events
10754           - Removed some obsolete code and debug output
10755           - Enabled state is inherited from parents, if this is enabled
10757 2005-12-08  Peter Dennis Bartok  <pbartok@novell.com> 
10759         * Form.cs: Removed commented out code
10761 2005-12-08  Peter Dennis Bartok  <pbartok@novell.com>
10763         * Control.cs:
10764           - Added internal version of Invoke, with additional argument 
10765             indicating if we're calling it from a Dispose() handler. That
10766             way we can avoid BeginInvoke throwing an exception if we're
10767             calling for an already destroyed window.
10768           - Added a dispose argument to BeginInvokeInternal, and made the
10769             check if a valid window handle chain exists conditional on
10770             it not being a dispose call
10771           - Removed code in DestroyHandle to destroy our children. Since we
10772             now handle the WM_DESTROY message we will catch all our children
10773             being destroyed.
10774           - Now calling OnHandleDestroyed from our new WM_DESTROY handler
10775         * Form.cs:
10776           - Added a field to track the application context of the form.
10777           - No need to set closing variable as response to WM_CLOSE, instead
10778             we destroy the window. We also call PostQuitMessage if the form
10779             has an application context (which makes it the main app form,
10780             which, when closed terminates the app)
10781         * XplatUI.cs:
10782           - Dropped Exit() method, it's naming was confusing
10783           - Added PostQuitMessage() which causes GetMessage to return false
10784             once the message queue is empty
10785         * XplatUIDriver.cs, XplatUIWin32.cs: Dropped Exit(), added 
10786           PostQuitMessage()
10787         * XplatUIOSX.cs: Switched signature for Exit method since Exit() is
10788           no longer a valid XplatUI method, but left it in since it's used
10789           internally. Added empty PostQuitMessage() method.
10790         * MenuAPI.cs: Replaced call to Exit() with call to
10791           PostQuitMessage, even though this is probably no longer needed.
10792         * Hwnd.cs: Added 'pretty' ToString() to support debugging.
10793         * X11Structs.cs: Added pretty XEvent.ToString() to support debugging.
10794         * Application.cs:
10795           - Replaced call to XplatUI.Exit() with PostQuitMessage()
10796           - Removed old debug code that would call XplatUI for exception
10797             display, enabled standard exception handling (Still not enabled
10798             though, until NativeWindow's ExternalExceptionHandler define
10799             is removed
10800         * NativeWindow.cs:
10801           - Added internal method to allow control to update NativeWindow
10802             after a window has been destroyed
10803           - Added handling of already destroyed windows when calling i
10804             DestroyWindow
10805           - Added removal of handle from list on ReleaseHandle
10806         * XplatUIX11.cs:
10807           - Dropped GetMessageResult var and related code
10808           - Added PostQuitState to field to track if PostQuitMessage has been
10809             called
10810           - Dropped Exit() method
10811           - Added PostQuitMessage() method
10812           - GetMessage now will return false if PostQuitState is set and no
10813             more messages are in the queue.
10814           - Expose handler will no longer generate WM_PAINT messages if we are
10815             in PostQuitState since it's very likely any windows have already
10816             been destroyed, and since Hwnd won't get updated until we have
10817             processed the DestroyNotify we'd be causing X errors.
10818         
10819 2005-12-07  Peter Dennis Bartok  <pbartok@novell.com>
10821         * Control.cs(WndProc): Apparently I'm suffering from brain cloud.
10822           Thanks to Mike for pointing out the err of my ways.
10824 2005-12-07  Peter Dennis Bartok  <pbartok@novell.com>
10826         * Control.cs(PreProcessMessage): Moved menu handling back, but
10827           after all other key handling, to match MS (who handles Menu in
10828           DefWndProc)
10829         * Menu.cs (WndProc): Removed my brainfart
10831 2005-12-07  Peter Dennis Bartok  <pbartok@novell.com>
10833         * Control.cs(PreProcessMessage): Removed special menu handling 
10834         * Menu.cs (WndProc): Added handling of WM_SYSKEYUP for menu purposes.
10836 2005-12-07  Mike Kestner  <mkestner@novell.com>
10838         * Control.cs : special case SYSKEYUP so that we can adjust keynav
10839         state according in tracker.
10840         * Menu.cs : promote tracker field to base class and provide a tracker
10841         lookup capability.  Add/Remove shortcuts dynamically if the top menu
10842         has a tracker. Unparent items that are removed from the collection.
10843         * MenuAPI.cs : implement mnemonic, shortcut, and arrow-based keynav.
10844         * Theme*.cs: add always_show_hotkeys field to support configurability
10845         of mnemonic display.  win32 doesn't show mnemonics until Alt is
10846         pressed.
10848 2005-12-07  Jackson Harper  <jackson@ximian.com>
10850         * MdiChildContext.cs: Use Control.ResetCursor.
10851         * Control.cs: ResetCursor needs to set the property so that the
10852         correct XplatUI call gets made.
10854 2005-12-07  Peter Dennis Bartok  <pbartok@novell.com>
10856         * Control.cs: More fixes to make our key events match MS. We
10857           were not setting the modifier state on KeyData, and we were
10858           not generating any events when Alt was pressed with a key
10859           since handling of WM_SYSxxx was missing for the OnKey methods.
10861 2005-12-07  Jackson Harper  <jackson@ximian.com>
10863         * MdiChildContext.cs: reenable the sizing code.
10864         - When the mouse leaves a window reset its cursor.
10866 2005-12-07  Alexander Olk  <alex.olk@googlemail.com>
10868         * ThemeClearlooks.cs: Reflect latest Hwnd changes
10870 2005-12-07  Peter Dennis Bartok  <pbartok@novell.com>
10872         * Hwnd.cs: Now using the theme 3d bordersize to calculate
10873           widths of Fixed3D borders
10875 2005-12-07  Jackson Harper  <jackson@ximian.com>
10877         * MdiClient.cs: Fix warnings. Earn Mike's love.
10879 2005-12-07  Alexander Olk  <alex.olk@googlemail.com>
10881         * ThemeClearlooks.cs:
10882           - Adjusted mouse over button color
10883           - Added first parts of CheckBox drawing
10884           - Added correct color for selected text background
10885           - Fixed ComboBox drawing
10886           - Added CPDrawBorder3D and CPDrawBorder
10888 2005-12-06  Peter Dennis Bartok  <pbartok@novell.com>
10890         * XplatUIX11.cs: Added call to XBell for AudibleAlert
10892 2005-12-06  Peter Dennis Bartok  <pbartok@novell.com> 
10894         * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs, XplatUIWin32.cs,
10895           XplatUIOSX.cs: Added AudibleAlert() method to have a means to
10896           alert users via sound. We could add an enum arg with different
10897           types of alerts in the future
10899 2005-12-06  Peter Dennis Bartok  <pbartok@novell.com>
10901         * Control.cs: Fix behaviour problems pointed out by Mike
10903 2005-12-05  Mike Kestner  <mkestner@novell.com>
10905         * StatusBarPanel.cs: add Invalidate method and hook it into all the
10906         prop setters.  Calls parent.Refresh for now, but could be maybe be
10907         optimized with an internal method on StatusBar at some point.
10908         [Fixes #76513]
10910 2005-12-05  Peter Dennis Bartok  <pbartok@novell.com> 
10912         * RichTextBox.cs: Implemented get_SelectionColor
10914 2005-12-05  Alexander Olk  <alex.olk@googlemail.com>
10916         * ThemeClearlooks.cs:
10917           - Removed dead code
10918           - Draw black button border only if button is Form.AcceptButton
10919           - Draw correct button color for pressed RadioButton if the mouse 
10920             has entered the button
10921           - Updated ProgressBar drawing!
10922           - Updated CPDrawSizeGrip drawing
10923           - Updated StatusBarPanel drawing
10925 2005-12-05  Mike Kestner  <mkestner@novell.com>
10927         * Control.cs (PreProcessMessage): add Keys.Alt based on LParam value.
10928         * X11Keyboard.cs (SendKeyboardInput): formal lParam for alt mod.
10930 2005-12-04  Alexander Olk  <alex.olk@googlemail.com>
10932         * ThemeClearlooks.cs: Initial check-in, activate with
10933           export MONO_THEME=clearlooks
10934         * ThemeEngine.cs: Added ThemeClearlooks
10936 2005-12-03  Mike Kestner  <mkestner@novell.com>
10938         * MenuAPI.cs: deactivate menus prior to calling item.PerformClick.
10939         [Fixes #76897]
10941 2005-12-02  Jackson Harper  <jackson@ximian.com>
10943         * Form.cs: If the child form has no menu the default main menu is
10944         used as the active menu.
10946 2005-12-02  Peter Dennis Bartok  <pbartok@novell.com> 
10948         * ListBox.cs: Check if any items exist before trying to resolve 
10949           coordinates into items
10951 2005-12-02  Peter Dennis Bartok  <pbartok@novell.com>
10953         * ThemeWin32Classic.cs: Hatchbrush on Win32 seems to always use white
10954           as the second color for the background hatch
10956 2005-12-02  Peter Dennis Bartok  <pbartok@novell.com>
10958         * TextBoxBase.cs: Now uses Jackson's new and improved ImplicitScrollbar
10959         * RichTextBox.cs: FormatText position arguments are 1-based, now making
10960           sure that what we pass to FormatText is always 1-based. Fixes #76885
10962 2005-11-29  Miguel de Icaza  <miguel@novell.com>
10964         * NumericUpDown.cs (EndInit): When we are done initializing,
10965         reflect any updates on the UI.
10967 2005-12-02  Jackson Harper  <jackson@ximian.com>
10969         * ImplicitHScrollBar.cs:
10970         * ImplicitVScrollBar.cs: New scrollbars that don't take focus from
10971         their container controls.
10972         * TreeView.cs: Use the new implicit scrollbars.
10974 2005-12-02  Jackson Harper  <jackson@ximian.com>
10976         * TreeView.cs: Make top_node internal so the TreeNodeCollections
10977         can play with it.
10978         * TreeNodeCollection.cs: If we remove the topnode we need to
10979         update topnode to the next node in line.
10980         - When clearing nodes go through the same process as removing
10981         them, so they get depareneted and checked if they are top node.
10983 2005-12-01  Jackson Harper  <jackson@ximian.com>
10985         * TreeView.cs: When imagelists are used the image area is
10986         selectable as well as the text.
10987         - If there are no selected nodes select the first one.
10988         * TreeNodeCollection.cs: Getting the TreeView is mildly expensive,
10989         so don't do it more then we need to.
10991 2005-12-01  Jackson Harper  <jackson@ximian.com>
10993         * ThemeWin32Classic.cs: Reimplement the scroll arrow drawing so
10994         that arrows can be scaled.
10996 2005-12-01  Jackson Harper  <jackson@ximian.com>
10998         * TreeNode.cs : Fixed bugs that caused FullPathTest + Traverse to
10999         fail. Patch by Dieter Bremes
11001 2005-11-30  Jackson Harper  <jackson@ximian.com>
11003         * Form.cs: Property is 2.0 only
11004         * PrintDialog.cs: Signature fix.
11006 2005-11-30  Peter Dennis Bartok  <pbartok@novell.com>
11008         * TextControl.cs: 
11009           - No longer artificially moves text 2 pixels down (now that we have
11010             borders this is no longer needed)
11011           - Added calcs for left, hanging and right indent
11013 2005-11-23  Mike Kestner  <mkestner@novell.com>
11015         * Menu.cs: mark MenuChanged internal, since it's not exposed by MS.
11017 2005-11-30  Jackson Harper  <jackson@ximian.com>
11019         * MdiChildContext.cs: Set the cloned menus forms, as these don't
11020         get cloned as part of CloneMenu ().
11021         * Menu.cs: Make sure the parent of the items get set correctly
11022         when they are added.  And the owners are notified of the changes.
11023         * Form.cs: Create an ActiveMenu property, so that when MDI is used
11024         we can change the menu being displayed/handled by the form without
11025         changing the menu assosciated with the form.
11026         - Don't let Mdi children draw/handle menus.
11027         
11028 2005-11-30  Jackson Harper  <jackson@ximian.com>
11030         * Menu.cs: Switch the MenuChanged method to OnMenuChanged and add
11031         a MenuChanged event. Just to make the API a little more
11032         consistent.
11033         * MainMenu.cs:
11034         * MenuItem.cs: Use the new OnMenuChanged
11035         * MdiChildContext.cs: Handle menu merging.
11036         * Form.cs: Implement MergedMenu.
11037         
11038 2005-11-30  Jackson Harper  <jackson@ximian.com>
11040         * Menu.cs: We were misusing Add. Add goes behind the specified
11041         index according to the docs, and does not replace the specified
11042         index. So I added an Insert method.
11044 2005-11-30  Peter Dennis Bartok  <pbartok@novell.com>
11046         * TextBoxBase.cs:  Implemented Ctrl-Ins (Copy), Shift-Ins (Paste) and
11047           Shift-Del (Cut), apparently Emacs uses these old Win 2.x keys. This
11048           is for Jackson
11049         * RichTextBox.cs: Added calls to base for DnD events
11051 2005-11-28  Peter Dennis Bartok  <pbartok@novell.com>
11053         * TextControl.cs:
11054           - Fixed drag-selection related crash; style fixes
11055           - Implemented undo class
11056             o Implemented method to capture document state for specified
11057               range in document tree
11058             o Implemented method to restore captured document state
11059             o Implemented cursor tracking
11060             o Implemented basic undo stack
11061           - Added undo cursor tracking to methods altering cursor location
11062           - Added undo tracking to selection deletion (still missing
11063             other text-altering hookups)
11064         * RichTextBox.cs:
11065           - Added SelectionLength property
11066           - Implemented CanPaste()
11067           - Implemented Paste()
11068           - Added missing protected methods
11069           - Fixed RTF->Document conversion; now uses font index 0 and color 
11070             index 0 as the default font for the parsed text
11071           - Fixed RTF<->Document font size translation
11072           - Fixed RTF generation, now properly handles cross-tag boundaries
11073             for single line selection
11074           - No longer always appends blank line to generated RTF
11075           - Removed TODOs
11076           - Added missing attributes
11077           - Hooked up undo-related methods
11078         * TextBoxBase.cs:
11079           - Implemented Copy()
11080           - Implemented Paste()
11081           - Implemented Cut()
11082           - Fixed caret mis-behaviour on backspace across line-boundaries
11084 2005-11-29  Jackson Harper  <jackson@ximian.com>
11086         * MdiClient.cs: Add a method for activating mdi children. Very
11087         basic right now. I imagine someday it might need more girth.
11088         * MenuItem.cs: Implement MDI lists. When mdilist is true the mdi
11089         children windows names are added to the menu item.
11090         * ThemeWin32Classic.cs: Draw the arrow if the item is an
11091         mdilist. This happens regardless of whether or not there are any
11092         mdi windows to see in the list, and according to my tests happens
11093         before the items are even added. Also happens if there isn't even
11094         an mdi client to get windows from.
11096 2005-11-29  Alexander Olk  <alex.olk@googlemail.com>
11098         * ThemeWin32Classic.cs: Make DrawFlatStyleRadioButton protected
11099         * ThemeNice.cs: Fix drawing of flatstyle radiobuttons
11101 2005-11-29  Jordi Mas i Hernandez <jordimash@gmail.com>
11103         * DataGridTableStyle.cs:
11104           - Create always the styles for the missing columns even if they are
11105             provided by the user (not default table style)
11106         * DataGrid.cs:
11107           - Fixes bug 76770
11108           - Fixes SetDataBinding (always re-attach source)
11109           - Fixes SetNewDataSource (only clear styles if they are not for 
11110             this source)
11111          -  Expands OnTableStylesCollectionChanged to handle style refresh 
11112             and remove properly
11114 2005-11-29  Jackson Harper  <jackson@ximian.com>
11116         * FileDialog.cs: Implement missing bits, remove some dead
11117         code.
11118         * FontDialog.cs: Implement missing Apply stuff, and ToString. Move
11119         creation of the panel so that the options set on the dialog are
11120         seen when the panel is created.
11121         * TreeView.cs: raise a click when items are clicked.
11122         
11123 2005-11-29  Jackson Harper  <jackson@ximian.com>
11125         * MdiClient.cs: Pass some signature methods through to base.
11127 2005-11-28  Jackson Harper  <jackson@ximian.com>
11129         * ListView.cs: Raise the click event when items are clicked.
11131 2005-11-28  Jackson Harper  <jackson@ximian.com>
11133         * MdiClient.cs: Make this algorithm even more beautiful.  And fix
11134         a nullref.
11136 2005-11-27  Alexander Olk  <alex.olk@googlemail.com>
11138         * ThemeNice.cs: - Removed 1 pixel bitmaps
11139           - Use SmoothingMode.AntiAlias where it makes sense
11140             (ScrollButton arrow for example)
11141           - Enhanced Button focus drawing
11142           - Fixed ComboBox drawing (no artefacts anymore, focus
11143             rectangle is back again, reduced size of ComboButton, etc.)
11144           - Fixed RadioButton focus drawing for Appearence.Button
11145           - Slight ScrollButton redesign
11146           - Some LinearGradientBrush size fixes
11147           - GroupBoxes have now rounded edges
11148           - Fixed StatusBar drawing
11150 2005-11-25  Alexander Olk  <alex.olk@googlemail.com>
11152         * ThemeNice.cs: - Remove dead code
11153           - use correct background colors for menus, etc.
11154           - Fake pixel drawing with 1 pixel bitmaps
11156 2005-11-24  Jackson Harper  <jackson@ximian.com>
11158         * MdiClient.cs: Size the scrollbars when resizing the window.
11159         - Resize the maximized windows when the client is resized
11160         * Form.cs: Make the child context available
11161         
11162 2005-11-23  Jackson Harper  <jackson@ximian.com>
11164         * MdiChildContext.cs: Don't size windows if they are maximized.
11166 2005-11-23  Mike Kestner  <mkestner@novell.com>
11168         * ContextMenu.cs: use MenuTracker.
11169         * Control.cs: remove menu handle usage.
11170         * Form.cs: remove menu handle usage.
11171         * Hwnd.cs: remove menu handle usage.
11172         * MainMenu.cs: Draw method moved here from MenuAPI.DrawMenuBar. Proxy
11173         motion and clicks to the new Tracker handlers.
11174         * Menu.cs: add sizing accessors, SelectedItem prop, kill CreateItems
11175         and handle usage.
11176         * MenuAPI.cs: refactored to combine popup and menubar event handling.
11177         Killed the MENU and MENUITEM data types and associated collections
11178         since we now keep the info on Menu and MenuItem. Expanded TRACKER into
11179         MenuTracker class that exposes the leftovers from the old MenuAPI
11180         static methods. Restructured Capture handling so that only one grab is
11181         done for the entire menu hierarchy instead of handing off grabs to
11182         submenus. Tracker now has an invisible control to Capture when active.
11183         * MenuItem.cs: add sizing accessors, kill Create
11184         and handle usage.
11185         * Theme.cs: remove menu handle and MENU(ITEM) usage.
11186         * ThemeWin32Classic.cs: use Menu/MenuItem sizing props instead of
11187         MENU(ITEM). remove menu handle usage, use Menu directly.
11188         * XplatUIDriver.cs: remove menu handle usage.
11189         * XplatUIOSX.cs: remove menu handle usage.
11190         * XplatUIWin32.cs: remove menu handle usage.
11191         * XplatUIX11.cs: remove menu handle usage.
11193 2005-11-22  Jackson Harper  <jackson@ximian.com>
11195         * Hwnd.cs: Don't compute the menu size for
11196         DefaultClientRectangle.
11197         - Reenable menu sizes being computed for GetClienRectangle.
11198         * Form.cs: Remove comment of trechery
11199         
11200 2005-11-22  Jackson Harper  <jackson@ximian.com>
11202         * Hwnd.cs: The adjustments for the menu bar are made when it is
11203         attached to the form.
11205 2005-11-19  Jackson Harper  <jackson@ximian.com>
11207         * XplatUIX11.cs: Create an HGRN of the invalid area for WM_NCPAINT
11208         (just like on windows).
11210 2005-11-19  Jackson Harper  <jackson@ximian.com>
11212         * MdiChildContext.cs: Handle all the buttons ourselves. We can't
11213         use real buttons anymore because they are in non client area. The
11214         one TODO here is that I need to somehow invalidate a section of
11215         the non client area.
11217 2005-11-18  Jackson Harper  <jackson@ximian.com>
11219         * Control.cs: Put the enum check back in now that MDI doesnt have
11220         to use this to set border styles.
11221         * Form.cs: Only set mdi child windows borders if the handle has
11222         been created.
11223         * MdiChildContext.cs: Don't set the InternalBorderStyle, just pass
11224         this directly on to the driver.
11225         - Get the move start position before adjusting for the titlebar
11226         height, this fixes the windows "skipping" when they are first
11227         moved.
11229 2005-11-18  Jackson Harper  <jackson@ximian.com>
11231         * XplatUIX11.cs: Just compute the mdi borders separately as they
11232         don't totally match up with normal form borders.
11234 2005-11-18  Jackson Harper  <jackson@ximian.com>
11236         * Control.cs: Set WS_ styles for borders, so that the driver does
11237         not have to retrieve the control instance to figure out what kind
11238         of borders it should have.
11239         * Form.cs: Set the WS_EX_MDICHILD flag on mdi children, so the
11240         driver can know its an mdi child easily.
11241         * XplatUIX11.cs: Get the border styles and whether the window is
11242         MDI from the Styles and ExStyles params instead of having to get a
11243         control. This prevents a chicken and egg problem.       
11245 2005-11-18  Jackson Harper  <jackson@ximian.com>
11247         * MdiClient.cs: Fix typo so scrollbars show up correctly.
11249 2005-11-18  Jackson Harper  <jackson@ximian.com>
11251         * MdiClient.cs: Calculate when to add and remove scrollbars
11252         correctly.
11253         * MdiChildContext.cs: Adjust the y position to take the titlebar
11254         into account.
11255         - No height for FormBorderStyle.None
11257 2005-11-18  Jackson Harper  <jackson@ximian.com>
11259         * Control.cs: Allow non enum values to be used for
11260         InternalBorderStyle.  MDI does this to set a special border style.
11261         - New utility methods for converting points to/from client coords
11262         - Add the newly created control to the Controls collection before
11263         updating its style. This way UpdateStyle can walk the control
11264         heirarchy to find the control if needed.
11265         so I don't need to create a new Point object all the time.
11266         * Form.cs: Let MDI windows handle their border styles.
11267         - Set styles on MDI windows so the correct title style is derived.
11268         * MdiChildContext.cs: Move all the painting and window handling
11269         into the non client area.
11270         - Use correct sizing and put correct buttons on frames based on
11271         the FormBorderStyle.
11272         - Notify the mdi client about scrolling
11273         - Need to handle the buttons ourselves now, because they are all
11274         in non client areas and we can't add controls there.
11275         * MdiClient.cs: Halfway to scrolling, this implementation is
11276         somewhat broken though, we need to check to make sure other
11277         windows aren't causing scrolling before removing the bars. Also
11278         the bars need to be drawn on top, maybe I can switch implicit
11279         controls to be on top.
11280         * Hwnd.cs: caption_height and tool_caption_height are now
11281         properties of an hwnd, this way they can be set by the driver
11282         based on the type of window they are.  In X11 the window manager
11283         handles the decorations so caption_height is zero unless its an
11284         MDI window.
11285         - Add 3 pixel borders for MDI windows (0xFFFF).
11286         - Get rid of some code duplication, have DefaultClientRectanle
11287         just call GetClientRectangle.
11288         * XplatUIX11.cs: Pass caption_height and tool_caption_height to
11289         Hwnd now.
11290         - Set border styles differently for mdi windows.
11291         * XplatUIOSX.cs: Pass caption_height and tool_caption_height to
11292         Hwnd now.
11293         
11294 2005-11-15  Mike Kestner  <mkestner@novell.com>
11296         * Menu.cs: when adding an item to the collection, if item is already 
11297         parented, remove it from the parent.
11299 2005-11-13  Alexander Olk  <alex.olk@googlemail.com>
11301         * X11DesktopColors.cs: Added KDE support
11303 2005-11-11  Peter Dennis Bartok  <pbartok@novell.com>
11305         * XplatUIWin32.cs: 
11306           - Clipboard methods now can translate Rtf format
11307           - No longer removes clipboard contents whenever a new format is added
11308             to allow placing multiple formats on the clipboard
11309         * Clipboard.cs: Clipboard now supports getting a IDataObject and
11310           will place all formats contained in it onto the clipboard. Also
11311           now cleans the clipboard before placing a new object onto it
11312         * RichTextBox.cs:
11313           - Implemented set_Rtf
11314           - Implemented set_SelectedRtf
11315           - Created InsertRTFFromStream() method to allow single code base
11316             for all properties and methods that insert RTF into document
11317           - Removed debug output
11318         * TextControl.cs:
11319           - Fixed Delete(int) to fix up line numbers
11320           - Fixed ReplaceSelection to combine start and end line
11321           - Fixed serious DeleteChars bug that would leave the document tree
11322             broken
11323           - Improved DumpTree with several logic checks to detect broken
11324             document trees
11325           - Removed debug lines
11326           - Fixed Caret.WordForward/WordBack moving code, now always also 
11327             updates caret.tag (fixes crash when word-selecting across tag
11328             boundaries via keyboard)
11329           - Added Insert() method for inserting multiline text into documents
11330           - Fixed DeleteChars() calculation errors that would cause a broken
11331             tag chain with multiple tag lines
11332           - DeleteChars() no longer crashes on multi-tag lines if not all tags
11333           - Split() no longer moves caret if split is at caret location
11334           - ReplaceSelection() now updates the cursor and re-displays it
11335           - ReplaceSelection() now uses new Insert() method to avoid code
11336             duplication
11337           - FormatText() can now handle formatting partial lines
11338         * TextBoxBase.cs:
11339           - Append now uses new TextControl.Insert() method (this avoids 
11340             duplicate code)
11341           - Implemented Ctrl-X (Cut) (
11342           - Implemented Ctrl-C (Copy)
11343           - Implemented Ctrl-V (Paste) (Still some bugs related to screen 
11344             regeneration when pasting text; roundtripping Copy&Paste within
11345             edit control still fails due to some calculation bugs in GenerateRTF)
11346           - The Delete key will now remove the current selection if it is visible
11347         * TextBox.cs: Removed debug lines
11348         * XplatUI.cs: Trigger initialization of DataFormats (which requires the
11349           driver to be initialized and can't therefore be done via a static ctor)
11351 2005-11-10  Peter Dennis Bartok  <pbartok@novell.com>
11353         * TextControl.cs: Added backend code for finding char arrays and strings
11354         * TextBoxBase.cs:
11355           - Added mouse wheel scroll support
11356           - Added support for VScroll and HScroll events
11357         * RichTextBox.cs:
11358           - Implemented all seven Find() variants
11359           - Implemented GetCharFromPosition()
11360           - Implemented GetCharIndexFromPosition()
11361           - Implemented GetLineFromIndex()
11362           - Implemented GetPositionFromCharIndex();
11363           - Implemented SaveFile for PlainText and UnicodeText
11364           - Fixed set_Font, now setting a new font applies that font to
11365             the whole document
11366           - Implemented generic Document to RTF converter
11367           - Implemented SaveFile for RichText format (still missing unicode
11368             conversion for non-ansi chars)
11369           - Implemented get_Rtf
11370           - Implemented get_SelectedRtf
11372 2005-11-09  Peter Dennis Bartok  <pbartok@novell.com>
11374         * Control.cs (WndProc): Call HandleClick after having sent OnMouseUp
11375           to allow any captures to be released before triggering OnClick. This
11376           way a click handler may capture the mouse without interference.
11377         * XplatUIX11.cs: Always send mouse messages to grab window if one exists.
11378           This way we send them even though X may not allow a grab (if the window
11379           isn't visible, for example)
11381 2005-11-08  Pedro Martinez Julia <pedromj@gmail.com>
11383         * DataGridViewRowEventArgs.cs: DataGridView implementation
11384         * DataGridViewElement.cs: DataGridView implementation
11385         * DataGridViewComboBoxCell.cs: DataGridView implementation
11386         * DataGridViewDataErrorContexts.cs: DataGridView implementation
11387         * DataGridViewCellErrorTextNeededEventArgs.cs: DataGridView implementation
11388         * DataGridViewColumnHeadersHeightSizeMode.cs: DataGridView implementation
11389         * ImageLayout.cs: DataGridView implementation
11390         * DataGridViewComboBoxColumn.cs: DataGridView implementation
11391         * DataGridViewCellMouseEventHandler.cs: DataGridView implementation
11392         * DataGridViewSelectionMode.cs: DataGridView implementation
11393         * IDataGridViewEditingControl.cs: DataGridView implementation
11394         * DataGridViewSortCompareEventHandler.cs: DataGridView implementation
11395         * DataGridViewCellStyleContentChangedEventHandler.cs: DataGridView implementation
11396         * DataGridViewAutoSizeModeEventHandler.cs: DataGridView implementation
11397         * DataGridViewColumnStateChangedEventHandler.cs: DataGridView implementation
11398         * DataGridViewColumnSortMode.cs: DataGridView implementation
11399         * DataGridView.cs: DataGridView implementation
11400         * DataGridViewRowStateChangedEventHandler.cs: DataGridView implementation
11401         * DataGridViewRowPostPaintEventArgs.cs: DataGridView implementation
11402         * DataGridViewDataErrorEventArgs.cs: DataGridView implementation
11403         * Padding.cs: DataGridView implementation
11404         * DataGridViewCellParsingEventArgs.cs: DataGridView implementation
11405         * DataGridViewCellStateChangedEventHandler.cs: DataGridView implementation
11406         * DataGridViewRowEventHandler.cs: DataGridView implementation
11407         * DataGridViewCellPaintingEventHandler.cs: DataGridView implementation
11408         * DataGridViewCellFormattingEventHandler.cs: DataGridView implementation
11409         * DataGridViewButtonCell.cs: DataGridView implementation
11410         * DataGridViewCellStyleContentChangedEventArgs.cs: DataGridView implementation
11411         * DataGridViewEditMode.cs: DataGridView implementation
11412         * DataGridViewCellValueEventArgs.cs: DataGridView implementation
11413         * DataGridViewRowCancelEventArgs.cs: DataGridView implementation
11414         * DataGridViewRowHeadersWidthSizeMode.cs: DataGridView implementation
11415         * DataGridViewCheckBoxColumn.cs: DataGridView implementation
11416         * DataGridViewCellToolTipTextNeededEventHandler.cs: DataGridView implementation
11417         * DataGridViewAutoSizeColumnsMode.cs: DataGridView implementation
11418         * DataGridViewCellEventHandler.cs: DataGridView implementation
11419         * DataGridViewEditingControlShowingEventHandler.cs: DataGridView implementation
11420         * DataGridViewCellStyleConverter.cs: DataGridView implementation
11421         * DataGridViewSelectedRowCollection.cs: DataGridView implementation
11422         * DataGridViewBindingCompleteEventHandler.cs: DataGridView implementation
11423         * DataGridViewColumnEventArgs.cs: DataGridView implementation
11424         * DataGridViewRowHeightInfoPushedEventHandler.cs: DataGridView implementation
11425         * DataGridViewRowContextMenuStripNeededEventHandler.cs: DataGridView implementation
11426         * QuestionEventArgs.cs: DataGridView implementation
11427         * IDataGridViewEditingCell.cs: DataGridView implementation
11428         * DataGridViewTriState.cs: DataGridView implementation
11429         * DataGridViewColumnDesignTimeVisibleAttribute.cs: DataGridView implementation
11430         * DataGridViewCellStateChangedEventArgs.cs: DataGridView implementation
11431         * DataGridViewColumnCollection.cs: DataGridView implementation
11432         * DataGridViewCellValueEventHandler.cs: DataGridView implementation
11433         * DataGridViewRowDividerDoubleClickEventHandler.cs: DataGridView implementation
11434         * DataGridViewCellFormattingEventArgs.cs: DataGridView implementation
11435         * DataGridViewColumn.cs: DataGridView implementation
11436         * DataGridViewCellBorderStyle.cs: DataGridView implementation
11437         * DataGridViewCellContextMenuStripNeededEventHandler.cs: DataGridView implementation
11438         * DataGridViewCellValidatingEventArgs.cs: DataGridView implementation
11439         * DataGridViewRow.cs: DataGridView implementation
11440         * DataGridViewImageCellLayout.cs: DataGridView implementation
11441         * DataGridViewImageCell.cs: DataGridView implementation
11442         * DataGridViewTopLeftHeaderCell.cs: DataGridView implementation
11443         * DataGridViewCheckBoxCell.cs: DataGridView implementation
11444         * DataGridViewHeaderCell.cs: DataGridView implementation
11445         * DataGridViewCellErrorTextNeededEventHandler.cs: DataGridView implementation
11446         * DataGridViewRowHeightInfoPushedEventArgs.cs: DataGridView implementation
11447         * DataGridViewAutoSizeColumnsModeEventHandler.cs: DataGridView implementation
11448         * DataGridViewTextBoxColumn.cs: DataGridView implementation
11449         * QuestionEventHandler.cs: DataGridView implementation
11450         * DataGridViewCellStyleScopes.cs: DataGridView implementation
11451         * DataGridViewSortCompareEventArgs.cs: DataGridView implementation
11452         * DataGridViewCellContextMenuStripNeededEventArgs.cs: DataGridView implementation
11453         * DataGridViewCell.cs: DataGridView implementation
11454         * DataGridViewCellEventArgs.cs: DataGridView implementation
11455         * DataGridViewClipboardCopyMode.cs: DataGridView implementation
11456         * DataGridViewCellStyle.cs: DataGridView implementation
11457         * DataGridViewColumnHeaderCell.cs: DataGridView implementation
11458         * DataGridViewRowPrePaintEventHandler.cs: DataGridView implementation
11459         * DataGridViewRowCancelEventHandler.cs: DataGridView implementation
11460         * TextFormatFlags.cs: DataGridView implementation
11461         * DataGridViewCellToolTipTextNeededEventArgs.cs: DataGridView implementation
11462         * DataGridViewDataErrorEventHandler.cs: DataGridView implementation
11463         * DataGridViewAdvancedCellBorderStyle.cs: DataGridView implementation
11464         * DataGridViewCellPaintingEventArgs.cs: DataGridView implementation
11465         * DataGridViewButtonColumn.cs: DataGridView implementation
11466         * DataGridViewRowsRemovedEventArgs.cs: DataGridView implementation
11467         * HandledMouseEventArgs.cs: DataGridView implementation
11468         * DataGridViewCellParsingEventHandler.cs: DataGridView implementation
11469         * DataGridViewColumnDividerDoubleClickEventHandler.cs: DataGridView implementation
11470         * DataGridViewCellMouseEventArgs.cs: DataGridView implementation
11471         * DataGridViewAutoSizeRowsMode.cs: DataGridView implementation
11472         * DataGridViewRowCollection.cs: DataGridView implementation
11473         * DataGridViewAdvancedBorderStyle.cs: DataGridView implementation
11474         * DataGridViewCellCancelEventHandler.cs: DataGridView implementation
11475         * DataGridViewHitTestType.cs: DataGridView implementation
11476         * DataGridViewAutoSizeModeEventArgs.cs: DataGridView implementation
11477         * DataGridViewColumnStateChangedEventArgs.cs: DataGridView implementation
11478         * DataGridViewColumnEventHandler.cs: DataGridView implementation
11479         * DataGridViewRowDividerDoubleClickEventArgs.cs: DataGridView implementation
11480         * DataGridViewAutoSizeRowMode.cs: DataGridView implementation
11481         * DataGridViewRowHeightInfoNeededEventArgs.cs: DataGridView implementation
11482         * DataGridViewRowsDeletedEventArgs.cs: DataGridView implementation
11483         * DataGridViewTextBoxEditingControl.cs: DataGridView implementation
11484         * DataGridViewContentAlignment.cs: DataGridView implementation
11485         * DataGridViewRowPostPaintEventHandler.cs: DataGridView implementation
11486         * DataGridViewComboBoxEditingControl.cs: DataGridView implementation
11487         * DataGridViewCellValidatingEventHandler.cs: DataGridView implementation
11488         * DataGridViewSelectedColumnCollection.cs: DataGridView implementation
11489         * DataGridViewPaintParts.cs: DataGridView implementation
11490         * DataGridViewCellCollection.cs: DataGridView implementation
11491         * DataGridViewRowsAddedEventArgs.cs: DataGridView implementation
11492         * DataGridViewImageColumn.cs: DataGridView implementation
11493         * DataGridViewRowsRemovedEventHandler.cs: DataGridView implementation
11494         * DataGridViewElementStates.cs: DataGridView implementation
11495         * DataGridViewRowHeightInfoNeededEventHandler.cs: DataGridView implementation
11496         * DataGridViewColumnDividerDoubleClickEventArgs.cs: DataGridView implementation
11497         * DataGridViewRowPrePaintEventArgs.cs: DataGridView implementation
11498         * DataGridViewRowStateChangedEventArgs.cs: DataGridView implementation
11499         * DataGridViewEditingControlShowingEventArgs.cs: DataGridView implementation
11500         * DataGridViewCellCancelEventArgs.cs: DataGridView implementation
11501         * DataGridViewRowHeaderCell.cs: DataGridView implementation
11502         * DataGridViewBindingCompleteEventArgs.cs: DataGridView implementation
11503         * DataGridViewTextBoxCell.cs: DataGridView implementation
11504         * DataGridViewBand.cs: DataGridView implementation
11505         * DataGridViewAutoSizeColumnModeEventArgs.cs: DataGridView implementation
11506         * DataGridViewHeaderBorderStyle.cs: DataGridView implementation
11507         * DataGridViewRowsAddedEventHandler.cs: DataGridView implementation
11508         * DataGridViewAutoSizeColumnMode.cs: DataGridView implementation
11509         * DataGridViewAutoSizeColumnModeEventHandler.cs: DataGridView implementation
11510         * DataGridViewAutoSizeColumnsModeEventArgs.cs: DataGridView implementation
11511         * DataGridViewRowErrorTextNeededEventHandler.cs: DataGridView implementation
11512         * DataGridViewSelectedCellCollection.cs: DataGridView implementation
11513         * DataGridViewRowContextMenuStripNeededEventArgs.cs: DataGridView implementation
11514         * DataGridViewRowErrorTextNeededEventArgs.cs: DataGridView implementation
11515         * DataGridViewComboBoxDisplayStyle.cs: DataGridView implementation
11517 2005-11-08  Peter Dennis Bartok  <pbartok@novell.com>
11519         * ThemeWin32Classic.cs: 
11520           - Draw the outside focus rectangle around buttons
11521           - Use CPDrawFocusRectangle to draw focus rectangles until Cairo
11522             doesn't use end caps for every dash of a line anymore. This
11523             workaround ignores the forecolor.
11525 2005-11-08  Kornél Pál  <kornelpal@hotmail.com>
11527         * ImageList.cs: Don't use ArgbColor with LayoutKind.Explicit as it isn't
11528           endian safe.
11530 2005-11-07  Jackson Harper  <jackson@ximian.com>
11532         * X11Dnd.cs: Set the X/Y positions on the DragEventArgs correctly.
11534 2005-11-07  Jackson Harper  <jackson@ximian.com>
11536         * ScrollableControl.cs: Calculate the maximum and change vars
11537         (more) correctly so that scrollbars appear as a sensible size.
11539 2005-11-04  Jackson Harper  <jackson@ximian.com>
11541         * TreeNodeCollection.cs: Refresh when nodes are cleared from the
11542         collection.
11543         * TreeView.cs: When the tree is sorted null out the top_node so
11544         that it is recalculated.
11545         - Use dotted lines instead of dashed lines to match MS better.
11547 2005-11-04  Jordi Mas i Hernandez <jordimash@gmail.com>
11549         * ListView.cs: 
11550           - Implements key search for items. Useful when browsing files with FileDialog
11551           - When changing view mode or when clear the items reset scrollbar positions
11553 2005-11-04  Jackson Harper  <jackson@ximian.com>
11555         * CurrencyManager.cs: Implement the MetaDataChanged event, the
11556         Reset method, and the CheckEmpty. CheckEmpty is just a total guess
11557         as to what the method may do as there is no real way of creating a
11558         derived CurrencyManager and calling the method. 
11560 2005-11-03  Jackson Harper  <jackson@ximian.com>
11562         * ThemeWin32Classic.cs: Implement ownerdrawing in the tab control
11563         * TabControl.cs: Add Ownerdrawing bits, add the UpdateTabSelection
11564         method which seems to just be used internally to refresh the tabs.
11566 2005-11-03  Jackson Harper  <jackson@ximian.com>
11568         * TabControl.cs: Implement the remove method. Fix some broken
11569         comments.
11571 2005-11-03  Peter Dennis Bartok  <pbartok@novell.com>
11573         * DateTimePicker.cs:
11574           - Added missing DateTimePickerAccessibleObject class
11575           - Added missing events
11576           - Added OnFontChanged method
11577         * Form.cs: Added missing attributes
11578         * TreeView.cs: Added missing attributes
11580 2005-11-03  Peter Dennis Bartok  <pbartok@novell.com> 
11582         * GridItemCollection.cs: Fix signatures
11584 2005-11-03  Peter Dennis Bartok  <pbartok@novell.com>
11586         * XplatUI.cs: Updated build rev/date
11587         * ComboBox.cs, DataGridTextBoxColumn.cs Control.cs, 
11588           DataGridTableStyle.cs, DataGrid.cs, DateTimePicker.cs: Signature fixes
11589         * Application.cs: Trigger context-specific ExitThread events
11591 2005-11-03  Jackson Harper  <jackson@ximian.com>
11593         * Menu.cs:
11594         * MainMenu.cs:
11595         * GridTableStylesCollection.cs:
11596         * Timer.cs:
11597         * TabPage.cs:
11598         * HelpProvider.cs:
11599         * StatusBar.cs:
11600         * MonthCalendar.cs: Signature fixes
11602 2005-11-03  Jackson Harper  <jackson@ximian.com>
11604         * TreeNodeCollection.cs: Remove should not be virtual.
11605         * TreeView.cs: Implement the last of the missing methods.
11607 2005-11-03  Jackson Harper  <jackson@ximian.com>
11609         * TreeNodeConverter.cs: Implement to get off my class-status back.
11611 2005-11-03  Jackson Harper  <jackson@ximian.com>
11613         * TreeView.cs: Hookup the bits for drag and drop.
11614         * TreeNode.cs: Don't cache the tree_view or index anymore, now
11615         that nodes can be moved from tree to tree easily this just causes
11616         all sorts of problems.
11617         * TreeNodeCollection: Don't need to give treenodes an index and
11618         treeview anymore when they are added, these are computed on the
11619         fly. Also make sure to remove a node before its added.
11621 2005-11-03  Peter Dennis Bartok  <pbartok@novell.com>
11623         * TextControl.cs:
11624           - Added CaretSelection enum
11625           - Added comparison methods to Marker struct, makes selection code
11626             more readable
11627           - Added SelectionStart and SelectionEnd as 'moveable' location for
11628             the CaretDirection enum and handler
11629           - Added selection_prev variable to track optimized invalidation for
11630             word and line selection
11631           - Added SelectionVisible property (returns true if there is a valid 
11632             selection)
11633           - Switched CaretHasFocus to only display the caret if there is no
11634             visible selection
11635           - Avoiding StringBuilder.ToString to retrieve a single char, instead
11636             using the direct character index; should be much faster
11637           - Added various conditional debug statements
11638           - Fixed invalidation calculation for selection ranges
11639           - Added ExpandSelection() method to support word and line selection
11640           - Switched SetSelectionToCaret to use new Marker compare overloads
11641           - Added central IsWordSeparator() method to determine word 
11642             separators/whitespace and FindWordSeparator() to streamline common
11643             usage of IsWordSeparator()
11644         * TextBoxBase.cs:
11645           - Removed unneeded grabbed variable, it was just mirroring
11646             Control.Capture
11647           - No longer firing OnTextChanged event when Text setter is called,
11648             since the base will fire the event for us
11649           - Added handling of Ctrl-Up/Down selection
11650           - Added handling of Shift-Cursorkey selection
11651           - Added handling for Ctrl-Delete and Ctrl-Backspace to remove
11652             words
11653           - Added handling of Shift and Ctrl-Shift-Home/End selection
11654           - Removed some debug output
11655           - Added handling for single/double/tripple-click to place caret/
11656             select word/select line respectively (Fixes bug #76031)
11657           - Added support for drag expansion of word/line selection
11658         * RichTextBox.cs: Handle GotFocus event to trigger redrawing of
11659           current selection
11661 2005-11-02  Jackson Harper  <jackson@ximian.com>
11663         * X11Dnd.cs: If the drag is going to and from a MWF window just
11664         copy the data instead of sending it out through the X Selection
11665         mechanism.
11667 2005-11-02  Jackson Harper  <jackson@ximian.com>
11669         * X11Dnd.cs:
11670         * XplatUIX11.cs: When in a drag we don't want motion notify
11671         messages to get passed on to the other controls. This prevents
11672         mouse move messages from showing up in the drag source.
11674 2005-11-02  Jackson Harper  <jackson@ximian.com>
11676         * X11Dnd.cs: Remove unneeded call to XAllowEvents.  Make sure that
11677         the correct button is release to end a drag.
11678         * XplatUIX11.cs: Make the button state internal so the drag system
11679         can access it.  Dragging needs to know about all button releases,
11680         not just left button.
11682 2005-11-02  Miguel de Icaza  <miguel@novell.com>
11684         * Form.cs (Icon): If the icon is null, reset the icon to the
11685         default value. 
11687         * Cursor.cs: When writing the AND-mask bitmap do not include the
11688         number of colors, but hardcode those to two (black and white),
11689         fixes the loading of color cursors (Paint Dot Net).
11691         * Form.cs: To debug, allow MONO_MWF_SCALING=disable variable to
11692         turn off autoscaling.
11694         * Cursor.cs: Allow resource type to be 1 or 2 (from ImageMagic).
11696 2005-11-02  Jackson Harper  <jackson@ximian.com>
11698         * X11Dnd.cs: Make sure to send a status message if the pointer
11699         enters a control that can not accept a drop, otherwise the cursor
11700         isn't updated correctly. Also tried to compress the lines of code
11701         a bit.
11703 2005-11-02  Jackson Harper  <jackson@ximian.com>
11705         * X11Dnd.cs: Change cursors based on drag action. Also attempt to
11706         set actions correctly.  This isn't perfect as XDND and win32 have
11707         some differences on how you allow actions. I'll clear this up by
11708         adding a path for drag from MWF to MWF windows.
11709         * XplatUIX11.cs: Hook into the dnd system.
11711 2005-11-02  Jordi Mas i Hernandez <jmas@softcatala.org>
11713         * ListView.cs: Fixes scroll bar visibility. Hide them if they were
11714         previously shown but they are no longer need it. Very obvious when 
11715         browsing files with FileDialog.
11717 2005-11-01  Peter Dennis Bartok  <pbartok@novell.com>
11719         * Control.cs: We always need to call OnPaintBackground. We pretty much
11720           ignore AllPaintingInWmPaint and always do the painting there, whether 
11721           it's set or not, since we always ignore the WM_ERASEBKGND message 
11722           (which we don't generate on X11). This fixes #76616.
11723         * Panel.cs: Removed unneeded background painting. This happens properly
11724           in Control.cs already
11726 2005-10-31  Mike Kestner  <mkestner@novell.com>
11728         * Menu.cs: Add items to collection before setting their index.
11729         * MenuItem.cs : add range checking with ArgumentException like MS.
11730         [Fixes #76510]
11732 2005-10-31  Jackson Harper  <jackson@ximian.com>
11734         * ListBox.cs: Invalidate if the area is visible at all not just
11735         contained in the visible rect. Fixes unselection of semi visible
11736         items.
11738 2005-10-31  Jackson Harper  <jackson@ximian.com>
11740         * Control.cs: Consistently name the dnd methods. Make them
11741         internal so we can override them to match some MS behavoir
11742         internally.
11743         * Win32DnD.cs: Use the new consistent names.
11745 2005-10-31  Jackson Harper  <jackson@ximian.com>
11747         * TreeView.cs: Don't draw the selected node when we lose focus.
11749 2005-10-31  Jackson Harper  <jackson@ximian.com>
11751         * X11Dnd.cs: We still need to reset the state even though a full
11752         reset isn't being done, otherwise status's still get sent all over
11753         the place.
11755 2005-10-31  Jackson Harper  <jackson@ximian.com>
11757         * Control.cs: Make the dnd_aware flag internal so the dnd
11758         subsystem can check it. Catch exceptions thrown in dnd handlers to
11759         match MS behavoir.
11760         * Hwnd.cs: Add a flag for whether or not a window is dnd aware.
11761         * X11Dnd.cs: Handle null data in the converters. Set the XDND
11762         version when sending a XdndEnter. Use the control/hwnd dnd_aware
11763         flags to reduce the number of dnd enters/status's sent.
11765 2005-10-31  Jackson Harper  <jackson@ximian.com>
11767         * X11Dnd.cs: Don't need the sizeof here. Patch by Jordi Mas.
11769 2005-10-31  Jordi Mas i Hernandez <jordi@ximian.com>
11771         * PictureBox.cs: Fixes 76512
11773 2005-10-28  Jackson Harper  <jackson@ximian.com>
11775         * X11Dnd.cs: Early implementation to support winforms being a drag
11776         source for data on X11. Also restructured the converters so they
11777         can go both ways now.
11778         * XplatUIX11.cs: Tie ins to the the Dnd stuff.
11779         
11780 2005-10-27  Peter Dennis Bartok  <pbartok@novell.com>
11782         * XplatUIX11.cs: Fixed FIXME - implemented ASCII encoding for XA_STRING
11783           clipboard requests
11785 2005-10-27  Jackson Harper  <jackson@ximian.com>
11787         * TreeNode.cs: Implement serialization so my DnD examples will work.
11789 2005-10-24  Kornél Pál  <kornelpal@hotmail.com>
11791         * ButtonBase.cs, ListView.cs, NotifyIcon.cs, PictureBox.cs, ToolBar.cs,
11792           TreeView.cs: Don't dispose objects that are not owned.
11793           
11794 2005-10-24  Peter Dennis Bartok  <pbartok@novell.com>
11796         * Cursor.cs: Defaulting the Current cursor to Cursors.Default. We
11797           should retrieve the current cursor and report that, but XplatUI
11798           doesn't (yet) have an interface for that (and I'm not sure I even
11799           can, on X11)
11800         * XplatUIWin32.cs: Fixed override behaviour. The override is temporary,
11801           until any message loop processing is done (and the WM_SETCURSOR
11802           replaces the cursor to the proper one)
11803         * XplatUIX11.cs: 
11804           - Fixed override behaviour, we can't set the cursor globally on X11, 
11805             just for our windows.
11806           - Invalidating the System.Drawing X11 display handle when we are
11807             shutting down
11808         * Control.cs: Fix to make csc happy
11810 2005-10-23  Peter Dennis Bartok  <pbartok@novell.com>
11812         * TextBoxBase.cs: 
11813           - get_Text: Add last line (without trailing newline) to returned
11814             value (Fixes 76212)
11815           - get_TextLength: Count last line in returned length
11816           - ToString: Call Text property instead of duplicating code
11818 2005-10-23  Kornél Pál  <kornelpal@hotmail.com>
11820         * ImageList.cs: Dispose ImageAttributes objects.
11822 2005-10-22  Kornél Pál  <kornelpal@hotmail.com>
11824         * ImageList.cs: Use attribute constructors with less arguments where
11825           possible.
11827 2005-10-22  Kornél Pál  <kornelpal@hotmail.com>
11829         * ImageList.cs: Added lastKeyIndex field and use in IndexOfKey.
11830           Use typeof instead of strings when assembly is referenced. Added
11831           some more comments.
11833 2005-10-21  Jackson Harper  <jackson@ximian.com>
11835         * ListView.cs: Raise a double click event. Also tried to somewhat
11836         fix when the selectedindexchanged event is raised. Its still
11837         broken though.
11839 2005-10-21  Jackson Harper  <jackson@ximian.com>
11841         * TreeView.cs: New method to invalidate the plus minus area of a
11842         node without invalidating the whole node (maybe this can be used
11843         in some more places).
11844         * TreeNodeCollection.cs: When adding to an empty node we need to
11845         invalidate its plus minus area so the little block shows up.
11846         
11847 2005-10-21  Jackson Harper  <jackson@ximian.com>
11849         * TreeView.cs: Make sure that when we invalidate a node the bounds
11850         are big enough to cover the selected box and the focus
11851         rectangle. Use a different colour for the lines connecting nodes
11852         so they show up with all themes.
11854 2005-10-21  Peter Dennis Bartok  <pbartok@novell.com>
11856         * NativeWindow.cs: Don't call anything that could call into the driver,
11857           we might be on a different thread.
11859 2005-10-21  Peter Dennis Bartok  <pbartok@novell.com> 
11861         * Control.cs(Dispose): Since Dispose might run on a different thread,
11862           make sure that we call methods that could call into the driver via
11863           invoke, to avoid thread issues
11865 2005-10-21  Peter Dennis Bartok  <pbartok@novell.com>
11867         * XplatUI.cs: Removed finalizer
11868         * XplatUIX11.cs: Removed Destructor, was causing crashes due to X11
11869           not allowing to be called on the finalizer thread.
11871 2005-10-21  Kornél Pál  <kornelpal@hotmail.com>
11873         * ImageList.cs:
11874           - Reverted r51889 and r51891.
11875           - Added ImageListItem class that stores unmodified image items and image
11876             properties required to create list images until handle is created.
11877           - Added AddItem and moved image creation logic to AddItemInternal.
11878           - Added CreateHandle method that creates images based on unmodified items.
11879           - Added DestroyHandle that changes state to store unmodified items.
11880           - Add and AddStrip methods no more create handle.
11881           - ReduceColorDepth has no return value.
11882           - Dispose destroys handle.
11883           - Modified other methods to reflect the above changes.
11884           - Implemented key support.
11885           - Added profile 2.0 members and attributes.
11886           - Added private Reset and ShouldSerialize methods that provide the same
11887             behavior as MS.NET but the Visual Studio .NET designer seems to ignore
11888             them as they are private.
11889           - Added some more comments about implementation details.
11891 2005-10-21  Jordi Mas i Hernandez <jordi@ximian.com>
11893         * DataGrid.cs: Adds support for vertical scrolling using the mousewheel
11895 2005-10-21  Jordi Mas i Hernandez <jordi@ximian.com>
11897         * Binding.cs: No PushData/PullData if there is no binding (fixes crash)
11899 2005-10-21  Jordi Mas i Hernandez <jordi@ximian.com>
11901         * DataGridDrawingLogic.cs: Fixes column hit calcultation
11902         * DataGridColumnStyle.cs: Remove debug message
11904 2005-10-20  Jackson Harper  <jackson@ximian.com>
11906         * TreeView.cs: We can always get input keys regardless of whether
11907         or not editing is enabled. They are used for navigation.
11909 2005-10-20  Jackson Harper  <jackson@ximian.com>
11911         * TreeNode.cs: Use the viewport rect for determining if a node
11912         needs to be moved for visibility. Don't use Begin/End edit. This
11913         calls a full refresh when its done.
11914         * TreeView.cs: New SetBottom works correctly.  Make the viewport
11915         rect property internal so the treenodes can see it. When clicking
11916         on a node we need to ensure that its visible because it might just
11917         be partly visible when clicked.
11919 2005-10-20  Jackson Harper  <jackson@ximian.com>
11921         * TreeNodeCollection.cs: Remove debug code.
11923 2005-10-20  Jordi Mas i Hernandez <jordi@ximian.com>
11925         * Datagrid.cs: Implements column sorting in Datagrid
11926         * DataGridColumnStyle.cs: Implements column sorting in Datagrid
11928 2005-10-20  Jackson Harper  <jackson@ximian.com>
11930         * TreeNodeCollection.cs: Remove items properly. Update the correct
11931         area after removing them.
11933 2005-10-20  Jordi Mas i Hernandez <jordi@ximian.com>
11935         * Datagrid.cs: Should not call base.OnPaintBackground
11937 2005-10-20  Peter Dennis Bartok  <pbartok@novell.com>
11939         * XplatUIX11.cs (GetMessage):
11940           - Now properly calculates NC_xBUTTONDOWN coordinates off the whole
11941             window instead of client window
11942           - Now properly calculates NC_xBUTTONUP message coordinates
11943           - ScreenToMenu now properly calculates it's coordinates of whole 
11944             window, since menus are in the whole window, not in the client
11945             window
11946           - Added WholeToScreen coordinate translation method
11948 2005-10-20  Peter Dennis Bartok  <pbartok@novell.com> 
11950         * XplatUIX11.cs (GetMessage): Don't return in situations where we don't
11951           want to return a message, loop back to the beginning of the function
11952           and grab the next real message to process instead.
11954 2005-10-20  Peter Dennis Bartok  <pbartok@novell.com>
11956         * Splitter.cs: Properly set limits if no filler control is used
11958 2005-10-19  Jackson Harper  <jackson@ximian.com>
11960         * ColorDialog.cs: Don't show the help button if it is not enabled
11961         instead of disabling it (this is what MS does). Don't create the
11962         panel until the dialog is run, otherwise the vars (such as
11963         ShowHelp) are not set yet.
11965 2005-10-19  Jackson Harper  <jackson@ximian.com>
11967         * TreeView.cs: Implement Begin/EndEdit more correctly so refreshes
11968         are reduced when adding nodes.
11969         * TreeNode.cs:
11970         * TreeNodeCollection.cs: Use UpdateNode instead of refreshing the
11971         tree.
11972         
11973 2005-10-19  Jackson Harper  <jackson@ximian.com>
11975         * FolderBrowserDialog.cs: End editing our treeview so the window
11976         actually gets refreshed.
11978 2005-10-18  Peter Dennis Bartok  <pbartok@novell.com>
11980         * Control.cs: Fixed logic flip on when to call OnPaintBackground. 
11981           Obsoleted handling of WM_ERASEBKGND, now always draws our background
11982           inside of WM_PAINT
11984 2005-10-18  Jordi Mas i Hernandez <jordi@ximian.com>
11986         * MenuAPI.cs: Returns after Hidding window
11987         * XplatUIX11.cs: Added TODO found while debugging menu issues
11989 2005-10-18  Peter Dennis Bartok  <pbartok@novell.com>
11991         * XplatUIX11.cs: Do not re-map the whole window when it's size
11992           becomes non-zero unless it's supposed to be actually visible
11994 2005-10-18  Jackson Harper  <jackson@ximian.com>
11996         * TreeView.cs: We don't need to keep a count anymore.
11997         * TreeNodeCollection.cs: Fix off by one in RemoveAt, Insert can
11998         use the Grow method.
12000 2005-10-18  Jackson Harper  <jackson@ximian.com>
12002         * TreeNodeCollection.cs: Insert is not supported on arrays, so
12003         implement it manually here.
12005 2005-10-18  Jackson Harper  <jackson@ximian.com>
12007         * ImageList.cs: Dont kill the list when the colour depth is
12008         changed, just change the colour depth of all the images.
12009         - Same goes for setting the image size. Just resize them all
12010         instead of killing the list softly.
12012 2005-10-18  Jackson Harper  <jackson@ximian.com>
12014         * Control.cs: Don't invalidate empty rectangles.
12016 2005-10-18  Jordi Mas i Hernandez <jordi@ximian.com>
12018         * ListViewItem.cs:
12019           - Adds checked item to the Checked/Item lists (where empty before)
12020           - Do not add items to the Selected lists if they are already present
12021         * ListView.cs:
12022           - Fixes IsFixedSize, SyncRoot, IsReadOnly in many collections
12023           - When deleting items make sure that we delete them for the Selected
12024           and Checked list also.
12026 2005-10-18  Jordi Mas i Hernandez <jordi@ximian.com>
12028         * Label.cs: Dispose objects no longer used
12029         * ThemeWin32Classic.cs: Dispose objects no longer used
12031 2005-10-18  Jackson Harper  <jackson@ximian.com>
12033         * TabControl.cs: Don't refresh the whole control when the tabs are
12034         scrolled, we just need to refresh the tab area.
12036 2005-10-17  Jackson Harper  <jackson@ximian.com>
12038         * XplatUIX11.cs: Compress code a little bit. Only calculate the
12039         after handle when we need it.
12041 2005-10-17  Peter Dennis Bartok  <pbartok@novell.com>
12043         * Control.cs: When the parent size changes, recalculate anchor 
12044           positions. Partial fix for #76462
12046 2005-10-17  Peter Dennis Bartok  <pbartok@novell.com>
12048         * ThemeWin32Classic.cs: Make sure the picturebox has it's background 
12049           drawn. Fixes #76462
12051 2005-10-17  Jackson Harper  <jackson@ximian.com>
12053         * MonthCalendar.cs: Don't create the numeric up down until our
12054         handle is created. Otherwise our handle is created in the
12055         constructor and we don't know if we are a WS_CHILD or WS_POPUP
12056         yet.
12058 2005-10-17  Jackson Harper  <jackson@ximian.com>
12060         * TreeView.cs: Merge in patch by Rafael Teixeira to align strings
12061         correctly.
12063 2005-10-17  Rafael Teixeira <rafaelteixeirabr@hotmail.com> 
12064         * TreeNode.cs : small logical fix (was using local var instead of field)
12065         
12066 2005-10-17  Jordi Mas i Hernandez <jordi@ximian.com>
12068         * ThemeWin32Classic.cs: Fixes vert/horz scrollbar colours
12070 2005-10-17  Jordi Mas i Hernandez <jordi@ximian.com>
12072         * ThemeWin32Classic.cs: Fixes focus drawing in for non-flat/popup buttons
12074 2005-10-16  Peter Dennis Bartok  <pbartok@novell.com> 
12076         * Control.cs: 
12077           - Re-implemented anchoring code. My first version was really broken.
12078             This fixes bug #76033. Unlike the previous implementation we will
12079             no longer have round errors since all numbers are calculated from
12080             scratch every time. Removed various anchor-related obsolete vars.
12081           - InitLayout no longer causes layout event firing and layout to be 
12082             performed
12084 2005-10-16  Jackson Harper  <jackson@ximian.com>
12086         * Hwnd.cs: Compute invalid area correctly (fixes my last commit
12087         which was broken).
12089 2005-10-16  Jackson Harper  <jackson@ximian.com>
12091         * TabControl.cs: Remove debug code.
12093 2005-10-16  Jackson Harper  <jackson@ximian.com>
12095         * XEventQueue.cs: Increase the default queue size (very simple
12096         apps needed to grow the queue).
12097         * Hwnd.cs: No finalizer so we don't need to suppress
12098         finalization. Compute the invalid area manually so a new rectangle
12099         does not newto be created.
12100         * ScrollableControl.cs: Don't set any params (otherwise visibility
12101         isn't set correctly).
12102         * MdiChildContext.cs: New constructor takes the mdi parent so it
12103         doesn't have to be computed and avoids a crash on windows. Draw
12104         the window icon properly, and allow the text to be seen.
12105         * Form.cs: Use new MdiChildContext constructor. Make sure the
12106         child context isn't null in wndproc.
12107         * TabControl.cs: Don't set focus, this is muddling keyboard
12108         behavoir. Expand the tab rows when a window size increase will
12109         allow extra tabs to be seen. Don't allow tabs smaller than the
12110         width of a window to be scrolled out of view.
12111         * TreeNode.cs:
12112         * TreeView.cs: Use measure string to calculate a nodes width, the
12113         width is cached and only updated when the text or the font is
12114         changed. Don't check for expand/collapse clicks on the first level
12115         nodes if root lines are disabled.
12116         
12117 2005-10-16  Ritvik Mayank  <mritvik@novell.com>
12119         * TextBoxBase.cs: Fixes #76352 (passing tab key in a multiline textbox)
12121 2005-10-16  Jordi Mas i Hernandez <jordi@ximian.com>
12123         * DataGridBoolColumn.cs: fixes warning
12125 2005-10-16  Jordi Mas i Hernandez <jordi@ximian.com>
12127         * ControlPaint.cs: Fixes methods Dark, DarkDark, Light, LightLight
12128         to match more to match more precisely the MS Net behavior
12130 2005-10-13  Peter Dennis Bartok  <pbartok@novell.com> 
12132         * Hwnd.cs: Added field to track if window is mapped
12133         * XplatUIX11.cs: 
12134           - Unmap windows if they become 0-size, re-map when 
12135             they are >0 again; fixes #76035
12136           - Re-set our error handler after initializing X11Desktop
12137             to override any error handlers Gtk or whatever was called
12138             may have set.
12140 2005-10-13  Peter Dennis Bartok  <pbartok@novell.com> 
12142         * CheckedListBox.cs: Removed unused vars
12143         * ListView.cs: Fixed signatures
12144         * RichTextBox.cs: Removed unused vars
12145         * TextBoxBase.cs: Removed unused vars
12146         * XplatUIWin32.cs: Removed unused vars
12147         * XplatUIX11.cs: Removed unused vars
12148         * XplatUI.cs: Updated version and date to latest published
12150 2005-10-13  Peter Dennis Bartok  <pbartok@novell.com>
12152         * Cursor.cs: Added private .ctor to work around a bug in
12153           resourceset (Thanks to Geoff Norton for the help on this)
12154         * SplitterEventArgs.cs: Made fields accessible so we don't
12155           waste boatloads of objects and can reuse the same one
12156           in Splitter
12157         * XplatUIWin32.cs(DrawReversibleLine): Now also considers
12158           any captions and borders when generating screen coordinates
12159         * Splitter.cs: Reimplemented control, now fully complete, uses
12160           rubberband drawing, supports and obeys all properties, has
12161           proper cursors
12163 2005-10-13  Miguel de Icaza  <miguel@novell.com>
12165         * Form.cs (Form): Setup default values for autoscale and
12166         autoscale_base_size;  Make these instance variables, not static
12167         variables. 
12169         (OnLoad): on the first load, adjust the size of the form.
12171 2005-10-13  Peter Dennis Bartok  <pbartok@novell.com>
12173         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs: Added 
12174           width argument to DrawReversibleRectangle()
12175         * XplatUIWin32.cs, XplatUIX11.cs: 
12176           - Implemented width for DrawReversibleRectangle()
12177           - Added logic to DrawReversibleRectangle that recognizes a zero
12178             width or height and only draws a line in that situation
12179         
12180 2005-10-12  Peter Dennis Bartok  <pbartok@novell.com> 
12182         * XplatUI.cs, XplatUIDriver.cs: Added GetAutoScaleSize()
12183         * XplatUIOSX.cs: Stubbed GetAutoScaleSize() method
12184         * XplatUIWin32.cs, XplatUIX11.cs: Implemented GetAutoScaleSize()
12185           method (it uses our FosterParent window to get a graphics context)
12187 2005-10-12  Peter Dennis Bartok  <pbartok@novell.com>
12189         * XplatUI.cs, XplatUIDriver.cs: Removed EraseWindowBackground 
12190           and SetWindowBackground methods
12191         * Control.cs:
12192           - Setting proper ControlStyles
12193           - We no longer call XplatUI.SetWindowBackground and XplatUI.
12194             EraseWindowBackground, instead we draw the window background
12195             ourselves in PaintControlBackground. This behaviour is
12196             required to match MS, where, when OnPaintBackground is not
12197             called, the background is not drawn.
12198           - Removed unneeded Refresh() in set_Text
12199         * Hwnd.cs: Dropped the ErasePending support. No longer needed
12200         * XplatUIX11.cs:
12201           - Created DeriveStyles method to translate from CreateParams to
12202             FormBorderStyle and TitleStyle, also handles BorderStyle (which
12203             matches FormBorderStyle enum values)
12204           - Consolidated SetHwndStyles and CalculateWindowRect border/title
12205             style calculations into single DeriveStyles method
12206           - Fixed CreateWindow to (finally) use Gravity. This prevents X11
12207             from redrawing the whole window on any resize or expose.
12208           - Fixed CreateWindow usage of SetWindowValuemask. Before not
12209             all styles were applied to our whole/client window appropriately
12210           - Removed EraseWindowBackground() and SetWindowBackground() methods
12211           - Removed handling of WM_ERASEBKGND message from DefWndProc, we
12212             no longer clear/redraw the background through X
12213           - Removed handling of erase_pending bit, we have no use for it (or
12214             so it seems)
12215         * XplatUIOSX.cs:
12216           - Removed generation and handling of WM_ERASEBKGND message
12217           - Removed EraseWindowBackground() and SetWindowBackground() methods
12218           - Removed handling of hwnd.ErasePending flag
12219         * XplatUIWin32.cs:
12220           - Removed EraseWindowBackground() and SetWindowBackground() methods
12221           - We no longer call EraseWindowBackground on PaintEventStart, we 
12222             ignore the fErase flag, erasing is handled in Control in the
12223             background handler
12224         * Button.cs, GroupBox.cs, Label.cs, CheckBox.cs, ProgressBar.cs,
12225           LinkLabel.cs, ListControl.cs, TabPage.cs, UpDownBase.cs,
12226           TextBoxBase.cs, TextBox.cs, ListView.cs, ButtonBase.cs, 
12227           CheckedListBox.cs, MdiClient.cs, Panel.cs, DataGrid.cs, 
12228           DataGridTextBox.cs, ScrollBar.cs, ListBox.cs, TrackBar.cs, 
12229           TabControl.cs, ScrollableControl.cs, ToolBar.cs, PictureBox.cs,
12230           DateTimePicker.cs, StatusBar.cs, MonthCalendar.cs: Setting proper ControlStyles
12232 2005-10-12  Jonathan Chambers <jonathan.chambers@ansys.com>
12234         * PropertyGrids.cs: Get sub properties
12235         * PropertyGridView.cs: Fix drawing code
12237 2005-10-11  Jordi Mas i Hernandez <jordi@ximian.com>
12239         * ListBox.cs: Fixes 76383
12241 2005-10-11  Jordi Mas i Hernandez <jordi@ximian.com>
12243         * DataGridTextBoxColumn.cs: Sets location and size before attachment
12244         * ThemeWin32Classic.cs: Fixes border drawing and calculations
12245         * DataGridDrawingLogic.cs: Fixes border drawing and calculations
12248 2005-10-11  Jordi Mas i Hernandez <jordi@ximian.com>
12250         * ComboBox.cs: Fixes border drawing
12252 2005-10-10  Miguel de Icaza  <miguel@novell.com>
12254         * MimeIcon.cs: Ignore errors if the file can not be read.
12256 2005-10-11  Jordi Mas i Hernandez <jordi@ximian.com>
12258         * Theme.cs, ThemeWin32Classic.cs, ListBox.cs:
12259          - Fixed border calculations
12260          - Fixed horizontal scrolling in single column listboxes
12261          - Fixed drawing issues
12263 2005-10-10  Peter Dennis Bartok  <pbartok@novell.com>
12265         * XplatUI.cs, XplatUIOSX.cs, XplatUIWin32.cs: Switched from BorderStyle to 
12266           FormBorderStyle enum
12267         * XplatUIX11.cs: Switched BorderStyle to FormBorderStyle, added 
12268           code to determine FormBorderStyles from CreateParams
12269         * Form.cs:
12270           - Fixed bug where we'd set the wrong window styles if we were
12271             not creating an MDI window
12272           - Added call to XplatUI.SetBorderStyle when form borders are set
12273         * Control.cs: Casting BorderStyles to accommodate changed XplatUI APIs
12274         * Hwnd.cs:
12275           - Removed obsolete edge style
12276           - Switched from BorderStyle to FormBorderStyle
12277         
12278 2005-10-10  Jackson Harper  <jackson@ximian.com>
12280         * Form.cs: Use the property to get the window handle instead of
12281         accessing it directly. Prevents a null reference exception.
12283 2005-10-10  Jackson Harper  <jackson@ximian.com>
12285         * TreeView.cs: Don't adjust the rect given to DrawString now that
12286         our libgdiplus draws correctly.
12288 2005-10-08  Jackson Harper  <jackson@ximian.com>
12290         * TreeView.cs: Don't try to find the clicked on node if there are
12291         no nodes in the tree.
12293 2005-10-08  Alexander Olk  <alex.olk@googlemail.com>
12295         * RichTextBox.cs:
12297           restore
12299 2005-10-08  Alexander Olk  <alex.olk@googlemail.com>
12301         * ImageListStreamer.cs, TreeView.cs, UpDownBase.cs, RichTextBox.cs,
12302           ColorDialog.cs, TextControl.cs, Panel.cs, MdiChildContext.cs,
12303           ErrorProvider.cs:
12304           Use ResPool for brushes and dispose System.Drawing objects that
12305           are not used anymore.
12307 2005-10-07  Jackson Harper  <jackson@ximian.com>
12309         * MdiChildContext.cs: Use the new borders instead of drawing them
12310         ourselves.
12312 2005-10-06  Jordi Mas i Hernandez <jordi@ximian.com>
12314         * Calling UpdateBounds after changing the window's BorderStyle 
12315         since the style can change the ClientSize
12317 2005-10-06  Peter Dennis Bartok  <pbartok@novell.com>
12319         * Control.cs: Made PaintControlBackground virtual
12320         * Panel.cs: Overriding PaintControlBackground instead of using paint
12321           event; paint event method was interfering with 'real' users of the
12322           event.
12324 2005-10-06  Jordi Mas i Hernandez <jordi@ximian.com>
12326         * ThemeWin32Classic.cs: remove border drawing since it is handled
12327         by the base control class now and was causing double border drawing.
12329 2005-10-06  Peter Dennis Bartok  <pbartok@novell.com>
12331         * Panel.cs: Redraw our background on paint. Not a pretty solution,
12332           but it does seem to match MS behaviour. This fixes bug #75324
12334 2005-10-06  Peter Dennis Bartok  <pbartok@novell.com>
12336         * XplatUIX11.cs: A better DrawReversibleRectangle version, however
12337           somewhat hackish looking
12339 2005-10-06  Peter Dennis Bartok  <pbartok@novell.com> 
12341         * TextBoxBase.cs:
12342           - We now accept Enter even if AcceptEnter is false, if the containing
12343             form does not have an AcceptButton configured (fixes bug #76355)
12344           - Calculations are now fixed to no longer use Width/Height, but
12345             ClientSize.Width/Height, since we now support borders (this was
12346             a result of fixing borders and therefore bug #76166)
12347           - We no longer show the horizontal scrollbar if TextBox.WordWrap is 
12348             true (fixes bug #76354)
12349         
12350 2005-10-06  Peter Dennis Bartok  <pbartok@novell.com>
12352         * Control.cs: 
12353           - Defaulting BorderStyle and setting it in XplatUI when our window 
12354             is created
12355           - Added enum check to InternalBorderStyle setter
12356         * XplatUIX11.cs: 
12357           - Added drawing of window borders
12358           - Now properly calculates WM decorations offset for toplevel 
12359             windows (fixes bug #74763)
12360         * XplatUIWin32.cs: 
12361           - Implemented BorderStyles for windows (we're letting win32 draw 
12362             the border for us)
12363           - Fixed the signature for SetWindowLong
12364         * PictureBox.cs, DataGrid.cs, TextBoxBase.cs, ToolBar.cs, Panel.cs,
12365           ListBox.cs, Label.cs: Now uses Control.InternalBorderStyle for 
12366           setting borders
12367         * UpDownBase.cs: Remove drawing of borders, this is handled by
12368           the driver, outside the client area
12369         * ListView.cs: Removed bogus border calculations. The control should
12370           be oblivious to borders, since those are not part of the client
12371           area. 
12372         * X11DesktopColors.cs: Commented out (currently) unneeded variables
12373         * ThemeWin32Classic.cs: Removed border calculations from ListView 
12374           drawing code
12376 2005-10-06  Jackson Harper  <jackson@ximian.com>
12378         * MdiChildContext.cs: Clear out the old virtual position remove
12379         all the unneeded calls to CreateGraphics.
12381 2005-10-06  Peter Dennis Bartok  <pbartok@novell.com> 
12383         * TextControl.cs: Use proper color for highlighted text; fixes #76350
12385 2005-10-06  Peter Dennis Bartok  <pbartok@novell.com> 
12387         * Form.cs: 
12388           - Added loading and setting of our new default icon
12389           - Only set icon if window is already created
12391 2005-10-06  Peter Dennis Bartok  <pbartok@novell.com>
12393         * Label.cs:
12394           - Do not explicitly set the foreground and background colors, to
12395             allow inheriting from parents (fixes #76302)
12396           - Use Control's InternalBorderStyle property to deal with borders
12398 2005-10-06  Jackson Harper  <jackson@ximian.com>
12400         * MdiChildContext.cs: Use the new xplatui function to draw a
12401         reversible rect.
12403 2005-10-06  Jackson Harper  <jackson@ximian.com>
12405         * Form.cs: Add the parent before creating the child context cause
12406         we need the parent when setting up the child.
12408 2005-10-06  Jackson Harper  <jackson@ximian.com>
12410         * FolderBrowserDialog.cs: redo the tree population code so a
12411         second thread isn't used. Should be a lot faster and more stable
12412         now.
12414 2005-10-05  Jackson Harper  <jackson@ximian.com>
12416         * TreeView.cs: There are no expand/collapse boxes if the node has
12417         no children.
12419 2005-10-05  Jackson Harper  <jackson@ximian.com>
12421         * X11DesktopColors.cs: Get menu colours for the gtk theme.
12423 2005-10-05  Alexander Olk  <alex.olk@googlemail.com>
12425         * FileDialog.cs: Fix InitialDirectory
12427 2005-10-05  Jordi Mas i Hernandez <jordi@ximian.com>
12429         * ComboBox.cs:
12430                 - Fixes changing between styles
12431                 - Fixes simple mode
12432                 - Fixes last item crashing when navigating with keyboard
12434 2005-10-05  Jordi Mas i Hernandez <jordi@ximian.com>
12436         * LinkLabel.cs: Related to 76045. Stops the LinkLabel been drawn as a Label
12438 2005-10-05  Jackson Harper  <jackson@ximian.com>
12440         * TreeView.cs: If updating the root node do a full refresh.
12441         * TreeNode.cs: The root node should be expanded by default. Also
12442         added a utility prop to tell if we are the root node.
12443         * TreeNodeCollection.cs: Only refresh if the node we are being
12444         added to is expanded. Also added a comment on a potential
12445         optimization.
12446         
12447 2005-10-04  Peter Dennis Bartok  <pbartok@novell.com>
12449         * Cursor.cs, Hwnd.cs: Added call to GC.SuppressFinalize() 
12450           in dispose method. Fixes #76330
12452 2005-10-04  Jordi Mas i Hernandez <jordi@ximian.com>
12454         * ListView.cs, ThemeWin32Classic.cs, ListViewItem.cs:
12456                 - Implements vertical and horizontal scrolling using XplatUI
12457                 - Fixes keyboard navagation
12458                 - Fixes EnsureVisible
12459                 - Drawing fixes
12460                 - Handles and draws focus properly
12463 2005-10-04  Kornél Pál  <kornelpal@hotmail.com>
12465         * ImageList.cs: Use upper case initials for internal fields. ImageStream:
12466           Create handle. NET_2_0: Destroy handle when value is null.
12468 2005-10-03  Jackson Harper  <jackson@ximian.com>
12470         * ScrollBar.cs: My last scrollbar patch was broken. This is a
12471         revert and a new patch to prevent the thumb from refreshing so
12472         much.
12474 2005-10-02  Jackson Harper  <jackson@ximian.com>
12476         * ScrollBar.cs: Don't update position if it hasn't actually
12477         changed. This occurs when you hold down the increment/decrement
12478         buttons and the thumb gets to the max/min.
12480 2005-10-01  Jackson Harper  <jackson@ximian.com>
12482         * Form.cs:
12483         * MdiChildContext.cs:
12484         * MdiClient.cs: Implement ActiveMdiChild in Form.
12486 2005-10-01  Jordi Mas i Hernandez <jordi@ximian.com>
12488         * ComboBox.cs: Include ComboBoxEdit flag for the edit item
12490 2005-10-01  Peter Dennis Bartok  <pbartok@novell.com>
12492         * X11DesktopColors.cs: Bow out gracefully if the Gtk libs cannot
12493           be found
12495 2005-09-30  Jackson Harper  <jackson@ximian.com>
12497         * ListBox.cs: Don't do a full refresh unless some data has
12498         actually changed.
12500 2005-09-30  Jackson Harper  <jackson@ximian.com>
12502         * TreeView.cs: Make sure that the checkboxes size is factored in
12503         even when not visible.
12505 2005-09-30  Peter Dennis Bartok  <pbartok@novell.com> 
12507         * FileDialog.cs: Fix Jordi's build break
12509 2005-09-30  Jordi Mas i Hernandez <jordi@ximian.com>
12511         * FileDialog.cs: 
12512                 - Use standard the Windows colours for the combobox as espected
12513                 - Dispose objects that use resouces when no longer need them
12515 2005-09-30  Peter Dennis Bartok  <pbartok@novell.com> 
12517         * X11DesktopColors.cs: Initial incomplete implementation
12518         * XplatUIX11.cs: Added call to initialize X11DesktopColors
12520 2005-09-30  Peter Dennis Bartok  <pbartok@novell.com>
12522         * Theme.cs: 
12523           - Switched Theme color names to match the names defined in 
12524             System.Drawing.KnownColors. Life's hard enough, no need to make 
12525             it harder.
12526           - Added setters to all theme color properties so themes can set
12527             their color schemes. The setters also propagate the color changes
12528             to System.Drawing.KnownColors via reflection
12529         * ControlPaint.cs,  Label.cs, TextControl.cs, ToolTip.cs, ThemeNice.cs,
12530           ComboBox.cs, MdiChildContext.cs, TextBoxBase.cs, DateTimePicker.cs
12531           DataGridColumnStyle.cs, MonthCalendar.cs, TreeView.cs: Updated to
12532           use the new, more logical theme color names
12533         * XplatUIWin32.cs: Updated the GetSysColorIndex enum to include new
12534           post-NT colors
12535         * ThemeWin32Classic.cs:
12536           - Removed code to set the old classic Windows colors. Instead it
12537             now relies on the colors returned by System.Drawing.KnownColors
12538             which will be either modern static colors (Unix) or colors
12539             read from the user's configuration (Win32)
12540           - Updated to use the new, more logical theme color names
12541           - Switched DataGrid drawing code to use only Theme colors instead of
12542             a mix of System.Drawing.KnownColors and Theme colors
12543           - DrawFrameControl(): Removed code that fills the button area, the
12544             fill would overwrite any previous fill done by a control. This
12545             fixes bug #75338 
12546           - Added DrawReversibleRectangle() stub
12547         * ScrollableControl.cs: Set visible state to false when scrollbars
12548           are removed (pdn fix)
12549         * XplatUI.cs, XplatUIOSX.cs, XplatUIDriver.cs: Added 
12550           DrawReversibleRectangle() method to allow drawing primitive 
12551           'rubber bands'
12552         * XplatUIX11.cs: Implemented DrawReversibleRectangle()
12554 2005-09-30  Kornél Pál  <kornelpal@hotmail.com>
12556         * ImageList.cs: Add(Icon): Create handle.
12558 2005-09-30  Jordi Mas i Hernandez <jordi@ximian.com>
12560         * ListView.cs:
12561         * ThemeWin32Classic.cs:
12562                 - Fixes detail mode
12563                 - Sets clippings
12564                 - Issues with drawing
12566 2005-09-30  Kornél Pál  <kornelpal@hotmail.com>
12568         * ImageList.cs: Moved RecreateHandle back to ImageList as event
12569           source has to be the ImageList.
12571 2005-09-30  Kornél Pál  <kornelpal@hotmail.com>
12573         * ImageList.cs: Add(Icon): Use Graphics.DrawIcon instead of Icon.ToBitmap.
12575 2005-09-30  Kornél Pál  <kornelpal@hotmail.com>
12577         * ImageList.cs: ReduceColorDepth: Clean up pointer operations.
12579 2005-09-30  Kornél Pál  <kornelpal@hotmail.com>
12581         * ImageList.cs: ImageCollection: Removed owner field as it is no more used.
12583 2005-09-29  Jonathan Chambers <jonathan.chambers@ansys.com>
12584         * GridItem.cs: Fixed TODOs
12585         * GridItemCollection.cs: Added ICollection interface
12587 2005-09-30  Kornél Pál  <kornelpal@hotmail.com>
12589         * ImageList.cs: Resize icons when needed.
12591 2005-09-29  Jordi Mas i Hernandez <jordi@ximian.com>
12593         * ListViewItem.cs
12594                 - Fixes GetBounds and returns on screen rects
12595         * ListView.cs:
12596                 - Fixes vertical and horzintal scrolling of items
12597         * ThemeWin32Classic.cs:
12598                 - Fixes drawing
12599                 
12600 2005-09-29  Raja R Harinath  <harinath@gmail.com>
12602         * ImageList.cs (ImageStream) [NET_2_0]: Reflect re-factoring.
12604 2005-09-29  Kornél Pál  <kornelpal@hotmail.com>
12606         * ImageList.cs: Added comments about handle creation. Moved Handle,
12607           HandleCreated and OnRecreateHandle implementations to ImageCollection.
12608           Handle is created in Add methods.
12610 2005-09-28  Jordi Mas i Hernandez <jordi@ximian.com>
12611          
12612         * DataGridDrawingLogic.cs: 
12613                 - Takes rows into account on Colum calculations
12614                 - Returns the column when clickig
12615         * DataGrid.cs:
12616                 - Fixes default HitTestInfo values
12617                 - Fixes HitTestInfo.ToString
12618                 - Fixes ResetBackColor          
12619         
12620 2005-09-28  Jackson Harper  <jackson@ximian.com>
12622         * MdiChildContext.cs: Obey rules for fixed sized windows (no
12623         sizing or cursor changes). Also added some temp code to draw the
12624         titlebars text (Makes dev a little easier).
12626 2005-09-28  Kornél Pál  <kornelpal@hotmail.com>
12628         * ImageList.cs: AddStrip: Throw ArgumentException when Image is not a Bitmap.
12630 2005-09-28  Jordi Mas i Hernandez <jordi@ximian.com>
12631          
12632         * ListBox.cs: Fixes bug 76253
12634 2005-09-28  Kornél Pál  <kornelpal@hotmail.com>
12636         * ImageList.cs: Added comments about the current implementation. Added
12637           ReduceColorDepth, IndexedColorDepths and GetNearestColor to can use
12638           Format32bppArgb to preserve transparency and can use Graphics.FromImage
12639           while using the specified ColorDepth. ReduceColorDepth uses unsafe code
12640           with Bitmap.LockBits for better performance. Revised the whole file to
12641           match MS.NET behaviour and provide better performance. Non-public
12642           interface members are calling public members even when they throw
12643           NotSupportedException for better maintainability. Moved ColorDepth,
12644           ImageSize, ImageStream and TransparentColor implementations to
12645           ImageCollection for better performance as these properties are not used
12646           by ImageList.
12647         * ImageListStreamer.cs: Added a new internal constructor that takes an
12648           ImageList.ImageCollection and serializes Images based on
12649           ImageCollection.ToArray(). Renamed ImageColorDepth to ColorDepth to
12650           match ImageList property name.
12652 2005-09-28  Kazuki Oikawa <kazuki@panicode.com>
12654         * ListBox.cs: Fixes IndexFromPoint for last item
12656 2005-09-27  Jackson Harper  <jackson@ximian.com>
12658         * Form.cs: Set the position of new mdi children correctly.
12660 2005-09-27  Jackson Harper  <jackson@ximian.com>
12662         * MdiClient.cs: New mdi children need to be added to the back of
12663         the controls collection so the zorder is set correctly. Also add a
12664         count of all the child windows that have been created.
12666 2005-09-27  Jackson Harper  <jackson@ximian.com>
12668         * Form.cs (CreateParams): Setup MDI forms correctly.
12670 2005-09-27  Jackson Harper  <jackson@ximian.com>
12672         * MdiChildContext.cs:
12673         * MonthCalendar.cs:
12674         * UpDownBase.cs:
12675         * ListBox.cs:
12676         * ListView.cs:
12677         * TextBoxBase.cs:
12678         * TreeView.cs:
12679         * ScrollableControl.cs:
12680         * ComboBox.cs: Add implicit controls using the new implict control
12681         functionality in ControlCollection. Also try to block multiple
12682         control add in a suspend/resume layout to save some cycles.
12683         
12684 2005-09-27  Jackson Harper  <jackson@ximian.com>
12686         * Control.cs: Add functionality to the controls collection to add
12687         'implicit controls' these are controls that are created by the
12688         containing control but should not be exposed to the user. Such as
12689         scrollbars in the treeview.
12690         * Form.cs: The list var of the ControlsCollection is no longer
12691         available because of the potential of implicit controls getting
12692         ignored by someone accessing the list directly.
12694 2005-09-26  Peter Dennis Bartok  <pbartok@novell.com>
12696         * Control.cs: Fixed SetChildIndex; it no longer causes a child to
12697           loose it's parent. (Fixed bug introduced in r49103 when we added
12698           setting the child parent to null on Remove)
12700 2005-09-26  Gert Driesen  <drieseng@users.sourceforge.net>
12702         * DataGridBoolColumn.cs: Marked CheckState private to fix public API.
12703         * Splitter.cs: Added missing attributes for BorderStyle property.
12704         * TextBoxBase.cs: Marked Calculate* methods internal.
12705         * TextBox.cs: Fixed DefaultValue for PasswordChar property to match
12706         MS.NET.
12708 2005-09-26  Jordi Mas i Hernandez <jordi@ximian.com>
12709          
12710         * ListBox.cs: Fixes navigation to the last item in multicolumn lists
12712 2005-09-25  Jackson Harper  <jackson@ximian.com>
12714         * TreeView.cs: Update the node bounds correctly regardless of
12715         whether the node is visible.
12717 2005-09-25  Jackson Harper  <jackson@ximian.com>
12719         * ImageList.cs: Don't dispose the image after it is added to the
12720         image list. Only reformat images that need to be resized.
12722 2005-09-25  Jackson Harper  <jackson@ximian.com>
12724         * ImageList.cs: Don't set the format when changing the image.
12726 2005-09-25  Jackson Harper  <jackson@ximian.com>
12728         * TreeView.cs: We can't just assume the node has a font. Use the
12729         treeviews font if no node font is available.
12731 2005-09-25  Jackson Harper  <jackson@ximian.com>
12733         * TreeView.cs: Allow the scrollbars to be reset with negative
12734         values.
12735         - Don't add scrollbars to negative sized windows.
12737 2005-09-23  Jackson Harper  <jackson@ximian.com>
12739         * XplatUIX11.cs: Update to use Mono.Posix.Native instead of plain
12740         old Mono.Posix. Also remove some stray code that shouldn't have
12741         been committed.
12743 2005-09-23  Jackson Harper  <jackson@ximian.com>
12745         * TreeView.cs: Attempt at proper sizing of the horizontal
12746         scrollbar. Also don't resize the scrollbars unless they are
12747         visible.
12749 2005-09-23  Jackson Harper  <jackson@ximian.com>
12751         * TreeView.cs: We don't need to expand the invalid area when the
12752         selection changes, as this is all drawn in the node's bounding
12753         box. The area needs to be expanded (previous typo was contracting
12754         it) when the focus rect moves.
12756 2005-09-23  Jackson Harper  <jackson@ximian.com>
12758         * TreeView.cs: Display the selection box under the correct
12759         circumstances. We were rendering white text with no selection box
12760         before.
12762 2005-09-23  Peter Dennis Bartok  <pbartok@novell.com>
12764         * TextControl.cs(Split): Now updates selection start/end if it points 
12765           into a line that's being split. Fixes a FIXME and bug #75258
12767 2005-09-23  Jackson Harper  <jackson@ximian.com>
12769         * Binding.cs:
12770         * ListControl.cs: Don't use the path when retrieving binding
12771         managers from the binding context. My bat sense tells me that the
12772         path is only used on insertion.
12774 2005-09-22  Jackson Harper  <jackson@ximian.com>
12776         * Splitter.cs: Set the cursor an easier way. (Thanks peter).
12778 2005-09-22  Jackson Harper  <jackson@ximian.com>
12780         * Splitter.cs: There are special cursors used for splitting.
12781         * XplatUIX11.cs: The VSplit and HSplit cursors were backwards.
12783 2005-09-22  Jackson Harper  <jackson@ximian.com>
12785         * Splitter.cs: Change the cursor appropriately when the splitter
12786         is moused over, so the user actually knows there is a splitter
12787         there.
12789 2005-09-22 Hisham Mardam Bey <hisham.mardambey@gmail.com>
12791        * Label.cs : Fix ToString method to give same output as MS.NET
12793 2005-09-22  Jackson Harper  <jackson@ximian.com>
12795         * TreeView.cs: Create the scrollbars when the handle is created
12796         and add them right away, just make them invisble. Also account for
12797         the window being shrunk vertically to the point that the vert
12798         scrollbar needs to be added.
12799         - Remove some 0.5 adjustments to get around anti aliasing issues.
12800         
12801 2005-09-22  Jordi Mas i Hernandez <jordi@ximian.com>
12802          
12803         * MainMenu.cs: Fixes default value
12804         * MenuItem.cs: Fixes default value
12806 2005-09-22  Kazuki Oikawa  <kazuki@panicode.com>
12808         * AsyncMethodResult.cs: Fixes Control.Invoke is blocked infinitely.
12810 2005-09-21  Jackson Harper  <jackson@ximian.com>
12812         * Control.cs: Don't try to set the border style on the window if
12813         it hasn't been created. When the window is created the border
12814         style will be used.
12816 2005-09-21  Peter Dennis Bartok  <pbartok@novell.com>
12818         * Control.cs (Update): Don't call XplatUI if we don't have a
12819           window handle yet
12821 2005-09-21  Peter Dennis Bartok  <pbartok@novell.com> 
12823         * ContainerControl.cs: Instead of throwing an exception, print
12824           a one-time warning about Validate not being implemented
12825         * XplatUIWin32.cs: Removed debug output
12827 2005-09-21  Peter Dennis Bartok  <pbartok@novell.com> 
12829         * Control.cs: Only set XplatUI background if we expect the windowing
12830           system to handle the background. This stops controls that draw their
12831           own background from flickering
12833         * XplatUIX11.cs: Support custom visuals and colormaps for window 
12834           creation. This allows, amongst other things, using MWF X11 windows 
12835           with OpenGL.
12837 2005-09-21  Peter Dennis Bartok  <pbartok@novell.com>
12839         * OpenFileDialog.cs, ContentsResizedEventArgs.cs, LibSupport.cs, GridItem.cs,
12840           CursorConverter.cs, SplitterEventHandler.cs, PropertyGridTextBox.cs,
12841           GridTablesFactory.cs, MethodInvoker.cs, AccessibleEvents.cs,
12842           SplitterEventArgs.cs, XplatUI.cs, Mime.cs, PropertySort.cs,
12843           TreeViewCancelEventHandler.cs, Form.cs, PropertyGridCommands.cs,
12844           IDataGridEditingService.cs, DateBoldEventHandler.cs, Label.cs,
12845           KeyboardLayouts.cs, TextControl.cs, ProgressBar.cs, ToolTip.cs,
12846           RadioButton.cs, OSFeature.cs, LinkLabel.cs, ColorDialog.cs,
12847           ThemeNice.cs, ErrorIconAlignment.cs, TreeNode.cs, MimeGenerated.cs,
12848           ComboBox.cs, DataGridTextBoxColumn.cs, ArrangeStartingPosition.cs,
12849           GridColumnStylesCollection.cs, 
12850           IDataGridColumnStyleEditingNotificationService.cs,
12851           PropertyGrid.cs, IFeatureSupport.cs, ICommandExecutor.cs,
12852           MdiLayout.cs, GridEntry.cs, ControlBindingsCollection.cs,
12853           GridTableStylesCollection.cs, TreeViewCancelEventArgs.cs, 
12854           TreeNodeCollection.cs, AmbientProperties.cs, 
12855           RichTextBoxSelectionAttribute.cs, RichTextBoxSelectionTypes.cs,
12856           DataObject.cs, ErrorProvider.cs, Splitter.cs,
12857           DataGridLineStyle.cs, Shortcut.cs, Control.cs,
12858           FontDialog.cs, SecurityIDType.cs, GridItemType.cs,
12859           BindingMemberInfo.cs, DataGridCell.cs, MdiChildContext.cs,
12860           IRootGridEntry.cs, PropertyGridView.cs, DataGridParentRowsLabelStyle.cs,
12861           FolderBrowserDialog.cs, OpacityConverter.cs, HelpProvider.cs,
12862           IComponentEditorPageSite.cs, DataGridTableStyle.cs, NavigateEventArgs.cs,
12863           NotifyIcon.cs, ContentsResizedEventHandler.cs, MenuItem.cs,
12864           PropertyTabChangedEventHandler.cs, TextBoxBase.cs, OpenTreeNodeEnumerator.cs,
12865           SelectionMode.cs, TextBox.cs, ListBindingConverter.cs,
12866           FileDialog.cs, KeysConverter.cs, DomainUpDown.cs,
12867           DataFormats.cs, SaveFileDialog.cs, GridItemCollection.cs,
12868           ArrangeDirection.cs, FeatureSupport.cs, SelectionRangeConverter.cs,
12869           RichTextBoxScrollBars.cs, NodeLabelEditEventHandler.cs, TreeNodeConverter.cs,
12870           MimeIcon.cs, X11Structs.cs, PropertyGridEntry.cs,
12871           ImageList.cs, ThemeWin32Classic.cs, X11Keyboard.cs,
12872           CheckedListBox.cs, HelpNavigator.cs, DateTimePickerFormat.cs,
12873           MdiClient.cs, DataGridDrawingLogic.cs, DataGridBoolColumn.cs,
12874           NodeLabelEditEventArgs.cs, Screen.cs, PropertyManager.cs,
12875           ComponentModel.cs, PropertiesTab.cs, CurrencyManager.cs,
12876           SizeGrip.cs, DateBoldEventArgs.cs, X11Dnd.cs, Panel.cs,
12877           Hwnd.cs, OSXStructs.cs, DrawMode.cs, XplatUIDriver.cs,
12878           RichTextBox.cs, PropertyTabChangedEventArgs.cs, CommonDialog.cs,
12879           DataGrid.cs, XplatUIX11.cs, RichTextBoxStreamType.cs, Win32DnD.cs,
12880           ErrorBlinkStyle.cs, TreeViewEventHandler.cs,
12881           PropertyValueChangedEventHandler.cs, IFileReaderService.cs,
12882           DataGridTextBox.cs, SelectedGridItemChangedEventArgs.cs, ScrollBar.cs,
12883           ListBox.cs, TreeViewAction.cs, Help.cs, TrackBar.cs,
12884           AxHost.cs, PropertyValueChangedEventArgs.cs, XplatUIOSX.cs,
12885           RichTextBoxFinds.cs, UpDownEventArgs.cs, Cursors.cs,
12886           CategoryGridEntry.cs, RichTextBoxWordPunctuations.cs, DataGridColumnStyle.cs,
12887           SelectedGridItemChangedEventHandler.cs, DateTimePicker.cs, NavigateEventHandler.cs,
12888           Clipboard.cs, UpDownEventHandler.cs, MonthCalendar.cs,
12889           SendKeys.cs, DataGridPreferredColumnWidthTypeConverter.cs, TreeView.cs,
12890           ThreadExceptionDialog.cs, ImageListConverter.cs, XplatUIWin32.cs,
12891           TreeViewEventArgs.cs: Fixed whitespace and set eol-style:native attribute
12893 2005-09-21  Jackson Harper  <jackson@ximian.com>
12895         * TreeNode.cs: Call Before/After Expand not Collapse when
12896         expanding.
12898 2005-09-20  Jackson Harper  <jackson@ximian.com>
12899         
12900         * XplatUIX11.cs: Use the more hand looking hand (in most themes).
12902 2005-09-16  Jordi Mas i Hernandez <jordi@ximian.com>
12903          
12904         * ListViewItem.cs:
12905                 - Fixes bug 76120
12906                 - Fixes proper storing of subitems
12907                 - Fixes not updated items
12909 2005-09-20  Peter Dennis Bartok  <pbartok@novell.com>
12911         * Control.cs, TextBoxBase.cs, TextControl.cs: Don't do certain
12912           things if our window handle isn't created yet. Also disabled 
12913           debug for TextBoxBase
12915 2005-09-20  Peter Dennis Bartok  <pbartok@novell.com> 
12917         * MenuAPI.cs: Remove filtering of events to allow menu usage
12919 2005-09-20  Miguel de Icaza  <miguel@novell.com>
12921         * Cursor.cs: Allow null to be passed to Cursor.Current.
12923 2005-09-20  Alexander Olk  <alex.olk@googlemail.com>
12925         * ThemeWin32Classic.cs:
12926           - Change some private methods/fields to protected virtual so that 
12927             they can be accessed and overriden in derived classes
12928           - First refactoring of some methods. Derived themes now don't 
12929             need to duplicate the complete code from ThemeWin32Classic
12930         * ThemeNice.cs:
12931           - Added nice StatusBar
12932           - Derive from ThemeWin32Classic and not Theme
12933           - Removed duplicate ThemeWin32Classic code
12935 2005-09-20  Miguel de Icaza  <miguel@novell.com>
12937         * Control.cs (ControlCollection.Add): If the value null is passed
12938         the control is ignored. 
12940         Optimize this loop.
12942 2005-09-19  Peter Dennis Bartok  <pbartok@novell.com> 
12944         * MenuAPI.cs: Replaced Application.Run() with a loop that tracks
12945           PostQuitMessage state.
12946         * XplatUIWin32.cs: Removed bogus PostQuitMessage P/Invoke with HWND arg
12948 2005-09-19  Peter Dennis Bartok  <pbartok@novell.com>
12950         * Application.cs: Our constructor will never get called, move 
12951           initialization to fields; fixes bug #75933
12953 2005-09-19 Hisham Mardam Bey <hisham.mardambey@gmail.com>
12955         * FileDialog.cs :
12956                 - Allow files to be selected properly using file name
12957                 combo box.
12958                 - Add ability to change diretory (absolute / relative)
12959                 using file name combo box.
12961 2005-09-16  Jordi Mas i Hernandez <jordi@ximian.com>
12962          
12963         * ListBox.cs: 
12964                 - Fixes Multicolumn listboxes item wrong calculations
12965                 - Allows to click when only one item is in the listbox
12966                 - Fixes crash when no items using keyboard navigation
12968 2005-09-16  Alexander Olk  <alex.olk@googlemail.com>
12970         * ComboBox.cs: Reverted almost everything from the latest patch which
12971           broke ComboBox
12973 2005-09-16  Kazuki Oikawa <kazuki@panicode.com>
12974         
12975         * ToolTip.cs:
12976                 - Fixed #Mtd2 of ToolTipTest.RemoveToolTipTest.
12977         * ComboBox.cs:
12978                 - When DropDownStyle is Simple, it does not show scrollbar 
12979                 to the last item of the list.
12980                 - When DropDownStyle is Simple, it crashed when the list was 
12981                 scrolled down with the down cursor key.
12982                 - Fixed a bug that when DropDownStyle is DropDownList, the 
12983                 selected item was not shown.
12984                 - The position of the selected item was not preserved when 
12985                 the next dropdown happened.
12986         * ThemeWin32Classic.cs:
12987                 - Items were wrapped at the right end.
12988         * CheckedListBox.cs:
12989                 - Fixed Add method
12990         * ListBox.cs:
12991                 - Items should be fully shown.
12992                 - When resizing and vertical scrollbar disappeared, the item 
12993                 of index 0 should be on the top of the list.
12994                 - GetItemRectangle should consider the size of ver. scrollbar
12995         * StatusBar.cs:
12996                 - SizingGrip area should not be allocated when it is not 
12997                 displayed.
12998                 - Now it reflects MinWidth of the containing panel and 
12999                 fixed a crash that happens when its width becomes so small.
13001 2005-09-13  Jordi Mas i Hernandez <jordi@ximian.com>
13003         * CheckedListBox.cs: Fixes bug 76028
13004         * ListBox.cs: Fixes bug 76028
13006 2005-09-13  Jordi Mas i Hernandez <jordi@ximian.com>
13008         * ThemeWin32Classic.cs: Sets clipping on DataGridPaintRowsHeaders
13009         * DataGridDrawingLogic.cs: fixes issues with Datagrid drawing
13011 2005-09-12  Jordi Mas i Hernandez <jordi@ximian.com>
13013         * XplatUIX11.cs: fixes System.NullReferenceException in some situations
13015 2005-09-09  Jonathan Chambers  <jonathan.chambers@ansys.com>
13017         * IRootGridEntry.cs: Changed namespace to PropertyGridInternal 
13019 2005-09-09  Jonathan Chambers  <jonathan.chambers@ansys.com>
13021         * IRootGridEntry.cs: Added
13022         * PropertyGridCommands.cs: Added
13023         * PropertiesTab.cs: Added missing methods and property
13024         * PropertyGridView.cs: Made class internal
13025         * PropertyGridTextBox.cs: Made class internal
13027 2005-09-09  Alexander Olk  <alex.olk@googlemail.com>
13029         * MimeIcon.cs: Try to check some other environment variables
13030           if "DESKTOP_SESSION" returns "default"
13032 2005-09-09  Alexander Olk  <alex.olk@googlemail.com>
13034         * ThemeNice.cs: Corrected background colors (e.g. menus)
13035         * ColorDialog.cs: Use correct background colors for controls
13037 2005-09-09  Alexander Olk  <alex.olk@googlemail.com>
13039         * ThemeNice.cs: Merged r49535 from ThemeWin32Classic
13041 2005-09-08  Peter Dennis Bartok  <pbartok@novell.com>
13043         * RichTextBox.cs: Added initial implementation
13044         * lang.cs: Removed. Was accidentally checked in long time ago
13045         * TODO: Removed. Contents were obsolete
13047 2005-09-06  Jonathan Chambers  <jonathan.chambers@ansys.com>
13048                                                                                 
13049         * PropertiesTab.cs : Added
13051 2005-09-06  Jonathan Chambers  <jonathan.chambers@ansys.com>
13052                                                                                 
13053         * PropertyGrid.cs : Update
13054         * PropertyGridView.cs : Update
13055         * System.Windows.Forms.resx : Added images and strings
13057 2005-09-06  Peter Dennis Bartok  <pbartok@novell.com> 
13059         * ThemeNice.cs: Do not dispose Pens retrieved from ResPool
13061 2005-09-06  Peter Dennis Bartok  <pbartok@novell.com>
13063         * XplatUIX11.cs: Force a flush after Ungrab; if case the app enters
13064           a busy loop right after the Ungrab the X11 display is otherwise 
13065           blocked
13067 2005-09-06  Jordi Mas i Hernandez <jordi@ximian.com>
13069         * ThemeWin32Classic.cs: Optimise the use of clipping
13071 2005-09-05  Jordi Mas i Hernandez <jordi@ximian.com>
13073         * DataGrid.cs: fixes recursion bug
13075 2005-09-03  Alexander Olk  <alex.olk@googlemail.com>
13077         * ThemeNice.cs: 
13078           - Draw RadioButton and CheckBox Buttons with DrawButtonBase
13079           - Cleanup
13081 2005-09-02  Alexander Olk  <alex.olk@googlemail.com>
13083         * ThemeNice.cs: Draw nice ProgressBars
13085 2005-09-01  Miguel de Icaza  <miguel@novell.com>
13087         * VScrollBar.cs: Another buglet found by Aaron's tool. 
13089         * ProgressBar.cs: Fix three recursive bugs found by Aaron Tomb's
13090         bug finder.
13092 2005-08-30  Alexander Olk  <alex.olk@googlemail.com>
13094         * ThemeNice.cs:
13095           - Added nicer menu drawing
13096           - Updated DrawTab
13097           - some refactoring
13099 2005-08-30  Peter Dennis Bartok  <pbartok@novell.com>
13101         * CreateParams.cs (ToString): Made output match MS
13102         * Control.cs (Text): Don't set Text or Focus via XplatUI unless 
13103             handle is already created (to avoid forcing window creation)
13104         * XplatUIX11.cs: Set window text to caption after creating window,
13105           in case Text was set before window was created
13106         * Form.cs: Use this.Text instead of a static string as caption
13108 2005-08-30  Peter Dennis Bartok  <pbartok@novell.com> 
13110         * NotifyIcon.cs: Don't set the window to visible; this screws
13111           up Win32 (causes WM_NCPAINT to be sent on Win32, which calls
13112           OnPaint without a bitmap)
13113         * XplatUIX11.cs: Removed Visible optimization in AddExpose; doesn't 
13114           happen very often anyway; we could add the check to the WM_PAINT 
13115           event generation code
13117 2005-08-30  Peter Dennis Bartok  <pbartok@novell.com>
13119         * NotifyIcon.cs: Fill the icon area with a background color, to 
13120           avoid 'residue' when transparent icons are drawn
13121         * XplatUIX11.cs:
13122           - Handle whole_window == client_window when destroying windows
13123           - SystrayAdd(): Set client_window to whole_window value to
13124             get mouse and other events passed to NotifyIcon
13126 2005-08-30  Peter Dennis Bartok  <pbartok@novell.com> 
13128         * Form.cs: Set proper default for Opacity property
13129         * NotifyIcon.cs:
13130           - ShowSystray(): Don't bother creating telling the OS
13131             about the systray item if no icon is provided
13132           - Now handles WM_NCPAINT message to deal with whole/client window
13133             split
13134           - Create window as visible to not get caught by Expose optimization
13135         * Hwnd.cs: Removed debug message
13136         * ComboBox.cs, ScrollBar.cs, ListBox.cs, TrackBar.cs, TabControl.cs,
13137           StatusBar.cs, TreeView.cs, XplatUIOSX.cs, XplatUIWin32.cs: Switched 
13138             PaintEventStart/End to use new client argument
13139         * TextBoxBase.cs:
13140           - Commented out debug messages
13141           - Switched PaintEventStart/End to use new client argument
13142         * XplatUI.cs: Added client window bool to PaintEventStart()/
13143           PaintEventEnd() calls, to support drawing in non-client areas
13144         * XplatUIDriver.cs: 
13145           - Added client window bool to PaintEventStart()/PaintEventEnd() 
13146             calls, to support drawing in non-client areas
13147           - Added conditional compile to allow using MWF BeginInvoke 
13148             on MS runtime
13149         * XplatUIX11.cs:
13150           - Added some conditional debug output
13151           - Fixed SystrayAdd() method to support new (for SystrayAdd, anyway)
13152             whole/client window split
13153           - Implemented handling of client argument to PaintEventStart()/End()
13154         * Control.cs:
13155           - Throw exception if BeginInvoke() is called and the window handle
13156             or one of the window's parent handles is not created
13157           - Added conditional compile to allow using MWF BeginInvoke on
13158             MS runtime
13159           - get_Parent(): Only sets parent if handle is created. This avoids
13160             forcing window handle creation when parent is set.
13161           - Now fires Layout and Parent changed events in proper order
13162           - Switched to use Handle instead of window.Handle for Z-Order setting,
13163             the get_Parent() patch above causes us to possibly get null for 'window'
13164           - Implemented handling of client argument to PaintEventStart()/End()
13165           - Now reports back to windows that WM_SETCURSOR was handled (to avoid
13166             default handling)
13167           - Now sends a Refresh() to all child windows when Refresh() is called
13169 2005-08-29  Peter Dennis Bartok  <pbartok@novell.com> 
13171         * Form.cs: Added (non-functional) Opacity property
13172         * XplatUIWin32.cs (SystrayAdd): Removed bogus line of code
13174 2005-08-29  Alexander Olk  <xenomorph2@onlinehome.de>
13175         * ThemeNice.cs: New theme for MWF, based on ThemWin32Classic
13176           use export MONO_THEME=nice to activate it.
13177           Currently supported controls:
13178           - Button
13179           - ComboBox
13180           - ScrollBar
13181           - TabControl (TabAlignment.Top only, other will follow)
13182         * ThemeEngine.cs: Add theme nice
13183         * ButtonBase.cs: Redraw button on MouseEnter and MouseLeave everytime,
13184           if enabled
13186 2005-08-25  Jonathan Chambers  <jonathan.chambers@ansys.com> 
13188         * Splitter.cs: Resize docked control and its neighbor.
13190 2005-08-24  Rafael Teixeira <rafaelteixeirabr@hotmail.com> 
13191         -- Making Windows with Menus layout correctly --
13192         * Form.cs : The first leg of the fix
13193                 Menu setter - adjust Client Size as needed to make space for the menu
13194                 SetClientSizeCore - doesn't call base version to be able to pass the 
13195                         menu handle to XplatUI.CalculateWindowRect
13196         * Hwnd.cs: Fix for menu_height, now gets from MenuAPI.MENU
13197         * XplatUIX11.cs: The critical second leg of the fix
13198                 GetWindowPos needs to use a recalculated client_rect
13199                 so that resizing the window doesn't break layout of child controls. 
13200                 Also a more complete rule to avoid X Server roundtrips in SetWindowPos
13201                 Lots of \t\n killed
13203 2005-08-23  Peter Dennis Bartok  <pbartok@novell.com> 
13205         * Label.cs: Now properly recalculates width and height on Font and Text
13206           changes if AutoSize is set
13208 2005-08-19  Rafael Teixeira <rafaelteixeirabr@hotmail.com> 
13209         * TreeView.cs : Revamped drawing logic, and support for FullRowSelect
13211 2005-08-19  Jordi Mas i Hernandez <jordi@ximian.com>
13213         * ImageList.cs: Makes ToString method compatible with MS
13215 2005-08-18  Jordi Mas i Hernandez <jordi@ximian.com>
13217         * MenuAPI.cs: fixes bug 75716
13219 2005-08-11 Umadevi S <sumadevi@novell.com>
13220         * Control.cs: Fixed Remove & RemoveAt to make the parent of the control null.
13222 2005-08-11 Umadevi S <sumadevi@novell.com>
13223         * Contorl.cs: Fixed ResetRightToLeft and ResetImeMode to work correctly
13225 2005-08-10  Umadevi S <sumadevi@novell.com>
13226         * CheckedListBox.cs: Fixed event firing on Adding to the CheckedListBox
13228 2005-08-07  Jordi Mas i Hernandez <jordi@ximian.com>
13230         * Menu.cs: fixes bug 75700
13231         * MenuAPI.cs: fixes navigation issues
13233 2005-08-09  Umadevi S <sumadevi@novell.com>
13234         * CheckedListBox.cs - simple fix for GetItemChecked.
13236 2005-08-08  Jordi Mas i Hernandez <jordi@ximian.com>
13238         * ComboBox.cs: Serveral fixes
13239         * ListBox.cs: Serveral fixes
13241 2005-08-05  Jordi Mas i Hernandez <jordi@ximian.com>
13243         * ComboBox.cs: Fixes FindString methods and GetItemHeight
13244         * ListBox.cs: Fixes FindString methods
13246 2005-08-05  Jordi Mas i Hernandez <jordi@ximian.com>
13248         * DataGrid.cs: fixes bugs exposed by new tests
13250 2005-08-04  Peter Dennis Bartok  <pbartok@novell.com> 
13252         * Mime.cs: Compile Mono assembly references only if compiling
13253           with Mono (Allows to build with VS.Net again)
13255 2005-07-28  Marek Safar  <marek.safar@seznam.cz>
13257         * Control.cs (PaintControlBackground): Draw background image
13258         corrrectly.
13259         (CheckForIllegalCrossThreadCalls): Stubbed.
13260         
13261         * Form.cs (OnCreateControl): Center when should be centered.
13262         
13263         * ThemeWin32Classic.cs (DrawPictureBox): Pass size.
13265 2005-07-19  Jordi Mas i Hernandez <jordi@ximian.com>
13267         * Binding.cs: Binding to properties should be case unsensitive
13269 2005-07-18 vlindos@nucleusys.com
13271         * DataGrid.cs: fixes setmember order
13273 2005-07-07  Alexander Olk  <xenomorph2@onlinehome.de>
13275         * MimeIcon.cs: added MimeIcon stuff (MimeIconEngine)
13276         * FileDialog.cs: FileDialog is now resizable and uses the new
13277           MimeIconEngine
13279 2005-07-06  Jordi Mas i Hernandez <jordi@ximian.com>
13281         * DataGridTextBoxColumn.cs: default value
13282         * GridColumnStylesCollection.cs: fixes event firing, checking MappingName
13283         * GridTableStylesCollection.cs: fixes checking MappingName
13284         * DataGridDrawingLogic.cs: fixes drawing logic issues
13285         * DataSourceHelper.cs: rewritten to make compatible with more data sources
13286         * DataGrid.cs: fixes    
13288 2005-07-06  Alexander Olk  <xenomorph2@onlinehome.de>
13290         * MimeGenerated.cs: Use case sensitive comparer for
13291           NameValueCollections
13293 2005-07-01  Jordi Mas i Hernandez <jordi@ximian.com>
13295         * DataGridTextBoxColumn.cs: bug fixes, code refactoring 
13296         * ThemeWin32Classic.cs: bug fixes, code refactoring
13297         * DataGridDrawingLogic.cs:  bug fixes, code refactoring
13298         * DataGrid.cs: bug fixes, code refactoring
13299         * DataGridTextBox.cs: bug fixes, code refactoring
13300         * DataGridColumnStyle.cs:  bug fixes, code refactoring
13301         * Theme.cs:  bug fixes, code refactoring
13303 2005-07-01  Peter Bartok  <pbartok@novell.com> 
13305         * TextControl.cs: Quick fix for the reported crash on ColorDialog
13306           and other text box usage
13308 2005-07-01  Jackson Harper  <jackson@ximian.com>
13310         * TabControl.cs: Make sure the bottom of the tab covers the pages
13311         border.
13313 2005-06-30  Peter Bartok  <pbartok@novell.com> 
13315         * Form.cs (ShowDialog): Assign owner of the dialog
13316         * TextBoxBase.cs: Always refresh caret size when deleting, caret
13317           might have been moved to a tag with different height
13319 2005-06-30  Jackson Harper  <jackson@ximian.com>
13321         * Form.cs: Don't create an infinite loop when setting focus
13322         * MenuItem.cs: Don't dirty the parents if we don't have any
13324 2005-06-29  Ben Maurer  <bmaurer@ximian.com>
13326         * LibSupport.cs: Rename
13328 2005-06-29  Peter Bartok  <pbartok@novell.com>
13330         * TextBoxBase.cs: Re-align caret after deleting a character
13331         * TextControl.cs:
13332           - DeleteChars(): Ensure that tag covers the provided position
13333           - StreamLine(): Drop reference for dropped tag
13335 2005-06-29  Peter Bartok  <pbartok@novell.com> 
13337         * TextControl.cs: 
13338           - Selections now work properly, anchoring at the initial location
13339             and properly extending in either direction (SetSelectionToCaret(),
13340             SetSelectionStart() and SetSelectionEnd())
13341           - No longer redraws the whole control on selection change, now
13342             calculates delta between previous and new selection and only
13343             invalidates/redraws that area
13344           - Fixed FindPos() math off-by-one errors
13345           - Changed DeleteChars() to verify the provided tag covers the
13346             provided position, selections may have a tag that doesn't cover
13347             the position if the selection is at a tag border
13348           - Fixed off-by-one errors in DeleteChars()
13349           - Added missing streamlining check in DeleteChars() to remove
13350             zero-length tags
13351           - Implemented Invalidate() method, now properly calculates exposures
13352             between two given lines/positions
13353           - Implemented SetSelection()
13354           - Obsoleted and removed FixupSelection()
13355           - Improved RecalculateDocument() logic, removing code duplication
13357 2005-06-29 Gonzalo Paniagua Javier <gonzalo@ximian.com>
13359         * LibSupport.cs: changes to match different input/output arguments.
13361 2005-06-29 Gonzalo Paniagua Javier <gonzalo@ximian.com>
13363         * LibSupport.cs: added libsupport.so init routine.
13365 2005-06-29  Jordi Mas i Hernandez <jordi@ximian.com>
13366         
13367         * ControlBindingsCollection.cs
13368                 - Throws an exception on null datasource when adding
13369                 - Checks for duplicated bindings when adding
13371 2005-06-28  Jackson Harper  <jackson@ximian.com>
13373         * TreeView.cs (OnKeyDown): Support left and right properly
13374         (navigates as well as expanding and collapsing.
13375         - Add support for Multiply, this expands all the selected nodes
13376         children.
13377         - Fix some tabbing.
13379 2005-06-28  Jackson Harper  <jackson@ximian.com>
13381         * TreeView.cs: Implement keyboard navigation, currently supports,
13382         LEFT, RIGHT, UP, DOWN, PGUP, PGDOWN, HOME, END, ADD, SUBTRACT. Add
13383         support for toggling checkboxes with the space bar.
13385 2005-06-28  Jackson Harper  <jackson@ximian.com>
13387         * OpenTreeNodeEnumerator.cs: Don't move past the begining of the
13388         tree.
13390 2005-06-28  Jackson Harper  <jackson@ximian.com>
13392         * TreeView.cs: Add missing event.
13394 2005-06-27  Peter Bartok  <pbartok@novell.com> 
13396         * TextControl.cs:
13397           - Made line ending size configurable (now allows for counting 
13398             lineendings as \n or \r\n)
13399           - Added margin to viewport to keep caret visible on right side
13400           - Fixed translation routines for line/pos to documentpos to consider
13401             cr/lf when counting (Fixes RichTextBox.SelectionFont issues)
13402           - Fixed some line-endings to be unix style
13403           - Fixed Document.FormatText to perform it's calculations 1-based
13404           - Added descriptions for a few methods that might otherwise get 
13405             used wrong
13406           - Added NOTE section with some basic conventions to remember at 
13407             the top of the file
13408           - Major fixup for RichTextBox selection drawing:
13409             * Fixed crashes when multiple tags on a single line were selected
13410             * fixed selection box drawing not overlaying text
13411             * fixed bogus offset calculation for tags not starting at index 1
13412             * Switched behaviour from using multiple Substrings of a 
13413               StringBuilder.ToString() to using multiple 
13414               StringBuilder.ToString(start, length) statements, hoping this is
13415               faster (kept original version commented out in the code, in case
13416               original version was faster)
13417         * TextBox.cs (set_TextAlignment): TextBox always needs to wrap if 
13418           alignment != Left
13419         * TextBoxBase.cs (CalculateDocument): Made protected so RichTextBox can
13420           call it as well
13422 2005-06-27  Jackson Harper  <jackson@ximian.com>
13424         * TabControl.cs: Move to the left and right with the arrow
13425         keys. These keys don't cycle beyond first and last like
13426         tab. Refresh all the tabs when scrolling them to the left or
13427         right.
13429 2005-06-27  Jackson Harper  <jackson@ximian.com>
13431         * TabControl.cs:
13432           - ToString: Added method
13433           - CreateParams: Remove TODO and comment
13434           - OnKeyDown: Cycle through bounds properly.
13435           - SelectedIndex: Scroll to the right or left if we need to
13436           display the newly selected tab.
13438 2005-06-23  Jackson Harper  <jackson@ximian.com>
13440         * TabControl.cs: Stay in bounds when cycling. Make sure Handled is
13441         set.
13443 2005-06-23  Jackson Harper  <jackson@ximian.com>
13445         * TabControl.cs: Keyboard handling. We now support CTRL-TAB,
13446         CTRL-SHIFT-TAB, and HOME, END are there any others?
13448 2005-06-23  Jackson Harper  <jackson@ximian.com>
13450         * XplatUIX11.cs: Get the modifier keys from the keyboard driver.
13452 2005-06-22  Jordi Mas i Hernandez <jordi@ximian.com>
13453         
13454         * DataGridTextBoxColumn.cs: fixes and enhancements
13455         * ThemeWin32Classic.cs: fixes and enhancements
13456         * DataGridBoolColumn.cs:  fixes and enhancements
13457         * DataGridDrawingLogic.cs:  fixes and enhancements
13458         * CurrencyManager.cs: fixes and enhancements
13459         * DataGrid.cs: fixes and enhancements
13460         * DataGridColumnStyle.cs:  fixes and enhancements
13462 2005-06-22  Jackson Harper  <jackson@ximian.com>
13464         * TabControl.cs: Add some missing methods that just call into the
13465         base. Make the TabPageCollection's IList interface behave in the
13466         same manner as the MS implementation.
13468 2005-06-22  Peter Bartok  <pbartok@novell.com> 
13470         * TextControl.cs: Added sanity check
13471         * TextBoxBase.cs: 
13472           - Fixed wrapping behaviour, don't set wrap on single line controls
13473             (this fixes the breakage of colordialog introduced in an earlier
13474              checkin)
13475           - Added rudimentary support for autoscrolling right-aligned controls
13476             (still needs fixing, also, center alignment scroll is missing)
13478 2005-06-22  Jordi Mas i Hernandez <jordi@ximian.com>
13479         
13480         * ScrollBar.cs: Fixes thumbpos on Maximum values
13482 2005-06-21  Jonathan Chambers <jonathan.chambers@ansys.com>
13483         
13484         * PropertyGridView.cs: Pass context information to UITypeEditors 
13486 2005-06-21  Peter Bartok  <pbartok@novell.com> 
13488         * TextBoxBase.cs:
13489           - Now calling PositionCaret with absolute space coordinates
13490           - Enabled vertical scrolling
13491           - Better tracking of scrollbar changes, tied into WidthChange
13492             event
13493           - Improved cursor tracking
13494           - Removed debug output
13495         * TextControl.cs:
13496           - PositionCaret coordinates are now works in absolute space, not 
13497             the canvas
13498           - Improved tracking of document size
13499           - Added events for width and height changes
13501 2005-06-21  Peter Bartok  <pbartok@novell.com>
13503         * Form.cs: Set focus to active control when form is activated
13504         * TextControl.cs: 
13505           - Added word-wrap functionality to RecalculateLine() 
13506           - Added some short function descriptions for VS.Net to aid in
13507             writing dependent controls
13508           - Added Caret property, returning the current coords of the caret
13509           - Added ViewPortWidth and ViewPortHeight properties
13510           - Added Wrap property
13511           - Added CaretMoved event
13512           - Removed some old debug code
13513           - Split() can now create soft splits
13514           - Added PreviousTag()/NextTag() to allow walking "tag-lists"
13515           - Added method to format existing text
13516           - Fixed size/alignment calculations to use viewport
13517           - RecalculateDocument now can handle changing line-numbers while
13518             calculating lines
13520         * TextBox.cs:
13521           - Added some wrap logic, we don't wrap if alignment is not left
13522           - Added casts for scrollbar var, base class switched types to
13523             also support RichTextBoxA
13524           - Implemented handling of scrollbar visibility flags
13526         * TextBoxBase.cs:
13527           - Switched scrollbars type to RichTextBoxScrollBars to support
13528             RichTextBox
13529           - Added tracking of canvas width/height
13530           - Switched scrollbars to be not selectable (to keep focus on text)
13531           - Added central CalculateDocument() method to handle all redraw
13532             requirements
13533           - Added ReadOnly support
13534           - Added WordWrap support
13535           - Fixed handling of Enter key (we now treat it as a DialogKey)
13536           - Fixed caret positioning when h or v scroll is not zero
13537           - Fixed placing/generation of vertical scrollbar
13538           - Added CalculateScrollBars() method to allow updating scrollbar
13539             limits and visibility
13540           - Fixed handling of horizontal scroll
13541           - Added handling of vertical scroll
13542           - Implemented auto-'jump' when caret moves to close to a left or
13543             right border and there is text to be scrolled into view (currently
13544             there's the potential for a stack overflow, until a bug in
13545             scrollbar is fixed)
13547 2005-06-21  Geoff Norton  <gnorton@customerdna.com>
13548         
13549         * XplatUIOSX.cs: Initial implementation of WM_ERASEBKGND
13551 2005-06-19  Alexander Olk  <xenomorph2@onlinehome.de>
13553         * Mime.cs:
13554         - added inodes.
13555         - return application/x-zerosize for files with size zero
13556           (if no extension pattern matches).
13557         - check matches collection for strings too.
13558         - return only the first mime type if the name value
13559           collection has more than one mime type.
13561 2005-06-18  Jonathan Chambers <jonathan.chambers@ansys.com>
13562         
13563         * PropertyGrid.cs: Cleaned up some TODOs
13564         * PropertyGridView.cs: Added support for UITypeEditors
13566 2005-06-17  Jordi Mas i Hernandez <jordi@ximian.com>
13567         
13568         * DataGrid.cs: clears cached value
13570 2005-06-17  Jordi Mas i Hernandez <jordi@ximian.com>
13572         * DataGridTextBoxColumn.cs: new rows, speed improvements, fixes, readonly prop.
13573         * DataGridDrawingLogic.cs: new rows, speed improvements, fixes, readonly prop.
13574         * DataGrid.cs: new rows, speed improvements, fixes, readonly prop.
13575         * DataGridColumnStyle.cs: new rows, speed improvements, fixes, readonly prop.
13576         
13577 2005-06-16  Jordi Mas i Hernandez <jordi@ximian.com>
13579         * ThemeWin32Classic.cs: fixes colour
13581 2005-06-15  Peter Bartok  <pbartok@novell.com>
13583         * MWFCategoryAttribute.cs: Added (Needed for PropertyGrid designer support)
13584         * MWFDescriptionAttribute.cs: Added (Needed for PropertyGrid designer support)
13585         * ButtonBase.cs: Added MWFCategory and MWFDescription attributes
13586         * Control.cs: Added some MWFCategory and MWFDescription attributes
13587         * ScrollBar.cs: Added some MWFCategory and MWFDescription attributes
13589 2005-06-15  Alexander Olk  <xenomorph2@onlinehome.de>
13591         * Mime.cs, MimeGenerated.cs: First draft of MWF mime stuff, see Mime.cs for
13592         usage
13594 2005-06-14  Jordi Mas i Hernandez <jordi@ximian.com>
13596         * DataGridTextBoxColumn.cs: default datagrid settings for Default Styles, fixes
13597         * DataGridTableStyle.cs: default datagrid settings for Default Styles, fixes
13598         * DataGridDrawingLogic.cs: default datagrid settings for Default Styles, fixes
13599         * DataGridBoolColumn.cs: default datagrid settings for Default Styles, fixes
13600         * DataGrid.cs: default datagrid settings for Default Styles, fixes
13601         * DataGridColumnStyle.cs: default datagrid settings for Default Styles, fixes
13603 2005-06-13  Jackson Harper  <jackson@ximian.com>
13605         * XplatUIX11.cs: Override SetAllowDrop on X11 so an error message
13606         isn't printed when the user enables dropping. (X11 does accept
13607         drops).
13608         
13609 2005-06-13  Jackson Harper  <jackson@ximian.com>
13611         * TreeView.cs: Remove some TODOS.
13613 2005-06-13  Jackson Harper  <jackson@ximian.com>
13615         * Form.cs: Hook into the mdi framework.
13616         * MdiClient.cs: Use the base control collections add method so
13617         parents get setup correctly. Set the default back colour and dock
13618         style.
13619         * MdiChildContext.cs: New class, this bad actor handles an
13620         instance of an MDI window. Right now there is only basic
13621         support. You can drag, close, and resize windows. Minimize and
13622         Maximize are partially implemented.
13624 2005-06-13  Jackson Harper  <jackson@ximian.com>
13626         * XplatUIX11.cs: Mash numbers together properly, otherwise we get
13627         freaky when both vals are negative. NOTE: There are probably other
13628         places in XplatUIX11 that this needs to be done.
13630 2005-06-13  Jordi Mas i Hernandez <jordi@ximian.com>
13632         * DataGrid.cs: implement missing methods, move KeyboardNavigation
13633         * DataGridColumnStyle.cs: fixes signature
13635 2005-06-12  Jackson Harper  <jackson@ximian.com>
13637         * XplatUIX11.cs: Use sizing cursors similar to the ones on
13638         windows.
13640 2005-06-11  Jackson Harper  <jackson@ximian.com>
13642         * StatusBarPanel.cs: Signature cleanups. Implement
13643         BeginInit/EndInit.
13645 2005-06-10  Jordi Mas i Hernandez <jordi@ximian.com>
13647         * DataGridTextBoxColumn.cs: Honors aligment
13648         * GridColumnStylesCollection.cs: Contains is case unsensitive
13649         * GridTableStylesCollection.cs: several fixes
13650         * DataGridTableStyle.cs: default column creation
13651         * DataGridDrawingLogic.cs: fixes
13652         * CurrencyManager.cs: ListName property
13653         * DataGrid.cs: multiple styles support
13654         * DataGridColumnStyle.cs: fixes
13655         
13657 2005-06-10  Peter Bartok  <pbartok@novell.com>
13659         * Control.cs(Select): Moved SetFocus call to avoid potential
13660           loops if controls change the active control when getting focus
13661         * UpDownBase.cs: Fixes to allow proper keyboard focus after clicking
13662           the up/down buttons
13664 2005-06-10  Matthias Felgner  <matthiasf@voelcker.ocm>
13666         * ImageListConverter.cs: Implemented
13668 2005-06-10  John BouAntoun <jba-mono@optusnet.com.au>
13670         * MonthCalendar.cs: Wired in NumericUpDown control for year
13672 2005-06-10  John BouAntoun <jba-mono@optusnet.com.au>
13674         * MonthCalendar.cs: Removed MonoTodo attributes on Click and
13675           DoubleClick events, since they are not meant to be fired.
13677 2005-06-09  Peter Bartok  <pbartok@novell.com>
13679         * UpDownBase.cs, NumericUpDown.cs, DomainUpDown.cs: Integrated
13680           Jonathan's standalone controls into MWF, implemented missing
13681           events, attributes and methods; added xxxAccessible classes
13682         * AccessibleObject.cs: Made fields internal so other classes
13683           can change them if needed
13685 2005-06-09  Jonathan Gilbert  <2a5gjx302@sneakemail.com>
13687         * UpDownBase.cs: Complete implementation
13688         * NumericUpDown.cs: Complete implementation
13689         * DomainUpDown.cs: Complete implementation
13691 2005-06-09  Jordi Mas i Hernandez <jordi@ximian.com>
13693         * DataGridTextBoxColumn.cs: drawing fixes
13694         * DataGridCell.cs: fixes ToString method to match MSNet
13695         * DataGridTableStyle.cs: fixes
13696         * DataGridBoolColumn.cs: fixes, drawing
13697         * DataGridDrawingLogic.cs: fixes, new methods
13698         * DataGridTextBox.cs: Keyboard and fixes
13699         * DataGrid.cs:
13700                 - Keyboard navigation
13701                 - Scrolling fixes
13702                 - Row selection (single, multiple, deletion, etc)
13703                 - Lots of fixes
13704         
13705 2005-06-07  Jackson Harper  <jackson@ximian.com>
13707         * ThemeWin32Classic.cs: Clear the background area when drawing
13708         buttons.
13710 2005-06-06  Peter Bartok  <pbartok@novell.com>
13712         * ImageListStreamer.cs: Fixed signature for GetData
13713         * CheckBox.cs: Fixed base class for CheckBoxAccessibleObject
13714         * ComboBox.cs:
13715           - Added missing ChildAccessibleObject class
13716           - Added missing OnXXXFocus overrides, switched to using those
13717             instead of the event handler
13718         * Control.cs:
13719           - Added Parent property for ControlAccessibleObject
13720           - Fixed signatures
13721           - Fixed attributes
13722           - Added ResetBindings()
13723         * ListBindingConverter.cs: Implemented some methods
13724         * ButtonBase.cs: Added missing ButtonBaseAccessibleObject class
13725         * ImageList.cs: Implemented basic handle scheme, removed TODOs
13726         * ContainerControl.cs: Fixed signature, now subscribing to the
13727           ControlRemoved event instead of overriding the handler, LAMESPEC
13728         * CurrencyManager.cs: Added missing attribute
13729         * MonthCalendar.cs: Added missing properties
13731 2005-06-06  Jordi Mas i Hernandez <jordi@ximian.com>
13733         * DataGridColumnStyle.cs: fixes for DataGridColumnStyle
13734         
13735 2005-06-06  Gaurav Vaish and Ankit Jain
13737         * DataSourceHelper.cs: Gaurav Vaish and Ankit Jain patch for databinding
13738         * DataGrid.cs: Gaurav Vaish and Ankit Jain patch for databinding
13739         
13740 2005-06-06  Jordi Mas i Hernandez <jordi@ximian.com>
13742         * Control.cs: fixes CreateParams Width / Height.
13744 2005-06-05  Peter Bartok  <pbartok@novell.com>
13746         * Win32DnD.cs: Removed compilation warnings
13748 2005-06-05  Peter Bartok  <pbartok@novell.com>
13750         * Control.cs (CreateParams): Since we don't know if one of the
13751           properties we use is overridden, lets make sure if we fail accessing
13752           we continue with a backup plan
13754 2005-06-05  Peter Bartok  <pbartok@novell.com>
13756         * Win32DnD.cs:
13757           - Removed debug output
13758           - Added MarshalAs attribute to ensure proper marshalling of FORMATETC
13759             struct
13760           - Plugged resource leak
13761         * XplatUIStructs.cs: Changed ClipboardFormats size to ushort, to match
13762           MS size
13764 2005-06-05  Peter Bartok  <pbartok@novell.com>
13766         * XplatUIWin32.cs: Removed DnD code
13767         * Win32DnD.cs: Implemented drop source and drop target functionality
13769 2005-06-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
13771         * UpDownBase.cs: remove duplicate addition of event, enable some code
13772         that was commented out.
13773         * NumericUpDown.cs: added missing attributes and Hexadecimal property.
13774         Validate input when a key is pressed. It works fine now for every
13775         combination of Hexadecimal. Only missing some drawing love when sharing
13776         space with other controls.
13778 2005-06-04  Peter Bartok  <pbartok@novell.com>
13780         * Control.cs:
13781           - We need to pass a window for DragDrop, so enable callback events
13782           - Added DnD callback events when being a DragSource
13783         * XplatUI.cs (StartDrag): Added window handle argument
13784         * XplatUIDriver.cs (StartDrag): Added window handle argument
13785         * QueryContinueDragEventArgs: Made fields internally accessible so
13786           drivers can set them
13787         * GiveFeedbackEventArgs: Made fields internally accessible so drivers
13788           can set them
13790 2005-06-03  Jordi Mas i Hernandez <jordi@ximian.com>
13792         * DataGridTextBoxColumn.cs: column text editing
13793         * DataGridTableStyle.cs: Respect columns styles created by the user
13794         * DataGridDrawingLogic.cs: lots of drawing fixes and enhanments
13795         * DataGridBoolColumn.cs: bool column editing
13796         * DataGrid.cs: fixes to scrolling, properties, etc
13797         * DataGridTextBox.cs: handle keyboard
13798         * DataGridColumnStyle.cs: fixes
13800 2005-06-02  Jackson Harper  <jackson@ximian.com>
13802         * ImageListStreamer.cs: Somewhat broken implementation of
13803         GetObjectData. The RLE needs some work to match MS properly.
13805 2005-06-02  Jackson Harper  <jackson@ximian.com>
13807         * X11Dnd.cs: Attempting to keep at least one file in MWF
13808         monostyled.
13810 2005-06-02  Peter Bartok  <pbartok@novell.com>
13812         * X11DnD.cs: Use Marshal.SizeOf instead of sizeof, no /unsafe required
13813           that way
13815 2005-06-02  Peter Bartok  <pbartok@novell.com>
13817         * Control.cs: Removed MonoTODO from DoDragDrop and added call to Xplat
13818         * XplatUI.cs: Added DoDragDrop() method
13819         * XplatUIDriver.cs: Added DoDragDrop() method
13821 2005-06-02  Jackson Harper  <jackson@ximian.com>
13823         * Splitter.cs: Implement BorderStyle.
13825 2005-06-02  Jackson Harper  <jackson@ximian.com>
13827         * XplatUIX11.cs: Tie into the X11Dnd subsystem.
13828         * X11Dnd.cs: New file. A subsystem that handles drag and drop on
13829         X11 using XDND.
13831 2005-06-02  Peter Bartok  <pbartok@novell.com>
13833         * DataObject.cs:
13834           - Added Data setter
13835           - Fixed broken insertion code for SetData, now also
13836             overwrites any existing entry of the same format name
13837         * Hwnd.cs: Added list of pointers that automatically gets
13838           freed when the window is disposed
13839         * XplatUI.cs: Call driver initialization method when loading
13840           a driver
13841         * Control.cs:
13842           - OnDragLeave takes EventArgs, not DragEventArgs
13843           - Added setting of WS_EX_ACCEPTFILES style when dropping is
13844             supported
13845           - Forces style update when drop state changes
13846         * XplatUIWin32.cs: Implemented Drag'n'Drop (as good as possible,
13847           not perfect since we cannot (yet) call the IDataObject.GetData()
13848           method, we keep getting 0x80004005 error, dunno why)
13850 2005-06-02  Peter Bartok  <pbartok@novell.com>
13852         * DragEventArgs.cs: Make fields internal so we can cache the
13853           object and re-set the fields from XplatUI
13855 2005-06-02  Jackson Harper  <jackson@ximian.com>
13857         * Control.cs: Add some internal methods so the DnD subsystem can
13858         raise DnD events. Also call into the driver when AllowDrop is set.
13859         * XplatUI.cs:
13860         * XplatUIDriver.cs: New method for setting whether or not a window
13861         is allowed to accept drag and drop messages.
13862                 
13863 2005-06-01  Jordi Mas i Hernandez <jordi@ximian.com>
13864         
13865         * ScrollBar.cs: Make sure that values sent in Scroll events
13866         are always between Maximum and Minimum.
13868 2005-06-01  Marek Safar  <marek.safar@seznam.cz>
13870         * Menu.cs: Call MenuChanged when menuitem visibility has been
13871         changed.
13872         * MenuItem.cs: Rebuild menu when item is (not) visible.
13873         * MainMenu.cs: MainMenu has special MenuChanged.
13874         * Theme.cs: Caption and FrameBorderSize are not fixed.
13875         * XplatUI.cs: Added CaptionHeight,FrameBorderSize.
13876         * XplatUIDriver.cs: Introduced Caption and FrameBorderSize.
13877         * XplatUIX11.cs,
13878         * XplatUIOSX: Caption and FrameBorderSize not implemented yet.
13879         * XplatUIWin32.cs: Get Caption and FrameBorderSize from system.
13881 2005-05-30  Jackson Harper  <jackson@ximian.com>
13883         * DataFormat.cs: We can't statically initialize this stuff because
13884         it calls into the xplatui and could create a loop. So we lazy init
13885         it.
13887 2005-05-28  Jackson Harper  <jackson@ximian.com>
13889         * Control.cs: Proper implementation of Product(Name/Version).
13891 2005-05-27  Jackson Harper  <jackson@ximian.com>
13893         * DataObject.cs: Dont crash if no data is found.
13895 2005-05-26  Rafael Teixeira  <rafaelteixeirabr@hotmail.com>
13896         * MdiClient.cs: Add missing Localizable attribute to BackgroundImage property
13897                 as per status page, guessing it should be set to true
13899 2005-05-26  Jordi Mas i Hernandez <jordi@ximian.com>
13901         * DataGridTextBoxColumn.cs: Draws text and basic text formatting
13902         * DataGridTableStyle.cs: set proper formatting text, def header text
13903         * ThemeWin32Classic.cs: new themable paramaters
13904         * DataGridBoolColumn.cs: paint check box, get data, fixes
13905         * DataGridDrawingLogic.cs: huge improvements in painting, fixes, new methods
13906         * DataGrid.cs: fixes properties, implements vertical and horizontal scrolling
13907         * DataGridColumnStyle.cs: fixes
13908         * Theme.cs: new themable paramaters
13909                 
13910 2005-05-26  Peter Bartok  <pbartok@novell.com>
13912         * ContainerControl.cs: Pass AdjustFormScrollbars() call on to base
13914 2005-05-24 Jonathan S. Chambers <jonathan.chambers@ansys.com>
13915         * Control.cs: Fixed LowOrder and HighOrder to preserve sign.
13917 2005-05-24  Peter Bartok  <pbartok@novell.com>
13919         * OpenFileDialog.cs, Form.cs, Menu.cs, GroupBox.cs, UserControl.cs,
13920           Label.cs, DataGridTextBoxColumn.cs, PropertyGrid.cs, ErrorProvider.cs
13921           Splitter.cs, Control.cs, FontDialog.cs, TabPage.cs,
13922           FolderBrowserDialog.cs, HelpProvider.cs, DataGridTableStyle.cs,
13923           NotifyIcon.cs, FileDialog.cs, ListView.cs, SaveFileDialog.cs,
13924           ToolBarButton.cs, ImageList.cs, DataGridBoolColumn.cs, Panel.cs,
13925           DataGrid.cs, DataGridTextBox.cs, ListBox.cs, TrackBar.cs,
13926           AxHost.cs, TabControl.cs, ScrollableControl.cs, ToolBar.cs,
13927           DataGridColumnStyle.cs, PictureBox.cs, DateTimePicker.cs,
13928           StatusBar.cs, MonthCalendar.cs, TreeView.cs: Added
13929           missing attributes, etc
13930         * DataGridPreferredColumnWidthTypeConverter.cs: Added
13932 2005-05-24  Peter Bartok  <pbartok@novell.com>
13934         * Help.cs: Added, implemented trivial functions, throws up MessageBox
13935           when user tries to get help
13936         * DataObject.cs, DataFormats.cs, LinkArea.cs,
13937           SelectionRangeConverter.cs, Clipboard.cs : Removed unused variables
13938           to suppress warnings
13939         * XplatUIWin32.cs, XplatUIOSX.cs, XplatUIX11.cs: Removed unused code to
13940           avoid unreachable code warning
13942 2005-05-20  Peter Bartok  <pbartok@novell.com>
13944         * CursorConverter.cs (ConvertTo): Switched to use Cursor.GetObjectData
13946 2005-05-20  Jordi Mas i Hernandez <jordi@ximian.com>
13948         * DataGridTextBoxColumn.cs: Basic painting methods
13949         * DataGridTableStyle.cs: Set table style in the column
13950         * ThemeWin32Classic.cs: Use Theme for colors
13951         * DataGridDrawingLogic.cs: Implement more drawing
13952         * DataGrid.cs: drawing, theming, enhacements, fixes
13953         * DataGridColumnStyle.cs: fixes, drawing
13954         * Theme.cs: theming for Datagrid
13956 2005-05-20  Peter Bartok  <pbartok@novell.com>
13958         * Cursor.cs: Implemented GetObjectData() method
13960 2005-05-20  Peter Bartok  <pbartok@novell.com>
13962         * Cursors.cs: Added setting of cursor name
13963         * Cursor.cs:
13964           - Implemented constructors
13965           - Implemented Draw and DrawStretched
13966           - Implemented Current property
13967           - Implemented == and != operators
13968           - Implemented Dispose()
13969           - Implemented ToString
13970           - Added missing attributes
13971         * XplatUIX11.cs:
13972           - Added missing reset for OverrideCursor when DoEvents is called
13973           - Fixed creation of cursor, logic was wrong
13974         * XplatUIWin32.cs:
13975           - Added missing reset for OverrideCursor when DoEvents is called
13976           - Fixed creation of cursor, bit arrays were swapped
13977         * Clipboard.cs: Removed obsolete MonoTODO attribute
13979 2005-05-20  Jordi Mas i Hernandez <jordi@ximian.com>
13981         * ComboBox.cs: fixes OnSelectedItemChanged
13982         * ControlBindingsCollection.cs: fixes item range check
13984 2005-05-20  Jordi Mas i Hernandez <jordi@ximian.com>
13986         * UpDownBase.cs:
13987                 - Calc preferred height properly
13988                 - Implement missing properties
13989                 
13990         * NumericUpDown.cs: Implement missing events
13992 2005-05-19  Jackson Harper  <jackson@ximian.com>
13994         * TabControl.cs: New method that resizes the tab pages before
13995         redrawing them. This as needed as the control is double buffered
13996         and sizing will not be recalculated unless ResizeTabPages is
13997         called.
13998         * TabPage.cs: Set base.Text instead of Text in the constructor so
13999         that UpdateOwner does not get called. Use the new Redraw method of
14000         TabControl instead of Refresh so the sizing is recalculated.
14001         * ThemeWin32Classic.cs: Draw the text for button tabs.
14003 2005-05-19  Jackson Harper  <jackson@ximian.com>
14005         * Control.cs: Paint control background images. Fix typo where
14006         PaintControlBackground was not getting called correctly.
14008 2005-05-19  Peter Bartok  <pbartok@novell.com>
14010         * ScrollableControl.cs (DisplayRectangle): Undid my last change until
14011           I can investigate, apparently I broke FileDialog
14013 2005-05-19  Marek Safar  <marek.safar@seznam.cz>
14015         * AxHost.cs: Some simple properties.
14016         * Control.cs: window must be accessible after ctor.
14017         * Form.cs: Added TransparencyKey property.
14018         * TextBoxBase.cs: Implemented Clear. Text property can be null.
14019         * XplatUIWin32.cs: SetBorderStyle implemented.
14021 2005-05-18  Peter Bartok  <pbartok@novell.com>
14023         * DataObject.cs: Entries are not global but particular to the
14024           DataObject, now it behaves that way
14025         * XplatUIWin32.cs: Implemented Clipboard methods
14026         * Clipboard.cs: Implemented
14027         * ScrollableControl.cs (DisplayRectangle): Fixed calculation
14028         * XplatUIOSX.cs: Updated to final clipboard prototypes
14029         * XplatUIX11.cs: Implemented Clipboard methods
14030         * XplatUIDriver.cs: Updated to final clipboard prototypes
14031         * XplatUIStructs.cs:
14032           - Added BITMAPINFOHEADER struct
14033           - Added ClipboardFormats enum
14034         * X11Structs.cs:
14035           - Added ClipboardStruct
14036           - Added Atom enum items for clipboard types
14037           - Fixed atom types for Selection event structures
14038         * DataFormats.cs:
14039           - Added internal properties and methods for drivers to enumerate
14040             all known formats
14041           - Switched initialization method to allow drivers to assign their
14042             own IDs even for the MS predefined clipboard IDs
14043         * XplatUI.cs: Updated to final clipboard interface
14045 2005-05-18 Jonathan S. Chambers <jonathan.chambers@ansys.com>
14046         * PropertyGridView.cs: Fixed compiler warnings.
14048 2005-05-18 Jonathan S. Chambers <jonathan.chambers@ansys.com>
14049         * PropertyGrid.cs: Added some event calls
14050         * PropertyGridView.cs: Change drawing code to use double buffering
14051         * PropertyGridTextBox.cs: Changed Text property name
14052         * GridItem.cs: Added Bounds property.
14053         * GridEntry.cs: Added Bounds property.
14055 2005-05-17  Lluis Sanchez Gual  <lluis@novell.com>
14057         * Binding.cs: Use IsInstanceOfType instead of IsAssignableFrom
14058         since GetType() may not return the correct type if the object is
14059         a remoting proxy.
14061 2005-05-17  Jordi Mas i Hernandez <jordi@ximian.com>
14063         * TreeNodeCollection.cs: fixes get/set item ranges
14064         
14065 2005-05-15  Jordi Mas i Hernandez <jordi@ximian.com>
14067         * ListBox.cs: Kazuki Oikawa's PreferredHeight and ItemHeight fixes
14068                 
14069 2005-05-15  Jordi Mas i Hernandez <jordi@ximian.com>
14071         * ComboBox.cs: Fix item range comparation
14072         * ListView.cs: Fix item range comparation
14074 2005-05-03  Alexander Olk  <xenomorph2@onlinehome.de>
14076         * FontDialog.cs:
14077           - Clear example panel when OnPaint is called
14078           - Better solution for displaying the example panel text
14079           - Select default indexes in the ListBoxes
14081 2005-05-11  Geoff Norton  <gnorton@customerdna.com>
14083         * XplatUIOSX.cs: Avoid painting into invisible views.  Fixes #74926
14085 2005-05-11  Peter Bartok  <pbartok@novell.com>
14087         * LinkArea.cs: Added and implemented LinkAreaTypeConverter class
14088         * SelectionRangeConverter.cs: Implemented
14089         * PropertyGrid.cs: Fixed attribute value
14090         * Control.cs:
14091           - Invoke(): Don't call Begin/EndInvoke if it is not neccessary
14092           - Added Sebastien Pouliot's CAS Stack Propagation fixes
14093         * XplatUIDriver.cs: Added new XplatUIDriverSupport class, for code
14094           that's common to all drivers. First methods to go there are
14095           Sebastien Pouliot's CAS Stack Propagation helper methods
14096         * XplatUIWin32.cs, XplatUIX11.cs, AsyncMethodData.cs: Fixes by
14097           Sebastien Pouliot for CAS Stack Propagation
14099 2005-05-11  Geoff Norton  <gnorton@customerdna.com>
14101         * OSXStructs.cs:
14102           XplatUIOSX.cs: More cosmetic cleanup courtesy of Artyom Tyazhelov (Artyom.Tyazhelov@helmes.ee)
14104 2005-05-12  Jordi Mas i Hernandez <jordi@ximian.com>
14106         * DataGridTextBoxColumn.cs: fixed some members
14107         * GridColumnStylesCollection.cs: indexed column is case insensitive
14108         * DataGridTableStyle.cs: fixes
14109         * ThemeWin32Classic.cs: add new theme parameter
14110         * Theme.cs: add new theme parameter
14111         * DataGridDrawingLogic.cs: Datagrid's drawing logic
14112         * DataGrid.cs: fixes, new internal properties, etc.
14113         * DataGridColumnStyle.cs: allows to set grid value
14114         *
14116 2005-05-10  Peter Bartok  <pbartok@novell.com>
14118         * AccessibleObject.cs:
14119           - Removed MonoTODO attribute on help, method is correct
14120           - Fixed Bounds property
14121         * AxHost.cs: Moved MonoTODO
14122         * ButtonBase.cs: Now setting AccessibleObject properties
14123         * RadioButton.cs: Setting proper AccessibleObject role
14124         * CheckBox.cs: Setting proper AccessibleObject role
14125         * ControlBindingsCollection.cs: Added properties, methods and attributes
14126         * DataFormats.cs: Fixed awkward internal API, and changed to enable
14127           userdefined DataFormats.Format items as well
14128         * ListControl.cs: Removed data_member from the public eye
14129         * OpenFileDialog.cs:
14130           - Made class sealed
14131           - Added missing attributes
14132         * SaveFileDialog.cs: Added missing attributes
14133         * ImageListStreamer.cs: Fixed code that caused warnings
14134         * LinkLabel.cs: Removed unreachable code
14135         * TreeView.cs: Fixed code that caused warnings
14136         * PropertyGridView.cs: Fixed code that caused warnings
14137         * GridColumnStylesCollection.cs: Added missing attributes
14138         * GridTableStylesCollection: Added missing attribute
14139         * PropertyManager: Added .ctor
14140         * SecurityIDType: Added
14141         * DataObject.cs: Implemented class
14142         * LinkArea.cs: Added missing attribute
14144 2005-05-11  Jordi Mas i Hernandez <jordi@ximian.com>
14146         * RadioButton.cs: call base method to allow to fire OnClick event
14147         * UpDownBase.cs: OnMouseUp call base method
14148         * CheckedListBox.cs: call base method before returning
14149         * TrackBar.cs: call base method before returning
14150         
14152 2005-05-10  Peter Bartok  <pbartok@novell.com>
14154         * XplatUIX11.cs: Fix for #74902, check pending timers when peeking
14155           for messages
14157 2005-05-10  Peter Bartok  <pbartok@novell.com>
14159         * DataFormats.cs: Implemented
14160         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs,
14161           XplatUIX11.cs: Added Clipboard APIs
14162         * XplatUIWin32.cs: Implemented Clipboard APIs
14163         * FolderBrowserDialog.cs: Added missing event, attributes
14165 2005-05-10  Jordi Mas i Hernandez <jordi@ximian.com>
14167         * CheckBox.cs: call base method to allow to fire OnClick event
14169 2005-05-09  Sebastien Pouliot  <sebastien@ximian.com>
14171         * XplatUI.cs: Use PlatformID.Unix under NET_2_0.
14173 2005-05-06  Peter Bartok  <pbartok@novell.com>
14175         * XplatUIX11.cs: Redid Jackson's fix, it was causing a busy loop
14176         * Screen.cs: Implemented
14177         * HelpNavigator.cs: Added
14178         * XplatUIWin32.cs: Added SystemParametersInfo call, fixed WorkArea
14179           property
14180         * HelpProvider.cs: Implemented all we can do until we have a CHM
14181           help library (which means that "What's This" does work now)
14183 2005-05-06  Jackson Harper  <jackson@ximian.com>
14185         * XplatUIX11.cs: Fix waking up the main loop.
14186                 
14187 2005-05-05  Peter Bartok  <pbartok@novell.com>
14189         * XplatUI.cs: Updated revision
14190         * Form.cs: Removed enless loop
14191         * GroupBox.cs (OnPaint): Added call to base.OnPaint()
14192         * Label.cs (OnPaint): Added call to base.OnPaint()
14193         * ToolTip.cs: Made ToolTipWindow reusable for other controls
14194         * LinkLabel.cs (OnPaint): Added call to base.OnPaint()
14195         * UpDownBase.cs (OnPaint): Moved base.OnPaint() call to end of method
14196         * AxHost.cs: Added
14197         * ButtonBase.cs: Moved base.OnPaint() call to end of method
14198         * ThemeWin32Classic.cs: Replaced references to ToolTip with references
14199           to ToolTip.ToolTipWindow for drawing and size methods; this allows
14200           reuse of ToolTipWindow by other controls
14201         * SizeGrip.cs: Moved base.OnPaint() call to end of method
14202         * XplatUIX11.cs: Now clipping drawing area (experimental)
14203         * PictureBox.cs: Moved base.OnPaint() call to end of method
14204         * Theme.cs: Fixed ToolTip abstracts to match new format
14205         * ErrorProvider.cs: Implemented
14207 2005-05-05  Jordi Mas i Hernandez <jordi@ximian.com>
14209         * Label.cs: fire events using OnAutoSizeChanged and OnTextAlignChanged
14210         * LinkLabel.cs:
14211                 - Adds cursors
14212                 - Handles focus
14213                 - Implements LinkBehavior
14214                 - Fixes many issues
14216 2005-05-03  Jackson Harper  <jackson@ximian.com>
14218         * ListView.cs: Calculate the scrollbar positioning on resize and
14219         paint, so they get put in the correct place.
14221 2005-05-03  Alexander Olk  <xenomorph2@onlinehome.de>
14223         * ColorDialogs.cs: The small color panels are now handled by
14224           SmallColorControl. This fixes drawing of the focus rectangle
14225           and adds a 3D border.
14227 2005-05-03  Peter Bartok  <pbartok@novell.com>
14229         * Control.cs: Modified version of Jonathan Chamber's fix for
14230           double-buffering
14232 2005-05-03  Jackson Harper  <jackson@ximian.com>
14234         * ListView.cs: Remove redraw variable. Control now handles whether
14235         or not a redraw needs to be done, and will only raise the paint
14236         event if redrawing is needed.
14238 2005-05-03  Jackson Harper  <jackson@ximian.com>
14240         * Splitter.cs: No decorations for the splitter form. Cache the
14241         hatch brush.
14243 2005-05-03  Jackson Harper  <jackson@ximian.com>
14245         * TreeView.cs: Use dashed lines to connect nodes. Use the
14246         ControlPaint method for drawing the focus rect instead of doing
14247         that in treeview.
14249 2005-05-02  Peter Bartok  <pbartok@novell.com>
14251         * LinkLabel.cs: Fixed the fixes from r43566 and 43521
14253 2005-04-29  Jackson Harper  <jackson@ximian.com>
14255         * ThemeWin32Classic.cs: Don't clear the GC that will clear the
14256         entire image buffer. Just clear the clipping rectangle.
14258 2005-04-29  Jackson Harper  <jackson@ximian.com>
14260         * ThemeWin32Classic.cs: Don't draw list view items that are
14261         outside the clipping rectangle.
14263 2005-04-29  Jordi Mas i Hernandez <jordi@ximian.com>
14265         * ListBox.cs: added horizontal item scroll
14267 2005-04-29  Jackson Harper  <jackson@ximian.com>
14269         * ThemeWin32Classic.cs: Remove some old debug code that was
14270         causing flicker with the new double buffering code.
14272 2005-04-29  John BouAntoun  <jba-mono@optusnet.com.au>
14274         * MonthCalendar.cs, DateTimePicker.cs: Made monthcalendar dropdwon
14275         behave like combobox and comboboxlist (still not sure if this is
14276         correct though).
14278 2005-04-28  Jackson Harper  <jackson@ximian.com>
14280         * ThemeWin32Classic.cs: Don't fill the middle of progress
14281         bars. This fills areas outside of the clip bounds that don't need
14282         to be filled.
14284 2005-04-28  Jackson Harper  <jackson@ximian.com>
14286         * Control.cs: Don't expose functionality to touch the image buffers.
14287         * ProgressBar.cs:
14288         * ListView.cs: We do not need to (and no longer can) manipulate
14289         the image buffers directly. All of this is handled by Control.
14291 2005-04-28  Peter Bartok  <pbartok@novell.com>
14293         * RichTextBoxSelectionAttribute.cs, RichTextBoxSelectionTypes.cs,
14294           RichTextBoxScrollBars.cs, RichTextBoxStreamType.cs,
14295           RichTextBoxFinds.cs, RichTextBoxWordPunctuations.cs: Added
14297 2005-04-28  Jordi Mas i Hernandez <jordi@ximian.com>
14299         * Combobox:
14300                 - Adjust control's height for non-simple comboboxes (bug fix)
14301                 - Remove dead code
14302         * MenuAPI.cs: remove unused var
14303         * ScrollBar.cs: remove unsed var
14304                  
14305         * ListBox.cs: unselect items when clearing
14307 2005-04-28  Jordi Mas i Hernandez <jordi@ximian.com>
14309         * ListControl.cs: honors OnPositionChanged and default Selected Item
14310         * ListBox.cs: unselect items when clearing
14312 2005-04-27  Jackson Harper  <jackson@ximian.com>
14314         * X11Keyboard.cs: Initialize a default keyboard and give a warning
14315         if a "correct" keyboard is not found. This will make us not crash,
14316         but might give some users bad keyboard layouts...seems to be the
14317         same thing rewind does.
14319 2005-04-27  Jackson Harper  <jackson@ximian.com>
14321         * BindingManagerBase.cs: Attach the current/position changed
14322         handlers to their respective events.
14324 2005-04-27  Jackson Harper  <jackson@ximian.com>
14326         * Control.cs: Make sure that the first WM_PAINT does a full draw,
14327         not just a blit.
14328         * ThemeWin32Classic.cs: Don't fill the background for picture
14329         boxes. This could overright user drawing.
14330         * ComboBox.cs: Just fill the clipping rect not the entire client
14331         rect when drawing the background. This prevents pieces of the
14332         image buffer from getting overwritten and is theoretically faster.
14334 2005-04-26  Jordi Mas i Hernandez <jordi@ximian.com>
14336         * ComboBox.cs: Databinding support fixes, fire missing events
14337         * ListControl.cs: implement missing methods and properties, fixes
14338         * ThemeWin32Classic.cs: Databiding support on Drawing
14339         * CheckedListBox.cs: Databinding support fixes, fire missing events
14340         * ListBox.cs: Databinding support fixes, fire missing events
14341         
14342 2005-04-25  Peter Bartok  <pbartok@novell.com>
14344         * LinkLabel.cs: Length of LinkArea is not allowed to be negative
14346 2005-04-25  Jackson Harper  <jackson@ximian.com>
14348         * TreeView.cs: Use the horizontal scrollbars height not width when
14349         determining how much of the client area is available.
14351 2005-04-25  Jackson Harper  <jackson@ximian.com>
14353         * Control.cs: Double buffering is handled differently now. As per
14354         the spec, the extra buffer is created in the WM_PAINT message and
14355         passed down to the control's drawing code.
14356         * GroupBox.cs:
14357         * Label.cs:
14358         * CheckBox.cs:
14359         * ProgressBar.cs:
14360         * RadioButton.cs:
14361         * ColorDialog.cs:
14362         * ComboBox.cs:
14363         * PropertyGridView.cs:
14364         * UpDownBase.cs:
14365         * MessageBox.cs:
14366         * MenuAPI.cs:
14367         * ListView.cs:
14368         * ButtonBase.cs:
14369         * SizeGrip.cs:
14370         * ScrollBar.cs:
14371         * ListBox.cs:
14372         * TrackBar.cs:
14373         * ToolBar.cs:
14374         * PictureBox.cs:
14375         * DateTimePicker.cs:
14376         * StatusBar.cs:
14377         * TreeView.cs: Update to new double buffering system.
14378         * MonthCalendar.cs: Uncomment block, as Capture is now
14379         working. Update to new double buffering
14380         * LinkLabel.cs: Lazy init the link collection. Update to new double buffering
14381         * PaintEventArgs.cs: New internal method allows us to set the
14382         graphics object. This is used for double buffering.
14383         * ThemeWin32Classic.cs: Give the picture box drawing code a clip
14384         rectangle. The internal paint_area var has been removed from
14385         StatusBar. The clipping rect should be used instead.
14386         * Theme.cs: Give the PictureBox drawing method a clipping rect.
14387         * TabPage.cs: The RefreshTabs method was removed, so just call the
14388         tab controls Refresh method now.
14389         * TabControl.cs: Update to new double buffering. Make sure the
14390         handle is created before sizing the tab pages, otherwise we will
14391         get stuck in a loop.
14393 2005-04-24  Borja Sanchez Zamorano <borsanza@gmail.com>
14395         * LinkLabel.cs: Fix typo, bug #74719; patch
14396           from Borja Sanchez Zamorano
14398 2005-04-22  Jackson Harper  <jackson@ximian.com>
14400         * TreeNode.cs: Implement Handle stuff.
14401         * TreeView.cs: Utility methods so nodes can get/lookup by handle.
14403 2005-04-22  Jordi Mas i Hernandez <jordi@ximian.com>
14405         * DataGridTextBoxColumn.cs: call base constructors, fixes
14406         * GridColumnStylesCollection.cs: missing events, methods, and functionality
14407         * GridTableStylesCollection.cs: fixes, check duplicate mapping names
14408         * DataGridTableStyle.cs: implements create default column styles
14409         * DataGridBoolColumn.cs: which types can handle
14410         * DataGrid.cs: missing methods, fixes, new functionality
14411         * DataGridColumnStyle.cs: fixes
14413 2005-04-20  Alexander Olk  <xenomorph2@onlinehome.de>
14414         * FolderBrowserDialog.cs:
14415         - Use a thread to fill the TreeView
14416         - Adjusted some sizes
14418 2005-04-19  Peter Bartok  <pbartok@novell.com>
14420         * LinkLabel.cs: (Re-)create the pieces when setting the Text
14421           property. Fixes #74360.
14423 2005-04-19  Jackson Harper  <jackson@ximian.com>
14425         * XEventQueue.cs: Lock when getting the lockqueue size.
14426         * PictureBox.cs: Call base OnPaint
14427         
14428 2005-04-19  Peter Bartok  <pbartok@novell.com>
14430         * XplatUIX11.cs: Fixed bug introduced with the HWND rewrite, Async
14431           messages were no longer being processed (this broke BeginInvoke)
14433           
14434 2005-04-18  Jackson Harper  <jackson@ximian.com>
14436         * TreeView.cs: buglet that caused node images to get drawn
14437         regardless of whether or not they were in the clipping rectangle.
14439 2005-04-18  Jackson Harper  <jackson@ximian.com>
14441         * CurrencyManager.cs: There are four rules for GetItemProperties:
14442         - If the type is an array use the element type of the array
14443         - If the type is a typed list, use the type
14444         - If the list contains an Item property that is not an object, use
14445         that property
14446         - use the first element of the list if there are any elements in
14447         the list.
14448         
14449 2005-04-17  Jackson Harper  <jackson@ximian.oom>
14451         * TreeView.cs: Calculate plus minus and checkbox bounds when there is a
14452         click. This handles offsets for scrolling properly and reduces
14453         memory. Also fixed GetNode to not offset now that TopNode works
14454         properly.
14455         * TreeNode.cs: No longer need to track the plus minus or checkbox bounds.
14456         
14457 2005-04-17  Jackson Harper  <jackson@ximian.com>
14459         * CursorConverter.cs: Initial implementation.
14461 2005-04-15  Jordi Mas i Hernandez <jordi@ximian.com>
14463         * ListControl.cs: work towards complex data binding support on ListControl
14464         * CurrencyManager.cs: work towards complex data binding support on ListControl
14465         * ListBox.cs: work towards complex data binding support on ListControl
14468 2005-04-15  Jordi Mas i Hernandez <jordi@ximian.com>
14470         * GridTableStylesCollection.cs: fixes name and constructor
14471         * DataGridTableStyle.cs: fixes
14472         * DataGridBoolColumn.cs: fixes names and constructors
14473         * DataGrid.cs: define methods and properties. Some init implementations
14474         * DataGridCell.cs: define methods and properties. Some init implementations
14475         * GridTablesFactory.cs: Define methods and properties
14477 2005-04-15  Geoff Norton  <gnorton@customerdna.com>
14479         * XplatUIOSX.cs:  Handle proper mouse tracking even if the current
14480         graphics port changes.  We still want the coordinates in global screen
14481         coordinates.
14483 2005-04-14  Jackson Harper  <jackson@ximian.com>
14485         * TreeView.cs: Handle clicks when plus minus is disabled. Don't
14486         check plus minus or checkbox clicks unless those features are enabled.
14488 2005-04-14  Jackson Harper  <jackson@ximian.com>
14490         * TreeView.cs: Add methods for setting the top and bottom visible
14491         nodes. TreeNode::EnsureVisible uses these methods.
14492         * TreeNode.cs: Implement EnsureVisible
14494 2005-04-13  Jordi Mas i Hernandez <jordi@ximian.com>
14496         * Form.cs: Pospone menu assignation if the window has not been created yet
14497         * XplatUIWin32.cs: Fixes Win32SetWindowPos, then does not change window
14498         size and position
14500 2005-04-12  Jackson Harper  <jackson@ximian.com>
14502         * TreeView.cs: Set the TopNode properly when scrolling
14503         occurs. This has the added benifit of reducing the amount of
14504         walking that needs to be done when drawing. Also removed an old
14505         misleading TODO.
14506         * OpenTreeNodeEnumerator.cs: Fix moving backwards.
14507         
14508 2005-04-11  Jordi Mas i Hernandez <jordi@ximian.com>
14510         * Timer.cs: fixes interval setting when the timer is already enabled
14511         
14512 2005-04-10  Alexander Olk  <xenomorph2@onlinehome.de>
14514         * FolderBrowserDialog.cs: First approach
14516 2005-04-09  Peter Bartok  <pbartok@novell.com>
14518         * FolderBrowserDialog: Added
14520 2005-04-07  Jordi Mas i Hernandez <jordi@ximian.com>
14522         * LinkLabel.cs: move drawing code into the theme
14523         * ThemeWin32Classic.cs: drawing code and painting background bugfix
14524         * Theme.cs: define DrawLinkLabel method
14526 2005-04-05  Jackson Harper  <jackson@ximian.com>
14528         * BindingContext.cs: Use weak references so these bad actors don't
14529         stay alive longer then they need to.
14531 2005-04-05  Jackson Harper  <jackson@ximian.com>
14533         * ListControl.cs: Basic implementation of complex databinding.
14534         * ComboBox.cs:
14535         * ListBox.cs: Add calls to ListControl databinding methods.
14537 2005-04-05  Alexander Olk  <xenomorph2@onlinehome.de>
14539         * FileDialog.cs:
14540           - Don't change PopupButtonState to Normal when the
14541             PopupButton gets pressed several times.
14542           - Renamed ButtonPanel to PopupButtonPanel
14544 2005-04-05  Jordi Mas i Hernandez <jordi@ximian.com>
14546         * ColorDialog.cs: Use cached objects instead of creating them
14547         * LinkLabel.cs: Use cached objects instead of creating them
14548         * Splitter.cs: Use cached objects instead of creating them
14549         * FontDialog.cs: Use cached objects instead of creating them
14550         * PropertyGridView.cs: Use cached objects instead of creating them
14551         * MessageBox.cs: Use cached objects instead of creating them
14552         * FileDialog.cs: Use cached objects instead of creating them
14553         * ThemeWin32Classic.cs: Use cached objects instead of creating them
14554         * TreeView.cs: Use cached objects instead of creating them
14555         
14556 2005-04-04  Jordi Mas i Hernandez <jordi@ximian.com>
14558         * Control.cs: use Equals to compare the font since no == op
14559         * ScrollBar.cs: use Equals to compare the font since no == op
14561 2005-04-04  Alexander Olk  <xenomorph2@onlinehome.de>
14563         * SaveFileDialog.cs: Open stream in OpenFile with FileMode Create
14565 2005-04-01  Jackson Harper  <jackson@ximian.com>
14567         * Binding.cs: Implement IsBinding.
14568         * BindingManagerBase.cs:
14569         * PropertyManager.cs:
14570         * CurrencyManager.cs: Add IsSuspended property.
14572 2005-04-01  Jackson Harper  <jackson@ximian.com>
14574         * Binding.cs: Had some IsAssignableFrom calls backwards.
14576 2005-04-01  Jackson Harper  <jackson@ximian.com>
14578         * Binding.cs: Handle null data members when pulling data.
14579         * PropertyManager.cs: Handle the data member being a property that
14580         does not exist.
14582 2005-04-01  Jordi Mas i Hernandez <jordi@ximian.com>
14584         * DataGridTextBoxColumn.cs: fixes signature
14585         * DataGrid.cs: calls right constructor
14587 2005-04-01  Jordi Mas i Hernandez <jordi@ximian.com>
14589         * DataGridTextBoxColumn.cs: implements DataGridTextBoxColumn class
14590         * GridColumnStylesCollection.cs: implements GridColumnStylesCollection
14591         * GridTableStylesCollection.cs: implements GridTableStylesCollection
14592         * DataGridTableStyle.cs: implements DataGridTableStyle
14593         * DataGridBoolColumn.cs: implements DataGridBoolColumn
14594         * DataGridTextBox.cs: implements DataGridTextBox
14595         * DataGridColumnStyle.cs: implements DataGridColumnStyle
14597 2005-03-31  Alexander Olk  <xenomorph2@onlinehome.de>
14599         * FileDialog.cs: Added simple PopupButton class for ButtonPanel
14601 2005-03-29  Peter Bartok  <pbartok@novell.com>
14603         * Application.cs:
14604           - Properly implemented CompanyName property
14605           - Fixed LocalUserAppDataPath and UserAppDataPath, now properly
14606             returns a path that includes CompanyName, ProductName and
14607             Version (fixes bug #70330)
14609 2005-03-29  Stefan Buehler  <sbuehler@gmx.ch>
14611         * TabPage.cs: Don't use Owner.DisplayRectangle unless owner is valid,
14612           fixes bug #72588.
14614 2005-03-28  Alexander Olk  <xenomorph2@onlinehome.de>
14616         * FileDialog.cs, SaveFileDialog.cs OpenFileDialog.cs:
14617         
14618           - Added ReadOnly CheckBox
14619           - Further refactoring: moved some code from Open-/SaveFileDialog
14620             to FileDialog
14622 2005-03-28  Alexander Olk  <xenomorph2@onlinehome.de>
14624         * OpenFileDialog.cs: Fixed CheckFileExists
14625         * FileDialog.cs:
14626           Moved FileView and DirComboBox outside FileDialog class.
14627           They can now be used outside FileDialog
14629 2005-03-27  Alexander Olk  <xenomorph2@onlinehome.de>
14631         * FileDialog.cs: Added a contextmenu to change ShowHiddenFiles
14632         * SaveDialog.cs, OpenFileDialog.cs: Fixes for Reset() method
14634 2005-03-27  Alexander Olk  <xenomorph2@onlinehome.de>
14636         * FileDialog.cs, OpenFileDialog.cs, SaveFileDialog.cs:
14637           - Added missing CreatePrompt property in SaveDialog
14638           - Overall SaveDialog handling should be better now
14639           - Added non standard ShowHiddenFiles property
14640           - Added extension, CreatePrompt and OverwritePrompt support in SaveDialog
14641           - Added InitialDirectory and RestoreDirectory support
14643 2005-03-26  Alexander Olk  <xenomorph2@onlinehome.de>
14645         * FileDialog.cs: Made dirComboBox usable
14647 2005-03-24  Alexander Olk  <xenomorph2@onlinehome.de>
14649         * FileDialog.cs: Added Filter support (case sensitiv)
14651 2005-03-24  Jackson Harper  <jackson@ximian.com>
14653         * TabControl.cs: Need a couple more pixels for the lines.
14655 2005-03-23  Jackson Harper  <jackson@ximian.com>
14657         * TabControl.cs: Give the tab page focus when it is selected.
14659 2005-03-23  Jackson Harper  <jackson@ximian.com>
14661         * TabControl.cs: Account for the drawing of tabs borders when
14662         invalidating. If the slider was clicked dont do click detection on
14663         the tabs.
14665 2005-03-23  Jackson Harper  <jackson@ximian.com>
14667         * TabControl.cs: Fix typo, emilinates an unneeded expose event.
14669 2005-03-22  Jonathan Chambers  <jonathan.chambers@ansys.com>
14671         * CategoryGridEntry.cs: Added
14672         * GridItem.cs: Added helper properties
14673         * PropertyGridTextBox.cs: Custom textbox control for PropertyGrid.
14674         * GridEntry.cs: Updated code for collection
14675         * PropertyGrid.cs: Cleaned up some formatting
14676         * PropertyGridView.cs: Added drop down functionality for enums.
14677         * GridItemCollection.cs: Added enumerator logic
14678         * PropertyGridEntry.cs: Added
14680 2005-03-19  Alexander Olk  <xenomorph2@onlinehome.de>
14682         * FileDialog.cs:
14683           - Removed unnecessary commented code
14684           - Fixed handling for entering the filename manually in the combobox
14686 2005-03-19  Alexander Olk  <xenomorph2@onlinehome.de>
14688         * FileDialog.cs, OpenFileDialog.cs: OpenFileDialog Multiselect now works
14690 2005-03-18  Peter Bartok  <pbartok@novell.com>
14692         * ThemeWin32Classic.cs: Moved listview column headers a bit, to avoid
14693           them being touching the border
14695 2005-03-18  Peter Bartok  <pbartok@novell.com>
14697         * TextControl.cs: Quick hack to center text better
14699 2005-03-18  Peter Bartok  <pbartok@novell.com>
14701         * ControlPaint.cs:
14702           - Don't throw NotImplemented exceptions, just print a notice once
14703             instead (requested by Miguel). This makes running existing SWF
14704             apps a bit easier
14705         * Control.cs:
14706           - Commented out Drag'N'Drop XplatUI call (no driver support yet)
14707           - Added context menu trigger on right click
14708         * Panel.cs: Trigger invalidate on resize
14709         * StatusBar.cs:
14710           - Removed old double-buffer drawing
14711           - Added ResizeRedraw style to force proper update of statusbar
14712         * ListView.cs:
14713           - Removed debug output
14714         * ThemeWin32Classic.cs:
14715           - Fixed drawing of status bar, now draws Text property if there
14716             are no defined panels
14718 2005-03-18  Jackson Harper  <jackson@ximian.com>
14720         * ImageList.cs: When the image stream is set pull all the images
14721         from it.
14722         * ImageListStreamer.cs: Implement reading image list streams.
14724 2005-03-18  Peter Bartok  <pbartok@novell.com>
14726         * ThemeWin32Classic.cs (DrawPictureBox):
14727           - Fixed calculations for centered drawing
14728           - Fixed drawing for normal mode, not scaling the image on normal
14730 2005-03-18  Peter Bartok  <pbartok@novell.com>
14732         * ComboBox.cs: Now also firing the OnKeyPress events for the embedded
14733           textbox
14734         * FileDialog.cs:
14735           - Made Open/Save button the accept button for FileDialog
14736           - Tied the cancel button to the IButtonControl cancel button
14737           - Save/Open now properly builds the pathname
14738           - Now handles user-entered text
14739           - Preventing crash on right-click if no item is selected
14740           - Fixed Text property, now uses contents of textbox
14741           - Fixed SelectedText property, now just returns the text part that
14742             is selected in the text box
14744 2005-03-18  Jackson Harper  <jackson@ximian.com>
14746         * ThemeWin32Classic.cs: Use the proper func for drawing the focus
14747         rect, make sure to de-adjust the interior rect after drawing the
14748         tab text.
14750 2005-03-18  Peter Bartok  <pbartok@novell.com>
14752         * MenuAPI.cs: Remove menu *before* executing selected action to
14753           prevent the menu from 'hanging around'
14754           
14755 2005-03-17  Geoff Norton  <gnorton@customerdna.com>
14757         * XplatUIOSX.cs: Implemented WorkingArea property
14759 2005-03-17  Peter Bartok  <pbartok@novell.com>
14761         * XplatUIX11.cs: Fixed menu coord calculations
14762         * MenuAPI.cs: Now using new ScreenToMenu()/MenuToScreen() methods
14763           for calculating offsets
14765 2005-03-17  Peter Bartok  <pbartok@novell.com>
14767         * Hwnd.cs: Do not consider menu presence for default client
14768           rectangle location/size
14769         * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs, XplatUIOSX.cs,
14770           XplatUIWin32.cs: Added MenuToScreen() and ScreenToMenu() coord
14771           translation functions
14772         * FileDialog.cs: Fixed (what I presume is a) typo
14774 2005-03-17  Jonathan Gilbert  <logic@deltaq.org>
14776         * XplatUIX11.cs: Added call to XInitThreads() to allow multi-threaded
14777           X access (avoids X-Async errors)
14779 2005-03-16  Jackson Harper  <jackson@ximian.com>
14781         * TabControl.cs: Raise the SelectedIndexChanged event.
14783 2005-03-16  Alexander Olk  <xenomorph2@onlinehome.de>
14785         * FileDialog.cs, OpenFileDialog.cs, SaveFileDialog.cs:
14786           - Removed vertical ToolBar and replaced it with a custom panel
14787             (desktop and home button already work)
14788           - Added Help button (some controls get resized or relocated then)
14789           - Draw correct text depending on Open or Save.
14790           - Fixed some typos...
14792 2005-03-16  Jordi Mas i Hernandez <jordi@ximian.com>
14794         * ScrollBar.cs:
14795           - Only change Maximum and Minimum when need it (bug fix)
14797 2005-03-15  Peter Bartok  <pbartok@novell.com>
14799         * Form.cs: Use Handle for icon, to trigger creation if
14800           the window does not yet exist
14801         * Control.cs:
14802           - CanSelect: Slight performance improvement
14803           - Focus(): Preventing possible recursion
14804           - Invalidate(): Removed ControlStyle based clear flag setting
14805           - WM_PAINT: fixed logic for calling OnPaintBackground
14806           - WM_ERASEBKGND: Fixed logic, added call to new driver method
14807             EraseWindowBackground if the control doesn't paint background
14808         * XplatUIWin32.cs:
14809           - Moved EraseWindowBackground() method to internal methods
14810           - Removed unused WM_ERASEBKGND handling in GetMessage; msg never comes;
14811             is sent via SendMessage on BeginPaint call on Win32
14812         * XplatUIX11.cs:
14813           - Added EraseWindowBackground() method
14814           - No longer sends WM_ERASEBKGND on .Expose, but on call to
14815             PaintEventStart, which more closely matches Win32 behaviour
14816           - Fixed Invalidate() call, now updates new ErasePending Hwnd property
14817           - Fixed SetFocus() to properly deal with client and whole windows
14818         * Hwnd.cs: Added ErasePending property
14819         * XplatUIOSX.cs: Stubbed EraseWindowBackground() method
14820         * XplatUI.cs, XplatUIDriver.cs: Added EraseWindowBackground() method
14822 2005-03-12  Geoff Norton  <gnorton@customerdna.com>
14824         * XplatUIOSX.cs:
14825           - Fix hard loop when timers exist.
14826           - Fix bugs with middle and right click for 3 button mice.
14828 2005-03-11  Peter Bartok  <pbartok@novell.com>
14830         * XplatUIX11.cs:
14831           - get_WorkingArea: Need to call X directly, GetWindowPos only
14832             returns cached data now
14833           - Added sanity check to GetWindowPos hwnd usage
14835 2005-03-11  Jackson Harper  <jackson@ximian.com>
14837         * BindingManagerBase.cs: This method isn't used anymore as
14838         PullData now updates the data in the control.
14840 2005-03-11  Jordi Mas i Hernandez <jordi@ximian.com>
14842         * Form.cs: fixes menu drawing on X11
14843         * MenuAPI.cs:  fixes menu drawing on X11
14845 2005-03-11  Peter Bartok  <pbartok@novell.com>
14847         * Control.cs: Changed OnCreateControl behaviour based on a suggestion
14848           from Jonathan Gilbert; should fix bug #73606
14849         * XplatUIX11.cs: Fixed NC Mouse message coordinates, they need to be
14850           in Screen coordinates. Thanks, Jordi.
14851         * Form.cs: Added missing attribute
14853 2005-03-11  Peter Bartok  <pbartok@novell.com>
14855         * Form.cs:
14856           - Rudimentary Mdi support
14857           - Removed outdated FormParent code
14858           - Implemented lots of missing properties and methods, still missing
14859             transparency support
14860           - Added missing attributes
14861           - Implemented support for MaximumBounds
14862           - Added firing of various events
14863         * XplatUI.cs: Added SetIcon() method
14864         * XplatUIDriver.cs: Added SetIcon() abstract
14865         * XplatUIOSX.cs: Stubbed out SetIcon() method
14866         * XplatUIX11.cs:
14867           - Implemented SetIcon() support
14868           - Moved SetMenu() and SetBorderStyle() to proper alphabetical pos
14869           - Switched to unix line endings
14870         * XplatUIWin32.cs:
14871           - Made POINT internal so for can access it as part of MINMAX
14872           - Implemented SetIcon() support
14873           - Implemented support for CLIENTCREATESTRUCT (but might have to drop
14874             native Mdi support again, might have to go managed)
14875         * Control.cs: Now fires the StyleChanged event
14876         * MdiClient.cs: Added; still mostly empty
14878 2005-03-10  Peter Bartok  <pbartok@novell.com>
14880         * SaveFileDialog.cs: Added emtpy file
14882 2005-03-08  Peter Bartok  <pbartok@novell.com>
14884         * Control.cs: Fixed bug #73190; now invokes CreateControl (which
14885           in turn triggers OnCreateContro) when creating a handle for the
14886           first time.
14887         * TextControl.cs: Fixed endless loop in certain cases when
14888           replacing the current selection
14890 2005-03-08  Jordi Mas i Hernandez <jordi@ximian.com>
14892         * ScrollBar.cs:
14893           - Honors NewValue changes in Scroll events allowing apps to change it
14894           - Adds First and Last Scroll events
14895           - Fixes Thumb events
14897 2005-03-07  Peter Bartok  <pbartok@novell.com>
14899         * Hwnd.cs: Added DefaultClientRectangle property
14900         * XplatUI.cs: Now using the X11 driver Where() method, which provides
14901           more detailed debug information
14902         * XplatUIX11.cs:
14903           - Fixed size-change feedback loop, where we would pull an old size
14904             off the queue and mistakenly change our window's size to an
14905             earlier value
14906           - Now compressing ConfigureNotify events, to reduce looping and
14907             redraw issues
14908         * TextBoxBase.cs: Preventing crash when no text is set and ToString()
14909           is called
14911 2005-03-07  Jackson Harper  <jackson@ximian.com>
14913         * Binding.cs: Push data pushes from data -> property. Check if the
14914         property is readonly when attempting to set it.
14916 2005-03-07  Jackson Harper  <jackson@ximian.com>
14918         * Binding.cs: Format and parse data correctly. Use ASsignableFrom
14919         instead of IsSubclassOf. Pulling data now sets the value on the
14920         control.
14921         * PropertyManager.cs:
14922         * CurrencyManager.cs: Just need to pull data when updating now,
14923         because PullData will set the value on the control.
14925 2005-03-04  Jackson Harper  <jackson@ximian.com>
14927         * Binding.cs: Implement data type parsing and converting on pulled
14928         data. TODO: Are there more ways the data can be converted?
14930 2005-03-04  Jackson Harper  <jackson@ximian.com>
14932         * Binding.cs: Support <Property>IsNull checks. Also bind to the
14933         controls Validating method so we can repull the data when the
14934         control loses focus.
14936 2005-03-03  Jordi Mas i Hernandez <jordi@ximian.com>
14938         * ColumnHeader.cs:
14939           - Fixes null string format
14940           
14941         * ListView.cs:
14942           - Adds enum type checks
14943           - Fixes redrawing and recalc need after changing some properties
14944           - Fixes on focus_item set after the event
14945           - Fixes adding columns after the control has been created
14946           
14947         * ThemeWin32Classic.cs:
14948           - Fixes CheckBox focus rectangle
14949           - Fixes ColumnHeader drawing
14952 2005-03-03  Jackson Harper  <jackson@ximian.com>
14954         * Binding.cs: Bind to <Property>Changed events so we can detect
14955         when properties are changed and update the data.
14957 2005-03-02  Jordi Mas i Hernandez <jordi@ximian.com>
14959         * ImageList.cs:
14960           - Changes 32-bit pixel format to Format32bppArgb to allow transparency
14961           - Fixes ImageList constructor with ImageList container
14962           - Fixes image scaling (wrong parameters at DrawImage)
14964 2005-02-02  Jackson Harper  <jackson@ximian.com>
14966         * Binding.cs: Make property searches case-insensitive. Eliminate
14967         some duplicated code.
14969 2005-03-01  Jordi Mas i Hernandez <jordi@ximian.com>
14971         * ComboBox.cs:
14972                 - Handle focus event
14973                 - Fix scrollbar events
14974                 - Discard highlighted item if remove it
14975                 - Fixes SelectedItem with strings
14977 2005-03-01  Peter Bartok  <pbartok@novell.com>
14979         * Control.cs:
14980           - Fixed Visible property, now follows (once again) parent chain
14981             to return false if any control in the chain is visible=false
14982           - Fixed OnParentVisibleChanged, now just calls OnVisibleChanged event
14983           - Fixed several places where is_visible instead of Visible was used
14984           - Implemented FIXME related to focus selection when setting focused
14985             control to be invisible
14987         * XplatUIWin32.cs: Now using proper method to find out if window is
14988           visible. Thanks to Jordi for pointing it out
14990 2005-02-28  Jordi Mas i Hernandez <jordi@ximian.com>
14992         * ComboBox.cs: show/hide scrollbar instead of creating it
14994 2005-02-27  Jackson Harper  <jackson@ximian.com>
14996         * CurrencyManager.cs: Add PositionChanged stuff.
14998 2005-02-27  Peter Bartok  <pbartok@novell.com>
15000         * XplatUI.cs, XplatUIDriver.cs: Added new GetMenuOrigin() method
15001         * XplatUIOSX.cs: Added GetMenuOrigin() stub
15002         * XplatUIWin32.cs: Implemented GetMenuOrigin()
15003         * XplatUIX11.cs:
15004           - Implemented GetMenuDC()
15005           - Implemented GetMenuOrigin()
15006           - Implemented ReleaseMenuDC()
15007           - Implemented generation of WM_NCPAINT message
15008           - Implemented generation and handling of WM_NCCALCSIZE message
15009         * Form.cs: Added debug helper message for Jordi's menu work
15010         * Hwnd.cs:
15011           - Modified ClientRect property; added setter, fixed getter to handle
15012             setting of ClientRect
15013           - Added MenuOrigin property
15015 2005-02-26  Peter Bartok  <pbartok@novell.com>
15017         * XplatUIX11.cs:
15018           - Destroys the caret if a window that's being destroyed contains it
15019           - Ignores expose events coming from the X11 queue for windows that
15020             already are destroyed
15021           - Now uses the proper variable for handling DestroyNotify, before we
15022             marked the wrong window as destroyed
15023           - Improved/added some debug output
15025 2005-02-26  Peter Bartok  <pbartok@novell.com>
15027         * X11Keyboard.cs: Fixes to work on 64bit systems
15029 2005-02-26  Peter Bartok  <pbartok@novell.com>
15031         * Control.cs:
15032           - Now calling OnHandleDestroyed from DestroyHandle()
15033             instead of Dispose()
15034           - Removed bogus call to controls.Remove() from DestroyHandle()
15036 2005-02-26  Peter Bartok  <pbartok@novell.com>
15038         * Control.cs: Properly destroy child windows when our handle is
15039           destroyed
15041 2005-02-25  Peter Bartok  <pbartok@novell.com>
15043         * XplatUI.cs:
15044           - Added 'DriverDebug' define to allow tracing XplatUI API calls
15045           - Alphabetized Static Methods and Subclasses
15047         * XplatUIX11.cs:
15048           - Added XException class to allow custom handling of X11 exceptions
15049           - Created custom X11 error handler, tied into XException class
15050           - Added support for MONO_XEXCEPTIONS env var to allow the user
15051             to either throw an exception on X errors or continue running
15052             after displaying the error
15053           - Added handling of DestroyNotify message
15054           - Added handler for CreateNotify message (still disabled)
15055           - Improved (tried to at least) Where method to provide file and lineno
15056         * X11Structs.cs:
15057           - Added XErrorHandler delegate
15058           - Added XRequest enumeration (to suppor translation of errors)
15060 2005-02-25  Jackson Harper  <jackson@ximian.com>
15062         * PropertyManager.cs: Implement editing features
15063         * CurrencyManager.cs:
15064         * Binding.cs: First attempt at UpdateIsBinding
15065         * BindingManagerBase.cs: Call UpdateIsBinding before
15066         pushing/pulling data.
15068 2005-02-25  Jordi Mas i Hernandez <jordi@ximian.com>
15070         * MenuAPI.cs: Respect disabled items
15071         * ThemeWin32Classic.cs
15072                 - Caches ImageAttributes creation for DrawImageDisabled
15073                 - Fixes vertical menu line drawing
15074                 - Draws disabled arrows in disable menu items
15076 2005-02-24  Peter Bartok  <pbartok@novell.com>
15078         * Hwnd.cs:
15079           - Added UserData property to allow associating arbitrary objects
15080             with the handle
15081           - Fixed leak; now removing Hwnd references from static windows array
15082         * XplatUIWin32.cs:
15083           - Fixed Graphics leak in PaintEventEnd
15084           - Removed usage of HandleData, switched over to Hwnd class
15085         * HandleData.cs: Removed, obsoleted by Hwnd.cs
15087 2005-02-24  Jordi Mas i Hernandez <jordi@ximian.com>
15089         * ThemeWin32Classic.cs: Adds Cliping to TrackBar drawing
15090         * ScrollBar.cs: Fixes bug
15091         * TrackBar.cs: removes death code, clipping, mimize refreshes,
15092          keyboard navigation enhancements
15094 2005-02-24  Jordi Mas i Hernandez <jordi@ximian.com>
15096         * Control.cs: Call DefWndProc at WM_PAINT only if UserPaint not defined
15097         * GroupBox.cs: Add control styles
15098         * Label.cs: Add control styles
15099         * UpDownBase.cs: Add control styles
15100         * ListBox.cs: Add control styles
15101         * XplatUIWin32.cs: Fixes wrong parameter order
15104 2005-02-23  Chris Bacon  <chris.bacon@docobo.co.uk>
15106         * ListView.cs: Assign owner for ColumnHeader. Patch by Chris Bacon
15108 2005-02-23  Jackson Harper  <jackson@ximian.com>
15110         * PropertyManager.cs: Implement property binding. This doesn't
15111         seem to work yet though as (I think) there are some bugs in
15112         System.ComponentModel.PropertyDescriptor.
15113         * BindingContext.cs: Use new PropertyManager constructor.
15115 2005-02-23  Jordi Mas i Hernandez <jordi@ximian.com>
15117         * ProgressBar.cs: use clip region in ProgressBar
15118         * ThemeWin32Classic.cs: use clip region in ProgressBar
15120 2004-02-22  Jackson Harper  <jackson@ximian.com>
15122         * BindingsCollection.cs: Remove some debug code.
15124 2005-02-22  Jackson Harper  <jackson@ximian.com>
15126         * BindingContext.cs:
15127         * ControlBindingsCollection.cs:
15128         * CurrencyManager.cs:
15129         * Binding.cs:
15130         * BindingManagerBase.cs: Initial implementation
15131         * BindingsCollection.cs: Add an internal contains method that the
15132         BindingManagerBase uses to ensure bindings aren't added twice to
15133         the collection.
15134         * PropertyManager.cs: Stubbed out.
15135         * Control.cs:
15136         * ContainerControl.cs: Hook up databinding
15137         
15138 2005-02-22  Geoff Norton  <gnorton@customerdna.com>
15140         * XplatUIOSX.cs:
15141           OSXStructs.cs: Refactored to handle the new Hwnd NC logic area.
15142           Fixed Invalidate/Update chain.
15143           Fixed tons of other minor bugs (this is almost a complete rewrite).
15145 2005-02-22  Jordi Mas i Hernandez <jordi@ximian.com>
15147         * ComboBox.cs: do subcontrol creation when the control is created
15149 2005-02-19  Jordi Mas i Hernandez <jordi@ximian.com>
15151         * Label.cs: fixes image drawing (image and imagelist)
15152         * ThemeWin32Classic.cs: cache brushes
15153         
15154 2005-02-19  Jordi Mas i Hernandez <jordi@ximian.com>
15156         * Form.cs: Move menu drawing code to Theme class
15157         * ComboBox.cs: Move ComboBox drawing code to Theme class
15158         * MenuItem.cs: Move menu drawing code to Theme class
15159         * MenuAPI.cs: Move menu drawing code to Theme class
15160         * ThemeWin32Classic.cs: New methods
15161         * CheckedListBox.cs: Move CheckedListbox drawing code to Theme class
15162         * ListBox.cs: Move Listbox drawing code to Theme class
15163         * Theme.cs: New methods
15165 2005-02-20  Peter Bartok  <pbartok@novell.com>
15167         * Control.cs:
15168           - Fixed ProcessKeyEventArgs to also handle WM_SYSKEY messages (and
15169             only process mnemonics on those)
15170           - Fixed event sequence for key handling; first calling
15171             ProcessKeyEventArgs now
15172         * TextBoxBase.cs:
15173           - Removed WM_KEYDOWN hook, instead we now use ProcessDialogKey()
15174             for processing non-character keys
15175           - Fixed WM_CHAR to generate proper event sequence before processing
15176         * XplatUIWin32.cs: Added ALT key state to ModifierKeys property
15177           generation
15179 2005-02-19  Peter Bartok  <pbartok@novell.com>
15181         * UserControl.cs: Added TextChanged event; added attributes
15182         * SizeGrip.cs: Implemented resizing and optional display of grip
15183         * Form.cs: Fixed attribute
15184         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs, XplatUIWin32.cs:
15185           Changed meaning of ScrollWindow bool argument; instead of the
15186           clear attribute (which will be true usually anyway), it gives the
15187           option of moving child controls as well.
15188         * XplatUIX11.cs:
15189           - Changed to match new ScrollWindow argument
15190           - Fixed GetWindowPos/SetWindowPos behaviour for toplevel controls,
15191             now handles the implicit parent window a WM puts around us
15192         * ScrollableControl.cs: Implemented (not the prettiest, but it seems
15193           to work)
15194         * TextBoxBase.cs: Adjusted to new ScrollWindow arguments
15195         * TreeView.cs: Adjusted to new ScrollWindow arguments
15197 2005-02-19  Jordi Mas i Hernandez <jordi@ximian.com>
15199         * Form.cs: Menu integration with non-client area
15200         * MenuItem.cs: Menu integration with non-client area
15201         * MenuAPI.cs: Menu integration with non-client area
15203 2005-02-18  Peter Bartok  <pbartok@novell.com>
15205         * MethodInvoker.cs: Added
15206         * MdiLayout.cs: Added
15207         * SendKeys.cs: Started implementation
15208         * ErrorIconAlignment.cs: Added
15210 2005-02-18  Peter Bartok  <pbartok@novell.com>
15212         * XplatUIWin32.cs: Implemented SetMenu(); fixed GetMenuDC()
15213         * Form.cs: Added handling for Menu-related Non-client messages
15215 2005-02-17  Peter Bartok  <pbartok@novell.com>
15217         * UpDownBase.cs: Fixed typo, compilation errors
15218         * DomainUpDown.cs: Fixed attribute value
15220 2005-02-16  Miguel de Icaza  <miguel@novell.com>
15222         * UpDownBase.cs: Attach entry events.
15223         Propagate events.
15224         Add ForeColor property, Focused, InterceptArrowKeys (interception
15225         does not work yet).
15227 2005-02-17  Jordi Mas i Hernandez <jordi@ximian.com>
15229         * Form.cs:
15230                 - Redraw non client are on Setmenu
15231                 - Calc proper menu starting point
15233 2005-02-17  Peter Bartok  <pbartok@novell.com>
15235         * Application.cs: Fixed message_filter check
15237 2005-02-17  Peter Bartok  <pbartok@novell.com>
15239         * Application.cs: Now calls registered message filters
15240         * DockStyle.cs: Fixed attribute
15241         * Form.cs: Fixed attribute
15242         * Menu.cs: Fixed attribute
15243         * ToolTip.cs: Fixed attribute
15244         * TreeNode.cs: Added missing attributes and arranged in regions
15245         * PropertyGrid.cs: Fixed signatures
15246         * TreeNodeCollection.cs: Added attributes
15247         * Splitter.cs: Added missing attributes; arranged into regions
15248         * TabPage.cs: Added missing attributes; arranged into regions
15249         * TextBoxBase.cs: Added missing attributes
15250         * TextBox.cs: Added missing attributes
15251         * ArrangeDirection.cs: Added missing attributes
15252         * TreeNodeConverter.cs: Added stub (needed for TreeNode)
15253         * ToolBarButton.cs: Fixed attributes
15254         * AnchorStyles.cs: Fixed attribute
15255         * TrackBar.cs: Fixed attributes
15256         * TabControl.cs: Added missing attributes and arranged into regions
15257         * ToolBar.cs: Fixed attribute
15258         * StatusBar.cs: Fixed signature, organized into regions and added
15259           attributes
15260         * StatusBarPanel.cs: Fixed attributes
15261         * ContentsResizedEventArgs.cs: Implemented
15262         * ContentsResizedEventHandler.cs: Implemented
15263         * DateBoldEventArgs.cs: Implemented
15264         * DateBoldEventHandler.cs: Implemented
15265         * UpDownEventArgs.cs: Implemented
15266         * UpDownEventHandler.cs: Implemented
15267         
15268 2005-02-16  Jordi Mas i Hernandez <jordi@ximian.com>
15270         * Form.cs: first Menu NC refactoring
15271         * MenuAPI.cs: first Menu NC refactoring
15272         
15273 2005-02-16  Peter Bartok  <pbartok@novell.com>
15275         * ImeMode.cs: Added missing attributes
15276         * Menu.cs: Fixed attribute
15277         * GroupBox.cs: Fixed attribute
15278         * Label.cs: Fixed attribute
15279         * ColorDialog.cs (RunDialog): Removed TODO attribute
15280         * ComboBox.cs: Fixed attributes
15281         * ListControl.cs: Added missing attributes
15282         * PropertyGrid.cs: Fixed attributes
15283         * Control.cs: Fixed attributes
15284         * ListViewItem.cs: Added TypeConverter attribute
15285         * NotifyIcon.cs: Fixed attributes
15286         * ListView.cs: Fixed attributes
15287         * ButtonBase.cs: Fixed attribute
15288         * ImageList.cs: Added missing attributes
15289         * ContainerControl.cs: Fixed signature
15290         * CheckedListBox.cs: Fixed attribute; added missing attributes
15291         * Panel.cs: Fixed attributes
15292         * PropertyTabChangedEventArgs.cs: Added missing attribute
15293         * PropertyValueChangedEventArgs.cs: Added missing attribute
15294         * Binding.cs: Fixed attribute
15295         * ListViewItemConverter: Implemented ListViewSubItemConverter class
15296         * ListBox.cs: Fixed attribute; added missing attributes;
15297         * ScrollableControl.cs: Added missing attributes
15298         * PictureBox.cs: Added missing attributes; implemented missing property
15299         * DateTimePicker.cs: Added missing attributes
15300         * Theme.cs (ToolWindowCaptionHeight): Fixed type
15301         * MonthCalendar.cs: Fixed attributes
15302         * StatusBarPanel.cs: Added missing attributes
15303         * SystemInformation.cs (ToolWindowCaptionHeight): Fixed type
15305 2005-02-16  Peter Bartok  <pbartok@novell.com>
15307         * TextBoxBase.cs: The previous method to enforce height yet remember
15308           the requested high was less than ideal, this is an attempt to do
15309           it better.
15310         * Control.cs: Added comment about possible problem
15311         * Copyright: Updated format
15312         * GridItemType.cs: Fixed swapped values
15314 2005-02-15  Jackson Harper  <jackson@ximian.com>
15316         * BaseCollection.cs: Use property so we never access an
15317         uninitialized list. Also initialize the list in the property.
15319 2005-02-15  Peter Bartok  <pbartok@novell.com>
15321         * GroupBox.cs (ProcessMnemonic): Implemented
15322         * Label.cs (ProcessMnemonic): Implemented
15323         * ThemeWin32Classic.cs (DrawGroupBox): Added stringformat to show
15324           hotkeys
15326 2005-02-15  Peter Bartok  <pbartok@novell.com>
15328         * RadioButton.cs (ProcessMnemonic): Implemented
15329         * CheckBox.cs (ProcessMnemonic): Implemented
15330         * Control.cs:
15331           - Added handling of WM_SYSxxx keyboard messages to support mnemonic
15332             handling
15333           - Added internal method to allow calling ProcessMnemonic from other
15334             controls
15335         * ContainerControl.cs:
15336           - Started support for handling validation chain handling
15337           - Implemented ProcessMnemonic support
15338           - Added Select() call to Active, to make sure the active control
15339             receives focus
15340         * Form.cs: Setting toplevel flag for Forms (this was lost in the
15341           FormParent rewrite)
15342         * ThemeWin32Classic.cs:
15343           - DrawCheckBox(): Fixed stringformat to show hotkeys
15344           - DrawRadioButton(): Fixed stringformat to show hotkeys
15345         * CommonDialog.cs: Removed WndProc override, not needed
15347 2005-02-14  Peter Bartok  <pbartok@novell.com>
15349         * XplatUIX11.cs: Fixed NotImplemented exceptions for properties,
15350           missed those in the rewrite
15352 2005-02-14  Miguel de Icaza  <miguel@novell.com>
15354         * NumericUpDown.cs (Increment, ToString): Add.
15355         (DecimalPlaces): implement.
15356         
15357         Add attributes.
15358         
15359         * UpDownBase.cs: Add the designer attributes.
15361 2005-02-13  Peter Bartok  <pbartok@novell.com>
15363         * Panel.cs: Removed border_style, now in Control
15364         * XplatUIDriver.cs: Added SetBorderStyle, SetMenu, GetMenuDC and
15365           ReleaseMenuDC Methods; renmaed ReleaseWindow to UngrabWindow
15367 2005-02-13  Peter Bartok  <pbartok@novell.com>
15369         * MouseButtons.cs: Added missing attributes
15370         * XplatUIStructs.cs: Added enumeration for title styles
15371         * LeftRightAlignment.cs: Added missing attributes
15372         * Hwnd.cs: Switched to use client_window as handle (slower, but makes
15373           it compatible with Graphics.FromHwnd()
15374         * SelectedGridItemChangedEventArgs.cs: Fixed property type
15375         * Keys.cs: Added missing attributes
15376         * SelectionRange.cs: Added missing attributes
15377         * SelectionRangeConverter.cs: Added
15378         * XplatUI.cs:
15379           - Introduced SetBorderStyle, SetMenu, GetMenuDC and
15380             ReleaseMenuDC methods
15381           - Renamed ReleaseWindow to UngrabWindow
15382           - Added proper startup notice to allow version identification
15383         * Form.cs:
15384           - Added missing attributes
15385           - Removed FormParent concept
15386         * Label.cs: Removed border_style field, now in Control
15387         * RadioButton.cs: Now properly selects RadioButton when focus is
15388           received
15389         * ThemeGtk.cs: Fixed SetDisplay call to match new X11 behaviour
15390         * Control.cs:
15391           - Added missing attributes
15392           - Added borderstyle handling
15393           - Removed FormParent concept support
15394           - Fixed calls to XplatUI to match changed APIs
15395           - Fixed bug that would case us to use disposed Graphics objects
15396           - Removed unneeded internal methods
15397           - PerformLayout(): Fixed to handle DockStyle.Fill properly
15398           - SelectNextControl(): Fixed to properly check common parents
15399         * TextBoxBase.cs: Removed border_style field (now in Control)
15400         * MessageBox.cs:
15401           - Patch by Robert Thompson (rmt@corporatism.org): Added icon support,
15402             fixed calculations for form size
15403           - Added support for localized strings and icons
15404           - Improved form size calculations, added border
15405         * ListView.cs: Removed border_style field (now in Control)
15406         * X11Structs.cs: Moved several structs from X11 driver here
15407         * X11Keyboard.cs: Changed debug message
15408         * Application.cs: Removed FormParent concept support
15409         * CommonDialog.cs:
15410           - Resetting end_modal flag
15411           - Removed FormParent concept support
15412         * NativeWindow.cs: Removed FormParent concept support
15413         * XplatUIX11.cs: Rewritten, now using the new Hwnd class, implementing
15414           Client area and Non-Client whole window to allow support for WM_NC
15415           messages
15416         * XplatUIOSX.cs: Updated to match latest driver spec; added exception
15417           prevent using it until it supports Hwnd as per Geoff Norton's request
15418         * ToolBar.cs: Fixed drawing, was not doing proper drawing
15419         * PictureBox.cs: Removed border_style field, now in Control
15420         * XplatUIWin32.cs: Added new driver methods
15422 2005-02-12  Peter Bartok  <pbartok@novell.com>
15424         * OpacityConverter.cs: Implemented
15425         * Hwnd.cs: Internal class to support drivers that need to emulate
15426           client area/non-client area window behaviour
15428 2005-02-11  Peter Bartok  <pbartok@novell.com>
15430         * KeysConverter.cs: Implemented
15432 2005-02-11  Jordi Mas i Hernandez <jordi@ximian.com>
15434         * Menu.cs: fixes methods GetContextMenu, GetMainMenu, ToString
15435         * LinkLabel: Added missing attributes
15436         * MainMenu.cs: fixes ToString
15437         * MenuItem.cs: fixes methods GetContextMenu, GetMainMenu
15438         * ListBox.cs: fixes event position
15439         * TrackBar.cs: adds missing attributes and events
15440         
15441 2005-02-10  Jordi Mas i Hernandez <jordi@ximian.com>
15443         * MenuItem.cs: Use SystemInformation and bug fixes
15444         * MenuAPI.cs: Use SystemInformation and bug fixes
15446 2005-02-09  Jackson Harper  <jackson@ximian.com>
15448         * X11Keyboard.cs: We ignore some keys, but still need to set/reset
15449         their keystate otherwise things like VK_MENU get stuck "on".
15451 2005-02-09  Kazuki Oikawa <kazuki@panicode.com>
15453         * ListBox.cs: Fixes AddRange bug
15454         
15455 2005-02-09  Jordi Mas i Hernandez <jordi@ximian.com>
15457         * ProgressBar.cs
15458                 - Add missing attributes
15459                 - Add missing method
15460                 
15461         * CheckedListBox.cs: Added missing attributes
15462                 - Add missing attributes
15463                 - Remove extra method
15464         
15465         * ComboBox.cs: Added missing attributes
15466         * VScrollBar.cs: Added missing attributes
15467         * ScrollBar.cs:  Added missing attributes
15468         * ListBox.cs: Fixes signature, add missing consts
15469         * LinkArea.cs:   Added missing attributes
15470         
15472 2005-02-08  Peter Bartok  <pbartok@novell.com>
15474         * Menu.cs: Added missing attributes
15475         * MainMenu.cs: Added missing attributes
15476         * GroupBox.cs: Added missing attributes
15477         * Label.cs: Added missing attributes
15478         * CheckBox.cs: Implemented CheckBoxAccessibleObject class
15479         * ColorDialog.cs:
15480           - Added Instance and Options properties
15481           - Added missing attributes
15482         * Cursor.cs: Made Serializable
15483         * NotifyIcon: Added missing attributes
15484         * MenuItem.cs: Added missing attributes
15485         * TextBoxBase.cs: Implemented AppendText() and Select() methods
15486         * Panel.cs: Added Missing attributes
15487         * MonthCalendar.cs: Fixed CreateParams
15489 2005-02-08  Jordi Mas i Hernandez <jordi@ximian.com>
15490         
15491         * LinkLabel.cs:
15492                 - Fixes signature
15493                 - Fixes issues with links
15494                 - Adds the class attributes
15496 2005-02-08  Jordi Mas i Hernandez <jordi@ximian.com>
15497         
15498         * ComboBox.cs:
15499                 - Fixes button when no items available in dropdown
15500                 - Fixes repainting problems
15501                 - Adds the class attributes
15502                 
15503 2005-02-07  Geoff Norton  <gnorton@customerdna.com>
15505         * XplatUIOSX.cs: Detect the menu bar and title bar height from
15506         the current theme.  Cache these on startup.
15508 2005-02-07  Jackson Harper  <jackson@ximian.com>
15510         * ScrollBar.cs: Give the correct clipping rect to the theme. Dirty
15511         the scrollbar buttons when they are depressed.
15513 2005-02-07  Geoff Norton  <gnorton@customerdna.com>
15515         * XplatUIOSX.cs: Really fix working at resolutions not 1024x768.
15516         Get the display size from the main displayid.  We currently dont
15517         support multiple display configurations.
15519 2005-02-07  Geoff Norton  <gnorton@customerdna.com>
15521         * XplatUIOSX.cs: Ensure the window doesn't get stuck behind the statusbar.
15523 2005-02-07  Miguel de Icaza  <miguel@novell.com>
15525         * UpDownBase.cs: Add ReadOnly and UpDownAlign properties.
15527 2005-02-05  Jonathan Chambers  <jonathan.chambers@ansys.com>
15529         * PropertyGrid.cs: Updated. Patch by Jonathan Chambers
15531 2005-02-04  Jackson Harper  <jackson@ximian.com>
15533         * ThemeWin32Classic.cs: Respect the clipping rect when
15534         drawing. Only fill the intersection of clips and rects so there
15535         isn't a lot of large fills.
15536         * ScrollBar.cs: Pass the correct clipping rect to the theme
15537         engine. Remove some debug code.
15539 2005-02-05  John BouAntoun  <jba-mono@optusnet.com.au>
15540         
15541         * DateTimePicker.cs:
15542                 - Fixed crash on DateTime.Parse, use Constructor instead
15544 2005-02-04  Jordi Mas i Hernandez <jordi@ximian.com>
15545         
15546         * MenuItem.cs:
15547         * MenuAPI.cs:
15548                 - Owner draw support (MeasureItem and DrawItem)
15550 2005-02-04  Jordi Mas i Hernandez <jordi@ximian.com>
15551         
15552         *  Menu.cs:
15553                 - Implements FindMergePosition and MergeMenu functions (very poor documented)
15554                 - Fixes MenuItems.Add range
15555         * MenuItem.cs:
15556                 - MergeMenu and Clone and CloneMenu functions
15558 2005-02-03  Jackson Harper  <jackson@ximian.com>
15560         * ScrollBar.cs: Make abstract
15561         * ScrollableControl.cs: Create H/V scrollbars now that scrollbar
15562         is abstract.
15564 2005-02-03  Jackson Harper  <jackson@ximian.com>
15566         * ScrollBar.cs: First part of my scrollbar fixups. This removes
15567         all the unneeded refreshes and uses invalidates with properly
15568         computed rects.
15570 2005-02-03  Peter Bartok  <pbartok@novell.com>
15572         * ComponentModel.cs: Added
15573         * IDataGridEditingService.cs: Added
15574         * Timer.cs: Added missing attributes
15575         * ToolTip.cs: Added missing attributes
15577 2005-02-03  Jonathan Chambers  <jonathan.chambers@ansys.com>
15579         * PropertyGridView.cs: Added. Patch by Jonathan Chambers
15581 2005-02-03  Peter Bartok  <pbartok@novell.com>
15583         * ListBox.cs: Added missing attributes
15585 2005-02-03  Jordi Mas i Hernandez <jordi@ximian.com>
15586         
15587         * ListBox.cs:
15588                 - Fixes font height after font change
15589                 - Avoid generating unnecesary OnSelectedIndexChanged on clearing
15590                 
15591 2005-02-02  Peter Bartok  <pbartok@novell.com>
15593         * HandleData.cs: Introduced static methods to allow class
15594           to be more self-contained and track it's own HandleData objects
15595         * XplatUIOSX.cs, XplatUIWin32.cs, XplatUIX11.cs: Fixed usage of
15596           HandleData to use new static methods
15598 2005-02-02  Jordi Mas i Hernandez <jordi@ximian.com>
15600         * Combobox.cs:
15601                 - Fixes default size and PreferredHeight
15602                 - Missing events
15603                 - ObjectCollection.Insert implementation
15604                 
15605         * ListControl.cs
15606                 - Fixes signature
15607         * ListBox.cs:
15608                 - Several fixes
15609                 - ObjectCollection.Insert implementation
15610                 - No selection after clean
15611                 - Small fixes
15613 2005-01-31      John BouAntoun  <jba-mono@optusnet.com.au>
15615         * ThemeWin32Classic.cs: quick fix to comboboxbutton pushed painting
15617 2005-02-01  Jordi Mas i Hernandez <jordi@ximian.com>
15619         * Combobox.cs:
15620                 - Caches ItemHeight calculation for OwnerDrawVariable
15621                 - Handles dropdown properly
15622                 - Fixes several minor bugs
15624 2005-01-31  Jordi Mas i Hernandez <jordi@ximian.com>
15626         * ListBox.cs:
15627                 - Fixes 71946 and 71950
15628                 - Fixes changing Multicolumn on the fly
15629                 - Fixes keyboard navigation on Multicolumn listboxes
15631 2005-01-31  Geoff Norton  <gnorton@customerdna.com>
15632         
15633         * XplatUIOSX.cs: Call ExitToShell in our teardown to avoid a
15634         crash reporter log.
15636 2005-01-31  Geoff Norton  <gnorton@customerdna.com>
15638         * XplatUIOSX.cs: Allow applications to actually exit.
15640 2005-01-31  Geoff Norton  <gnorton@customerdna.com>
15642         * XplatUIOSX.cs: SetWindowStyle implemented.  Reposition views in
15643         their parent at creation time rather than lazily later.  Fixes a major
15644         regression we were experiencing.
15646 2005-01-31      John BouAntoun  <jba-mono@optusnet.com.au>
15648         * ThemeWin32Classic.cs: more date time picker painting fixes
15649         * DateTimePicker.cs: more monthcalendar drop down fixes
15650         * MonthCalendar.cs: more CreateParams fixes to ensure correct drop down
15652 2005-01-31  Jordi Mas i Hernandez <jordi@ximian.com>
15654         * ScrollBar.cs:
15655                 - When moving the thumb going outside the control should stop the moving
15656                 - Adds the firing of missing events
15657                 - Fixes no button show if Size is not specified
15658                 - End / Home keys for keyboard navigation
15660 2005-01-30  Peter Bartok  <pbartok@novell.com>
15662         * NotifyIcon.cs (CalculateIconRect): Removed debug output and added
15663           sanity check to prevent theoretical loop
15664         * XplatUIWin32.cs (SetVisible): Removed debug output
15665         * XplatUIX11.cs (SystrayChange): Added sanity check
15666         * ScrollableControl.cs (OnVisibleChanged): Now calls base method
15667         * Control.cs (OnVisibleChanged): Added workaround for ParentForm
15668           behaviour, valid until the X11 client window rewrite is done
15669         * TextBox.cs (ctor): Setting proper default foreground and background
15670           colors
15672 2005-01-30      John BouAntoun  <jba-mono@optusnet.com.au>
15674         * Theme: Added DrawDateTimePicker to interface
15675         * ThemeWin32Classic.cs: Added DrawDateTimePicker (incomplete)
15676         * DateTimePicker.cs: Created (still needs keys and painting code)
15677         * DateTimePickerFormat.cs: added
15678         * MonthCalendar.cs: fixed CreateParams for popup window mode
15679           
15680 2005-01-29  Peter Bartok  <pbartok@novell.com>
15682         * ControlPaint.cs: Fixed luminace value returned on achromatic colors,
15683           this should also the calculations for ligher/darker
15684         * Theme.cs: Fixed defaults for ScrollBar widths/heights
15686 2005-01-29  Peter Bartok  <pbartok@novell.com>
15688         * ArrangeDirection.cs: Added
15689         * ArrangeStartingPositon.cs: Added
15690         * SystemInformation.cs: Implemented
15691         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs, XplatUIWin32.cs,
15692           XplatUIX11.cs, Theme.cs: Added/implemented new static properties
15693           used by SystemInformation class
15694         * X11Strucs.cs: Added XSizeHints structure
15695         * MenuAPI.cs:
15696           - Fixed CreateParams to make sure the menu window is always visible
15697           - TrackPopupMenu: Added check to make sure we don't draw the
15698             menu offscreen
15700 2005-01-29  Peter Bartok  <pbartok@novell.com>
15702         * HandleData.cs: Added method for altering invalid area
15703         * TextBoxBase.cs: Implemented TextLength
15705 2005-01-28  Peter Bartok  <pbartok@novell.com>
15707         * XplatUIX11.cs: Improvement over last patch, not sending
15708           the WM_PAINT directly anymore, instead we scroll any pending
15709           exposed areas and let the system pick out the WM_PAINT later
15711 2005-01-28  Peter Bartok  <pbartok@novell.com>
15713         * SWF.csproj: Deleted, no longer used. Instead,
15714           Managed.Windows.Forms/SWF.csproj should be used
15715         * XplatUIX11.cs: Instead of posting the WM_PAINT, we send it
15716           directly, to avoid a potential race condition with the next
15717           scroll
15719 2005-01-28  Peter Bartok  <pbartok@novell.com>
15721         * XplatUI.cs: Made class internal
15723 2005-01-28  Jordi Mas i Hernandez <jordi@ximian.com>
15725         * CheckedListBox.cs:
15726                 - Draw focus
15727                 - Fixed Drawing
15728                 - Missing methods and events
15730 2005-01-27  Peter Bartok  <pbartok@novell.com>
15732         * Application.cs (Run): Don't use form if we don't have one
15734 2005-01-27  Peter Bartok  <pbartok@novell.com>
15736         * TextBoxBase.cs (get_Lines): Fixed index off by one error
15738 2005-01-27  Peter Bartok  <pbartok@novell.com>
15740         * GridEntry.cs: Added; Patch by Jonathan S. Chambers
15741         * GridItem.cs: Added; Patch by Jonathan S. Chambers
15742         * GridItemCollection.cs: Added; Patch by Jonathan S. Chambers
15743         * GridItemType.cs: Added; Patch by Jonathan S. Chambers
15744         * PropertyGrid.cs: Added; Patch by Jonathan S. Chambers
15745         * PropertySort.cs: Added; Patch by Jonathan S. Chambers
15746         * PropertyTabChangedEventArgs.cs: Added; Patch by Jonathan S. Chambers
15747         * PropertyTabChangedEventHandler.cs: Added; Patch by Jonathan S. Chambers
15748         * PropertyValueChangedEventArgs.cs: Added; Patch by Jonathan S. Chambers
15749         * PropertyValueChangedEventArgs.cs: Added; Patch by Jonathan S. Chambers
15750         * SelectedGridItemChangedEventArgs.cs: Added; Patch by Jonathan S. Chambers
15751         * SelectedGridItemChangedEventHandler.cs: Added; Patch by Jonathan S. Chambers
15753 2005-01-27  Jordi Mas i Hernandez <jordi@ximian.com>
15755         * Combobox.cs:
15756                 - Draw focus on Simple Combobox
15757                 - Fixes drawing issues
15758                 - fixes 71834
15760 2005-01-27  Peter Bartok  <pbartok@novell.com>
15762         * Form.cs:
15763           - Place window in default location, instead of hardcoded 0/0
15764           - Send initial LocationChanged event
15765         * Control.cs:
15766           - UpdateBounds after creation to find out where the WM placed us
15767           - Make sure that if the ParentForm changes location the Form
15768             is notified
15769         * XplatUIX11.cs: XGetGeometry will not return the coords relative
15770             to the root, but to whatever the WM placed around us.
15771             Translate to root coordinates before returning toplevel
15772             coordinates
15773         * XplatUIWin32.cs: Removed debug output
15774         * XplatUIOSX.cs, XplatUI.cs, XplatUIDriver.cs: Added toplevel
15775           flag to GetWindowPos, to allow translation of coordinates on X11
15777 2005-01-27  Jordi Mas i Hernandez <jordi@ximian.com>
15779         * ListBox.cs: connect LostFocus Event
15781 2005-01-27  Peter Bartok  <pbartok@novell.com>
15783         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIOSX.cs,
15784           XplatUIX11.cs: Extended the Systray API
15785         * Form.cs: Removed debug output
15786         * Application.cs: Fixed focus assignment, always need to call
15787           XplatUI.Activate() since Form.Activate() has rules that may
15788           prevent activation
15789         * NotifyIcon.cs: Should be complete now
15790         * ToolTip.cs: Worked around possible timer bug
15792 2005-01-27  Jackson Harper  <jackson@ximian.com>
15794         * TabControl.cs:
15795         - Only invalidate the effected tabs when the
15796         selected index changes. This reduces drawing and gets rid of some
15797         flicker.
15798         - Only refresh if the tabs need to be shifted, otherwise only
15799         invalidate the slider button.
15800         - On windows the tabs are not filled to right if the slider is
15801         visible.
15802         
15803 2005-01-27  Jackson Harper  <jackson@ximian.com>
15805         * TabControl.cs: Only refresh on mouseup if we are showing the
15806         slider. Also only invalidate the button whose state has changed.
15808 2005-01-26  Peter Bartok  <pbartok@novell.com>
15810         * XplatUI.cs, XplatUIDriver.cs: Added Systray methods
15811         * XplatUIWin32.cs: Implemented SystrayAdd(), SystrayChange()
15812           and SystrayRemove() methods
15813         * XplatUIOSX.cs: Stubbed Systray methods
15814         * XplatUIX11.cs:
15815           - Implemented SystrayAdd(), SystrayChange() and SystrayRemove()
15816             methods
15817           - Fixed broken XChangeProperty calls (marshalling messed up things)
15818         * X11Structs.cs: Added enums and structs required for Size hinting
15819         * NotifyIcon.cs: Added & implemented
15821 2005-01-26  Jackson Harper  <jackson@ximian.com>
15823         * TabControl.cs: Space vertically layed out tabs properly.
15825 2005-01-26  Peter Bartok  <pbartok@novell.com>
15827         * Form.cs (CreateClientParams): Always set the location to 0,0
15828           since we're a child window.
15830         * Control.cs (SetVisibleCore): Always explicitly setting the location
15831           of a toplevel window, apparently X11 doesn't like to move windows
15832           while they're not mapped.
15834 2005-01-26  Jackson Harper  <jackson@ximian.com>
15836         * TabControl.cs: Implement FillToRight size mode with vertically
15837         rendered tabs.
15839 2005-01-26  Jordi Mas i Hernandez <jordi@ximian.com>
15841         * ControlPaint.cs, ThemeWin32Classic.cs
15842                 - Fixes DrawFocusRectangle
15844 2005-01-26  Jordi Mas i Hernandez <jordi@ximian.com>
15846         * MenuAPI.cs:
15847                 - MenuBar tracking only starts when item is first clicked
15848                 - Fixes menu hidding for multiple subitems
15849                 - Unselect item in MenuBar when item Executed
15850                 - Fixes bug 71495
15852 2005-01-25  Jordi Mas i Hernandez <jordi@ximian.com>
15854         * ListControl.cs:
15855                 - IsInputKey for ListBox
15856         * ListBox.cs:
15857                 - Focus item
15858                 - Shift and Control item selection
15859                 - Implement SelectionMode.MultiExtended
15860                 - Fixes RightToLeft
15861         * ComboBox.cs:
15862                 - IsInputKey implemented
15863                 - Do not generate OnTextChangedEdit on internal txt changes
15864                 
15865 2005-01-23  Peter Bartok  <pbartok@novell.com>
15867         * AccessibleObject.cs: Partially implemented Select()
15868         * MonthCalendar.cs: Added missing attributes and events
15869         * Form.cs: Fixed CreateParams behaviour, now controls derived from
15870           form can properly override CreateParams.
15871         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs, XplatUIWin32.cs,
15872           XplatUIX11.cs: Dropped RefreshWindow method, not needed if
15873           Control performs Invalidate & Update
15874         * NativeWindow (CreateHandle): Added special handling for Form
15875           and Form.FormParent classes to allow overriding of From.CreateParams
15876         * Control.cs:
15877           - ControlNativeWindow: Renamed 'control' variable to more intuitive
15878             name 'owner'
15879           - ControlNativeWindow: Added Owner property
15880           - Removed usage of Refresh() on property changes, changed into
15881             Invalidate(), we need to wait until the queue is processed for
15882             updates, direct calls might cause problems if not all vars for
15883             Paint are initialized
15884           - Added call to UpdateStyles() when creating the window, to set any
15885             styles that CreateWindow might have ignored.
15886           - Added support for Form CreateParent overrides to UpdateStyles()
15887         * MessageBox.cs: Removed no longer needed FormParent override stuff,
15888           CreateParams are now properly overridable
15889         * CommonDialog.cs: Removed no longer needed FormParent override stuff,
15890           CreateParams are now properly overridable
15892 2005-01-23  Miguel de Icaza  <miguel@ximian.com>
15894         * UpDownBase.cs (ctor): Connect TextChanged in the entry to the
15895         OnTextBoxChanged.
15897         Capture LostFocus and OnTextBoxChanged.  The later introduces a
15898         recursive invocation that I have not figured out yet.
15900         Reset the timer when not using (it was accumulating).
15903         (OnTextBoxChanged): Set UserEdit to true here to track whether the
15904         user has made changes that require validation.
15906         Reset changing to avoid loops.
15908 2005-01-22  Miguel de Icaza  <miguel@ximian.com>
15910         * NumericUpDown.cs: Display value at startup.
15912         * UpDownBase.cs (Text): Do not call UpdateEditText here, only call
15913         ValidateEditText.
15915         * NumericUpDown.cs: Minimum, Maximum, Text, Value properties
15916         filled in.  Added some basic parsing of text.
15918         Still missing the OnXXX method overrides, and figuring out the
15919         events that must be emitted.
15921         * UpDownBase.cs: Handle UserEdit on the Text property.
15922         
15923 2005-01-22  Jordi Mas i Hernandez <jordi@ximian.com>
15925         * ComboBox.cs:
15926           - Fixes IntegralHeight
15927           - ToString method
15929 2005-01-21  Jackson Harper  <jackson@ximian.com>
15931         * TabControl.cs: Set the SelectedIndex property when SelectedTab
15932         is set so that the page visibility is updated and the tabs are
15933         sized correctly.
15935 2005-01-21  Jackson Harper  <jackson@ximian.com>
15937         * TabControl.cs: Use cliping rectangle for blitting. Give the
15938         theme the clipping rect so we can do clipping while
15939         drawing. Remove some debug code.
15941 2005-01-21  Jackson Harper  <jackson@ximian.com>
15943         * TabPage.cs: Add a new method so tab pages can force the tab
15944         control to recalculate the tab page sizes.
15945         * TabControl.cs: UpdateOwner needs to make the tab control recalc
15946         sizes.
15948 2005-01-20  Jackson Harper  <jackson@ximian.com>
15950         * ThemeWin32Classic.cs: Clip text to the staus bar panels rects.
15952 2005-01-20  Jackson Harper  <jackson@ximian.com>
15954         * TreeView.cs: Set the bounds for nodes properly. They were
15955         getting screwed up when checkboxes were not enabled, but images
15956         were.
15958 2005-01-20  Jordi Mas i Hernandez <jordi@ximian.com>
15960         * ListBox.cs:
15961                 - Owner draw support
15962                 - Fixes
15963                 
15964 2005-01-20  Jackson Harper  <jackson@ximian.com>
15966         * XplatUIStructs.cs: More misc keys
15967         * X11Keyboard.cs: Ignore some control keys.
15969 2005-01-20  Jackson Harper  <jackson@ximian.com>
15971         * X11Structs.cs: Add the modmaps to the keymask struct and tabify.
15972         * X11Keyboard.cs: Set the AltGr mask when we get a key event.
15974 2005-01-19  Peter Bartok  <pbartok@novell.com>
15976         * Control.cs: Un-selecting the control when it is loosing focus
15978 2005-01-19  Jackson Harper  <jackson@ximian.com>
15980         * TreeView.cs: Hook up to the text controls leave event so we can
15981         end editing when the users clicks outside the text box.
15982         
15983 2005-01-19  Jackson Harper  <jackson@ximian.com>
15985         * X11Keyboard.cs: Fix typo that was causing the wrong keycodes to
15986         get set in the conversion array.
15988 2005-01-19  Peter Bartok  <pbartok@novell.com>
15990         * Application.cs (ModalRun): Added a call to CreateControl to ensure
15991           focus is properly set
15992         * Button.cs:
15993           - Added missing attributes
15994           - removed styles, those are already set in the base class
15995         * ButtonBase.cs:
15996           - Added missing attributes
15997           - Added clip window styles
15998         * CheckBox.cs: Added missing attributes
15999         * CommonDialog.cs:
16000           - FormParentWindow.CreateParams: Added required clip styles
16001         * Form.cs (ProcessDialogKey): Fixed handling of Escape key, now
16002           also filters modifier keys
16003         * MessageBox.cs:
16004           - Added assignment of Accept and Cancel button to enable Enter
16005             and Esc keys in MessageBox dialogs
16006           - FormParentWindow.CreateParams: Added required clip styles
16007         * RadioButton.cs: Added missing attributes
16008         * TextControl.cs: No longer draws selection if control does not
16009           have focus
16010         * TextBoxBase.cs:
16011           - Now draws simple rectangle around test area to make it obvious
16012             there's a control. This is a hack until we properly support borders
16013           - A few simple fixes to support selections better, now erases selected
16014             text when typing, and resets selection when using movement keys
16016 2005-01-19  Miguel de Icaza  <miguel@ximian.com>
16018         * UpDownBase.cs: Added some new properties.
16020         * DomainUpDown.cs: Implement a lot to get my test working.
16022 2005-01-19  Geoff Norton  <gnorton@customerdna.com>
16024         * XplatUIOSX.cs: Fix a minor bug to bring the close box back
16026 2005-01-19  Geoff Norton  <gnorton@customerdna.com>
16028         * OSXStructs (WindowAttributes): Fixed csc complaints
16030 2005-01-19  Geoff Norton  <gnorton@customerdna.com>
16032         * XplayUIOSX.cs:
16033           OSXStructs.cs: Initial refactor to move enums and consts into
16034           OSXStructs and use them in the driver for greater readability.
16036 2005-01-19  Geoff Norton  <gnorton@customerdna.com>
16038         * XplatUIOSX.cs: Initial support for Standard Cursors.
16039         * OSXStructs.cs: Move our structs here; added ThemeCursor enum
16041 2005-01-19  Jordi Mas i Hernandez <jordi@ximian.com>
16043         * ComboBox.cs: ability to change style when the ctrl is already
16044         created, missing methods and events, bug fixes, signature fixes
16046 2005-01-19  Peter Bartok  <pbartok@novell.com>
16048         * Cursors.cs (ctor): Added ctor to fix signature
16050 2005-01-18  Peter Bartok  <pbartok@novell.com>
16052         * Button.cs: Implemented DoubleClick event
16053         * ButtonBase.cs:
16054           - Fixed keyboard handling to behave like MS, where the press of
16055             Spacebar is equivalent to a mousedown, and the key release is
16056             equivalent to mouseup. Now a spacebar push will give the same
16057             visual feedback like a mouse click.
16058           - Added missing attributes
16059           - Added ImeModeChanged event
16060           - Added support for generating DoubleClick event for derived classes
16061         * CheckBox.cs:
16062           - Implemented DoubleClick event
16063           - Added missing attributes
16064         * CommonDialog.cs: Added missing attribute
16065         * ContextMenu.cs: Added missing attributes
16066         * RadioButton.cs:
16067           - AutoChecked buttons do not allow to be unselected when clicked
16068             (otherwise we might end up with no selected buttons in a group)
16069           - Added missing attributes
16070           - Implemented DoubleClickEvent
16071         * ThreadExceptionDialog.cs: Enabled TextBox code
16073 2005-01-18  Peter Bartok  <pbartok@novell.com>
16075         * Form.cs: Removed debug output
16076         * Button.cs: Added support for DoubleClick method
16078 2005-01-18  Peter Bartok  <pbartok@novell.com>
16080         * Form.cs:
16081           - Added method to parent window that allows triggering size
16082             calculations when a menu is added/removed
16083           - set_Menu: Cleaned up mess from early days of Form and Control,
16084             now properly triggers a recalc when a menu is added/removed
16085           - Added case to select form itself as focused form if no child
16086             controls exist
16087           - Added PerformLayout call when showing dialog, to ensure properly
16088             placed controls
16089         * Control.cs:
16090           - Select(): Made internal so Form can access it
16091           - Focus(): Only call Xplat layer if required (avoids loop), and sets
16092             status
16093         * Application.cs (Run): Removed hack and calls PerformLayout instead
16094           to trigger calculation when Form becomes visible
16096 2005-01-18  Jordi Mas i Hernandez <jordi@ximian.com>
16098         * ComboBox.cs: fixes for ownerdraw
16100 2005-01-18  Peter Bartok  <pbartok@novell.com>
16102         * TextControl.cs:
16103           - Sentinel is no longer static, each Document gets it's own, this
16104             avoids locking or alternatively overwrite problems when more
16105             than one text control is used simultaneously.
16106           - Switched to use Hilight and HilightText brushes for text selection
16108         * TextBoxBase.cs (PaintControl): Disabled AntiAliasing to improve looks
16110 2005-01-18  Peter Bartok  <pbartok@novell.com>
16112         * Control.cs:
16113           - Hooked up the following events:
16114                 o ControlAdded
16115                 o ControlRemoved
16116                 o HandleDestroyed
16117                 o ImeModeChanged
16118                 o ParentChanged
16119                 o TabStopChanged
16120                 o Invalidated
16121                 o SystemColorsChanged
16122                 o ParentFontChanged
16123                 o Move
16124           - Removed debug output
16125           - Added a call to the current theme's ResetDefaults when a color change
16126             is detected
16127         * Form.cs: Now setting the proper ImeMode
16128         * Theme.cs: Defined a method to force recreation of cached resources
16129           and rereading of system defaults (ResetDefaults())
16130         * ThemeWin32Classic.cs: Added ResetDefaults() stub
16132 2005-01-17  Peter Bartok  <pbartok@novell.com>
16134         * Control.cs: Added missing attributes
16136 2005-01-17  Jackson Harper  <jackson@ximian.com>
16138         * TreeNode.cs: Implement editing. Add missing properties selected
16139         and visible.
16140         * TreeView.cs: Implement node editing. Also some fixes to use
16141         Invalidate (invalid area) instead of Refresh when selecting.
16143 2005-01-17  Peter Bartok  <pbartok@novell.com>
16145         * Control.cs:
16146           - Implemented InvokeGotFocus() method
16147           - Implemented InvokeLostFocus() method
16148           - Implemented InvokePaint() method
16149           - Implemented InvokePaintBackground() method
16150           - Implemented InvokeClick() method
16151           - Implemented FindForm() method
16152           - Implemented RectangleToClient() method
16153           - Implemented ClientToRectangle() method
16154           - Implemented ResetBackColor() method
16155           - Implemented ResetCursor() method
16156           - Implemented ResetFont() method
16157           - Implemented ResteForeColor() method
16158           - Implemented ResetImeMode() method
16159           - Implemented ResetLeftToRight() method
16160           - Implemented ResetText() method
16161           - Implemented Scale() methods
16162           - Implemented ScaleCore() method
16163           - Implemented Update() method
16164           - Removed unused variables
16165           - Stubbed AccessibilityNotifyClients and
16166             ControlAccessibleObject.NotifyClients() methods (dunno what to do
16167             with those yet)
16168           - Now setting proper default for RightToLeft property
16169           - Fixed bug in SetClientSizeCore that would cause windows to get
16170             really big
16171           - Now sending Click/DoubleClick events
16172           - Now selecting controls when left mouse button is clicked on
16173             selectable control
16174         * AccessibleEvents.cs: Added
16175         * XplatUI.cs, XplatUIDriver.cs: Added UpdateWindow() method
16176         * XplatUIOSX.cs: Stubbed UpdateWindow() method
16177         * XplatUIWin32.cs: Implemented UpdateWindow() method
16178         * XplatUIX11.cs: Implemented UpdateWindow() method
16179         * Form.cs: Removed stray semicolon causing CS0162 warning
16180         * ThemeWin32Classic.cs: Fixed unused variable warnings
16181         * ScrollableControl.cs: Now calls base method for ScaleCore
16182         * ButtonBase.cs: Now disabling StandardClick and StandardDoubleClick
16183           style to avoid interference with internal click handler (which is
16184           different than standard Control click handling)
16185         * RadioButton.cs:
16186           - Now unchecks all sibling radio buttons when control is
16187             selected (Fixes #68756)
16188           - Removed internal tabstop variable, using the one inherited from
16189             Control
16191 2005-01-17  Jackson Harper  <jackson@ximian.com>
16193         * NavigateEventArgs.cs: Fix base type.
16194         * LinkLabel.cs: Sig fix
16195         
16196 2005-01-17  Jackson Harper  <jackson@ximian.com>
16198         * TreeView.cs: Only invalidate the effected nodes bounds when
16199         selecting nodes.
16201 2005-01-13  Jordi Mas i Hernandez <jordi@ximian.com>
16203         * XplatUIWin32.cs: fixes Win32 marshaling
16204         * XplatUIX11.cs: fixes method signature
16206 2005-01-17  Peter Bartok  <pbartok@novell.com>
16208         * XplatUIX11.cs: Clean up resources when we no longer need them
16210 2005-01-17  Peter Bartok  <pbartok@novell.com>
16212         * XplatUI.cs, XplatUIDriver.cs: Added SetCursor(), ShowCursor(),
16213           OverrideCursor(), DefineCursor(), DefineStdCursor(), GetCursorInfo()
16214           and DestroyCursor() methods.
16215         * Cursor.cs: Partially implemented, now supports standard cursors;
16216           still contains some debug code
16217         * Cursors.cs: Implemented class
16218         * Control.cs:
16219           - WndProc(): Added handling of WM_SETCURSOR message, setting the
16220             appropriate cursor
16221           - Implemented Cursor property
16222           - Replaced break; with return; more straightforwar and possibly
16223             faster
16224           - Now properly setting the result for WM_HELP
16225         * X11Structs.cs: Added CursorFontShape enum
16226         * XplatUIStructs.cs:
16227           - Added StdCursor enum (to support DefineStdCursor() method)
16228           - Added HitTest enum (to support sending WM_SETCURSOR message)
16229         * XplatUIX11.cs:
16230           - Now sends the WM_SETCURSOR message
16231           - Implemented new cursor methods
16232         * XplatUIOSX.cs: Stubbed new cursor methods
16233         * XplatUIWin32.cs:
16234           - Implemented new cursor methods
16235           - Added GetSystemMetrics function and associated enumeration
16237 2005-01-15  Peter Bartok  <pbartok@novell.com>
16239         * Control.cs:
16240           - WndProc(): Now handles EnableNotifyMessage
16241           - SelectNextControl(): Fixed bug where if no child or sibling
16242             controls exist we looped endlessly
16244 2005-01-14  Jackson Harper  <jackson@ximian.com>
16246         * TreeView.cs: Recalculate the tab pages when a new one is added
16247         so that the proper bounding rects are created.
16249 2005-01-14  Jackson Harper  <jackson@ximian.com>
16251         * TreeView.cs: Draw a gray box instead of a grip in the lower
16252         right hand corner when there are both horizontal and vertical
16253         scroll bars.
16255 2005-01-14  Jackson Harper  <jackson@ximian.com>
16257         * Control.cs: When erasing backgrounds use FromHwnd instead of
16258         FromHdc when there is a NULL wparam. This occurs on the X driver.
16259         * XplatUIX11.cs: Set the wparam to NULL.
16261 2005-01-13  Jackson Harper  <jackson@ximian.com>
16263         * PictureBox.cs: Implement missing methods (except ToString, need
16264         to test that on windows) and events. When visibility is changed we
16265         need to redraw the image because the buffers are killed. When size
16266         is changed refresh if the sizemode needs it.
16268 2005-01-13  Peter Bartok  <pbartok@novell.com>
16270         * Control.cs (SelectNextControl): Was using wrong method to select
16271           a control
16273 2005-01-13  Jordi Mas i Hernandez <jordi@ximian.com>
16275         * ComboBox.cs: fixes dropstyle
16277 2005-01-13  Peter Bartok  <pbartok@novell.com>
16279         * Form.cs:
16280           - Implemented Select() override
16281           - Now handles WM_SETFOCUS/WM_KILLFOCUS messages
16282           - Now sets keyboard focus on startup
16283         * Control.cs (SelectNextControl): Now properly handles directed=true
16284         * TextBoxBase.cs:
16285           - WndProc: Now passes tab key on to base if AcceptTabChar=false
16286           - Added (really bad) focus rectangle (mostly for testing)
16287         * TextBox.cs: Added code to handle getting/loosing focus and invalidating
16288           to enforce redraw on focus changes
16289         * ContainerControl.cs:
16290           - Fixed detection of Shift-Tab key presses
16291           - Fixed traversal with arrow keys
16292         * XplatUIX11.cs: Implemented simulated keyboard focus; not sure if we're
16293           gonna keep this or if it's complete yet
16294         
16295 2005-01-13  Jordi Mas i Hernandez <jordi@ximian.com>
16297         * ComboBox.cs: missing properties, fixes
16299 2005-01-13  Peter Bartok  <pbartok@novell.com>
16301         * Panel.cs (ctor): Setting Selectable window style to off
16302         * Splitter.cs (ctor): Setting Selectable window style to off
16303         * GroupBox.cs (ctor): Setting Selectable window style to off
16304         * Label.cs (ctor): Setting Selectable window style to off
16306 2005-01-12  Miguel de Icaza  <miguel@ximian.com>
16308         * UpDownBase.cs (InitTimer): If the timer has been already
16309         created, enable it.
16311         Use a TextBox instead of a Label.
16313 2005-01-12  Jackson Harper  <jackson@ximian.com>
16315         * TreeView.cs: Refresh the tree after sorting the nodes. Always
16316         draw the connecting node lines (when ShowLines is true).
16317         * TreeNode.cs: The nodes index can now be updated. This is used
16318         when a node collection is sorted.
16319         * TreeNodeCollection.cs: Implement sorting. Nodes can be sorted on
16320         insert or an existing unsorted node collection can be sorted.
16321         
16322 2005-01-12  Peter Bartok  <pbartok@novell.com>
16324         * ContainerControl.cs: Implemented ProcessDialogKeys()
16326 2005-01-12  Peter Bartok  <pbartok@novell.com>
16328         * Control.cs:
16329           - Implemented SelectNextControl() method
16330           - Several focus related bug fixes
16331           - Fixed Docking calculations to match MS documentation and
16332             behaviour
16334 2005-01-12  Jordi Mas i Hernandez <jordi@ximian.com>
16336         * ContainerControl.cs, ListControl.cs, ListBox.cs: keyboard navigation and
16337         bug fixes
16339 2005-01-12  Peter Bartok  <pbartok@novell.com>
16341         * Control.cs:
16342           - Fixed broken Contains() method
16343           - Implemented GetNextControl() method. Finally. This is the pre-
16344             requisite for focus handling.
16346 2005-01-12  Peter Bartok  <pbartok@novell.com>
16348         * OSXStrucs.cs: Added
16350 2005-01-12  Peter Bartok  <pbartok@novell.com>
16352         * XplatUIWin32.cs:
16353           - Removed PeekMessageFlags
16354           - Implemented SetWindowStyle() method
16355         * XplatUIStructs.cs: Added PeekMessageFlags
16356         * X11Structs: Added missing border_width field to XWindowChanges struct
16357         * XplatUIX11.cs:
16358           - PeekMessage: Now throws exception if flags which are not yet
16359             supported are passed
16360           - Implemented SetWindowStyle() method
16361           - Fixed SetZOrder to handle AfterHwnd properly
16362         * XplatUI.cs: Added SetWindowStyle() method
16363         * XplatUIDriver.cs: Added SetWindowStyle() abstract
16364         * Control.cs:
16365           - Implemented UpdateStyles() method
16366           - Implemented UpdateZOrder() method
16367         * XplatUIOSX.cs: Added SetWindowStyle() stub
16369 2005-01-12  Geoff Norton  <gnorton@customerdna.com>
16371         * XplatUIOSX.cs: Fix SetZOrder (this needs more testing with a 3
16372         button mouse).
16375 2005-01-11  Jackson Harper  <jackson@ximian.com>
16377         * TreeView.cs: Still need to draw lines to siblings even if out of
16378         the current node is out of the clip.
16380 2005-01-11  Jackson Harper  <jackson@ximian.com>
16382         * TreeView.cs: When setting the hbar/vbar/grip position use
16383         SetBounds so that perform layout is only called once. Also suspend
16384         and resume layout so layout is only done once for all controls.
16385         - Removed some debug fluff
16386         * SizeGrip.cs: Call base implmentation in overriding methods.
16387         - When visibility is changed the drawing buffers are killed so we
16388         need to redraw.
16390 2005-01-11  Jackson Harper  <jackson@ximian.com>
16392         * TreeView.cs: Calculate the open node count while drawing. This
16393         saves us an entire tree traversal for every paint operation. Use
16394         a member var for the open node count so less vars are passed around.
16396 2005-01-11  John BouAntoun  <jba-mono@optusnet.com.au>
16398         * MonthCalendar.cs:
16399         - fixed selection to use mousemove, not mouse polling on timer
16400         * ThemeWin32Classic.cs
16401         - removed redundant unused variable "no_more_content"
16402         
16403 2005-01-11  Peter Bartok  <pbartok@novell.com>
16405         * XplatUIX11.cs (DoEvents): Needs to return when no more events
16406           are pending, so it now calls PeekMessage instead of GetMessage;
16407           implemented a incomplete version of PeekMessage
16408         
16409 2005-01-11  Peter Bartok  <pbartok@novell.com>
16411         * XplatUIWin32.cs: Switched P/Invokes to unicode charset to avoid
16412           I18n issues
16413         * TextBoxBase.cs: Added sending of TextChanged event
16415 2005-01-10  Jackson Harper  <jackson@ximian.com>
16417         * TreeView.cs: Try not to draw outside the clipping rectangle on
16418         each node element.
16420 2005-01-10  Jordi Mas i Hernandez <jordi@ximian.com>
16422         * ComboBox.cs: keyboard navigation, item navigation, bug fixes
16424 2005-01-10  Jackson Harper  <jackson@ximian.com>
16426         * TreeView.cs:
16427         - Implement fast scrolling. Now only the newly
16428         exposed nodes are drawn and the old image is moved using the
16429         XplatUI::ScrollWindow method.
16430         - Factor in height of nodes when calculating whether or not the
16431         node is in the clipping rect.
16433 2005-01-10  Jackson Harper  <jackson@ximian.com>
16435         * TreeNodeCollection.cs: Refresh the tree when a new node is added.
16437 2005-01-10  Peter Bartok  <pbartok@novell.com>
16439         * Application.cs: Added temporary hack to resolve all our resize
16440           required issues on startup. This will get fixed properly at
16441           some point in the future
16443 2005-01-10  Jackson Harper  <jackson@ximian.com>
16445         * SizeGrip.cs: New internal class that is used as a sizing
16446         grip control...hence the name.
16448 2005-01-10  Peter Bartok  <pbartok@novell.com>
16450         * Control.cs: Implemented proper TabIndex handling, now assigning
16451           a tabindex when a control is added to a container
16452         * GroupBox.cs (ctor): Now sets the Container style bit, required
16453           for Control.GetNextControl()
16455 2005-01-09  Jackson Harper  <jackson@ximian.com>
16457         * TextBoxBase.cs: Clear window when scrolling (fixes build).
16459 2005-01-09  Peter Bartok <pbartok@novell.com>
16461         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIOSX.cs,
16462           XplatUIX11.cs: Added ability to control ScrollWindow expose and
16463           an overload for ScrollWindow to allow only scrolling a rectangle
16465 2005-01-09  Peter Bartok <pbartok@novell.com>
16467         * Form.cs:
16468           - Implemented SetDesktopBounds method
16469           - Implemented SetDesktopLocation method
16471 2005-01-08  Jackson Harper  <jackson@ximian.com>
16473         * TreeView.cs: Only set the vbar's Maximum and LargeChange when
16474         the node count has changed, this removes to VScroll::Refresh calls
16475         when drawing.
16477 2005-01-08  Geoff Norton  <gnorton@customerdna.com>
16479         * XplatUIOSX.cs: Fix GetWindowState & SetWindowState
16481 2005-01-07  Jackson Harper  <jackson@ximian.com>
16483         * TreeNode.cs: Just update the single node when it is
16484         checked. Don't refresh after toggling, the Expand/Collapse already
16485         handles this.
16486         * TreeView.cs: Respect clipping a little more when drawing. Try
16487         not to redraw things that don't need to be redrawn. Just hide the
16488         scrollbars when they are no longer needed instead of removing
16489         them, so they don't have to be created again and again.
16490         
16491 2005-01-07  Geoff Norton  <gnorton@customerdna.com>
16493         * XplatUIOSX.cs (SetCaretPos):  We need to translate the view
16494         coordinates to window space to place the caret properly, FIXED.
16495         Implement GetWindowState & SetWindowState
16497 2005-01-06  Peter Bartok <pbartok@novell.com>
16499         * Form.cs:
16500           - Implemented ClientSize property
16501           - Implemented DesktopBounds property
16502           - Implemented DesktopLocation property
16503           - Implemented IsRestrictedWindow property
16504           - Implemented Size property
16505           - Implemented TopLevel property
16506           - Implemented FormWindowState property
16507         * Control.cs:
16508           - Implemented GetTopLevel() method
16509           - Implemented SetTopLevel() method
16510         * X11Structs.cs (Atom):
16511           - Added AnyPropertyType definition
16512           - Added MapState definiton and updated XWindowAttribute struct
16513         * XplatUI.cs: Added GetWindowState() and SetWindowState() methods
16514         * XplatUIDriver.cs: Added GetWindowState() and SetWindowState() methods
16515         * XplatUIOSX.cs: Stubbed GetWindowState() and SetWindowState() methods
16516         * XplatUIWin32.cs:
16517           - Implemented GetWindowState() and SetWindowState() methods
16518           - Fixed Win32GetWindowLong return type
16519         * XplatUIX11.cs:
16520           - Introduced central function for sending NET_WM messages
16521           - Implemented GetWindowState() and SetWindowState() methods
16522         * TextBoxBase.cs (set_Lines):
16523           - Now uses Foreground color for text added via Text property (Duh!)
16524           - Added code to remember programmatically requested size (fixes
16525             behaviour when Multiline is set after Size)
16526           - Added AutoSize logic
16528 2005-01-06  Jackson Harper  <jackson@ximian.com>
16530         * TreeView.cs: Draw the image after the checkbox if checkboxes are enabled.
16532 2005-01-06  Jackson Harper  <jackson@ximian.com>
16534         * ListBox.cs: Don't allow the horizontal scrollbars maximum to be
16535         set to less then 0.
16537 2005-01-06  Jackson Harper  <jackson@ximian.com>
16539         * ScrollableControl.cs: Lazy init the scrollbars.
16540         
16541 2005-01-06  Jackson Harper  <jackson@ximian.com>
16543         * Theme.cs: Speed up getting pens and solid brushes, by using
16544         their ARGB as a hash instead of tostring and not calling Contains.
16546 2005-01-06  Peter Bartok <pbartok@novell.com>
16548         * Form.cs:
16549           - Implemented OnActivated and OnDeactivate event trigger
16550           - Implemented Activate() method
16551           - Fixed ShowDialog() to activate the form that was active before
16552             the dialog was shown
16553         * XplatUIX11.cs:
16554           - Added global active_window var that tracks the currently active
16555             X11 window
16556           - Now always grabs Property changes from the root window to always
16557             catch changes on the active window property
16558           - Added code to PropertyNotify handler to send Active/Inactive
16559             messages when state changes. This puts X11 and Win32 en par on
16560             WM_ACTIVATE notifications (except for double notifications when
16561             the user clicks away from our modal window to another one of our
16562             windows)
16564 2005-01-05  Jackson Harper  <jackson@ximian.com>
16566         * ImageList.cs: Implment ctor
16568 2005-01-05  Geoff Norton  <gnorton@customerdna.com>
16570         * XplatUIOSX.cs: Implement Activate/SetTopmost
16572 2005-01-05  Geoff Norton  <gnorton@customerdna.com>
16574         * XplatUIOSX.cs: Implement SetZOrder, minor cleanup
16576 2005-01-05  Geoff Norton  <gnorton@customerdna.com>
16578         * XplatUIOSX.cs: Implement GetActive/SetFocus.
16580 2005-01-05  Peter Bartok <pbartok@novell.com>
16582         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIX11.cs,
16583           XplatUIOSX.cs: Added GetActive method to return the currently
16584           active window for the application (or null, if none is active)
16585         * Form.cs:
16586           - Implemented ActiveForm
16587           - Commented out owner assignment for modal dialogs (causes problems
16588             on Win32, since the owner will be disabled)
16589           - Reworked some Active/Focus handling (still incomplete)
16590         * CommonDialog.cs: Commented out owner assignment for modal dialogs
16591           (causes problems on Win32, since the owner will be disabled)
16592         * IWin32Window: Added ComVisible attribute
16594 2005-01-05  Peter Bartok <pbartok@novell.com>
16596         * ToolTip.cs (WndProc): Enable setting focus now that we have the
16597           required XplatUI functions.
16599 2005-01-05  Peter Bartok <pbartok@novell.com>
16601         * XplatUI.cs, XplatUIOSX.cs, XplatUIWin32.cs, XplatUIDriver.cs,
16602           XplatUIX11.cs, X11Structs.cs, Form.cs: Framework code required
16603           to implement focus and activation handling; still incomplete and
16604           with debug output
16606 2005-01-04  Peter Bartok <pbartok@novell.com>
16608         * TextBoxBase.cs: Changed access level for Document property to
16609           match switch to internal for TextControl
16611 2005-01-04  Peter Bartok <pbartok@novell.com>
16613         * AccessibleObject: Added ComVisible attribute
16615 2005-01-04  Jackson Harper  <jackson@ximian.com>
16617         * X11Keyboard.cs: Remove unneeded var.
16619 2005-01-04  Jackson Harper  <jackson@ximian.com>
16621         * XplatUIX11.cs (DoEvents): Implement, Just cast aside all events
16622         but PAINT.
16623         * XplatUIX11.cs (GetMessage): Call Exit when we get an unknown
16624         ClientMessage. This makes apps exit cleanly (more often).
16625         
16626 2005-01-04  Jackson Harper  <jackson@ximian.com>
16628         * TreeNode.cs: Patches by Kazuki Oikawa (kazuki@panicode.com) for
16629         handling focus, return correct colors and fonts,
16630         * TreeView.cs: Patches by Kazuki Oikawa (kazuki@panicode.com) to
16631         handle selection, horizontal scrolling, and mouse interaction.
16633 2005-01-04  Peter Bartok <pbartok@novell.com>
16635         * ICommandExecutor.cs: Added
16636         * IDataGridColumnStyleEditingNotificationService.cs: Added
16637         * IFeatureSupport.cs: Added
16638         * IFileReaderService.cs: Added
16639         * IDataObject.cs: Added ComVisible attribute
16640         * AmbientProperties.cs: Added
16641         * BaseCollection.cs: Added missing attributes
16642         * ListBindingConverter.cs: Added (stubbed, required for certain attributes)
16643         * BaseCollection.cs: Added missing attributes
16644         * Binding.cs: Added TypeConverter attribute
16645         * BindingContext.cs: Added DefaultEvent attribute
16646         * BindingsCollection.cs: Added DefaultEvent attribute
16647         * Button.cs: Added DefaultValue attribute
16648         * DragEventArgs.cs: Added ComVisible attribute
16649         * GiveFeedbackEventArgs.cs: Added ComVisible attribute
16650         * KeyEventArgs.cs: Added ComVisible attribute
16651         * KeyPressEventArgs.cs: Added ComVisible attribute
16652         * MouseEventArgs.cs: Added ComVisible attribute
16653         * NavigateEventArgs.cs: Added
16654         * NavigateEventHandler.cs: Added
16655         * FeatureSupport.cs: Added
16656         * OSFeature.cs: Added
16657         * Theme.cs: Added abstract Version property to support OSFeature
16658         * ThemeWin32Classic.cs: Added Version property to
16659           support OSFeature.Themes
16660         * ProgressBar.cs: Removed OnPaintBackground override, not required since
16661           the proper styles to avoid background drawing are set, also doesn't
16662           match MS signature
16663         * QueryAccessibilityHelpEventArgs.cs: Added ComVisible attribute
16664         * QueryContinueDragEventArgs.cs: Added ComVisible attribute
16665         * ScrollEventArgs.cs: Added ComVisible attribute
16666         * SplitterEventArgs.cs: Added ComVisible attribute
16667         * AccessibleSelection.cs: Added Flags attribute
16668         * Appearance.cs: Added ComVisible attribute
16669         * Border3DSide.cs: Added ComVisible attribute
16670         * Border3DStyle.cs: Added ComVisible attribute
16671         * BorderStyle.cs: Added ComVisible attribute
16672         * DragAction.cs: Added ComVisible attribute
16673         * ErrorBlinkStyle.cs: Added
16674         * ScrollEventType.cs: Added ComVisible attribute
16675         * AnchorStyles.cs: Added Editor attribute
16676         * DockStyle.cs: Added Editor attribute
16677         * HorizontalAlignment.cs: Added ComVisible attribute
16678         * HelpEventArgs.cs: Added ComVisible attribute
16679         * PaintEventArgs.cs: Added IDisposable
16681 2005-01-04  Peter Bartok <pbartok@novell.com>
16683         * TextControl.cs: Switched Line, LineTag and Document classes to
16684           internal
16686 2005-01-04  Jordi Mas i Hernandez <jordi@ximian.com>
16688         * ComboBox.cs, ThemeWin32Classic.cs, ListBox.cs, Theme.cs:
16689         Simple mode, fixes, IntegralHeight, etc.
16691 2005-01-04  Peter Bartok <pbartok@novell.com>
16693         * TextBoxBase.cs: Using proper font variable now
16695 2005-01-04  Peter Bartok <pbartok@novell.com>
16697         * Form.cs (ShowDialog): Set parent to owner, if provided
16698         * GroupBox.cs: Removed unused vars
16699         * TextControl.cs:
16700           - Added GetHashCode() for Document and LineTag classes
16701           - Removed unused variables
16702           - Added CharIndexToLineTag() and LineTagToCharIndex() methods
16703             to allow translation between continuous char position and line/pos
16704         * CheckBox.cs: Removed vars that are provided by base class
16705         * RadioButton.cs: Removed vars that are provided by base class, added
16706           new keyword where required
16707         * LinkLabel.cs: Added new keyword where required
16708         * Control.cs (WndProc): Removed unused variable
16709         * TextBoxBase.cs:
16710           - Finished SelectionLength property
16711           - Implemented SelectionStart property
16712           - Implemented Text property
16713           - Removed unused vars
16714         * MessageBox.cs: Added new keyword where required
16715         * TextBox.cs: Removed Text property code (now in TextBoxBase), fixed
16716           WndProc signature
16717         * MenuAPI.cs: Added new keyword where required
16718         * ButtonBase.cs: Removed vars that are provided by base class, added
16719           new keyword where required
16720         * ThemeWin32Classic.cs (DrawMonthCalendarDate): Now cast Math.Floor
16721           argument to double, to allow compiling with csc 2.0 (Atsushi ran
16722           into this)
16723         * Application.cs (Run): Now triggers the ThreadExit event
16724         * CommonDialog.cs: Added new keyword where required; now properly sets
16725           parent (owner) for dialog
16726         * XplatUIX11.cs: Commented out unused vars
16727         * StatusBar.cs: Fixed signature for Text property
16728         * TabPage.cs: Undid Jordi's removal of unused var, now using the var
16730 2005-01-04  Jordi Mas i Hernandez <jordi@ximian.com>
16732         * ComboBox.cs, TabPage.cs, MenuAPI.cs, ThemeWin32Classic.cs,
16733         TrackBar.cs, MonthCalendar.cs: remove unused vars
16735 2005-01-03  Jackson Harper  <jackson@ximian.com>
16737         * ThemeWin32Classic.cs:
16738         * X11Keyboard.cs: Remove unused vars.
16740 2005-01-03  Peter Bartok  <pbartok@novell.com>
16742         * TextBox.cs:
16743           - set_Text: Tied into TextControl
16744           - set_TextAlignment: Tied into TextControl
16745         * TextControl.cs:
16746           - Added alignment properties and implemented alignment handling
16747             and drawing (still has a bug, not generating proper expose events)
16748           - Added new Line() constructor to allow passing the line alignment
16749           - Fixed selection setting, properly handling end<start now
16750           - Added aligment considerations to RecalculateDocument()
16751         * TextBoxBase.cs:
16752           - Now properly enforces control height for single line controls
16753           - Added support for CharacterCasing
16754           - Added IsInputKey override
16755           - Fixed Keys.Enter logic
16756           - Added SetBoundsCore override
16757           - Fixed mouse selection handling
16759 2005-01-03  Jackson Harper  <jackson@ximian.com>
16761         * TreeView.cs:
16762           - Collapse and uncheck all nodes when CheckBoxes is disabled.
16763           - Checkboxes are always aligned to the bottom of the node,
16764           regardless of item height.
16765           - Use the node bounds to draw the text so we can center it when
16766           the item height is greater then the font height.
16767           - Node::Bounds are only the text part of the node.
16768         * TreeNode.cs: New method to combine collapsing and unchecking all
16769           nodes recursively.
16771 2005-01-02  Jackson Harper  <jackson@ximian.com>
16773         * TreeView.cs: Draw checkmarks, handle detecting check mark clicks
16774         * TreeNode.cs: Add a bounding box for the checkbox, refresh the
16775         tree when a check is changed. TODO: Only refresh the checked node.
16777 2004-12-30  Jackson Harper  <jackson@ximian.com>
16779         * TreeView.cs: Draw checkbox boxes when checkboxes are enabled.
16780         * TreeNode.cs: When collapsing make sure to never collapse the
16781         root node.
16783 2004-12-29  Jackson Harper  <jackson@ximian.com>
16785         * TreeView.cs: Align lines to the bottom of plus minus boxes properly.
16786         
16787 2004-12-28  Zoltan Varga  <vargaz@freemail.hu>
16789         * X11Structs.cs X11Keyboard.cs XplatUIX11.cs: Fix 64 bit issues.
16791 2004-12-28  Peter Bartok  <pbartok@novell.com>
16793         * MessageBox.cs (get_CreateParams): Don't use owner var if it's
16794           not yet assigned
16796 2004-12-28  Peter Bartok  <pbartok@novell.com>
16798         * Control.cs (WndProc): Added WM_HELP handler, now generates
16799           HelpRequested event
16800         * Form.cs: Added HelpButton property and required support code
16801         * XplatUIStructs.cs: Added HELPINFO structure for WM_HELP handling
16803 2004-12-28  Peter Bartok  <pbartok@novell.com>
16805         * CommonDialog.cs:
16806           - Made DialogForm.owner variable internal
16807           - Added check to ensure owner form is set before setting
16808             owner properties in CreateParams
16810 2004-12-28  Geoff Norton  <gnorton@customerdna.com>
16812         * XplatUIOSX.cs: Implement mouse hovering.  Fix QDPoint struct to avoid
16813           swizzling.  Implement ClientToScreen and ScreenToClient.  Implement
16814           GetCursorPos.  Fix major visibility issues.  Rework the windowing
16815           system to support borderless/titleless windows (implements menus).
16816           Fix GetWindowPos.  Implement initial background color support for
16817           views.
16819 2004-12-28  Peter Bartok  <pbartok@novell.com>
16821         * Form.cs (get_CreateParams): Make sure we have an owner before using
16822           the owner variable. Implement proper default if no owner exists
16824 2004-12-28  Peter Bartok  <pbartok@novell.com>
16826         * In preparation for making Managed.Windows.Forms the default build target
16827           for System.Windows.Forms, the following stubbed files were added.
16828           Dialogs are currently being implemented by contributors and are only
16829           short-term place holders.
16830         * ColorDialog.cs: Initial check-in (minmal stub)
16831         * DataGrid.cs: Initial check-in (minimal stub)
16832         * DataGridLineStyle.cs: Initial check-in (minimal stub)
16833         * DataGridParentRowsLabelStyle.cs: Initial check-in (minimal stub)
16834         * DataGridTableStyle.cs: Initial check-in (minimal stub)
16835         * FontDialog.cs: Initial check-in (minimal stub)
16836         * FileDialog.cs: Initial check-in (minimal stub)
16837         * GridColumnStylesCollection.cs: Initial check-in (minimal stub)
16838         * GridTableStylesCollection.cs: Initial check-in (minimal stub)
16839         * OpenFileDialog: Initial check-in (minimal stub)
16840         * IComponentEditorPageSite.cs: Initial check-in
16841         * Splitter.cs: Initial check-in (for Jackson)
16842         * SplitterEventArgs.cs: Initial check-in (for Jackson)
16843         * SplitterEventHandler.cs: Initial check-in (for Jackson)
16844         * TextBox.cs: Initial check-in; still needs some wiring to
16845           TextControl backend
16846         * Form.cs: Implemented ControlBox property
16847         * MessageBox.cs: Added proper coding for Minimize/Maximize/ControlBox
16848         * CommonDialog.cs: Added proper coding for Minimize/Maximize/ControlBox
16849         * TextControl.cs: Added selection functionality; added todo header
16850         * TextBoxBase.cs:
16851           - Implemented Lines property
16852           - Implemented TextHeight property
16853           - Implemented SelectedText property
16854           - Implemented SelectionLength property
16855           - Implemented SelectAll method
16856           - Implemented ToString method
16857           - Removed and cleaned up some debug code
16858           - Implemented (still buggy) mouse text selection
16860 2004-12-27  Jordi Mas i Hernandez <jordi@ximian.com>
16862         * ComboBox.cs: Complete DropDownList implementation, fixes.
16864 2004-12-26  Jordi Mas i Hernandez <jordi@ximian.com>
16866         * ThemeWin32Classic, Theme.cs: ComboBox drawing methods
16867         * ComboBoxStyle.cs: ComboBoxStyle enum
16868         * ComboBox.cs: Initial work on ComboBox control
16870 2004-12-21  Peter Bartok  <pbartok@novell.com>
16872         * Control.cs (ctor, CreateParams): Moved setting of is_visible
16873           forward so that anything that creates a window gets the default,
16874           also no longer uses Visible property in CreateParams to avoid
16875           walking up the parent chain and possibly get the wrong visible
16876           status. Fixed IsVisible to no longer walk up to the parent.
16878 2004-12-21  Peter Bartok  <pbartok@novell.com>
16880         * Form.cs (ShowDialog): Unset modality for the proper window
16882 2004-12-20  Peter Bartok  <pbartok@novell.com>
16884         * CommonDialog.cs: Initial check-in
16886 2004-12-20  Peter Bartok  <pbartok@novell.com>
16888         * Control.cs (Visible): Now uses the parent window instead of the
16889           client area window for the property
16891         * Form.cs
16892           - ShowDialog(): Now uses the proper window for modality
16893           - The default visibility state for the form parent is now false. This
16894             will prevent the user from seeing all the changes to the form and
16895             its controls before the application hits Application.Run()
16896           - Removed some stale commented out code
16898         * NativeWindow.cs:
16899           - Added FindWindow() method to have a method to check for existence
16900             of a window handle
16901           - Added ability to override default exception handling (for example
16902             when debugging with VS.Net; to do this the ExternalExceptionHandler
16903             define must be set
16904           - Removed some useless debug output
16906         * XplatUIX11.cs:
16907           - Removed r37929 (SetModal patch from Ashwin Bharambe), was
16908             not working as expected
16909           - Implemented modal_window stack and checking for _WM_ACTIVE_WINDOW
16910             property to allow switching back to the modal window if focus is
16911             given to another one of our windows (Application Modal)
16912           - Now only sets override_redirect if we create a window
16913             without WS_CAPTION
16914           - Moved EventMask selection before mapping of newly created window
16915             so we can catch the map event as well
16916           - Implemented Activate() method via the _WM_ACTIVE_WINDOW property
16917           - Added various Atom related DllImports
16918           - Implemented Exit() method
16919           - .ctor() : No longer shows window if WS_VISIBLE is not defined
16920             in the CreateParams
16922         * MessageBox.cs: Now properly deals with the FormParent window by
16923           providing an override the FormParent CreateParams property to
16924           set as POPUP instead of OVERLAPPED window.
16926 2004-12-19  Geoff Norton  <gnorton@customerdna.com>
16928         * XplatUIOSX.cs: Implement DestroyWindow.  Implement ScrollWindow
16929         Minor code cleanup.
16931 2004-12-19  Geoff Norton  <gnorton@customerdna.com>
16932         
16933         * XplatUIOSX.cs (SetModal): Implement this method on OSX.
16935 2004-12-18  Peter Bartok  <pbartok@novell.com>
16937         * XplatUIX11.cs (SetModal): Applied patch from Ashwin Bharambe,
16938           implementing SetModal() method
16940 2004-12-18  Peter Bartok  <pbartok@novell.com>
16942         * X11Structs.cs (XGCValues): Fixed type of function element
16943         * XplatUI.cs: Added ScrollWindow() method
16944         * XplatUIDriver.cs: Added ScrollWindow() abstract
16945         * XplatUIWin32.cs: Implemented ScrollWindow() method
16946         * XplatUIX11.cs: Implemented ScrollWindow() method
16947         * XplatUIOSX.cs: Stubbed out ScrollWindow() method
16949 2004-12-17  Geoff Norton  <gnorton@customerdna.com>
16951         * XplatUIOSX.cs:  Fix cursor to use an Invert instead of drawing it
16952         Some more keyboard support (INCOMPLETE)
16954 2004-12-17  Peter Bartok  <pbartok@novell.com>
16956         * TextControl.cs:
16957         - Added color attribute to line tags.
16958         - Added color argument to all functions dealing with tags
16959         - Added color argument support to various functions
16960         - Fixed miss-calculation of baseline/shift in certain circumstances
16962         * TextBoxBase.cs: Added new color option to test code
16964 2004-12-17  Jackson Harper  <jackson@ximian.com>
16966         * TreeNode.cs:
16967         * MonthCalendar.cs: Signature fixes
16969 2004-12-17  Geoff Norton  <gnorton@customerdna.com>
16971         * XplatUIOSX.cs: Find the missing caret; caret was dissappearing after a
16972         keyboard event moved it.  Create a new graphics context for each paint resolves this
16974 2004-12-17  Geoff Norton  <gnorton@customerdna.com>
16976         * XplatUIOSX.cs: Fix hard cpu eat on loop with existing timers,
16977         Make caret exist and go blink blink.  Initial keyboard support.
16978         Fix exception handler, Add Invalidate support.  Change way RefreshWindow
16979         works.
16981 2004-12-17  Jackson Harper  <jackson@ximian.com>
16983         * XplatUIStructs.cs: Updated set of virtual keycodes.
16984         * KeyboardLayouts.cs: SCROLL_LOCK is now SCROLL
16986 2004-12-17  Jackson Harper  <jackson@ximian.com>
16988         * XplatUIX11.cs: Prune old keyboard code.
16990 2004-12-17  Jackson Harper  <jackson@ximian.com>
16992         * XplatUIX11.cs: When generating mouse wparams get the modifier
16993         keys from the ModifierKeys property.
16995 2004-12-17  Jackson Harper  <jackson@ximian.com>
16997         * X11Keyboard.cs: Send up/down input when generating
16998         messages. Remove some unused vars.
17000 2004-12-17  Jackson Harper  <jackson@ximian.com>
17002         * TabControl.cs:
17003         * TreeView.cs: get rid of warnings.
17005 2004-12-17  Jackson Harper  <jackson@ximian.com>
17007         * XplatUIStructs.cs: Fix a couple wrong virtual keycodes.
17009 2004-12-17  Jordi Mas i Hernandez <jordi@ximian.com>
17011         * ListBox.cs: bug fixes, changes for CheckedListBox.cs
17012           CheckedListBox.cs: Implementation
17014 2004-12-17  Peter Bartok  <pbartok@novell.com>
17016         * TextControl.cs (RecalculateLine): Fixed baseline aligning calcs
17018 2004-12-16  Peter Bartok  <pbartok@novell.com>
17020         * TextControl.cs:
17021           - InsertCharAtCaret(): Fixed start pos fixup
17022           - CaretLine_get: No longer derives the line from the tag, the tag
17023             could be stale if lines in the document have been added or deleted
17024           - RebalanceAfterDelete(): Fixed bug in balancing code
17025           - RebalanceAfterAdd(): Fixed really stupid bug in balancing code
17026           - Line.Streamline(): Now can also elminate leading empty tags
17027           - DumpTree(): Added a few more tests and prevented exception on
17028             uninitialized data
17029           - Added Debug section for Combining lines
17030           - Delete(): Now copies all remaining properties of a line
17031           
17032         * TextBoxBase.cs:
17033           - Left mousebutton now sets the caret (and middle button still acts
17034             as formatting tester, which must go away soon)
17035           - Added Debug section for Deleting/Combining lines
17036           - Fixed calculations for UpdateView after Combining lines
17038 2004-12-16  Peter Bartok  <pbartok@novell.com>
17040         * TextControl.cs: Now properly aligns text on a baseline, using the
17041           new XplatUI.GetFontMetrics() method. Simplified several calculations
17042         * TextBoxBase.cs: Moved #endif to allow compiling if Debug is not
17043           defined
17045 2004-12-16  Peter Bartok  <pbartok@novell.com>
17047         * XplatUI.cs: Added GetFontMetrics() method
17048         * XplatUIDriver.cs: Added GetFontMetrics() abstract
17049         * XplatUIX11.cs: Implemented GetFontMetrics() method, now calls
17050           into libgdiplus, our private GetFontMetrics function
17051         * XplatUIOSX.cs: Implemented GetFontMetrics() method, same as X11
17052         * XplatUIWin32.cs: Implemented GetFontMetrics() method
17054 2004-12-16  Jackson Harper  <jackson@ximain.com>
17056         * XplatUIStruct.cs: Add enum for dead keys
17057         * X11Keyboard.cs: Map and unmap dead keys.
17059 2004-12-16  Jackson Harper  <jackson@ximian.com>
17061         * X11Keyboard.cs: Detect and use the num lock mask.
17063 2004-12-16  Peter Bartok  <pbartok@novell.com>
17065         * Control.cs (CreateGraphics): Added check to make sure the
17066           handle of the window exists before calling Graphics.FromHwnd()
17068 2004-12-16  Peter Bartok  <pbartok@novell.com>
17070         * TextBoxBase.cs: Initial check-in. DO NOT TRY TO USE THIS YET. It
17071           contains a lot of code that's not supposed to be there for the
17072           real thing, but required for developing/testing the textbox
17073           backend.
17075 2004-12-16  Peter Bartok  <pbartok@novell.com>
17077         * TextControl.cs:
17078         - Fixed Streamline method
17079         - Added FindTag method to Line
17080         - Added DumpTree method for debugging
17081         - Added DecrementLines() method for deleting lines
17082         - Fixed UpdateView to update the cursor to end-of-line on single-line
17083           updates
17084         - Added PositionCaret() method
17085         - Fixed MoveCaret(LineDown) to move into the last line, too
17086         - Added InsertChar overload
17087         - Fixed InsertChar tag offset calculations
17088         - Added DeleteChar() method
17089         - Added Combine() method for folding lines
17090         - Fixed Delete() method, no longer allocates wasted Line object and
17091           now copies all properties when swapping nodes
17092         - Delete() method now updates document line counter
17094 2004-12-15  Jackson Harper  <jackson@ximian.com>
17096         * XplatUIX11.cs: Get the modifier keys from the keyboard driver
17097         * X11Keyboard.cs: Expose the currently selected modifier keys
17098         through a property.
17100 2004-12-15  Peter Bartok  <pbartok@novell.com>
17102         * TextControl.cs: Initial check-in. Still incomplete
17104 2004-12-15  Jackson Harper  <jackson@ximian.com>
17106         * TreeNode.cs:
17107         * TreeView.cs: Fix build on csc (second time today ;-))
17109 2004-12-15  Jackson Harper  <jackson@ximian.com>
17111         * TreeView.cs: Store the treenodes plus/minus box bounds when it
17112         is calculated and use this for click testing.
17113         * TreeNode.cs: Add functionality to store the nodes plus minus box bounds.
17115 2004-12-15  Jackson Harper  <jackson@ximian.com>
17117         * TreeView.cs: Pass the nodes image index to the image list when
17118         drawing that image.
17120 2004-12-15  Jackson Harper  <jackson@ximian.com>
17122         * X11Keyboard.cs: Set messages hwnd.
17123         * XplatUIX11.cs: Pass proper hwnd wot keyboard driver. Set hwnd on
17124         post_message calls.
17126 2004-12-15  Jackson Harper  <jackson@ximian.com>
17128         * X11Keyboard.cs: Fix to compile with csc.
17129         
17130 2004-12-15  Jackson Harper  <jackson@ximian.com>
17132         * X11Structs.cs: Add key mask values
17133         * XplatUIStruct.cs: Add keyboard event flags, and keyboard definitions
17134         * X11Keyboard.cs: New file - Extrapolates and interpolates key
17135         down/up foo into WM_CHAR foo
17136         * KeyboardLayouts.cs: Common keyboard layouts
17137         * XplatUIX11.cs: Add the keyboard driver. Add functionality to
17138         post messages into the main queue.
17140 2004-12-13  Jordi Mas i Hernandez <jordi@ximian.com>
17142         * Button.cs: implement ProcessMnemonic
17143         * ThemeWin32Classic.cs: use ResPool (caching) instead of creating
17144           brushes everytime
17145         * Control.cs: fixes IsMnemonic (support for &&, case insensitive, etc)
17146         * ButtonBase.cs: Show HotkeyPrefix (not the &)
17148 2004-12-12  John BouAntoun  <jba-mon@optusnet.com.au>
17149         
17150         * MonthCalendar.cs: Implemented click-hold for next/previous month
17151           and date selection
17152           
17153 2004-12-11  Peter Bartok  <pbartok@novell.com>
17155         * X11Structs.cs:
17156           - Added XKeyboardState (moved from XplatUIX11.cs)
17157           - Added XCreateGC related enums and structures
17158           - Added GXFunction for XSetFunction
17160         * XplatUIStructs.cs: Added missing WS_EX_xxx definitions
17162         * XplatUI.cs: Added CreateCaret(), DestroyCaret(), SetCaretPos() and
17163           CaretVisible() calls
17165         * ToolTip.cs: Added code to prevent stealing focus from app windows
17167         * XplatUIDriver.cs: Added abstracts for caret functions (CreateCaret,
17168           DestroyCaret, SetCaretPos and CaretVisible)
17170         * XplatUIX11.cs:
17171           - Added implementation for caret functions
17172           - Moved hover variables into a struct, to make it a bit easier
17173             on the eyes and to debug
17174           - Removed XKeyboardState (moved to XplatUIX11.cs)
17175           - Moved Keyboard properties into the properties region
17177         * Control.cs (get_Region): Control.CreateGraphics is the appropriate
17178           call to get a graphics context for our control
17180         * XplatUIOSX.cs: Added empty overrides for the new caret functions
17182         * TreeView.cs: Fixed bug. No matter what color was set it would always
17183           return SystemColors.Window
17185         * XplatUIWin32.cs: Implemented caret overrides
17187 2004-12-10  Jordi Mas i Hernandez <jordi@ximian.com>
17189         * ListBox.cs: fire events, implement missing methods and properties,
17190         sorting.
17192 2004-12-10  John BouAntoun <jba-mono@optusnet.com.au>
17194         * MonthCalendar.cs: invalidation bug fixing
17195         * ThemeWin32Classic.cs: paint fixing
17197 2004-12-09  Geoff Norton  <gnorton@customerdna.com>
17199         * XplatUIOSX.cs: Refactor to pass the real hwnd into Graphics.FromHwnd, we
17200         prepare the CGContextRef there now.
17202 2004-12-09  John BouAntoun <jba-mono@optusnet.com.au>
17204         * MonthCalendar.cs:
17205           - optimisationL only invalidate areas that have changed
17206         * ThemeWin32Classic.cs:
17207           - only paint parts that intersect with clip_area
17209 2004-12-09  Peter Bartok  <pbartok@novell.com>
17211         * Application.cs: Undid changes from r37004 which cause problems
17212         on X11
17214 2004-12-09  Ravindra  <rkumar@novell.com>
17216         * ToolBar.cs: Added support for displaying ContextMenu
17217         attached to a button on ToolBar.
17218         * ToolBarButton.cs: Uncomment/fixed the DropDownMenu
17219         property.
17221 2004-12-09  Jordi Mas i Hernandez <jordi@ximian.com>
17223         * Label.cs: autosize works in text change and removes unnecessary
17224         invalidate
17226 2004-12-09  Jordi Mas i Hernandez <jordi@ximian.com>
17228         * ThemeWin32Classic.cs, XplatUIOSX.cs, XplatUIWin32.cs:
17229         remove warnings
17231 2004-12-08  Geoff Norton  <gnorton@customerdna.com>
17233         * XplatUIOSX.cs: Added mouse move/click/grab support
17234         Remove some debugging WriteLines not needed anymore.
17235         Add window resizing/positioning.
17236         Fix visibility on reparenting.
17238 2004-12-08  Peter Bartok  <pbartok@novell.com>
17240         * XplatUIOSX.cs: Added Idle event, now compiles on VS.Net
17242 2004-12-07  Geoff Norton  <gnorton@customerdna.com>
17244         * XplatUIOSX.cs: Initial checkin
17245         * XplatUI.cs: Use the Quartz driver if the environment is set to use it
17247 2004-12-03  Ravindra <rkumar@novell.com>
17249         * ListView.cs: Added some keybindings and fixed scrolling.
17250         ScrollBars listen to ValueChanged event instead of Scroll
17251         Event. This would let us take care of all changes being
17252         done in the scrollbars' values programmatically or manually.
17253         * ListView.cs (CanMultiselect): Added a check for shift key.
17254         * ListView.cs (EnsureVisible): Fixed. Do proper scrolling.
17255         * ListViewItem.cs (Clone): Fixed. We need to make a copy
17256         of ListViewSubItemCollection as well.
17258 2004-12-06  Peter Bartok <pbartok@novell.com>
17260         * Control.cs (Parent): Added check and exception to prevent
17261         circular parenting
17263 2004-12-03  Jordi Mas i Hernandez <jordi@ximian.com>
17265         * ListBox.cs: implemented clipping, selection single and multiple,
17266         bug fixing
17268 2004-12-03  Ravindra <rkumar@novell.com>
17270         * ListView.cs (ListView_KeyDown):
17271         * ListView.cs (ListView_KeyUp): Fixed multiple selection handling
17272         when CTRL key is pressed.
17273         * ListViewItem.cs (Selected): Fixed setting the property.
17275 2004-12-03  Marek Safar  <marek.safar@seznam.cz>
17277         * Application.cs (OnThreadException): Use ThreadExceptionDialog.
17279         * Form.cs: Add ActiveForm, FormBorderStyle, MaximizeBox,
17280         MinimizeBox, ShowInTaskbar, TopMost properties.
17282         * ThreadExceptionDialog.cs: Implemented (disabled TextBox until
17283         will be implemented).
17285 2004-12-03  Marek Safar  <marek.safar@seznam.cz>
17287         * OwnerDrawPropertyBag.cs: New internal parameterless ctor.
17289         * TreeNode.cs: Implemented ICloneable, Fixed to pass my simple
17290         tests.
17291         
17292         * TreeNodeCollection.cs: Add exception throwing for Add,AddRange.
17293         
17294         * TreeView.cs: BackColor is Colors.Window.
17296 2004-12-01  Jackson Harper  <jackson@ximian.com>
17298         * TreeView.cs: When resizing the tree if the user is making it
17299         smaller we don't get expose events, so we need to handle adding
17300         the horizontal scrollbar in the size changed handler as well as
17301         the expose handler.
17303 2004-12-02  Jordi Mas i Hernandez <jordi@ximian.com>
17305         * DrawItemState.cs: fixes wrong enum values
17307 2004-12-01  Jackson Harper  <jackson@ximian.com>
17309         * TreeView.cs: Resize the hbar as well as the vbar on resize.
17311 2004-12-01  Jackson Harper  <jackson@ximian.com>
17313         * NodeLabelEditEventArgs.cs:
17314         * NodeLabelEditEventHandler.cs:
17315         * OpenTreeNodeEnumerator.cs:
17316         * TreeNode.cs:
17317         * TreeNodeCollection.cs:
17318         * TreeView.cs:
17319         * TreeViewAction.cs:
17320         * TreeViewCancelEventArgs.cs:
17321         * TreeViewCancelEventHandler.cs:
17322         * TreeViewEventArgs.cs:
17323         * TreeViewEventHandler.cs: Initial implementation.
17325 2004-12-01  Ravindra <rkumar@novell.com>
17327         * ListView.cs (CalculateListView): Fixed scrolling related
17328         calculations. Also, removed some debug statements from other
17329         places.
17330         * ListViewItem.cs: Changed access to 'selected' instance variable
17331         from private to internal.
17332         * ThemeWin32Classic.cs (DrawListViewItem): Fixed SubItem drawing.
17334 2004-12-01  Jordi Mas i Hernandez <jordi@ximian.com>
17336         * ThemeWin32Classic.cs: remove cache of brush and pens for
17337         specific controls and use the global system, fixes scrollbutton
17338         bugs (for small sizes, disabled, etc)
17339         
17340         * ScrollBar.cs: does not show the thumb for very small controls
17341         (as MS) and allow smaller buttons that the regular size
17343 2004-12-01  Miguel de Icaza  <miguel@ximian.com>
17345         * UpDownBase.cs: Add abstract methods for the interface.
17346         Add new virtual methods (need to be hooked up to TextEntry when it
17347         exists).
17348         Add override methods for most features.
17349         Computes the size, forces the height of the text entry.
17351         * NumericUpDown.cs: Put here the current testing code.
17353         * Set eol-style property on all files that do not have mixed line
17354         endings, to minimize the future problems.  There are still a few
17355         files with mixed endings, and someone should choose whether they
17356         want to move it or not.
17358 2004-11-30  Jordi Mas i Hernandez <jordi@ximian.com>
17360         * MonthCalendar.cs, ListView.cs: use Theme colours instead of
17361         System.Colors
17362         
17363 2004-11-30  Ravindra <rkumar@novell.com>
17365         * ThemeWin32Classic.cs (DrawListViewItem): Fixed selected item
17366         drawing and replaced use of SystemColors by theme colors.
17367         * ListView.cs (ListView_Paint): Fixed painting done during scrolling.
17368         * ListView.cs (ListViewItemCollection.Add): Throw exception when
17369         same ListViewItem is being added more than once.
17371 2004-11-30  John BouAntoun <jba-mono@optusnet.com.au>
17373         * MonthCalendar.cs:
17374           - ControlStyles love to make the control not flicker
17375           
17376 2004-11-30  Peter Bartok  <pbartok@novell.com>
17378         * CharacterCasing.cs: Added
17380 2004-11-29  Peter Bartok  <pbartok@novell.com>
17382         * TreeNode.cs, TreeNodeCollection.cs, TreeView.cs,
17383           TreeViewAction.cs, TreeViewEventArgs.cs: Removed new files.
17384           I am removing these files as they conflict with already completed
17385           work. While it is fantastic to get contributions to MWF, I
17386           respectfully ask that everyone please coordinate their contributions
17387           through mono-winforms-list or #mono-winforms at this time. We're
17388           explicitly avoiding stubbing and don't want controls that don't have
17389           their basic functionality implemented in svn. Please also see
17390           http://www.mono-project.com/contributing/winforms.html
17393 2004-11-29  Marek Safar  <marek.safar@seznam.cz>
17395         * Application.cs (ModalRun): Don't hang after exit.
17397         * Theme.cs: New TreeViewDefaultSize property.
17399         * ThemeWin32Classic.cs: Replaced hardcoded defaultWindowBackColor
17400         with less hardcoded SystemColors constant.
17401         Implemented TreeViewDefaultSize.
17403         * TreeNode.cs, TreeNodeCollection.cs, TreeView.cs,
17404         TreeViewAction.cs, TreeViewEventArgs.cs: New files.
17407 2004-11-29  John BouAntoun <jba-mono@optusnet.com.au>
17409         * MonthCalendar.cs:
17410           - Fix NextMonthDate and PrevMonthDate click moving calendar
17412 2004-11-26  John BouAntoun <jba-mono@optusnet.com.au>
17414         * MonthCalendar.cs:
17415           - Fix usage of ScrollChange Property when scrolling months
17417 2004-11-26  Jordi Mas i Hernandez <jordi@ximian.com>
17419         * Menu.cs, MainMenu.cs, MenuItem.cs, MenuAPI.cs
17420          - Fixes menu destroying
17421          - Support adding and removing items on already created menus
17423 2004-11-26  John BouAntoun <jba-mono@optusnet.com.au>
17425         * MonthCalendar.cs:
17426           - Re-worked all bolded dates handling to match win32
17427         * ThemeWin32Classic.cs:
17428           - Fixed rendering with bolded dates
17430 2004-11-25  Jordi Mas i Hernandez <jordi@ximian.com>
17432         * ListBox.cs, Theme.cs, ThemeWin32Classic.cs:
17433         - Horizontal scroolbar
17434         - Multicolumn
17435         - Fixes
17438 2004-11-25  John BouAntoun <jba-mono@optusnet.com.au>
17440         * MonthCalendar.cs:
17441           - Fix Usage of MaxSelectionCount from SelectionRange
17442           - Fixed Shift + Cursor Selection
17443           - Fixed Shift + (Pg up/Pg dn, Home/End) selection
17444           - Fixed normal cursor selection to be compat with win32
17445           - Fixed Shift + Mouse Click selection
17447 2004-11-24  Peter Bartok <pbartok@novell.com>
17449         * XplatUI.cs (DispatchMessage): Switched to return IntPtr
17450         * XplatUIDriver.cs (DispatchMessage): Switched to return IntPtr
17451         * XplatUIX11.cs:
17452           - CreatedKeyBoardMsg now updates keystate with Alt key
17453           - Added workaround for timer crash to CheckTimers, Jackson will
17454             develop a proper fix and check in later
17455           - Implemented DispatchMessage
17456           - Removed calling the native window proc from GetMessage (call
17457             now moved to DispatchMessage)
17459         * KeyEventArgs.cs (Constructor): Now combines modifierkeys into
17460           the keydata (Fixes bug #69831)
17462         * XplatUIWin32.cs:
17463           - (DispatchMessage): Switched to return IntPtr
17464           - Added DllImport for SetFocus
17466 2004-11-24  Ravindra <rkumar@novell.com>
17468         * ThemeWin32Classic.cs: Fixed ListView border and checkbox
17469         background drawing.
17470         * ListViewItem.cs: Fixed various properties, calculations
17471         and Clone() method. Fixed ListViewSubItemCollection.Clear() method.
17472         * ListView.cs: Fixed calculations, BackColor, ForeColor properties
17473         and some internal properties. Fixed MouseDown handler and Paint
17474         method.
17476 2004-11-24  John BouAntoun <jba-mono@optusnet.com.au>
17478         * MonthCalendar.cs: Add TitleMonth ContextMenu handling
17480 2004-11-24  John BouAntoun <jba-mono@optusnet.com.au>
17482         * ContainerControl.cs: correct accidental check in of local changes
17484 2004-11-24  John BouAntoun <jba-mono@optusnet.com.au>
17486         * ThemeWin32Classic.cs:
17487                 - Fixed Drawing Last month in grid (sometimes not showing)
17488         * MonthCalendar.cs:
17489                 - Fixed title width calculation bug (makeing title small)
17491 2004-11-23  Peter Bartok <pbartok@novell.com>
17493         * XplatUIX11.cs:
17494           - Added generation of WM_MOUSEHOVER event
17495           - Added missing assignment of async_method atom
17496           - Fixed WM_ERASEBKGND; now only redraws the exposed area
17498 2004-11-23  John BouAntoun <jba-mono@optusnet.com.au>
17500         * ThemeWin32Classic.cs:
17501                 - Fixed Drawing of today circle when showtodaycircle not set
17502                 - fixed drawing of first and last month in the grid (gay dates)
17503         * MonthCalendar.cs:
17504                 - Fixed Drawing of today circle
17505                 - Fixed drawing of grady dates
17506                 - Fixed HitTest for today link when ShowToday set to false
17507                 - Fixed DefaultSize to obey ShowToday
17509 2004-11-23  John BouAntoun <jba-mono@optusnet.com.au>
17511         * ThemeWin32Classic.cs: Fixed DrawMonthCalendar and private support methods
17512         * System.Windows.Forms/Theme.cs
17513         * MonthCalendar.cs: added for MonthCalendar
17514         * SelectionRange.cs: added for MonthCalendar
17515         * Day.cs: added for MonthCalendar: added for MonthCalendar
17516         * DateRangeEventArgs.cs: added for MonthCalendar
17517         * DateRangeEventHandler.cs: added for MonthCalendar
17519 2004-11-22  Ravindra <rkumar@novell.com>
17521         * ThemeWin32Classic.cs: Fixed ListViewDrawing with 'UseItemStyleForSubItems'
17522         property.
17524 2004-11-22  Miguel de Icaza  <miguel@ximian.com>
17526         * UpDownBase.cs (InitTimer): Use prehistoric C# 1.0 notation for
17527         event handler.
17528         
17529         * NumericUpDown.cs: Added new implementation.
17530         * UpDownBase.cs: Added new implementation.
17532         * XplatUIWin32.cs (KeyboardSpeed, KeyboardDelay): added default
17533         implementations.
17534         
17535         * XplatUIX11.cs (KeyboardSpeed, KeyboardDelay): added default
17536         implementations.
17538         * XplatUIDriver.cs ((KeyboardSpeed, KeyboardDelay): added new
17539         methods.
17541 2004-11-21  Miguel de Icaza  <miguel@ximian.com>
17543         * Timer.cs  (Dispose): Should call the base dispose when
17544         overriding.
17546 2004-11-19  Jordi Mas i Hernandez <jordi@ximian.com>
17548         * ScrollBar.cs: updates thumb position when max, min or increment
17549         is changed
17551 2004-11-21  Ravindra <rkumar@novell.com>
17553         * ListView.cs: Implemented item selection, activation and
17554         column header style. Fixed properties to do a redraw, if
17555         required. Added support for MouseHover, DoubleClick, KeyDown
17556         and KeyUp event handling and some minor fixes.
17557         * ListViewItem.cs: Fixed constructor.
17558         * ThemeWin32Classic.cs: Improved drawing for ListView.
17560 2004-11-19  Jordi Mas i Hernandez <jordi@ximian.com>
17562         * ThemeWin32Classic.cs: initial listbox drawing code
17563         * DrawMode.cs: new enumerator
17564         * ListControl.cs: stubbed class
17565         * ListBox.cs: initial implementation
17566         * Theme.cs: new methods definitions
17567         * SelectionMode.cs: new enumerator
17569 2004-11-17  Peter Bartok  <pbartok@novell.com>
17571         * XplatUIWin32.cs: Added double-click events to the class style
17572         * Control.cs (WndProc):
17573           - Added handling of click-count to MouseDown/ MouseUp events.
17574           - Added handling of middle and right mouse buttons
17575           - Removed old debug code
17577 2004-11-17  Jackson Harper  <jackson@ximian.com>
17579         * XplatUIX11.cs: Use the new Mono.Unix namespace.
17581 2004-11-17  Ravindra <rkumar@novell.com>
17583         * ListView.cs: Added event handling for MouseMove/Up/Down.
17584         * ColumnHeader.cs: Added a read-only internal property 'Pressed'.
17585         * ThemeWin32Classic.cs: We need to clear the graphics context and
17586         draw column header in a proper state.
17589 2004-11-17  Jordi Mas i Hernandez <jordi@ximian.com>
17591         *  Menu.cs: fixes signature
17593 2004-11-16  Peter Bartok  <pbartok@novell.com>
17595         * XplatUIX11.cs (GetMessage): Implemented generation of
17596           double click mouse messages
17598 2004-11-12  Jordi Mas i Hernandez <jordi@ximian.com>
17600         *  Form.cs, MainMenu.cs, MenuAPI.cs: tracker should be for tracking session
17601         not by menu
17603 2004-11-11  Peter Bartok  <pbartok@novell.com>
17605         * HandleData.cs: Added Visible property
17606         * XplatUIX11.cs (IsVisible): Now uses Visible property from
17607           HandleData
17608         * XplatUIX11.cs: Removed old debug leftovers
17609         * XplatUIX11.cs (DefWndProc): Added WM_ERASEBKGND handler
17610         * Control.cs (WndProc): Removed old debug leftovers,
17611           streamlined handling of WM_WINDOWPOSCHANGED, removed un-
17612           needed WM_SIZE handling
17614 2004-11-11  Jackson Harper  <jackson@ximian.com>
17616         * OwnerDrawPropertyBag.cs:
17617         * TreeViewImageIndexConverter.cs: Initial implementation
17619 2004-11-10  Jackson Harper  <jackson@ximian.com>
17621         * ThemeWin32Classic.cs:
17622         * TabControl.cs: instead of moving tabs by the slider pos just
17623         start drawing at the tab that is offset by the slider. This way
17624         scrolling always moves by exactly one tab.
17626 2004-11-10  Jackson Harper  <jackson@ximian.com>
17628         * TabControl.cs: You can only scroll left when the slider has
17629         already ben moved right.
17630         
17631 2004-11-10  Jackson Harper  <jackson@ximian.com>
17633         * ThemeWin32Classic.cs: Do not draw the selected tab if its not in
17634         the clip area.
17635         
17636 2004-11-10  Jackson Harper  <jackson@ximian.com>
17638         * ThemeWin32Classic.cs: Don't bother drawing tabs outside of the
17639         clip area.
17640         
17641 2004-11-09  Jackson Harper  <jackson@ximian.com>
17643         * TabControl.cs (CalcXPos): New helper method so we can determine
17644         the proper place to start drawing vertical tabs.
17645         * ThemeWin32Classic.cs (DrawTab): Draw right aligned tabs.
17646         
17647 2004-11-09  Jackson Harper  <jackson@ximian.com>
17649         * TabControl.cs: Calculate sizing and rects for left aligned tabs.
17650         * ThemeWin32Classic.cs (GetTabControl*ScrollRect): Only handle Top
17651         and Bottom, left and right are illegal values for this and
17652         multiline is enabled when the alignment is set to left or right.
17653         (DrawTab): Each alignment block should draw the text itself now
17654         because Left requires special love. Also add rendering for Left
17655         aligned tabs.
17656         
17657 2004-11-09  Jordi Mas i Hernandez <jordi@ximian.com>
17659         *  Form.cs, MainMenu.cs, MenuAPI.cs: fixes menu navigation, fixes popups,
17660         does not destroy the windows, removes debugging messages
17662 2004-11-09  jba  <jba-mono@optusnet.com.au>
17664         * ThemeWin32Classic.cs
17665         (DrawButtonBase): Fix verticle text rect clipping in windows
17666         (DrawCheckBox): Fix CheckAlign.TopCenter and CheckAlign.BottomCenter
17667         rendering and incorrect text rect clipping
17668         (DrawRadioButton): Fix CheckAlign.TopCenter and CheckAlign.BottomCenter
17669         rendering and incorrect text rect clipping
17670         
17671 2004-11-08  Jackson Harper  <jackson@ximian.com>
17673         * ThemeWin32Classic.cs (DrawTabControl): Render tabs from top to
17674         bottom when they are bottom aligned so the bottoms of the tabs get
17675         displayed.
17676         * TabControl.cs (DropRow): Move rows up instead of down when the
17677         tab control is bottom aligned.
17679 2004-11-08 13:59  pbartok
17681         * XplatUIX11.cs:
17682           - Added handling for various window styles
17683           - Added handling for popup windows
17684           - Added SetTopmost handling
17686 2004-11-08 13:55  pbartok
17688         * XplatUIWin32.cs:
17689           - Added argument to SetTopmost method
17690           - Fixed broken ClientToScreen function
17692 2004-11-08 13:53  pbartok
17694         * XplatUIStructs.cs:
17695           - Added missing WS_EX styles
17697 2004-11-08 13:53  pbartok
17699         * XplatUI.cs, XplatUIDriver.cs:
17700           - Added argument to SetTopmost
17702 2004-11-08 13:52  pbartok
17704         * X11Structs.cs:
17705           - Added XSetWindowAttributes structure
17706           - Improved XWindowAttributes structure
17707           - Added SetWindowValuemask enum
17708           - Added window creation arguments enum
17709           - Added gravity enum
17710           - Added Motif hints structure
17711           - Added various Motif flags and enums
17712           - Added PropertyMode enum for property functions
17714 2004-11-08 13:50  pbartok
17716         * Form.cs:
17717           - Fixed arguments for updated SetTopmost method
17719 2004-11-08 13:49  pbartok
17721         * ToolTip.cs:
17722           - Fixed arguments for updated SetTopmost function
17723           - Fixed usage of PointToClient
17725 2004-11-08 13:44  pbartok
17727         * MenuAPI.cs:
17728           - Added Clipping of children and siblings
17730 2004-11-08 13:41  pbartok
17732         * MainMenu.cs:
17733           - Removed SetMenuBarWindow call. We do this in Form.cs
17735 2004-11-08 13:40  jackson
17737         * TabControl.cs, Theme.cs, ThemeWin32Classic.cs: Render the little
17738           scrolling jimmi in the correct location with bottom aligned tabs
17740 2004-11-08 13:36  pbartok
17742         * ContainerControl.cs:
17743           - Implemented BindingContext
17744           - Implemented ParentForm
17746 2004-11-08 12:46  jackson
17748         * TabControl.cs: Put bottom rendered tabs in the right location
17750 2004-11-08 07:15  jordi
17752         * ScrollBar.cs, ThemeWin32Classic.cs: fixes vertical scrollbar and
17753           removes dead code
17755 2004-11-05 17:30  jackson
17757         * TabControl.cs: When selected tabs are expanded make sure they
17758           don't go beyond the edges of the tab control
17760 2004-11-05 14:57  jackson
17762         * TabControl.cs: Reset show_slider so if the control is resized to
17763           a size where it is no longer needed it's not displayed anymore
17765 2004-11-05 13:16  jackson
17767         * TabControl.cs: Make tab pages non visible when added to the
17768           control
17770 2004-11-05 12:42  jackson
17772         * TabControl.cs: Implement SizeMode.FillToRight
17774 2004-11-05 12:16  jackson
17776         * Control.cs: Do not call CreateHandle if the handle is already
17777           created
17779 2004-11-05 11:46  jackson
17781         * TabControl.cs: Remove superflous call to CalcTabRows
17783 2004-11-05 09:07  jackson
17785         * XplatUIX11.cs: Update for Mono.Posix changes
17787 2004-11-05 07:00  ravindra
17789         * ListView.cs, ListViewItem.cs: Implemented some methods and fixed
17790           scrolling.
17792 2004-11-04 22:47  jba
17794         * ThemeWin32Classic.cs:
17795           - Fix Button rendering for FlatStyle = Flat or Popup
17796           - Fix RadioButton and CheckBox rendering when Appearance = Button
17797             (normal and flatstyle).
17798           - Correct outer rectangle color when drawing focus rectangle
17799           - Adjust button bounds to be 1 px smaller when focused
17800           - Make button not draw sunken 3d border when pushed (windows compat)
17801           - Fix CPDrawBorder3D to not make bottom right hand corner rounded
17802           - Offset the text in RadioButton and Checkbox when being rendered as
17803           a button.
17804           - Hover and Click behaviour for Colored FlatStyle.Flat and Popup
17805           radiobuttons
17806           - Fixed disabled rendering for colored flatstyle radiobuttons (both)
17807           - Fixed disabled text rendering for normally rendered radiobuttons
17809 2004-11-04 10:26  jackson
17811         * TabControl.cs: Recalculate tab rows when resizing
17813 2004-11-04 07:47  jordi
17815         * Form.cs, MainMenu.cs, Menu.cs, MenuAPI.cs, MenuItem.cs:
17816           collection completion, drawing issues, missing features
17818 2004-11-04 05:03  ravindra
17820         * ScrollBar.cs:
17821                 - We need to recalculate the Thumb area when
17822                 LargeChange/maximum/minimum values are changed.
17823           - We set the 'pos' in UpdatePos() method to minimum, if it's less
17824                 than minimum. This is required to handle the case if large_change is
17825                 more than max, and use LargeChange property instead of large_change
17826                 variable.
17827           - We return max+1 when large_change is more than max, like MS does.
17829 2004-11-04 04:29  ravindra
17831         * ColumnHeader.cs, ListView.cs, ListViewItem.cs:
17832                 - Changed default value signatures (prefixed all with ListView).
17833                 - Fixed/implemented layout LargeIcon, SmallIcon and List views for
17834                 ListView.
17835           - Fixed calculations for ListViewItem and implemented Clone()
17836           method.
17838 2004-11-04 04:26  ravindra
17840         * Theme.cs, ThemeWin32Classic.cs:
17841                 - Changed default ListView values signatures (prefixed all with
17842                 ListView).
17843           - Fixed default size values for VScrollBar and HScrollBar.
17844                 - Fixed DrawListViewItem method.
17846 2004-11-04 04:05  ravindra
17848         * ColumnHeaderStyle.cs: Typo. It should be Nonclickable.
17850 2004-11-04 04:04  ravindra
17852         * ImageList.cs: Implemented the missing overload for Draw method.
17854 2004-11-03 19:29  jackson
17856         * TabControl.cs: Handle dropping rows on selection properly
17858 2004-11-03 11:59  jackson
17860         * TabControl.cs: remove debug code
17862 2004-11-03 11:52  jackson
17864         * TabControl.cs, ThemeWin32Classic.cs: Initial implementation of
17865           the scrolly widgerywoo
17867 2004-11-02 13:52  jackson
17869         * TabControl.cs: Resize the tab pages and tabs when the tab control
17870           is resized
17872 2004-11-02 13:40  jackson
17874         * TabControl.cs, ThemeWin32Classic.cs: Move the row with the
17875           selected tab to the bottom
17877 2004-11-02 13:39  jackson
17879         * TabPage.cs: Store the tab pages row
17881 2004-11-02 12:33  jordi
17883         * MenuItem.cs: fixes handle creation
17885 2004-11-02 11:42  jackson
17887         * TabControl.cs: signature fix
17889 2004-11-02 08:56  jackson
17891         * TabControl.cs: Calculate whether the tab is on an edge properly.
17892           Remove top secret debugging code
17894 2004-11-01 19:57  jackson
17896         * TabControl.cs: Add click handling, and proper sizing
17898 2004-11-01 19:47  jackson
17900         * Theme.cs, ThemeWin32Classic.cs: New rendering and sizing code for
17901           tab controls
17903 2004-11-01 19:39  jackson
17905         * TabPage.cs: add internal property to store the bounds of a tab
17906           page
17908 2004-10-30 04:23  ravindra
17910         * Theme.cs, ThemeWin32Classic.cs: Drawing ListView and some default
17911           values.
17913 2004-10-30 04:21  ravindra
17915         * ListView.cs, ListViewItem.cs: Added support for scrolling and
17916           fixed calculations.
17918 2004-10-30 03:06  pbartok
17920         * XplatUIX11.cs:
17921           - Removed extension of DllImported libs
17923 2004-10-29 09:55  jordi
17925         * Form.cs, MainMenu.cs, Menu.cs, MenuAPI.cs, MenuItem.cs: Menu key
17926           navigation, itemcollection completion, menu fixes
17928 2004-10-27 22:58  pbartok
17930         * XplatUIX11.cs:
17931           - Now throws a nice error message when no X display could be opened
17933 2004-10-26 13:51  jordi
17935         * ListView.cs: removes warning
17937 2004-10-26 03:55  ravindra
17939         * ColumnHeader.cs, ListView.cs, ListViewItem.cs,
17940           ThemeWin32Classic.cs: Some formatting for my last checkins.
17942 2004-10-26 03:36  ravindra
17944         * ThemeWin32Classic.cs: Implemented DetailView drawing for ListView
17945           control and default values.
17947 2004-10-26 03:35  ravindra
17949         * Theme.cs: Added some default values for ListView control.
17951 2004-10-26 03:33  ravindra
17953         * ToolBar.cs: ToolBar should use the user specified button size, if
17954           there is any. Added a size_specified flag for the same.
17956 2004-10-26 03:33  ravindra
17958         * ColumnHeader.cs: Added some internal members and calculations for
17959           ColumnHeader.
17961 2004-10-26 03:32  ravindra
17963         * ListViewItem.cs: Calculations for ListViewItem.
17965 2004-10-26 03:31  ravindra
17967         * ListView.cs: Added some internal members and calculations for
17968           ListView.
17970 2004-10-22 13:31  jordi
17972         * MenuAPI.cs: speedup menus drawing
17974 2004-10-22 13:16  jackson
17976         * XplatUIX11.cs: Make sure to update exposed regions when adding an
17977           expose event
17979 2004-10-22 11:49  jackson
17981         * Control.cs: oops
17983 2004-10-22 11:41  jackson
17985         * Control.cs: Check to see if the window should have its background
17986           repainted by X when drawing.
17988 2004-10-22 11:31  jackson
17990         * XplatUIX11.cs: When invalidating areas only use XClearArea if
17991           clear is true, this way we do not get flicker from X repainting the
17992           background
17994 2004-10-22 11:28  jackson
17996         * XEventQueue.cs: Queue properly
17998 2004-10-21 09:38  jackson
18000         * XEventQueue.cs: Fix access modifier
18002 2004-10-21 09:36  jackson
18004         * XEventQueue.cs: Don't loose messages
18006 2004-10-21 09:22  jackson
18008         * XEventQueue.cs: Don't loose messages
18010 2004-10-20 04:15  jordi
18012         * BootMode.cs: enum need it by SystemInfo
18014 2004-10-19 21:58  pbartok
18016         * XplatUIWin32.cs:
18017           - Small sanity check
18019 2004-10-19 21:56  pbartok
18021         * Form.cs:
18022           - Added private FormParentWindow class which acts as the container
18023             for our form and as the non-client area where menus are drawn
18024           - Added/Moved required tie-ins to Jordi's menus
18025           - Fixed/Implemented the FormStartPosition functionality
18027 2004-10-19 21:52  pbartok
18029         * Control.cs:
18030           - Removed unneeded locals
18031           - Added code to all size and location properties to understand and
18032             deal with the parent container of Form
18034 2004-10-19 21:33  pbartok
18036         * Application.cs:
18037           - Fixed to deal with new Form subclasses for menus
18039 2004-10-19 17:48  jackson
18041         * XEventQueue.cs: commit correct version of file
18043 2004-10-19 16:50  jackson
18045         * XEventQueue.cs, XplatUIX11.cs: New optimized event queue
18047 2004-10-19 16:15  jordi
18049         * MenuAPI.cs: MenuBarCalcSize returns the height
18051 2004-10-19 08:31  pbartok
18053         * Control.cs:
18054           - Added missing call to PreProcessMessage before calling OnXXXKey
18055           methods
18057 2004-10-19 00:04  ravindra
18059         * ToolTip.cs: Fixed constructor.
18061 2004-10-18 09:31  jordi
18063         * MenuAPI.cs: menuitems in menubars do not have shortcuts
18065 2004-10-18 09:26  jordi
18067         * MenuItem.cs: fixes MenuItem class signature
18069 2004-10-18 08:56  jordi
18071         * MenuAPI.cs: prevents windows from showing in the taskbar
18073 2004-10-18 00:28  ravindra
18075         * ToolTip.cs: Suppressed a warning message.
18077 2004-10-18 00:27  ravindra
18079         * Control.cs: Default value of visible property must be true.
18081 2004-10-17 23:19  pbartok
18083         * ToolTip.cs:
18084           - Complete implementation
18086 2004-10-17 23:19  pbartok
18088         * XplatUIX11.cs:
18089           - Added EnableWindow method
18090           - Added SetModal stub
18091           - Added generation of WM_ACTIVATE message (still needs testing)
18092           - Added SetTopMost stub
18093           - Changes to deal with VirtualKeys being moved to XplatUIStructs.cs
18095 2004-10-17 23:17  pbartok
18097         * XplatUIWin32.cs:
18098           - Removed VirtualKeys to XplatUIStructs
18099           - Implemented SetTopMost method
18100           - Implemented EnableWindow method
18101           - Bugfix in ScreenToClient()
18102           - Bugfixes in ClientToScreen()
18104 2004-10-17 22:51  pbartok
18106         * XplatUIStructs.cs:
18107           - Added WS_EX styles to WindowStyles enumeration
18109 2004-10-17 22:50  pbartok
18111         * XplatUI.cs, XplatUIDriver.cs:
18112           - Added method for enabling/disabling windows
18113           - Added method for setting window modality
18114           - Added method for setting topmost window
18116 2004-10-17 22:49  pbartok
18118         * ThemeWin32Classic.cs:
18119           - Added ToolTip drawing code
18121 2004-10-17 22:49  pbartok
18123         * Theme.cs:
18124           - Added ToolTip abstracts
18126 2004-10-17 22:47  pbartok
18128         * Form.cs:
18129           - Fixed Form.ControlCollection to handle owner relations
18130           - Added Owner/OwnedForms handling
18131           - Implemented Z-Ordering for owned forms
18132           - Removed unneeded private overload of ShowDialog
18133           - Fixed ShowDialog, added the X11 incarnation of modal handling (or
18134             so I hope)
18135           - Fixed Close(), had wrong default
18136           - Added firing of OnLoad event
18137           - Added some commented out debug code for Ownership handling
18139 2004-10-17 22:16  pbartok
18141         * Control.cs:
18142           - Fixed/implemented flat list of controls
18144 2004-10-17 22:14  pbartok
18146         * Application.cs:
18147           - Added code to simulate modal dialogs on Win32
18149 2004-10-17 16:11  jordi
18151         * ScrollBar.cs: disabled scrollbar should not honor any keyboard or
18152           mouse event
18154 2004-10-17 13:39  jordi
18156         * MenuAPI.cs: menu drawing fixes
18158 2004-10-15 09:10  ravindra
18160         * StructFormat.cs: General Enum.
18162 2004-10-15 09:09  ravindra
18164         * SizeGripStyle.cs: Enum for Form.
18166 2004-10-15 09:08  ravindra
18168         * Theme.cs, ThemeWin32Classic.cs: Added ColumnHeaderHeight property
18169           in Theme for ListView.
18171 2004-10-15 09:06  ravindra
18173         * ColumnHeader.cs: Flushing some formatting changes.
18175 2004-10-15 09:05  ravindra
18177         * ListViewItem.cs: Implemented GetBounds method and fixed coding
18178           style.
18180 2004-10-15 09:03  ravindra
18182         * ListView.cs: Implemented Paint method and fixed coding style.
18184 2004-10-15 07:34  jordi
18186         * MenuAPI.cs: fix for X11
18188 2004-10-15 07:32  ravindra
18190         * ButtonBase.cs, CheckBox.cs, RadioButton.cs:
18191                 - Renamed Paint() method to Draw() for clarity. Also, moved
18192                 DrawImage() to OnPaint().
18194 2004-10-15 07:25  ravindra
18196         * CheckBox.cs, RadioButton.cs:
18197                 - Removed Redraw (), we get it from ButtonBase.
18198                 - Implemented Paint (), to do class specific painting.
18200 2004-10-15 07:16  ravindra
18202         * ButtonBase.cs:
18203                 - Redraw () is not virtual now.
18204                 - Added an internal virtual method Paint (), so that
18205                 derived classes can do their painting on their own.
18206                 - Modified OnPaint () to call Paint ().
18208 2004-10-15 06:43  jordi
18210         * ContextMenu.cs, DrawItemEventHandler.cs, Form.cs, MainMenu.cs,
18211           MenuAPI.cs, MenuItem.cs: menu work, mainmenu, subitems, etc
18213 2004-10-15 00:30  ravindra
18215         * MessageBox.cs:
18216                 - MessageBox on windows does not have min/max buttons.
18217                 This change in CreateParams fixes this on Windows. We
18218                 still need to implement this windowstyle behavior in
18219                 our X11 driver.
18221 2004-10-14 05:14  ravindra
18223         * ToolBar.cs:
18224                 - Changed Redraw () to do a Refresh () always.
18225                 - Fixed the MouseMove event handling when mouse is pressed,
18226                 ie drag event handling.
18227                 - Replaced the usage of ToolBarButton.Pressed property to
18228                 ToolBarButton.pressed internal variable.
18230 2004-10-14 05:10  ravindra
18232         * ToolBarButton.cs:
18233                 - Added an internal member 'inside' to handle mouse move
18234                 with mouse pressed ie mouse drag event.
18235                 - Changed 'Pressed' property to return true only when
18236                 'inside' and 'pressed' are both true.
18237                 - Some coding style love.
18239 2004-10-14 00:17  ravindra
18241         * Form.cs: Fixed class signature. ShowDialog (Control) is not a
18242           public method.
18244 2004-10-14 00:15  ravindra
18246         * ButtonBase.cs: Redraw () related improvements.
18248 2004-10-14 00:14  ravindra
18250         * MessageBox.cs: Moved InitFormSize () out of Paint method and
18251           removed unnecessary calls to Button.Show () method.
18253 2004-10-13 17:50  pbartok
18255         * XplatUIX11.cs:
18256           - Formatting fix
18257           - Removed destroying of window until we solve the problem of X
18258             destroying the window before us on shutdown
18260 2004-10-13 16:32  pbartok
18262         * ButtonBase.cs:
18263           - Now Redraws on MouseUp for FlatStyle Flat and Popup
18265 2004-10-13 14:18  pbartok
18267         * XplatUIX11.cs:
18268           - Added code to destroy the X window
18270 2004-10-13 14:18  pbartok
18272         * XplatUIWin32.cs:
18273           - Added code to destroy a window
18275 2004-10-13 14:12  pbartok
18277         * ButtonBase.cs:
18278           - Added the Redraw on Resize that got dropped in the last rev
18280 2004-10-13 09:06  pbartok
18282         * ThemeWin32Classic.cs:
18283           - Path from John BouAntoun:
18284             * Fix check rendering (centre correctly for normal style, offset
18285               correctly for FlatStyle).
18286             * Fix border color usage (use backcolor) for FlatStyle.Popup
18287             * Use checkbox.Capture instead of checkbox.is_pressed when
18288               rendering flatstyle states.
18290 2004-10-12 21:48  pbartok
18292         * ThemeWin32Classic.cs:
18293           - Removed all occurences of SystemColors and replaced them with the
18294             matching theme color
18296 2004-10-12 21:41  pbartok
18298         * ThemeWin32Classic.cs:
18299           - From John BouAntoun: Added an overload to CPDrawBorder3D to allow
18300             him using the function for flatstyle drawing
18301           - Changed functions to use the new version of CPDrawBorder3D
18303 2004-10-12 21:15  pbartok
18305         * ControlPaint.cs:
18306           - Fixed Dark(), DarkDark(), Light() and LightLight() methods to
18307             match MS documentation. They need to return defined colors if the
18308             passed color matches the configured control color. Thanks to John
18309             BouAntoun for pointing this out.
18311 2004-10-12 20:57  pbartok
18313         * Control.cs:
18314           - Fix from John BouAntoun: Raise ForeColorChanged event when text
18315             color is changed
18317 2004-10-12 20:46  pbartok
18319         * CheckBox.cs:
18320           - Fix from John BouAntoun: Now properly sets the Appearance property
18322 2004-10-12 20:45  pbartok
18324         * ThemeWin32Classic.cs:
18325           - Fixes from John BouAntoun: now handles forecolors and backcolors
18326             for flatstyle rendered controls much better; It also fixes normal
18327             checkbox rendering when pushed or disabled.
18329 2004-10-08 02:50  jordi
18331         * Form.cs, MainMenu.cs, Menu.cs, MenuAPI.cs, MenuItem.cs: more menu
18332           work
18334 2004-10-07 08:56  jordi
18336         * ThemeWin32Classic.cs: Removes deletion of cached brushes
18338 2004-10-06 03:59  jordi
18340         * Control.cs, StatusBar.cs, ThemeWin32Classic.cs, ToolBar.cs,
18341           XplatUIWin32.cs: removes warnings from compilation
18343 2004-10-05 12:23  jackson
18345         * RadioButton.cs: Fix ctor
18347 2004-10-05 11:10  pbartok
18349         * MessageBox.cs:
18350           - Partial implementation by Benjamin Dasnois
18352 2004-10-05 10:15  jackson
18354         * ThemeWin32Classic.cs: Improve rendering of the radio button patch
18355           by John BouAntoun
18357 2004-10-05 03:07  ravindra
18359         * ToolBar.cs:
18360                 - Removed a private method, Draw ().
18361                 - Fixed the ButtonDropDown event handling.
18362                 - Fixed MouseMove event handling.
18364 2004-10-05 03:04  ravindra
18366         * ThemeWin32Classic.cs:
18367                 - Added DrawListView method and ListViewDefaultSize property.
18368                 - Changed ControlPaint method calls to CPDrawXXX wherever possible.
18369                 - Changed DOS style CRLF to Unix format (dos2unix).
18371 2004-10-05 03:03  ravindra
18373         * Theme.cs:
18374                 - Added DrawListView method and ListViewDefaultSize property.
18376 2004-10-05 02:42  ravindra
18378         * ToolBarButton.cs: Added an internal member dd_pressed to handle
18379           clicks on DropDown arrow.
18381 2004-10-04 22:56  jackson
18383         * ButtonBase.cs, Label.cs, MenuAPI.cs, ProgressBar.cs,
18384           ScrollBar.cs, StatusBar.cs, ToolBar.cs, TrackBar.cs: Let the base
18385           Control handle the buffers, derived classes should not have to
18386           CreateBuffers themselves.
18388 2004-10-04 21:20  jackson
18390         * StatusBar.cs: The control handles resizing the buffers now.
18392 2004-10-04 21:18  jackson
18394         * Control.cs: When resizing the buffers should be invalidated. This
18395           should be handled in Control not in derived classes.
18397 2004-10-04 14:45  jackson
18399         * TabPage.cs: oops
18401 2004-10-04 02:14  pbartok
18403         * LeftRightAlignment.cs:
18404           - Initial check-in
18406 2004-10-04 01:09  jordi
18408         * ThemeWin32Classic.cs: fixes right button position causing right
18409           button not showing on horizontal scrollbars
18411 2004-10-02 13:12  pbartok
18413         * XplatUIX11.cs:
18414           - Simplified the Invalidate method by using an X call instead of
18415             generating the expose ourselves
18416           - Added an expose when the window background is changed
18417           - Implemented ClientToScreen method
18419 2004-10-02 13:08  pbartok
18421         * XplatUIWin32.cs:
18422           - Added Win32EnableWindow method (test for implementing modal
18423           dialogs)
18424           - Added ClientToScreen method and imports
18426 2004-10-02 13:07  pbartok
18428         * XplatUI.cs, XplatUIDriver.cs:
18429           - Added ClientToScreen coordinate translation method
18431 2004-10-02 13:06  pbartok
18433         * KeyPressEventArgs.cs:
18434           - Fixed access level for constructor
18436 2004-10-02 13:06  pbartok
18438         * NativeWindow.cs:
18439           - Changed access level for the window_collection hash table
18441 2004-10-02 13:05  pbartok
18443         * Form.cs:
18444           - Added KeyPreview property
18445           - Added Menu property (still incomplete, pending Jordi's menu work)
18446           - Implemented ProcessCmdKey
18447           - Implemented ProcessDialogKey
18448           - Implemented ProcessKeyPreview
18450 2004-10-02 13:02  pbartok
18452         * Control.cs:
18453           - Added private method to get the Control object from the window
18454           handle
18455           - Implemented ContextMenu property
18456           - Implemented PointToScreen
18457           - Implemented PreProcessMessage
18458           - Implemented IsInputChar
18459           - Implemented IsInputKey
18460           - Implemented ProcessCmdKey
18461           - Completed ProcessKeyEventArgs
18462           - Fixed message loop to call the proper chain of functions on key
18463           events
18464           - Implemented ProcessDialogChar
18465           - Implemented ProcessDialogKey
18466           - Implemented ProcessKeyMessage
18467           - Implemented ProcessKeyPreview
18468           - Added RaiseDragEvent stub (MS internal method)
18469           - Added RaiseKeyEvent stub (MS internal method)
18470           - Added RaiseMouseEvent stub (MS Internal method)
18471           - Added RaisePaintEvent stub (MS Internal method)
18472           - Added ResetMouseEventArgs stub (MS Internal method)
18473           - Implemented RtlTranslateAlignment
18474           - Implemented RtlTranslateContent
18475           - Implemented RtlTranslateHorizontal
18476           - Implemented RtlTranslateLeftRight
18477           - Added generation of KeyPress event
18479 2004-10-02 05:57  ravindra
18481         * ListViewItem.cs: Added attributes.
18483 2004-10-02 05:32  ravindra
18485         * ListView.cs: Added attributes.
18487 2004-10-01 11:53  jackson
18489         * Form.cs: Implement the Close method so work on MessageBox can
18490           continue.
18492 2004-09-30 14:06  pbartok
18494         * XplatUIX11.cs:
18495           - Bug fixes
18497 2004-09-30 11:34  jackson
18499         * RadioButton.cs: Fix typo. Patch by John BouAntoun.
18501 2004-09-30 07:26  ravindra
18503         * ListViewItemConverter.cs: Converter for ListViewItem.
18505 2004-09-30 07:26  ravindra
18507         * SortOrder.cs: Enum for ListView control.
18509 2004-09-30 07:25  ravindra
18511         * ColumnHeader.cs: Supporting class for ListView control.
18513 2004-09-30 07:24  ravindra
18515         * ListView.cs, ListViewItem.cs: Initial implementation.
18517 2004-09-30 07:20  ravindra
18519         * ItemActivation.cs: Enum for ListView Control.
18521 2004-09-29 20:29  pbartok
18523         * XplatUIX11.cs:
18524           - Added lookup of pixel value for background color; tries to get a
18525             color 'close' to the requested color, it avoids having to create a
18526             colormap.  Depending on the display this could mean the used color
18527             is slightly off the desired color. Might have to change it to a more
18528             resource intensive colormap approach, but it will work as a
18529           workaround to avoid red screens.
18531 2004-09-29 14:27  jackson
18533         * XplatUIX11.cs: Set the X DisplayHandle in System.Drawing
18535 2004-09-28 12:44  pbartok
18537         * ButtonBase.cs, CheckBox.cs, ControlPaint.cs, GroupBox.cs,
18538           HScrollBar.cs, Label.cs, LinkLabel.cs, Panel.cs, PictureBox.cs,
18539           ProgressBar.cs, RadioButton.cs, ScrollBar.cs, StatusBar.cs,
18540           Theme.cs, ThemeGtk.cs, ThemeWin32Classic.cs, ToolBar.cs,
18541           TrackBar.cs, VScrollBar.cs:
18542           - Streamlined Theme interfaces:
18543             * Each DrawXXX method for a control now is passed the object for
18544               the control to be drawn in order to allow accessing any state the
18545               theme might require
18547             * ControlPaint methods for the theme now have a CP prefix to avoid
18548               name clashes with the Draw methods for controls
18550             * Every control now retrieves it's DefaultSize from the current
18551             theme
18553 2004-09-28 12:17  jackson
18555         * Button.cs: Do not redraw OnClick MouseUp/Down will handle the
18556           drawing
18558 2004-09-24 14:57  jackson
18560         * XplatUIX11.cs: Don't lock/enqueue/dequeue for unhandled messages.
18561           Gives us a nice little performance boost.
18563 2004-09-24 12:02  jackson
18565         * TabAlignment.cs, TabAppearance.cs, TabControl.cs, TabDrawMode.cs,
18566           TabPage.cs, TabSizeMode.cs: Partial implementation of the Tab
18567           Control and supporting classes. Initial checkin
18569 2004-09-23 13:08  jackson
18571         * Form.cs: Temp build fixage
18573 2004-09-23 01:39  ravindra
18575         * ItemChangedEventArgs.cs, ItemChangedEventHandler.cs,
18576           ItemCheckEventArgs.cs, ItemCheckEventHandler.cs,
18577           ItemDragEventArgs.cs, ItemDragEventHandler.cs,
18578           LabelEditEventArgs.cs, LabelEditEventHandler.cs: EventArgs and
18579           EventHandlers needed by ListView Control.
18581 2004-09-22 14:12  pbartok
18583         * ScrollableControl.cs:
18584           - Implemented DockPadding property
18585           - Implemented AutoScroll property
18586           - Implemented AutoScrollMargin property
18587           - Implemented AutoScrollMinSize property
18588           - Implemented AutoScrollPosition property
18589           - Implemented DisplayRectangle property (still incomplete)
18590           - Implemented CreateParams property
18591           - Implemented HScroll property
18592           - Implemented VScroll property
18593           - Implemented OnVisibleChanged property
18595 2004-09-22 14:09  pbartok
18597         * Form.cs:
18598           - Added Form.ControllCollection class
18599           - Added handling for Form owners: Owner, OwnedForms, AddOwnedForm,
18600             RemoveOwnedForm (still incomplete, missing on-top and common
18601             minimize/maximize behaviour)
18602           - Added StartPosition property (still incomplete, does not use when
18603             creating the form)
18604           - Added ShowDialog() methods (still incomplete, missing forcing the
18605             dialog modal)
18607 2004-09-22 14:05  pbartok
18609         * Application.cs:
18610           - Added message loop for modal dialogs
18612 2004-09-22 14:02  pbartok
18614         * GroupBox.cs:
18615           - Fixed wrong types for events
18617 2004-09-22 14:00  pbartok
18619         * Shortcut.cs, FormWindowState.cs:
18620           - Fixed wrong values
18622 2004-09-22 12:01  jackson
18624         * Control.cs: Text is never null
18626 2004-09-20 22:14  pbartok
18628         * XplatUIWin32.cs:
18629           - Fixed accessibility level for Idle handler
18631 2004-09-20 18:54  jackson
18633         * Application.cs, XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs,
18634           XplatUIX11.cs: New message loop that uses poll so we don't get a
18635           busy loop
18637 2004-09-17 10:43  pbartok
18639         * ScrollBar.cs:
18640           - Fixed behaviour of arrow buttons. Now properly behaves like
18641             Buttons (and like Microsoft's scrollbar arrow buttons)
18643 2004-09-17 10:14  pbartok
18645         * ScrollBar.cs:
18646           - Added missing release of keyboard/mouse capture
18648 2004-09-17 06:18  jordi
18650         * ContextMenu.cs, MainMenu.cs, Menu.cs, MenuAPI.cs, MenuItem.cs,
18651           Theme.cs: Very early menu support
18653 2004-09-16 17:45  pbartok
18655         * XplatUIWin32.cs:
18656           - Fixed sending a window to the front
18657           - Added overload for SetWindowPos to avoid casting
18659 2004-09-16 17:44  pbartok
18661         * Control.cs:
18662           - Added SendToBack and BringToFront methods
18664 2004-09-16 07:00  ravindra
18666         * Copyright: Added Novell URL.
18668 2004-09-16 07:00  ravindra
18670         * ToolBar.cs: Invalidate should be done before redrawing.
18672 2004-09-15 21:19  ravindra
18674         * ColumnHeaderStyle.cs: Enum for ListView Control.
18676 2004-09-15 21:18  ravindra
18678         * ColumnClickEventArgs.cs, ColumnClickEventHandler.cs: Event for
18679           ListView Control.
18681 2004-09-13 18:26  jackson
18683         * Timer.cs, XplatUIX11.cs: Remove test code so timers are updated
18684           properly
18686 2004-09-13 18:13  jackson
18688         * Timer.cs, X11Structs.cs, XplatUIX11.cs: Timers are now handled in
18689           a second thread and post messages into the main threads message
18690           queue. This makes timing much more consistent. Both win2K and XP
18691           have a minimum timer value of 15 milliseconds, so we now do this
18692           too.
18694 2004-09-13 15:18  pbartok
18696         * X11Structs.cs, XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs,
18697           XplatUIX11.cs:
18698           - Added Z-Ordering methods
18700 2004-09-13 10:56  pbartok
18702         * Form.cs:
18703           - Fixed #region names
18704           - Moved properties and methods into their proper #regions
18706 2004-09-13 10:51  pbartok
18708         * Form.cs:
18709           - Added Accept and CancelButton properties
18710           - Added ProcessDialogKey() method
18712 2004-09-13 08:18  pbartok
18714         * IWindowTarget.cs:
18715           - Initial check-in
18717 2004-09-10 21:50  pbartok
18719         * Control.cs:
18720           - Added DoDragDrop() [incomplete]
18721           - Properly implemented 'Visible' handling
18722           - Added SetVisibleCore()
18723           - Implemented FindChildAtPoint()
18724           - Implemented GetContainerControl()
18725           - Implemented Hide()
18727 2004-09-10 19:28  pbartok
18729         * Control.cs:
18730           - Moved methods into their appropriate #regions
18731           - Reordered methods within regions alphabetically
18733 2004-09-10 18:57  pbartok
18735         * XplatUIX11.cs, XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs:
18736           - Added method to retrieve text from window
18738 2004-09-10 18:56  pbartok
18740         * Control.cs:
18741           - Moved some internal functions into the internal region
18742           - Implemented FontHeight
18743           - Implemented RenderRightToLeft
18744           - Implemented ResizeRedraw
18745           - Implemented ShowFocusCues
18746           - Implemented ShowKeyboardCues
18747           - Implemented FromChildHandle
18748           - Implemented FromHandle
18749           - Implemented IsMnemonic
18750           - Implemented ReflectMessage
18751           - All public and protected Static Methods are now complete
18753 2004-09-10 16:54  pbartok
18755         * Control.cs:
18756           - Implemented remaining missing public instance properties
18757           - Alphabetized some out of order properties
18759 2004-09-10 05:51  ravindra
18761         * PictureBox.cs: Added a check for null image.
18763 2004-09-10 00:59  jordi
18765         * GroupBox.cs: remove cvs tag
18767 2004-09-09 05:25  ravindra
18769         * ToolBar.cs: Make redraw accessible from ToolBarButton.
18771 2004-09-09 05:23  ravindra
18773         * ToolBarButton.cs: Changes in ToolBarButton need to make it's
18774           parent redraw.
18776 2004-09-09 02:28  pbartok
18778         * ThemeWin32Classic.cs:
18779           - Improve disabled string look
18781 2004-09-09 01:15  jordi
18783         * MeasureItemEventArgs.cs, MeasureItemEventHandler.cs: measureitem
18784           args and handler
18786 2004-09-08 23:56  ravindra
18788         * ItemBoundsPortion.cs: It's enum, not a class!
18790 2004-09-08 23:47  ravindra
18792         * FormBorderStyle.cs, FormStartPosition.cs, FormWindowState.cs:
18793           Enums for Form.
18795 2004-09-08 21:13  ravindra
18797         * ItemBoundsPortion.cs, ListViewAlignment.cs, View.cs: Enums for
18798           ListView control.
18800 2004-09-08 21:03  ravindra
18802         * ThemeWin32Classic.cs: PictureBox would not draw a null image to
18803           avoid crash.
18805 2004-09-08 21:01  ravindra
18807         * ScrollableControl.cs: Removed unreachable code.
18809 2004-09-08 06:45  jordi
18811         * MenuMerge.cs, Shortcut.cs: enumerations need it by menus
18813 2004-09-08 01:00  jackson
18815         * XplatUIX11.cs: Only run the timers when updating the message
18816           queue. This effectively gives X messages a higher priority then
18817           timer messages. Timers still need love though
18819 2004-09-07 14:01  jackson
18821         * XplatUIX11.cs: Do not call XDestroyWindow, X has already done
18822           this for us and the handle is no longer valid.
18824 2004-09-07 13:59  jackson
18826         * HandleData.cs, XplatUIX11.cs: First steps towards a new X event
18827           loop that manages to not crash. TODO: Add poll and cleanup timers
18829 2004-09-07 11:12  jordi
18831         * GroupBox.cs, Theme.cs, ThemeWin32Classic.cs: GroupBox control
18833 2004-09-07 03:40  jordi
18835         * Label.cs, LinkLabel.cs, Theme.cs, ThemeWin32Classic.cs: LinkLabel
18836           fixes, methods, multiple links
18838 2004-09-06 06:55  jordi
18840         * Control.cs: Caches ClientRectangle rectangle value
18842 2004-09-05 02:03  jordi
18844         * ScrollBar.cs, ThemeWin32Classic.cs: fixes bugs, adds flashing on
18845           certain situations
18847 2004-09-04 11:10  jordi
18849         * Label.cs: Refresh when font changed
18851 2004-09-02 16:24  pbartok
18853         * Control.cs:
18854           - Added sanity check to creation of double buffer bitmap
18856 2004-09-02 16:24  pbartok
18858         * ButtonBase.cs:
18859           - Fixed selection of text color
18860           - Fixed handling of resize event; now properly recreates double
18861             buffering bitmap
18862           - Added missing assignment of TextAlignment
18863           - Added proper default for TextAlignment
18865 2004-09-02 14:26  pbartok
18867         * RadioButton.cs:
18868           - Added missing RadioButton.RadioButtonAccessibleObject class
18870 2004-09-02 14:26  pbartok
18872         * Control.cs:
18873           - Added missing Control.ControlAccessibleObject class
18874           - Started to implement Select()ion mechanisms, still very incomplete
18876 2004-09-02 14:25  pbartok
18878         * AccessibleObject.cs:
18879           - Added missing methods
18881 2004-09-02 14:23  pbartok
18883         * AccessibleNavigation.cs, AccessibleSelection.cs:
18884           - Initial check-in
18886 2004-09-02 10:32  jordi
18888         * Theme.cs, ThemeGtk.cs, ThemeWin32Classic.cs: implements resource
18889           pool for pens, brushes, and hatchbruses
18891 2004-09-01 15:30  jackson
18893         * StatusBar.cs: Fix typo
18895 2004-09-01 14:44  pbartok
18897         * RadioButton.cs:
18898           - Fixed state
18900 2004-09-01 14:39  pbartok
18902         * Button.cs, RadioButton.cs:
18903           - Functional initial check-in
18905 2004-09-01 14:01  pbartok
18907         * CheckBox.cs:
18908           - Added missing default
18909           - Added missing region mark
18911 2004-09-01 09:10  jordi
18913         * Label.cs: fixes method signatures, new methods, events, fixes
18914           autosize
18916 2004-09-01 07:19  jordi
18918         * Control.cs: Init string variables with an empty object
18920 2004-09-01 04:20  jordi
18922         * Control.cs: fires OnFontChanged event
18924 2004-08-31 20:07  pbartok
18926         * ButtonBase.cs:
18927           - Enabled display of strings
18929 2004-08-31 20:05  pbartok
18931         * Form.cs:
18932           - Added (partial) implementation of DialogResult; rest needs to be
18933             implemented when the modal loop code is done
18935 2004-08-31 19:55  pbartok
18937         * CheckBox.cs:
18938           - Fixed to match the removal of the needs_redraw concept
18940 2004-08-31 19:55  pbartok
18942         * ButtonBase.cs:
18943           - Removed the rather odd split between 'needs redraw' and redrawing
18944           - Now handles the events that require regeneration (ambient
18945             properties and size)
18947 2004-08-31 19:41  pbartok
18949         * Control.cs:
18950           - Added firing of BackColorChanged event
18951           - Added TopLevelControl property
18952           - Fixed handling of WM_ERASEBKGRND message
18954 2004-08-31 12:49  pbartok
18956         * ButtonBase.cs:
18957           - Removed debug
18958           - Minor fixes
18960 2004-08-31 12:48  pbartok
18962         * CheckBox.cs:
18963           - Finished (famous last words)
18965 2004-08-31 04:35  jordi
18967         * ScrollBar.cs: adds autorepeat timer, uses a single timer, fixes
18968           scrolling bugs, adds new methods
18970 2004-08-30 14:42  pbartok
18972         * CheckBox.cs:
18973           - Implemented CheckBox drawing code
18975 2004-08-30 14:42  pbartok
18977         * ButtonBase.cs:
18978           - Made Redraw() and CheckRedraw() virtual
18979           - Improved mouse up/down/move logic to properly track buttons
18981 2004-08-30 09:44  pbartok
18983         * CheckBox.cs:
18984           - Updated to fix broken build. Not complete yet.
18986 2004-08-30 09:28  pbartok
18988         * CheckState.cs:
18989           - Initial checkin
18991 2004-08-30 09:17  pbartok
18993         * Appearance.cs:
18994           - Initial check-in
18996 2004-08-27 16:12  ravindra
18998         * ToolBarButton.cs: Added TypeConverter attribute.
19000 2004-08-27 16:07  ravindra
19002         * ImageIndexConverter.cs: Implemented.
19004 2004-08-27 14:17  pbartok
19006         * Control.cs:
19007           - Removed unneeded stack vars
19008           - First attempt to fix sizing issues when layout is suspended
19010 2004-08-25 15:35  jordi
19012         * ScrollBar.cs: more fixes to scrollbar
19014 2004-08-25 14:04  ravindra
19016         * Theme.cs, ThemeWin32Classic.cs, ToolBar.cs, ToolBarButton.cs:
19017           Added the missing divider code and grip for ToolBar Control.
19019 2004-08-25 13:20  pbartok
19021         * Control.cs:
19022           - Control now properly passes the ambient background color to child
19023             controls
19025 2004-08-25 13:20  jordi
19027         * ScrollBar.cs: small bug fix regarding bar position
19029 2004-08-25 12:33  pbartok
19031         * Timer.cs:
19032           - Now only calls SetTimer or KillTimer if the enabled state has
19033           changed
19035 2004-08-25 12:33  pbartok
19037         * XplatUIWin32.cs:
19038           - Fixed timer handling, now seems to work
19039           - Improved error message for window creation
19041 2004-08-25 12:32  pbartok
19043         * Control.cs:
19044           - Fixed generation of MouseUp message
19046 2004-08-25 12:29  jordi
19048         * ProgressBar.cs, ThemeWin32Classic.cs: new methods, properties,
19049           and fixes for progressbar
19051 2004-08-24 18:43  ravindra
19053         * ThemeWin32Classic.cs, ToolBar.cs: Fixed wrapping related issues
19054           in ToolBar control.
19056 2004-08-24 17:15  pbartok
19058         * Panel.cs:
19059           - Added #region
19060           - Added missing events
19061           - Alphabetized
19063 2004-08-24 17:14  pbartok
19065         * StatusBar.cs, PictureBox.cs:
19066           - Now uses Control's CreateParams
19068 2004-08-24 16:36  pbartok
19070         * XplatUIX11.cs:
19071           - Fixed background color handling
19072           - Fixed sending of enter/leave events on a grab
19074 2004-08-24 16:35  pbartok
19076         * X11Structs.cs:
19077           - Refined definitions for CrossingEvent
19079 2004-08-24 12:37  jordi
19081         * ScrollBar.cs, Theme.cs, ThemeGtk.cs, ThemeWin32Classic.cs: fixes
19082           formmating, methods signature, and adds missing events
19084 2004-08-24 12:24  jordi
19086         * Control.cs: fire OnEnabledChanged event
19088 2004-08-24 11:17  pbartok
19090         * XplatUIWin32.cs:
19091           - Implemented SetTimer() and KillTimer()
19093 2004-08-24 11:16  pbartok
19095         * XplatUIX11.cs:
19096           - Now uses Remove instead of Add to kill the timer
19098 2004-08-24 10:16  jackson
19100         * PictureBox.cs, Theme.cs, ThemeWin32Classic.cs: Handle drawing
19101           picture boxes in the theme now. Draw picture box borders and obey
19102           sizing modes
19104 2004-08-24 05:49  jackson
19106         * Timer.cs: Remove top secret debugging code
19108 2004-08-24 05:34  jackson
19110         * PictureBox.cs: Temp hack to make picture boxes draw their full
19111           image
19113 2004-08-24 05:29  jackson
19115         * Timer.cs, XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs,
19116           XplatUIX11.cs: Move timers to the driver level. On X they are
19117           queued by the driver and checked on idle.
19119 2004-08-24 01:07  jackson
19121         * XplatUIX11.cs: Use a queue for async messages instead of passing
19122           them as ClientMessages since that was totally broken. Also simply
19123           check for events and return an idle message if none are found. This
19124           gives us an idle handler, and prevents deadlocking when no messages
19125           are in the queue.
19127 2004-08-23 18:19  ravindra
19129         * XplatUIWin32.cs: Removed the unwanted destructor.
19131 2004-08-23 17:27  pbartok
19133         * ButtonBase.cs:
19134           - Finishing touches. Works now, just needs some optimizations.
19136 2004-08-23 16:53  jordi
19138         * ScrollBar.cs: small fix
19140 2004-08-23 16:45  pbartok
19142         * Application.cs:
19143           - Removed debug output
19144           - Simplifications
19146 2004-08-23 16:43  jordi
19148         * ScrollBar.cs: [no log message]
19150 2004-08-23 16:10  pbartok
19152         * Form.cs:
19153           - Fixed handling of WM_CLOSE message
19154           - Removed debug output
19156 2004-08-23 16:09  pbartok
19158         * Application.cs:
19159           - Added handling of Idle event
19160           - Added handling of form closing
19161           - Fixed reporting of MessageLoop property
19162           - Removed some unneeded code, should provide a bit of a speedup
19164 2004-08-23 15:22  pbartok
19166         * Control.cs:
19167           - Added InitLayout() method
19168           - Added code to properly perform layout when Anchor or Dock property
19169             is changed
19170           - Changed 'interpretation' of ResumeLayout. MS seems to have a
19171             LAMESPEC, tried to do it in a way that makes sense
19173 2004-08-23 14:10  jordi
19175         * HScrollBar.cs, ScrollBar.cs, TrackBar.cs, VScrollBar.cs: fixes
19176           properties and methods
19178 2004-08-23 13:55  pbartok
19180         * Control.cs:
19181           - Properly fixed Jordi's last fix
19182           - Now uses Cursor's Position property instead of calling XplatUI
19183           directly
19185 2004-08-23 13:44  jordi
19187         * PaintEventHandler.cs: Adding missing attribute
19189 2004-08-23 13:39  pbartok
19191         * Cursor.cs:
19192           - Implemented Position property
19194 2004-08-23 13:39  pbartok
19196         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs:
19197           - Added method to move mouse cursor
19199 2004-08-23 13:39  pbartok
19201         * XplatUIX11.cs:
19202           - Fixed setting of background color
19203           - Added method to move mouse cursor
19205 2004-08-23 13:16  jordi
19207         * Control.cs: avoids null exception
19209 2004-08-22 17:46  jackson
19211         * PictureBox.cs, PictureBoxSizeMode.cs: Initial implementation of
19212           PictureBox
19214 2004-08-22 17:40  jackson
19216         * XplatUIX11.cs: Add some missing locks
19218 2004-08-22 15:10  pbartok
19220         * Control.cs, Form.cs:
19221           - Removed OverlappedWindow style from Control, instead it's default
19222             now is child
19223           - Made form windows OverlappedWindow by default
19225 2004-08-22 13:34  jackson
19227         * ScrollBar.cs: Update the position through the Value property so
19228           the OnValueChanged event is raised.
19230 2004-08-22 12:04  pbartok
19232         * SWF.csproj:
19233           - Added Cursor.cs and UserControl.cs
19235 2004-08-22 12:03  pbartok
19237         * Cursor.cs:
19238           - Started implementation, not usable yet
19240 2004-08-22 12:00  pbartok
19242         * UserControl.cs:
19243           - Implemented UserControl (complete)
19245 2004-08-21 19:20  ravindra
19247         * ToolBar.cs: Correcting the formatting mess of VS.NET.
19249 2004-08-21 18:49  ravindra
19251         * ToolBar.cs: Probably this completes the missing attributes in
19252           toolbar control.
19254 2004-08-21 18:03  ravindra
19256         * ToolBar.cs, ToolBarButton.cs, ToolBarButtonClickEventArgs.cs:
19257           Fixed toolbar control signatures.
19259 2004-08-21 16:32  pbartok
19261         * LinkLabel.cs:
19262           - Signature Fixes
19264 2004-08-21 16:30  pbartok
19266         * Label.cs:
19267           - Signature fixes
19269 2004-08-21 16:19  pbartok
19271         * Control.cs, Label.cs:
19272           - Signature fixes
19274 2004-08-21 15:57  pbartok
19276         * ButtonBase.cs:
19277           - Added loads of debug output for development
19278           - Fixed typo in method name
19280 2004-08-21 15:52  pbartok
19282         * ToolBarButtonClickEventArgs.cs:
19283           - Added missing base class
19285 2004-08-21 14:53  pbartok
19287         * Control.cs:
19288           - Updated to match new GrabWindow signature
19290 2004-08-21 14:51  pbartok
19292         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIX11.cs:
19293           - Added method to get default display size
19295 2004-08-21 14:23  pbartok
19297         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIX11.cs:
19298           - Added method to query current grab state
19299           - Added argument to allow confining a grab to a window
19301 2004-08-21 14:22  pbartok
19303         * Keys.cs:
19304           - Added [Flags] attribute so that modifiers can be used in bitwise
19305           ops
19307 2004-08-21 14:21  pbartok
19309         * TrackBar.cs, ScrollBar.cs:
19310           - Replaced direct XplatUI calls with their Control counterpart
19312 2004-08-21 13:32  pbartok
19314         * Control.cs:
19315           - Implemented Created property
19317 2004-08-21 13:28  pbartok
19319         * Control.cs:
19320           - Implemented ContainsFocus
19322 2004-08-21 13:26  pbartok
19324         * Control.cs:
19325           - Implemented CausesValidation
19327 2004-08-21 13:21  pbartok
19329         * Control.cs:
19330           - Implemented CanFocus
19331           - Implemented CanSelect
19332           - Implemented Capture
19334 2004-08-21 12:35  pbartok
19336         * XplatUIWin32.cs:
19337           - Fixed bug with Async message handling
19338           - Implemented getting the ModifierKeys
19340 2004-08-21 12:32  jackson
19342         * AsyncMethodResult.cs: Make sure we have the mutex before we
19343           release it. Fixes BeginInvoke on windows
19345 2004-08-21 11:31  pbartok
19347         * XplatUIWin32.cs, XplatUIX11.cs:
19348           - Drivers now return proper mouse state
19350 2004-08-21 10:54  jackson
19352         * Control.cs: Implement EndInvoke
19354 2004-08-21 10:48  jackson
19356         * Timer.cs: Remove unneeded finalizer
19358 2004-08-20 19:52  ravindra
19360         * ThemeWin32Classic.cs, ToolBar.cs, ToolBarButton.cs: Improvments
19361           in mouse event handling in the ToolBar control.
19363 2004-08-20 19:50  ravindra
19365         * ImageList.cs: Changed draw method to use the arguments passed in
19366           to draw the image.
19368 2004-08-20 18:58  pbartok
19370         * XplatUIStructs.cs:
19371           - Added private message for async communication
19373 2004-08-20 17:38  ravindra
19375         * Control.cs: Made RightToLeft property virtual and removed a
19376           Console.WriteLine.
19378 2004-08-20 14:39  jordi
19380         * ThemeGtk.cs: use style_attach
19382 2004-08-20 14:39  pbartok
19384         * XplatUIWin32.cs:
19385           - Added jackson's Async code from X11 to Win32
19387 2004-08-20 14:09  pbartok
19389         * SWF.csproj:
19390           - Added all new files
19392 2004-08-20 14:09  pbartok
19394         * Control.cs:
19395           - Added call to set window background color
19397 2004-08-20 14:03  pbartok
19399         * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs:
19400           - Added method for setting the window background
19402 2004-08-20 14:02  pbartok
19404         * XplatUIWin32.cs:
19405           - Added method for setting the background color
19406           - Added handling for erasing the window background
19408 2004-08-20 13:45  jordi
19410         * TrackBar.cs: fixes timer, new properties and methods
19412 2004-08-20 13:34  jackson
19414         * ScrollBar.cs: Use the SWF timer so callbacks are run in the
19415           correct thread
19417 2004-08-20 13:22  jackson
19419         * Timer.cs: Timer Tick events are now handed through Controls Async
19420           mechanism so the callbacks are executed in the same thread as X
19422 2004-08-20 13:19  jackson
19424         * XplatUIDriver.cs: Expose functionality to send async messages
19425           through the driver
19427 2004-08-20 13:18  jackson
19429         * Control.cs: Implement Begininvoke
19431 2004-08-20 13:14  jackson
19433         * XplatUI.cs, XplatUIWin32.cs: Expose functionality to send async
19434           messages through the driver
19436 2004-08-20 13:12  jackson
19438         * XplatUIX11.cs: Lock before all X operations. Also added Async
19439           method functionality through XSendEvent
19441 2004-08-20 13:11  jackson
19443         * X11Structs.cs: Use IntPtrs for ClientMessage extra data (TODO:
19444           This will screw up on 64 bit systems)
19446 2004-08-20 13:10  jackson
19448         * AsyncMethodData.cs, AsyncMethodResult.cs: Classes for sending
19449           Async messages through X/Win32
19451 2004-08-19 19:39  pbartok
19453         * XplatUIX11.cs:
19454           - Updated code to match new HandleData.DeviceContext type
19456 2004-08-19 19:38  pbartok
19458         * HandleData.cs:
19459           - Made DeviceContext a generic object to allow usage from various
19460           drivers
19461           - Added support for queueing Windows messages
19463 2004-08-19 19:37  pbartok
19465         * XplatUIWin32.cs:
19466           - Added generation of MouseEnter, MouseLeave and MouseHover events
19467           - Added cleanup on EndPaint
19469 2004-08-19 19:17  pbartok
19471         * Control.cs:
19472           - Added handling of WM_MOUSEHOVER
19473           - Worked around 'bug' in Win32 WM_MOUSE_ENTER/WM_MOUSE_LEAVE driver
19474           code
19476 2004-08-19 18:55  jordi
19478         * ThemeGtk.cs: fixes button order
19480 2004-08-19 18:12  jordi
19482         * Theme.cs, ThemeWin32Classic.cs: fixes methods signature
19484 2004-08-19 17:09  pbartok
19486         * Control.cs:
19487           - Added Right property
19488           - Added RightToLeft property
19490 2004-08-19 16:27  jordi
19492         * ThemeGtk.cs: experimental GTK theme support
19494 2004-08-19 16:26  jordi
19496         * ITheme.cs, Theme.cs: move themes from an interface to a class
19498 2004-08-19 16:25  jordi
19500         * Control.cs, ScrollBar.cs, ThemeEngine.cs, ThemeWin32Classic.cs:
19501           theme enhancaments
19503 2004-08-19 16:04  pbartok
19505         * XplatUIX11.cs:
19506           - Added colormap basics
19507           - Added a way to re-initialize with a different display handle
19508           - Fixed setting of the window background color
19509           - Added various X11 imports related to colors and colormaps
19511 2004-08-19 15:51  pbartok
19513         * X11Structs.cs:
19514           - Removed packing hints (Paolo suggested this a while back)
19515           - fixed colormap type
19516           - Added default Atom types
19517           - Added Screen and color structs and enums
19519 2004-08-19 15:39  pbartok
19521         * ImageList.cs:
19522           - Added missing Draw() method
19523           - Added missing RecreateHandle event
19525 2004-08-19 15:30  pbartok
19527         * Form.cs:
19528           - Added handling of WM_CLOSE
19530 2004-08-18 13:16  jordi
19532         * ITheme.cs, ThemeWin32Classic.cs, XplatUIWin32.cs: Move colors to
19533           a table
19535 2004-08-18 09:56  jordi
19537         * ScrollBar.cs: fixes to scrollbar: steps and multiple timers
19539 2004-08-17 15:31  ravindra
19541         * SWF.csproj: Updated project.
19543 2004-08-17 15:25  pbartok
19545         * Control.cs:
19546           - Drawing improvement; don't call UpdateBounds if we are not visible
19547             (or have been minimized)
19549 2004-08-17 15:24  pbartok
19551         * XplatUIWin32.cs:
19552           - Finished IsVisible
19553           - Added Win32GetWindowPlacement
19555 2004-08-17 15:08  jackson
19557         * Panel.cs: Initial checkin of the Panel
19559 2004-08-17 14:25  pbartok
19561         * Control.cs:
19562           - Fixed broken handling of default window sizes
19564 2004-08-17 13:29  jackson
19566         * ThemeWin32Classic.cs: Don't use KnownColor to create colours. It
19567           has a large startup time.
19569 2004-08-17 10:25  jackson
19571         * HandleData.cs: union areas properly
19573 2004-08-17 10:12  jackson
19575         * HandleData.cs: union areas properly
19577 2004-08-16 20:00  ravindra
19579         * ToolBar.cs, ToolBarButton.cs: Added attributes.
19581 2004-08-16 18:48  ravindra
19583         * ToolBar.cs: Added attributes.
19585 2004-08-16 17:17  ravindra
19587         * SWF.csproj: Updated project.
19589 2004-08-16 17:16  jackson
19591         * XplatUIX11.cs: Check for more expose events before sending a
19592           WM_PAINT so they can all be grouped together. This makes dragging a
19593           window across another window redraw in a sane way.
19595 2004-08-16 15:47  pbartok
19597         * Control.cs:
19598           - Added handling of WM_MOUSE_ENTER & WM_MOUSE_LEAVE to
19599             support OnMouseEnter/Leave()
19600           - Added WS_CLIPSIBLINGS and WS_CLIPCHILDREN window styles to improve
19601             exposure handling
19603 2004-08-16 15:46  pbartok
19605         * XplatUIStructs.cs, XplatUIX11.cs:
19606           - Added WM_MOUSE_ENTER & WM_MOUSE_LEAVE to support
19607           OnMouseEnter/Leave()
19609 2004-08-16 15:34  jackson
19611         * XplatUIX11.cs: Group multiple expose events in HandleData, make
19612           sure messages get the message field set to WM_NULL if they are not
19613           handled.
19615 2004-08-16 15:24  jackson
19617         * HandleData.cs: HandleData is used for storing message information
19618           for window handles
19620 2004-08-15 17:23  ravindra
19622         * ColorDepth.cs: Added attribute.
19624 2004-08-15 17:23  ravindra
19626         * SWF.csproj: Updated project for ToolBar Control.
19628 2004-08-15 17:20  ravindra
19630         * ITheme.cs, ThemeWin32Classic.cs: Changes to Theme for ToolBar
19631           control and also dos2unix format.
19633 2004-08-15 17:13  ravindra
19635         * ToolBar.cs, ToolBarAppearance.cs, ToolBarButton.cs,
19636           ToolBarButtonClickEventArgs.cs,
19637           ToolBarButtonClickEventHandler.cs, ToolBarButtonStyle.cs,
19638           ToolBarTextAlign.cs: First Implementation of ToolBar control.
19640 2004-08-15 15:31  pbartok
19642         * ButtonBase.cs:
19643           - First (mostly) working version
19645 2004-08-13 16:15  pbartok
19647         * Control.cs:
19648           - Fixed Anchor default
19650 2004-08-13 15:43  pbartok
19652         * Control.cs:
19653           - Changed GetCursorPos signature
19655 2004-08-13 15:42  pbartok
19657         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs:
19658           - Changed signature for GetCursorPos
19660 2004-08-13 15:25  pbartok
19662         * XplatUIX11.cs:
19663           - Cleanup
19664           - Fixed resizing/exposure handling
19666 2004-08-13 15:22  jordi
19668         * ThemeWin32Classic.cs: removes redundant code and fixes issues
19669           with tickposition
19671 2004-08-13 14:55  jordi
19673         * TrackBar.cs: change from wndproc to events
19675 2004-08-13 13:00  jordi
19677         * Control.cs, XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs,
19678           XplatUIX11.cs: implements PointToClient (ScreenToClient)
19680 2004-08-13 12:53  pbartok
19682         * XplatUIWin32.cs:
19683           - Changed GetWindowPos to also provide client area size
19684           - Fixed broken prototypes for several win32 functions
19686 2004-08-13 12:53  pbartok
19688         * XplatUI.cs, XplatUIDriver.cs:
19689           - Changed GetWindowPos to also provide client area size
19691 2004-08-13 12:52  pbartok
19693         * XplatUIX11.cs:
19694           - Added generation of WM_POSCHANGED
19695           - Changed GetWindowPos to also provide client area size
19697 2004-08-13 12:52  pbartok
19699         * Control.cs:
19700           - Added Dispose() and destructor
19701           - Fixed resizing and bounds calculation
19702           - Fixed Layout
19703           - Added memory savings for invisible windows
19705 2004-08-13 12:46  jordi
19707         * TrackBar.cs: adds timer and grap window
19709 2004-08-13 10:25  jackson
19711         * Timer.cs: SWF Timer
19713 2004-08-12 16:59  pbartok
19715         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIX11.cs:
19716           - Implemented method to get current mouse position
19718 2004-08-12 14:29  jordi
19720         * ITheme.cs, ThemeWin32Classic.cs, TrackBar.cs: Trackbar
19721           enhancement, fix mouse problems, highli thumb, etc
19723 2004-08-12 13:31  pbartok
19725         * Control.cs:
19726           - Fixed Anchoring bugs
19728 2004-08-12 13:01  jackson
19730         * StatusBar.cs: Don't forget things
19732 2004-08-12 12:54  jackson
19734         * ThemeWin32Classic.cs: Handle owner draw status bars
19736 2004-08-12 12:54  jackson
19738         * StatusBar.cs: Implement missing properties, events, and methods.
19739           Handle mouse clicking
19741 2004-08-12 10:19  jackson
19743         * StatusBarPanelClickEventArgs.cs,
19744           StatusBarPanelClickEventHandler.cs: Classes for handling status
19745           bar panel click events
19747 2004-08-12 10:10  jackson
19749         * Control.cs: Add missing properties
19751 2004-08-12 09:46  pbartok
19753         * BindingsManagerBase.cs:
19754           - Name changed to BindingManagerBase.cs
19756 2004-08-12 09:25  jordi
19758         * ScrollableControl.cs: calls ctrlbase instead of exeception
19760 2004-08-11 16:28  pbartok
19762         * InputLanguageChangingEventArgs.cs:
19763           - Never check in before compiling. Fixes the last check-in
19765 2004-08-11 16:26  pbartok
19767         * InputLanguageChangingEventArgs.cs:
19768           - More signature fixes
19770 2004-08-11 16:20  pbartok
19772         * BindingManagerBase.cs, BindingMemberInfo.cs, ContainerControl.cs,
19773           Control.cs, ControlEventArgs.cs, ControlPaint.cs, Form.cs,
19774           ImageListStreamer.cs, InputLanguage.cs,
19775           InputLanguageChangedEventArgs.cs,
19776           InputLanguageChangingEventArgs.cs, Keys.cs, LayoutEventArgs.cs,
19777           LinkArea.cs, Message.cs, MouseEventArgs.cs, NativeWindow.cs,
19778           ScrollEventArgs.cs, ScrollableControl.cs, XplatUI.cs,
19779           XplatUIDriver.cs, XplatUIWin32.cs, XplatUIX11.cs:
19780           - Signature fixes
19782 2004-08-11 16:16  pbartok
19784         * Application.cs:
19785           - Fixed Signature
19786           - Added .Net 1.1 method
19788 2004-08-11 15:25  pbartok
19790         * SWF.csproj:
19791           - Fixed BindingManagerBase.cs filename
19793 2004-08-11 15:22  pbartok
19795         * BindingManagerBase.cs:
19796           - Was checked in with wrong filename
19798 2004-08-11 14:50  pbartok
19800         * SWF.csproj:
19801           - Updated
19803 2004-08-11 13:41  jordi
19805         * XplatUIWin32.cs: Fixes ClientRect
19807 2004-08-11 13:19  pbartok
19809         * Control.cs, XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs,
19810           XplatUIX11.cs:
19811           - We had SetWindowPos and MoveWindow to set window positions and
19812             size, removed MoveWindow. We have GetWindowPos, so it made sense to
19813             keep SetWindowPos as matching counterpart
19814           - Added some X11 sanity checking
19816 2004-08-11 12:59  pbartok
19818         * Control.cs:
19819           - Major cleanup of my SetBounds/SetBoundsCore/UpdateBounds mess
19820             (It seems that SetBounds is just a front for SetBoundsCore and
19821              SetBoundsCore updates the underlying window system and
19822              UpdateBounds is responsible for updating the variables associated
19823              with the Control and sending the events)
19824           - Major cleanup of Size handling; we now have two sizes, client_size
19825             and bounds. Bounds defines the window with decorations, client_size
19826             without them.
19828 2004-08-11 12:55  pbartok
19830         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIX11.cs:
19831           - Added method to calculate difference between decorated window and
19832             raw client area
19834 2004-08-11 12:54  pbartok
19836         * Label.cs:
19837           - Forcing redraw on resize
19839 2004-08-11 11:43  pbartok
19841         * ImageList.cs:
19842           - Removed disposing of the actual images when the list is disposed
19844 2004-08-11 09:13  pbartok
19846         * Control.cs:
19847           - Now properly reparents windows
19849 2004-08-11 08:37  pbartok
19851         * Control.cs:
19852           - Duh!
19854 2004-08-11 07:47  pbartok
19856         * Control.cs:
19857           - Rewrote the collection stuff. Might not be as fast now, not
19858             keeping the number of children around and accessible directly, but
19859             it's more straightforward
19861 2004-08-11 07:44  pbartok
19863         * AccessibleObject.cs:
19864           - Fixed to match ControlCollection rewrite
19866 2004-08-11 07:43  pbartok
19868         * ImageList.cs:
19869           - Added missing creation of the collection list
19871 2004-08-10 20:08  jackson
19873         * StatusBar.cs: Get the paint message from WndProc
19875 2004-08-10 19:31  jackson
19877         * ThemeWin32Classic.cs: Create Brushes as little as possible
19879 2004-08-10 19:20  jackson
19881         * UICues.cs: Add Flags attribute
19883 2004-08-10 19:19  jackson
19885         * StatusBarPanel.cs: Signature cleanup
19887 2004-08-10 19:10  jackson
19889         * StatusBarDrawItemEventArgs.cs, StatusBarDrawItemEventHandler.cs:
19890           Initial implementation of status bar item drawing
19892 2004-08-10 17:27  jordi
19894         * TrackBar.cs: add missing methods, properties, and restructure to
19895           hide extra ones
19897 2004-08-10 16:24  jackson
19899         * AccessibleStates.cs, Border3DSide.cs, Border3DStyle.cs,
19900           ButtonState.cs, ControlStyles.cs, DragDropEffects.cs: Add flags
19901           attribute
19903 2004-08-10 13:21  jordi
19905         * ITheme.cs, ScrollBar.cs, ThemeWin32Classic.cs: scrollbar
19906           enhancements and standarize on win colors defaults
19908 2004-08-10 12:52  jackson
19910         * DrawItemEventArgs.cs, DrawItemState.cs, ITheme.cs,
19911           ThemeWin32Classic.cs: Implement DrawItem functionality
19913 2004-08-10 12:47  jordi
19915         * XplatUIWin32.cs: Calls InvalidateRect before UpdateWindow
19917 2004-08-10 12:32  jordi
19919         * Control.cs: throw ontextchange event
19921 2004-08-10 11:43  pbartok
19923         * Control.cs:
19924           - Added more to the still unfinished Dock/Anchor layout code
19926 2004-08-10 11:39  pbartok
19928         * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs:
19929           - Added GetWindowPos method
19931 2004-08-10 11:36  pbartok
19933         * XplatUIWin32.cs:
19934           - Implemented several methods
19936 2004-08-10 09:47  jackson
19938         * TrackBar.cs: Allow control to handle buffering
19940 2004-08-10 09:41  jackson
19942         * ProgressBar.cs, ScrollBar.cs: Allow control to handle buffering
19944 2004-08-10 09:24  jackson
19946         * Label.cs, LinkLabel.cs: Let Control handle buffering.
19948 2004-08-10 09:09  jackson
19950         * StatusBar.cs: Let Control handle all the buffering.
19952 2004-08-10 09:08  jackson
19954         * Control.cs: Control will now handle the buffering code, so each
19955           control does not have to implement this.
19957 2004-08-10 08:34  jackson
19959         * XplatUIDriver.cs: Use default colors from the theme
19961 2004-08-09 17:12  pbartok
19963         * ImageList.cs:
19964           - Fixed several bugs Ravindra pointed out
19966 2004-08-09 16:11  pbartok
19968         * Control.cs:
19969           - Added incomplete dock layout code
19970           - Added support for mouse wheel
19972 2004-08-09 16:09  pbartok
19974         * XplatUIX11.cs:
19975           - Added handling for middle and right mousebutton
19976           - Added handling for mouse wheel
19977           - Added handling for key state and mouse state and position
19978           - Now properly generates WM_xBUTTONx messages and WM_MOUSEWHEEL
19979           messages
19981 2004-08-09 15:40  jackson
19983         * StatusBarPanel.cs, StatusBarPanelAutoSize.cs,
19984           StatusBarPanelBorderStyle.cs, StatusBarPanelStyle.cs: Initial
19985           checkin
19987 2004-08-09 15:37  jackson
19989         * StatusBar.cs: Initial implementation of StatusBar
19991 2004-08-09 15:36  jackson
19993         * ITheme.cs: Add support for drawing status bar and getting status
19994           bar item sizes
19996 2004-08-09 15:35  pbartok
19998         * MouseButtons.cs:
19999           - Fixed values
20001 2004-08-09 15:34  jackson
20003         * ThemeWin32Classic.cs: Add support for drawing status bar and get
20004           status bar item sizes
20006 2004-08-09 15:21  jackson
20008         * ThemeWin32Classic.cs: Use known colors for default control
20009           colours
20011 2004-08-09 15:12  jackson
20013         * ThemeWin32Classic.cs: Make the default font static, it is static
20014           in control so this doesn't change functionality and creating fonts
20015           is sloooooow.
20017 2004-08-09 14:56  pbartok
20019         * X11Structs.cs:
20020           - Added GrabMode enum
20022 2004-08-09 14:55  pbartok
20024         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIX11.cs:
20025           - Removed Run method, was only required for initial development
20027 2004-08-09 14:51  pbartok
20029         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIX11.cs:
20030           - Implemented GrabWindow/ReleaseWindow methods to allow pointer
20031           capture
20033 2004-08-09 13:48  pbartok
20035         * XplatUIX11.cs:
20036           - Fixed default sizing for child windows
20038 2004-08-09 12:56  pbartok
20040         * XplatUIX11.cs:
20041           - Added generation of WM_DESTROY message
20042           - Added handling of window manager induced shutdown
20044 2004-08-09 11:31  jackson
20046         * ThemeWin32Classic.cs: New names for control properties
20048 2004-08-09 11:25  jackson
20050         * Control.cs: Use new color names
20052 2004-08-09 11:02  jackson
20054         * XplatUI.cs: Get default window properties from the theme
20056 2004-08-09 11:01  jackson
20058         * ITheme.cs: The theme engine now controls default window
20059           properties
20061 2004-08-09 11:00  jackson
20063         * ThemeWin32Classic.cs: Add default window color properties
20065 2004-08-09 10:17  jackson
20067         * ThemeWin32Classic.cs: Use correct default back color
20069 2004-08-09 10:05  jackson
20071         * XplatUIWin32.cs, XplatUIX11.cs: These properties are handled by
20072           the theme now.
20074 2004-08-09 09:56  jackson
20076         * XplatUI.cs: Remove defaults, these are handled by the theme now.
20078 2004-08-09 09:54  jackson
20080         * Control.cs: Get default properties from the theme.
20082 2004-08-09 09:53  jackson
20084         * ITheme.cs: Themes now handle default control properties
20086 2004-08-09 09:53  jackson
20088         * ThemeWin32Classic.cs: Themes now handle default control
20089           properties so coloring will be consistent
20091 2004-08-08 16:54  jordi
20093         * ITheme.cs, ThemeWin32Classic.cs: Label BorderStyles
20095 2004-08-08 15:08  jordi
20097         * XplatUIX11.cs: fixes keyboard crash
20099 2004-08-08 13:47  jordi
20101         * Label.cs: add cvs header info
20103 2004-08-08 12:09  jackson
20105         * ThemeWin32Classic.cs: Add pen_buttonface
20107 2004-08-08 11:52  jordi
20109         * Label.cs, LinkLabel.cs: [no log message]
20111 2004-08-08 11:34  jordi
20113         * ThemeWin32Classic.cs: Use Windows Standard Colours
20115 2004-08-07 17:32  jordi
20117         * TrackBar.cs: throw exceptions of invalid enums values
20119 2004-08-07 17:31  jordi
20121         * Label.cs, LinkLabel.cs, ThemeWin32Classic.cs: fixes label bug and
20122           draw method name
20124 2004-08-07 16:56  jackson
20126         * HorizontalAlignment.cs: Initial checkin
20128 2004-08-07 13:16  jordi
20130         * Label.cs, LinkLabel.cs: throw exceptions, fixes events, missing
20131           methods
20133 2004-08-07 13:05  jordi
20135         * ITheme.cs, ThemeWin32Classic.cs: Theme colour support and
20136           GetSysColor defines
20138 2004-08-06 18:01  pbartok
20140         * ThemeWin32Classic.cs:
20141           - Fixed some rounding issues with float/int
20143 2004-08-06 18:00  jackson
20145         * DockStyle.cs, AnchorStyles.cs:
20147                   Add flags and serializable attributes.
20149 2004-08-06 17:46  pbartok
20151         * XplatUIX11.cs:
20152           - Implemented GetParent
20154 2004-08-06 17:18  pbartok
20156         * TrackBar.cs:
20157           - Fixed some rounding issues with float/int
20159 2004-08-06 17:17  pbartok
20161         * X11Structs.cs, XplatUIX11.cs:
20162           - Fixed Refresh and Invalidate
20164 2004-08-06 15:30  pbartok
20166         * Control.cs, X11Structs.cs, XplatUIX11.cs:
20167           - Fixed recursive loop when resizing
20168           - Improved/fixed redrawing on expose messages
20170 2004-08-06 09:53  jordi
20172         * Control.cs, X11Structs.cs, XplatUIWin32.cs, XplatUIX11.cs: X11
20173           keyboard navigation
20175 2004-08-06 08:02  pbartok
20177         * X11Structs.cs, XplatUIX11.cs:
20178           - Fixed reparenting
20179           - Fixed window border creation
20181 2004-08-05 15:38  pbartok
20183         * XplatUIX11.cs:
20184           - Attempted fix for reparenting problems
20186 2004-08-04 15:14  pbartok
20188         * Control.cs:
20189           - Fixed Invalidation bug (calculated wrong client area)
20190           - Added ClientSize setter
20192 2004-08-04 15:13  pbartok
20194         * Form.cs:
20195           - Added AutoScale properties
20197 2004-08-04 15:13  pbartok
20199         * SWF.csproj:
20200           - Added latest files
20202 2004-08-04 14:11  pbartok
20204         * Control.cs, XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs,
20205           XplatUIX11.cs:
20206           - Added Invalidate handling
20208 2004-08-03 17:09  jordi
20210         * XplatUIDriver.cs: fixes spelling mistake
20212 2004-07-27 09:53  jordi
20214         * TrackBar.cs: fixes trackbar events, def classname, methods
20215           signature
20217 2004-07-27 09:29  jordi
20219         * ScrollBar.cs: fixes scrollbar events
20221 2004-07-27 04:38  jordi
20223         * Control.cs: changes to be able to run winforms samples
20225 2004-07-26 11:42  jordi
20227         * ControlPaint.cs, ITheme.cs, ProgressBar.cs, ScrollBar.cs,
20228           ThemeEngine.cs, ThemeWin32Classic.cs, TrackBar.cs: Theme support
20230 2004-07-26 05:41  jordi
20232         * MessageBox.cs, MessageBoxButtons.cs, MessageBoxDefaultButton.cs,
20233           MessageBoxIcon.cs, MessageBoxOptions.cs: initial messagebox
20234           implementation
20236 2004-07-22 09:22  jordi
20238         * LinkLabel.cs, LinkLabelLinkClickedEventHandler.cs: link label:
20239           check link overlapping, implement events, and fixes
20241 2004-07-21 10:28  jordi
20243         * DialogResult.cs, IButtonControl.cs: fixes comments filenames
20245 2004-07-21 10:19  jordi
20247         * DialogResult.cs, IButtonControl.cs, Label.cs, LinkArea.cs,
20248           LinkBehavior.cs, LinkClickedEventArgs.cs, LinkLabel.cs,
20249           LinkLabelLinkClickedEventArgs.cs,
20250           LinkLabelLinkClickedEventHandler.cs, LinkState.cs,
20251           XplatUIWin32.cs, LinkClickedEventHandler.cs: LinkLabel control
20252           implementation
20254 2004-07-19 13:09  jordi
20256         * Control.cs, Label.cs: label control re-written: added missing
20257           functionlity, events, and properties
20259 2004-07-19 10:49  jordi
20261         * Control.cs: fixes SetBounds logic
20263 2004-07-19 01:29  jordi
20265         * Control.cs: Call RefreshWindow only if the window has created
20267 2004-07-15 14:05  pbartok
20269         * ColorDepth.cs, ImageList.cs, ImageListStreamer.cs, SWF.csproj:
20270           - Implemented ImageList and ImageList.ImageCollection classes
20271           - Added ColorDepth enumeration
20272           - Updated SWF VS.Net project
20274 2004-07-15 11:06  jordi
20276         * XplatUIStructs.cs: added MsgButons enum
20278 2004-07-15 11:03  jordi
20280         * Control.cs: added basic mouse handeling events
20282 2004-07-15 03:38  jordi
20284         * Orientation.cs, TickStyle.cs, TrackBar.cs: Horizontal and
20285           Vertical TrackBar control implementation
20287 2004-07-13 09:33  jordi
20289         * HScrollBar.cs, VScrollBar.cs: vertical and hort. classes commit
20291 2004-07-13 09:31  jordi
20293         * Control.cs, Form.cs: commit: new properties and fixes form size
20294           problems
20296 2004-07-09 14:13  miguel
20298         * ProgressBar.cs: Spelling
20300 2004-07-09 11:25  pbartok
20302         * ProgressBar.cs:
20303           - Removed usage of Rectangle for drawing. Miguel pointed out it's
20304           faster
20306 2004-07-09 11:17  miguel
20308         * ProgressBar.cs: 2004-07-09  Miguel de Icaza  <miguel@ximian.com>
20310                 * ProgressBar.cs: Fixed spelling for `block'
20312                 drawProgressBar: renamed to `DrawProgressBar' to follow the coding
20313                 style guidelines.
20315                 Avoid using the += on rect.X, that exposed a bug in the compiler.
20317 2004-07-08 23:21  pbartok
20319         * AccessibleObject.cs, AccessibleRole.cs, AccessibleStates.cs,
20320           AnchorStyles.cs, Application.cs, ApplicationContext.cs,
20321           BaseCollection.cs, Binding.cs, BindingContext.cs,
20322           BindingMemberInfo.cs, BindingsCollection.cs,
20323           BindingsManagerBase.cs, Border3DSide.cs, Border3DStyle.cs,
20324           BorderStyle.cs, BoundsSpecified.cs, ButtonBorderStyle.cs,
20325           ButtonState.cs, CaptionButton.cs, CheckBox.cs,
20326           ContainerControl.cs, Control.cs, ControlEventArgs.cs,
20327           ControlEventHandler.cs, ControlPaint.cs, ControlStyles.cs,
20328           ConvertEventArgs.cs, ConvertEventHandler.cs, Copyright,
20329           CreateParams.cs, DockStyle.cs, DragAction.cs, DragDropEffects.cs,
20330           DragEventArgs.cs, DragEventHandler.cs, FlatStyle.cs, Form.cs,
20331           FrameStyle.cs, GiveFeedbackEventArgs.cs,
20332           GiveFeedbackEventHandler.cs, HelpEventArgs.cs,
20333           HelpEventHandler.cs, IContainerControl.cs, IDataObject.cs,
20334           IMessageFilter.cs, IWin32Window.cs, ImeMode.cs, InputLanguage.cs,
20335           InputLanguageChangedEventArgs.cs,
20336           InputLanguageChangedEventHandler.cs,
20337           InputLanguageChangingEventArgs.cs,
20338           InputLanguageChangingEventHandler.cs, InputLanguageCollection.cs,
20339           InvalidateEventArgs.cs, InvalidateEventHandler.cs,
20340           KeyEventArgs.cs, KeyEventHandler.cs, KeyPressEventArgs.cs,
20341           KeyPressEventHandler.cs, Keys.cs, Label.cs, LayoutEventArgs.cs,
20342           LayoutEventHandler.cs, MenuGlyph.cs, Message.cs, MouseButtons.cs,
20343           MouseEventArgs.cs, MouseEventHandler.cs, NativeWindow.cs,
20344           PaintEventArgs.cs, PaintEventHandler.cs, ProgressBar.cs,
20345           QueryAccessibilityHelpEventArgs.cs,
20346           QueryAccessibilityHelpEventHandler.cs,
20347           QueryContinueDragEventArgs.cs, QueryContinueDragEventHandler.cs,
20348           RightToLeft.cs, SWF.csproj, SWF.csproj.user, ScrollBar.cs,
20349           ScrollBars.cs, ScrollButton.cs, ScrollEventArgs.cs,
20350           ScrollEventHandler.cs, ScrollEventType.cs, ScrollableControl.cs,
20351           TODO, TODOAttribute.cs, UICues.cs, UICuesEventArgs.cs,
20352           UICuesEventHandler.cs, X11Structs.cs, XplatUI.cs,
20353           XplatUIDriver.cs, XplatUIStructs.cs, XplatUIWin32.cs,
20354           XplatUIX11.cs, lang.cs:
20355           - Initial check-in