* TextControl.cs: We need to invalidate the textbox when we
[mono-project.git] / mcs / class / Managed.Windows.Forms / System.Windows.Forms / ChangeLog
blob09e920f02a19778c25ac2561dc827a1e57ae5231
1 2006-12-08  Jackson Harper  <jackson@ximian.com>
3         * TextControl.cs: We need to invalidate the textbox when we empty
4         it (how had this not been discovered before?)
6 2006-12-08  Jackson Harper  <jackson@ximian.com>
8         * TextBoxBase.cs: Reworked the mouse down code so I could get it
9         to behave like MS, we now ignore the eventargs.Click and just
10         track state ourself, which we were already doing anyways.
11         - Constrain the double click handler to the double click size.
12         
13 2006-12-08  Chris Toshok  <toshok@ximian.com>
15         * DataGrid.cs: the mousewheel code shouldn't try to scroll in a
16         direction if that scrollbar isn't shown.  fixes bug #80158.
18 2006-12-08  Andreia Gaita  <avidigal@novell.com>
20         * NumericUpDown.cs: Update value on getter. Fixes #79950
22 2006-12-08  Chris Toshok  <toshok@ximian.com>
24         * MenuItem.cs: add back in the event cloning code.  I didn't know
25         how to do it in the face of the EventHandlerList work i'd done
26         last week.  Fixes bug #80183.
28 2006-12-08  Jonathan Pobst  <monkey@jpobst.com>
30         * Control.cs: Add an invalidate to the BackgroundImage setter.
31         [Fixes 80184]
33 2006-12-07  Jonathan Pobst  <monkey@jpobst.com>
35         * ToolStrip*: Add some small properties reported by MoMA, fix event
36         firing and default properties based off of unit tests, and add some
37         attributes based off of the class status page.
39 2006-12-07  Jackson Harper  <jackson@ximian.com>
41         * TextBoxBase.cs: Take HideSelection into account when determining
42         whether or not to show the selection.
43         * RichTextBox.cs: After inserting the RTF into the document move
44         the cursor to the beginning of the document.
46 2006-12-07  Jonathan Pobst  <monkey@jpobst.com>
48         * Control.cs: Remove static ArrayList "controls" which maintained
49         a reference to every control created.
50         * Application.cs: Create a static FormCollection to maintain a reference
51         to every form created.  Use it in places that formerly enumerated through
52         the controls one looking for forms.
53         * Form.cs: Add and remove self from above FormCollection.
55 2006-12-07  Alexander Olk  <alex.olk@googlemail.com>
57         * MimeIcon.cs: gdk_pixbuf_save_to_buffer is part of libgdk-pixbuf,
58           not libgdk (though it makes me wonder why I didn't have any
59           problems)
61 2006-12-07  Chris Toshok  <toshok@ximian.com>
63         [ you had to know this was coming after that last commit...]
64         
65         * XplatUIX11.cs: implement the 3 Offscreen functions in terms of
66         XPixmaps (CreateOffscreenDrawable maps to XCreatePixmap,
67         DestroyOffscreenDrawable to FreePixmap, and BlitFromOffscreen to
68         XCopyArea).
70 2006-12-07  Chris Toshok  <toshok@ximian.com>
72         * XplatUI.cs: add 3 calls (CreateOffscreenDrawable,
73         DestroyOffscreenDrawable, and BlitFromOffscreen) that encompass
74         all the behavior we need for double buffering.
76         * XplatUIDriver.cs: implement the 3 double buffer methods using a
77         client side Bitmap, just like the old Control-based double buffer
78         code did.  The methods are virtual, so each XplatUI driver
79         subclass can replace the implementation to use a faster, platform
80         specific approach.
82         * Control.cs: make use of the 3 Offscreen XplatUI calls in the
83         double buffer code, and clean things up a bit in the process.
85 2006-12-06  Chris Toshok  <toshok@ximian.com>
87         * Control.cs: reindent WndProc.
89 2006-12-06  Chris Toshok  <toshok@ximian.com>
91         [ I wanna be like BenM when I grow up ]
92         
93         * Hwnd.cs: create a single static Graphics object on the static
94         Bitmap we create.  use this for our text measurements.
96         * Control.cs (DeviceContext): stop using the backbuffer's dc_mem.
97         This was causing us to allocate a backbuffer for every control,
98         even when it wasn't flagged as double buffered.  Instead use the
99         single graphics instance.  This might have implications for
100         multithreaded applications.  If we run into problems we can switch
101         to creating 1 Graphics per control, on the static Hwnd bitmap.
103         this change nets us a 7M savings in private dirty mappings when
104         running FormsTest.exe.
106 2006-12-06  Chris Toshok  <toshok@ximian.com>
108         * ToolTip.cs: use Visible instead of is_visible.
110         * TreeView.cs: same.
112         * ListBox.cs: same.
114         * ListView.cs: same.
116 2006-12-06  Chris Toshok  <toshok@ximian.com>
118         * ListView.cs: the BackgroundImage override is just to set
119         attributes.  chain up to base.BackgroundImage.
121         * RichTextBox.cs: same.
123         * ToolBar.cs: same, but we need to also redraw the toolbar when it
124         changes, so instead a handler for BackgroundImageChanged.
125         
126         * Control.cs: make background_image private.
128 2006-12-06  Chris Toshok  <toshok@ximian.com>
130         * ScrollBar.cs: change the assignment of cursor to Cursor.  not
131         sure we even need this assignment, but roll with it for now.
133         * Control.cs: make the cursor field private.
135 2006-12-06  Chris Toshok  <toshok@ximian.com>
137         * Form.cs: we don't need to explicitly set ImeMode to
138         ImeMode.NoControl - that's a natural fallout of Control.ImeMode's
139         behavior in the face of ImeMode.Inherit.
141         * ButtonBase.cs: change DefaultImeMode to ImeMode.Disable, and
142         change the ctor's assignment to use ImeMode instead of ime_mode.
144         * Control.cs (get_ImeMode): don't assume DefaultImeMode ==
145         ImeModeInherit.  Only check for the parent's imemode (and return
146         NoControl if there is no parent) if ime_Mode == ImeMode.Inherit.
147         This fixes the button unit test, which sets both ImeMode and
148         DefaultImeMode to ImeMode.Disable.
150         also make the ime_mode field private.
152 2006-12-06  Chris Toshok  <toshok@ximian.com>
154         * Control.cs: make control_style private.
156         * TextBoxBase.cs: fix the HandleClick override.  it was explicitly
157         setting the styles to true, then setting them to false instead of
158         reverting to their previous values.
160         also, call SetStyle on the scrollbars instead of using
161         control_style directly.
163 2006-12-06  Jonathan Pobst  <monkey@jpobst.com>
165         * FormCollection.cs: Implement. [2.0]
167 2006-12-06  Chris Toshok  <toshok@ximian.com>
169         * Control.cs: make tab_stop private.
171         * Label.cs: set TabStop, not tab_stop.  reformat some event
172         add/remove methods to make them more compact.
174 2006-12-06  Chris Toshok  <toshok@ximian.com>
176         * RadioButton.cs: fix TabStop handling.
178 2006-12-06  Chris Toshok  <toshok@ximian.com>
180         * TextBox.cs: remove the explicit assignments to has_focus.
181         Control does that.
183         * ButtonBase.cs: remove the assignment to has_focus.  Control will
184         manage that.
185         
186 2006-12-06  Chris Toshok  <toshok@ximian.com>
188         * ButtonBase.cs: remove all uses of is_enabled from this code.
189         it's always true when any of the code containing the checks is
190         executed.
192 2006-12-06  Chris Toshok  <toshok@ximian.com>
194         * ImageList.cs: reinstate the ShouldSerialize*/Reset* methods,
195         with different semantics (some are present in both 1.1 and 2.0
196         profiles) so that we match MS's behavior in our unit tests.
198 2006-12-06  Jackson Harper  <jackson@ximian.com>
200         * TextControl.cs: Make this operation undoable.
201         * TextBoxBase.cs: Factor the border width into the preferred
202         height.
203         - implement Modified as per the spec.
205 2006-12-06  Chris Toshok  <toshok@ximian.com>
207         * Timer.cs, Control.cs, Menu.cs: make control_tag private.
209 2006-12-06  Chris Toshok  <toshok@ximian.com>
211         * Control.cs: make right_to_left and context_menu fields private.
213 2006-12-06  Chris Toshok  <toshok@ximian.com>
215         * AccessibleObject.cs, Control.cs, XplatUIX11GTK.cs,
216         XplatUIX11.cs, Form.cs, RadioButton.cs, ScrollableControl.cs: make
217         Control.child_controls private.  switch all uses over to
218         Control.Controls.
220 2006-12-06  Chris Toshok  <toshok@ximian.com>
222         * System.Windows.Forms/GroupBox.cs,
223         System.Windows.Forms/AccessibleObject.cs,
224         System.Windows.Forms/ErrorProvider.cs,
225         System.Windows.Forms/Control.cs,
226         System.Windows.Forms/UpDownBase.cs,
227         System.Windows.Forms/ScrollBar.cs,
228         System.Windows.Forms/DateTimePicker.cs,
229         System.Windows.Forms/Form.cs, System.Windows.Forms/Label.cs,
230         System.Windows.Forms/ToolTip.cs,
231         System.Windows.Forms/RadioButton.cs,
232         System.Windows.Forms/LinkLabel.cs,
233         System.Windows.Forms/Splitter.cs,
234         System.Windows.Forms/TextBoxBase.cs,
235         System.Windows.Forms/ToolStripTextBox.cs,
236         System.Windows.Forms/ContainerControl.cs,
237         System.Windows.Forms/ThemeWin32Classic.cs,
238         System.Windows.Forms/SizeGrip.cs,
239         System.Windows.Forms/ToolStripDropDown.cs,
240         System.Windows.Forms/ScrollableControl.cs: Make Control.parent
241         private.  switch all uses over to Control.Parent.
243 2006-12-06  Chris Toshok  <toshok@ximian.com>
245         * RichTextBox.cs: don't assign to has_focus in GotFocus/LostFocus.
246         Control does this before calling emitting these events.
248         * TabControl.cs: same.
250         * ThemeWin32Classic.cs: use Control.ClientRectangle instead of
251         Control.client_rect.
253         * ButtonBase.cs: use the ClientSize property instead of the
254         client_size field.
256         * ScrollableControl.cs: same.
258         * Control.cs: another pass at making properties private.  also,
259         move the initialization of tab_stop to the ctor.
261 2006-12-05  Andreia Gaita <avidigal@novell.com>
263         * TabControl.cs: Let the selected index be set freely if the 
264         control handle is not yet created.
266 2006-12-05  Jonathan Pobst  <monkey@jpobst.com>
268         * Control.cs: Revert dist_top, dist_right, and dist_bottom to 
269         internal until I can rewrite DefaultLayout.
270         * ToolStrip.cs: Fix build error and some general cleaning.
271         * ToolStripControlHost.cs, SplitterPanel.cs, DataGridView.cs:
272         Fix build errors caused by making some of Control's fields private.
274 2006-12-05  Jackson Harper  <jackson@ximian.com>
276         * TextControl.cs: Redo Insert a little so that it use IndexOf
277         instead of Split, this prevents it from messing up on things like
278         \n\n\n. Also more effecient since the split array doesn't need to
279         be created.
280         * TextBoxBase.cs: AppendText doesnt handle multiline and non
281         multiline text differently, this is the first of many fixes that
282         will make multiline/non-multiline the same thing as far as the
283         TextBoxBase is concerned.
284         - Don't split the text and insert lines, this can lose some line
285         endings (like is the last line a soft or hard break). Instead use
286         the new Insert.
287         - Fix an off by one when combining all the lines in the Text
288         getter.
289         - Remove separate multiline handling from the Text getter/setter.
291 2006-12-05  Chris Toshok  <toshok@ximian.com>
293         * ButtonBase.cs: a few changes:
295         - don't reinitialize internal Control fields in the ctor when they
296         have the same values as Control sets them.
298         - don't set has_focus in OnGotFocus/OnLostFocus.  Control does
299         this before calling those methods.
301         - we don't need to call Refresh for anything.  use Invalidate
302         instead.
304         - OnEnabledChanged doesn't need to redraw at all - Control.cs
305         calls Refresh in its OnEnabledChanged.
306         
307         - several of the events we were registered for in the ctor to
308         redraw ourselves already include calls to Invalidate in the
309         property setters that raise the events.  remove the extra
310         invalidation.
312         - reformat a switch statement that was 83274658 columns wide.
313         
314 2006-12-05  Mike Kestner  <mkestner@novell.com>
316         * ComboBox.cs: fix a unit test regression from a TextBox
317         SelectionLength return of -1 when there's no selection.  
319 2006-12-05  Chris Toshok  <toshok@ximian.com>
321         * Control.cs, Button.cs, ThemeGtk.cs, Form.cs, ListView.cs,
322         ThemeWin32Classic.cs, SizeGrip.cs, ToolBar.cs: first pass at
323         cleaning up some of the internal Control fields being used by
324         subclasses.
326 2006-12-05  Mike Kestner  <mkestner@novell.com>
328         * ComboBox.cs: fix some Simple mode regressions.  Set Visible on the
329         listbox after AddImplicit calls since it defaults to hidden. Add a 
330         hack to preserve requested heights across DropDownStyle changes.
332 2006-12-05  Jonathan Pobst  <monkey@jpobst.com>
334         * PropertyGrid.cs: Hide FindFirstItem method from public API.
336 2006-12-05  Chris Toshok  <toshok@ximian.com>
338         * DataGridView.cs: fix compiler warnings.
340         * PrintControllerWithStatusDialog.cs: same.
342         * ToolBar.cs: same.
344         * FolderBrowserDialog.cs: same.
346         * Splitter.cs: same.
348         * DataGridViewComboBoxCell.cs: same.
350         * XplatUIWin32.cs: same.
352         * PictureBox.cs: same.
354         * Win32DnD.cs: same.
356         * PageSetupDialog.cs: same.
358         * FileDialog.cs: same.
360         * PrintDialog.cs: same.
362         * DataGridTextBoxColumn.cs: same.
364         * DrawTreeNodeEventArgs.cs: same (and fix corcompare)
366 2006-12-05  Chris Toshok  <toshok@ximian.com>
368         * TextBox.cs, CheckedListBox.cs, MonthCalendar.cs, Menu.cs,
369         MainMenu.cs, ListView.cs, LabelEditTextBox.cs, ToolBar.cs: more
370         System.ComponentModel.EventHandlerList work.
372 2006-12-05  Jonathan Chambers  <joncham@gmail.com>
374         * DrawTreeNodeEventArgs.cs: Added.
376 2006-12-05  Rolf Bjarne Kvinge  <RKvinge@novell.com>
377         
378         * InternalWindowManager.cs: Remove an unused field.
379         
380 2006-12-05  Rolf Bjarne Kvinge  <RKvinge@novell.com>
382         * InternalWindowManager.cs:
383         - Save the point where the title bar is clicked.
384         
385         * MdiWindowManager.cs:
386         - Only allow moving of the window as long as the 
387         clicked point on the title bar does not get out of
388         MdiClient's rectangle. Fixes #79982.
389         
390         * MdiClient.cs:
391         - Added Horizontal/VerticalScrollbarVisible.
392         - Simplified the scrollbar sizing algorithm.
393         - Cache the difference in scrolled value in
394         H/VBarValueChanged and move the calculation out
395         of the for loop.
397 2006-12-05  Rolf Bjarne Kvinge  <RKvinge@novell.com>
399         * Control.cs: Make the Console.WriteLine in WndProc 
400         write more info.
402 2006-12-05  Chris Toshok  <toshok@ximian.com>
404         * ToolStripManager.cs, ToolStripButton.cs,
405         ToolStripContentPanel.cs, ToolStripComboBox.cs, ToolStrip.cs,
406         ToolStripMenuItem.cs, ToolStripItem.cs, ToolStripControlHost.cs,
407         ToolStripSplitButton.cs, ToolStripSeparator.cs,
408         ToolStripRenderer.cs, ToolStripDropDownItem.cs,
409         ToolStripProgressBar.cs, ToolStripContainer.cs,
410         ToolStripTextBox.cs, ToolStripPanel.cs, ToolStripDropDown.cs: move
411         to using System.ComponentModel.EventHandlerList.
413 2006-12-04  Chris Toshok  <toshok@ximian.com>
415         * LinkLabel.cs: fix up compiler warnings.
417         * TableLayoutSettings.cs: same.
419         * TreeView.cs: same.
421         * ToolBar.cs: same.
423         * TabControl.cs: same.
425         * RichTextBox.cs: same.
427         * ListViewItem.cs: same.
429         * PropertyGrid.cs: same.
431         * DataGridViewRowPostPaintEventArgs.cs: corcompare fix.
433         * ToolTip.cs same.
435         * TextRenderer.cs: fix up compiler warnings.
437         * Label.cs: same.
439         * Form.cs: corcompare fixes.
441         * PictureBox.cs: fix up compiler warnings.
443         * ImageListStreamer.cs: same.
445         * TrackBar.cs: corcompare fix.
447         * Control.cs: fix up compiler warnings.
449         * SplitterPanel.cs: same.
451         * NumericTextBox.cs: same.
453         * ImageList.cs: same.
455         * StatusStrip.cs: same.
457         * ProgressBar.cs: corcompare fix.
459         * ToolStripButton.cs: fix up compiler warnings.
461         * ToolStripStatusLabel.cs: same.
463         * ToolStripSplitButton.cs: same.
465         * ToolStripSeparator.cs: same.
467         * ToolStripProgressBar.cs: same.
469         * ToolStripDropDownMenu.cs: same
471         * ToolStripDropDown.cs: same.
473         * ToolStripDropDownButton.cs: same.
475         * ToolStrip.cs: same.
477         * ToolStripControlHost.cs: same.
479         * ToolStripContentPanel.cs: same.
481         * ToolStripDropDown.cs: same.
483         * ToolStripContainer.cs: same.
485         * ToolStripPanel.cs: same, and add "new" where we need it to work
486         with the new ArrangedElementCollection.
488         * ToolStripItemCollection.cs: add "new" where we need it to work
489         with the new ArrangedElementCollection.
491 2006-12-04  Andreia Gaita <avidigal@novell.com>
493         * TabControl.cs: Fix default tab selection to after TabControl
494         gets focus and not before. Fixes #80128
496 2006-12-04  Chris Toshok  <toshok@ximian.com>
498         * DataGridTableStyle.cs: remove the gross calling of
499         datagrid.Refresh from here.  It's a broken idea and it doesn't
500         work anyway.
502         * DataGrid.cs: instead, just register/unregister from the
503         DataGridTableStyle events in CurrentTableStyle.  we play it
504         conservatively and EndEdit + CalcAreasAndInvalidate on any event,
505         even though some would most likely not require it.  Fixes bug
506         #80115 (and one portion of #80117 as a side effect).
508 2006-12-04  Chris Toshok  <toshok@ximian.com>
510         * DataGrid.cs (set_CaptionVisible): EndEdit before doing the work
511         so the textbox (if any) goes away.  Fixes bug #80117.
513 2006-12-04  Chris Toshok  <toshok@ximian.com>
515         * DataGridColumnStyle.cs: set the column's readonly property
516         initially based on the property descriptor's IsReadOnly.  Fixes
517         bug #80044.
519 2006-12-04  Chris Toshok  <toshok@ximian.com>
521         * ComboBox.cs: wrap the dropdown style changing work in
522         SuspendLayout/ResumeLayout.  Fixes bug #79968.
524 2006-12-04  Jackson Harper  <jackson@ximian.com>
526         * TextBoxBase.cs: Fix off by one, since these are one-based.
527         * TextBox.cs: Select all the text when we get focus.  The TextBox
528         does this but the RTB does not.
530 2006-12-04  Chris Toshok  <toshok@ximian.com>
532         * DataGridTextBoxColumn.cs: remove some spew.
534         * DataGridColumnStyle.cs (SetColumnValueAtRow): this seems right
535         but some part of me is saying "it shouldn't be here.."  At any
536         rate, it fixes bug #80046.  Call IEditableObject.EndEdit after
537         setting the value.
539 2006-12-04  Chris Toshok  <toshok@ximian.com>
541         * DataGridColumnStyle.cs (SetDataGrid): call CheckValidDataSource
542         to reassign the propertydescriptor.
544 2006-12-04  Jackson Harper  <jackson@ximian.com>
546         * TextBoxBase.cs:
547         * TextControl.cs: Remove some unused variables.  Maybe this will
548         patch things up between mike and I.
549         - don't split lines less then one char wide, if the viewport is
550         that small text won't be visible anyways.
551         
552 2006-12-04  Jackson Harper  <jackson@ximian.com>
554         * TextBoxBase.cs: Default selection length is -1, need to do some
555         more testing on windows to see when this is used for the property.
556         - Redid the Lines [] property to that we properly remove soft line
557         breaks
558         - added support for preserving carriage returns
559         -  CanUndo is not a variable like 'is undo enabled' it just returns
560         true if there is undo operations available.
561         - AppendText doesn't need to grab the last tag itself anymore,
562         this happens automatically when we move the cursor.
563         * TextControl.cs: Add CompoundActions to the undo class. This
564         allows combining the other operations into one big option.  ie a
565         paste will combine { delete old, insert new, move cursor }
566         - Add InsertString undo operation
567         - New method for deleting multiline text
568         - Add carriage returns to lines. So we can preserve carriage
569         returns when text is 'roundtripped'
571 2006-12-04  Chris Toshok  <toshok@ximian.com>
573         * DataGrid.cs (CalcCellsArea): cells_area.Width/Height are at a
574         minimum 0.  Fixes the scrollbar exception in bug #80136.
576 2006-12-04  Rolf Bjarne Kvinge  <RKvinge@novell.com>
578         * MdiClient.cs: 
579         * MdiWindowManager: Removed unused fields and methods.
580         
581 2006-12-04  Rolf Bjarne Kvinge  <RKvinge@novell.com>
582         
583         * StatusBar.cs: Update all panels when a AutoSize=Contents
584         panel needs updating.
585         
586         * StatusBarPanel.cs: Remove twidth and only use initialize.
587         Fixes #80031.
588                 
589 2006-12-04  Rolf Bjarne Kvinge  <RKvinge@novell.com>
591         * Form.cs: When a form's MdiParent is set add it directly
592         on top of the z-order in stead of relying on MdiClient's
593         ActivateChild to do it. Fixes #80135.
594         
595         * MdiClient.cs: 
596         - Remove original_order, mdi_child_list is already doing
597         the same thing.
598         - Create mdi_child_list on construction in
599         stead of first use (avoids a few null checks).
601         * MenuItem.cs: Use an already existing list of mdi children
602         to get the correct order of children and remove the other
603         redundant list.
605 2006-12-04  Chris Toshok  <toshok@ximian.com>
607         * PropertyGridView.cs: cached_splitter_location is only used in
608         !DOUBLEBUFFER code.
610         * PropertyGrid.cs: implement the ComComponentNameChanged event
611         using Events, hoping that would fix the warning.  Looks like a
612         compiler bug instead (#80144).
614         * PropertyManager.cs: remove unused method.
616 2006-11-04  Everaldo Canuto  <everaldo@simios.org>
618         * ThemeWin32Classic.cs: Dont draw arrow when menuitem on menubar, 
619         include parentesis to fix expression evaluation. Fixes #79634.
621 2006-11-02  Everaldo Canuto  <everaldo@simios.org>
622         
623         * MenuAPI.cs:
624         - Changes to fix behavior in Menu control, some reported in #80097
625         and other detected during behavior refactory like a select event
626         problems.
627         - Remove unneded "if's" conditions.
628         - Created an internal to flag when popup is active in control, we need 
629         it because in .NET you can have menu active but without popup active
630         when you active menu using popup without visible items.
631         - Mimic win32 behavior for Select and Popup events.  
632         - Dont open popup menu when you dont have visible subitems.
633         - Do nothing when click on disabled menu item.
634         - Some small changes to follow the coding style guidelines.
635         - Unselect menu only when another control gives focus. Fixes #80097.
636         - Remove unused code.
637         
638         * MenuItem.cs: internal VisibleItems method to check if menu
639         theres visible subitems, it will be usefull to fix some 
640         behavior in Menu control.
641         
642 2006-11-01  Everaldo Canuto  <everaldo@simios.org>
643         
644         * Timer.cs: Tag property for 2.0 profile.
645         
646 2006-12-01  Chris Toshok  <toshok@ximian.com>
648         [ after removing all warning suppressions, this cleans up over 100 warnings. ]
649         
650         * Win32DnD.cs: comment out some unused fields.
652         * XplatUIWin32.cs: comment out some unused pinvokes, and remove
653         some unused properties/methods.
655         * XplatUIX11.cs: fix MousePosition so we override the base class's
656         property instead of conflicting with it.
658         * PictureBox.cs: comment out some unused fields
660         * OSXStructs.cs: make some struct fields public.
662         * XplatUIOSX.cs: comment out some unused pinvokes, and fix
663         MousePosition so we override the base class's property instead of
664         conflicting with it.
666         * X11Dnd.cs: comment out some unused fields
668         * X11DesktopColors.cs: fix some struct field visibility to quiet
669         the compiler.
671         * X11Dnd.cs: remove some debug code.
673         * ThemeClearlooks.cs: comment out unused field.
675         * ThemeNice.cs: mark some methods as overriding ThemeWin32Classic as needed.
677         * ThemeGtk.cs: comment out some unused pinvokes.
679         * Timer.cs: remove some unused fields.
681         * ThemeClearlooks.cs: comment out unused field.
683         * UpDownBase.cs: comment out unused field.
685         * DataObject.cs: comment out unused field.
687         * DataGridBoolColumn.cs: reomve unused field.
689         * DataGrid.cs: remove unused field.
691         * Cursor.cs: remove old ToBitmap code.
693         * ControlPaint.cs: remove unused method.
695         * ScrollBar.cs: remove unused fields.
697         * ComboBox.cs: remove unused field, and chain up to
698         AccessibleObject ctor.
700         * ListBox.cs: remove unused field.
702         * ButtonBase.cs: wrap a couple fields in NET_2_0.
704         * GridEntry.cs: remove unused fields.
706         * Binding.cs: remove unused fields.
708         * AxHost.cs: remove unused method.
710         * ContainerControl.cs: remove unused field.
712         * ScrollableControl.cs: remove unused fields.
714 2006-12-01  Chris Toshok  <toshok@ximian.com>
716         * XplatUI.cs, XplatUIWin32.cs, XplatUIGTK.cs: nuke
717         the Where/WhereString stuff.  it's easy enough to CWL
718         Environment.StackTrace.
720         * XplatUIX11.cs: same, but also fix up a lot of mcs warnings about
721         unused private fields.
723 2006-12-01  Jackson Harper  <jackson@ximian.com>
725         * TextControl.cs: Do not update the view while inserting multiline
726         text. If we update the view we might wrap lines, before entering
727         the new lines, which causes the new line insertion calculations to
728         be totally fubared.
729         - Remove an old TODO
730         - Make debug output a little nicer
731         
732 2006-12-01  Chris Toshok  <toshok@ximian.com>
734         * ToolBar.cs: revert the ImeMode fix here and add an XXX comment.
736 2006-12-01  Chris Toshok  <toshok@ximian.com>
738         [ fix the majority of the CS0108 warnings we've been suppressing ]
739         
740         * TreeView.cs: mark BackgroundImageChanged as 'new'.
742         * ToolBar.cs: ImeMode just passes stuff to Control.  Rename Layout
743         to "LayoutToolBar" to quiet mcs.
744         
745         * TabControl.cs: mark our ControlCollection class as 'new'.
747         * TextBoxBase.cs: mark some events as 'new'.
749         * Splitter.cs: TabStop is 'new'.
751         * ControlBindingsCollection.cs: mark a few methods as new since
752         they change the visibility from protected to public.
754         * RadioButton.cs: DoubleClick -> base class, and remove unused
755         HaveDoubleClick.
757         * MonthCalendar.cs: ImeMode property -> base class, and mark many
758         events as new.
760         * NumericUpDown.cs: TextChanged -> base class.
762         * CheckedListBox.cs: mark our ObjectCollection class as new to
763         quiet mcs.
765         * FolderBrowserDialog.cs: make HelpRequest event new and have it
766         muck with the base class.
768         * StatusBar.cs: fix some mcs warnings about Update being the same
769         name as a base class method.
771         * RichTextBox.cs: mark some events as new, and make them do things
772         to the base class impl.
774         * UserControl.cs: mark TextChanged as new, and have it manipulate
775         base.TextChanged.
777         * UpDownBase.cs: mark some things new.
779         * CheckBox.cs: mark DoubleClick "new", and add some text about
780         what we need to look at.
782         * Panel.cs: make the events "new", and manipulate the base
783         version.  these are just here for attributes.
785         * AccessibleObject.cs: make owner private.
787         * Control.cs: deal with AccessibleObject.owner being private.
788         cache our own copy if we need it.
790         * Button.cs: add "new" to the DoubleClickEvent.
792         * ListBox.cs: no need to track our own has_focus here.  let
793         Control.has_focus do it for us.  Also some other work to clear up
794         warnings about not overriding base class methods of the same name.
795         
796         * ComboBox.cs: clear up some warnings about not override base
797         class methods of the same name.
799 2006-12-01  Chris Toshok  <toshok@ximian.com>
801         * Form.cs: flag a few things as "new" to quiet some of the mcs
802         warnings.
804         * AxHost.cs: same.
806         * PrintPreviewDialog.cs: same.
808         * DataGridView.cs: fix a ton of corcompare warnings.  not all, but
809         now DGV isn't so horrible on the class status page.  also, move
810         all events to using System.ComponentModel.EventHandlerList.  my
811         wrists hurt.
813 2006-12-01  Rolf Bjarne Kvinge  <RKvinge@novell.com>
815         * MdiWindowManager.cs:
816         - Set form to active mdi child if shown,
817         and update the active mdi child to the next 
818         remaining child in the z-order if the form is hidden.
820         * Form.cs: 
821         - Track if the form has been visible and if its 
822         visibility is beeing changed, so that the MdiClient
823         can properly decide the ActiveMdiChild. The MdiClient 
824         cannot track this since the form can change visibility 
825         before MdiClient is created.
827         * MdiClient.cs:
828         - Don't activate anything of the parent form is changing
829         its visibility.
830         - Rework ActiveMdiChild to only return visible mdi 
831         children and take into account several other corner 
832         cases.
834 2006-12-01  Chris Toshok  <toshok@ximian.com>
836         * IBindableComponent.cs: new 2.0 interface.
838 2006-12-01  Gert Driesen  <drieseng@users.sourceforge.net>
840         * DataGrid.cs: Font for caption area is bold by default.
842 2006-12-01  Everaldo Canuto  <everaldo@simios.org>
844         * Menu.cs: Tag property for 2.0.
845         
846 2006-11-01  Everaldo Canuto  <everaldo@simios.org>
848         * ThemeWin32Classic.cs: Adjust menu separator drawing. 
849         
850 2006-12-01  Chris Toshok  <toshok@ximian.com>
852         * TreeView.cs: doh, the Begin* events should be
853         TreeViewCancelEventHandler.
855 2006-12-01  Chris Toshok  <toshok@ximian.com>
857         * Form.cs: Form.ControlCollection already stores off the
858         form_owner field.  don't access the base class's internal "owner"
859         field.
861         * Control.cs: make all the fields in Control.ControlCollection
862         private.  there's no need for any internal fields here.
864 2006-12-01  Chris Toshok  <toshok@ximian.com>
866         * DataGrid.cs: call SetDataSource instead of CalcGridAreas in
867         OnHandleCreated.  Fixes bug #80109.
869 2006-12-01  Chris Toshok  <toshok@ximian.com>
871         * Button.cs, PropertyGridTextBox.cs, ComboBox.cs,
872         SplitContainer.cs, Control.cs, StatusStrip.cs,
873         DataGridTableStyle.cs, MenuItem.cs, DomainUpDown.cs, ImageList.cs,
874         NumericTextBox.cs, NumericUpDown.cs, Panel.cs, CommonDialog.cs,
875         DataGrid.cs, ScrollBar.cs, TrackBar.cs, PictureBox.cs,
876         DateTimePicker.cs, StatusBar.cs, Form.cs, PrintPreviewDialog.cs,
877         Label.cs, UserControl.cs, CheckBox.cs, RadioButton.cs,
878         LinkLabel.cs, ListControl.cs, PropertyGrid.cs, Splitter.cs,
879         MenuStrip.cs, FolderBrowserDialog.cs, NotifyIcon.cs,
880         TextBoxBase.cs, ListView.cs, DataGridBoolColumn.cs,
881         PrintPreviewControl.cs, RichTextBox.cs, ListBox.cs, TabControl.cs,
882         DataGridColumnStyle.cs, ContextMenu.cs, TreeView.cs:
884         do most of the work to convert our code over to use
885         System.ComponentModel.Component.Events for
886         adding/removing/dispatching events.
889 2006-11-30  Jonathan Pobst  <monkey@jpobst.com>
891         * DataGridView.cs: Fix an ArgumentNullException reported 
892         twice today in IRC.
894 2006-11-30  Mike Kestner  <mkestner@novell.com>
896         * ComboBox.cs: fix the scrollbar mouse event forwarding in the 
897         grabbed listbox.  Fixes #80036 and #80101.
899 2006-11-30  Rolf Bjarne Kvinge <RKvinge@novell.com>
901         * Message.cs: Changed ToString() to match MS.
902         
903 2006-11-30  Jackson Harper  <jackson@ximian.com>
905         * TextBoxBase.cs: You can still change the selected text on a read
906         only textbox.
907         * TextControl.cs: Lower magic number for wrap calculations. This
908         lets text get closer to the right (far) edge.
910 2006-11-30  Jonathan Pobst  <monkey@jpobst.com>
912         * Control.cs: Tweak 2.0 layout properties.
913         * Form.cs: Switch ToolStripMenuTracker hooks to ToolStripManager.
914         * TextRenderer.cs: Add a new overload.
915         * ToolStrip*: Huge amount of changes and new features.
917 2006-11-30  Mike Kestner  <mkestner@novell.com>
919         * ComboBox.cs: fixes for LargeChange and Maximum to get the 
920         scroll range correct.  Fixes #79994.
922 2006-11-30  Rolf Bjarne Kvinge <RKvinge@novell.com>
924         * MdiWindowManager.cs: Update main form's text when
925         a form is closed. (fixes #80038)
926         
927 2006-11-30  Everaldo Canuto  <everaldo@simios.org>
929         * ToolBar.cs:
930         - Fix an regression in ButtonSize.
931         - Get ImeMode default value change to "Disable".
932         - Get ShowTooltips default value change to true, default value is 
933         "false" but after make a test in .NET we get "true" result as default.
934         
935 2006-11-29  Jonathan Pobst  <monkey@jpobst.com>
937         * ToolStripDropDown.cs: Fix for SupportsTransparency change.
939 2006-11-29  Chris Toshok  <toshok@ximian.com>
941         * XplatUIWin32.cs (GetWindowTransparency): check return value of
942         GetLayeredWindowAttributes.  if it's 0, return 1.0, as
943         SetWindowTransparency hasn't been called.
945 2006-11-29  Chris Toshok  <toshok@ximian.com>
947         * Form.cs (set_TransparencyKey): only call SetWindowTransparency
948         if it's supported.
949         (set_AllowTransparency): reorder things a little so that the
950         WS_EX_LAYERED style is removed properly.
952 2006-11-29  Chris Toshok  <toshok@ximian.com>
954         [ totally cosmetic eye-candy feature, fixes bug #80089 ]
955         
956         * Form.cs: only call the XplatUI transparency method (get/set) if
957         SupportsTransparency says it's supported. Otherwise fallback to
958         doing nothing (in the set case) or returning the instance field we
959         cache (in the get case).
961         * XplatUIStructs.cs: add TransparencySupport flag enum.
962         
963         * XplatUIDriver.cs: add abstract GetWindowTransparency, and track
964         change to SupportsTransparency.
966         * XplatUIOSX.cs: stub out GetWindowTransparency, and return
967         TransparencySupport.None from SupportsTransparency.
969         * XplatUIX11.cs: Stub out GetWindowTransparency, and return
970         TransparencySupport.Set from SupportsTransparency.
972         * XplatUIWin32.cs: implement GetWindowTransparency calling
973         GetLayeredWindowAttributes, and implement SupportsTransparency by
974         checking whether or not both
975         GetWindowTransparency/SetWindowTransparency are available
976         entrypoints.  We need to do this since SetWindowTransparency is
977         available as of win2k, but GetWindowTransparency requires winxp.
978         yay win32 api.
980         * XplatUI.cs: Add GetWindowTransparency, and change
981         SupportsTransparency to allow for either/both Get/Set.
983 2006-11-29  Chris Toshok  <toshok@ximian.com>
985         * DataGrid.cs: keep from going into an infinite loop redrawing a
986         datagrid that has no datasource.  Fixes bug #80033.
988 2006-11-29  Chris Toshok  <toshok@ximian.com>
990         * MenuItem.cs: fix the NRE when we assign text (and therefore call
991         Invalidate) before the mainmenu has been assigned to a control.
993 2006-11-29  Chris Toshok  <toshok@ximian.com>
995         * DataGrid.cs: detect when we should be double the double click
996         row/column autosize stuff, although that codepath has yet to be
997         written.  part of the work for bug #79891.
999 2006-11-29  Chris Toshok  <toshok@ximian.com>
1001         * Binding.cs (SetControl): fix unit test.
1003 2006-11-29  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1005         * PageSetupDialog.cs: Validate the margins and set them in
1006         PageSettings. 
1007         * NumericTextBox.cs: New class to mimic the behavior of the
1008         textboxes used in the printing dialogs.
1010 2006-11-29  Andreia Gaita  <avidigal@novell.com>
1011         
1012         * Form.cs: Revert previous change (remove call UpdateBounds
1013         from form constructor), because it messes with the handle creation
1014         order, and that one needs lots and lots of love.
1015         * PrintPreviewDialog.cs: Revert change to CreateHandle (add check
1016         for valid printer and throw InvalidPrinterException if document
1017         is set but printer not valid), adding a MonoTODO. Once 
1018         handle creation is done properly, we can put this back in.
1020 2006-11-28  Everaldo Canuto  <everaldo@simios.org>
1022         * MenuItem.cs: Create a invalidate method for menu item, to be
1023         calling from set text, it make text changes to imadiate update
1024         on screen. Fixes #80013. 
1025         
1026 2006-11-28  Everaldo Canuto  <everaldo@simios.org>
1028         * ToolBar.cs: Fixes and simplify toolbar button layout, it 
1029         fixes bug #80070 and some other problem on toolbar buttons
1030         layout.
1032 2006-11-28  Everaldo Canuto  <everaldo@simios.org>
1034         * ThemeWin32Classic.cs: Paint toolbar toggle button background 
1035         with dotted brush.      Fixes #79564
1036         
1037 2006-11-28  Andreia Gaita  <avidigal@novell.com>
1039         * Form.cs: Removed call to UpdateBounds on Form
1040         constructor, it was causing a call to CreateHandle
1041         before it was supposed to.
1042         * PrintControllerWithStatusDialog: Applied patch
1043         by Chris Toshok to hide controller when there are
1044         no printers available.
1045         PrintDialog.cs: initialize printer settings to 
1046         null - correct DefaultValues test #5
1047         * PrintPreviewControl.cs: Move PrintController
1048         initialization to GeneratePreview
1049         * PrintPreviewDialog.cs: 
1050         - Remove Preview generation     from Document_set(). It is 
1051         called on OnPaint
1052         - Throw InvalidPrinterException on CreateHandle if
1053         a Document is set but there are no printers or 
1054         printer is not valid.
1055         * ThemeWin32Classic: don't paint PrintPreviewControl
1056         if there is nothing to paint    
1058 2006-11-28  Miguel de Icaza  <miguel@novell.com>
1060         * Form.cs: Add another popular method.
1062         * TabPage.cs: ditto.
1064 2006-11-28  Rolf Bjarne Kvinge  <RKvinge@novell.com>
1066         * MenuItem.cs: Fixed a warning.
1067         * InternalWindowManager: Fixed a warning.
1069 2006-11-28  Rolf Bjarne Kvinge  <RKvinge@novell.com>
1071         * MenuItem.cs:
1072         - When cloning a menu also clone MdiList and clone the 
1073           window menu items properly (as the forms and menuitems
1074           are kept in an internal hashtable, these need updating 
1075           as well)
1076         - Rewrote the window menu code, menu items are added in the
1077           order the forms were added to their parent, and they are
1078           updated every time the window menu is shown (before the
1079           list was only generated once, in the current order of the
1080           forms, and would never be updated). A checkmark is shown
1081           next to the item corresponding to the active mdi child.
1083 2006-11-28  Rolf Bjarne Kvinge  <RKvinge@novell.com>
1085         * XplatUIStructs.cs: 
1086         - Added WM_NCMOUSEHOVER and WM_NCMOUSELEAVE.
1087         
1088         * XplatUIWin32.cs: 
1089         - Added TME_NONCLIENT to TMEFlags.
1090         - Handles WM_NCMOUSEMOVE in GetMessage to 
1091           generate WM_NCMOUSEHOVER and WM_NCMOUSELEAVE messages.
1093         * MdiWindowManager:
1094         - Now merges mdi child menu to parent menu when maximized.
1095         - Recalculate NC areas of both mdi child and mdi parent. 
1096           Fixes #79757 (4).
1097           on window state and size changes.Fixes #79844 (3).
1098         - Handle WM_NCCALCSIZE to properly calculate borders.
1100         * Form.cs:
1101         - Add/remove to the mdi containers list of mdi children 
1102           in the order they are added.
1103         - Pass on WM_NCLBUTTONUP, WM_NCMOUSEMOVE and WM_NCMOUSELEAVE 
1104           to the maximized mdi child.
1105         
1106         * InternalWindowManager.cs:
1107         - Only execute a click on the control buttons on the mouse up,
1108           not on the mouse down. Show the state of the button 
1109           (was only showing Normal state, never Pressed state). The
1110           pressed button now follows the mouse (if you click the Close 
1111           button and move the mouse over the Maximize button, the 
1112           Maximize button will be shown as pressed). Since Win32 does
1113           not generate WM_NCLBUTTONUP if you release the button outside
1114           of the nc area, we need to handle WM_NCMOUSELEAVE and treat
1115           it as a mouse up.
1116         
1117         * ThemeWin32Classic.cs:
1118         - Draw a missing border around mdi child forms. Fixes #79844 (2).
1120         * MdiClient.cs:
1121         - Added a list of forms which contains the order the forms are
1122           added to the mdi parent.
1123         - Handle WM_NCPAINT to properly draw a 3D border. Fixes #79844 (2).
1124         - Handle WM_NCCALCSIZE to properly calculate the 3D border.
1125         - If the active form changes set the scrollbars to the top
1126           of the Z order, otherwise the form could hide them.
1127         - Scrollbars are now sized according to ClientSize, not 
1128           to Size, and they take into account the other scrollbar
1129           to determine maximum.
1130         
1131 2006-11-28  Rolf Bjarne Kvinge <RKvinge@novell.com>
1132         
1133         * XplatUI.cs:
1134         * XplatUIDriver.cs:
1135         * XplatUIX11.cs:
1136         * XplatUIWin32.cs:
1137         * XplatUIOSX.cs:
1138         - Added RequestAdditionalWM_NCMessages for windows to 
1139           opt in for WM_NCMOUSELEAVE and WM_NCMOUSEHOVER.
1140           Currently only implemented in XplatUIWin32.
1142 2006-11-27  Chris Toshok  <toshok@ximian.com>
1144         * Hwnd.cs: only add the hwnd to the windows hash in
1145         set_WholeWindow and set_ClientWindow if whole_window/client_window
1146         are not IntPtr.Zero.  also, remove the unused SetObjectWindow.
1148 2006-11-27  Mike Kestner  <mkestner@novell.com>
1150         * ComboBox.cs: remove redundant OnDropDown call.  It is called
1151         from the ComboListBox.ShowWindow code. Fixes #79969.
1153 2006-11-27  Chris Toshok  <toshok@ximian.com>
1155         * Hwnd.cs: remove the setters for ExposePending and
1156         NCExposePending - noone uses them.
1158 2006-11-27  Jackson Harper  <jackson@ximian.com>
1160         * TextControl.cs: new param for ReplaceSelection which determines
1161         whether we select the new selection, or set the cursor to the end
1162         of the new selection.
1163         * TextBoxBase.cs: Use new param for ReplaceSelection.  When
1164         pasting, select the new text.
1165         * RichTextBox.cs: Use new param for ReplaceSelection.
1167 2006-11-27  Jackson Harper  <jackson@ximian.com>
1169         * TextBoxBase.cs: Set the selection to the caret after the caret
1170         is moved, otherwise they get out of sync.
1172 2006-11-26  Everaldo Canuto  <everaldo@simios.org>
1174         * ToolBar.cs: Fixe size of ToolBar when AutoSize is false,
1175         it fixes #80015
1177 2006-11-26  Everaldo Canuto  <everaldo@simios.org>
1179         * ThemeWin32Classic.cs: 
1180         - Fix toolbar drop down arrow position.
1181         - Fix drop down appearance when ToolBar.Appearance is normal,
1182         it fixes #80018.
1183         
1184 2006-11-26  Gert Driesen  <drieseng@users.sourceforge.net>
1186         * ProgressBar.cs: GetStyle fixes for 2.0 profile.
1187         * Control.cs: Same.
1188         * UpDownBase.cs: Same.
1189         * ButtonBase.cs: Same.
1190         * ScrollBar.cs: Same.
1191         * TrackBar.cs: Same.
1192         * PictureBox.cs: Same.
1193         * UserControl.cs: Same.
1194         * Label.cs: Same.
1195         * ListControl.cs: Same.
1196         * TextBoxBase.cs: Same.
1197         * ListView.cs: Same.
1198         * RichTextBox.cs: Same.
1199         * TreeView.cs: Same.
1201 2006-11-25  Jordi Mas i Hernandez <jordimash@gmail.com>
1203         * PrintDialog.cs:
1204         - Text label for where 
1205         - Text label comment was not shown
1207 2006-11-23  Everaldo Canuto  <everaldo@simios.org>
1209         * ThemeWin32Classic.cs: Fix toolbar drop down arrow size.
1211 2006-11-23  Rolf Bjarne Kvinge  <RKvinge@novell.com> 
1213         * InternalWindowManager.cs: 
1214         - Handle WM_PARENTNOTIFY to activate the form
1215         if any child control is clicked.
1216         - The form is only sizable if not minimized.
1218         * MdiWindowManager.cs:
1219         - Save the IconicBounds if the form is moved.
1220         - Rework SetWindowState, now the window bounds 
1221         are stored only if the old window state is Normal.
1222         
1223         * MdiClient.cs:
1224         - In SetWindowStates store the old window state if 
1225         the window is maximized and restore window state if
1226         the window looses focus.
1227         - Don't handle any scrollbar value changes if 
1228         initializing the scroll bars. Fixes #79771.
1229         - Reworked ArrangeIconicWindows. Current algorithm
1230         tests bounds agains all other minimized windows, if
1231         any intersections create new bounds (going left to 
1232         right, bottom to top) and then test again. When 
1233         successful the bounds are saved and never computed
1234         again. Fixes #79774.
1236 2006-11-23  Rolf Bjarne Kvinge  <RKvinge@novell.com> 
1238         * InternalWindowManager.cs: Added HandleTitleBarUp.
1240 2006-11-23  Gert Driesen  <drieseng@users.sourceforge.net>
1242         * NumericUpDown.cs: In .NET 1.1, user entered text is still
1243         hexadecimal in ParseUserEdit.
1245         
1246 2006-11-23  Rolf Bjarne Kvinge  <RKvinge@novell.com> 
1248         * MdiWindowManager.cs: 
1249         - Handle a click on the form's icon to show the 
1250         system menu (when maximized). Fixes #79775.
1251         - Change the existing click handler for the form's
1252         icon when not maximized to show on MouseUp.
1253         Fixes #79776.
1255         * Form.cs: In OnResize only layout the mdi child's
1256         parent if it actually has a parent. Might not if
1257         the window is closing.
1260 2006-11-23  Gert Driesen  <drieseng@users.sourceforge.net>
1262         * MdiClient.cs: Ignore active MDI client for text of parent, if
1263         child has no text set.
1265 2006-11-23  Gert Driesen  <drieseng@users.sourceforge.net>
1267         * ToolBar.cs: Fixed ToString to match MS.
1269 2006-11-22  Andreia Gaita  <avidigal@novell.com>
1271         * NumericUpDown: 
1272         - Fix DecimalPlaces, Hexadecimal and ThousandsSeparator to 
1273         update inner values on set. Fixes #79966.
1274         - Override OnLostFocus to update value on NET 2. Fixes #79950.
1275         - Fix hexadecimal parsing.
1276         
1277         * UpDownBase: Override OnGotFocus and OnLostFocus to notify 
1278         parent. Fixes #79957
1280 2006-11-22  Rolf Bjarne Kvinge  <RKvinge@novell.com>
1282         * Control.cs: After calling SetWindowsPos in SetBoundsCore 
1283         the actual size has to be queried, since if height /
1284         width is negative Win32 changes it to 0. 
1285         Fixes #79999 on Windows.
1286         
1287         * XplatUIX11.cs: Set height / width to 0 if negative
1288         in SetWindowPos. Fixes #79999 on Linux.
1289         
1290 2006-11-22  Everaldo Canuto  <everaldo@simios.org>
1292         * ThemeWin32Classic.cs: Fix text redenring when button is
1293         pressed.
1295 2006-11-22  Everaldo Canuto  <everaldo@simios.org>
1297         * MenuAPI.cs: Fixes behavior when menu is opened by kerboard
1298         and later navigate by mouse. Fixes #79528.
1300 2006-11-21  Everaldo Canuto  <everaldo@simios.org>
1302         * ToolBar.cs: Set default value for TabStop to false in
1303         constructor, it fixes remaining behavior of bug #79863.
1305 2006-11-21  Rolf Bjarne Kvinge  <RKvinge@novell.com>
1307         * MdiWindowManager.cs:
1308         * InternalWindowManager.cs:
1309         - Moved a few methods specific to Mdi from 
1310         InternalWindowManager to MdiWindowManager.
1311         Fixes #79996.
1312         
1313 2006-11-21  Chris Toshok  <toshok@ximian.com>
1315         * XplatUIOSX.cs: stub out InvalidateNC.
1317         * XplatUIWin32.cs: implement InvalidateNC using the call I found
1318         at http://www.dotnet247.com/247reference/msgs/58/292037.aspx.
1320         * XplatUIX11.cs: rename InvalidateWholeWindow to InvalidateNC.
1322         * XplatUIDriver.cs: add InvalidateNC abstract method.
1324         * XplatUI.cs: add InvalidateNC.
1326 2006-11-21  Everaldo Canuto  <everaldo@simios.org>
1328         * ToolBar.cs: Invalidate complete button area when pressed status 
1329         was changed.
1330         * ToolButton.cs: Fix InvalidateBorder for DropDown buttons.
1331         * ThemeWin32Classic.cs: Increase vertical and horizontal position 
1332         by 1 when button is pressed.
1334 2006-11-20  Everaldo Canuto  <everaldo@simios.org>
1336         * ToolButton.cs: Invalidate middle of DropDown button when
1337         ToolBar theres DropDownArrows.
1338         * ThemeWin32Classic.cs: Change position of DropDown arrow and
1339         fix DropDown drawing operations.
1341 2006-11-20  Chris Toshok  <toshok@ximian.com>
1343         * NativeWindow.cs: fix the formatting of functions ('{' on the
1344         following line), and enable the thread exception dialog.
1346         * Application.cs: remove the duplicate exception catching from
1347         here.
1349 2006-11-20  Everaldo Canuto  <everaldo@simios.org>
1351         * Toolbar.cs: Triggers button click event when click on icon
1352         of dropdown ToolBarButton. Fixes #79912.
1353         
1354 2006-11-20  Rolf Bjarne Kvinge  <RKvinge@novell.com>
1356         * Theme.cs:
1357         * ThemeWin32Classic.cs:
1358         - Added a property WindowBorderFont to enable themeing
1359           of mdi child windows' Text.
1360           
1361 2006-11-20  Rolf Bjarne Kvinge  <RKvinge@novell.com>
1363         * InternalWindowManager.cs:
1364         * Form.cs:
1365         * MdiClient.cs:
1366         * MdiWindowManager.cs: 
1367         - If mdi child is maximized, set mdi parent's
1368           text to "Parent - [Child]". Fixes #79770.
1369         - If there is any maximized mdi child windows, only the active 
1370           window (and any new windows) is maximized, the rest are normal.
1371         - On a WindowState change only save mdi child's window bounds 
1372           if the old window state was normal. Fixes #79774.
1373         - The scroll bars are now calculated on hopefully all
1374           necessary events. Fixed #79771 / #79844->6 / #79906.
1375         - MdiClient.SizeScrollBars() now takes into account docked 
1376           controls in the parent when calculating available space.
1377         - InternalWindowManager now always repaints the entire title
1378           area. Fixes #79844->1/4/5.
1379         - Added RequestNCRecalc on mdi child windowstate changes.
1380           Fixes #79772.
1382 2006-11-20  Mike Kestner  <mkestner@novell.com>
1384         * ComboBox.cs: setup LargeChange on the scrollbar. Invoke FireMouseUp
1385         in the MouseUp handler of the listbox and move the return handling
1386         code to FireMouseUp to avoid scrolling on ups.  Fixes #79952.
1388 2006-11-20  Everaldo Canuto  <everaldo@simios.org>
1390         * Toolbar.cs: Ignore right mouse clicks in toolbar. Fixes #79855. 
1392 2006-11-17  Alexander Olk  <alex.olk@googlemail.com>
1394         * MimeIcon.cs: Seems that DllImports that were fine in 1.2 are not
1395           working in 1.2.x anymore. So, updated.
1397 2006-11-19  Gert Driesen  <drieseng@users.sourceforge.net>
1399         * NumericUpDown.cs: Use NegativeSign, NumberDecimalSeparator and
1400         NumberGroupSeparator of current culture instead of assuming en-US.
1401         Fixed bug #79967.
1403 2006-11-17  Mike Kestner  <mkestner@novell.com>
1405         * Control.cs: Add the concept of implicit bounds setting so that
1406         dock/undock round trips preserve explicitly set size/locations.
1407         Fixes #79313.
1409 2006-11-17  Alexander Olk  <alex.olk@googlemail.com>
1411         * FileDialog.cs: Trim all filters, otherwise DirInfo.GetFiles
1412           can't handle those filters. (Fixes bug #79961)
1414 2006-11-17  Chris Toshok  <toshok@ximian.com>
1416         [ fixes the exit/crashes associated with #79835.  it's clearly
1417         suboptimal though, we need to figure out a better way to solve
1418         this. ]
1419         
1420         * PrintPreviewControl.cs: deal with the new invalid printer
1421         exceptions.
1423         * PageSetupDialog.cs: if the printer is invalid, pop up a dialog
1424         and return false (so CommonDialog.ShowDialog doesn't actually show
1425         the form.)
1427         * PrintDialog.cs: enable/disable the Ok button depending on
1428         whether or not the printer is valid.
1430         * CommonDialog.cs (ShowDialog): only actually show the form if
1431         RunDialog returns true.
1433 2006-11-17  Jackson Harper  <jackson@ximian.com>
1435         * TextControl.cs: When soft splitting a line, mark it as a soft
1436         split line. Also carry over the current line break to the next
1437         line.
1439 2006-11-17  Chris Toshok  <toshok@ximian.com>
1441         * XplatUIX11.cs: when scrolling a window with an invalid area, we
1442         only want to shift the part of the invalid area that overlaps the
1443         area we're scrolling.  we also don't want to clear the invalid
1444         area unless the invalid area was entirely contained within the
1445         scrolling area.
1447 2006-11-16  Chris Toshok  <toshok@ximian.com>
1449         * XplatUIX11.cs: remove the handling of the TimerEvent stuff, and
1450         also make sure to free the memory returned by XGetWindowProperty
1451         in GetText().
1453         * X11Structs.cs: remove the TimerEvent stuff, it's unused.
1455 2006-11-16  Chris Toshok  <toshok@ximian.com>
1457         * XplatUI.cs: add a new super secret way to get at the totally
1458         unsupported X11 backend.
1460 2006-11-16  Gert Driesen  <drieseng@users.sourceforge.net>
1462         * NumericUpDown.cs: Allow lowercase letters when in hex-mode.
1464 2006-11-16  Jackson Harper  <jackson@ximian.com>
1466         * TreeView.cs: Allow more explicit setting of top node position
1467         for scrollbars. Slower algo, but more accurate.
1468         - CollapseAll should maintain the current top node.
1469         * TextBoxBase.cs: When positioning the caret, use the line, pos
1470         method, since the x, y method does not grab the correct tag, and
1471         the caret height never gets set correctly. (Maybe I should just do
1472         away with the caret having its own height, and always use the
1473         carets current tag for height).
1475 2006-11-16  Jonathan Pobst  <monkey@jpobst.com
1477         [Fixes 79778, 79923]
1479         * XplatUIWin32.cs: Don't allow a parent to be set to IntPtr.Zero.
1480         Parent to the FosterParent instead.
1482 2006-11-16  Jackson Harper  <jackson@ximian.com>
1484         * TreeView.cs: Need to recalc the topnode when we expand or
1485         collapse. The scrolling methods can't handle this on their own,
1486         since they use differences between the last scroll position, and
1487         those difference get completely messed up since we are expanding
1488         nodes.  This problem should probably be fixed in the scrolling
1489         methods, so they can figure out exactly where they are, but this
1490         will slow things down a little.
1491         * ThemeWin32Classic.cs: Special case for groupboxes with empty
1492         strings, makes nunit-gui look a lot nicer.
1494 2006-11-16  Chris Toshok  <toshok@ximian.com>
1496         * XplatUIX11.cs: nasty, nasty, nasty changes required because of
1497         the broken multithreaded event handling we have in here.  File
1498         this entry under "Why we should move to the new X11 backend".
1500         Any thread can make it into UpdateMessageQueue, which gets events
1501         from the X socket - some of which could belong to hwnds being
1502         managed by a different thread.  We can also have multiple threads
1503         in UpdateMessageQueue at the same time, with each one reading from
1504         the X socket.  This leads to many problems, with the following
1505         solutions:
1507         We can't use hwnd.Queue.Enqueue anywhere in here and must use
1508         EnqueueLocked.
1510         The MotionNotify compression we do can't work across threads
1511         (without locking the entire queue, perhaps) since we call
1512         hwnd.Queue.Peek, so we just punt and don't compress motion events
1513         unless the owning thread is the one which got the X event.
1515         ConfigureNotify is another fun one, since it modifies the hwnd's
1516         bounds and then enqueues the event.  We add a lock to Hwnd which
1517         is held when setting configure_pending to true (and enqueuing the
1518         event).
1520         There is a race wrt the wake socket.  we need to make sure that
1521         only 1 thread is waiting on that socket, or else a thread could
1522         sleep waiting for data that never comes.  It's difficult (but not
1523         impossible) to make happen, because it seems to require something
1524         like the following:
1526             1. Thread 1 polls on wake_receive
1527         
1528             2. poll returns saying there's data to be read on
1529                wake_receive.
1530         
1531             3. Thread 2 polls on wake_receive and immediately returns
1532                saying there's data to be read.
1534             4. Thread 2 reads the wakeup byte from wake_receive
1536             5. Thread 1 attempts to read the wakeup byte from
1537                wake_receive.
1539             6. Thread 2 exits (due to a form closing, perhaps).
1541             7. Thread 1 blocks forever.
1542         
1543         Fun, eh?
1545         Fixing the Expose handling isn't done yet, and the races inherent
1546         in that piece of code are responsible for the drawing mistakes you
1547         see when generating expose events in a MT app (like NPlot).  This
1548         one is the likely to be the hardest to bandaid, and it doesn't
1549         appear to cause anything but drawing problems.  The other issues
1550         caused apps to exit or hang.
1552         * XEventQueue.cs: output some spew when Dequeue/Enqueue/Peek are
1553         called from a different thread than the one that should be calling
1554         these functions.
1556         * Hwnd.cs: add some locks to be used by the XplatUIX11 code.
1558 2006-11-15  Chris Toshok  <toshok@ximian.com>
1560         * Application.cs: null out the context's MainForm when we exit
1561         RunLoop.  Fixes a newly checked in unit test as well as the last
1562         ODE from bug #79933.
1564 2006-11-15  Chris Toshok  <toshok@ximian.com>
1566         * Form.cs (set_Owner): allow a null value so we can clear the
1567         form's owner.
1568         (Dispose): set all our owned_form's Owner properties to null, and
1569         clear the owned_forms collection.
1570         (WM_CLOSE): clean up this a little bit.. still not right though.
1572         * ApplicationContext.cs: OnMainFormClosed should only call
1573         ExitThreadCore if the main form isn't recreating.  Fixes unit
1574         test.
1576 2006-11-15  Jonathan Pobst  <monkey@jpobst.com>
1578         [Fixes 78346]
1580         * ComboBox.cs: Set the Hwnd.no_activate flag for the ComboListBox.
1582 2006-11-15  Jonathan Pobst  <monkey@jpobst.com>
1584         [Fixes 79433]
1586         * Hwnd.cs: Add a flag to show a window, but not activate it, to 
1587         keep popup window types from stealing focus from the main form
1588         on Windows.
1590         * XPlatUIWin32.cs: Use SW_SHOWNOACTIVATE if above field is true.
1592         * MenuAPI.cs: Set above flag to true.
1594 2006-11-15  Chris Toshok  <toshok@ximian.com>
1596         * XplatUIX11.cs: mimic win32 behavior on BUTTONUP events, where
1597         the button being released is not in wParam.
1599 2006-11-15  Jonathan Pobst  <monkey@jpobst.com>
1601         * Form.cs: Add the released button to MouseEventArgs.Button
1602         for the OnMouseUp call to the MenuTracker.  Fixes menu clicking
1603         on Win32.
1605 2006-11-15  Chris Toshok  <toshok@ximian.com>
1607         * XplatUIX11.cs: add (untested) a _NET_WM_NAME implementation of
1608         GetText().  untested because it's unused in our implementation.
1609         Control.Text always caches the text, even if
1610         ControlStyles.CacheText is not set.
1612         fixes bug #79939.
1614 2006-11-15  Chris Toshok  <toshok@ximian.com>
1616         [ fixes #79933 ]
1617         
1618         * Form.cs: in Close() don't do anything after we send the WM_CLOSE
1619         message.  no hiding, no disposing.
1621         in the WM_CLOSE handler, hide the form if it's modal.
1623 2006-11-15  Chris Toshok  <toshok@ximian.com>
1625         * XplatUIX11.cs: use AddExpose instead of sending a message.
1626         fixes textbox border drawing.
1628 2006-11-15  Chris Toshok  <toshok@ximian.com>
1630         * PropertyGridView.cs: keep from crashing on mouse move/down when
1631         the property grid is empty.
1633 2006-11-14  Jackson Harper  <jackson@ximian.com>
1635         * TextControl.cs: Make PageUp and PageDown more like the MS
1636         versions.
1637         * TextBoxBase.cs: When we set the text property position the
1638         cursor at the beginning of the document.
1640 2006-11-14  Rolf Bjarne Kvinge  <RKvinge@novell.com>
1642         * Form.cs: if a mdi child's WindowState has changed
1643         before it's creation, it would display wrong control
1644         buttons.
1645         
1646 2006-11-14  Alexander Olk  <alex.olk@googlemail.com>
1648         * TreeView.cs: De-uglify TreeView checkbox checkmarks.
1649           (Fixes bug #79927)
1651 2006-11-14  Rolf Bjarne Kvinge <RKvinge@novell.com> 
1653         * XplatUIX11.cs: send a WM_NCPAINT on WM_NCCALCSIZE so that 
1654         the window gets to paint its borders even if the window is
1655         getting smaller.
1656         
1657         * Form.cs: on a WM_NCPAINT invalidate the entire menu, 
1658         otherwise the old control buttons would still be painted 
1659         if the window gets bigger.
1660         
1661         * PaintEventArgs.cs: add an internal method so that the clip 
1662         rectangle can be changed.
1663         
1664 2006-11-13  Chris Toshok  <toshok@ximian.com>
1666         [ fixes bug #79745 ]
1667         
1668         * NotifyIcon.cs: lots of cleanup.
1670         * X11Structs.cs: add an enum for XEMBED messages.
1672         * XplatUIX11.cs: reindent one of the giant switch statements, it
1673         was taking up an additional tab stop, and this file is already way
1674         too wide for my laptop's screen.
1676         Also, add handling for the XEmbed EMBEDDED_NOTIFY message.  When
1677         we get it, resize the hwnd to the WMNormalHints max_width/height.
1679 2006-11-13  Jackson Harper  <jackson@ximian.com>
1681         * TextBoxBase.cs: Compute the value changes for the mouse wheel
1682         teh simple way.
1684 2006-11-13  Chris Toshok  <toshok@ximian.com>
1686         * XplatUIX11.cs, XplatUIStructs.cs: kind of a gross fix for
1687         #79898.  force a reference to the Region to stick around so the
1688         unmanaged object isn't collected (rendering our handle in the MSG
1689         stale).
1691 2006-11-13  Chris Toshok  <toshok@ximian.com>
1693         * XplatUIX11.cs: fix #79917 for window managers which support
1695         using XStoreName on the raw utf8, and we need to convert to
1696         COMPOUND_TEXT if it's non-latin1.
1698 2006-11-13  Chris Toshok  <toshok@ximian.com>
1700         * Form.cs (set_DialogResult): we need to set closing to false if
1701         we're setting our result to None.  fixes bug #79908.
1703 2006-11-13  Jackson Harper  <jackson@ximian.com>
1705         * TextControl.cs: When formatting text, compute the adjusted tag
1706         lengths correctly, using FindTag for the end tag instead of trying
1707         to figure it out outselves.
1708         * TreeNode.cs: Use ActualItemHeight, which is the actual height of
1709         the item, ItemHeight doesn't work, because trees with large
1710         imagelists use those for their height
1711         * TreeView.cs: ActualItemHeight factors in the image height
1712         - compute left edge of checkboxes correctly
1713         - when expanding/collapsing move the bottom down one pixel, so we
1714         aren't moving part of the node
1716 2006-11-13  Rolf Bjarne Kvinge  <RKvinge@novell.com>
1718         * XplatUIX11.cs: The PaintEventArgs is also added to the drawing
1719         stack in PaintEventStart so that it won't get disposed by the gc
1720         before reaching PaintEventEnd.
1722 2006-11-13  Jackson Harper  <jackson@ximian.com>
1724         * TextBoxBase.cs: Don't select the word if we are on a line with
1725         no text.
1726         - We don't need to position the caret on mouse up, since the mouse
1727         move handler should be doing this
1728         - When double clicking a blank line, the caret is advanced to the
1729         next line.
1731 2006-11-13  Gert Driesen  <drieseng@users.sourceforge.net>
1733         * TreeNodeCollection.cs: Avoid duplicating indexer code.
1735 2006-11-12  Gert Driesen  <drieseng@users.sourceforge.net>
1737         * ColorDialog.cs: Reset size of dialog between calls to ShowDialog.
1738         Fixes part of bug #79910.
1740 2006-11-11  Alexander Olk  <alex.olk@googlemail.com>
1742         * ColorDialog.cs: Fix a NRE when adding a color to custom colors
1743           (bug #79903). Some minor string updates to match ms.
1745 2006-11-10  Alexander Olk  <alex.olk@googlemail.com>
1747         * FileDialog.cs: Don't add an extension if the filename
1748           already ends with that extension.
1750 2006-11-10  Jackson Harper  <jackson@ximian.com>
1752         * TreeView.cs: Use the currently highlighted node for the
1753         BeforeSelect event.
1754         * TextBoxBase.cs: There is no need to expand selection on
1755         MouseMove.
1756         - CanUndo means 'is there any undo operations', not 'is undo
1757         allowed on this textcontrol. Fixed ClearUndo unit test.
1759 2006-11-10  Andreia Gaita  <shana.ufie@gmail.com>
1761         * Button.cs: only perform click when button is Selectable (so as 
1762         not to activate default buttons when they're disabled)
1763         
1764         * Control.cs: Rewrite of the SelectNextControl and related 
1765         methods. HandleClick now selects next control if the current one
1766         is being disabled.
1767         
1768         * Form.cs: OnActivated selects next active control only if Load 
1769         has already occurred. If Load hasn't run, there's no point in 
1770         selecting here, Load might change the state of controls.
1771         
1772         * FocusTest.cs: Tests marked as working again for these fixes
1774 2006-11-10  Chris Toshok  <toshok@ximian.com>
1776         * XplatUIX11.cs: a couple of fixes.
1778         - use XInternAtoms with almost all the atoms we need to register,
1779         instead of many, many calls to XInternAtom.  should help a bit on
1780         startup time, at the expense of making the code look a little
1781         worse.
1783         - fall back to setting TransientFor on TOOLWINDOW's if their hwnd
1784         isn't reparented (which seems to be a clue that we're running fon
1785         compiz) and they have an Owner form.  This fixes the tool windows
1786         in paint.net when running under compiz.
1788         - when setting the opacity of a window, support both the case
1789         where the window has been reparented and also when it hasn't been.
1790         Since compiz/beryl doesn't seem to reparent windows, and these are
1791         the only window managers which support translucency, I'm not sure
1792         why we need the hwnd.reparented case at all.. but leave it in.
1793         now we get translucent windows in paint.net under compiz/beryl.
1795 2006-11-10  Alexander Olk  <alex.olk@googlemail.com>
1797         * FileDialog.cs: Always return the value for FilterIndex that
1798           was set. Internally convert it to values that make sense.
1800 2006-11-10  Everaldo Canuto  <everaldo@simios.org>
1801         
1802         * ThemeWin32Classic.cs: Fix drowp down arrow borders.
1804 2006-11-10  Everaldo Canuto  <everaldo@simios.org>
1806         * Toolbar.cs: Change default value of DropDownArrows to true, the 
1807         signature still using false to make it compatible with MS but the 
1808         initial value is true. Fixes #79855.
1810 2006-11-10  Alexander Olk  <alex.olk@googlemail.com>
1812         * MimeIcon.cs: Don't throw an exception on windows. Mime stuff is
1813           only available on Linux.
1815 2006-11-09  Everaldo Canuto  <everaldo@simios.org>
1817         * Toolbar.cs, ToolBarButton.cs: Fix wrong separator size and
1818         reduce number of calls to redraw method during toolbar creation.
1820 2006-11-09  Mike Kestner  <mkestner@novell.com>
1822         * ListView.cs : raise SelectedIndexChanged when an item is selected
1823         programmatically via the Item.Selected property.  Gert's nice 
1824         ListViewSelectedIndexChanged test fixture now runs clean.
1826 2006-11-09  Mike Kestner  <mkestner@novell.com>
1828         * ListView.cs : raise SelectedIndexChanged when a selected item is
1829         removed from the item collection using Remove or RemoveAt.
1831 2006-11-09  Mike Kestner  <mkestner@novell.com>
1833         * ListView.cs : raise SelectedIndexChanged once per selected item
1834         for compat with MS.  Fixes #79849+.
1836 2006-11-09  Chris Toshok  <toshok@ximian.com>
1838         * TabControl.cs: initialize row_count to 0, and set it to 1 when
1839         we need to (if we have any tab pages).  Fixes unit test.
1841 2006-11-09  Chris Toshok  <toshok@ximian.com>
1843         * Label.cs (CalcPreferredWidth): if Text == "", our preferred
1844         width is 0, not 3.  Fixes a unit test.
1846 2006-11-09  Mike Kestner  <mkestner@novell.com>
1848         * ListView.cs : use Implicit scrollbars so that focus isn't 
1849         stolen from the listview when they are clicked. Fixes #79850.
1851 2006-11-09  Chris Toshok  <toshok@ximian.com>
1853         * PropertyGridView.cs (OnPaint): only call DrawGridItems if we
1854         have a root item.  Fixes #79879.
1856 2006-11-09  Alexander Olk  <alex.olk@googlemail.com>
1858         * FileDialog.cs:
1859           - Fix ToString ()
1860           - An ArgumentException is now thrown if a wrong filter
1861             is applied (matches ms). The previous filter doesn't change
1862             anymore if an exception is thrown.
1863           - Changing the FileName property also affects FileNames
1864         * ColorDialog.cs: The length of the CustomColors array is always
1865           16. It doesn't matter if we use a smaller array or null to update
1866           or change the custom colors property.
1867         * FolderBrowserDialog.cs: Throw an InvalidEnumArgumentException if
1868           for RootFolder if we get a undefined value.
1870 2006-11-09  Rolf Bjarne Kvinge  <RKvinge@novell.com>
1872         * StatusBarPanel.cs: 
1873         - Width is set to MinWidth if Width is smaller than
1874         MinWidth. Fixes #79842.
1875         - MinWidth now always overrides Width (MSDN says MinWidth
1876         is set to Width when AutoSize = None, but they do not 
1877         behave like that).
1878         - Style has now the the correct default value.
1879         
1880 2006-11-09  Rolf Bjarne Kvinge  <RKvinge@novell.com>
1882         * TrackBar.cs: 
1883         - The control is completely invalidated on 
1884         Got/LostFocus to draw the focus rectangle correctly.
1885         - When AutoSize then height is always 45 (width for 
1886         vertical controls).
1887         
1888         * ThemeWin32Classic.cs: The TrackBar thumb is now centered
1889         on the mouse when moved and it doesn't move when grabbed
1890         until the mouse moves as well. Also fixed some wrong 
1891         calculations when clicking on the thumb (control thought
1892         click was outside of thumb and didn't grab it).
1893         Fixes some of the issues in #79718.
1895 2006-11-08  Everaldo Canuto  <everaldo@simios.org>
1897         * Toolbar.cs: Prevent disabled button to highlight. Fixes #79868.
1899 2006-11-08  Chris Toshok  <toshok@ximian.com>
1901         * PropertyGridView.cs: only call ToggleValue if the item is not
1902         readonly.
1904 2006-11-08  Jackson Harper  <jackson@ximian.com>
1906         * TextBoxBase.cs: The RichTextBox and textbox have very different
1907         word selection methods.  Implement the textbox's simple word
1908         selection here, and let the RichTextBox override and provide it's
1909         own.
1910         - Don't do extra selection on mouseup
1911         * RichTextBox.cs: Use the documents word selection algorithm, I
1912         think ideally, this function will be pulled into the
1913         RichTextBox.cs code someday.
1915 2006-11-08  Chris Toshok  <toshok@ximian.com>
1917         * RootGridEntry.cs: new class to represent GridItemType.Root.
1919         * CategoryGridEntry.cs: reformat, and add boilerplate.
1920         
1921         * GridEntry.cs: remove the UIParent stuff - turns out .Parent
1922         returns the UI parent anyway, and we need special handling to
1923         implement the GetTarget method in the face of it.  Also, implement
1924         Select().
1926         * PropertyGrid.cs, PropertyGridView.cs: a number of fixes.  create
1927         a root grid item, and use that instead of PropertyGrid.grid_items.
1928         Also, make use of TypeConverters (and add limitted support for
1929         ICustomTypeDescriptors) when initially populating the grid.
1930         Arrays now show up more or less properly.
1932 2006-11-08  Chris Toshok  <toshok@ximian.com>
1934         * Application.cs: set the modal dialog to non modal after we close
1935         it.  Fixes bug #79866.
1937 2006-11-08  Jackson Harper  <jackson@ximian.com>
1939         * TextControl.cs: When combining lines carry over the line end
1940         style from the end line.
1941         - Invalidate the selected area when setting it, if it is visible.
1942         * TextBoxBase.cs: Only rich text box can do full line selects.
1943         - Make sure to set the cursor position when there is a click,
1944         otherwise two clicks in separate areas could cause a large chunk
1945         to be selected.
1947 2006-11-07  Everaldo Canuto  <everaldo@simios.org>
1949         * Toolbar.cs: Release flat button borders when Toolbar lost focus. 
1950         Fixes #79863.
1952 2006-11-07  Everaldo Canuto  <everaldo@simios.org>
1954         * Toolbar.cs: Prevent toolbar to open more than one tooltip at same
1955         time. Remove tooltips when ToolButton click events.  Fixes #79856.
1957 2006-11-07  Everaldo Canuto  <everaldo@simios.org>
1959         * MenuAPI.cs: Ignore right click for menu actions and fixes
1960         menu border when clicked.  Fixes #79846.
1962 2006-11-07  Everaldo Canuto  <everaldo@simios.org>
1964         * XplatUIX11.cs, XplatUIX11.cs: Fix MouseRelease to only release
1965         MouseState after create wParam for message, this fixes mouse button 
1966         equal none in mouse up events.
1967         
1968 2006-11-07  Andreia Gaita  <shana.ufie@gmail.com>
1970         * Control.cs : Focus() now calls Select to set the Container's
1971         Active Control and to give it focus. To avoid infinite recursion
1972         (because ActiveControl also calls Focus at one point), a check 
1973         is made in Focus with the help of a new internal variable
1974         is_focusing.
1976 2006-11-07  Mike Kestner  <mkestner@novell.com>
1978         * ListView.cs : raise OnSelectedIndexChanged in CreateHandle
1979         if there's a selection.  Fixes #79849.
1981 2006-11-07  Gert Driesen  <drieseng@users.sourceforge.net>
1983         * PropertyGrid.cs: Avoid fixed height of help description label.
1984         Fixes part of bug #79829.
1986 2006-11-07  Chris Toshok  <toshok@ximian.com>
1988         * XplatUIX11.cs: fix #79790 again, by using the
1989         _NET_WM_STATE_SKIP_TASKBAR atom to implement Form.ShowInTaskbar.
1991 2006-11-07  Everaldo Canuto  <everaldo@simios.org>
1993         * ToolBar.cs: Fix left click checking.
1995 2006-11-07  Chris Toshok  <toshok@ximian.com>
1997         * ProgressBar.cs: fix a typo in ToString().  fixes a unit test.
1999 2006-11-07  Chris Toshok  <toshok@ximian.com>
2001         * RelatedPropertyManager.cs: set property_name in our ctor.  fixes
2002         PropertyManager unit tests.
2004         * PropertyManager.cs: make property_name internal.
2006 2006-11-07  Chris Toshok  <toshok@ximian.com>
2008         * ButtonBase.cs: initialize base.ime_mode to ImeMode.Disable to
2009         pass a unit test.  Also, don't set image_index to anything in
2010         response to setting the ImageList property.
2012 2006-11-07  Everaldo Canuto  <everaldo@simios.org>
2014         * ToolBar.cs: Ignore click events when mouse button is not a
2015         left button, only accepts other button for dropdown menus.  
2016         Fixes #79854.
2018 2006-11-07  Chris Toshok  <toshok@ximian.com>
2020         * DataGrid.cs: make the back and parent row buttons a little less
2021         ugly.
2023 2006-11-07  Jackson Harper  <jackson@ximian.com>
2025         * TextBoxBase.cs: When converting to Text don't put line breaks in
2026         for soft line breaks.
2027         * TextControl.cs: There is an initial "fake" line in the document,
2028         this is now a soft break line, so that an extra line feed doesn't
2029         get added to the end of documents.
2031 2006-11-07  Chris Toshok  <toshok@ximian.com>
2033         [ fix bug #79778 ]
2034         
2035         * CurrencyManager.cs: if the list is readonly, don't bother
2036         checking if IBindingList.AllowNew is true.
2038         * ThemeWin32Classic.cs (DataGridPaintParentRow): make this work
2039         for non-DataRowView datasources..  or rather, make it not crash.
2040         (DataGridPaintRelationRow): make sure we limit the row painting to
2041         the area not covered by the row header, and make our cell width at
2042         least large enough to cover the relation area.  This allows grids
2043         that have relations but no rows to render correctly.
2044         (DataGridPaintRowContents): same type of changes here.
2045         (SetDataSource): move back to always calling
2046         CalcAreasAndInvalidate.  this fixes a crash/drawing problem when
2047         navigating back through relations.
2048         (HitTest): handle the case where we have no cells but have
2049         relations.  Right now we generate a hit in cell 0 of whatever the
2050         row is, not sure if this is strictly correct, but it works for our
2051         purposes.
2052         
2053         * DataGrid.cs (EndEdit, CancelEdit): if we have no columns, don't
2054         bother doing anything.
2056 2006-11-07  Jonathan Pobst  <monkey@jpobst.com>
2058         * StatusStrip.cs, ToolStripStatusLabel.cs: By request, an
2059         early version of StatusStrip.  Not responsible for eaten
2060         application or firstborn children.
2062 2006-11-06  Chris Toshok  <toshok@ximian.com>
2064         * TabControl.cs: in OnGotFocusInternal/OnLostFocusInternal don't
2065         call GetTabRect with a -1 index.  Fixes #79847.
2067 2006-11-06  Jackson Harper  <jackson@ximian.com>
2069         * TreeNodeCollection.cs: Update scrollbars after clearing.
2071 2006-11-06  Chris Toshok  <toshok@ximian.com>
2073         * NumericUpDown.cs: fix the ToString method for some unit test
2074         love.
2076 2006-11-06  Chris Toshok  <toshok@ximian.com>
2078         * PropertyGrid.cs:
2079         - set the initial SelectedGridItem if we can.
2081         - Exclude non-mergable properties only if we're merging > 1
2082         object.  Merging 1 object isn't really merging, obviously.
2084         - Handle PropertySort.NoSort just like Alphabetical, which is
2085         wrong of course, but at least gets things on the screen.
2086         
2087         * PropertyGridView.cs:
2088         - Add method "FindFirstItem" which finds the first property grid
2089         item, so we can select it by default.
2091         - make use of GridEntry.CanResetValue.
2093         - Don't call RedrawBelowItemOnExpansion here anymore, the
2094         individual GridEntry's will do that.
2096         - Remove the ITypeDescriptorContextImpl internal class.
2097         
2098         * GridEntry.cs:
2099         - this class needs to implement ITypeDescriptorContext, as it's
2100         what MS's PropertyDescriptorGridEntry does, which means we can
2101         remove the ITypeDescriptorContextImpl internal class from
2102         PropertyGrid.cs.  This fixes the crashing portion of bug #79829.
2104         - keep a reference to our PropertyGridView, and move the call to
2105         RedrawBelowItemOnExpansion here from PGV.  This means
2106         programmaticly setting Expanded actually does something visible.
2108         - add a CanResetValue() function which takes into account our
2109         possibly multiple "selected_objects" in the merged case.  Shifting
2110         PropertyGridView to use this method fixes another unreported
2111         crasher found running the test for #79829.
2113         - when Top or Bounds is updated, make sure the PropertyGridTextBox
2114         is updated to reflect this.
2116         * CategoryGridEntry.cs: the ctor takes the PGV now.
2117         
2118 2006-11-06  Jackson Harper  <jackson@ximian.com>
2120         * TextControl.cs: These are 1 based.
2121         * TextBoxBase.cs: When setting the selected text, don't change the
2122         selected text tags, this is done by ReplaceText, just position the
2123         cursor at the end of the new text.
2125 2006-11-06  Alexander Olk  <alex.olk@googlemail.com>
2127         * ListView.cs: Allow label edit only when, when LabelEdit is
2128           set to true.
2130 2006-11-06  Jackson Harper  <jackson@ximian.com>
2132         * TextControl.cs: If a suitable wrapping position isn't found,
2133         just wrap right in the middle of a word.
2135 2006-11-06  Alexander Olk  <alex.olk@googlemail.com>
2137         * ListView.cs, ListViewItem.cs: Implement LabelEdit. Fixes
2138           bug #79820.
2140 2006-11-06  Jackson Harper  <jackson@ximian.com>
2142         * TreeView.cs: Can't use the VisibleCount property when setting
2143         scrollbar heights, because this doesn't take into account whether
2144         or not the horz scrollbar just came visible.
2146 2006-11-05  Everaldo Canuto  <everaldo@simios.org>
2148         * MenuAPI.cs: Deactivate menu on mouse up when menus it is already
2149         activated.  Fixes #79369, #79832.
2151 2006-11-05  Alexander Olk  <alex.olk@googlemail.com>
2153         * FileDialog.cs: *sigh* Because of recent runtime changes (r67043) I
2154           had to remove support for links that point to a directory. FileInfo
2155           returns no usefull information (means, the directory they point to)
2156           for such links. Replaced some empty string ("") with String.Empty.
2158 2006-11-04  Gert Driesen  <drieseng@users.sourceforge.net>
2160         * TreeNodeCollection.cs: To match MS, in 1.0 profile throw 
2161         NullReferenceException when attempting to remove node that is not in
2162         collection. Throw NullReferenceException when null is passed to 
2163         Remove. Allow first element of the collection to be removed. Fixes
2164         bug #79831.  In GetEnumerator ().Current return null if positioned 
2165         before the first element of the collection. In GetEnumerator ().Reset,
2166         position before first element of the collection.
2168 2006-11-04  Gert Driesen  <drieseng@users.sourceforge.net>
2170         * PropertyGrid.cs: To match MS, remove default title and description
2171         for panel. Fixed tooltips for Categorized and Alphabetic toolbar
2172         buttons.
2174 2006-11-04  Chris Toshok  <toshok@ximian.com>
2176         * Theme.cs: add a Clamp method, just for kicks.
2178         * ThemeWin32Classic.cs: clamp all color components to [0..255].
2180 2006-11-04  Chris Toshok  <toshok@ximian.com>
2182         * Form.cs: if the form isn't visible, Close() does nothing.
2184 2006-11-03  Chris Toshok  <toshok@ximian.com>
2186         * Form.cs (Close): if the form is modal, don't Dispose of it, only
2187         Hide it.
2188         (WndProc): don't Dispose after handling the WM_CLOSE message.
2190         * Application.cs (RunLoop): toplevels is a list of Forms, so treat
2191         them as such, instead of using casts from Control to Form.  Also,
2192         don't Dispose of the modal dialog when we fall out of the loop -
2193         Close() it instead.
2195         fixes bug #79813.
2197 2006-11-03  Chris Toshok  <toshok@ximian.com>
2199         * Control.cs (Dispose): only go through the dispose thing if we're
2200         @disposing, and we haven't already been disposed.  Fixes bug
2201         #79814.
2203         * Form.cs: no reason to call "base.Dispose()" here instead of
2204         "Dispose()".
2206 2006-11-03  Mike Kestner  <mkestner@novell.com>
2208         * ComboBox.cs : use ToString instead of casts in AddItem for
2209         sorting functionality.  Fixes #79812.
2211 2006-11-03  Chris Toshok  <toshok@ximian.com>
2213         * Application.cs: pave the way for actually using the thread
2214         exception dialog.  it's ifdefed out at the moment.
2216 2006-11-03  Chris Toshok  <toshok@ximian.com>
2218         * ThreadExceptionDialog.cs: until we get a better layout, actually
2219         hide the details textbox and label when we shouldn't see them.
2221 2006-11-03  Jackson Harper  <jackson@ximian.com>
2223         * TextBoxBase.cs: Don't bail from the scrollbar calcs for non
2224         multiline textboxes anymore.  This method also determines the
2225         width/height of a textboxes canvas area.
2226         - Sorta a revert of the last patch.  For multiline just position
2227         the controls, then bail.  This way the scrollbar width won't be
2228         altered.
2230 2006-11-03  Everaldo Canuto  <everaldo@simios.org>
2232         * ThemeWin32Classic.cs: Dont paint inner lines of 3D border when
2233         it dont need.  Fixes #79537.
2235 2006-11-02  Jackson Harper  <jackson@ximian.com>
2237         * X11Dnd.cs: We always allow copy, since XDND implies Copy.  Also
2238         send the status after firing the DndOver event.
2240 2006-11-02  Rolf Bjarne Kvinge  <RKvinge@novell.com>
2242         * TrackBar.cs: Now orientation only switches height / width if
2243         the control's handle is created (Win32 does it like this). Also 
2244         fixed a typo in ToString() for a test to pass, changed the 
2245         exception thrown in set_LargeChange and set_SmallChange to 
2246         match Win32 behaviour, and added TrackBar tests to the unit 
2247         tests.
2249 2006-11-02  Chris Toshok  <toshok@ximian.com>
2251         * XplatUIX11.cs: the atom we want is _NET_WM_STATE_SKIP_TASKBAR,
2252         not _NET_WM_STATE_NO_TASKBAR.
2254 2006-11-02  Jackson Harper  <jackson@ximian.com>
2256         * TextControl.cs: Increment count by one, since in the update view
2257         count - 1 is used.
2259 2006-11-02  Jackson Harper  <jackson@ximian.com>
2261         * TextBoxBase.cs: Use client rectangle not bounds for checking if
2262         the mouse is in the client rectangle (duh).
2264 2006-11-02  Rolf Bjarne Kvinge  <RKvinge@novell.com>
2265         
2266         * TrackBar.cs: Fixed trackbar jumping around when clicking
2267         on it - the trackbar was not detecting correctly at which
2268         side of the thumb the click was done. (fixes #79718)
2270 2006-11-02  Everaldo Canuto  <everaldo@simios.org>
2272         * ListBox.cs: scroll visible area when change SelectedIndex to
2273         a non visible area.  Fixes #79481.
2275 2006-11-01  Jackson Harper  <jackson@ximian.com>
2277         * TextControl.cs: When replacing the selection move the selection
2278         start/end/anchor to the end of the new text.
2280 2006-11-01  Jackson Harper  <jackson@ximian.com>
2282         * XplatUIWin32.cs: When setting the parent change the controls
2283         visibility to it's visibility flag, not to it's old parents
2284         visibility (.Visible walks the parent chain).
2286 2006-11-01  Chris Toshok  <toshok@ximian.com>
2288         * XplatUIX11.cs: revert the #79790 fix, as the simple.
2289         XSetTransientForHint fix breaks paint .net's tool windows.  more
2290         work needed for that one.
2292 2006-11-01  Chris Toshok  <toshok@ximian.com>
2294         * ScrollBar.cs: throw ArgumentException instead of Exception in
2295         LargeChange/SmallChange setters.  fixes unit tests.
2297 2006-10-31      Andreia Gaita <shana.ufie@gmail.com>
2299         * ContainerControl.cs: reverted rev.67183 (which was itself
2300         a reversion of rev.66853... eh).
2301         
2302         * Control.cs: Fixes Reflector hang by changing Focus() call
2303         to what it was before rev.66643 (calling Select() here sets 
2304         ActiveControl, which in some situations calls back Focus and 
2305         eventually does a stack overflow). Temp fix.    
2306         Changes to GetNextControl() to not look for children to select when
2307         parent cannot be selectable (so it looks for siblings instead)  
2308         
2309 2006-10-31  Mike Kestner  <mkestner@novell.com>
2311         * CheckedListBox.cs : off by one error in returned index from
2312         ObjectCollection.Add.  Fixes #79758.
2314 2006-10-31  Chris Toshok  <toshok@ximian.com>
2316         * UpDownBase.cs: remove the OnGotFocusInternal/OnLostFocusInternal
2317         calls for the textbox/spinner, to keep from recursing to the point
2318         where we crash.  Fixes #79760.
2320 2006-10-31  Chris Toshok  <toshok@ximian.com>
2322         * ListControl.cs (set_SelectedValue): don't throw exceptions on
2323         null/"" value, just return.  matches ms's behavior and fixes some
2324         failing tests.
2326 2006-10-31  Chris Toshok  <toshok@ximian.com>
2328         * Control.cs (set_Capture): make a logic a little easier to
2329         follow.
2331         * XplatUIX11.cs (CleanupCachedWindows): zero out the Grab window
2332         if it's being destroyed.  A necessary fix surely, but a bandaid
2333         also, to fix the stuck capture problem in bug #78413.
2335 2006-10-31  Chris Toshok  <toshok@ximian.com>
2337         * XplatUIX11.cs: fix a couple of compiler warnings, and follow the
2338         convention of clearing hwnd.ClientRect when we set the
2339         width/height (so it'll be recalculated by Hwnd).
2341 2006-10-31      Andreia Gaita <shana.ufie@gmail.com>
2343         * ContainerControl.cs: reversed Contains check from
2344         ActiveControl due to hanging problems. This fix
2345         partly regresses #79667 (button does not have
2346         initial focus), so this might be a symptom for 
2347         a larger parenting problem (set_ActiveControl
2348         is being called but the child control does
2349         not have the parent set yet?)   
2350         
2351 2006-10-31  Mike Kestner  <mkestner@novell.com>
2353         * MenuAPI.cs : fix keynav when menu is click activated.
2355 2006-10-31  Jonathan Pobst  <monkey@jpobst.com>
2357         * ToolStrip*: Version 0.2.
2359         * MenuStrip.cs: Version 0.1.
2361         * Form.cs: Add a 2.0 MenuStrip tracker like the 1.1 Menu one.
2363 2006-10-30  Chris Toshok  <toshok@ximian.com>
2365         [ fixes the oversized notify icon issue in bug #79745 ]
2366         
2367         * NotifyIcon.cs: scale the icon down to the size we're given by
2368         the XplatUI layer (this would be faster if we did it once instead
2369         of whenever we paint..)  Also, remove the WM_NCPAINT handling,
2370         since it's never invoked.
2372         * XplatUIX11.cs: the gnome and kde systrays use icons that are 24
2373         pixels high by default, so let's hardcode our systray icon to that
2374         size.  The SYSTEM_TRAY protocol should really have a way for
2375         client apps to query for the correct icon size.. but oh well.  A
2376         couple of patches to deal with the screwy client_window ==
2377         whole_window notifyicon stuff (we don't want to PerformNCCalc, for
2378         instance, and also make sure we don't XSelectInput twice).
2380 2006-10-30  Chris Toshok  <toshok@ximian.com>
2382         * Control.cs: ugh, the unit test fix (CH11, yesterday) breaks when
2383         recreating forms.  Control recreation is the bane of my existence.
2384         Fix it in a way that keeps everyone happy.
2386 2006-10-30  Chris Toshok  <toshok@ximian.com>
2388         * XplatUIX11.cs: use StructureNotifyMask on all whole_windows, not
2389         just non-CHILD ones.  otherwise sometimes scrollbars end up with
2390         client_windows not being resized to the proper size (ReportBuilder
2391         shows this extremely well).
2393 2006-10-30  Chris Toshok  <toshok@ximian.com>
2395         * XplatUIX11.cs (SetWMStyles): reinstate the XSetTransientForHint
2396         for non-WS_EX_APPWINDOW windows.  This is what keeps them from
2397         showing up in the gnome taskbar.  Fixes bug #79790.
2399 2006-10-30  Chris Toshok  <toshok@ximian.com>
2401         * ApplicationContext.cs: guard against a NRE.
2403         * Application.cs: null out the old MainForm for the context, so we
2404         don't try to use it again once it's disposed.  Fixes bug #79783.
2406 2006-10-30  Chris Toshok  <toshok@ximian.com>
2408         * DataGrid.cs (set_DataSource, set_DataMember): if we have a
2409         BindingContext, set the data source directly, otherwise do the
2410         lazy approach - the actual ListManager will be created when we get
2411         a BindingContext. Fixes bug #79700.
2413 2006-10-30  Jonathan Pobst  <monkey@jpobst.com>
2415         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIOSX.cs,
2416           XplatUIX11.cs: Remove old 2 parameter SetVisible.
2418         * Control.cs: Use the new 3 parameter SetVisible with activate = true.
2420 2006-10-30  Jonathan Pobst  <monkey@jpobst.com>
2422         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs: Add an overload
2423         of SetVisible that allows a window to be shown, but not activated.
2424         This is needed on Windows for MenuStrip, and can probably be used
2425         with MainMenu and ComboBox to fix the focus stealing issues on
2426         Windows.
2428         * XplatUIOSX.cs, XplatUIX11.cs: Not needed, call existing SetVisible.
2430 2006-10-30  Alexander Olk  <alex.olk@googlemail.com>
2432         * PictureBox.cs: Fix the output of the ToString method.
2434 2006-10-29  Chris Toshok  <toshok@ximian.com>
2436         * Control.cs (get_TopLevelControl): fix bug #79781.
2438 2006-10-29  Chris Toshok  <toshok@ximian.com>
2440         * ListControl.cs (set_DataSource): throw Exception here, not
2441         ArgumentException, to match MS behavior.
2443 2006-10-29  Chris Toshok  <toshok@ximian.com>
2445         * Form.cs: remove the try-catch's around calls to GetWindowState.
2446         We can just check the return value.
2448         * XplatUIX11.cs: don't throw exceptions from GetWindowState.
2449         Instead return -1.
2451         * XplatUI.cs: Add note about additional return value for
2452         GetWindowState.
2454 2006-10-29  Chris Toshok  <toshok@ximian.com>
2456         * Control.cs (CreateHandle): when we create our handle, we also
2457         create the handles of our child controls.  Fixes one of the
2458         Control unit tests (CH11).
2460 2006-10-28  Alexander Olk  <alex.olk@googlemail.com>
2462         * MimeIcon.cs: If a gnome icon doesn't exist add a default icon.
2464 2006-10-28  Alexander Olk  <alex.olk@googlemail.com>
2466         * ThemeClearlooks.cs: A little speedup.
2468 2006-10-27  Chris Toshok  <toshok@ximian.com>
2470         * Control.cs: implement Control.FromChildHandle in a way that
2471         matches the docs (and fixes the failed test.)
2473 2006-10-27  Chris Toshok  <toshok@ximian.com>
2475         * DataGridTableStyle.cs: reproduce buggy MS behavior (with
2476         comments).
2478         * DataGrid.cs: implement ResetForeColor such that the tests
2479         succeed.
2480         
2481 2006-10-27  Chris Toshok  <toshok@ximian.com>
2483         * ToolBarButton.cs: setting text/tooltiptext to null results in it
2484         being set to "".  Fixes bug #79759.
2486 2006-10-27  Jackson Harper  <jackson@ximian.com>
2488         * TextControl.cs: We need to clear the entire selection area when
2489         setting the start, otherwise multiline selections are still
2490         visible.
2492 2006-10-26  Chris Toshok  <toshok@ximian.com>
2494         * PropertyGridView.cs: 
2496         - ifdef all the code specific to the double
2497         buffer case, and provide some alternatives in the non-doublebuffer
2498         code, which makes heavy use of XplatUI.ScrollWindow to move things
2499         around without having to invalidate (and cause flicker).  There
2500         are still some drawing problems in the non-doublebuffered case, so
2501         DOUBLEBUFFER is defined by default.
2503         - Fix the way dropdowns are handled.  now we explicitly watch for
2504         the events which might cause the dropdown to close, and break out
2505         of the nested event loop there.  This gets rid of all Capture
2506         code, at the expense of the Msg special casing.  Seems to work,
2507         though, and fixes bug #79743.
2509 2006-10-27  Rolf Bjarne Kvinge <RKvinge@novell.com>
2510         * Control.cs: SetIsRecreating now recreates implicitly added
2511         child controls as well. Finally fixes #79629. The flag passed to 
2512         SetIsRecreating has also been removed since it wasn't used.
2513         
2514 2006-10-26  Carlos Alberto Cortez <calberto.cortez@gmail.com>
2516         * PageSetupDialog.cs: Clean some code, fix some bits, 
2517         add some checks, and add a printer sub-dialog.
2519 2006-10-26  Chris Toshok  <toshok@ximian.com>
2521         * PropertyGrid.cs: make set_SelectedObject call
2522         set_SelectedObjects, and move the duplicate logic to the
2523         SelectedObjects setter.  Also, raise SelectedObjectsChanged.
2525         * PropertyGridView.cs: hide the textbox when we get a
2526         SelectedObjectsChanged event.
2528         Fixes bug #79748.
2530 2006-10-26  Chris Toshok  <toshok@ximian.com>
2532         * PropertyGridView.cs: deal with the type converter not supporting
2533         GetStandardValues() or GetStandardValues() returning null, which
2534         is does in the default case.  Fixes #79742.
2536 2006-10-25  Andreia Gaita <shana.ufie@gmail.com>
2538         * CheckedListBox.cs: nunit no longer crashes when selecting 
2539         Project/Edit menu option
2540         
2541 2006-10-25  Andreia Gaita <shana.ufie@gmail.com>
2543         * MenuAPI.cs: prevent ExecFocusedItem from blowing up if there
2544         is no menu selected. fixes #79739
2546 2006-10-25  Chris Toshok  <toshok@ximian.com>
2548         * PropertyGridView.cs: factor out the splitter invalidation code
2549         into the SplitterPercent setter, and for kicks implement the
2550         Ctrl-Left/Ctrl-Right handling that moves the splitter by a small
2551         amount in either direction.
2553 2006-10-25  Chris Toshok  <toshok@ximian.com>
2555         * PropertyGridView.cs: do some cleanup of the brush used to draw
2556         text - read only fields should be grayed out.  not sure how to do
2557         this with the textbox, though.  but the textbox's should also be
2558         readonly now at least.  Also, hide/show the textbox when resizing
2559         the control.
2560         
2561         * CursorConverter.cs: use System.Reflection when getting the
2562         properties of Cursors, as TypeDescriptor.GetProperties isn't
2563         returning static properties.
2565 2006-10-25  Chris Toshok  <toshok@ximian.com>
2567         * PropertyGridView.cs: factor out the up/down handling, and reuse
2568         it for page up/down.  also add End/Home support.
2570 2006-10-25  Chris Toshok  <toshok@ximian.com>
2572         * PropertyGridView.cs:
2574         - ensure the selected grid item is visible in the scrolled area,
2575         fixes bug #79572.
2577         - fix Keys.Down handling when you're on the last item in the
2578         propertygrid.
2580 2006-10-25  Mike Kestner  <mkestner@novell.com>
2582         * MenuAPI.cs : set the ActiveTracker for MainMenu non-popup 
2583         clicks too.  Fixes #79725.
2585 2006-10-24  Chris Toshok  <toshok@ximian.com>
2587         * PropertyGrid.cs: use property.Converter instead of
2588         TypeDescriptor.GetConverter(property.PropertyType), so we catch
2589         TypeConverters declared on the property as well as on the
2590         PropertyType.  Fixes bug #79678.
2592 2006-10-24  Alexander Olk  <alex.olk@googlemail.com>
2594         * MimeIcon.cs, Mime.cs:
2595           Fallback to the default platform handler if no shared mime info
2596           stuff exists (fixes #79693).
2598 2006-10-20 Andreia Gaita <shana.ufie@gmail.com>
2599         * ContainerControl.cs: Incorrect contains check in ActiveControl 
2600         from previous fix (duh).
2602 2006-10-20  Chris Toshok  <toshok@ximian.com>
2604         * PropertyGridView.cs: the dropdown should be MIN(number of items
2605         in list, 15).  Fixes #79551.
2607 2006-10-20 Andreia Gaita <shana.ufie@gmail.com>
2608         Fixes #79384, #79394, #79652, #79667
2609         * Application.cs: 
2610         
2611         - Modal windows are now destroyed in the proper order for windows
2612         
2613         * ContainerControl.cs:
2614         
2615         - ActiveControl setter has more conditions on when to return:
2616                 - if we're reselecting the active control, but it actually
2617                 didn't have focus (window hidden or some such), it runs
2618                 - if the active control being selected doesn't actually 
2619                 exist in the container, it returns
2620         
2621         * Form.cs
2622         
2623         - The ShowDialog now gets the current form as the owner when
2624         invoking without parameters, and correctly activates the owner 
2625         when returning
2626         
2627         * MessageBox.cs
2628         
2629         - MessageBox now catches the Escape key to exit
2631 2006-10-20  Chris Toshok  <toshok@ximian.com>
2633         * PropertyGridView.cs: fix a number of issues (bug #78565, and
2634         most of bug #79676):
2636         - you can navigate around the property grid with the arrow keys.
2638         - the dropdown is sized properly when the pg has a vertical
2639         scrollbar.
2641         - fix the indentation for subentries, and properly select the
2642         entire label rect.
2644         - fix the gray bar's drawing (only draw it to the last element,
2645         not for the height of the control.  Also make sure we draw that
2646         last horizontal grid line.
2648         - use the same mechanism the datagrid uses wrt the editing textbox
2649         when scrolling/resizing/etc.  Namely, we hide it first, do the
2650         operation, then show it again (if it's still visible).
2651         
2652         - aggressively remove a lot of unnecessary refreshes (and also
2653         calls to Invalidate(). call more limited variants, and only redraw
2654         what we need.)
2655         
2656         * PropertyGrid.cs:
2658         - when we're populating the merged collection, fill in the UI
2659         parent with either the passed in item, or the category item we
2660         create.
2662         - remove the Refresh call from the BorderHelpControl.OnSizeChanged.
2664         * GridItem.cs: drop some fully qualified names.
2665         
2666         * GridEntry.cs: add a "UIParent", which is basically the parent
2667         treenode.
2669         * GridItemCollection.cs: add an IndexOf method.
2671 2006-10-20  Mike Kestner  <mkestner@novell.com>
2673         * MainMenu.cs : go back to Draw in OnMenuChanged.  Until we get
2674         a working win32 NC invalidation mechanism, we can't invalidate
2675         menus.  [Fixes #79705]
2677 2006-10-20  Mike Kestner  <mkestner@novell.com>
2679         * ListBox.cs : don't update the VScrollbar if the list is empty,
2680         just hide it.  [Fixes #79692]
2682 2006-10-20  Jackson Harper  <jackson@ximian.com>
2684         * RichTextBox.cs: Handle some special chars better, and don't skip
2685         the entire group when we encounter a special char that we don't
2686         handle correctly.
2688 2006-10-18  Chris Toshok  <toshok@ximian.com>
2690         * PropertyGridView.cs: address a number of issues from bug #79676,
2691         mostly of the cosmetic variety.
2693         - The highlight rectangle for indented items not extends all the
2694         way to the left.
2696         - Indented items aren't indented so much.
2698         - the dropdown is properly sized width-wise if the pg has a
2699         vertical scrollbar.
2701 2006-10-18  Chris Toshok  <toshok@ximian.com>
2703         * XplatUIX11.cs (SystrayAdd): a rather convoluted change, but the
2704         systray stuff is rather convoluted to begin with.
2706         systray icons are a single window for some reason (that I haven't
2707         figured out yet), and for them, client_window == whole_window.
2708         Given the way the tests are structured elsewhere to determine
2709         which paints are pending (client vs. nc), that situation will
2710         always yield PAINT, not NCPAINT.  So, if we have a pending
2711         nc_expose and no pending expose, remove the hwnd from the paint
2712         queue, and also set nc_expose_pending to false, to keep us from
2713         blocking further expose's adding the hwnd to the paint queue.
2715         phew.  like i said, a rather convoluted change.  Fixes the
2716         notifyicon repaint issues in bug #79645.
2718 2006-10-18  Chris Toshok  <toshok@ximian.com>
2720         * Form.cs: when getting the backcolor of the form, don't get
2721         base.BackColor, as this allows parents to influence the background
2722         color.  This breaks mdi forms.  Instead, if the background_color
2723         is empty, return the default.
2725 2006-10-18  Chris Toshok  <toshok@ximian.com>
2727         * XplatUIX11.cs: change some debug ifdefs, and return XGetParent
2728         to being private instead of internal static.
2730         * Control.cs: remove all the stupid ParentWaitingOnRecreation
2731         crap, it wasn't working for more deeply nested controls anyway,
2732         and we already have the is_recreating flag - use that instead.
2733         Before calling DestroyHandle in RecreateHandle, recurse through
2734         the control tree setting it to true.  this returns the recreate
2735         code to much of its original simplicity, while now guaranteeing we
2736         actually recreate everything we're supposed to.  This change gets
2737         fyireporting actually showing mdi children.
2739 2006-10-17  Chris Toshok  <toshok@ximian.com>
2741         * Form.cs: remove some debug spew, and collapse some duplicate
2742         code at the end of SetClientSizeCore.
2744         * XplatUIX11.cs: 
2745         - add some more debug spew here too wrt Destroy handling.
2746         - don't call hwnd.Dispose in DestroyWindow, it's effectively done
2747         in Control's handling of WM_DESTROY.
2748         - Remove the handling of zombie window DestroyNotifies from the
2749         event loop - we don't need it.  Now the only DestroyNotifies we
2750         actually handle are ones generated by X.
2751         - When sending _NET_ACTIVE_WINDOW, the first param should be 1, to
2752         match gtk's (functioning) handling of this. This keep metacity
2753         from leaving droppings in the form of wm borders with no window
2754         contents all over the place.
2756         * Control.cs:
2757         - add a bunch of debug spew wrt control recreation.
2758         - fix a bug where we weren't tracking Visible properly on
2759         recreated hwnds.
2760         - fixed the WM_PAINT double buffer handling to support re-entrant
2761         calls (yes, i know it's gross, but it's happening to us).
2763 2006-10-17  Rolf Bjarne Kvinge  <rolfkvinge@ya.com>
2764         * ThemeWin32Classic.cs: changed drawing of selected days
2765         to make them look better.
2767 2006-10-16  Chris Toshok  <toshok@ximian.com>
2769         * Hwnd.cs: replace the user_data/client_dc/non_client_dc with
2770         drawing_stack.  Nuke the ClientDC/NonClientDC properties.
2772         * XplatUIX11.cs: move away from using hwnd.client_dc and
2773         hwnd.non_client_dc and on to a stack of dc's (and in window's
2774         case, PAINTSTRUCT's), so we can deal with nested Paint calls
2775         without puking or not disposing of Graphics objects.
2777         * XplatUIOSX.cs: same.
2779         * XplatUIWin32.cs: same.
2781 2006-10-03  Alexander Olk  <alex.olk@googlemail.com>
2783         * FileDialog.cs: Don't call on_directory_changed inside
2784           OnSelectedIndexChanged (it changes the SelectedIndex too).
2785           Instead move it to OnSelectionChangeCommitted.
2787 2006-10-13  Chris Toshok  <toshok@ximian.com>
2789         * XplatUIX11.cs: more Destroy work.  the current code does the
2790         following things, in order:
2792         1. Enumerates all handles of all controls at or below the one
2793         being destroyed, in pre-order.  As it is doing this, it marks the
2794         handles as zombie and clears all references to them.
2795         
2796         2. calls XDestroyWindow on the window passed in.
2798         3. SendMessage's WM_DESTROY to all he handles in the accumulated
2799         list.
2801 2006-10-13  Chris Toshok  <toshok@ximian.com>
2803         * XplatUIX11.cs: set hwnd.zombie to true before calling
2804         SendMessage (WM_DESTROY).  this keeps us from marking the new
2805         window a zombie, and also keeps us from calling sendmessage at
2806         all.
2808 2006-10-13  Jackson Harper  <jackson@ximian.com>
2810         * TextControl.cs: Do not show the caret and selection at the same
2811         time.  Reduces ugliness by 35%.
2813 2006-10-13  Chris Toshok  <toshok@ximian.com>
2815         * XplatUIX11.cs (SendWMDestroyMessages): set the hwnd to be a
2816         zombie after we do the recursive call, so we actually do call
2817         SendMessage on the children controls.
2818         (GetMessage): if we find a pending paint event for a zombie hwnd,
2819         remove the hwnd from the paint queue, or else it will always be
2820         there (and we'll effectively loop infinitely)
2822 2006-10-13  Mike Kestner  <mkestner@novell.com>
2824         * MenuItem.cs : add Selected format under keynav too.
2825         Fixes #79528.
2827 2006-10-13  Gert Driesen  <drieseng@users.sourceforge.net>
2829         * PropertyGrid.cs: Fixed some NRE's and small difference between our
2830         implementation and that of MS.
2832 2006-10-13  Chris Toshok  <toshok@ximian.com>
2834         * Control.cs (OnInvalidated) only futz with the invalid_region if
2835         the control is double buffered.  this fixes the apparent hang in
2836         the ListView unit tests.  Someone needs to make the
2837         BeginEndUpdateTest not call OnInvalidated 15004 times, though..
2839 2006-10-13  Chris Toshok  <toshok@ximian.com>
2841         * PropertyGridView.cs:
2843         - do a little refactoring so that only one place calls
2844         dropdown_form.Hide, and that is CloseDropDown.  make everywhere
2845         else call that.  Also make it Refresh, since there are redraw bugs
2846         otherwise (we should take a look at that...)
2848         - do a little more refactoring work to share the body of code
2849         involved with the drop down.  it was duplicated in the code
2850         dealing with the listbox handling and in the code dealing with the
2851         UITypeEditors.
2853         - add a Capture to the dropdown form's control once it's
2854         displayed, and add a MouseDown handler that checks to make sure
2855         the position is inside the control.  If it's not, close the
2856         dropdown.  This fixes #78190.
2858         - in SetPropertyValueFromUITypeEditor, only call SetPropertyValue
2859         if the value is different than the initial value.
2860         
2861 2006-10-13  Andreia Gaita  <shana.ufie@gmail.com>
2863         * Control.cs: see #78650
2864         - Fixed GetNextControl for several cases:
2865                 - Changed FindFlatForward to return 
2866                 correct sibling control when more than one
2867                 control has same TabIndex as the currently 
2868                 focused one.
2869                 - Changed FindFlatBackward to loop children
2870                 from last to first and apply same logic as in
2871                 FindFlatForward
2872                 - Changed FindControlForward to search for
2873                 children when control is not a container
2874                 but has children, or search for siblings if
2875                 control is a container...
2876                 - Changed FindControlBackward   to continue
2877                 searching for child controls when hitting 
2878                 Panel-like parents
2879                 
2880         - Fixed Focus method to update ActiveControl
2881         (FocusTest.FocusSetsActive failure)
2882         
2883         * TabControl.cs:
2884         - Focus rectangle now refreshes when gaining
2885         or losing focus
2886         - Removed grab for Tab key on IsInputKey that 
2887         was keeping tab navigation from working (#78650)
2889 2006-10-13  Chris Toshok  <toshok@ximian.com>
2891         * PropertyGridView.cs:
2892         - Rewrite SetPropertyValue to loop over SelectedGridItem's
2893         SelectedObjects.
2895         - Deal with GridItem.Value == null a few places.
2897         * PropertyGrid.cs: 
2898         - replace the PopulateGridItemCollection with a pair of methods
2899         which compute the intersection of all the properties in the
2900         SelectedObjects array.  Fixes #79615.
2902         - Throw ArgumentException from set_SelectedObjects if there's a
2903         null in the array.
2905         - Add GetTarget method which can be used to traverse up the
2906         GridItem.Parent chain.  It depends on the assumption that
2907         selected_objects for different GridEntries are always in the same
2908         order (a safe assumption).  Use this method and loop over all the
2909         selected objects in the entry when calling RemoveValueChanged and
2910         AddValueChanged.
2911         
2912         * GridEntry.cs: Make this handle multiple selected objects.
2913         .Value returns null if not all the selected objects share the same
2914         value.
2916 2006-10-12  Jonathan Pobst  <monkey@jpobst.com>
2917         * ToolStrip.cs, ToolStripButton.cs, ToolStripComboBox.cs,
2918           ToolStripControlHost.cs, ToolStripItem.cs, ToolStripLabel.cs,
2919           ToolStripProfessionalRenderer.cs, ToolStripProgressBar.cs,
2920           ToolStripSeparator.cs, ToolStripSplitStackLayout.cs,
2921           ToolStripTextBox.cs: Add accessibility, fix attributes/API and
2922         add additional functionality.
2924 2006-10-12  Mike Kestner  <mkestner@novell.com>
2926         * ErrorProvider.cs : new ToolTipWindow ctor sig.
2927         * HelpProvider.cs : new ToolTipWindow ctor sig.
2928         * ToolTip.cs : remove ToolTip param from Window sig since it is
2929         not used.
2930         * ToolBar.cs : add tooltip support.  Fixes #79565.
2932 2006-10-12  Rolf Bjarne Kvinge  <rolfkvinge@ya.com>
2934         * ComboBox.cs: move the events in set_SelectedIndex to 
2935         after the call to HighlightIndex in order to avoid 
2936         possible recursion and subsequent problems with the call
2937         to HighlightIndex and include a range check in 
2938         set_HighlightIndex. Fixes #79588
2939         
2940 2006-10-12  Rolf Bjarne Kvinge  <rolfkvinge@ya.com>
2942         * MonthCalendar.cs: When FirstDayOfWeek is default set firstday 
2943         to ui thread's settings instead of sunday. 
2944         * ThemeWin32Classic.cs: Localize the day string. Fixes #79563
2946 2006-10-12  Rolf Bjarne Kvinge  <rolfkvinge@ya.com>
2948         * DateTimePicker.cs
2949         * MonthCalendar.cs
2950         * ThemeWin32Classic.cs: rewrote DateTimePicker to fix bug #78364
2951         and implement missing functionality (selecting different parts 
2952         of the date and edit them individually with the keyboard).
2953         
2954 2006-10-11  Chris Toshok  <toshok@ximian.com>
2956         * Control.cs (OnInvalidated): fix NRE relating to last change.
2958 2006-10-11  Chris Toshok  <toshok@ximian.com>
2960         * XplatUIX11.cs (SetWMStyles): make sure we include the MAXIMIZED
2961         atoms in _NET_WM_STATE here if the window is maximized.  We need
2962         to do this because we're *replacing* the existing _NET_WM_STATE
2963         property, so those atoms will be lost otherwise, and any further
2964         call to GetWindowState will return Normal for a window which is
2965         actually maximized.  Fixes #79338.
2967 2006-10-11  Jackson Harper  <jackson@ximian.com>
2969         * TextControl.cs: Special case for setting selection end to
2970         selection start, we basically kill the anchor.
2971         - some todo comments.
2973 2006-10-11  Chris Toshok  <toshok@ximian.com>
2975         * Control.cs: switch to using an "invalid_region" to track which
2976         parts of the image buffer need updating.  This is more code than
2977         the simple fix from r66532.  That version just attempted to always
2978         fill the entire buffer on redraw, which turns out to be
2979         inefficient when invalidating small rectangles.  This version
2980         simply adds the invalid rectangle to the invalid region.  When we
2981         get any WM_PAINT message we see if it can be filled using the
2982         image buffer, and if it can't (if the paint event's clip rectangle
2983         is visible in the invalid region) we first fill the image buffer.
2984         So, the image buffer is still a cache, we just fill it lazily.
2986         * PaintEventArgs.cs: remove the SetClipRectangle method, we don't
2987         need it any longer.
2989 2006-10-11  Chris Toshok  <toshok@ximian.com>
2991         * XplatUIX11.cs (SetWindowPos): we need to update both position as
2992         well as size after calling XMoveResizeWindow.  This keeps us from
2993         ignoring future SetWindowPos calls.  Fixes the disappearing
2994         DateTimePicker in the ToolBarDockExample from bug #72499.
2996 2006-10-11  Chris Toshok  <toshok@ximian.com>
2998         * TextBoxBase.cs: reorder things a bit when it comes to
2999         resizing-causing-recalculation.  we were recalculating the
3000         document when our position was changed, which shouldn't happen.
3001         We only care about size changes.  Clear up some more redundant
3002         recalculation calls while I'm at it.  This makes the toolbar dock
3003         example snappy when you're just dragging toolbars around (since it
3004         causes a relayout whenever you move one.)
3006 2006-10-11  Chris Toshok  <toshok@ximian.com>
3008         * ToolBarButton.cs (get_Rectangle): this only returns
3009         Rectangle.Empty if Visible == false, or Parent == null.
3010         Parent.Visible doesn't matter.
3012 2006-10-10  Chris Toshok  <toshok@ximian.com>
3014         * Control.cs, PaintEventArgs.cs: "internal set { .. }" isn't loved
3015         by .net 1.1, so switch to an internal method instead.
3017 2006-10-10  Chris Toshok  <toshok@ximian.com>
3019         * Control.cs (WM_PAINT): when a control is double buffered we draw
3020         initially to the ImageBuffer and then copy from there.  But when a
3021         parent control which has child controls is double buffered, the
3022         initial drawing doesn't encompass the entire ClientRectangle of
3023         the parent control, so we end up with uninitialized bits (this is
3024         easily seen by dragging the top toolbar in
3025         wf-apps/ToolBarDockExample to the right, quickly).  The fix is to
3026         manually set the ClipRectangle of the paint_event (only the one we
3027         use to populate the ImageBuffer) to ClientRectangle.  Fixes more
3028         of the nastiness in bug #72499.
3030         * PaintEventArgs.cs: Add an internal setter for ClipRectangle,
3031         which we use in Control.cs's WM_PAINT handling.
3033 2006-10-10  Jackson Harper  <jackson@ximian.com>
3035         * TextBoxBase.cs: Finish off the autoscrolling stuff.
3037 2006-10-10  Chris Toshok  <toshok@ximian.com>
3039         * Cursor.cs: Apply a slightly different patch to the one suggested
3040         in #79609.
3042 2006-10-10  Jackson Harper  <jackson@ximian.com>
3044         * MenuItem.cs: Make sure to put the mdi child in the hashtable,
3045         not the parent form.
3046         * TextControl.cs: use difference in old line count vs new count to
3047         calculate how many lines were added, this takes into account soft
3048         line breaks properly.
3050 2006-10-10  Chris Toshok  <toshok@ximian.com>
3052         * LinkLabel.cs: don't call MeasureCharacterRanges against a
3053         rectangle located at 0,0 and the size of the text.  Use
3054         ClientRectangle instead.  This fixes rendering of non-left aligned
3055         link labels.
3057 2006-10-10  Jackson Harper  <jackson@ximian.com>
3059         * TextBoxBase.cs: When we set the selection start position the
3060         caret.
3061         * TextControl.cs: Need to update the caret when we decrement it to
3062         zero.
3063         - Make sure that the selection_visible flag gets reset to false if
3064         the selection isn't visible.  Before this you could get it set to
3065         visible by changing the selection start, then changing the end to
3066         equal the start.
3068 2006-10-09  Jackson Harper  <jackson@ximian.com>
3070         * TreeView.cs: Don't update scrollbars when we aren't visible.
3071         * TreeNodeCollection.cs: Only need to update scrollbars if being
3072         added to an expanded visible node or the root node.
3074 2006-10-09  Chris Toshok  <toshok@ximian.com>
3076         * XplatUIX11.cs (SendMessage): fix NRE.
3078 2006-10-09  Jackson Harper  <jackson@ximian.com>
3080         * TextBoxBase.cs: Implement horizontal autoscrolling.
3081         * TextControl.cs: Add a movement types that allows moving forward
3082         and backwards without wrapping.
3084 2006-10-09  Mike Kestner  <mkestner@novell.com>
3086         * ListViewItem.cs : layout changes for wrapped LargeIcon labels
3087         with focus "expansion" of labels.  Fixes #79532 and then some.
3088         * ThemeWin32Classic.cs : add LineLimit to ListView label format
3089         when wrapping.
3091 2006-10-09  Jackson Harper  <jackson@ximian.com>
3093         * TextBoxBase.cs: Set the default max values to MaxValue since
3094         we use the scrollbar for autoscrolling and the default value is
3095         100.  If we don't do this the caret won't keep up with typing
3096         after about 18 characters.
3097         * TextControl.cs: Make sure the selection is offset by the
3098         viewport x.  This fixes selection when using auto scrolling.
3100 2006-10-07  Andreia Gaita <shana.ufie@gmail.com>
3101         
3102         * Form.cs: The active control should be selected after the 
3103         OnLoad so that any child control initialization that affects
3104         the selection is done. Fixes #79406
3106 2006-10-06  Chris Toshok  <toshok@ximian.com>
3108         * XplatUIX11.cs: This is perhaps a dangerous change, but it seems
3109         to have no evil effects.
3111         - Stop selecting StructureNotifyMask on non-toplevel windows.
3113           The only way children should be resized is by using the SWF api,
3114           and we already send WM_WINDOWPOSCHANGED messages in those cases.
3115           Toplevel windows can be interacted with via the window manager,
3116           and so we keep the input mask there.
3118           The other event StructureNotifyMask gives us (that we care
3119           about) is DestroyNotify.  The code is already structured such
3120           that it assumes we won't be getting a DestroyNotify event for
3121           the window we pass to XDestroyWindow (which is what
3122           StructureNotifyMask is supposed to guarantee.)  So, that code
3123           shouldn't be affected by this either.
3125         - Stop selecting VisibilityChangeMask altogether.
3127           We weren't doing anything with the resulting events anyway.
3128         
3129         This vastly reduces the number of X requests and events we see
3130         when resizing/laying out a large ui.
3132 2006-10-06  Chris Toshok  <toshok@ximian.com>
3134         * ScrollableControl.cs (DisplayRectangle): we need to take into
3135         account the DockPadding regardless of whether or not auto_scroll
3136         == true.  rework this slightly to this effect, and fix bug #79606,
3137         and part of #72499 (you can now see the drag handles and drag
3138         toolbars around).
3140 2006-10-06  Gert Driesen  <drieseng@users.souceforge.net>
3142         * ListViewItem.cs: Collections of selected and checked items are now
3143         dynamically rebuilt. Whenever an item is (un)checked or (de)selected
3144         we mark the collection "dirty".
3145         * ListView.cs: Marked collections readonly. Modified UpdateSelection
3146         to only clear SelectedItems when a new item is selected and MultiSelect
3147         is enabled. CheckedItems and SelectedItems now subscribe to Changed
3148         event of ListViewItemCollection, and mark its list dirty whenever
3149         that event is fire. This allows us to return selected/checked items 
3150         in the same order as they are in the Items collection. This matches
3151         the MS behavior.
3153 2006-10-06  Chris Toshok  <toshok@ximian.com>
3155         * NotifyIcon.cs (HandleMouseUp): only show the context menu on
3156         right mouse clicks.  Fixes bug #79593.
3158 2006-10-06  Chris Toshok  <toshok@ximian.com>
3160         * Splitter.cs: doh, fix splitters that don't want to cancel the
3161         movement when you drag them.  Also, impose the limits on the
3162         values we send to the SplitterMovingEvent.  Fixes #79598.
3164 2006-10-06  Jackson Harper  <jackson@ximian.com>
3166         * TextBoxBase.cs: Ignore whether or not the scrollbar is enabled,
3167         since we use this for auto scrolling also.
3169 2006-10-05  Chris Toshok  <toshok@ximian.com>
3171         * DataGridBoolColumn.cs: Nuke the code from ConcedeFocus.  I'm
3172         beginning to think that most datagrid column types don't need this
3173         method.  Fixes bug #79392.
3175 2006-10-05  Chris Toshok  <toshok@ximian.com>
3177         * DataGrid.cs: move back to a more lazy scheme for creating the
3178         CurrencyManager, so we aren't updating it every time you set
3179         either DataSource or DataMember.  Also, don't call
3180         RecreateDataGridRows if the currency manager hasn't changed.
3182 2006-10-05  Chris Toshok  <toshok@ximian.com>
3184         * ComboBox.cs: by the time the OnSelectionChangeCommitted event is
3185         emitted, SelectedIndex should already be updated.  Fixes bug
3186         #78929.
3188 2006-10-05  Jonathan Pobst  <monkey@jpobst.com>
3190         * ToolStripComboBox.cs, ToolStripControlHost.cs, ToolStripProgressBar,
3191           ToolStripTextBox.cs: Initial commit.
3192         * ToolStripItem.cs: Fixes for OnLayout, BackColor, Parent.
3194 2006-10-05  Jackson Harper  <jackson@ximian.com>
3196         * TabControl.cs: We need to invalidate the tab control area when
3197         new ones are added (duh).
3199 2006-10-03  Chris Toshok  <toshok@ximian.com>
3201         * Form.cs (ProcessDialogKey): if the focused control is in this
3202         form and is a button, call its PerformClick method here.  Fixes
3203         #79534.
3205 2006-10-04  Jackson Harper  <jackson@ximian.com>
3207         * TabPage.cs: Ignore setting of Visible, and add an internal
3208         method for setting the controls visibility.  TabPage's Visible
3209         property is a little strange on MS, this seems to make us
3210         compatible, and fixes cases where people set all the tab pages to
3211         visible.
3212         * TabControl.cs: Use the new internal setting on tab pages
3213         visibility.
3215 2006-10-03  Mike Kestner  <mkestner@novell.com>
3217         * ComboBox.cs : raise Click on ComboTextBox clicks. Fixes #79555.
3219 2006-10-03  Mike Kestner  <mkestner@novell.com>
3221         * ListView.cs : use is_visible instead of Visible to check if 
3222         scrollbars should be placed/sized.  Also some max_wrap_width
3223         love for LargeIcon view.  [Fixes #79533]
3225 2006-10-03  Atsushi Enomoto  <atsushi@ximian.com>
3227         * TextControl.cs :
3228           Make set_TextAlign() do actually update the align. Fixed #78403.
3230 2006-10-03  Chris Toshok  <toshok@ximian.com>
3232         * DataGrid.cs: fix a crash when switching datasources if the
3233         vertical scrollbar is at someplace other than Value = 0.  Also,
3234         reduce the number of recalculation passes we do in SetDataSource
3235         from 2 to 1.
3237 2006-10-03  Jackson Harper  <jackson@ximian.com>
3239         * TextBoxBase.cs: Move the if value the same bail check up, we
3240         don't want to empty the document if it is already empty, this
3241         seems to severly mess up the caret.  TODO: I should probably fix
3242         the empty statement to update teh caret somehow.
3244 2006-10-03  Chris Toshok  <toshok@ximian.com>
3246         * ThemeWin32Classic.cs, DataGrid.cs: some changes so that the
3247         incredibly hacky Windows.Forms FAQ autosize rows entry (it uses
3248         reflection, an internal row type, properties on said type, etc.)
3249         will work with our datagrid.  Fixes #79531.
3251 2006-10-03  Alexander Olk  <alex.olk@googlemail.com>
3253         * FileDialog.cs: Don't crash if a path is not accessible
3254           (System.UnauthorizedAccessException). Fixes #79569.
3255         * MimeIcon.cs: Workaround for a Uri bug. Unix paths/files can have
3256           a ':' too. Return unknown icon for those paths/files.
3258 2006-10-03  Sebastien Pouliot  <sebastien@ximian.com>
3260         * ToolTip.cs: Fix rare, but possible, NRE on MouseEnter when 
3261         GetContainerControl returns null.
3263 2006-10-02  Chris Toshok  <toshok@ximian.com>
3265         * XplatUIX11.cs (GetWindowState): use hwnd.client_window in the
3266         call to XGetWindowAttributes instead of "handle".  fixes an X
3267         error using notifyicon after the NotifyIconWindow to Form base
3268         class switch.
3270 2006-10-02  Chris Toshok  <toshok@ximian.com>
3272         * XplatUIX11.cs (QueryPointer): new function, encapsulating the
3273         server grab and looping we need to do to get down to the most
3274         deeply nested child window.
3275         (SetCursorPos): use QueryPointer instead of GetCursorPos, and call
3276         QueryPointer again after the WarpPointer so we can generate a
3277         proper (fake) MotionNotify event to be enqueued in the destination
3278         window's queue.
3279         (GetCursorPos): call QueryPointer.
3281         Fixes #79556.
3283 2006-10-02  Jackson Harper  <jackson@ximian.com>
3285         * NotifyIcon.cs: Derive the notify icon from a form, so things
3286         like FindForm work on it.
3287         - Swallow the WM_CONTEXTMENU message, since that is generated on
3288         mouse down, and context menu is a mouse up kinda guy.  I believe
3289         the correct fix here is probably to make the notify icon entirely
3290         NC area, but this seems to work fine for anyone not manipulating
3291         WndProc.
3293 2006-10-02  Jonathan Pobst  <monkey@jpobst.com>
3295         * ToolStrip.cs, ToolStripButton.cs, ToolStripItem.cs,
3296           ToolStripItemCollection.cs, ToolStripLabel.cs,
3297           ToolStripProfessionalRenderer.cs, ToolStripRenderer.cs,
3298           ToolStripSeparator.cs, ToolStripSplitStackLayout.cs:
3299           Initial implementation.
3300         * TextRenderer.cs: Provide padding to MeasureText.
3302 2006-10-02  Sebastien Pouliot  <sebastien@ximian.com>
3304         * ButtonBase.cs: Fix CreateAccessibilityInstance to return an instance
3305         of ButtonBaseAccessibleObject. Fix bug #79552.
3307 2006-10-02  Jackson Harper  <jackson@ximian.com>
3309         * MdiWindowManager.cs: When maximizing use the containers client
3310         rect, not it's bounds, so nc area is accounted correctly.
3311         - Use the parent form's size for the menu position, since the
3312         client isn't always the full form size.
3314 2006-10-01  Chris Toshok  <toshok@ximian.com>
3316         * ScrollableControl.cs: make sure neither right_edge or
3317         bottom_edge are < 0, since they're used as LargeChange for the
3318         horiz/vert scrollbars respectively.  Fixes #79539.
3320 2006-10-01  Chris Toshok  <toshok@ximian.com>
3322         * NotifyIcon.cs: add NotifyIconWindow.InternalRecreateHandle, so
3323         the xplatuix11 code can cause us to destroy/recreate our handle.
3325         * XplatUIX11.cs
3326         (SystrayAdd):
3327         - this code can be invoked many times for the same Hwnd.  Make
3328           sure we only destroy the client window once (the first time this
3329           method is called).  This fixes bug #79544.
3330         - Remove the call to the improperly bound XSync.  why we had two
3331           bindings to this, I will never know, but this call resulted in
3332           events being discarded from the queue(!).
3333         - correct a misunderstanding of _XEMBED_INFO - the second atom is
3334           not our current state but the state we wish to be in.  So, 0 if
3335           we don't want to be mapped.  Change it to 1.
3336         (SystrayRemove): The XEMBED spec makes mention of the fact that
3337         gtk doesn't support the reparent of client windows away from the
3338         embedder.  Looking at gtksocket-x11.c seems to agree with this.
3339         The only avenue we have for removing systray icons is to destroy
3340         them.  We don't want the handle to go away for good, though, so
3341         call InternalRecreateHandle on the NotifyIconWindow.  Fixes
3342         #79545.
3343         
3344 2006-10-01  Chris Toshok  <toshok@ximian.com>
3346         * Form.cs (WndProc): inline the native_enabled variable usage into
3347         the cases in which it's used.  Fixes #79536.
3349 2006-09-29  Mike Kestner  <mkestner@novell.com>
3351         * ListView.cs : toggle the selection state for ctrl clicks in 
3352         multiselect mode. [Fixes #79417]
3354 2006-09-29  Mike Kestner  <mkestner@novell.com>
3356         * ListView.cs : kill CanMultiSelect and refactor the selection
3357         code to support multiselection in the absence of mod keys. Steal
3358         arrow/home/end keys by overriding InternalPreProcessMessage to
3359         restore regressed keynav behavior.
3360         [Fixes #79416]
3362 2006-09-29  Jackson Harper  <jackson@ximian.com>
3364         * MdiClient.cs: Repaint the titlebars when the active window is
3365         changed.
3367 2006-09-29  Chris Toshok  <toshok@ximian.com>
3369         * Application.cs: when entering a runloop with a modal, make sure
3370         the hwnd is enabled.  Fixes #79480.
3372 2006-09-29  Chris Toshok  <toshok@ximian.com>
3374         * DataGrid.cs (CurrentCell): if we try to navigate to the add row
3375         when ListManager.CanAddRows == false, bump us back one.
3377         * DataGridColumnStyle.cs (ParentReadOnly): remove the
3378         listmanager.CanAddRows check.  This makes ArrayLists uneditable
3379         using a datagrid, which is not right.
3380         (SetColumnValueAtRow): call IEditable.BeginEdit if source[rowNum]
3381         is an IEditable, but call property_descriptor.SetValue regardless.
3382         fixes #79435.
3384 2006-09-29  Chris Toshok  <toshok@ximian.com>
3386         * DataGridBoolColumn.cs: we need to test equality in the face of
3387         possible null values (as is the case with the default NullValue).
3388         This patch keeps us from crashing in that case.
3390 2006-09-29  Jackson Harper  <jackson@ximian.com>
3392         * TreeNodeCollection.cs: Don't do a recalculate/updatescrollbars
3393         here, since it will get called for every node collection in the
3394         tree. This is now done in the treeview once the sorting is
3395         finished.
3396         * TreeView.cs: Recalculate the visible order, and update the
3397         scrollbars after sorting, set the top nope to the root so that the
3398         recalc actually works.
3400 2006-09-29  Chris Toshok  <toshok@ximian.com>
3402         * LinkLabel.cs: more handling of the default link collection in
3403         the face of LinkArea manipulation.  The default link collection
3404         contains 1 element (start=0,length=-1).  If the user sets LinkArea
3405         to anything and the links collection is the default, clear it.
3406         Then only add the link if its nonempty.  Fixes #79518.
3408 2006-09-29  Chris Toshok  <toshok@ximian.com>
3410         * LinkLabel.cs (CreatePiecesFromText): calculate the length of a
3411         piece correctly when we hit a '\n'.  Fixes #79517.
3413 2006-09-29  Chris Toshok  <toshok@ximian.com>
3415         * MimeIcon.cs, ThemeGtk.cs, X11DesktopColors.cs, XplatUIX11GTK.cs:
3416         change the binding of gdk_init_check to take two IntPtr's, and
3417         pass IntPtr.Zero for both of them.  Fixes #79520.
3419 2006-09-29  Mike Kestner  <mkestner@novell.com>
3421         * ComboBox.cs : raise TextChanged on ComboTextBox.TextChanged.
3422         [Fixes #78779]
3424 2006-09-28  Jackson Harper  <jackson@ximian.com>
3426         * XplatUIX11.cs: When translating NC messages make sure we go from
3427         whole window to screen, not client window to screen.
3428         * MdiClient.cs: Remove the calls to PaintWindowDecorations, this
3429         method doesn't exist
3430         - Skip over controls that aren't forms when arranging.
3432 2006-09-28  Jackson Harper  <jackson@ximian.com>
3434         * XplatUIWin32.cs: Clip the rect to the parent window.
3435         * XplatUIStructs.cs: Add clipping modes struct.
3436         * InternalWindowManager.cs: New private method that factors title
3437         bar heights in when calculating the pos of an NC mouse message.
3438         - Use SendMessage to force a paint when the form's size is changed
3439         instead of painting the decorations immediately.
3440         - Don't let the NC button click messages get to DefWndProc,
3441         because they will attempt to handle windowing themself, and this
3442         messes up z-order (it will put them in front of the scrollbars).
3443         * XplatUIX11.cs: Make sure that we don't reset window managers if
3444         we already have one (ie the window is an MDI window).
3446 2006-09-28  Chris Toshok  <toshok@ximian.com>
3448         * MainMenu.cs: fix #79405 by way of a disgusting hack.  all the
3449         menu code really needs going over.
3451 2006-09-27  Chris Toshok  <toshok@ximian.com>
3453         * XplatUIX11.cs (SetWMStyles): more metacity wonderment.  turns
3454         out metacity ignores the MAXIMIZE_HORZ/VERT messages unless the
3455         window is maximizable.  So, we need to make sure that even if we
3456         clear the border/wm frame of those functions, they're still
3457         available (basically, we remove the decoration without removing
3458         the function).  Half the fix for #79338.
3460 2006-09-27  Chris Toshok  <toshok@ximian.com>
3462         * DataGrid.cs (ProcessGridKey): implement Shift-Tab handling.
3463         Fixes bug #79515.
3465 2006-09-27  Chris Toshok  <toshok@ximian.com>
3467         * Splitter.cs: reorder things a bit so that we don't actually
3468         draw/move the splitter until after calling OnSplitterMoving.  This
3469         lets users cancel/disallow the movement by explicitly setting
3470         event.SplitX/SplitY.  Fixes #79372.
3472 2006-09-27  Jackson Harper  <jackson@ximian.com>
3474         * XplatUIX11.cs: Don't hide the caret when it is being destroyed,
3475         because it is most likely on a window being destroyed, and that
3476         will give us an X11 error.
3478 2006-09-27  Chris Toshok  <toshok@ximian.com>
3480         * PropertyGridView.cs: half of the fix for #78190.  Clicking on
3481         the dropdown button now toggles between showing and hiding the
3482         dropdown.  Also, get rid of dropdown_form_showing and just use
3483         dropdown_form.Visible.  We still don't do a grab, but I'll leave
3484         that part to someone who has handled Capture-fu before.
3486 2006-09-27  Chris Toshok  <toshok@ximian.com>
3488         * DataGrid.cs: return false if alt isn't pressed when '0' is
3489         pressed.  this keeps the '0' key from being swallowed, and fixes
3490         bug #79350.
3492 2006-09-27  Chris Toshok  <toshok@ximian.com>
3494         * ComboBox.cs: use Invalidate when scrolling the dropdown list.
3495         Calling Refresh (in response to a scrollbar event) screws up the
3496         scrollbar painting.  Fixes bug #78923.
3498 2006-09-27  Chris Toshok  <toshok@ximian.com>
3500         * Theme.cs (SystemResPool): make the "if hashtable[key] == null
3501         then insert into hashtable" blocks threadsafe.
3503 2006-09-27  Chris Toshok  <toshok@ximian.com>
3505         * MessageBox.cs (CreateParams): the styles should be |'ed with our
3506         baseclass's, since otherwise the
3507         ControlBox/MinimizeBox/MaximizeBox assignments above have no
3508         effect.  This gets the close button back in messageboxes.
3510 2006-09-27  Chris Toshok  <toshok@ximian.com>
3512         * XplatUIX11.cs: make StyleSet and ExStyleSet check == with the
3513         flag, not just != 0.  this makes flags that are actually multiple
3514         bits (like WS_CAPTION) work.  fixes bug #79508.
3516 2006-09-27  Jordi Mas i Hernandez <jordimash@gmail.com>
3518         * PageSetupDialog.cs: add support for getting and settings the 
3519         paper size, source and orientation.
3521 2006-09-26  Chris Toshok  <toshok@ximian.com>
3523         * XplatUIX11.cs (SetWMStyles): turns out when SYSMENU is not set
3524         and caption == "", we need to remove the resize handles as well as
3525         the title bar.
3527         * Control.cs (set_Text): turns out that setting Text on a form
3528         should change the WM styles on the window, since if ControlBox ==
3529         false, the only way to get a window border is to have a non-""
3530         Text property.  check winforms/forms/text.cs for an example.  so,
3531         call both XplatUI.SetWindowStyle and XplatUI.Text here to properly
3532         update both window styles and title.  This fixes a lot of dialogs
3533         (including the preferences dialog in MonoCalendar.)
3535 2006-09-26  Chris Toshok  <toshok@ximian.com>
3537         * XplatUIWin32.cs (SetParent): if parent == IntPtr.Zero (and the
3538         control isn't a Form), call Win32ShowWindow to hide the window,
3539         but don't update the control Visible property.  When we reparent
3540         back to a parent control, call SetVisible in order for the
3541         window's visibility to be reinstated.
3543         * XplatUIX11.cs (SetParent): if hwnd.parent == null, reparent to
3544         the FosterParent.
3546         * Control.cs (ControlCollection.Remove): remove that value.Hide()
3547         call for good, since it breaks MonoCalendar (and other things I'm
3548         sure.) Also, set all_controls to null *after* the owner calls,
3549         which end up regenerating it.
3550         (ChangeParent): allow new_parent to be == null, passing
3551         IntPtr.Zero down to XplatUI.
3553         this fixes #79294 the right way.
3555 2006-09-26  Mike Kestner  <mkestner@novell.com>
3557         * GridEntry.cs : internal SetParent method.
3558         * PropertyGrid.cs : attach to property changed on the proper
3559         target if we have a hierarchical grid with subobjects. Setup
3560         GridItem.Parent for hierarchical items.
3561         * PropertyGridView.cs : Set value on the correct target for
3562         hierarchical grids. [Fixes #78903]
3564 2006-09-26  Chris Toshok  <toshok@ximian.com>
3566         * Control.cs (ChildNeedsRecreating): this should return true if
3567         either we're being recreated and the child is in our list, or our
3568         parent is waiting for our recreation.
3570 2006-09-26  Chris Toshok  <toshok@ximian.com>
3572         * Control.cs (ControlCollection.Remove): reinstate the
3573         value.Hide() call as suggested in bug #79294.
3575 2006-09-26  Sebastien Pouliot  <sebastien@ximian.com>
3577         * XplatUIX11.cs: Fixed SetCursorPos to move the cursor to screen
3578         coordinates (versus a relative move).
3580 2006-09-26  Chris Toshok  <toshok@ximian.com>
3582         * Control.cs: rework child recreation a little bit.  It turns out
3583         that we race between the DestroyNotify the WM_DESTROY message.  If
3584         the parent gets its DestroyNotify before the child gets the
3585         WM_DESTROY message, the child ends up not recreating (since the
3586         parent finishes its recreation on DestroyNotify, and the child
3587         checks ParentIsRecreating.)
3589         So, instead we store off a list of all the child controls which
3590         need to be recreated when the parent control starts to recreate
3591         itself.  Then, when child controls get their WM_DESTROY message we
3592         check to see if they're in the parent's pending recreation list,
3593         and if so, we recreate.  This removes all dependency on ordering
3594         from the code and fixes the initial MonoCalendar upgrade dialog.
3595         
3596 2006-09-26  Jackson Harper  <jackson@ximian.com>
3598         * TextControl.cs: Use the Line to get the length of the line,
3599         since soft line breaks can change the end line.
3601 2006-09-26  Chris Toshok  <toshok@ximian.com>
3603         * Control.cs (ControlCollection.AddImplicit): don't add the
3604         control again if it's already in one of our lists.  This keeps us
3605         from adding controls over and over again for comboboxes when their
3606         handle gets recreated (as the combobox adds implicit controls in
3607         OnHandleCreated).  Fixes the X11 errors in bug #79480.
3609 2006-09-26  Jackson Harper  <jackson@ximian.com>
3611         * TextControl.cs: When deleting characters make sure that any
3612         orphaned zero lengthed tags get deleted.
3613         - Fix ToString for zero lengthed tags.
3615 2006-09-25  Jackson Harper  <jackson@ximian.com>
3617         * TextControl.cs: When getting a tag at the location there can be
3618         multiple tags at the same spot, these are 0-lengthed tags that
3619         appear when extra formatting has been stuck in a location.  We
3620         need to pull out the last of these 0 lengthed tags.
3622 2006-09-25  Jackson Harper  <jackson@ximian.com>
3624         * TextControl.cs: Fix print out in debug method.
3625         * TextBoxBase.cs: When text is set bail if we are setting to the
3626         previous value.
3627         
3628 2006-09-24  Alexander Olk  <alex.olk@googlemail.com>
3630         * FontDialog.cs: Fixed the up/down arrow keys issue from bug #79478.
3631           It is now possible to change the selected index in a FontXXXListBox
3632           with the up and down arrow keys from the FontXXXTextBoxes.
3633           Also, send the FontXXXTextBox mouse wheel event to the corresponding
3634           FontXXXListBoxes to match ms.
3636 2006-09-22  Sebastien Pouliot  <sebastien@ximian.com>
3638         * SystemInformation.cs: Return a clone of the theme's MenuFont because
3639         anyone can dispose it, anytime. All other properties returns enums, 
3640         structs or basic types so they don't need such tricks.
3642 2006-09-22  Jackson Harper  <jackson@ximian.com>
3644         * XplatUI.cs:
3645         * XplatUIWin32.cs:
3646         * Clipboard.cs:
3647         * DataFormats.cs:
3648         * XplatUIOSX.cs:
3649         * XplatUIDriver.cs: Update interface to add a primary selection
3650         flag, so the driver can use the primary selection buffer if
3651         needed.
3652         * XplatUIX11.cs: Allow the clipboard to retrieve from PRIMARY.
3654         * RichTextBox.cs: We need to supply the data object to paste now
3655         (so we can choose to supply CLIPBOARD or PRIMARY).
3656         * TextBoxBase.cs: Supply data object to paste (see above).
3657         - Middle click uses the primary selection data object.
3658         
3659 2006-09-21  Chris Toshok  <toshok@ximian.com>
3661         * XplatUIX11.cs: first little cleanup of the StyleSet (...) block
3662         of SetWMStyles.  It's still a rat's nest and is largely
3663         order-dependent which I dislike immensely.  This also fixes the X
3664         button disappearing from toplevel forms.
3666 2006-09-21  Mike Kestner <mkestner@novell.com>
3668         * ListBox.cs: move Jordi's click/dblclick raising code to the
3669         mouse up handler.
3671 2006-09-21  Jordi Mas i Hernandez <jordimash@gmail.com>
3673         * ListBox.cs: Fixes 79450
3675 2006-09-21  Mike Kestner <mkestner@novell.com>
3677         * TreeView.cs: guard against disposed conditions in UpdateScrollbars
3678         to deal with people updating the TreeNodeCollection after the tree
3679         is disposed.  "Fixes" 79330.
3681 2006-09-20  Jackson Harper <jackson@ximian.com>
3683         * TextControl.cs: Push the cursor record onto the undo stack
3684         before the delete action. This fixes 78651.
3686 2006-09-20  Jonathan Chambers  <joncham@gmail.com>
3688         * PropertyGridView.cs: Remove WindowStyles.WS_VISIBLE from
3689         CreateParams. Fixes 79329.
3691 2006-09-19  Chris Toshok  <toshok@ximian.com>
3693         * XplatUIX11.cs: a couple of blanket code massage passes to clean
3694         things up a bit.  First, get rid of the NetAtoms array (and the NA
3695         enum), and just embed the atoms as static fields.  Also, add a
3696         couple of functions (StyleSet and ExStyleSet) to clean up all the
3697         bitmask testing of styles.
3699         * X11Structs.cs: remove the NA enum, not needed anymore.
3700         
3701 2006-09-19  Chris Toshok  <toshok@ximian.com>
3703         * XplatUIX11.cs: apply Alexander's tool window fix for bug #79245
3704         (mapping them to _NET_WM_WINDOW_TYPE_UTILITY).  and add a little
3705         added cleanup to get MessageBox titles appearing again, which were
3706         broken by my earlier fix for caption-less/ControlBox-less windows.
3708 2006-09-18  Jonathan Pobst <monkey@jpobst.com>
3710         * ToolStripArrowRenderEventArgs.cs, ToolStripArrowRenderEventHandler.cs,
3711           ToolStripContentPanelRenderEventArgs.cs, ToolStripContentPanelRenderEventHandler.cs,
3712           ToolStripGripRenderEventArgs.cs, ToolStripGripRenderEventHandler.cs,
3713           ToolStripItemClickedEventArgs.cs, ToolStripItemClickedEventHandler.cs,
3714           ToolStripItemEventArgs.cs, ToolStripItemEventHandler.cs,
3715           ToolStripItemImageRenderEventArgs.cs, ToolStripItemImageRenderEventHandler.cs,
3716           ToolStripItemRenderEventArgs.cs, ToolStripItemRenderEventHandler.cs,
3717           ToolStripItemTextRenderEventArgs.cs, ToolStripItemTextRenderEventHandler.cs,
3718           ToolStripPanelRenderEventArgs.cs, ToolStripPanelRenderEventHandler.cs,
3719           ToolStripRenderEventArgs.cs, ToolStripRenderEventHandler.cs,
3720           ToolStripSeparatorRenderEventArgs.cs, ToolStripSeparatorRenderEventHandler.cs:
3721             Inital import.
3722         * ToolStripPanel.cs, ToolStripContentPanel.cs, ToolStripSeparator.cs,
3723           ToolStripButton.cs: Stubs needed for above.
3724         * ToolStrip.cs, ToolStripItem.cs: Stub a few variables/properties for above.
3726 2006-09-15  Chris Toshok  <toshok@ximian.com>
3728         * XplatUIX11.cs:
3729         - make the MessageQueues hashtable Synchronized.
3730         
3731         - SendMessage: if the Hwnd is owned by a different thread, use the
3732         AsyncMethod stuff to dispatch the SendMessage on the hwnd's
3733         thread.  Fixes bug #79201.
3735 2006-09-15  Chris Toshok  <toshok@ximian.com>
3737         * XplatUIX11.cs (SetWMStyles): rework the #79368 fix slightly.  If
3738         ControlBox == false, we disallow maximize/minimize/close.  If the
3739         form Caption is "" we also disallow move (and get rid of the Title
3740         decoration).  Unfortunately, regardless of how things are set,
3741         we're stuck with the Title and WM menu.
3743 2006-09-15  Chris Toshok  <toshok@ximian.com>
3745         * Application.cs: add locking around the static message_filters
3746         ArrayList, part of #79196.
3748 2006-09-15  Chris Toshok  <toshok@ximian.com>
3750         * XplatUIX11.cs (SetWMStyles): if Form.Text == "" and
3751         Form.ControlBox == false, the window has no titlebar nor resize
3752         handles.  fixes bug #79368.
3754 2006-09-15  Chris Toshok  <toshok@ximian.com>
3756         * TextBoxBase.cs: in CalculateScrollBars make sure LargeChange is
3757         >= 0.  Fixes bug #79370.
3759 2006-09-15  Jonathan Pobst <monkey@jpobst.com>
3760         * FlowLayoutPanel.cs, FlowLayoutSettings.cs: Initial commit.
3761         * Control.cs:
3762             Add properties: LayoutEngine, Margin, DefaultMargin.
3763             Add method: GetPreferredSize.
3764             Move layout logic from PerformLayout to layout engines. 
3766 2006-09-13  Chris Toshok  <toshok@ximian.com>
3768         * XplatUIX11.cs: more destroy work.  Jackson pointed out that my
3769         fix for #79326 broke #78718, so this change addresses that.
3771         - in SendWMDestroyMessages remove the call to
3772         CleanupCachedWindows, since we might be recreating the control and
3773         need to maintain the references to right Hwnd handles.  Also, set
3774         the zombie flag to true for each of the children in the hierarchy
3775         instead of calling hwnd.Dispose.  This will cause GetMessage to
3776         ignore all events for the window except for DestroyNotify.
3778         - In GetMessage, ignore messages except for DestroyNotify for
3779         zombie hwnds.
3780         
3781         * Control.cs: revert the is_recreating fix from the last
3782         ChangeLog.  It's definitely "right", but it breaks switching from
3783         an MDI form to a non-MDI form.  Will need to revisit that.
3785         * Hwnd.cs: add a zombie flag, which means "the
3786         client_window/whole_window handles are invalid, but we're waiting
3787         for the DestroyNotify event to come in for them".  Set the flag to
3788         false explicitly if setting WholeWindow/ClientWindow, and also
3789         when Disposing.
3790         
3791 2006-09-13  Chris Toshok  <toshok@ximian.com>
3793         * XplatUIX11.cs: rework window destruction slightly.
3795         - when destroying the windows associated with a control, we don't
3796         need 2 separate XDestroyWindow calls.  Just the one for the
3797         whole_window (or for client_window if whole_window is somehow
3798         IntPtr.Zero -- can this happen?) is enough.
3800         - reworked SendWMDestroyMessages slightly, so we always dispose
3801         the child control hwnd's after sending the messages.
3802         
3803         - refactored out the ActiveWindow/FocusWindow/Caret clearing from
3804         the two places it was used (one was even using hwnd.Handle and the
3805         other hwnd.client_window.  ugh), adding another call in
3806         SendWMDestroyMessages.  We need this new call because now the
3807         DestroyNotify events in the queue will be ignored for the child
3808         controls (as their hwnd's were disposed, and the window id's
3809         removed from the hashtable in SendWMDestroyMessages.) fun, eh?
3811         - this fixes bug #79326.
3813 2006-09-13  Chris Toshok  <toshok@ximian.com>
3815         * Control.cs: don't always set is_recreating to false at the end
3816         of RecreateHandle, since sometimes we're not done (and won't be
3817         until WndProc handles the WM_DESTROY message).  Also, set
3818         is_recreating to false in the WM_DESTROY handling code.  Part of
3819         the fix for bug #79326.
3821 2006-09-13  Miguel de Icaza  <miguel@novell.com>
3823         * X11DesktopColors.cs: Start the droppage of debugging messages.
3825         * FileDialog.cs: Store the configuration file in ~/.mono/mwf_config
3827 2006-09-13  Jonathan Pobst <monkey@jpobst.com>
3829         * SplitContainer.cs, SplitterPanel.cs: Initial implementation [2.0].
3831 2006-09-12  Chris Toshok  <toshok@ximian.com>
3833         * DataGrid.cs (get_ListManager): if the list_manager is null, try
3834         to create it using SetDataSource.  Fixes bug #79151.
3836 2006-09-11  Chris Toshok  <toshok@ximian.com>
3838         * XEventQueue.cs: add a DispatchIdle property.
3840         * XplatUIX11.cs (UpdateMessageQueue): only emit the Idle event if
3841         either the queue is null, or the queue has DispatchIdle set to
3842         true.
3843         (DoEvents): set queue.DispatchIdle to false around the
3844         peek/translate/dispatch message loop in this method.  This keeps
3845         Application.Doevents from emitting idle events.  Part of the fix
3846         for #78823.
3848 2006-09-11  Chris Toshok  <toshok@ximian.com>
3850         * DataGrid.cs (set_DataSource): make this work for both the
3851         winforms/datagrid test and ReportBuilder.  It seems as though when
3852         we've created a ListManager (or maybe it's if we have a
3853         BindingContext?), when we set the DataSource it clears the
3854         DataMember to "".  otherwise we reuse the datamember.  Fixes bug
3855         #79333.
3857 2006-09-11  Chris Toshok  <toshok@ximian.com>
3859         * XplatUIX11.cs: deal with queue being null, which happens in all
3860         the Clipboard functions.  Fixes one of the two problems mentioned
3861         in #78612.
3863 2006-09-11  Chris Toshok  <toshok@ximian.com>
3865         * MenuAPI.cs: rework OnMouseUp a bit so that releasing the mouse
3866         button on various spots (including outside the menu) works closer
3867         to MS, and doesn't crash.  Fixes #79343.
3869 2006-09-11  Gert Driesen  <drieseng@users.sourceforge.net>
3871         * ListView.cs: Do not initialize item_sorter in init. To match MS,
3872         return null for ListViewItemSorter if View is SmallIcon or LargeIcon
3873         and the internal comparer is set. When a new ListViewItemSorter is set,
3874         sort the items. Use Enum.IsDefined to verify whether a valid SortOrder
3875         was specified. No further processing is necessary if SortOrder is set
3876         to it's current value. If Sorting is modified to None, and View is
3877         neither SmallIcon nor LargeIcon then: on 2.0 profile set item_sorter
3878         (either custom or our internal ItemComparer) to null, on 1.0 profile
3879         only set item_sorter to null if its our internal IComparer. If Sorting
3880         is modified to Ascending or Descending, then use our internal IComparer
3881         if none is set, and if the current IComparer is our internal one then:
3882         on 2.0 profile always replace it with one for new Sorting, and on 1.0
3883         profile only use new Sorting if view is not SmallIcon or LargeIcon. Use
3884         Enum.IsDefined to verify whether a valid View value is specified in
3885         its setter. Automatically sort listview items when listview is
3886         created. In Sort, do nothing if ListView is not yet created, or if
3887         no item_sorter is set (no Sorting was set, Sorting was explicitly set
3888         to None or ListViewItemSorter was set to null). Added Sort overload
3889         taking a bool to indicate whether the ListView should be redrawn when
3890         items are sorted (we use this in ListViewItemCollection to avoid double
3891         redraws). Modified our internal IComparer to take the sort order into
3892         account. In Add and AddRange methods of ListViewItemCollection, also
3893         call Sort if Sorting is None (necessary for SmallIcon and LargeIcon
3894         view), but use overload with noredraw option to avoid double redraw.
3895         On 2.0 profile, throw NotSupportedException when setting CheckBoxes to
3896         true when View is Tile, and do the same when attempting to set View to
3897         Tile when CheckBoxes is true. Avoid maintaining separate ArrayLists
3898         for selected/checked indices, as it involves overhead when sorting is
3899         done while these collections are not used all that often. Instead
3900         we'll build the indices on demand. Modified IList implementation of
3901         CheckedIndexCollection to use public methods if object is int.
3902         Modified CheckedListViewItemCollection to hide checked items if
3903         ListView.CheckBoxes is false. Removed LAMESPEC remark in 
3904         ListViewItemCollection as the .NET SDK docs have been fixed. Modified
3905         IList implementation in SelectedIndexCollection to use public methods
3906         if object is int. Modified SelectedListViewItemCollection to hide
3907         selected items if listview is not yet created.
3908         * ListViewItem.cs: CheckedIndices list no longer needs to be
3909         maintained separately (see ListView changes). Also clone font, fixes
3910         test failure.
3912 2006-09-11  Mike Kestner  <mkestner@novell.com>
3914         * ComboBox.cs: if we are updating the contents of the currently
3915         selected index, refresh the control or the textbox selection.
3916         [Fixes #79066]
3918 2006-09-11  Mike Kestner  <mkestner@novell.com>
3920         * ComboBox.cs (UpdateBounds): use SetBounds not SetBoundsCore since 
3921         the 'specified' logic has been moved there.  This seems like a bug 
3922         in Control.cs, since our current SetBoundsCore completely ignores 
3923         the specified parameter.  Peter's commit seems to indicate that is 
3924         the way the MS control implementation works.  [Fixes #79325]
3926 2006-09-10  Jonathan Chambers  <joncham@gmail.com>
3928         * XplatUI.cs: Set default_class_name to be composed
3929         of current domain id. This allows MWF to be loaded in multiple
3930         domains on Win32.
3932 2006-09-09  Miguel de Icaza  <miguel@novell.com>
3934         * X11Keyboard.cs: If we are unable to obtain the input method, do
3935         not call CreateXic to create the input context.   Should fix
3936         #78944/79276.
3938 2006-09-08  Alexander Olk  <alex.olk@googlemail.com>
3940         * MimeIcon.cs: Rewrote major parts. Dropped KDE support for now.
3941           Simplified gnome support by adding more pinvokes to get the
3942           icon for a file or mime type.
3944 2006-09-08  Jackson Harper  <jackson@ximian.com>
3946         * MenuAPI.cs: Deslect popup context menu items before closing the
3947         window, so that you don't see the previously selected item
3948         selected when you reopen the menu.
3949         * TextControl.cs: Update the cursor position even if we don't have
3950         focus.  This fixes typing in things like the ComboBox.  I'm not
3951         totally sure we should always set the visibility if we don't have
3952         focus, but couldn't find any corner cases where the cursor showed
3953         up when it shouldn't.
3955 2006-09-08  Chris Toshok  <toshok@ximian.com>
3957         * X11Keyboard.cs: In UpdateKeyState vkey can be any integer, but
3958         our arrays are length 256.  & 0xff before indexing.  Fixes the
3959         crash in bug #78077.
3960         
3961 2006-09-08  Carlos Alberto Cortez <calberto.cortez@gmail.com>
3963         * ThemeWin32Classic.cs: 
3964         * DateTimePicker.cs: Draw check box if DateTimePicker.ShowCheckBox
3965         is true. Handle that check box too.
3967 2006-09-07  Chris Toshok  <toshok@ximian.com>
3969         * MenuAPI.cs: move the PerformClick call to OnMouseUp.  Fixes bug
3970         79244.
3972 2006-09-07  Chris Toshok  <toshok@ximian.com>
3974         * Control.cs: in set_BackColor only do the work if
3975         background_color != value.
3977         * XplatUIX11.cs: move the clearing of invalid areas (both client
3978         and nc) to the same block of code where we set (nc_)expose_pending
3979         to false.  That is, move it from PaintEventEnd to PaintEventStart,
3980         so things that cause invalidates from within OnPaint will trigger
3981         another call to OnPaint.  Fixes bug #79262.
3983 2006-09-07  Alexander Olk  <alex.olk@googlemail.com>
3985         * Theme.cs: Use correct icon for UIIcon.PlacesPersonal
3986         * FileDialog.cs: Fix typo
3988 2006-09-07  Jackson Harper  <jackson@ximian.com>
3990         * ThemeWin32Classic.cs:  oops, forgot to commit.  Draw the images
3991         for tab pages if they have any.
3993 2006-09-06  Mike Kestner  <mkestner@novell.com>
3995         * Splitter.cs: use the "current" rect when finishing drag handle
3996         to avoid an artifact demonstrated by resedit.exe.  [Fixes #79251]
3998 2006-09-06  Mike Kestner  <mkestner@novell.com>
4000         * Splitter.cs: draw the drag handle at X or Y instead of 0 to deal
4001         support offset splitters. [Fixes #79298]
4003 2006-09-06  Alexander Olk  <alex.olk@googlemail.com>
4005         * Mime.cs: Fixed a bug that could override the global mime type
4006           result.
4008 2006-09-05  Jackson Harper  <jackson@ximian.com>
4010         * TabControl.cs: Better calculation method for setting the slider
4011         pos. Prevents crashes on really wide tabs.
4012         - Draw Image on tab pages if an image list is used.
4014 2006-09-02  Carlos Alberto Cortez <calberto.cortez@gmail.com>
4016         * MonthCalendar.cs: When Font changes, the Size should be
4017         updated to fit the new font's space requirements.
4019 2006-09-02  Alexander Olk  <alex.olk@googlemail.com>
4021         * ListBox.cs: If the items are cleared with Items.Clear set
4022           top_index to 0.
4024 2006-09-01  Carlos Alberto Cortez <calberto.cortez@gmail.com>
4026         * MonthCalendar.cs: Handle arrow keys as input keys. Also
4027         fire DateChanged event instead of DateSelected event when
4028         the date was changed by keyboard interaction.
4030 2006-09-01  Carlos Alberto Cortez <calberto.cortez@gmail.com>
4032         * DateTimePicker.cs: Handle DateChanged for the associated
4033         month_calendar control, and set month_calendar.Font from 
4034         OnFontChanged method, as well as resize the height of the
4035         control when needed. Make PreferredHeight proportional.
4037 2006-09-01  Chris Toshok  <toshok@ximian.com>
4039         * DataGrid.cs: grr, stop overthinking the DataMember/DataSource
4040         properties.
4042         * BindingContext.cs (HashKey.GetHashCode): use ^ instead of +.
4044 2006-09-01  Peter Dennis Bartok  <pbartok@novell.com> 
4046         * FileDialog.cs: Set ClientSize instead of window size, to allow space
4047           for decorations (Fixes #79219)
4049 2006-09-01  Mike Kestner  <mkestner@novell.com>
4051         * ComboBox.cs: first stab at sorting plus some selection handling
4052         fixes to bring us more in line with MS behavior.  Also switches back
4053         to index based selection.  Alternative patches for index-based 
4054         selection were provided by Jackson Harper, Carlos Alberto Cortez, 
4055         and latency@gmx.de on bug 78848.  I assume they were similar to this
4056         code I've had simmering in my tree forever.
4057         [Fixes #78848]
4059 2006-09-01  Chris Toshok  <toshok@ximian.com>
4061         * CurrencyManager.cs (ListChangedHandler): in the ItemAdded case,
4062         when setting list position guard against ending up with a -1 index
4063         (the other part of the fix for #78812).  Should probably make sure
4064         we don't need the analogous fix in the ItemDeleted case.
4066         * DataGrid.cs:
4067         - in SetDataSource, work around the fact that the way
4068         OnBindingContextChanged is invoked will cause us to re-enter this
4069         method.  I'll remove the hack once I investigate
4070         OnBindingContextChanged.
4072         - fix the logic in set_DataSource and set_DataMember (basically
4073         what to do if the other of the two is null.)
4074         
4075         - in OnListManagerItemChanged, we need to take into account the
4076         edit row when deciding whether or not to call RecreateDataGridRows
4077         (part of the fix for #78812).
4079 2006-09-01  Jackson Harper  <jackson@ximian.com>
4081         * Splitter.cs: Don't do anything if there is no control to affect
4082         (prevents us from crashing in weird tet cases).
4083         * TreeView.cs: Bounding box for the mouse movement reverting
4084         focus/selection back to previously selected node.  This matches
4085         MS, and makes the tree a lot more useable.
4086         * GroupBox.cs: Instead of drawing over the lines of the groupbox,
4087         use clipping so they are not drawn.  This fixes when the control
4088         is set to have a transparent background, or if it was over an
4089         image.
4091 2006-09-01  Alexander Olk  <alex.olk@googlemail.com>
4093         * MimeIcon.cs: Improved handling for reading default icons when
4094           using gnome (2.16 made it necessary). Check and read svg icons
4095           first, then 48x48 and then 32x32 icons.
4097 2006-08-31  Chris Toshok  <toshok@ximian.com>
4099         * DataGridTextBoxColumn.cs: only hide the textbox if it's still
4100         visible.
4102         * DataGridTextBox.cs: Pass Tab's up to the datagrid by calling
4103         ProcessKeyPreview.  Fixes part of #77806.
4105         * DataGrid.cs: big patch.
4107         - revert the queueing up of DataSource/DataMember if inside
4108         BeginInit/EndInit calls.  That's not the way the datagrid achieves
4109         its delayed databinding.  Instead, call SetDataSource in
4110         OnBindingContextChanged.  This mimic's MS's behavior, and fixes
4111         #78811.
4113         - Also, it wasn't mentioned in #78811, but the test case exhibits
4114         behavior that was lacking in our datagrid implementation - Columns
4115         that have mapping names that don't exist in the datasource's
4116         properties aren't shown.  Yuck.  To fix this I added the bound
4117         field to the column style, and basically any calculation to figure
4118         out anything about columns uses a loop to find the bound columns.
4119         still need to investigate if I can cache an array of the bound
4120         columns or if the indices must be the same.
4122         - When setting CurrentCell, we no longer abort if the cell being
4123         edited was in the add row.  This fixes the other part of #77806.
4125         - The new code also fixes #78807.
4126         
4127         * ThemeWin32Classic.cs: perpetrate the same disgusting
4128         column.bound field hack, and only render bound fields.
4130 2006-08-31  Chris Toshok  <toshok@ximian.com>
4132         * DataGridColumnStyle.cs: add bound field.  this field is true if
4133         the datasource has a property corresponding to the mapping name.
4135         * DataGridTableStyle.cs: set the bound field on the column styles
4136         depending on whether or not we have a column for that property.
4138 2006-08-31  Peter Dennis Bartok  <pbartok@novell.com> 
4140         * Splitter.cs (SetBoundsCore): Don't ignore width/height of the 
4141           splitter control (fixes #79228)
4143 2006-08-31  Chris Toshok  <toshok@ximian.com>
4145         * DataGridColumnStyle.cs: we need to delay the assignment of
4146         property descriptor until the last possible moment due to the lazy
4147         databinding stuff in the datagrid.  Also, fix the exceptions
4148         thrown by CheckValidDataSource to match MS.
4150 2006-08-31  Jackson Harper  <jackson@ximian.com>
4152         * Form.cs: When activated select the active control, if there is
4153         no active control, we select the first control.
4154         * XplatUIX11.cs: If there is no focus control when we get a
4155         FocusIn event, find the toplevel form and activate it.  This
4156         occurs when you popup a window, it becomes the focus window, then
4157         you close that window, giving focus back to the main window.
4159 2006-08-21  Carlos Alberto Cortez <calberto.cortez@gmail.com>
4161         * MonthCalendar.cs: 
4162         * ThemeWin32Classic.cs: Cache Font in bold style, as well
4163         as StringFormat with Center alignments in MonthCalendar,
4164         instead of creating new ones when drawing the control. 
4165         Also, draw the month name in bold style.
4167 2006-08-30  Peter Dennis Bartok  <pbartok@novell.com> 
4169         * Control.cs:
4170           - PerformLayout(): It would seem MS performs the fill even if the 
4171             control is not visible (part of #79218 fix)
4172           - ResetBackColor(): Use the setter to reset the color, to allow
4173             overriders to catch the change.
4174         * Form.cs:
4175           - .ctor: Call UpdateBounds to adjust client rectangle (part of #79218 fix)
4176           - CreateHandle(): dito (part of $79218 fix)
4177           - Don't set an icon if we have a dialog
4178         * ScrollableControl.cs:
4179           - set_AutoScrollMinSize: Setting the property enables AutoScroll (#79218)
4180           - ScrollIntoView(): No need to scroll if control is already visible
4181             (resolves fixme and fixes #79218)
4183 2006-08-30  Carlos Alberto Cortez <calberto.cortez@gmail.com>
4185         * MonthCalendar.cs: Change proportions in SingleMonthSize
4186         to match the aspect of the original control.
4188 2006-08-29  Alexander Olk  <alex.olk@googlemail.com>
4190         * XplatUIX11.cs: Fix for a metacity/X problem where windows don't
4191           get updated when they get maximized.
4193 2006-08-29  Peter Dennis Bartok  <pbartok@novell.com> 
4195         * XplatUIX11.cs: Handle windows with no border (Fixes part of #79160)
4197 2006-08-29  Chris Toshok  <toshok@ximian.com>
4199         * XplatUIX11.cs: when destroying the FocusWindow, send KILLFOCUS.
4201 2006-08-29  Jackson Harper  <jackson@ximian.com>
4203         * TreeView.cs: Need to track selected node and highlighted node,
4204         they aren't always the same thing, when the mouse is down on a
4205         node it is hilighted, but not selected yet.
4206         - Do the HideSelection stuff right
4207         - Need to focus on rbutton mouse down. And redraw selection when
4208         right click is mouse upped.
4210 2006-08-29  Mike Kestner  <mkestner@novell.com>
4212         * ThemeWin32Classic.cs: draw selections for columns in FullRowSelect
4213         when SubItems.Count < Columns.Count.  [Fixes #79167]
4215 2006-08-28  Peter Dennis Bartok  <pbartok@novell.com> 
4217         * TextControl.cs (FindCursor): Fix math error (Fixes #78402)
4219 2006-08-28  Peter Dennis Bartok  <pbartok@novell.com>
4221         * XplatUIX11.cs: Preempt the roundtrip for getting the location back
4222           from X. Only send based on ConfigureNotify if we don't have the
4223           correct location in hwnd (if the window manager moved us)
4225 2006-08-28  Mike Kestner  <mkestner@novell.com>
4227         * ListView.cs: remove a TODO. 
4228         * ThemeWin32Classic.cs: implement HideSelection support for ListView.
4229         [Fixes ListView part of #79166]
4231 2006-08-28  Mike Kestner  <mkestner@novell.com>
4233         * ListView.cs: move wheel handler to parent since it is focused
4234         instead of the item_control now.  [Fixes #79177]
4236 2006-08-28  Mike Kestner  <mkestner@novell.com>
4238         * ThemeWin32Classic.cs: only highlight subitems in fullrowselect
4239         when the control is focused. [Fixes #79171]
4241 2006-08-28  Mike Kestner  <mkestner@novell.com>
4243         * ListView.cs: size the item and header controls for empty and
4244         unscrollable views.
4245         * ThemeWin32Classic.cs: draw disabled backgrounds.
4246         [Fixes #79187]
4248 2006-08-28  Chris Toshok  <toshok@ximian.com>
4250         * Form.cs: remove unused "active_form" static field.
4252         * Hwnd.cs: lock around accesses to static windows collection.
4254         * Application.cs: lock threads in Exit ().
4256 2006-08-28  Chris Toshok  <toshok@ximian.com>
4258         * NativeWindow.cs: lock around accesses to window_collection.
4259         
4260 2006-08-28  Chris Toshok  <toshok@ximian.com>
4262         * Control.cs: err, fix this the right way, by locking on controls
4263         when using it.  not by making it synchronized.
4265 2006-08-28  Chris Toshok  <toshok@ximian.com>
4267         * Control.cs: make the static "controls" field synchronized, as it
4268         gets updated from multiple threads.
4270 2006-08-27  Peter Dennis Bartok  <pbartok@novell.com>
4272         * XplatUIX11.cs: PostQuitMessage is thread-specific not app-specific.
4273           Prevent other threads from exiting when calling thread sets quit state.
4274         * XEventQueue.cs: Added PostQuitState property
4276 2006-08-27  Chris Toshok  <toshok@ximian.com>
4278         * AsyncMethodData.cs: add a slot for the window handle.
4280         * XplatUIX11.cs (SendAsyncMethod): send the event to the right
4281         window (the destination control's window, not the foster window).
4283         * Control.cs (BeginInvokeInternal): store the window's handle in
4284         the AsyncMethodData.
4285         
4287 2006-08-27  Peter Dennis Bartok  <pbartok@novell.com>
4289         * XplatUIX11.cs:
4290           - PostQuitMessage: Removed resetting S.D display handle, we might have
4291             another loop started after calling PostQuitMessage (Fixes #79119)
4292           - Created destructor to reset S.D handle
4294 2006-08-27  Peter Dennis Bartok  <pbartok@novell.com> 
4296         * XplatUIX11.cs (SetCursor): Issue flush after setting the cursor (#79168)
4298 2006-08-23  Peter Dennis Bartok  <pbartok@novell.com>
4300         * TextControl.cs (Insert): Update the caret position even if we don't
4301           have a handle yet, just don't call the driver in that case.
4302         * TextBoxBase.cs (set_SelectedText): Set the Start and End selection
4303           to the end of the new selection text (Fixes #79184)
4305 2006-08-23  Peter Dennis Bartok  <pbartok@novell.com> 
4307         * Form.cs (Activate): Only activate if the handle is created)
4308         * Control.c:
4309           - Mark window as invisible when it's disposed
4310           - Check if window handle is created when setting window visible, 
4311             instead of relying just on the is_created variable
4312           - Check if object is disposed when creating the control (Fixes #79155)
4314 2006-08-23  Peter Dennis Bartok  <pbartok@novell.com>
4316         * ScrollableWindow.cs (ScrollWindow): Don't actually perform layouting
4317           when allowing layout again. Otherwise we re-generate the anchoring 
4318           distance to the border again and actually alter what the user wanted
4319           This is ugly, it'd be better if we used DisplayRectangle instead of
4320           ClientRectangle for Control.UpdateDistances, but that causes us to
4321           have other problems (initial anchoring positons would be wrong)
4322           (Fixes #78835)
4324 2006-08-23  Peter Dennis Bartok  <pbartok@novell.com> 
4326         * Control.cs:
4327           - The size and location setters shouldn't go directly to 
4328             SetBoundsCore, but to SetBounds, which triggers layout on the
4329             parent, then calls SetBoundsCore. (Related to fix for #78835)
4330           - SetBounds: Moved actual location update code into this function
4331             from SetBoundsCore, to match MS. Added call to PerformLayout if
4332             we have a parent (to trigger resizing of anchored parents if the 
4333             child size has changed (see testcase for #78835) 
4334         * ListBox.cs, Form.cs: Call SetBounds instead of SetBoundsCore to match 
4335           new control code
4336         * ScrollableControl.cs (CalculateCanvasSize): Use shortcut variable
4338 2006-08-23  Peter Dennis Bartok  <pbartok@novell.com>
4340         * XplatUIX11.cs: Don't reset the DisplayHandle that's stored in
4341           System.Drawing when a toplevel window gets closed; there might
4342           be other toplevel windows belonging to the same app (Fixes #78052)
4344 2006-08-26  Alexander Olk  <alex.olk@googlemail.com>
4346         * FileDialog.cs: After reading FileDialog settings from mwf_config
4347           use Desktop prefix only if a real folder doesn't exist anymore.
4348         * FontDialog.cs: Added char sets.
4349           It is now possible to select the font, size or style with the
4350           textboxes.
4352 2006-08-25  Kornél Pál  <kornelpal@gmail.com>
4354         * PrintPreviewDialog.cs: Use assembly name constants.
4356 2006-08-23  Peter Dennis Bartok  <pbartok@novell.com>
4358         * XplatUIWin32.cs (ScrollWindow): Use clipping rectangle arg (prevents
4359           scrollbar from whacking it's buttons)
4361 2006-08-24  Chris Toshok  <toshok@ximian.com>
4363         * ScrollableControl.cs: fix #78271.  There's a lot of misc stuff
4364         in this patch (aggregating setting Left/Top/Width/Height to
4365         setting Bounds on the scrollbars), but the crux of the fix is in
4366         Recalculate, where we scroll by the remaining scroll_position if
4367         we're hiding a scrollbar.  The 2*$5 reward in the comment is
4368         serious.
4370 2006-08-24  Jackson Harper  <jackson@ximian.com>
4372         * MdiClient.cs:
4373         * MdiWindowManager.cs: If the form is made a non-mdi window we
4374         need to remove the form closed event so that closing forms works
4375         correctly.
4377 2006-08-24  Jackson Harper  <jackson@ximian.com>
4379         * Control.cs: Make IsRecreating internal so that the driver can
4380         check it
4381         - Temporarily remove the Hide when controls are removed, its
4382         making a whole bunch of things not work because visibility isn't
4383         getting reset elsewhere correctly
4384         * Form.cs: Need to do a full handle recreation when the mdi parent
4385         is set.
4386         * XplatUIX11.cs: If we are recreating handles don't dispose the
4387         HWNDs.  What was happening is the handles were being recreated in
4388         SendWMDestroyMessages, but then flow continued on in that method
4389         and destroyed the new handles.
4391 2006-08-23  Jackson Harper  <jackson@ximian.com>
4393         * Form.cs: MdiClient is always at the back of the bus
4394         * Control.cs: When the order of items in the collection is changed
4395         we need to reset the all_controls array
4396         - do the same sorta setup thats done when adding a control when a
4397         control is set on the collection.
4399 2006-08-23  Peter Dennis Bartok  <pbartok@novell.com>
4401         * TextBoxBase.cs (get_Text): Return an empty array if our document
4402           is empty (fixes #79052)
4404 2006-08-23  Peter Dennis Bartok  <pbartok@novell.com> 
4406         * Control.cs: We should call IsInputChar on only on WM_CHAR but not
4407           on WM_SYSCHAR messages (fixes #79053)
4409 2006-08-23  Chris Toshok  <toshok@ximian.com>
4411         * DataGrid.cs: fix flickering when scrolling vertically.
4413 2006-08-23  Chris Toshok  <toshok@ximian.com>
4415         * DataGrid.cs (EndEdit): only invalidate the row header when we
4416         need to.
4418 2006-08-23  Chris Toshok  <toshok@ximian.com>
4420         * ThemeWin32Classic.cs: fix the clip munging of the datagrid paint
4421         methods.  fixes the flicker when scrolling around.
4423 2006-08-23  Peter Dennis Bartok  <pbartok@novell.com> 
4425         * FileDialog.cs: Making sure the control is created before we get a 
4426           chance to use it with BeginInvoke (Fixes #79096)
4428 2006-08-23  Chris Toshok  <toshok@ximian.com>
4430         * ThemeWin32Classic.cs (DataGridPaintRows): calculate the proper
4431         width to use when painting the rows.
4433 2006-08-23  Peter Dennis Bartok  <pbartok@novell.com> 
4435         * TextBoxBase.cs:
4436           - Throw ArgumentException if a negative value is passed to SelectionLength
4437           - Update the selection end if start is moved. end needs to be always
4438             after start. (Fixes #79095)
4439           - Track selection length; MS keeps the selection length even if start
4440             is changed; reset on all other operations affection selection
4442 2006-08-22  Jackson Harper  <jackson@ximian.com>
4444         * TreeView.cs: Make sure both scrollbars get displayed and sized
4445         correctly when the other bar is visible.
4446         - Use the original clip rectangle for checking if the area between
4447         the two scrollbars is visible, not the viewport adjusted clipping
4448         rectangle.
4450 2006-08-22  Jackson Harper  <jackson@ximian.com>
4452         * Binding.cs: We don't use IsBinding because it requires the
4453         control to be created, which really shouldn't be necessary just to
4454         set a property on the control.
4456 2006-08-21  Carlos Alberto Cortez <calberto.cortez@gmail.com>
4458         * ComboBox.cs: Some CB.ObjectCollection methods must throw
4459         ArgumentNullReferenceException when the argument is null.
4461 2006-08-21  Jackson Harper  <jackson@ximian.com>
4463         * Timer.cs: Track the thread that the timer is started in (NOT
4464         CREATED), this way messages for it will only be triggered on its
4465         queue.
4466         * XEventQueue.cs: Track the timers here, this makes timers per
4467         thread, like MS.
4468         * XplatUIX11.cs: The timers are moved to the XEventQueue.
4470 2006-08-19  Chris Toshok  <toshok@ximian.com>
4472         * XplatUIX11.cs: after further communication with pdb, we get the
4473         best of both worlds.  SetZOrder working for un-Mapped windows, and
4474         no X errors for un-mapped windows.
4476 2006-08-19  Chris Toshok  <toshok@ximian.com>
4478         * XplatUIX11.cs (SetZOrder): remove the if (!hwnd.mapped) check,
4479         as it was causing pdn toolbars to not have the correct stacking.
4481 2006-08-18  Mike Kestner  <mkestner@novell.com> 
4483         * ListView.cs : guard against negative ClientArea.Width in scrollbar
4484         calculation.  Not sure why control should ever be setting a negative
4485         width though.  Fixes #78931.
4487 2006-08-18  Carlos Alberto Cortez <calberto.cortez@gmail.com>
4489         * ComboBox.cs: Throw ArgumentNullException when adding/modifyng
4490         null items in ObjectCollection class.
4491         * ListBox.cs.: Likewise.
4493 2006-08-18  Atsushi Enomoto  <atsushi@ximian.com>
4495         * ThemeNice.cs, ThemeClearlooks.cs : remove RadioButton_DrawFocus()
4496           as the base method in ThemeWin32Classic should work fine.
4497           Fixed bug #78607.
4499 2006-08-18  Jackson Harper  <jackson@ximian.com>
4501         * Binding.cs: When validating if the value entered doesn't convert
4502         properly reset to the old value.
4503         * RadioButton.cs: Don't fire click when we get focus.
4505 2006-08-18  Jackson Harper  <jackson@ximian.com>
4507         * FileDialog.cs: Paint the selection on the directory combobox the
4508         same way as on MS. 
4510 2006-08-17  Jackson Harper  <jackson@ximian.com>
4512         * ErrorProvider.cs: Don't allow the error control to be selected.
4513         * Control.cs: Don't send the SetFocus messages, the control
4514         activation will do this, and if we do it blindly here validation
4515         does not work.
4517 2006-08-17  Jackson Harper  <jackson@ximian.com>
4519         * Control.cs:
4520         * ContainerControl.cs: Make validation events fire in the correct
4521         order.  TODO: For some reason the first validation event is not
4522         getting fired.
4524 2006-08-17  Mike Kestner  <mkestner@novell.com> 
4526         * ComboBox.cs : some null guarding for ComboListBox.Scroll.
4528 2006-08-17  Mike Kestner  <mkestner@novell.com> 
4530         * ComboBox.cs : implement scroll wheel support for popped-down
4531         state. Fixes #78945. 
4533 2006-08-17  Jackson Harper  <jackson@ximian.com>
4535         * TreeView.cs: Specify treeview actions (old patch that didn't get
4536         committed for some reason).
4537         - Don't let the mouse wheel scroll us too far.  Just want to make
4538         the bottom node visible, not scroll it all the ways to the top.
4540 2006-08-17  Jackson Harper  <jackson@ximian.com>
4542         * XplatUIX11.cs: Mouse wheel events go to the focused window.
4544 2006-08-17  Mike Kestner  <mkestner@novell.com> 
4546         * ComboBox.cs : don't do mouseover selection in simple mode.
4548 2006-08-16  Jackson Harper  <jackson@ximian.com>
4550         * Form.cs: Fire the closing events for all the mdi child windows
4551         when a window is closed.  If the cancel args are set to true, the
4552         main window still gets the event fired, but it doesn't not close.
4553         * MdiWindowManager.cs: Do this closing cleanup in a Closed
4554         handler, instead of when the button is clicked, so cancelling the
4555         close works correctly.
4556         * ComboBox.cs: Send the mouse down to the scrollbar.
4558 2006-08-16  Carlos Alberto Cortez <calberto.cortez@gmail.com>
4560         * ListBox.cs: When passing 'null' to SelectedItem,
4561         set SelectedIndex to -1, to unselect items. This is the
4562         observed behaviour in .Net.
4564 2006-08-16  Peter Dennis Bartok  <pbartok@novell.com> 
4566         * TextBoxBase.cs: Overriding HandleClick to get clicks in spite of
4567           MS flags saying there won't be any. (fixes #78800)
4568         * Control.cs (HandleClick): Made virtual
4570 2006-08-16  Atsushi Enomoto  <atsushi@ximian.com>
4572         * PageSetupDialog.cs : use Yard-Pound units only in en-GB and en-US
4573           cultures. Fixed bug #78399.
4575 2006-08-16  Jackson Harper  <jackson@ximian.com>
4577         * Form.cs: Use the MdiClients MdiChildren property to access
4578         MdiChildren instead of creating the array from the child controls.
4579         * MdiClient.cs: Maintain a separate array of the mdi children, so
4580         that insertion order is maintained when the Z-order is changed.
4582 2006-08-16  Mike Kestner  <mkestner@novell.com> 
4584         * ListView.cs : add an ItemComparer and default to it for sorting.
4585         Fixes #79076, but sorting needs a complete overhaul to be compat with
4586         MS.
4588 2006-08-15  Peter Dennis Bartok  <pbartok@novell.com> 
4590         * XplatUIX11.cs (SetZOrder): Fix debugging leftover (fixes #79080)
4592 2006-08-15  Peter Dennis Bartok  <pbartok@novell.com>
4594         * Hwnd.cs (Mapped): Properly traverse the tree
4596 2006-08-15  Chris Toshok  <toshok@ximian.com>
4598         * Binding.cs: fix PullData/SetPropertyValue.  We don't want to
4599         pass manager.Current.GetType() to ParseData.  It has to be the
4600         property type.  So, hold off doing the ParseData until we're in
4601         SetPropertyValue where we know the type.  This fixes the crash in
4602         #78821 but the textbox is still empty.
4604 2006-08-15  Chris Toshok  <toshok@ximian.com>
4606         * DataGrid.cs:
4607         - when we're scrolling, only call Edit() again if the
4608         current cell is still unobscured. Fixes bug #78927.
4609         - when handling mousedown on a cell, ensure the cell is visible
4610         before calling Edit.
4611         - remove the properties from DataGridRow, and remove the
4612         DataGridParentRow class altogether.
4613         
4615 2006-08-15  Peter Dennis Bartok  <pbartok@novell.com>
4617         * TextBoxBase.cs (set_Text): Don't use base.Text, instead just
4618           fire OnTextChanged by ourselves. There's no point calling base,
4619           we don't set the base value anywhere else. Fixes #78773.
4621 2006-08-15  Carlos Alberto Cortez <calberto.cortez@gmail.com>
4623         * ListBox.cs: Call CollectionChanged when modifying
4624         an item from Items indexer, to update the actual items
4625         in the list box.
4627 2006-08-15  Carlos Alberto Cortez <calberto.cortez@gmail.com>
4629         * PrintDialog.cs: Small fixes for focus and a pair of checks,
4630         to match .Net behaviour.
4632 2006-08-15  Peter Dennis Bartok  <pbartok@novell.com>
4634         * XplatUIX11.cs (SetZOrder): Handle raising toplevel windows
4636 2006-08-15  Peter Dennis Bartok  <pbartok@novell.com> 
4638         * Control.cs: Handle BringToFront for toplevel windows (Fixes #78737)
4640 2006-08-15  Peter Dennis Bartok  <pbartok@novell.com>
4642         * MessageBox.cs: Prevent potential NRE exception.
4643         * TextBoxBase.cs: AutoSize only applies if MultiLine is false. Fixes #78889
4645 2006-08-14  Peter Dennis Bartok  <pbartok@novell.com>
4647         * MessageBox.cs: Calculate the owner of a messagebox, also make
4648           it topmost. Fixes #78753
4650 2006-08-14  Chris Toshok  <toshok@ximian.com>
4652         * XplatUIX11.cs: A couple of fixes so that metacity will let us
4653         programmatically move windows.  first, set the PPosition hint as
4654         well as the USPosition hint.  Second include some code from pdb
4655         that sets the window type to NORMAL when we set the transient for
4656         hint.  This is because, in the absence of a window type, metacity
4657         thinks any window with TransientFor set is a dialog, and refuses
4658         to let us move it programmatically.  fascists.
4660 2006-08-14  Peter Dennis Bartok  <pbartok@novell.com>
4662         * XplatUIX11.cs: When setting normal hints, take into consideration
4663           an different hints previously set so we don't delete them (fixes #78866)
4665 2006-08-12  Chris Toshok  <toshok@ximian.com>
4667         * ToolBarButton.cs: make Layout return a boolean, if something to
4668         do with the button's layout changed.
4670         * ToolBar.cs:
4671         - add another parameter to Redraw, @force, which all existing
4672           calls set to true.
4673         - make the Layout function return a boolean which is true if the
4674           layout has actually changed.  Redraw now uses this (and @force)
4675           to determine when to invalidate.  At present the only place
4676           where @force can be false is the call from OnResize, when
4677           background_image == null.  So, resizing a toolbar when the
4678           layout doesn't change results in no drawing.
4680 2006-08-12  Chris Toshok  <toshok@ximian.com>
4682         * ThemeWin32Classic.cs: fix the bottom right corner painting.  had
4683         the VScrollBar and HScrollbar reversed.  oops.
4685         * DataGrid.cs: fix the logic that assigns sizes to the implicit
4686         scrollbars.  we were assigning them twice (once in
4687         Calc{Horiz,Vertical}Scrollbar, and once in CalcGridAreas),
4688         therefore causing two scrollbar resizes (and redraws?) to happen
4689         per grid resize.
4691 2006-08-12  Chris Toshok  <toshok@ximian.com>
4693         * ToolBarButton.cs: redraw the entire button if the theme tells us
4694         to.
4696         * Theme.cs: add ToolBarInvalidateEntireButton.
4698         * ThemeWin32Classic.cs: we don't need to redraw the entire toolbar
4699         buttons, just the border.
4701         * ThemeNice.cs: redraw the entire toolbar button since we need to
4702         draw the highlight image.
4704         * ThemeClearlooks.cs: the rounded corners of toolbar buttons mean
4705         we need to redraw the entire button (not just the border).
4707 2006-08-11  Peter Dennis Bartok  <pbartok@novell.com>
4709         * TextBoxBase.cs (CalculateScrollbars): Set the proper thumb size
4710           for vertical bars. Fixes the mismatches shown by #78513
4712 2006-08-11  Alexander Olk  <alex.olk@googlemail.com>
4714         * FileDialog.cs: If a saved/remembered path doesn't exist
4715           anymore, fall back to "Desktop".
4717 2006-08-11  Peter Dennis Bartok  <pbartok@novell.com>
4719         * Form.cs (CreateParams): Don't use Parent.Handle unless we have a
4720           parent. It's apparently legal to not have one
4721         * XplatUIX11.cs:
4722           - SetZOrder: Don't try to set Z-Order on an unmapped window
4723           - CreateWindow: 0,0 are legal coordinates for a window. don't move
4724             it unless the coordinates are negative
4726 2006-08-10  Mike Kestner  <mkestner@novell.com>
4728         * ListControl.cs: allow null for DataSource.  Clear DisplayMember
4729         when setting to null per msdn docs.  Fixes #78854.
4731 2006-08-10  Chris Toshok  <toshok@ximian.com>
4733         * Menu.cs, MainMenu.cs, MenuAPI.cs: get rid of most of the
4734         flickering by setting a clip rectangle on the Graphics when we
4735         need to redraw just a particular menuitem.  Also, rename "OnClick"
4736         to "OnMouseDown" to reflect what it actually is.
4737         
4738         * Form.cs: track the OnMouseDown change.
4740 2006-08-10  Peter Dennis Bartok  <pbartok@novell.com>
4742         * CommonDialog.cs: Properly inherit the CreateParams from the form
4743           and only change what we need. Fixes #78865
4745 2006-08-10  Chris Toshok  <toshok@ximian.com>
4747         * ToolBar.cs, ToolBarButton.cs: fix the redraw-on-highlight
4748         flickering in flat mode (and most of the flickering in general) by
4749         only invalidating the button border (and not the entire rectangle)
4750         when the state changes.  A couple of cases still flicker:
4751         ToggleButtons, and the dropdown arrow case when the user mouse
4752         ups.
4754 2006-08-10  Alexander Olk  <alex.olk@googlemail.com>
4756         * X11Keyboard.cs: Fixed handling of the Del key on the cursorblock
4757           for german keyboards. Numlock state shouldn't affect the behaviour
4758           of the Del key. Fixes bug #78291.
4760 2006-08-10  Chris Toshok  <toshok@ximian.com>
4762         * ListControl.cs: remove the items.Clear line from BindDataItems,
4763         as this is the first thing done by both subclasses in their
4764         SetItemsCore overrides.  Also, add a ItemChanged handler, and when
4765         passed -1, refresh the list.  This gets databinding working when
4766         the datasource is set on the list before the datasource is
4767         populated (as in wf-apps/ReportBuilder.)
4769         * ComboBox.cs: remove the argument to BindDataItems.  This call
4770         should really go away, and be initiated by the ListControl code.
4772         * ListBox.cs: same.
4774 2006-08-09  Peter Dennis Bartok  <pbartok@novell.com>
4776         * TextControl.cs (Document.ctor): Initialize caret so we don't crash
4777           if no data is in the document when the control is displayed
4779 2006-08-09  Peter Dennis Bartok  <pbartok@novell.com> 
4781         * TextBoxBase.cs: Don't try moving the caret if we don't have a window
4782           yes (fixes #78806)
4783         * TextControl.cs: 
4784           - PositionCaret: Allow positioning of caret but don't call methods 
4785             requiring a handle if the window isn't created yet
4786           - CharIndexToLineTag: Fix ending loop early error. Lines is 1 based
4787           - owner_HandleCreated: Don't position the caret, just update it's 
4788             location. User might have already set a different position
4790 2006-08-09  Peter Dennis Bartok  <pbartok@novell.com>
4792         * XplatUIWin32.cs: Don't use the desktop as basis for foster-parented
4793           windows. Screws up the returned coordinates for child windows. 
4794           Fixes #78825. I'm hoping this doesn't break something, since the
4795           code was explicitly put in 8 months ago, but no bug was attached.
4796           Menus still seem to work properly.
4798 2006-08-08  Chris Toshok  <toshok@ximian.com>
4800         * DataGrid.cs: make BeginInit/EndInit actually do what they're
4801         supposed to do - delay data binding until the EndInit call.  Also,
4802         make the table style collection's CollectionChangeAction.Refresh
4803         work properly.
4805         * GridTableStylesCollection.cs: raise a CollectionChangeEvent
4806         (with action = Refresh) when a consituent table's MappingName is
4807         changed.
4809 2006-08-08  Chris Toshok  <toshok@ximian.com>
4811         * ToolBarButton.cs: in set_Text, call Parent.Redraw, not
4812         Invalidate, since changing the text can change the size of the all
4813         toolbar buttons.
4815 2006-08-08  Peter Dennis Bartok  <pbartok@novell.com>
4817         * Form.cs (AddOwnedForm): Still need to add the form to our listif
4818           we don't have it yet
4820 2006-08-08  Chris Toshok  <toshok@ximian.com>
4822         * PrintControllerWithStatusDialog.cs: don't .Close() the status
4823         dialog, as this causes X errors later on, since we actually
4824         destroy the window.  Instead, .Hide() it.
4826 2006-08-08  Peter Dennis Bartok  <pbartok@novell.com>
4828         * ComboBox.cs: Added focus reflection for popup window
4829         * XplatUIX11.cs: 
4830           - Removed transient setting for non-app windows for now, not sure it
4831             was needed
4832           - Fixed logic checking if we have captions when deciding 
4833             override_redirect, WS_CAPTION is two bits and a 0 check was not
4834             sufficient
4835           - Removed the WINDOW_TYPE stuff, it was unneeded and making things
4836             complicated
4837         * Form.cs: 
4838           - AddOwnedForm: Don't just add the form to the list, call the property
4839             to ensure the driver is informed about the ownership as well
4840           - CreateHandle: Set the TopMost status in the driver if we have an owner
4841         * XplatUI.cs: Fixed debug statement
4843 2006-08-08  Jonathan Pobst <monkey@jpobst.com>
4844         * ButtonRenderer.cs, CheckBoxRenderer.cs, ComboBoxRenderer.cs
4845           GroupBoxRenderer.cs, ProgressBarRenderer.cs, RadioButtonRenderer.cs,
4846           ScrollBarRenderer.cs, TabRenderer.cs, TextBoxRenderer.cs, 
4847           TrackBarRenderer.cs: Make constructor private.
4848         * ProfessionalColors.cs, ProfessionalColorTable.cs: Fix misnamed properties.
4849         * ProfessionalColorTable.cs: Make properties virtual.
4851 2006-08-06  Duncan Mak  <duncan@novell.com>
4853         * NumericUpDown.cs (Value): Don't call OnValueChanged if the value
4854         is not changing.
4856 2006-08-04  Jonathan Pobst <monkey@jpobst.com>
4857         * ButtonRenderer.cs, CheckBoxRenderer.cs, ComboBoxRenderer.cs
4858           GroupBoxRenderer.cs, ProfessionalColors.cs, ProfessionalColorTable.cs,
4859           ProgressBarRenderer.cs, RadioButtonRenderer.cs, ScrollBarRenderer.cs,
4860           TabRenderer.cs, TextBoxRenderer.cs, TextRenderer.cs, TrackBarRenderer.cs:
4861           Initial import of new 2.0 classes.
4863 2006-08-04  Jonathan Pobst <monkey@jpobst.com>
4864         * Application.cs: Add 2.0 VisualStyles properties.
4866 2006-08-04  Jonathan Pobst <monkey@jpobst.com>
4867         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs, XplatUIWin32.cs,
4868           XplatUIX11.cs: Create property to allow access to existing private
4869           variable "themes_enabled"
4871 2006-08-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
4873         * ImageListStreamer.cs: generate the MemoryStreams with the exact BMP
4874         file size, as otherwise our class libraries fail using windows. Fixes
4875         bug #78759.
4877 2006-08-04  Jackson Harper  <jackson@ximian.com>
4879         * Form.cs:
4880         * XplatUIX11.cs: Move the toolwindow window manager creation into
4881         the X11 driver, this way on win32 we can let windows create/handle
4882         the toolwindows.
4884 2006-08-04  Carlos Alberto Cortez <calberto.cortez@gmail.com>
4886         * PrintDialog.cs: Remove some redundant checks, add some others,
4887         clean some code, and move the focus to the text boxes when the
4888         values are incorrect.
4890 2006-08-04  Alexander Olk  <alex.olk@googlemail.com>
4892         * FontDialog.cs: Remove Form.MinimumSize. It's not needed.
4894 2006-08-03  Alexander Olk  <alex.olk@googlemail.com>
4896         * NumericUpDown.cs: Setting the Minimum and Maximum is now
4897           handled correctly. Fixes bug #79001.
4899 2006-08-03  Carlos Alberto Cortez <calberto.cortez@gmail.com>
4901         * PrintDialog.cs: The "Copies" numeric up down must have
4902         set the Minimum property to 1; only if the value is bigger
4903         than 1, activate "Collate" check box. This is the behaviour of .Net.
4904         Also modify the Document elements only if it is not null.
4906 2006-08-03  Jackson Harper  <jackson@ximian.com>
4908         * TreeNodeCollection.cs: Fix copyto to use the correct nodes
4909         length. (We have a larger array then actual node count).
4910                 
4911 2006-08-03  Jackson Harper  <jackson@ximian.com>
4913         * ComboBox.cs: Don't show selection by default.
4914         - The SelectAll isn't needed here, since the focus code should do
4915         that
4916         - DDL style lists to manual selection drawing, so when they
4917         get/lose focus they have to invalidate.
4919 2006-08-03  Peter Dennis Bartok  <pbartok@novell.com>
4921         * TextBoxBase.cs: Don't always show all selections by default.
4923 2006-08-03  Jonathan Pobst  <monkey@jpobst.com>
4924         * ControlUpdateMode.cs, DataSourceUpdateMode.cs,
4925           HelpNavigator.cs, WebBrowserEncryptionLevel.cs:
4926           Fixed various typos.
4928 2006-08-03  Alexander Olk  <alex.olk@googlemail.com>
4930         * Control.cs: Removing the controls in a ControlCollection with
4931           Clear now hides the controls as expected. Fixes bug #78804. 
4933 2006-08-03  Jackson Harper  <jackson@ximian.com>
4935         * Control.cs: Revert previous focus patch, it breaks reflector.
4937 2006-08-03  Jackson Harper  <jackson@ximian.com>
4939         * ComboBox.cs: Cleanup selection and focus with the combobox.
4940         This also eliminates some duplicated keyboard code, since now
4941         everything is handled by the main class.
4942         - Make list selection work on mouse up instead of down, to match
4943         MS.
4945 2006-08-02  Jackson Harper  <jackson@ximian.com>
4947         * Control.cs: Setting focus needs to go through the whole
4948         selection mechanism.
4950 2006-08-02  Chris Toshok  <toshok@ximian.com>
4952         * PrintPreviewDialog.cs: change MinimumSize to use
4953         base.MinimumSize so it works.
4955 2006-08-02  Peter Dennis Bartok  <pbartok@novell.com>
4957         * TextControl.cs:
4958           - UpdateCaret: Added sanity check in case caret isn't defined yet
4959           - Line.Delete: Now updating selection and caret markers if we're
4960             transfering a node (Properly fixes #78323)
4961           - SetSelectionEnd: Added sanity check
4962         * TextBoxBase.cs: Removed broken attempt to fix #78323
4964 2006-08-01  Chris Toshok  <toshok@ximian.com>
4966         * PrintPreviewDialog.cs: the CancelEventArgs stuff surrounding the
4967         Close() call is handled in Form, not here.
4969 2006-08-01  Chris Toshok  <toshok@ximian.com>
4971         * Theme.cs, ThemeWin32Classic.cs: fix the PrintPreviewControl
4972         layout/rendering.
4974         * PrintPreviewDialog.cs: add scrollbars, and add an image cache
4975         for sizes < 100% zoom.  The code now aggressively attempts to keep
4976         from calling document.Print (), and tries not to use the scaling
4977         g.DrawImage whenever possible (it still does if you scale to >
4978         100%, since usually that involves huge images).
4980         * PrintPreviewControl.cs: hook up the close button.
4982 2006-08-01  Jonathan Pobst  <monkey@jpobst.com>
4983         * ColumnClickEventHandler.cs, DrawItemEventHandler.cs,
4984           ItemChangedEventHandler.cs, ItemCheckEventHandler.cs,
4985           ItemDragEventHandler.cs, LabelEditEventHandler.cs,
4986           LinkClickedEventHandler.cs, LinkLabelLinkClickedEventHandler.cs,
4987           MeasureItemEventHandler.cs, MethodInvoker.cs, PaintEventHandler.cs,
4988           PropertyTabChangedEventHandler.cs, PropertyValueChangedEventHandler.cs,
4989           SelectedGridItemChangedEventHandler.cs, ToolBarButtonClickEventHandler.cs:
4990           Removed [Serializable] for 2.0 Event Handlers.
4992 2006-07-31  Jackson Harper  <jackson@ximian.com>
4994         * TextBoxBase.cs: Make ShowSelection invalidate when changed.
4995         * TextControl.cs: Uncomment out the body of this method.
4997 2006-07-31  Alexander Olk  <alex.olk@googlemail.com>
4999         * XplatUIX11.cs: Use the correct cursor shapes for arrow and default
5000           standard cursors.
5002 2006-07-31  Peter Dennis Bartok  <pbartok@novell.com>
5004         * TextBoxBase.cs: Added internal property ShowSelection to allow controls
5005           that embed TextBox and need selections visible even if textbox is not
5006           focused to enforce that behaviour.
5007         * TextControl.cs (Draw): Use ShowSelection instead of has_focus to determine
5008           selection drawing
5010 2006-07-31  Peter Dennis Bartok  <pbartok@novell.com>
5012         * TextControl.cs:
5013           - Added new SetSelectionStart/SetSelectionEnd overloads
5014           - Fixed viewport width assignment to be accurate
5015           - Adjusted alignment line shift calculations to allow cursor on right
5016             aligned lines to be always visible at the right border (like MS)
5017         * TextBoxBase.cs:
5018           - SetBoundsCore: Re-adjust caret location after resize (Fixes #78323)
5019           - TextBoxBase_SizeChanged: recalculating canvas on size changes
5020           - CalculateScrollBars: Use ViewPort size instead of window size, to
5021             properly consider space occupied by the border and scrollbars 
5022             (Fixes #78661)
5023           - hscroll_ValueChanged, vscroll_ValueChanged: Fixed scroll 
5024             calculations; no longer leaves artifacts
5025           - CaretMoved: Adjusted window scrolling to match MS and fixed several
5026             calculation bugs (Still missing right/center align calculations)
5028 2006-07-31  Peter Dennis Bartok  <pbartok@novell.com> 
5030         * XPlatUIWin32.cs: Made ScrollRectEx a bit more flexible, and removed
5031           use of both scroll rect and clip rect, as they do the same.
5033 2006-07-31  Peter Dennis Bartok  <pbartok@novell.com>
5035         * Control.cs (WM_CHAR WndProc): 2.0 profile allows changing the key 
5036           in the event handler (fixes #78912)
5038 2006-07-31  Chris Toshok  <toshok@ximian.com>
5040         * ThemeWin32Classic.cs: use grid.RowsCount here instead of
5041         grid.ListManager.Count, since grid.ListManager might be null.
5042         This of course begs the question "why are we drawing rows for a
5043         grid with no list manager (and therefor no rows)?"  Fixes the
5044         crash in bug #78929.
5046 2006-07-31  Chris Toshok  <toshok@ximian.com>
5048         * RelatedPropertyManager.cs: Don't always chain up to the parent
5049         ctor.  instead, call SetDataSource if the parent's position is !=
5050         -1.  Fixes the crash in #78822.
5052 2006-07-31  Chris Toshok  <toshok@ximian.com>
5054         * DataGrid.cs (get_ListManager): use field instead of property
5055         accessors for datasource and datamember.
5056         (RowsCount): make internal again.
5057         (OnMouseDown): end edits before resizing columns/rows.
5058         (OnMouseUp): restart edits after resizing columns/rows.
5060 2006-07-30  Peter Dennis Bartok  <pbartok@novell.com>
5062         * XplatUIX11.cs: Default cursor cannot be 0 or it will not get set.
5063           This fixes the situation where the last set cursor is displayed
5064           whenever the mouse is over scrollbars.
5066 2006-07-30  Carlos Alberto Cortez <calberto.cortez@gmail.com>
5068         * PrintDialog.cs: Fix the behaviour of PrinterSettings and
5069         Document properties, as well as initial values.
5071 2006-07-29  Peter Dennis Bartok  <pbartok@novell.com>
5073         * XplatUIWin32.cs (SetBorderStyle): Setting both border
5074           and ClientEdge results in a 3-pixel border, which is
5075           wrong.
5077 2006-07-28  Jackson Harper  <jackson@ximian.com>
5079         * TreeNodeCollection.cs: Fix the clear method.
5080         - Fix the Shrink also
5082 2006-07-27  Jackson Harper  <jackson@ximian.com>
5084         * TreeView.cs: Make sure the visible order is computed when we
5085         attempt to size the scrollbars (for trees that mess with the
5086         scrolling when they shouldn't.
5087         - Make sure to give the scrollbars valid values.
5089 2006-07-26  Peter Dennis Bartok  <pbartok@novell.com> 
5091         * XplatUIX11.cs: Move motion compression code to where it
5092           has less performance impact
5094 2006-07-26  Jackson Harper  <jackson@ximian.com>
5096         * UpDownBase.cs: When the control is selected make the child
5097         controls non selectable, so that a click on them won't do a
5098         focus/unfocus cycle.
5099         - Don't give focus to the text box when the spinner is selected.
5100         * XEventQueue.cs: Peek on both the x11 queue and the lock queue.
5102 2006-07-26  Chris Toshok  <toshok@ximian.com>
5104         * ThemeWin32Classic.cs: add print preview rendering.  I'm not
5105         satisfied with this solution.  If the bitmaps are small, we should
5106         just cache them in the PrintPreviewDialog and draw them here.
5107         Also, the layout is broken for the 2-up and 3-up cases.
5109         * Theme.cs: add PrintPReviewControlPaint.
5111         * PrintPreviewDialog.cs: first pass implementation.
5113         * PrintPreviewControl.cs: first pass implementation.  No
5114         scrollbars yet.
5116         * PrintDialog.cs: only validate fields if that particular portion
5117         of the UI is enabled.  Also, set the document's controller to a
5118         PrintControllerWithStatusDialog wrapping the document's print
5119         controller.
5121         * PrintControllerWithStatusDialog.cs: if we're printing to a file,
5122         bring up a SaveFileDialog (i hope we don't want to match the
5123         behavior of the crappy windows file entry) and set the
5124         PrinterSettings.PrintFileName accordingly.
5126 2006-07-26  Jackson Harper  <jackson@ximian.com>
5128         * ContainerControl.cs: Add a field that disables auto selecting
5129         the next control in a container when the container is activated.
5130         * UpDownBase.cs: Don't select the text box when the up down is
5131         selected.
5133 2006-07-26  Peter Dennis Bartok  <pbartok@novell.com> 
5135         * XEventQueue.cs: Added methods for peeking (used for compression
5136           of successive events)
5137         * XplatUIX11.cs (GetMessage): We're now compressing consecutive
5138           mouse move events (fixes #78732)
5140 2006-07-25  Jackson Harper  <jackson@ximian.com>
5142         * UpDownBase.cs: Use an internal class for the textbox so that we
5143         can control focus.  the updown control should always have focus,
5144         if either the text area or the buttons are clicked.
5145         - Send the key messages to the textbox, since it never actually
5146         has focus
5147         - Activate and decativate the textbox caret.
5149 2006-07-24  Jackson Harper  <jackson@ximian.com>
5151         * Control.cs: Use the directed select when selecting a control,
5152         this way the container controls override will get called and the
5153         whole ActiveControl chain will get triggered.  TODO: probably need
5154         to make sure this gets done everywhere instead of the old
5155         Select(Control).
5156         * ContainerControl.cs: Implement the directed Select method to
5157         find and activate the correct child control.    
5158         
5159 2006-07-22  Mike Kestner  <mkestner@novell.com>
5161         * Form.cs: use Control.MousePosition for NCLBUTTONDOWN in the menu
5162         menu handling code so that clicks without a grab work too.
5163         [Fixes #78914]
5165 2006-07-22  Alexander Olk  <alex.olk@googlemail.com>
5167         * FileDialog.cs: Enable the BackButton when dirstack has one element.
5168           Added some small optimizations.
5170 2006-07-21  Matt Hargett  <matt@use.net>
5172         * Control.cs: Implemented 2.0 MinimumSize/MaximumSize properties
5174 2006-07-21  Peter Dennis Bartok  <pbartok@novell.com> 
5176         * Control.cs (GetNextControl): Fixes to make all of Jackson's unit 
5177           tests pass and match MS in some strange border cases.
5179 2006-07-21  Chris Toshok  <toshok@ximian.com>
5181         * ThemeWin32Classic.cs: handle drawing of the relation links and
5182         parent row buttons.
5184         * Theme.cs: change args to DataGridPaintParentRow.
5186         * DataGrid.cs: Don't use controls for the relation links and
5187         parent buttons, so we have to handle all their interactions in
5188         MouseMove, MouseDown, MouseUp, etc.  Also, store a lot more stuff
5189         when we're navigating through child tables, so we can reinstate
5190         selection, expanded state, current cell, etc.
5192 2006-07-20  Chris Toshok  <toshok@ximian.com>
5194         * ToolBar.cs: When we redraw a button, for whatever reason,
5195         there's no reason to redraw the entire toolbar.  Also, don't call
5196         Control.Refresh from within Redraw, as it's much heavier than
5197         Invalidate (which is really what we want).
5199 2006-07-20  Chris Toshok  <toshok@ximian.com>
5201         * DataGrid.cs, CurrencyManager.cs, DataGridColumnStyle.cs,
5202         DataGridTextBoxColumn.cs, DataGridTextBox.cs,
5203         ThemeWin32Classic.cs, ListControl.cs: After staring at stack
5204         traces from within a debug IBindingList datasource
5205         (in mono/winforms/datagrid) for *days*, I've finally gotten things
5206         to work in a similar fashion.
5208 2006-07-20  Carlos Alberto Cortez <calberto.cortez@gmail.com>
5210         * ListBox.cs: Don't call Sort () when setting 
5211         the Sorted property to false (avoid an unnecessary sort).
5213 2006-07-20  Carlos Alberto Cortez <calberto.cortez@gmail.com>
5215         * ListControl.cs: DataSource should throw an ArgumentException
5216         instead of a normal exception when the argument is not of the 
5217         correct type.
5219 2006-07-20  Mike Kestner  <mkestner@novell.com>
5221         * Control.cs: add InternalPreProcessMessage to allow us to steal
5222         key events before MWF gets its paws on them.  Adapted from a
5223         suggestion by eno.
5224         * ToolBar.cs: add GotLostFocus handing for flat toolbars, with 
5225         up/down/left/right navigation. Override the new internal control
5226         method to steal the events since they never make it to WndProc.
5227         * ToolBarButton.cs: don't worry about pushed when setting hilight
5228         since the drawing code prefers pushed to hilight. Invalidate on 
5229         Hilight changes. Fixes #78547 and #78525.
5231 2006-07-20  Peter Dennis Bartok  <pbartok@novell.com> 
5233         * ScrollableControl.cs: Consider AutoScrollMinSize when calculating
5234           the canvas size. Fixes #78868
5236 2006-07-20  Peter Dennis Bartok  <pbartok@novell.com>
5238         * Splitter.cs: Track requested split position until first layout
5239           is performed. Fixes #78871
5241 2006-07-20  Peter Dennis Bartok  <pbartok@novell.com> 
5243         * Application.cs: Removed code that forces 1.x for the version
5244           number if the version started with 0. Not sure why that code was
5245           there and I couldn't find any bugs that indicated we needed it.
5246           Fixes #78869
5248 2006-07-20  Alexander Olk  <alex.olk@googlemail.com>
5250         * ThemeWin32Classic.cs: Don't throw a NotImplementedException in
5251           ResetDefaults(), just write some output to the console until it's
5252           implemented. Fixes bug #78907 for now. Eliminated two warnings.
5254 2006-07-19  Jonathan Chambers  <joncham@gmail.com>
5256         * PropertyGridView.cs: set StartPosition of drop down forms
5257         so they appear in correct initial spot.  Fixes #78190.
5259 2006-07-19  Mike Kestner  <mkestner@novell.com>
5261         * ThemeWin32Classic.cs: use parent background color when drawing
5262         flat toolbars.  Restructure the conditionals to make sure non-flat
5263         non-Divider toolbars are filled too.  Fixes #78837.
5265 2006-07-19  Mike Kestner  <mkestner@novell.com>
5267         * ListBox.cs: Sort on collection changes even if the handle
5268         isn't created yet.  Fixes #78813.
5270 2006-07-18  Carlos Alberto Cortez <calberto.cortez@gmail.com>
5272         * ListControl.cs: DisplayMember should never be null,
5273         and now we assign String.Empty when null is passed to it (this
5274         is the .Net way).
5276 2006-07-17  Mike Kestner  <mkestner@novell.com>
5278         * ListViewItem.cs: restructure Font and subitem Font handling 
5279         to hold a specific font and refer back to owner on null.
5280         Fixes #78761.
5282 2006-07-17  Mike Kestner  <mkestner@novell.com>
5284         * ToolBar.cs: bandaid for side-effect of previous patch which was
5285         discarding explicit heights for non-AutoSize toolbars.  Need to
5286         extend my format tester to deal with AutoSize=false. Fixes #78864.
5288 2006-07-15  Jackson Harper  <jackson@ximian.com>
5290         * LabelEditTextBox.cs:
5291         * TreeView.cs: Use a new LabelEdit class for node editing, this
5292         class automatically 'closes' itself when it gets the enter key or
5293         loses focus.
5294         - Use the client rectangle when setting the trees scrollbars, so
5295         border style is taken into account.
5296         
5297 2006-07-14  Jackson Harper  <jackson@ximian.com>
5299         * TreeNode.cs:
5300         * TreeView.cs: Make the editing work similar to MSs, firing the
5301         events correctly and ending edits correctly.
5303 2006-07-14  Mike Kestner  <mkestner@novell.com>
5305         * ToolBarButton.cs:
5306         * ToolBar.cs: layout restructuring and redraw enhancements to support
5307         formatting changes gracefully, like setting TextAlign, ImageList, 
5308         ButtonSize, and Appearance.  Handles explicit button sizing quirks
5309         of the MS controls.  Things like flat toolbars ignoring button size
5310         but becoming constant sized at the largest button's size.  Normal
5311         toolbars with an image set cannot be shrunk smaller than the image,
5312         but text can be clipped/ignored.
5313         * ThemeWin32Classic.cs: don't draw text if text_rect height or width
5314         is zero.  Seems like DrawString should be smart enough to not put
5315         anything on screen though. Also trim labels and ellipsize at the char
5316         boundary, not word.
5317         Fixes #78711 and #78483.
5319 2006-07-14  Alexander Olk  <alex.olk@googlemail.com>
5321         * FolderBrowserDialog.cs: Disable "New Folder" button and
5322           "New Folder" contextmenu menuitem if a folder like "My Computer"
5323           is selected.
5325 2006-07-14  Alexander Olk  <alex.olk@googlemail.com>
5327         * FileDialog.cs: Don't create a new folder in "MyComputer" folder.
5328         * FolderBrowserDialog.cs:
5329           - Use MWFConfig to store and read size and position settings
5330           - Added code to create a new folder (button or context menu).
5331             Use TreeView labeledit to change the name of the new folder.
5333 2006-07-14  Jackson Harper  <jackson@ximian.com>
5335         * TreeView.cs: Raise the OnAfterLabelEdit event correctly.  Also,
5336         when the tree is scrolled we end editing.
5338 2006-07-14  Alexander Olk  <alex.olk@googlemail.com>
5340         * ThemeWin32Classic.cs: Fixed position of CPDrawScrollButton Up and
5341           Down arrows
5343 2006-07-14  Jonathan Pobst  <monkey@ipobst.com> 
5345         WebBrowserProgressChangedEventHandler.cs, BindingCompleteEventArgs.cs,
5346         BindingCompleteEventHandler.cs, BindingManagerDataErrorEventArgs.cs,
5347         BindingManagerDataErrorEventHandler.cs, CacheVirtualItemsEventArgs.cs,
5348         CacheVirtualItemsEventHandler.cs, ColumnReorderedEventArgs.cs,
5349         ColumnReorderedEventHandler.cs, ColumnWidthChangedEventArgs.cs,
5350         ColumnWidthChangedEventHandler.cs, ColumnWidthChangingEventArgs.cs,
5351         ColumnWidthChangingEventHandler.cs, FormClosedEventArgs.cs,
5352         FormClosedEventHandler.cs, FormClosingEventArgs.cs,
5353         FormClosingEventHandler.cs, ItemCheckedEventArgs.cs,
5354         ItemCheckedEventHandler.cs, ListControlConvertEventArgs.cs,
5355         ListControlConvertEventHandler.cs, ListViewItemMouseHoverEventArgs.cs,
5356         ListViewItemMouseHoverEventHandler.cs, ListViewItemSelectionChangedEventArgs.cs,
5357         ListViewItemSelectionChangedEventHandler.cs,
5358         ListViewVirtualItemsSelectionRangeChangedEventArgs.cs,
5359         ListViewVirtualItemsSelectionRangeChangedEventHandler.cs,
5360         MaskInputRejectedEventArgs.cs, MaskInputRejectedEventHandler.cs,
5361         PopupEventArgs.cs, PopupEventHandler.cs, PreviewKeyDownEventArgs.cs,
5362         PreviewKeyDownEventHandler.cs, RetrieveVirtualItemEventArgs.cs,
5363         RetrieveVirtualItemEventHandler.cs, SearchForVirtualItemEventArgs.cs,
5364         SearchForVirtualItemEventHandler.cs, SplitterCancelEventArgs.cs,
5365         SplitterCancelEventHandler.cs, TabControlCancelEventArgs.cs, 
5366         TabControlCancelEventHandler.cs, TabControlEventArgs.cs, 
5367         TabControlEventHandler.cs, TableLayoutCellPaintEventArgs.cs,
5368         TableLayoutCellPaintEventHandler.cs, ToolStripDropDownClosedEventArgs.cs,
5369         ToolStripDropDownClosedEventHandler.cs, ToolStripDropDownClosingEventArgs.cs,
5370         ToolStripDropDownClosingEventHandler.cs, TreeNodeMouseClickEventArgs.cs,
5371         TreeNodeMouseClickEventHandler.cs, TreeNodeMouseHoverEventArgs.cs,
5372         TreeNodeMouseHoverEventHandler.cs, TypeValidationEventArgs.cs,
5373         TypeValidationEventHandler.cs, WebBrowserDocumentCompletedEventArgs.cs,
5374         WebBrowserDocumentCompletedEventHandler.cs, WebBrowserNavigatedEventArgs.cs,
5375         WebBrowserNavigatedEventHandler.cs, WebBrowserNavigatingEventArgs.cs,
5376         WebBrowserNavigatingEventHandler.cs, 
5377         WebBrowserProgressChangedEventArgs.cs: New 2.0 Event Handlers
5379 2006-07-14  Jonathan Pobst  <monkey@ipobst.com>
5381         MergeAction.cs, PowerLineStatus.cs, PowerState.cs, PreProcessControlState.cs,
5382         RichTextBoxLanguageOptions.cs, ScreenOrientation.cs, ScrollOrientation.cs,
5383         SearchDirectionHint.cs, SystemParameter.cs, TabControlAction.cs,
5384         TableLayoutPanelCellBorderStyle.cs, TextDataFormat.cs, TextImageRelation.cs,
5385         ToolStripDropDownCloseReason.cs, ToolStripDropDownDirection.cs,
5386         ToolStripGripDisplayStyle.cs, ToolStripGripStyle.cs,
5387         ToolStripItemAlignment.cs, ToolStripItemDisplayStyle.cs,
5388         ToolStripItemImageScaling.cs, ToolStripItemOverflow.cs,
5389         ToolStripItemPlacement.cs, ToolStripLayoutStyle.cs,
5390         ToolStripManagerRenderMode.cs, ToolStripRenderMode.cs,
5391         ToolStripStatusLabelBorderSides.cs, ToolStripTextDirection.cs,
5392         ToolTipIcon.cs, TreeNodeStates.cs, TreeViewDrawMode.cs,
5393         TreeViewHitTestLocations.cs, UnhandledExceptionMode.cs, ValidationConstraints.cs,
5394         WebBrowserEncryptionLevel.cs, WebBrowserReadyState.cs, WebBrowserRefreshOption.cs,
5395         ArrowDirection.cs, AutoCompleteMode.cs, AutoCompleteSource.cs, AutoSizeMode.cs,
5396         AutoValidate.cs, BatteryChargeStatus.cs, BindingCompleteContext.cs,
5397         BindingCompleteState.cs, CloseReason.cs, ColumnHeaderAutoResizeStyle.cs,
5398         ControlUpdateMode.cs, DataSourceUpdateMode.cs, DockingBehavior.cs,
5399         FixedPanel.cs, FlowDirection.cs, GetChildAtPointSkip.cs,
5400         HtmlElementInsertionOrientation.cs, InsertKeyMode.cs, ListViewHitTestLocations.cs,
5401         ListViewItemStates.cs, MaskFormat.cs: Added
5403 2006-07-13  Jonathan Chambers  <joncham@gmail.com>
5405         * PropertyGridView.cs: Fix keyboard navigation of drop down.
5406         Patch from eno for bug 78558.
5407         
5408 2006-07-13  Jackson Harper  <jackson@ximian.com>
5410         * TreeView.cs: When an edit is finished make sure that the
5411         selected node is visible.
5412         - When setting the top/bottom use the scrollbars is_visible, so
5413         everything will be set correctly even if the tree isn't visible
5414         yet.
5416 2006-07-13  Jackson Harper  <jackson@ximian.com>
5418         * ComboBox.cs: Revert the item->index part of my previous patch.
5419         * TreeView.cs: Use LostFocus instead of Leave for detecting when
5420         the edit box has lost focus (duh).
5421         - Just make the edit box not visible when we get return, that will
5422         take the focus, which will call EndEdit
5423         * TreeNode.cs When we start editing, notify the treeview.
5425 2006-07-12  Jackson Harper  <jackson@ximian.com>
5427         * ComboBox.cs: Clear out old items before setting the item list.
5428         This prevents databound controls from having their items added
5429         twice.
5430         - Switch the combobox to use indices whereever possible instead of
5431         using Item's.  This allows usto navigate through lists that have
5432         more then one item with the same string value (ie a, b, b, a).
5433         - Scroll the listboxes scrollbar when a non visible item is
5434         highlighted
5435         - Allow keypress to cycle through all the possible values. For
5436         example if you have b1, b2, b3 and hold down the B key all the
5437         values will be cycled through.
5438         
5439 2006-07-12  Jackson Harper  <jackson@ximian.com>
5441         * TextBoxBase.cs:
5442         * ListView.cs: Don't need to override SETFOCUS anymore, we can do
5443         this using the internal methods.
5444         * Control.cs: Add OnGotFocusInternal.  A new method that allows
5445         controls to "override" OnGotFocus and change focus behavior if
5446         needed.
5447         - Same thing for LostFocus
5448         * ComboBox.cs: Pass off focus to the text control properly.
5450 2006-07-12  Alexander Olk  <alex.olk@googlemail.com>
5452         * FileDialog.cs: Added GetFoldersOnly to MWFVFS
5453         * FolderBrowserDialog.cs: Almost a complete rewrite.
5454           - Better support for Environment.Specialfolders
5455           - Added support for MWFVFS
5456           - Made setting SelectedPath work
5458 2006-07-12  Jackson Harper  <jackson@ximian.com>
5460         * Control.cs: Optimze getting all the controls.
5462 2006-07-11  Jackson Harper  <jackson@ximian.com>
5464         * ContainerControl.cs: Override SETFOCUS in the container control,
5465         so that it is not selected on mouse click.
5467 2006-07-11  Peter Dennis Bartok  <pbartok@novell.com> 
5469         * LinkLabel.cs: Hack to handle Shift-Tabbing to the linklabel. 
5470           Hopefully we will have a better way once all of focus is complete.
5472 2006-07-11  Peter Dennis Bartok  <pbartok@novell.com>
5474         * ThemeWin32Classic.cs: Commented out some debug code and fixed
5475           a compile error with csc.
5477 2006-07-11  Jackson Harper  <jackson@ximian.com>
5479         * Control.cs: When hiding a control only select the next control
5480         if the current control was focused.
5481         - Don't handle enter/leave when setting/killing focus, this is
5482         done by the container control.
5483         - Remove is_selected, it's not needed anymore.
5484         - Add utility methods for selecting a child control, and for
5485         firing the Enter/Leave events.
5486         * ContainerControl.cs: When a control is activated fire the
5487         enter/leave events.
5488         - Don't wrap when processing the tab key, so that focus can be
5489         moved outside of the container.
5490         - Use the correct active control
5492 2006-07-11  Jackson Harper  <jackson@ximian.com>
5494         * ComboBox.cs: Remove some debug code that was blinding me.
5495         * UpDownBase.cs: These controls actually aren't implicit, they are
5496         visible to the user.
5498 2006-07-10  Chris Toshok  <toshok@ximian.com>
5500         * DataGrid.cs: move back to the is_adding boolean field.  god i
5501         hate this is_editing/is_adding/is_changing stuff.
5503 2006-07-10  Chris Toshok  <toshok@ximian.com>
5505         * DataGridTableStyle.cs: just check if the property type is bool.
5506         if it is, use DataGridBoolColumn, otherwise DataGridTextBoxColumn.
5507         Don't use CanRenderType.
5509         * DataGridTextBoxColumn.cs: set the value to DBNull.Value, not "",
5510         if our text == NullText.  Remove CanRenderType.
5512         * DataGridBoolColumn.cs: nuke CanRenderType.
5514         * DataGrid.cs: reenable some code to end the current edit inside
5515         of set_CurrentCell.  This fixes the other 1.1.16 regression.
5516         Also, remove rowhdrs_maxheight and just use rowhdrs_area.Height.
5517         Also, remove the visible_row_count arg from CalcRowHeaders, since
5518         we don't need to worry about the actual height of the area.
5520 2006-07-10  Chris Toshok  <toshok@ximian.com>
5522         * DataGridTextBoxColumn.cs: if when we Commit we're in navigate
5523         mode, just return.
5525         * DataGridTextBox.cs: change "isedit" to "isnavigating" to reflect
5526         the real sense of the IsInEditOrNavigateMode property (true =
5527         navigate, false = edit).  Also, update OnKeyPress to reflect this.
5529         * DataGridTableStyle.cs (CreateColumnsForTable): even if the
5530         column style exists, we still need to set its property descriptor
5531         to match up with our list manager.
5533 2006-07-10  Chris Toshok  <toshok@ximian.com>
5535         * ThemeWin32Classic.cs: implement the new row/header painting
5536         approach.  The parent row painting will likely go away and
5537         replaced with label controls, but the rest seems to work ok (and
5538         efficiently).
5540         * Theme.cs: change the way we draw datagrid rows.  we don't draw
5541         the row headers as a block now.  Instead we draw them in the
5542         normal draw-row loop.  Add some calls for drawing parent rows and
5543         relation rows.
5545         * DataGridTableStyle.cs: add tons of ArgumentExceptions if this is
5546         a default table style.  Set the defaults from ThemeEngine.Current,
5547         not SystemColors.  Fix lots of misc issues with property setters.
5549         * DataGrid.cs: move loads of style information out of this class
5550         as it's being duplicated with DataGridTableStyle.  keep track of a
5551         special DataGridTableStyle for the properties we used to mirror
5552         here.  Switch all the style properties to access this table style
5553         instead of instance fields of this class.  Also add a internal
5554         class to represent parent rows (more needs to be stored here, like
5555         the selection state from the parent table, as well as the
5556         expansion state.)  Also, for datasources with relations, do the
5557         right thing for collapse/expand, and add support for the
5558         navigation/parent row buttons.
5560         Lastly, fix the crash in the 1.1.16 build.
5562         * GridTableStylesCollection.cs: make the explicit interface
5563         implementations call the class's methods as opposed to duplicating
5564         them.
5566         * DataGridTextBoxColumn.cs: set the x/y offset of the textfield to
5567         0 so the text doesn't jump around when we move the cursor.
5569 2006-07-10  Jackson Harper  <jackson@ximian.com>
5571         * TextBoxBase.cs:
5572         * ListBox.cs: Match MS's ToString (this makes debugging focus
5573         stuff infinitely easier).
5575 2006-07-10  Jackson Harper  <jackson@ximian.com>
5577         * Control.cs (SelectNextControl): When checking the control's
5578         parent use this instead of ctrl.parent so that null can be passed
5579         to SelectNextControl. (I have unit tests for this).
5580         - Remove unused var.
5582 2006-07-10  Chris Toshok  <toshok@ximian.com>
5584         * CurrencyManager.cs: correct one regression, the removal of the
5585         finalType field.  Also, add a MonoTODO on CanAddRows, implement
5586         Refresh() correctly, and fix some event emission in
5587         ListChangedHandler.
5589 2006-07-07  Alexander Olk  <alex.olk@googlemail.com>
5591         * FileDialog.cs: Don't use brackets for new folders if they exist
5592           under *nix. Instead use -(number of existing folders +1).
5594 2006-07-07  Alexander Olk  <alex.olk@googlemail.com>
5596         * FileDialog.cs:
5597           - Fixed really nasty bug #78771
5598           - Don't block the whole GUI when reading directories with a lot of
5599             entries. Use an other thread instead and call BeginInvoke to
5600             update the ListView in MWFFileView
5602 2006-07-07  Chris Toshok  <toshok@ximian.com>
5604         * Control.cs (Dispose): release any Capture when disposing.
5606 2006-07-07  Chris Toshok  <toshok@ximian.com>
5608         * LinkLabel.cs (Select): if we chain up to the parent, set
5609         focused_index to -1 so we'll search for the first available link
5610         the next time the user tabs into us.  Also, if the direction is
5611         backward and focused_index == -1, start the search from the last
5612         element.
5614 2006-07-07  Chris Toshok  <toshok@ximian.com>
5616         * LinkLabel.cs (CreatePiecesFromText): if the link's range piece
5617         is beyond the end of the text, don't do anything.
5618         (CreateLinkPieces): set our ControlStyles.Selectable based on
5619         whether or not we have any links.
5620         (Link.Invalidate): use a loop instead of foreach.
5621         (Link.set_Start): null out owner.sorted_links so it'll be
5622         recreated by CreateLinkPieces.
5624 2006-07-06  Chris Toshok  <toshok@ximian.com>
5626         * LinkLabel.cs: revert the SetStyle change.
5628 2006-07-06  Chris Toshok  <toshok@ximian.com>
5630         * LinkLabel.cs (.ctor): SetStyle Selectable to true.
5631         (OnEnableChanged): s/Refresh/Invalidate
5632         (OnGotFocus): if we have a focused index already, refocus it (so
5633         if we mouse out/in to the window it'll focus the right link).
5634         (OnKeyDown): move the tab handling out of here.
5635         (OnLostFocus): don't set focused_index to -1, so we can refocus it
5636         when we lose focus.
5637         (OnMouseDown): don't Capture here - Control handles it.  Also,
5638         focus the active link.
5639         (OnMouseUp): don't deal with Capture.
5640         (OnPaintBackgroundInternal): remove.
5641         (OnTextAlignChanged): CreateLinkPieces before calling the
5642         superclass's method.
5643         (OnTextChanged): call CreateLinkPieces before calling superclass's
5644         method.
5645         (ProcessDialogKey): handle Tab here, and call Select(bool,bool) to
5646         move around.
5647         (Select): implement this, moving the selection between different
5648         links, and call parent.SelectNextControl if we don't have another
5649         link to focus in the given direction.
5650         (CreateLinkPieces): call Invalidate instead of Refresh.
5651         
5652 2006-07-06  Chris Toshok  <toshok@ximian.com>
5654         * ThemeWin32Classic.cs: DrawLinkLabel changes to accomodate the
5655         new LinkLabel internals.
5657         * LinkLabel.cs: fairly major rewrite.  get rid of all the loops
5658         over pieces looking for active/focused/etc links.  also, deal with
5659         runs of text (and links) with embedded \n's in them, and use
5660         MeasureCharacterRanges instead of MeasureString to figure out the
5661         regions text occupies.  Lastly, do the usual s/Refresh/Invalidate
5662         two-step.
5664 2006-07-04  Jackson Harper  <jackson@ximian.com>
5666         * XplatUIX11.cs: Enable key auto repeat. If the user doesn't have
5667         XKB or key auto repeat, do it manually.  Without key auto repeat,
5668         when a key is held down we get key press, key release, key press,
5669         key release, ... with auto repeat we get key press, key press, key
5670         press ..., and then a release when the key is actually released.
5672 2006-07-03  Jackson Harper  <jackson@ximian.com>
5674         * TabControl.cs:
5675         * ThemeWin32Classic.cs: Tabs do not obey normal background color
5676         rules, they are always control color regardless of the background
5677         color.
5679 2006-07-02  Alexander Olk  <alex.olk@googlemail.com>
5681         * FileDialog.cs: Added internal class MWFConfig.
5682           Removed Registry support and replaced it with support for the new
5683           MWFConfig class. See MWFConfig comments for more information.
5685 2006-06-30  Alexander Olk  <alex.olk@googlemail.com>
5687         * ThemeWin32Classic.cs: Added RadioButton and CheckBox focus
5688           rectangle. Added some patches from eno from bug #78490 and fixed
5689           the arrow position for small up and down CPDrawScrollButtons.
5691 2006-06-30  Jackson Harper  <jackson@ximian.com>
5693         * InternalWindowManager.cs: Remove some debug code.
5694         * Form.cs: When an MdiParent is set to null, the window is
5695         "detatched" and becomes a normal window.
5696         * MdiClient.cs: Don't bring the new child form to the front until
5697         it is activated (setting it as active does this), this makes the
5698         previously active forms titlebar get redrawn as inactive.
5700 2006-06-29  Peter Dennis Bartok  <pbartok@novell.com>
5702         * PrintDialog.cs: Labels need a tab index too, otherwise they overlap
5703           with later controls
5705 2006-06-29  Mike Kestner  <mkestner@novell.com>
5707         * MenuAPI.cs: handle arrow keys in keynav state. Go active on down
5708         arrow in keynav state.  Fixes #78682.
5710 2006-06-28  Atsushi Enomoto  <atsushi@ximian.com>
5712         * PrintDialog.cs: Reorder, relayout, remove extra code, set tab 
5713           order (fixes #78393)
5715 2006-06-28  Jonathan Pobst  <monkey@ipobst.com>
5717         * AccessibleRole.cs, AccessibleStates.cs, AnchorStyles.cs, 
5718           ArrangeDirection.cs, ArrangeStartingPosition.cs, ColorDepth.cs,
5719           ControlStyles.cs, DataGridViewImageCellLayout.cs, DrawMode.cs,
5720           FormBorderStyle.cs, FormStartPosition.cs, FormWindowState.cs,
5721           GridItemType.cs, HelpNavigator.cs, ImeMode.cs, ItemActivation.cs,
5722           ItemBoundsPortion.cs, Keys.cs, ListViewAlignment.cs, 
5723           PictureBoxSizeMode.cs, PropertySort.cs, SelectionMode.cs,
5724           Shortcut.cs, SizeGripStyle.cs, SortOrder.cs, StructFormat.cs,
5725           TextFormatFlags.cs, ToolBarAppearance.cs, ToolBarButtonStyle.cs,
5726           ToolBarTextAlign.cs, View.cs: 2.0 Changes to existing 1.x
5727           enumerations (FlagsAttribute, SerializableAttribute, added/removed
5728           values)
5730 2006-06-28  Mike Kestner  <mkestner@novell.com>
5732         * ComboBox.cs: implement scroll wheel support. Fixes #78360.
5734 2006-06-28  Atsushi Enomoto  <atsushi@ximian.com>
5736         * PropertyGrid.cs,
5737           PropertyGridTextBox.cs : explicitly set BackColor to differentiate
5738           item lines from other area (It also makes BackColor consistent and
5739           compatible with .NET). Fixed bug #78564.
5741 2006-06-28  Jonathan Chambers  <jonathan.chambers@ansys.com>
5743         * PropertyGrid.cs: refresh toolbar when PropertySort is set.
5744         Patch from Eno for #78555.
5746 2006-06-27  Chris Toshok  <toshok@ximian.com>
5748         * ThemeWin32Classic.cs: s/grid.grid_drawing/grid
5750         * DataGridColumnStyle.cs: same.
5752         * DataGrid.cs: Roll DataGridDrawingLogic.cs into this file.
5753         
5754         * DataGridDrawingLogic.cs: nuke.
5756 2006-06-27  Chris Toshok  <toshok@ximian.com>
5758         * DataGridTableStyle.cs: clean up the constructors, and build the
5759         list of child relations for this table.  I have no idea if this is
5760         where we should be doing it (it probably isn't), but since we're
5761         already iterating over the properties..
5763         * DataGrid.cs: add row resizing.  for now we add a DataGridRow
5764         struct and array for keeping track of row information, similar to
5765         what's shown in a hack on
5766         http://www.syncfusion.com/FAQ/WindowsForms/FAQ_c44c.aspx.
5768         * Theme.cs: be consistent about the naming of DataGrid methods,
5769         prefering ColumnWidths and RowHeights over columnsWidths and
5770         RowsHeights.
5772         * ThemeWin32Classic.cs: same, and also add support for variable
5773         sized rows (and the +/- expansion icons for related rows).
5775 2006-06-27  Peter Dennis Bartok  <pbartok@novell.com>
5777         * TextBoxBase.cs: Applied Eno's patch from #78660
5779 2006-06-27  Peter Dennis Bartok  <pbartok@novell.com> 
5781         * Form.cs (ScaleCore): We don't want to scale our form if it's
5782           state is minimized or maximized, but we still need to scale our
5783           child windows. Also, added try/finally block to ensure layout
5784           gets reset (Fixes #78697)
5786 2006-06-27  Peter Dennis Bartok  <pbartok@novell.com>
5788         * Control.cs: Added 2.0 Scale(SizeF) method (Fixes 78700)
5790 2006-06-27  Peter Dennis Bartok  <pbartok@novell.com> 
5792         * Form.cs: Fixed c+p error and added check to resize form if minimum
5793           size is bigger than current size (Fixes #78709)
5795 2006-06-26  Peter Dennis Bartok  <pbartok@novell.com> 
5797         * ThemeEngine.cs (..ctor): Properly use ToLower() (Fixes #78704)
5799 2006-06-26  Mike Kestner  <mkestner@novell.com>
5801         * ComboBox.cs: only do Keypress handling in the combo when there  
5802         are items in the collection. Fixes #78710.
5804 2006-06-26  Chris Toshok  <toshok@ximian.com>
5806         * Binding.cs: make this work bi-directionally.  also, clear up
5807         other mixups between Push/Pull Data (e.g. we're supposed to pull
5808         data when validating).
5810         * BindingManagerBase.cs: trim some fully qualified collection
5811         types.
5813         * PropertyManager.cs (get_IsSuspended): oops, fix this check.
5815 2006-06-23  Chris Toshok  <toshok@ximian.com>
5817         * PropertyManager.cs: It appears (according to the unit tests)
5818         that PropertyManager doesn't use
5819         PropertyDescriptor.AddValueChanged to track propery value changes
5820         in its datasource, but uses the same scheme as Binding, where it
5821         looks for a <Property>Changed event and binds to it.
5823         Also, according to the docs, IsSuspended always returns false for
5824         a property manager with a non-null datasource.
5826 2006-06-22  Peter Dennis Bartok  <pbartok@novell.com> 
5828         * Form.cs: (ShowDialog): If we're returning a forced cancel we still
5829           need to update the actual DialogResult. (Fixes #78613)
5831 2006-06-22  Peter Dennis Bartok  <pbartok@novell.com>
5833         * Form.cs (ShowDialog): Release any captures before running the
5834           new message pump (fixes #78680)
5836 2006-06-22  Mike Kestner  <mkestner@novell.com>
5838         * ListView.cs: Layout column widths properly in details mode even 
5839         if HeaderStyle.None is set.  Fixes #78691.
5841 2006-06-21  Peter Dennis Bartok  <pbartok@novell.com>
5843         * FileDialog.cs: Fixed taborder to match MS. Fixes #77873 partially.
5845 2006-06-21  Peter Dennis Bartok  <pbartok@novell.com> 
5847         * Control.cs (ContainsFocus): Using new driver method to get focused
5848           window, instead of trying to use internal tracking var, which can
5849           recursion issues (Fixes #78685)
5850         * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs, XplatUIOSX.cs, 
5851           XplatUIWin32.cs: Added GetFocus method to return focused window
5853 2006-06-21 Gonzalo Paniagua Javier <gonzalo@ximian.com>
5855         * ColorDialog.cs: when the mouse button is pressed inside the color
5856         matrix, don't let the cursor move out of it until the button is
5857         released, which is the behavior on windows. Changed 'colours' by
5858         'colors' to use the same word consistently.
5860 2006-06-21  Chris Toshok  <toshok@ximian.com>
5862         * DataGrid.cs: add in some basic navigation stuff (navigating to a
5863         child relation and back, using a stack).  Also, remove
5864         GetDataSource and the code that calls it - it's not needed.  Also,
5865         track CurrencyManager.ListName's removal.
5867 2006-06-21  Chris Toshok  <toshok@ximian.com>
5869         * CurrencyManager.cs: push some of the original type checking from
5870         BindingContext.CreateBindingManager to here, and remove some of
5871         the finalType stuff.  Need more tests to make sure I've got the
5872         ListName part right, and we might need more in SetDataSource.
5874         * PropertyManager.cs: add a ctor that takes just the datasource,
5875         and no property name.  Make SetDataSource work with a null
5876         property_name, and make Current return the data_source if the
5877         property descriptor is null.  this makes 'string foo = "hi";
5878         BindingContext[foo].Current' return "hi" as it should.
5880         * RelatedCurrencyManager.cs: make this code more generic - there's
5881         no reason the parent manager has to be CurrencyManager, and
5882         there's no reason to pass the DataRelation.  It suffices to use a
5883         BindingManagerBase and PropetyDescriptor.
5885         * RelatedPropertyManager.cs: make a similar change here.
5886         
5887         * BindingContext.cs: make CreateBindingManager the beautiful, tiny
5888         flower I knew it could be.
5890 2006-06-20  Chris Toshok  <toshok@ximian.com>
5892         * PropertyManager.cs: the PropertyChangedHandler is invoked when
5893         data in the source has changed and we need to update the control,
5894         so s/PullData/PushData.
5896         * CurrencyManager.cs: Refresh is meant to update the control from
5897         data in the datasource.  So, s/PullData/PushData.
5899         * BindingContext.cs: add more ugliness (we weren't handling the
5900         case where data_source = DataTable and data_member = column_name).
5902         * Binding.cs: fix PushData/PullData mixup.  Both are interpreted
5903         from the perspective of the datasource.  PullData pulls from the
5904         control, PushData pushes to the control.
5906 2006-06-20  Chris Toshok  <toshok@ximian.com>
5908         * BindingContext.cs: rewrite the CreateBindingManager code to
5909         handle navigation paths more or less properly.  This could
5910         definitely stand some more work, in particular to push the
5911         recursion up to the toplevel.  But that relies on fixes in other
5912         places (System.Data comes to mind).
5914         Also, move to a flat hashtable (and encode the twolevel nature of
5915         the dictionary into the hash key).  This lets us implement the
5916         IEnumerable.GetEnumerator method.
5918         * RelatedCurrencyManager.cs: new class.  Update our view based on
5919         our relation and our parent CurrencyManager's position.
5921         * CurrencyManager.cs: split out some logic from the ctor into
5922         SetView, so it can be called from the new RelatedCurrencyManager
5923         subclass.
5925         * RelatedPropertyManager.cs: new class.  Update our datasource
5926         based on the position of our parent CurrencyManager.
5928         * PropertyManager.cs: split out some logic from the ctor into
5929         SetDataSource, so it can be called from the new RelatedDataSource
5930         subclass.  Also, make the Current getter return the value
5931         of the PropertyDescriptor, not the data_source.
5933         * Binding.cs: no need to duplicate the string splitting code here.
5935 2006-06-19  Peter Dennis Bartok  <pbartok@novell.com> 
5937         * Control.cs:
5938           - set_Enabled: OnEnabledChanged is not called if the inherited state 
5939             of the control is not altered, even though  we might be changing the
5940             internal state of the control (#78458)
5941           - set_Enabled: (Re)Moved the enabling/disabling of the window to 
5942             OnEnabledChanged, to allow easy altering of any child window state
5943           - OnEnabledChanged: Added code to enable/disable driver window state
5944           - OnParentEnabledChanged: Instead of firing the event, call 
5945             OnEnabledChanged, which will fire the event and also a) set driver
5946             window state and pass the enabled state to any grandchildren (#78458)
5948 2006-06-19  Jackson Harper  <jackson@ximian.com>
5950         * InternalWindowManager.cs: We don't set the cursor explicitly
5951         thats done via the response to NCHITTESTs.
5952         - Don't need to adjust for titlebar heights anymore, the
5953         coordinates are coming in the correct coordinates now (see peters
5954         last patch).
5957 2006-06-19  Peter Dennis Bartok  <pbartok@novell.com> 
5959         * XplatUIX11.cs (GetMessage): WM_NCxBUTTONx messages were wrongly
5960           being translated relative to whole window, instead of client window.
5961           That caused broken offsets on mouseclick (and caused gas for our
5962           InternalWindowManager)
5964 2006-06-15  Peter Dennis Bartok  <pbartok@novell.com> 
5966         * TextControl.cs:
5967           - MoveCaret: Implemented PgUp, PgDown, CtrlPgUp and CtrlPgDown
5968           - Undo(): Added replay of cursor move on DeleteChars action; added
5969             calling Undo() again if a recorded cursor move is invalid (to
5970             ensure that some action is performed on Undo)
5971         * TextBoxBase.cs (ProcessKey): Added handling of PgUp and PgDown (#78482)
5973 2006-06-16  Jackson Harper  <jackson@ximian.com>
5975         * MdiClient.cs: Instead of just sizing maximized windows when
5976         there is a resize we also have to adjust the Y of minimized
5977         windows, so they stay pinned to the bottom of the mdi container.
5978         - Eliminate separate tracking of the active control, we can just
5979         get this from the controls collection.
5980         - Paint the decorations for the newly activated titlebar so we get
5981         a pretty blue bar.
5982         * InternalWindowManager.cs:
5983         * ThemeWin32Classic.cs: Minimized windows get all three buttons
5984         even if they are a tool window.
5985         
5986 2006-06-15  Peter Dennis Bartok  <pbartok@novell.com> 
5988         * TextControl.cs (Undo): Handle non-existent cursor locations in the
5989           undo buffer, these can happen when text was deleted and the cursor
5990           was recorded first. Since we will also have a recorded cursor
5991           after the delete this is not an issue. (Fixes #78651)
5993 2006-06-14  Peter Dennis Bartok  <pbartok@novell.com> 
5995         * AccessibleObject.cs: Remove dependence on Control.is_selected;
5996           instead properly track control states internally (allows us to
5997           remove is_selected from Control)
5999 2006-06-14 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6001         * ImageListStreamer.cs: correctly generate the 1bpp mask for images
6002         whose width is not a multiple of 8.
6004 2006-06-13  Jackson Harper  <jackson@ximian.com>
6006         * MdiClient.cs:  Only maximize the next child if the current one
6007         is maximized.
6009 2006-06-13  Chris Toshok  <toshok@ximian.com>
6011         * DataGridColumnStyle.cs: Invalidate the column when HeaderText is
6012         modified.  Also, guard against grid or grid_drawing being null in
6013         Invalidate.
6015         * DataGrid.cs: Reformat tons of getters/setters.  In the
6016         DataMember setter, just call SetNewDataSource instead of
6017         duplicating some of its functionality.  In SetNewDataSource, don't
6018         check ListManager for null, since the property getter creates the
6019         object if needed.
6021         * DataGridTableStyle.cs: don't set TableStyle or call
6022         SetDataGridInternal on the column here, it's done in
6023         GridColumnStylesCollection.Add.
6025         * GridColumnStylesCollection.cs: fix all the explicit interface
6026         implementations to just call our methods.  Nuke AddInternal() and
6027         move the body of it to Add().  Also, add a call to
6028         column.SetDataGridInternal to Add().
6030         * DataGridTextBoxColumn.cs (.ctors): call this() instead of
6031         base()+duplicate code.  Also, use the Format property instead of
6032         format to generate an Invalidate ala MS.  Lastly, create the
6033         textbox here, unconditionally.
6034         (set_Format): call Invalidate.
6035         (get_TextBox): no need to call EnsureTextBox.
6036         (Commit): remove the message box.
6037         (Edit) remove the call to EnsureTextBox.
6038         (EndEdit): call HideEditBox instead of ReleaseHostedControl.
6039         (EnterNullValue): no need to check textbox for null.
6040         (HideEditBox): no need to check textbox for null.
6041         (SetDataGridInColumn): add the textbox to the grid's controls.
6042         (EnsureTextBox): nuke.
6043         
6044 2006-06-13  Jackson Harper  <jackson@ximian.com>
6046         * MdiWindowManager.cs: Hook up to the maximized menus paint event
6047         and redraw the buttons when needed. Unhook when the window is
6048         unmaximized.
6049         * MainMenu.cs: Add an internal Paint event, the mdi window manager
6050         needs this so that it can redraw its buttons when the menu is
6051         repainted.
6052         * InternalWindowManager.cs:
6053         * Form.cs: The method order has changed for DrawMaximizedButtons,
6054         so that it can be a PaintEventHandler.
6055         
6056 2006-06-13  Jackson Harper  <jackson@ximian.com>
6058         * MdiClient.cs: When we close a maximized mdi window, the next mdi
6059         window is activated and maximized, even if it wasn't before.
6060         - When  a new window is activated repaint the decorations of the
6061         old one, so that it no longer has the Active "look" (the blue
6062         titlebar).
6063         * InternalWindowManager.cs: Open up CreateButtons to base classes
6064         so they can recreate the buttons on state changes.
6065         - If a window is maximized give it all three buttons
6066         * MdiWindowManager.cs: Create the titlebar buttons when the state
6067         is changed, this is needed because a toolwindow will not have all
6068         three buttons until it is maximized.
6070 2006-06-13  Atsushi Enomoto  <atsushi@ximian.com>
6072         * ProgressBar.cs : PerformStep() shouldn't exceed Maximum.
6073           Fixed bug #78609.
6075 2006-06-12  Jackson Harper  <jackson@ximian.com>
6077         * KeysConverter.cs: Make sure we handle the Ctrl special case
6078         if its the only key.
6079         
6080 2006-06-12  Jackson Harper  <jackson@ximian.com>
6082         * Theme.cs: Add a method to get the size of a managed window
6083         toolbar button.
6084         * InternalWindowManager.cs: Remove the ButtonSize property, this
6085         should be retrieved from the theme.
6086         * MdiWindowManager.cs: Get the button size from the theme
6087         * ThemeWin32Classic.cs: Make the method to get the managed window
6088         titlebar button size public.
6089         - Handle the different button sizes of maximized toolwindows
6090         (should match any maximized window).
6091         - Get the titlebar height from the theme, not the WM (which gets
6092         it from the theme).
6094 2006-06-12  Jackson Harper  <jackson@ximian.com>
6096         * InternalWindowManager.cs: Handle NC Double Clicks, passing the
6097         event down to the mdi window manager.
6098         - Expose some extra stuff to base classes
6099         - Make sure to end the Capture on an NC Mouse up, so that we can
6100         get double clicks properly, and the sizing doens't stick.
6101         - When doing PointToClient contain it in the workable desktop
6102         area, this prevents windows from changing size when the cursor is
6103         pulled outside of the working area while sizing.
6104         * MdiWindowManager.cs: When we get a double click maximize the
6105         window.
6106         - Reset the cursor after handling mode changes.
6108 2006-06-12  Peter Dennis Bartok  <pbartok@novell.com> 
6110         * XplatUIX11.cs (WorkingArea): Read the actual workarea for the 
6111           current desktop, instead of just assuming a 0, 0 origin. This
6112           is needed for our internal window manager, to know the top
6113           margin of the desktop
6115 2006-06-12  Chris Toshok  <toshok@ximian.com>
6117         * DataGrid.cs (set_CurrentCell): concede focus as we move around.
6118         we need this to get rid of the selected background in the bool
6119         column.
6120         (CancelEditing): move the ConcedeFocus call to above the Abort
6121         call.  Also, set is_changing to false and invalidate the row
6122         header if we were changing before.
6123         (ProcessKeyPreviewInternal): remove, since noone outside this
6124         class calls it anymore.  Roll the code into ProcessKeyPreview.
6125         (EndEdit): remove the internal version.
6126         (InvalidateCurrentRowHeader): make private.
6128         * DataGridBoolColumn.cs: simplify this class a bunch.  remove the
6129         Keys.Escape handling (and with it the last call to
6130         DataGrid.EndEdit from outside the class.)
6133 2006-06-12  Chris Toshok  <toshok@ximian.com>
6135         * DataGridTextBox.cs (.ctor): isedit defaults to false.
6136         (OnKeyPress): set isedit to true.
6137         (ProcessKeyMessage): remove Keys.Enter handling from here.  it's
6138         already handled by the grid.
6140         * DataGrid.cs (set_CurrentCell): more work here.  it's still not
6141         right.  ugh.
6142         (set_DataSource): SetDataSource always returns true, so stop
6143         putting it in an if statement.
6144         (EndEdit): get rid of some {}'s
6145         (ProcessGridKey): return true in case Keys.Escape.
6146         (ProcessKeyPreviewInternal): only handle KEYDOWN messages.
6147         (ConnectListManagerEvents,DisconnectListManagerEvents): connect to
6148         PositionChanged, stopped connecting to CurrentChanged.
6149         (GetDataSource): simplify this a bunch.
6150         (SetDataSource): change return type from bool to void.
6151         (OnListManagerPositionChanged): rename OnListManagerCurrentChanged
6152         to this, and make sure we don't set ListManager.Position inside
6153         set_CurrentCell.
6154         (OnListManagerItemChanged): if we're passed an actual index,
6155         redraw that row.
6157         * CurrencyManager.cs (set_Position): don't call PullData here.
6159 2006-06-09  Jackson Harper  <jackson@ximian.com>
6161         * TreeNode.cs:  Recalculate the visible order before doing the
6162         Expand/Collapse Below calls, because those calls generate an
6163         expose.
6164         - Reduce calls to the TreeView property, which is mildly expensive
6165         by using a local var.
6166         * Form.cs: Layout the MDI child windows when creating the parent
6167         form.
6168         - Don't use the internal constructor anymore
6169         * MdiClient.cs: use the parent form width/height (if available)
6170         when laying out the child windows, we do this because the
6171         mdiclient isn't docked yet when the initial layout is done.
6172         - Don't need an internal constructor anymore.
6174 2006-06-08 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6176         * FileDialog.cs: handle access errors when trying to create a folder
6177         or changing to a directory. No need to initialize out parameters.
6179 2006-06-08  Alexander Olk  <alex.olk@googlemail.com>
6181         * FileDialog.cs: Append a number when creating a new folder if the
6182           folder already exists (use parenthesis instead of square brackets)
6184 2006-06-08  Alexander Olk  <alex.olk@googlemail.com>
6186         * FileDialog.cs:
6187           - Disabled registry support for windows and added better registry
6188             error checking for other systems (need to investigate why it
6189             works perfectly on my system)
6190           - If a folder already exist show an error MessageBox instead of
6191             trying to create an indexed name.
6192           - Fixed a non intentional typo.
6194 2006-06-08 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6196         * FileDialog.cs: (SetFileName) don't crash if CurrentRealFolder is null.
6198 2006-06-08  Alexander Olk  <alex.olk@googlemail.com>
6200         * FileDialog.cs: When creating a new folder don't crash if the
6201           folder already exists.
6203 2006-06-08  Alexander Olk  <alex.olk@googlemail.com>
6205         * FileDialog.cs: Allmost a complete rewrite.
6206           - added a "virtual" file system that handles the differences
6207             between unix and windows file systems (especially the directory
6208             structure). Moved most of the directory and file handling code
6209             into the vfs.
6210             Added vfs classes: MWFVFS, FileSystem, WinFileSystem,
6211             UnixFileSystem and FSEntry.
6212           - Recently used folder/directory, size, location and used file names
6213             (file name ComboBox) are now stored in the registry and get read
6214             before the dialog shows up (fixes part 6 of bug #78446).
6215           - Creation of new folders/directories is now possible (context menu
6216             or ToolBar). Added TextEntryDialog for this that fills in the gap
6217             until ListView.LabelEdit works.
6218           - Fixed cursor handling (bug #78527) and focus handling for
6219             PopupButtonPanel
6220           - Various "Search in" ComboBox enhancements. The content of the
6221             dropdown listbox now almost matches ms.
6222           - Changed the behaviour when the user switches to SpecialFolder
6223             Recent to show the ListView in View.Details.
6224           - Beside using the ToolBar to change the View property of the
6225             file ListView it is now possible to use the context menu too.
6227 2006-06-08  Alexander Olk  <alex.olk@googlemail.com>
6229         * ComboBox.cs: Don't create a new ObjectCollection when an item
6230           gets inserted. Just insert the item in the existing object_items
6231           ArrayList.
6233 2006-06-08  Jackson Harper  <jackson@ximian.com>
6235         * OpenTreeNodeEnumerator.cs: Fix to use the Parent property, so
6236         that the treeview and root node checks are done also, this fixes a
6237         regression i caused in the unit tests.
6239 2006-06-07  Wade Berrier <wberrier@novell.com> 
6241         * RichTextBox.cs: More ISO8859-1 -> unicode
6243 2006-06-07  Mike Kestner  <mkestner@novell.com>
6245         * ComboBox.cs : use items to hold highlight/selection so that
6246         collection insertions don't require synchronization.
6248 2006-06-07  Jackson Harper  <jackson@ximian.com>
6250         * InternalWindowManager.cs: Simplify (and FIX) the window sizing
6251         routine.  We now always keep the sized edge at the cursor instead
6252         of computing movement and adjusting rects.  There is one buglet
6253         with this method though when the cursor is moved over area that
6254         the window can not expand too (such as the toolbars on the desktop).
6256 2006-06-07 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6258         * XplatUIX11.cs: (IsEnabled,IsVisible) the window handler can be null
6259         here. Fixes crash on startup in AlbumSurfer.
6261 2006-06-07  Peter Dennis Bartok  <pbartok@novell.com> 
6263         * RichTextBox.cs: Replaced embedded ISO8859-1 chars with proper unicode
6264           values
6266 2006-06-07 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6268         * XplatUIX11.cs: call XPending and XNextEvent inside the same lock()
6269         statement to avoid calling XNextEvent which will block if another thread
6270         took the event that we were expecting. Fixes bug #78605.
6272 2006-06-07  Mike Kestner  <mkestner@novell.com>
6274         * ListView.cs : isolated checkbox clicking from the selection logic.
6275         Toggle check state on item doubleclicks.  Really fixes #78454 part2.
6277 2006-06-06  Carlos Alberto Cortez <calberto.cortez@gmail.com>
6279         * Form.cs: Check that the value passed to Form.DialogResult
6280         is a valid enum value.
6282 2006-06-06 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6284         * FileDialog.cs: disable the up button when in 'Recently Used' or 'My
6285         Computer'. Clicking it in the network view goes to 'My Computer'.
6286         Added CIFS filesystem type. Display the mount point of filesystems.
6287         Avoid duplicate mount points (happens for me with CIFS);
6289 2006-06-06  Jackson Harper  <jackson@ximian.com>
6291         * InternalWindowManager.cs: Draw the maximized windows buttons
6292         when resizing.
6294 2006-06-06 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6296         * Form.cs: when running a modal dialog, ignore WM_CLOSE requests for
6297         all other dialogs. Fixes bug #78585.
6299 2006-06-06  Mike Kestner  <mkestner@novell.com>
6301         * CheckedListBox.cs : apply CheckOnClick behavior to unchecking too.
6302         Only invalidate checkbox on checkstate changes to avoid flicker.
6303         * ListBox.cs : avoid unselect/select when clicking selected item.
6304         avoid reselection flicker for already multiselected items.
6305         Fixes #78382.
6307 2006-06-06  Jackson Harper  <jackson@ximian.com>
6309         * MdiWindowManager.cs: When the window is closed do an NCRecalc on
6310         the parent form so that the menu is removed if needed.
6312 2006-06-06  Mike Kestner  <mkestner@novell.com>
6314         * ListBox.cs : add ScrollWindow call to UpdateTopItem.  fix
6315         Prev/Next/PrevPage/NextPage/Home/End index calculation.  Fixes #78559.
6317 2006-06-06  Mike Kestner  <mkestner@novell.com>
6319         * CheckedListBox.cs : rebuild check collection on Add.  Fixes #78426.
6322 2006-06-06  Jackson Harper  <jackson@ximian.com>
6324         * Control.cs: Use the property (instead of the field) to get the
6325         default cursor so it is instantiated correctly.
6326         * InternalWindowManager.cs: The OS doesn't give us an NCPAINT with
6327         resizes so we need to manually repaint the window decorations here.
6328         - Set the titlebar button locations as soon as they are created,
6329         otherwise they are not set correctly on win32.
6330         
6331 2006-06-06  Chris Toshok  <toshok@ximian.com>
6333         * CurrencyManager.cs (set_Position): call PullData before
6334         OnCurrentChanged.
6335         (AddNew): after calling IBindingList.AddNew, update our
6336         listposition, and call OnCurrentChanged/OnPositionChanged (without
6337         calling PullData).
6338         (OnCurrentChanged): remove the call to PullData from here.
6339         (OnItemChanged): remove the call to PushData from here.
6340         (OnPositionChanged): change the test from == null to != null to
6341         match the other methods.
6342         (ListChangedHandler): the grossest part of the patch.  Implement
6343         this such that it passes the unit tests in CurrencyManagerTest and
6344         the output more or less matches that of MS's implementation.
6346 2006-06-06  Mike Kestner  <mkestner@novell.com>
6348         * ListView.cs : only update check state on single click.
6349         * ThemeWin32Classic.cs : fix focus drawing for details view without
6350         fullrowselect.  Fixes #78454.
6351         * XplatUIX11.cs : fix for double click emission.
6353 2006-06-05  Jonathan Chambers  <jonathan.chambers@ansys.com>
6355         * PropertyGridView.cs : Applied Atsushi's patch to fix
6356         font dialog bug  (#78197).
6358 2006-06-05  Jackson Harper  <jackson@ximian.com>
6360         * TreeNode.cs: Compute the next node for expanding/collapsing
6361         correctly. We now factor in nodes without a NextNode
6362         correctly. (Fixes somes cases in nunit-gui).
6363         * InternalWindowManager.cs: Set the bounds when updating the
6364         virtual position of a tool window.
6365         
6366 2006-06-05  Chris Toshok  <toshok@ximian.com>
6368         * DataGrid.cs: rename cached_currencymgr to list_manager.
6369         (set_CurrentCell): move SetCurrentCell code here, and clean it up
6370         some.
6371         (CurrentRow, CurrentColumn): single accessors so we can make the
6372         cursor movement code a lot easier to understand.
6373         (CurrentRowIndex): implement this in terms of CurrentRow.
6374         (BeginEdit): clean this up a bit.
6375         (CancelEditing): sort out the is_editing/is_changing/is_adding
6376         stuff a little.
6377         (EndEdit): minor changes.
6378         (OnKeyDown): add a comment about a (most likely) unnecessary
6379         check.
6380         (OnMouseDown): cancel editing when we click on a row header.  And
6381         use the CurrentRow setter, not CurrentCell.
6382         (ProcessDialogKey): directly call ProcessGridKey.
6383         (UpdateSelectionAfterCursorMove): factor out this common block of
6384         code (it's used everywhere that we move the cursor by updating row
6385         or column).
6386         (ProcessGridKey): pretty substantial overhaul.  Use the
6387         CurrentRow/CurrentColumn properties to make the code a lot more
6388         readable.  Only use the CurrentCell property when we have to
6389         modify both row and column at once.  Tab behavior is still broken,
6390         and Delete is untested.
6391         (Select): if we have no selected rows, set selection_start to
6392         @row.
6393         (EditCurrentCell): rename EditCell this.  It was only ever invoked
6394         with CurrentCell as the arg, so drop the arg and rename it.
6396         * DataGridColumnStyle.cs: clean up the constructors a little, and
6397         drop CommonConstructor().
6399         * DataGridTextBox.cs (.ctor): set accepts_return to true so we
6400         actually get notified when the user hits it.
6401         (ProcessKeyMessage): *substantially* simplify this method.
6402         There's no reason (that I can see) for the textbox to be making
6403         calls into the datagrid at all.  Remove all of them but the ones
6404         for Enter handling.  those will take some more work.
6406         * DataGridTextBoxColumn.cs (ConcedeFocus): implement this by
6407         calling HideEditBox.
6408         (HideEditBox): if we have an active textbox, render it invisible
6409         without causing a re-layout of the datagrid.
6411 2006-06-05  Mike Kestner  <mkestner@novell.com>
6413         * ListView.cs : fix NRE crasher when focuseditem is cleared by
6414         collection changes by resetting it to Items[0].  Fixes #78587.
6416 2006-06-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6418         * MessageBox.cs: if the height of the text is larger than the icon_size,
6419         use that. Fixes bug #78575.
6421 2006-06-05  Jackson Harper  <jackson@ximian.com>
6423         * TreeView.cs: Fix line drawing when scrolling.  To do this each
6424         node is basically responsible for drawing its entire horizontal
6425         area.  When drawing a node it draws its parent node lines if
6426         needed.
6427         - Adjust the clip area to the viewport rectangle
6428         - Fix Left/Right key handling to match MS. (It expand/collapses
6429         and moves to parents/first child but does not move selection to
6430         sibling nodes).
6431         - Fix SetTop to work with new bound calculation code
6432         - When scrollbars are no longer needed we need to reset scrolling
6433         vars and recalculate the visible order so the redraw is correct
6434         * TreeNode.cs: We can't expand/collapse nodes with no children.
6436 2006-06-03  John Luke  <john.luke@gmail.com> 
6438         * X11DesktopColors.cs: dllimport the exact gtk and gdk versions
6439         so the colors work without dev packages
6440         
6441 2006-06-02  Peter Dennis Bartok  <pbartok@novell.com> 
6443         * Control.cs 
6444           - Select: Implemented to just use activate. Seems to match MS 
6445             behaviour closest. Documented to only do actual control walking 
6446             based on it's parameters if in a container control so I moved 
6447             the code there.
6448           - Removed selection check logic from our internal Select() method
6449         * ContainerControl.cs:
6450           - Select: Moved selection logic from Control here, since MS documents
6451             that containers obey the bool arguments. No longer calling base
6453 2006-06-02  Jackson Harper  <jackson@ximian.com>
6455         * TreeView.cs: If the selected node isn't changed when we get
6456         focus update the previously selected node so that we see the
6457         selection box.
6459 2006-06-02  Mike Kestner  <mkestner@novell.com>
6461         * ComboBox.cs: restructure grab and general mouse event handling.
6462         Make the composite control raise mouse events like it was a single
6463         control for leaves/enters/motion/up/down events.  fix dropdown list
6464         coordinate mangling and refactor it into the scrollbar subclass to
6465         reduce code duplication.  Fixes #78282 #78361 and #78457.
6467 2006-06-02  Mike Kestner  <mkestner@novell.com>
6469         * ScrollBar.cs: remove Capture setting/clearing, as it happens
6470         automatically in the Control.WndProc.
6472 2006-06-01 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6474         * FileDialog.cs: fix crash when running SharpChess, which sets the
6475         FilterIndex to 2 with only one Filter.
6477 2006-06-01 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6479         * ToolBar.cs: add SizeSpecified property.
6480         * ToolBarButton.cs: when the ButtonSize is calculated by the container,
6481         try to figure out our real size, otherwise fallback to what the
6482         container says.
6484 2006-06-01  Peter Dennis Bartok  <pbartok@novell.com> 
6486         * XplatUIX11.cs (DefWndProc): WM_MOUSEWHEEL needs to be passed up
6487         * Control.cs (WndProc): MS always calls the DefWndProc to pass
6488           up the event
6490 2006-06-01  Mike Kestner  <mkestner@novell.com>
6492         * ListView.cs: revamp the focus management in ListView.  It still
6493         causes churn of LostFocus/GotFocus emissions on clicks, but it's
6494         better than not handling focus at all.  Will revisit when pdb feels
6495         the general focus handling is solid.  Fixes #78526.
6497 2006-06-01  Jackson Harper  <jackson@ximian.com>
6499         * TreeView.cs: Set the default border style in the constructor.
6500         - Move painting to use OnPaintInternal instead of capturing
6501         WM_PAINT, this is the correct way of doing things
6502         - UpdateBelow shouldn't invalidate the scrollbar area
6503         - Cap the top on update below in case the node was above the top
6504         of the viewport rectangle.
6505         - ExpandBelow and Collapse below need to obey Begin/End Update.
6506         * TreeNode.cs: Make is_expanded internal so the treenode
6507         collection can change it without firing the whole event chain.
6508         * TreeNodeCollection.cs: When clearing all the child nodes make
6509         sure to recalc the visible order.
6510         - Improve algo for remove the top node
6512 2006-06-01  Peter Dennis Bartok  <pbartok@novell.com> 
6514         * XplatUIX11.cs (SetFocus): Make sure we can handle re-entrancy due to
6515           SendMessage directly calling window procedures, which in turn might
6516           call SetFocus()
6518 2006-06-01  Peter Dennis Bartok  <pbartok@novell.com>
6520         * Control.cs: Don't handle WM_SETFOCUS if the same window already
6521           has focus (works around X11 sending a FocusIn after our SetFocus)
6522         * XplatUIX11.cs: Send KILLFOCUS before setting SETFOCUS on new window
6524 2006-06-01  Alexander Olk  <alex.olk@googlemail.com>
6526         * Mime.cs: Fix for the NET_2_0 build.
6527           NameValueCollection needs StringComparer now.
6529 2006-05-31  Chris Toshok  <toshok@ximian.com>
6531         * DataGridDrawingLogic.cs (FromPixelToColumn): modify this to also
6532         return (via an out parameter) the starting X of the column.
6533         (UpdateVisibleColumn): track change to FromPixelToColumn.
6534         (HitTest): add a ColumnResize case here.
6535         (DrawResizeLine): new function, probably poorly named.
6537         * DataGrid.cs (.ctor): get rid of cached_currencymgr_events.  We
6538         only need to keep one reference.
6539         (set_ListManager): same.
6540         (OnMouseDown): call HitTest instead of grid_drawing.HitTest.
6541         Also, add support for HitTestType.ColumnResize.
6542         (OnMouseMove): add column resize behavior here, and change the
6543         cursor to the correct one as we move around the datagrid.
6544         (OnMouseUp): terminate the column resize if we're resizing.
6545         (ProcessGridKey): from the MS docs, Alt-0 enters the null value
6546         for the current cell.
6547         (ConnectListManagerEvents): use cached_currencymgr.
6548         (DisconnectListManagerEvents): fill this in, using
6549         cached_currencymgr.
6550         (SetCurrentCell): remove cached_currencymgr_events handling.
6551         (SetDataMember): only call DisconnectListManagerEvents if
6552         cached_currencymgr is != null.
6553         (SetDataSource): same.
6554         (OnListManagerCurrentChanged): cached_currencymgr_events ->
6555         cached_currencymgr.
6557 2006-05-31  Jackson Harper  <jackson@ximian.com>
6559         * BindingManagerBase.cs: Remove somedebug code that creeped into
6560         SVN.
6561         * TreeNode.cs: We get the indent level dynamically right now, so
6562         don't track it as a member.
6563         * TreeNodeCollection.cs: Make sure all nodes added to the list
6564         have parents, treeviews/topnodes setup properly.
6565         - Don't attempt to track indent level.
6567 2006-05-30  Jackson Harper  <jackson@ximian.com>
6569         * BindingContext.cs: Create the currency manager tables here.
6570         This allows us to more easily create null tables (when bad data
6571         members are used), and more easily create related currency
6572         managers.
6573         * CurrencyManager.cs: All the table creation stuff is done by the
6574         binding context now.
6575         - Current should throw an exception if listposition is -1.
6576         - CancelCurrentEdit/EndCurrentEdit, do nothing if the list hasn't
6577         been bound yet.
6579 2006-05-30  Mike Kestner  <mkestner@novell.com>
6581         * ListView.cs: allow reexpansion of zero-width column headers.
6582         Fixes #78528.
6584 2006-05-28  Chris Toshok  <toshok@ximian.com>
6586         * CurrencyManager.cs (get_Current): after the late binding
6587         listposition = -1 fix, we need to guard against it here and return
6588         null, otherwise we raise an exception (which is swallowed
6589         elsewhere, and breaks datagrid databinding.)
6591 2006-05-26  Peter Dennis Bartok  <pbartok@novell.com>
6593         * MenuAPI.cs (ProcessMenuKey): We can legally get msg types other
6594           than WM_SYSKEY, don't throw if get something unexpected (#78507)
6596 2006-05-26  Jackson Harper  <jackson@ximian.com>
6598         * ControlPaint.cs:
6599         * ThemeWin32Classic.cs: For color comparisons just use the ARGB
6600         values, it's faster and it's all we care about (we don't care if
6601         the names aren't equal).
6602         * KeyboardLayouts.cs: Eliminate some dead code.
6603         - Lazy init things
6604         * X11Keyboard.cs: Lazy init keyboard detection.
6605         - Cleanup access modifiers a little.
6607 2006-05-26  Peter Dennis Bartok  <pbartok@novell.com>
6609         * XplatUIX11.cs: Once again, attempting to get layout just right.
6611 2006-05-26  Peter Dennis Bartok  <pbartok@novell.com> 
6613         * LinkLabel.cs (CreateLinkPieces): Use MeasureString to calculate
6614           the sizes of each link section, that will result in sizes that
6615           match DrawString's layout (Fixes #78391)
6617 2006-05-27  Alexander Olk  <alex.olk@googlemail.com>
6619         * FileDialog.cs: If AddExtension property is true autocomplete the
6620           extensions in SaveFileDialog correctly. Fixes bug #78453.
6621           Set MyNetwork and MyComputer to "C:\" for windows. This should
6622           fix part 8 of bug #78446 for now.
6624 2006-05-26  Chris Toshok  <toshok@ximian.com>
6626         * DataGrid.cs (ColumnStartedEditing): fill these in.  for now just
6627         invalidate the current row header if we need to, but presumably
6628         we'll invalidate the row corrsponding to the bounds or
6629         editingControl.
6630         (GridHScrolled): switch back to this method, as it's part of the
6631         public api.  *sigh*.
6632         (GridVScrolled): same.
6633         (OnMouseWheel): hack up something that more or less works.  Call
6634         GridHScrolled/GridVScrolled directly, instead of duplicating much
6635         of their code here.
6636         (EnsureCellVisibility): reinstate a bunch of this code, since we
6637         can't just set the scrollbar Value and expect to do all the work
6638         in the ValueChanged handler.  Also, Call Update() after scrolling
6639         in one direction so the other XplatX11.ScrollWindow call has the
6640         proper stuff in the proper places.
6641         (EditCell): set is_editing to true before calling .Edit.
6643         * DataGridTextBox.cs (set_IsInEditOrNavigateMode): just set it,
6644         don't bother comparing first.
6645         (OnKeyPress): call grid.ColumnStartedEditing before calling
6646         base.OnKeyPress.  this will set is_changing and invalidate the row
6647         header if necessary.
6648         (ProcessKeyMessage): for WM_CHAR messages, call
6649         ProcessKeyEventArgs directly.  swallow anything other than WM_CHAR
6650         and WM_KEYDOWN.
6651         
6652         * DataGridBoolColumn.cs (Edit): don't set is_editing to true here.
6653         it's done in the DataGrid.
6654         (NextState): call grid.ColumnStartedEditing, which takes care of
6655         invalidating the row header (and setting is_changing).
6657         * DataGridTextBoxColumn.cs (Edit): don't set is_editing to true
6658         here.  it's done in the DataGrid.
6660 2006-05-25 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6662         * Control.cs: allow changing the cursor when the mouse position is
6663         out of bounds but Capture is set.
6664         * LinkLabel.cs: handle the case when the mouse button is pressed on the
6665         linklabel but released somewhere else.
6667 2006-05-25  Jackson Harper  <jackson@ximian.com>
6669         * TreeView.cs: When we get focus if there is no selected node make
6670         it the top node
6671         - Remove some uneeded setup code from Draw.
6672         * TreeNodeCollection.cs: If the tree doesn't have a top node when
6673         a new node is inserted make the new node the top.
6674         * XplatUIX11.cs:
6675         * Timer.cs: Use Utc time so that no local time zone stuff needs to
6676         be used (should be faster).
6677         
6678 2006-05-25  Chris Toshok  <toshok@ximian.com>
6680         * DataGrid.cs (EnsureCellVisibility): remove some code to fix a
6681         problem with the last commit.
6683 2006-05-25  Chris Toshok  <toshok@ximian.com>
6685         * DataGridTextBoxColumn.cs (ReleaseHostedControl): turns out we do
6686         need the invalidate call here, while scrolling right-to-left via
6687         the left arrow key (i.e. moving the editing cell while scrolling).
6689         * DataGrid.cs (.ctor): remove the initialization of
6690         ctrl_pressed/shift_pressed.  We no longer track them using key
6691         up/down handlers, but by using Control.ModifierKeys.  Also, switch
6692         to using ValueChanged handlers on the scrollbars instead of
6693         Scrolled event handlers.  This simplifies a bunch of the scrolling
6694         code.
6695         (GridHValueChanged): rename from GridHScrolled, and change it to
6696         work with the new event args.
6697         (GridVValueChanged): same.
6698         (OnMouseDown): initialize ctrl_pressed/shift_pressed here.
6699         (OnMouseWheel): actually scroll the datagrid.  Don't change the
6700         selected cell.
6701         (ProcessGridKey): correct all the keyboard navigation stuff I
6702         could find.  Ctrl up/down/left/right/home/end work now.
6703         (EnsureCellVisibility): correct method name spelling.  Also,
6704         simplify this a touch by not explicitly calling the
6705         ScrollToRow/ScrollToColumnInPixels methods.  We just set the
6706         scrollbar value.
6707         (OnKeyUpDG): no need for this method now.
6708         
6709 2006-05-25 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6711         * LinkLabel.cs: display the OverrideCursor when hovering the label.
6712         Fixes bug #78392.
6714 2006-05-25  Chris Toshok  <toshok@ximian.com>
6716         * ThemeWin32Classic.cs: fix datagrid clipping problems caused by
6717         r61019.
6719 2006-05-25  Peter Dennis Bartok  <pbartok@novell.com> 
6721         * Application.cs: Moved setting of is_modal and closing to before
6722           we create the control, to allow the event handlers called as a
6723           result of creation affect closing. Also removed Gonzalo's previous
6724           change to setting DialogResult, the behaviour has been moved to 
6725           Form.ShowDialog()
6726         * Form.cs: 
6727           - ShowDialog(): Removed explicit creation of the form, let RunLoop
6728             handle it instead
6729           - ShowDialog(): If no dialog result is set, we need to return Cancel
6730           - WM_CLOSE: Fire Closing/Closed events, and reset dialog result if
6731             the close is cancelled
6733 2006-05-25  Jackson Harper  <jackson@ximian.com>
6735         * StatusBar.cs: We only need to update the sizes of the other
6736         panels when we have auto size contents.  Also we are only updating
6737         the contents of the panel, not the borders, so compensate for the
6738         border width (TODO: get this width from the theme somehow).
6739         * TreeView.cs: Scrollable is true by default
6740         - Use invalidate instead of refresh where needed
6741         - Factor the scrollable value into scrollbar updating
6742         - Update the scrollbars if the Scrollable property is altered
6743         - Update the selected node if its ImageIndex is changed
6744         - Handle null nodes in UpdateNode (mainly so we don't have to
6745         check if selected is null when updating it
6746         - Fix VisibleCount to use the ViewportRectangle so that scrollbars
6747         are factored into the visible count
6748         - Use VisibleCount for clarity in the code
6749         - When the font is changed we need to recurse through all the
6750         nodes and invalidate their sizes
6751         
6752 2006-05-25 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6754         * Application.cs: set the DialogResult to fixed when the main form is
6755         hidden or destroyed while being modal.
6757 2006-05-25  Miguel de Icaza  <miguel@novell.com>
6759         * Theme.cs: Use Tangoified messagebox icons. 
6761         (GetSizedResourceImage): Also cope with width = 0 and do not
6762         trigger a warning in that case (0 means "give me your icon from
6763         the resouce, no special size needed).
6765 2006-05-25  Peter Dennis Bartok  <pbartok@novell.com> 
6767         * Application.cs: Leave runloop if the the main modal form is 
6768           hidden (fixes #78484)
6770 2006-05-25  Atsushi Enomoto  <atsushi@ximian.com>
6772         * BindingContext.cs : reject null datasource in Contains() and
6773           Item[].
6774         * CurrencyManager.cs : check data_member validity when data_source
6775           is dataset. When it is late binding, the initial position is -1.
6777 2006-05-24  Jackson Harper  <jackson@ximian.com>
6779         * TreeNodeCollection.cs: Dont't recalculate the visible order on
6780         inserted nodes that aren't visible.  This changes the
6781         max_visible_order which confuses scrollbar settings.
6782         - Use the enumerator to get the prev node instead of duplicating
6783         code.
6784         * TreeView.cs: Use new method for setting scrollbar values
6785         - Don't set the bounds every time the scrollbar is updated
6786         - When updating below the root node use an invalidate instead of a
6787         refresh to prevent the child controls (scrollbars) from being
6788         refreshed. (UpdateBelow still needs to be reworked anyways).
6789         - Reenable SetBottom now that visible orders are set correctly,
6790         added some debug code incase we ever get bad values there again.
6791         - Set the scrollbar max to 2 less then the max value, this
6792         compensates for the max value being one above the node count, and
6793         for scrollbars adding one extra "notch".
6794         - When drawing image nodes if there is an imagelist we draw the
6795         first image in the list if the supplied image index is out of the
6796         image list's bounds.
6797         
6798 2006-05-24  Peter Dennis Bartok  <pbartok@novell.com> 
6800         * XplatUIX11.cs: Don't blindly cache hwnd.ClientRect, reset it when 
6801           we receive a size change from the WM (Fixes #78503)
6803 2006-05-24  Peter Dennis Bartok  <pbartok@novell.com>
6805         * XplatUIWin32.cs, XplatUIX11.cs: Refresh when setting the Clip 
6806           rectangle (Fixes #78501)
6808 2006-05-24  Peter Dennis Bartok  <pbartok@novell.com> 
6810         * ButtonBase.cs: 
6811           - Fixed MouseUp, MouseDown and MouseMove to treat mouseevent.Button 
6812             as a bitfield.
6813           - Fixed MouseMove to no longer switch pressed state unless the left
6814             mouse button is pressed. Atsushi provided the original patch (#78485)
6815           
6816 2006-05-24  Jackson Harper  <jackson@ximian.com>
6818         * ScrollBar.cs: New internal methods that allow us to change a
6819         couple values on the scrollbar (the most common case is maximum
6820         and large change) without getting multiple invalidates.
6822 2006-05-24  Chris Toshok  <toshok@ximian.com>
6824         * DataGridBoolColumn.cs (Abort): revert back to the saved setting.
6825         (Edit): save off the original state in oldState, and set
6826         grid.is_editing to true.
6827         (OnKeyDown): abort editing if escape is pressed.  also, call
6828         NextState if space is pressed.
6829         (OnMouseDown): call NextState.
6830         (NextState): factor out shared code from OnKeyDown and OnMouseDown
6831         here.  Also, only invalidate the row header once (on the initial
6832         is_changing switch) to save on redraws.
6834 2006-05-24  Chris Toshok  <toshok@ximian.com>
6836         * DataGridTextBoxColumn.cs (Commit): only call SetColumnValueAtRow
6837         if the value in the cell is different than it was before.  This
6838         keeps us from triggering a layout when we move around a datarid
6839         with a highlighted cell.
6840         (Edit): suspend layout when creating/positining the text box, and
6841         resume passing false so we don't ever actually re-layout.
6842         (ReleaseHostedControl): same.
6843         (EnsureTextBox): reformat slightly, and set WordWrap to false.
6845         * DataGridTextBox.cs (ProcessKeyMessage): it's not true that all
6846         control-key sequences should go to the datagrid - remove that
6847         lock.  Also, modify the conditions under which we move between
6848         cells when moving the cursor within a cell, and remove the "this"
6849         and "base" from field accesses.  We weren't even consistent, given
6850         they all were in the base class.
6852 2006-05-24  Atsushi Enomoto  <atsushi@ximian.com>
6854         * Binding.cs : (.ctor)
6855           An obvious NRE fix for BindingTest.CtorNullTest().
6857 2006-05-23  Chris Toshok  <toshok@ximian.com>
6859         * TextBoxBase.cs (get_Text): don't add a trailing newline, add
6860         them between lines.  This fixes some quirks editing cells in the
6861         datagrid.
6863 2006-05-23  Jackson Harper  <jackson@ximian.com>
6865         * TreeView.cs: Use begin/end update when doing expand/collapse all
6866         so that we don't get flicker on the scrollbar.
6868 2006-05-23  Jackson Harper  <jackson@ximian.com>
6870         * TreeNode.cs: Bounds are computed 'on the fly' now.  This allows
6871         treenode calculations to be independant of the painting code. To
6872         do this nodes track a visible order which is calculated by the
6873         treeview.
6874         - Call new methods for expanding/collapsing nodes.  These methods
6875         use scrollwindow so we don't have to update everything below the
6876         node.
6877         * TreeView.cs: Refactored drawing and scrolling code.  We don't
6878         need to update nodes when drawing anymore or calculate scrollbar
6879         stuff.
6880         - Added new methods for expanding/collapsing nodes. These methods
6881         use ScrollWindow so as to not have to redraw all the nodes below.
6882         * TreeNodeCollection.cs: Recalc visible order and scrollbars when
6883         we add/remove nodes or sort.
6884         - Handle removing the selected and the top node properly.
6886 2006-05-23  Chris Toshok  <toshok@ximian.com>
6888         * DataGridTextBoxColumn.cs (Edit): set grid.is_editing to true.
6889         maybe this should actually happen in the datagrid code?
6890         (EndEdit): no need to invalidate anything, given that
6891         ReleaseHostedControl causes the datagrid to relayout, which
6892         invalidates everything anyway.
6894         * DataGrid.cs (set_CurrentCell): remove duplicate check (it's also
6895         in SetCurrentCell).
6896         (set_SelectionBackColor): call InvalidateSelection instead of
6897         Refresh.
6898         (set_SelectionForeColor): same.
6899         (BeginEdit): Flesh this out a bit.
6900         (CancelEditing): only do any of this if we're editing/adding.
6901         (EndEdit): same.
6902         (OnMouseDown): there's no need to cancel editing here, it's done
6903         in SetCurrentCell.
6904         (SetCurrentCell): only invalidate the current row header if it's a
6905         different row than the new one.
6906         (ShiftSelection): fix this to work like MS does.
6907         (ResetSelection): factor out the invalidation of selected_rows to
6908         InvalidateSelection.
6909         (SetDataSource): cancel any editing that's going on.
6911         * DataGridColumnStyle.cs
6912         (IDataGridColumnStyleEditingNotificationService.ColumnStartedEditing):
6913         call the non-interface version.
6915         * ThemeWin32Classic.cs (DataGridPaintColumsHdrs): intersect the
6916         header rectangle with the clip rectangle so we don't redraw the
6917         entire header for just a small area.  Gets rid of the last flicker
6918         when horizontally scrolling.
6919         (DataGridPaintRow): same.
6921 2006-05-23  Mike Kestner  <mkestner@novell.com>
6923         * ListViewItem.cs: remove size for line hack from LargeIcon layout.
6924         * ThemeWin32Classic.cs: don't draw line.  it's really the top of a
6925         poorly placed checkbox on the MS control.  Fixes Alex's unfiled
6926         Critical bug report.
6928 2006-05-23  Peter Dennis Bartok  <pbartok@novell.com> 
6930         * PictureBox.cs: Fixed broken ControlStyles. Unit test no longer fails,
6931           and this fixes #78493
6933 2006-05-23  Miguel de Icaza  <miguel@novell.com>
6935         * Theme.cs (GetSizedResourceImage): Scale images if the proper
6936         size is not found.  
6937         
6938         * FileDialog.cs: Do not change the background for the side bar as
6939         it wont work nicely with the theme, and also reduces the artifacts
6940         in rendering the icons (which I want to fix too).
6942         * MimeIcon.cs (ResourceImageLoader): Load images from assembly
6943         resources, not resgen resources. 
6945         (PlatformDefaultHandler): Pull images using the new API.
6947 2006-05-23  Peter Dennis Bartok  <pbartok@novell.com> 
6949         * Hwnd.cs (Dispose): Remove any pending exposures. XEventQueue holds
6950           a reference to the hwnd and will not remove it unless there are
6951           no pending exposures (fixes #78341)
6952         * XplatUI.cs: Improved debug
6954 2006-05-23  Atsushi Enomoto  <atsushi@ximian.com>
6956         * MenuAPI.cs : don't handle OnClick event when it was not the left
6957           button. Fixed bug #78487.
6959 2006-05-23  Mike Kestner  <mkestner@novell.com>
6961         * MenuAPI.cs: fix placement of submenus for multi-row menu bars, and
6962         prefer submenus to the top menu for item lookup, to avoid popping down
6963         top-row items.
6965 2006-05-23  Alexander Olk  <alex.olk@googlemail.com>
6967         * ThemeWin32Classic.cs: Rewrote CPCPDrawScrollButton to drop
6968           Graphics.FillRectangle as the visual results are really bad (even
6969           on win). We now draw perfect arrows (and perfect shadows when the
6970           scrollbar is disabled). Simplified CPDrawGrid. CPDrawGrid now uses
6971           Pen.DashPattern to draw the dots of each line.
6973 2006-05-22  Alexander Olk  <alex.olk@googlemail.com>
6975         * FileDialog.cs: Update the filename combobox when navigating through
6976           the ListView with the cursor keys. Fixes part 7 of bug #78446.
6978 2006-05-22  Mike Kestner  <mkestner@novell.com>
6980         * ListView.cs: raise SelectedIndexChanged on keyboard selection.
6981         Fixes #78463.
6983 2006-05-22  Mike Kestner  <mkestner@novell.com>
6985         * ComboBox.cs: Refresh in EndUpdate to pick up all the dropped Paint
6986         requests. Fix a misspelled parameter and a copy paste exception error
6987         in Select.
6989 2006-05-22  Peter Dennis Bartok  <pbartok@novell.com> 
6991         * ThemeWin32Classic.cs: Changed DefaultFont emSize from 8.25 to 8
6992           to get the same width/height (5/13) on X11 as the default font has on
6993           win32. This means that our DefaultFont emSize is smaller than the 
6994           the MS SWF equivalent (even thought the width/height stays the same)
6996 2006-05-20  Jackson Harper  <jackson@ximian.com>
6998         * MdiClient.cs:
6999         * MdiWindowManager.cs:
7000         * InternalWindowManager.cs: Make sure to use the border width from
7001         the theme.
7003 2006-05-20  Jordi Mas i Hernandez <jordimash@gmail.com>
7005         * PrintDialog.cs: Implements printer details
7007 2006-05-19  Alexander Olk  <alex.olk@googlemail.com>
7009         * FileDialog.cs: Added focus handling for PopupButtonPanel.
7010           Fixes part 1 and 2 of bug #78446
7012 2006-05-19  Peter Dennis Bartok  <pbartok@novell.com> 
7014         * XplatUIX11.cs (SetWindowPos): Recalculate client area size on resizes
7015           instead of sticking to the first ever calculated value
7017 2006-05-19  Mike Kestner  <mkestner@novell.com>
7019         * ComboBox.cs: fix mouse motion selection to use MousePosition and
7020         PointToClient, since Capture is set. Fixes #78344.
7022 2006-05-19  Mike Kestner  <mkestner@novell.com>
7024         * ListView.cs: match MS behavior in Details view where items are not
7025         drawn if Columns.Count == 0. 
7026         * ThemeWin32Classic.cs: only highlight ListView selection if focused.
7027         Use a separate pen to draw the check, since changing the width affects
7028         the box as well.  Fixes #78454.
7030 2006-05-18  Miguel de Icaza  <miguel@novell.com>
7032         * ListView.cs: ArgumentOutOfRangeException, single versions of the
7033         exception should throw the name of the invalid argument.
7035         * FileDialog.cs (OnClickOpenSaveButton): Avoid crash in open if
7036         there are no files listed. 
7038 2006-05-18  Jackson Harper  <jackson@ximian.com>
7040         * ThemeWin32Classic.cs: Don't use endcaps, they mess the drawing
7041         up.
7043 2006-05-18  Peter Dennis Bartok  <pbartok@novell.com> 
7045         * Control.cs: Brought back our old UpdateZOrder method as a private
7046           function and switched our calls from UpdateZOrder to the new one.
7047           This fixes the Paint.Net canvas disappearing bug.
7049 2006-05-18  Jackson Harper  <jackson@ximian.com>
7051         * Theme.cs:
7052         * ThemeWin32Classic.cs:
7053         * InternalWindowManager.cs: Move the drawing into the theme,
7054         expose everything the theme should need from the window manager.
7056 2006-05-18  Peter Dennis Bartok  <pbartok@novell.com>
7058         * XplatUIX11.cs (DefWndProc): WM_SETCURSOR: Assign the return value 
7059           from the call to NativeWindow to avoid walking up the parent chain
7060           further than needed (speeds up setting cursors and avoids setting
7061           the wrong cursor if a parent has another cursor defined)
7062         * Cursor.cs: When loading an icon as cursor, MS uses the center of
7063           the icon as hotspot, not what's contained as hotspot in the icon
7064           file. This fixes the perceived drawing offset seen with Paint.Net
7065         
7066 2006-05-18  Peter Dennis Bartok  <pbartok@novell.com> 
7068         * XplatUIX11.cs: 
7069           - Store the calculated rectangle in Hwnd object and use it when 
7070             setting the client size
7071           - Force Toolwindows to always be type Dock, to ensure they're on top
7073 2006-05-18  Mike Kestner  <mkestner@novell.com>
7075         * ComboBox.cs: first pass at ComboBox rework.  Layout is more
7076         consistent with MS positioning.  IntegralHeight, ItemHeight, Sizing.
7077         Correctly initialize textcontrol and ListBox on DropDownStyle changes. 
7078         Substantial refactoring to remove confusing nested classes. Coding
7079         standard and Get+Set->property refactorings.  Shift to index based
7080         highlighting in ComboListBox instead of constantly using IndexOf and
7081         Items[]. Add invalidations on resize for DropDownList to fix ugliness
7082         in FileDialog growth.  Draw borders manually since Simple mode needs
7083         to look like two independent controls.  Make listbox border
7084         conditional to DropDownStyle.  Improved OwnerDraw support.
7086 2006-05-18  Sebastien Pouliot  <sebastien@ximian.com>
7088         * PaintEventArgs.cs: For 2.0, check for a null Graphics in the .ctor. 
7089         Don't set the disposed graphics to null, so we can throw the "right"
7090         exception if the graphics is reused later (added a flag to avoid 
7091         double disposing). Some behaviours are different under 2.0 and are
7092         filled under bug #78448.
7094 2006-05-18  Peter Dennis Bartok  <pbartok@novell.com>
7096         * Control.cs: When double-buffering is enabled, we need to reset
7097           our graphics context between paint calls. Otherwise, any 
7098           transformations and other alterations on the context will 
7099           become cumulative (#77734)
7101 2006-05-18  Mike Kestner  <mkestner@novell.com>
7103         * ListView.cs: do focused item selection like MS on clicks. 
7104         Rework focus handling for ItemControl so LostFocus invalidates as
7105         well.
7106         * ThemeWin32Classic.cs: only draw focus rectangle for ListViewItems if
7107         the ListView ItemControl has focus.
7109 2006-05-17  Peter Dennis Bartok  <pbartok@novell.com>
7111         * XplatUIX11.cs: If client_window ends up being width or height zero
7112           due to border settings, move it off window inside whole_window (#78433)
7114 2006-05-17  Alexander Olk  <alex.olk@googlemail.com>
7116         * Mime.cs: Shrink the mime file cache correctly.
7118 2006-05-17  Alexander Olk  <alex.olk@googlemail.com>
7120         * ThemeWin32Classic.cs: Readded button focus drawing code. (#78429)
7122 2006-05-16  Peter Dennis Bartok  <pbartok@novell.com>
7124         * XplatUIX11.cs (AddExpose): More sanity checks
7126 2006-05-16  Peter Dennis Bartok  <pbartok@novell.com> 
7128         * XplatUIX11.cs:
7129           - AddExpose: Don't add expose ranges outside the size of our
7130             window
7131           - Cast opacity values to Int32 to avoid crashes with certain
7132             values
7133           - Added disabled code paths that protect against illegal cross-
7134             thread painting (Developers.exe)
7136 2006-05-16  Peter Dennis Bartok  <pbartok@novell.com>
7138         * ProgressBar.cs: Invalidate the control when it's resized
7139           since block size is based on control size. (#78388)
7141 2006-05-16  Miguel de Icaza  <miguel@novell.com>
7143         * DataGrid.cs (SetDataBinding): per the discussion on irc, instead
7144         of setting the incoming argument to the "reset" value, we set the
7145         this.datamember to string.empty (before we were invalidating the
7146         incoming data).   
7148         Fixes 78420
7150 2006-05-16  Peter Dennis Bartok  <pbartok@novell.com> 
7152         * Form.cs: Only apply transparency settings after the form
7153           is created. (Fixes #77800)
7155 2006-05-16  Peter Dennis Bartok  <pbartok@novell.com>
7157         * ApplicationContext.cs: Grab the HandleDestroyed event so
7158           we know when to fire OnMainFormClosed 
7160 2006-05-16  Peter Dennis Bartok  <pbartok@novell.com> 
7162         * Application.cs: Introduced sub-class to allow tracking of
7163           threads and centralized triggering of the event mess for
7164           ThreadExit, AppExit, etc..  (#76156)
7166 2006-05-16  Alexander Olk  <alex.olk@googlemail.com>
7168         * MimeIcon.cs:
7169           - Do not return a null icon index value for a mime subclass.
7170             Instead try the main mime type class too.
7171           - Seems that some newer distributions don't have a link to some
7172             gnome default icons anymore. So check the default gnome dir too.
7173           
7175 2006-05-16  Jackson Harper  <jackson@ximian.com>
7177         * MdiClient.cs: Don't paint the parent background image if we have
7178         our own background image.
7180 2006-05-16  Peter Dennis Bartok  <pbartok@novell.com> 
7182         * Control.cs:
7183           - PerformLayout: Do not shrink space filled by DockStyle.Fill
7184             controls, all filled controls are supposed to overlap (#78080)
7185           - UpdateZOrder is supposed to update the control's z-order in the
7186             parent's z-order chain. Fixed to behave like that
7187           - BringToFront: Removed obsolete code
7188           - SendToBack: Simplyfied
7189           - SetChildIndex: Trigger layout calculations when Z-order changes
7190             since layout is done by z-order
7192 2006-05-16  Chris Toshok  <toshok@ximian.com>
7194         [ fixes bug #78410 ]
7195         * DataGrid.cs (set_AlternatingBackColor): use
7196         grid_drawing.InvalidateCells instead of Refresh().
7197         (set_BackColor): call grid_drawing.InvalidateCells.
7198         (set_BackgroundColor): use Invalidate instead of Refresh.
7200         * DataGridDrawingLogic.cs (InvalidateCells): new function, just
7201         invalidate the cell area.
7203 2006-05-15  Chris Toshok  <toshok@ximian.com>
7205         [ fixes bug #78011 ]
7206         * ThemeWin32Classic.cs (DataGridPaintRows): pass the clip argument
7207         on to DataGridPaintRow.
7208         (DataGridPaintRow): take a clip argument, and only draw the cells
7209         which intersect it.  same with the not_usedarea.
7211         * Theme.cs (DataGridPaintRow) add @clip parameter.
7213         * DataGrid.cs (ScrollToColumnInPixels): simplify, use
7214         XplatUI.ScrollWindow.
7215         (ScrollToRow): same.
7217         * DataGridDrawingLogic.cs (UpdateVisibleColumn): fix corner case
7218         with last column which was causing a gray swath to appear with the
7219         XplatUI.ScrollWindow code.
7221 2006-05-15  Chris Toshok  <toshok@ximian.com>
7223         * ListBox.cs (HorizontalScrollEvent): in the non-multicolumn case,
7224         use XplatUI.ScrollWindow.
7225         (VerticalScrollEvent): use XplatUI.ScrollWindow.
7227 2006-05-15  Peter Dennis Bartok  <pbartok@novell.com> 
7229         * TextBoxBase.cs: Added handling of middle-button paste for X11. (#78375)
7231 2006-05-15  Peter Dennis Bartok  <pbartok@novell.com>
7233         * Cursors.cs: For X11, read NWSE and NESW cursors from our resource
7234           file since there are no equivalent X11 cursors
7236 2006-05-15  Atsushi Enomoto  <atsushi@ximian.com>
7238         * MonthCalendar.cs : DateTimePicker should reflect selected date
7239           on mouse*up*, not mouse*down*. Fixed originally reported part of
7240           bug #76474.
7242 2006-05-15  Atsushi Enomoto  <atsushi@ximian.com>
7244         * TabControl.cs : When argument index is equal or more than tab
7245           count, just ignore. Fixed bug #78395.
7247 2006-05-15  Peter Dennis Bartok  <pbartok@novell.com>
7249         * Control.cs: Dispose all child controls when control is diposed (#78394)
7251 2006-05-14  Alexander Olk  <alex.olk@googlemail.com>
7253         * ColorDialog.cs: Finally it is possible to select the color with
7254           the text boxes
7256 2006-05-14  Alexander Olk  <alex.olk@googlemail.com>
7258         * PrintDialog.cs: Fix typo
7260 2006-05-14  Alexander Olk  <alex.olk@googlemail.com>
7262         * PrintDialog.cs: PrintDialog is not resizable
7263         * ThemeWin32Classic.cs: Draw non links in LinkLabel with the correct
7264           color. Made some ToolBar drawing methods protected virtual.
7266 2006-05-13  Jordi Mas i Hernandez <jordimash@gmail.com>
7268         * PrintDialog.cs: Implementation of the PrintDialog
7270 2006-05-12  Chris Toshok  <toshok@ximian.com>
7272         * ScrollBar.cs (set_Value): don't use Dirty/Invalidate to move the
7273         thumb, instead use MoveThumb.  This has the side effect of making
7274         most of the other thumb moving machinery use MoveThumb as well.
7275         (OnHandleCreated): pass false for @dirty to UpdateThumbPos, as we
7276         need to actually invalidate the rectangle where the new thumb will
7277         go.
7278         (MoveThumb): use XplatUI.ScrollWindow to move the thumb around.
7279         We force an Update() after, so it's not as fast as it could be,
7280         but at least there's zero flicker and no droppings.
7281         (OnMouseMoveSB): in the thumb dragging case, use MoveThumb.
7282         (UpdateThumbPos): add another argument (dirty), which says whether
7283         or not to calculate/add dirty regions which we later invalidate.
7284         For cases where we know we're going to use MoveThumb, we pass
7285         false for this.  Otherwise, pass true.
7287 2006-05-12  Jackson Harper  <jackson@ximian.com>
7289         * ThemeWin32Class.cs: Fixes for alignment and icon rendering in
7290         the status bar.
7291         
7292 2006-05-12  Peter Dennis Bartok  <pbartok@novell.com>
7294         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs: Added new SetClipRegion
7295           and GetClipRegion methods and UserClipWontExposeParent property.
7296         * XplatUIWin32.cs: Implemented SetClipRegion/GetClipRegion methods,
7297           overriding UserClipWontExposeParent property, setting to false, since
7298           Win32 handles the required expose messages to draw our clipped parent
7299           areas internally
7300         * XplatUIX11.cs: Implemented SetClipRegion and GetClipRegion; updated
7301           PaintEventStart to set the user clip region if set.
7302         * Control.cs: 
7303           - Now internally tracking the Region for the control since we need to
7304             store it if the handle is not yet created and only set it when it
7305             becomes created. Before setting the region forced handle creation
7306           - Added code to draw the parents underneath a user-clipped region
7307         * Hwnd.cs: Added UserClip property
7309 2006-05-12  Chris Toshok  <toshok@ximian.com>
7311         * ScrollBar.cs (set_LargeChange): Refresh() -> InvalidateDirty()
7312         (set_Maximum): same.
7313         (set_Minimum): same.
7314         (set_SmallChange): same.
7315         (OnMouseUpSB): remove the call to refresh when releasing the
7316         thumb.  We shouldn't need it.
7317         
7318 2006-05-12  Miguel de Icaza  <miguel@novell.com>
7320         * StatusBar.cs (UpdatePanel): If the panel being refreshes has the
7321         AutoSize set to None, we do not need to relayout everything, we
7322         just need to invalidate the current region.
7324         (Draw): Do not draw the entire ClientArea, just redraw the
7325         clip area being passed.
7327         * MdiClient.cs: Make MdiClient constructor with the Form argument
7328         internal. 
7330 2006-05-12  Jackson Harper  <jackson@ximian.com>
7332         * ThemeWin32Classic.cs (DrawToolBar): Flat toolbars get their
7333         parents background image,  but strangely not their own.
7334         - (DrawStatusBarPanel): Take into account horizontal alignment
7335         when drawing the strings and icons.
7337 2006-05-12  Mike Kestner  <mkestner@novell.com>
7339         * ListBox.cs: avoid invalidations for focus when the collection is
7340         empty. 
7342 2006-05-12  Chris Toshok  <toshok@ximian.com>
7344         * ScrollBar.cs (OnMouseMoveSB): when dragging the thumb, don't
7345         invalidate the entire thumb area.  Call InvalidateDirty which
7346         limits the redraw to the thumb itself and surrounding pixels.
7348         * XplatUIX11.cs (ScrollWindow): optimize copying.
7349         
7350 2006-05-12  Chris Toshok  <toshok@ximian.com>
7352         * DataGridDrawingLogic.cs: make CalcGridAreas non-reentrant.
7353         Figure out the positioning/layout in a single pass instead of
7354         multiple recursive invocations.  Speeds up the initial display of
7355         the data grid.  Also, make many things private that were
7356         originally public but unused outside this class.
7358 2006-05-11  Jackson Harper  <jackson@ximian.com>
7360         * MdiClient.cs: Improved layout code.
7362 2006-05-11  Jonathan Chambers  <jonathan.chambers@ansys.com>
7364         * PropertyGrid.cs : Only check GetPropertiesSupported for properties,
7365           not SelectedObject.
7367 2006-05-11  Chris Toshok  <toshok@ximian.com>
7369         * Hwnd.cs (Invalid): don't start off with Rectangle.Empty, as
7370         union of that will always be {0,0,width,height}.
7372 2006-05-11  Jackson Harper  <jackson@ximian.com>
7374         * Form.cs: Match MS's DefaultSize for forms (they must have
7375         changed the size in sp2).
7377 2006-05-11  Atsushi Enomoto  <atsushi@ximian.com>
7379         * TextBoxBase.cs : implement CTRL+A (select all). Fixed bug #78368.
7381 2006-05-11  Atsushi Enomoto  <atsushi@ximian.com>
7383         * TextControl.cs : Fixed bug #78109. This incorrect position
7384           comparison caused crash on automatic line split.
7385         * TextBoxBase.cs : reduce duplicate code.
7387 2006-05-10  Jackson Harper  <jackson@ximian.com>
7389         * MdiClient.cs: Active form is only sent to the back when using
7390         the Next form functionality, when a form is clicked the current
7391         active shouldn't be sent to the back.
7392         - Layout the mdi windows when the container is first made visible.
7393         * Form.cs: Give the MdiClient a ref to the containing form when we
7394         create it.
7395         
7396 2006-05-10  Atsushi Enomoto  <atsushi@ximian.com>
7398         * LinkLabel.cs : link_font could be uninitialized, so populate one
7399           before actual use. Fixed bug #78340.
7401 2006-05-10  Atsushi Enomoto  <atsushi@ximian.com>
7403         * XplatUIX11.cs : clipboard format native value is IntPtr.
7404           Fixed bug #78283.
7406 2006-05-10  Peter Dennis Bartok  <pbartok@novell.com>
7408         * Control.cs: 
7409           - Instead of showing context menus directly we send WM_CONTEXTMENU, 
7410             which is passed up the parent chain by DefWndProc
7411           - We now handle WM_CONTEXTMENU to display any menu, or pass it 
7412             to DefWndProc (#77956)
7413         * XplatUIX11.cs: Added handling of WM_CONTEXTMENU (pass up) to DefWndProc
7415 2006-05-10  Jackson Harper  <jackson@ximian.com>
7417         * MdiClient.cs: We need to remove the controls from the mdi
7418         collection, when we close the window.
7419         * MdiWindowManager.cs: Special handling of closing mdi windows.
7420         * InternalWindowManager.cs: Make the close method virtual so the
7421         mdi window manager can handle it specially.
7423 2006-05-10  Jordi Mas i Hernandez <jordimash@gmail.com>
7425         * DataGrid.cs:
7426           - Recalculate grid when the data source has changed
7427           - Matches styles provided by user from all data sources types
7428         * DataGridTableStyle.cs: For columns that provided by the user set the
7429         with the preferred value is there was unassigned.
7430         * CurrencyManager.cs: throw OnItemChanged event
7432 2006-05-10  Peter Dennis Bartok  <pbartok@novell.com> 
7434         * PictureBox.cs: Don't animate until handle is created. Start animation
7435           when handle is created.
7437 2006-05-10  Peter Dennis Bartok  <pbartok@novell.com>
7439         * XplatUIX11.cs, Hwnd.cs: Adopted Mike's patch from #77979 to match
7440           current codebase.
7441         * XEventQueue.cs: We don't need to provide the extra info
7443 2006-05-10  Jackson Harper  <jackson@ximian.com>
7445         * MdiClient.cs: If the mdi clients parent form has a background
7446         image set, we draw that background image for the mdi area's
7447         background.
7449 2006-05-10  Peter Dennis Bartok  <pbartok@novell.com>
7451         * TextBoxBase.cs: Set IBeam cursor (#78347)
7453 2006-05-10  Mike Kestner  <mkestner@novell.com>
7455         * ToolBar.cs: fix some text padding issues with ButtonSize
7456         calculation. Update the default size to match MS documentation.
7457         * ToolBarButton.cs: use ToolBar.ButtonSize for layout of unspecified
7458         button size. Fixes #78296.
7460 2006-05-10  Mike Kestner  <mkestner@novell.com>
7462         * ListBox.cs: use is_visible for scrollbar positioning in case the
7463         control isn't on screen yet.  Fix off by one with Right vs Width
7464         usage.  Update Scrollbars in SetBoundsCore. Fixes #78188 and #78258.
7465         
7466 2006-05-10  Jackson Harper  <jackson@ximian.com>
7468         * X11Dnd.cs: Drop to a control with another control on top of it.
7469         * ToolBar.cs: Work on a copy of the buttons list, so that it can
7470         be modified in click handlers. TODO: Look for similar problems in
7471         other controls.
7473 2006-05-09  Jackson Harper  <jackson@ximian.com>
7475         * Form.cs: Window managers need the old window state when setting
7476         window state now.
7477         * InternalWindowManager.cs: Allow the base mdi window manager to
7478         handle more of the MDI only stuff (like maximize buttons).
7479         * MdiWindowManager.cs: Fix some snafus in changing the window
7480         state.  Add all the menu functionality, for both popup and
7481         maximized menus.
7482         * MdiClient.cs: When a new form is selected the currently
7483         activated form is sent to the back, this matches MS.
7484         - Implement a new method to activate the next mdi child window.
7486 2006-05-08  Peter Dennis Bartok  <pbartok@novell.com>
7488         * Control.cs: 
7489           - Added new InternalCapture method to allow controls to prevent
7490             the capture behaviour on the click handlers
7491           - Switched to use InternalCapture
7492         * ComboBox.cs:
7493           - Using InternalCapture to prevent mouse captures from being released
7494             on mouse button release (Fixes #78100)
7495         * XplatUIX11.cs (DeriveStyles): Now checks caption state and only
7496           returns Form borders if a caption is present. (Fixes #78310)
7498 2006-05-08  Peter Dennis Bartok  <pbartok@novell.com> 
7500         * TreeNode.cs: Changed serialization .ctor to not require every field
7501           to be present. (#78265)
7502         * OwnerDrawPropertyBag.cs: Added serialization .ctor
7504 2006-05-05  Alexander Olk  <alex.olk@googlemail.com>
7506         * MimeIcon.cs: for is faster than foreach for strings.
7508 2006-05-05  Mike Kestner  <mkestner@novell.com>
7510         * CheckedListBox.cs: update check handling code to not use selected.
7511         * ListBox.cs: rewrite of mouse selection handling to correspond to MS
7512         behavior for visual feedback, motion response, shift/ctrl handling,
7513         and properly deal with all 4 selection modes. Updates to bounds
7514         handling logic.  Add scroll wheel support. [Fixes #77842]
7516 2006-05-05  Peter Dennis Bartok  <pbartok@novell.com> 
7518         * ListView.cs:
7519           - Moved adding of Implicit controls into .ctor. That way, subsequent
7520             creation of the controls will not cause them to think they are 
7521             toplevel windows (fixes #78200 header problem)
7522           - Added 2.0 ShowGroups and UseCompatibleStateImageBehaviour
7523           - Switched visibility setting of header control to use internal field
7524             to avoid triggering handle creation
7525           - Now checking if handle is created before causing a refresh when items
7526             are added (This makes us now match handle creation time with MS)
7527         * Splitter.cs: Removed loading of private splitter cursor, switched to
7528           Cursors version now that that is loading the right ones
7529         * Cursors.cs: Load proper splitter cursors from resources
7530         * Cursor.cs: Added second method of loading resource cursors for the 
7531           VS.Net users amongst us
7533 2006-05-05  Mike Kestner  <mkestner@novell.com>
7535         * ListView.cs: give header_control a minimum size based on the
7536         ListView size.
7538 2006-05-05  Peter Dennis Bartok  <pbartok@novell.com> 
7540         * XplatUIX11.cs: WS_EX_TOPMOST requires window to be on top. A dock
7541           window seems to do that with metacity, so set that type. (#78120)
7543 2006-05-05  Mike Kestner  <mkestner@novell.com>
7545         * ListViewItem.cs: fix Details mode checkbox layout bug.
7546         * ThemeWin32Classic.cs: draw a ListView column header for unused space
7547         at the end of the header, if it exists. [Fixes for #78200]
7549 2006-05-04  Jackson Harper  <jackson@ximian.com>
7551         * MdiClient.cs: Add a helper property to get the container form.
7552         * MdiWindowManager.cs: We have to make sure to use the menu origin
7553         when drawing the icons and buttons, this fixes maximized window
7554         icons/buttons on win32.
7555         * InternalWindowManager.cs: Reset the restore captions when a
7556         window goes from Maximized to Minimized and vice versa. Move the
7557         DrawMaximizedButtons into the MdiWindowManager source, tool
7558         windows can't be maximized. NOTE: This could use a little
7559         refactoring if time ever permits.
7560         
7561 2006-05-03  Jonathan Chambers  <jonathan.chambers@ansys.com>
7563         * TextBox.cs: Add MWFCategoryAttributes
7564         * TextBoxBase.cs: Add MWFCategoryAttributes
7565         * Form.cs: Add MWFCategoryAttributes
7567 2006-05-03  Jonathan Chambers  <jonathan.chambers@ansys.com>
7569         * Control.cs: Add MWFCategoryAttributes
7570         * ScrollableControl.cs: Add MWFCategoryAttributes
7572 2006-05-03  Alexander Olk  <alex.olk@googlemail.com>
7574         * ThemeWin32Classic.cs: Draw the ToolBar top border only if
7575           Divider is true. Fix a little glitch in PropertyToolBar
7576           drawing code
7578 2006-05-02  Peter Dennis Bartok  <pbartok@novell.com> 
7580         * Control.cs:
7581           - Dispose: Call base.Dispose, this causes the disposed event
7582             to be fired (and probably other, more important stuff)
7583           - SetVisibleCore: Set is_visible to true after creating the
7584             window so that the window still gets created invisible (if
7585             WM_VISIBLE isn't set). That will cause the ShowWindow afterwards
7586             to generate a WM_ACTIVE message
7587         * Form.cs: Call Dispose when we want to destroy the window, instead of
7588           just destroying the handle (Dispose will do that for us)
7589         * XplatUIX11.cs:
7590           - RootWindow also needs a queue, so we can properly process the
7591             property change events from RootWindow (like Activate)
7592           - Generatic synthetic WM_ACTIVE message when the active window is
7593             being destroyed
7595 2006-05-01  Peter Dennis Bartok  <pbartok@novell.com> 
7597         * LinkLabel.cs: Trigger a recalc of our label dimensions when
7598           bounds are changed
7600 2006-05-01  Peter Dennis Bartok  <pbartok@novell.com>
7602         * ThemeWin32Classic.cs (ButtonBase_DrawImage): Use the proper image
7603           for determining width and height (image might not be assigned if
7604           we're drawing an imagelist)
7606 2006-05-01  Peter Dennis Bartok  <pbartok@novell.com> 
7608         * XplatUI.cs, XplatUIDriver.cs: Added MenuHeight property
7609         * XplatUIWin32.cs: Overriding new MenuHeight property, retrieving
7610           height from system
7611         * Theme.cs: No longer returns hardcoded menu height, instead calls
7612           new driver method
7613         * Form.cs (OnLoad): Scaling happens before triggering Load events 
7614           on MS (# 78257)
7616 2006-05-01  Mike Kestner  <mkestner@novell.com>
7618         * MenuItem.cs: fix NRE for text == null.  Fixes #78250.
7620 2006-04-30  Peter Dennis Bartok  <pbartok@novell.com> 
7622         * TextBoxBase.cs: Removed Fixme
7623         * RichTextBox.cs (set_RTF): Invalidate document after update (#78247)
7625 2006-04-30  Peter Dennis Bartok  <pbartok@novell.com>
7627         * XplatUIX11.cs:
7628           - ScrollWindow: We were passing hwnd.ClientRectangle which returns
7629             the rectangle relative to the parent, considering borders. We
7630             don't really want that.
7631           - ScrollWindow: Fixed warning to be more understandable
7632         * TextBoxBase.cs: Fixed ScrollWindow calculations to consider our
7633           scrollbars and scroll only the visible area
7634         * RichTextBox.cs: Removed debug output
7636 2006-04-29  Peter Dennis Bartok  <pbartok@novell.com>
7638         * NumericUpDown.cs (Text): Just use base
7639         * UpDownBase.cs: Ensure txtView is created before using it
7641 2006-04-29  Peter Dennis Bartok  <pbartok@novell.com> 
7643         * XplatUIX11.cs (SetWindowTransparency): Casting opacity to int before
7644           casting to IntPtr to avoid 64bit overflow errors
7646 2006-04-29  Peter Dennis Bartok  <pbartok@novell.com>
7648         * Control.cs:
7649           - AllowDrop: Don't force handle creation.
7650           - CreateHandle: Added call to tell driver if we're allowed to drop
7652 2006-04-27  Alexander Olk  <alex.olk@googlemail.com>
7654         * FileDialog.cs: Remember the last directory not only for the
7655           current instance but also for new FileDialog instances.
7657 2006-04-29  Peter Dennis Bartok  <pbartok@novell.com> 
7658         
7659         * XplatUIX11.cs: Forgot to set the queue on the foster parent. That
7660           broke sending async messages
7662 2006-04-29  Peter Dennis Bartok  <pbartok@novell.com>
7664         * XplatUIX11.cs:
7665           - ScrollWindow: Fixed method. We finally generate expose events again
7666             for scrolled areas. This was causing 'garbage' when scrolling
7667             textbox and other controls that used ScrollWindow
7668           - Switched from using the regular queue for paint events to the MS 
7669             model of 'generating' paint events when the queue is empty.
7670             We use the new XQueueEvent.Paint subclass to store which windows
7671             need painting.
7672           - AddExpose now takes the x/y/width/height of the exposed area
7673             and inserts the window into the paint queue if not already there
7674           - InvalidateWholeWindow: Switched to use new AddExpose method
7675           - UpdateMessageQueue: Added which queue to monitor for paint events
7676           - DefWndProc: Added default handler for WM_PAINT and WM_NCPAINT in
7677             the unlikely case nothing above handles it. We reset the expose
7678             pending states to get them off the queue.
7679           - GetMessage: Now pulls a paint event if no other events are in the
7680             queue
7681           - Invalidate: Switched to new AddExpose method
7682           - PeekMessage: Updated to understand pending paint events
7683           - UpdateWindow: Fixed logic bug. We were only updating if the window
7684             didn't need updating. Also switched to sending WM_PAINT directly,
7685             like MS does.
7686         * XEventQueue.cs: Added Paint queue support. Allows enqueue/dequeue
7687           and random access Remove(). The random access is needed to handle
7688           UpdateWindow() where a WM_PAINT is sent directly without accessing
7689           the queue.
7690         * ScrollBar.cs: Added Update() calls to cause immediate updates to
7691           allow for better feedback when scrolling. Scrollbars are small and
7692           the immediate update should make it 'feel' more responsive without
7693           slowing things down. ScrollBar still needs it's invaliate logic
7694           updated to not always invalidate the whole bar on certain changes.
7696 2006-04-28 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7698         * Control.cs:
7699         (BackColor): if the control does not support a transparent background,
7700         return the default backcolor when the parent backcolor is transparent.
7702 2006-04-28  Peter Dennis Bartok  <pbartok@novell.com>
7704         * Application.cs: Updated to new StartLoop/GetMessage API
7705         * RichTextBox.cs: Provide some output on RTF parsing errors
7706         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs, XplatUIWin32.cs: Added
7707           new queue_id argument to GetMessage and PeekMessage to allow faster
7708           handling of per-thread queues in drivers.
7709         * Hwnd.cs: Added Queue tracking and property
7710         * MenuAPI.cs: Updated to new StartLoop/GetMessage API
7711         * XEventQueue.cs: Added thread trackingA
7712         * PropertyGridView.cs: Updated to new StartLoop/GetMessage API
7713         * XplatUIX11.cs:
7714           - Implemented new per-thread queue
7715           - GetMessage: Fixed return/break behaviour on several cases. We were
7716             returning stale messages in some cases, instead of just processing
7717             the next message
7719 2006-04-27  Jonathan Chambers  <jonathan.chambers@ansys.com>
7721         * PropertyGrid.cs: Call GetPropertiesSupported on TypeConverter.
7723 2006-04-27  Peter Dennis Bartok  <pbartok@novell.com>
7725         * ThemeWin32Classic.cs (DrawToolBar): Refactored, simplified the logic,
7726           fixed off-by-one comparisons between Width/Height and Right/Bottom.
7728 2006-04-27  Jonathan Chambers  <jonathan.chambers@ansys.com>
7730         * PropertyGridView.cs: Fix drop down width.
7732 2006-04-27  Alexander Olk  <alex.olk@googlemail.com>
7734         * ThemeWin32Classic.cs: Peter thinks that three additional lines are
7735           a mess in DrawToolBar, so I removed one of them.
7737 2006-04-27  Alexander Olk  <alex.olk@googlemail.com>
7739         * ThemeWin32Classic.cs: Draw the ToolBar border lines only if
7740           needed (clip). Otherwise we get artifacts.
7742 2006-04-26  Peter Dennis Bartok  <pbartok@novell.com>
7744         * FixedSizeTextBox.cs: Added constructor to allow specifying which
7745           dimension is fixed
7746         * UpDownBase.cs: Set the spinner control to be fixed height vertical,
7747           and switched FixedSizeTextBox to only be fixed vertical (#78116)
7748         * Form.cs: Not applying the 'MS 0.08 fudge factor' for a given dimension
7749           if it matches the scale base font (avoids unneeded scaling)
7751 2006-04-26  Alexander Olk  <alex.olk@googlemail.com>
7753         * X11DesktopColors.cs: One gtk_init_check should be enough
7755 2006-04-26  Peter Dennis Bartok  <pbartok@novell.com> 
7757         * TextBoxBase.cs: Moved Backspace handling into WM_CHAR block to
7758           match MS behaviour
7760 2006-04-26  Peter Dennis Bartok  <pbartok@novell.com>
7762         * TextBoxBase.cs: 
7763           - Generate OnTextChanged for Backspace even if we're only deleting
7764             the current selection
7765           - When setting the Text property, only select all text if the
7766             control does not have focus when it is being set. Otherwise
7767             just place the cursor at the beginning of the control
7769 2006-04-26  Alexander Olk  <alex.olk@googlemail.com>
7771         * ThemeWin32Classic.cs: ToolBars get drawn with two lines at the top.
7772           Added a little helper to draw PropertyGrid ToolBar with a different
7773           border and a different BackColor.
7774         * PropertyGrid.cs: Some background parts didn't get painted with the
7775           correct background color. Added a class that helps us to draw the
7776           correct border for PropertyGridView and a class that helps us to
7777           draw ToolBars with a different backcolor
7778         * PropertyGridView.cs: Draw PlusMinus with the correct colors.
7780 2006-04-25  Jonathan Chambers  <jonathan.chambers@ansys.com>
7782         * PropertyGrid.cs: Bug 78196, font size, and splitter location.
7783         * PropertyGridView.cs: Bug 78196, font size, and splitter location.
7785 2006-04-25  Peter Dennis Bartok  <pbartok@novell.com> 
7787         * XplatUIWin32.cs (DIBtoImage): ORing instead of ANDing the alpha
7788           into the palette entries. Also, since we're working on a copy
7789           we needed to copy the palette back onto the bitmap.
7790         * Cursor.cs: Same fix as XplatUIWin32.cs.
7792 2006-04-25  Peter Dennis Bartok  <pbartok@novell.com>
7794         * ImageListStreamer.cs: Need to read the var (or we're off)
7796 2006-04-25  Peter Dennis Bartok  <pbartok@novell.com> 
7798         * TextControl.cs, ComboBox.cs, CommonDialog.cs, Theme.cs, 
7799           XplatUIWin32.cs, RichTextBox.cs, ImageListStreamer.cs,
7800           TextBoxBase.cs: Unused var fixes
7801         * AxHost.cs: Small 2.0 fix
7802         * XplatUIX11.cs: Switched to IntPtr from int for XA_CARDINAL atoms 
7803           as it seems that is what at least Metacity expects. This will make
7804           icons show up on 64bit platforms. We still have some 64bit size
7805           issues, though, since the startup app window size still won't match.
7807 2006-04-25  Mike Kestner  <mkestner@novell.com>
7809         * *.cs: cleanup newly reported exception var unused warnings.
7811 2006-04-25  Alexander Olk  <alex.olk@googlemail.com>
7813         * ThemeWin32Classic.cs: Button image alignment now matches exactly
7814           ms
7816 2006-04-25  Alexander Olk  <alex.olk@googlemail.com>
7818         * ThemeWin32Classic.cs: Fixed drawing code for buttons with an
7819           image. The image position is always the same, no matter if the
7820           button is pressed or not.
7822 2006-04-25  Alexander Olk  <alex.olk@googlemail.com>
7824         * FileDialog.cs: SaveFileDialog shouldn't rely on a MWFFileView
7825           selection and set the correct filename for SaveFileDialog.
7826           Patch by Emery Conrad.
7828 2006-04-24  Mike Kestner  <mkestner@novell.com>
7830         * ListView.cs (LastVisibleIndex): when in List mode of Alignment.Left,
7831         check for item.X outside the ClientRect instead of item.Y. Fixes
7832         #78151.
7834 2006-04-21 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7836         * ImageListStreamer.cs: some images store a wrong grow factor, so don't
7837         trust that value blindly and do some sanity check. Fixes bug #77814.
7839 2006-04-21 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7841         * ImageListStreamer.cs: save the mask as a 1bpp image.
7843 2006-04-21  Mike Kestner  <mkestner@novell.com>
7845         * CheckedListBox.cs: maintain CheckStatus here. Use DrawItemState to
7846         pass Checked and Indeterminate to the Theme Engine. Improve
7847         encapsulation with ListBox.
7848         * ListBox.cs: Keep a StringFormat instead of calculating it every item
7849         draw. Kill ListBoxItem. Refactor away the ListBoxInfo and ListBoxItem
7850         nested types.  Move all CheckState functionality to CheckedListBox.
7851         Make IntegralHeight work like MS.  Rewrite of Layout engine.  Fix
7852         OwnerDrawVariable layout/rendering.  Fix multicolumn rendering.  Fix
7853         ScrollAlwaysVisible handling. Refactor "selected" collections to use a
7854         single base list. Fix scrollbar sizing and placement to mirror MS.
7855         * Theme.cs: remove CheckedListBoxCheckRectangle. It wasn't really
7856         used.
7857         * ThemeWin32Classic.cs: implement Indeterminate CheckState rendering
7858         for CheckedListBox by using new DrawItemState info.  Center the
7859         checkboxes on the items. Use new StringFormat property.
7861 2006-04-18  Jackson Harper  <jackson@ximian.com>
7863         * Form.cs: MdiChildren don't do default locations the same way as
7864         regular forms.  This prevents a crash when trying to position the
7865         mdi windows.
7867 2006-04-17  Jonathan Chambers  <jonathan.chambers@ansys.com>
7869         * PropertyGridTextBox.cs: Formatting, copyright
7870         * PropertiesTab.cs: Formatting
7871         * PropertyGrid.cs: Formatting
7872         * PropertyGridView.cs: Formatting, fix drop down, enabled double 
7873           click toggling of values
7874           
7875 2006-04-17  Peter Dennis Bartok  <pbartok@novell.com> 
7877         * KeyPressEventArgs: Added 2.0 only setter for KeyChar
7878         * Control.cs (.ctor): verify_thread_handle is static, don't reset
7879           every time a control is created
7880         * Application.cs: Removed obsolete EnableRTLMirroring method
7882 2006-04-18  Gert Driesen  <drieseng@users.sourceforge.net>
7884         * TabControl.cs: Avoid ArgumentOutOfRangeException when setting
7885         SelectedIndex to -1. Fixes bug #78121.
7887 2006-04-17  Jackson Harper  <jackson@ximian.com>
7889         * Binding.cs: Handle null values for Current and BindingContext.
7890         This occurs when binding is a little delayed.
7891         * CurrencyManager.cs: return null for Current when there are no
7892         items in the list.
7893         - Hookup to the listchanged event on the DataView and update
7894         bindings when the list is changed.  This fixes late binding of
7895         controls.
7897 2006-04-17  Jackson Harper  <jackson@ximian.com>
7899         * X11Dnd.cs:
7900         * XplatUIX11.cs: Drops should not create a mousedown. Patch by Tim
7901         Ringenbach.
7903 2006-04-15  Alexander Olk  <alex.olk@googlemail.com>
7905         * ThemeWin32Classic.cs: Draw disabled combo button in the correct
7906           place
7907         * ComboBox.cs: If the combobox is disabled call CPDrawComboButton
7908           with the correct ButtonState
7910 2006-04-14  Peter Dennis Bartok  <pbartok@novell.com>
7912         * XplatUIX11.cs: Improved distinguishing between window types to
7913           tell the WM a type closer to what the app wants (Fixes #78107)
7915 2006-04-14  Alexander Olk  <alex.olk@googlemail.com>
7917         * ThemeWin32Classic.cs: Fixed drawing of ContainerGrabHandle and
7918           GrabHandle
7920 2006-04-14  Alexander Olk  <alex.olk@googlemail.com>
7922         * ThemeWin32Classic.cs: Fixed size grip drawing and updated StatusBar
7923           drawing code to reflect the size grip changes
7925 2006-04-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7927         * ImageListStreamer.cs: fix handling of the mask that follows the main
7928         bitmap when deserializing and serialize it properly. The generated mask
7929         should better be a 1bpp image, but I'll do that later.
7931 2006-04-13  Alexander Olk  <alex.olk@googlemail.com>
7933         * FileDialog.cs: Show something in the DirComboBox on *nix if the
7934           path doesn't fit into some of our Current.Places
7936 2006-04-13  Jackson Harper  <jackson@ximian.com>
7938         * ComboBox.cs: Use borders instead of drawing our own decorations,
7939         try to obey correct rules for heights.
7940         * Theme.cs:
7941         * ThemeNice.cs:
7942         * ThemeClearLooks.cs:
7943         * ThemeWin32Classic.cs: Remove combobox decoration drawing code,
7944         this is now handled by borders.
7945         - Remove unused DrawListBoxDecorationSize method.
7946         
7947 2006-04-13  Mike Kestner  <mkestner@novell.com>
7949         * MenuAPI.cs: null guarding for the disbled click check fixes crash
7950         reported by Alex.
7952 2006-04-13  Alexander Olk  <alex.olk@googlemail.com>
7954         * ThemeWin32Classic.cs: 
7955           - Fixed CPDrawStringDisabled
7956           - Corrected drawing of disabled menu items
7957           - Fixed drawing of disabled radio buttons (bug #78095)
7958           - Draw check in a disabled CheckBox with color ControlDark 
7960 2006-04-12  Peter Dennis Bartok  <pbartok@novell.com>
7962         * Form.cs: Use the provided width when calculating the menu size;
7963           when being maximized we get WM_NCCALCSIZE before WM_WINDOWPOSCHANGED
7964           and ClientSize.Width won't be updated yet
7965         * Application.cs: Use Visible instead of Show() to make form visible,
7966           this way we create the handle later and menusize is considered
7968 2006-04-12  Mike Kestner  <mkestner@novell.com>
7970         * MenuAPI.cs: ignore clicks on disabled menu items. Thanks to Alex for
7971         reporting.
7973 2006-04-12  Peter Dennis Bartok  <pbartok@novell.com>
7975         * TextBox.cs: Implemented context menu
7977 2006-04-12  Mike Kestner  <mkestner@novell.com>
7979         * ListView.cs: implement box selection. fixes #77838.
7980         * ThemeWin32Classic.cs: draw box select rect, remove a ResetClip.
7982 2006-04-12  Peter Dennis Bartok  <pbartok@novell.com> 
7984         * XplatUIX11.cs: Added setting of window type when transient window
7985           is created (metacity would move it otherwise)
7986         * X11Structs.cs: Added WINDOW_TYPE atoms
7987         * LinkLabel.cs: Override OnPaintBackgroundInternal and draw the
7988           background (the control is Opaque but still wants transparent
7989           backgrounds)
7991 2006-04-12  Peter Dennis Bartok  <pbartok@novell.com>
7993         * Control.cs: Added OnPaintBackgroundInternal to allow controls
7994           that set Opaque but don't mean it (like all ButtonBase-derived
7995           controls) to still draw their background
7996         * ButtonBase.cs: Override OnPaintBackgroundInternal and draw
7997           the background
7999 2006-04-12  Peter Dennis Bartok  <pbartok@novell.com> 
8001         * Control.cs (PaintControlBackground): Set the graphics object
8002           on our PaintEvent to null to prevent it from being disposed
8003           when the PaintEvent gets disposed
8005 2006-04-12  Alexander Olk  <alex.olk@googlemail.com>
8007         * ThemeWin32Classic.cs: Use even more SystemBrushes and SystemPens
8008         * ThemeNice.cs, ThemeClearlooks.cs: fix typo
8010 2006-04-12  Peter Dennis Bartok  <pbartok@novell.com>
8012         * Control.cs: 
8013           - Added transparency check to BackColor property. Transparent
8014             backgrounds are only allowed if the control styles permit it
8015           - Added recursive painting of parent control background and
8016             foreground if a control with a transparent backcolor is drawn
8017             (Thanks to Tim Ringenback for providing his 'hack' as a base
8018              for this patch) Fixes #77985 and #78026.
8019           - Added Opaque style check before calling OnPaintBackground, no
8020             need to draw the background if the control is opaque
8021           - Removed ControlAccessibleObject owner variable (inherited from
8022             base, no need to define again)
8023           - Added some documentation links explaining the drawing events
8024             and styles
8026 2006-04-11  Peter Dennis Bartok  <pbartok@novell.com> 
8028         * Splitter.cs (CalculateSplitPosition): Corrected the bad assumption
8029           that the affected control is the located at the left border of our
8030           parent (Fixes #77936)
8032 2006-04-11  Peter Dennis Bartok  <pbartok@novell.com>
8034         * TextBoxBase.cs: When rendering disabled or readonly controls,
8035           draw the background with 'Control' instead of 'Window' color as
8036           long as the user hasn't specifically set a color
8038 2006-04-11  Peter Dennis Bartok  <pbartok@novell.com> 
8040         * TextBoxBase.cs: Don't try to shortcut by checking against base.Text
8041           since that won't be updated if the user types text (only if it's
8042           programatically set)
8044 2006-04-11  Peter Dennis Bartok  <pbartok@novell.com>
8046         * ScrollableControl.cs: Calculate DisplayRect dynamically, so that
8047           layout changes do to app-triggered resizes will have the proper
8048           display rectangle for layout
8050 2006-04-11  Alexander Olk  <alex.olk@googlemail.com>
8052         * ThemeWin32Classic.cs:
8053           - Make use of the SystemBrushes and SystemPens wherever possible
8054           - Corrected some highlight colors
8055           - Corrected RadioButton and CheckBox FlatStyle.Flat and Popup
8056             drawing
8057         * Theme.cs: Added Empty field to CPColor struct
8059 2006-04-11  Peter Dennis Bartok  <pbartok@novell.com>
8061         * ScrollabeControl.cs: We need to consider whether or not a scrollbar
8062           is displayed when calculating the display rectangle. Thanks to Mike
8063           for teaching me the err of my ways.
8065 2006-04-10  Peter Dennis Bartok  <pbartok@novell.com>
8067         * ScrollableControl.cs:
8068           - Rewrote DisplayRectangle code, now returning the proper x/y coords 
8069             (instead of 0,0) and we now return the real width/height instead of
8070             just the clientrectangle, adjusted for padding. The rectangle is
8071             now cached and created by the new CalculateDisplayRectangle method.
8072           - Created new CalculateDisplayRectange method, which basically does
8073             what get_DisplayRectangle() did originally, but now using the 
8074             right edge instead of DisplayRectangle to determine the size of
8075             our scrollbars
8076           - get_Canvas(): Fixed it to properly calculate canvas for 
8077             right/bottom controls which seem to be placed to the right/bottom
8078             of any controls that have a fixed location
8079           - Removed TODO that's taken care of
8080           - Removed NotImplementeds and attempted to implement AdjustFormScrollBars
8081             and SetDisplayRectLocation according to new MSDN2 docs
8082           - Added call to PerformLayout in OnVisibleChanged, MS causes a layout
8083             event when that is called, this is added for compatibility
8084           - ScrollControlIntoView(): Implemented.
8085           - Switched scrollbars to be implicit, they shouldn't be selectable
8086         * ContainerControl: Now that ScrollControlIntoView is implemented, we 
8087           call it when the active control is set/changed
8088         * ScrollBar.cs: Added support for generating Win32 scrollbar messages
8089         * ImplicitHScrollBar.cs, ImplicitVScrollBar.cs: Now setting new base
8090           implicit_control variable (used for native Win32 message generation)
8091         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs: Added new 
8092           HorizontalScrollBarHeight and VerticalScrollBarWidth properties
8093         * ThemeWin32Classic.cs: Now calling the driver for the scrollbar sizes
8094         * XplatUIStructs.cs: Added ScrollBarCommands enum
8096 2006-04-10  Jackson Harper  <jackson@ximian.com>
8098         * ButtonBase.cs:
8099         * CheckedListBox.cs:
8100         * ComboBox.cs:
8101         * DataGrid.cs:
8102         * DataGridView.cs:
8103         * Form.cs:
8104         * GroupBox.cs:
8105         * ListBox.cs:
8106         * PrintPreviewControl.cs:
8107         * ProgressBar.cs:
8108         * PropertyGrid.cs:
8109         * Splitter.cs:
8110         * StatusBar.cs:
8111         * TrackBar.cs:
8112         * UpDownBase.cs: Fixup base event overrides.
8113         
8114 2006-04-06  Mike Kestner  <mkestner@novell.com>
8116         * ScrollBar.cs: fix "new event" declarations (#76509) and bounds check
8117         all user-initiated value changes to min <= value <= max-thumbsz+1.
8118         (set_Value): check for vert/horiz when calculating new thumb position.
8119         (LargeIncrement): bounds check to stop pos at max - thumb_size + 1
8120         like MS does.
8121         (OnMouseMoveSB): refactor the thumb dragging code and refine
8122         invalidation logic to reduce flicker.
8123         (SetEndPosition): bounds check to stop pos at max - thumb_size + 1
8124         (SmallIncrement): bounds check to stop pos at max - thumb_size + 1
8125         (UpdateThumbPosition): small code readability cleanup
8127 2006-04-10  Alexander Olk  <alex.olk@googlemail.com>
8129         * ThemeNice.cs: Small UI polishing. Draw borders a little bit
8130           different
8132 2006-04-08  Alexander Olk  <alex.olk@googlemail.com>
8134         * ThemeNice.cs: Use a better graphics effect when a button is pressed
8136 2006-04-08  Alexander Olk  <alex.olk@googlemail.com>
8138         * Theme.cs: Added GetDashPen and GetSizedPen to SystemResPool
8139         * ThemeWin32Classic.cs: Make use of the new SystemResPool methods.
8140           This dramatically reduces the number of Pen.Dispose calls. 
8141           Where possible call ResPool methods only once instead of calling it
8142           over and over again (for example for the same color).
8144 2006-04-06  Mike Kestner  <mkestner@novell.com>
8146         * TabControl.cs: fix for SelectedIndex updating on TabPage removals.
8147         Also remove an unused private field on the collection. Fixes #77972.
8149 2006-04-06  Alexander Olk  <alex.olk@googlemail.com>
8151         * ThemeNice.cs: Added ToolBar drawing code
8153 2006-04-06  Mike Kestner  <mkestner@novell.com>
8155         * Form.cs (ShowDialog): MS allows IWin32Window param to be a non-form.
8156         I'm assuming that means we need to look up the toplevel for the
8157         provided control. Fixes the crash trace in #77911 but exposes another
8158         crash in some strange reflection usage in NDocGui.
8160 2006-04-06  Alexander Olk  <alex.olk@googlemail.com>
8162         * ThemeNice.cs: Gave it a little silver touch and added Images
8163           method
8164         * FontDialog.cs: FontDialog is not resizable
8165         * FileDialg.cs: Added SizeGripStyle.Show
8167 2006-04-05  Jackson Harper  <jackson@ximian.com>
8169         * KeyboardLayouts.cs: Remove warning.
8171 2006-04-05  Jackson Harper  <jackson@ximian.com>
8173         * Control.cs: Enable OnPaintInternal so we can use it for drawing
8174         all of our controls instead of Paint +=.
8175         * ListBox.cs:
8176         * ListView.cs:
8177         * MenuAPI.cs:
8178         * MessageBox.cs:
8179         * NotifyIcon.cs:
8180         * ProgressBar.cs:
8181         * ScrollBar.cs:
8182         * Splitter.cs:
8183         * StatusBar.cs:
8184         * TabControl.cs:
8185         * TextBoxBase.cs:
8186         * ToolBar.cs:
8187         * TrackBar.cs:
8188         * UpDownBase.cs:
8189         * ComboBox.cs: Remove handling of WM_PAINT and WM_ERASEBKGND and
8190         use OnPaintInternal. Remove Width/Height and Visible checks in
8191         paint handler, this is done at a higher level now.
8192         * GroupBox.cs: Don't need to handle WM_ERASEBKGND anymore.
8193         * PaintEventArgs.cs: Add a handled flag so controls that don't
8194         want anymore painting after OnPaintInternal can make sure OnPaint
8195         isn't called.
8197 2006-04-05  Mike Kestner  <mkestner@novell.com>
8199         * Form.cs: fix the menu WndProc hacks to respect the native enabled
8200         state of the form, so that we don't process events when Modal dialogs
8201         are up. Fixes #77922.
8203 2006-04-05  Alexander Olk  <alex.olk@googlemail.com>
8205         * Mime.cs: Default for range length is 1 not 0. If set to 0 no match
8206           checking is done.
8208 2006-04-05  Mike Kestner  <mkestner@novell.com>
8210         * XplatUIX11.cs: fix typo in the EX_APPWINDOW transient patch.
8212 2006-04-05  Mike Kestner  <mkestner@novell.com>
8214         * ListView.cs (HeaderMouseMove): null guarding for the over column
8215         when setting up the drag_to_index.  Fixes #78015.
8217 2006-04-04  Peter Dennis Bartok  <pbartok@novell.com>
8219         * XplatUIX11.cs: If WS_EX_APPWINDOW isn't set we don't want to show up
8220           in the taskbar. Transient windows seem to accomplish that.
8222 2006-04-04  Peter Dennis Bartok  <pbartok@novell.com> 
8224         * Form.cs:
8225           - Re-enabled CreateParams.X/Y code for FormStartPosition
8226           - Added code for manual placement when creating the Control
8227           - Incomplete patch to treat MDI forms differently when
8228             setting the ClientSizeCore. (Still need to figure out handling
8229             x/y coords there)
8230         * XplatUIX11.cs:
8231           - When we're explicitly setting the X/Y position of a non-Child
8232             window, let the WM know. Metacity really wants this.
8234 2006-04-04  Alexander Olk  <alex.olk@googlemail.com>
8236         * ThemeNice.cs: Added CPDrawButton
8238 2006-04-04  Alexander Olk  <alex.olk@googlemail.com>
8240         * ThemeNice.cs: Changed the color for focused buttons and activated
8241           the arrows for small scroll buttons.
8243 2006-04-04  Alexander Olk  <alex.olk@googlemail.com>
8245         * ThemeWin32Classic.cs: Removed DrawFlatStyleButton, not needed
8246           anymore. Changed some method modifiers to protected (virtual)
8247         * ThemeClearlooks.cs: Updated to reflect the ThemeWin32Classic
8248           changes
8249         * ThemeNice.cs: Updated to reflect the ThemeWin32Classic changes.
8250           Updated drawing of menus, buttons and progressbars; added
8251           CPDrawBorder3D 
8253 2006-04-03 Gonzalo Paniagua Javier <gonzalo@ximian.com>
8255         * ImageListStreamer.cs: implemented serialization/deserialization
8256         of the images.
8258 2006-04-03  Alexander Olk  <alex.olk@googlemail.com>
8260         * ThemeWin32Classic.cs:
8261           - Removed all the DrawFrameControl stuff; CPDrawButton,
8262             CPDrawCheckBox and CPDrawRadioButton are now handled directly
8263             inside the methods
8264           - Updated and corrected the drawing code of CPDrawButton,
8265             CPDrawCheckBox and CPDrawRadioButton to better match ms
8266           - Updated theme checkbox and radiobutton code to use the CP*
8267             methods
8269 2006-03-31  Peter Dennis Bartok  <pbartok@novell.com> 
8271         * XplatUIX11.cs: Enable clipping again now that the libgdiplus
8272           bug is fixed
8274 2006-03-31  Jackson Harper  <jackson@ximian.com>
8276         * XplatUIX11.cs: Somehow we get SETCURSORS for bad windows
8277         sometimes.
8278         * UpDownBase.cs: Don't CreateGraphics manually, use a
8279         Refresh. Ideally we would invalidate the correct areas here.
8281 2006-03-31  Peter Dennis Bartok  <pbartok@novell.com> 
8283         * XplatUIX11.cs: 
8284           - We now track the mapping state of windows. If a window (or 
8285             one of it's parents) is not mapped we no longer permit
8286             WM_PAINT messages to be generated since we'd otherwise get 
8287             lots of BadMatch X errors. Jackson did all the work figuring
8288             out the problem.
8289           - Destroying the caret if the window it's contained in is 
8290             destroyed. Can't use regular DestroyCaret method since it
8291             might fall into a drawing function (trying to remove the
8292             caret) and with that generate new BadMatch errors. Again,
8293             Jackson tracked this down.
8294           - Changed DestroyChildWindows to SendWMDestroyMessages, we now
8295             make sure we send the messages to all windows. (The old code
8296             would send the WM_DESTROY to the window, and then all child
8297             windows would be 'gone' because the WM_DESTROY handle lookup
8298             would no longer find the destroyed window)
8299         * Hwnd.cs: Added Mapping property to track mapping state of hwnd
8300         * X11Structs.cs: Added WindowType enum for MapWindow/UnmapWindow
8302 2006-03-31  Jackson Harper  <jackson@ximian.com>
8304         * ScrollableControl.cs: Dont recalc if we are not visible.
8306 2006-03-31  Mike Kestner  <mkestner@novell.com>
8308         * Control.cs (SetVisibleCore): move the CreateControl call up ahead of
8309         the visibility branch.
8311 2006-03-31  Jackson Harper  <jackson@ximian.com>
8313         * ScrollBar.cs: Cap values when incrementing/decrementing.
8315 2006-03-31  Mike Kestner  <mkestner@novell.com>
8317         * MenuAPI.cs: setup menu.tracker for popup/context menus.
8318         * ToolTip.cs: guard against timer expirations with no active control.
8319         Not sure why it happened.
8321 2006-03-31  Mike Kestner  <mkestner@novell.com>
8323         * ThemeWin32Classic.cs: add some horizontal padding space for the tip
8324         text.
8325         * ToolTip.cs: Position the tooltip based on where the cursor is at
8326         popup time, not at MouseEnter time.  Add a Down state so that we don't
8327         redisplay tips without a Leave. Use faked XplatUI.GetCursorInfo for
8328         positioning offset. Lookup DisplaySize at positioning time, since it
8329         can theoretically change during invocation.
8330         * XplatUIWin32.cs: fake GetCursorInfo until pdb can do it properly.
8331         * XplatUIX11.cs: fake GetCursorInfo until pdb can do it properly.
8333 2006-03-31  Alexander Olk  <alex.olk@googlemail.com>
8335         * ThemeWin32Classic.cs: Use CPDrawBorder3D to draw a GroupBox.
8336           Fixes behaviour when the Text property of the box is String.Empty
8338 2006-03-31  Peter Dennis Bartok  <pbartok@novell.com>
8340         * XplatUIX11.cs: Only send mouseleave for our client windows, not
8341           for the whole window (otherwise we get WM_MOUSE_LEAVE twice for
8342           a window)
8344 2006-03-31  Alexander Olk  <alex.olk@googlemail.com>
8346         * FileDialog.cs: Visual enhancement for the popup buttons in 
8347           PopupButtonPanel
8349 2006-03-31  Alexander Olk  <alex.olk@googlemail.com>
8351         * ColorDialog.cs, FontDialog.cs: Make use of the updated 3D border
8352           code
8354 2006-03-30  Alexander Olk  <alex.olk@googlemail.com>
8356         * ThemeWin32Classic.cs: Updated MainMenu drawing of selected and
8357           highlighted menu items to match ms
8359 2006-03-30  Peter Dennis Bartok  <pbartok@novell.com> 
8361         * XplatUIX11.cs: Don't set a clip rectangle unless it's not empty
8363 2006-03-30  Mike Kestner  <mkestner@novell.com>
8365         * Menu.cs (SelectedItem): use new MenuItem.Selected prop.
8366         * MenuAPI.cs: use new MenuItem.Selected prop. redraw MainMenu when we
8367         go active to account for HotLight to Selected transition.
8368         * MenuItem.cs: add internal Selected prop. Fill out the Status
8369         property by calculating it from item info. Add HotLight,
8370         NoAccelerator, Checked, Grayed, and Disabled flags where appropriate.
8372 2006-03-30  Mike Kestner  <mkestner@novell.com>
8374         * MenuItem.cs: only emit DrawItem and MeasureItem for OwnerDraw.
8376 2006-03-29  Jackson Harper  <jackson@ximian.com>
8378         * Form.cs: Implement TODO.
8380 2006-03-29  Peter Dennis Bartok  <pbartok@novell.com> 
8382         * PrintPreviewDialog.cs: Implemented missing methods and events; still
8383           missing proper dialog setup in the constructor
8385 2006-03-29  Peter Dennis Bartok  <pbartok@novell.com>
8387         * ProgressBar.cs: Added 2.0 Style property that apps seem to use
8388         * Control.cs:
8389           - Implemented CheckForIllegalCrossThreadCalls, removed TODO
8390           - Fixed ResetBindings and removed TODO
8391           - Added check for cross-thread calls to get_Handle()
8392           - Added Marshaller attribute for set_Font to satisfy class status
8393         * FontDialog.cs: Removed TODOs that seemed implemented
8394         * UpDownBase.cs: Removed unneeded TODO and Fixme
8395         * MessageBox.cs: Implemented support for Default button and removed TODO
8396         * FileDialog.cs: Removed obsolete TODO
8397         * DomainUpDown.cs: Removed obsolete TODO
8398         * ButtonBase.cs: Removed obsolete TODO
8399         * XplatUIWin32.cs: Removed obsolete TODO
8400         * Form.cs:
8401           - Removed obsolete TODO
8402           - Calling CheckAcceptButton when the acceptbutton is changed to allow
8403             internal status updates
8404           - Making sure the active control is selected when the control is created
8405         * CurrencyManager.cs: Removed obsolete TODO
8407 2006-03-29  Mike Kestner  <mkestner@novell.com>
8409         * *.cs: fix remaining corcompare issues for 1.1 API with the exception
8410         of PrintPreviewDialog and RichTextBox.
8412 2006-03-29  Alexander Olk  <alex.olk@googlemail.com>
8414         * Theme.cs: Added a little helper to SystemResPool to get the Dark,
8415           DarkDark, Light and LightLight colors for a specific color
8416         * ThemeWin32Classic.cs:
8417           - Use Button drawing code to draw RadioButtons and CheckBoxes with
8418             Appearance = Button 
8419           - Make use of the new ResPool helper CPColor
8420           - Draw ProgressBar and StatusBar with correct 3D borders
8422 2006-03-29  Alexander Olk  <alex.olk@googlemail.com>
8424         * ColorDialog.cs: Return selected color. Fixes bug #77940.
8426 2006-03-28  Mike Kestner  <mkestner@novell.com>
8428         * ListView.cs: fix Icon layout to plan for scrollbar widths when
8429         calculating col/row counts.
8431 2006-03-28  Mike Kestner  <mkestner@novell.com>
8433         * ColumnHeader.cs:
8434         * ListView.cs:
8435         * ListViewItem.cs:
8436         * Menu.cs: 
8437         switch to explicit interface method implementation for some methods
8438         corcompare identifies as inconsistent with MS.
8440 2006-03-28  Mike Kestner  <mkestner@novell.com>
8442         * MainMenu.cs: 
8443         * Menu.cs:
8444         add a few missing methods from the class status output.
8446 2006-03-28  Alexander Olk  <alex.olk@googlemail.com>
8448         * ControlPaint.cs: Fixed ControlPaint.Light method. Results are now
8449           correct.
8451 2006-03-28  Mike Kestner  <mkestner@novell.com>
8453         * MenuAPI.cs: Deactivate on MainMenu item click. Fixes #77917.
8455 2006-03-27  Mike Kestner  <mkestner@novell.com>
8457         * ThemeWin32Classic.cs: Switch flat toolbars to use RaisedInner for
8458         the Hilight state to adapt to Alex's CPDrawBorder3D changes.
8460 2006-03-27  Alexander Olk  <alex.olk@googlemail.com>
8462         * ThemeWin32Classic.cs: Rewrote Button drawing code to match ms.
8464 2006-03-25  Alexander Olk  <alex.olk@googlemail.com>
8466         * ThemeWin32Classic.cs:
8467           - GroupBox: Inserted a little gap between the text and the lines
8468             on the right side
8469           - Made the code in CPDrawBorder3D more readable
8470           - Corrected the drawing location of the up and down arrows in 
8471             CPDrawScrollButton
8473 2006-03-25  Alexander Olk  <alex.olk@googlemail.com>
8475         * ControlPaint.cs: Corrected line widths in DrawBorder for
8476           ButtonBorderStyle Inset and Outset
8478 2006-03-25  Alexander Olk  <alex.olk@googlemail.com>
8480         * ThemeWin32Classic.cs:
8481           - Rewrote the totally broken CPDrawBorder3D method. That was
8482             one of the main problems for the terrific ThemeWin32Classic
8483             look
8484           - Updated and corrected Button drawing
8485           - Correct the dimensions of the SizeGrip to match ms ones
8486           - Removed a small drawing glitch in DrawComboBoxEditDecorations
8487         * XplatUIX11.cs: Draw borders with BorderStyle = Fixed3D with
8488           Border3DStyle.Sunken to match ms.
8490 2006-03-25  Alexander Olk  <alex.olk@googlemail.com>
8492         * ThemeWin32Classic.cs: First small part of the "de-uglify
8493           ThemeWin32Classic" effort, SizeGrip
8495 2006-03-24  Jackson Harper  <jackson@ximian.com>
8497         * XplatUIX11.cs: Give a max idle time of one second, this matches
8498         MS and forces an Idle event every second when there are no other
8499         events in the queue.
8501 2006-03-24  Mike Kestner  <mkestner@novell.com>
8503         * ListView.cs: Handle (Large|Small)ImageList == null more robustly.
8504         * ListView.Item.cs: fix layout issues with null image lists and images
8505         smaller than checkbox size.
8506         * ThemeWin32Classic.cs: Draw a 12 pixel line in ListView LargeIcon
8507         mode like MS does.  It's weird, but consistent.  ;-)
8508         Fixes #77890.
8510 2006-03-24  Mike Kestner  <mkestner@novell.com>
8512         * ListView.cs: Scroll wheel support for the item control.  Fixes
8513         #77839.
8515 2006-03-23  Jackson Harper  <jackson@ximian.com>
8517         * ScrollableControl.cs: Special case negative sized areas, not
8518         zero.
8519         * MonthCalendar.cs: Save the rect of the clicked date so we can
8520         use it for invalidation.
8521         - Try to cut down on the number of invalidates
8522         - Invalidate the rect the mouse is over and was over when moving
8523         the mouse, so we get the focus box following the cursor.
8525 2006-03-23  Mike Kestner  <mkestner@novell.com>
8527         * ThemeWin32Classic.cs: fix FullRowSelect selection background and
8528         focus rectangle drawing. Fixes #77835.
8530 2006-03-23  Mike Kestner  <mkestner@novell.com>
8532         * XplatUIX11.cs: rework the fix for #77828 by changing the order of
8533         the if and else if and reverting back to the original == check on the
8534         None conditional.
8536 2006-03-23  Alexander Olk  <alex.olk@googlemail.com>
8538         * FontDialog.cs: Update the example panel if the selected index of
8539           the fontListBox changes.
8541 2006-03-23  Alexander Olk  <alex.olk@googlemail.com>
8543         * FileDialog.cs: Make FileDialog remember which directory it was in
8544           last in the same execution.
8546 2006-03-22  Mike Kestner  <mkestner@novell.com>
8548         * FileDialog.cs: make the DropDownMenu on the toolbar display
8549         RadioChecks since they are mutually exclusive and that's what MS does.
8551 2006-03-22  Mike Kestner  <mkestner@novell.com>
8553         * Theme.cs: add Color param to CPDrawMenuGlyph.
8554         * ThemeWin32Classic.cs: do color specific menu glyph rendering so that
8555         checks and radio marks and arrows are visible on highlighted items.
8556         * ControlPaint.cs: update to use new Theme signature.
8558 2006-03-22  Mike Kestner  <mkestner@novell.com>
8560         * MenuAPI.cs: only process Enter and arrow keypresses if the tracker
8561         is active. Fixes #77870.
8563 2006-03-22  Alexander Olk  <alex.olk@googlemail.com>
8565         * FileDialog.cs: Corrected TabIndex order and set fileNameComboBox
8566           to be focused/selected after startup
8568 2006-03-22  Alexander Olk  <alex.olk@googlemail.com>
8570         * ColorDialog.cs: 
8571           - Corrected behaviour of Color, AllowFullOpen, FullOpen,
8572             CustomColors and ShowHelp properties
8573           - Some internal rewrites to get better results when using the
8574             ColorMatrix
8576 2006-03-22  Mike Kestner  <mkestner@novell.com>
8578         * ListView.cs: hook into Peter's new ResetMouseHover capability to fix
8579         HoverSelection.  Fixes #77836.
8581 2006-03-22  Mike Kestner  <mkestner@novell.com>
8583         * FileDialog.cs: bugfixes for the toolbar.  Use PushButtons instead of
8584         ToggleButtons.  (De)Sensitize the Back button around a stack count of
8585         1, not 0.  Update ButtonSize based on a pixel count of the win32
8586         control.  Adjust the toolbar size/location for new button size.
8588 2006-03-22  Jackson Harper  <jackson@ximian.com>
8590         * XplatUIX11.cs: Don't handle configurenotifys if PostQuitState is
8591         true.
8592         * ScrollBar.cs: When doing increments and decrements we need to
8593         set the Value property so that ValueChanged gets raised. A
8594         possible optimization here would be to make an internal SetValue
8595         that doesn't invalidate immediately.
8596         * ToolTip.cs: Tooltips get added to their container (when
8597         supplied) so they get disposed when the container is disposed.
8598         - Don't create tooltips for String.Empty. This prevents all these
8599         little 2-3 pixel windows from showing up when running nunit-gui
8600         and driving me mad.
8601         * Form.cs: Don't set topmost when setting the owner if the handles
8602         haven't been created yet.  The topmost set will happen when the
8603         handles are created.
8605 2006-03-22  Peter Dennis Bartok  <pbartok@novell.com> 
8607         * XplatUIX11.cs:
8608           - DeriveWindowStyles: Fixed typo in borderstyle generation (#77828)
8609           - SetVisible: Sending WINDOWPOSCHANGED for all controls when made 
8610             visible (to allow them to recalculate their sizes)
8612 2006-03-21  Mike Kestner  <mkestner@novell.com>
8614         * ThemeWin32Classic.cs: major refactoring of the ToolBar rendering
8615         methods. Removed a ton of redundant code.  Still not really happy with
8616         the border rendering, but I think that's mainly because of the
8617         ControlDarkDark being black instead of a dark grey. Depending on how 
8618         close we want to be, we might want to revisit those color choices.
8619         Among the new features added during the refactor were DropDownArrow
8620         pressed rendering, Disabled image rendering.  Proper flat appearance
8621         boundary rendering.  Removed the Divider and Wrapping dividers since I
8622         can't figure out any combination of themes and conditions to make the
8623         MS control draw a horizontal line on a toolbar despite what the
8624         Divider property docs indicate.
8625         * ToolBar.cs: rewrite the layout engine. Fixes numerous flicker
8626         conditions and incorrect layout.  Updated to coding standard.
8627         * ToolBarButton.cs: refactored layout and positioning code from
8628         ToolBar to here.  Invalidate wherever possible instead of forcing
8629         redraws of the whole toolbar. 
8630         (Known remaining issues: explicit ButtonSize smaller than provided
8631         images.)
8633 2006-03-21  Mike Kestner  <mkestner@novell.com>
8635         * ContextMenu.cs (Show): use the position parameter instead of just
8636         showing at the MousePosition.
8638 2006-03-21  Jackson Harper  <jackson@ximian.com>
8640         * TabControl.cs: Remove the call to ProcessKeyEventArgs and let
8641         control handle this.
8642         * TreeNodeCollection.cs: If we are clearing the root node we need
8643         to reset top_node so calcs can still happen.
8644         * ThemeWin32Classic.cs: This is a Flags so we need to check
8645         properly.
8646         
8647 2006-03-21  Jackson Harper  <jackson@ximian.com>
8649         * DataGrid.cs: Create columns when the binding context has been
8650         changed.
8651         * X11Structs.cs: Keysyms are uints.
8652         - Add size to fix build.
8654 2006-03-21  Peter Dennis Bartok  <pbartok@novell.com> 
8656         * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs, XplatUIWin32.cs, 
8657           XplatUIOSX.cs: 
8658           - Added ResetMouseHover method to allow controls to retrigger
8659             hovering if they need it more than once
8660           - Implemented MouseHoverTime and MouseHoverSize properties
8661         * Timer.cs: Start() must reset the interval
8662         * SystemInformation.cs: Added 2.0 MouseHoverTime and MouseHoverSize
8663           properties
8665 2006-03-21  Jackson Harper  <jackson@ximian.com>
8667         * X11Keyboard.cs: improved layout detection. Move the nonchar
8668         tables into this file.
8669         * KeyboardLayouts.cs: Move the tables into resource files.
8671 2006-03-21  Mike Kestner  <mkestner@novell.com>
8673         * ListView.cs: use OnItemActivated to raise events. Fixes #77834.
8675 2006-03-21  Alexander Olk  <alex.olk@googlemail.com>
8677         * Mime.cs: Various speed optimizations. Looking up mime types
8678           is now 2 times faster than before
8680 2006-03-17  Peter Dennis Bartok  <pbartok@novell.com> 
8682         * CreateParams.cs: Added internal menu field
8683         * Control.cs: 
8684           - Switched call order for UpdateBounds; now we always call
8685             the one that also takes ClientSize, and we're calculating the 
8686             client size via driver method in the others. The previous
8687             method of tracking client size by difference wasn't working
8688             for forms where even the starting client size wouldn't match
8689             the overall form size (due to borders) (Part of fix for #77729)
8690           - CreateParams(): Do not use parent.Handle unless the handle is
8691             already created. Causes havoc with Nexxia and throws off our
8692             creation of controls
8693         * XplatUIX11.cs:
8694           - Created new PerformNCCalc method to trigger WM_NCCALCSIZE message
8695           - Switched handling of ConfigureNotify over to new PerformNCCalc 
8696             method (consolidates code)
8697           - Changed RequestNCRecalc to use new PerformNCCalc method
8698           - Added calls to RequestNCRecalc when menus and borders are changed
8699             to allow app to set NC size. (Part of fix for #77729) This matches
8700             when MS send a WM_NCRECALC on Win32 windows.
8701           - Now sending WM_WINDOWPOSCHANGED when toplevel for is made visible
8702             (Part of fix for #77729). This matches what MS does, they also
8703             send that message when the form is made visible.
8704           - XException.GetMessage: Improved usability of X errors by including
8705             a translation of the window into Hwnd and Control class
8706           - Improved debug info for window creation, reparenting and destruction
8707           - Created helper method WindowIsMapped() [Currently not used]
8708         * XplatUIWin32.cs: Added ToString() debug helper to RECT structure
8709         * Form.cs:
8710           - CreateParams: Now setting our menu on the new internal menu field
8711           - SetClientSizeCore: Now passing cp.menu instead of ActiveMenu to
8712             avoid calculating the same property twice
8713         * Hwnd.cs:
8714           - Improved usability of ToString() for debugging purposes
8715           - GetWindowRectangle(): Now uses proper CalcMenuBarSize method to
8716             determine the height of the menu, instead of just the font. This
8717             required to also create a graphics context and to keep a bmp 
8718             around (for performance reasons)
8720 2006-03-17  Peter Dennis Bartok  <pbartok@novell.com>
8722         * MenuAPI.cs: Added OnMouseUp method
8723         * Form.cs:
8724           - Now remembering the requested client size, avoids size errors
8725           - WndProc: Now handling WM_xBUTTONUP and passing it to MenuTracker
8726             instead of base if the menu is active. This is required due to
8727             control now capturing and releasing on down/up and it would
8728             prematurely release our menu capture
8730 2006-03-17  Jackson Harper  <jackson@ximian.com>
8732         * KeyboardLayouts.cs: Add the czech layouts.
8734 2006-03-16  Jackson Harper  <jackson@ximian.com>
8736         * Control.cs: Use the viewport space when sizing not the controls
8737         client size, so things like ScrollableControl that effect the
8738         viewport size (when scrollbars are added) are computed correctly.
8739         * BindingContext.cs: Cleanup to use the DataSourceEntrys instead
8740         of ManagerEntrys.
8741         - Handle creating BindingManagers for null data sources.
8742         * DataGrid.cs: Bind the cached_currencymgr_events to the real data
8743         source, otherwise when rows are added they are added to the 'fake'
8744         datasource and we will crash when trying to set the position in
8745         those rows.
8746         - Use Implicit scrollbars on the datagrid so they arent
8747         selectable.
8748         
8749 2006-03-16  Jackson Harper  <jackson@ximian.com>
8751         * Binding.cs:
8752         * InternalWindowManager.cs:
8753         * MdiWindowManager.cs:
8754         * X11Keyboard.cs: I really want Mike to love me again (fix
8755         compiler warnings).
8757 2006-03-16  Peter Dennis Bartok  <pbartok@novell.com>
8759         * DataGrid.cs:
8760           - OnMouseDown: Switch to editing mode when clicking on the cell
8761                          even if we're clicking on the cell that's currently 
8762                          selected
8763           - ProcessGridKey: Left/Right now wrap like MS.Net does
8764           - ProcessGridKey: Tab now knows to add a new row when tab is
8765                             pressed in the cell of the last column of the 
8766                             last row
8767           - ProcessGridKey: Enter now adds another row  if pressed in the last
8768                             row and selectes the new row, same column cell
8769           - ProcessGridKey: Home/End navigate columns, not rows, like 
8770                             originally implemented
8771           - Broke ProcessKeyPreview code out into an extra Internal method
8772             so it can be called from the edit code
8773         * DataGridTextBox.cs (ProcessKeyMessage):
8774           - Switched to accept Tab keypresses
8775           - Added F2 handling to allow jumping to the end of the edited cell
8776           - Added logic to allow moving caret left/right inside edited cell
8777             and making the edited cell jump when the caret hits cell borders
8778           - Tab and Enter are now passed to the datagrid after being handled
8779         * TextBoxBase.cs:
8780           - Removed capture code now that Control handles it
8781           - set_SelectionStart now ensures caret is visible
8783 2006-03-16  Jackson Harper  <jackson@ximian.com>
8785         * TrackBar.cs: Debackwards the increment/decrement for handling
8786         mouse clicks on the bar with vertical trackbars.
8787         * ThemeWin32Classic.cs: Draw vertical trackbars with 0 at the
8788         bottom to match MS.
8790 2006-03-16  Mike Kestner  <mkestner@novell.com>
8792         * ListView.cs: make shift/ctrl keyboard and mouse selection 
8793         consistent with the MS control. Fix a bug in
8794         SelectedListViewItemCollection.Clear that was pissing me off for the
8795         better part of a day because the collection was being altered
8796         underneath us as we walked the list.
8798 2006-03-16  Peter Dennis Bartok  <pbartok@novell.com> 
8800         * Control.cs: Not sure how we could miss this so long, but it seems
8801           that MS.Net has Capture set all the way from before calling 
8802           OnMouseDown through sending the mouse events until after
8803           OnMouseUp. This will fix DataGrid's selection being set to end
8804           at the location of the MouseUp.
8806 2006-03-15  Jackson Harper  <jackson@ximian.com>
8808         * BindingContext.cs: Check the binding after its added so that it
8809           can initialize the binding managers and hookup to events.
8810         * Binding.cs: Data members seem to sometimes include rows/cols in
8811           the format Row.Column we now take this into account.
8812           - Hookup to the position changed event so we can update the
8813           control when the position has changed in the data set.
8814         * CurrencyManager.cs: Take into account the row/col naming
8815           convention when creating dataset tables.
8816         * BindingContext.cs: Using a newer better way of storing
8817           datasource/datamember pairs.  Hopefully this better matches MS for
8818           looking up binding managers.
8821 2006-03-15  Jackson Harper  <jackson@ximian.com>
8823         * BindingContext.cs: The currency manager needs the data member
8824         name, if the member is a data set we use the name to find the
8825         correct table.
8826         * CurrencyManager.cs: When creating the list prefer an IList over
8827         an IListSource.
8828         - Attempt to create a DataTable from a DataSet (TODO: might need
8829         some better error checking here, although MS doesn't seem to have much)
8830         - If we have a DataTable create a view and use it as our list.
8832 2006-03-15  Mike Kestner  <mkestner@novell.com>
8834         * ListView.cs: keep a matrix of the icon mode layout to facilitate
8835         keyboard navigation. Support Up/Down/Left/Right selection correctly
8836         for all 4 View modes.
8837         * ListViewItem.cs: add internal row/col fields for icon layouts.
8839 2006-03-15  Jackson Harper  <jackson@ximian.com>
8841         * TabControl.cs: Redraw the tabs when we resize so their newly
8842         calculated sizes are drawn on screen.
8843         * X11Keyboard.cs: Begginnings of XIM support.  We also now support
8844         composite characters.
8845         * XplatUIX11.cs: Keyboard driver needs to know about focus changes
8846         - filter events so that composite characters can be created
8847         patches by peter
8848         * X11Structs.cs: Add XIMProperties enum.
8850 2006-03-14  Peter Dennis Bartok  <pbartok@novell.com> 
8852         * Control.cs (BringToFront, SendToBack): Don't use window or handle
8853           unless it's created
8855 2006-03-14  Peter Dennis Bartok  <pbartok@novell.com>
8857         * Control.cs (PerformLayout): We don't need to consider visiblity
8858           for anchoring, only for docking. This fixes 'whacky' alignment
8859           in listbox and other controls that use implicit scrollbars after
8860           the previous PerformLayout patch
8861         * ListBox.cs: Switched to use implicit scrollbars
8862           
8863 2006-03-14  Mike Kestner  <mkestner@novell.com>
8865         * ToolBar.cs: 
8866         * VScrollBar.cs:
8867         - chain up the "new event" overrides to base and use
8868         OnEvent to raise them.  Part of fix for bug #76509.
8870 2006-03-14  Alexander Olk  <alex.olk@googlemail.com>
8872         * FileDialog.cs: Do not select an item in the parent directory
8873           on backspace
8875 2006-03-14  Peter Dennis Bartok  <pbartok@novell.com> 
8877         * Control.cs (PerformLayout): It would seem that we considered
8878           invisible windows for our layout. Not quite the right thing
8879           to do. Now we don't any longer, thereby fixing bug #76889.
8881 2006-03-14  Peter Dennis Bartok  <pbartok@novell.com>
8883         * Control.cs (CanFocus): I goofed. A control can have focus 
8884           even though it's not selectable. Made it match MS docs.
8886 2006-03-13  Peter Dennis Bartok  <pbartok@novell.com>
8888         * ControlPaint.cs (DrawBorder3D): DrawBorder3D does not fill the
8889           center by default (fixes #76895)
8890         * ThemeWin32Classic.cs, ThemeNice.cs, ThemeClearlooks.cs: Replaced 
8891           all uses of Border3DSides.All with the explicit ORd together
8892           Left|Right|Top|Bottom because I assume that nobody was aware 
8893           that All also implies a center fill. Most places I checked had
8894           a fill right above.
8895         * ProgressBarStyle.cs: Added
8897 2006-03-13  Mike Kestner  <mkestner@novell.com>
8899         * ListView.cs: fix breakage in drag shadow header positioning 
8900         from Peter's csc compilation fix.
8902 2006-03-13  Mike Kestner  <mkestner@novell.com>
8904         * ListView.cs: fix NRE produced by backspacing twice in a focused
8905         FileDialog.
8907 2006-03-13  Mike Kestner  <mkestner@novell.com>
8909         * ListView.cs: proxy Key(Down|Up) from ItemControl to ListView.
8911 2006-03-13  Peter Dennis Bartok  <pbartok@novell.com>
8913         * Hwnd.cs: Added fixed_size field to track windows whose size cannot
8914           be changed
8915         * XplatUIX11.cs: Now setting fixed_size on hwnd and if set, re-setting
8916           the allowed size before making programmatic size changes
8918 2006-03-13  Peter Dennis Bartok  <pbartok@novell.com> 
8920         * XplatUIX11.cs: Don't call XSetWMNormalHints if no flags are 
8921           set, metacity is broken and will still use the emty sizes in 
8922           the struct. (Fix for #77089)
8924 2006-03-13  Peter Dennis Bartok  <pbartok@novell.com>
8926         * XplatUIStructs.cs: Split WindowStyles into WindowStyles and 
8927           WindowExStyles and marked both enums as Flags
8928         * Form.cs, ComboBox.cs, ToolTip.cs, Control.cs, PropertyGridView.cs,
8929           NotifyIcon.cs, MenuAPI.cs, XplatUIOSX.cs, MonthCalendar.cs: Updated
8930           to match WindowStyles split
8931         * XplatUIX11.cs:
8932           - SetWMStyles: Added cehck to not apply WM attributes to Child windows
8933           - Updated to match WindowStyles split
8934         * XplatUIWin32.cs:
8935           - Fixed FosterParent creation, was using ExStyle on the Style field
8936             (This should help with Popup focus issues)
8937           - Updated to match WindowStyles split
8939 2006-03-13  Jackson Harper  <jackson@ximian.com>
8941         * MdiWindowManager.cs: Use the system menu height. Fixes some
8942         strange sizing issues.
8944 2006-03-12  Peter Dennis Bartok  <pbartok@novell.com>
8946         * RichTextBox.cs: Need to scroll to caret after text is inserted (#77672)
8947         * TextBoxBase.cs:
8948           - Scroll to caret after inserting text (#77672)
8949           - Make scroll range one pixel higher, fixes off-by-one error (and
8950             makes underlines visible on the last line)
8952 2006-03-12  Peter Dennis Bartok  <pbartok@novell.com> 
8954         * XplatUIX11.cs: Added call to new Keyboard.ResetKeyState to prevent
8955           the keyboard state from being stuck with keys in 'pressed' state when
8956           focus is switched away via keyboard
8957         * X11Keyboard.cs: Added new ResetKeyState method to allow drivers to
8958           reset the keyboard if no X11 KeyUp events are expected to come
8959         * X11Structs.cs: Switched type of Visible to bool to match driver
8961 2006-03-12  Peter Dennis Bartok  <pbartok@novell.com>
8963         * TextControl.cs:
8964           - Switched caret to be just 1 pixel wide, matches MS and looks less
8965             clunky
8966           - Moved caret display 1 pixel down from the top of the control
8967             to improve view
8968           - InsertCharAtCharet: Update the selection start if moving the caret
8969             (fixes bug #77696; based on patch suggested by kazuki@panicode.com)
8970           - No longer always creating the caret when the caret methods are
8971             called. Only the actual ShowCaret/HideCaret will do that now
8972           - Only setting caret visible if the owner control has focus
8973           - UpdateView: Added invalidation-shortcut logic for center and right 
8974             aligned text. Previously we'd update all according to the left
8975             logic which caused drawing errors. Also fixed height of invalidated
8976             areas, now properly invalidating the whole area (was off-by-one)
8977           - owner_HandleCreated: Always generate the document when the
8978             handle is created; this ensures that 
8979         * TextBoxBase.cs:
8980           - Fixed situation where caret would disappear under the right
8981             window border, also improved scrolling behaviour on left-
8982             aligned textboxes
8983           - Fixed right-aligned textboxes to have a border to the
8984             right instead of the caret being under the right border
8985         * XplatUIX11.cs:
8986           - Switched from 'nested' to simple visible/not visible tracking 
8987             for caret (part of fix for #77671)
8988           - No longer passing through translated FocusIn/FocusOut messages
8989             since we were notifying too often and the wrong windows. Instead
8990             we just notify our focussed window of receiving or loosing focus
8991         * XplatUIWin32.cs: Switched from 'nested' show/hide 
8992           counting for caret to simple visible yes/no behaviour (part of 
8993           fix for #77671)
8995 2006-03-11  Alexander Olk  <alex.olk@googlemail.com>
8997         * Mime.cs: Remove debug code...
8999 2006-03-11  Alexander Olk  <alex.olk@googlemail.com>
9001         * MimeGenerated.cs: Removed
9002         * Mime.cs: Mime now reads the mime data (magic, globs, aliases
9003           and subclasses) from /usr/(local/)share/mime and
9004           $HOME/.local/share/mime.
9006 2006-03-10  Jackson Harper  <jackson@ximian.com>
9008         * MdiWindowManager.cs: Recalc the NC area when a window is
9009         maximized/restored so that the menu area is drawn on forms that
9010         don't have a menu.
9012 2006-03-10  Peter Dennis Bartok  <pbartok@novell.com>
9014         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs, XplatUIWin32.cs,
9015           XplatUIX11.cs: Added RequestNCRecalc method to driver to allow
9016           us to force a WM_NCCALCRESIZE message being sent. This is needed
9017           for MDI maximizing.
9019 2006-03-10  Jackson Harper  <jackson@ximian.com>
9021         * Form.cs: We need to use the ActiveMenu when calculating menu
9022         height.
9023         - Fix nullref when the window manager hasn't been created yet.
9024         * Control.cs: Fix nullref when we try to bring a control to the
9025         front that has no parent.
9026         * MdiWindowManager.cs: Use the MaximizedMenu for calculating
9027         height.
9028         - Add a dummy item to the maximized menu so it always has the
9029         correct height. Otherwise when there are no menus we don't get our
9030         icon and buttons.
9031         
9033 2006-03-10  Jackson Harper  <jackson@ximian.com>
9035         * MenuAPI.cs: Make this available elsewhere. I need it in some MDI
9036         stuff.
9037         * Form.cs: Make the window_state internal so the window managers
9038         can track it.
9039         - When an MDI child is maximized let its window manager create the
9040         main menu (so it can add its icon).
9041         - Notify the window managers of state changes
9042         - Let the window manager paint its buttons and handle button
9043         clicks on the menu when it is maximized.
9044         * InternalWindowManager.cs: Move the prev_bounds into the mdi
9045         window manager, since tool windows don't use it, only mdi windows.
9046         - Tell the main form that we don't want it to handle NCPAINT
9047         itself to avoid extra painting.
9048         - Handle clicks on a maximized windows menu.
9049         - Handle window state changes
9050         - Handle minimize/maximize clicks correctly by setting the window state.
9051         * MdiWindowManager.cs: Add an icon menu that (the menu you get
9052         when clicking on the forms icon).
9053         - New method to create a forms maximized menu. This is its normal
9054         menu + an icon.
9055         - Handle window state changes.
9056         - Handle sizing of maximized windows.  Maximized windows are just
9057         drawn bigger then the parent visible area. All controls are still
9058         there, they are just outside the visible area (this matches windows).
9059         * MdiClient.cs: No scrollbars when a child window is maximized.
9060         - Let the children windows figure out how big they should be when
9061         sizing maximized windows.
9062         - Implement a version of ArrangeIconicWindows somewhat similar to
9063         Windows version.  There are some little differences, but I don't
9064         think any app will rely on the layout of minimized mdi windows.
9066 2006-03-10  Peter Dennis Bartok  <pbartok@novell.com>
9068         * Padding.cs: Several fixes to allow compiling with csc 2.0
9070 2006-03-09  Jackson Harper  <jackson@ximian.com>
9072         * Menu.cs:
9073         * MenuItem.cs: Cheap hack so we can add items to the list without
9074         the events being raised.  This allows adding mdi items during
9075         drawing. TODO: Should probably find a better time to add the items.
9077 2006-03-10  Peter Dennis Bartok  <pbartok@novell.com>
9079         * ThemeWin32Classic.cs:
9080           - CheckBox_DrawText: Added logic to not wrap if not enough space
9081             is available (Fix for bug #77727)
9082           - RadioButton_DrawText: Added logic not to wrap if not enough
9083             space is available (Fix for bug #77727). Also removed some
9084             duplicate code, DrawString always drawing the regular text
9085             before hitting the if statement.
9087 2006-03-10  Peter Dennis Bartok  <pbartok@novell.com> 
9089         * XplatUIX11.cs: Handle an unmapped window state in SetWindowState
9091 2006-03-10  Peter Dennis Bartok  <pbartok@novell.com>
9093         * PictureBox.cs: Implemented ISupportInitialize interface (fixes #77726)
9094         * ContainerControl.cs: Partial implementation of some 2.0 scaling
9095           methods. Moved the new 2.0 properties into alphabetical order with
9096           other properties and added MonoTODO tags
9098 2006-03-09  Peter Dennis Bartok  <pbartok@novell.com> 
9100         * AutoScaleMode.cs: Added. Fix build.
9102 2006-03-09  Peter Dennis Bartok  <pbartok@novell.com>
9104         * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs, XplatUIWin32.cs, 
9105           XplatUIOSX.cs: Removed HWnd argument from CalcuateClientRect, not used
9106           and was requiring premature handle creation for calls from above
9107         * Form.cs, Control.cs: Removed handle arguments from calls to
9108           CalculateClientRect()
9110 2006-03-09  Peter Dennis Bartok  <pbartok@novell.com> 
9112         * ListView.cs (HeaderMouseMove): Fix csc compilation. 
9113           drag_column.column_rect is MarshalByRef and can't be used that way
9115 2006-03-09  Peter Dennis Bartok  <pbartok@novell.com>
9117         * AxHost.cs: Added deserialization constructor for 
9118           AxHost+State (fixes 77743)
9120 2006-03-09  Mike Kestner  <mkestner@novell.com>
9122         * ListView.cs: 
9123         - Added column drag reordering for details view.
9124         - fixed behavior when mouse is dragged off column and
9125         AllowColumnReorder is false.
9126         * ColumnHeader.cs: clone the format too in Clone.
9127         * Theme.cs: add DrawListViewHeaderDragDetails method.
9128         * ThemeWin32Classic.cs:
9129         - impl new method for drawing drag column shadows and targets.
9130         - support column offset for details mode in DrawListViewItem.
9132 2006-03-09  Peter Dennis Bartok  <pbartok@novell.com>
9134         * TextControl.cs: Reset the char_count when the document is cleared
9135           (Fixes bug reported on mono-winforms mailing list)
9137 2006-03-09  Peter Dennis Bartok  <pbartok@novell.com> 
9139         * TextBoxBase.cs: Honor the Handled state of KeyPress events. Instead
9140           of calling base we simply process the key ourselves, since both
9141           DefWindowProc and the handled method would set m.Result. 
9142           (Fixes #77732)
9144 2006-03-09  Peter Dennis Bartok  <pbartok@novell.com>
9146         * Form.cs(ScaleCore): No longer calling base.ScaleCore since that
9147           method also moves the window; instead implemented a copy of
9148           Control.ScaleCore (Part of fix for #77456)
9149         * TextBoxBase.cs: 
9150           - Created new CreateGraphicsInternal method to allow providing
9151             a graphics context when no handle is created without triggering
9152             handle creation. (Part of fix for #77456)
9153           - Replaced use of Control.CreateGraphics with CreateGraphicsInternal
9154         * TextControl.cs: 
9155           - Switched Constructor to require TextBoxBase instead of Control (to
9156             allow uncast access to CreateGraphicsInternal)
9157           - Safeguarded use of owner.Handle property. No longer accessing it
9158             unless the handle is already created.
9159           - Replaced use of Control.CreateGraphics with CreateGraphicsInternal
9160           - Now triggering a recalc when owning control becomes visible
9161         * TextBox.cs, RichTextBox.cs: Switched to use new internal 
9162           TextBoxBase.CreateGraphicsInternal() method to avoid triggering
9163           premature handle creation (Part of fix for #77456)
9164         * Control.cs:
9165           - We now only destroy our double-buffering buffers when the
9166             control is resized or disposed, but not when visibility
9167             changes. (The code even re-created them twice every time)
9168           - Now requiring a redraw of the buffer on visibility changes
9169             (fixes bug 77654 part 2)
9170           - Not passing OnParentVisibleChanged up unless the control
9171             is visible
9172           - CanFocus: Fixed to match MS documentation
9173           - Focus: Fixed to return actual focus state and to check if
9174             setting focus is legal before setting it
9176 2006-03-08  Peter Dennis Bartok  <pbartok@novell.com>
9178         * ThemeWin32Classic.cs: TabPages cannot have focus. Determine
9179           when to draw focus rectangle by looking at parent focus and
9180           selected state instead. This fixes TabPages on Linux sometimes
9181           having none or multiple focus rectangles.
9182         * XplatUIX11.cs (SetFocus): 
9183           - Don't set the focus if the same window already has focus
9184           - Use SendMessage instead of PostMessage (like it's Win32
9185             equivalent) and send the WM_SETFOCUS before the WM_KILLFOCUS
9186             to match MS behaviour
9187         * TabControl.cs(SelectedIndex): Don't set Focus on TabPage, TabPages
9188           are not selectable.
9190 2006-03-07  Jackson Harper  <jackson@ximian.com>
9192         * PictureBox.cs: Revert line I accidently committed last week.
9194 2006-03-07  Peter Dennis Bartok  <pbartok@novell.com>
9196         * Control.cs: 
9197           - Added new IsRecreating and ParentIsRecreating properties to
9198             allow testing if RecreateHandle has been called on ourselves
9199             or one of our parents
9200           - WndProc(WM_DESTROY): If our control handle is being recreated
9201             we immediately need to create the handle when receiving the
9202             destroy, that way our child windows find a valid parent handle
9203             when they themselves are being recreated upon WM_DESTROY receipt
9204             (fix for bug #77654 part 1)
9205         * XplatUIX11.cs:
9206           - DestroyWindow: WM_DESTROY must be sent to our own window before
9207             notifying any child windows. MS documents that child windows
9208             are still valid when WM_DESTROY is received. (Control now relies on
9209             this behaviour)
9210           - Added some fine-grain debug options
9212 2006-03-06  Jackson Harper  <jackson@ximian.com>
9214         * MdiClient.cs: Redid scrolling logic a bit to create a virtual
9215         box and base calculations off this.
9216         * MdiChildContext.cs:
9217         * MdiWindowManager.cs: Don't need to ensure scrollbars here
9218         anymore.
9219         
9220 2006-03-06  Peter Dennis Bartok  <pbartok@novell.com>
9222         * Splitter.cs: In situations where the affected control is added
9223           to the parent's control list after the splitter, we would not
9224           populate affected. Now we try populating it on mousedown, if
9225           it's not already set, and force it to be re-set whenever our
9226           parent changes.
9228 2006-03-03  Matt Hargett  <matt@use.net>
9230         * Control.cs: implement Control.Padding
9231         * Padding.cs: -Padding.All returns -1 when constructing with the
9232         implicit default ctor
9233         -Padding.ToString() matches MS.NET
9234         * ContainerControl.cs: implement
9235         ContainerControl.AutoScaleDimensions
9236         * ListControl.cs: implement ListControl.FormattingEnabled
9237         * TextBox.cs: Implemented TextBox.UseSystemPasswordChar.
9238         * ButtonBase.cs:
9239         * TabPage.cs: Implement UseVisualStyleBackColor.
9240         * PictureBox.cs: Implement PictureBox.InitialImage.
9242 2006-03-03  Mike Kestner  <mkestner@novell.com>
9244         * ListView.cs: Refactor into HeaderControl and ItemControl. Fix new
9245         event declarations to proxy to base event.
9246         * ListViewItem.cs: update to use ItemControl.
9247         * Theme.cs: make DrawListViewHeader. s/DrawListView/DrawListViewItems.
9248         * ThemeWin32Classic.cs: update to new ListView theme API and fix
9249         column header label rendering for 0 width columns.
9251 2006-03-03  Peter Dennis Bartok  <pbartok@novell.com>
9253         * Control.cs (ControlCollection.SetChildIndex): Avoid using a call
9254           that causes the control to be created. Fixes #77476.
9256 2006-03-02  Jackson Harper  <jackson@ximian.com>
9258         * Hwnd.cs: Clear the nc pending when clearing the NC area, not the
9259         expose_pending.
9261 2006-03-02  Peter Dennis Bartok  <pbartok@novell.com>
9263         * Control.cs: Implemented 2.0 feature where OnClick has MouseEventArgs
9264           passed in for the EventArgs (fixes #77690)
9266 2006-03-01  Jackson Harper  <jackson@ximian.com>
9268         * ScrollBar.cs: Refresh afterbeing resized.
9270 2006-02-28  Mike Kestner  <mkestner@novell.com>
9272         * MenuAPI.cs: Call PerformPopup internal method to emit Popup.
9273         Clean up a tracker compile warning.
9274         * MenuItem.cs: add internal PerformPopup method.
9275         [Fixes #77457]
9277 2006-02-28  Peter Dennis Bartok  <pbartok@novell.com> 
9279         * TextBoxBase.cs (set_Text): Recalculate the document (causing an
9280           implicit expose) when the text is set to null
9282 2006-02-28  Peter Dennis Bartok  <pbartok@novell.com>
9284         * RichTextBox.cs (FlushText): When newline is true, we always
9285           need to split the line, even if no text is on it and we may
9286           never eat newlines. (Fixes #77669)
9288 2006-02-28  Mike Kestner  <mkestner@novell.com>
9290         * ListView.cs: Add UpdateSelection internal method. Remove SelectItem 
9291         and set Selected instead.
9292         * ListViewItem.cs: Call owner.UpdateSelection to manipulate the 
9293         collections.
9295 2006-02-28  Peter Dennis Bartok  <pbartok@novell.com> 
9297         * ComboBox.cs: Allow setting SelectedIndex to -1. Fixes #77665
9299 2006-02-28  Alexander Olk  <alex.olk@googlemail.com>
9301         * FontDialog.cs:
9302           - Got rid of the panel. All controls are now directly added to
9303             the dialog form
9304           - It is now possible to set a font with the Font property
9305           - MinSize and MaxSize property do now what they should
9306           - ShowApply, ShowHelp, ShowColor, ShowEffects likewise
9307           - Searching and selecting a font with the font textbox works now,
9308             the same applies to the style and size textbox
9309           - Draw the correct 3D border in the example panel
9310           - Fixed a little mem leak (unused fonts didn't get disposed)
9311           - Many other internal updates/rewrites...
9312           - Fix typo
9314 2006-02-27  Peter Dennis Bartok  <pbartok@novell.com> 
9316         * TextControl.cs: 
9317           - InsertRTFFromStream: Added 'number of characters inserted' argument
9318           - set_SelectedRTF: Now using the number of characters to calculate
9319             the new location for the selection and cursor (x/y cannot be used
9320             due to potentially already wrapped text)
9322 2006-02-27  Peter Dennis Bartok  <pbartok@novell.com>
9324         * TextControl.cs: Added property and implemented means to allow 
9325           disabling recalculation of a document (can be used to speed up
9326           multiple inserts and is needed to make RTF inserts predictable, see
9327           bug #77659)
9328         * RichTextBox.cs: Using the new NoRecalc property of Document to
9329           keep x/y insert locations predictable. Also makes it faster inserting
9330           large chunks of RTF
9332 2006-02-27  Peter Dennis Bartok  <pbartok@novell.com> 
9334         * Control.cs: Separated special WM_SYSKEYUP keyboard handling. That way
9335           it's easier for a child control to handle the other messages without
9336           having to duplicate the special functionality
9337         * TextBoxBase.cs
9338           - WndProc: Removed calling base handler for WM_KEYDOWN and added 
9339             code to handle processing the key ourselves, in order to get 
9340             access to the result of KeyEventArgs.Handled. We now only call 
9341             ProcessKey if they key hasn't been handled already. Fixes #77526.
9342           - set_Text: If null or empty string is given, just clear the 
9343             document. Fixes part of #77526
9345 2006-02-27  Jackson Harper  <jackson@ximian.com>
9347         * SizeGrip.cs: Paint the background color before painting the grip
9348         so things look right.
9349         * MdiClient.cs: Add the sizegrip when both scrollbars are used.
9351 2006-02-27  Mike Kestner  <mkestner@novell.com>
9353         * ListView.cs:
9354           - Restructure layout and invalidation model to remove a ton of
9355           flicker from the control and speed up performance in general.
9356           - Add manual column resize, flickers like crazy, but I already have
9357           some ideas on how I'll fix that. (#76822)
9358           - Merge the three Icon-based views into a single layout method.
9359           - Move item selection interaction logic from the item since 
9360           interaction with the collections is more appropriate to the view.
9361           - Deselection on non-item clicks.
9362         * ListViewItem.cs:
9363           - Encapsulate most of the layout. Add some internal props to trigger
9364           layout.  Move to a model where Items invalidate themselves instead
9365           of just invalidating the whole control every time something changes.
9366           - Invalidate on Text/Caption changes.
9367           - switch to an offset based layout model to avoid having to absolute
9368           position every element on item moves.
9369           - correct checkbox layout to conform to MS layout.
9370         * ThemeWin32Classic.cs:
9371           - refactor some column header drawing code.
9372           - fix string justification for column headers (#76821)
9373           - make SmallIcon labels top justified for compat with MS impl.
9374         * ThemeClearlooks.cs:
9375           - adjust to new ListViewItem internal checkbox bounds api.
9377 2006-02-27  Jackson Harper  <jackson@ximian.com>
9379         * Control.cs:  Change where implicit controls fall in the zorder.
9380         They are now on top of all children.
9381         - Synced AddImplicit code with Add
9382         - Removed unused enumerator.
9383         * SizeGrip.cs: Remove the TODO as its been TODONE.
9385 2006-02-26  Peter Dennis Bartok  <pbartok@novell.com> 
9387         * TextControl.cs(Insert): Combine the last lines unless the insertion
9388           string ends with \n\n, otherwise we leave one line too many (Fixes
9389           something I noticed with the testapp for #77526; the bug itself was
9390           already fixed in the previous checkin)
9392 2006-02-26  Peter Dennis Bartok  <pbartok@novell.com>
9394         * RichTextBox.cs:
9395           - SelectionColor and SelectionFont methods no longer set absolute
9396             styles. Instead, the keep font or color respectively (This 
9397             resolves a long-standing FIXME in the code)
9398           - When flushing RTF text, the insert code now considers text trailing
9399             behind the insertion point (Fixes the bug where when replacing
9400             the selected text via SelectedRTF the remainder of the line behind 
9401             the selection would stay on the first insertion line)
9402         * TextBoxBase.cs:
9403           - AppendText now updates the selection points after inserting text
9404           - AppendText now ensures that the last tag (sometimes 0-length) of
9405             the document is used for the style information (Fixes part of 
9406             bug #77220)
9407         * TextControl.cs:
9408           - Created new FontDefiniton class to allow describing partial style
9409             changes
9410           - StreamLine() now takes a lines argument, to allow it to decide
9411             whether an encountered zero-length tag is the last in the document
9412             (which must be kept to not loose the font/color contained in it,
9413             for later appends)
9414           - Created Combine() and Split() methods for Marker structs, to 
9415             support marker updates due to reformatted documents (soft line
9416             wraps)
9417           - Implemented Document.CaretTag setter
9418           - Fixed MoveCaret(CtrlEnd) handling, now moves to the last character
9419             of the last line (Not the cause, but also exposed by bug #77220)
9420           - Added LineTag argument to InsertString method, to allow callers
9421             to force a certain tag to be used (required to force use of the
9422             trailing zero-length tag of a document)
9423           - Now updating markers in Combine(), to avoid stale tag markers
9424           - Added some method descriptions to aid maintenance
9425           - Implemented new FormatText concept, allowing additive/subtractive
9426             formatting by only specifying the components that are to be 
9427             changed. This was needed for resolving the RTB.SelectedColor/
9428             RTB.SelectedFont fixmes
9429           - Added Break() support method to allow breaking up linetags (used
9430             for partial formatting)
9431           - Added GenerateTextFormat() method. It is used for partial 
9432             formatting and allows to generate a full font/color from given
9433             attributes and an existing tag.
9435 2006-02-26  Jackson Harper  <jackson@ximian.com>
9437         * XplatUIX11.cs:  Use the correct caption height.
9438         - Translate hittest coordinates to screen coords to match MS.
9439         * XplatUIWin32.cs: When we create MDI windows we need to reset
9440         some of the style flags, so we get a nice blank window, and can
9441         draw all the decorations ourselves.
9442         - Set a clipping rectangle on the non client paint event, the
9443         window manager drawing code needs one.
9444         * Form.cs: The window manager needs to know when the window state
9445         has been updated.
9446         * Hwnd.cs: The window manager stuff now does a proper NCCALC so we
9447         don't need to factor in border and title sizes in these
9448         methods. TODO: Remove the args and fix the call points.
9449         * InternalWindowManager.cs: Handle NCHITTEST and NCCALCAREA
9450         properly.
9451         - Let the driver set the cursors.
9452         - Improve active window handling
9453         - Correct sizes for title bars and buttons.
9454         - Match MS drawing better
9455         * MdiWindowManager.cs: We don't need to handle border style
9456         updates specially anymore.
9457         - Check for scrollbars when windows are done moving
9458         - Handle Active properly.
9459         * MimeIcon.cs: Don't crash when we can't load the GNOME stuff
9460         correctly. I am spewing the exception though, so we don't hide the
9461         bugs.
9462         
9463 2006-02-26  Pedro Martinez Julia  <pedromj@gmail.com>
9465         * DataGridViewRowPostPaintEventArgs.cs,
9466           DataGridViewCellPaintingEventArgs.cs,
9467           DataGridViewRowCollection.cs,
9468           DataGridViewRowPrePaintEventArgs.cs,
9469           DataGridViewCell.cs: Clear a few warnings and implement a few
9470           exceptions that should be thrown.
9472 2006-02-22  Peter Dennis Bartok  <pbartok@novell.com>
9474         * ScrollBar.cs (ctor): Explicitly set a cursor to avoid
9475           'inheriting' our parent's (non-default) cursor. (Part of
9476            the fix for #77479)
9478 2006-02-22  Peter Dennis Bartok  <pbartok@novell.com> 
9480         * XplatUIX11.cs: Fixed cast to make csc happy
9482 2006-02-22  Peter Dennis Bartok  <pbartok@novell.com>
9484         * Control.cs (WndProc): Only handle WM_SETCURSOR messages if
9485           it's for the client area (part of fix for #77479 and needed
9486           for MDI window cursor handling)
9487         * XplatUIX11.cs
9488           - DefWindowProc: Now handles the WM_SETCURSOR messages, setting
9489             the appropriate default cursors and also passing the message
9490             up the parent chain 
9491           - GetMessage: Now generating WM_NCHITTEST and WM_SETCURSOR even
9492             for non-client areas
9494 2006-02-15  Jackson Harper  <jackson@ximian.com>
9496         * XplatUIWin32.cs: Since we fake MDI dont tell Windows that this
9497         is a real MDI window
9499 2006-02-14  Alexander Olk  <alex.olk@googlemail.com>
9501         * X11DesktopColors.cs: Instead of checking the desktop session
9502           string for "KDE" check if it starts with "KDE"
9504 2006-02-10  Jackson Harper  <jackson@ximian.com>
9506         * XplatUIX11.cs: These should be unsigned (fixes crash on 32 bit
9507         systems).
9509 2006-02-10  Alexander Olk  <alex.olk@googlemail.com>
9511         * FileDialog.cs: Added Refresh to RunDialog to fix some drawing
9512           errors
9513         * ColorDialog.cs:
9514           - Got rid of the panel. All controls are now directly added to
9515             the dialog form
9516           - Changed to mono coding style
9518 2006-02-10  Jackson Harper  <jackson@ximian.com>
9520         * InternalWindowManager.cs: We don't need the set visibility to
9521         false hack anymore now that peter has written beautiful shutdown
9522         code.
9524 2006-02-10  Peter Dennis Bartok  <pbartok@novell.com>
9526         * XplatUIX11.cs: Ignore DestroyNotify messages for windows that
9527           where already explicitly destroyed
9529 2006-02-10  Jackson Harper  <jackson@ximian.com>
9531         * MdiClient.cs: Handle the case where windows are too high or to
9532         the left and we need scrollbars.
9534 2006-02-10  Alexander Olk  <alex.olk@googlemail.com>
9536         * MimeIcon.cs: Added some icons
9537         * FileDialog.cs:
9538           - Fixed bug #77477
9539           - Got rid of the panel. All controls are now directly added to
9540             the dialog form
9541           - Changed to mono coding style
9542           - On Linux "My Computer" and "My Network" will now show some
9543             more usefull information. A new class, MasterMount, gathers
9544             this information from /proc/mount. Updated MWFFileView to make
9545             use of this information
9546           - Fixed a bug that caused FileDialog to crash when
9547             ".recently_used" file had a zero size
9548           - FilterIndex does now what it should
9549           - Some Refactoring
9550         * OpenFileDialog.cs, SaveFileDialog.cs: Updated to reflect latest
9551             FileDialog changes
9553 2006-02-09  Jackson Harper  <jackson@ximian.com>
9555         * ComboBox.cs: Don't touch if null.
9557 2006-02-09  Peter Dennis Bartok  <pbartok@novell.com>
9559         * Cursor.cs: 64bit safeness fix
9560         * XplatUIX11.cs: Removed several unneeded and one moronic cast.
9562 2006-02-09  Jackson Harper  <jackson@ximian.com>
9564         * Form.cs: If a form is made into an MDI form update the styles so
9565         all the props can get set correctly.
9566         - Kill the mdi_container when we dont need it anymore.
9567         * InternalWindowManager.cs: Add missing NOT
9569 2006-02-08  Jackson Harper  <jackson@ximian.com>
9571         * InternalWindowManager.cs: Respek clipping when drawing MDi
9572         decorations.
9574 2006-02-08  Jackson Harper  <jackson@ximian.com>
9576         * Hwnd.cs: Add bits to track non client expose events.
9577         * XplatUIX11.cs: Track non client expose events on the hwnd. This
9578         gives us a proper invalid rect and will allow for some nice
9579         optimizations with NC client drawing
9580         - MDI windows are children windows, so move their style handling
9581         into the child window block.
9582         * InternalWindowManager.cs: Remove a state reset that was
9583         getting invoked at the wrong time. Fixes managed windows getting
9584         into a 'stuck' captured state.
9586 2006-02-07  Peter Dennis Bartok  <pbartok@novell.com>
9588         * TextControl.cs (Document.ctor): Now initializing 
9589           selection_anchor. Fixes #77493
9591 2006-02-07  Jackson Harper  <jackson@ximian.com>
9593         * TrackBar.cs: The increment/decrements were backwards.
9595 2006-02-07  Mike Kestner  <mkestner@novell.com>
9597         * Theme*.cs : remove ThemeEngine.Current usage as it just points back
9598         to the instance itself.
9600 2006-02-07  Peter Dennis Bartok  <pbartok@novell.com>
9602         * X11DesktopColors.cs, ThemeGtk.cs: The GObject structure is based
9603           on ulongs and pointers, the size differs between 32bit and 64bit
9604           systems. 
9606 2006-02-07  Mike Kestner  <mkestner@novell.com>
9608         * XplatUIX11.cs : force the WorkingArea away from XGetWindowProperty
9609         for 64 bit platforms to work around a metacity bug. 
9611 2006-02-07  Jackson Harper  <jackson@ximian.com>
9613         * TrackBar.cs: Process the input keys we need, and hookup to
9614         KeyDown instead of using WndProc, so we get key messages.
9616 2006-02-06  Peter Dennis Bartok  <pbartok@novell.com>
9618         * XplatUIX11.cs: Atoms are only 32bit on the wire, no matter what
9619           machine we're on. 
9620         * X11Dnd.cs(SetAllowDrop): Since atoms are always 32bit on the wire
9621           we need to translate the XdndVersion atoms array before sending it
9623 2006-02-06  Peter Dennis Bartok  <pbartok@novell.com> 
9625         * XplatUIX11.cs: 
9626           - The preceeding 64bit fixes had a bug: ChangeProperty expects the
9627             number of bits for the property, not the number of bytes. The
9628             change to provide IntPtr.Size broke 32bit. (64bit was also wrong
9629             but would not crash since it specified 8 bits instead of 4 bits)
9630           - More 64bit fixes: Switched all atoms from int to IntPtr (they are
9631             defined as XID -> long in the C headers)
9632           - Removed 'new IntPtr((int))' and '(IntPtr)' casts from all NetAtoms 
9633             references since those are now IntPtr to begin with
9634           - Switched all Atom.XXX 'int' casts to IntPtr casts
9635           - Fixed XGrabPointer DllImport signature to work for 64bit (cursor arg)
9636           - Fixed XInternAtom signature for 64bit, now returns an IntPtr
9637           - Added XChangeActivePointerGrab DllImport (for X11DnD)
9638         * X11Structs.cs:
9639           - Changed 'int' type for Atoms in XEvent structures to IntPtr
9640           - Changed atom in HoverStruct to be IntPtr
9641         * X11DnD.cs:
9642           - Removed local DllImports, switched code to use those from XplatUIX11
9643           - Removed/fixed casts related to the switch of Atom to be a IntPtr
9645 2006-02-06  Mike Kestner  <mkestner@novell.com>
9647         * XplatUIX11.cs : many more 64 bit pinvoke changes.  I've audited all the 
9648         method signatures in the import region.  There may still be some
9649         lingering struct marshaling issues, as I didn't drill down into those.
9650         Yet.
9652 2006-02-06  Jackson Harper  <jackson@ximian.com>
9654         * ComboBox.cs: Dont manually set the top_item, this is computed
9655         when the scrollbar position is set.
9657 2006-02-06  Mike Kestner  <mkestner@novell.com>
9659         * XplatUIX11.cs : 64 bit changes to XGetWindowProperty usage. Fixes
9660         startup crashes on amd64.  There's other fixes needed.  All pinvoke
9661         usage of Atom needs to be mapped to IntPtr for example.  And there are
9662         likely other int/long issues to be addressed.
9664 2006-02-04  Alexander Olk  <alex.olk@googlemail.com>
9666         * FileDialog.cs: One more...
9668 2006-02-03  Alexander Olk  <alex.olk@googlemail.com>
9670         * FileDialog.cs: Next try
9672 2006-02-03  Alexander Olk  <alex.olk@googlemail.com>
9674         * FileDialog.cs: First part of fix for #77464
9676 2006-02-03  Alexander Olk  <alex.olk@googlemail.com>
9678         * ButtonBase.cs, ContainerControl.cs, Forms.cs,
9679           ThemeWin32Classic.cs: Fix for #77458. Correct handling of
9680           AcceptButton border drawing.
9682 2006-02-03  Peter Dennis Bartok  <pbartok@novell.com> 
9684         * Form.cs: Moved positioning of form after auto scaling is applied,
9685           otherwise it would possibly use wrong form size.
9687 2006-02-03  Peter Dennis Bartok  <pbartok@novell.com>
9689         * Control.cs (RecreateHandle): No need to re-create any child
9690           controls, the child windows will get destroyed automatically by
9691           the windowing system or driver, and re-created when the handle
9692           is being accessed the first time. Fixes #77456
9693         * Form.cs: No longer setting the form to closing if the handle is 
9694           being recreated. This seems like the right thing to do, don't
9695           have a bug or testcase for this, though.
9697 2006-02-02  Peter Dennis Bartok  <pbartok@novell.com>
9699         * FileDialog.cs: Suspend/Resume layouting when changing sizes of
9700           controls to avoid unwanted side effects
9702 2006-02-02  Peter Dennis Bartok  <pbartok@novell.com> 
9704         * Control.cs: 
9705           - ScaleCore needs to scale the bounds, not the ClientSize of the 
9706             control. Fixes #77416.
9707           - DefaultSize is 0,0 for control
9708         * TextBoxBase.cs: 
9709           - DefaultSize is 100, 20
9710           - SetBoundsCore: Now enforcing the height, no matter if the provided
9711             height is more or less than the preferred one, as long as AutoSize
9712             is on
9713         * Form.cs: Apply documented fudge factor. Part of item 3 fix for #77416
9715 2006-02-02  Peter Dennis Bartok  <pbartok@novell.com>
9717         * Control.cs:
9718           - ResumeLayout: Fixed logic when to call PerformLayout, we may not
9719             call unless both performLayout is true *and* we have a pending
9720             layout change
9721           - ResumeLayout: MS does not completely nest Suspend and Resume,
9722             they bottom out at 0, fixed our code to match that.
9723           - UpdateBounds/SetBoundsCore: Moved calling of UpdateDistances() to
9724             SetBoundsCore, we were updating even when we shouldn't. This fixes
9725             swf-anchors mis-anchoring when resizing the app fast and lots.
9726           - UpdateDistances: Now only setting the left and top distance if 
9727             we have a parent and are not suspended, this is based on
9728             a suggestion by Don Edvaldson in bug #77355.
9729           - OnVisibleChanged: Fixed logic when to create the control. We may
9730             not create the control if we have no parent or if it's not visible;
9731             switched to using Visible property instead of is_visible field 
9732             since the property also considers parent states. This fixes a bug
9733             when starting Paint.Net
9735 2006-02-02  Jackson Harper  <jackson@ximian.com>
9737         * Form.cs: If the forms handle hasn't been created yet don't call
9738         into xplatui to make it top most, just set the topmost flag on the
9739         form in CreateParams
9740         * XplatUIX11.cs: Handle WS_EX_TOPMOST.
9742 2006-02-01  Jackson Harper  <jackson@ximian.com>
9744         * ScrollableControl.cs: Refactored the Recalculate method a
9745         little, this wasn't handling all the variants of bottom and right
9746         bars needed to be added and added/removed based on their
9747         counterparts being added/removed (which changes the drawable
9748         size). Also we special case client widths and heights of 0 and
9749         don't add the scrollbar for those.
9751 2006-02-01  Peter Dennis Bartok  <pbartok@novell.com>
9753         * XplatUIX11.cs: 
9754           - Added method to get AbsoluteGeometry(); currently unused, but might
9755             be used in the future, if we try again to figure out toplevel
9756             coordinates with some more crappy window managers
9757           - Added FrameExtents() method to retrieve the WM set decoration size
9758           - Tried to fix up AddConfigureNotify and handling of ReparentNotify 
9759             to deal with at least KDE, FVWM and metacity (Fixes #77092)
9760         * Hwnd.cs: 
9761           - Added whacky_wm tracking var for metacity
9762           - Added logic to have default menu height if the actual menu height
9763             has not yet been calculated (part of fix for #77426)
9764         * Form.cs: Keep track whether client size has been set and re-set 
9765           it if a menu is added/removed afterwards (Fixes #77426)
9767 2006-01-31  Jackson Harper  <jackson@ximian.com>
9769         * Control.cs: When a new Site is set on the component attempt to
9770         pull the AmbientProperties from it.
9772 2006-01-31  Peter Dennis Bartok  <pbartok@novell.com>
9774         * ThemeWin32Classic.cs: Menu background is drawn in ColorMenu, not
9775           in the background of the owning form. Fixes #77332
9777 2006-01-31  Alexander Olk  <alex.olk@googlemail.com>
9779         * MimeIcon.cs: Fix for #77409
9781 2006-01-31  Alexander Olk  <alex.olk@googlemail.com>
9783         * XplatUIX11GTK.cs: Initial import
9785 2006-01-31  Jordi Mas i Hernandez <jordimash@gmail.com>
9787         * FixedSizeTextBox: fixes class signature
9789 2006-01-30  Jackson Harper  <jackson@ximian.com>
9791         * FixedSizeTextBox.cs: New internal class that represents a
9792         textBox that will not be scaled.
9793         * TreeView.cs:
9794         * ComboBox.cs:
9795         * UpDownBase.cs: Use the new FixedSizeTextBox instead of a
9796         standard TextBox.
9797                 
9798 2006-01-30  Peter Dennis Bartok  <pbartok@novell.com> 
9800         * XplatUIX11.cs: Retrieve default screen number instead of
9801           assuming 0. Attempted fix for #77318
9803 2006-01-30  Peter Dennis Bartok  <pbartok@novell.com>
9805         * XplatUIWin32.cs: 
9806           - GetWindowPos: When a window is parented by FosterParent, use 
9807             the desktop instead of FosterParent as the base to get coordinates
9808           - CreateWindow: Don't make FosterParent the parent window for Popups
9809             if we don't want a taskbar entry, Popups automatically don't get one
9810         * Hwnd.cs: Need to call remove to actually remove the key from the
9811           hash table
9813 2006-01-30  Mike Kestner  <mkestner@novell.com>
9815         * MenuAPI.cs: adjust MainMenu item popup location to y=0.
9817 2006-01-30  Jackson Harper  <jackson@ximian.com>
9819         * TreeView.cs:
9820         * TreeNode.cs: Raise events no matter how the treenode is
9821         checked. Patch by Don Edvalson.
9823 2006-01-30  Jackson Harper  <jackson@ximian.com>
9825         * TreeNode.cs: Signature fix.
9827 2006-01-29  Alexander Olk  <alex.olk@googlemail.com>
9829         * ThemeClearlooks.cs: Fixed a crash in ProgressBar drawing.
9831 2006-01-20  Mike Kestner  <mkestner@novell.com>
9833         * Form.cs: Add ActiveTracker property to do Captures and perform mouse
9834         event forwarding when menus are active.
9835         * MenuAPI.cs: kill the GrabControl hack.  Use Form.ActiveTracker.
9836         Most of the patch is pdb's with a little rework.
9838 2006-01-26  Peter Dennis Bartok  <pbartok@novell.com> 
9840         * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs, XplatUIOSX.cs: 
9841           Removed GetMenuDC and ReleaseMenuDC methods; replaced
9842           by PaintEventStart(handle, false) and PaintEventEnd(handle, false)
9843         * Form.cs: Changed WM_NCPAINT handler to use PaintEventStart and End
9844         * InternalWindowManager.cs: Added use of PaintEventStart/End to
9845           handling of WM_NCPAINT message, now passing the PaintEventArgs to
9846           the PaintWindowDecorations method
9847         * MainMenu.cs: Switched logic from GetMenuDC to PaintEventStart
9848         * MdiChildContext.cs: Switched logic from GetMenuDC to PaintEventStart
9849         * MenuAPI.cs: Made tracker window invisible
9850         * XplatUIWin32.cs:
9851           - Removed GetMenuDC and ReleaseMenuDC methods
9852           - Implemented the client=false path for PaintEventStart and
9853             PaintEventEnd
9855 2006-01-26  Peter Dennis Bartok  <pbartok@novell.com>
9857         * XplatUIWin32.cs(SetBorderStyle): Fixed3D needs a border
9858         * XplatUIX11.cs(DeriveWindowStyles): Updated to match fixed Form
9859           styles
9860         * Form.cs: 
9861           - MaximizeBox, MinimizeBox: Recreate the handle when setting
9862             the style
9863           - CreateParams: Reworked the styles to match MS look'n'feel,
9864             removed automatic setting of MinimizeBox, MaximizeBox, etc. via
9865             the WS_OVERLAPPEDWINDOW style. This fixes #76823.
9867 2006-01-26  Peter Dennis Bartok  <pbartok@novell.com> 
9869         * XplatUIX11.cs(GetWindowState): Now throwing an exception when the 
9870           window is not mapped, since otherwise every form that's being 
9871           created is considered minimized, which is wrong.
9872         * Form.cs: Catching the exception and returning our internal value
9873           instead
9875 2006-01-26  Peter Dennis Bartok  <pbartok@novell.com>
9877         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs: Added new driver method
9878           SetWindowMinMax() to have means to tell the driver about the minimum,
9879           maximum and maximized state window sizes. (Part of the fix for #76485)
9880         * Form.cs:
9881           - Implemented tracking of minimum and maximum window size, now calling
9882             new SetWindowMinMax() driver method to tell the driver (Part of the
9883             fix for #76485)
9884           - Finished handling of WM_GETMINMAXINFO method, now setting all values
9885             (Completes fix for #76485)
9886           - Calling new SetWindowMinMax driver method when the handle for a 
9887             form is created, to make sure the driver knows about it even if
9888             the values have been set before the window was created
9889           - Now eating the WM_WINDOWPOSCHANGED message if the form is minimized
9890             to avoid messing up our anchoring calculations (partial fix
9891             for #77355)
9892         * XplatUIStructs.cs: Added MINMAXINFO struct (moved from Win32 driver)
9893         * XplatUIX11.cs:
9894           - Added _NET_WM_STATE_HIDDEN property for detecting minimized state
9895           - Improved GetWindowState() to detect 'Minimized' state on Metacity 
9896             (and presumably other freedesktop.org compliant WMs). Left the
9897             assumption unmapped=minimized, needed for SetVisible to work.
9898           - Now setting the window state when creating windows
9899           - Fixed SetVisible to consider/set the window state when mapping
9900             a Form. We cannot set the state before it's mapped, and we cannot
9901             use Form.WindowState once it's mapped (since it would ask the
9902             driver and get 'normal'. Therefore, we grab the state before
9903             mapping, map, and then set state.
9904           - Implmemented SetWindowMinMax method; Metacity does not seem to
9905             honor the ZoomHints, though.
9906         * XplatUIWin32.cs:
9907           - Removed MINMAXINFO (moved to XplatUIStructs)
9908           - Added SetWindowMinMax stub (on Win32 the only way to set that
9909             information is in response to the WM_GETMINMAXINFO message, which
9910             is handled in Form.cs)
9911           - Added logic to SetVisible to set the proper window state when a 
9912             form is made visible (fixes #75720)
9914 2006-01-26  Jackson Harper  <jackson@ximian.com>
9916         * Control.cs (BeginInvoke): Automagically handle EventHandlers the
9917         same way we handle them with Invoke.
9919 2006-01-25  Peter Dennis Bartok  <pbartok@novell.com> 
9921         * Form.cs:
9922           - Added tracking of window state so CreateParams can return
9923             the appropriate style
9924           - Moved setting of WS_CAPTION style in CreateParams to allow
9925             styles without caption
9926         * DataGridTextBoxColumn.cs: We are now also creating the TextBox 
9927           control if the TextBox property is accessed. Fixes #77345
9928         * Control.cs:
9929           - get_Created: now uses is_disposed and is_created to determine
9930             return value (suggested by Jackson)
9931           - CreateHandle: No longer exits if the handle is being recreated
9932           - RecreateHandle: If the handle is not yet created call the 
9933             appropriate method to create either control or handle. If the
9934             control is already created CreateHandle will simply exit instead
9935             of just creating the handle
9936         * Hwnd.cs: Removed expose_pending tracking, no longer needed since we
9937           now SendMessage WM_DESTROY directly to the control when DestroyWindow
9938           is called.
9939         * XplatUIX11.cs: 
9940           - When DestroyWindow is called, instead of waiting for the 
9941             DestroyNotification from X11, we directly post it to the WndProc
9942             and immediately dispose the hwnd object.
9943             Same applies to DestroyChildWindows, and this obsoletes the
9944             expose_pending tracking. Contrary to Win32 behaviour we destroy our
9945             child windows before our own, to avoid X11 errors.
9946           - Removed the direct sending of WM_PAINT on UpdateWindow
9947         * XplatUIWin32.cs:
9948           - Reworked DoEvents and GetMessage to allow access to internal queue
9949             even when trying non-blocking access to the queue.  Fixes #77335. 
9950             Based on a patch suggestion by Don Edvalson. The new private
9951             GetMessage can now also be used as a backend for a PeekMessage
9952             frontend version.
9953         * XplatUI.cs: Improved debug output for CreateWindow
9955 2006-01-25  Jackson Harper  <jackson@ximian.com>
9957         * Help.cs: Allow param to be null. Patch by Don Edvalson.
9959 2006-01-24  Jackson Harper  <jackson@ximian.com>
9961         * ComboBox.cs: Clamp the max value set for the vertical scrollbar
9962         when we have a MaxDropItems lower then the selected index.
9964 2006-01-24  Jackson Harper  <jackson@ximian.com>
9966         * Control.cs: Don't allow selection of non visible controls, allow
9967         selection of controls without parents.
9969 2006-01-24  Jordi Mas i Hernandez <jordimash@gmail.com>
9971         * ThemeWin32Classic.cs: Fixes Datagrid drawing issues
9972         * DataGridDrawingLogic.cs: Add editing row only when is necessary
9974 2006-01-23  Jackson Harper  <jackson@ximian.com>
9976         * UpDownBase.cs: Make the textbox handle all the selection and
9977         tabbing. This fixes tabing to updown controls.
9979 2006-01-24  Jordi Mas i Hernandez <jordimash@gmail.com>
9981         * TextBoxBase.cs: fixes exception thown the object was null
9983 2006-01-23  Jackson Harper  <jackson@ximian.com>
9985         * ButtonBase.cs: Just use the base CreateParams. They set
9986         visibility and enabled correctly.
9987         * ComboBox.cs:
9988         * TrackBar.cs:
9989         * MonthCalendar.cs: Lets let the base set as much of the
9990         createparams as possible so we don't have duplicate code all over
9991         the place.
9993 2006-01-22  Alexander Olk  <alex.olk@googlemail.com>
9995         * ThemeGtk.cs: Added TrackBar and some experimental code to
9996           get double buffering back
9998 2006-01-21  Jordi Mas i Hernandez <jordimash@gmail.com>
10000         * DataGrid.cs: Allows row number set internally higher than the last
10001         when creating a new row. Restores the editing functionality.
10003 2006-01-20  Mike Kestner  <mkestner@novell.com>
10005         * MimeIcon.cs: delay Image creation until the icons are accessed
10006         instead of creating 190 scaled images on GnomeHandler startup.
10008 2006-01-19  Peter Dennis Bartok  <pbartok@novell.com> 
10010         * TextBoxBase.cs (WndProc): When handling WM_KEYDOWN we need to
10011           first call base before processing the event. Fixes #77279
10013 2006-01-19  Peter Dennis Bartok  <pbartok@novell.com>
10015         * XplatUIWin32.cs, Cursor.cs: Fixed code that wrongly assumed
10016           that the stride for the GDI bitmap would match the stride of
10017           a DIB or a Cursor.
10019 2006-01-19  Alexander Olk  <alex.olk@googlemail.com>
10021         * ThemeGtk.cs: Added ProgressBar, RadioButton, CheckBox
10023 2006-01-19  Jackson Harper  <jackson@ximian.com>
10025         * ComboBox.cs: Hookup the text controls keydown event so we get
10026         those when the text control has the focus.
10028 2006-01-18  Peter Dennis Bartok  <pbartok@novell.com> 
10030         * Label.cs: Now using the base events instead of defining new ones;
10031           this allows us to just call the base properties without having to
10032           duplicate all base property logic 
10034 2006-01-18  Peter Dennis Bartok  <pbartok@novell.com>
10036         * Label.cs: A label by default is not a tabstop (Fixes one of our
10037           failing nunit tests)
10039 2006-01-18  Peter Dennis Bartok  <pbartok@novell.com> 
10041         * XplatUIWin32.cs: Fixed wrong DoEvents logic. Fixes #77282
10042         * XplatUIX11.cs: Removed WM_PAINT check from DoEvents. Fixes #77282
10044 2006-01-18  Peter Dennis Bartok  <pbartok@novell.com>
10046         * Cursor.cs: Reimplemented creating cursor bitmaps without using
10047           the Bitmap(Stream) constructor which is semi-broken on MS GDI+.
10048           This fixes #77218
10049         * XplatUIWin32.cs: 
10050           - Reimplemented creating Bitmaps from DIBs since the Bitmap(Stream) 
10051             constructor creates images that can't be saved. Part of the fix
10052             for #76103
10053           - Added handling of CF_BITMAP as CF_DIB to clipboard code (Fixes #76103)
10054           - SetWindowState: Switched ShowWindow flags (part of an upcoming 
10055             bug fix for handling window state in forms properly)
10057 2006-01-18  Alexander Olk  <alex.olk@googlemail.com>
10059         * ThemeGtk.cs: Simplify ScrollBar drawing
10061 2006-01-18  Jackson Harper  <jackson@ximian.com>
10063         * Splitter.cs: Set the default dock style for the splitter control
10064         in the constructor.
10066 2006-01-18  Alexander Olk  <alex.olk@googlemail.com>
10068         * ThemeGtk.cs: Corrected StateType and ShadowType for
10069           gtk_paint_box
10071 2006-01-18  Alexander Olk  <alex.olk@googlemail.com>
10073         * Control.cs: Make use of Theme.DoubleBufferingSupported
10074         * ThemeGtk.cs:
10075           - Added drawing for flat style buttons
10076           - Added ScrollBar drawing
10078 2006-01-18  Alexander Olk  <alex.olk@googlemail.com>
10080         * ThemeClearlooks.cs: Removed some unneeded code.
10081         * ThemeGtk.cs: First part of ThemeGtk enhancements.
10083 2006-01-17  Peter Dennis Bartok  <pbartok@novell.com>
10085         * LinkLabel.cs: We need to update the hover drawing when
10086           leaving the control as well.
10088 2006-01-18  Jordi Mas i Hernandez <jordimash@gmail.com>
10090         * DataGrid.cs: Clicking on non empty areas in the columns
10091            area was giving an exception
10093 2006-01-17  Jackson Harper  <jackson@ximian.com>
10095         * ThemeWin32Classic.cs:
10096         * ListView.cs: Do not draw/clip the headers when the header style
10097         is None.
10099 2006-01-17  Jordi Mas i Hernandez <jordimash@gmail.com>
10101         * DataGrid.cs: Fixes 77260
10102         
10103 2006-01-17  Jordi Mas i Hernandez <jordimash@gmail.com>
10105         * DataGrid.cs: Clicking on a column on a empty grid was giving
10106           an exception
10108 2006-01-17  Peter Dennis Bartok  <pbartok@novell.com>
10110         * DataGrid.cs (OnKeyDown): Don't use the array if it's empty
10111           or any keypress will crash the grid.
10113 2006-01-17  Mike Kestner  <mkestner@novell.com>
10115         * MainMenu.cs (OnMenuChanged): set Height=0 to cause relayout.
10116         * ThemeWin32Classic.cs (CalcItemSize): clear Height/Width for 
10117         invisible/previously-visible items.
10118         [Fixes #76909]
10120 2006-01-17  Alexander Olk  <alex.olk@googlemail.com>
10122         * ThemeClearlooks.cs:
10123         - Added CL_Draw_Button method; now other theme controls that are 
10124           not derived from button or do not have a button can draw buttons
10125           too
10126         - Updated ComboBox drawing
10127         - Beautified RadioButton drawing
10128         - Corrected drawing of bottom and left tabs
10129         - Beautified DateTimePicker and MonthCalendar
10130         - Added CPDrawButton and CPDrawRadioButton
10132 2006-01-16  Jackson Harper  <jackson@ximian.com>
10134         * ComboBox.cs: Set the initial value of the scrollbar to the
10135         current index. Reduce the numbers of refreshs and IndexOfs called.
10137 2006-01-14  Alexander Olk  <alex.olk@googlemail.com>
10139         * FileDialog.cs: When the file listview is focused hitting the
10140           backspace key moves the fileview to the parent directory
10142 2006-01-13  Peter Dennis Bartok  <pbartok@novell.com>
10144         * Form.cs: 
10145           - Added RecreateHandle call when changing taskbar visibility to 
10146             trigger reparenting in Win32 driver (Fixes #75719)
10147           - If a window has minimize or maximize buttons, it cannot have
10148             a help button
10149         * XplatUIWin32.cs:
10150           - CreateWindow: When no WS_EX_APPWINDOW style is found we parent
10151             the toplevel form with FosterParent (A toolwindow not on the
10152             taskbar) (Fixes #75719)
10153           - Made FosterParent a toolwindow
10155 2006-01-13  Alexander Olk  <alex.olk@googlemail.com>
10157         * FileDialog.cs: Don't crash if InitialDirectory doesn't exist
10159 2006-01-13  Alexander Olk  <alex.olk@googlemail.com>
10161         * ToolTip.cs: If SetToolTip is called from a control and the mouse
10162           is currently over that control, make sure that tooltip_window.Text
10163           gets updated
10165 2006-01-13  Mike Kestner  <mkestner@novell.com>
10167         * MimeIcon.cs: size_t on lp64 fix for gdk_pixbuf_save_to_file extern.
10169 2006-01-13  Jackson Harper  <jackson@ximian.com>
10171         * TreeView.cs: On MS GetNodeAt never actually factors in the X
10172         value passed.  Also redraw the selected node when we recieve
10173         focus, so tabbing between trees works correctly.
10175 2006-01-13  Alexander Olk  <alex.olk@googlemail.com>
10177         * MimeIcon.cs: GnomeHandler: older gnome versions don't have
10178           ~/.gconf/%gconf-tree.xml, so use
10179           .gconf/desktop/gnome/interface/%gconf.xml
10181 2006-01-13  Peter Dennis Bartok  <pbartok@novell.com> 
10183         * TextControl.cs: Draw text in gray if control is disabled
10185 2006-01-13  Peter Dennis Bartok  <pbartok@novell.com> 
10187         * TreeView.cs: Draw the focus rectangle outside the highlight, to
10188           make sure it's always visible. Fixes #76680.
10190 2006-01-13  Peter Dennis Bartok  <pbartok@novell.com>
10192         * TreeView.cs: Implemented Wheel scrolling. Fixes #76531
10194 2006-01-13  Jonathan Chambers  <jonathan.chambers@ansys.com>
10196         * PageSetupDialog.cs: Added.
10197         * PrintDialog.cs: Attributes.
10198         * PrintPreviewControl.cs: Updates.
10199         * PrintPreviewDialog.cs: Updates.
10200         
10201 2006-01-12  Peter Dennis Bartok  <pbartok@novell.com>
10203         * Control.cs: Undid my selection check fix, since it's not needed
10204         * TextBoxBase.cs:
10205           - Now considering the presence of hscroll/vscroll when sizing
10206             vscroll/hscroll respectively. Fixed bug #77077
10207           - Added Left/Up/Down/Right to IsInputKey list to prevent
10208             ContainerControl from stealing them. This fixes what I broke
10209             with my last checkin.
10211 2006-01-12  Peter Dennis Bartok  <pbartok@novell.com> 
10213         * ScrollableControl.cs: Implemented dockpadding. Fixes #77166. And
10214           I finally understand how the property can be set without a setter :-)
10216 2006-01-12  Peter Dennis Bartok  <pbartok@novell.com>
10218         * Application.cs:
10219           - Switched RunLoop to use static Message.Create to create a 
10220             Message object
10221           - Added PreProcessMessage call in runloop for keyboard events; this
10222             is part of the fix for #77219, I overlooked this originally in the
10223             MSDN doc for PreProcessMessage
10224         * Control.cs:
10225           - Removed call to PreProcessMessage from handling of keyboard 
10226             messages; it's supposed to be done in the message pump
10227           - Moved call to ProcessKeyEventArgs inside ProcessKeyMessage as
10228             per MSDN documentation.
10229           - IsInputChar: All chars are input chars by default; removed the 
10230             parent calling chain, MS does not document that
10231           - PreProcessMessage: If IsInputChar is true, we want to return false
10232             to allow dispatching of the message
10233           - When selecting the next control, now also check that we're not
10234             selecting ourselves again and therefore return a false positive.
10235         * TextBoxBase.cs:
10236           - Tried to match return values for IsInputKey and ProcessDialogKey
10237             to what MS returns; moved processing of our special keys outside
10238             ProcessDialogKey since MS does not seem to return true on those.
10239           - Moved code that previously was in ProcessDialogKey into new private
10240             ProcessKey method, which gets called upon receipt of WM_KEYDOWN
10241           - Reworked handling of WM_CHAR to not have to duplicate code from
10242             Control.cs anymore, instead we simply call down to base.
10243            
10244 2006-01-12  Jackson Harper  <jackson@ximian.com>
10246         * ComboBox.cs: We always need to refresh the text area when
10247         EndUpdate is called. Fixes the combobox in the file dialog.
10248         * Control.cs: Don't create the creator_thread until the controls
10249         handle is created.  Also in InvokeRequired we check if the
10250         creator_thread is null. This gives the effect of InvokeRequired
10251         returning true if the controls handle is not created yet, and
10252         matches MS.
10254 2006-01-12  Peter Dennis Bartok  <pbartok@novell.com>
10256         * XplatUI.cs:
10257           - Added StartLoop() driver method. This is used to allow drivers to
10258             prepare for an upcoming GetMessage/TranslateMessage/DispatchMessage
10259             loop for a particular thread
10260           - Added EndLoop() driver method. This is called once the message
10261             pump for the thread is shut down
10262           - Added SupportsTransparency method to allow the driver to indicate
10263             opacity support for windows
10264         * Form.cs:
10265           - Removed TODO attribute, completed AllowTransparency property
10266           - Added documented logic to Opacity
10267         * GroupBox.cs, Label.cs, LinkLabel.cs, PropertyGrid.cs, Control.cs,
10268           ButtonBase.cs, CheckedListBox.cs: Combined Jackson's and Miguel's
10269           versions of CompatibleTextRendering
10270         * X11Structs.cs: Added opacity atom to our atom enumeration
10271         * Hwnd.cs: Added opacity tracking (we need to track since the opacity
10272           of a form might be set before it's reparented by the WM, and we need
10273           the opacity value without calling up to Form)
10274         * XplatUIDriver.cs: Added StartLoop(), EndLoop() and 
10275           SupportsTransparency() driver methods
10276         * Application.cs: Now calling StartLoop and EndLoop driver methods
10277         * XplatUIX11.cs:
10278           - Added opacity atom registration
10279           - Added StartLoop()/EndLoop() methods. They're empty right now but
10280             will need to get implemented when we switch to a per-thread queue
10281           - Implemented SupportsTransparency() method
10282           - Implemented SetWindowTransparency() method
10283           - Added support for setting the opacity value when a window is
10284             reparented (since the opacity needs to be set on the WM frame)
10285         * XplatUIOSX.cs, XplatUIWin32.cs:
10286           - Added SupportsTransparency(), StartLoop() and EndLoop() methods
10288 2006-01-12  Alexander Olk  <alex.olk@googlemail.com>
10290         * ThemeClearlooks.cs: Don't crash if TabControl.Parent is null.
10292 2006-01-12  Alexander Olk  <alex.olk@googlemail.com>
10294         * FileDialog.cs: Added ToolTip for MWFFileView
10295         * MimeIcon.cs: Rewrote GnomeHandler.
10296           - Get currently used gnome icon theme from
10297             ($HOME)/.gconf/%gconf-tree.xml
10298           - Make use of inherited icon themes
10299           - Support SVG icon themes like Tango via librsvg
10301 2006-01-12  Miguel de Icaza  <miguel@novell.com>
10303         Revert's Jackson's revert which broke 2.0 builds.   Fix both
10304         builds. 
10305         
10306         * Application.cs: Move the use_compatible_text_rendering outside
10307         the NET_2_0 define.  If we ever need to use the
10308         use_compatible_text_rendering on the individual controls they will
10309         access the variable from the common shared code paths.
10311 2006-01-12  Peter Dennis Bartok  <pbartok@novell.com>
10313         * XplatUI.cs:
10314           - Added more granular debug options
10315           - Added method to print both window text and id
10316           - Switched debug output to use new Window() debug method
10317           - Added IsEnabled() driver method
10318           - Added EnableWindow() driver method
10319         * Form.cs:
10320           - Removed end_modal; no longer needed, new loop handles termination
10321             via 'closing' variable
10322           - If form is modal, setting DialogResult will now initiate loop
10323             termination via 'closing' variable
10324           - Added support for is_enabled/WS_DISABLED to CreateParams
10325           - Close() now just send the WM_CLOSE message; the WM_CLOSE handler
10326             does all the work
10327           - Removed code that's now in RunLoop from ShowDialog()
10328           - Added various documented sanity checks to ShowDialog()
10329           - Added handling of WM_DESTROY message; we set 'closing' on getting
10330             the message to indicate the message pump to terminate
10331           - Added handling of new internal WM_CLOSE_INTERNAL message - it's
10332             send by the Application.ExitThread method. (We send the message
10333             to destroy the window after all other events have been
10334             processed through the queue, instead of destroying the handle 
10335             directly)
10336           - Moved code from Close() method to WM_CLOSE handler; added logic
10337             to only send close-related events if the form is not displayed
10338             modal
10339         * Splitter.cs (..ctor): Fixed typo in resource name
10340         * Control.cs:
10341           - DrawBackgroundImage: Explicitly selecting the wrap mode for the
10342             brush now
10343           - set_Cursor: Now only setting calling into XplatUI if the handle for
10344             the control is already created; this avoids implict handle creation
10345             or crashes if it's not created
10346           - set_Enabled: Now setting the enabled state via the new driver method
10347             instead of just tracking it
10348           - CreateParams: Added logic to set WS_DISABLED based on enabled state
10349           - CreateControl: Reordered event firing and method calls to more
10350             closely fire events in the order MS does. Now setting the
10351             enabled state in the driver when creating the control.
10352           - SetVisibleCore: Moved when the OnVisibleChanged event is fired to
10353             match MS order
10354         * FolderBrowserDialog.cs, MessageBox.cs, ButtonBase.cs, TrackBar.cs,
10355           MonthCalendar.cs: get_CreateParams: Added setting of WS_DISABLED 
10356         * XplatUIStructs.cs: Added internal WM_CLOSE_INTERNAL mesage id
10357         * Hwnd.cs:
10358           - Added tracking of window enabled state (get_Enabled/set_Enabled)
10359           - Added EnabledHwnd property to easily allow a driver to find the
10360             handle of the first enabled window in the parent chain (this is
10361             used by drivers to pass up input events of disabled windows)
10362         * XplatUIDriver.cs: Added IsEnabled() method
10363         * Application.cs:
10364           - Removed crude and obsolete exiting tracking variable
10365           - Removed internal ModalRun(); replaced by RunLoop()
10366           - Implemented private CloseForms() method to allow closing all 
10367             windows owned by a particular (or all) threads
10368           - Exit() now properly closes all windows without forcing the message
10369             pump to quit
10370           - Removed obsolete InternalExit() method
10371           - Changed Run() methods to use new RunLoop() message pump
10372           - Implemented new RunLoop() method for both modal and non-modal forms
10373         * CommonDialog.cs:
10374           - get_CreateParams: Added setting of WS_DISABLED
10375           - Simplified ShowDialog(); now all the work is done in RunLoop(),
10376             invoked via Form.ShowDialog()
10377         * NativeWindow.cs: We don't remove the window from the collection when
10378           the handle is destroyed; there might still be messages for it in the
10379           queue (mainly the resulting WM_DESTROY); instead it will be removed
10380           when Control calls InvalidateHandle in the WM_DESTROY handler
10381         * XplatUIX11.cs:
10382           - CreateWindow: Added logic to handle the WS_DISABLED window style
10383           - EnableWindow: Implemented based on Hwnd.Enabled
10384           - GetMessage: Reset PostQuitState so the method can be called again
10385           - Implemented support for disabled windows (passing messages to the
10386             first enabled parent) in handling all input messages
10387           - Added optimizations for handling Expose events
10388           - Implemeted new driver method IsEnabled()
10389           - Now always resetting paint pending tracking vars when we start paint
10390           - Re-implemented UpdateWindow via just sending a WM_PAINT message
10391         * XplatUIOSX.cs: Added IsEnabled method stub
10392         * XplatUIWin32.cs: Implemented new IsEnabled() method
10394 2006-01-11  Jackson Harper  <jackson@ximian.com>
10396         * ButtonBase.cs, CheckedListBox.cs, GroupBox.cs, Label.cs,
10397         LinkLabel.cs, PropertyGrid.cs: Unbreak 1.1 build. Consolidate the
10398         variables a little.
10399         * ColorDialog.cs: Clear out the old form before adding the new
10400         panel.  
10402 2006-01-11  Jackson Harper  <jackson@ximian.com>
10404         * X11Dnd.cs: Make sure to add all the text formats when adding
10405         strings to the data object.
10406         * TreeNodeCollection.cs: When adding to a sorted tree we need to
10407         do some redrawing too.  Also change the UpdateNode to an
10408         UpdateBelow so the newly added node gets painted.
10409         
10410 2006-01-11  Miguel de Icaza  <miguel@novell.com>
10412         * ButtonBase.cs, CheckedListBox.cs, GroupBox.cs, Label.cs,
10413         LinkLabel.cs, PropertyGrid.cs: Implement the
10414         UseCompatibleTextRendering property for 2.x
10416         * Application.cs (SetCompatibleTextRenderingDefault): Add. 
10418 2006-01-11  Jackson Harper  <jackson@ximian.com>
10420         * TreeView.cs: Use the property for setting the selected node so
10421         the correct events get raised.
10422         * TreeNode.cs: Update the tree when the fore/back colours of a
10423         node are set.
10425 2006-01-10  Jackson Harper  <jackson@ximian.com>
10427         * TreeView.cs: Allow setting SelectedNode to null.
10429 2006-01-9  Jonathan Chambers  <jonathan.chambers@ansys.com>
10431         * Form.cs: Fix support for Form TransparencyKey and Opacity on Windows.
10433 2006-01-9  Jonathan Chambers  <jonathan.chambers@ansys.com>
10435         * PrintControllerWithStatusDialog.cs: Update page number in dialog.
10437 2006-01-9  Jonathan Chambers  <jonathan.chambers@ansys.com>
10439         * PrintDialog.cs: Added attributes and set default property values.
10441 2006-01-9  Jonathan Chambers  <jonathan.chambers@ansys.com>
10443         * PrintControllerWithStatusDialog.cs: 
10444         Added PrintControllerWithStatusDialog.
10446 2006-01-9  Jonathan Chambers  <jonathan.chambers@ansys.com>
10448         * XplatUI.cs, Form.cs, XplatUIDriver.cs, XplatUIX11.cs, XplatUIOSX.cs, 
10449         XplatUIWin32.cs: Added support for Form TransparencyKey and Opacity on Windows.
10451 2006-01-9  Jonathan Chambers  <jonathan.chambers@ansys.com>
10453         * ComboBox.cs: Fix crash when there is no selected item (due to last commit)
10455 2006-01-09  Jonathan Chambers  <jonathan.chambers@ansys.com>
10457         * ComboBox.cs: Added KeyDown event handler for processing arrow keys
10458         and PgUp/PgDown. Also, scroll to selected item upon dropdown. Bugs 76857 and 76788.
10460 2006-01-08  Alexander Olk  <alex.olk@googlemail.com>
10462         * MimeIcon.cs: Added internal class SVGUtil.
10464 2006-01-08  Alexander Olk  <alex.olk@googlemail.com>
10466         * FileDialog.cs: Don't crash if there are two files with the
10467           same name but different locations.
10469 2006-01-08  John BouAntoun  <jba-mono@optusnet.com.au>
10471         * MonthCalendar.cs: Fixed annoying rendering bug when selecting
10472         dates across multiple month grids. Used to not highlight entire 
10473         month, but does now.
10474         
10475 2006-01-06  Jackson Harper  <jackson@ximian.com>
10477         * MonthCalendar.cs: Removed DoEvents call to prevent a running
10478         message loop. Change timer intervals to numbers that seem more
10479         natural.
10481 2006-01-06  John BouAntoun  <jba-mono@optusnet.com.au>
10483         * DateTimePicker.cs: Modified CalculateDropDownLocation to use the screen
10484           object for location info since screen object is now implemented.
10486 2006-01-05  Jackson Harper  <jackson@ximian.com>
10488         * AsyncMethodData.cs: Check if the call is complete before doing a WaitOne
10489         * AsyncMethodResult.cs: We no longer use a WeakReference for the
10490         AsyncMethodResult, this is because we ALWAYS want the
10491         ManualResetEvent to get set.
10492         * Control.cs: When disposing use an async invoke to call shutdown
10493         code, so that thigns don't block on the finalizer thread.  Also
10494         check if we even have a message loop before trying to send
10495         messages, if we don't then don't bother sending messages.
10496         - No more weak references for async methods
10497         * XplatUIDriver.cs: No more weak references for async methods.
10499 2006-01-04  Alexander Olk  <alex.olk@googlemail.com>
10501         * FontDialog.cs: Fix, don't throw an exception if FontFamily.Families
10502           returns two FontFamily with the same name
10504 2006-01-04  Peter Dennis Bartok  <pbartok@novell.com>
10506         * ThemeWin32Classic.cs, ThemeClearlooks.cs: Dropped stupid scheme of 
10507           drawing disabled text. Instead using the ColorGrayText color
10509 2006-01-04  Jackson Harper  <jackson@ximian.com>
10511         * TreeNode.cs: redraw the node when its image index is changed.
10513 2006-01-04  Peter Dennis Bartok  <pbartok@novell.com>
10515         * RichTextBox.cs: Same fix as last, just for SelectionColor. This
10516           time I checked there are no others like it.
10518 2006-01-04  Jackson Harper  <jackson@ximian.com>
10520         * AsyncMethodResult.cs: Use a ManualResetEvent instead of a mutex,
10521         this gives the behavoir I was looking for.
10522         * Control.cs: Special case Invoking EventHandlers, this matches MS
10523         and fixes part of bug #76326.
10525 2006-01-04  Alexander Olk  <alex.olk@googlemail.com>
10527         * ThemeClearlooks.cs, FileDialog.cs:
10528           - Reflect the latest Theme class changes
10529           - Remove Mono.Unix.Syscall.time in FileDialg and replace it 
10530             with DateTime
10531             
10532 2006-01-04  Alexander Olk  <alex.olk@googlemail.com>
10534         * Theme.cs: Cache UI resource images and resize them if needed
10536 2006-01-03  Peter Dennis Bartok  <pbartok@novell.com>
10538         * RichTextBox.cs: FormatText is 1-based, make it so when SelectionFont
10539           is called. This fixes the crash in Nexxia when setting the font
10540           attributes in the chat. [However, RTF needs a look-over to make sure
10541           that all SelectionXXX methods handle the special case that selection
10542           is empty and therefore the change must be applied to all text starting
10543           at the cursor/selection start]
10545 2006-01-03  Peter Dennis Bartok  <pbartok@novell.com> 
10547         * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs, XplatUIWin32.cs,
10548           XplatUIOSX.cs: Added SendMessage and PostMessage methods
10549         * X11Keyboard.cs: Switched to new way of calling PostMessage
10551 2006-01-03  Peter Dennis Bartok  <pbartok@novell.com>
10553         * Theme.cs: Added theme interface for images to allow the theme to
10554           control what images are used for things like FileDialog, MessageBox
10555           icons, etc.
10556         * MessageBox.cs: Now uses the new Theme icon/image interfaces
10558 2006-01-03  Alexander Olk  <alex.olk@googlemail.com>
10560         * FileDialog.cs:
10561           - Removed some dead code
10562           - Opening a recently used file does work now
10563           - Small UI enhancements
10564           - Refactoring
10566 2006-01-02  Alexander Olk  <alex.olk@googlemail.com>
10568         * FileDialog.cs: Forgot too add __MonoCS__
10570 2006-01-02  Alexander Olk  <alex.olk@googlemail.com>
10572         * FileDialog.cs: We are able to read recently used files now let's
10573           go on and write them.
10575 2006-01-01  Alexander Olk  <alex.olk@googlemail.com>
10577         * FileDialog.cs: Breathe some life into "last open"/"recently used"
10578           button
10579         * MimeIcon.cs: Do a check for the top level media type also
10581 2005-12-31  Alexander Olk  <alex.olk@googlemail.com>
10583         * ThemeClearlooks.cs:
10584           - Added CPDrawStringDisabled
10585           - ButtonBase_DrawText: Workaround for a DrawString bug; cut off
10586             some chars if the text doesn't fit into text_rect
10587           - DrawListViewItem: If View = View.LargeIcon center the image;
10588             rewrote the drawing of ListViewItem.Text if View = 
10589             View.LargeIcon
10591 2005-12-31  Alexander Olk  <alex.olk@googlemail.com>
10593         * MimeIcon.cs: Use default KDE icon theme if there is no
10594           "48x48" directory for the current icon theme, fixes #77114
10595         * Mime.cs: Disable not working and actually not used code. 
10596         * ThemeWin32Classic.cs:
10597           - Replace "new SolidBrush" in GetControlBackBrush and
10598             GetControlForeBrush with ResPool.GetSolidBrush
10599           - Changed DrawListViewItem from private to protected virtual
10600         * FileDialog.cs:
10601           - Added form.MaximizeBox = true
10602           - Don't throw an exception if there is a broken symbolic link
10604 2005-12-23  Jackson Harper  <jackson@ximian.com>
10606         * TabControl.cs: Give the panels focus, keyboard navigation is
10607         fixed so this works correctly now.
10608         - We need these key events also.
10609         * ToolBar.cs: Remove some of the poor mans double buffering.
10610         
10611 2005-12-24  Alexander Olk  <alex.olk@googlemail.com>
10613         * ComboBox.cs: The internal TextBox now returns the focus.
10615 2005-12-23  Jackson Harper  <jackson@ximian.com>
10617         * ThemeWin32Classic.cs:  Draw the text for all tab appearances.
10619 2005-12-23  Peter Dennis Bartok  <pbartok@novell.com>
10621         * Control.cs: Removed debug code
10622         * XplatUIX11.cs: Changed DestroyChildWindows to also consider
10623           implicit children
10625 2005-12-23  Peter Dennis Bartok  <pbartok@novell.com> 
10627         * Control.cs: When creating the control, update the Z-order after
10628           all it's children are created, too. (Fixes nexxia not showing
10629           picturebox bug)
10631 2005-12-23  Peter Dennis Bartok  <pbartok@novell.com>
10633         * Control.cs: Do not update the anchoring distances if layout is
10634           suspended, instead do it once layout is resumed
10636 2005-12-22  Peter Dennis Bartok  <pbartok@novell.com> 
10638         * Control.cs: 
10639           - After many hours of debugging, for both Jackson and
10640             myself, it turns out that it helps to set the parent of a control
10641             if you want to actually see it onscreen. In the spirit of that
10642             discovery, we're now setting the parent of the control and
10643             it's children when the control's handle is created. This fix
10644             will make Lutz Roeder's Reflector run happily. 
10645           - now just creating the handle instead of the whole control when
10646             getting a graphics context for the control.
10648 2005-12-22  Peter Dennis Bartok  <pbartok@novell.com>
10650         * ScrollableControl.cs: When calculating the canvas, don't consider
10651           the scrollbar widths. Instead, predict if horizontal scrollbar
10652           will affect canvas when deciding on vertical display and vice versa.
10654 2005-12-22  Peter Dennis Bartok  <pbartok@novell.com>
10656         * RichTextBox.cs: Set default RTF font for documents that don't
10657           have a font table (Fixes #77076)
10659 2005-12-22  Jackson Harper  <jackson@ximian.com>
10661         * TextBoxBase.cs: It's difficult to do, but you can have an empty
10662         clipboard. This prevents a NullRef in that case.
10663         * XplatUIX11.cs: Use CLIPBOARD not PRIMARY for our
10664         clipboard. PRIMARY is for the currently selected text only. (We
10665         should implement PRIMARY at some point.
10667 2005-12-21  Peter Dennis Bartok  <pbartok@novell.com>
10669         * XplatUIWin32.cs: Fixed the TEXTMETRIC structure, we were calling
10670           a Unicode function with a structure that was defined in Ansi way.
10671           This fixes #76942.
10673 2005-12-21  Jackson Harper  <jackson@ximian.com>
10675         * StatusBar.cs: Statusbar handles its fore/back colours on it's
10676         on. Because thats how it rolls. (and this avoids it using ambient
10677         colours).
10678         * ThemeWin32Classic.cs: Use the proper back color for filling.
10679         * Menu.cs: Use the system menu bar color for drawing menu
10680         bars. Using the window back color will bring ambient colours into
10681         the picture.
10683 2005-12-21  Alexander Olk  <alex.olk@googlemail.com>
10685         * ColorDialog.cs: Fixed a memory leak that caused a SIGSEV. A lot of
10686           Bitmaps were created and not disposed.
10688 2005-12-21  Peter Dennis Bartok  <pbartok@novell.com>
10690         * Control.cs (CreateControl): Don't do anything if the control is
10691           already created, otherwise we'd fire the OnCreated event more than
10692           once
10694 2005-12-21  Peter Dennis Bartok  <pbartok@novell.com> 
10696         * ComboBox.cs (FindStringCaseInsensitive): Don't search for emtpy strings,
10697           will always match. Instead return -1. Fixes #76464.
10699 2005-12-21  Peter Dennis Bartok  <pbartok@novell.com>
10701         * TextControl.cs (RecalculateLine): Only wrap if the wrap point is
10702           neither the beginning nor the end of the line (Fixes bug #76479)
10704 2005-12-21  Peter Dennis Bartok  <pbartok@novell.com> 
10706         * Control.cs:
10707           - ControlNativeWindow.ControlFromHandle(): Now handling situation
10708             where handle is invalid
10709           - FromHandle(): Now using hashtable-based ControlFromHandle() lookup
10710             instead of slower linear search
10711         * NativeWindow.cs: Don't remove the window from the hashtable until
10712           after the driver has destroyed it (since the driver might use
10713           Control.FromHandle to lookup the control object
10714         * Hwnd.cs: Added DestroyPending property to track if a window is 
10715           already destroyed as far as the driver is concerned and only hasn't
10716           yet notified the control
10717         * XplatUIX11.cs:
10718           - Activate(): Check if the window is still valid before using the 
10719             handle
10720           - Implemented DestroyChildWindow() method to mark child windows as
10721             destroyed when a window is destroyed. This prevents situations 
10722             where we might call an X method based on queued events for a
10723             window that already has been destroyed but we haven't yet pulled
10724             the destroy method from the queue.
10725           - Added a call to the new DestroyChildWindow() method to the drivers
10726             DestroyWindow code. Also now marking the destroyed window itself
10727             as pending
10729 2005-12-20  Jackson Harper  <jackson@ximian.com>
10731         * StatusBar.cs:
10732         * StatusBarPanel.cs: Don't calculate panel sizes on draw
10733         anymore. Just do them when needed, also track the rects of panels
10734         so that we can optimize refreshing more in the future.
10736 2005-12-20  Alexander Olk  <alex.olk@googlemail.com>
10738         * ColorDialog.cs: Fixed focus drawing in small color controls
10740 2005-12-19  Jackson Harper  <jackson@ximian.com>
10742         * InternalWindowManager.cs:
10743         * MdiWindowManager.cs: Cleanup some coordinate system changes so
10744         moving windows works properly.
10746 2005-12-19  Peter Dennis Bartok  <pbartok@novell.com> 
10748         * Control.cs: 
10749           - Removed call to InitLayout() from SetBoundsCore(); doc says
10750             it's only called when a control is added to a container
10751           - Split InitLayout logic, moved to separate UpdateDistances() method
10752             since we need to perform those calculations more often than just
10753             when adding the control to a container. (Needed to fix #77022)
10754           - Now calling UpdateDistances() from UpdateBounds() (fixes #77022)
10755           - Reduced the OnBindingContextChanged events count, don't send them
10756             unless the control is created, we still aren't totally matching
10757             MS, but I can't quite figure out some of their rules
10759 2005-12-18  Alexander Olk  <alex.olk@googlemail.com>
10761         * ThemeClearlooks.cs: Corrected distance between ProgressBar
10762           stripes
10764 2005-12-18  Alexander Olk  <alex.olk@googlemail.com>
10766         * ThemeClearlooks.cs:
10767           - Updated ProgressBar drawing
10768           - Corrected drawing of ScrollBars and scroll buttons
10769           - Some temporary fixes for minor pixel artefacts
10771 2005-12-18  Peter Dennis Bartok  <pbartok@novell.com> 
10773         * Control.cs:
10774           - Reworked Controls.Add(), Controls.Remove() and set_Parent() to
10775             cause events to be sent in the same order as MS does.
10776           - Added ChangeParent() method to trigger various OnXXXChanged events
10777             that need to be fired when a parent changes (This is a reworking
10778             of the patch from r54254, with the X11 errors fixed)
10779           - Removed SuspendLayout()/ResumeLayout() calls from Controls.Clear()
10780             since on MS we get OnLayoutChanged events when calling Clear()
10781           - Changed Enabled property to consider parent state as well, if a
10782             parent is not enabled, the control will not be either
10783           - Changed Parent property to simply call Controls.Add() since that
10784             now does all the work required, this way we avoid code duplication
10785           - Threw in a few OnBindingsContextChanged calls to try and match
10786             when MS sends them. We seem to send a few too many, though.
10787           - Added call to CreateControl when adding the control to a parent.
10788             We were never calling CreateControl. Still needs some work, in
10789             some places we treat HandleCreated and ControlCreated as equal, 
10790             which is wrong
10791           - Removed obsolete commented out code from UpdateZOrder()
10793 2005-12-18  Alexander Olk  <alex.olk@googlemail.com>
10795         * ThemeClearlooks.cs: Updated TrackBar drawing.
10797 2005-12-17  Alexander Olk  <alex.olk@googlemail.com>
10799         * FileDialog.cs: Patch for #76901 by Atsushi Enomoto
10801 2005-12-17  Alexander Olk  <alex.olk@googlemail.com>
10803         * FileDialog.cs: Add the Help button and the open readonly
10804           checkbox only if needed
10806 2005-12-16  Jackson Harper  <jackson@ximian.com>
10808         * Control.cs: Make sure we have an active menu before trying to
10809         process commands on it. Prevents menu-less forms from crashing
10810         when Alt is pressed.
10811         * TreeNodeCollection.cs: Some fixes to prevent null refs. Patch by
10812         Dieter Bremes.
10813         * RichTextBox.cs: Expand statement to help out gmcs and fix the
10814         2.0 build.
10816 2005-12-16  Jackson Harper  <jackson@ximian.com>
10818         * InternalWindowManager.cs: Don't translate tool windows screen
10819         coordinates. This fixes windows 'bouncing' around when being moved.
10821 2005-12-15  Peter Dennis Bartok  <pbartok@novell.com> 
10823         * TextBoxBase.cs:
10824           - MaxLength now treats 2^31-1 equal to unlimited length (this is
10825             not quite MS compatible, MS uses that number only for single line
10826             and 2^32-1 for multi-line, but I figure it won't hurt keeping
10827             the limit at 2GB)
10828           - Now enforcing the MaxLength limit when entering characters
10829           - Added argument to internal Paste() method to track if it's called
10830             from programatically or via keyboard, since keyboard driven pastes
10831             need to enforce max-length
10832           - Added logic to Paste to only paste as many chars as MaxLength 
10833             allows
10834         * RichTextBox.cs: Updated to use new obey argument for internal Paste()
10835         * TextControl.cs:
10836           - Added Length property to return number of characters in document
10837           - Added private CharCount property which only tracks actual chars
10838             in the document (no linefeeds) and fires event when CharCount
10839             changes
10840           - Added tracking of character count to all methods that alter it
10841           - Added LengthChanged event to allow applications to subscribe
10842             to any changes to the document
10844 2005-12-15  Peter Dennis Bartok  <pbartok@novell.com> 
10846         * TextBox.cs: 
10847           - Removed local password_char field (moved to TextBoxBase)
10848           - Now setting the document's password var when password is
10849             set
10850         * TextBoxBase.cs:
10851           - Added password_char field (needed here so MultiLine can
10852             access it)
10853           - Added logic to MultiLine property setter to set the document's
10854             variable when password display is allowed
10855           - Removed debug code and made some debug code conditional
10856         * TextControl.cs:
10857           - Added RecalculatePasswordLine() method to handle special password
10858             char only lines
10859           - Added PasswordChar property, also added related tracking vars
10860           - Draw() method now uses local text var for grabbing text to draw,
10861             this var is set to line.text unless we're doing password display,
10862             then it is set to the pre-generated all-password-chars line
10863           - Added calling RecalculatePasswordLine() method for password lines
10865 2005-12-14  Peter Dennis Bartok  <pbartok@novell.com> 
10867         * Hwnd.cs: 
10868           - Added Reparented property to allow tracking of Window Manager
10869             reparenting actions (which affect X/Y calculations of toplevel 
10870             windows)
10871           - Made ToString() print window handles in hex
10872         * XplatUIX11.cs:
10873           - AddConfigureNotify(): Now uses reparented state off Hwnd to
10874             determine if X/Y needs offsetting
10875           - AddConfigureNotify(): Fixed offset calculations
10876           - Now adds ReparentNotify messages into the queue
10877           - Now processes ReparentNotify messages and causes a 
10878             WM_WINDOWPOSCHANGED message to be sent upstream if a window
10879             is reparented (as most likely it's X/Y coordinates are changed
10880             due to that)
10882 2005-12-14  Jackson Harper  <jackson@ximian.com>
10884         * XplatUIX11.cs: Tool windows still need to respek focus.
10886 2005-12-14  Peter Dennis Bartok  <pbartok@novell.com> 
10888         * Control.cs: Undid 54254 (causing XConfigure errors) so we can
10889           have a working release
10891 2005-12-13  Jackson Harper  <jackson@ximian.com>
10893         * Form.cs: Update styles after setting the border style regardless
10894         of whether or not the window is using a window manager.
10896 2005-12-13  Jackson Harper  <jackson@ximian.com>
10898         * Form.cs: We now hook into an internal window manager instead of just an
10899         MDI subsystem, this is so we can have properly behaving tool windows.
10900         * MdiClient.cs: Naming change, MdiChildContext is now WindowManager
10901         * InternalWindowManager.cs: New internal class that acts as a
10902         window manager for tool windows and as a base for mdi windows.
10903         * MdiWindowManager.cs: New class that acts as a window manager for
10904         mdi windows.
10906 2005-12-12  Jackson Harper  <jackson@ximian.com>
10908         * Control.cs: Updates so we match behavoir for for implicit
10909         controls. Fixes explosions in MDI.
10911 2005-12-12  Jackson Harper  <jackson@ximian.com>
10913         * Control.cs: Implement Invalidate (Region).
10915 2005-12-12  Peter Dennis Bartok  <pbartok@novell.com> 
10917         * Control.cs: 
10918           - Changed handling of Controls.Add/Controls.Remove to fire (almost) 
10919             the same events as MS does. MS fires events for each property 
10920             except, for unknown reasons, Cursor, when the control is reparented. 
10921             I can't seem to totally match add/remove since MS also fires some 
10922             VisibleChanged events, which makes no sense. Consolidated the
10923             parenting code into a separate method so it can be called from
10924             both Add and Remove. set_Parent no longer needs any special logic
10925             as it calls the parent's add method which implicitly fires
10926             all events
10927           - Removed some obsolete code and debug output
10928           - Enabled state is inherited from parents, if this is enabled
10930 2005-12-08  Peter Dennis Bartok  <pbartok@novell.com> 
10932         * Form.cs: Removed commented out code
10934 2005-12-08  Peter Dennis Bartok  <pbartok@novell.com>
10936         * Control.cs:
10937           - Added internal version of Invoke, with additional argument 
10938             indicating if we're calling it from a Dispose() handler. That
10939             way we can avoid BeginInvoke throwing an exception if we're
10940             calling for an already destroyed window.
10941           - Added a dispose argument to BeginInvokeInternal, and made the
10942             check if a valid window handle chain exists conditional on
10943             it not being a dispose call
10944           - Removed code in DestroyHandle to destroy our children. Since we
10945             now handle the WM_DESTROY message we will catch all our children
10946             being destroyed.
10947           - Now calling OnHandleDestroyed from our new WM_DESTROY handler
10948         * Form.cs:
10949           - Added a field to track the application context of the form.
10950           - No need to set closing variable as response to WM_CLOSE, instead
10951             we destroy the window. We also call PostQuitMessage if the form
10952             has an application context (which makes it the main app form,
10953             which, when closed terminates the app)
10954         * XplatUI.cs:
10955           - Dropped Exit() method, it's naming was confusing
10956           - Added PostQuitMessage() which causes GetMessage to return false
10957             once the message queue is empty
10958         * XplatUIDriver.cs, XplatUIWin32.cs: Dropped Exit(), added 
10959           PostQuitMessage()
10960         * XplatUIOSX.cs: Switched signature for Exit method since Exit() is
10961           no longer a valid XplatUI method, but left it in since it's used
10962           internally. Added empty PostQuitMessage() method.
10963         * MenuAPI.cs: Replaced call to Exit() with call to
10964           PostQuitMessage, even though this is probably no longer needed.
10965         * Hwnd.cs: Added 'pretty' ToString() to support debugging.
10966         * X11Structs.cs: Added pretty XEvent.ToString() to support debugging.
10967         * Application.cs:
10968           - Replaced call to XplatUI.Exit() with PostQuitMessage()
10969           - Removed old debug code that would call XplatUI for exception
10970             display, enabled standard exception handling (Still not enabled
10971             though, until NativeWindow's ExternalExceptionHandler define
10972             is removed
10973         * NativeWindow.cs:
10974           - Added internal method to allow control to update NativeWindow
10975             after a window has been destroyed
10976           - Added handling of already destroyed windows when calling i
10977             DestroyWindow
10978           - Added removal of handle from list on ReleaseHandle
10979         * XplatUIX11.cs:
10980           - Dropped GetMessageResult var and related code
10981           - Added PostQuitState to field to track if PostQuitMessage has been
10982             called
10983           - Dropped Exit() method
10984           - Added PostQuitMessage() method
10985           - GetMessage now will return false if PostQuitState is set and no
10986             more messages are in the queue.
10987           - Expose handler will no longer generate WM_PAINT messages if we are
10988             in PostQuitState since it's very likely any windows have already
10989             been destroyed, and since Hwnd won't get updated until we have
10990             processed the DestroyNotify we'd be causing X errors.
10991         
10992 2005-12-07  Peter Dennis Bartok  <pbartok@novell.com>
10994         * Control.cs(WndProc): Apparently I'm suffering from brain cloud.
10995           Thanks to Mike for pointing out the err of my ways.
10997 2005-12-07  Peter Dennis Bartok  <pbartok@novell.com>
10999         * Control.cs(PreProcessMessage): Moved menu handling back, but
11000           after all other key handling, to match MS (who handles Menu in
11001           DefWndProc)
11002         * Menu.cs (WndProc): Removed my brainfart
11004 2005-12-07  Peter Dennis Bartok  <pbartok@novell.com>
11006         * Control.cs(PreProcessMessage): Removed special menu handling 
11007         * Menu.cs (WndProc): Added handling of WM_SYSKEYUP for menu purposes.
11009 2005-12-07  Mike Kestner  <mkestner@novell.com>
11011         * Control.cs : special case SYSKEYUP so that we can adjust keynav
11012         state according in tracker.
11013         * Menu.cs : promote tracker field to base class and provide a tracker
11014         lookup capability.  Add/Remove shortcuts dynamically if the top menu
11015         has a tracker. Unparent items that are removed from the collection.
11016         * MenuAPI.cs : implement mnemonic, shortcut, and arrow-based keynav.
11017         * Theme*.cs: add always_show_hotkeys field to support configurability
11018         of mnemonic display.  win32 doesn't show mnemonics until Alt is
11019         pressed.
11021 2005-12-07  Jackson Harper  <jackson@ximian.com>
11023         * MdiChildContext.cs: Use Control.ResetCursor.
11024         * Control.cs: ResetCursor needs to set the property so that the
11025         correct XplatUI call gets made.
11027 2005-12-07  Peter Dennis Bartok  <pbartok@novell.com>
11029         * Control.cs: More fixes to make our key events match MS. We
11030           were not setting the modifier state on KeyData, and we were
11031           not generating any events when Alt was pressed with a key
11032           since handling of WM_SYSxxx was missing for the OnKey methods.
11034 2005-12-07  Jackson Harper  <jackson@ximian.com>
11036         * MdiChildContext.cs: reenable the sizing code.
11037         - When the mouse leaves a window reset its cursor.
11039 2005-12-07  Alexander Olk  <alex.olk@googlemail.com>
11041         * ThemeClearlooks.cs: Reflect latest Hwnd changes
11043 2005-12-07  Peter Dennis Bartok  <pbartok@novell.com>
11045         * Hwnd.cs: Now using the theme 3d bordersize to calculate
11046           widths of Fixed3D borders
11048 2005-12-07  Jackson Harper  <jackson@ximian.com>
11050         * MdiClient.cs: Fix warnings. Earn Mike's love.
11052 2005-12-07  Alexander Olk  <alex.olk@googlemail.com>
11054         * ThemeClearlooks.cs:
11055           - Adjusted mouse over button color
11056           - Added first parts of CheckBox drawing
11057           - Added correct color for selected text background
11058           - Fixed ComboBox drawing
11059           - Added CPDrawBorder3D and CPDrawBorder
11061 2005-12-06  Peter Dennis Bartok  <pbartok@novell.com>
11063         * XplatUIX11.cs: Added call to XBell for AudibleAlert
11065 2005-12-06  Peter Dennis Bartok  <pbartok@novell.com> 
11067         * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs, XplatUIWin32.cs,
11068           XplatUIOSX.cs: Added AudibleAlert() method to have a means to
11069           alert users via sound. We could add an enum arg with different
11070           types of alerts in the future
11072 2005-12-06  Peter Dennis Bartok  <pbartok@novell.com>
11074         * Control.cs: Fix behaviour problems pointed out by Mike
11076 2005-12-05  Mike Kestner  <mkestner@novell.com>
11078         * StatusBarPanel.cs: add Invalidate method and hook it into all the
11079         prop setters.  Calls parent.Refresh for now, but could be maybe be
11080         optimized with an internal method on StatusBar at some point.
11081         [Fixes #76513]
11083 2005-12-05  Peter Dennis Bartok  <pbartok@novell.com> 
11085         * RichTextBox.cs: Implemented get_SelectionColor
11087 2005-12-05  Alexander Olk  <alex.olk@googlemail.com>
11089         * ThemeClearlooks.cs:
11090           - Removed dead code
11091           - Draw black button border only if button is Form.AcceptButton
11092           - Draw correct button color for pressed RadioButton if the mouse 
11093             has entered the button
11094           - Updated ProgressBar drawing!
11095           - Updated CPDrawSizeGrip drawing
11096           - Updated StatusBarPanel drawing
11098 2005-12-05  Mike Kestner  <mkestner@novell.com>
11100         * Control.cs (PreProcessMessage): add Keys.Alt based on LParam value.
11101         * X11Keyboard.cs (SendKeyboardInput): formal lParam for alt mod.
11103 2005-12-04  Alexander Olk  <alex.olk@googlemail.com>
11105         * ThemeClearlooks.cs: Initial check-in, activate with
11106           export MONO_THEME=clearlooks
11107         * ThemeEngine.cs: Added ThemeClearlooks
11109 2005-12-03  Mike Kestner  <mkestner@novell.com>
11111         * MenuAPI.cs: deactivate menus prior to calling item.PerformClick.
11112         [Fixes #76897]
11114 2005-12-02  Jackson Harper  <jackson@ximian.com>
11116         * Form.cs: If the child form has no menu the default main menu is
11117         used as the active menu.
11119 2005-12-02  Peter Dennis Bartok  <pbartok@novell.com> 
11121         * ListBox.cs: Check if any items exist before trying to resolve 
11122           coordinates into items
11124 2005-12-02  Peter Dennis Bartok  <pbartok@novell.com>
11126         * ThemeWin32Classic.cs: Hatchbrush on Win32 seems to always use white
11127           as the second color for the background hatch
11129 2005-12-02  Peter Dennis Bartok  <pbartok@novell.com>
11131         * TextBoxBase.cs: Now uses Jackson's new and improved ImplicitScrollbar
11132         * RichTextBox.cs: FormatText position arguments are 1-based, now making
11133           sure that what we pass to FormatText is always 1-based. Fixes #76885
11135 2005-11-29  Miguel de Icaza  <miguel@novell.com>
11137         * NumericUpDown.cs (EndInit): When we are done initializing,
11138         reflect any updates on the UI.
11140 2005-12-02  Jackson Harper  <jackson@ximian.com>
11142         * ImplicitHScrollBar.cs:
11143         * ImplicitVScrollBar.cs: New scrollbars that don't take focus from
11144         their container controls.
11145         * TreeView.cs: Use the new implicit scrollbars.
11147 2005-12-02  Jackson Harper  <jackson@ximian.com>
11149         * TreeView.cs: Make top_node internal so the TreeNodeCollections
11150         can play with it.
11151         * TreeNodeCollection.cs: If we remove the topnode we need to
11152         update topnode to the next node in line.
11153         - When clearing nodes go through the same process as removing
11154         them, so they get depareneted and checked if they are top node.
11156 2005-12-01  Jackson Harper  <jackson@ximian.com>
11158         * TreeView.cs: When imagelists are used the image area is
11159         selectable as well as the text.
11160         - If there are no selected nodes select the first one.
11161         * TreeNodeCollection.cs: Getting the TreeView is mildly expensive,
11162         so don't do it more then we need to.
11164 2005-12-01  Jackson Harper  <jackson@ximian.com>
11166         * ThemeWin32Classic.cs: Reimplement the scroll arrow drawing so
11167         that arrows can be scaled.
11169 2005-12-01  Jackson Harper  <jackson@ximian.com>
11171         * TreeNode.cs : Fixed bugs that caused FullPathTest + Traverse to
11172         fail. Patch by Dieter Bremes
11174 2005-11-30  Jackson Harper  <jackson@ximian.com>
11176         * Form.cs: Property is 2.0 only
11177         * PrintDialog.cs: Signature fix.
11179 2005-11-30  Peter Dennis Bartok  <pbartok@novell.com>
11181         * TextControl.cs: 
11182           - No longer artificially moves text 2 pixels down (now that we have
11183             borders this is no longer needed)
11184           - Added calcs for left, hanging and right indent
11186 2005-11-23  Mike Kestner  <mkestner@novell.com>
11188         * Menu.cs: mark MenuChanged internal, since it's not exposed by MS.
11190 2005-11-30  Jackson Harper  <jackson@ximian.com>
11192         * MdiChildContext.cs: Set the cloned menus forms, as these don't
11193         get cloned as part of CloneMenu ().
11194         * Menu.cs: Make sure the parent of the items get set correctly
11195         when they are added.  And the owners are notified of the changes.
11196         * Form.cs: Create an ActiveMenu property, so that when MDI is used
11197         we can change the menu being displayed/handled by the form without
11198         changing the menu assosciated with the form.
11199         - Don't let Mdi children draw/handle menus.
11200         
11201 2005-11-30  Jackson Harper  <jackson@ximian.com>
11203         * Menu.cs: Switch the MenuChanged method to OnMenuChanged and add
11204         a MenuChanged event. Just to make the API a little more
11205         consistent.
11206         * MainMenu.cs:
11207         * MenuItem.cs: Use the new OnMenuChanged
11208         * MdiChildContext.cs: Handle menu merging.
11209         * Form.cs: Implement MergedMenu.
11210         
11211 2005-11-30  Jackson Harper  <jackson@ximian.com>
11213         * Menu.cs: We were misusing Add. Add goes behind the specified
11214         index according to the docs, and does not replace the specified
11215         index. So I added an Insert method.
11217 2005-11-30  Peter Dennis Bartok  <pbartok@novell.com>
11219         * TextBoxBase.cs:  Implemented Ctrl-Ins (Copy), Shift-Ins (Paste) and
11220           Shift-Del (Cut), apparently Emacs uses these old Win 2.x keys. This
11221           is for Jackson
11222         * RichTextBox.cs: Added calls to base for DnD events
11224 2005-11-28  Peter Dennis Bartok  <pbartok@novell.com>
11226         * TextControl.cs:
11227           - Fixed drag-selection related crash; style fixes
11228           - Implemented undo class
11229             o Implemented method to capture document state for specified
11230               range in document tree
11231             o Implemented method to restore captured document state
11232             o Implemented cursor tracking
11233             o Implemented basic undo stack
11234           - Added undo cursor tracking to methods altering cursor location
11235           - Added undo tracking to selection deletion (still missing
11236             other text-altering hookups)
11237         * RichTextBox.cs:
11238           - Added SelectionLength property
11239           - Implemented CanPaste()
11240           - Implemented Paste()
11241           - Added missing protected methods
11242           - Fixed RTF->Document conversion; now uses font index 0 and color 
11243             index 0 as the default font for the parsed text
11244           - Fixed RTF<->Document font size translation
11245           - Fixed RTF generation, now properly handles cross-tag boundaries
11246             for single line selection
11247           - No longer always appends blank line to generated RTF
11248           - Removed TODOs
11249           - Added missing attributes
11250           - Hooked up undo-related methods
11251         * TextBoxBase.cs:
11252           - Implemented Copy()
11253           - Implemented Paste()
11254           - Implemented Cut()
11255           - Fixed caret mis-behaviour on backspace across line-boundaries
11257 2005-11-29  Jackson Harper  <jackson@ximian.com>
11259         * MdiClient.cs: Add a method for activating mdi children. Very
11260         basic right now. I imagine someday it might need more girth.
11261         * MenuItem.cs: Implement MDI lists. When mdilist is true the mdi
11262         children windows names are added to the menu item.
11263         * ThemeWin32Classic.cs: Draw the arrow if the item is an
11264         mdilist. This happens regardless of whether or not there are any
11265         mdi windows to see in the list, and according to my tests happens
11266         before the items are even added. Also happens if there isn't even
11267         an mdi client to get windows from.
11269 2005-11-29  Alexander Olk  <alex.olk@googlemail.com>
11271         * ThemeWin32Classic.cs: Make DrawFlatStyleRadioButton protected
11272         * ThemeNice.cs: Fix drawing of flatstyle radiobuttons
11274 2005-11-29  Jordi Mas i Hernandez <jordimash@gmail.com>
11276         * DataGridTableStyle.cs:
11277           - Create always the styles for the missing columns even if they are
11278             provided by the user (not default table style)
11279         * DataGrid.cs:
11280           - Fixes bug 76770
11281           - Fixes SetDataBinding (always re-attach source)
11282           - Fixes SetNewDataSource (only clear styles if they are not for 
11283             this source)
11284          -  Expands OnTableStylesCollectionChanged to handle style refresh 
11285             and remove properly
11287 2005-11-29  Jackson Harper  <jackson@ximian.com>
11289         * FileDialog.cs: Implement missing bits, remove some dead
11290         code.
11291         * FontDialog.cs: Implement missing Apply stuff, and ToString. Move
11292         creation of the panel so that the options set on the dialog are
11293         seen when the panel is created.
11294         * TreeView.cs: raise a click when items are clicked.
11295         
11296 2005-11-29  Jackson Harper  <jackson@ximian.com>
11298         * MdiClient.cs: Pass some signature methods through to base.
11300 2005-11-28  Jackson Harper  <jackson@ximian.com>
11302         * ListView.cs: Raise the click event when items are clicked.
11304 2005-11-28  Jackson Harper  <jackson@ximian.com>
11306         * MdiClient.cs: Make this algorithm even more beautiful.  And fix
11307         a nullref.
11309 2005-11-27  Alexander Olk  <alex.olk@googlemail.com>
11311         * ThemeNice.cs: - Removed 1 pixel bitmaps
11312           - Use SmoothingMode.AntiAlias where it makes sense
11313             (ScrollButton arrow for example)
11314           - Enhanced Button focus drawing
11315           - Fixed ComboBox drawing (no artefacts anymore, focus
11316             rectangle is back again, reduced size of ComboButton, etc.)
11317           - Fixed RadioButton focus drawing for Appearence.Button
11318           - Slight ScrollButton redesign
11319           - Some LinearGradientBrush size fixes
11320           - GroupBoxes have now rounded edges
11321           - Fixed StatusBar drawing
11323 2005-11-25  Alexander Olk  <alex.olk@googlemail.com>
11325         * ThemeNice.cs: - Remove dead code
11326           - use correct background colors for menus, etc.
11327           - Fake pixel drawing with 1 pixel bitmaps
11329 2005-11-24  Jackson Harper  <jackson@ximian.com>
11331         * MdiClient.cs: Size the scrollbars when resizing the window.
11332         - Resize the maximized windows when the client is resized
11333         * Form.cs: Make the child context available
11334         
11335 2005-11-23  Jackson Harper  <jackson@ximian.com>
11337         * MdiChildContext.cs: Don't size windows if they are maximized.
11339 2005-11-23  Mike Kestner  <mkestner@novell.com>
11341         * ContextMenu.cs: use MenuTracker.
11342         * Control.cs: remove menu handle usage.
11343         * Form.cs: remove menu handle usage.
11344         * Hwnd.cs: remove menu handle usage.
11345         * MainMenu.cs: Draw method moved here from MenuAPI.DrawMenuBar. Proxy
11346         motion and clicks to the new Tracker handlers.
11347         * Menu.cs: add sizing accessors, SelectedItem prop, kill CreateItems
11348         and handle usage.
11349         * MenuAPI.cs: refactored to combine popup and menubar event handling.
11350         Killed the MENU and MENUITEM data types and associated collections
11351         since we now keep the info on Menu and MenuItem. Expanded TRACKER into
11352         MenuTracker class that exposes the leftovers from the old MenuAPI
11353         static methods. Restructured Capture handling so that only one grab is
11354         done for the entire menu hierarchy instead of handing off grabs to
11355         submenus. Tracker now has an invisible control to Capture when active.
11356         * MenuItem.cs: add sizing accessors, kill Create
11357         and handle usage.
11358         * Theme.cs: remove menu handle and MENU(ITEM) usage.
11359         * ThemeWin32Classic.cs: use Menu/MenuItem sizing props instead of
11360         MENU(ITEM). remove menu handle usage, use Menu directly.
11361         * XplatUIDriver.cs: remove menu handle usage.
11362         * XplatUIOSX.cs: remove menu handle usage.
11363         * XplatUIWin32.cs: remove menu handle usage.
11364         * XplatUIX11.cs: remove menu handle usage.
11366 2005-11-22  Jackson Harper  <jackson@ximian.com>
11368         * Hwnd.cs: Don't compute the menu size for
11369         DefaultClientRectangle.
11370         - Reenable menu sizes being computed for GetClienRectangle.
11371         * Form.cs: Remove comment of trechery
11372         
11373 2005-11-22  Jackson Harper  <jackson@ximian.com>
11375         * Hwnd.cs: The adjustments for the menu bar are made when it is
11376         attached to the form.
11378 2005-11-19  Jackson Harper  <jackson@ximian.com>
11380         * XplatUIX11.cs: Create an HGRN of the invalid area for WM_NCPAINT
11381         (just like on windows).
11383 2005-11-19  Jackson Harper  <jackson@ximian.com>
11385         * MdiChildContext.cs: Handle all the buttons ourselves. We can't
11386         use real buttons anymore because they are in non client area. The
11387         one TODO here is that I need to somehow invalidate a section of
11388         the non client area.
11390 2005-11-18  Jackson Harper  <jackson@ximian.com>
11392         * Control.cs: Put the enum check back in now that MDI doesnt have
11393         to use this to set border styles.
11394         * Form.cs: Only set mdi child windows borders if the handle has
11395         been created.
11396         * MdiChildContext.cs: Don't set the InternalBorderStyle, just pass
11397         this directly on to the driver.
11398         - Get the move start position before adjusting for the titlebar
11399         height, this fixes the windows "skipping" when they are first
11400         moved.
11402 2005-11-18  Jackson Harper  <jackson@ximian.com>
11404         * XplatUIX11.cs: Just compute the mdi borders separately as they
11405         don't totally match up with normal form borders.
11407 2005-11-18  Jackson Harper  <jackson@ximian.com>
11409         * Control.cs: Set WS_ styles for borders, so that the driver does
11410         not have to retrieve the control instance to figure out what kind
11411         of borders it should have.
11412         * Form.cs: Set the WS_EX_MDICHILD flag on mdi children, so the
11413         driver can know its an mdi child easily.
11414         * XplatUIX11.cs: Get the border styles and whether the window is
11415         MDI from the Styles and ExStyles params instead of having to get a
11416         control. This prevents a chicken and egg problem.       
11418 2005-11-18  Jackson Harper  <jackson@ximian.com>
11420         * MdiClient.cs: Fix typo so scrollbars show up correctly.
11422 2005-11-18  Jackson Harper  <jackson@ximian.com>
11424         * MdiClient.cs: Calculate when to add and remove scrollbars
11425         correctly.
11426         * MdiChildContext.cs: Adjust the y position to take the titlebar
11427         into account.
11428         - No height for FormBorderStyle.None
11430 2005-11-18  Jackson Harper  <jackson@ximian.com>
11432         * Control.cs: Allow non enum values to be used for
11433         InternalBorderStyle.  MDI does this to set a special border style.
11434         - New utility methods for converting points to/from client coords
11435         - Add the newly created control to the Controls collection before
11436         updating its style. This way UpdateStyle can walk the control
11437         heirarchy to find the control if needed.
11438         so I don't need to create a new Point object all the time.
11439         * Form.cs: Let MDI windows handle their border styles.
11440         - Set styles on MDI windows so the correct title style is derived.
11441         * MdiChildContext.cs: Move all the painting and window handling
11442         into the non client area.
11443         - Use correct sizing and put correct buttons on frames based on
11444         the FormBorderStyle.
11445         - Notify the mdi client about scrolling
11446         - Need to handle the buttons ourselves now, because they are all
11447         in non client areas and we can't add controls there.
11448         * MdiClient.cs: Halfway to scrolling, this implementation is
11449         somewhat broken though, we need to check to make sure other
11450         windows aren't causing scrolling before removing the bars. Also
11451         the bars need to be drawn on top, maybe I can switch implicit
11452         controls to be on top.
11453         * Hwnd.cs: caption_height and tool_caption_height are now
11454         properties of an hwnd, this way they can be set by the driver
11455         based on the type of window they are.  In X11 the window manager
11456         handles the decorations so caption_height is zero unless its an
11457         MDI window.
11458         - Add 3 pixel borders for MDI windows (0xFFFF).
11459         - Get rid of some code duplication, have DefaultClientRectanle
11460         just call GetClientRectangle.
11461         * XplatUIX11.cs: Pass caption_height and tool_caption_height to
11462         Hwnd now.
11463         - Set border styles differently for mdi windows.
11464         * XplatUIOSX.cs: Pass caption_height and tool_caption_height to
11465         Hwnd now.
11466         
11467 2005-11-15  Mike Kestner  <mkestner@novell.com>
11469         * Menu.cs: when adding an item to the collection, if item is already 
11470         parented, remove it from the parent.
11472 2005-11-13  Alexander Olk  <alex.olk@googlemail.com>
11474         * X11DesktopColors.cs: Added KDE support
11476 2005-11-11  Peter Dennis Bartok  <pbartok@novell.com>
11478         * XplatUIWin32.cs: 
11479           - Clipboard methods now can translate Rtf format
11480           - No longer removes clipboard contents whenever a new format is added
11481             to allow placing multiple formats on the clipboard
11482         * Clipboard.cs: Clipboard now supports getting a IDataObject and
11483           will place all formats contained in it onto the clipboard. Also
11484           now cleans the clipboard before placing a new object onto it
11485         * RichTextBox.cs:
11486           - Implemented set_Rtf
11487           - Implemented set_SelectedRtf
11488           - Created InsertRTFFromStream() method to allow single code base
11489             for all properties and methods that insert RTF into document
11490           - Removed debug output
11491         * TextControl.cs:
11492           - Fixed Delete(int) to fix up line numbers
11493           - Fixed ReplaceSelection to combine start and end line
11494           - Fixed serious DeleteChars bug that would leave the document tree
11495             broken
11496           - Improved DumpTree with several logic checks to detect broken
11497             document trees
11498           - Removed debug lines
11499           - Fixed Caret.WordForward/WordBack moving code, now always also 
11500             updates caret.tag (fixes crash when word-selecting across tag
11501             boundaries via keyboard)
11502           - Added Insert() method for inserting multiline text into documents
11503           - Fixed DeleteChars() calculation errors that would cause a broken
11504             tag chain with multiple tag lines
11505           - DeleteChars() no longer crashes on multi-tag lines if not all tags
11506           - Split() no longer moves caret if split is at caret location
11507           - ReplaceSelection() now updates the cursor and re-displays it
11508           - ReplaceSelection() now uses new Insert() method to avoid code
11509             duplication
11510           - FormatText() can now handle formatting partial lines
11511         * TextBoxBase.cs:
11512           - Append now uses new TextControl.Insert() method (this avoids 
11513             duplicate code)
11514           - Implemented Ctrl-X (Cut) (
11515           - Implemented Ctrl-C (Copy)
11516           - Implemented Ctrl-V (Paste) (Still some bugs related to screen 
11517             regeneration when pasting text; roundtripping Copy&Paste within
11518             edit control still fails due to some calculation bugs in GenerateRTF)
11519           - The Delete key will now remove the current selection if it is visible
11520         * TextBox.cs: Removed debug lines
11521         * XplatUI.cs: Trigger initialization of DataFormats (which requires the
11522           driver to be initialized and can't therefore be done via a static ctor)
11524 2005-11-10  Peter Dennis Bartok  <pbartok@novell.com>
11526         * TextControl.cs: Added backend code for finding char arrays and strings
11527         * TextBoxBase.cs:
11528           - Added mouse wheel scroll support
11529           - Added support for VScroll and HScroll events
11530         * RichTextBox.cs:
11531           - Implemented all seven Find() variants
11532           - Implemented GetCharFromPosition()
11533           - Implemented GetCharIndexFromPosition()
11534           - Implemented GetLineFromIndex()
11535           - Implemented GetPositionFromCharIndex();
11536           - Implemented SaveFile for PlainText and UnicodeText
11537           - Fixed set_Font, now setting a new font applies that font to
11538             the whole document
11539           - Implemented generic Document to RTF converter
11540           - Implemented SaveFile for RichText format (still missing unicode
11541             conversion for non-ansi chars)
11542           - Implemented get_Rtf
11543           - Implemented get_SelectedRtf
11545 2005-11-09  Peter Dennis Bartok  <pbartok@novell.com>
11547         * Control.cs (WndProc): Call HandleClick after having sent OnMouseUp
11548           to allow any captures to be released before triggering OnClick. This
11549           way a click handler may capture the mouse without interference.
11550         * XplatUIX11.cs: Always send mouse messages to grab window if one exists.
11551           This way we send them even though X may not allow a grab (if the window
11552           isn't visible, for example)
11554 2005-11-08  Pedro Martinez Julia <pedromj@gmail.com>
11556         * DataGridViewRowEventArgs.cs: DataGridView implementation
11557         * DataGridViewElement.cs: DataGridView implementation
11558         * DataGridViewComboBoxCell.cs: DataGridView implementation
11559         * DataGridViewDataErrorContexts.cs: DataGridView implementation
11560         * DataGridViewCellErrorTextNeededEventArgs.cs: DataGridView implementation
11561         * DataGridViewColumnHeadersHeightSizeMode.cs: DataGridView implementation
11562         * ImageLayout.cs: DataGridView implementation
11563         * DataGridViewComboBoxColumn.cs: DataGridView implementation
11564         * DataGridViewCellMouseEventHandler.cs: DataGridView implementation
11565         * DataGridViewSelectionMode.cs: DataGridView implementation
11566         * IDataGridViewEditingControl.cs: DataGridView implementation
11567         * DataGridViewSortCompareEventHandler.cs: DataGridView implementation
11568         * DataGridViewCellStyleContentChangedEventHandler.cs: DataGridView implementation
11569         * DataGridViewAutoSizeModeEventHandler.cs: DataGridView implementation
11570         * DataGridViewColumnStateChangedEventHandler.cs: DataGridView implementation
11571         * DataGridViewColumnSortMode.cs: DataGridView implementation
11572         * DataGridView.cs: DataGridView implementation
11573         * DataGridViewRowStateChangedEventHandler.cs: DataGridView implementation
11574         * DataGridViewRowPostPaintEventArgs.cs: DataGridView implementation
11575         * DataGridViewDataErrorEventArgs.cs: DataGridView implementation
11576         * Padding.cs: DataGridView implementation
11577         * DataGridViewCellParsingEventArgs.cs: DataGridView implementation
11578         * DataGridViewCellStateChangedEventHandler.cs: DataGridView implementation
11579         * DataGridViewRowEventHandler.cs: DataGridView implementation
11580         * DataGridViewCellPaintingEventHandler.cs: DataGridView implementation
11581         * DataGridViewCellFormattingEventHandler.cs: DataGridView implementation
11582         * DataGridViewButtonCell.cs: DataGridView implementation
11583         * DataGridViewCellStyleContentChangedEventArgs.cs: DataGridView implementation
11584         * DataGridViewEditMode.cs: DataGridView implementation
11585         * DataGridViewCellValueEventArgs.cs: DataGridView implementation
11586         * DataGridViewRowCancelEventArgs.cs: DataGridView implementation
11587         * DataGridViewRowHeadersWidthSizeMode.cs: DataGridView implementation
11588         * DataGridViewCheckBoxColumn.cs: DataGridView implementation
11589         * DataGridViewCellToolTipTextNeededEventHandler.cs: DataGridView implementation
11590         * DataGridViewAutoSizeColumnsMode.cs: DataGridView implementation
11591         * DataGridViewCellEventHandler.cs: DataGridView implementation
11592         * DataGridViewEditingControlShowingEventHandler.cs: DataGridView implementation
11593         * DataGridViewCellStyleConverter.cs: DataGridView implementation
11594         * DataGridViewSelectedRowCollection.cs: DataGridView implementation
11595         * DataGridViewBindingCompleteEventHandler.cs: DataGridView implementation
11596         * DataGridViewColumnEventArgs.cs: DataGridView implementation
11597         * DataGridViewRowHeightInfoPushedEventHandler.cs: DataGridView implementation
11598         * DataGridViewRowContextMenuStripNeededEventHandler.cs: DataGridView implementation
11599         * QuestionEventArgs.cs: DataGridView implementation
11600         * IDataGridViewEditingCell.cs: DataGridView implementation
11601         * DataGridViewTriState.cs: DataGridView implementation
11602         * DataGridViewColumnDesignTimeVisibleAttribute.cs: DataGridView implementation
11603         * DataGridViewCellStateChangedEventArgs.cs: DataGridView implementation
11604         * DataGridViewColumnCollection.cs: DataGridView implementation
11605         * DataGridViewCellValueEventHandler.cs: DataGridView implementation
11606         * DataGridViewRowDividerDoubleClickEventHandler.cs: DataGridView implementation
11607         * DataGridViewCellFormattingEventArgs.cs: DataGridView implementation
11608         * DataGridViewColumn.cs: DataGridView implementation
11609         * DataGridViewCellBorderStyle.cs: DataGridView implementation
11610         * DataGridViewCellContextMenuStripNeededEventHandler.cs: DataGridView implementation
11611         * DataGridViewCellValidatingEventArgs.cs: DataGridView implementation
11612         * DataGridViewRow.cs: DataGridView implementation
11613         * DataGridViewImageCellLayout.cs: DataGridView implementation
11614         * DataGridViewImageCell.cs: DataGridView implementation
11615         * DataGridViewTopLeftHeaderCell.cs: DataGridView implementation
11616         * DataGridViewCheckBoxCell.cs: DataGridView implementation
11617         * DataGridViewHeaderCell.cs: DataGridView implementation
11618         * DataGridViewCellErrorTextNeededEventHandler.cs: DataGridView implementation
11619         * DataGridViewRowHeightInfoPushedEventArgs.cs: DataGridView implementation
11620         * DataGridViewAutoSizeColumnsModeEventHandler.cs: DataGridView implementation
11621         * DataGridViewTextBoxColumn.cs: DataGridView implementation
11622         * QuestionEventHandler.cs: DataGridView implementation
11623         * DataGridViewCellStyleScopes.cs: DataGridView implementation
11624         * DataGridViewSortCompareEventArgs.cs: DataGridView implementation
11625         * DataGridViewCellContextMenuStripNeededEventArgs.cs: DataGridView implementation
11626         * DataGridViewCell.cs: DataGridView implementation
11627         * DataGridViewCellEventArgs.cs: DataGridView implementation
11628         * DataGridViewClipboardCopyMode.cs: DataGridView implementation
11629         * DataGridViewCellStyle.cs: DataGridView implementation
11630         * DataGridViewColumnHeaderCell.cs: DataGridView implementation
11631         * DataGridViewRowPrePaintEventHandler.cs: DataGridView implementation
11632         * DataGridViewRowCancelEventHandler.cs: DataGridView implementation
11633         * TextFormatFlags.cs: DataGridView implementation
11634         * DataGridViewCellToolTipTextNeededEventArgs.cs: DataGridView implementation
11635         * DataGridViewDataErrorEventHandler.cs: DataGridView implementation
11636         * DataGridViewAdvancedCellBorderStyle.cs: DataGridView implementation
11637         * DataGridViewCellPaintingEventArgs.cs: DataGridView implementation
11638         * DataGridViewButtonColumn.cs: DataGridView implementation
11639         * DataGridViewRowsRemovedEventArgs.cs: DataGridView implementation
11640         * HandledMouseEventArgs.cs: DataGridView implementation
11641         * DataGridViewCellParsingEventHandler.cs: DataGridView implementation
11642         * DataGridViewColumnDividerDoubleClickEventHandler.cs: DataGridView implementation
11643         * DataGridViewCellMouseEventArgs.cs: DataGridView implementation
11644         * DataGridViewAutoSizeRowsMode.cs: DataGridView implementation
11645         * DataGridViewRowCollection.cs: DataGridView implementation
11646         * DataGridViewAdvancedBorderStyle.cs: DataGridView implementation
11647         * DataGridViewCellCancelEventHandler.cs: DataGridView implementation
11648         * DataGridViewHitTestType.cs: DataGridView implementation
11649         * DataGridViewAutoSizeModeEventArgs.cs: DataGridView implementation
11650         * DataGridViewColumnStateChangedEventArgs.cs: DataGridView implementation
11651         * DataGridViewColumnEventHandler.cs: DataGridView implementation
11652         * DataGridViewRowDividerDoubleClickEventArgs.cs: DataGridView implementation
11653         * DataGridViewAutoSizeRowMode.cs: DataGridView implementation
11654         * DataGridViewRowHeightInfoNeededEventArgs.cs: DataGridView implementation
11655         * DataGridViewRowsDeletedEventArgs.cs: DataGridView implementation
11656         * DataGridViewTextBoxEditingControl.cs: DataGridView implementation
11657         * DataGridViewContentAlignment.cs: DataGridView implementation
11658         * DataGridViewRowPostPaintEventHandler.cs: DataGridView implementation
11659         * DataGridViewComboBoxEditingControl.cs: DataGridView implementation
11660         * DataGridViewCellValidatingEventHandler.cs: DataGridView implementation
11661         * DataGridViewSelectedColumnCollection.cs: DataGridView implementation
11662         * DataGridViewPaintParts.cs: DataGridView implementation
11663         * DataGridViewCellCollection.cs: DataGridView implementation
11664         * DataGridViewRowsAddedEventArgs.cs: DataGridView implementation
11665         * DataGridViewImageColumn.cs: DataGridView implementation
11666         * DataGridViewRowsRemovedEventHandler.cs: DataGridView implementation
11667         * DataGridViewElementStates.cs: DataGridView implementation
11668         * DataGridViewRowHeightInfoNeededEventHandler.cs: DataGridView implementation
11669         * DataGridViewColumnDividerDoubleClickEventArgs.cs: DataGridView implementation
11670         * DataGridViewRowPrePaintEventArgs.cs: DataGridView implementation
11671         * DataGridViewRowStateChangedEventArgs.cs: DataGridView implementation
11672         * DataGridViewEditingControlShowingEventArgs.cs: DataGridView implementation
11673         * DataGridViewCellCancelEventArgs.cs: DataGridView implementation
11674         * DataGridViewRowHeaderCell.cs: DataGridView implementation
11675         * DataGridViewBindingCompleteEventArgs.cs: DataGridView implementation
11676         * DataGridViewTextBoxCell.cs: DataGridView implementation
11677         * DataGridViewBand.cs: DataGridView implementation
11678         * DataGridViewAutoSizeColumnModeEventArgs.cs: DataGridView implementation
11679         * DataGridViewHeaderBorderStyle.cs: DataGridView implementation
11680         * DataGridViewRowsAddedEventHandler.cs: DataGridView implementation
11681         * DataGridViewAutoSizeColumnMode.cs: DataGridView implementation
11682         * DataGridViewAutoSizeColumnModeEventHandler.cs: DataGridView implementation
11683         * DataGridViewAutoSizeColumnsModeEventArgs.cs: DataGridView implementation
11684         * DataGridViewRowErrorTextNeededEventHandler.cs: DataGridView implementation
11685         * DataGridViewSelectedCellCollection.cs: DataGridView implementation
11686         * DataGridViewRowContextMenuStripNeededEventArgs.cs: DataGridView implementation
11687         * DataGridViewRowErrorTextNeededEventArgs.cs: DataGridView implementation
11688         * DataGridViewComboBoxDisplayStyle.cs: DataGridView implementation
11690 2005-11-08  Peter Dennis Bartok  <pbartok@novell.com>
11692         * ThemeWin32Classic.cs: 
11693           - Draw the outside focus rectangle around buttons
11694           - Use CPDrawFocusRectangle to draw focus rectangles until Cairo
11695             doesn't use end caps for every dash of a line anymore. This
11696             workaround ignores the forecolor.
11698 2005-11-08  Kornél Pál  <kornelpal@hotmail.com>
11700         * ImageList.cs: Don't use ArgbColor with LayoutKind.Explicit as it isn't
11701           endian safe.
11703 2005-11-07  Jackson Harper  <jackson@ximian.com>
11705         * X11Dnd.cs: Set the X/Y positions on the DragEventArgs correctly.
11707 2005-11-07  Jackson Harper  <jackson@ximian.com>
11709         * ScrollableControl.cs: Calculate the maximum and change vars
11710         (more) correctly so that scrollbars appear as a sensible size.
11712 2005-11-04  Jackson Harper  <jackson@ximian.com>
11714         * TreeNodeCollection.cs: Refresh when nodes are cleared from the
11715         collection.
11716         * TreeView.cs: When the tree is sorted null out the top_node so
11717         that it is recalculated.
11718         - Use dotted lines instead of dashed lines to match MS better.
11720 2005-11-04  Jordi Mas i Hernandez <jordimash@gmail.com>
11722         * ListView.cs: 
11723           - Implements key search for items. Useful when browsing files with FileDialog
11724           - When changing view mode or when clear the items reset scrollbar positions
11726 2005-11-04  Jackson Harper  <jackson@ximian.com>
11728         * CurrencyManager.cs: Implement the MetaDataChanged event, the
11729         Reset method, and the CheckEmpty. CheckEmpty is just a total guess
11730         as to what the method may do as there is no real way of creating a
11731         derived CurrencyManager and calling the method. 
11733 2005-11-03  Jackson Harper  <jackson@ximian.com>
11735         * ThemeWin32Classic.cs: Implement ownerdrawing in the tab control
11736         * TabControl.cs: Add Ownerdrawing bits, add the UpdateTabSelection
11737         method which seems to just be used internally to refresh the tabs.
11739 2005-11-03  Jackson Harper  <jackson@ximian.com>
11741         * TabControl.cs: Implement the remove method. Fix some broken
11742         comments.
11744 2005-11-03  Peter Dennis Bartok  <pbartok@novell.com>
11746         * DateTimePicker.cs:
11747           - Added missing DateTimePickerAccessibleObject class
11748           - Added missing events
11749           - Added OnFontChanged method
11750         * Form.cs: Added missing attributes
11751         * TreeView.cs: Added missing attributes
11753 2005-11-03  Peter Dennis Bartok  <pbartok@novell.com> 
11755         * GridItemCollection.cs: Fix signatures
11757 2005-11-03  Peter Dennis Bartok  <pbartok@novell.com>
11759         * XplatUI.cs: Updated build rev/date
11760         * ComboBox.cs, DataGridTextBoxColumn.cs Control.cs, 
11761           DataGridTableStyle.cs, DataGrid.cs, DateTimePicker.cs: Signature fixes
11762         * Application.cs: Trigger context-specific ExitThread events
11764 2005-11-03  Jackson Harper  <jackson@ximian.com>
11766         * Menu.cs:
11767         * MainMenu.cs:
11768         * GridTableStylesCollection.cs:
11769         * Timer.cs:
11770         * TabPage.cs:
11771         * HelpProvider.cs:
11772         * StatusBar.cs:
11773         * MonthCalendar.cs: Signature fixes
11775 2005-11-03  Jackson Harper  <jackson@ximian.com>
11777         * TreeNodeCollection.cs: Remove should not be virtual.
11778         * TreeView.cs: Implement the last of the missing methods.
11780 2005-11-03  Jackson Harper  <jackson@ximian.com>
11782         * TreeNodeConverter.cs: Implement to get off my class-status back.
11784 2005-11-03  Jackson Harper  <jackson@ximian.com>
11786         * TreeView.cs: Hookup the bits for drag and drop.
11787         * TreeNode.cs: Don't cache the tree_view or index anymore, now
11788         that nodes can be moved from tree to tree easily this just causes
11789         all sorts of problems.
11790         * TreeNodeCollection: Don't need to give treenodes an index and
11791         treeview anymore when they are added, these are computed on the
11792         fly. Also make sure to remove a node before its added.
11794 2005-11-03  Peter Dennis Bartok  <pbartok@novell.com>
11796         * TextControl.cs:
11797           - Added CaretSelection enum
11798           - Added comparison methods to Marker struct, makes selection code
11799             more readable
11800           - Added SelectionStart and SelectionEnd as 'moveable' location for
11801             the CaretDirection enum and handler
11802           - Added selection_prev variable to track optimized invalidation for
11803             word and line selection
11804           - Added SelectionVisible property (returns true if there is a valid 
11805             selection)
11806           - Switched CaretHasFocus to only display the caret if there is no
11807             visible selection
11808           - Avoiding StringBuilder.ToString to retrieve a single char, instead
11809             using the direct character index; should be much faster
11810           - Added various conditional debug statements
11811           - Fixed invalidation calculation for selection ranges
11812           - Added ExpandSelection() method to support word and line selection
11813           - Switched SetSelectionToCaret to use new Marker compare overloads
11814           - Added central IsWordSeparator() method to determine word 
11815             separators/whitespace and FindWordSeparator() to streamline common
11816             usage of IsWordSeparator()
11817         * TextBoxBase.cs:
11818           - Removed unneeded grabbed variable, it was just mirroring
11819             Control.Capture
11820           - No longer firing OnTextChanged event when Text setter is called,
11821             since the base will fire the event for us
11822           - Added handling of Ctrl-Up/Down selection
11823           - Added handling of Shift-Cursorkey selection
11824           - Added handling for Ctrl-Delete and Ctrl-Backspace to remove
11825             words
11826           - Added handling of Shift and Ctrl-Shift-Home/End selection
11827           - Removed some debug output
11828           - Added handling for single/double/tripple-click to place caret/
11829             select word/select line respectively (Fixes bug #76031)
11830           - Added support for drag expansion of word/line selection
11831         * RichTextBox.cs: Handle GotFocus event to trigger redrawing of
11832           current selection
11834 2005-11-02  Jackson Harper  <jackson@ximian.com>
11836         * X11Dnd.cs: If the drag is going to and from a MWF window just
11837         copy the data instead of sending it out through the X Selection
11838         mechanism.
11840 2005-11-02  Jackson Harper  <jackson@ximian.com>
11842         * X11Dnd.cs:
11843         * XplatUIX11.cs: When in a drag we don't want motion notify
11844         messages to get passed on to the other controls. This prevents
11845         mouse move messages from showing up in the drag source.
11847 2005-11-02  Jackson Harper  <jackson@ximian.com>
11849         * X11Dnd.cs: Remove unneeded call to XAllowEvents.  Make sure that
11850         the correct button is release to end a drag.
11851         * XplatUIX11.cs: Make the button state internal so the drag system
11852         can access it.  Dragging needs to know about all button releases,
11853         not just left button.
11855 2005-11-02  Miguel de Icaza  <miguel@novell.com>
11857         * Form.cs (Icon): If the icon is null, reset the icon to the
11858         default value. 
11860         * Cursor.cs: When writing the AND-mask bitmap do not include the
11861         number of colors, but hardcode those to two (black and white),
11862         fixes the loading of color cursors (Paint Dot Net).
11864         * Form.cs: To debug, allow MONO_MWF_SCALING=disable variable to
11865         turn off autoscaling.
11867         * Cursor.cs: Allow resource type to be 1 or 2 (from ImageMagic).
11869 2005-11-02  Jackson Harper  <jackson@ximian.com>
11871         * X11Dnd.cs: Make sure to send a status message if the pointer
11872         enters a control that can not accept a drop, otherwise the cursor
11873         isn't updated correctly. Also tried to compress the lines of code
11874         a bit.
11876 2005-11-02  Jackson Harper  <jackson@ximian.com>
11878         * X11Dnd.cs: Change cursors based on drag action. Also attempt to
11879         set actions correctly.  This isn't perfect as XDND and win32 have
11880         some differences on how you allow actions. I'll clear this up by
11881         adding a path for drag from MWF to MWF windows.
11882         * XplatUIX11.cs: Hook into the dnd system.
11884 2005-11-02  Jordi Mas i Hernandez <jmas@softcatala.org>
11886         * ListView.cs: Fixes scroll bar visibility. Hide them if they were
11887         previously shown but they are no longer need it. Very obvious when 
11888         browsing files with FileDialog.
11890 2005-11-01  Peter Dennis Bartok  <pbartok@novell.com>
11892         * Control.cs: We always need to call OnPaintBackground. We pretty much
11893           ignore AllPaintingInWmPaint and always do the painting there, whether 
11894           it's set or not, since we always ignore the WM_ERASEBKGND message 
11895           (which we don't generate on X11). This fixes #76616.
11896         * Panel.cs: Removed unneeded background painting. This happens properly
11897           in Control.cs already
11899 2005-10-31  Mike Kestner  <mkestner@novell.com>
11901         * Menu.cs: Add items to collection before setting their index.
11902         * MenuItem.cs : add range checking with ArgumentException like MS.
11903         [Fixes #76510]
11905 2005-10-31  Jackson Harper  <jackson@ximian.com>
11907         * ListBox.cs: Invalidate if the area is visible at all not just
11908         contained in the visible rect. Fixes unselection of semi visible
11909         items.
11911 2005-10-31  Jackson Harper  <jackson@ximian.com>
11913         * Control.cs: Consistently name the dnd methods. Make them
11914         internal so we can override them to match some MS behavoir
11915         internally.
11916         * Win32DnD.cs: Use the new consistent names.
11918 2005-10-31  Jackson Harper  <jackson@ximian.com>
11920         * TreeView.cs: Don't draw the selected node when we lose focus.
11922 2005-10-31  Jackson Harper  <jackson@ximian.com>
11924         * X11Dnd.cs: We still need to reset the state even though a full
11925         reset isn't being done, otherwise status's still get sent all over
11926         the place.
11928 2005-10-31  Jackson Harper  <jackson@ximian.com>
11930         * Control.cs: Make the dnd_aware flag internal so the dnd
11931         subsystem can check it. Catch exceptions thrown in dnd handlers to
11932         match MS behavoir.
11933         * Hwnd.cs: Add a flag for whether or not a window is dnd aware.
11934         * X11Dnd.cs: Handle null data in the converters. Set the XDND
11935         version when sending a XdndEnter. Use the control/hwnd dnd_aware
11936         flags to reduce the number of dnd enters/status's sent.
11938 2005-10-31  Jackson Harper  <jackson@ximian.com>
11940         * X11Dnd.cs: Don't need the sizeof here. Patch by Jordi Mas.
11942 2005-10-31  Jordi Mas i Hernandez <jordi@ximian.com>
11944         * PictureBox.cs: Fixes 76512
11946 2005-10-28  Jackson Harper  <jackson@ximian.com>
11948         * X11Dnd.cs: Early implementation to support winforms being a drag
11949         source for data on X11. Also restructured the converters so they
11950         can go both ways now.
11951         * XplatUIX11.cs: Tie ins to the the Dnd stuff.
11952         
11953 2005-10-27  Peter Dennis Bartok  <pbartok@novell.com>
11955         * XplatUIX11.cs: Fixed FIXME - implemented ASCII encoding for XA_STRING
11956           clipboard requests
11958 2005-10-27  Jackson Harper  <jackson@ximian.com>
11960         * TreeNode.cs: Implement serialization so my DnD examples will work.
11962 2005-10-24  Kornél Pál  <kornelpal@hotmail.com>
11964         * ButtonBase.cs, ListView.cs, NotifyIcon.cs, PictureBox.cs, ToolBar.cs,
11965           TreeView.cs: Don't dispose objects that are not owned.
11966           
11967 2005-10-24  Peter Dennis Bartok  <pbartok@novell.com>
11969         * Cursor.cs: Defaulting the Current cursor to Cursors.Default. We
11970           should retrieve the current cursor and report that, but XplatUI
11971           doesn't (yet) have an interface for that (and I'm not sure I even
11972           can, on X11)
11973         * XplatUIWin32.cs: Fixed override behaviour. The override is temporary,
11974           until any message loop processing is done (and the WM_SETCURSOR
11975           replaces the cursor to the proper one)
11976         * XplatUIX11.cs: 
11977           - Fixed override behaviour, we can't set the cursor globally on X11, 
11978             just for our windows.
11979           - Invalidating the System.Drawing X11 display handle when we are
11980             shutting down
11981         * Control.cs: Fix to make csc happy
11983 2005-10-23  Peter Dennis Bartok  <pbartok@novell.com>
11985         * TextBoxBase.cs: 
11986           - get_Text: Add last line (without trailing newline) to returned
11987             value (Fixes 76212)
11988           - get_TextLength: Count last line in returned length
11989           - ToString: Call Text property instead of duplicating code
11991 2005-10-23  Kornél Pál  <kornelpal@hotmail.com>
11993         * ImageList.cs: Dispose ImageAttributes objects.
11995 2005-10-22  Kornél Pál  <kornelpal@hotmail.com>
11997         * ImageList.cs: Use attribute constructors with less arguments where
11998           possible.
12000 2005-10-22  Kornél Pál  <kornelpal@hotmail.com>
12002         * ImageList.cs: Added lastKeyIndex field and use in IndexOfKey.
12003           Use typeof instead of strings when assembly is referenced. Added
12004           some more comments.
12006 2005-10-21  Jackson Harper  <jackson@ximian.com>
12008         * ListView.cs: Raise a double click event. Also tried to somewhat
12009         fix when the selectedindexchanged event is raised. Its still
12010         broken though.
12012 2005-10-21  Jackson Harper  <jackson@ximian.com>
12014         * TreeView.cs: New method to invalidate the plus minus area of a
12015         node without invalidating the whole node (maybe this can be used
12016         in some more places).
12017         * TreeNodeCollection.cs: When adding to an empty node we need to
12018         invalidate its plus minus area so the little block shows up.
12019         
12020 2005-10-21  Jackson Harper  <jackson@ximian.com>
12022         * TreeView.cs: Make sure that when we invalidate a node the bounds
12023         are big enough to cover the selected box and the focus
12024         rectangle. Use a different colour for the lines connecting nodes
12025         so they show up with all themes.
12027 2005-10-21  Peter Dennis Bartok  <pbartok@novell.com>
12029         * NativeWindow.cs: Don't call anything that could call into the driver,
12030           we might be on a different thread.
12032 2005-10-21  Peter Dennis Bartok  <pbartok@novell.com> 
12034         * Control.cs(Dispose): Since Dispose might run on a different thread,
12035           make sure that we call methods that could call into the driver via
12036           invoke, to avoid thread issues
12038 2005-10-21  Peter Dennis Bartok  <pbartok@novell.com>
12040         * XplatUI.cs: Removed finalizer
12041         * XplatUIX11.cs: Removed Destructor, was causing crashes due to X11
12042           not allowing to be called on the finalizer thread.
12044 2005-10-21  Kornél Pál  <kornelpal@hotmail.com>
12046         * ImageList.cs:
12047           - Reverted r51889 and r51891.
12048           - Added ImageListItem class that stores unmodified image items and image
12049             properties required to create list images until handle is created.
12050           - Added AddItem and moved image creation logic to AddItemInternal.
12051           - Added CreateHandle method that creates images based on unmodified items.
12052           - Added DestroyHandle that changes state to store unmodified items.
12053           - Add and AddStrip methods no more create handle.
12054           - ReduceColorDepth has no return value.
12055           - Dispose destroys handle.
12056           - Modified other methods to reflect the above changes.
12057           - Implemented key support.
12058           - Added profile 2.0 members and attributes.
12059           - Added private Reset and ShouldSerialize methods that provide the same
12060             behavior as MS.NET but the Visual Studio .NET designer seems to ignore
12061             them as they are private.
12062           - Added some more comments about implementation details.
12064 2005-10-21  Jordi Mas i Hernandez <jordi@ximian.com>
12066         * DataGrid.cs: Adds support for vertical scrolling using the mousewheel
12068 2005-10-21  Jordi Mas i Hernandez <jordi@ximian.com>
12070         * Binding.cs: No PushData/PullData if there is no binding (fixes crash)
12072 2005-10-21  Jordi Mas i Hernandez <jordi@ximian.com>
12074         * DataGridDrawingLogic.cs: Fixes column hit calcultation
12075         * DataGridColumnStyle.cs: Remove debug message
12077 2005-10-20  Jackson Harper  <jackson@ximian.com>
12079         * TreeView.cs: We can always get input keys regardless of whether
12080         or not editing is enabled. They are used for navigation.
12082 2005-10-20  Jackson Harper  <jackson@ximian.com>
12084         * TreeNode.cs: Use the viewport rect for determining if a node
12085         needs to be moved for visibility. Don't use Begin/End edit. This
12086         calls a full refresh when its done.
12087         * TreeView.cs: New SetBottom works correctly.  Make the viewport
12088         rect property internal so the treenodes can see it. When clicking
12089         on a node we need to ensure that its visible because it might just
12090         be partly visible when clicked.
12092 2005-10-20  Jackson Harper  <jackson@ximian.com>
12094         * TreeNodeCollection.cs: Remove debug code.
12096 2005-10-20  Jordi Mas i Hernandez <jordi@ximian.com>
12098         * Datagrid.cs: Implements column sorting in Datagrid
12099         * DataGridColumnStyle.cs: Implements column sorting in Datagrid
12101 2005-10-20  Jackson Harper  <jackson@ximian.com>
12103         * TreeNodeCollection.cs: Remove items properly. Update the correct
12104         area after removing them.
12106 2005-10-20  Jordi Mas i Hernandez <jordi@ximian.com>
12108         * Datagrid.cs: Should not call base.OnPaintBackground
12110 2005-10-20  Peter Dennis Bartok  <pbartok@novell.com>
12112         * XplatUIX11.cs (GetMessage):
12113           - Now properly calculates NC_xBUTTONDOWN coordinates off the whole
12114             window instead of client window
12115           - Now properly calculates NC_xBUTTONUP message coordinates
12116           - ScreenToMenu now properly calculates it's coordinates of whole 
12117             window, since menus are in the whole window, not in the client
12118             window
12119           - Added WholeToScreen coordinate translation method
12121 2005-10-20  Peter Dennis Bartok  <pbartok@novell.com> 
12123         * XplatUIX11.cs (GetMessage): Don't return in situations where we don't
12124           want to return a message, loop back to the beginning of the function
12125           and grab the next real message to process instead.
12127 2005-10-20  Peter Dennis Bartok  <pbartok@novell.com>
12129         * Splitter.cs: Properly set limits if no filler control is used
12131 2005-10-19  Jackson Harper  <jackson@ximian.com>
12133         * ColorDialog.cs: Don't show the help button if it is not enabled
12134         instead of disabling it (this is what MS does). Don't create the
12135         panel until the dialog is run, otherwise the vars (such as
12136         ShowHelp) are not set yet.
12138 2005-10-19  Jackson Harper  <jackson@ximian.com>
12140         * TreeView.cs: Implement Begin/EndEdit more correctly so refreshes
12141         are reduced when adding nodes.
12142         * TreeNode.cs:
12143         * TreeNodeCollection.cs: Use UpdateNode instead of refreshing the
12144         tree.
12145         
12146 2005-10-19  Jackson Harper  <jackson@ximian.com>
12148         * FolderBrowserDialog.cs: End editing our treeview so the window
12149         actually gets refreshed.
12151 2005-10-18  Peter Dennis Bartok  <pbartok@novell.com>
12153         * Control.cs: Fixed logic flip on when to call OnPaintBackground. 
12154           Obsoleted handling of WM_ERASEBKGND, now always draws our background
12155           inside of WM_PAINT
12157 2005-10-18  Jordi Mas i Hernandez <jordi@ximian.com>
12159         * MenuAPI.cs: Returns after Hidding window
12160         * XplatUIX11.cs: Added TODO found while debugging menu issues
12162 2005-10-18  Peter Dennis Bartok  <pbartok@novell.com>
12164         * XplatUIX11.cs: Do not re-map the whole window when it's size
12165           becomes non-zero unless it's supposed to be actually visible
12167 2005-10-18  Jackson Harper  <jackson@ximian.com>
12169         * TreeView.cs: We don't need to keep a count anymore.
12170         * TreeNodeCollection.cs: Fix off by one in RemoveAt, Insert can
12171         use the Grow method.
12173 2005-10-18  Jackson Harper  <jackson@ximian.com>
12175         * TreeNodeCollection.cs: Insert is not supported on arrays, so
12176         implement it manually here.
12178 2005-10-18  Jackson Harper  <jackson@ximian.com>
12180         * ImageList.cs: Dont kill the list when the colour depth is
12181         changed, just change the colour depth of all the images.
12182         - Same goes for setting the image size. Just resize them all
12183         instead of killing the list softly.
12185 2005-10-18  Jackson Harper  <jackson@ximian.com>
12187         * Control.cs: Don't invalidate empty rectangles.
12189 2005-10-18  Jordi Mas i Hernandez <jordi@ximian.com>
12191         * ListViewItem.cs:
12192           - Adds checked item to the Checked/Item lists (where empty before)
12193           - Do not add items to the Selected lists if they are already present
12194         * ListView.cs:
12195           - Fixes IsFixedSize, SyncRoot, IsReadOnly in many collections
12196           - When deleting items make sure that we delete them for the Selected
12197           and Checked list also.
12199 2005-10-18  Jordi Mas i Hernandez <jordi@ximian.com>
12201         * Label.cs: Dispose objects no longer used
12202         * ThemeWin32Classic.cs: Dispose objects no longer used
12204 2005-10-18  Jackson Harper  <jackson@ximian.com>
12206         * TabControl.cs: Don't refresh the whole control when the tabs are
12207         scrolled, we just need to refresh the tab area.
12209 2005-10-17  Jackson Harper  <jackson@ximian.com>
12211         * XplatUIX11.cs: Compress code a little bit. Only calculate the
12212         after handle when we need it.
12214 2005-10-17  Peter Dennis Bartok  <pbartok@novell.com>
12216         * Control.cs: When the parent size changes, recalculate anchor 
12217           positions. Partial fix for #76462
12219 2005-10-17  Peter Dennis Bartok  <pbartok@novell.com>
12221         * ThemeWin32Classic.cs: Make sure the picturebox has it's background 
12222           drawn. Fixes #76462
12224 2005-10-17  Jackson Harper  <jackson@ximian.com>
12226         * MonthCalendar.cs: Don't create the numeric up down until our
12227         handle is created. Otherwise our handle is created in the
12228         constructor and we don't know if we are a WS_CHILD or WS_POPUP
12229         yet.
12231 2005-10-17  Jackson Harper  <jackson@ximian.com>
12233         * TreeView.cs: Merge in patch by Rafael Teixeira to align strings
12234         correctly.
12236 2005-10-17  Rafael Teixeira <rafaelteixeirabr@hotmail.com> 
12237         * TreeNode.cs : small logical fix (was using local var instead of field)
12238         
12239 2005-10-17  Jordi Mas i Hernandez <jordi@ximian.com>
12241         * ThemeWin32Classic.cs: Fixes vert/horz scrollbar colours
12243 2005-10-17  Jordi Mas i Hernandez <jordi@ximian.com>
12245         * ThemeWin32Classic.cs: Fixes focus drawing in for non-flat/popup buttons
12247 2005-10-16  Peter Dennis Bartok  <pbartok@novell.com> 
12249         * Control.cs: 
12250           - Re-implemented anchoring code. My first version was really broken.
12251             This fixes bug #76033. Unlike the previous implementation we will
12252             no longer have round errors since all numbers are calculated from
12253             scratch every time. Removed various anchor-related obsolete vars.
12254           - InitLayout no longer causes layout event firing and layout to be 
12255             performed
12257 2005-10-16  Jackson Harper  <jackson@ximian.com>
12259         * Hwnd.cs: Compute invalid area correctly (fixes my last commit
12260         which was broken).
12262 2005-10-16  Jackson Harper  <jackson@ximian.com>
12264         * TabControl.cs: Remove debug code.
12266 2005-10-16  Jackson Harper  <jackson@ximian.com>
12268         * XEventQueue.cs: Increase the default queue size (very simple
12269         apps needed to grow the queue).
12270         * Hwnd.cs: No finalizer so we don't need to suppress
12271         finalization. Compute the invalid area manually so a new rectangle
12272         does not newto be created.
12273         * ScrollableControl.cs: Don't set any params (otherwise visibility
12274         isn't set correctly).
12275         * MdiChildContext.cs: New constructor takes the mdi parent so it
12276         doesn't have to be computed and avoids a crash on windows. Draw
12277         the window icon properly, and allow the text to be seen.
12278         * Form.cs: Use new MdiChildContext constructor. Make sure the
12279         child context isn't null in wndproc.
12280         * TabControl.cs: Don't set focus, this is muddling keyboard
12281         behavoir. Expand the tab rows when a window size increase will
12282         allow extra tabs to be seen. Don't allow tabs smaller than the
12283         width of a window to be scrolled out of view.
12284         * TreeNode.cs:
12285         * TreeView.cs: Use measure string to calculate a nodes width, the
12286         width is cached and only updated when the text or the font is
12287         changed. Don't check for expand/collapse clicks on the first level
12288         nodes if root lines are disabled.
12289         
12290 2005-10-16  Ritvik Mayank  <mritvik@novell.com>
12292         * TextBoxBase.cs: Fixes #76352 (passing tab key in a multiline textbox)
12294 2005-10-16  Jordi Mas i Hernandez <jordi@ximian.com>
12296         * DataGridBoolColumn.cs: fixes warning
12298 2005-10-16  Jordi Mas i Hernandez <jordi@ximian.com>
12300         * ControlPaint.cs: Fixes methods Dark, DarkDark, Light, LightLight
12301         to match more to match more precisely the MS Net behavior
12303 2005-10-13  Peter Dennis Bartok  <pbartok@novell.com> 
12305         * Hwnd.cs: Added field to track if window is mapped
12306         * XplatUIX11.cs: 
12307           - Unmap windows if they become 0-size, re-map when 
12308             they are >0 again; fixes #76035
12309           - Re-set our error handler after initializing X11Desktop
12310             to override any error handlers Gtk or whatever was called
12311             may have set.
12313 2005-10-13  Peter Dennis Bartok  <pbartok@novell.com> 
12315         * CheckedListBox.cs: Removed unused vars
12316         * ListView.cs: Fixed signatures
12317         * RichTextBox.cs: Removed unused vars
12318         * TextBoxBase.cs: Removed unused vars
12319         * XplatUIWin32.cs: Removed unused vars
12320         * XplatUIX11.cs: Removed unused vars
12321         * XplatUI.cs: Updated version and date to latest published
12323 2005-10-13  Peter Dennis Bartok  <pbartok@novell.com>
12325         * Cursor.cs: Added private .ctor to work around a bug in
12326           resourceset (Thanks to Geoff Norton for the help on this)
12327         * SplitterEventArgs.cs: Made fields accessible so we don't
12328           waste boatloads of objects and can reuse the same one
12329           in Splitter
12330         * XplatUIWin32.cs(DrawReversibleLine): Now also considers
12331           any captions and borders when generating screen coordinates
12332         * Splitter.cs: Reimplemented control, now fully complete, uses
12333           rubberband drawing, supports and obeys all properties, has
12334           proper cursors
12336 2005-10-13  Miguel de Icaza  <miguel@novell.com>
12338         * Form.cs (Form): Setup default values for autoscale and
12339         autoscale_base_size;  Make these instance variables, not static
12340         variables. 
12342         (OnLoad): on the first load, adjust the size of the form.
12344 2005-10-13  Peter Dennis Bartok  <pbartok@novell.com>
12346         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs: Added 
12347           width argument to DrawReversibleRectangle()
12348         * XplatUIWin32.cs, XplatUIX11.cs: 
12349           - Implemented width for DrawReversibleRectangle()
12350           - Added logic to DrawReversibleRectangle that recognizes a zero
12351             width or height and only draws a line in that situation
12352         
12353 2005-10-12  Peter Dennis Bartok  <pbartok@novell.com> 
12355         * XplatUI.cs, XplatUIDriver.cs: Added GetAutoScaleSize()
12356         * XplatUIOSX.cs: Stubbed GetAutoScaleSize() method
12357         * XplatUIWin32.cs, XplatUIX11.cs: Implemented GetAutoScaleSize()
12358           method (it uses our FosterParent window to get a graphics context)
12360 2005-10-12  Peter Dennis Bartok  <pbartok@novell.com>
12362         * XplatUI.cs, XplatUIDriver.cs: Removed EraseWindowBackground 
12363           and SetWindowBackground methods
12364         * Control.cs:
12365           - Setting proper ControlStyles
12366           - We no longer call XplatUI.SetWindowBackground and XplatUI.
12367             EraseWindowBackground, instead we draw the window background
12368             ourselves in PaintControlBackground. This behaviour is
12369             required to match MS, where, when OnPaintBackground is not
12370             called, the background is not drawn.
12371           - Removed unneeded Refresh() in set_Text
12372         * Hwnd.cs: Dropped the ErasePending support. No longer needed
12373         * XplatUIX11.cs:
12374           - Created DeriveStyles method to translate from CreateParams to
12375             FormBorderStyle and TitleStyle, also handles BorderStyle (which
12376             matches FormBorderStyle enum values)
12377           - Consolidated SetHwndStyles and CalculateWindowRect border/title
12378             style calculations into single DeriveStyles method
12379           - Fixed CreateWindow to (finally) use Gravity. This prevents X11
12380             from redrawing the whole window on any resize or expose.
12381           - Fixed CreateWindow usage of SetWindowValuemask. Before not
12382             all styles were applied to our whole/client window appropriately
12383           - Removed EraseWindowBackground() and SetWindowBackground() methods
12384           - Removed handling of WM_ERASEBKGND message from DefWndProc, we
12385             no longer clear/redraw the background through X
12386           - Removed handling of erase_pending bit, we have no use for it (or
12387             so it seems)
12388         * XplatUIOSX.cs:
12389           - Removed generation and handling of WM_ERASEBKGND message
12390           - Removed EraseWindowBackground() and SetWindowBackground() methods
12391           - Removed handling of hwnd.ErasePending flag
12392         * XplatUIWin32.cs:
12393           - Removed EraseWindowBackground() and SetWindowBackground() methods
12394           - We no longer call EraseWindowBackground on PaintEventStart, we 
12395             ignore the fErase flag, erasing is handled in Control in the
12396             background handler
12397         * Button.cs, GroupBox.cs, Label.cs, CheckBox.cs, ProgressBar.cs,
12398           LinkLabel.cs, ListControl.cs, TabPage.cs, UpDownBase.cs,
12399           TextBoxBase.cs, TextBox.cs, ListView.cs, ButtonBase.cs, 
12400           CheckedListBox.cs, MdiClient.cs, Panel.cs, DataGrid.cs, 
12401           DataGridTextBox.cs, ScrollBar.cs, ListBox.cs, TrackBar.cs, 
12402           TabControl.cs, ScrollableControl.cs, ToolBar.cs, PictureBox.cs,
12403           DateTimePicker.cs, StatusBar.cs, MonthCalendar.cs: Setting proper ControlStyles
12405 2005-10-12  Jonathan Chambers <jonathan.chambers@ansys.com>
12407         * PropertyGrids.cs: Get sub properties
12408         * PropertyGridView.cs: Fix drawing code
12410 2005-10-11  Jordi Mas i Hernandez <jordi@ximian.com>
12412         * ListBox.cs: Fixes 76383
12414 2005-10-11  Jordi Mas i Hernandez <jordi@ximian.com>
12416         * DataGridTextBoxColumn.cs: Sets location and size before attachment
12417         * ThemeWin32Classic.cs: Fixes border drawing and calculations
12418         * DataGridDrawingLogic.cs: Fixes border drawing and calculations
12421 2005-10-11  Jordi Mas i Hernandez <jordi@ximian.com>
12423         * ComboBox.cs: Fixes border drawing
12425 2005-10-10  Miguel de Icaza  <miguel@novell.com>
12427         * MimeIcon.cs: Ignore errors if the file can not be read.
12429 2005-10-11  Jordi Mas i Hernandez <jordi@ximian.com>
12431         * Theme.cs, ThemeWin32Classic.cs, ListBox.cs:
12432          - Fixed border calculations
12433          - Fixed horizontal scrolling in single column listboxes
12434          - Fixed drawing issues
12436 2005-10-10  Peter Dennis Bartok  <pbartok@novell.com>
12438         * XplatUI.cs, XplatUIOSX.cs, XplatUIWin32.cs: Switched from BorderStyle to 
12439           FormBorderStyle enum
12440         * XplatUIX11.cs: Switched BorderStyle to FormBorderStyle, added 
12441           code to determine FormBorderStyles from CreateParams
12442         * Form.cs:
12443           - Fixed bug where we'd set the wrong window styles if we were
12444             not creating an MDI window
12445           - Added call to XplatUI.SetBorderStyle when form borders are set
12446         * Control.cs: Casting BorderStyles to accommodate changed XplatUI APIs
12447         * Hwnd.cs:
12448           - Removed obsolete edge style
12449           - Switched from BorderStyle to FormBorderStyle
12450         
12451 2005-10-10  Jackson Harper  <jackson@ximian.com>
12453         * Form.cs: Use the property to get the window handle instead of
12454         accessing it directly. Prevents a null reference exception.
12456 2005-10-10  Jackson Harper  <jackson@ximian.com>
12458         * TreeView.cs: Don't adjust the rect given to DrawString now that
12459         our libgdiplus draws correctly.
12461 2005-10-08  Jackson Harper  <jackson@ximian.com>
12463         * TreeView.cs: Don't try to find the clicked on node if there are
12464         no nodes in the tree.
12466 2005-10-08  Alexander Olk  <alex.olk@googlemail.com>
12468         * RichTextBox.cs:
12470           restore
12472 2005-10-08  Alexander Olk  <alex.olk@googlemail.com>
12474         * ImageListStreamer.cs, TreeView.cs, UpDownBase.cs, RichTextBox.cs,
12475           ColorDialog.cs, TextControl.cs, Panel.cs, MdiChildContext.cs,
12476           ErrorProvider.cs:
12477           Use ResPool for brushes and dispose System.Drawing objects that
12478           are not used anymore.
12480 2005-10-07  Jackson Harper  <jackson@ximian.com>
12482         * MdiChildContext.cs: Use the new borders instead of drawing them
12483         ourselves.
12485 2005-10-06  Jordi Mas i Hernandez <jordi@ximian.com>
12487         * Calling UpdateBounds after changing the window's BorderStyle 
12488         since the style can change the ClientSize
12490 2005-10-06  Peter Dennis Bartok  <pbartok@novell.com>
12492         * Control.cs: Made PaintControlBackground virtual
12493         * Panel.cs: Overriding PaintControlBackground instead of using paint
12494           event; paint event method was interfering with 'real' users of the
12495           event.
12497 2005-10-06  Jordi Mas i Hernandez <jordi@ximian.com>
12499         * ThemeWin32Classic.cs: remove border drawing since it is handled
12500         by the base control class now and was causing double border drawing.
12502 2005-10-06  Peter Dennis Bartok  <pbartok@novell.com>
12504         * Panel.cs: Redraw our background on paint. Not a pretty solution,
12505           but it does seem to match MS behaviour. This fixes bug #75324
12507 2005-10-06  Peter Dennis Bartok  <pbartok@novell.com>
12509         * XplatUIX11.cs: A better DrawReversibleRectangle version, however
12510           somewhat hackish looking
12512 2005-10-06  Peter Dennis Bartok  <pbartok@novell.com> 
12514         * TextBoxBase.cs:
12515           - We now accept Enter even if AcceptEnter is false, if the containing
12516             form does not have an AcceptButton configured (fixes bug #76355)
12517           - Calculations are now fixed to no longer use Width/Height, but
12518             ClientSize.Width/Height, since we now support borders (this was
12519             a result of fixing borders and therefore bug #76166)
12520           - We no longer show the horizontal scrollbar if TextBox.WordWrap is 
12521             true (fixes bug #76354)
12522         
12523 2005-10-06  Peter Dennis Bartok  <pbartok@novell.com>
12525         * Control.cs: 
12526           - Defaulting BorderStyle and setting it in XplatUI when our window 
12527             is created
12528           - Added enum check to InternalBorderStyle setter
12529         * XplatUIX11.cs: 
12530           - Added drawing of window borders
12531           - Now properly calculates WM decorations offset for toplevel 
12532             windows (fixes bug #74763)
12533         * XplatUIWin32.cs: 
12534           - Implemented BorderStyles for windows (we're letting win32 draw 
12535             the border for us)
12536           - Fixed the signature for SetWindowLong
12537         * PictureBox.cs, DataGrid.cs, TextBoxBase.cs, ToolBar.cs, Panel.cs,
12538           ListBox.cs, Label.cs: Now uses Control.InternalBorderStyle for 
12539           setting borders
12540         * UpDownBase.cs: Remove drawing of borders, this is handled by
12541           the driver, outside the client area
12542         * ListView.cs: Removed bogus border calculations. The control should
12543           be oblivious to borders, since those are not part of the client
12544           area. 
12545         * X11DesktopColors.cs: Commented out (currently) unneeded variables
12546         * ThemeWin32Classic.cs: Removed border calculations from ListView 
12547           drawing code
12549 2005-10-06  Jackson Harper  <jackson@ximian.com>
12551         * MdiChildContext.cs: Clear out the old virtual position remove
12552         all the unneeded calls to CreateGraphics.
12554 2005-10-06  Peter Dennis Bartok  <pbartok@novell.com> 
12556         * TextControl.cs: Use proper color for highlighted text; fixes #76350
12558 2005-10-06  Peter Dennis Bartok  <pbartok@novell.com> 
12560         * Form.cs: 
12561           - Added loading and setting of our new default icon
12562           - Only set icon if window is already created
12564 2005-10-06  Peter Dennis Bartok  <pbartok@novell.com>
12566         * Label.cs:
12567           - Do not explicitly set the foreground and background colors, to
12568             allow inheriting from parents (fixes #76302)
12569           - Use Control's InternalBorderStyle property to deal with borders
12571 2005-10-06  Jackson Harper  <jackson@ximian.com>
12573         * MdiChildContext.cs: Use the new xplatui function to draw a
12574         reversible rect.
12576 2005-10-06  Jackson Harper  <jackson@ximian.com>
12578         * Form.cs: Add the parent before creating the child context cause
12579         we need the parent when setting up the child.
12581 2005-10-06  Jackson Harper  <jackson@ximian.com>
12583         * FolderBrowserDialog.cs: redo the tree population code so a
12584         second thread isn't used. Should be a lot faster and more stable
12585         now.
12587 2005-10-05  Jackson Harper  <jackson@ximian.com>
12589         * TreeView.cs: There are no expand/collapse boxes if the node has
12590         no children.
12592 2005-10-05  Jackson Harper  <jackson@ximian.com>
12594         * X11DesktopColors.cs: Get menu colours for the gtk theme.
12596 2005-10-05  Alexander Olk  <alex.olk@googlemail.com>
12598         * FileDialog.cs: Fix InitialDirectory
12600 2005-10-05  Jordi Mas i Hernandez <jordi@ximian.com>
12602         * ComboBox.cs:
12603                 - Fixes changing between styles
12604                 - Fixes simple mode
12605                 - Fixes last item crashing when navigating with keyboard
12607 2005-10-05  Jordi Mas i Hernandez <jordi@ximian.com>
12609         * LinkLabel.cs: Related to 76045. Stops the LinkLabel been drawn as a Label
12611 2005-10-05  Jackson Harper  <jackson@ximian.com>
12613         * TreeView.cs: If updating the root node do a full refresh.
12614         * TreeNode.cs: The root node should be expanded by default. Also
12615         added a utility prop to tell if we are the root node.
12616         * TreeNodeCollection.cs: Only refresh if the node we are being
12617         added to is expanded. Also added a comment on a potential
12618         optimization.
12619         
12620 2005-10-04  Peter Dennis Bartok  <pbartok@novell.com>
12622         * Cursor.cs, Hwnd.cs: Added call to GC.SuppressFinalize() 
12623           in dispose method. Fixes #76330
12625 2005-10-04  Jordi Mas i Hernandez <jordi@ximian.com>
12627         * ListView.cs, ThemeWin32Classic.cs, ListViewItem.cs:
12629                 - Implements vertical and horizontal scrolling using XplatUI
12630                 - Fixes keyboard navagation
12631                 - Fixes EnsureVisible
12632                 - Drawing fixes
12633                 - Handles and draws focus properly
12636 2005-10-04  Kornél Pál  <kornelpal@hotmail.com>
12638         * ImageList.cs: Use upper case initials for internal fields. ImageStream:
12639           Create handle. NET_2_0: Destroy handle when value is null.
12641 2005-10-03  Jackson Harper  <jackson@ximian.com>
12643         * ScrollBar.cs: My last scrollbar patch was broken. This is a
12644         revert and a new patch to prevent the thumb from refreshing so
12645         much.
12647 2005-10-02  Jackson Harper  <jackson@ximian.com>
12649         * ScrollBar.cs: Don't update position if it hasn't actually
12650         changed. This occurs when you hold down the increment/decrement
12651         buttons and the thumb gets to the max/min.
12653 2005-10-01  Jackson Harper  <jackson@ximian.com>
12655         * Form.cs:
12656         * MdiChildContext.cs:
12657         * MdiClient.cs: Implement ActiveMdiChild in Form.
12659 2005-10-01  Jordi Mas i Hernandez <jordi@ximian.com>
12661         * ComboBox.cs: Include ComboBoxEdit flag for the edit item
12663 2005-10-01  Peter Dennis Bartok  <pbartok@novell.com>
12665         * X11DesktopColors.cs: Bow out gracefully if the Gtk libs cannot
12666           be found
12668 2005-09-30  Jackson Harper  <jackson@ximian.com>
12670         * ListBox.cs: Don't do a full refresh unless some data has
12671         actually changed.
12673 2005-09-30  Jackson Harper  <jackson@ximian.com>
12675         * TreeView.cs: Make sure that the checkboxes size is factored in
12676         even when not visible.
12678 2005-09-30  Peter Dennis Bartok  <pbartok@novell.com> 
12680         * FileDialog.cs: Fix Jordi's build break
12682 2005-09-30  Jordi Mas i Hernandez <jordi@ximian.com>
12684         * FileDialog.cs: 
12685                 - Use standard the Windows colours for the combobox as espected
12686                 - Dispose objects that use resouces when no longer need them
12688 2005-09-30  Peter Dennis Bartok  <pbartok@novell.com> 
12690         * X11DesktopColors.cs: Initial incomplete implementation
12691         * XplatUIX11.cs: Added call to initialize X11DesktopColors
12693 2005-09-30  Peter Dennis Bartok  <pbartok@novell.com>
12695         * Theme.cs: 
12696           - Switched Theme color names to match the names defined in 
12697             System.Drawing.KnownColors. Life's hard enough, no need to make 
12698             it harder.
12699           - Added setters to all theme color properties so themes can set
12700             their color schemes. The setters also propagate the color changes
12701             to System.Drawing.KnownColors via reflection
12702         * ControlPaint.cs,  Label.cs, TextControl.cs, ToolTip.cs, ThemeNice.cs,
12703           ComboBox.cs, MdiChildContext.cs, TextBoxBase.cs, DateTimePicker.cs
12704           DataGridColumnStyle.cs, MonthCalendar.cs, TreeView.cs: Updated to
12705           use the new, more logical theme color names
12706         * XplatUIWin32.cs: Updated the GetSysColorIndex enum to include new
12707           post-NT colors
12708         * ThemeWin32Classic.cs:
12709           - Removed code to set the old classic Windows colors. Instead it
12710             now relies on the colors returned by System.Drawing.KnownColors
12711             which will be either modern static colors (Unix) or colors
12712             read from the user's configuration (Win32)
12713           - Updated to use the new, more logical theme color names
12714           - Switched DataGrid drawing code to use only Theme colors instead of
12715             a mix of System.Drawing.KnownColors and Theme colors
12716           - DrawFrameControl(): Removed code that fills the button area, the
12717             fill would overwrite any previous fill done by a control. This
12718             fixes bug #75338 
12719           - Added DrawReversibleRectangle() stub
12720         * ScrollableControl.cs: Set visible state to false when scrollbars
12721           are removed (pdn fix)
12722         * XplatUI.cs, XplatUIOSX.cs, XplatUIDriver.cs: Added 
12723           DrawReversibleRectangle() method to allow drawing primitive 
12724           'rubber bands'
12725         * XplatUIX11.cs: Implemented DrawReversibleRectangle()
12727 2005-09-30  Kornél Pál  <kornelpal@hotmail.com>
12729         * ImageList.cs: Add(Icon): Create handle.
12731 2005-09-30  Jordi Mas i Hernandez <jordi@ximian.com>
12733         * ListView.cs:
12734         * ThemeWin32Classic.cs:
12735                 - Fixes detail mode
12736                 - Sets clippings
12737                 - Issues with drawing
12739 2005-09-30  Kornél Pál  <kornelpal@hotmail.com>
12741         * ImageList.cs: Moved RecreateHandle back to ImageList as event
12742           source has to be the ImageList.
12744 2005-09-30  Kornél Pál  <kornelpal@hotmail.com>
12746         * ImageList.cs: Add(Icon): Use Graphics.DrawIcon instead of Icon.ToBitmap.
12748 2005-09-30  Kornél Pál  <kornelpal@hotmail.com>
12750         * ImageList.cs: ReduceColorDepth: Clean up pointer operations.
12752 2005-09-30  Kornél Pál  <kornelpal@hotmail.com>
12754         * ImageList.cs: ImageCollection: Removed owner field as it is no more used.
12756 2005-09-29  Jonathan Chambers <jonathan.chambers@ansys.com>
12757         * GridItem.cs: Fixed TODOs
12758         * GridItemCollection.cs: Added ICollection interface
12760 2005-09-30  Kornél Pál  <kornelpal@hotmail.com>
12762         * ImageList.cs: Resize icons when needed.
12764 2005-09-29  Jordi Mas i Hernandez <jordi@ximian.com>
12766         * ListViewItem.cs
12767                 - Fixes GetBounds and returns on screen rects
12768         * ListView.cs:
12769                 - Fixes vertical and horzintal scrolling of items
12770         * ThemeWin32Classic.cs:
12771                 - Fixes drawing
12772                 
12773 2005-09-29  Raja R Harinath  <harinath@gmail.com>
12775         * ImageList.cs (ImageStream) [NET_2_0]: Reflect re-factoring.
12777 2005-09-29  Kornél Pál  <kornelpal@hotmail.com>
12779         * ImageList.cs: Added comments about handle creation. Moved Handle,
12780           HandleCreated and OnRecreateHandle implementations to ImageCollection.
12781           Handle is created in Add methods.
12783 2005-09-28  Jordi Mas i Hernandez <jordi@ximian.com>
12784          
12785         * DataGridDrawingLogic.cs: 
12786                 - Takes rows into account on Colum calculations
12787                 - Returns the column when clickig
12788         * DataGrid.cs:
12789                 - Fixes default HitTestInfo values
12790                 - Fixes HitTestInfo.ToString
12791                 - Fixes ResetBackColor          
12792         
12793 2005-09-28  Jackson Harper  <jackson@ximian.com>
12795         * MdiChildContext.cs: Obey rules for fixed sized windows (no
12796         sizing or cursor changes). Also added some temp code to draw the
12797         titlebars text (Makes dev a little easier).
12799 2005-09-28  Kornél Pál  <kornelpal@hotmail.com>
12801         * ImageList.cs: AddStrip: Throw ArgumentException when Image is not a Bitmap.
12803 2005-09-28  Jordi Mas i Hernandez <jordi@ximian.com>
12804          
12805         * ListBox.cs: Fixes bug 76253
12807 2005-09-28  Kornél Pál  <kornelpal@hotmail.com>
12809         * ImageList.cs: Added comments about the current implementation. Added
12810           ReduceColorDepth, IndexedColorDepths and GetNearestColor to can use
12811           Format32bppArgb to preserve transparency and can use Graphics.FromImage
12812           while using the specified ColorDepth. ReduceColorDepth uses unsafe code
12813           with Bitmap.LockBits for better performance. Revised the whole file to
12814           match MS.NET behaviour and provide better performance. Non-public
12815           interface members are calling public members even when they throw
12816           NotSupportedException for better maintainability. Moved ColorDepth,
12817           ImageSize, ImageStream and TransparentColor implementations to
12818           ImageCollection for better performance as these properties are not used
12819           by ImageList.
12820         * ImageListStreamer.cs: Added a new internal constructor that takes an
12821           ImageList.ImageCollection and serializes Images based on
12822           ImageCollection.ToArray(). Renamed ImageColorDepth to ColorDepth to
12823           match ImageList property name.
12825 2005-09-28  Kazuki Oikawa <kazuki@panicode.com>
12827         * ListBox.cs: Fixes IndexFromPoint for last item
12829 2005-09-27  Jackson Harper  <jackson@ximian.com>
12831         * Form.cs: Set the position of new mdi children correctly.
12833 2005-09-27  Jackson Harper  <jackson@ximian.com>
12835         * MdiClient.cs: New mdi children need to be added to the back of
12836         the controls collection so the zorder is set correctly. Also add a
12837         count of all the child windows that have been created.
12839 2005-09-27  Jackson Harper  <jackson@ximian.com>
12841         * Form.cs (CreateParams): Setup MDI forms correctly.
12843 2005-09-27  Jackson Harper  <jackson@ximian.com>
12845         * MdiChildContext.cs:
12846         * MonthCalendar.cs:
12847         * UpDownBase.cs:
12848         * ListBox.cs:
12849         * ListView.cs:
12850         * TextBoxBase.cs:
12851         * TreeView.cs:
12852         * ScrollableControl.cs:
12853         * ComboBox.cs: Add implicit controls using the new implict control
12854         functionality in ControlCollection. Also try to block multiple
12855         control add in a suspend/resume layout to save some cycles.
12856         
12857 2005-09-27  Jackson Harper  <jackson@ximian.com>
12859         * Control.cs: Add functionality to the controls collection to add
12860         'implicit controls' these are controls that are created by the
12861         containing control but should not be exposed to the user. Such as
12862         scrollbars in the treeview.
12863         * Form.cs: The list var of the ControlsCollection is no longer
12864         available because of the potential of implicit controls getting
12865         ignored by someone accessing the list directly.
12867 2005-09-26  Peter Dennis Bartok  <pbartok@novell.com>
12869         * Control.cs: Fixed SetChildIndex; it no longer causes a child to
12870           loose it's parent. (Fixed bug introduced in r49103 when we added
12871           setting the child parent to null on Remove)
12873 2005-09-26  Gert Driesen  <drieseng@users.sourceforge.net>
12875         * DataGridBoolColumn.cs: Marked CheckState private to fix public API.
12876         * Splitter.cs: Added missing attributes for BorderStyle property.
12877         * TextBoxBase.cs: Marked Calculate* methods internal.
12878         * TextBox.cs: Fixed DefaultValue for PasswordChar property to match
12879         MS.NET.
12881 2005-09-26  Jordi Mas i Hernandez <jordi@ximian.com>
12882          
12883         * ListBox.cs: Fixes navigation to the last item in multicolumn lists
12885 2005-09-25  Jackson Harper  <jackson@ximian.com>
12887         * TreeView.cs: Update the node bounds correctly regardless of
12888         whether the node is visible.
12890 2005-09-25  Jackson Harper  <jackson@ximian.com>
12892         * ImageList.cs: Don't dispose the image after it is added to the
12893         image list. Only reformat images that need to be resized.
12895 2005-09-25  Jackson Harper  <jackson@ximian.com>
12897         * ImageList.cs: Don't set the format when changing the image.
12899 2005-09-25  Jackson Harper  <jackson@ximian.com>
12901         * TreeView.cs: We can't just assume the node has a font. Use the
12902         treeviews font if no node font is available.
12904 2005-09-25  Jackson Harper  <jackson@ximian.com>
12906         * TreeView.cs: Allow the scrollbars to be reset with negative
12907         values.
12908         - Don't add scrollbars to negative sized windows.
12910 2005-09-23  Jackson Harper  <jackson@ximian.com>
12912         * XplatUIX11.cs: Update to use Mono.Posix.Native instead of plain
12913         old Mono.Posix. Also remove some stray code that shouldn't have
12914         been committed.
12916 2005-09-23  Jackson Harper  <jackson@ximian.com>
12918         * TreeView.cs: Attempt at proper sizing of the horizontal
12919         scrollbar. Also don't resize the scrollbars unless they are
12920         visible.
12922 2005-09-23  Jackson Harper  <jackson@ximian.com>
12924         * TreeView.cs: We don't need to expand the invalid area when the
12925         selection changes, as this is all drawn in the node's bounding
12926         box. The area needs to be expanded (previous typo was contracting
12927         it) when the focus rect moves.
12929 2005-09-23  Jackson Harper  <jackson@ximian.com>
12931         * TreeView.cs: Display the selection box under the correct
12932         circumstances. We were rendering white text with no selection box
12933         before.
12935 2005-09-23  Peter Dennis Bartok  <pbartok@novell.com>
12937         * TextControl.cs(Split): Now updates selection start/end if it points 
12938           into a line that's being split. Fixes a FIXME and bug #75258
12940 2005-09-23  Jackson Harper  <jackson@ximian.com>
12942         * Binding.cs:
12943         * ListControl.cs: Don't use the path when retrieving binding
12944         managers from the binding context. My bat sense tells me that the
12945         path is only used on insertion.
12947 2005-09-22  Jackson Harper  <jackson@ximian.com>
12949         * Splitter.cs: Set the cursor an easier way. (Thanks peter).
12951 2005-09-22  Jackson Harper  <jackson@ximian.com>
12953         * Splitter.cs: There are special cursors used for splitting.
12954         * XplatUIX11.cs: The VSplit and HSplit cursors were backwards.
12956 2005-09-22  Jackson Harper  <jackson@ximian.com>
12958         * Splitter.cs: Change the cursor appropriately when the splitter
12959         is moused over, so the user actually knows there is a splitter
12960         there.
12962 2005-09-22 Hisham Mardam Bey <hisham.mardambey@gmail.com>
12964        * Label.cs : Fix ToString method to give same output as MS.NET
12966 2005-09-22  Jackson Harper  <jackson@ximian.com>
12968         * TreeView.cs: Create the scrollbars when the handle is created
12969         and add them right away, just make them invisble. Also account for
12970         the window being shrunk vertically to the point that the vert
12971         scrollbar needs to be added.
12972         - Remove some 0.5 adjustments to get around anti aliasing issues.
12973         
12974 2005-09-22  Jordi Mas i Hernandez <jordi@ximian.com>
12975          
12976         * MainMenu.cs: Fixes default value
12977         * MenuItem.cs: Fixes default value
12979 2005-09-22  Kazuki Oikawa  <kazuki@panicode.com>
12981         * AsyncMethodResult.cs: Fixes Control.Invoke is blocked infinitely.
12983 2005-09-21  Jackson Harper  <jackson@ximian.com>
12985         * Control.cs: Don't try to set the border style on the window if
12986         it hasn't been created. When the window is created the border
12987         style will be used.
12989 2005-09-21  Peter Dennis Bartok  <pbartok@novell.com>
12991         * Control.cs (Update): Don't call XplatUI if we don't have a
12992           window handle yet
12994 2005-09-21  Peter Dennis Bartok  <pbartok@novell.com> 
12996         * ContainerControl.cs: Instead of throwing an exception, print
12997           a one-time warning about Validate not being implemented
12998         * XplatUIWin32.cs: Removed debug output
13000 2005-09-21  Peter Dennis Bartok  <pbartok@novell.com> 
13002         * Control.cs: Only set XplatUI background if we expect the windowing
13003           system to handle the background. This stops controls that draw their
13004           own background from flickering
13006         * XplatUIX11.cs: Support custom visuals and colormaps for window 
13007           creation. This allows, amongst other things, using MWF X11 windows 
13008           with OpenGL.
13010 2005-09-21  Peter Dennis Bartok  <pbartok@novell.com>
13012         * OpenFileDialog.cs, ContentsResizedEventArgs.cs, LibSupport.cs, GridItem.cs,
13013           CursorConverter.cs, SplitterEventHandler.cs, PropertyGridTextBox.cs,
13014           GridTablesFactory.cs, MethodInvoker.cs, AccessibleEvents.cs,
13015           SplitterEventArgs.cs, XplatUI.cs, Mime.cs, PropertySort.cs,
13016           TreeViewCancelEventHandler.cs, Form.cs, PropertyGridCommands.cs,
13017           IDataGridEditingService.cs, DateBoldEventHandler.cs, Label.cs,
13018           KeyboardLayouts.cs, TextControl.cs, ProgressBar.cs, ToolTip.cs,
13019           RadioButton.cs, OSFeature.cs, LinkLabel.cs, ColorDialog.cs,
13020           ThemeNice.cs, ErrorIconAlignment.cs, TreeNode.cs, MimeGenerated.cs,
13021           ComboBox.cs, DataGridTextBoxColumn.cs, ArrangeStartingPosition.cs,
13022           GridColumnStylesCollection.cs, 
13023           IDataGridColumnStyleEditingNotificationService.cs,
13024           PropertyGrid.cs, IFeatureSupport.cs, ICommandExecutor.cs,
13025           MdiLayout.cs, GridEntry.cs, ControlBindingsCollection.cs,
13026           GridTableStylesCollection.cs, TreeViewCancelEventArgs.cs, 
13027           TreeNodeCollection.cs, AmbientProperties.cs, 
13028           RichTextBoxSelectionAttribute.cs, RichTextBoxSelectionTypes.cs,
13029           DataObject.cs, ErrorProvider.cs, Splitter.cs,
13030           DataGridLineStyle.cs, Shortcut.cs, Control.cs,
13031           FontDialog.cs, SecurityIDType.cs, GridItemType.cs,
13032           BindingMemberInfo.cs, DataGridCell.cs, MdiChildContext.cs,
13033           IRootGridEntry.cs, PropertyGridView.cs, DataGridParentRowsLabelStyle.cs,
13034           FolderBrowserDialog.cs, OpacityConverter.cs, HelpProvider.cs,
13035           IComponentEditorPageSite.cs, DataGridTableStyle.cs, NavigateEventArgs.cs,
13036           NotifyIcon.cs, ContentsResizedEventHandler.cs, MenuItem.cs,
13037           PropertyTabChangedEventHandler.cs, TextBoxBase.cs, OpenTreeNodeEnumerator.cs,
13038           SelectionMode.cs, TextBox.cs, ListBindingConverter.cs,
13039           FileDialog.cs, KeysConverter.cs, DomainUpDown.cs,
13040           DataFormats.cs, SaveFileDialog.cs, GridItemCollection.cs,
13041           ArrangeDirection.cs, FeatureSupport.cs, SelectionRangeConverter.cs,
13042           RichTextBoxScrollBars.cs, NodeLabelEditEventHandler.cs, TreeNodeConverter.cs,
13043           MimeIcon.cs, X11Structs.cs, PropertyGridEntry.cs,
13044           ImageList.cs, ThemeWin32Classic.cs, X11Keyboard.cs,
13045           CheckedListBox.cs, HelpNavigator.cs, DateTimePickerFormat.cs,
13046           MdiClient.cs, DataGridDrawingLogic.cs, DataGridBoolColumn.cs,
13047           NodeLabelEditEventArgs.cs, Screen.cs, PropertyManager.cs,
13048           ComponentModel.cs, PropertiesTab.cs, CurrencyManager.cs,
13049           SizeGrip.cs, DateBoldEventArgs.cs, X11Dnd.cs, Panel.cs,
13050           Hwnd.cs, OSXStructs.cs, DrawMode.cs, XplatUIDriver.cs,
13051           RichTextBox.cs, PropertyTabChangedEventArgs.cs, CommonDialog.cs,
13052           DataGrid.cs, XplatUIX11.cs, RichTextBoxStreamType.cs, Win32DnD.cs,
13053           ErrorBlinkStyle.cs, TreeViewEventHandler.cs,
13054           PropertyValueChangedEventHandler.cs, IFileReaderService.cs,
13055           DataGridTextBox.cs, SelectedGridItemChangedEventArgs.cs, ScrollBar.cs,
13056           ListBox.cs, TreeViewAction.cs, Help.cs, TrackBar.cs,
13057           AxHost.cs, PropertyValueChangedEventArgs.cs, XplatUIOSX.cs,
13058           RichTextBoxFinds.cs, UpDownEventArgs.cs, Cursors.cs,
13059           CategoryGridEntry.cs, RichTextBoxWordPunctuations.cs, DataGridColumnStyle.cs,
13060           SelectedGridItemChangedEventHandler.cs, DateTimePicker.cs, NavigateEventHandler.cs,
13061           Clipboard.cs, UpDownEventHandler.cs, MonthCalendar.cs,
13062           SendKeys.cs, DataGridPreferredColumnWidthTypeConverter.cs, TreeView.cs,
13063           ThreadExceptionDialog.cs, ImageListConverter.cs, XplatUIWin32.cs,
13064           TreeViewEventArgs.cs: Fixed whitespace and set eol-style:native attribute
13066 2005-09-21  Jackson Harper  <jackson@ximian.com>
13068         * TreeNode.cs: Call Before/After Expand not Collapse when
13069         expanding.
13071 2005-09-20  Jackson Harper  <jackson@ximian.com>
13072         
13073         * XplatUIX11.cs: Use the more hand looking hand (in most themes).
13075 2005-09-16  Jordi Mas i Hernandez <jordi@ximian.com>
13076          
13077         * ListViewItem.cs:
13078                 - Fixes bug 76120
13079                 - Fixes proper storing of subitems
13080                 - Fixes not updated items
13082 2005-09-20  Peter Dennis Bartok  <pbartok@novell.com>
13084         * Control.cs, TextBoxBase.cs, TextControl.cs: Don't do certain
13085           things if our window handle isn't created yet. Also disabled 
13086           debug for TextBoxBase
13088 2005-09-20  Peter Dennis Bartok  <pbartok@novell.com> 
13090         * MenuAPI.cs: Remove filtering of events to allow menu usage
13092 2005-09-20  Miguel de Icaza  <miguel@novell.com>
13094         * Cursor.cs: Allow null to be passed to Cursor.Current.
13096 2005-09-20  Alexander Olk  <alex.olk@googlemail.com>
13098         * ThemeWin32Classic.cs:
13099           - Change some private methods/fields to protected virtual so that 
13100             they can be accessed and overriden in derived classes
13101           - First refactoring of some methods. Derived themes now don't 
13102             need to duplicate the complete code from ThemeWin32Classic
13103         * ThemeNice.cs:
13104           - Added nice StatusBar
13105           - Derive from ThemeWin32Classic and not Theme
13106           - Removed duplicate ThemeWin32Classic code
13108 2005-09-20  Miguel de Icaza  <miguel@novell.com>
13110         * Control.cs (ControlCollection.Add): If the value null is passed
13111         the control is ignored. 
13113         Optimize this loop.
13115 2005-09-19  Peter Dennis Bartok  <pbartok@novell.com> 
13117         * MenuAPI.cs: Replaced Application.Run() with a loop that tracks
13118           PostQuitMessage state.
13119         * XplatUIWin32.cs: Removed bogus PostQuitMessage P/Invoke with HWND arg
13121 2005-09-19  Peter Dennis Bartok  <pbartok@novell.com>
13123         * Application.cs: Our constructor will never get called, move 
13124           initialization to fields; fixes bug #75933
13126 2005-09-19 Hisham Mardam Bey <hisham.mardambey@gmail.com>
13128         * FileDialog.cs :
13129                 - Allow files to be selected properly using file name
13130                 combo box.
13131                 - Add ability to change diretory (absolute / relative)
13132                 using file name combo box.
13134 2005-09-16  Jordi Mas i Hernandez <jordi@ximian.com>
13135          
13136         * ListBox.cs: 
13137                 - Fixes Multicolumn listboxes item wrong calculations
13138                 - Allows to click when only one item is in the listbox
13139                 - Fixes crash when no items using keyboard navigation
13141 2005-09-16  Alexander Olk  <alex.olk@googlemail.com>
13143         * ComboBox.cs: Reverted almost everything from the latest patch which
13144           broke ComboBox
13146 2005-09-16  Kazuki Oikawa <kazuki@panicode.com>
13147         
13148         * ToolTip.cs:
13149                 - Fixed #Mtd2 of ToolTipTest.RemoveToolTipTest.
13150         * ComboBox.cs:
13151                 - When DropDownStyle is Simple, it does not show scrollbar 
13152                 to the last item of the list.
13153                 - When DropDownStyle is Simple, it crashed when the list was 
13154                 scrolled down with the down cursor key.
13155                 - Fixed a bug that when DropDownStyle is DropDownList, the 
13156                 selected item was not shown.
13157                 - The position of the selected item was not preserved when 
13158                 the next dropdown happened.
13159         * ThemeWin32Classic.cs:
13160                 - Items were wrapped at the right end.
13161         * CheckedListBox.cs:
13162                 - Fixed Add method
13163         * ListBox.cs:
13164                 - Items should be fully shown.
13165                 - When resizing and vertical scrollbar disappeared, the item 
13166                 of index 0 should be on the top of the list.
13167                 - GetItemRectangle should consider the size of ver. scrollbar
13168         * StatusBar.cs:
13169                 - SizingGrip area should not be allocated when it is not 
13170                 displayed.
13171                 - Now it reflects MinWidth of the containing panel and 
13172                 fixed a crash that happens when its width becomes so small.
13174 2005-09-13  Jordi Mas i Hernandez <jordi@ximian.com>
13176         * CheckedListBox.cs: Fixes bug 76028
13177         * ListBox.cs: Fixes bug 76028
13179 2005-09-13  Jordi Mas i Hernandez <jordi@ximian.com>
13181         * ThemeWin32Classic.cs: Sets clipping on DataGridPaintRowsHeaders
13182         * DataGridDrawingLogic.cs: fixes issues with Datagrid drawing
13184 2005-09-12  Jordi Mas i Hernandez <jordi@ximian.com>
13186         * XplatUIX11.cs: fixes System.NullReferenceException in some situations
13188 2005-09-09  Jonathan Chambers  <jonathan.chambers@ansys.com>
13190         * IRootGridEntry.cs: Changed namespace to PropertyGridInternal 
13192 2005-09-09  Jonathan Chambers  <jonathan.chambers@ansys.com>
13194         * IRootGridEntry.cs: Added
13195         * PropertyGridCommands.cs: Added
13196         * PropertiesTab.cs: Added missing methods and property
13197         * PropertyGridView.cs: Made class internal
13198         * PropertyGridTextBox.cs: Made class internal
13200 2005-09-09  Alexander Olk  <alex.olk@googlemail.com>
13202         * MimeIcon.cs: Try to check some other environment variables
13203           if "DESKTOP_SESSION" returns "default"
13205 2005-09-09  Alexander Olk  <alex.olk@googlemail.com>
13207         * ThemeNice.cs: Corrected background colors (e.g. menus)
13208         * ColorDialog.cs: Use correct background colors for controls
13210 2005-09-09  Alexander Olk  <alex.olk@googlemail.com>
13212         * ThemeNice.cs: Merged r49535 from ThemeWin32Classic
13214 2005-09-08  Peter Dennis Bartok  <pbartok@novell.com>
13216         * RichTextBox.cs: Added initial implementation
13217         * lang.cs: Removed. Was accidentally checked in long time ago
13218         * TODO: Removed. Contents were obsolete
13220 2005-09-06  Jonathan Chambers  <jonathan.chambers@ansys.com>
13221                                                                                 
13222         * PropertiesTab.cs : Added
13224 2005-09-06  Jonathan Chambers  <jonathan.chambers@ansys.com>
13225                                                                                 
13226         * PropertyGrid.cs : Update
13227         * PropertyGridView.cs : Update
13228         * System.Windows.Forms.resx : Added images and strings
13230 2005-09-06  Peter Dennis Bartok  <pbartok@novell.com> 
13232         * ThemeNice.cs: Do not dispose Pens retrieved from ResPool
13234 2005-09-06  Peter Dennis Bartok  <pbartok@novell.com>
13236         * XplatUIX11.cs: Force a flush after Ungrab; if case the app enters
13237           a busy loop right after the Ungrab the X11 display is otherwise 
13238           blocked
13240 2005-09-06  Jordi Mas i Hernandez <jordi@ximian.com>
13242         * ThemeWin32Classic.cs: Optimise the use of clipping
13244 2005-09-05  Jordi Mas i Hernandez <jordi@ximian.com>
13246         * DataGrid.cs: fixes recursion bug
13248 2005-09-03  Alexander Olk  <alex.olk@googlemail.com>
13250         * ThemeNice.cs: 
13251           - Draw RadioButton and CheckBox Buttons with DrawButtonBase
13252           - Cleanup
13254 2005-09-02  Alexander Olk  <alex.olk@googlemail.com>
13256         * ThemeNice.cs: Draw nice ProgressBars
13258 2005-09-01  Miguel de Icaza  <miguel@novell.com>
13260         * VScrollBar.cs: Another buglet found by Aaron's tool. 
13262         * ProgressBar.cs: Fix three recursive bugs found by Aaron Tomb's
13263         bug finder.
13265 2005-08-30  Alexander Olk  <alex.olk@googlemail.com>
13267         * ThemeNice.cs:
13268           - Added nicer menu drawing
13269           - Updated DrawTab
13270           - some refactoring
13272 2005-08-30  Peter Dennis Bartok  <pbartok@novell.com>
13274         * CreateParams.cs (ToString): Made output match MS
13275         * Control.cs (Text): Don't set Text or Focus via XplatUI unless 
13276             handle is already created (to avoid forcing window creation)
13277         * XplatUIX11.cs: Set window text to caption after creating window,
13278           in case Text was set before window was created
13279         * Form.cs: Use this.Text instead of a static string as caption
13281 2005-08-30  Peter Dennis Bartok  <pbartok@novell.com> 
13283         * NotifyIcon.cs: Don't set the window to visible; this screws
13284           up Win32 (causes WM_NCPAINT to be sent on Win32, which calls
13285           OnPaint without a bitmap)
13286         * XplatUIX11.cs: Removed Visible optimization in AddExpose; doesn't 
13287           happen very often anyway; we could add the check to the WM_PAINT 
13288           event generation code
13290 2005-08-30  Peter Dennis Bartok  <pbartok@novell.com>
13292         * NotifyIcon.cs: Fill the icon area with a background color, to 
13293           avoid 'residue' when transparent icons are drawn
13294         * XplatUIX11.cs:
13295           - Handle whole_window == client_window when destroying windows
13296           - SystrayAdd(): Set client_window to whole_window value to
13297             get mouse and other events passed to NotifyIcon
13299 2005-08-30  Peter Dennis Bartok  <pbartok@novell.com> 
13301         * Form.cs: Set proper default for Opacity property
13302         * NotifyIcon.cs:
13303           - ShowSystray(): Don't bother creating telling the OS
13304             about the systray item if no icon is provided
13305           - Now handles WM_NCPAINT message to deal with whole/client window
13306             split
13307           - Create window as visible to not get caught by Expose optimization
13308         * Hwnd.cs: Removed debug message
13309         * ComboBox.cs, ScrollBar.cs, ListBox.cs, TrackBar.cs, TabControl.cs,
13310           StatusBar.cs, TreeView.cs, XplatUIOSX.cs, XplatUIWin32.cs: Switched 
13311             PaintEventStart/End to use new client argument
13312         * TextBoxBase.cs:
13313           - Commented out debug messages
13314           - Switched PaintEventStart/End to use new client argument
13315         * XplatUI.cs: Added client window bool to PaintEventStart()/
13316           PaintEventEnd() calls, to support drawing in non-client areas
13317         * XplatUIDriver.cs: 
13318           - Added client window bool to PaintEventStart()/PaintEventEnd() 
13319             calls, to support drawing in non-client areas
13320           - Added conditional compile to allow using MWF BeginInvoke 
13321             on MS runtime
13322         * XplatUIX11.cs:
13323           - Added some conditional debug output
13324           - Fixed SystrayAdd() method to support new (for SystrayAdd, anyway)
13325             whole/client window split
13326           - Implemented handling of client argument to PaintEventStart()/End()
13327         * Control.cs:
13328           - Throw exception if BeginInvoke() is called and the window handle
13329             or one of the window's parent handles is not created
13330           - Added conditional compile to allow using MWF BeginInvoke on
13331             MS runtime
13332           - get_Parent(): Only sets parent if handle is created. This avoids
13333             forcing window handle creation when parent is set.
13334           - Now fires Layout and Parent changed events in proper order
13335           - Switched to use Handle instead of window.Handle for Z-Order setting,
13336             the get_Parent() patch above causes us to possibly get null for 'window'
13337           - Implemented handling of client argument to PaintEventStart()/End()
13338           - Now reports back to windows that WM_SETCURSOR was handled (to avoid
13339             default handling)
13340           - Now sends a Refresh() to all child windows when Refresh() is called
13342 2005-08-29  Peter Dennis Bartok  <pbartok@novell.com> 
13344         * Form.cs: Added (non-functional) Opacity property
13345         * XplatUIWin32.cs (SystrayAdd): Removed bogus line of code
13347 2005-08-29  Alexander Olk  <xenomorph2@onlinehome.de>
13348         * ThemeNice.cs: New theme for MWF, based on ThemWin32Classic
13349           use export MONO_THEME=nice to activate it.
13350           Currently supported controls:
13351           - Button
13352           - ComboBox
13353           - ScrollBar
13354           - TabControl (TabAlignment.Top only, other will follow)
13355         * ThemeEngine.cs: Add theme nice
13356         * ButtonBase.cs: Redraw button on MouseEnter and MouseLeave everytime,
13357           if enabled
13359 2005-08-25  Jonathan Chambers  <jonathan.chambers@ansys.com> 
13361         * Splitter.cs: Resize docked control and its neighbor.
13363 2005-08-24  Rafael Teixeira <rafaelteixeirabr@hotmail.com> 
13364         -- Making Windows with Menus layout correctly --
13365         * Form.cs : The first leg of the fix
13366                 Menu setter - adjust Client Size as needed to make space for the menu
13367                 SetClientSizeCore - doesn't call base version to be able to pass the 
13368                         menu handle to XplatUI.CalculateWindowRect
13369         * Hwnd.cs: Fix for menu_height, now gets from MenuAPI.MENU
13370         * XplatUIX11.cs: The critical second leg of the fix
13371                 GetWindowPos needs to use a recalculated client_rect
13372                 so that resizing the window doesn't break layout of child controls. 
13373                 Also a more complete rule to avoid X Server roundtrips in SetWindowPos
13374                 Lots of \t\n killed
13376 2005-08-23  Peter Dennis Bartok  <pbartok@novell.com> 
13378         * Label.cs: Now properly recalculates width and height on Font and Text
13379           changes if AutoSize is set
13381 2005-08-19  Rafael Teixeira <rafaelteixeirabr@hotmail.com> 
13382         * TreeView.cs : Revamped drawing logic, and support for FullRowSelect
13384 2005-08-19  Jordi Mas i Hernandez <jordi@ximian.com>
13386         * ImageList.cs: Makes ToString method compatible with MS
13388 2005-08-18  Jordi Mas i Hernandez <jordi@ximian.com>
13390         * MenuAPI.cs: fixes bug 75716
13392 2005-08-11 Umadevi S <sumadevi@novell.com>
13393         * Control.cs: Fixed Remove & RemoveAt to make the parent of the control null.
13395 2005-08-11 Umadevi S <sumadevi@novell.com>
13396         * Contorl.cs: Fixed ResetRightToLeft and ResetImeMode to work correctly
13398 2005-08-10  Umadevi S <sumadevi@novell.com>
13399         * CheckedListBox.cs: Fixed event firing on Adding to the CheckedListBox
13401 2005-08-07  Jordi Mas i Hernandez <jordi@ximian.com>
13403         * Menu.cs: fixes bug 75700
13404         * MenuAPI.cs: fixes navigation issues
13406 2005-08-09  Umadevi S <sumadevi@novell.com>
13407         * CheckedListBox.cs - simple fix for GetItemChecked.
13409 2005-08-08  Jordi Mas i Hernandez <jordi@ximian.com>
13411         * ComboBox.cs: Serveral fixes
13412         * ListBox.cs: Serveral fixes
13414 2005-08-05  Jordi Mas i Hernandez <jordi@ximian.com>
13416         * ComboBox.cs: Fixes FindString methods and GetItemHeight
13417         * ListBox.cs: Fixes FindString methods
13419 2005-08-05  Jordi Mas i Hernandez <jordi@ximian.com>
13421         * DataGrid.cs: fixes bugs exposed by new tests
13423 2005-08-04  Peter Dennis Bartok  <pbartok@novell.com> 
13425         * Mime.cs: Compile Mono assembly references only if compiling
13426           with Mono (Allows to build with VS.Net again)
13428 2005-07-28  Marek Safar  <marek.safar@seznam.cz>
13430         * Control.cs (PaintControlBackground): Draw background image
13431         corrrectly.
13432         (CheckForIllegalCrossThreadCalls): Stubbed.
13433         
13434         * Form.cs (OnCreateControl): Center when should be centered.
13435         
13436         * ThemeWin32Classic.cs (DrawPictureBox): Pass size.
13438 2005-07-19  Jordi Mas i Hernandez <jordi@ximian.com>
13440         * Binding.cs: Binding to properties should be case unsensitive
13442 2005-07-18 vlindos@nucleusys.com
13444         * DataGrid.cs: fixes setmember order
13446 2005-07-07  Alexander Olk  <xenomorph2@onlinehome.de>
13448         * MimeIcon.cs: added MimeIcon stuff (MimeIconEngine)
13449         * FileDialog.cs: FileDialog is now resizable and uses the new
13450           MimeIconEngine
13452 2005-07-06  Jordi Mas i Hernandez <jordi@ximian.com>
13454         * DataGridTextBoxColumn.cs: default value
13455         * GridColumnStylesCollection.cs: fixes event firing, checking MappingName
13456         * GridTableStylesCollection.cs: fixes checking MappingName
13457         * DataGridDrawingLogic.cs: fixes drawing logic issues
13458         * DataSourceHelper.cs: rewritten to make compatible with more data sources
13459         * DataGrid.cs: fixes    
13461 2005-07-06  Alexander Olk  <xenomorph2@onlinehome.de>
13463         * MimeGenerated.cs: Use case sensitive comparer for
13464           NameValueCollections
13466 2005-07-01  Jordi Mas i Hernandez <jordi@ximian.com>
13468         * DataGridTextBoxColumn.cs: bug fixes, code refactoring 
13469         * ThemeWin32Classic.cs: bug fixes, code refactoring
13470         * DataGridDrawingLogic.cs:  bug fixes, code refactoring
13471         * DataGrid.cs: bug fixes, code refactoring
13472         * DataGridTextBox.cs: bug fixes, code refactoring
13473         * DataGridColumnStyle.cs:  bug fixes, code refactoring
13474         * Theme.cs:  bug fixes, code refactoring
13476 2005-07-01  Peter Bartok  <pbartok@novell.com> 
13478         * TextControl.cs: Quick fix for the reported crash on ColorDialog
13479           and other text box usage
13481 2005-07-01  Jackson Harper  <jackson@ximian.com>
13483         * TabControl.cs: Make sure the bottom of the tab covers the pages
13484         border.
13486 2005-06-30  Peter Bartok  <pbartok@novell.com> 
13488         * Form.cs (ShowDialog): Assign owner of the dialog
13489         * TextBoxBase.cs: Always refresh caret size when deleting, caret
13490           might have been moved to a tag with different height
13492 2005-06-30  Jackson Harper  <jackson@ximian.com>
13494         * Form.cs: Don't create an infinite loop when setting focus
13495         * MenuItem.cs: Don't dirty the parents if we don't have any
13497 2005-06-29  Ben Maurer  <bmaurer@ximian.com>
13499         * LibSupport.cs: Rename
13501 2005-06-29  Peter Bartok  <pbartok@novell.com>
13503         * TextBoxBase.cs: Re-align caret after deleting a character
13504         * TextControl.cs:
13505           - DeleteChars(): Ensure that tag covers the provided position
13506           - StreamLine(): Drop reference for dropped tag
13508 2005-06-29  Peter Bartok  <pbartok@novell.com> 
13510         * TextControl.cs: 
13511           - Selections now work properly, anchoring at the initial location
13512             and properly extending in either direction (SetSelectionToCaret(),
13513             SetSelectionStart() and SetSelectionEnd())
13514           - No longer redraws the whole control on selection change, now
13515             calculates delta between previous and new selection and only
13516             invalidates/redraws that area
13517           - Fixed FindPos() math off-by-one errors
13518           - Changed DeleteChars() to verify the provided tag covers the
13519             provided position, selections may have a tag that doesn't cover
13520             the position if the selection is at a tag border
13521           - Fixed off-by-one errors in DeleteChars()
13522           - Added missing streamlining check in DeleteChars() to remove
13523             zero-length tags
13524           - Implemented Invalidate() method, now properly calculates exposures
13525             between two given lines/positions
13526           - Implemented SetSelection()
13527           - Obsoleted and removed FixupSelection()
13528           - Improved RecalculateDocument() logic, removing code duplication
13530 2005-06-29 Gonzalo Paniagua Javier <gonzalo@ximian.com>
13532         * LibSupport.cs: changes to match different input/output arguments.
13534 2005-06-29 Gonzalo Paniagua Javier <gonzalo@ximian.com>
13536         * LibSupport.cs: added libsupport.so init routine.
13538 2005-06-29  Jordi Mas i Hernandez <jordi@ximian.com>
13539         
13540         * ControlBindingsCollection.cs
13541                 - Throws an exception on null datasource when adding
13542                 - Checks for duplicated bindings when adding
13544 2005-06-28  Jackson Harper  <jackson@ximian.com>
13546         * TreeView.cs (OnKeyDown): Support left and right properly
13547         (navigates as well as expanding and collapsing.
13548         - Add support for Multiply, this expands all the selected nodes
13549         children.
13550         - Fix some tabbing.
13552 2005-06-28  Jackson Harper  <jackson@ximian.com>
13554         * TreeView.cs: Implement keyboard navigation, currently supports,
13555         LEFT, RIGHT, UP, DOWN, PGUP, PGDOWN, HOME, END, ADD, SUBTRACT. Add
13556         support for toggling checkboxes with the space bar.
13558 2005-06-28  Jackson Harper  <jackson@ximian.com>
13560         * OpenTreeNodeEnumerator.cs: Don't move past the begining of the
13561         tree.
13563 2005-06-28  Jackson Harper  <jackson@ximian.com>
13565         * TreeView.cs: Add missing event.
13567 2005-06-27  Peter Bartok  <pbartok@novell.com> 
13569         * TextControl.cs:
13570           - Made line ending size configurable (now allows for counting 
13571             lineendings as \n or \r\n)
13572           - Added margin to viewport to keep caret visible on right side
13573           - Fixed translation routines for line/pos to documentpos to consider
13574             cr/lf when counting (Fixes RichTextBox.SelectionFont issues)
13575           - Fixed some line-endings to be unix style
13576           - Fixed Document.FormatText to perform it's calculations 1-based
13577           - Added descriptions for a few methods that might otherwise get 
13578             used wrong
13579           - Added NOTE section with some basic conventions to remember at 
13580             the top of the file
13581           - Major fixup for RichTextBox selection drawing:
13582             * Fixed crashes when multiple tags on a single line were selected
13583             * fixed selection box drawing not overlaying text
13584             * fixed bogus offset calculation for tags not starting at index 1
13585             * Switched behaviour from using multiple Substrings of a 
13586               StringBuilder.ToString() to using multiple 
13587               StringBuilder.ToString(start, length) statements, hoping this is
13588               faster (kept original version commented out in the code, in case
13589               original version was faster)
13590         * TextBox.cs (set_TextAlignment): TextBox always needs to wrap if 
13591           alignment != Left
13592         * TextBoxBase.cs (CalculateDocument): Made protected so RichTextBox can
13593           call it as well
13595 2005-06-27  Jackson Harper  <jackson@ximian.com>
13597         * TabControl.cs: Move to the left and right with the arrow
13598         keys. These keys don't cycle beyond first and last like
13599         tab. Refresh all the tabs when scrolling them to the left or
13600         right.
13602 2005-06-27  Jackson Harper  <jackson@ximian.com>
13604         * TabControl.cs:
13605           - ToString: Added method
13606           - CreateParams: Remove TODO and comment
13607           - OnKeyDown: Cycle through bounds properly.
13608           - SelectedIndex: Scroll to the right or left if we need to
13609           display the newly selected tab.
13611 2005-06-23  Jackson Harper  <jackson@ximian.com>
13613         * TabControl.cs: Stay in bounds when cycling. Make sure Handled is
13614         set.
13616 2005-06-23  Jackson Harper  <jackson@ximian.com>
13618         * TabControl.cs: Keyboard handling. We now support CTRL-TAB,
13619         CTRL-SHIFT-TAB, and HOME, END are there any others?
13621 2005-06-23  Jackson Harper  <jackson@ximian.com>
13623         * XplatUIX11.cs: Get the modifier keys from the keyboard driver.
13625 2005-06-22  Jordi Mas i Hernandez <jordi@ximian.com>
13626         
13627         * DataGridTextBoxColumn.cs: fixes and enhancements
13628         * ThemeWin32Classic.cs: fixes and enhancements
13629         * DataGridBoolColumn.cs:  fixes and enhancements
13630         * DataGridDrawingLogic.cs:  fixes and enhancements
13631         * CurrencyManager.cs: fixes and enhancements
13632         * DataGrid.cs: fixes and enhancements
13633         * DataGridColumnStyle.cs:  fixes and enhancements
13635 2005-06-22  Jackson Harper  <jackson@ximian.com>
13637         * TabControl.cs: Add some missing methods that just call into the
13638         base. Make the TabPageCollection's IList interface behave in the
13639         same manner as the MS implementation.
13641 2005-06-22  Peter Bartok  <pbartok@novell.com> 
13643         * TextControl.cs: Added sanity check
13644         * TextBoxBase.cs: 
13645           - Fixed wrapping behaviour, don't set wrap on single line controls
13646             (this fixes the breakage of colordialog introduced in an earlier
13647              checkin)
13648           - Added rudimentary support for autoscrolling right-aligned controls
13649             (still needs fixing, also, center alignment scroll is missing)
13651 2005-06-22  Jordi Mas i Hernandez <jordi@ximian.com>
13652         
13653         * ScrollBar.cs: Fixes thumbpos on Maximum values
13655 2005-06-21  Jonathan Chambers <jonathan.chambers@ansys.com>
13656         
13657         * PropertyGridView.cs: Pass context information to UITypeEditors 
13659 2005-06-21  Peter Bartok  <pbartok@novell.com> 
13661         * TextBoxBase.cs:
13662           - Now calling PositionCaret with absolute space coordinates
13663           - Enabled vertical scrolling
13664           - Better tracking of scrollbar changes, tied into WidthChange
13665             event
13666           - Improved cursor tracking
13667           - Removed debug output
13668         * TextControl.cs:
13669           - PositionCaret coordinates are now works in absolute space, not 
13670             the canvas
13671           - Improved tracking of document size
13672           - Added events for width and height changes
13674 2005-06-21  Peter Bartok  <pbartok@novell.com>
13676         * Form.cs: Set focus to active control when form is activated
13677         * TextControl.cs: 
13678           - Added word-wrap functionality to RecalculateLine() 
13679           - Added some short function descriptions for VS.Net to aid in
13680             writing dependent controls
13681           - Added Caret property, returning the current coords of the caret
13682           - Added ViewPortWidth and ViewPortHeight properties
13683           - Added Wrap property
13684           - Added CaretMoved event
13685           - Removed some old debug code
13686           - Split() can now create soft splits
13687           - Added PreviousTag()/NextTag() to allow walking "tag-lists"
13688           - Added method to format existing text
13689           - Fixed size/alignment calculations to use viewport
13690           - RecalculateDocument now can handle changing line-numbers while
13691             calculating lines
13693         * TextBox.cs:
13694           - Added some wrap logic, we don't wrap if alignment is not left
13695           - Added casts for scrollbar var, base class switched types to
13696             also support RichTextBoxA
13697           - Implemented handling of scrollbar visibility flags
13699         * TextBoxBase.cs:
13700           - Switched scrollbars type to RichTextBoxScrollBars to support
13701             RichTextBox
13702           - Added tracking of canvas width/height
13703           - Switched scrollbars to be not selectable (to keep focus on text)
13704           - Added central CalculateDocument() method to handle all redraw
13705             requirements
13706           - Added ReadOnly support
13707           - Added WordWrap support
13708           - Fixed handling of Enter key (we now treat it as a DialogKey)
13709           - Fixed caret positioning when h or v scroll is not zero
13710           - Fixed placing/generation of vertical scrollbar
13711           - Added CalculateScrollBars() method to allow updating scrollbar
13712             limits and visibility
13713           - Fixed handling of horizontal scroll
13714           - Added handling of vertical scroll
13715           - Implemented auto-'jump' when caret moves to close to a left or
13716             right border and there is text to be scrolled into view (currently
13717             there's the potential for a stack overflow, until a bug in
13718             scrollbar is fixed)
13720 2005-06-21  Geoff Norton  <gnorton@customerdna.com>
13721         
13722         * XplatUIOSX.cs: Initial implementation of WM_ERASEBKGND
13724 2005-06-19  Alexander Olk  <xenomorph2@onlinehome.de>
13726         * Mime.cs:
13727         - added inodes.
13728         - return application/x-zerosize for files with size zero
13729           (if no extension pattern matches).
13730         - check matches collection for strings too.
13731         - return only the first mime type if the name value
13732           collection has more than one mime type.
13734 2005-06-18  Jonathan Chambers <jonathan.chambers@ansys.com>
13735         
13736         * PropertyGrid.cs: Cleaned up some TODOs
13737         * PropertyGridView.cs: Added support for UITypeEditors
13739 2005-06-17  Jordi Mas i Hernandez <jordi@ximian.com>
13740         
13741         * DataGrid.cs: clears cached value
13743 2005-06-17  Jordi Mas i Hernandez <jordi@ximian.com>
13745         * DataGridTextBoxColumn.cs: new rows, speed improvements, fixes, readonly prop.
13746         * DataGridDrawingLogic.cs: new rows, speed improvements, fixes, readonly prop.
13747         * DataGrid.cs: new rows, speed improvements, fixes, readonly prop.
13748         * DataGridColumnStyle.cs: new rows, speed improvements, fixes, readonly prop.
13749         
13750 2005-06-16  Jordi Mas i Hernandez <jordi@ximian.com>
13752         * ThemeWin32Classic.cs: fixes colour
13754 2005-06-15  Peter Bartok  <pbartok@novell.com>
13756         * MWFCategoryAttribute.cs: Added (Needed for PropertyGrid designer support)
13757         * MWFDescriptionAttribute.cs: Added (Needed for PropertyGrid designer support)
13758         * ButtonBase.cs: Added MWFCategory and MWFDescription attributes
13759         * Control.cs: Added some MWFCategory and MWFDescription attributes
13760         * ScrollBar.cs: Added some MWFCategory and MWFDescription attributes
13762 2005-06-15  Alexander Olk  <xenomorph2@onlinehome.de>
13764         * Mime.cs, MimeGenerated.cs: First draft of MWF mime stuff, see Mime.cs for
13765         usage
13767 2005-06-14  Jordi Mas i Hernandez <jordi@ximian.com>
13769         * DataGridTextBoxColumn.cs: default datagrid settings for Default Styles, fixes
13770         * DataGridTableStyle.cs: default datagrid settings for Default Styles, fixes
13771         * DataGridDrawingLogic.cs: default datagrid settings for Default Styles, fixes
13772         * DataGridBoolColumn.cs: default datagrid settings for Default Styles, fixes
13773         * DataGrid.cs: default datagrid settings for Default Styles, fixes
13774         * DataGridColumnStyle.cs: default datagrid settings for Default Styles, fixes
13776 2005-06-13  Jackson Harper  <jackson@ximian.com>
13778         * XplatUIX11.cs: Override SetAllowDrop on X11 so an error message
13779         isn't printed when the user enables dropping. (X11 does accept
13780         drops).
13781         
13782 2005-06-13  Jackson Harper  <jackson@ximian.com>
13784         * TreeView.cs: Remove some TODOS.
13786 2005-06-13  Jackson Harper  <jackson@ximian.com>
13788         * Form.cs: Hook into the mdi framework.
13789         * MdiClient.cs: Use the base control collections add method so
13790         parents get setup correctly. Set the default back colour and dock
13791         style.
13792         * MdiChildContext.cs: New class, this bad actor handles an
13793         instance of an MDI window. Right now there is only basic
13794         support. You can drag, close, and resize windows. Minimize and
13795         Maximize are partially implemented.
13797 2005-06-13  Jackson Harper  <jackson@ximian.com>
13799         * XplatUIX11.cs: Mash numbers together properly, otherwise we get
13800         freaky when both vals are negative. NOTE: There are probably other
13801         places in XplatUIX11 that this needs to be done.
13803 2005-06-13  Jordi Mas i Hernandez <jordi@ximian.com>
13805         * DataGrid.cs: implement missing methods, move KeyboardNavigation
13806         * DataGridColumnStyle.cs: fixes signature
13808 2005-06-12  Jackson Harper  <jackson@ximian.com>
13810         * XplatUIX11.cs: Use sizing cursors similar to the ones on
13811         windows.
13813 2005-06-11  Jackson Harper  <jackson@ximian.com>
13815         * StatusBarPanel.cs: Signature cleanups. Implement
13816         BeginInit/EndInit.
13818 2005-06-10  Jordi Mas i Hernandez <jordi@ximian.com>
13820         * DataGridTextBoxColumn.cs: Honors aligment
13821         * GridColumnStylesCollection.cs: Contains is case unsensitive
13822         * GridTableStylesCollection.cs: several fixes
13823         * DataGridTableStyle.cs: default column creation
13824         * DataGridDrawingLogic.cs: fixes
13825         * CurrencyManager.cs: ListName property
13826         * DataGrid.cs: multiple styles support
13827         * DataGridColumnStyle.cs: fixes
13828         
13830 2005-06-10  Peter Bartok  <pbartok@novell.com>
13832         * Control.cs(Select): Moved SetFocus call to avoid potential
13833           loops if controls change the active control when getting focus
13834         * UpDownBase.cs: Fixes to allow proper keyboard focus after clicking
13835           the up/down buttons
13837 2005-06-10  Matthias Felgner  <matthiasf@voelcker.ocm>
13839         * ImageListConverter.cs: Implemented
13841 2005-06-10  John BouAntoun <jba-mono@optusnet.com.au>
13843         * MonthCalendar.cs: Wired in NumericUpDown control for year
13845 2005-06-10  John BouAntoun <jba-mono@optusnet.com.au>
13847         * MonthCalendar.cs: Removed MonoTodo attributes on Click and
13848           DoubleClick events, since they are not meant to be fired.
13850 2005-06-09  Peter Bartok  <pbartok@novell.com>
13852         * UpDownBase.cs, NumericUpDown.cs, DomainUpDown.cs: Integrated
13853           Jonathan's standalone controls into MWF, implemented missing
13854           events, attributes and methods; added xxxAccessible classes
13855         * AccessibleObject.cs: Made fields internal so other classes
13856           can change them if needed
13858 2005-06-09  Jonathan Gilbert  <2a5gjx302@sneakemail.com>
13860         * UpDownBase.cs: Complete implementation
13861         * NumericUpDown.cs: Complete implementation
13862         * DomainUpDown.cs: Complete implementation
13864 2005-06-09  Jordi Mas i Hernandez <jordi@ximian.com>
13866         * DataGridTextBoxColumn.cs: drawing fixes
13867         * DataGridCell.cs: fixes ToString method to match MSNet
13868         * DataGridTableStyle.cs: fixes
13869         * DataGridBoolColumn.cs: fixes, drawing
13870         * DataGridDrawingLogic.cs: fixes, new methods
13871         * DataGridTextBox.cs: Keyboard and fixes
13872         * DataGrid.cs:
13873                 - Keyboard navigation
13874                 - Scrolling fixes
13875                 - Row selection (single, multiple, deletion, etc)
13876                 - Lots of fixes
13877         
13878 2005-06-07  Jackson Harper  <jackson@ximian.com>
13880         * ThemeWin32Classic.cs: Clear the background area when drawing
13881         buttons.
13883 2005-06-06  Peter Bartok  <pbartok@novell.com>
13885         * ImageListStreamer.cs: Fixed signature for GetData
13886         * CheckBox.cs: Fixed base class for CheckBoxAccessibleObject
13887         * ComboBox.cs:
13888           - Added missing ChildAccessibleObject class
13889           - Added missing OnXXXFocus overrides, switched to using those
13890             instead of the event handler
13891         * Control.cs:
13892           - Added Parent property for ControlAccessibleObject
13893           - Fixed signatures
13894           - Fixed attributes
13895           - Added ResetBindings()
13896         * ListBindingConverter.cs: Implemented some methods
13897         * ButtonBase.cs: Added missing ButtonBaseAccessibleObject class
13898         * ImageList.cs: Implemented basic handle scheme, removed TODOs
13899         * ContainerControl.cs: Fixed signature, now subscribing to the
13900           ControlRemoved event instead of overriding the handler, LAMESPEC
13901         * CurrencyManager.cs: Added missing attribute
13902         * MonthCalendar.cs: Added missing properties
13904 2005-06-06  Jordi Mas i Hernandez <jordi@ximian.com>
13906         * DataGridColumnStyle.cs: fixes for DataGridColumnStyle
13907         
13908 2005-06-06  Gaurav Vaish and Ankit Jain
13910         * DataSourceHelper.cs: Gaurav Vaish and Ankit Jain patch for databinding
13911         * DataGrid.cs: Gaurav Vaish and Ankit Jain patch for databinding
13912         
13913 2005-06-06  Jordi Mas i Hernandez <jordi@ximian.com>
13915         * Control.cs: fixes CreateParams Width / Height.
13917 2005-06-05  Peter Bartok  <pbartok@novell.com>
13919         * Win32DnD.cs: Removed compilation warnings
13921 2005-06-05  Peter Bartok  <pbartok@novell.com>
13923         * Control.cs (CreateParams): Since we don't know if one of the
13924           properties we use is overridden, lets make sure if we fail accessing
13925           we continue with a backup plan
13927 2005-06-05  Peter Bartok  <pbartok@novell.com>
13929         * Win32DnD.cs:
13930           - Removed debug output
13931           - Added MarshalAs attribute to ensure proper marshalling of FORMATETC
13932             struct
13933           - Plugged resource leak
13934         * XplatUIStructs.cs: Changed ClipboardFormats size to ushort, to match
13935           MS size
13937 2005-06-05  Peter Bartok  <pbartok@novell.com>
13939         * XplatUIWin32.cs: Removed DnD code
13940         * Win32DnD.cs: Implemented drop source and drop target functionality
13942 2005-06-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
13944         * UpDownBase.cs: remove duplicate addition of event, enable some code
13945         that was commented out.
13946         * NumericUpDown.cs: added missing attributes and Hexadecimal property.
13947         Validate input when a key is pressed. It works fine now for every
13948         combination of Hexadecimal. Only missing some drawing love when sharing
13949         space with other controls.
13951 2005-06-04  Peter Bartok  <pbartok@novell.com>
13953         * Control.cs:
13954           - We need to pass a window for DragDrop, so enable callback events
13955           - Added DnD callback events when being a DragSource
13956         * XplatUI.cs (StartDrag): Added window handle argument
13957         * XplatUIDriver.cs (StartDrag): Added window handle argument
13958         * QueryContinueDragEventArgs: Made fields internally accessible so
13959           drivers can set them
13960         * GiveFeedbackEventArgs: Made fields internally accessible so drivers
13961           can set them
13963 2005-06-03  Jordi Mas i Hernandez <jordi@ximian.com>
13965         * DataGridTextBoxColumn.cs: column text editing
13966         * DataGridTableStyle.cs: Respect columns styles created by the user
13967         * DataGridDrawingLogic.cs: lots of drawing fixes and enhanments
13968         * DataGridBoolColumn.cs: bool column editing
13969         * DataGrid.cs: fixes to scrolling, properties, etc
13970         * DataGridTextBox.cs: handle keyboard
13971         * DataGridColumnStyle.cs: fixes
13973 2005-06-02  Jackson Harper  <jackson@ximian.com>
13975         * ImageListStreamer.cs: Somewhat broken implementation of
13976         GetObjectData. The RLE needs some work to match MS properly.
13978 2005-06-02  Jackson Harper  <jackson@ximian.com>
13980         * X11Dnd.cs: Attempting to keep at least one file in MWF
13981         monostyled.
13983 2005-06-02  Peter Bartok  <pbartok@novell.com>
13985         * X11DnD.cs: Use Marshal.SizeOf instead of sizeof, no /unsafe required
13986           that way
13988 2005-06-02  Peter Bartok  <pbartok@novell.com>
13990         * Control.cs: Removed MonoTODO from DoDragDrop and added call to Xplat
13991         * XplatUI.cs: Added DoDragDrop() method
13992         * XplatUIDriver.cs: Added DoDragDrop() method
13994 2005-06-02  Jackson Harper  <jackson@ximian.com>
13996         * Splitter.cs: Implement BorderStyle.
13998 2005-06-02  Jackson Harper  <jackson@ximian.com>
14000         * XplatUIX11.cs: Tie into the X11Dnd subsystem.
14001         * X11Dnd.cs: New file. A subsystem that handles drag and drop on
14002         X11 using XDND.
14004 2005-06-02  Peter Bartok  <pbartok@novell.com>
14006         * DataObject.cs:
14007           - Added Data setter
14008           - Fixed broken insertion code for SetData, now also
14009             overwrites any existing entry of the same format name
14010         * Hwnd.cs: Added list of pointers that automatically gets
14011           freed when the window is disposed
14012         * XplatUI.cs: Call driver initialization method when loading
14013           a driver
14014         * Control.cs:
14015           - OnDragLeave takes EventArgs, not DragEventArgs
14016           - Added setting of WS_EX_ACCEPTFILES style when dropping is
14017             supported
14018           - Forces style update when drop state changes
14019         * XplatUIWin32.cs: Implemented Drag'n'Drop (as good as possible,
14020           not perfect since we cannot (yet) call the IDataObject.GetData()
14021           method, we keep getting 0x80004005 error, dunno why)
14023 2005-06-02  Peter Bartok  <pbartok@novell.com>
14025         * DragEventArgs.cs: Make fields internal so we can cache the
14026           object and re-set the fields from XplatUI
14028 2005-06-02  Jackson Harper  <jackson@ximian.com>
14030         * Control.cs: Add some internal methods so the DnD subsystem can
14031         raise DnD events. Also call into the driver when AllowDrop is set.
14032         * XplatUI.cs:
14033         * XplatUIDriver.cs: New method for setting whether or not a window
14034         is allowed to accept drag and drop messages.
14035                 
14036 2005-06-01  Jordi Mas i Hernandez <jordi@ximian.com>
14037         
14038         * ScrollBar.cs: Make sure that values sent in Scroll events
14039         are always between Maximum and Minimum.
14041 2005-06-01  Marek Safar  <marek.safar@seznam.cz>
14043         * Menu.cs: Call MenuChanged when menuitem visibility has been
14044         changed.
14045         * MenuItem.cs: Rebuild menu when item is (not) visible.
14046         * MainMenu.cs: MainMenu has special MenuChanged.
14047         * Theme.cs: Caption and FrameBorderSize are not fixed.
14048         * XplatUI.cs: Added CaptionHeight,FrameBorderSize.
14049         * XplatUIDriver.cs: Introduced Caption and FrameBorderSize.
14050         * XplatUIX11.cs,
14051         * XplatUIOSX: Caption and FrameBorderSize not implemented yet.
14052         * XplatUIWin32.cs: Get Caption and FrameBorderSize from system.
14054 2005-05-30  Jackson Harper  <jackson@ximian.com>
14056         * DataFormat.cs: We can't statically initialize this stuff because
14057         it calls into the xplatui and could create a loop. So we lazy init
14058         it.
14060 2005-05-28  Jackson Harper  <jackson@ximian.com>
14062         * Control.cs: Proper implementation of Product(Name/Version).
14064 2005-05-27  Jackson Harper  <jackson@ximian.com>
14066         * DataObject.cs: Dont crash if no data is found.
14068 2005-05-26  Rafael Teixeira  <rafaelteixeirabr@hotmail.com>
14069         * MdiClient.cs: Add missing Localizable attribute to BackgroundImage property
14070                 as per status page, guessing it should be set to true
14072 2005-05-26  Jordi Mas i Hernandez <jordi@ximian.com>
14074         * DataGridTextBoxColumn.cs: Draws text and basic text formatting
14075         * DataGridTableStyle.cs: set proper formatting text, def header text
14076         * ThemeWin32Classic.cs: new themable paramaters
14077         * DataGridBoolColumn.cs: paint check box, get data, fixes
14078         * DataGridDrawingLogic.cs: huge improvements in painting, fixes, new methods
14079         * DataGrid.cs: fixes properties, implements vertical and horizontal scrolling
14080         * DataGridColumnStyle.cs: fixes
14081         * Theme.cs: new themable paramaters
14082                 
14083 2005-05-26  Peter Bartok  <pbartok@novell.com>
14085         * ContainerControl.cs: Pass AdjustFormScrollbars() call on to base
14087 2005-05-24 Jonathan S. Chambers <jonathan.chambers@ansys.com>
14088         * Control.cs: Fixed LowOrder and HighOrder to preserve sign.
14090 2005-05-24  Peter Bartok  <pbartok@novell.com>
14092         * OpenFileDialog.cs, Form.cs, Menu.cs, GroupBox.cs, UserControl.cs,
14093           Label.cs, DataGridTextBoxColumn.cs, PropertyGrid.cs, ErrorProvider.cs
14094           Splitter.cs, Control.cs, FontDialog.cs, TabPage.cs,
14095           FolderBrowserDialog.cs, HelpProvider.cs, DataGridTableStyle.cs,
14096           NotifyIcon.cs, FileDialog.cs, ListView.cs, SaveFileDialog.cs,
14097           ToolBarButton.cs, ImageList.cs, DataGridBoolColumn.cs, Panel.cs,
14098           DataGrid.cs, DataGridTextBox.cs, ListBox.cs, TrackBar.cs,
14099           AxHost.cs, TabControl.cs, ScrollableControl.cs, ToolBar.cs,
14100           DataGridColumnStyle.cs, PictureBox.cs, DateTimePicker.cs,
14101           StatusBar.cs, MonthCalendar.cs, TreeView.cs: Added
14102           missing attributes, etc
14103         * DataGridPreferredColumnWidthTypeConverter.cs: Added
14105 2005-05-24  Peter Bartok  <pbartok@novell.com>
14107         * Help.cs: Added, implemented trivial functions, throws up MessageBox
14108           when user tries to get help
14109         * DataObject.cs, DataFormats.cs, LinkArea.cs,
14110           SelectionRangeConverter.cs, Clipboard.cs : Removed unused variables
14111           to suppress warnings
14112         * XplatUIWin32.cs, XplatUIOSX.cs, XplatUIX11.cs: Removed unused code to
14113           avoid unreachable code warning
14115 2005-05-20  Peter Bartok  <pbartok@novell.com>
14117         * CursorConverter.cs (ConvertTo): Switched to use Cursor.GetObjectData
14119 2005-05-20  Jordi Mas i Hernandez <jordi@ximian.com>
14121         * DataGridTextBoxColumn.cs: Basic painting methods
14122         * DataGridTableStyle.cs: Set table style in the column
14123         * ThemeWin32Classic.cs: Use Theme for colors
14124         * DataGridDrawingLogic.cs: Implement more drawing
14125         * DataGrid.cs: drawing, theming, enhacements, fixes
14126         * DataGridColumnStyle.cs: fixes, drawing
14127         * Theme.cs: theming for Datagrid
14129 2005-05-20  Peter Bartok  <pbartok@novell.com>
14131         * Cursor.cs: Implemented GetObjectData() method
14133 2005-05-20  Peter Bartok  <pbartok@novell.com>
14135         * Cursors.cs: Added setting of cursor name
14136         * Cursor.cs:
14137           - Implemented constructors
14138           - Implemented Draw and DrawStretched
14139           - Implemented Current property
14140           - Implemented == and != operators
14141           - Implemented Dispose()
14142           - Implemented ToString
14143           - Added missing attributes
14144         * XplatUIX11.cs:
14145           - Added missing reset for OverrideCursor when DoEvents is called
14146           - Fixed creation of cursor, logic was wrong
14147         * XplatUIWin32.cs:
14148           - Added missing reset for OverrideCursor when DoEvents is called
14149           - Fixed creation of cursor, bit arrays were swapped
14150         * Clipboard.cs: Removed obsolete MonoTODO attribute
14152 2005-05-20  Jordi Mas i Hernandez <jordi@ximian.com>
14154         * ComboBox.cs: fixes OnSelectedItemChanged
14155         * ControlBindingsCollection.cs: fixes item range check
14157 2005-05-20  Jordi Mas i Hernandez <jordi@ximian.com>
14159         * UpDownBase.cs:
14160                 - Calc preferred height properly
14161                 - Implement missing properties
14162                 
14163         * NumericUpDown.cs: Implement missing events
14165 2005-05-19  Jackson Harper  <jackson@ximian.com>
14167         * TabControl.cs: New method that resizes the tab pages before
14168         redrawing them. This as needed as the control is double buffered
14169         and sizing will not be recalculated unless ResizeTabPages is
14170         called.
14171         * TabPage.cs: Set base.Text instead of Text in the constructor so
14172         that UpdateOwner does not get called. Use the new Redraw method of
14173         TabControl instead of Refresh so the sizing is recalculated.
14174         * ThemeWin32Classic.cs: Draw the text for button tabs.
14176 2005-05-19  Jackson Harper  <jackson@ximian.com>
14178         * Control.cs: Paint control background images. Fix typo where
14179         PaintControlBackground was not getting called correctly.
14181 2005-05-19  Peter Bartok  <pbartok@novell.com>
14183         * ScrollableControl.cs (DisplayRectangle): Undid my last change until
14184           I can investigate, apparently I broke FileDialog
14186 2005-05-19  Marek Safar  <marek.safar@seznam.cz>
14188         * AxHost.cs: Some simple properties.
14189         * Control.cs: window must be accessible after ctor.
14190         * Form.cs: Added TransparencyKey property.
14191         * TextBoxBase.cs: Implemented Clear. Text property can be null.
14192         * XplatUIWin32.cs: SetBorderStyle implemented.
14194 2005-05-18  Peter Bartok  <pbartok@novell.com>
14196         * DataObject.cs: Entries are not global but particular to the
14197           DataObject, now it behaves that way
14198         * XplatUIWin32.cs: Implemented Clipboard methods
14199         * Clipboard.cs: Implemented
14200         * ScrollableControl.cs (DisplayRectangle): Fixed calculation
14201         * XplatUIOSX.cs: Updated to final clipboard prototypes
14202         * XplatUIX11.cs: Implemented Clipboard methods
14203         * XplatUIDriver.cs: Updated to final clipboard prototypes
14204         * XplatUIStructs.cs:
14205           - Added BITMAPINFOHEADER struct
14206           - Added ClipboardFormats enum
14207         * X11Structs.cs:
14208           - Added ClipboardStruct
14209           - Added Atom enum items for clipboard types
14210           - Fixed atom types for Selection event structures
14211         * DataFormats.cs:
14212           - Added internal properties and methods for drivers to enumerate
14213             all known formats
14214           - Switched initialization method to allow drivers to assign their
14215             own IDs even for the MS predefined clipboard IDs
14216         * XplatUI.cs: Updated to final clipboard interface
14218 2005-05-18 Jonathan S. Chambers <jonathan.chambers@ansys.com>
14219         * PropertyGridView.cs: Fixed compiler warnings.
14221 2005-05-18 Jonathan S. Chambers <jonathan.chambers@ansys.com>
14222         * PropertyGrid.cs: Added some event calls
14223         * PropertyGridView.cs: Change drawing code to use double buffering
14224         * PropertyGridTextBox.cs: Changed Text property name
14225         * GridItem.cs: Added Bounds property.
14226         * GridEntry.cs: Added Bounds property.
14228 2005-05-17  Lluis Sanchez Gual  <lluis@novell.com>
14230         * Binding.cs: Use IsInstanceOfType instead of IsAssignableFrom
14231         since GetType() may not return the correct type if the object is
14232         a remoting proxy.
14234 2005-05-17  Jordi Mas i Hernandez <jordi@ximian.com>
14236         * TreeNodeCollection.cs: fixes get/set item ranges
14237         
14238 2005-05-15  Jordi Mas i Hernandez <jordi@ximian.com>
14240         * ListBox.cs: Kazuki Oikawa's PreferredHeight and ItemHeight fixes
14241                 
14242 2005-05-15  Jordi Mas i Hernandez <jordi@ximian.com>
14244         * ComboBox.cs: Fix item range comparation
14245         * ListView.cs: Fix item range comparation
14247 2005-05-03  Alexander Olk  <xenomorph2@onlinehome.de>
14249         * FontDialog.cs:
14250           - Clear example panel when OnPaint is called
14251           - Better solution for displaying the example panel text
14252           - Select default indexes in the ListBoxes
14254 2005-05-11  Geoff Norton  <gnorton@customerdna.com>
14256         * XplatUIOSX.cs: Avoid painting into invisible views.  Fixes #74926
14258 2005-05-11  Peter Bartok  <pbartok@novell.com>
14260         * LinkArea.cs: Added and implemented LinkAreaTypeConverter class
14261         * SelectionRangeConverter.cs: Implemented
14262         * PropertyGrid.cs: Fixed attribute value
14263         * Control.cs:
14264           - Invoke(): Don't call Begin/EndInvoke if it is not neccessary
14265           - Added Sebastien Pouliot's CAS Stack Propagation fixes
14266         * XplatUIDriver.cs: Added new XplatUIDriverSupport class, for code
14267           that's common to all drivers. First methods to go there are
14268           Sebastien Pouliot's CAS Stack Propagation helper methods
14269         * XplatUIWin32.cs, XplatUIX11.cs, AsyncMethodData.cs: Fixes by
14270           Sebastien Pouliot for CAS Stack Propagation
14272 2005-05-11  Geoff Norton  <gnorton@customerdna.com>
14274         * OSXStructs.cs:
14275           XplatUIOSX.cs: More cosmetic cleanup courtesy of Artyom Tyazhelov (Artyom.Tyazhelov@helmes.ee)
14277 2005-05-12  Jordi Mas i Hernandez <jordi@ximian.com>
14279         * DataGridTextBoxColumn.cs: fixed some members
14280         * GridColumnStylesCollection.cs: indexed column is case insensitive
14281         * DataGridTableStyle.cs: fixes
14282         * ThemeWin32Classic.cs: add new theme parameter
14283         * Theme.cs: add new theme parameter
14284         * DataGridDrawingLogic.cs: Datagrid's drawing logic
14285         * DataGrid.cs: fixes, new internal properties, etc.
14286         * DataGridColumnStyle.cs: allows to set grid value
14287         *
14289 2005-05-10  Peter Bartok  <pbartok@novell.com>
14291         * AccessibleObject.cs:
14292           - Removed MonoTODO attribute on help, method is correct
14293           - Fixed Bounds property
14294         * AxHost.cs: Moved MonoTODO
14295         * ButtonBase.cs: Now setting AccessibleObject properties
14296         * RadioButton.cs: Setting proper AccessibleObject role
14297         * CheckBox.cs: Setting proper AccessibleObject role
14298         * ControlBindingsCollection.cs: Added properties, methods and attributes
14299         * DataFormats.cs: Fixed awkward internal API, and changed to enable
14300           userdefined DataFormats.Format items as well
14301         * ListControl.cs: Removed data_member from the public eye
14302         * OpenFileDialog.cs:
14303           - Made class sealed
14304           - Added missing attributes
14305         * SaveFileDialog.cs: Added missing attributes
14306         * ImageListStreamer.cs: Fixed code that caused warnings
14307         * LinkLabel.cs: Removed unreachable code
14308         * TreeView.cs: Fixed code that caused warnings
14309         * PropertyGridView.cs: Fixed code that caused warnings
14310         * GridColumnStylesCollection.cs: Added missing attributes
14311         * GridTableStylesCollection: Added missing attribute
14312         * PropertyManager: Added .ctor
14313         * SecurityIDType: Added
14314         * DataObject.cs: Implemented class
14315         * LinkArea.cs: Added missing attribute
14317 2005-05-11  Jordi Mas i Hernandez <jordi@ximian.com>
14319         * RadioButton.cs: call base method to allow to fire OnClick event
14320         * UpDownBase.cs: OnMouseUp call base method
14321         * CheckedListBox.cs: call base method before returning
14322         * TrackBar.cs: call base method before returning
14323         
14325 2005-05-10  Peter Bartok  <pbartok@novell.com>
14327         * XplatUIX11.cs: Fix for #74902, check pending timers when peeking
14328           for messages
14330 2005-05-10  Peter Bartok  <pbartok@novell.com>
14332         * DataFormats.cs: Implemented
14333         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs,
14334           XplatUIX11.cs: Added Clipboard APIs
14335         * XplatUIWin32.cs: Implemented Clipboard APIs
14336         * FolderBrowserDialog.cs: Added missing event, attributes
14338 2005-05-10  Jordi Mas i Hernandez <jordi@ximian.com>
14340         * CheckBox.cs: call base method to allow to fire OnClick event
14342 2005-05-09  Sebastien Pouliot  <sebastien@ximian.com>
14344         * XplatUI.cs: Use PlatformID.Unix under NET_2_0.
14346 2005-05-06  Peter Bartok  <pbartok@novell.com>
14348         * XplatUIX11.cs: Redid Jackson's fix, it was causing a busy loop
14349         * Screen.cs: Implemented
14350         * HelpNavigator.cs: Added
14351         * XplatUIWin32.cs: Added SystemParametersInfo call, fixed WorkArea
14352           property
14353         * HelpProvider.cs: Implemented all we can do until we have a CHM
14354           help library (which means that "What's This" does work now)
14356 2005-05-06  Jackson Harper  <jackson@ximian.com>
14358         * XplatUIX11.cs: Fix waking up the main loop.
14359                 
14360 2005-05-05  Peter Bartok  <pbartok@novell.com>
14362         * XplatUI.cs: Updated revision
14363         * Form.cs: Removed enless loop
14364         * GroupBox.cs (OnPaint): Added call to base.OnPaint()
14365         * Label.cs (OnPaint): Added call to base.OnPaint()
14366         * ToolTip.cs: Made ToolTipWindow reusable for other controls
14367         * LinkLabel.cs (OnPaint): Added call to base.OnPaint()
14368         * UpDownBase.cs (OnPaint): Moved base.OnPaint() call to end of method
14369         * AxHost.cs: Added
14370         * ButtonBase.cs: Moved base.OnPaint() call to end of method
14371         * ThemeWin32Classic.cs: Replaced references to ToolTip with references
14372           to ToolTip.ToolTipWindow for drawing and size methods; this allows
14373           reuse of ToolTipWindow by other controls
14374         * SizeGrip.cs: Moved base.OnPaint() call to end of method
14375         * XplatUIX11.cs: Now clipping drawing area (experimental)
14376         * PictureBox.cs: Moved base.OnPaint() call to end of method
14377         * Theme.cs: Fixed ToolTip abstracts to match new format
14378         * ErrorProvider.cs: Implemented
14380 2005-05-05  Jordi Mas i Hernandez <jordi@ximian.com>
14382         * Label.cs: fire events using OnAutoSizeChanged and OnTextAlignChanged
14383         * LinkLabel.cs:
14384                 - Adds cursors
14385                 - Handles focus
14386                 - Implements LinkBehavior
14387                 - Fixes many issues
14389 2005-05-03  Jackson Harper  <jackson@ximian.com>
14391         * ListView.cs: Calculate the scrollbar positioning on resize and
14392         paint, so they get put in the correct place.
14394 2005-05-03  Alexander Olk  <xenomorph2@onlinehome.de>
14396         * ColorDialogs.cs: The small color panels are now handled by
14397           SmallColorControl. This fixes drawing of the focus rectangle
14398           and adds a 3D border.
14400 2005-05-03  Peter Bartok  <pbartok@novell.com>
14402         * Control.cs: Modified version of Jonathan Chamber's fix for
14403           double-buffering
14405 2005-05-03  Jackson Harper  <jackson@ximian.com>
14407         * ListView.cs: Remove redraw variable. Control now handles whether
14408         or not a redraw needs to be done, and will only raise the paint
14409         event if redrawing is needed.
14411 2005-05-03  Jackson Harper  <jackson@ximian.com>
14413         * Splitter.cs: No decorations for the splitter form. Cache the
14414         hatch brush.
14416 2005-05-03  Jackson Harper  <jackson@ximian.com>
14418         * TreeView.cs: Use dashed lines to connect nodes. Use the
14419         ControlPaint method for drawing the focus rect instead of doing
14420         that in treeview.
14422 2005-05-02  Peter Bartok  <pbartok@novell.com>
14424         * LinkLabel.cs: Fixed the fixes from r43566 and 43521
14426 2005-04-29  Jackson Harper  <jackson@ximian.com>
14428         * ThemeWin32Classic.cs: Don't clear the GC that will clear the
14429         entire image buffer. Just clear the clipping rectangle.
14431 2005-04-29  Jackson Harper  <jackson@ximian.com>
14433         * ThemeWin32Classic.cs: Don't draw list view items that are
14434         outside the clipping rectangle.
14436 2005-04-29  Jordi Mas i Hernandez <jordi@ximian.com>
14438         * ListBox.cs: added horizontal item scroll
14440 2005-04-29  Jackson Harper  <jackson@ximian.com>
14442         * ThemeWin32Classic.cs: Remove some old debug code that was
14443         causing flicker with the new double buffering code.
14445 2005-04-29  John BouAntoun  <jba-mono@optusnet.com.au>
14447         * MonthCalendar.cs, DateTimePicker.cs: Made monthcalendar dropdwon
14448         behave like combobox and comboboxlist (still not sure if this is
14449         correct though).
14451 2005-04-28  Jackson Harper  <jackson@ximian.com>
14453         * ThemeWin32Classic.cs: Don't fill the middle of progress
14454         bars. This fills areas outside of the clip bounds that don't need
14455         to be filled.
14457 2005-04-28  Jackson Harper  <jackson@ximian.com>
14459         * Control.cs: Don't expose functionality to touch the image buffers.
14460         * ProgressBar.cs:
14461         * ListView.cs: We do not need to (and no longer can) manipulate
14462         the image buffers directly. All of this is handled by Control.
14464 2005-04-28  Peter Bartok  <pbartok@novell.com>
14466         * RichTextBoxSelectionAttribute.cs, RichTextBoxSelectionTypes.cs,
14467           RichTextBoxScrollBars.cs, RichTextBoxStreamType.cs,
14468           RichTextBoxFinds.cs, RichTextBoxWordPunctuations.cs: Added
14470 2005-04-28  Jordi Mas i Hernandez <jordi@ximian.com>
14472         * Combobox:
14473                 - Adjust control's height for non-simple comboboxes (bug fix)
14474                 - Remove dead code
14475         * MenuAPI.cs: remove unused var
14476         * ScrollBar.cs: remove unsed var
14477                  
14478         * ListBox.cs: unselect items when clearing
14480 2005-04-28  Jordi Mas i Hernandez <jordi@ximian.com>
14482         * ListControl.cs: honors OnPositionChanged and default Selected Item
14483         * ListBox.cs: unselect items when clearing
14485 2005-04-27  Jackson Harper  <jackson@ximian.com>
14487         * X11Keyboard.cs: Initialize a default keyboard and give a warning
14488         if a "correct" keyboard is not found. This will make us not crash,
14489         but might give some users bad keyboard layouts...seems to be the
14490         same thing rewind does.
14492 2005-04-27  Jackson Harper  <jackson@ximian.com>
14494         * BindingManagerBase.cs: Attach the current/position changed
14495         handlers to their respective events.
14497 2005-04-27  Jackson Harper  <jackson@ximian.com>
14499         * Control.cs: Make sure that the first WM_PAINT does a full draw,
14500         not just a blit.
14501         * ThemeWin32Classic.cs: Don't fill the background for picture
14502         boxes. This could overright user drawing.
14503         * ComboBox.cs: Just fill the clipping rect not the entire client
14504         rect when drawing the background. This prevents pieces of the
14505         image buffer from getting overwritten and is theoretically faster.
14507 2005-04-26  Jordi Mas i Hernandez <jordi@ximian.com>
14509         * ComboBox.cs: Databinding support fixes, fire missing events
14510         * ListControl.cs: implement missing methods and properties, fixes
14511         * ThemeWin32Classic.cs: Databiding support on Drawing
14512         * CheckedListBox.cs: Databinding support fixes, fire missing events
14513         * ListBox.cs: Databinding support fixes, fire missing events
14514         
14515 2005-04-25  Peter Bartok  <pbartok@novell.com>
14517         * LinkLabel.cs: Length of LinkArea is not allowed to be negative
14519 2005-04-25  Jackson Harper  <jackson@ximian.com>
14521         * TreeView.cs: Use the horizontal scrollbars height not width when
14522         determining how much of the client area is available.
14524 2005-04-25  Jackson Harper  <jackson@ximian.com>
14526         * Control.cs: Double buffering is handled differently now. As per
14527         the spec, the extra buffer is created in the WM_PAINT message and
14528         passed down to the control's drawing code.
14529         * GroupBox.cs:
14530         * Label.cs:
14531         * CheckBox.cs:
14532         * ProgressBar.cs:
14533         * RadioButton.cs:
14534         * ColorDialog.cs:
14535         * ComboBox.cs:
14536         * PropertyGridView.cs:
14537         * UpDownBase.cs:
14538         * MessageBox.cs:
14539         * MenuAPI.cs:
14540         * ListView.cs:
14541         * ButtonBase.cs:
14542         * SizeGrip.cs:
14543         * ScrollBar.cs:
14544         * ListBox.cs:
14545         * TrackBar.cs:
14546         * ToolBar.cs:
14547         * PictureBox.cs:
14548         * DateTimePicker.cs:
14549         * StatusBar.cs:
14550         * TreeView.cs: Update to new double buffering system.
14551         * MonthCalendar.cs: Uncomment block, as Capture is now
14552         working. Update to new double buffering
14553         * LinkLabel.cs: Lazy init the link collection. Update to new double buffering
14554         * PaintEventArgs.cs: New internal method allows us to set the
14555         graphics object. This is used for double buffering.
14556         * ThemeWin32Classic.cs: Give the picture box drawing code a clip
14557         rectangle. The internal paint_area var has been removed from
14558         StatusBar. The clipping rect should be used instead.
14559         * Theme.cs: Give the PictureBox drawing method a clipping rect.
14560         * TabPage.cs: The RefreshTabs method was removed, so just call the
14561         tab controls Refresh method now.
14562         * TabControl.cs: Update to new double buffering. Make sure the
14563         handle is created before sizing the tab pages, otherwise we will
14564         get stuck in a loop.
14566 2005-04-24  Borja Sanchez Zamorano <borsanza@gmail.com>
14568         * LinkLabel.cs: Fix typo, bug #74719; patch
14569           from Borja Sanchez Zamorano
14571 2005-04-22  Jackson Harper  <jackson@ximian.com>
14573         * TreeNode.cs: Implement Handle stuff.
14574         * TreeView.cs: Utility methods so nodes can get/lookup by handle.
14576 2005-04-22  Jordi Mas i Hernandez <jordi@ximian.com>
14578         * DataGridTextBoxColumn.cs: call base constructors, fixes
14579         * GridColumnStylesCollection.cs: missing events, methods, and functionality
14580         * GridTableStylesCollection.cs: fixes, check duplicate mapping names
14581         * DataGridTableStyle.cs: implements create default column styles
14582         * DataGridBoolColumn.cs: which types can handle
14583         * DataGrid.cs: missing methods, fixes, new functionality
14584         * DataGridColumnStyle.cs: fixes
14586 2005-04-20  Alexander Olk  <xenomorph2@onlinehome.de>
14587         * FolderBrowserDialog.cs:
14588         - Use a thread to fill the TreeView
14589         - Adjusted some sizes
14591 2005-04-19  Peter Bartok  <pbartok@novell.com>
14593         * LinkLabel.cs: (Re-)create the pieces when setting the Text
14594           property. Fixes #74360.
14596 2005-04-19  Jackson Harper  <jackson@ximian.com>
14598         * XEventQueue.cs: Lock when getting the lockqueue size.
14599         * PictureBox.cs: Call base OnPaint
14600         
14601 2005-04-19  Peter Bartok  <pbartok@novell.com>
14603         * XplatUIX11.cs: Fixed bug introduced with the HWND rewrite, Async
14604           messages were no longer being processed (this broke BeginInvoke)
14606           
14607 2005-04-18  Jackson Harper  <jackson@ximian.com>
14609         * TreeView.cs: buglet that caused node images to get drawn
14610         regardless of whether or not they were in the clipping rectangle.
14612 2005-04-18  Jackson Harper  <jackson@ximian.com>
14614         * CurrencyManager.cs: There are four rules for GetItemProperties:
14615         - If the type is an array use the element type of the array
14616         - If the type is a typed list, use the type
14617         - If the list contains an Item property that is not an object, use
14618         that property
14619         - use the first element of the list if there are any elements in
14620         the list.
14621         
14622 2005-04-17  Jackson Harper  <jackson@ximian.oom>
14624         * TreeView.cs: Calculate plus minus and checkbox bounds when there is a
14625         click. This handles offsets for scrolling properly and reduces
14626         memory. Also fixed GetNode to not offset now that TopNode works
14627         properly.
14628         * TreeNode.cs: No longer need to track the plus minus or checkbox bounds.
14629         
14630 2005-04-17  Jackson Harper  <jackson@ximian.com>
14632         * CursorConverter.cs: Initial implementation.
14634 2005-04-15  Jordi Mas i Hernandez <jordi@ximian.com>
14636         * ListControl.cs: work towards complex data binding support on ListControl
14637         * CurrencyManager.cs: work towards complex data binding support on ListControl
14638         * ListBox.cs: work towards complex data binding support on ListControl
14641 2005-04-15  Jordi Mas i Hernandez <jordi@ximian.com>
14643         * GridTableStylesCollection.cs: fixes name and constructor
14644         * DataGridTableStyle.cs: fixes
14645         * DataGridBoolColumn.cs: fixes names and constructors
14646         * DataGrid.cs: define methods and properties. Some init implementations
14647         * DataGridCell.cs: define methods and properties. Some init implementations
14648         * GridTablesFactory.cs: Define methods and properties
14650 2005-04-15  Geoff Norton  <gnorton@customerdna.com>
14652         * XplatUIOSX.cs:  Handle proper mouse tracking even if the current
14653         graphics port changes.  We still want the coordinates in global screen
14654         coordinates.
14656 2005-04-14  Jackson Harper  <jackson@ximian.com>
14658         * TreeView.cs: Handle clicks when plus minus is disabled. Don't
14659         check plus minus or checkbox clicks unless those features are enabled.
14661 2005-04-14  Jackson Harper  <jackson@ximian.com>
14663         * TreeView.cs: Add methods for setting the top and bottom visible
14664         nodes. TreeNode::EnsureVisible uses these methods.
14665         * TreeNode.cs: Implement EnsureVisible
14667 2005-04-13  Jordi Mas i Hernandez <jordi@ximian.com>
14669         * Form.cs: Pospone menu assignation if the window has not been created yet
14670         * XplatUIWin32.cs: Fixes Win32SetWindowPos, then does not change window
14671         size and position
14673 2005-04-12  Jackson Harper  <jackson@ximian.com>
14675         * TreeView.cs: Set the TopNode properly when scrolling
14676         occurs. This has the added benifit of reducing the amount of
14677         walking that needs to be done when drawing. Also removed an old
14678         misleading TODO.
14679         * OpenTreeNodeEnumerator.cs: Fix moving backwards.
14680         
14681 2005-04-11  Jordi Mas i Hernandez <jordi@ximian.com>
14683         * Timer.cs: fixes interval setting when the timer is already enabled
14684         
14685 2005-04-10  Alexander Olk  <xenomorph2@onlinehome.de>
14687         * FolderBrowserDialog.cs: First approach
14689 2005-04-09  Peter Bartok  <pbartok@novell.com>
14691         * FolderBrowserDialog: Added
14693 2005-04-07  Jordi Mas i Hernandez <jordi@ximian.com>
14695         * LinkLabel.cs: move drawing code into the theme
14696         * ThemeWin32Classic.cs: drawing code and painting background bugfix
14697         * Theme.cs: define DrawLinkLabel method
14699 2005-04-05  Jackson Harper  <jackson@ximian.com>
14701         * BindingContext.cs: Use weak references so these bad actors don't
14702         stay alive longer then they need to.
14704 2005-04-05  Jackson Harper  <jackson@ximian.com>
14706         * ListControl.cs: Basic implementation of complex databinding.
14707         * ComboBox.cs:
14708         * ListBox.cs: Add calls to ListControl databinding methods.
14710 2005-04-05  Alexander Olk  <xenomorph2@onlinehome.de>
14712         * FileDialog.cs:
14713           - Don't change PopupButtonState to Normal when the
14714             PopupButton gets pressed several times.
14715           - Renamed ButtonPanel to PopupButtonPanel
14717 2005-04-05  Jordi Mas i Hernandez <jordi@ximian.com>
14719         * ColorDialog.cs: Use cached objects instead of creating them
14720         * LinkLabel.cs: Use cached objects instead of creating them
14721         * Splitter.cs: Use cached objects instead of creating them
14722         * FontDialog.cs: Use cached objects instead of creating them
14723         * PropertyGridView.cs: Use cached objects instead of creating them
14724         * MessageBox.cs: Use cached objects instead of creating them
14725         * FileDialog.cs: Use cached objects instead of creating them
14726         * ThemeWin32Classic.cs: Use cached objects instead of creating them
14727         * TreeView.cs: Use cached objects instead of creating them
14728         
14729 2005-04-04  Jordi Mas i Hernandez <jordi@ximian.com>
14731         * Control.cs: use Equals to compare the font since no == op
14732         * ScrollBar.cs: use Equals to compare the font since no == op
14734 2005-04-04  Alexander Olk  <xenomorph2@onlinehome.de>
14736         * SaveFileDialog.cs: Open stream in OpenFile with FileMode Create
14738 2005-04-01  Jackson Harper  <jackson@ximian.com>
14740         * Binding.cs: Implement IsBinding.
14741         * BindingManagerBase.cs:
14742         * PropertyManager.cs:
14743         * CurrencyManager.cs: Add IsSuspended property.
14745 2005-04-01  Jackson Harper  <jackson@ximian.com>
14747         * Binding.cs: Had some IsAssignableFrom calls backwards.
14749 2005-04-01  Jackson Harper  <jackson@ximian.com>
14751         * Binding.cs: Handle null data members when pulling data.
14752         * PropertyManager.cs: Handle the data member being a property that
14753         does not exist.
14755 2005-04-01  Jordi Mas i Hernandez <jordi@ximian.com>
14757         * DataGridTextBoxColumn.cs: fixes signature
14758         * DataGrid.cs: calls right constructor
14760 2005-04-01  Jordi Mas i Hernandez <jordi@ximian.com>
14762         * DataGridTextBoxColumn.cs: implements DataGridTextBoxColumn class
14763         * GridColumnStylesCollection.cs: implements GridColumnStylesCollection
14764         * GridTableStylesCollection.cs: implements GridTableStylesCollection
14765         * DataGridTableStyle.cs: implements DataGridTableStyle
14766         * DataGridBoolColumn.cs: implements DataGridBoolColumn
14767         * DataGridTextBox.cs: implements DataGridTextBox
14768         * DataGridColumnStyle.cs: implements DataGridColumnStyle
14770 2005-03-31  Alexander Olk  <xenomorph2@onlinehome.de>
14772         * FileDialog.cs: Added simple PopupButton class for ButtonPanel
14774 2005-03-29  Peter Bartok  <pbartok@novell.com>
14776         * Application.cs:
14777           - Properly implemented CompanyName property
14778           - Fixed LocalUserAppDataPath and UserAppDataPath, now properly
14779             returns a path that includes CompanyName, ProductName and
14780             Version (fixes bug #70330)
14782 2005-03-29  Stefan Buehler  <sbuehler@gmx.ch>
14784         * TabPage.cs: Don't use Owner.DisplayRectangle unless owner is valid,
14785           fixes bug #72588.
14787 2005-03-28  Alexander Olk  <xenomorph2@onlinehome.de>
14789         * FileDialog.cs, SaveFileDialog.cs OpenFileDialog.cs:
14790         
14791           - Added ReadOnly CheckBox
14792           - Further refactoring: moved some code from Open-/SaveFileDialog
14793             to FileDialog
14795 2005-03-28  Alexander Olk  <xenomorph2@onlinehome.de>
14797         * OpenFileDialog.cs: Fixed CheckFileExists
14798         * FileDialog.cs:
14799           Moved FileView and DirComboBox outside FileDialog class.
14800           They can now be used outside FileDialog
14802 2005-03-27  Alexander Olk  <xenomorph2@onlinehome.de>
14804         * FileDialog.cs: Added a contextmenu to change ShowHiddenFiles
14805         * SaveDialog.cs, OpenFileDialog.cs: Fixes for Reset() method
14807 2005-03-27  Alexander Olk  <xenomorph2@onlinehome.de>
14809         * FileDialog.cs, OpenFileDialog.cs, SaveFileDialog.cs:
14810           - Added missing CreatePrompt property in SaveDialog
14811           - Overall SaveDialog handling should be better now
14812           - Added non standard ShowHiddenFiles property
14813           - Added extension, CreatePrompt and OverwritePrompt support in SaveDialog
14814           - Added InitialDirectory and RestoreDirectory support
14816 2005-03-26  Alexander Olk  <xenomorph2@onlinehome.de>
14818         * FileDialog.cs: Made dirComboBox usable
14820 2005-03-24  Alexander Olk  <xenomorph2@onlinehome.de>
14822         * FileDialog.cs: Added Filter support (case sensitiv)
14824 2005-03-24  Jackson Harper  <jackson@ximian.com>
14826         * TabControl.cs: Need a couple more pixels for the lines.
14828 2005-03-23  Jackson Harper  <jackson@ximian.com>
14830         * TabControl.cs: Give the tab page focus when it is selected.
14832 2005-03-23  Jackson Harper  <jackson@ximian.com>
14834         * TabControl.cs: Account for the drawing of tabs borders when
14835         invalidating. If the slider was clicked dont do click detection on
14836         the tabs.
14838 2005-03-23  Jackson Harper  <jackson@ximian.com>
14840         * TabControl.cs: Fix typo, emilinates an unneeded expose event.
14842 2005-03-22  Jonathan Chambers  <jonathan.chambers@ansys.com>
14844         * CategoryGridEntry.cs: Added
14845         * GridItem.cs: Added helper properties
14846         * PropertyGridTextBox.cs: Custom textbox control for PropertyGrid.
14847         * GridEntry.cs: Updated code for collection
14848         * PropertyGrid.cs: Cleaned up some formatting
14849         * PropertyGridView.cs: Added drop down functionality for enums.
14850         * GridItemCollection.cs: Added enumerator logic
14851         * PropertyGridEntry.cs: Added
14853 2005-03-19  Alexander Olk  <xenomorph2@onlinehome.de>
14855         * FileDialog.cs:
14856           - Removed unnecessary commented code
14857           - Fixed handling for entering the filename manually in the combobox
14859 2005-03-19  Alexander Olk  <xenomorph2@onlinehome.de>
14861         * FileDialog.cs, OpenFileDialog.cs: OpenFileDialog Multiselect now works
14863 2005-03-18  Peter Bartok  <pbartok@novell.com>
14865         * ThemeWin32Classic.cs: Moved listview column headers a bit, to avoid
14866           them being touching the border
14868 2005-03-18  Peter Bartok  <pbartok@novell.com>
14870         * TextControl.cs: Quick hack to center text better
14872 2005-03-18  Peter Bartok  <pbartok@novell.com>
14874         * ControlPaint.cs:
14875           - Don't throw NotImplemented exceptions, just print a notice once
14876             instead (requested by Miguel). This makes running existing SWF
14877             apps a bit easier
14878         * Control.cs:
14879           - Commented out Drag'N'Drop XplatUI call (no driver support yet)
14880           - Added context menu trigger on right click
14881         * Panel.cs: Trigger invalidate on resize
14882         * StatusBar.cs:
14883           - Removed old double-buffer drawing
14884           - Added ResizeRedraw style to force proper update of statusbar
14885         * ListView.cs:
14886           - Removed debug output
14887         * ThemeWin32Classic.cs:
14888           - Fixed drawing of status bar, now draws Text property if there
14889             are no defined panels
14891 2005-03-18  Jackson Harper  <jackson@ximian.com>
14893         * ImageList.cs: When the image stream is set pull all the images
14894         from it.
14895         * ImageListStreamer.cs: Implement reading image list streams.
14897 2005-03-18  Peter Bartok  <pbartok@novell.com>
14899         * ThemeWin32Classic.cs (DrawPictureBox):
14900           - Fixed calculations for centered drawing
14901           - Fixed drawing for normal mode, not scaling the image on normal
14903 2005-03-18  Peter Bartok  <pbartok@novell.com>
14905         * ComboBox.cs: Now also firing the OnKeyPress events for the embedded
14906           textbox
14907         * FileDialog.cs:
14908           - Made Open/Save button the accept button for FileDialog
14909           - Tied the cancel button to the IButtonControl cancel button
14910           - Save/Open now properly builds the pathname
14911           - Now handles user-entered text
14912           - Preventing crash on right-click if no item is selected
14913           - Fixed Text property, now uses contents of textbox
14914           - Fixed SelectedText property, now just returns the text part that
14915             is selected in the text box
14917 2005-03-18  Jackson Harper  <jackson@ximian.com>
14919         * ThemeWin32Classic.cs: Use the proper func for drawing the focus
14920         rect, make sure to de-adjust the interior rect after drawing the
14921         tab text.
14923 2005-03-18  Peter Bartok  <pbartok@novell.com>
14925         * MenuAPI.cs: Remove menu *before* executing selected action to
14926           prevent the menu from 'hanging around'
14927           
14928 2005-03-17  Geoff Norton  <gnorton@customerdna.com>
14930         * XplatUIOSX.cs: Implemented WorkingArea property
14932 2005-03-17  Peter Bartok  <pbartok@novell.com>
14934         * XplatUIX11.cs: Fixed menu coord calculations
14935         * MenuAPI.cs: Now using new ScreenToMenu()/MenuToScreen() methods
14936           for calculating offsets
14938 2005-03-17  Peter Bartok  <pbartok@novell.com>
14940         * Hwnd.cs: Do not consider menu presence for default client
14941           rectangle location/size
14942         * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs, XplatUIOSX.cs,
14943           XplatUIWin32.cs: Added MenuToScreen() and ScreenToMenu() coord
14944           translation functions
14945         * FileDialog.cs: Fixed (what I presume is a) typo
14947 2005-03-17  Jonathan Gilbert  <logic@deltaq.org>
14949         * XplatUIX11.cs: Added call to XInitThreads() to allow multi-threaded
14950           X access (avoids X-Async errors)
14952 2005-03-16  Jackson Harper  <jackson@ximian.com>
14954         * TabControl.cs: Raise the SelectedIndexChanged event.
14956 2005-03-16  Alexander Olk  <xenomorph2@onlinehome.de>
14958         * FileDialog.cs, OpenFileDialog.cs, SaveFileDialog.cs:
14959           - Removed vertical ToolBar and replaced it with a custom panel
14960             (desktop and home button already work)
14961           - Added Help button (some controls get resized or relocated then)
14962           - Draw correct text depending on Open or Save.
14963           - Fixed some typos...
14965 2005-03-16  Jordi Mas i Hernandez <jordi@ximian.com>
14967         * ScrollBar.cs:
14968           - Only change Maximum and Minimum when need it (bug fix)
14970 2005-03-15  Peter Bartok  <pbartok@novell.com>
14972         * Form.cs: Use Handle for icon, to trigger creation if
14973           the window does not yet exist
14974         * Control.cs:
14975           - CanSelect: Slight performance improvement
14976           - Focus(): Preventing possible recursion
14977           - Invalidate(): Removed ControlStyle based clear flag setting
14978           - WM_PAINT: fixed logic for calling OnPaintBackground
14979           - WM_ERASEBKGND: Fixed logic, added call to new driver method
14980             EraseWindowBackground if the control doesn't paint background
14981         * XplatUIWin32.cs:
14982           - Moved EraseWindowBackground() method to internal methods
14983           - Removed unused WM_ERASEBKGND handling in GetMessage; msg never comes;
14984             is sent via SendMessage on BeginPaint call on Win32
14985         * XplatUIX11.cs:
14986           - Added EraseWindowBackground() method
14987           - No longer sends WM_ERASEBKGND on .Expose, but on call to
14988             PaintEventStart, which more closely matches Win32 behaviour
14989           - Fixed Invalidate() call, now updates new ErasePending Hwnd property
14990           - Fixed SetFocus() to properly deal with client and whole windows
14991         * Hwnd.cs: Added ErasePending property
14992         * XplatUIOSX.cs: Stubbed EraseWindowBackground() method
14993         * XplatUI.cs, XplatUIDriver.cs: Added EraseWindowBackground() method
14995 2005-03-12  Geoff Norton  <gnorton@customerdna.com>
14997         * XplatUIOSX.cs:
14998           - Fix hard loop when timers exist.
14999           - Fix bugs with middle and right click for 3 button mice.
15001 2005-03-11  Peter Bartok  <pbartok@novell.com>
15003         * XplatUIX11.cs:
15004           - get_WorkingArea: Need to call X directly, GetWindowPos only
15005             returns cached data now
15006           - Added sanity check to GetWindowPos hwnd usage
15008 2005-03-11  Jackson Harper  <jackson@ximian.com>
15010         * BindingManagerBase.cs: This method isn't used anymore as
15011         PullData now updates the data in the control.
15013 2005-03-11  Jordi Mas i Hernandez <jordi@ximian.com>
15015         * Form.cs: fixes menu drawing on X11
15016         * MenuAPI.cs:  fixes menu drawing on X11
15018 2005-03-11  Peter Bartok  <pbartok@novell.com>
15020         * Control.cs: Changed OnCreateControl behaviour based on a suggestion
15021           from Jonathan Gilbert; should fix bug #73606
15022         * XplatUIX11.cs: Fixed NC Mouse message coordinates, they need to be
15023           in Screen coordinates. Thanks, Jordi.
15024         * Form.cs: Added missing attribute
15026 2005-03-11  Peter Bartok  <pbartok@novell.com>
15028         * Form.cs:
15029           - Rudimentary Mdi support
15030           - Removed outdated FormParent code
15031           - Implemented lots of missing properties and methods, still missing
15032             transparency support
15033           - Added missing attributes
15034           - Implemented support for MaximumBounds
15035           - Added firing of various events
15036         * XplatUI.cs: Added SetIcon() method
15037         * XplatUIDriver.cs: Added SetIcon() abstract
15038         * XplatUIOSX.cs: Stubbed out SetIcon() method
15039         * XplatUIX11.cs:
15040           - Implemented SetIcon() support
15041           - Moved SetMenu() and SetBorderStyle() to proper alphabetical pos
15042           - Switched to unix line endings
15043         * XplatUIWin32.cs:
15044           - Made POINT internal so for can access it as part of MINMAX
15045           - Implemented SetIcon() support
15046           - Implemented support for CLIENTCREATESTRUCT (but might have to drop
15047             native Mdi support again, might have to go managed)
15048         * Control.cs: Now fires the StyleChanged event
15049         * MdiClient.cs: Added; still mostly empty
15051 2005-03-10  Peter Bartok  <pbartok@novell.com>
15053         * SaveFileDialog.cs: Added emtpy file
15055 2005-03-08  Peter Bartok  <pbartok@novell.com>
15057         * Control.cs: Fixed bug #73190; now invokes CreateControl (which
15058           in turn triggers OnCreateContro) when creating a handle for the
15059           first time.
15060         * TextControl.cs: Fixed endless loop in certain cases when
15061           replacing the current selection
15063 2005-03-08  Jordi Mas i Hernandez <jordi@ximian.com>
15065         * ScrollBar.cs:
15066           - Honors NewValue changes in Scroll events allowing apps to change it
15067           - Adds First and Last Scroll events
15068           - Fixes Thumb events
15070 2005-03-07  Peter Bartok  <pbartok@novell.com>
15072         * Hwnd.cs: Added DefaultClientRectangle property
15073         * XplatUI.cs: Now using the X11 driver Where() method, which provides
15074           more detailed debug information
15075         * XplatUIX11.cs:
15076           - Fixed size-change feedback loop, where we would pull an old size
15077             off the queue and mistakenly change our window's size to an
15078             earlier value
15079           - Now compressing ConfigureNotify events, to reduce looping and
15080             redraw issues
15081         * TextBoxBase.cs: Preventing crash when no text is set and ToString()
15082           is called
15084 2005-03-07  Jackson Harper  <jackson@ximian.com>
15086         * Binding.cs: Push data pushes from data -> property. Check if the
15087         property is readonly when attempting to set it.
15089 2005-03-07  Jackson Harper  <jackson@ximian.com>
15091         * Binding.cs: Format and parse data correctly. Use ASsignableFrom
15092         instead of IsSubclassOf. Pulling data now sets the value on the
15093         control.
15094         * PropertyManager.cs:
15095         * CurrencyManager.cs: Just need to pull data when updating now,
15096         because PullData will set the value on the control.
15098 2005-03-04  Jackson Harper  <jackson@ximian.com>
15100         * Binding.cs: Implement data type parsing and converting on pulled
15101         data. TODO: Are there more ways the data can be converted?
15103 2005-03-04  Jackson Harper  <jackson@ximian.com>
15105         * Binding.cs: Support <Property>IsNull checks. Also bind to the
15106         controls Validating method so we can repull the data when the
15107         control loses focus.
15109 2005-03-03  Jordi Mas i Hernandez <jordi@ximian.com>
15111         * ColumnHeader.cs:
15112           - Fixes null string format
15113           
15114         * ListView.cs:
15115           - Adds enum type checks
15116           - Fixes redrawing and recalc need after changing some properties
15117           - Fixes on focus_item set after the event
15118           - Fixes adding columns after the control has been created
15119           
15120         * ThemeWin32Classic.cs:
15121           - Fixes CheckBox focus rectangle
15122           - Fixes ColumnHeader drawing
15125 2005-03-03  Jackson Harper  <jackson@ximian.com>
15127         * Binding.cs: Bind to <Property>Changed events so we can detect
15128         when properties are changed and update the data.
15130 2005-03-02  Jordi Mas i Hernandez <jordi@ximian.com>
15132         * ImageList.cs:
15133           - Changes 32-bit pixel format to Format32bppArgb to allow transparency
15134           - Fixes ImageList constructor with ImageList container
15135           - Fixes image scaling (wrong parameters at DrawImage)
15137 2005-02-02  Jackson Harper  <jackson@ximian.com>
15139         * Binding.cs: Make property searches case-insensitive. Eliminate
15140         some duplicated code.
15142 2005-03-01  Jordi Mas i Hernandez <jordi@ximian.com>
15144         * ComboBox.cs:
15145                 - Handle focus event
15146                 - Fix scrollbar events
15147                 - Discard highlighted item if remove it
15148                 - Fixes SelectedItem with strings
15150 2005-03-01  Peter Bartok  <pbartok@novell.com>
15152         * Control.cs:
15153           - Fixed Visible property, now follows (once again) parent chain
15154             to return false if any control in the chain is visible=false
15155           - Fixed OnParentVisibleChanged, now just calls OnVisibleChanged event
15156           - Fixed several places where is_visible instead of Visible was used
15157           - Implemented FIXME related to focus selection when setting focused
15158             control to be invisible
15160         * XplatUIWin32.cs: Now using proper method to find out if window is
15161           visible. Thanks to Jordi for pointing it out
15163 2005-02-28  Jordi Mas i Hernandez <jordi@ximian.com>
15165         * ComboBox.cs: show/hide scrollbar instead of creating it
15167 2005-02-27  Jackson Harper  <jackson@ximian.com>
15169         * CurrencyManager.cs: Add PositionChanged stuff.
15171 2005-02-27  Peter Bartok  <pbartok@novell.com>
15173         * XplatUI.cs, XplatUIDriver.cs: Added new GetMenuOrigin() method
15174         * XplatUIOSX.cs: Added GetMenuOrigin() stub
15175         * XplatUIWin32.cs: Implemented GetMenuOrigin()
15176         * XplatUIX11.cs:
15177           - Implemented GetMenuDC()
15178           - Implemented GetMenuOrigin()
15179           - Implemented ReleaseMenuDC()
15180           - Implemented generation of WM_NCPAINT message
15181           - Implemented generation and handling of WM_NCCALCSIZE message
15182         * Form.cs: Added debug helper message for Jordi's menu work
15183         * Hwnd.cs:
15184           - Modified ClientRect property; added setter, fixed getter to handle
15185             setting of ClientRect
15186           - Added MenuOrigin property
15188 2005-02-26  Peter Bartok  <pbartok@novell.com>
15190         * XplatUIX11.cs:
15191           - Destroys the caret if a window that's being destroyed contains it
15192           - Ignores expose events coming from the X11 queue for windows that
15193             already are destroyed
15194           - Now uses the proper variable for handling DestroyNotify, before we
15195             marked the wrong window as destroyed
15196           - Improved/added some debug output
15198 2005-02-26  Peter Bartok  <pbartok@novell.com>
15200         * X11Keyboard.cs: Fixes to work on 64bit systems
15202 2005-02-26  Peter Bartok  <pbartok@novell.com>
15204         * Control.cs:
15205           - Now calling OnHandleDestroyed from DestroyHandle()
15206             instead of Dispose()
15207           - Removed bogus call to controls.Remove() from DestroyHandle()
15209 2005-02-26  Peter Bartok  <pbartok@novell.com>
15211         * Control.cs: Properly destroy child windows when our handle is
15212           destroyed
15214 2005-02-25  Peter Bartok  <pbartok@novell.com>
15216         * XplatUI.cs:
15217           - Added 'DriverDebug' define to allow tracing XplatUI API calls
15218           - Alphabetized Static Methods and Subclasses
15220         * XplatUIX11.cs:
15221           - Added XException class to allow custom handling of X11 exceptions
15222           - Created custom X11 error handler, tied into XException class
15223           - Added support for MONO_XEXCEPTIONS env var to allow the user
15224             to either throw an exception on X errors or continue running
15225             after displaying the error
15226           - Added handling of DestroyNotify message
15227           - Added handler for CreateNotify message (still disabled)
15228           - Improved (tried to at least) Where method to provide file and lineno
15229         * X11Structs.cs:
15230           - Added XErrorHandler delegate
15231           - Added XRequest enumeration (to suppor translation of errors)
15233 2005-02-25  Jackson Harper  <jackson@ximian.com>
15235         * PropertyManager.cs: Implement editing features
15236         * CurrencyManager.cs:
15237         * Binding.cs: First attempt at UpdateIsBinding
15238         * BindingManagerBase.cs: Call UpdateIsBinding before
15239         pushing/pulling data.
15241 2005-02-25  Jordi Mas i Hernandez <jordi@ximian.com>
15243         * MenuAPI.cs: Respect disabled items
15244         * ThemeWin32Classic.cs
15245                 - Caches ImageAttributes creation for DrawImageDisabled
15246                 - Fixes vertical menu line drawing
15247                 - Draws disabled arrows in disable menu items
15249 2005-02-24  Peter Bartok  <pbartok@novell.com>
15251         * Hwnd.cs:
15252           - Added UserData property to allow associating arbitrary objects
15253             with the handle
15254           - Fixed leak; now removing Hwnd references from static windows array
15255         * XplatUIWin32.cs:
15256           - Fixed Graphics leak in PaintEventEnd
15257           - Removed usage of HandleData, switched over to Hwnd class
15258         * HandleData.cs: Removed, obsoleted by Hwnd.cs
15260 2005-02-24  Jordi Mas i Hernandez <jordi@ximian.com>
15262         * ThemeWin32Classic.cs: Adds Cliping to TrackBar drawing
15263         * ScrollBar.cs: Fixes bug
15264         * TrackBar.cs: removes death code, clipping, mimize refreshes,
15265          keyboard navigation enhancements
15267 2005-02-24  Jordi Mas i Hernandez <jordi@ximian.com>
15269         * Control.cs: Call DefWndProc at WM_PAINT only if UserPaint not defined
15270         * GroupBox.cs: Add control styles
15271         * Label.cs: Add control styles
15272         * UpDownBase.cs: Add control styles
15273         * ListBox.cs: Add control styles
15274         * XplatUIWin32.cs: Fixes wrong parameter order
15277 2005-02-23  Chris Bacon  <chris.bacon@docobo.co.uk>
15279         * ListView.cs: Assign owner for ColumnHeader. Patch by Chris Bacon
15281 2005-02-23  Jackson Harper  <jackson@ximian.com>
15283         * PropertyManager.cs: Implement property binding. This doesn't
15284         seem to work yet though as (I think) there are some bugs in
15285         System.ComponentModel.PropertyDescriptor.
15286         * BindingContext.cs: Use new PropertyManager constructor.
15288 2005-02-23  Jordi Mas i Hernandez <jordi@ximian.com>
15290         * ProgressBar.cs: use clip region in ProgressBar
15291         * ThemeWin32Classic.cs: use clip region in ProgressBar
15293 2004-02-22  Jackson Harper  <jackson@ximian.com>
15295         * BindingsCollection.cs: Remove some debug code.
15297 2005-02-22  Jackson Harper  <jackson@ximian.com>
15299         * BindingContext.cs:
15300         * ControlBindingsCollection.cs:
15301         * CurrencyManager.cs:
15302         * Binding.cs:
15303         * BindingManagerBase.cs: Initial implementation
15304         * BindingsCollection.cs: Add an internal contains method that the
15305         BindingManagerBase uses to ensure bindings aren't added twice to
15306         the collection.
15307         * PropertyManager.cs: Stubbed out.
15308         * Control.cs:
15309         * ContainerControl.cs: Hook up databinding
15310         
15311 2005-02-22  Geoff Norton  <gnorton@customerdna.com>
15313         * XplatUIOSX.cs:
15314           OSXStructs.cs: Refactored to handle the new Hwnd NC logic area.
15315           Fixed Invalidate/Update chain.
15316           Fixed tons of other minor bugs (this is almost a complete rewrite).
15318 2005-02-22  Jordi Mas i Hernandez <jordi@ximian.com>
15320         * ComboBox.cs: do subcontrol creation when the control is created
15322 2005-02-19  Jordi Mas i Hernandez <jordi@ximian.com>
15324         * Label.cs: fixes image drawing (image and imagelist)
15325         * ThemeWin32Classic.cs: cache brushes
15326         
15327 2005-02-19  Jordi Mas i Hernandez <jordi@ximian.com>
15329         * Form.cs: Move menu drawing code to Theme class
15330         * ComboBox.cs: Move ComboBox drawing code to Theme class
15331         * MenuItem.cs: Move menu drawing code to Theme class
15332         * MenuAPI.cs: Move menu drawing code to Theme class
15333         * ThemeWin32Classic.cs: New methods
15334         * CheckedListBox.cs: Move CheckedListbox drawing code to Theme class
15335         * ListBox.cs: Move Listbox drawing code to Theme class
15336         * Theme.cs: New methods
15338 2005-02-20  Peter Bartok  <pbartok@novell.com>
15340         * Control.cs:
15341           - Fixed ProcessKeyEventArgs to also handle WM_SYSKEY messages (and
15342             only process mnemonics on those)
15343           - Fixed event sequence for key handling; first calling
15344             ProcessKeyEventArgs now
15345         * TextBoxBase.cs:
15346           - Removed WM_KEYDOWN hook, instead we now use ProcessDialogKey()
15347             for processing non-character keys
15348           - Fixed WM_CHAR to generate proper event sequence before processing
15349         * XplatUIWin32.cs: Added ALT key state to ModifierKeys property
15350           generation
15352 2005-02-19  Peter Bartok  <pbartok@novell.com>
15354         * UserControl.cs: Added TextChanged event; added attributes
15355         * SizeGrip.cs: Implemented resizing and optional display of grip
15356         * Form.cs: Fixed attribute
15357         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs, XplatUIWin32.cs:
15358           Changed meaning of ScrollWindow bool argument; instead of the
15359           clear attribute (which will be true usually anyway), it gives the
15360           option of moving child controls as well.
15361         * XplatUIX11.cs:
15362           - Changed to match new ScrollWindow argument
15363           - Fixed GetWindowPos/SetWindowPos behaviour for toplevel controls,
15364             now handles the implicit parent window a WM puts around us
15365         * ScrollableControl.cs: Implemented (not the prettiest, but it seems
15366           to work)
15367         * TextBoxBase.cs: Adjusted to new ScrollWindow arguments
15368         * TreeView.cs: Adjusted to new ScrollWindow arguments
15370 2005-02-19  Jordi Mas i Hernandez <jordi@ximian.com>
15372         * Form.cs: Menu integration with non-client area
15373         * MenuItem.cs: Menu integration with non-client area
15374         * MenuAPI.cs: Menu integration with non-client area
15376 2005-02-18  Peter Bartok  <pbartok@novell.com>
15378         * MethodInvoker.cs: Added
15379         * MdiLayout.cs: Added
15380         * SendKeys.cs: Started implementation
15381         * ErrorIconAlignment.cs: Added
15383 2005-02-18  Peter Bartok  <pbartok@novell.com>
15385         * XplatUIWin32.cs: Implemented SetMenu(); fixed GetMenuDC()
15386         * Form.cs: Added handling for Menu-related Non-client messages
15388 2005-02-17  Peter Bartok  <pbartok@novell.com>
15390         * UpDownBase.cs: Fixed typo, compilation errors
15391         * DomainUpDown.cs: Fixed attribute value
15393 2005-02-16  Miguel de Icaza  <miguel@novell.com>
15395         * UpDownBase.cs: Attach entry events.
15396         Propagate events.
15397         Add ForeColor property, Focused, InterceptArrowKeys (interception
15398         does not work yet).
15400 2005-02-17  Jordi Mas i Hernandez <jordi@ximian.com>
15402         * Form.cs:
15403                 - Redraw non client are on Setmenu
15404                 - Calc proper menu starting point
15406 2005-02-17  Peter Bartok  <pbartok@novell.com>
15408         * Application.cs: Fixed message_filter check
15410 2005-02-17  Peter Bartok  <pbartok@novell.com>
15412         * Application.cs: Now calls registered message filters
15413         * DockStyle.cs: Fixed attribute
15414         * Form.cs: Fixed attribute
15415         * Menu.cs: Fixed attribute
15416         * ToolTip.cs: Fixed attribute
15417         * TreeNode.cs: Added missing attributes and arranged in regions
15418         * PropertyGrid.cs: Fixed signatures
15419         * TreeNodeCollection.cs: Added attributes
15420         * Splitter.cs: Added missing attributes; arranged into regions
15421         * TabPage.cs: Added missing attributes; arranged into regions
15422         * TextBoxBase.cs: Added missing attributes
15423         * TextBox.cs: Added missing attributes
15424         * ArrangeDirection.cs: Added missing attributes
15425         * TreeNodeConverter.cs: Added stub (needed for TreeNode)
15426         * ToolBarButton.cs: Fixed attributes
15427         * AnchorStyles.cs: Fixed attribute
15428         * TrackBar.cs: Fixed attributes
15429         * TabControl.cs: Added missing attributes and arranged into regions
15430         * ToolBar.cs: Fixed attribute
15431         * StatusBar.cs: Fixed signature, organized into regions and added
15432           attributes
15433         * StatusBarPanel.cs: Fixed attributes
15434         * ContentsResizedEventArgs.cs: Implemented
15435         * ContentsResizedEventHandler.cs: Implemented
15436         * DateBoldEventArgs.cs: Implemented
15437         * DateBoldEventHandler.cs: Implemented
15438         * UpDownEventArgs.cs: Implemented
15439         * UpDownEventHandler.cs: Implemented
15440         
15441 2005-02-16  Jordi Mas i Hernandez <jordi@ximian.com>
15443         * Form.cs: first Menu NC refactoring
15444         * MenuAPI.cs: first Menu NC refactoring
15445         
15446 2005-02-16  Peter Bartok  <pbartok@novell.com>
15448         * ImeMode.cs: Added missing attributes
15449         * Menu.cs: Fixed attribute
15450         * GroupBox.cs: Fixed attribute
15451         * Label.cs: Fixed attribute
15452         * ColorDialog.cs (RunDialog): Removed TODO attribute
15453         * ComboBox.cs: Fixed attributes
15454         * ListControl.cs: Added missing attributes
15455         * PropertyGrid.cs: Fixed attributes
15456         * Control.cs: Fixed attributes
15457         * ListViewItem.cs: Added TypeConverter attribute
15458         * NotifyIcon.cs: Fixed attributes
15459         * ListView.cs: Fixed attributes
15460         * ButtonBase.cs: Fixed attribute
15461         * ImageList.cs: Added missing attributes
15462         * ContainerControl.cs: Fixed signature
15463         * CheckedListBox.cs: Fixed attribute; added missing attributes
15464         * Panel.cs: Fixed attributes
15465         * PropertyTabChangedEventArgs.cs: Added missing attribute
15466         * PropertyValueChangedEventArgs.cs: Added missing attribute
15467         * Binding.cs: Fixed attribute
15468         * ListViewItemConverter: Implemented ListViewSubItemConverter class
15469         * ListBox.cs: Fixed attribute; added missing attributes;
15470         * ScrollableControl.cs: Added missing attributes
15471         * PictureBox.cs: Added missing attributes; implemented missing property
15472         * DateTimePicker.cs: Added missing attributes
15473         * Theme.cs (ToolWindowCaptionHeight): Fixed type
15474         * MonthCalendar.cs: Fixed attributes
15475         * StatusBarPanel.cs: Added missing attributes
15476         * SystemInformation.cs (ToolWindowCaptionHeight): Fixed type
15478 2005-02-16  Peter Bartok  <pbartok@novell.com>
15480         * TextBoxBase.cs: The previous method to enforce height yet remember
15481           the requested high was less than ideal, this is an attempt to do
15482           it better.
15483         * Control.cs: Added comment about possible problem
15484         * Copyright: Updated format
15485         * GridItemType.cs: Fixed swapped values
15487 2005-02-15  Jackson Harper  <jackson@ximian.com>
15489         * BaseCollection.cs: Use property so we never access an
15490         uninitialized list. Also initialize the list in the property.
15492 2005-02-15  Peter Bartok  <pbartok@novell.com>
15494         * GroupBox.cs (ProcessMnemonic): Implemented
15495         * Label.cs (ProcessMnemonic): Implemented
15496         * ThemeWin32Classic.cs (DrawGroupBox): Added stringformat to show
15497           hotkeys
15499 2005-02-15  Peter Bartok  <pbartok@novell.com>
15501         * RadioButton.cs (ProcessMnemonic): Implemented
15502         * CheckBox.cs (ProcessMnemonic): Implemented
15503         * Control.cs:
15504           - Added handling of WM_SYSxxx keyboard messages to support mnemonic
15505             handling
15506           - Added internal method to allow calling ProcessMnemonic from other
15507             controls
15508         * ContainerControl.cs:
15509           - Started support for handling validation chain handling
15510           - Implemented ProcessMnemonic support
15511           - Added Select() call to Active, to make sure the active control
15512             receives focus
15513         * Form.cs: Setting toplevel flag for Forms (this was lost in the
15514           FormParent rewrite)
15515         * ThemeWin32Classic.cs:
15516           - DrawCheckBox(): Fixed stringformat to show hotkeys
15517           - DrawRadioButton(): Fixed stringformat to show hotkeys
15518         * CommonDialog.cs: Removed WndProc override, not needed
15520 2005-02-14  Peter Bartok  <pbartok@novell.com>
15522         * XplatUIX11.cs: Fixed NotImplemented exceptions for properties,
15523           missed those in the rewrite
15525 2005-02-14  Miguel de Icaza  <miguel@novell.com>
15527         * NumericUpDown.cs (Increment, ToString): Add.
15528         (DecimalPlaces): implement.
15529         
15530         Add attributes.
15531         
15532         * UpDownBase.cs: Add the designer attributes.
15534 2005-02-13  Peter Bartok  <pbartok@novell.com>
15536         * Panel.cs: Removed border_style, now in Control
15537         * XplatUIDriver.cs: Added SetBorderStyle, SetMenu, GetMenuDC and
15538           ReleaseMenuDC Methods; renmaed ReleaseWindow to UngrabWindow
15540 2005-02-13  Peter Bartok  <pbartok@novell.com>
15542         * MouseButtons.cs: Added missing attributes
15543         * XplatUIStructs.cs: Added enumeration for title styles
15544         * LeftRightAlignment.cs: Added missing attributes
15545         * Hwnd.cs: Switched to use client_window as handle (slower, but makes
15546           it compatible with Graphics.FromHwnd()
15547         * SelectedGridItemChangedEventArgs.cs: Fixed property type
15548         * Keys.cs: Added missing attributes
15549         * SelectionRange.cs: Added missing attributes
15550         * SelectionRangeConverter.cs: Added
15551         * XplatUI.cs:
15552           - Introduced SetBorderStyle, SetMenu, GetMenuDC and
15553             ReleaseMenuDC methods
15554           - Renamed ReleaseWindow to UngrabWindow
15555           - Added proper startup notice to allow version identification
15556         * Form.cs:
15557           - Added missing attributes
15558           - Removed FormParent concept
15559         * Label.cs: Removed border_style field, now in Control
15560         * RadioButton.cs: Now properly selects RadioButton when focus is
15561           received
15562         * ThemeGtk.cs: Fixed SetDisplay call to match new X11 behaviour
15563         * Control.cs:
15564           - Added missing attributes
15565           - Added borderstyle handling
15566           - Removed FormParent concept support
15567           - Fixed calls to XplatUI to match changed APIs
15568           - Fixed bug that would case us to use disposed Graphics objects
15569           - Removed unneeded internal methods
15570           - PerformLayout(): Fixed to handle DockStyle.Fill properly
15571           - SelectNextControl(): Fixed to properly check common parents
15572         * TextBoxBase.cs: Removed border_style field (now in Control)
15573         * MessageBox.cs:
15574           - Patch by Robert Thompson (rmt@corporatism.org): Added icon support,
15575             fixed calculations for form size
15576           - Added support for localized strings and icons
15577           - Improved form size calculations, added border
15578         * ListView.cs: Removed border_style field (now in Control)
15579         * X11Structs.cs: Moved several structs from X11 driver here
15580         * X11Keyboard.cs: Changed debug message
15581         * Application.cs: Removed FormParent concept support
15582         * CommonDialog.cs:
15583           - Resetting end_modal flag
15584           - Removed FormParent concept support
15585         * NativeWindow.cs: Removed FormParent concept support
15586         * XplatUIX11.cs: Rewritten, now using the new Hwnd class, implementing
15587           Client area and Non-Client whole window to allow support for WM_NC
15588           messages
15589         * XplatUIOSX.cs: Updated to match latest driver spec; added exception
15590           prevent using it until it supports Hwnd as per Geoff Norton's request
15591         * ToolBar.cs: Fixed drawing, was not doing proper drawing
15592         * PictureBox.cs: Removed border_style field, now in Control
15593         * XplatUIWin32.cs: Added new driver methods
15595 2005-02-12  Peter Bartok  <pbartok@novell.com>
15597         * OpacityConverter.cs: Implemented
15598         * Hwnd.cs: Internal class to support drivers that need to emulate
15599           client area/non-client area window behaviour
15601 2005-02-11  Peter Bartok  <pbartok@novell.com>
15603         * KeysConverter.cs: Implemented
15605 2005-02-11  Jordi Mas i Hernandez <jordi@ximian.com>
15607         * Menu.cs: fixes methods GetContextMenu, GetMainMenu, ToString
15608         * LinkLabel: Added missing attributes
15609         * MainMenu.cs: fixes ToString
15610         * MenuItem.cs: fixes methods GetContextMenu, GetMainMenu
15611         * ListBox.cs: fixes event position
15612         * TrackBar.cs: adds missing attributes and events
15613         
15614 2005-02-10  Jordi Mas i Hernandez <jordi@ximian.com>
15616         * MenuItem.cs: Use SystemInformation and bug fixes
15617         * MenuAPI.cs: Use SystemInformation and bug fixes
15619 2005-02-09  Jackson Harper  <jackson@ximian.com>
15621         * X11Keyboard.cs: We ignore some keys, but still need to set/reset
15622         their keystate otherwise things like VK_MENU get stuck "on".
15624 2005-02-09  Kazuki Oikawa <kazuki@panicode.com>
15626         * ListBox.cs: Fixes AddRange bug
15627         
15628 2005-02-09  Jordi Mas i Hernandez <jordi@ximian.com>
15630         * ProgressBar.cs
15631                 - Add missing attributes
15632                 - Add missing method
15633                 
15634         * CheckedListBox.cs: Added missing attributes
15635                 - Add missing attributes
15636                 - Remove extra method
15637         
15638         * ComboBox.cs: Added missing attributes
15639         * VScrollBar.cs: Added missing attributes
15640         * ScrollBar.cs:  Added missing attributes
15641         * ListBox.cs: Fixes signature, add missing consts
15642         * LinkArea.cs:   Added missing attributes
15643         
15645 2005-02-08  Peter Bartok  <pbartok@novell.com>
15647         * Menu.cs: Added missing attributes
15648         * MainMenu.cs: Added missing attributes
15649         * GroupBox.cs: Added missing attributes
15650         * Label.cs: Added missing attributes
15651         * CheckBox.cs: Implemented CheckBoxAccessibleObject class
15652         * ColorDialog.cs:
15653           - Added Instance and Options properties
15654           - Added missing attributes
15655         * Cursor.cs: Made Serializable
15656         * NotifyIcon: Added missing attributes
15657         * MenuItem.cs: Added missing attributes
15658         * TextBoxBase.cs: Implemented AppendText() and Select() methods
15659         * Panel.cs: Added Missing attributes
15660         * MonthCalendar.cs: Fixed CreateParams
15662 2005-02-08  Jordi Mas i Hernandez <jordi@ximian.com>
15663         
15664         * LinkLabel.cs:
15665                 - Fixes signature
15666                 - Fixes issues with links
15667                 - Adds the class attributes
15669 2005-02-08  Jordi Mas i Hernandez <jordi@ximian.com>
15670         
15671         * ComboBox.cs:
15672                 - Fixes button when no items available in dropdown
15673                 - Fixes repainting problems
15674                 - Adds the class attributes
15675                 
15676 2005-02-07  Geoff Norton  <gnorton@customerdna.com>
15678         * XplatUIOSX.cs: Detect the menu bar and title bar height from
15679         the current theme.  Cache these on startup.
15681 2005-02-07  Jackson Harper  <jackson@ximian.com>
15683         * ScrollBar.cs: Give the correct clipping rect to the theme. Dirty
15684         the scrollbar buttons when they are depressed.
15686 2005-02-07  Geoff Norton  <gnorton@customerdna.com>
15688         * XplatUIOSX.cs: Really fix working at resolutions not 1024x768.
15689         Get the display size from the main displayid.  We currently dont
15690         support multiple display configurations.
15692 2005-02-07  Geoff Norton  <gnorton@customerdna.com>
15694         * XplatUIOSX.cs: Ensure the window doesn't get stuck behind the statusbar.
15696 2005-02-07  Miguel de Icaza  <miguel@novell.com>
15698         * UpDownBase.cs: Add ReadOnly and UpDownAlign properties.
15700 2005-02-05  Jonathan Chambers  <jonathan.chambers@ansys.com>
15702         * PropertyGrid.cs: Updated. Patch by Jonathan Chambers
15704 2005-02-04  Jackson Harper  <jackson@ximian.com>
15706         * ThemeWin32Classic.cs: Respect the clipping rect when
15707         drawing. Only fill the intersection of clips and rects so there
15708         isn't a lot of large fills.
15709         * ScrollBar.cs: Pass the correct clipping rect to the theme
15710         engine. Remove some debug code.
15712 2005-02-05  John BouAntoun  <jba-mono@optusnet.com.au>
15713         
15714         * DateTimePicker.cs:
15715                 - Fixed crash on DateTime.Parse, use Constructor instead
15717 2005-02-04  Jordi Mas i Hernandez <jordi@ximian.com>
15718         
15719         * MenuItem.cs:
15720         * MenuAPI.cs:
15721                 - Owner draw support (MeasureItem and DrawItem)
15723 2005-02-04  Jordi Mas i Hernandez <jordi@ximian.com>
15724         
15725         *  Menu.cs:
15726                 - Implements FindMergePosition and MergeMenu functions (very poor documented)
15727                 - Fixes MenuItems.Add range
15728         * MenuItem.cs:
15729                 - MergeMenu and Clone and CloneMenu functions
15731 2005-02-03  Jackson Harper  <jackson@ximian.com>
15733         * ScrollBar.cs: Make abstract
15734         * ScrollableControl.cs: Create H/V scrollbars now that scrollbar
15735         is abstract.
15737 2005-02-03  Jackson Harper  <jackson@ximian.com>
15739         * ScrollBar.cs: First part of my scrollbar fixups. This removes
15740         all the unneeded refreshes and uses invalidates with properly
15741         computed rects.
15743 2005-02-03  Peter Bartok  <pbartok@novell.com>
15745         * ComponentModel.cs: Added
15746         * IDataGridEditingService.cs: Added
15747         * Timer.cs: Added missing attributes
15748         * ToolTip.cs: Added missing attributes
15750 2005-02-03  Jonathan Chambers  <jonathan.chambers@ansys.com>
15752         * PropertyGridView.cs: Added. Patch by Jonathan Chambers
15754 2005-02-03  Peter Bartok  <pbartok@novell.com>
15756         * ListBox.cs: Added missing attributes
15758 2005-02-03  Jordi Mas i Hernandez <jordi@ximian.com>
15759         
15760         * ListBox.cs:
15761                 - Fixes font height after font change
15762                 - Avoid generating unnecesary OnSelectedIndexChanged on clearing
15763                 
15764 2005-02-02  Peter Bartok  <pbartok@novell.com>
15766         * HandleData.cs: Introduced static methods to allow class
15767           to be more self-contained and track it's own HandleData objects
15768         * XplatUIOSX.cs, XplatUIWin32.cs, XplatUIX11.cs: Fixed usage of
15769           HandleData to use new static methods
15771 2005-02-02  Jordi Mas i Hernandez <jordi@ximian.com>
15773         * Combobox.cs:
15774                 - Fixes default size and PreferredHeight
15775                 - Missing events
15776                 - ObjectCollection.Insert implementation
15777                 
15778         * ListControl.cs
15779                 - Fixes signature
15780         * ListBox.cs:
15781                 - Several fixes
15782                 - ObjectCollection.Insert implementation
15783                 - No selection after clean
15784                 - Small fixes
15786 2005-01-31      John BouAntoun  <jba-mono@optusnet.com.au>
15788         * ThemeWin32Classic.cs: quick fix to comboboxbutton pushed painting
15790 2005-02-01  Jordi Mas i Hernandez <jordi@ximian.com>
15792         * Combobox.cs:
15793                 - Caches ItemHeight calculation for OwnerDrawVariable
15794                 - Handles dropdown properly
15795                 - Fixes several minor bugs
15797 2005-01-31  Jordi Mas i Hernandez <jordi@ximian.com>
15799         * ListBox.cs:
15800                 - Fixes 71946 and 71950
15801                 - Fixes changing Multicolumn on the fly
15802                 - Fixes keyboard navigation on Multicolumn listboxes
15804 2005-01-31  Geoff Norton  <gnorton@customerdna.com>
15805         
15806         * XplatUIOSX.cs: Call ExitToShell in our teardown to avoid a
15807         crash reporter log.
15809 2005-01-31  Geoff Norton  <gnorton@customerdna.com>
15811         * XplatUIOSX.cs: Allow applications to actually exit.
15813 2005-01-31  Geoff Norton  <gnorton@customerdna.com>
15815         * XplatUIOSX.cs: SetWindowStyle implemented.  Reposition views in
15816         their parent at creation time rather than lazily later.  Fixes a major
15817         regression we were experiencing.
15819 2005-01-31      John BouAntoun  <jba-mono@optusnet.com.au>
15821         * ThemeWin32Classic.cs: more date time picker painting fixes
15822         * DateTimePicker.cs: more monthcalendar drop down fixes
15823         * MonthCalendar.cs: more CreateParams fixes to ensure correct drop down
15825 2005-01-31  Jordi Mas i Hernandez <jordi@ximian.com>
15827         * ScrollBar.cs:
15828                 - When moving the thumb going outside the control should stop the moving
15829                 - Adds the firing of missing events
15830                 - Fixes no button show if Size is not specified
15831                 - End / Home keys for keyboard navigation
15833 2005-01-30  Peter Bartok  <pbartok@novell.com>
15835         * NotifyIcon.cs (CalculateIconRect): Removed debug output and added
15836           sanity check to prevent theoretical loop
15837         * XplatUIWin32.cs (SetVisible): Removed debug output
15838         * XplatUIX11.cs (SystrayChange): Added sanity check
15839         * ScrollableControl.cs (OnVisibleChanged): Now calls base method
15840         * Control.cs (OnVisibleChanged): Added workaround for ParentForm
15841           behaviour, valid until the X11 client window rewrite is done
15842         * TextBox.cs (ctor): Setting proper default foreground and background
15843           colors
15845 2005-01-30      John BouAntoun  <jba-mono@optusnet.com.au>
15847         * Theme: Added DrawDateTimePicker to interface
15848         * ThemeWin32Classic.cs: Added DrawDateTimePicker (incomplete)
15849         * DateTimePicker.cs: Created (still needs keys and painting code)
15850         * DateTimePickerFormat.cs: added
15851         * MonthCalendar.cs: fixed CreateParams for popup window mode
15852           
15853 2005-01-29  Peter Bartok  <pbartok@novell.com>
15855         * ControlPaint.cs: Fixed luminace value returned on achromatic colors,
15856           this should also the calculations for ligher/darker
15857         * Theme.cs: Fixed defaults for ScrollBar widths/heights
15859 2005-01-29  Peter Bartok  <pbartok@novell.com>
15861         * ArrangeDirection.cs: Added
15862         * ArrangeStartingPositon.cs: Added
15863         * SystemInformation.cs: Implemented
15864         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs, XplatUIWin32.cs,
15865           XplatUIX11.cs, Theme.cs: Added/implemented new static properties
15866           used by SystemInformation class
15867         * X11Strucs.cs: Added XSizeHints structure
15868         * MenuAPI.cs:
15869           - Fixed CreateParams to make sure the menu window is always visible
15870           - TrackPopupMenu: Added check to make sure we don't draw the
15871             menu offscreen
15873 2005-01-29  Peter Bartok  <pbartok@novell.com>
15875         * HandleData.cs: Added method for altering invalid area
15876         * TextBoxBase.cs: Implemented TextLength
15878 2005-01-28  Peter Bartok  <pbartok@novell.com>
15880         * XplatUIX11.cs: Improvement over last patch, not sending
15881           the WM_PAINT directly anymore, instead we scroll any pending
15882           exposed areas and let the system pick out the WM_PAINT later
15884 2005-01-28  Peter Bartok  <pbartok@novell.com>
15886         * SWF.csproj: Deleted, no longer used. Instead,
15887           Managed.Windows.Forms/SWF.csproj should be used
15888         * XplatUIX11.cs: Instead of posting the WM_PAINT, we send it
15889           directly, to avoid a potential race condition with the next
15890           scroll
15892 2005-01-28  Peter Bartok  <pbartok@novell.com>
15894         * XplatUI.cs: Made class internal
15896 2005-01-28  Jordi Mas i Hernandez <jordi@ximian.com>
15898         * CheckedListBox.cs:
15899                 - Draw focus
15900                 - Fixed Drawing
15901                 - Missing methods and events
15903 2005-01-27  Peter Bartok  <pbartok@novell.com>
15905         * Application.cs (Run): Don't use form if we don't have one
15907 2005-01-27  Peter Bartok  <pbartok@novell.com>
15909         * TextBoxBase.cs (get_Lines): Fixed index off by one error
15911 2005-01-27  Peter Bartok  <pbartok@novell.com>
15913         * GridEntry.cs: Added; Patch by Jonathan S. Chambers
15914         * GridItem.cs: Added; Patch by Jonathan S. Chambers
15915         * GridItemCollection.cs: Added; Patch by Jonathan S. Chambers
15916         * GridItemType.cs: Added; Patch by Jonathan S. Chambers
15917         * PropertyGrid.cs: Added; Patch by Jonathan S. Chambers
15918         * PropertySort.cs: Added; Patch by Jonathan S. Chambers
15919         * PropertyTabChangedEventArgs.cs: Added; Patch by Jonathan S. Chambers
15920         * PropertyTabChangedEventHandler.cs: Added; Patch by Jonathan S. Chambers
15921         * PropertyValueChangedEventArgs.cs: Added; Patch by Jonathan S. Chambers
15922         * PropertyValueChangedEventArgs.cs: Added; Patch by Jonathan S. Chambers
15923         * SelectedGridItemChangedEventArgs.cs: Added; Patch by Jonathan S. Chambers
15924         * SelectedGridItemChangedEventHandler.cs: Added; Patch by Jonathan S. Chambers
15926 2005-01-27  Jordi Mas i Hernandez <jordi@ximian.com>
15928         * Combobox.cs:
15929                 - Draw focus on Simple Combobox
15930                 - Fixes drawing issues
15931                 - fixes 71834
15933 2005-01-27  Peter Bartok  <pbartok@novell.com>
15935         * Form.cs:
15936           - Place window in default location, instead of hardcoded 0/0
15937           - Send initial LocationChanged event
15938         * Control.cs:
15939           - UpdateBounds after creation to find out where the WM placed us
15940           - Make sure that if the ParentForm changes location the Form
15941             is notified
15942         * XplatUIX11.cs: XGetGeometry will not return the coords relative
15943             to the root, but to whatever the WM placed around us.
15944             Translate to root coordinates before returning toplevel
15945             coordinates
15946         * XplatUIWin32.cs: Removed debug output
15947         * XplatUIOSX.cs, XplatUI.cs, XplatUIDriver.cs: Added toplevel
15948           flag to GetWindowPos, to allow translation of coordinates on X11
15950 2005-01-27  Jordi Mas i Hernandez <jordi@ximian.com>
15952         * ListBox.cs: connect LostFocus Event
15954 2005-01-27  Peter Bartok  <pbartok@novell.com>
15956         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIOSX.cs,
15957           XplatUIX11.cs: Extended the Systray API
15958         * Form.cs: Removed debug output
15959         * Application.cs: Fixed focus assignment, always need to call
15960           XplatUI.Activate() since Form.Activate() has rules that may
15961           prevent activation
15962         * NotifyIcon.cs: Should be complete now
15963         * ToolTip.cs: Worked around possible timer bug
15965 2005-01-27  Jackson Harper  <jackson@ximian.com>
15967         * TabControl.cs:
15968         - Only invalidate the effected tabs when the
15969         selected index changes. This reduces drawing and gets rid of some
15970         flicker.
15971         - Only refresh if the tabs need to be shifted, otherwise only
15972         invalidate the slider button.
15973         - On windows the tabs are not filled to right if the slider is
15974         visible.
15975         
15976 2005-01-27  Jackson Harper  <jackson@ximian.com>
15978         * TabControl.cs: Only refresh on mouseup if we are showing the
15979         slider. Also only invalidate the button whose state has changed.
15981 2005-01-26  Peter Bartok  <pbartok@novell.com>
15983         * XplatUI.cs, XplatUIDriver.cs: Added Systray methods
15984         * XplatUIWin32.cs: Implemented SystrayAdd(), SystrayChange()
15985           and SystrayRemove() methods
15986         * XplatUIOSX.cs: Stubbed Systray methods
15987         * XplatUIX11.cs:
15988           - Implemented SystrayAdd(), SystrayChange() and SystrayRemove()
15989             methods
15990           - Fixed broken XChangeProperty calls (marshalling messed up things)
15991         * X11Structs.cs: Added enums and structs required for Size hinting
15992         * NotifyIcon.cs: Added & implemented
15994 2005-01-26  Jackson Harper  <jackson@ximian.com>
15996         * TabControl.cs: Space vertically layed out tabs properly.
15998 2005-01-26  Peter Bartok  <pbartok@novell.com>
16000         * Form.cs (CreateClientParams): Always set the location to 0,0
16001           since we're a child window.
16003         * Control.cs (SetVisibleCore): Always explicitly setting the location
16004           of a toplevel window, apparently X11 doesn't like to move windows
16005           while they're not mapped.
16007 2005-01-26  Jackson Harper  <jackson@ximian.com>
16009         * TabControl.cs: Implement FillToRight size mode with vertically
16010         rendered tabs.
16012 2005-01-26  Jordi Mas i Hernandez <jordi@ximian.com>
16014         * ControlPaint.cs, ThemeWin32Classic.cs
16015                 - Fixes DrawFocusRectangle
16017 2005-01-26  Jordi Mas i Hernandez <jordi@ximian.com>
16019         * MenuAPI.cs:
16020                 - MenuBar tracking only starts when item is first clicked
16021                 - Fixes menu hidding for multiple subitems
16022                 - Unselect item in MenuBar when item Executed
16023                 - Fixes bug 71495
16025 2005-01-25  Jordi Mas i Hernandez <jordi@ximian.com>
16027         * ListControl.cs:
16028                 - IsInputKey for ListBox
16029         * ListBox.cs:
16030                 - Focus item
16031                 - Shift and Control item selection
16032                 - Implement SelectionMode.MultiExtended
16033                 - Fixes RightToLeft
16034         * ComboBox.cs:
16035                 - IsInputKey implemented
16036                 - Do not generate OnTextChangedEdit on internal txt changes
16037                 
16038 2005-01-23  Peter Bartok  <pbartok@novell.com>
16040         * AccessibleObject.cs: Partially implemented Select()
16041         * MonthCalendar.cs: Added missing attributes and events
16042         * Form.cs: Fixed CreateParams behaviour, now controls derived from
16043           form can properly override CreateParams.
16044         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs, XplatUIWin32.cs,
16045           XplatUIX11.cs: Dropped RefreshWindow method, not needed if
16046           Control performs Invalidate & Update
16047         * NativeWindow (CreateHandle): Added special handling for Form
16048           and Form.FormParent classes to allow overriding of From.CreateParams
16049         * Control.cs:
16050           - ControlNativeWindow: Renamed 'control' variable to more intuitive
16051             name 'owner'
16052           - ControlNativeWindow: Added Owner property
16053           - Removed usage of Refresh() on property changes, changed into
16054             Invalidate(), we need to wait until the queue is processed for
16055             updates, direct calls might cause problems if not all vars for
16056             Paint are initialized
16057           - Added call to UpdateStyles() when creating the window, to set any
16058             styles that CreateWindow might have ignored.
16059           - Added support for Form CreateParent overrides to UpdateStyles()
16060         * MessageBox.cs: Removed no longer needed FormParent override stuff,
16061           CreateParams are now properly overridable
16062         * CommonDialog.cs: Removed no longer needed FormParent override stuff,
16063           CreateParams are now properly overridable
16065 2005-01-23  Miguel de Icaza  <miguel@ximian.com>
16067         * UpDownBase.cs (ctor): Connect TextChanged in the entry to the
16068         OnTextBoxChanged.
16070         Capture LostFocus and OnTextBoxChanged.  The later introduces a
16071         recursive invocation that I have not figured out yet.
16073         Reset the timer when not using (it was accumulating).
16076         (OnTextBoxChanged): Set UserEdit to true here to track whether the
16077         user has made changes that require validation.
16079         Reset changing to avoid loops.
16081 2005-01-22  Miguel de Icaza  <miguel@ximian.com>
16083         * NumericUpDown.cs: Display value at startup.
16085         * UpDownBase.cs (Text): Do not call UpdateEditText here, only call
16086         ValidateEditText.
16088         * NumericUpDown.cs: Minimum, Maximum, Text, Value properties
16089         filled in.  Added some basic parsing of text.
16091         Still missing the OnXXX method overrides, and figuring out the
16092         events that must be emitted.
16094         * UpDownBase.cs: Handle UserEdit on the Text property.
16095         
16096 2005-01-22  Jordi Mas i Hernandez <jordi@ximian.com>
16098         * ComboBox.cs:
16099           - Fixes IntegralHeight
16100           - ToString method
16102 2005-01-21  Jackson Harper  <jackson@ximian.com>
16104         * TabControl.cs: Set the SelectedIndex property when SelectedTab
16105         is set so that the page visibility is updated and the tabs are
16106         sized correctly.
16108 2005-01-21  Jackson Harper  <jackson@ximian.com>
16110         * TabControl.cs: Use cliping rectangle for blitting. Give the
16111         theme the clipping rect so we can do clipping while
16112         drawing. Remove some debug code.
16114 2005-01-21  Jackson Harper  <jackson@ximian.com>
16116         * TabPage.cs: Add a new method so tab pages can force the tab
16117         control to recalculate the tab page sizes.
16118         * TabControl.cs: UpdateOwner needs to make the tab control recalc
16119         sizes.
16121 2005-01-20  Jackson Harper  <jackson@ximian.com>
16123         * ThemeWin32Classic.cs: Clip text to the staus bar panels rects.
16125 2005-01-20  Jackson Harper  <jackson@ximian.com>
16127         * TreeView.cs: Set the bounds for nodes properly. They were
16128         getting screwed up when checkboxes were not enabled, but images
16129         were.
16131 2005-01-20  Jordi Mas i Hernandez <jordi@ximian.com>
16133         * ListBox.cs:
16134                 - Owner draw support
16135                 - Fixes
16136                 
16137 2005-01-20  Jackson Harper  <jackson@ximian.com>
16139         * XplatUIStructs.cs: More misc keys
16140         * X11Keyboard.cs: Ignore some control keys.
16142 2005-01-20  Jackson Harper  <jackson@ximian.com>
16144         * X11Structs.cs: Add the modmaps to the keymask struct and tabify.
16145         * X11Keyboard.cs: Set the AltGr mask when we get a key event.
16147 2005-01-19  Peter Bartok  <pbartok@novell.com>
16149         * Control.cs: Un-selecting the control when it is loosing focus
16151 2005-01-19  Jackson Harper  <jackson@ximian.com>
16153         * TreeView.cs: Hook up to the text controls leave event so we can
16154         end editing when the users clicks outside the text box.
16155         
16156 2005-01-19  Jackson Harper  <jackson@ximian.com>
16158         * X11Keyboard.cs: Fix typo that was causing the wrong keycodes to
16159         get set in the conversion array.
16161 2005-01-19  Peter Bartok  <pbartok@novell.com>
16163         * Application.cs (ModalRun): Added a call to CreateControl to ensure
16164           focus is properly set
16165         * Button.cs:
16166           - Added missing attributes
16167           - removed styles, those are already set in the base class
16168         * ButtonBase.cs:
16169           - Added missing attributes
16170           - Added clip window styles
16171         * CheckBox.cs: Added missing attributes
16172         * CommonDialog.cs:
16173           - FormParentWindow.CreateParams: Added required clip styles
16174         * Form.cs (ProcessDialogKey): Fixed handling of Escape key, now
16175           also filters modifier keys
16176         * MessageBox.cs:
16177           - Added assignment of Accept and Cancel button to enable Enter
16178             and Esc keys in MessageBox dialogs
16179           - FormParentWindow.CreateParams: Added required clip styles
16180         * RadioButton.cs: Added missing attributes
16181         * TextControl.cs: No longer draws selection if control does not
16182           have focus
16183         * TextBoxBase.cs:
16184           - Now draws simple rectangle around test area to make it obvious
16185             there's a control. This is a hack until we properly support borders
16186           - A few simple fixes to support selections better, now erases selected
16187             text when typing, and resets selection when using movement keys
16189 2005-01-19  Miguel de Icaza  <miguel@ximian.com>
16191         * UpDownBase.cs: Added some new properties.
16193         * DomainUpDown.cs: Implement a lot to get my test working.
16195 2005-01-19  Geoff Norton  <gnorton@customerdna.com>
16197         * XplatUIOSX.cs: Fix a minor bug to bring the close box back
16199 2005-01-19  Geoff Norton  <gnorton@customerdna.com>
16201         * OSXStructs (WindowAttributes): Fixed csc complaints
16203 2005-01-19  Geoff Norton  <gnorton@customerdna.com>
16205         * XplayUIOSX.cs:
16206           OSXStructs.cs: Initial refactor to move enums and consts into
16207           OSXStructs and use them in the driver for greater readability.
16209 2005-01-19  Geoff Norton  <gnorton@customerdna.com>
16211         * XplatUIOSX.cs: Initial support for Standard Cursors.
16212         * OSXStructs.cs: Move our structs here; added ThemeCursor enum
16214 2005-01-19  Jordi Mas i Hernandez <jordi@ximian.com>
16216         * ComboBox.cs: ability to change style when the ctrl is already
16217         created, missing methods and events, bug fixes, signature fixes
16219 2005-01-19  Peter Bartok  <pbartok@novell.com>
16221         * Cursors.cs (ctor): Added ctor to fix signature
16223 2005-01-18  Peter Bartok  <pbartok@novell.com>
16225         * Button.cs: Implemented DoubleClick event
16226         * ButtonBase.cs:
16227           - Fixed keyboard handling to behave like MS, where the press of
16228             Spacebar is equivalent to a mousedown, and the key release is
16229             equivalent to mouseup. Now a spacebar push will give the same
16230             visual feedback like a mouse click.
16231           - Added missing attributes
16232           - Added ImeModeChanged event
16233           - Added support for generating DoubleClick event for derived classes
16234         * CheckBox.cs:
16235           - Implemented DoubleClick event
16236           - Added missing attributes
16237         * CommonDialog.cs: Added missing attribute
16238         * ContextMenu.cs: Added missing attributes
16239         * RadioButton.cs:
16240           - AutoChecked buttons do not allow to be unselected when clicked
16241             (otherwise we might end up with no selected buttons in a group)
16242           - Added missing attributes
16243           - Implemented DoubleClickEvent
16244         * ThreadExceptionDialog.cs: Enabled TextBox code
16246 2005-01-18  Peter Bartok  <pbartok@novell.com>
16248         * Form.cs: Removed debug output
16249         * Button.cs: Added support for DoubleClick method
16251 2005-01-18  Peter Bartok  <pbartok@novell.com>
16253         * Form.cs:
16254           - Added method to parent window that allows triggering size
16255             calculations when a menu is added/removed
16256           - set_Menu: Cleaned up mess from early days of Form and Control,
16257             now properly triggers a recalc when a menu is added/removed
16258           - Added case to select form itself as focused form if no child
16259             controls exist
16260           - Added PerformLayout call when showing dialog, to ensure properly
16261             placed controls
16262         * Control.cs:
16263           - Select(): Made internal so Form can access it
16264           - Focus(): Only call Xplat layer if required (avoids loop), and sets
16265             status
16266         * Application.cs (Run): Removed hack and calls PerformLayout instead
16267           to trigger calculation when Form becomes visible
16269 2005-01-18  Jordi Mas i Hernandez <jordi@ximian.com>
16271         * ComboBox.cs: fixes for ownerdraw
16273 2005-01-18  Peter Bartok  <pbartok@novell.com>
16275         * TextControl.cs:
16276           - Sentinel is no longer static, each Document gets it's own, this
16277             avoids locking or alternatively overwrite problems when more
16278             than one text control is used simultaneously.
16279           - Switched to use Hilight and HilightText brushes for text selection
16281         * TextBoxBase.cs (PaintControl): Disabled AntiAliasing to improve looks
16283 2005-01-18  Peter Bartok  <pbartok@novell.com>
16285         * Control.cs:
16286           - Hooked up the following events:
16287                 o ControlAdded
16288                 o ControlRemoved
16289                 o HandleDestroyed
16290                 o ImeModeChanged
16291                 o ParentChanged
16292                 o TabStopChanged
16293                 o Invalidated
16294                 o SystemColorsChanged
16295                 o ParentFontChanged
16296                 o Move
16297           - Removed debug output
16298           - Added a call to the current theme's ResetDefaults when a color change
16299             is detected
16300         * Form.cs: Now setting the proper ImeMode
16301         * Theme.cs: Defined a method to force recreation of cached resources
16302           and rereading of system defaults (ResetDefaults())
16303         * ThemeWin32Classic.cs: Added ResetDefaults() stub
16305 2005-01-17  Peter Bartok  <pbartok@novell.com>
16307         * Control.cs: Added missing attributes
16309 2005-01-17  Jackson Harper  <jackson@ximian.com>
16311         * TreeNode.cs: Implement editing. Add missing properties selected
16312         and visible.
16313         * TreeView.cs: Implement node editing. Also some fixes to use
16314         Invalidate (invalid area) instead of Refresh when selecting.
16316 2005-01-17  Peter Bartok  <pbartok@novell.com>
16318         * Control.cs:
16319           - Implemented InvokeGotFocus() method
16320           - Implemented InvokeLostFocus() method
16321           - Implemented InvokePaint() method
16322           - Implemented InvokePaintBackground() method
16323           - Implemented InvokeClick() method
16324           - Implemented FindForm() method
16325           - Implemented RectangleToClient() method
16326           - Implemented ClientToRectangle() method
16327           - Implemented ResetBackColor() method
16328           - Implemented ResetCursor() method
16329           - Implemented ResetFont() method
16330           - Implemented ResteForeColor() method
16331           - Implemented ResetImeMode() method
16332           - Implemented ResetLeftToRight() method
16333           - Implemented ResetText() method
16334           - Implemented Scale() methods
16335           - Implemented ScaleCore() method
16336           - Implemented Update() method
16337           - Removed unused variables
16338           - Stubbed AccessibilityNotifyClients and
16339             ControlAccessibleObject.NotifyClients() methods (dunno what to do
16340             with those yet)
16341           - Now setting proper default for RightToLeft property
16342           - Fixed bug in SetClientSizeCore that would cause windows to get
16343             really big
16344           - Now sending Click/DoubleClick events
16345           - Now selecting controls when left mouse button is clicked on
16346             selectable control
16347         * AccessibleEvents.cs: Added
16348         * XplatUI.cs, XplatUIDriver.cs: Added UpdateWindow() method
16349         * XplatUIOSX.cs: Stubbed UpdateWindow() method
16350         * XplatUIWin32.cs: Implemented UpdateWindow() method
16351         * XplatUIX11.cs: Implemented UpdateWindow() method
16352         * Form.cs: Removed stray semicolon causing CS0162 warning
16353         * ThemeWin32Classic.cs: Fixed unused variable warnings
16354         * ScrollableControl.cs: Now calls base method for ScaleCore
16355         * ButtonBase.cs: Now disabling StandardClick and StandardDoubleClick
16356           style to avoid interference with internal click handler (which is
16357           different than standard Control click handling)
16358         * RadioButton.cs:
16359           - Now unchecks all sibling radio buttons when control is
16360             selected (Fixes #68756)
16361           - Removed internal tabstop variable, using the one inherited from
16362             Control
16364 2005-01-17  Jackson Harper  <jackson@ximian.com>
16366         * NavigateEventArgs.cs: Fix base type.
16367         * LinkLabel.cs: Sig fix
16368         
16369 2005-01-17  Jackson Harper  <jackson@ximian.com>
16371         * TreeView.cs: Only invalidate the effected nodes bounds when
16372         selecting nodes.
16374 2005-01-13  Jordi Mas i Hernandez <jordi@ximian.com>
16376         * XplatUIWin32.cs: fixes Win32 marshaling
16377         * XplatUIX11.cs: fixes method signature
16379 2005-01-17  Peter Bartok  <pbartok@novell.com>
16381         * XplatUIX11.cs: Clean up resources when we no longer need them
16383 2005-01-17  Peter Bartok  <pbartok@novell.com>
16385         * XplatUI.cs, XplatUIDriver.cs: Added SetCursor(), ShowCursor(),
16386           OverrideCursor(), DefineCursor(), DefineStdCursor(), GetCursorInfo()
16387           and DestroyCursor() methods.
16388         * Cursor.cs: Partially implemented, now supports standard cursors;
16389           still contains some debug code
16390         * Cursors.cs: Implemented class
16391         * Control.cs:
16392           - WndProc(): Added handling of WM_SETCURSOR message, setting the
16393             appropriate cursor
16394           - Implemented Cursor property
16395           - Replaced break; with return; more straightforwar and possibly
16396             faster
16397           - Now properly setting the result for WM_HELP
16398         * X11Structs.cs: Added CursorFontShape enum
16399         * XplatUIStructs.cs:
16400           - Added StdCursor enum (to support DefineStdCursor() method)
16401           - Added HitTest enum (to support sending WM_SETCURSOR message)
16402         * XplatUIX11.cs:
16403           - Now sends the WM_SETCURSOR message
16404           - Implemented new cursor methods
16405         * XplatUIOSX.cs: Stubbed new cursor methods
16406         * XplatUIWin32.cs:
16407           - Implemented new cursor methods
16408           - Added GetSystemMetrics function and associated enumeration
16410 2005-01-15  Peter Bartok  <pbartok@novell.com>
16412         * Control.cs:
16413           - WndProc(): Now handles EnableNotifyMessage
16414           - SelectNextControl(): Fixed bug where if no child or sibling
16415             controls exist we looped endlessly
16417 2005-01-14  Jackson Harper  <jackson@ximian.com>
16419         * TreeView.cs: Recalculate the tab pages when a new one is added
16420         so that the proper bounding rects are created.
16422 2005-01-14  Jackson Harper  <jackson@ximian.com>
16424         * TreeView.cs: Draw a gray box instead of a grip in the lower
16425         right hand corner when there are both horizontal and vertical
16426         scroll bars.
16428 2005-01-14  Jackson Harper  <jackson@ximian.com>
16430         * Control.cs: When erasing backgrounds use FromHwnd instead of
16431         FromHdc when there is a NULL wparam. This occurs on the X driver.
16432         * XplatUIX11.cs: Set the wparam to NULL.
16434 2005-01-13  Jackson Harper  <jackson@ximian.com>
16436         * PictureBox.cs: Implement missing methods (except ToString, need
16437         to test that on windows) and events. When visibility is changed we
16438         need to redraw the image because the buffers are killed. When size
16439         is changed refresh if the sizemode needs it.
16441 2005-01-13  Peter Bartok  <pbartok@novell.com>
16443         * Control.cs (SelectNextControl): Was using wrong method to select
16444           a control
16446 2005-01-13  Jordi Mas i Hernandez <jordi@ximian.com>
16448         * ComboBox.cs: fixes dropstyle
16450 2005-01-13  Peter Bartok  <pbartok@novell.com>
16452         * Form.cs:
16453           - Implemented Select() override
16454           - Now handles WM_SETFOCUS/WM_KILLFOCUS messages
16455           - Now sets keyboard focus on startup
16456         * Control.cs (SelectNextControl): Now properly handles directed=true
16457         * TextBoxBase.cs:
16458           - WndProc: Now passes tab key on to base if AcceptTabChar=false
16459           - Added (really bad) focus rectangle (mostly for testing)
16460         * TextBox.cs: Added code to handle getting/loosing focus and invalidating
16461           to enforce redraw on focus changes
16462         * ContainerControl.cs:
16463           - Fixed detection of Shift-Tab key presses
16464           - Fixed traversal with arrow keys
16465         * XplatUIX11.cs: Implemented simulated keyboard focus; not sure if we're
16466           gonna keep this or if it's complete yet
16467         
16468 2005-01-13  Jordi Mas i Hernandez <jordi@ximian.com>
16470         * ComboBox.cs: missing properties, fixes
16472 2005-01-13  Peter Bartok  <pbartok@novell.com>
16474         * Panel.cs (ctor): Setting Selectable window style to off
16475         * Splitter.cs (ctor): Setting Selectable window style to off
16476         * GroupBox.cs (ctor): Setting Selectable window style to off
16477         * Label.cs (ctor): Setting Selectable window style to off
16479 2005-01-12  Miguel de Icaza  <miguel@ximian.com>
16481         * UpDownBase.cs (InitTimer): If the timer has been already
16482         created, enable it.
16484         Use a TextBox instead of a Label.
16486 2005-01-12  Jackson Harper  <jackson@ximian.com>
16488         * TreeView.cs: Refresh the tree after sorting the nodes. Always
16489         draw the connecting node lines (when ShowLines is true).
16490         * TreeNode.cs: The nodes index can now be updated. This is used
16491         when a node collection is sorted.
16492         * TreeNodeCollection.cs: Implement sorting. Nodes can be sorted on
16493         insert or an existing unsorted node collection can be sorted.
16494         
16495 2005-01-12  Peter Bartok  <pbartok@novell.com>
16497         * ContainerControl.cs: Implemented ProcessDialogKeys()
16499 2005-01-12  Peter Bartok  <pbartok@novell.com>
16501         * Control.cs:
16502           - Implemented SelectNextControl() method
16503           - Several focus related bug fixes
16504           - Fixed Docking calculations to match MS documentation and
16505             behaviour
16507 2005-01-12  Jordi Mas i Hernandez <jordi@ximian.com>
16509         * ContainerControl.cs, ListControl.cs, ListBox.cs: keyboard navigation and
16510         bug fixes
16512 2005-01-12  Peter Bartok  <pbartok@novell.com>
16514         * Control.cs:
16515           - Fixed broken Contains() method
16516           - Implemented GetNextControl() method. Finally. This is the pre-
16517             requisite for focus handling.
16519 2005-01-12  Peter Bartok  <pbartok@novell.com>
16521         * OSXStrucs.cs: Added
16523 2005-01-12  Peter Bartok  <pbartok@novell.com>
16525         * XplatUIWin32.cs:
16526           - Removed PeekMessageFlags
16527           - Implemented SetWindowStyle() method
16528         * XplatUIStructs.cs: Added PeekMessageFlags
16529         * X11Structs: Added missing border_width field to XWindowChanges struct
16530         * XplatUIX11.cs:
16531           - PeekMessage: Now throws exception if flags which are not yet
16532             supported are passed
16533           - Implemented SetWindowStyle() method
16534           - Fixed SetZOrder to handle AfterHwnd properly
16535         * XplatUI.cs: Added SetWindowStyle() method
16536         * XplatUIDriver.cs: Added SetWindowStyle() abstract
16537         * Control.cs:
16538           - Implemented UpdateStyles() method
16539           - Implemented UpdateZOrder() method
16540         * XplatUIOSX.cs: Added SetWindowStyle() stub
16542 2005-01-12  Geoff Norton  <gnorton@customerdna.com>
16544         * XplatUIOSX.cs: Fix SetZOrder (this needs more testing with a 3
16545         button mouse).
16548 2005-01-11  Jackson Harper  <jackson@ximian.com>
16550         * TreeView.cs: Still need to draw lines to siblings even if out of
16551         the current node is out of the clip.
16553 2005-01-11  Jackson Harper  <jackson@ximian.com>
16555         * TreeView.cs: When setting the hbar/vbar/grip position use
16556         SetBounds so that perform layout is only called once. Also suspend
16557         and resume layout so layout is only done once for all controls.
16558         - Removed some debug fluff
16559         * SizeGrip.cs: Call base implmentation in overriding methods.
16560         - When visibility is changed the drawing buffers are killed so we
16561         need to redraw.
16563 2005-01-11  Jackson Harper  <jackson@ximian.com>
16565         * TreeView.cs: Calculate the open node count while drawing. This
16566         saves us an entire tree traversal for every paint operation. Use
16567         a member var for the open node count so less vars are passed around.
16569 2005-01-11  John BouAntoun  <jba-mono@optusnet.com.au>
16571         * MonthCalendar.cs:
16572         - fixed selection to use mousemove, not mouse polling on timer
16573         * ThemeWin32Classic.cs
16574         - removed redundant unused variable "no_more_content"
16575         
16576 2005-01-11  Peter Bartok  <pbartok@novell.com>
16578         * XplatUIX11.cs (DoEvents): Needs to return when no more events
16579           are pending, so it now calls PeekMessage instead of GetMessage;
16580           implemented a incomplete version of PeekMessage
16581         
16582 2005-01-11  Peter Bartok  <pbartok@novell.com>
16584         * XplatUIWin32.cs: Switched P/Invokes to unicode charset to avoid
16585           I18n issues
16586         * TextBoxBase.cs: Added sending of TextChanged event
16588 2005-01-10  Jackson Harper  <jackson@ximian.com>
16590         * TreeView.cs: Try not to draw outside the clipping rectangle on
16591         each node element.
16593 2005-01-10  Jordi Mas i Hernandez <jordi@ximian.com>
16595         * ComboBox.cs: keyboard navigation, item navigation, bug fixes
16597 2005-01-10  Jackson Harper  <jackson@ximian.com>
16599         * TreeView.cs:
16600         - Implement fast scrolling. Now only the newly
16601         exposed nodes are drawn and the old image is moved using the
16602         XplatUI::ScrollWindow method.
16603         - Factor in height of nodes when calculating whether or not the
16604         node is in the clipping rect.
16606 2005-01-10  Jackson Harper  <jackson@ximian.com>
16608         * TreeNodeCollection.cs: Refresh the tree when a new node is added.
16610 2005-01-10  Peter Bartok  <pbartok@novell.com>
16612         * Application.cs: Added temporary hack to resolve all our resize
16613           required issues on startup. This will get fixed properly at
16614           some point in the future
16616 2005-01-10  Jackson Harper  <jackson@ximian.com>
16618         * SizeGrip.cs: New internal class that is used as a sizing
16619         grip control...hence the name.
16621 2005-01-10  Peter Bartok  <pbartok@novell.com>
16623         * Control.cs: Implemented proper TabIndex handling, now assigning
16624           a tabindex when a control is added to a container
16625         * GroupBox.cs (ctor): Now sets the Container style bit, required
16626           for Control.GetNextControl()
16628 2005-01-09  Jackson Harper  <jackson@ximian.com>
16630         * TextBoxBase.cs: Clear window when scrolling (fixes build).
16632 2005-01-09  Peter Bartok <pbartok@novell.com>
16634         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIOSX.cs,
16635           XplatUIX11.cs: Added ability to control ScrollWindow expose and
16636           an overload for ScrollWindow to allow only scrolling a rectangle
16638 2005-01-09  Peter Bartok <pbartok@novell.com>
16640         * Form.cs:
16641           - Implemented SetDesktopBounds method
16642           - Implemented SetDesktopLocation method
16644 2005-01-08  Jackson Harper  <jackson@ximian.com>
16646         * TreeView.cs: Only set the vbar's Maximum and LargeChange when
16647         the node count has changed, this removes to VScroll::Refresh calls
16648         when drawing.
16650 2005-01-08  Geoff Norton  <gnorton@customerdna.com>
16652         * XplatUIOSX.cs: Fix GetWindowState & SetWindowState
16654 2005-01-07  Jackson Harper  <jackson@ximian.com>
16656         * TreeNode.cs: Just update the single node when it is
16657         checked. Don't refresh after toggling, the Expand/Collapse already
16658         handles this.
16659         * TreeView.cs: Respect clipping a little more when drawing. Try
16660         not to redraw things that don't need to be redrawn. Just hide the
16661         scrollbars when they are no longer needed instead of removing
16662         them, so they don't have to be created again and again.
16663         
16664 2005-01-07  Geoff Norton  <gnorton@customerdna.com>
16666         * XplatUIOSX.cs (SetCaretPos):  We need to translate the view
16667         coordinates to window space to place the caret properly, FIXED.
16668         Implement GetWindowState & SetWindowState
16670 2005-01-06  Peter Bartok <pbartok@novell.com>
16672         * Form.cs:
16673           - Implemented ClientSize property
16674           - Implemented DesktopBounds property
16675           - Implemented DesktopLocation property
16676           - Implemented IsRestrictedWindow property
16677           - Implemented Size property
16678           - Implemented TopLevel property
16679           - Implemented FormWindowState property
16680         * Control.cs:
16681           - Implemented GetTopLevel() method
16682           - Implemented SetTopLevel() method
16683         * X11Structs.cs (Atom):
16684           - Added AnyPropertyType definition
16685           - Added MapState definiton and updated XWindowAttribute struct
16686         * XplatUI.cs: Added GetWindowState() and SetWindowState() methods
16687         * XplatUIDriver.cs: Added GetWindowState() and SetWindowState() methods
16688         * XplatUIOSX.cs: Stubbed GetWindowState() and SetWindowState() methods
16689         * XplatUIWin32.cs:
16690           - Implemented GetWindowState() and SetWindowState() methods
16691           - Fixed Win32GetWindowLong return type
16692         * XplatUIX11.cs:
16693           - Introduced central function for sending NET_WM messages
16694           - Implemented GetWindowState() and SetWindowState() methods
16695         * TextBoxBase.cs (set_Lines):
16696           - Now uses Foreground color for text added via Text property (Duh!)
16697           - Added code to remember programmatically requested size (fixes
16698             behaviour when Multiline is set after Size)
16699           - Added AutoSize logic
16701 2005-01-06  Jackson Harper  <jackson@ximian.com>
16703         * TreeView.cs: Draw the image after the checkbox if checkboxes are enabled.
16705 2005-01-06  Jackson Harper  <jackson@ximian.com>
16707         * ListBox.cs: Don't allow the horizontal scrollbars maximum to be
16708         set to less then 0.
16710 2005-01-06  Jackson Harper  <jackson@ximian.com>
16712         * ScrollableControl.cs: Lazy init the scrollbars.
16713         
16714 2005-01-06  Jackson Harper  <jackson@ximian.com>
16716         * Theme.cs: Speed up getting pens and solid brushes, by using
16717         their ARGB as a hash instead of tostring and not calling Contains.
16719 2005-01-06  Peter Bartok <pbartok@novell.com>
16721         * Form.cs:
16722           - Implemented OnActivated and OnDeactivate event trigger
16723           - Implemented Activate() method
16724           - Fixed ShowDialog() to activate the form that was active before
16725             the dialog was shown
16726         * XplatUIX11.cs:
16727           - Added global active_window var that tracks the currently active
16728             X11 window
16729           - Now always grabs Property changes from the root window to always
16730             catch changes on the active window property
16731           - Added code to PropertyNotify handler to send Active/Inactive
16732             messages when state changes. This puts X11 and Win32 en par on
16733             WM_ACTIVATE notifications (except for double notifications when
16734             the user clicks away from our modal window to another one of our
16735             windows)
16737 2005-01-05  Jackson Harper  <jackson@ximian.com>
16739         * ImageList.cs: Implment ctor
16741 2005-01-05  Geoff Norton  <gnorton@customerdna.com>
16743         * XplatUIOSX.cs: Implement Activate/SetTopmost
16745 2005-01-05  Geoff Norton  <gnorton@customerdna.com>
16747         * XplatUIOSX.cs: Implement SetZOrder, minor cleanup
16749 2005-01-05  Geoff Norton  <gnorton@customerdna.com>
16751         * XplatUIOSX.cs: Implement GetActive/SetFocus.
16753 2005-01-05  Peter Bartok <pbartok@novell.com>
16755         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIX11.cs,
16756           XplatUIOSX.cs: Added GetActive method to return the currently
16757           active window for the application (or null, if none is active)
16758         * Form.cs:
16759           - Implemented ActiveForm
16760           - Commented out owner assignment for modal dialogs (causes problems
16761             on Win32, since the owner will be disabled)
16762           - Reworked some Active/Focus handling (still incomplete)
16763         * CommonDialog.cs: Commented out owner assignment for modal dialogs
16764           (causes problems on Win32, since the owner will be disabled)
16765         * IWin32Window: Added ComVisible attribute
16767 2005-01-05  Peter Bartok <pbartok@novell.com>
16769         * ToolTip.cs (WndProc): Enable setting focus now that we have the
16770           required XplatUI functions.
16772 2005-01-05  Peter Bartok <pbartok@novell.com>
16774         * XplatUI.cs, XplatUIOSX.cs, XplatUIWin32.cs, XplatUIDriver.cs,
16775           XplatUIX11.cs, X11Structs.cs, Form.cs: Framework code required
16776           to implement focus and activation handling; still incomplete and
16777           with debug output
16779 2005-01-04  Peter Bartok <pbartok@novell.com>
16781         * TextBoxBase.cs: Changed access level for Document property to
16782           match switch to internal for TextControl
16784 2005-01-04  Peter Bartok <pbartok@novell.com>
16786         * AccessibleObject: Added ComVisible attribute
16788 2005-01-04  Jackson Harper  <jackson@ximian.com>
16790         * X11Keyboard.cs: Remove unneeded var.
16792 2005-01-04  Jackson Harper  <jackson@ximian.com>
16794         * XplatUIX11.cs (DoEvents): Implement, Just cast aside all events
16795         but PAINT.
16796         * XplatUIX11.cs (GetMessage): Call Exit when we get an unknown
16797         ClientMessage. This makes apps exit cleanly (more often).
16798         
16799 2005-01-04  Jackson Harper  <jackson@ximian.com>
16801         * TreeNode.cs: Patches by Kazuki Oikawa (kazuki@panicode.com) for
16802         handling focus, return correct colors and fonts,
16803         * TreeView.cs: Patches by Kazuki Oikawa (kazuki@panicode.com) to
16804         handle selection, horizontal scrolling, and mouse interaction.
16806 2005-01-04  Peter Bartok <pbartok@novell.com>
16808         * ICommandExecutor.cs: Added
16809         * IDataGridColumnStyleEditingNotificationService.cs: Added
16810         * IFeatureSupport.cs: Added
16811         * IFileReaderService.cs: Added
16812         * IDataObject.cs: Added ComVisible attribute
16813         * AmbientProperties.cs: Added
16814         * BaseCollection.cs: Added missing attributes
16815         * ListBindingConverter.cs: Added (stubbed, required for certain attributes)
16816         * BaseCollection.cs: Added missing attributes
16817         * Binding.cs: Added TypeConverter attribute
16818         * BindingContext.cs: Added DefaultEvent attribute
16819         * BindingsCollection.cs: Added DefaultEvent attribute
16820         * Button.cs: Added DefaultValue attribute
16821         * DragEventArgs.cs: Added ComVisible attribute
16822         * GiveFeedbackEventArgs.cs: Added ComVisible attribute
16823         * KeyEventArgs.cs: Added ComVisible attribute
16824         * KeyPressEventArgs.cs: Added ComVisible attribute
16825         * MouseEventArgs.cs: Added ComVisible attribute
16826         * NavigateEventArgs.cs: Added
16827         * NavigateEventHandler.cs: Added
16828         * FeatureSupport.cs: Added
16829         * OSFeature.cs: Added
16830         * Theme.cs: Added abstract Version property to support OSFeature
16831         * ThemeWin32Classic.cs: Added Version property to
16832           support OSFeature.Themes
16833         * ProgressBar.cs: Removed OnPaintBackground override, not required since
16834           the proper styles to avoid background drawing are set, also doesn't
16835           match MS signature
16836         * QueryAccessibilityHelpEventArgs.cs: Added ComVisible attribute
16837         * QueryContinueDragEventArgs.cs: Added ComVisible attribute
16838         * ScrollEventArgs.cs: Added ComVisible attribute
16839         * SplitterEventArgs.cs: Added ComVisible attribute
16840         * AccessibleSelection.cs: Added Flags attribute
16841         * Appearance.cs: Added ComVisible attribute
16842         * Border3DSide.cs: Added ComVisible attribute
16843         * Border3DStyle.cs: Added ComVisible attribute
16844         * BorderStyle.cs: Added ComVisible attribute
16845         * DragAction.cs: Added ComVisible attribute
16846         * ErrorBlinkStyle.cs: Added
16847         * ScrollEventType.cs: Added ComVisible attribute
16848         * AnchorStyles.cs: Added Editor attribute
16849         * DockStyle.cs: Added Editor attribute
16850         * HorizontalAlignment.cs: Added ComVisible attribute
16851         * HelpEventArgs.cs: Added ComVisible attribute
16852         * PaintEventArgs.cs: Added IDisposable
16854 2005-01-04  Peter Bartok <pbartok@novell.com>
16856         * TextControl.cs: Switched Line, LineTag and Document classes to
16857           internal
16859 2005-01-04  Jordi Mas i Hernandez <jordi@ximian.com>
16861         * ComboBox.cs, ThemeWin32Classic.cs, ListBox.cs, Theme.cs:
16862         Simple mode, fixes, IntegralHeight, etc.
16864 2005-01-04  Peter Bartok <pbartok@novell.com>
16866         * TextBoxBase.cs: Using proper font variable now
16868 2005-01-04  Peter Bartok <pbartok@novell.com>
16870         * Form.cs (ShowDialog): Set parent to owner, if provided
16871         * GroupBox.cs: Removed unused vars
16872         * TextControl.cs:
16873           - Added GetHashCode() for Document and LineTag classes
16874           - Removed unused variables
16875           - Added CharIndexToLineTag() and LineTagToCharIndex() methods
16876             to allow translation between continuous char position and line/pos
16877         * CheckBox.cs: Removed vars that are provided by base class
16878         * RadioButton.cs: Removed vars that are provided by base class, added
16879           new keyword where required
16880         * LinkLabel.cs: Added new keyword where required
16881         * Control.cs (WndProc): Removed unused variable
16882         * TextBoxBase.cs:
16883           - Finished SelectionLength property
16884           - Implemented SelectionStart property
16885           - Implemented Text property
16886           - Removed unused vars
16887         * MessageBox.cs: Added new keyword where required
16888         * TextBox.cs: Removed Text property code (now in TextBoxBase), fixed
16889           WndProc signature
16890         * MenuAPI.cs: Added new keyword where required
16891         * ButtonBase.cs: Removed vars that are provided by base class, added
16892           new keyword where required
16893         * ThemeWin32Classic.cs (DrawMonthCalendarDate): Now cast Math.Floor
16894           argument to double, to allow compiling with csc 2.0 (Atsushi ran
16895           into this)
16896         * Application.cs (Run): Now triggers the ThreadExit event
16897         * CommonDialog.cs: Added new keyword where required; now properly sets
16898           parent (owner) for dialog
16899         * XplatUIX11.cs: Commented out unused vars
16900         * StatusBar.cs: Fixed signature for Text property
16901         * TabPage.cs: Undid Jordi's removal of unused var, now using the var
16903 2005-01-04  Jordi Mas i Hernandez <jordi@ximian.com>
16905         * ComboBox.cs, TabPage.cs, MenuAPI.cs, ThemeWin32Classic.cs,
16906         TrackBar.cs, MonthCalendar.cs: remove unused vars
16908 2005-01-03  Jackson Harper  <jackson@ximian.com>
16910         * ThemeWin32Classic.cs:
16911         * X11Keyboard.cs: Remove unused vars.
16913 2005-01-03  Peter Bartok  <pbartok@novell.com>
16915         * TextBox.cs:
16916           - set_Text: Tied into TextControl
16917           - set_TextAlignment: Tied into TextControl
16918         * TextControl.cs:
16919           - Added alignment properties and implemented alignment handling
16920             and drawing (still has a bug, not generating proper expose events)
16921           - Added new Line() constructor to allow passing the line alignment
16922           - Fixed selection setting, properly handling end<start now
16923           - Added aligment considerations to RecalculateDocument()
16924         * TextBoxBase.cs:
16925           - Now properly enforces control height for single line controls
16926           - Added support for CharacterCasing
16927           - Added IsInputKey override
16928           - Fixed Keys.Enter logic
16929           - Added SetBoundsCore override
16930           - Fixed mouse selection handling
16932 2005-01-03  Jackson Harper  <jackson@ximian.com>
16934         * TreeView.cs:
16935           - Collapse and uncheck all nodes when CheckBoxes is disabled.
16936           - Checkboxes are always aligned to the bottom of the node,
16937           regardless of item height.
16938           - Use the node bounds to draw the text so we can center it when
16939           the item height is greater then the font height.
16940           - Node::Bounds are only the text part of the node.
16941         * TreeNode.cs: New method to combine collapsing and unchecking all
16942           nodes recursively.
16944 2005-01-02  Jackson Harper  <jackson@ximian.com>
16946         * TreeView.cs: Draw checkmarks, handle detecting check mark clicks
16947         * TreeNode.cs: Add a bounding box for the checkbox, refresh the
16948         tree when a check is changed. TODO: Only refresh the checked node.
16950 2004-12-30  Jackson Harper  <jackson@ximian.com>
16952         * TreeView.cs: Draw checkbox boxes when checkboxes are enabled.
16953         * TreeNode.cs: When collapsing make sure to never collapse the
16954         root node.
16956 2004-12-29  Jackson Harper  <jackson@ximian.com>
16958         * TreeView.cs: Align lines to the bottom of plus minus boxes properly.
16959         
16960 2004-12-28  Zoltan Varga  <vargaz@freemail.hu>
16962         * X11Structs.cs X11Keyboard.cs XplatUIX11.cs: Fix 64 bit issues.
16964 2004-12-28  Peter Bartok  <pbartok@novell.com>
16966         * MessageBox.cs (get_CreateParams): Don't use owner var if it's
16967           not yet assigned
16969 2004-12-28  Peter Bartok  <pbartok@novell.com>
16971         * Control.cs (WndProc): Added WM_HELP handler, now generates
16972           HelpRequested event
16973         * Form.cs: Added HelpButton property and required support code
16974         * XplatUIStructs.cs: Added HELPINFO structure for WM_HELP handling
16976 2004-12-28  Peter Bartok  <pbartok@novell.com>
16978         * CommonDialog.cs:
16979           - Made DialogForm.owner variable internal
16980           - Added check to ensure owner form is set before setting
16981             owner properties in CreateParams
16983 2004-12-28  Geoff Norton  <gnorton@customerdna.com>
16985         * XplatUIOSX.cs: Implement mouse hovering.  Fix QDPoint struct to avoid
16986           swizzling.  Implement ClientToScreen and ScreenToClient.  Implement
16987           GetCursorPos.  Fix major visibility issues.  Rework the windowing
16988           system to support borderless/titleless windows (implements menus).
16989           Fix GetWindowPos.  Implement initial background color support for
16990           views.
16992 2004-12-28  Peter Bartok  <pbartok@novell.com>
16994         * Form.cs (get_CreateParams): Make sure we have an owner before using
16995           the owner variable. Implement proper default if no owner exists
16997 2004-12-28  Peter Bartok  <pbartok@novell.com>
16999         * In preparation for making Managed.Windows.Forms the default build target
17000           for System.Windows.Forms, the following stubbed files were added.
17001           Dialogs are currently being implemented by contributors and are only
17002           short-term place holders.
17003         * ColorDialog.cs: Initial check-in (minmal stub)
17004         * DataGrid.cs: Initial check-in (minimal stub)
17005         * DataGridLineStyle.cs: Initial check-in (minimal stub)
17006         * DataGridParentRowsLabelStyle.cs: Initial check-in (minimal stub)
17007         * DataGridTableStyle.cs: Initial check-in (minimal stub)
17008         * FontDialog.cs: Initial check-in (minimal stub)
17009         * FileDialog.cs: Initial check-in (minimal stub)
17010         * GridColumnStylesCollection.cs: Initial check-in (minimal stub)
17011         * GridTableStylesCollection.cs: Initial check-in (minimal stub)
17012         * OpenFileDialog: Initial check-in (minimal stub)
17013         * IComponentEditorPageSite.cs: Initial check-in
17014         * Splitter.cs: Initial check-in (for Jackson)
17015         * SplitterEventArgs.cs: Initial check-in (for Jackson)
17016         * SplitterEventHandler.cs: Initial check-in (for Jackson)
17017         * TextBox.cs: Initial check-in; still needs some wiring to
17018           TextControl backend
17019         * Form.cs: Implemented ControlBox property
17020         * MessageBox.cs: Added proper coding for Minimize/Maximize/ControlBox
17021         * CommonDialog.cs: Added proper coding for Minimize/Maximize/ControlBox
17022         * TextControl.cs: Added selection functionality; added todo header
17023         * TextBoxBase.cs:
17024           - Implemented Lines property
17025           - Implemented TextHeight property
17026           - Implemented SelectedText property
17027           - Implemented SelectionLength property
17028           - Implemented SelectAll method
17029           - Implemented ToString method
17030           - Removed and cleaned up some debug code
17031           - Implemented (still buggy) mouse text selection
17033 2004-12-27  Jordi Mas i Hernandez <jordi@ximian.com>
17035         * ComboBox.cs: Complete DropDownList implementation, fixes.
17037 2004-12-26  Jordi Mas i Hernandez <jordi@ximian.com>
17039         * ThemeWin32Classic, Theme.cs: ComboBox drawing methods
17040         * ComboBoxStyle.cs: ComboBoxStyle enum
17041         * ComboBox.cs: Initial work on ComboBox control
17043 2004-12-21  Peter Bartok  <pbartok@novell.com>
17045         * Control.cs (ctor, CreateParams): Moved setting of is_visible
17046           forward so that anything that creates a window gets the default,
17047           also no longer uses Visible property in CreateParams to avoid
17048           walking up the parent chain and possibly get the wrong visible
17049           status. Fixed IsVisible to no longer walk up to the parent.
17051 2004-12-21  Peter Bartok  <pbartok@novell.com>
17053         * Form.cs (ShowDialog): Unset modality for the proper window
17055 2004-12-20  Peter Bartok  <pbartok@novell.com>
17057         * CommonDialog.cs: Initial check-in
17059 2004-12-20  Peter Bartok  <pbartok@novell.com>
17061         * Control.cs (Visible): Now uses the parent window instead of the
17062           client area window for the property
17064         * Form.cs
17065           - ShowDialog(): Now uses the proper window for modality
17066           - The default visibility state for the form parent is now false. This
17067             will prevent the user from seeing all the changes to the form and
17068             its controls before the application hits Application.Run()
17069           - Removed some stale commented out code
17071         * NativeWindow.cs:
17072           - Added FindWindow() method to have a method to check for existence
17073             of a window handle
17074           - Added ability to override default exception handling (for example
17075             when debugging with VS.Net; to do this the ExternalExceptionHandler
17076             define must be set
17077           - Removed some useless debug output
17079         * XplatUIX11.cs:
17080           - Removed r37929 (SetModal patch from Ashwin Bharambe), was
17081             not working as expected
17082           - Implemented modal_window stack and checking for _WM_ACTIVE_WINDOW
17083             property to allow switching back to the modal window if focus is
17084             given to another one of our windows (Application Modal)
17085           - Now only sets override_redirect if we create a window
17086             without WS_CAPTION
17087           - Moved EventMask selection before mapping of newly created window
17088             so we can catch the map event as well
17089           - Implemented Activate() method via the _WM_ACTIVE_WINDOW property
17090           - Added various Atom related DllImports
17091           - Implemented Exit() method
17092           - .ctor() : No longer shows window if WS_VISIBLE is not defined
17093             in the CreateParams
17095         * MessageBox.cs: Now properly deals with the FormParent window by
17096           providing an override the FormParent CreateParams property to
17097           set as POPUP instead of OVERLAPPED window.
17099 2004-12-19  Geoff Norton  <gnorton@customerdna.com>
17101         * XplatUIOSX.cs: Implement DestroyWindow.  Implement ScrollWindow
17102         Minor code cleanup.
17104 2004-12-19  Geoff Norton  <gnorton@customerdna.com>
17105         
17106         * XplatUIOSX.cs (SetModal): Implement this method on OSX.
17108 2004-12-18  Peter Bartok  <pbartok@novell.com>
17110         * XplatUIX11.cs (SetModal): Applied patch from Ashwin Bharambe,
17111           implementing SetModal() method
17113 2004-12-18  Peter Bartok  <pbartok@novell.com>
17115         * X11Structs.cs (XGCValues): Fixed type of function element
17116         * XplatUI.cs: Added ScrollWindow() method
17117         * XplatUIDriver.cs: Added ScrollWindow() abstract
17118         * XplatUIWin32.cs: Implemented ScrollWindow() method
17119         * XplatUIX11.cs: Implemented ScrollWindow() method
17120         * XplatUIOSX.cs: Stubbed out ScrollWindow() method
17122 2004-12-17  Geoff Norton  <gnorton@customerdna.com>
17124         * XplatUIOSX.cs:  Fix cursor to use an Invert instead of drawing it
17125         Some more keyboard support (INCOMPLETE)
17127 2004-12-17  Peter Bartok  <pbartok@novell.com>
17129         * TextControl.cs:
17130         - Added color attribute to line tags.
17131         - Added color argument to all functions dealing with tags
17132         - Added color argument support to various functions
17133         - Fixed miss-calculation of baseline/shift in certain circumstances
17135         * TextBoxBase.cs: Added new color option to test code
17137 2004-12-17  Jackson Harper  <jackson@ximian.com>
17139         * TreeNode.cs:
17140         * MonthCalendar.cs: Signature fixes
17142 2004-12-17  Geoff Norton  <gnorton@customerdna.com>
17144         * XplatUIOSX.cs: Find the missing caret; caret was dissappearing after a
17145         keyboard event moved it.  Create a new graphics context for each paint resolves this
17147 2004-12-17  Geoff Norton  <gnorton@customerdna.com>
17149         * XplatUIOSX.cs: Fix hard cpu eat on loop with existing timers,
17150         Make caret exist and go blink blink.  Initial keyboard support.
17151         Fix exception handler, Add Invalidate support.  Change way RefreshWindow
17152         works.
17154 2004-12-17  Jackson Harper  <jackson@ximian.com>
17156         * XplatUIStructs.cs: Updated set of virtual keycodes.
17157         * KeyboardLayouts.cs: SCROLL_LOCK is now SCROLL
17159 2004-12-17  Jackson Harper  <jackson@ximian.com>
17161         * XplatUIX11.cs: Prune old keyboard code.
17163 2004-12-17  Jackson Harper  <jackson@ximian.com>
17165         * XplatUIX11.cs: When generating mouse wparams get the modifier
17166         keys from the ModifierKeys property.
17168 2004-12-17  Jackson Harper  <jackson@ximian.com>
17170         * X11Keyboard.cs: Send up/down input when generating
17171         messages. Remove some unused vars.
17173 2004-12-17  Jackson Harper  <jackson@ximian.com>
17175         * TabControl.cs:
17176         * TreeView.cs: get rid of warnings.
17178 2004-12-17  Jackson Harper  <jackson@ximian.com>
17180         * XplatUIStructs.cs: Fix a couple wrong virtual keycodes.
17182 2004-12-17  Jordi Mas i Hernandez <jordi@ximian.com>
17184         * ListBox.cs: bug fixes, changes for CheckedListBox.cs
17185           CheckedListBox.cs: Implementation
17187 2004-12-17  Peter Bartok  <pbartok@novell.com>
17189         * TextControl.cs (RecalculateLine): Fixed baseline aligning calcs
17191 2004-12-16  Peter Bartok  <pbartok@novell.com>
17193         * TextControl.cs:
17194           - InsertCharAtCaret(): Fixed start pos fixup
17195           - CaretLine_get: No longer derives the line from the tag, the tag
17196             could be stale if lines in the document have been added or deleted
17197           - RebalanceAfterDelete(): Fixed bug in balancing code
17198           - RebalanceAfterAdd(): Fixed really stupid bug in balancing code
17199           - Line.Streamline(): Now can also elminate leading empty tags
17200           - DumpTree(): Added a few more tests and prevented exception on
17201             uninitialized data
17202           - Added Debug section for Combining lines
17203           - Delete(): Now copies all remaining properties of a line
17204           
17205         * TextBoxBase.cs:
17206           - Left mousebutton now sets the caret (and middle button still acts
17207             as formatting tester, which must go away soon)
17208           - Added Debug section for Deleting/Combining lines
17209           - Fixed calculations for UpdateView after Combining lines
17211 2004-12-16  Peter Bartok  <pbartok@novell.com>
17213         * TextControl.cs: Now properly aligns text on a baseline, using the
17214           new XplatUI.GetFontMetrics() method. Simplified several calculations
17215         * TextBoxBase.cs: Moved #endif to allow compiling if Debug is not
17216           defined
17218 2004-12-16  Peter Bartok  <pbartok@novell.com>
17220         * XplatUI.cs: Added GetFontMetrics() method
17221         * XplatUIDriver.cs: Added GetFontMetrics() abstract
17222         * XplatUIX11.cs: Implemented GetFontMetrics() method, now calls
17223           into libgdiplus, our private GetFontMetrics function
17224         * XplatUIOSX.cs: Implemented GetFontMetrics() method, same as X11
17225         * XplatUIWin32.cs: Implemented GetFontMetrics() method
17227 2004-12-16  Jackson Harper  <jackson@ximain.com>
17229         * XplatUIStruct.cs: Add enum for dead keys
17230         * X11Keyboard.cs: Map and unmap dead keys.
17232 2004-12-16  Jackson Harper  <jackson@ximian.com>
17234         * X11Keyboard.cs: Detect and use the num lock mask.
17236 2004-12-16  Peter Bartok  <pbartok@novell.com>
17238         * Control.cs (CreateGraphics): Added check to make sure the
17239           handle of the window exists before calling Graphics.FromHwnd()
17241 2004-12-16  Peter Bartok  <pbartok@novell.com>
17243         * TextBoxBase.cs: Initial check-in. DO NOT TRY TO USE THIS YET. It
17244           contains a lot of code that's not supposed to be there for the
17245           real thing, but required for developing/testing the textbox
17246           backend.
17248 2004-12-16  Peter Bartok  <pbartok@novell.com>
17250         * TextControl.cs:
17251         - Fixed Streamline method
17252         - Added FindTag method to Line
17253         - Added DumpTree method for debugging
17254         - Added DecrementLines() method for deleting lines
17255         - Fixed UpdateView to update the cursor to end-of-line on single-line
17256           updates
17257         - Added PositionCaret() method
17258         - Fixed MoveCaret(LineDown) to move into the last line, too
17259         - Added InsertChar overload
17260         - Fixed InsertChar tag offset calculations
17261         - Added DeleteChar() method
17262         - Added Combine() method for folding lines
17263         - Fixed Delete() method, no longer allocates wasted Line object and
17264           now copies all properties when swapping nodes
17265         - Delete() method now updates document line counter
17267 2004-12-15  Jackson Harper  <jackson@ximian.com>
17269         * XplatUIX11.cs: Get the modifier keys from the keyboard driver
17270         * X11Keyboard.cs: Expose the currently selected modifier keys
17271         through a property.
17273 2004-12-15  Peter Bartok  <pbartok@novell.com>
17275         * TextControl.cs: Initial check-in. Still incomplete
17277 2004-12-15  Jackson Harper  <jackson@ximian.com>
17279         * TreeNode.cs:
17280         * TreeView.cs: Fix build on csc (second time today ;-))
17282 2004-12-15  Jackson Harper  <jackson@ximian.com>
17284         * TreeView.cs: Store the treenodes plus/minus box bounds when it
17285         is calculated and use this for click testing.
17286         * TreeNode.cs: Add functionality to store the nodes plus minus box bounds.
17288 2004-12-15  Jackson Harper  <jackson@ximian.com>
17290         * TreeView.cs: Pass the nodes image index to the image list when
17291         drawing that image.
17293 2004-12-15  Jackson Harper  <jackson@ximian.com>
17295         * X11Keyboard.cs: Set messages hwnd.
17296         * XplatUIX11.cs: Pass proper hwnd wot keyboard driver. Set hwnd on
17297         post_message calls.
17299 2004-12-15  Jackson Harper  <jackson@ximian.com>
17301         * X11Keyboard.cs: Fix to compile with csc.
17302         
17303 2004-12-15  Jackson Harper  <jackson@ximian.com>
17305         * X11Structs.cs: Add key mask values
17306         * XplatUIStruct.cs: Add keyboard event flags, and keyboard definitions
17307         * X11Keyboard.cs: New file - Extrapolates and interpolates key
17308         down/up foo into WM_CHAR foo
17309         * KeyboardLayouts.cs: Common keyboard layouts
17310         * XplatUIX11.cs: Add the keyboard driver. Add functionality to
17311         post messages into the main queue.
17313 2004-12-13  Jordi Mas i Hernandez <jordi@ximian.com>
17315         * Button.cs: implement ProcessMnemonic
17316         * ThemeWin32Classic.cs: use ResPool (caching) instead of creating
17317           brushes everytime
17318         * Control.cs: fixes IsMnemonic (support for &&, case insensitive, etc)
17319         * ButtonBase.cs: Show HotkeyPrefix (not the &)
17321 2004-12-12  John BouAntoun  <jba-mon@optusnet.com.au>
17322         
17323         * MonthCalendar.cs: Implemented click-hold for next/previous month
17324           and date selection
17325           
17326 2004-12-11  Peter Bartok  <pbartok@novell.com>
17328         * X11Structs.cs:
17329           - Added XKeyboardState (moved from XplatUIX11.cs)
17330           - Added XCreateGC related enums and structures
17331           - Added GXFunction for XSetFunction
17333         * XplatUIStructs.cs: Added missing WS_EX_xxx definitions
17335         * XplatUI.cs: Added CreateCaret(), DestroyCaret(), SetCaretPos() and
17336           CaretVisible() calls
17338         * ToolTip.cs: Added code to prevent stealing focus from app windows
17340         * XplatUIDriver.cs: Added abstracts for caret functions (CreateCaret,
17341           DestroyCaret, SetCaretPos and CaretVisible)
17343         * XplatUIX11.cs:
17344           - Added implementation for caret functions
17345           - Moved hover variables into a struct, to make it a bit easier
17346             on the eyes and to debug
17347           - Removed XKeyboardState (moved to XplatUIX11.cs)
17348           - Moved Keyboard properties into the properties region
17350         * Control.cs (get_Region): Control.CreateGraphics is the appropriate
17351           call to get a graphics context for our control
17353         * XplatUIOSX.cs: Added empty overrides for the new caret functions
17355         * TreeView.cs: Fixed bug. No matter what color was set it would always
17356           return SystemColors.Window
17358         * XplatUIWin32.cs: Implemented caret overrides
17360 2004-12-10  Jordi Mas i Hernandez <jordi@ximian.com>
17362         * ListBox.cs: fire events, implement missing methods and properties,
17363         sorting.
17365 2004-12-10  John BouAntoun <jba-mono@optusnet.com.au>
17367         * MonthCalendar.cs: invalidation bug fixing
17368         * ThemeWin32Classic.cs: paint fixing
17370 2004-12-09  Geoff Norton  <gnorton@customerdna.com>
17372         * XplatUIOSX.cs: Refactor to pass the real hwnd into Graphics.FromHwnd, we
17373         prepare the CGContextRef there now.
17375 2004-12-09  John BouAntoun <jba-mono@optusnet.com.au>
17377         * MonthCalendar.cs:
17378           - optimisationL only invalidate areas that have changed
17379         * ThemeWin32Classic.cs:
17380           - only paint parts that intersect with clip_area
17382 2004-12-09  Peter Bartok  <pbartok@novell.com>
17384         * Application.cs: Undid changes from r37004 which cause problems
17385         on X11
17387 2004-12-09  Ravindra  <rkumar@novell.com>
17389         * ToolBar.cs: Added support for displaying ContextMenu
17390         attached to a button on ToolBar.
17391         * ToolBarButton.cs: Uncomment/fixed the DropDownMenu
17392         property.
17394 2004-12-09  Jordi Mas i Hernandez <jordi@ximian.com>
17396         * Label.cs: autosize works in text change and removes unnecessary
17397         invalidate
17399 2004-12-09  Jordi Mas i Hernandez <jordi@ximian.com>
17401         * ThemeWin32Classic.cs, XplatUIOSX.cs, XplatUIWin32.cs:
17402         remove warnings
17404 2004-12-08  Geoff Norton  <gnorton@customerdna.com>
17406         * XplatUIOSX.cs: Added mouse move/click/grab support
17407         Remove some debugging WriteLines not needed anymore.
17408         Add window resizing/positioning.
17409         Fix visibility on reparenting.
17411 2004-12-08  Peter Bartok  <pbartok@novell.com>
17413         * XplatUIOSX.cs: Added Idle event, now compiles on VS.Net
17415 2004-12-07  Geoff Norton  <gnorton@customerdna.com>
17417         * XplatUIOSX.cs: Initial checkin
17418         * XplatUI.cs: Use the Quartz driver if the environment is set to use it
17420 2004-12-03  Ravindra <rkumar@novell.com>
17422         * ListView.cs: Added some keybindings and fixed scrolling.
17423         ScrollBars listen to ValueChanged event instead of Scroll
17424         Event. This would let us take care of all changes being
17425         done in the scrollbars' values programmatically or manually.
17426         * ListView.cs (CanMultiselect): Added a check for shift key.
17427         * ListView.cs (EnsureVisible): Fixed. Do proper scrolling.
17428         * ListViewItem.cs (Clone): Fixed. We need to make a copy
17429         of ListViewSubItemCollection as well.
17431 2004-12-06  Peter Bartok <pbartok@novell.com>
17433         * Control.cs (Parent): Added check and exception to prevent
17434         circular parenting
17436 2004-12-03  Jordi Mas i Hernandez <jordi@ximian.com>
17438         * ListBox.cs: implemented clipping, selection single and multiple,
17439         bug fixing
17441 2004-12-03  Ravindra <rkumar@novell.com>
17443         * ListView.cs (ListView_KeyDown):
17444         * ListView.cs (ListView_KeyUp): Fixed multiple selection handling
17445         when CTRL key is pressed.
17446         * ListViewItem.cs (Selected): Fixed setting the property.
17448 2004-12-03  Marek Safar  <marek.safar@seznam.cz>
17450         * Application.cs (OnThreadException): Use ThreadExceptionDialog.
17452         * Form.cs: Add ActiveForm, FormBorderStyle, MaximizeBox,
17453         MinimizeBox, ShowInTaskbar, TopMost properties.
17455         * ThreadExceptionDialog.cs: Implemented (disabled TextBox until
17456         will be implemented).
17458 2004-12-03  Marek Safar  <marek.safar@seznam.cz>
17460         * OwnerDrawPropertyBag.cs: New internal parameterless ctor.
17462         * TreeNode.cs: Implemented ICloneable, Fixed to pass my simple
17463         tests.
17464         
17465         * TreeNodeCollection.cs: Add exception throwing for Add,AddRange.
17466         
17467         * TreeView.cs: BackColor is Colors.Window.
17469 2004-12-01  Jackson Harper  <jackson@ximian.com>
17471         * TreeView.cs: When resizing the tree if the user is making it
17472         smaller we don't get expose events, so we need to handle adding
17473         the horizontal scrollbar in the size changed handler as well as
17474         the expose handler.
17476 2004-12-02  Jordi Mas i Hernandez <jordi@ximian.com>
17478         * DrawItemState.cs: fixes wrong enum values
17480 2004-12-01  Jackson Harper  <jackson@ximian.com>
17482         * TreeView.cs: Resize the hbar as well as the vbar on resize.
17484 2004-12-01  Jackson Harper  <jackson@ximian.com>
17486         * NodeLabelEditEventArgs.cs:
17487         * NodeLabelEditEventHandler.cs:
17488         * OpenTreeNodeEnumerator.cs:
17489         * TreeNode.cs:
17490         * TreeNodeCollection.cs:
17491         * TreeView.cs:
17492         * TreeViewAction.cs:
17493         * TreeViewCancelEventArgs.cs:
17494         * TreeViewCancelEventHandler.cs:
17495         * TreeViewEventArgs.cs:
17496         * TreeViewEventHandler.cs: Initial implementation.
17498 2004-12-01  Ravindra <rkumar@novell.com>
17500         * ListView.cs (CalculateListView): Fixed scrolling related
17501         calculations. Also, removed some debug statements from other
17502         places.
17503         * ListViewItem.cs: Changed access to 'selected' instance variable
17504         from private to internal.
17505         * ThemeWin32Classic.cs (DrawListViewItem): Fixed SubItem drawing.
17507 2004-12-01  Jordi Mas i Hernandez <jordi@ximian.com>
17509         * ThemeWin32Classic.cs: remove cache of brush and pens for
17510         specific controls and use the global system, fixes scrollbutton
17511         bugs (for small sizes, disabled, etc)
17512         
17513         * ScrollBar.cs: does not show the thumb for very small controls
17514         (as MS) and allow smaller buttons that the regular size
17516 2004-12-01  Miguel de Icaza  <miguel@ximian.com>
17518         * UpDownBase.cs: Add abstract methods for the interface.
17519         Add new virtual methods (need to be hooked up to TextEntry when it
17520         exists).
17521         Add override methods for most features.
17522         Computes the size, forces the height of the text entry.
17524         * NumericUpDown.cs: Put here the current testing code.
17526         * Set eol-style property on all files that do not have mixed line
17527         endings, to minimize the future problems.  There are still a few
17528         files with mixed endings, and someone should choose whether they
17529         want to move it or not.
17531 2004-11-30  Jordi Mas i Hernandez <jordi@ximian.com>
17533         * MonthCalendar.cs, ListView.cs: use Theme colours instead of
17534         System.Colors
17535         
17536 2004-11-30  Ravindra <rkumar@novell.com>
17538         * ThemeWin32Classic.cs (DrawListViewItem): Fixed selected item
17539         drawing and replaced use of SystemColors by theme colors.
17540         * ListView.cs (ListView_Paint): Fixed painting done during scrolling.
17541         * ListView.cs (ListViewItemCollection.Add): Throw exception when
17542         same ListViewItem is being added more than once.
17544 2004-11-30  John BouAntoun <jba-mono@optusnet.com.au>
17546         * MonthCalendar.cs:
17547           - ControlStyles love to make the control not flicker
17548           
17549 2004-11-30  Peter Bartok  <pbartok@novell.com>
17551         * CharacterCasing.cs: Added
17553 2004-11-29  Peter Bartok  <pbartok@novell.com>
17555         * TreeNode.cs, TreeNodeCollection.cs, TreeView.cs,
17556           TreeViewAction.cs, TreeViewEventArgs.cs: Removed new files.
17557           I am removing these files as they conflict with already completed
17558           work. While it is fantastic to get contributions to MWF, I
17559           respectfully ask that everyone please coordinate their contributions
17560           through mono-winforms-list or #mono-winforms at this time. We're
17561           explicitly avoiding stubbing and don't want controls that don't have
17562           their basic functionality implemented in svn. Please also see
17563           http://www.mono-project.com/contributing/winforms.html
17566 2004-11-29  Marek Safar  <marek.safar@seznam.cz>
17568         * Application.cs (ModalRun): Don't hang after exit.
17570         * Theme.cs: New TreeViewDefaultSize property.
17572         * ThemeWin32Classic.cs: Replaced hardcoded defaultWindowBackColor
17573         with less hardcoded SystemColors constant.
17574         Implemented TreeViewDefaultSize.
17576         * TreeNode.cs, TreeNodeCollection.cs, TreeView.cs,
17577         TreeViewAction.cs, TreeViewEventArgs.cs: New files.
17580 2004-11-29  John BouAntoun <jba-mono@optusnet.com.au>
17582         * MonthCalendar.cs:
17583           - Fix NextMonthDate and PrevMonthDate click moving calendar
17585 2004-11-26  John BouAntoun <jba-mono@optusnet.com.au>
17587         * MonthCalendar.cs:
17588           - Fix usage of ScrollChange Property when scrolling months
17590 2004-11-26  Jordi Mas i Hernandez <jordi@ximian.com>
17592         * Menu.cs, MainMenu.cs, MenuItem.cs, MenuAPI.cs
17593          - Fixes menu destroying
17594          - Support adding and removing items on already created menus
17596 2004-11-26  John BouAntoun <jba-mono@optusnet.com.au>
17598         * MonthCalendar.cs:
17599           - Re-worked all bolded dates handling to match win32
17600         * ThemeWin32Classic.cs:
17601           - Fixed rendering with bolded dates
17603 2004-11-25  Jordi Mas i Hernandez <jordi@ximian.com>
17605         * ListBox.cs, Theme.cs, ThemeWin32Classic.cs:
17606         - Horizontal scroolbar
17607         - Multicolumn
17608         - Fixes
17611 2004-11-25  John BouAntoun <jba-mono@optusnet.com.au>
17613         * MonthCalendar.cs:
17614           - Fix Usage of MaxSelectionCount from SelectionRange
17615           - Fixed Shift + Cursor Selection
17616           - Fixed Shift + (Pg up/Pg dn, Home/End) selection
17617           - Fixed normal cursor selection to be compat with win32
17618           - Fixed Shift + Mouse Click selection
17620 2004-11-24  Peter Bartok <pbartok@novell.com>
17622         * XplatUI.cs (DispatchMessage): Switched to return IntPtr
17623         * XplatUIDriver.cs (DispatchMessage): Switched to return IntPtr
17624         * XplatUIX11.cs:
17625           - CreatedKeyBoardMsg now updates keystate with Alt key
17626           - Added workaround for timer crash to CheckTimers, Jackson will
17627             develop a proper fix and check in later
17628           - Implemented DispatchMessage
17629           - Removed calling the native window proc from GetMessage (call
17630             now moved to DispatchMessage)
17632         * KeyEventArgs.cs (Constructor): Now combines modifierkeys into
17633           the keydata (Fixes bug #69831)
17635         * XplatUIWin32.cs:
17636           - (DispatchMessage): Switched to return IntPtr
17637           - Added DllImport for SetFocus
17639 2004-11-24  Ravindra <rkumar@novell.com>
17641         * ThemeWin32Classic.cs: Fixed ListView border and checkbox
17642         background drawing.
17643         * ListViewItem.cs: Fixed various properties, calculations
17644         and Clone() method. Fixed ListViewSubItemCollection.Clear() method.
17645         * ListView.cs: Fixed calculations, BackColor, ForeColor properties
17646         and some internal properties. Fixed MouseDown handler and Paint
17647         method.
17649 2004-11-24  John BouAntoun <jba-mono@optusnet.com.au>
17651         * MonthCalendar.cs: Add TitleMonth ContextMenu handling
17653 2004-11-24  John BouAntoun <jba-mono@optusnet.com.au>
17655         * ContainerControl.cs: correct accidental check in of local changes
17657 2004-11-24  John BouAntoun <jba-mono@optusnet.com.au>
17659         * ThemeWin32Classic.cs:
17660                 - Fixed Drawing Last month in grid (sometimes not showing)
17661         * MonthCalendar.cs:
17662                 - Fixed title width calculation bug (makeing title small)
17664 2004-11-23  Peter Bartok <pbartok@novell.com>
17666         * XplatUIX11.cs:
17667           - Added generation of WM_MOUSEHOVER event
17668           - Added missing assignment of async_method atom
17669           - Fixed WM_ERASEBKGND; now only redraws the exposed area
17671 2004-11-23  John BouAntoun <jba-mono@optusnet.com.au>
17673         * ThemeWin32Classic.cs:
17674                 - Fixed Drawing of today circle when showtodaycircle not set
17675                 - fixed drawing of first and last month in the grid (gay dates)
17676         * MonthCalendar.cs:
17677                 - Fixed Drawing of today circle
17678                 - Fixed drawing of grady dates
17679                 - Fixed HitTest for today link when ShowToday set to false
17680                 - Fixed DefaultSize to obey ShowToday
17682 2004-11-23  John BouAntoun <jba-mono@optusnet.com.au>
17684         * ThemeWin32Classic.cs: Fixed DrawMonthCalendar and private support methods
17685         * System.Windows.Forms/Theme.cs
17686         * MonthCalendar.cs: added for MonthCalendar
17687         * SelectionRange.cs: added for MonthCalendar
17688         * Day.cs: added for MonthCalendar: added for MonthCalendar
17689         * DateRangeEventArgs.cs: added for MonthCalendar
17690         * DateRangeEventHandler.cs: added for MonthCalendar
17692 2004-11-22  Ravindra <rkumar@novell.com>
17694         * ThemeWin32Classic.cs: Fixed ListViewDrawing with 'UseItemStyleForSubItems'
17695         property.
17697 2004-11-22  Miguel de Icaza  <miguel@ximian.com>
17699         * UpDownBase.cs (InitTimer): Use prehistoric C# 1.0 notation for
17700         event handler.
17701         
17702         * NumericUpDown.cs: Added new implementation.
17703         * UpDownBase.cs: Added new implementation.
17705         * XplatUIWin32.cs (KeyboardSpeed, KeyboardDelay): added default
17706         implementations.
17707         
17708         * XplatUIX11.cs (KeyboardSpeed, KeyboardDelay): added default
17709         implementations.
17711         * XplatUIDriver.cs ((KeyboardSpeed, KeyboardDelay): added new
17712         methods.
17714 2004-11-21  Miguel de Icaza  <miguel@ximian.com>
17716         * Timer.cs  (Dispose): Should call the base dispose when
17717         overriding.
17719 2004-11-19  Jordi Mas i Hernandez <jordi@ximian.com>
17721         * ScrollBar.cs: updates thumb position when max, min or increment
17722         is changed
17724 2004-11-21  Ravindra <rkumar@novell.com>
17726         * ListView.cs: Implemented item selection, activation and
17727         column header style. Fixed properties to do a redraw, if
17728         required. Added support for MouseHover, DoubleClick, KeyDown
17729         and KeyUp event handling and some minor fixes.
17730         * ListViewItem.cs: Fixed constructor.
17731         * ThemeWin32Classic.cs: Improved drawing for ListView.
17733 2004-11-19  Jordi Mas i Hernandez <jordi@ximian.com>
17735         * ThemeWin32Classic.cs: initial listbox drawing code
17736         * DrawMode.cs: new enumerator
17737         * ListControl.cs: stubbed class
17738         * ListBox.cs: initial implementation
17739         * Theme.cs: new methods definitions
17740         * SelectionMode.cs: new enumerator
17742 2004-11-17  Peter Bartok  <pbartok@novell.com>
17744         * XplatUIWin32.cs: Added double-click events to the class style
17745         * Control.cs (WndProc):
17746           - Added handling of click-count to MouseDown/ MouseUp events.
17747           - Added handling of middle and right mouse buttons
17748           - Removed old debug code
17750 2004-11-17  Jackson Harper  <jackson@ximian.com>
17752         * XplatUIX11.cs: Use the new Mono.Unix namespace.
17754 2004-11-17  Ravindra <rkumar@novell.com>
17756         * ListView.cs: Added event handling for MouseMove/Up/Down.
17757         * ColumnHeader.cs: Added a read-only internal property 'Pressed'.
17758         * ThemeWin32Classic.cs: We need to clear the graphics context and
17759         draw column header in a proper state.
17762 2004-11-17  Jordi Mas i Hernandez <jordi@ximian.com>
17764         *  Menu.cs: fixes signature
17766 2004-11-16  Peter Bartok  <pbartok@novell.com>
17768         * XplatUIX11.cs (GetMessage): Implemented generation of
17769           double click mouse messages
17771 2004-11-12  Jordi Mas i Hernandez <jordi@ximian.com>
17773         *  Form.cs, MainMenu.cs, MenuAPI.cs: tracker should be for tracking session
17774         not by menu
17776 2004-11-11  Peter Bartok  <pbartok@novell.com>
17778         * HandleData.cs: Added Visible property
17779         * XplatUIX11.cs (IsVisible): Now uses Visible property from
17780           HandleData
17781         * XplatUIX11.cs: Removed old debug leftovers
17782         * XplatUIX11.cs (DefWndProc): Added WM_ERASEBKGND handler
17783         * Control.cs (WndProc): Removed old debug leftovers,
17784           streamlined handling of WM_WINDOWPOSCHANGED, removed un-
17785           needed WM_SIZE handling
17787 2004-11-11  Jackson Harper  <jackson@ximian.com>
17789         * OwnerDrawPropertyBag.cs:
17790         * TreeViewImageIndexConverter.cs: Initial implementation
17792 2004-11-10  Jackson Harper  <jackson@ximian.com>
17794         * ThemeWin32Classic.cs:
17795         * TabControl.cs: instead of moving tabs by the slider pos just
17796         start drawing at the tab that is offset by the slider. This way
17797         scrolling always moves by exactly one tab.
17799 2004-11-10  Jackson Harper  <jackson@ximian.com>
17801         * TabControl.cs: You can only scroll left when the slider has
17802         already ben moved right.
17803         
17804 2004-11-10  Jackson Harper  <jackson@ximian.com>
17806         * ThemeWin32Classic.cs: Do not draw the selected tab if its not in
17807         the clip area.
17808         
17809 2004-11-10  Jackson Harper  <jackson@ximian.com>
17811         * ThemeWin32Classic.cs: Don't bother drawing tabs outside of the
17812         clip area.
17813         
17814 2004-11-09  Jackson Harper  <jackson@ximian.com>
17816         * TabControl.cs (CalcXPos): New helper method so we can determine
17817         the proper place to start drawing vertical tabs.
17818         * ThemeWin32Classic.cs (DrawTab): Draw right aligned tabs.
17819         
17820 2004-11-09  Jackson Harper  <jackson@ximian.com>
17822         * TabControl.cs: Calculate sizing and rects for left aligned tabs.
17823         * ThemeWin32Classic.cs (GetTabControl*ScrollRect): Only handle Top
17824         and Bottom, left and right are illegal values for this and
17825         multiline is enabled when the alignment is set to left or right.
17826         (DrawTab): Each alignment block should draw the text itself now
17827         because Left requires special love. Also add rendering for Left
17828         aligned tabs.
17829         
17830 2004-11-09  Jordi Mas i Hernandez <jordi@ximian.com>
17832         *  Form.cs, MainMenu.cs, MenuAPI.cs: fixes menu navigation, fixes popups,
17833         does not destroy the windows, removes debugging messages
17835 2004-11-09  jba  <jba-mono@optusnet.com.au>
17837         * ThemeWin32Classic.cs
17838         (DrawButtonBase): Fix verticle text rect clipping in windows
17839         (DrawCheckBox): Fix CheckAlign.TopCenter and CheckAlign.BottomCenter
17840         rendering and incorrect text rect clipping
17841         (DrawRadioButton): Fix CheckAlign.TopCenter and CheckAlign.BottomCenter
17842         rendering and incorrect text rect clipping
17843         
17844 2004-11-08  Jackson Harper  <jackson@ximian.com>
17846         * ThemeWin32Classic.cs (DrawTabControl): Render tabs from top to
17847         bottom when they are bottom aligned so the bottoms of the tabs get
17848         displayed.
17849         * TabControl.cs (DropRow): Move rows up instead of down when the
17850         tab control is bottom aligned.
17852 2004-11-08 13:59  pbartok
17854         * XplatUIX11.cs:
17855           - Added handling for various window styles
17856           - Added handling for popup windows
17857           - Added SetTopmost handling
17859 2004-11-08 13:55  pbartok
17861         * XplatUIWin32.cs:
17862           - Added argument to SetTopmost method
17863           - Fixed broken ClientToScreen function
17865 2004-11-08 13:53  pbartok
17867         * XplatUIStructs.cs:
17868           - Added missing WS_EX styles
17870 2004-11-08 13:53  pbartok
17872         * XplatUI.cs, XplatUIDriver.cs:
17873           - Added argument to SetTopmost
17875 2004-11-08 13:52  pbartok
17877         * X11Structs.cs:
17878           - Added XSetWindowAttributes structure
17879           - Improved XWindowAttributes structure
17880           - Added SetWindowValuemask enum
17881           - Added window creation arguments enum
17882           - Added gravity enum
17883           - Added Motif hints structure
17884           - Added various Motif flags and enums
17885           - Added PropertyMode enum for property functions
17887 2004-11-08 13:50  pbartok
17889         * Form.cs:
17890           - Fixed arguments for updated SetTopmost method
17892 2004-11-08 13:49  pbartok
17894         * ToolTip.cs:
17895           - Fixed arguments for updated SetTopmost function
17896           - Fixed usage of PointToClient
17898 2004-11-08 13:44  pbartok
17900         * MenuAPI.cs:
17901           - Added Clipping of children and siblings
17903 2004-11-08 13:41  pbartok
17905         * MainMenu.cs:
17906           - Removed SetMenuBarWindow call. We do this in Form.cs
17908 2004-11-08 13:40  jackson
17910         * TabControl.cs, Theme.cs, ThemeWin32Classic.cs: Render the little
17911           scrolling jimmi in the correct location with bottom aligned tabs
17913 2004-11-08 13:36  pbartok
17915         * ContainerControl.cs:
17916           - Implemented BindingContext
17917           - Implemented ParentForm
17919 2004-11-08 12:46  jackson
17921         * TabControl.cs: Put bottom rendered tabs in the right location
17923 2004-11-08 07:15  jordi
17925         * ScrollBar.cs, ThemeWin32Classic.cs: fixes vertical scrollbar and
17926           removes dead code
17928 2004-11-05 17:30  jackson
17930         * TabControl.cs: When selected tabs are expanded make sure they
17931           don't go beyond the edges of the tab control
17933 2004-11-05 14:57  jackson
17935         * TabControl.cs: Reset show_slider so if the control is resized to
17936           a size where it is no longer needed it's not displayed anymore
17938 2004-11-05 13:16  jackson
17940         * TabControl.cs: Make tab pages non visible when added to the
17941           control
17943 2004-11-05 12:42  jackson
17945         * TabControl.cs: Implement SizeMode.FillToRight
17947 2004-11-05 12:16  jackson
17949         * Control.cs: Do not call CreateHandle if the handle is already
17950           created
17952 2004-11-05 11:46  jackson
17954         * TabControl.cs: Remove superflous call to CalcTabRows
17956 2004-11-05 09:07  jackson
17958         * XplatUIX11.cs: Update for Mono.Posix changes
17960 2004-11-05 07:00  ravindra
17962         * ListView.cs, ListViewItem.cs: Implemented some methods and fixed
17963           scrolling.
17965 2004-11-04 22:47  jba
17967         * ThemeWin32Classic.cs:
17968           - Fix Button rendering for FlatStyle = Flat or Popup
17969           - Fix RadioButton and CheckBox rendering when Appearance = Button
17970             (normal and flatstyle).
17971           - Correct outer rectangle color when drawing focus rectangle
17972           - Adjust button bounds to be 1 px smaller when focused
17973           - Make button not draw sunken 3d border when pushed (windows compat)
17974           - Fix CPDrawBorder3D to not make bottom right hand corner rounded
17975           - Offset the text in RadioButton and Checkbox when being rendered as
17976           a button.
17977           - Hover and Click behaviour for Colored FlatStyle.Flat and Popup
17978           radiobuttons
17979           - Fixed disabled rendering for colored flatstyle radiobuttons (both)
17980           - Fixed disabled text rendering for normally rendered radiobuttons
17982 2004-11-04 10:26  jackson
17984         * TabControl.cs: Recalculate tab rows when resizing
17986 2004-11-04 07:47  jordi
17988         * Form.cs, MainMenu.cs, Menu.cs, MenuAPI.cs, MenuItem.cs:
17989           collection completion, drawing issues, missing features
17991 2004-11-04 05:03  ravindra
17993         * ScrollBar.cs:
17994                 - We need to recalculate the Thumb area when
17995                 LargeChange/maximum/minimum values are changed.
17996           - We set the 'pos' in UpdatePos() method to minimum, if it's less
17997                 than minimum. This is required to handle the case if large_change is
17998                 more than max, and use LargeChange property instead of large_change
17999                 variable.
18000           - We return max+1 when large_change is more than max, like MS does.
18002 2004-11-04 04:29  ravindra
18004         * ColumnHeader.cs, ListView.cs, ListViewItem.cs:
18005                 - Changed default value signatures (prefixed all with ListView).
18006                 - Fixed/implemented layout LargeIcon, SmallIcon and List views for
18007                 ListView.
18008           - Fixed calculations for ListViewItem and implemented Clone()
18009           method.
18011 2004-11-04 04:26  ravindra
18013         * Theme.cs, ThemeWin32Classic.cs:
18014                 - Changed default ListView values signatures (prefixed all with
18015                 ListView).
18016           - Fixed default size values for VScrollBar and HScrollBar.
18017                 - Fixed DrawListViewItem method.
18019 2004-11-04 04:05  ravindra
18021         * ColumnHeaderStyle.cs: Typo. It should be Nonclickable.
18023 2004-11-04 04:04  ravindra
18025         * ImageList.cs: Implemented the missing overload for Draw method.
18027 2004-11-03 19:29  jackson
18029         * TabControl.cs: Handle dropping rows on selection properly
18031 2004-11-03 11:59  jackson
18033         * TabControl.cs: remove debug code
18035 2004-11-03 11:52  jackson
18037         * TabControl.cs, ThemeWin32Classic.cs: Initial implementation of
18038           the scrolly widgerywoo
18040 2004-11-02 13:52  jackson
18042         * TabControl.cs: Resize the tab pages and tabs when the tab control
18043           is resized
18045 2004-11-02 13:40  jackson
18047         * TabControl.cs, ThemeWin32Classic.cs: Move the row with the
18048           selected tab to the bottom
18050 2004-11-02 13:39  jackson
18052         * TabPage.cs: Store the tab pages row
18054 2004-11-02 12:33  jordi
18056         * MenuItem.cs: fixes handle creation
18058 2004-11-02 11:42  jackson
18060         * TabControl.cs: signature fix
18062 2004-11-02 08:56  jackson
18064         * TabControl.cs: Calculate whether the tab is on an edge properly.
18065           Remove top secret debugging code
18067 2004-11-01 19:57  jackson
18069         * TabControl.cs: Add click handling, and proper sizing
18071 2004-11-01 19:47  jackson
18073         * Theme.cs, ThemeWin32Classic.cs: New rendering and sizing code for
18074           tab controls
18076 2004-11-01 19:39  jackson
18078         * TabPage.cs: add internal property to store the bounds of a tab
18079           page
18081 2004-10-30 04:23  ravindra
18083         * Theme.cs, ThemeWin32Classic.cs: Drawing ListView and some default
18084           values.
18086 2004-10-30 04:21  ravindra
18088         * ListView.cs, ListViewItem.cs: Added support for scrolling and
18089           fixed calculations.
18091 2004-10-30 03:06  pbartok
18093         * XplatUIX11.cs:
18094           - Removed extension of DllImported libs
18096 2004-10-29 09:55  jordi
18098         * Form.cs, MainMenu.cs, Menu.cs, MenuAPI.cs, MenuItem.cs: Menu key
18099           navigation, itemcollection completion, menu fixes
18101 2004-10-27 22:58  pbartok
18103         * XplatUIX11.cs:
18104           - Now throws a nice error message when no X display could be opened
18106 2004-10-26 13:51  jordi
18108         * ListView.cs: removes warning
18110 2004-10-26 03:55  ravindra
18112         * ColumnHeader.cs, ListView.cs, ListViewItem.cs,
18113           ThemeWin32Classic.cs: Some formatting for my last checkins.
18115 2004-10-26 03:36  ravindra
18117         * ThemeWin32Classic.cs: Implemented DetailView drawing for ListView
18118           control and default values.
18120 2004-10-26 03:35  ravindra
18122         * Theme.cs: Added some default values for ListView control.
18124 2004-10-26 03:33  ravindra
18126         * ToolBar.cs: ToolBar should use the user specified button size, if
18127           there is any. Added a size_specified flag for the same.
18129 2004-10-26 03:33  ravindra
18131         * ColumnHeader.cs: Added some internal members and calculations for
18132           ColumnHeader.
18134 2004-10-26 03:32  ravindra
18136         * ListViewItem.cs: Calculations for ListViewItem.
18138 2004-10-26 03:31  ravindra
18140         * ListView.cs: Added some internal members and calculations for
18141           ListView.
18143 2004-10-22 13:31  jordi
18145         * MenuAPI.cs: speedup menus drawing
18147 2004-10-22 13:16  jackson
18149         * XplatUIX11.cs: Make sure to update exposed regions when adding an
18150           expose event
18152 2004-10-22 11:49  jackson
18154         * Control.cs: oops
18156 2004-10-22 11:41  jackson
18158         * Control.cs: Check to see if the window should have its background
18159           repainted by X when drawing.
18161 2004-10-22 11:31  jackson
18163         * XplatUIX11.cs: When invalidating areas only use XClearArea if
18164           clear is true, this way we do not get flicker from X repainting the
18165           background
18167 2004-10-22 11:28  jackson
18169         * XEventQueue.cs: Queue properly
18171 2004-10-21 09:38  jackson
18173         * XEventQueue.cs: Fix access modifier
18175 2004-10-21 09:36  jackson
18177         * XEventQueue.cs: Don't loose messages
18179 2004-10-21 09:22  jackson
18181         * XEventQueue.cs: Don't loose messages
18183 2004-10-20 04:15  jordi
18185         * BootMode.cs: enum need it by SystemInfo
18187 2004-10-19 21:58  pbartok
18189         * XplatUIWin32.cs:
18190           - Small sanity check
18192 2004-10-19 21:56  pbartok
18194         * Form.cs:
18195           - Added private FormParentWindow class which acts as the container
18196             for our form and as the non-client area where menus are drawn
18197           - Added/Moved required tie-ins to Jordi's menus
18198           - Fixed/Implemented the FormStartPosition functionality
18200 2004-10-19 21:52  pbartok
18202         * Control.cs:
18203           - Removed unneeded locals
18204           - Added code to all size and location properties to understand and
18205             deal with the parent container of Form
18207 2004-10-19 21:33  pbartok
18209         * Application.cs:
18210           - Fixed to deal with new Form subclasses for menus
18212 2004-10-19 17:48  jackson
18214         * XEventQueue.cs: commit correct version of file
18216 2004-10-19 16:50  jackson
18218         * XEventQueue.cs, XplatUIX11.cs: New optimized event queue
18220 2004-10-19 16:15  jordi
18222         * MenuAPI.cs: MenuBarCalcSize returns the height
18224 2004-10-19 08:31  pbartok
18226         * Control.cs:
18227           - Added missing call to PreProcessMessage before calling OnXXXKey
18228           methods
18230 2004-10-19 00:04  ravindra
18232         * ToolTip.cs: Fixed constructor.
18234 2004-10-18 09:31  jordi
18236         * MenuAPI.cs: menuitems in menubars do not have shortcuts
18238 2004-10-18 09:26  jordi
18240         * MenuItem.cs: fixes MenuItem class signature
18242 2004-10-18 08:56  jordi
18244         * MenuAPI.cs: prevents windows from showing in the taskbar
18246 2004-10-18 00:28  ravindra
18248         * ToolTip.cs: Suppressed a warning message.
18250 2004-10-18 00:27  ravindra
18252         * Control.cs: Default value of visible property must be true.
18254 2004-10-17 23:19  pbartok
18256         * ToolTip.cs:
18257           - Complete implementation
18259 2004-10-17 23:19  pbartok
18261         * XplatUIX11.cs:
18262           - Added EnableWindow method
18263           - Added SetModal stub
18264           - Added generation of WM_ACTIVATE message (still needs testing)
18265           - Added SetTopMost stub
18266           - Changes to deal with VirtualKeys being moved to XplatUIStructs.cs
18268 2004-10-17 23:17  pbartok
18270         * XplatUIWin32.cs:
18271           - Removed VirtualKeys to XplatUIStructs
18272           - Implemented SetTopMost method
18273           - Implemented EnableWindow method
18274           - Bugfix in ScreenToClient()
18275           - Bugfixes in ClientToScreen()
18277 2004-10-17 22:51  pbartok
18279         * XplatUIStructs.cs:
18280           - Added WS_EX styles to WindowStyles enumeration
18282 2004-10-17 22:50  pbartok
18284         * XplatUI.cs, XplatUIDriver.cs:
18285           - Added method for enabling/disabling windows
18286           - Added method for setting window modality
18287           - Added method for setting topmost window
18289 2004-10-17 22:49  pbartok
18291         * ThemeWin32Classic.cs:
18292           - Added ToolTip drawing code
18294 2004-10-17 22:49  pbartok
18296         * Theme.cs:
18297           - Added ToolTip abstracts
18299 2004-10-17 22:47  pbartok
18301         * Form.cs:
18302           - Fixed Form.ControlCollection to handle owner relations
18303           - Added Owner/OwnedForms handling
18304           - Implemented Z-Ordering for owned forms
18305           - Removed unneeded private overload of ShowDialog
18306           - Fixed ShowDialog, added the X11 incarnation of modal handling (or
18307             so I hope)
18308           - Fixed Close(), had wrong default
18309           - Added firing of OnLoad event
18310           - Added some commented out debug code for Ownership handling
18312 2004-10-17 22:16  pbartok
18314         * Control.cs:
18315           - Fixed/implemented flat list of controls
18317 2004-10-17 22:14  pbartok
18319         * Application.cs:
18320           - Added code to simulate modal dialogs on Win32
18322 2004-10-17 16:11  jordi
18324         * ScrollBar.cs: disabled scrollbar should not honor any keyboard or
18325           mouse event
18327 2004-10-17 13:39  jordi
18329         * MenuAPI.cs: menu drawing fixes
18331 2004-10-15 09:10  ravindra
18333         * StructFormat.cs: General Enum.
18335 2004-10-15 09:09  ravindra
18337         * SizeGripStyle.cs: Enum for Form.
18339 2004-10-15 09:08  ravindra
18341         * Theme.cs, ThemeWin32Classic.cs: Added ColumnHeaderHeight property
18342           in Theme for ListView.
18344 2004-10-15 09:06  ravindra
18346         * ColumnHeader.cs: Flushing some formatting changes.
18348 2004-10-15 09:05  ravindra
18350         * ListViewItem.cs: Implemented GetBounds method and fixed coding
18351           style.
18353 2004-10-15 09:03  ravindra
18355         * ListView.cs: Implemented Paint method and fixed coding style.
18357 2004-10-15 07:34  jordi
18359         * MenuAPI.cs: fix for X11
18361 2004-10-15 07:32  ravindra
18363         * ButtonBase.cs, CheckBox.cs, RadioButton.cs:
18364                 - Renamed Paint() method to Draw() for clarity. Also, moved
18365                 DrawImage() to OnPaint().
18367 2004-10-15 07:25  ravindra
18369         * CheckBox.cs, RadioButton.cs:
18370                 - Removed Redraw (), we get it from ButtonBase.
18371                 - Implemented Paint (), to do class specific painting.
18373 2004-10-15 07:16  ravindra
18375         * ButtonBase.cs:
18376                 - Redraw () is not virtual now.
18377                 - Added an internal virtual method Paint (), so that
18378                 derived classes can do their painting on their own.
18379                 - Modified OnPaint () to call Paint ().
18381 2004-10-15 06:43  jordi
18383         * ContextMenu.cs, DrawItemEventHandler.cs, Form.cs, MainMenu.cs,
18384           MenuAPI.cs, MenuItem.cs: menu work, mainmenu, subitems, etc
18386 2004-10-15 00:30  ravindra
18388         * MessageBox.cs:
18389                 - MessageBox on windows does not have min/max buttons.
18390                 This change in CreateParams fixes this on Windows. We
18391                 still need to implement this windowstyle behavior in
18392                 our X11 driver.
18394 2004-10-14 05:14  ravindra
18396         * ToolBar.cs:
18397                 - Changed Redraw () to do a Refresh () always.
18398                 - Fixed the MouseMove event handling when mouse is pressed,
18399                 ie drag event handling.
18400                 - Replaced the usage of ToolBarButton.Pressed property to
18401                 ToolBarButton.pressed internal variable.
18403 2004-10-14 05:10  ravindra
18405         * ToolBarButton.cs:
18406                 - Added an internal member 'inside' to handle mouse move
18407                 with mouse pressed ie mouse drag event.
18408                 - Changed 'Pressed' property to return true only when
18409                 'inside' and 'pressed' are both true.
18410                 - Some coding style love.
18412 2004-10-14 00:17  ravindra
18414         * Form.cs: Fixed class signature. ShowDialog (Control) is not a
18415           public method.
18417 2004-10-14 00:15  ravindra
18419         * ButtonBase.cs: Redraw () related improvements.
18421 2004-10-14 00:14  ravindra
18423         * MessageBox.cs: Moved InitFormSize () out of Paint method and
18424           removed unnecessary calls to Button.Show () method.
18426 2004-10-13 17:50  pbartok
18428         * XplatUIX11.cs:
18429           - Formatting fix
18430           - Removed destroying of window until we solve the problem of X
18431             destroying the window before us on shutdown
18433 2004-10-13 16:32  pbartok
18435         * ButtonBase.cs:
18436           - Now Redraws on MouseUp for FlatStyle Flat and Popup
18438 2004-10-13 14:18  pbartok
18440         * XplatUIX11.cs:
18441           - Added code to destroy the X window
18443 2004-10-13 14:18  pbartok
18445         * XplatUIWin32.cs:
18446           - Added code to destroy a window
18448 2004-10-13 14:12  pbartok
18450         * ButtonBase.cs:
18451           - Added the Redraw on Resize that got dropped in the last rev
18453 2004-10-13 09:06  pbartok
18455         * ThemeWin32Classic.cs:
18456           - Path from John BouAntoun:
18457             * Fix check rendering (centre correctly for normal style, offset
18458               correctly for FlatStyle).
18459             * Fix border color usage (use backcolor) for FlatStyle.Popup
18460             * Use checkbox.Capture instead of checkbox.is_pressed when
18461               rendering flatstyle states.
18463 2004-10-12 21:48  pbartok
18465         * ThemeWin32Classic.cs:
18466           - Removed all occurences of SystemColors and replaced them with the
18467             matching theme color
18469 2004-10-12 21:41  pbartok
18471         * ThemeWin32Classic.cs:
18472           - From John BouAntoun: Added an overload to CPDrawBorder3D to allow
18473             him using the function for flatstyle drawing
18474           - Changed functions to use the new version of CPDrawBorder3D
18476 2004-10-12 21:15  pbartok
18478         * ControlPaint.cs:
18479           - Fixed Dark(), DarkDark(), Light() and LightLight() methods to
18480             match MS documentation. They need to return defined colors if the
18481             passed color matches the configured control color. Thanks to John
18482             BouAntoun for pointing this out.
18484 2004-10-12 20:57  pbartok
18486         * Control.cs:
18487           - Fix from John BouAntoun: Raise ForeColorChanged event when text
18488             color is changed
18490 2004-10-12 20:46  pbartok
18492         * CheckBox.cs:
18493           - Fix from John BouAntoun: Now properly sets the Appearance property
18495 2004-10-12 20:45  pbartok
18497         * ThemeWin32Classic.cs:
18498           - Fixes from John BouAntoun: now handles forecolors and backcolors
18499             for flatstyle rendered controls much better; It also fixes normal
18500             checkbox rendering when pushed or disabled.
18502 2004-10-08 02:50  jordi
18504         * Form.cs, MainMenu.cs, Menu.cs, MenuAPI.cs, MenuItem.cs: more menu
18505           work
18507 2004-10-07 08:56  jordi
18509         * ThemeWin32Classic.cs: Removes deletion of cached brushes
18511 2004-10-06 03:59  jordi
18513         * Control.cs, StatusBar.cs, ThemeWin32Classic.cs, ToolBar.cs,
18514           XplatUIWin32.cs: removes warnings from compilation
18516 2004-10-05 12:23  jackson
18518         * RadioButton.cs: Fix ctor
18520 2004-10-05 11:10  pbartok
18522         * MessageBox.cs:
18523           - Partial implementation by Benjamin Dasnois
18525 2004-10-05 10:15  jackson
18527         * ThemeWin32Classic.cs: Improve rendering of the radio button patch
18528           by John BouAntoun
18530 2004-10-05 03:07  ravindra
18532         * ToolBar.cs:
18533                 - Removed a private method, Draw ().
18534                 - Fixed the ButtonDropDown event handling.
18535                 - Fixed MouseMove event handling.
18537 2004-10-05 03:04  ravindra
18539         * ThemeWin32Classic.cs:
18540                 - Added DrawListView method and ListViewDefaultSize property.
18541                 - Changed ControlPaint method calls to CPDrawXXX wherever possible.
18542                 - Changed DOS style CRLF to Unix format (dos2unix).
18544 2004-10-05 03:03  ravindra
18546         * Theme.cs:
18547                 - Added DrawListView method and ListViewDefaultSize property.
18549 2004-10-05 02:42  ravindra
18551         * ToolBarButton.cs: Added an internal member dd_pressed to handle
18552           clicks on DropDown arrow.
18554 2004-10-04 22:56  jackson
18556         * ButtonBase.cs, Label.cs, MenuAPI.cs, ProgressBar.cs,
18557           ScrollBar.cs, StatusBar.cs, ToolBar.cs, TrackBar.cs: Let the base
18558           Control handle the buffers, derived classes should not have to
18559           CreateBuffers themselves.
18561 2004-10-04 21:20  jackson
18563         * StatusBar.cs: The control handles resizing the buffers now.
18565 2004-10-04 21:18  jackson
18567         * Control.cs: When resizing the buffers should be invalidated. This
18568           should be handled in Control not in derived classes.
18570 2004-10-04 14:45  jackson
18572         * TabPage.cs: oops
18574 2004-10-04 02:14  pbartok
18576         * LeftRightAlignment.cs:
18577           - Initial check-in
18579 2004-10-04 01:09  jordi
18581         * ThemeWin32Classic.cs: fixes right button position causing right
18582           button not showing on horizontal scrollbars
18584 2004-10-02 13:12  pbartok
18586         * XplatUIX11.cs:
18587           - Simplified the Invalidate method by using an X call instead of
18588             generating the expose ourselves
18589           - Added an expose when the window background is changed
18590           - Implemented ClientToScreen method
18592 2004-10-02 13:08  pbartok
18594         * XplatUIWin32.cs:
18595           - Added Win32EnableWindow method (test for implementing modal
18596           dialogs)
18597           - Added ClientToScreen method and imports
18599 2004-10-02 13:07  pbartok
18601         * XplatUI.cs, XplatUIDriver.cs:
18602           - Added ClientToScreen coordinate translation method
18604 2004-10-02 13:06  pbartok
18606         * KeyPressEventArgs.cs:
18607           - Fixed access level for constructor
18609 2004-10-02 13:06  pbartok
18611         * NativeWindow.cs:
18612           - Changed access level for the window_collection hash table
18614 2004-10-02 13:05  pbartok
18616         * Form.cs:
18617           - Added KeyPreview property
18618           - Added Menu property (still incomplete, pending Jordi's menu work)
18619           - Implemented ProcessCmdKey
18620           - Implemented ProcessDialogKey
18621           - Implemented ProcessKeyPreview
18623 2004-10-02 13:02  pbartok
18625         * Control.cs:
18626           - Added private method to get the Control object from the window
18627           handle
18628           - Implemented ContextMenu property
18629           - Implemented PointToScreen
18630           - Implemented PreProcessMessage
18631           - Implemented IsInputChar
18632           - Implemented IsInputKey
18633           - Implemented ProcessCmdKey
18634           - Completed ProcessKeyEventArgs
18635           - Fixed message loop to call the proper chain of functions on key
18636           events
18637           - Implemented ProcessDialogChar
18638           - Implemented ProcessDialogKey
18639           - Implemented ProcessKeyMessage
18640           - Implemented ProcessKeyPreview
18641           - Added RaiseDragEvent stub (MS internal method)
18642           - Added RaiseKeyEvent stub (MS internal method)
18643           - Added RaiseMouseEvent stub (MS Internal method)
18644           - Added RaisePaintEvent stub (MS Internal method)
18645           - Added ResetMouseEventArgs stub (MS Internal method)
18646           - Implemented RtlTranslateAlignment
18647           - Implemented RtlTranslateContent
18648           - Implemented RtlTranslateHorizontal
18649           - Implemented RtlTranslateLeftRight
18650           - Added generation of KeyPress event
18652 2004-10-02 05:57  ravindra
18654         * ListViewItem.cs: Added attributes.
18656 2004-10-02 05:32  ravindra
18658         * ListView.cs: Added attributes.
18660 2004-10-01 11:53  jackson
18662         * Form.cs: Implement the Close method so work on MessageBox can
18663           continue.
18665 2004-09-30 14:06  pbartok
18667         * XplatUIX11.cs:
18668           - Bug fixes
18670 2004-09-30 11:34  jackson
18672         * RadioButton.cs: Fix typo. Patch by John BouAntoun.
18674 2004-09-30 07:26  ravindra
18676         * ListViewItemConverter.cs: Converter for ListViewItem.
18678 2004-09-30 07:26  ravindra
18680         * SortOrder.cs: Enum for ListView control.
18682 2004-09-30 07:25  ravindra
18684         * ColumnHeader.cs: Supporting class for ListView control.
18686 2004-09-30 07:24  ravindra
18688         * ListView.cs, ListViewItem.cs: Initial implementation.
18690 2004-09-30 07:20  ravindra
18692         * ItemActivation.cs: Enum for ListView Control.
18694 2004-09-29 20:29  pbartok
18696         * XplatUIX11.cs:
18697           - Added lookup of pixel value for background color; tries to get a
18698             color 'close' to the requested color, it avoids having to create a
18699             colormap.  Depending on the display this could mean the used color
18700             is slightly off the desired color. Might have to change it to a more
18701             resource intensive colormap approach, but it will work as a
18702           workaround to avoid red screens.
18704 2004-09-29 14:27  jackson
18706         * XplatUIX11.cs: Set the X DisplayHandle in System.Drawing
18708 2004-09-28 12:44  pbartok
18710         * ButtonBase.cs, CheckBox.cs, ControlPaint.cs, GroupBox.cs,
18711           HScrollBar.cs, Label.cs, LinkLabel.cs, Panel.cs, PictureBox.cs,
18712           ProgressBar.cs, RadioButton.cs, ScrollBar.cs, StatusBar.cs,
18713           Theme.cs, ThemeGtk.cs, ThemeWin32Classic.cs, ToolBar.cs,
18714           TrackBar.cs, VScrollBar.cs:
18715           - Streamlined Theme interfaces:
18716             * Each DrawXXX method for a control now is passed the object for
18717               the control to be drawn in order to allow accessing any state the
18718               theme might require
18720             * ControlPaint methods for the theme now have a CP prefix to avoid
18721               name clashes with the Draw methods for controls
18723             * Every control now retrieves it's DefaultSize from the current
18724             theme
18726 2004-09-28 12:17  jackson
18728         * Button.cs: Do not redraw OnClick MouseUp/Down will handle the
18729           drawing
18731 2004-09-24 14:57  jackson
18733         * XplatUIX11.cs: Don't lock/enqueue/dequeue for unhandled messages.
18734           Gives us a nice little performance boost.
18736 2004-09-24 12:02  jackson
18738         * TabAlignment.cs, TabAppearance.cs, TabControl.cs, TabDrawMode.cs,
18739           TabPage.cs, TabSizeMode.cs: Partial implementation of the Tab
18740           Control and supporting classes. Initial checkin
18742 2004-09-23 13:08  jackson
18744         * Form.cs: Temp build fixage
18746 2004-09-23 01:39  ravindra
18748         * ItemChangedEventArgs.cs, ItemChangedEventHandler.cs,
18749           ItemCheckEventArgs.cs, ItemCheckEventHandler.cs,
18750           ItemDragEventArgs.cs, ItemDragEventHandler.cs,
18751           LabelEditEventArgs.cs, LabelEditEventHandler.cs: EventArgs and
18752           EventHandlers needed by ListView Control.
18754 2004-09-22 14:12  pbartok
18756         * ScrollableControl.cs:
18757           - Implemented DockPadding property
18758           - Implemented AutoScroll property
18759           - Implemented AutoScrollMargin property
18760           - Implemented AutoScrollMinSize property
18761           - Implemented AutoScrollPosition property
18762           - Implemented DisplayRectangle property (still incomplete)
18763           - Implemented CreateParams property
18764           - Implemented HScroll property
18765           - Implemented VScroll property
18766           - Implemented OnVisibleChanged property
18768 2004-09-22 14:09  pbartok
18770         * Form.cs:
18771           - Added Form.ControllCollection class
18772           - Added handling for Form owners: Owner, OwnedForms, AddOwnedForm,
18773             RemoveOwnedForm (still incomplete, missing on-top and common
18774             minimize/maximize behaviour)
18775           - Added StartPosition property (still incomplete, does not use when
18776             creating the form)
18777           - Added ShowDialog() methods (still incomplete, missing forcing the
18778             dialog modal)
18780 2004-09-22 14:05  pbartok
18782         * Application.cs:
18783           - Added message loop for modal dialogs
18785 2004-09-22 14:02  pbartok
18787         * GroupBox.cs:
18788           - Fixed wrong types for events
18790 2004-09-22 14:00  pbartok
18792         * Shortcut.cs, FormWindowState.cs:
18793           - Fixed wrong values
18795 2004-09-22 12:01  jackson
18797         * Control.cs: Text is never null
18799 2004-09-20 22:14  pbartok
18801         * XplatUIWin32.cs:
18802           - Fixed accessibility level for Idle handler
18804 2004-09-20 18:54  jackson
18806         * Application.cs, XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs,
18807           XplatUIX11.cs: New message loop that uses poll so we don't get a
18808           busy loop
18810 2004-09-17 10:43  pbartok
18812         * ScrollBar.cs:
18813           - Fixed behaviour of arrow buttons. Now properly behaves like
18814             Buttons (and like Microsoft's scrollbar arrow buttons)
18816 2004-09-17 10:14  pbartok
18818         * ScrollBar.cs:
18819           - Added missing release of keyboard/mouse capture
18821 2004-09-17 06:18  jordi
18823         * ContextMenu.cs, MainMenu.cs, Menu.cs, MenuAPI.cs, MenuItem.cs,
18824           Theme.cs: Very early menu support
18826 2004-09-16 17:45  pbartok
18828         * XplatUIWin32.cs:
18829           - Fixed sending a window to the front
18830           - Added overload for SetWindowPos to avoid casting
18832 2004-09-16 17:44  pbartok
18834         * Control.cs:
18835           - Added SendToBack and BringToFront methods
18837 2004-09-16 07:00  ravindra
18839         * Copyright: Added Novell URL.
18841 2004-09-16 07:00  ravindra
18843         * ToolBar.cs: Invalidate should be done before redrawing.
18845 2004-09-15 21:19  ravindra
18847         * ColumnHeaderStyle.cs: Enum for ListView Control.
18849 2004-09-15 21:18  ravindra
18851         * ColumnClickEventArgs.cs, ColumnClickEventHandler.cs: Event for
18852           ListView Control.
18854 2004-09-13 18:26  jackson
18856         * Timer.cs, XplatUIX11.cs: Remove test code so timers are updated
18857           properly
18859 2004-09-13 18:13  jackson
18861         * Timer.cs, X11Structs.cs, XplatUIX11.cs: Timers are now handled in
18862           a second thread and post messages into the main threads message
18863           queue. This makes timing much more consistent. Both win2K and XP
18864           have a minimum timer value of 15 milliseconds, so we now do this
18865           too.
18867 2004-09-13 15:18  pbartok
18869         * X11Structs.cs, XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs,
18870           XplatUIX11.cs:
18871           - Added Z-Ordering methods
18873 2004-09-13 10:56  pbartok
18875         * Form.cs:
18876           - Fixed #region names
18877           - Moved properties and methods into their proper #regions
18879 2004-09-13 10:51  pbartok
18881         * Form.cs:
18882           - Added Accept and CancelButton properties
18883           - Added ProcessDialogKey() method
18885 2004-09-13 08:18  pbartok
18887         * IWindowTarget.cs:
18888           - Initial check-in
18890 2004-09-10 21:50  pbartok
18892         * Control.cs:
18893           - Added DoDragDrop() [incomplete]
18894           - Properly implemented 'Visible' handling
18895           - Added SetVisibleCore()
18896           - Implemented FindChildAtPoint()
18897           - Implemented GetContainerControl()
18898           - Implemented Hide()
18900 2004-09-10 19:28  pbartok
18902         * Control.cs:
18903           - Moved methods into their appropriate #regions
18904           - Reordered methods within regions alphabetically
18906 2004-09-10 18:57  pbartok
18908         * XplatUIX11.cs, XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs:
18909           - Added method to retrieve text from window
18911 2004-09-10 18:56  pbartok
18913         * Control.cs:
18914           - Moved some internal functions into the internal region
18915           - Implemented FontHeight
18916           - Implemented RenderRightToLeft
18917           - Implemented ResizeRedraw
18918           - Implemented ShowFocusCues
18919           - Implemented ShowKeyboardCues
18920           - Implemented FromChildHandle
18921           - Implemented FromHandle
18922           - Implemented IsMnemonic
18923           - Implemented ReflectMessage
18924           - All public and protected Static Methods are now complete
18926 2004-09-10 16:54  pbartok
18928         * Control.cs:
18929           - Implemented remaining missing public instance properties
18930           - Alphabetized some out of order properties
18932 2004-09-10 05:51  ravindra
18934         * PictureBox.cs: Added a check for null image.
18936 2004-09-10 00:59  jordi
18938         * GroupBox.cs: remove cvs tag
18940 2004-09-09 05:25  ravindra
18942         * ToolBar.cs: Make redraw accessible from ToolBarButton.
18944 2004-09-09 05:23  ravindra
18946         * ToolBarButton.cs: Changes in ToolBarButton need to make it's
18947           parent redraw.
18949 2004-09-09 02:28  pbartok
18951         * ThemeWin32Classic.cs:
18952           - Improve disabled string look
18954 2004-09-09 01:15  jordi
18956         * MeasureItemEventArgs.cs, MeasureItemEventHandler.cs: measureitem
18957           args and handler
18959 2004-09-08 23:56  ravindra
18961         * ItemBoundsPortion.cs: It's enum, not a class!
18963 2004-09-08 23:47  ravindra
18965         * FormBorderStyle.cs, FormStartPosition.cs, FormWindowState.cs:
18966           Enums for Form.
18968 2004-09-08 21:13  ravindra
18970         * ItemBoundsPortion.cs, ListViewAlignment.cs, View.cs: Enums for
18971           ListView control.
18973 2004-09-08 21:03  ravindra
18975         * ThemeWin32Classic.cs: PictureBox would not draw a null image to
18976           avoid crash.
18978 2004-09-08 21:01  ravindra
18980         * ScrollableControl.cs: Removed unreachable code.
18982 2004-09-08 06:45  jordi
18984         * MenuMerge.cs, Shortcut.cs: enumerations need it by menus
18986 2004-09-08 01:00  jackson
18988         * XplatUIX11.cs: Only run the timers when updating the message
18989           queue. This effectively gives X messages a higher priority then
18990           timer messages. Timers still need love though
18992 2004-09-07 14:01  jackson
18994         * XplatUIX11.cs: Do not call XDestroyWindow, X has already done
18995           this for us and the handle is no longer valid.
18997 2004-09-07 13:59  jackson
18999         * HandleData.cs, XplatUIX11.cs: First steps towards a new X event
19000           loop that manages to not crash. TODO: Add poll and cleanup timers
19002 2004-09-07 11:12  jordi
19004         * GroupBox.cs, Theme.cs, ThemeWin32Classic.cs: GroupBox control
19006 2004-09-07 03:40  jordi
19008         * Label.cs, LinkLabel.cs, Theme.cs, ThemeWin32Classic.cs: LinkLabel
19009           fixes, methods, multiple links
19011 2004-09-06 06:55  jordi
19013         * Control.cs: Caches ClientRectangle rectangle value
19015 2004-09-05 02:03  jordi
19017         * ScrollBar.cs, ThemeWin32Classic.cs: fixes bugs, adds flashing on
19018           certain situations
19020 2004-09-04 11:10  jordi
19022         * Label.cs: Refresh when font changed
19024 2004-09-02 16:24  pbartok
19026         * Control.cs:
19027           - Added sanity check to creation of double buffer bitmap
19029 2004-09-02 16:24  pbartok
19031         * ButtonBase.cs:
19032           - Fixed selection of text color
19033           - Fixed handling of resize event; now properly recreates double
19034             buffering bitmap
19035           - Added missing assignment of TextAlignment
19036           - Added proper default for TextAlignment
19038 2004-09-02 14:26  pbartok
19040         * RadioButton.cs:
19041           - Added missing RadioButton.RadioButtonAccessibleObject class
19043 2004-09-02 14:26  pbartok
19045         * Control.cs:
19046           - Added missing Control.ControlAccessibleObject class
19047           - Started to implement Select()ion mechanisms, still very incomplete
19049 2004-09-02 14:25  pbartok
19051         * AccessibleObject.cs:
19052           - Added missing methods
19054 2004-09-02 14:23  pbartok
19056         * AccessibleNavigation.cs, AccessibleSelection.cs:
19057           - Initial check-in
19059 2004-09-02 10:32  jordi
19061         * Theme.cs, ThemeGtk.cs, ThemeWin32Classic.cs: implements resource
19062           pool for pens, brushes, and hatchbruses
19064 2004-09-01 15:30  jackson
19066         * StatusBar.cs: Fix typo
19068 2004-09-01 14:44  pbartok
19070         * RadioButton.cs:
19071           - Fixed state
19073 2004-09-01 14:39  pbartok
19075         * Button.cs, RadioButton.cs:
19076           - Functional initial check-in
19078 2004-09-01 14:01  pbartok
19080         * CheckBox.cs:
19081           - Added missing default
19082           - Added missing region mark
19084 2004-09-01 09:10  jordi
19086         * Label.cs: fixes method signatures, new methods, events, fixes
19087           autosize
19089 2004-09-01 07:19  jordi
19091         * Control.cs: Init string variables with an empty object
19093 2004-09-01 04:20  jordi
19095         * Control.cs: fires OnFontChanged event
19097 2004-08-31 20:07  pbartok
19099         * ButtonBase.cs:
19100           - Enabled display of strings
19102 2004-08-31 20:05  pbartok
19104         * Form.cs:
19105           - Added (partial) implementation of DialogResult; rest needs to be
19106             implemented when the modal loop code is done
19108 2004-08-31 19:55  pbartok
19110         * CheckBox.cs:
19111           - Fixed to match the removal of the needs_redraw concept
19113 2004-08-31 19:55  pbartok
19115         * ButtonBase.cs:
19116           - Removed the rather odd split between 'needs redraw' and redrawing
19117           - Now handles the events that require regeneration (ambient
19118             properties and size)
19120 2004-08-31 19:41  pbartok
19122         * Control.cs:
19123           - Added firing of BackColorChanged event
19124           - Added TopLevelControl property
19125           - Fixed handling of WM_ERASEBKGRND message
19127 2004-08-31 12:49  pbartok
19129         * ButtonBase.cs:
19130           - Removed debug
19131           - Minor fixes
19133 2004-08-31 12:48  pbartok
19135         * CheckBox.cs:
19136           - Finished (famous last words)
19138 2004-08-31 04:35  jordi
19140         * ScrollBar.cs: adds autorepeat timer, uses a single timer, fixes
19141           scrolling bugs, adds new methods
19143 2004-08-30 14:42  pbartok
19145         * CheckBox.cs:
19146           - Implemented CheckBox drawing code
19148 2004-08-30 14:42  pbartok
19150         * ButtonBase.cs:
19151           - Made Redraw() and CheckRedraw() virtual
19152           - Improved mouse up/down/move logic to properly track buttons
19154 2004-08-30 09:44  pbartok
19156         * CheckBox.cs:
19157           - Updated to fix broken build. Not complete yet.
19159 2004-08-30 09:28  pbartok
19161         * CheckState.cs:
19162           - Initial checkin
19164 2004-08-30 09:17  pbartok
19166         * Appearance.cs:
19167           - Initial check-in
19169 2004-08-27 16:12  ravindra
19171         * ToolBarButton.cs: Added TypeConverter attribute.
19173 2004-08-27 16:07  ravindra
19175         * ImageIndexConverter.cs: Implemented.
19177 2004-08-27 14:17  pbartok
19179         * Control.cs:
19180           - Removed unneeded stack vars
19181           - First attempt to fix sizing issues when layout is suspended
19183 2004-08-25 15:35  jordi
19185         * ScrollBar.cs: more fixes to scrollbar
19187 2004-08-25 14:04  ravindra
19189         * Theme.cs, ThemeWin32Classic.cs, ToolBar.cs, ToolBarButton.cs:
19190           Added the missing divider code and grip for ToolBar Control.
19192 2004-08-25 13:20  pbartok
19194         * Control.cs:
19195           - Control now properly passes the ambient background color to child
19196             controls
19198 2004-08-25 13:20  jordi
19200         * ScrollBar.cs: small bug fix regarding bar position
19202 2004-08-25 12:33  pbartok
19204         * Timer.cs:
19205           - Now only calls SetTimer or KillTimer if the enabled state has
19206           changed
19208 2004-08-25 12:33  pbartok
19210         * XplatUIWin32.cs:
19211           - Fixed timer handling, now seems to work
19212           - Improved error message for window creation
19214 2004-08-25 12:32  pbartok
19216         * Control.cs:
19217           - Fixed generation of MouseUp message
19219 2004-08-25 12:29  jordi
19221         * ProgressBar.cs, ThemeWin32Classic.cs: new methods, properties,
19222           and fixes for progressbar
19224 2004-08-24 18:43  ravindra
19226         * ThemeWin32Classic.cs, ToolBar.cs: Fixed wrapping related issues
19227           in ToolBar control.
19229 2004-08-24 17:15  pbartok
19231         * Panel.cs:
19232           - Added #region
19233           - Added missing events
19234           - Alphabetized
19236 2004-08-24 17:14  pbartok
19238         * StatusBar.cs, PictureBox.cs:
19239           - Now uses Control's CreateParams
19241 2004-08-24 16:36  pbartok
19243         * XplatUIX11.cs:
19244           - Fixed background color handling
19245           - Fixed sending of enter/leave events on a grab
19247 2004-08-24 16:35  pbartok
19249         * X11Structs.cs:
19250           - Refined definitions for CrossingEvent
19252 2004-08-24 12:37  jordi
19254         * ScrollBar.cs, Theme.cs, ThemeGtk.cs, ThemeWin32Classic.cs: fixes
19255           formmating, methods signature, and adds missing events
19257 2004-08-24 12:24  jordi
19259         * Control.cs: fire OnEnabledChanged event
19261 2004-08-24 11:17  pbartok
19263         * XplatUIWin32.cs:
19264           - Implemented SetTimer() and KillTimer()
19266 2004-08-24 11:16  pbartok
19268         * XplatUIX11.cs:
19269           - Now uses Remove instead of Add to kill the timer
19271 2004-08-24 10:16  jackson
19273         * PictureBox.cs, Theme.cs, ThemeWin32Classic.cs: Handle drawing
19274           picture boxes in the theme now. Draw picture box borders and obey
19275           sizing modes
19277 2004-08-24 05:49  jackson
19279         * Timer.cs: Remove top secret debugging code
19281 2004-08-24 05:34  jackson
19283         * PictureBox.cs: Temp hack to make picture boxes draw their full
19284           image
19286 2004-08-24 05:29  jackson
19288         * Timer.cs, XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs,
19289           XplatUIX11.cs: Move timers to the driver level. On X they are
19290           queued by the driver and checked on idle.
19292 2004-08-24 01:07  jackson
19294         * XplatUIX11.cs: Use a queue for async messages instead of passing
19295           them as ClientMessages since that was totally broken. Also simply
19296           check for events and return an idle message if none are found. This
19297           gives us an idle handler, and prevents deadlocking when no messages
19298           are in the queue.
19300 2004-08-23 18:19  ravindra
19302         * XplatUIWin32.cs: Removed the unwanted destructor.
19304 2004-08-23 17:27  pbartok
19306         * ButtonBase.cs:
19307           - Finishing touches. Works now, just needs some optimizations.
19309 2004-08-23 16:53  jordi
19311         * ScrollBar.cs: small fix
19313 2004-08-23 16:45  pbartok
19315         * Application.cs:
19316           - Removed debug output
19317           - Simplifications
19319 2004-08-23 16:43  jordi
19321         * ScrollBar.cs: [no log message]
19323 2004-08-23 16:10  pbartok
19325         * Form.cs:
19326           - Fixed handling of WM_CLOSE message
19327           - Removed debug output
19329 2004-08-23 16:09  pbartok
19331         * Application.cs:
19332           - Added handling of Idle event
19333           - Added handling of form closing
19334           - Fixed reporting of MessageLoop property
19335           - Removed some unneeded code, should provide a bit of a speedup
19337 2004-08-23 15:22  pbartok
19339         * Control.cs:
19340           - Added InitLayout() method
19341           - Added code to properly perform layout when Anchor or Dock property
19342             is changed
19343           - Changed 'interpretation' of ResumeLayout. MS seems to have a
19344             LAMESPEC, tried to do it in a way that makes sense
19346 2004-08-23 14:10  jordi
19348         * HScrollBar.cs, ScrollBar.cs, TrackBar.cs, VScrollBar.cs: fixes
19349           properties and methods
19351 2004-08-23 13:55  pbartok
19353         * Control.cs:
19354           - Properly fixed Jordi's last fix
19355           - Now uses Cursor's Position property instead of calling XplatUI
19356           directly
19358 2004-08-23 13:44  jordi
19360         * PaintEventHandler.cs: Adding missing attribute
19362 2004-08-23 13:39  pbartok
19364         * Cursor.cs:
19365           - Implemented Position property
19367 2004-08-23 13:39  pbartok
19369         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs:
19370           - Added method to move mouse cursor
19372 2004-08-23 13:39  pbartok
19374         * XplatUIX11.cs:
19375           - Fixed setting of background color
19376           - Added method to move mouse cursor
19378 2004-08-23 13:16  jordi
19380         * Control.cs: avoids null exception
19382 2004-08-22 17:46  jackson
19384         * PictureBox.cs, PictureBoxSizeMode.cs: Initial implementation of
19385           PictureBox
19387 2004-08-22 17:40  jackson
19389         * XplatUIX11.cs: Add some missing locks
19391 2004-08-22 15:10  pbartok
19393         * Control.cs, Form.cs:
19394           - Removed OverlappedWindow style from Control, instead it's default
19395             now is child
19396           - Made form windows OverlappedWindow by default
19398 2004-08-22 13:34  jackson
19400         * ScrollBar.cs: Update the position through the Value property so
19401           the OnValueChanged event is raised.
19403 2004-08-22 12:04  pbartok
19405         * SWF.csproj:
19406           - Added Cursor.cs and UserControl.cs
19408 2004-08-22 12:03  pbartok
19410         * Cursor.cs:
19411           - Started implementation, not usable yet
19413 2004-08-22 12:00  pbartok
19415         * UserControl.cs:
19416           - Implemented UserControl (complete)
19418 2004-08-21 19:20  ravindra
19420         * ToolBar.cs: Correcting the formatting mess of VS.NET.
19422 2004-08-21 18:49  ravindra
19424         * ToolBar.cs: Probably this completes the missing attributes in
19425           toolbar control.
19427 2004-08-21 18:03  ravindra
19429         * ToolBar.cs, ToolBarButton.cs, ToolBarButtonClickEventArgs.cs:
19430           Fixed toolbar control signatures.
19432 2004-08-21 16:32  pbartok
19434         * LinkLabel.cs:
19435           - Signature Fixes
19437 2004-08-21 16:30  pbartok
19439         * Label.cs:
19440           - Signature fixes
19442 2004-08-21 16:19  pbartok
19444         * Control.cs, Label.cs:
19445           - Signature fixes
19447 2004-08-21 15:57  pbartok
19449         * ButtonBase.cs:
19450           - Added loads of debug output for development
19451           - Fixed typo in method name
19453 2004-08-21 15:52  pbartok
19455         * ToolBarButtonClickEventArgs.cs:
19456           - Added missing base class
19458 2004-08-21 14:53  pbartok
19460         * Control.cs:
19461           - Updated to match new GrabWindow signature
19463 2004-08-21 14:51  pbartok
19465         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIX11.cs:
19466           - Added method to get default display size
19468 2004-08-21 14:23  pbartok
19470         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIX11.cs:
19471           - Added method to query current grab state
19472           - Added argument to allow confining a grab to a window
19474 2004-08-21 14:22  pbartok
19476         * Keys.cs:
19477           - Added [Flags] attribute so that modifiers can be used in bitwise
19478           ops
19480 2004-08-21 14:21  pbartok
19482         * TrackBar.cs, ScrollBar.cs:
19483           - Replaced direct XplatUI calls with their Control counterpart
19485 2004-08-21 13:32  pbartok
19487         * Control.cs:
19488           - Implemented Created property
19490 2004-08-21 13:28  pbartok
19492         * Control.cs:
19493           - Implemented ContainsFocus
19495 2004-08-21 13:26  pbartok
19497         * Control.cs:
19498           - Implemented CausesValidation
19500 2004-08-21 13:21  pbartok
19502         * Control.cs:
19503           - Implemented CanFocus
19504           - Implemented CanSelect
19505           - Implemented Capture
19507 2004-08-21 12:35  pbartok
19509         * XplatUIWin32.cs:
19510           - Fixed bug with Async message handling
19511           - Implemented getting the ModifierKeys
19513 2004-08-21 12:32  jackson
19515         * AsyncMethodResult.cs: Make sure we have the mutex before we
19516           release it. Fixes BeginInvoke on windows
19518 2004-08-21 11:31  pbartok
19520         * XplatUIWin32.cs, XplatUIX11.cs:
19521           - Drivers now return proper mouse state
19523 2004-08-21 10:54  jackson
19525         * Control.cs: Implement EndInvoke
19527 2004-08-21 10:48  jackson
19529         * Timer.cs: Remove unneeded finalizer
19531 2004-08-20 19:52  ravindra
19533         * ThemeWin32Classic.cs, ToolBar.cs, ToolBarButton.cs: Improvments
19534           in mouse event handling in the ToolBar control.
19536 2004-08-20 19:50  ravindra
19538         * ImageList.cs: Changed draw method to use the arguments passed in
19539           to draw the image.
19541 2004-08-20 18:58  pbartok
19543         * XplatUIStructs.cs:
19544           - Added private message for async communication
19546 2004-08-20 17:38  ravindra
19548         * Control.cs: Made RightToLeft property virtual and removed a
19549           Console.WriteLine.
19551 2004-08-20 14:39  jordi
19553         * ThemeGtk.cs: use style_attach
19555 2004-08-20 14:39  pbartok
19557         * XplatUIWin32.cs:
19558           - Added jackson's Async code from X11 to Win32
19560 2004-08-20 14:09  pbartok
19562         * SWF.csproj:
19563           - Added all new files
19565 2004-08-20 14:09  pbartok
19567         * Control.cs:
19568           - Added call to set window background color
19570 2004-08-20 14:03  pbartok
19572         * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs:
19573           - Added method for setting the window background
19575 2004-08-20 14:02  pbartok
19577         * XplatUIWin32.cs:
19578           - Added method for setting the background color
19579           - Added handling for erasing the window background
19581 2004-08-20 13:45  jordi
19583         * TrackBar.cs: fixes timer, new properties and methods
19585 2004-08-20 13:34  jackson
19587         * ScrollBar.cs: Use the SWF timer so callbacks are run in the
19588           correct thread
19590 2004-08-20 13:22  jackson
19592         * Timer.cs: Timer Tick events are now handed through Controls Async
19593           mechanism so the callbacks are executed in the same thread as X
19595 2004-08-20 13:19  jackson
19597         * XplatUIDriver.cs: Expose functionality to send async messages
19598           through the driver
19600 2004-08-20 13:18  jackson
19602         * Control.cs: Implement Begininvoke
19604 2004-08-20 13:14  jackson
19606         * XplatUI.cs, XplatUIWin32.cs: Expose functionality to send async
19607           messages through the driver
19609 2004-08-20 13:12  jackson
19611         * XplatUIX11.cs: Lock before all X operations. Also added Async
19612           method functionality through XSendEvent
19614 2004-08-20 13:11  jackson
19616         * X11Structs.cs: Use IntPtrs for ClientMessage extra data (TODO:
19617           This will screw up on 64 bit systems)
19619 2004-08-20 13:10  jackson
19621         * AsyncMethodData.cs, AsyncMethodResult.cs: Classes for sending
19622           Async messages through X/Win32
19624 2004-08-19 19:39  pbartok
19626         * XplatUIX11.cs:
19627           - Updated code to match new HandleData.DeviceContext type
19629 2004-08-19 19:38  pbartok
19631         * HandleData.cs:
19632           - Made DeviceContext a generic object to allow usage from various
19633           drivers
19634           - Added support for queueing Windows messages
19636 2004-08-19 19:37  pbartok
19638         * XplatUIWin32.cs:
19639           - Added generation of MouseEnter, MouseLeave and MouseHover events
19640           - Added cleanup on EndPaint
19642 2004-08-19 19:17  pbartok
19644         * Control.cs:
19645           - Added handling of WM_MOUSEHOVER
19646           - Worked around 'bug' in Win32 WM_MOUSE_ENTER/WM_MOUSE_LEAVE driver
19647           code
19649 2004-08-19 18:55  jordi
19651         * ThemeGtk.cs: fixes button order
19653 2004-08-19 18:12  jordi
19655         * Theme.cs, ThemeWin32Classic.cs: fixes methods signature
19657 2004-08-19 17:09  pbartok
19659         * Control.cs:
19660           - Added Right property
19661           - Added RightToLeft property
19663 2004-08-19 16:27  jordi
19665         * ThemeGtk.cs: experimental GTK theme support
19667 2004-08-19 16:26  jordi
19669         * ITheme.cs, Theme.cs: move themes from an interface to a class
19671 2004-08-19 16:25  jordi
19673         * Control.cs, ScrollBar.cs, ThemeEngine.cs, ThemeWin32Classic.cs:
19674           theme enhancaments
19676 2004-08-19 16:04  pbartok
19678         * XplatUIX11.cs:
19679           - Added colormap basics
19680           - Added a way to re-initialize with a different display handle
19681           - Fixed setting of the window background color
19682           - Added various X11 imports related to colors and colormaps
19684 2004-08-19 15:51  pbartok
19686         * X11Structs.cs:
19687           - Removed packing hints (Paolo suggested this a while back)
19688           - fixed colormap type
19689           - Added default Atom types
19690           - Added Screen and color structs and enums
19692 2004-08-19 15:39  pbartok
19694         * ImageList.cs:
19695           - Added missing Draw() method
19696           - Added missing RecreateHandle event
19698 2004-08-19 15:30  pbartok
19700         * Form.cs:
19701           - Added handling of WM_CLOSE
19703 2004-08-18 13:16  jordi
19705         * ITheme.cs, ThemeWin32Classic.cs, XplatUIWin32.cs: Move colors to
19706           a table
19708 2004-08-18 09:56  jordi
19710         * ScrollBar.cs: fixes to scrollbar: steps and multiple timers
19712 2004-08-17 15:31  ravindra
19714         * SWF.csproj: Updated project.
19716 2004-08-17 15:25  pbartok
19718         * Control.cs:
19719           - Drawing improvement; don't call UpdateBounds if we are not visible
19720             (or have been minimized)
19722 2004-08-17 15:24  pbartok
19724         * XplatUIWin32.cs:
19725           - Finished IsVisible
19726           - Added Win32GetWindowPlacement
19728 2004-08-17 15:08  jackson
19730         * Panel.cs: Initial checkin of the Panel
19732 2004-08-17 14:25  pbartok
19734         * Control.cs:
19735           - Fixed broken handling of default window sizes
19737 2004-08-17 13:29  jackson
19739         * ThemeWin32Classic.cs: Don't use KnownColor to create colours. It
19740           has a large startup time.
19742 2004-08-17 10:25  jackson
19744         * HandleData.cs: union areas properly
19746 2004-08-17 10:12  jackson
19748         * HandleData.cs: union areas properly
19750 2004-08-16 20:00  ravindra
19752         * ToolBar.cs, ToolBarButton.cs: Added attributes.
19754 2004-08-16 18:48  ravindra
19756         * ToolBar.cs: Added attributes.
19758 2004-08-16 17:17  ravindra
19760         * SWF.csproj: Updated project.
19762 2004-08-16 17:16  jackson
19764         * XplatUIX11.cs: Check for more expose events before sending a
19765           WM_PAINT so they can all be grouped together. This makes dragging a
19766           window across another window redraw in a sane way.
19768 2004-08-16 15:47  pbartok
19770         * Control.cs:
19771           - Added handling of WM_MOUSE_ENTER & WM_MOUSE_LEAVE to
19772             support OnMouseEnter/Leave()
19773           - Added WS_CLIPSIBLINGS and WS_CLIPCHILDREN window styles to improve
19774             exposure handling
19776 2004-08-16 15:46  pbartok
19778         * XplatUIStructs.cs, XplatUIX11.cs:
19779           - Added WM_MOUSE_ENTER & WM_MOUSE_LEAVE to support
19780           OnMouseEnter/Leave()
19782 2004-08-16 15:34  jackson
19784         * XplatUIX11.cs: Group multiple expose events in HandleData, make
19785           sure messages get the message field set to WM_NULL if they are not
19786           handled.
19788 2004-08-16 15:24  jackson
19790         * HandleData.cs: HandleData is used for storing message information
19791           for window handles
19793 2004-08-15 17:23  ravindra
19795         * ColorDepth.cs: Added attribute.
19797 2004-08-15 17:23  ravindra
19799         * SWF.csproj: Updated project for ToolBar Control.
19801 2004-08-15 17:20  ravindra
19803         * ITheme.cs, ThemeWin32Classic.cs: Changes to Theme for ToolBar
19804           control and also dos2unix format.
19806 2004-08-15 17:13  ravindra
19808         * ToolBar.cs, ToolBarAppearance.cs, ToolBarButton.cs,
19809           ToolBarButtonClickEventArgs.cs,
19810           ToolBarButtonClickEventHandler.cs, ToolBarButtonStyle.cs,
19811           ToolBarTextAlign.cs: First Implementation of ToolBar control.
19813 2004-08-15 15:31  pbartok
19815         * ButtonBase.cs:
19816           - First (mostly) working version
19818 2004-08-13 16:15  pbartok
19820         * Control.cs:
19821           - Fixed Anchor default
19823 2004-08-13 15:43  pbartok
19825         * Control.cs:
19826           - Changed GetCursorPos signature
19828 2004-08-13 15:42  pbartok
19830         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs:
19831           - Changed signature for GetCursorPos
19833 2004-08-13 15:25  pbartok
19835         * XplatUIX11.cs:
19836           - Cleanup
19837           - Fixed resizing/exposure handling
19839 2004-08-13 15:22  jordi
19841         * ThemeWin32Classic.cs: removes redundant code and fixes issues
19842           with tickposition
19844 2004-08-13 14:55  jordi
19846         * TrackBar.cs: change from wndproc to events
19848 2004-08-13 13:00  jordi
19850         * Control.cs, XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs,
19851           XplatUIX11.cs: implements PointToClient (ScreenToClient)
19853 2004-08-13 12:53  pbartok
19855         * XplatUIWin32.cs:
19856           - Changed GetWindowPos to also provide client area size
19857           - Fixed broken prototypes for several win32 functions
19859 2004-08-13 12:53  pbartok
19861         * XplatUI.cs, XplatUIDriver.cs:
19862           - Changed GetWindowPos to also provide client area size
19864 2004-08-13 12:52  pbartok
19866         * XplatUIX11.cs:
19867           - Added generation of WM_POSCHANGED
19868           - Changed GetWindowPos to also provide client area size
19870 2004-08-13 12:52  pbartok
19872         * Control.cs:
19873           - Added Dispose() and destructor
19874           - Fixed resizing and bounds calculation
19875           - Fixed Layout
19876           - Added memory savings for invisible windows
19878 2004-08-13 12:46  jordi
19880         * TrackBar.cs: adds timer and grap window
19882 2004-08-13 10:25  jackson
19884         * Timer.cs: SWF Timer
19886 2004-08-12 16:59  pbartok
19888         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIX11.cs:
19889           - Implemented method to get current mouse position
19891 2004-08-12 14:29  jordi
19893         * ITheme.cs, ThemeWin32Classic.cs, TrackBar.cs: Trackbar
19894           enhancement, fix mouse problems, highli thumb, etc
19896 2004-08-12 13:31  pbartok
19898         * Control.cs:
19899           - Fixed Anchoring bugs
19901 2004-08-12 13:01  jackson
19903         * StatusBar.cs: Don't forget things
19905 2004-08-12 12:54  jackson
19907         * ThemeWin32Classic.cs: Handle owner draw status bars
19909 2004-08-12 12:54  jackson
19911         * StatusBar.cs: Implement missing properties, events, and methods.
19912           Handle mouse clicking
19914 2004-08-12 10:19  jackson
19916         * StatusBarPanelClickEventArgs.cs,
19917           StatusBarPanelClickEventHandler.cs: Classes for handling status
19918           bar panel click events
19920 2004-08-12 10:10  jackson
19922         * Control.cs: Add missing properties
19924 2004-08-12 09:46  pbartok
19926         * BindingsManagerBase.cs:
19927           - Name changed to BindingManagerBase.cs
19929 2004-08-12 09:25  jordi
19931         * ScrollableControl.cs: calls ctrlbase instead of exeception
19933 2004-08-11 16:28  pbartok
19935         * InputLanguageChangingEventArgs.cs:
19936           - Never check in before compiling. Fixes the last check-in
19938 2004-08-11 16:26  pbartok
19940         * InputLanguageChangingEventArgs.cs:
19941           - More signature fixes
19943 2004-08-11 16:20  pbartok
19945         * BindingManagerBase.cs, BindingMemberInfo.cs, ContainerControl.cs,
19946           Control.cs, ControlEventArgs.cs, ControlPaint.cs, Form.cs,
19947           ImageListStreamer.cs, InputLanguage.cs,
19948           InputLanguageChangedEventArgs.cs,
19949           InputLanguageChangingEventArgs.cs, Keys.cs, LayoutEventArgs.cs,
19950           LinkArea.cs, Message.cs, MouseEventArgs.cs, NativeWindow.cs,
19951           ScrollEventArgs.cs, ScrollableControl.cs, XplatUI.cs,
19952           XplatUIDriver.cs, XplatUIWin32.cs, XplatUIX11.cs:
19953           - Signature fixes
19955 2004-08-11 16:16  pbartok
19957         * Application.cs:
19958           - Fixed Signature
19959           - Added .Net 1.1 method
19961 2004-08-11 15:25  pbartok
19963         * SWF.csproj:
19964           - Fixed BindingManagerBase.cs filename
19966 2004-08-11 15:22  pbartok
19968         * BindingManagerBase.cs:
19969           - Was checked in with wrong filename
19971 2004-08-11 14:50  pbartok
19973         * SWF.csproj:
19974           - Updated
19976 2004-08-11 13:41  jordi
19978         * XplatUIWin32.cs: Fixes ClientRect
19980 2004-08-11 13:19  pbartok
19982         * Control.cs, XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs,
19983           XplatUIX11.cs:
19984           - We had SetWindowPos and MoveWindow to set window positions and
19985             size, removed MoveWindow. We have GetWindowPos, so it made sense to
19986             keep SetWindowPos as matching counterpart
19987           - Added some X11 sanity checking
19989 2004-08-11 12:59  pbartok
19991         * Control.cs:
19992           - Major cleanup of my SetBounds/SetBoundsCore/UpdateBounds mess
19993             (It seems that SetBounds is just a front for SetBoundsCore and
19994              SetBoundsCore updates the underlying window system and
19995              UpdateBounds is responsible for updating the variables associated
19996              with the Control and sending the events)
19997           - Major cleanup of Size handling; we now have two sizes, client_size
19998             and bounds. Bounds defines the window with decorations, client_size
19999             without them.
20001 2004-08-11 12:55  pbartok
20003         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIX11.cs:
20004           - Added method to calculate difference between decorated window and
20005             raw client area
20007 2004-08-11 12:54  pbartok
20009         * Label.cs:
20010           - Forcing redraw on resize
20012 2004-08-11 11:43  pbartok
20014         * ImageList.cs:
20015           - Removed disposing of the actual images when the list is disposed
20017 2004-08-11 09:13  pbartok
20019         * Control.cs:
20020           - Now properly reparents windows
20022 2004-08-11 08:37  pbartok
20024         * Control.cs:
20025           - Duh!
20027 2004-08-11 07:47  pbartok
20029         * Control.cs:
20030           - Rewrote the collection stuff. Might not be as fast now, not
20031             keeping the number of children around and accessible directly, but
20032             it's more straightforward
20034 2004-08-11 07:44  pbartok
20036         * AccessibleObject.cs:
20037           - Fixed to match ControlCollection rewrite
20039 2004-08-11 07:43  pbartok
20041         * ImageList.cs:
20042           - Added missing creation of the collection list
20044 2004-08-10 20:08  jackson
20046         * StatusBar.cs: Get the paint message from WndProc
20048 2004-08-10 19:31  jackson
20050         * ThemeWin32Classic.cs: Create Brushes as little as possible
20052 2004-08-10 19:20  jackson
20054         * UICues.cs: Add Flags attribute
20056 2004-08-10 19:19  jackson
20058         * StatusBarPanel.cs: Signature cleanup
20060 2004-08-10 19:10  jackson
20062         * StatusBarDrawItemEventArgs.cs, StatusBarDrawItemEventHandler.cs:
20063           Initial implementation of status bar item drawing
20065 2004-08-10 17:27  jordi
20067         * TrackBar.cs: add missing methods, properties, and restructure to
20068           hide extra ones
20070 2004-08-10 16:24  jackson
20072         * AccessibleStates.cs, Border3DSide.cs, Border3DStyle.cs,
20073           ButtonState.cs, ControlStyles.cs, DragDropEffects.cs: Add flags
20074           attribute
20076 2004-08-10 13:21  jordi
20078         * ITheme.cs, ScrollBar.cs, ThemeWin32Classic.cs: scrollbar
20079           enhancements and standarize on win colors defaults
20081 2004-08-10 12:52  jackson
20083         * DrawItemEventArgs.cs, DrawItemState.cs, ITheme.cs,
20084           ThemeWin32Classic.cs: Implement DrawItem functionality
20086 2004-08-10 12:47  jordi
20088         * XplatUIWin32.cs: Calls InvalidateRect before UpdateWindow
20090 2004-08-10 12:32  jordi
20092         * Control.cs: throw ontextchange event
20094 2004-08-10 11:43  pbartok
20096         * Control.cs:
20097           - Added more to the still unfinished Dock/Anchor layout code
20099 2004-08-10 11:39  pbartok
20101         * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs:
20102           - Added GetWindowPos method
20104 2004-08-10 11:36  pbartok
20106         * XplatUIWin32.cs:
20107           - Implemented several methods
20109 2004-08-10 09:47  jackson
20111         * TrackBar.cs: Allow control to handle buffering
20113 2004-08-10 09:41  jackson
20115         * ProgressBar.cs, ScrollBar.cs: Allow control to handle buffering
20117 2004-08-10 09:24  jackson
20119         * Label.cs, LinkLabel.cs: Let Control handle buffering.
20121 2004-08-10 09:09  jackson
20123         * StatusBar.cs: Let Control handle all the buffering.
20125 2004-08-10 09:08  jackson
20127         * Control.cs: Control will now handle the buffering code, so each
20128           control does not have to implement this.
20130 2004-08-10 08:34  jackson
20132         * XplatUIDriver.cs: Use default colors from the theme
20134 2004-08-09 17:12  pbartok
20136         * ImageList.cs:
20137           - Fixed several bugs Ravindra pointed out
20139 2004-08-09 16:11  pbartok
20141         * Control.cs:
20142           - Added incomplete dock layout code
20143           - Added support for mouse wheel
20145 2004-08-09 16:09  pbartok
20147         * XplatUIX11.cs:
20148           - Added handling for middle and right mousebutton
20149           - Added handling for mouse wheel
20150           - Added handling for key state and mouse state and position
20151           - Now properly generates WM_xBUTTONx messages and WM_MOUSEWHEEL
20152           messages
20154 2004-08-09 15:40  jackson
20156         * StatusBarPanel.cs, StatusBarPanelAutoSize.cs,
20157           StatusBarPanelBorderStyle.cs, StatusBarPanelStyle.cs: Initial
20158           checkin
20160 2004-08-09 15:37  jackson
20162         * StatusBar.cs: Initial implementation of StatusBar
20164 2004-08-09 15:36  jackson
20166         * ITheme.cs: Add support for drawing status bar and getting status
20167           bar item sizes
20169 2004-08-09 15:35  pbartok
20171         * MouseButtons.cs:
20172           - Fixed values
20174 2004-08-09 15:34  jackson
20176         * ThemeWin32Classic.cs: Add support for drawing status bar and get
20177           status bar item sizes
20179 2004-08-09 15:21  jackson
20181         * ThemeWin32Classic.cs: Use known colors for default control
20182           colours
20184 2004-08-09 15:12  jackson
20186         * ThemeWin32Classic.cs: Make the default font static, it is static
20187           in control so this doesn't change functionality and creating fonts
20188           is sloooooow.
20190 2004-08-09 14:56  pbartok
20192         * X11Structs.cs:
20193           - Added GrabMode enum
20195 2004-08-09 14:55  pbartok
20197         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIX11.cs:
20198           - Removed Run method, was only required for initial development
20200 2004-08-09 14:51  pbartok
20202         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIX11.cs:
20203           - Implemented GrabWindow/ReleaseWindow methods to allow pointer
20204           capture
20206 2004-08-09 13:48  pbartok
20208         * XplatUIX11.cs:
20209           - Fixed default sizing for child windows
20211 2004-08-09 12:56  pbartok
20213         * XplatUIX11.cs:
20214           - Added generation of WM_DESTROY message
20215           - Added handling of window manager induced shutdown
20217 2004-08-09 11:31  jackson
20219         * ThemeWin32Classic.cs: New names for control properties
20221 2004-08-09 11:25  jackson
20223         * Control.cs: Use new color names
20225 2004-08-09 11:02  jackson
20227         * XplatUI.cs: Get default window properties from the theme
20229 2004-08-09 11:01  jackson
20231         * ITheme.cs: The theme engine now controls default window
20232           properties
20234 2004-08-09 11:00  jackson
20236         * ThemeWin32Classic.cs: Add default window color properties
20238 2004-08-09 10:17  jackson
20240         * ThemeWin32Classic.cs: Use correct default back color
20242 2004-08-09 10:05  jackson
20244         * XplatUIWin32.cs, XplatUIX11.cs: These properties are handled by
20245           the theme now.
20247 2004-08-09 09:56  jackson
20249         * XplatUI.cs: Remove defaults, these are handled by the theme now.
20251 2004-08-09 09:54  jackson
20253         * Control.cs: Get default properties from the theme.
20255 2004-08-09 09:53  jackson
20257         * ITheme.cs: Themes now handle default control properties
20259 2004-08-09 09:53  jackson
20261         * ThemeWin32Classic.cs: Themes now handle default control
20262           properties so coloring will be consistent
20264 2004-08-08 16:54  jordi
20266         * ITheme.cs, ThemeWin32Classic.cs: Label BorderStyles
20268 2004-08-08 15:08  jordi
20270         * XplatUIX11.cs: fixes keyboard crash
20272 2004-08-08 13:47  jordi
20274         * Label.cs: add cvs header info
20276 2004-08-08 12:09  jackson
20278         * ThemeWin32Classic.cs: Add pen_buttonface
20280 2004-08-08 11:52  jordi
20282         * Label.cs, LinkLabel.cs: [no log message]
20284 2004-08-08 11:34  jordi
20286         * ThemeWin32Classic.cs: Use Windows Standard Colours
20288 2004-08-07 17:32  jordi
20290         * TrackBar.cs: throw exceptions of invalid enums values
20292 2004-08-07 17:31  jordi
20294         * Label.cs, LinkLabel.cs, ThemeWin32Classic.cs: fixes label bug and
20295           draw method name
20297 2004-08-07 16:56  jackson
20299         * HorizontalAlignment.cs: Initial checkin
20301 2004-08-07 13:16  jordi
20303         * Label.cs, LinkLabel.cs: throw exceptions, fixes events, missing
20304           methods
20306 2004-08-07 13:05  jordi
20308         * ITheme.cs, ThemeWin32Classic.cs: Theme colour support and
20309           GetSysColor defines
20311 2004-08-06 18:01  pbartok
20313         * ThemeWin32Classic.cs:
20314           - Fixed some rounding issues with float/int
20316 2004-08-06 18:00  jackson
20318         * DockStyle.cs, AnchorStyles.cs:
20320                   Add flags and serializable attributes.
20322 2004-08-06 17:46  pbartok
20324         * XplatUIX11.cs:
20325           - Implemented GetParent
20327 2004-08-06 17:18  pbartok
20329         * TrackBar.cs:
20330           - Fixed some rounding issues with float/int
20332 2004-08-06 17:17  pbartok
20334         * X11Structs.cs, XplatUIX11.cs:
20335           - Fixed Refresh and Invalidate
20337 2004-08-06 15:30  pbartok
20339         * Control.cs, X11Structs.cs, XplatUIX11.cs:
20340           - Fixed recursive loop when resizing
20341           - Improved/fixed redrawing on expose messages
20343 2004-08-06 09:53  jordi
20345         * Control.cs, X11Structs.cs, XplatUIWin32.cs, XplatUIX11.cs: X11
20346           keyboard navigation
20348 2004-08-06 08:02  pbartok
20350         * X11Structs.cs, XplatUIX11.cs:
20351           - Fixed reparenting
20352           - Fixed window border creation
20354 2004-08-05 15:38  pbartok
20356         * XplatUIX11.cs:
20357           - Attempted fix for reparenting problems
20359 2004-08-04 15:14  pbartok
20361         * Control.cs:
20362           - Fixed Invalidation bug (calculated wrong client area)
20363           - Added ClientSize setter
20365 2004-08-04 15:13  pbartok
20367         * Form.cs:
20368           - Added AutoScale properties
20370 2004-08-04 15:13  pbartok
20372         * SWF.csproj:
20373           - Added latest files
20375 2004-08-04 14:11  pbartok
20377         * Control.cs, XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs,
20378           XplatUIX11.cs:
20379           - Added Invalidate handling
20381 2004-08-03 17:09  jordi
20383         * XplatUIDriver.cs: fixes spelling mistake
20385 2004-07-27 09:53  jordi
20387         * TrackBar.cs: fixes trackbar events, def classname, methods
20388           signature
20390 2004-07-27 09:29  jordi
20392         * ScrollBar.cs: fixes scrollbar events
20394 2004-07-27 04:38  jordi
20396         * Control.cs: changes to be able to run winforms samples
20398 2004-07-26 11:42  jordi
20400         * ControlPaint.cs, ITheme.cs, ProgressBar.cs, ScrollBar.cs,
20401           ThemeEngine.cs, ThemeWin32Classic.cs, TrackBar.cs: Theme support
20403 2004-07-26 05:41  jordi
20405         * MessageBox.cs, MessageBoxButtons.cs, MessageBoxDefaultButton.cs,
20406           MessageBoxIcon.cs, MessageBoxOptions.cs: initial messagebox
20407           implementation
20409 2004-07-22 09:22  jordi
20411         * LinkLabel.cs, LinkLabelLinkClickedEventHandler.cs: link label:
20412           check link overlapping, implement events, and fixes
20414 2004-07-21 10:28  jordi
20416         * DialogResult.cs, IButtonControl.cs: fixes comments filenames
20418 2004-07-21 10:19  jordi
20420         * DialogResult.cs, IButtonControl.cs, Label.cs, LinkArea.cs,
20421           LinkBehavior.cs, LinkClickedEventArgs.cs, LinkLabel.cs,
20422           LinkLabelLinkClickedEventArgs.cs,
20423           LinkLabelLinkClickedEventHandler.cs, LinkState.cs,
20424           XplatUIWin32.cs, LinkClickedEventHandler.cs: LinkLabel control
20425           implementation
20427 2004-07-19 13:09  jordi
20429         * Control.cs, Label.cs: label control re-written: added missing
20430           functionlity, events, and properties
20432 2004-07-19 10:49  jordi
20434         * Control.cs: fixes SetBounds logic
20436 2004-07-19 01:29  jordi
20438         * Control.cs: Call RefreshWindow only if the window has created
20440 2004-07-15 14:05  pbartok
20442         * ColorDepth.cs, ImageList.cs, ImageListStreamer.cs, SWF.csproj:
20443           - Implemented ImageList and ImageList.ImageCollection classes
20444           - Added ColorDepth enumeration
20445           - Updated SWF VS.Net project
20447 2004-07-15 11:06  jordi
20449         * XplatUIStructs.cs: added MsgButons enum
20451 2004-07-15 11:03  jordi
20453         * Control.cs: added basic mouse handeling events
20455 2004-07-15 03:38  jordi
20457         * Orientation.cs, TickStyle.cs, TrackBar.cs: Horizontal and
20458           Vertical TrackBar control implementation
20460 2004-07-13 09:33  jordi
20462         * HScrollBar.cs, VScrollBar.cs: vertical and hort. classes commit
20464 2004-07-13 09:31  jordi
20466         * Control.cs, Form.cs: commit: new properties and fixes form size
20467           problems
20469 2004-07-09 14:13  miguel
20471         * ProgressBar.cs: Spelling
20473 2004-07-09 11:25  pbartok
20475         * ProgressBar.cs:
20476           - Removed usage of Rectangle for drawing. Miguel pointed out it's
20477           faster
20479 2004-07-09 11:17  miguel
20481         * ProgressBar.cs: 2004-07-09  Miguel de Icaza  <miguel@ximian.com>
20483                 * ProgressBar.cs: Fixed spelling for `block'
20485                 drawProgressBar: renamed to `DrawProgressBar' to follow the coding
20486                 style guidelines.
20488                 Avoid using the += on rect.X, that exposed a bug in the compiler.
20490 2004-07-08 23:21  pbartok
20492         * AccessibleObject.cs, AccessibleRole.cs, AccessibleStates.cs,
20493           AnchorStyles.cs, Application.cs, ApplicationContext.cs,
20494           BaseCollection.cs, Binding.cs, BindingContext.cs,
20495           BindingMemberInfo.cs, BindingsCollection.cs,
20496           BindingsManagerBase.cs, Border3DSide.cs, Border3DStyle.cs,
20497           BorderStyle.cs, BoundsSpecified.cs, ButtonBorderStyle.cs,
20498           ButtonState.cs, CaptionButton.cs, CheckBox.cs,
20499           ContainerControl.cs, Control.cs, ControlEventArgs.cs,
20500           ControlEventHandler.cs, ControlPaint.cs, ControlStyles.cs,
20501           ConvertEventArgs.cs, ConvertEventHandler.cs, Copyright,
20502           CreateParams.cs, DockStyle.cs, DragAction.cs, DragDropEffects.cs,
20503           DragEventArgs.cs, DragEventHandler.cs, FlatStyle.cs, Form.cs,
20504           FrameStyle.cs, GiveFeedbackEventArgs.cs,
20505           GiveFeedbackEventHandler.cs, HelpEventArgs.cs,
20506           HelpEventHandler.cs, IContainerControl.cs, IDataObject.cs,
20507           IMessageFilter.cs, IWin32Window.cs, ImeMode.cs, InputLanguage.cs,
20508           InputLanguageChangedEventArgs.cs,
20509           InputLanguageChangedEventHandler.cs,
20510           InputLanguageChangingEventArgs.cs,
20511           InputLanguageChangingEventHandler.cs, InputLanguageCollection.cs,
20512           InvalidateEventArgs.cs, InvalidateEventHandler.cs,
20513           KeyEventArgs.cs, KeyEventHandler.cs, KeyPressEventArgs.cs,
20514           KeyPressEventHandler.cs, Keys.cs, Label.cs, LayoutEventArgs.cs,
20515           LayoutEventHandler.cs, MenuGlyph.cs, Message.cs, MouseButtons.cs,
20516           MouseEventArgs.cs, MouseEventHandler.cs, NativeWindow.cs,
20517           PaintEventArgs.cs, PaintEventHandler.cs, ProgressBar.cs,
20518           QueryAccessibilityHelpEventArgs.cs,
20519           QueryAccessibilityHelpEventHandler.cs,
20520           QueryContinueDragEventArgs.cs, QueryContinueDragEventHandler.cs,
20521           RightToLeft.cs, SWF.csproj, SWF.csproj.user, ScrollBar.cs,
20522           ScrollBars.cs, ScrollButton.cs, ScrollEventArgs.cs,
20523           ScrollEventHandler.cs, ScrollEventType.cs, ScrollableControl.cs,
20524           TODO, TODOAttribute.cs, UICues.cs, UICuesEventArgs.cs,
20525           UICuesEventHandler.cs, X11Structs.cs, XplatUI.cs,
20526           XplatUIDriver.cs, XplatUIStructs.cs, XplatUIWin32.cs,
20527           XplatUIX11.cs, lang.cs:
20528           - Initial check-in