* TextBoxBase.cs: Take HideSelection into account when
[mono-project.git] / mcs / class / Managed.Windows.Forms / System.Windows.Forms / ChangeLog
blob9bcf0a59e649f05837b50b8c47485360c8090be1
1 2006-12-07  Jackson Harper  <jackson@ximian.com>
3         * TextBoxBase.cs: Take HideSelection into account when determining
4         whether or not to show the selection.
5         * RichTextBox.cs: After inserting the RTF into the document move
6         the cursor to the beginning of the document.
8 2006-12-07  Jonathan Pobst  <monkey@jpobst.com>
10         * Control.cs: Remove static ArrayList "controls" which maintained
11         a reference to every control created.
12         * Application.cs: Create a static FormCollection to maintain a reference
13         to every form created.  Use it in places that formerly enumerated through
14         the controls one looking for forms.
15         * Form.cs: Add and remove self from above FormCollection.
17 2006-12-07  Alexander Olk  <alex.olk@googlemail.com>
19         * MimeIcon.cs: gdk_pixbuf_save_to_buffer is part of libgdk-pixbuf,
20           not libgdk (though it makes me wonder why I didn't have any
21           problems)
23 2006-12-07  Chris Toshok  <toshok@ximian.com>
25         [ you had to know this was coming after that last commit...]
26         
27         * XplatUIX11.cs: implement the 3 Offscreen functions in terms of
28         XPixmaps (CreateOffscreenDrawable maps to XCreatePixmap,
29         DestroyOffscreenDrawable to FreePixmap, and BlitFromOffscreen to
30         XCopyArea).
32 2006-12-07  Chris Toshok  <toshok@ximian.com>
34         * XplatUI.cs: add 3 calls (CreateOffscreenDrawable,
35         DestroyOffscreenDrawable, and BlitFromOffscreen) that encompass
36         all the behavior we need for double buffering.
38         * XplatUIDriver.cs: implement the 3 double buffer methods using a
39         client side Bitmap, just like the old Control-based double buffer
40         code did.  The methods are virtual, so each XplatUI driver
41         subclass can replace the implementation to use a faster, platform
42         specific approach.
44         * Control.cs: make use of the 3 Offscreen XplatUI calls in the
45         double buffer code, and clean things up a bit in the process.
47 2006-12-06  Chris Toshok  <toshok@ximian.com>
49         * Control.cs: reindent WndProc.
51 2006-12-06  Chris Toshok  <toshok@ximian.com>
53         [ I wanna be like BenM when I grow up ]
54         
55         * Hwnd.cs: create a single static Graphics object on the static
56         Bitmap we create.  use this for our text measurements.
58         * Control.cs (DeviceContext): stop using the backbuffer's dc_mem.
59         This was causing us to allocate a backbuffer for every control,
60         even when it wasn't flagged as double buffered.  Instead use the
61         single graphics instance.  This might have implications for
62         multithreaded applications.  If we run into problems we can switch
63         to creating 1 Graphics per control, on the static Hwnd bitmap.
65         this change nets us a 7M savings in private dirty mappings when
66         running FormsTest.exe.
68 2006-12-06  Chris Toshok  <toshok@ximian.com>
70         * ToolTip.cs: use Visible instead of is_visible.
72         * TreeView.cs: same.
74         * ListBox.cs: same.
76         * ListView.cs: same.
78 2006-12-06  Chris Toshok  <toshok@ximian.com>
80         * ListView.cs: the BackgroundImage override is just to set
81         attributes.  chain up to base.BackgroundImage.
83         * RichTextBox.cs: same.
85         * ToolBar.cs: same, but we need to also redraw the toolbar when it
86         changes, so instead a handler for BackgroundImageChanged.
87         
88         * Control.cs: make background_image private.
90 2006-12-06  Chris Toshok  <toshok@ximian.com>
92         * ScrollBar.cs: change the assignment of cursor to Cursor.  not
93         sure we even need this assignment, but roll with it for now.
95         * Control.cs: make the cursor field private.
97 2006-12-06  Chris Toshok  <toshok@ximian.com>
99         * Form.cs: we don't need to explicitly set ImeMode to
100         ImeMode.NoControl - that's a natural fallout of Control.ImeMode's
101         behavior in the face of ImeMode.Inherit.
103         * ButtonBase.cs: change DefaultImeMode to ImeMode.Disable, and
104         change the ctor's assignment to use ImeMode instead of ime_mode.
106         * Control.cs (get_ImeMode): don't assume DefaultImeMode ==
107         ImeModeInherit.  Only check for the parent's imemode (and return
108         NoControl if there is no parent) if ime_Mode == ImeMode.Inherit.
109         This fixes the button unit test, which sets both ImeMode and
110         DefaultImeMode to ImeMode.Disable.
112         also make the ime_mode field private.
114 2006-12-06  Chris Toshok  <toshok@ximian.com>
116         * Control.cs: make control_style private.
118         * TextBoxBase.cs: fix the HandleClick override.  it was explicitly
119         setting the styles to true, then setting them to false instead of
120         reverting to their previous values.
122         also, call SetStyle on the scrollbars instead of using
123         control_style directly.
125 2006-12-06  Jonathan Pobst  <monkey@jpobst.com>
127         * FormCollection.cs: Implement. [2.0]
129 2006-12-06  Chris Toshok  <toshok@ximian.com>
131         * Control.cs: make tab_stop private.
133         * Label.cs: set TabStop, not tab_stop.  reformat some event
134         add/remove methods to make them more compact.
136 2006-12-06  Chris Toshok  <toshok@ximian.com>
138         * RadioButton.cs: fix TabStop handling.
140 2006-12-06  Chris Toshok  <toshok@ximian.com>
142         * TextBox.cs: remove the explicit assignments to has_focus.
143         Control does that.
145         * ButtonBase.cs: remove the assignment to has_focus.  Control will
146         manage that.
147         
148 2006-12-06  Chris Toshok  <toshok@ximian.com>
150         * ButtonBase.cs: remove all uses of is_enabled from this code.
151         it's always true when any of the code containing the checks is
152         executed.
154 2006-12-06  Chris Toshok  <toshok@ximian.com>
156         * ImageList.cs: reinstate the ShouldSerialize*/Reset* methods,
157         with different semantics (some are present in both 1.1 and 2.0
158         profiles) so that we match MS's behavior in our unit tests.
160 2006-12-06  Jackson Harper  <jackson@ximian.com>
162         * TextControl.cs: Make this operation undoable.
163         * TextBoxBase.cs: Factor the border width into the preferred
164         height.
165         - implement Modified as per the spec.
167 2006-12-06  Chris Toshok  <toshok@ximian.com>
169         * Timer.cs, Control.cs, Menu.cs: make control_tag private.
171 2006-12-06  Chris Toshok  <toshok@ximian.com>
173         * Control.cs: make right_to_left and context_menu fields private.
175 2006-12-06  Chris Toshok  <toshok@ximian.com>
177         * AccessibleObject.cs, Control.cs, XplatUIX11GTK.cs,
178         XplatUIX11.cs, Form.cs, RadioButton.cs, ScrollableControl.cs: make
179         Control.child_controls private.  switch all uses over to
180         Control.Controls.
182 2006-12-06  Chris Toshok  <toshok@ximian.com>
184         * System.Windows.Forms/GroupBox.cs,
185         System.Windows.Forms/AccessibleObject.cs,
186         System.Windows.Forms/ErrorProvider.cs,
187         System.Windows.Forms/Control.cs,
188         System.Windows.Forms/UpDownBase.cs,
189         System.Windows.Forms/ScrollBar.cs,
190         System.Windows.Forms/DateTimePicker.cs,
191         System.Windows.Forms/Form.cs, System.Windows.Forms/Label.cs,
192         System.Windows.Forms/ToolTip.cs,
193         System.Windows.Forms/RadioButton.cs,
194         System.Windows.Forms/LinkLabel.cs,
195         System.Windows.Forms/Splitter.cs,
196         System.Windows.Forms/TextBoxBase.cs,
197         System.Windows.Forms/ToolStripTextBox.cs,
198         System.Windows.Forms/ContainerControl.cs,
199         System.Windows.Forms/ThemeWin32Classic.cs,
200         System.Windows.Forms/SizeGrip.cs,
201         System.Windows.Forms/ToolStripDropDown.cs,
202         System.Windows.Forms/ScrollableControl.cs: Make Control.parent
203         private.  switch all uses over to Control.Parent.
205 2006-12-06  Chris Toshok  <toshok@ximian.com>
207         * RichTextBox.cs: don't assign to has_focus in GotFocus/LostFocus.
208         Control does this before calling emitting these events.
210         * TabControl.cs: same.
212         * ThemeWin32Classic.cs: use Control.ClientRectangle instead of
213         Control.client_rect.
215         * ButtonBase.cs: use the ClientSize property instead of the
216         client_size field.
218         * ScrollableControl.cs: same.
220         * Control.cs: another pass at making properties private.  also,
221         move the initialization of tab_stop to the ctor.
223 2006-12-05  Andreia Gaita <avidigal@novell.com>
225         * TabControl.cs: Let the selected index be set freely if the 
226         control handle is not yet created.
228 2006-12-05  Jonathan Pobst  <monkey@jpobst.com>
230         * Control.cs: Revert dist_top, dist_right, and dist_bottom to 
231         internal until I can rewrite DefaultLayout.
232         * ToolStrip.cs: Fix build error and some general cleaning.
233         * ToolStripControlHost.cs, SplitterPanel.cs, DataGridView.cs:
234         Fix build errors caused by making some of Control's fields private.
236 2006-12-05  Jackson Harper  <jackson@ximian.com>
238         * TextControl.cs: Redo Insert a little so that it use IndexOf
239         instead of Split, this prevents it from messing up on things like
240         \n\n\n. Also more effecient since the split array doesn't need to
241         be created.
242         * TextBoxBase.cs: AppendText doesnt handle multiline and non
243         multiline text differently, this is the first of many fixes that
244         will make multiline/non-multiline the same thing as far as the
245         TextBoxBase is concerned.
246         - Don't split the text and insert lines, this can lose some line
247         endings (like is the last line a soft or hard break). Instead use
248         the new Insert.
249         - Fix an off by one when combining all the lines in the Text
250         getter.
251         - Remove separate multiline handling from the Text getter/setter.
253 2006-12-05  Chris Toshok  <toshok@ximian.com>
255         * ButtonBase.cs: a few changes:
257         - don't reinitialize internal Control fields in the ctor when they
258         have the same values as Control sets them.
260         - don't set has_focus in OnGotFocus/OnLostFocus.  Control does
261         this before calling those methods.
263         - we don't need to call Refresh for anything.  use Invalidate
264         instead.
266         - OnEnabledChanged doesn't need to redraw at all - Control.cs
267         calls Refresh in its OnEnabledChanged.
268         
269         - several of the events we were registered for in the ctor to
270         redraw ourselves already include calls to Invalidate in the
271         property setters that raise the events.  remove the extra
272         invalidation.
274         - reformat a switch statement that was 83274658 columns wide.
275         
276 2006-12-05  Mike Kestner  <mkestner@novell.com>
278         * ComboBox.cs: fix a unit test regression from a TextBox
279         SelectionLength return of -1 when there's no selection.  
281 2006-12-05  Chris Toshok  <toshok@ximian.com>
283         * Control.cs, Button.cs, ThemeGtk.cs, Form.cs, ListView.cs,
284         ThemeWin32Classic.cs, SizeGrip.cs, ToolBar.cs: first pass at
285         cleaning up some of the internal Control fields being used by
286         subclasses.
288 2006-12-05  Mike Kestner  <mkestner@novell.com>
290         * ComboBox.cs: fix some Simple mode regressions.  Set Visible on the
291         listbox after AddImplicit calls since it defaults to hidden. Add a 
292         hack to preserve requested heights across DropDownStyle changes.
294 2006-12-05  Jonathan Pobst  <monkey@jpobst.com>
296         * PropertyGrid.cs: Hide FindFirstItem method from public API.
298 2006-12-05  Chris Toshok  <toshok@ximian.com>
300         * DataGridView.cs: fix compiler warnings.
302         * PrintControllerWithStatusDialog.cs: same.
304         * ToolBar.cs: same.
306         * FolderBrowserDialog.cs: same.
308         * Splitter.cs: same.
310         * DataGridViewComboBoxCell.cs: same.
312         * XplatUIWin32.cs: same.
314         * PictureBox.cs: same.
316         * Win32DnD.cs: same.
318         * PageSetupDialog.cs: same.
320         * FileDialog.cs: same.
322         * PrintDialog.cs: same.
324         * DataGridTextBoxColumn.cs: same.
326         * DrawTreeNodeEventArgs.cs: same (and fix corcompare)
328 2006-12-05  Chris Toshok  <toshok@ximian.com>
330         * TextBox.cs, CheckedListBox.cs, MonthCalendar.cs, Menu.cs,
331         MainMenu.cs, ListView.cs, LabelEditTextBox.cs, ToolBar.cs: more
332         System.ComponentModel.EventHandlerList work.
334 2006-12-05  Jonathan Chambers  <joncham@gmail.com>
336         * DrawTreeNodeEventArgs.cs: Added.
338 2006-12-05  Rolf Bjarne Kvinge  <RKvinge@novell.com>
339         
340         * InternalWindowManager.cs: Remove an unused field.
341         
342 2006-12-05  Rolf Bjarne Kvinge  <RKvinge@novell.com>
344         * InternalWindowManager.cs:
345         - Save the point where the title bar is clicked.
346         
347         * MdiWindowManager.cs:
348         - Only allow moving of the window as long as the 
349         clicked point on the title bar does not get out of
350         MdiClient's rectangle. Fixes #79982.
351         
352         * MdiClient.cs:
353         - Added Horizontal/VerticalScrollbarVisible.
354         - Simplified the scrollbar sizing algorithm.
355         - Cache the difference in scrolled value in
356         H/VBarValueChanged and move the calculation out
357         of the for loop.
359 2006-12-05  Rolf Bjarne Kvinge  <RKvinge@novell.com>
361         * Control.cs: Make the Console.WriteLine in WndProc 
362         write more info.
364 2006-12-05  Chris Toshok  <toshok@ximian.com>
366         * ToolStripManager.cs, ToolStripButton.cs,
367         ToolStripContentPanel.cs, ToolStripComboBox.cs, ToolStrip.cs,
368         ToolStripMenuItem.cs, ToolStripItem.cs, ToolStripControlHost.cs,
369         ToolStripSplitButton.cs, ToolStripSeparator.cs,
370         ToolStripRenderer.cs, ToolStripDropDownItem.cs,
371         ToolStripProgressBar.cs, ToolStripContainer.cs,
372         ToolStripTextBox.cs, ToolStripPanel.cs, ToolStripDropDown.cs: move
373         to using System.ComponentModel.EventHandlerList.
375 2006-12-04  Chris Toshok  <toshok@ximian.com>
377         * LinkLabel.cs: fix up compiler warnings.
379         * TableLayoutSettings.cs: same.
381         * TreeView.cs: same.
383         * ToolBar.cs: same.
385         * TabControl.cs: same.
387         * RichTextBox.cs: same.
389         * ListViewItem.cs: same.
391         * PropertyGrid.cs: same.
393         * DataGridViewRowPostPaintEventArgs.cs: corcompare fix.
395         * ToolTip.cs same.
397         * TextRenderer.cs: fix up compiler warnings.
399         * Label.cs: same.
401         * Form.cs: corcompare fixes.
403         * PictureBox.cs: fix up compiler warnings.
405         * ImageListStreamer.cs: same.
407         * TrackBar.cs: corcompare fix.
409         * Control.cs: fix up compiler warnings.
411         * SplitterPanel.cs: same.
413         * NumericTextBox.cs: same.
415         * ImageList.cs: same.
417         * StatusStrip.cs: same.
419         * ProgressBar.cs: corcompare fix.
421         * ToolStripButton.cs: fix up compiler warnings.
423         * ToolStripStatusLabel.cs: same.
425         * ToolStripSplitButton.cs: same.
427         * ToolStripSeparator.cs: same.
429         * ToolStripProgressBar.cs: same.
431         * ToolStripDropDownMenu.cs: same
433         * ToolStripDropDown.cs: same.
435         * ToolStripDropDownButton.cs: same.
437         * ToolStrip.cs: same.
439         * ToolStripControlHost.cs: same.
441         * ToolStripContentPanel.cs: same.
443         * ToolStripDropDown.cs: same.
445         * ToolStripContainer.cs: same.
447         * ToolStripPanel.cs: same, and add "new" where we need it to work
448         with the new ArrangedElementCollection.
450         * ToolStripItemCollection.cs: add "new" where we need it to work
451         with the new ArrangedElementCollection.
453 2006-12-04  Andreia Gaita <avidigal@novell.com>
455         * TabControl.cs: Fix default tab selection to after TabControl
456         gets focus and not before. Fixes #80128
458 2006-12-04  Chris Toshok  <toshok@ximian.com>
460         * DataGridTableStyle.cs: remove the gross calling of
461         datagrid.Refresh from here.  It's a broken idea and it doesn't
462         work anyway.
464         * DataGrid.cs: instead, just register/unregister from the
465         DataGridTableStyle events in CurrentTableStyle.  we play it
466         conservatively and EndEdit + CalcAreasAndInvalidate on any event,
467         even though some would most likely not require it.  Fixes bug
468         #80115 (and one portion of #80117 as a side effect).
470 2006-12-04  Chris Toshok  <toshok@ximian.com>
472         * DataGrid.cs (set_CaptionVisible): EndEdit before doing the work
473         so the textbox (if any) goes away.  Fixes bug #80117.
475 2006-12-04  Chris Toshok  <toshok@ximian.com>
477         * DataGridColumnStyle.cs: set the column's readonly property
478         initially based on the property descriptor's IsReadOnly.  Fixes
479         bug #80044.
481 2006-12-04  Chris Toshok  <toshok@ximian.com>
483         * ComboBox.cs: wrap the dropdown style changing work in
484         SuspendLayout/ResumeLayout.  Fixes bug #79968.
486 2006-12-04  Jackson Harper  <jackson@ximian.com>
488         * TextBoxBase.cs: Fix off by one, since these are one-based.
489         * TextBox.cs: Select all the text when we get focus.  The TextBox
490         does this but the RTB does not.
492 2006-12-04  Chris Toshok  <toshok@ximian.com>
494         * DataGridTextBoxColumn.cs: remove some spew.
496         * DataGridColumnStyle.cs (SetColumnValueAtRow): this seems right
497         but some part of me is saying "it shouldn't be here.."  At any
498         rate, it fixes bug #80046.  Call IEditableObject.EndEdit after
499         setting the value.
501 2006-12-04  Chris Toshok  <toshok@ximian.com>
503         * DataGridColumnStyle.cs (SetDataGrid): call CheckValidDataSource
504         to reassign the propertydescriptor.
506 2006-12-04  Jackson Harper  <jackson@ximian.com>
508         * TextBoxBase.cs:
509         * TextControl.cs: Remove some unused variables.  Maybe this will
510         patch things up between mike and I.
511         - don't split lines less then one char wide, if the viewport is
512         that small text won't be visible anyways.
513         
514 2006-12-04  Jackson Harper  <jackson@ximian.com>
516         * TextBoxBase.cs: Default selection length is -1, need to do some
517         more testing on windows to see when this is used for the property.
518         - Redid the Lines [] property to that we properly remove soft line
519         breaks
520         - added support for preserving carriage returns
521         -  CanUndo is not a variable like 'is undo enabled' it just returns
522         true if there is undo operations available.
523         - AppendText doesn't need to grab the last tag itself anymore,
524         this happens automatically when we move the cursor.
525         * TextControl.cs: Add CompoundActions to the undo class. This
526         allows combining the other operations into one big option.  ie a
527         paste will combine { delete old, insert new, move cursor }
528         - Add InsertString undo operation
529         - New method for deleting multiline text
530         - Add carriage returns to lines. So we can preserve carriage
531         returns when text is 'roundtripped'
533 2006-12-04  Chris Toshok  <toshok@ximian.com>
535         * DataGrid.cs (CalcCellsArea): cells_area.Width/Height are at a
536         minimum 0.  Fixes the scrollbar exception in bug #80136.
538 2006-12-04  Rolf Bjarne Kvinge  <RKvinge@novell.com>
540         * MdiClient.cs: 
541         * MdiWindowManager: Removed unused fields and methods.
542         
543 2006-12-04  Rolf Bjarne Kvinge  <RKvinge@novell.com>
544         
545         * StatusBar.cs: Update all panels when a AutoSize=Contents
546         panel needs updating.
547         
548         * StatusBarPanel.cs: Remove twidth and only use initialize.
549         Fixes #80031.
550                 
551 2006-12-04  Rolf Bjarne Kvinge  <RKvinge@novell.com>
553         * Form.cs: When a form's MdiParent is set add it directly
554         on top of the z-order in stead of relying on MdiClient's
555         ActivateChild to do it. Fixes #80135.
556         
557         * MdiClient.cs: 
558         - Remove original_order, mdi_child_list is already doing
559         the same thing.
560         - Create mdi_child_list on construction in
561         stead of first use (avoids a few null checks).
563         * MenuItem.cs: Use an already existing list of mdi children
564         to get the correct order of children and remove the other
565         redundant list.
567 2006-12-04  Chris Toshok  <toshok@ximian.com>
569         * PropertyGridView.cs: cached_splitter_location is only used in
570         !DOUBLEBUFFER code.
572         * PropertyGrid.cs: implement the ComComponentNameChanged event
573         using Events, hoping that would fix the warning.  Looks like a
574         compiler bug instead (#80144).
576         * PropertyManager.cs: remove unused method.
578 2006-11-04  Everaldo Canuto  <everaldo@simios.org>
580         * ThemeWin32Classic.cs: Dont draw arrow when menuitem on menubar, 
581         include parentesis to fix expression evaluation. Fixes #79634.
583 2006-11-02  Everaldo Canuto  <everaldo@simios.org>
584         
585         * MenuAPI.cs:
586         - Changes to fix behavior in Menu control, some reported in #80097
587         and other detected during behavior refactory like a select event
588         problems.
589         - Remove unneded "if's" conditions.
590         - Created an internal to flag when popup is active in control, we need 
591         it because in .NET you can have menu active but without popup active
592         when you active menu using popup without visible items.
593         - Mimic win32 behavior for Select and Popup events.  
594         - Dont open popup menu when you dont have visible subitems.
595         - Do nothing when click on disabled menu item.
596         - Some small changes to follow the coding style guidelines.
597         - Unselect menu only when another control gives focus. Fixes #80097.
598         - Remove unused code.
599         
600         * MenuItem.cs: internal VisibleItems method to check if menu
601         theres visible subitems, it will be usefull to fix some 
602         behavior in Menu control.
603         
604 2006-11-01  Everaldo Canuto  <everaldo@simios.org>
605         
606         * Timer.cs: Tag property for 2.0 profile.
607         
608 2006-12-01  Chris Toshok  <toshok@ximian.com>
610         [ after removing all warning suppressions, this cleans up over 100 warnings. ]
611         
612         * Win32DnD.cs: comment out some unused fields.
614         * XplatUIWin32.cs: comment out some unused pinvokes, and remove
615         some unused properties/methods.
617         * XplatUIX11.cs: fix MousePosition so we override the base class's
618         property instead of conflicting with it.
620         * PictureBox.cs: comment out some unused fields
622         * OSXStructs.cs: make some struct fields public.
624         * XplatUIOSX.cs: comment out some unused pinvokes, and fix
625         MousePosition so we override the base class's property instead of
626         conflicting with it.
628         * X11Dnd.cs: comment out some unused fields
630         * X11DesktopColors.cs: fix some struct field visibility to quiet
631         the compiler.
633         * X11Dnd.cs: remove some debug code.
635         * ThemeClearlooks.cs: comment out unused field.
637         * ThemeNice.cs: mark some methods as overriding ThemeWin32Classic as needed.
639         * ThemeGtk.cs: comment out some unused pinvokes.
641         * Timer.cs: remove some unused fields.
643         * ThemeClearlooks.cs: comment out unused field.
645         * UpDownBase.cs: comment out unused field.
647         * DataObject.cs: comment out unused field.
649         * DataGridBoolColumn.cs: reomve unused field.
651         * DataGrid.cs: remove unused field.
653         * Cursor.cs: remove old ToBitmap code.
655         * ControlPaint.cs: remove unused method.
657         * ScrollBar.cs: remove unused fields.
659         * ComboBox.cs: remove unused field, and chain up to
660         AccessibleObject ctor.
662         * ListBox.cs: remove unused field.
664         * ButtonBase.cs: wrap a couple fields in NET_2_0.
666         * GridEntry.cs: remove unused fields.
668         * Binding.cs: remove unused fields.
670         * AxHost.cs: remove unused method.
672         * ContainerControl.cs: remove unused field.
674         * ScrollableControl.cs: remove unused fields.
676 2006-12-01  Chris Toshok  <toshok@ximian.com>
678         * XplatUI.cs, XplatUIWin32.cs, XplatUIGTK.cs: nuke
679         the Where/WhereString stuff.  it's easy enough to CWL
680         Environment.StackTrace.
682         * XplatUIX11.cs: same, but also fix up a lot of mcs warnings about
683         unused private fields.
685 2006-12-01  Jackson Harper  <jackson@ximian.com>
687         * TextControl.cs: Do not update the view while inserting multiline
688         text. If we update the view we might wrap lines, before entering
689         the new lines, which causes the new line insertion calculations to
690         be totally fubared.
691         - Remove an old TODO
692         - Make debug output a little nicer
693         
694 2006-12-01  Chris Toshok  <toshok@ximian.com>
696         * ToolBar.cs: revert the ImeMode fix here and add an XXX comment.
698 2006-12-01  Chris Toshok  <toshok@ximian.com>
700         [ fix the majority of the CS0108 warnings we've been suppressing ]
701         
702         * TreeView.cs: mark BackgroundImageChanged as 'new'.
704         * ToolBar.cs: ImeMode just passes stuff to Control.  Rename Layout
705         to "LayoutToolBar" to quiet mcs.
706         
707         * TabControl.cs: mark our ControlCollection class as 'new'.
709         * TextBoxBase.cs: mark some events as 'new'.
711         * Splitter.cs: TabStop is 'new'.
713         * ControlBindingsCollection.cs: mark a few methods as new since
714         they change the visibility from protected to public.
716         * RadioButton.cs: DoubleClick -> base class, and remove unused
717         HaveDoubleClick.
719         * MonthCalendar.cs: ImeMode property -> base class, and mark many
720         events as new.
722         * NumericUpDown.cs: TextChanged -> base class.
724         * CheckedListBox.cs: mark our ObjectCollection class as new to
725         quiet mcs.
727         * FolderBrowserDialog.cs: make HelpRequest event new and have it
728         muck with the base class.
730         * StatusBar.cs: fix some mcs warnings about Update being the same
731         name as a base class method.
733         * RichTextBox.cs: mark some events as new, and make them do things
734         to the base class impl.
736         * UserControl.cs: mark TextChanged as new, and have it manipulate
737         base.TextChanged.
739         * UpDownBase.cs: mark some things new.
741         * CheckBox.cs: mark DoubleClick "new", and add some text about
742         what we need to look at.
744         * Panel.cs: make the events "new", and manipulate the base
745         version.  these are just here for attributes.
747         * AccessibleObject.cs: make owner private.
749         * Control.cs: deal with AccessibleObject.owner being private.
750         cache our own copy if we need it.
752         * Button.cs: add "new" to the DoubleClickEvent.
754         * ListBox.cs: no need to track our own has_focus here.  let
755         Control.has_focus do it for us.  Also some other work to clear up
756         warnings about not overriding base class methods of the same name.
757         
758         * ComboBox.cs: clear up some warnings about not override base
759         class methods of the same name.
761 2006-12-01  Chris Toshok  <toshok@ximian.com>
763         * Form.cs: flag a few things as "new" to quiet some of the mcs
764         warnings.
766         * AxHost.cs: same.
768         * PrintPreviewDialog.cs: same.
770         * DataGridView.cs: fix a ton of corcompare warnings.  not all, but
771         now DGV isn't so horrible on the class status page.  also, move
772         all events to using System.ComponentModel.EventHandlerList.  my
773         wrists hurt.
775 2006-12-01  Rolf Bjarne Kvinge  <RKvinge@novell.com>
777         * MdiWindowManager.cs:
778         - Set form to active mdi child if shown,
779         and update the active mdi child to the next 
780         remaining child in the z-order if the form is hidden.
782         * Form.cs: 
783         - Track if the form has been visible and if its 
784         visibility is beeing changed, so that the MdiClient
785         can properly decide the ActiveMdiChild. The MdiClient 
786         cannot track this since the form can change visibility 
787         before MdiClient is created.
789         * MdiClient.cs:
790         - Don't activate anything of the parent form is changing
791         its visibility.
792         - Rework ActiveMdiChild to only return visible mdi 
793         children and take into account several other corner 
794         cases.
796 2006-12-01  Chris Toshok  <toshok@ximian.com>
798         * IBindableComponent.cs: new 2.0 interface.
800 2006-12-01  Gert Driesen  <drieseng@users.sourceforge.net>
802         * DataGrid.cs: Font for caption area is bold by default.
804 2006-12-01  Everaldo Canuto  <everaldo@simios.org>
806         * Menu.cs: Tag property for 2.0.
807         
808 2006-11-01  Everaldo Canuto  <everaldo@simios.org>
810         * ThemeWin32Classic.cs: Adjust menu separator drawing. 
811         
812 2006-12-01  Chris Toshok  <toshok@ximian.com>
814         * TreeView.cs: doh, the Begin* events should be
815         TreeViewCancelEventHandler.
817 2006-12-01  Chris Toshok  <toshok@ximian.com>
819         * Form.cs: Form.ControlCollection already stores off the
820         form_owner field.  don't access the base class's internal "owner"
821         field.
823         * Control.cs: make all the fields in Control.ControlCollection
824         private.  there's no need for any internal fields here.
826 2006-12-01  Chris Toshok  <toshok@ximian.com>
828         * DataGrid.cs: call SetDataSource instead of CalcGridAreas in
829         OnHandleCreated.  Fixes bug #80109.
831 2006-12-01  Chris Toshok  <toshok@ximian.com>
833         * Button.cs, PropertyGridTextBox.cs, ComboBox.cs,
834         SplitContainer.cs, Control.cs, StatusStrip.cs,
835         DataGridTableStyle.cs, MenuItem.cs, DomainUpDown.cs, ImageList.cs,
836         NumericTextBox.cs, NumericUpDown.cs, Panel.cs, CommonDialog.cs,
837         DataGrid.cs, ScrollBar.cs, TrackBar.cs, PictureBox.cs,
838         DateTimePicker.cs, StatusBar.cs, Form.cs, PrintPreviewDialog.cs,
839         Label.cs, UserControl.cs, CheckBox.cs, RadioButton.cs,
840         LinkLabel.cs, ListControl.cs, PropertyGrid.cs, Splitter.cs,
841         MenuStrip.cs, FolderBrowserDialog.cs, NotifyIcon.cs,
842         TextBoxBase.cs, ListView.cs, DataGridBoolColumn.cs,
843         PrintPreviewControl.cs, RichTextBox.cs, ListBox.cs, TabControl.cs,
844         DataGridColumnStyle.cs, ContextMenu.cs, TreeView.cs:
846         do most of the work to convert our code over to use
847         System.ComponentModel.Component.Events for
848         adding/removing/dispatching events.
851 2006-11-30  Jonathan Pobst  <monkey@jpobst.com>
853         * DataGridView.cs: Fix an ArgumentNullException reported 
854         twice today in IRC.
856 2006-11-30  Mike Kestner  <mkestner@novell.com>
858         * ComboBox.cs: fix the scrollbar mouse event forwarding in the 
859         grabbed listbox.  Fixes #80036 and #80101.
861 2006-11-30  Rolf Bjarne Kvinge <RKvinge@novell.com>
863         * Message.cs: Changed ToString() to match MS.
864         
865 2006-11-30  Jackson Harper  <jackson@ximian.com>
867         * TextBoxBase.cs: You can still change the selected text on a read
868         only textbox.
869         * TextControl.cs: Lower magic number for wrap calculations. This
870         lets text get closer to the right (far) edge.
872 2006-11-30  Jonathan Pobst  <monkey@jpobst.com>
874         * Control.cs: Tweak 2.0 layout properties.
875         * Form.cs: Switch ToolStripMenuTracker hooks to ToolStripManager.
876         * TextRenderer.cs: Add a new overload.
877         * ToolStrip*: Huge amount of changes and new features.
879 2006-11-30  Mike Kestner  <mkestner@novell.com>
881         * ComboBox.cs: fixes for LargeChange and Maximum to get the 
882         scroll range correct.  Fixes #79994.
884 2006-11-30  Rolf Bjarne Kvinge <RKvinge@novell.com>
886         * MdiWindowManager.cs: Update main form's text when
887         a form is closed. (fixes #80038)
888         
889 2006-11-30  Everaldo Canuto  <everaldo@simios.org>
891         * ToolBar.cs:
892         - Fix an regression in ButtonSize.
893         - Get ImeMode default value change to "Disable".
894         - Get ShowTooltips default value change to true, default value is 
895         "false" but after make a test in .NET we get "true" result as default.
896         
897 2006-11-29  Jonathan Pobst  <monkey@jpobst.com>
899         * ToolStripDropDown.cs: Fix for SupportsTransparency change.
901 2006-11-29  Chris Toshok  <toshok@ximian.com>
903         * XplatUIWin32.cs (GetWindowTransparency): check return value of
904         GetLayeredWindowAttributes.  if it's 0, return 1.0, as
905         SetWindowTransparency hasn't been called.
907 2006-11-29  Chris Toshok  <toshok@ximian.com>
909         * Form.cs (set_TransparencyKey): only call SetWindowTransparency
910         if it's supported.
911         (set_AllowTransparency): reorder things a little so that the
912         WS_EX_LAYERED style is removed properly.
914 2006-11-29  Chris Toshok  <toshok@ximian.com>
916         [ totally cosmetic eye-candy feature, fixes bug #80089 ]
917         
918         * Form.cs: only call the XplatUI transparency method (get/set) if
919         SupportsTransparency says it's supported. Otherwise fallback to
920         doing nothing (in the set case) or returning the instance field we
921         cache (in the get case).
923         * XplatUIStructs.cs: add TransparencySupport flag enum.
924         
925         * XplatUIDriver.cs: add abstract GetWindowTransparency, and track
926         change to SupportsTransparency.
928         * XplatUIOSX.cs: stub out GetWindowTransparency, and return
929         TransparencySupport.None from SupportsTransparency.
931         * XplatUIX11.cs: Stub out GetWindowTransparency, and return
932         TransparencySupport.Set from SupportsTransparency.
934         * XplatUIWin32.cs: implement GetWindowTransparency calling
935         GetLayeredWindowAttributes, and implement SupportsTransparency by
936         checking whether or not both
937         GetWindowTransparency/SetWindowTransparency are available
938         entrypoints.  We need to do this since SetWindowTransparency is
939         available as of win2k, but GetWindowTransparency requires winxp.
940         yay win32 api.
942         * XplatUI.cs: Add GetWindowTransparency, and change
943         SupportsTransparency to allow for either/both Get/Set.
945 2006-11-29  Chris Toshok  <toshok@ximian.com>
947         * DataGrid.cs: keep from going into an infinite loop redrawing a
948         datagrid that has no datasource.  Fixes bug #80033.
950 2006-11-29  Chris Toshok  <toshok@ximian.com>
952         * MenuItem.cs: fix the NRE when we assign text (and therefore call
953         Invalidate) before the mainmenu has been assigned to a control.
955 2006-11-29  Chris Toshok  <toshok@ximian.com>
957         * DataGrid.cs: detect when we should be double the double click
958         row/column autosize stuff, although that codepath has yet to be
959         written.  part of the work for bug #79891.
961 2006-11-29  Chris Toshok  <toshok@ximian.com>
963         * Binding.cs (SetControl): fix unit test.
965 2006-11-29  Carlos Alberto Cortez <calberto.cortez@gmail.com>
967         * PageSetupDialog.cs: Validate the margins and set them in
968         PageSettings. 
969         * NumericTextBox.cs: New class to mimic the behavior of the
970         textboxes used in the printing dialogs.
972 2006-11-29  Andreia Gaita  <avidigal@novell.com>
973         
974         * Form.cs: Revert previous change (remove call UpdateBounds
975         from form constructor), because it messes with the handle creation
976         order, and that one needs lots and lots of love.
977         * PrintPreviewDialog.cs: Revert change to CreateHandle (add check
978         for valid printer and throw InvalidPrinterException if document
979         is set but printer not valid), adding a MonoTODO. Once 
980         handle creation is done properly, we can put this back in.
982 2006-11-28  Everaldo Canuto  <everaldo@simios.org>
984         * MenuItem.cs: Create a invalidate method for menu item, to be
985         calling from set text, it make text changes to imadiate update
986         on screen. Fixes #80013. 
987         
988 2006-11-28  Everaldo Canuto  <everaldo@simios.org>
990         * ToolBar.cs: Fixes and simplify toolbar button layout, it 
991         fixes bug #80070 and some other problem on toolbar buttons
992         layout.
994 2006-11-28  Everaldo Canuto  <everaldo@simios.org>
996         * ThemeWin32Classic.cs: Paint toolbar toggle button background 
997         with dotted brush.      Fixes #79564
998         
999 2006-11-28  Andreia Gaita  <avidigal@novell.com>
1001         * Form.cs: Removed call to UpdateBounds on Form
1002         constructor, it was causing a call to CreateHandle
1003         before it was supposed to.
1004         * PrintControllerWithStatusDialog: Applied patch
1005         by Chris Toshok to hide controller when there are
1006         no printers available.
1007         PrintDialog.cs: initialize printer settings to 
1008         null - correct DefaultValues test #5
1009         * PrintPreviewControl.cs: Move PrintController
1010         initialization to GeneratePreview
1011         * PrintPreviewDialog.cs: 
1012         - Remove Preview generation     from Document_set(). It is 
1013         called on OnPaint
1014         - Throw InvalidPrinterException on CreateHandle if
1015         a Document is set but there are no printers or 
1016         printer is not valid.
1017         * ThemeWin32Classic: don't paint PrintPreviewControl
1018         if there is nothing to paint    
1020 2006-11-28  Miguel de Icaza  <miguel@novell.com>
1022         * Form.cs: Add another popular method.
1024         * TabPage.cs: ditto.
1026 2006-11-28  Rolf Bjarne Kvinge  <RKvinge@novell.com>
1028         * MenuItem.cs: Fixed a warning.
1029         * InternalWindowManager: Fixed a warning.
1031 2006-11-28  Rolf Bjarne Kvinge  <RKvinge@novell.com>
1033         * MenuItem.cs:
1034         - When cloning a menu also clone MdiList and clone the 
1035           window menu items properly (as the forms and menuitems
1036           are kept in an internal hashtable, these need updating 
1037           as well)
1038         - Rewrote the window menu code, menu items are added in the
1039           order the forms were added to their parent, and they are
1040           updated every time the window menu is shown (before the
1041           list was only generated once, in the current order of the
1042           forms, and would never be updated). A checkmark is shown
1043           next to the item corresponding to the active mdi child.
1045 2006-11-28  Rolf Bjarne Kvinge  <RKvinge@novell.com>
1047         * XplatUIStructs.cs: 
1048         - Added WM_NCMOUSEHOVER and WM_NCMOUSELEAVE.
1049         
1050         * XplatUIWin32.cs: 
1051         - Added TME_NONCLIENT to TMEFlags.
1052         - Handles WM_NCMOUSEMOVE in GetMessage to 
1053           generate WM_NCMOUSEHOVER and WM_NCMOUSELEAVE messages.
1055         * MdiWindowManager:
1056         - Now merges mdi child menu to parent menu when maximized.
1057         - Recalculate NC areas of both mdi child and mdi parent. 
1058           Fixes #79757 (4).
1059           on window state and size changes.Fixes #79844 (3).
1060         - Handle WM_NCCALCSIZE to properly calculate borders.
1062         * Form.cs:
1063         - Add/remove to the mdi containers list of mdi children 
1064           in the order they are added.
1065         - Pass on WM_NCLBUTTONUP, WM_NCMOUSEMOVE and WM_NCMOUSELEAVE 
1066           to the maximized mdi child.
1067         
1068         * InternalWindowManager.cs:
1069         - Only execute a click on the control buttons on the mouse up,
1070           not on the mouse down. Show the state of the button 
1071           (was only showing Normal state, never Pressed state). The
1072           pressed button now follows the mouse (if you click the Close 
1073           button and move the mouse over the Maximize button, the 
1074           Maximize button will be shown as pressed). Since Win32 does
1075           not generate WM_NCLBUTTONUP if you release the button outside
1076           of the nc area, we need to handle WM_NCMOUSELEAVE and treat
1077           it as a mouse up.
1078         
1079         * ThemeWin32Classic.cs:
1080         - Draw a missing border around mdi child forms. Fixes #79844 (2).
1082         * MdiClient.cs:
1083         - Added a list of forms which contains the order the forms are
1084           added to the mdi parent.
1085         - Handle WM_NCPAINT to properly draw a 3D border. Fixes #79844 (2).
1086         - Handle WM_NCCALCSIZE to properly calculate the 3D border.
1087         - If the active form changes set the scrollbars to the top
1088           of the Z order, otherwise the form could hide them.
1089         - Scrollbars are now sized according to ClientSize, not 
1090           to Size, and they take into account the other scrollbar
1091           to determine maximum.
1092         
1093 2006-11-28  Rolf Bjarne Kvinge <RKvinge@novell.com>
1094         
1095         * XplatUI.cs:
1096         * XplatUIDriver.cs:
1097         * XplatUIX11.cs:
1098         * XplatUIWin32.cs:
1099         * XplatUIOSX.cs:
1100         - Added RequestAdditionalWM_NCMessages for windows to 
1101           opt in for WM_NCMOUSELEAVE and WM_NCMOUSEHOVER.
1102           Currently only implemented in XplatUIWin32.
1104 2006-11-27  Chris Toshok  <toshok@ximian.com>
1106         * Hwnd.cs: only add the hwnd to the windows hash in
1107         set_WholeWindow and set_ClientWindow if whole_window/client_window
1108         are not IntPtr.Zero.  also, remove the unused SetObjectWindow.
1110 2006-11-27  Mike Kestner  <mkestner@novell.com>
1112         * ComboBox.cs: remove redundant OnDropDown call.  It is called
1113         from the ComboListBox.ShowWindow code. Fixes #79969.
1115 2006-11-27  Chris Toshok  <toshok@ximian.com>
1117         * Hwnd.cs: remove the setters for ExposePending and
1118         NCExposePending - noone uses them.
1120 2006-11-27  Jackson Harper  <jackson@ximian.com>
1122         * TextControl.cs: new param for ReplaceSelection which determines
1123         whether we select the new selection, or set the cursor to the end
1124         of the new selection.
1125         * TextBoxBase.cs: Use new param for ReplaceSelection.  When
1126         pasting, select the new text.
1127         * RichTextBox.cs: Use new param for ReplaceSelection.
1129 2006-11-27  Jackson Harper  <jackson@ximian.com>
1131         * TextBoxBase.cs: Set the selection to the caret after the caret
1132         is moved, otherwise they get out of sync.
1134 2006-11-26  Everaldo Canuto  <everaldo@simios.org>
1136         * ToolBar.cs: Fixe size of ToolBar when AutoSize is false,
1137         it fixes #80015
1139 2006-11-26  Everaldo Canuto  <everaldo@simios.org>
1141         * ThemeWin32Classic.cs: 
1142         - Fix toolbar drop down arrow position.
1143         - Fix drop down appearance when ToolBar.Appearance is normal,
1144         it fixes #80018.
1145         
1146 2006-11-26  Gert Driesen  <drieseng@users.sourceforge.net>
1148         * ProgressBar.cs: GetStyle fixes for 2.0 profile.
1149         * Control.cs: Same.
1150         * UpDownBase.cs: Same.
1151         * ButtonBase.cs: Same.
1152         * ScrollBar.cs: Same.
1153         * TrackBar.cs: Same.
1154         * PictureBox.cs: Same.
1155         * UserControl.cs: Same.
1156         * Label.cs: Same.
1157         * ListControl.cs: Same.
1158         * TextBoxBase.cs: Same.
1159         * ListView.cs: Same.
1160         * RichTextBox.cs: Same.
1161         * TreeView.cs: Same.
1163 2006-11-25  Jordi Mas i Hernandez <jordimash@gmail.com>
1165         * PrintDialog.cs:
1166         - Text label for where 
1167         - Text label comment was not shown
1169 2006-11-23  Everaldo Canuto  <everaldo@simios.org>
1171         * ThemeWin32Classic.cs: Fix toolbar drop down arrow size.
1173 2006-11-23  Rolf Bjarne Kvinge  <RKvinge@novell.com> 
1175         * InternalWindowManager.cs: 
1176         - Handle WM_PARENTNOTIFY to activate the form
1177         if any child control is clicked.
1178         - The form is only sizable if not minimized.
1180         * MdiWindowManager.cs:
1181         - Save the IconicBounds if the form is moved.
1182         - Rework SetWindowState, now the window bounds 
1183         are stored only if the old window state is Normal.
1184         
1185         * MdiClient.cs:
1186         - In SetWindowStates store the old window state if 
1187         the window is maximized and restore window state if
1188         the window looses focus.
1189         - Don't handle any scrollbar value changes if 
1190         initializing the scroll bars. Fixes #79771.
1191         - Reworked ArrangeIconicWindows. Current algorithm
1192         tests bounds agains all other minimized windows, if
1193         any intersections create new bounds (going left to 
1194         right, bottom to top) and then test again. When 
1195         successful the bounds are saved and never computed
1196         again. Fixes #79774.
1198 2006-11-23  Rolf Bjarne Kvinge  <RKvinge@novell.com> 
1200         * InternalWindowManager.cs: Added HandleTitleBarUp.
1202 2006-11-23  Gert Driesen  <drieseng@users.sourceforge.net>
1204         * NumericUpDown.cs: In .NET 1.1, user entered text is still
1205         hexadecimal in ParseUserEdit.
1207         
1208 2006-11-23  Rolf Bjarne Kvinge  <RKvinge@novell.com> 
1210         * MdiWindowManager.cs: 
1211         - Handle a click on the form's icon to show the 
1212         system menu (when maximized). Fixes #79775.
1213         - Change the existing click handler for the form's
1214         icon when not maximized to show on MouseUp.
1215         Fixes #79776.
1217         * Form.cs: In OnResize only layout the mdi child's
1218         parent if it actually has a parent. Might not if
1219         the window is closing.
1222 2006-11-23  Gert Driesen  <drieseng@users.sourceforge.net>
1224         * MdiClient.cs: Ignore active MDI client for text of parent, if
1225         child has no text set.
1227 2006-11-23  Gert Driesen  <drieseng@users.sourceforge.net>
1229         * ToolBar.cs: Fixed ToString to match MS.
1231 2006-11-22  Andreia Gaita  <avidigal@novell.com>
1233         * NumericUpDown: 
1234         - Fix DecimalPlaces, Hexadecimal and ThousandsSeparator to 
1235         update inner values on set. Fixes #79966.
1236         - Override OnLostFocus to update value on NET 2. Fixes #79950.
1237         - Fix hexadecimal parsing.
1238         
1239         * UpDownBase: Override OnGotFocus and OnLostFocus to notify 
1240         parent. Fixes #79957
1242 2006-11-22  Rolf Bjarne Kvinge  <RKvinge@novell.com>
1244         * Control.cs: After calling SetWindowsPos in SetBoundsCore 
1245         the actual size has to be queried, since if height /
1246         width is negative Win32 changes it to 0. 
1247         Fixes #79999 on Windows.
1248         
1249         * XplatUIX11.cs: Set height / width to 0 if negative
1250         in SetWindowPos. Fixes #79999 on Linux.
1251         
1252 2006-11-22  Everaldo Canuto  <everaldo@simios.org>
1254         * ThemeWin32Classic.cs: Fix text redenring when button is
1255         pressed.
1257 2006-11-22  Everaldo Canuto  <everaldo@simios.org>
1259         * MenuAPI.cs: Fixes behavior when menu is opened by kerboard
1260         and later navigate by mouse. Fixes #79528.
1262 2006-11-21  Everaldo Canuto  <everaldo@simios.org>
1264         * ToolBar.cs: Set default value for TabStop to false in
1265         constructor, it fixes remaining behavior of bug #79863.
1267 2006-11-21  Rolf Bjarne Kvinge  <RKvinge@novell.com>
1269         * MdiWindowManager.cs:
1270         * InternalWindowManager.cs:
1271         - Moved a few methods specific to Mdi from 
1272         InternalWindowManager to MdiWindowManager.
1273         Fixes #79996.
1274         
1275 2006-11-21  Chris Toshok  <toshok@ximian.com>
1277         * XplatUIOSX.cs: stub out InvalidateNC.
1279         * XplatUIWin32.cs: implement InvalidateNC using the call I found
1280         at http://www.dotnet247.com/247reference/msgs/58/292037.aspx.
1282         * XplatUIX11.cs: rename InvalidateWholeWindow to InvalidateNC.
1284         * XplatUIDriver.cs: add InvalidateNC abstract method.
1286         * XplatUI.cs: add InvalidateNC.
1288 2006-11-21  Everaldo Canuto  <everaldo@simios.org>
1290         * ToolBar.cs: Invalidate complete button area when pressed status 
1291         was changed.
1292         * ToolButton.cs: Fix InvalidateBorder for DropDown buttons.
1293         * ThemeWin32Classic.cs: Increase vertical and horizontal position 
1294         by 1 when button is pressed.
1296 2006-11-20  Everaldo Canuto  <everaldo@simios.org>
1298         * ToolButton.cs: Invalidate middle of DropDown button when
1299         ToolBar theres DropDownArrows.
1300         * ThemeWin32Classic.cs: Change position of DropDown arrow and
1301         fix DropDown drawing operations.
1303 2006-11-20  Chris Toshok  <toshok@ximian.com>
1305         * NativeWindow.cs: fix the formatting of functions ('{' on the
1306         following line), and enable the thread exception dialog.
1308         * Application.cs: remove the duplicate exception catching from
1309         here.
1311 2006-11-20  Everaldo Canuto  <everaldo@simios.org>
1313         * Toolbar.cs: Triggers button click event when click on icon
1314         of dropdown ToolBarButton. Fixes #79912.
1315         
1316 2006-11-20  Rolf Bjarne Kvinge  <RKvinge@novell.com>
1318         * Theme.cs:
1319         * ThemeWin32Classic.cs:
1320         - Added a property WindowBorderFont to enable themeing
1321           of mdi child windows' Text.
1322           
1323 2006-11-20  Rolf Bjarne Kvinge  <RKvinge@novell.com>
1325         * InternalWindowManager.cs:
1326         * Form.cs:
1327         * MdiClient.cs:
1328         * MdiWindowManager.cs: 
1329         - If mdi child is maximized, set mdi parent's
1330           text to "Parent - [Child]". Fixes #79770.
1331         - If there is any maximized mdi child windows, only the active 
1332           window (and any new windows) is maximized, the rest are normal.
1333         - On a WindowState change only save mdi child's window bounds 
1334           if the old window state was normal. Fixes #79774.
1335         - The scroll bars are now calculated on hopefully all
1336           necessary events. Fixed #79771 / #79844->6 / #79906.
1337         - MdiClient.SizeScrollBars() now takes into account docked 
1338           controls in the parent when calculating available space.
1339         - InternalWindowManager now always repaints the entire title
1340           area. Fixes #79844->1/4/5.
1341         - Added RequestNCRecalc on mdi child windowstate changes.
1342           Fixes #79772.
1344 2006-11-20  Mike Kestner  <mkestner@novell.com>
1346         * ComboBox.cs: setup LargeChange on the scrollbar. Invoke FireMouseUp
1347         in the MouseUp handler of the listbox and move the return handling
1348         code to FireMouseUp to avoid scrolling on ups.  Fixes #79952.
1350 2006-11-20  Everaldo Canuto  <everaldo@simios.org>
1352         * Toolbar.cs: Ignore right mouse clicks in toolbar. Fixes #79855. 
1354 2006-11-17  Alexander Olk  <alex.olk@googlemail.com>
1356         * MimeIcon.cs: Seems that DllImports that were fine in 1.2 are not
1357           working in 1.2.x anymore. So, updated.
1359 2006-11-19  Gert Driesen  <drieseng@users.sourceforge.net>
1361         * NumericUpDown.cs: Use NegativeSign, NumberDecimalSeparator and
1362         NumberGroupSeparator of current culture instead of assuming en-US.
1363         Fixed bug #79967.
1365 2006-11-17  Mike Kestner  <mkestner@novell.com>
1367         * Control.cs: Add the concept of implicit bounds setting so that
1368         dock/undock round trips preserve explicitly set size/locations.
1369         Fixes #79313.
1371 2006-11-17  Alexander Olk  <alex.olk@googlemail.com>
1373         * FileDialog.cs: Trim all filters, otherwise DirInfo.GetFiles
1374           can't handle those filters. (Fixes bug #79961)
1376 2006-11-17  Chris Toshok  <toshok@ximian.com>
1378         [ fixes the exit/crashes associated with #79835.  it's clearly
1379         suboptimal though, we need to figure out a better way to solve
1380         this. ]
1381         
1382         * PrintPreviewControl.cs: deal with the new invalid printer
1383         exceptions.
1385         * PageSetupDialog.cs: if the printer is invalid, pop up a dialog
1386         and return false (so CommonDialog.ShowDialog doesn't actually show
1387         the form.)
1389         * PrintDialog.cs: enable/disable the Ok button depending on
1390         whether or not the printer is valid.
1392         * CommonDialog.cs (ShowDialog): only actually show the form if
1393         RunDialog returns true.
1395 2006-11-17  Jackson Harper  <jackson@ximian.com>
1397         * TextControl.cs: When soft splitting a line, mark it as a soft
1398         split line. Also carry over the current line break to the next
1399         line.
1401 2006-11-17  Chris Toshok  <toshok@ximian.com>
1403         * XplatUIX11.cs: when scrolling a window with an invalid area, we
1404         only want to shift the part of the invalid area that overlaps the
1405         area we're scrolling.  we also don't want to clear the invalid
1406         area unless the invalid area was entirely contained within the
1407         scrolling area.
1409 2006-11-16  Chris Toshok  <toshok@ximian.com>
1411         * XplatUIX11.cs: remove the handling of the TimerEvent stuff, and
1412         also make sure to free the memory returned by XGetWindowProperty
1413         in GetText().
1415         * X11Structs.cs: remove the TimerEvent stuff, it's unused.
1417 2006-11-16  Chris Toshok  <toshok@ximian.com>
1419         * XplatUI.cs: add a new super secret way to get at the totally
1420         unsupported X11 backend.
1422 2006-11-16  Gert Driesen  <drieseng@users.sourceforge.net>
1424         * NumericUpDown.cs: Allow lowercase letters when in hex-mode.
1426 2006-11-16  Jackson Harper  <jackson@ximian.com>
1428         * TreeView.cs: Allow more explicit setting of top node position
1429         for scrollbars. Slower algo, but more accurate.
1430         - CollapseAll should maintain the current top node.
1431         * TextBoxBase.cs: When positioning the caret, use the line, pos
1432         method, since the x, y method does not grab the correct tag, and
1433         the caret height never gets set correctly. (Maybe I should just do
1434         away with the caret having its own height, and always use the
1435         carets current tag for height).
1437 2006-11-16  Jonathan Pobst  <monkey@jpobst.com
1439         [Fixes 79778, 79923]
1441         * XplatUIWin32.cs: Don't allow a parent to be set to IntPtr.Zero.
1442         Parent to the FosterParent instead.
1444 2006-11-16  Jackson Harper  <jackson@ximian.com>
1446         * TreeView.cs: Need to recalc the topnode when we expand or
1447         collapse. The scrolling methods can't handle this on their own,
1448         since they use differences between the last scroll position, and
1449         those difference get completely messed up since we are expanding
1450         nodes.  This problem should probably be fixed in the scrolling
1451         methods, so they can figure out exactly where they are, but this
1452         will slow things down a little.
1453         * ThemeWin32Classic.cs: Special case for groupboxes with empty
1454         strings, makes nunit-gui look a lot nicer.
1456 2006-11-16  Chris Toshok  <toshok@ximian.com>
1458         * XplatUIX11.cs: nasty, nasty, nasty changes required because of
1459         the broken multithreaded event handling we have in here.  File
1460         this entry under "Why we should move to the new X11 backend".
1462         Any thread can make it into UpdateMessageQueue, which gets events
1463         from the X socket - some of which could belong to hwnds being
1464         managed by a different thread.  We can also have multiple threads
1465         in UpdateMessageQueue at the same time, with each one reading from
1466         the X socket.  This leads to many problems, with the following
1467         solutions:
1469         We can't use hwnd.Queue.Enqueue anywhere in here and must use
1470         EnqueueLocked.
1472         The MotionNotify compression we do can't work across threads
1473         (without locking the entire queue, perhaps) since we call
1474         hwnd.Queue.Peek, so we just punt and don't compress motion events
1475         unless the owning thread is the one which got the X event.
1477         ConfigureNotify is another fun one, since it modifies the hwnd's
1478         bounds and then enqueues the event.  We add a lock to Hwnd which
1479         is held when setting configure_pending to true (and enqueuing the
1480         event).
1482         There is a race wrt the wake socket.  we need to make sure that
1483         only 1 thread is waiting on that socket, or else a thread could
1484         sleep waiting for data that never comes.  It's difficult (but not
1485         impossible) to make happen, because it seems to require something
1486         like the following:
1488             1. Thread 1 polls on wake_receive
1489         
1490             2. poll returns saying there's data to be read on
1491                wake_receive.
1492         
1493             3. Thread 2 polls on wake_receive and immediately returns
1494                saying there's data to be read.
1496             4. Thread 2 reads the wakeup byte from wake_receive
1498             5. Thread 1 attempts to read the wakeup byte from
1499                wake_receive.
1501             6. Thread 2 exits (due to a form closing, perhaps).
1503             7. Thread 1 blocks forever.
1504         
1505         Fun, eh?
1507         Fixing the Expose handling isn't done yet, and the races inherent
1508         in that piece of code are responsible for the drawing mistakes you
1509         see when generating expose events in a MT app (like NPlot).  This
1510         one is the likely to be the hardest to bandaid, and it doesn't
1511         appear to cause anything but drawing problems.  The other issues
1512         caused apps to exit or hang.
1514         * XEventQueue.cs: output some spew when Dequeue/Enqueue/Peek are
1515         called from a different thread than the one that should be calling
1516         these functions.
1518         * Hwnd.cs: add some locks to be used by the XplatUIX11 code.
1520 2006-11-15  Chris Toshok  <toshok@ximian.com>
1522         * Application.cs: null out the context's MainForm when we exit
1523         RunLoop.  Fixes a newly checked in unit test as well as the last
1524         ODE from bug #79933.
1526 2006-11-15  Chris Toshok  <toshok@ximian.com>
1528         * Form.cs (set_Owner): allow a null value so we can clear the
1529         form's owner.
1530         (Dispose): set all our owned_form's Owner properties to null, and
1531         clear the owned_forms collection.
1532         (WM_CLOSE): clean up this a little bit.. still not right though.
1534         * ApplicationContext.cs: OnMainFormClosed should only call
1535         ExitThreadCore if the main form isn't recreating.  Fixes unit
1536         test.
1538 2006-11-15  Jonathan Pobst  <monkey@jpobst.com>
1540         [Fixes 78346]
1542         * ComboBox.cs: Set the Hwnd.no_activate flag for the ComboListBox.
1544 2006-11-15  Jonathan Pobst  <monkey@jpobst.com>
1546         [Fixes 79433]
1548         * Hwnd.cs: Add a flag to show a window, but not activate it, to 
1549         keep popup window types from stealing focus from the main form
1550         on Windows.
1552         * XPlatUIWin32.cs: Use SW_SHOWNOACTIVATE if above field is true.
1554         * MenuAPI.cs: Set above flag to true.
1556 2006-11-15  Chris Toshok  <toshok@ximian.com>
1558         * XplatUIX11.cs: mimic win32 behavior on BUTTONUP events, where
1559         the button being released is not in wParam.
1561 2006-11-15  Jonathan Pobst  <monkey@jpobst.com>
1563         * Form.cs: Add the released button to MouseEventArgs.Button
1564         for the OnMouseUp call to the MenuTracker.  Fixes menu clicking
1565         on Win32.
1567 2006-11-15  Chris Toshok  <toshok@ximian.com>
1569         * XplatUIX11.cs: add (untested) a _NET_WM_NAME implementation of
1570         GetText().  untested because it's unused in our implementation.
1571         Control.Text always caches the text, even if
1572         ControlStyles.CacheText is not set.
1574         fixes bug #79939.
1576 2006-11-15  Chris Toshok  <toshok@ximian.com>
1578         [ fixes #79933 ]
1579         
1580         * Form.cs: in Close() don't do anything after we send the WM_CLOSE
1581         message.  no hiding, no disposing.
1583         in the WM_CLOSE handler, hide the form if it's modal.
1585 2006-11-15  Chris Toshok  <toshok@ximian.com>
1587         * XplatUIX11.cs: use AddExpose instead of sending a message.
1588         fixes textbox border drawing.
1590 2006-11-15  Chris Toshok  <toshok@ximian.com>
1592         * PropertyGridView.cs: keep from crashing on mouse move/down when
1593         the property grid is empty.
1595 2006-11-14  Jackson Harper  <jackson@ximian.com>
1597         * TextControl.cs: Make PageUp and PageDown more like the MS
1598         versions.
1599         * TextBoxBase.cs: When we set the text property position the
1600         cursor at the beginning of the document.
1602 2006-11-14  Rolf Bjarne Kvinge  <RKvinge@novell.com>
1604         * Form.cs: if a mdi child's WindowState has changed
1605         before it's creation, it would display wrong control
1606         buttons.
1607         
1608 2006-11-14  Alexander Olk  <alex.olk@googlemail.com>
1610         * TreeView.cs: De-uglify TreeView checkbox checkmarks.
1611           (Fixes bug #79927)
1613 2006-11-14  Rolf Bjarne Kvinge <RKvinge@novell.com> 
1615         * XplatUIX11.cs: send a WM_NCPAINT on WM_NCCALCSIZE so that 
1616         the window gets to paint its borders even if the window is
1617         getting smaller.
1618         
1619         * Form.cs: on a WM_NCPAINT invalidate the entire menu, 
1620         otherwise the old control buttons would still be painted 
1621         if the window gets bigger.
1622         
1623         * PaintEventArgs.cs: add an internal method so that the clip 
1624         rectangle can be changed.
1625         
1626 2006-11-13  Chris Toshok  <toshok@ximian.com>
1628         [ fixes bug #79745 ]
1629         
1630         * NotifyIcon.cs: lots of cleanup.
1632         * X11Structs.cs: add an enum for XEMBED messages.
1634         * XplatUIX11.cs: reindent one of the giant switch statements, it
1635         was taking up an additional tab stop, and this file is already way
1636         too wide for my laptop's screen.
1638         Also, add handling for the XEmbed EMBEDDED_NOTIFY message.  When
1639         we get it, resize the hwnd to the WMNormalHints max_width/height.
1641 2006-11-13  Jackson Harper  <jackson@ximian.com>
1643         * TextBoxBase.cs: Compute the value changes for the mouse wheel
1644         teh simple way.
1646 2006-11-13  Chris Toshok  <toshok@ximian.com>
1648         * XplatUIX11.cs, XplatUIStructs.cs: kind of a gross fix for
1649         #79898.  force a reference to the Region to stick around so the
1650         unmanaged object isn't collected (rendering our handle in the MSG
1651         stale).
1653 2006-11-13  Chris Toshok  <toshok@ximian.com>
1655         * XplatUIX11.cs: fix #79917 for window managers which support
1657         using XStoreName on the raw utf8, and we need to convert to
1658         COMPOUND_TEXT if it's non-latin1.
1660 2006-11-13  Chris Toshok  <toshok@ximian.com>
1662         * Form.cs (set_DialogResult): we need to set closing to false if
1663         we're setting our result to None.  fixes bug #79908.
1665 2006-11-13  Jackson Harper  <jackson@ximian.com>
1667         * TextControl.cs: When formatting text, compute the adjusted tag
1668         lengths correctly, using FindTag for the end tag instead of trying
1669         to figure it out outselves.
1670         * TreeNode.cs: Use ActualItemHeight, which is the actual height of
1671         the item, ItemHeight doesn't work, because trees with large
1672         imagelists use those for their height
1673         * TreeView.cs: ActualItemHeight factors in the image height
1674         - compute left edge of checkboxes correctly
1675         - when expanding/collapsing move the bottom down one pixel, so we
1676         aren't moving part of the node
1678 2006-11-13  Rolf Bjarne Kvinge  <RKvinge@novell.com>
1680         * XplatUIX11.cs: The PaintEventArgs is also added to the drawing
1681         stack in PaintEventStart so that it won't get disposed by the gc
1682         before reaching PaintEventEnd.
1684 2006-11-13  Jackson Harper  <jackson@ximian.com>
1686         * TextBoxBase.cs: Don't select the word if we are on a line with
1687         no text.
1688         - We don't need to position the caret on mouse up, since the mouse
1689         move handler should be doing this
1690         - When double clicking a blank line, the caret is advanced to the
1691         next line.
1693 2006-11-13  Gert Driesen  <drieseng@users.sourceforge.net>
1695         * TreeNodeCollection.cs: Avoid duplicating indexer code.
1697 2006-11-12  Gert Driesen  <drieseng@users.sourceforge.net>
1699         * ColorDialog.cs: Reset size of dialog between calls to ShowDialog.
1700         Fixes part of bug #79910.
1702 2006-11-11  Alexander Olk  <alex.olk@googlemail.com>
1704         * ColorDialog.cs: Fix a NRE when adding a color to custom colors
1705           (bug #79903). Some minor string updates to match ms.
1707 2006-11-10  Alexander Olk  <alex.olk@googlemail.com>
1709         * FileDialog.cs: Don't add an extension if the filename
1710           already ends with that extension.
1712 2006-11-10  Jackson Harper  <jackson@ximian.com>
1714         * TreeView.cs: Use the currently highlighted node for the
1715         BeforeSelect event.
1716         * TextBoxBase.cs: There is no need to expand selection on
1717         MouseMove.
1718         - CanUndo means 'is there any undo operations', not 'is undo
1719         allowed on this textcontrol. Fixed ClearUndo unit test.
1721 2006-11-10  Andreia Gaita  <shana.ufie@gmail.com>
1723         * Button.cs: only perform click when button is Selectable (so as 
1724         not to activate default buttons when they're disabled)
1725         
1726         * Control.cs: Rewrite of the SelectNextControl and related 
1727         methods. HandleClick now selects next control if the current one
1728         is being disabled.
1729         
1730         * Form.cs: OnActivated selects next active control only if Load 
1731         has already occurred. If Load hasn't run, there's no point in 
1732         selecting here, Load might change the state of controls.
1733         
1734         * FocusTest.cs: Tests marked as working again for these fixes
1736 2006-11-10  Chris Toshok  <toshok@ximian.com>
1738         * XplatUIX11.cs: a couple of fixes.
1740         - use XInternAtoms with almost all the atoms we need to register,
1741         instead of many, many calls to XInternAtom.  should help a bit on
1742         startup time, at the expense of making the code look a little
1743         worse.
1745         - fall back to setting TransientFor on TOOLWINDOW's if their hwnd
1746         isn't reparented (which seems to be a clue that we're running fon
1747         compiz) and they have an Owner form.  This fixes the tool windows
1748         in paint.net when running under compiz.
1750         - when setting the opacity of a window, support both the case
1751         where the window has been reparented and also when it hasn't been.
1752         Since compiz/beryl doesn't seem to reparent windows, and these are
1753         the only window managers which support translucency, I'm not sure
1754         why we need the hwnd.reparented case at all.. but leave it in.
1755         now we get translucent windows in paint.net under compiz/beryl.
1757 2006-11-10  Alexander Olk  <alex.olk@googlemail.com>
1759         * FileDialog.cs: Always return the value for FilterIndex that
1760           was set. Internally convert it to values that make sense.
1762 2006-11-10  Everaldo Canuto  <everaldo@simios.org>
1763         
1764         * ThemeWin32Classic.cs: Fix drowp down arrow borders.
1766 2006-11-10  Everaldo Canuto  <everaldo@simios.org>
1768         * Toolbar.cs: Change default value of DropDownArrows to true, the 
1769         signature still using false to make it compatible with MS but the 
1770         initial value is true. Fixes #79855.
1772 2006-11-10  Alexander Olk  <alex.olk@googlemail.com>
1774         * MimeIcon.cs: Don't throw an exception on windows. Mime stuff is
1775           only available on Linux.
1777 2006-11-09  Everaldo Canuto  <everaldo@simios.org>
1779         * Toolbar.cs, ToolBarButton.cs: Fix wrong separator size and
1780         reduce number of calls to redraw method during toolbar creation.
1782 2006-11-09  Mike Kestner  <mkestner@novell.com>
1784         * ListView.cs : raise SelectedIndexChanged when an item is selected
1785         programmatically via the Item.Selected property.  Gert's nice 
1786         ListViewSelectedIndexChanged test fixture now runs clean.
1788 2006-11-09  Mike Kestner  <mkestner@novell.com>
1790         * ListView.cs : raise SelectedIndexChanged when a selected item is
1791         removed from the item collection using Remove or RemoveAt.
1793 2006-11-09  Mike Kestner  <mkestner@novell.com>
1795         * ListView.cs : raise SelectedIndexChanged once per selected item
1796         for compat with MS.  Fixes #79849+.
1798 2006-11-09  Chris Toshok  <toshok@ximian.com>
1800         * TabControl.cs: initialize row_count to 0, and set it to 1 when
1801         we need to (if we have any tab pages).  Fixes unit test.
1803 2006-11-09  Chris Toshok  <toshok@ximian.com>
1805         * Label.cs (CalcPreferredWidth): if Text == "", our preferred
1806         width is 0, not 3.  Fixes a unit test.
1808 2006-11-09  Mike Kestner  <mkestner@novell.com>
1810         * ListView.cs : use Implicit scrollbars so that focus isn't 
1811         stolen from the listview when they are clicked. Fixes #79850.
1813 2006-11-09  Chris Toshok  <toshok@ximian.com>
1815         * PropertyGridView.cs (OnPaint): only call DrawGridItems if we
1816         have a root item.  Fixes #79879.
1818 2006-11-09  Alexander Olk  <alex.olk@googlemail.com>
1820         * FileDialog.cs:
1821           - Fix ToString ()
1822           - An ArgumentException is now thrown if a wrong filter
1823             is applied (matches ms). The previous filter doesn't change
1824             anymore if an exception is thrown.
1825           - Changing the FileName property also affects FileNames
1826         * ColorDialog.cs: The length of the CustomColors array is always
1827           16. It doesn't matter if we use a smaller array or null to update
1828           or change the custom colors property.
1829         * FolderBrowserDialog.cs: Throw an InvalidEnumArgumentException if
1830           for RootFolder if we get a undefined value.
1832 2006-11-09  Rolf Bjarne Kvinge  <RKvinge@novell.com>
1834         * StatusBarPanel.cs: 
1835         - Width is set to MinWidth if Width is smaller than
1836         MinWidth. Fixes #79842.
1837         - MinWidth now always overrides Width (MSDN says MinWidth
1838         is set to Width when AutoSize = None, but they do not 
1839         behave like that).
1840         - Style has now the the correct default value.
1841         
1842 2006-11-09  Rolf Bjarne Kvinge  <RKvinge@novell.com>
1844         * TrackBar.cs: 
1845         - The control is completely invalidated on 
1846         Got/LostFocus to draw the focus rectangle correctly.
1847         - When AutoSize then height is always 45 (width for 
1848         vertical controls).
1849         
1850         * ThemeWin32Classic.cs: The TrackBar thumb is now centered
1851         on the mouse when moved and it doesn't move when grabbed
1852         until the mouse moves as well. Also fixed some wrong 
1853         calculations when clicking on the thumb (control thought
1854         click was outside of thumb and didn't grab it).
1855         Fixes some of the issues in #79718.
1857 2006-11-08  Everaldo Canuto  <everaldo@simios.org>
1859         * Toolbar.cs: Prevent disabled button to highlight. Fixes #79868.
1861 2006-11-08  Chris Toshok  <toshok@ximian.com>
1863         * PropertyGridView.cs: only call ToggleValue if the item is not
1864         readonly.
1866 2006-11-08  Jackson Harper  <jackson@ximian.com>
1868         * TextBoxBase.cs: The RichTextBox and textbox have very different
1869         word selection methods.  Implement the textbox's simple word
1870         selection here, and let the RichTextBox override and provide it's
1871         own.
1872         - Don't do extra selection on mouseup
1873         * RichTextBox.cs: Use the documents word selection algorithm, I
1874         think ideally, this function will be pulled into the
1875         RichTextBox.cs code someday.
1877 2006-11-08  Chris Toshok  <toshok@ximian.com>
1879         * RootGridEntry.cs: new class to represent GridItemType.Root.
1881         * CategoryGridEntry.cs: reformat, and add boilerplate.
1882         
1883         * GridEntry.cs: remove the UIParent stuff - turns out .Parent
1884         returns the UI parent anyway, and we need special handling to
1885         implement the GetTarget method in the face of it.  Also, implement
1886         Select().
1888         * PropertyGrid.cs, PropertyGridView.cs: a number of fixes.  create
1889         a root grid item, and use that instead of PropertyGrid.grid_items.
1890         Also, make use of TypeConverters (and add limitted support for
1891         ICustomTypeDescriptors) when initially populating the grid.
1892         Arrays now show up more or less properly.
1894 2006-11-08  Chris Toshok  <toshok@ximian.com>
1896         * Application.cs: set the modal dialog to non modal after we close
1897         it.  Fixes bug #79866.
1899 2006-11-08  Jackson Harper  <jackson@ximian.com>
1901         * TextControl.cs: When combining lines carry over the line end
1902         style from the end line.
1903         - Invalidate the selected area when setting it, if it is visible.
1904         * TextBoxBase.cs: Only rich text box can do full line selects.
1905         - Make sure to set the cursor position when there is a click,
1906         otherwise two clicks in separate areas could cause a large chunk
1907         to be selected.
1909 2006-11-07  Everaldo Canuto  <everaldo@simios.org>
1911         * Toolbar.cs: Release flat button borders when Toolbar lost focus. 
1912         Fixes #79863.
1914 2006-11-07  Everaldo Canuto  <everaldo@simios.org>
1916         * Toolbar.cs: Prevent toolbar to open more than one tooltip at same
1917         time. Remove tooltips when ToolButton click events.  Fixes #79856.
1919 2006-11-07  Everaldo Canuto  <everaldo@simios.org>
1921         * MenuAPI.cs: Ignore right click for menu actions and fixes
1922         menu border when clicked.  Fixes #79846.
1924 2006-11-07  Everaldo Canuto  <everaldo@simios.org>
1926         * XplatUIX11.cs, XplatUIX11.cs: Fix MouseRelease to only release
1927         MouseState after create wParam for message, this fixes mouse button 
1928         equal none in mouse up events.
1929         
1930 2006-11-07  Andreia Gaita  <shana.ufie@gmail.com>
1932         * Control.cs : Focus() now calls Select to set the Container's
1933         Active Control and to give it focus. To avoid infinite recursion
1934         (because ActiveControl also calls Focus at one point), a check 
1935         is made in Focus with the help of a new internal variable
1936         is_focusing.
1938 2006-11-07  Mike Kestner  <mkestner@novell.com>
1940         * ListView.cs : raise OnSelectedIndexChanged in CreateHandle
1941         if there's a selection.  Fixes #79849.
1943 2006-11-07  Gert Driesen  <drieseng@users.sourceforge.net>
1945         * PropertyGrid.cs: Avoid fixed height of help description label.
1946         Fixes part of bug #79829.
1948 2006-11-07  Chris Toshok  <toshok@ximian.com>
1950         * XplatUIX11.cs: fix #79790 again, by using the
1951         _NET_WM_STATE_SKIP_TASKBAR atom to implement Form.ShowInTaskbar.
1953 2006-11-07  Everaldo Canuto  <everaldo@simios.org>
1955         * ToolBar.cs: Fix left click checking.
1957 2006-11-07  Chris Toshok  <toshok@ximian.com>
1959         * ProgressBar.cs: fix a typo in ToString().  fixes a unit test.
1961 2006-11-07  Chris Toshok  <toshok@ximian.com>
1963         * RelatedPropertyManager.cs: set property_name in our ctor.  fixes
1964         PropertyManager unit tests.
1966         * PropertyManager.cs: make property_name internal.
1968 2006-11-07  Chris Toshok  <toshok@ximian.com>
1970         * ButtonBase.cs: initialize base.ime_mode to ImeMode.Disable to
1971         pass a unit test.  Also, don't set image_index to anything in
1972         response to setting the ImageList property.
1974 2006-11-07  Everaldo Canuto  <everaldo@simios.org>
1976         * ToolBar.cs: Ignore click events when mouse button is not a
1977         left button, only accepts other button for dropdown menus.  
1978         Fixes #79854.
1980 2006-11-07  Chris Toshok  <toshok@ximian.com>
1982         * DataGrid.cs: make the back and parent row buttons a little less
1983         ugly.
1985 2006-11-07  Jackson Harper  <jackson@ximian.com>
1987         * TextBoxBase.cs: When converting to Text don't put line breaks in
1988         for soft line breaks.
1989         * TextControl.cs: There is an initial "fake" line in the document,
1990         this is now a soft break line, so that an extra line feed doesn't
1991         get added to the end of documents.
1993 2006-11-07  Chris Toshok  <toshok@ximian.com>
1995         [ fix bug #79778 ]
1996         
1997         * CurrencyManager.cs: if the list is readonly, don't bother
1998         checking if IBindingList.AllowNew is true.
2000         * ThemeWin32Classic.cs (DataGridPaintParentRow): make this work
2001         for non-DataRowView datasources..  or rather, make it not crash.
2002         (DataGridPaintRelationRow): make sure we limit the row painting to
2003         the area not covered by the row header, and make our cell width at
2004         least large enough to cover the relation area.  This allows grids
2005         that have relations but no rows to render correctly.
2006         (DataGridPaintRowContents): same type of changes here.
2007         (SetDataSource): move back to always calling
2008         CalcAreasAndInvalidate.  this fixes a crash/drawing problem when
2009         navigating back through relations.
2010         (HitTest): handle the case where we have no cells but have
2011         relations.  Right now we generate a hit in cell 0 of whatever the
2012         row is, not sure if this is strictly correct, but it works for our
2013         purposes.
2014         
2015         * DataGrid.cs (EndEdit, CancelEdit): if we have no columns, don't
2016         bother doing anything.
2018 2006-11-07  Jonathan Pobst  <monkey@jpobst.com>
2020         * StatusStrip.cs, ToolStripStatusLabel.cs: By request, an
2021         early version of StatusStrip.  Not responsible for eaten
2022         application or firstborn children.
2024 2006-11-06  Chris Toshok  <toshok@ximian.com>
2026         * TabControl.cs: in OnGotFocusInternal/OnLostFocusInternal don't
2027         call GetTabRect with a -1 index.  Fixes #79847.
2029 2006-11-06  Jackson Harper  <jackson@ximian.com>
2031         * TreeNodeCollection.cs: Update scrollbars after clearing.
2033 2006-11-06  Chris Toshok  <toshok@ximian.com>
2035         * NumericUpDown.cs: fix the ToString method for some unit test
2036         love.
2038 2006-11-06  Chris Toshok  <toshok@ximian.com>
2040         * PropertyGrid.cs:
2041         - set the initial SelectedGridItem if we can.
2043         - Exclude non-mergable properties only if we're merging > 1
2044         object.  Merging 1 object isn't really merging, obviously.
2046         - Handle PropertySort.NoSort just like Alphabetical, which is
2047         wrong of course, but at least gets things on the screen.
2048         
2049         * PropertyGridView.cs:
2050         - Add method "FindFirstItem" which finds the first property grid
2051         item, so we can select it by default.
2053         - make use of GridEntry.CanResetValue.
2055         - Don't call RedrawBelowItemOnExpansion here anymore, the
2056         individual GridEntry's will do that.
2058         - Remove the ITypeDescriptorContextImpl internal class.
2059         
2060         * GridEntry.cs:
2061         - this class needs to implement ITypeDescriptorContext, as it's
2062         what MS's PropertyDescriptorGridEntry does, which means we can
2063         remove the ITypeDescriptorContextImpl internal class from
2064         PropertyGrid.cs.  This fixes the crashing portion of bug #79829.
2066         - keep a reference to our PropertyGridView, and move the call to
2067         RedrawBelowItemOnExpansion here from PGV.  This means
2068         programmaticly setting Expanded actually does something visible.
2070         - add a CanResetValue() function which takes into account our
2071         possibly multiple "selected_objects" in the merged case.  Shifting
2072         PropertyGridView to use this method fixes another unreported
2073         crasher found running the test for #79829.
2075         - when Top or Bounds is updated, make sure the PropertyGridTextBox
2076         is updated to reflect this.
2078         * CategoryGridEntry.cs: the ctor takes the PGV now.
2079         
2080 2006-11-06  Jackson Harper  <jackson@ximian.com>
2082         * TextControl.cs: These are 1 based.
2083         * TextBoxBase.cs: When setting the selected text, don't change the
2084         selected text tags, this is done by ReplaceText, just position the
2085         cursor at the end of the new text.
2087 2006-11-06  Alexander Olk  <alex.olk@googlemail.com>
2089         * ListView.cs: Allow label edit only when, when LabelEdit is
2090           set to true.
2092 2006-11-06  Jackson Harper  <jackson@ximian.com>
2094         * TextControl.cs: If a suitable wrapping position isn't found,
2095         just wrap right in the middle of a word.
2097 2006-11-06  Alexander Olk  <alex.olk@googlemail.com>
2099         * ListView.cs, ListViewItem.cs: Implement LabelEdit. Fixes
2100           bug #79820.
2102 2006-11-06  Jackson Harper  <jackson@ximian.com>
2104         * TreeView.cs: Can't use the VisibleCount property when setting
2105         scrollbar heights, because this doesn't take into account whether
2106         or not the horz scrollbar just came visible.
2108 2006-11-05  Everaldo Canuto  <everaldo@simios.org>
2110         * MenuAPI.cs: Deactivate menu on mouse up when menus it is already
2111         activated.  Fixes #79369, #79832.
2113 2006-11-05  Alexander Olk  <alex.olk@googlemail.com>
2115         * FileDialog.cs: *sigh* Because of recent runtime changes (r67043) I
2116           had to remove support for links that point to a directory. FileInfo
2117           returns no usefull information (means, the directory they point to)
2118           for such links. Replaced some empty string ("") with String.Empty.
2120 2006-11-04  Gert Driesen  <drieseng@users.sourceforge.net>
2122         * TreeNodeCollection.cs: To match MS, in 1.0 profile throw 
2123         NullReferenceException when attempting to remove node that is not in
2124         collection. Throw NullReferenceException when null is passed to 
2125         Remove. Allow first element of the collection to be removed. Fixes
2126         bug #79831.  In GetEnumerator ().Current return null if positioned 
2127         before the first element of the collection. In GetEnumerator ().Reset,
2128         position before first element of the collection.
2130 2006-11-04  Gert Driesen  <drieseng@users.sourceforge.net>
2132         * PropertyGrid.cs: To match MS, remove default title and description
2133         for panel. Fixed tooltips for Categorized and Alphabetic toolbar
2134         buttons.
2136 2006-11-04  Chris Toshok  <toshok@ximian.com>
2138         * Theme.cs: add a Clamp method, just for kicks.
2140         * ThemeWin32Classic.cs: clamp all color components to [0..255].
2142 2006-11-04  Chris Toshok  <toshok@ximian.com>
2144         * Form.cs: if the form isn't visible, Close() does nothing.
2146 2006-11-03  Chris Toshok  <toshok@ximian.com>
2148         * Form.cs (Close): if the form is modal, don't Dispose of it, only
2149         Hide it.
2150         (WndProc): don't Dispose after handling the WM_CLOSE message.
2152         * Application.cs (RunLoop): toplevels is a list of Forms, so treat
2153         them as such, instead of using casts from Control to Form.  Also,
2154         don't Dispose of the modal dialog when we fall out of the loop -
2155         Close() it instead.
2157         fixes bug #79813.
2159 2006-11-03  Chris Toshok  <toshok@ximian.com>
2161         * Control.cs (Dispose): only go through the dispose thing if we're
2162         @disposing, and we haven't already been disposed.  Fixes bug
2163         #79814.
2165         * Form.cs: no reason to call "base.Dispose()" here instead of
2166         "Dispose()".
2168 2006-11-03  Mike Kestner  <mkestner@novell.com>
2170         * ComboBox.cs : use ToString instead of casts in AddItem for
2171         sorting functionality.  Fixes #79812.
2173 2006-11-03  Chris Toshok  <toshok@ximian.com>
2175         * Application.cs: pave the way for actually using the thread
2176         exception dialog.  it's ifdefed out at the moment.
2178 2006-11-03  Chris Toshok  <toshok@ximian.com>
2180         * ThreadExceptionDialog.cs: until we get a better layout, actually
2181         hide the details textbox and label when we shouldn't see them.
2183 2006-11-03  Jackson Harper  <jackson@ximian.com>
2185         * TextBoxBase.cs: Don't bail from the scrollbar calcs for non
2186         multiline textboxes anymore.  This method also determines the
2187         width/height of a textboxes canvas area.
2188         - Sorta a revert of the last patch.  For multiline just position
2189         the controls, then bail.  This way the scrollbar width won't be
2190         altered.
2192 2006-11-03  Everaldo Canuto  <everaldo@simios.org>
2194         * ThemeWin32Classic.cs: Dont paint inner lines of 3D border when
2195         it dont need.  Fixes #79537.
2197 2006-11-02  Jackson Harper  <jackson@ximian.com>
2199         * X11Dnd.cs: We always allow copy, since XDND implies Copy.  Also
2200         send the status after firing the DndOver event.
2202 2006-11-02  Rolf Bjarne Kvinge  <RKvinge@novell.com>
2204         * TrackBar.cs: Now orientation only switches height / width if
2205         the control's handle is created (Win32 does it like this). Also 
2206         fixed a typo in ToString() for a test to pass, changed the 
2207         exception thrown in set_LargeChange and set_SmallChange to 
2208         match Win32 behaviour, and added TrackBar tests to the unit 
2209         tests.
2211 2006-11-02  Chris Toshok  <toshok@ximian.com>
2213         * XplatUIX11.cs: the atom we want is _NET_WM_STATE_SKIP_TASKBAR,
2214         not _NET_WM_STATE_NO_TASKBAR.
2216 2006-11-02  Jackson Harper  <jackson@ximian.com>
2218         * TextControl.cs: Increment count by one, since in the update view
2219         count - 1 is used.
2221 2006-11-02  Jackson Harper  <jackson@ximian.com>
2223         * TextBoxBase.cs: Use client rectangle not bounds for checking if
2224         the mouse is in the client rectangle (duh).
2226 2006-11-02  Rolf Bjarne Kvinge  <RKvinge@novell.com>
2227         
2228         * TrackBar.cs: Fixed trackbar jumping around when clicking
2229         on it - the trackbar was not detecting correctly at which
2230         side of the thumb the click was done. (fixes #79718)
2232 2006-11-02  Everaldo Canuto  <everaldo@simios.org>
2234         * ListBox.cs: scroll visible area when change SelectedIndex to
2235         a non visible area.  Fixes #79481.
2237 2006-11-01  Jackson Harper  <jackson@ximian.com>
2239         * TextControl.cs: When replacing the selection move the selection
2240         start/end/anchor to the end of the new text.
2242 2006-11-01  Jackson Harper  <jackson@ximian.com>
2244         * XplatUIWin32.cs: When setting the parent change the controls
2245         visibility to it's visibility flag, not to it's old parents
2246         visibility (.Visible walks the parent chain).
2248 2006-11-01  Chris Toshok  <toshok@ximian.com>
2250         * XplatUIX11.cs: revert the #79790 fix, as the simple.
2251         XSetTransientForHint fix breaks paint .net's tool windows.  more
2252         work needed for that one.
2254 2006-11-01  Chris Toshok  <toshok@ximian.com>
2256         * ScrollBar.cs: throw ArgumentException instead of Exception in
2257         LargeChange/SmallChange setters.  fixes unit tests.
2259 2006-10-31      Andreia Gaita <shana.ufie@gmail.com>
2261         * ContainerControl.cs: reverted rev.67183 (which was itself
2262         a reversion of rev.66853... eh).
2263         
2264         * Control.cs: Fixes Reflector hang by changing Focus() call
2265         to what it was before rev.66643 (calling Select() here sets 
2266         ActiveControl, which in some situations calls back Focus and 
2267         eventually does a stack overflow). Temp fix.    
2268         Changes to GetNextControl() to not look for children to select when
2269         parent cannot be selectable (so it looks for siblings instead)  
2270         
2271 2006-10-31  Mike Kestner  <mkestner@novell.com>
2273         * CheckedListBox.cs : off by one error in returned index from
2274         ObjectCollection.Add.  Fixes #79758.
2276 2006-10-31  Chris Toshok  <toshok@ximian.com>
2278         * UpDownBase.cs: remove the OnGotFocusInternal/OnLostFocusInternal
2279         calls for the textbox/spinner, to keep from recursing to the point
2280         where we crash.  Fixes #79760.
2282 2006-10-31  Chris Toshok  <toshok@ximian.com>
2284         * ListControl.cs (set_SelectedValue): don't throw exceptions on
2285         null/"" value, just return.  matches ms's behavior and fixes some
2286         failing tests.
2288 2006-10-31  Chris Toshok  <toshok@ximian.com>
2290         * Control.cs (set_Capture): make a logic a little easier to
2291         follow.
2293         * XplatUIX11.cs (CleanupCachedWindows): zero out the Grab window
2294         if it's being destroyed.  A necessary fix surely, but a bandaid
2295         also, to fix the stuck capture problem in bug #78413.
2297 2006-10-31  Chris Toshok  <toshok@ximian.com>
2299         * XplatUIX11.cs: fix a couple of compiler warnings, and follow the
2300         convention of clearing hwnd.ClientRect when we set the
2301         width/height (so it'll be recalculated by Hwnd).
2303 2006-10-31      Andreia Gaita <shana.ufie@gmail.com>
2305         * ContainerControl.cs: reversed Contains check from
2306         ActiveControl due to hanging problems. This fix
2307         partly regresses #79667 (button does not have
2308         initial focus), so this might be a symptom for 
2309         a larger parenting problem (set_ActiveControl
2310         is being called but the child control does
2311         not have the parent set yet?)   
2312         
2313 2006-10-31  Mike Kestner  <mkestner@novell.com>
2315         * MenuAPI.cs : fix keynav when menu is click activated.
2317 2006-10-31  Jonathan Pobst  <monkey@jpobst.com>
2319         * ToolStrip*: Version 0.2.
2321         * MenuStrip.cs: Version 0.1.
2323         * Form.cs: Add a 2.0 MenuStrip tracker like the 1.1 Menu one.
2325 2006-10-30  Chris Toshok  <toshok@ximian.com>
2327         [ fixes the oversized notify icon issue in bug #79745 ]
2328         
2329         * NotifyIcon.cs: scale the icon down to the size we're given by
2330         the XplatUI layer (this would be faster if we did it once instead
2331         of whenever we paint..)  Also, remove the WM_NCPAINT handling,
2332         since it's never invoked.
2334         * XplatUIX11.cs: the gnome and kde systrays use icons that are 24
2335         pixels high by default, so let's hardcode our systray icon to that
2336         size.  The SYSTEM_TRAY protocol should really have a way for
2337         client apps to query for the correct icon size.. but oh well.  A
2338         couple of patches to deal with the screwy client_window ==
2339         whole_window notifyicon stuff (we don't want to PerformNCCalc, for
2340         instance, and also make sure we don't XSelectInput twice).
2342 2006-10-30  Chris Toshok  <toshok@ximian.com>
2344         * Control.cs: ugh, the unit test fix (CH11, yesterday) breaks when
2345         recreating forms.  Control recreation is the bane of my existence.
2346         Fix it in a way that keeps everyone happy.
2348 2006-10-30  Chris Toshok  <toshok@ximian.com>
2350         * XplatUIX11.cs: use StructureNotifyMask on all whole_windows, not
2351         just non-CHILD ones.  otherwise sometimes scrollbars end up with
2352         client_windows not being resized to the proper size (ReportBuilder
2353         shows this extremely well).
2355 2006-10-30  Chris Toshok  <toshok@ximian.com>
2357         * XplatUIX11.cs (SetWMStyles): reinstate the XSetTransientForHint
2358         for non-WS_EX_APPWINDOW windows.  This is what keeps them from
2359         showing up in the gnome taskbar.  Fixes bug #79790.
2361 2006-10-30  Chris Toshok  <toshok@ximian.com>
2363         * ApplicationContext.cs: guard against a NRE.
2365         * Application.cs: null out the old MainForm for the context, so we
2366         don't try to use it again once it's disposed.  Fixes bug #79783.
2368 2006-10-30  Chris Toshok  <toshok@ximian.com>
2370         * DataGrid.cs (set_DataSource, set_DataMember): if we have a
2371         BindingContext, set the data source directly, otherwise do the
2372         lazy approach - the actual ListManager will be created when we get
2373         a BindingContext. Fixes bug #79700.
2375 2006-10-30  Jonathan Pobst  <monkey@jpobst.com>
2377         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIOSX.cs,
2378           XplatUIX11.cs: Remove old 2 parameter SetVisible.
2380         * Control.cs: Use the new 3 parameter SetVisible with activate = true.
2382 2006-10-30  Jonathan Pobst  <monkey@jpobst.com>
2384         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs: Add an overload
2385         of SetVisible that allows a window to be shown, but not activated.
2386         This is needed on Windows for MenuStrip, and can probably be used
2387         with MainMenu and ComboBox to fix the focus stealing issues on
2388         Windows.
2390         * XplatUIOSX.cs, XplatUIX11.cs: Not needed, call existing SetVisible.
2392 2006-10-30  Alexander Olk  <alex.olk@googlemail.com>
2394         * PictureBox.cs: Fix the output of the ToString method.
2396 2006-10-29  Chris Toshok  <toshok@ximian.com>
2398         * Control.cs (get_TopLevelControl): fix bug #79781.
2400 2006-10-29  Chris Toshok  <toshok@ximian.com>
2402         * ListControl.cs (set_DataSource): throw Exception here, not
2403         ArgumentException, to match MS behavior.
2405 2006-10-29  Chris Toshok  <toshok@ximian.com>
2407         * Form.cs: remove the try-catch's around calls to GetWindowState.
2408         We can just check the return value.
2410         * XplatUIX11.cs: don't throw exceptions from GetWindowState.
2411         Instead return -1.
2413         * XplatUI.cs: Add note about additional return value for
2414         GetWindowState.
2416 2006-10-29  Chris Toshok  <toshok@ximian.com>
2418         * Control.cs (CreateHandle): when we create our handle, we also
2419         create the handles of our child controls.  Fixes one of the
2420         Control unit tests (CH11).
2422 2006-10-28  Alexander Olk  <alex.olk@googlemail.com>
2424         * MimeIcon.cs: If a gnome icon doesn't exist add a default icon.
2426 2006-10-28  Alexander Olk  <alex.olk@googlemail.com>
2428         * ThemeClearlooks.cs: A little speedup.
2430 2006-10-27  Chris Toshok  <toshok@ximian.com>
2432         * Control.cs: implement Control.FromChildHandle in a way that
2433         matches the docs (and fixes the failed test.)
2435 2006-10-27  Chris Toshok  <toshok@ximian.com>
2437         * DataGridTableStyle.cs: reproduce buggy MS behavior (with
2438         comments).
2440         * DataGrid.cs: implement ResetForeColor such that the tests
2441         succeed.
2442         
2443 2006-10-27  Chris Toshok  <toshok@ximian.com>
2445         * ToolBarButton.cs: setting text/tooltiptext to null results in it
2446         being set to "".  Fixes bug #79759.
2448 2006-10-27  Jackson Harper  <jackson@ximian.com>
2450         * TextControl.cs: We need to clear the entire selection area when
2451         setting the start, otherwise multiline selections are still
2452         visible.
2454 2006-10-26  Chris Toshok  <toshok@ximian.com>
2456         * PropertyGridView.cs: 
2458         - ifdef all the code specific to the double
2459         buffer case, and provide some alternatives in the non-doublebuffer
2460         code, which makes heavy use of XplatUI.ScrollWindow to move things
2461         around without having to invalidate (and cause flicker).  There
2462         are still some drawing problems in the non-doublebuffered case, so
2463         DOUBLEBUFFER is defined by default.
2465         - Fix the way dropdowns are handled.  now we explicitly watch for
2466         the events which might cause the dropdown to close, and break out
2467         of the nested event loop there.  This gets rid of all Capture
2468         code, at the expense of the Msg special casing.  Seems to work,
2469         though, and fixes bug #79743.
2471 2006-10-27  Rolf Bjarne Kvinge <RKvinge@novell.com>
2472         * Control.cs: SetIsRecreating now recreates implicitly added
2473         child controls as well. Finally fixes #79629. The flag passed to 
2474         SetIsRecreating has also been removed since it wasn't used.
2475         
2476 2006-10-26  Carlos Alberto Cortez <calberto.cortez@gmail.com>
2478         * PageSetupDialog.cs: Clean some code, fix some bits, 
2479         add some checks, and add a printer sub-dialog.
2481 2006-10-26  Chris Toshok  <toshok@ximian.com>
2483         * PropertyGrid.cs: make set_SelectedObject call
2484         set_SelectedObjects, and move the duplicate logic to the
2485         SelectedObjects setter.  Also, raise SelectedObjectsChanged.
2487         * PropertyGridView.cs: hide the textbox when we get a
2488         SelectedObjectsChanged event.
2490         Fixes bug #79748.
2492 2006-10-26  Chris Toshok  <toshok@ximian.com>
2494         * PropertyGridView.cs: deal with the type converter not supporting
2495         GetStandardValues() or GetStandardValues() returning null, which
2496         is does in the default case.  Fixes #79742.
2498 2006-10-25  Andreia Gaita <shana.ufie@gmail.com>
2500         * CheckedListBox.cs: nunit no longer crashes when selecting 
2501         Project/Edit menu option
2502         
2503 2006-10-25  Andreia Gaita <shana.ufie@gmail.com>
2505         * MenuAPI.cs: prevent ExecFocusedItem from blowing up if there
2506         is no menu selected. fixes #79739
2508 2006-10-25  Chris Toshok  <toshok@ximian.com>
2510         * PropertyGridView.cs: factor out the splitter invalidation code
2511         into the SplitterPercent setter, and for kicks implement the
2512         Ctrl-Left/Ctrl-Right handling that moves the splitter by a small
2513         amount in either direction.
2515 2006-10-25  Chris Toshok  <toshok@ximian.com>
2517         * PropertyGridView.cs: do some cleanup of the brush used to draw
2518         text - read only fields should be grayed out.  not sure how to do
2519         this with the textbox, though.  but the textbox's should also be
2520         readonly now at least.  Also, hide/show the textbox when resizing
2521         the control.
2522         
2523         * CursorConverter.cs: use System.Reflection when getting the
2524         properties of Cursors, as TypeDescriptor.GetProperties isn't
2525         returning static properties.
2527 2006-10-25  Chris Toshok  <toshok@ximian.com>
2529         * PropertyGridView.cs: factor out the up/down handling, and reuse
2530         it for page up/down.  also add End/Home support.
2532 2006-10-25  Chris Toshok  <toshok@ximian.com>
2534         * PropertyGridView.cs:
2536         - ensure the selected grid item is visible in the scrolled area,
2537         fixes bug #79572.
2539         - fix Keys.Down handling when you're on the last item in the
2540         propertygrid.
2542 2006-10-25  Mike Kestner  <mkestner@novell.com>
2544         * MenuAPI.cs : set the ActiveTracker for MainMenu non-popup 
2545         clicks too.  Fixes #79725.
2547 2006-10-24  Chris Toshok  <toshok@ximian.com>
2549         * PropertyGrid.cs: use property.Converter instead of
2550         TypeDescriptor.GetConverter(property.PropertyType), so we catch
2551         TypeConverters declared on the property as well as on the
2552         PropertyType.  Fixes bug #79678.
2554 2006-10-24  Alexander Olk  <alex.olk@googlemail.com>
2556         * MimeIcon.cs, Mime.cs:
2557           Fallback to the default platform handler if no shared mime info
2558           stuff exists (fixes #79693).
2560 2006-10-20 Andreia Gaita <shana.ufie@gmail.com>
2561         * ContainerControl.cs: Incorrect contains check in ActiveControl 
2562         from previous fix (duh).
2564 2006-10-20  Chris Toshok  <toshok@ximian.com>
2566         * PropertyGridView.cs: the dropdown should be MIN(number of items
2567         in list, 15).  Fixes #79551.
2569 2006-10-20 Andreia Gaita <shana.ufie@gmail.com>
2570         Fixes #79384, #79394, #79652, #79667
2571         * Application.cs: 
2572         
2573         - Modal windows are now destroyed in the proper order for windows
2574         
2575         * ContainerControl.cs:
2576         
2577         - ActiveControl setter has more conditions on when to return:
2578                 - if we're reselecting the active control, but it actually
2579                 didn't have focus (window hidden or some such), it runs
2580                 - if the active control being selected doesn't actually 
2581                 exist in the container, it returns
2582         
2583         * Form.cs
2584         
2585         - The ShowDialog now gets the current form as the owner when
2586         invoking without parameters, and correctly activates the owner 
2587         when returning
2588         
2589         * MessageBox.cs
2590         
2591         - MessageBox now catches the Escape key to exit
2593 2006-10-20  Chris Toshok  <toshok@ximian.com>
2595         * PropertyGridView.cs: fix a number of issues (bug #78565, and
2596         most of bug #79676):
2598         - you can navigate around the property grid with the arrow keys.
2600         - the dropdown is sized properly when the pg has a vertical
2601         scrollbar.
2603         - fix the indentation for subentries, and properly select the
2604         entire label rect.
2606         - fix the gray bar's drawing (only draw it to the last element,
2607         not for the height of the control.  Also make sure we draw that
2608         last horizontal grid line.
2610         - use the same mechanism the datagrid uses wrt the editing textbox
2611         when scrolling/resizing/etc.  Namely, we hide it first, do the
2612         operation, then show it again (if it's still visible).
2613         
2614         - aggressively remove a lot of unnecessary refreshes (and also
2615         calls to Invalidate(). call more limited variants, and only redraw
2616         what we need.)
2617         
2618         * PropertyGrid.cs:
2620         - when we're populating the merged collection, fill in the UI
2621         parent with either the passed in item, or the category item we
2622         create.
2624         - remove the Refresh call from the BorderHelpControl.OnSizeChanged.
2626         * GridItem.cs: drop some fully qualified names.
2627         
2628         * GridEntry.cs: add a "UIParent", which is basically the parent
2629         treenode.
2631         * GridItemCollection.cs: add an IndexOf method.
2633 2006-10-20  Mike Kestner  <mkestner@novell.com>
2635         * MainMenu.cs : go back to Draw in OnMenuChanged.  Until we get
2636         a working win32 NC invalidation mechanism, we can't invalidate
2637         menus.  [Fixes #79705]
2639 2006-10-20  Mike Kestner  <mkestner@novell.com>
2641         * ListBox.cs : don't update the VScrollbar if the list is empty,
2642         just hide it.  [Fixes #79692]
2644 2006-10-20  Jackson Harper  <jackson@ximian.com>
2646         * RichTextBox.cs: Handle some special chars better, and don't skip
2647         the entire group when we encounter a special char that we don't
2648         handle correctly.
2650 2006-10-18  Chris Toshok  <toshok@ximian.com>
2652         * PropertyGridView.cs: address a number of issues from bug #79676,
2653         mostly of the cosmetic variety.
2655         - The highlight rectangle for indented items not extends all the
2656         way to the left.
2658         - Indented items aren't indented so much.
2660         - the dropdown is properly sized width-wise if the pg has a
2661         vertical scrollbar.
2663 2006-10-18  Chris Toshok  <toshok@ximian.com>
2665         * XplatUIX11.cs (SystrayAdd): a rather convoluted change, but the
2666         systray stuff is rather convoluted to begin with.
2668         systray icons are a single window for some reason (that I haven't
2669         figured out yet), and for them, client_window == whole_window.
2670         Given the way the tests are structured elsewhere to determine
2671         which paints are pending (client vs. nc), that situation will
2672         always yield PAINT, not NCPAINT.  So, if we have a pending
2673         nc_expose and no pending expose, remove the hwnd from the paint
2674         queue, and also set nc_expose_pending to false, to keep us from
2675         blocking further expose's adding the hwnd to the paint queue.
2677         phew.  like i said, a rather convoluted change.  Fixes the
2678         notifyicon repaint issues in bug #79645.
2680 2006-10-18  Chris Toshok  <toshok@ximian.com>
2682         * Form.cs: when getting the backcolor of the form, don't get
2683         base.BackColor, as this allows parents to influence the background
2684         color.  This breaks mdi forms.  Instead, if the background_color
2685         is empty, return the default.
2687 2006-10-18  Chris Toshok  <toshok@ximian.com>
2689         * XplatUIX11.cs: change some debug ifdefs, and return XGetParent
2690         to being private instead of internal static.
2692         * Control.cs: remove all the stupid ParentWaitingOnRecreation
2693         crap, it wasn't working for more deeply nested controls anyway,
2694         and we already have the is_recreating flag - use that instead.
2695         Before calling DestroyHandle in RecreateHandle, recurse through
2696         the control tree setting it to true.  this returns the recreate
2697         code to much of its original simplicity, while now guaranteeing we
2698         actually recreate everything we're supposed to.  This change gets
2699         fyireporting actually showing mdi children.
2701 2006-10-17  Chris Toshok  <toshok@ximian.com>
2703         * Form.cs: remove some debug spew, and collapse some duplicate
2704         code at the end of SetClientSizeCore.
2706         * XplatUIX11.cs: 
2707         - add some more debug spew here too wrt Destroy handling.
2708         - don't call hwnd.Dispose in DestroyWindow, it's effectively done
2709         in Control's handling of WM_DESTROY.
2710         - Remove the handling of zombie window DestroyNotifies from the
2711         event loop - we don't need it.  Now the only DestroyNotifies we
2712         actually handle are ones generated by X.
2713         - When sending _NET_ACTIVE_WINDOW, the first param should be 1, to
2714         match gtk's (functioning) handling of this. This keep metacity
2715         from leaving droppings in the form of wm borders with no window
2716         contents all over the place.
2718         * Control.cs:
2719         - add a bunch of debug spew wrt control recreation.
2720         - fix a bug where we weren't tracking Visible properly on
2721         recreated hwnds.
2722         - fixed the WM_PAINT double buffer handling to support re-entrant
2723         calls (yes, i know it's gross, but it's happening to us).
2725 2006-10-17  Rolf Bjarne Kvinge  <rolfkvinge@ya.com>
2726         * ThemeWin32Classic.cs: changed drawing of selected days
2727         to make them look better.
2729 2006-10-16  Chris Toshok  <toshok@ximian.com>
2731         * Hwnd.cs: replace the user_data/client_dc/non_client_dc with
2732         drawing_stack.  Nuke the ClientDC/NonClientDC properties.
2734         * XplatUIX11.cs: move away from using hwnd.client_dc and
2735         hwnd.non_client_dc and on to a stack of dc's (and in window's
2736         case, PAINTSTRUCT's), so we can deal with nested Paint calls
2737         without puking or not disposing of Graphics objects.
2739         * XplatUIOSX.cs: same.
2741         * XplatUIWin32.cs: same.
2743 2006-10-03  Alexander Olk  <alex.olk@googlemail.com>
2745         * FileDialog.cs: Don't call on_directory_changed inside
2746           OnSelectedIndexChanged (it changes the SelectedIndex too).
2747           Instead move it to OnSelectionChangeCommitted.
2749 2006-10-13  Chris Toshok  <toshok@ximian.com>
2751         * XplatUIX11.cs: more Destroy work.  the current code does the
2752         following things, in order:
2754         1. Enumerates all handles of all controls at or below the one
2755         being destroyed, in pre-order.  As it is doing this, it marks the
2756         handles as zombie and clears all references to them.
2757         
2758         2. calls XDestroyWindow on the window passed in.
2760         3. SendMessage's WM_DESTROY to all he handles in the accumulated
2761         list.
2763 2006-10-13  Chris Toshok  <toshok@ximian.com>
2765         * XplatUIX11.cs: set hwnd.zombie to true before calling
2766         SendMessage (WM_DESTROY).  this keeps us from marking the new
2767         window a zombie, and also keeps us from calling sendmessage at
2768         all.
2770 2006-10-13  Jackson Harper  <jackson@ximian.com>
2772         * TextControl.cs: Do not show the caret and selection at the same
2773         time.  Reduces ugliness by 35%.
2775 2006-10-13  Chris Toshok  <toshok@ximian.com>
2777         * XplatUIX11.cs (SendWMDestroyMessages): set the hwnd to be a
2778         zombie after we do the recursive call, so we actually do call
2779         SendMessage on the children controls.
2780         (GetMessage): if we find a pending paint event for a zombie hwnd,
2781         remove the hwnd from the paint queue, or else it will always be
2782         there (and we'll effectively loop infinitely)
2784 2006-10-13  Mike Kestner  <mkestner@novell.com>
2786         * MenuItem.cs : add Selected format under keynav too.
2787         Fixes #79528.
2789 2006-10-13  Gert Driesen  <drieseng@users.sourceforge.net>
2791         * PropertyGrid.cs: Fixed some NRE's and small difference between our
2792         implementation and that of MS.
2794 2006-10-13  Chris Toshok  <toshok@ximian.com>
2796         * Control.cs (OnInvalidated) only futz with the invalid_region if
2797         the control is double buffered.  this fixes the apparent hang in
2798         the ListView unit tests.  Someone needs to make the
2799         BeginEndUpdateTest not call OnInvalidated 15004 times, though..
2801 2006-10-13  Chris Toshok  <toshok@ximian.com>
2803         * PropertyGridView.cs:
2805         - do a little refactoring so that only one place calls
2806         dropdown_form.Hide, and that is CloseDropDown.  make everywhere
2807         else call that.  Also make it Refresh, since there are redraw bugs
2808         otherwise (we should take a look at that...)
2810         - do a little more refactoring work to share the body of code
2811         involved with the drop down.  it was duplicated in the code
2812         dealing with the listbox handling and in the code dealing with the
2813         UITypeEditors.
2815         - add a Capture to the dropdown form's control once it's
2816         displayed, and add a MouseDown handler that checks to make sure
2817         the position is inside the control.  If it's not, close the
2818         dropdown.  This fixes #78190.
2820         - in SetPropertyValueFromUITypeEditor, only call SetPropertyValue
2821         if the value is different than the initial value.
2822         
2823 2006-10-13  Andreia Gaita  <shana.ufie@gmail.com>
2825         * Control.cs: see #78650
2826         - Fixed GetNextControl for several cases:
2827                 - Changed FindFlatForward to return 
2828                 correct sibling control when more than one
2829                 control has same TabIndex as the currently 
2830                 focused one.
2831                 - Changed FindFlatBackward to loop children
2832                 from last to first and apply same logic as in
2833                 FindFlatForward
2834                 - Changed FindControlForward to search for
2835                 children when control is not a container
2836                 but has children, or search for siblings if
2837                 control is a container...
2838                 - Changed FindControlBackward   to continue
2839                 searching for child controls when hitting 
2840                 Panel-like parents
2841                 
2842         - Fixed Focus method to update ActiveControl
2843         (FocusTest.FocusSetsActive failure)
2844         
2845         * TabControl.cs:
2846         - Focus rectangle now refreshes when gaining
2847         or losing focus
2848         - Removed grab for Tab key on IsInputKey that 
2849         was keeping tab navigation from working (#78650)
2851 2006-10-13  Chris Toshok  <toshok@ximian.com>
2853         * PropertyGridView.cs:
2854         - Rewrite SetPropertyValue to loop over SelectedGridItem's
2855         SelectedObjects.
2857         - Deal with GridItem.Value == null a few places.
2859         * PropertyGrid.cs: 
2860         - replace the PopulateGridItemCollection with a pair of methods
2861         which compute the intersection of all the properties in the
2862         SelectedObjects array.  Fixes #79615.
2864         - Throw ArgumentException from set_SelectedObjects if there's a
2865         null in the array.
2867         - Add GetTarget method which can be used to traverse up the
2868         GridItem.Parent chain.  It depends on the assumption that
2869         selected_objects for different GridEntries are always in the same
2870         order (a safe assumption).  Use this method and loop over all the
2871         selected objects in the entry when calling RemoveValueChanged and
2872         AddValueChanged.
2873         
2874         * GridEntry.cs: Make this handle multiple selected objects.
2875         .Value returns null if not all the selected objects share the same
2876         value.
2878 2006-10-12  Jonathan Pobst  <monkey@jpobst.com>
2879         * ToolStrip.cs, ToolStripButton.cs, ToolStripComboBox.cs,
2880           ToolStripControlHost.cs, ToolStripItem.cs, ToolStripLabel.cs,
2881           ToolStripProfessionalRenderer.cs, ToolStripProgressBar.cs,
2882           ToolStripSeparator.cs, ToolStripSplitStackLayout.cs,
2883           ToolStripTextBox.cs: Add accessibility, fix attributes/API and
2884         add additional functionality.
2886 2006-10-12  Mike Kestner  <mkestner@novell.com>
2888         * ErrorProvider.cs : new ToolTipWindow ctor sig.
2889         * HelpProvider.cs : new ToolTipWindow ctor sig.
2890         * ToolTip.cs : remove ToolTip param from Window sig since it is
2891         not used.
2892         * ToolBar.cs : add tooltip support.  Fixes #79565.
2894 2006-10-12  Rolf Bjarne Kvinge  <rolfkvinge@ya.com>
2896         * ComboBox.cs: move the events in set_SelectedIndex to 
2897         after the call to HighlightIndex in order to avoid 
2898         possible recursion and subsequent problems with the call
2899         to HighlightIndex and include a range check in 
2900         set_HighlightIndex. Fixes #79588
2901         
2902 2006-10-12  Rolf Bjarne Kvinge  <rolfkvinge@ya.com>
2904         * MonthCalendar.cs: When FirstDayOfWeek is default set firstday 
2905         to ui thread's settings instead of sunday. 
2906         * ThemeWin32Classic.cs: Localize the day string. Fixes #79563
2908 2006-10-12  Rolf Bjarne Kvinge  <rolfkvinge@ya.com>
2910         * DateTimePicker.cs
2911         * MonthCalendar.cs
2912         * ThemeWin32Classic.cs: rewrote DateTimePicker to fix bug #78364
2913         and implement missing functionality (selecting different parts 
2914         of the date and edit them individually with the keyboard).
2915         
2916 2006-10-11  Chris Toshok  <toshok@ximian.com>
2918         * Control.cs (OnInvalidated): fix NRE relating to last change.
2920 2006-10-11  Chris Toshok  <toshok@ximian.com>
2922         * XplatUIX11.cs (SetWMStyles): make sure we include the MAXIMIZED
2923         atoms in _NET_WM_STATE here if the window is maximized.  We need
2924         to do this because we're *replacing* the existing _NET_WM_STATE
2925         property, so those atoms will be lost otherwise, and any further
2926         call to GetWindowState will return Normal for a window which is
2927         actually maximized.  Fixes #79338.
2929 2006-10-11  Jackson Harper  <jackson@ximian.com>
2931         * TextControl.cs: Special case for setting selection end to
2932         selection start, we basically kill the anchor.
2933         - some todo comments.
2935 2006-10-11  Chris Toshok  <toshok@ximian.com>
2937         * Control.cs: switch to using an "invalid_region" to track which
2938         parts of the image buffer need updating.  This is more code than
2939         the simple fix from r66532.  That version just attempted to always
2940         fill the entire buffer on redraw, which turns out to be
2941         inefficient when invalidating small rectangles.  This version
2942         simply adds the invalid rectangle to the invalid region.  When we
2943         get any WM_PAINT message we see if it can be filled using the
2944         image buffer, and if it can't (if the paint event's clip rectangle
2945         is visible in the invalid region) we first fill the image buffer.
2946         So, the image buffer is still a cache, we just fill it lazily.
2948         * PaintEventArgs.cs: remove the SetClipRectangle method, we don't
2949         need it any longer.
2951 2006-10-11  Chris Toshok  <toshok@ximian.com>
2953         * XplatUIX11.cs (SetWindowPos): we need to update both position as
2954         well as size after calling XMoveResizeWindow.  This keeps us from
2955         ignoring future SetWindowPos calls.  Fixes the disappearing
2956         DateTimePicker in the ToolBarDockExample from bug #72499.
2958 2006-10-11  Chris Toshok  <toshok@ximian.com>
2960         * TextBoxBase.cs: reorder things a bit when it comes to
2961         resizing-causing-recalculation.  we were recalculating the
2962         document when our position was changed, which shouldn't happen.
2963         We only care about size changes.  Clear up some more redundant
2964         recalculation calls while I'm at it.  This makes the toolbar dock
2965         example snappy when you're just dragging toolbars around (since it
2966         causes a relayout whenever you move one.)
2968 2006-10-11  Chris Toshok  <toshok@ximian.com>
2970         * ToolBarButton.cs (get_Rectangle): this only returns
2971         Rectangle.Empty if Visible == false, or Parent == null.
2972         Parent.Visible doesn't matter.
2974 2006-10-10  Chris Toshok  <toshok@ximian.com>
2976         * Control.cs, PaintEventArgs.cs: "internal set { .. }" isn't loved
2977         by .net 1.1, so switch to an internal method instead.
2979 2006-10-10  Chris Toshok  <toshok@ximian.com>
2981         * Control.cs (WM_PAINT): when a control is double buffered we draw
2982         initially to the ImageBuffer and then copy from there.  But when a
2983         parent control which has child controls is double buffered, the
2984         initial drawing doesn't encompass the entire ClientRectangle of
2985         the parent control, so we end up with uninitialized bits (this is
2986         easily seen by dragging the top toolbar in
2987         wf-apps/ToolBarDockExample to the right, quickly).  The fix is to
2988         manually set the ClipRectangle of the paint_event (only the one we
2989         use to populate the ImageBuffer) to ClientRectangle.  Fixes more
2990         of the nastiness in bug #72499.
2992         * PaintEventArgs.cs: Add an internal setter for ClipRectangle,
2993         which we use in Control.cs's WM_PAINT handling.
2995 2006-10-10  Jackson Harper  <jackson@ximian.com>
2997         * TextBoxBase.cs: Finish off the autoscrolling stuff.
2999 2006-10-10  Chris Toshok  <toshok@ximian.com>
3001         * Cursor.cs: Apply a slightly different patch to the one suggested
3002         in #79609.
3004 2006-10-10  Jackson Harper  <jackson@ximian.com>
3006         * MenuItem.cs: Make sure to put the mdi child in the hashtable,
3007         not the parent form.
3008         * TextControl.cs: use difference in old line count vs new count to
3009         calculate how many lines were added, this takes into account soft
3010         line breaks properly.
3012 2006-10-10  Chris Toshok  <toshok@ximian.com>
3014         * LinkLabel.cs: don't call MeasureCharacterRanges against a
3015         rectangle located at 0,0 and the size of the text.  Use
3016         ClientRectangle instead.  This fixes rendering of non-left aligned
3017         link labels.
3019 2006-10-10  Jackson Harper  <jackson@ximian.com>
3021         * TextBoxBase.cs: When we set the selection start position the
3022         caret.
3023         * TextControl.cs: Need to update the caret when we decrement it to
3024         zero.
3025         - Make sure that the selection_visible flag gets reset to false if
3026         the selection isn't visible.  Before this you could get it set to
3027         visible by changing the selection start, then changing the end to
3028         equal the start.
3030 2006-10-09  Jackson Harper  <jackson@ximian.com>
3032         * TreeView.cs: Don't update scrollbars when we aren't visible.
3033         * TreeNodeCollection.cs: Only need to update scrollbars if being
3034         added to an expanded visible node or the root node.
3036 2006-10-09  Chris Toshok  <toshok@ximian.com>
3038         * XplatUIX11.cs (SendMessage): fix NRE.
3040 2006-10-09  Jackson Harper  <jackson@ximian.com>
3042         * TextBoxBase.cs: Implement horizontal autoscrolling.
3043         * TextControl.cs: Add a movement types that allows moving forward
3044         and backwards without wrapping.
3046 2006-10-09  Mike Kestner  <mkestner@novell.com>
3048         * ListViewItem.cs : layout changes for wrapped LargeIcon labels
3049         with focus "expansion" of labels.  Fixes #79532 and then some.
3050         * ThemeWin32Classic.cs : add LineLimit to ListView label format
3051         when wrapping.
3053 2006-10-09  Jackson Harper  <jackson@ximian.com>
3055         * TextBoxBase.cs: Set the default max values to MaxValue since
3056         we use the scrollbar for autoscrolling and the default value is
3057         100.  If we don't do this the caret won't keep up with typing
3058         after about 18 characters.
3059         * TextControl.cs: Make sure the selection is offset by the
3060         viewport x.  This fixes selection when using auto scrolling.
3062 2006-10-07  Andreia Gaita <shana.ufie@gmail.com>
3063         
3064         * Form.cs: The active control should be selected after the 
3065         OnLoad so that any child control initialization that affects
3066         the selection is done. Fixes #79406
3068 2006-10-06  Chris Toshok  <toshok@ximian.com>
3070         * XplatUIX11.cs: This is perhaps a dangerous change, but it seems
3071         to have no evil effects.
3073         - Stop selecting StructureNotifyMask on non-toplevel windows.
3075           The only way children should be resized is by using the SWF api,
3076           and we already send WM_WINDOWPOSCHANGED messages in those cases.
3077           Toplevel windows can be interacted with via the window manager,
3078           and so we keep the input mask there.
3080           The other event StructureNotifyMask gives us (that we care
3081           about) is DestroyNotify.  The code is already structured such
3082           that it assumes we won't be getting a DestroyNotify event for
3083           the window we pass to XDestroyWindow (which is what
3084           StructureNotifyMask is supposed to guarantee.)  So, that code
3085           shouldn't be affected by this either.
3087         - Stop selecting VisibilityChangeMask altogether.
3089           We weren't doing anything with the resulting events anyway.
3090         
3091         This vastly reduces the number of X requests and events we see
3092         when resizing/laying out a large ui.
3094 2006-10-06  Chris Toshok  <toshok@ximian.com>
3096         * ScrollableControl.cs (DisplayRectangle): we need to take into
3097         account the DockPadding regardless of whether or not auto_scroll
3098         == true.  rework this slightly to this effect, and fix bug #79606,
3099         and part of #72499 (you can now see the drag handles and drag
3100         toolbars around).
3102 2006-10-06  Gert Driesen  <drieseng@users.souceforge.net>
3104         * ListViewItem.cs: Collections of selected and checked items are now
3105         dynamically rebuilt. Whenever an item is (un)checked or (de)selected
3106         we mark the collection "dirty".
3107         * ListView.cs: Marked collections readonly. Modified UpdateSelection
3108         to only clear SelectedItems when a new item is selected and MultiSelect
3109         is enabled. CheckedItems and SelectedItems now subscribe to Changed
3110         event of ListViewItemCollection, and mark its list dirty whenever
3111         that event is fire. This allows us to return selected/checked items 
3112         in the same order as they are in the Items collection. This matches
3113         the MS behavior.
3115 2006-10-06  Chris Toshok  <toshok@ximian.com>
3117         * NotifyIcon.cs (HandleMouseUp): only show the context menu on
3118         right mouse clicks.  Fixes bug #79593.
3120 2006-10-06  Chris Toshok  <toshok@ximian.com>
3122         * Splitter.cs: doh, fix splitters that don't want to cancel the
3123         movement when you drag them.  Also, impose the limits on the
3124         values we send to the SplitterMovingEvent.  Fixes #79598.
3126 2006-10-06  Jackson Harper  <jackson@ximian.com>
3128         * TextBoxBase.cs: Ignore whether or not the scrollbar is enabled,
3129         since we use this for auto scrolling also.
3131 2006-10-05  Chris Toshok  <toshok@ximian.com>
3133         * DataGridBoolColumn.cs: Nuke the code from ConcedeFocus.  I'm
3134         beginning to think that most datagrid column types don't need this
3135         method.  Fixes bug #79392.
3137 2006-10-05  Chris Toshok  <toshok@ximian.com>
3139         * DataGrid.cs: move back to a more lazy scheme for creating the
3140         CurrencyManager, so we aren't updating it every time you set
3141         either DataSource or DataMember.  Also, don't call
3142         RecreateDataGridRows if the currency manager hasn't changed.
3144 2006-10-05  Chris Toshok  <toshok@ximian.com>
3146         * ComboBox.cs: by the time the OnSelectionChangeCommitted event is
3147         emitted, SelectedIndex should already be updated.  Fixes bug
3148         #78929.
3150 2006-10-05  Jonathan Pobst  <monkey@jpobst.com>
3152         * ToolStripComboBox.cs, ToolStripControlHost.cs, ToolStripProgressBar,
3153           ToolStripTextBox.cs: Initial commit.
3154         * ToolStripItem.cs: Fixes for OnLayout, BackColor, Parent.
3156 2006-10-05  Jackson Harper  <jackson@ximian.com>
3158         * TabControl.cs: We need to invalidate the tab control area when
3159         new ones are added (duh).
3161 2006-10-03  Chris Toshok  <toshok@ximian.com>
3163         * Form.cs (ProcessDialogKey): if the focused control is in this
3164         form and is a button, call its PerformClick method here.  Fixes
3165         #79534.
3167 2006-10-04  Jackson Harper  <jackson@ximian.com>
3169         * TabPage.cs: Ignore setting of Visible, and add an internal
3170         method for setting the controls visibility.  TabPage's Visible
3171         property is a little strange on MS, this seems to make us
3172         compatible, and fixes cases where people set all the tab pages to
3173         visible.
3174         * TabControl.cs: Use the new internal setting on tab pages
3175         visibility.
3177 2006-10-03  Mike Kestner  <mkestner@novell.com>
3179         * ComboBox.cs : raise Click on ComboTextBox clicks. Fixes #79555.
3181 2006-10-03  Mike Kestner  <mkestner@novell.com>
3183         * ListView.cs : use is_visible instead of Visible to check if 
3184         scrollbars should be placed/sized.  Also some max_wrap_width
3185         love for LargeIcon view.  [Fixes #79533]
3187 2006-10-03  Atsushi Enomoto  <atsushi@ximian.com>
3189         * TextControl.cs :
3190           Make set_TextAlign() do actually update the align. Fixed #78403.
3192 2006-10-03  Chris Toshok  <toshok@ximian.com>
3194         * DataGrid.cs: fix a crash when switching datasources if the
3195         vertical scrollbar is at someplace other than Value = 0.  Also,
3196         reduce the number of recalculation passes we do in SetDataSource
3197         from 2 to 1.
3199 2006-10-03  Jackson Harper  <jackson@ximian.com>
3201         * TextBoxBase.cs: Move the if value the same bail check up, we
3202         don't want to empty the document if it is already empty, this
3203         seems to severly mess up the caret.  TODO: I should probably fix
3204         the empty statement to update teh caret somehow.
3206 2006-10-03  Chris Toshok  <toshok@ximian.com>
3208         * ThemeWin32Classic.cs, DataGrid.cs: some changes so that the
3209         incredibly hacky Windows.Forms FAQ autosize rows entry (it uses
3210         reflection, an internal row type, properties on said type, etc.)
3211         will work with our datagrid.  Fixes #79531.
3213 2006-10-03  Alexander Olk  <alex.olk@googlemail.com>
3215         * FileDialog.cs: Don't crash if a path is not accessible
3216           (System.UnauthorizedAccessException). Fixes #79569.
3217         * MimeIcon.cs: Workaround for a Uri bug. Unix paths/files can have
3218           a ':' too. Return unknown icon for those paths/files.
3220 2006-10-03  Sebastien Pouliot  <sebastien@ximian.com>
3222         * ToolTip.cs: Fix rare, but possible, NRE on MouseEnter when 
3223         GetContainerControl returns null.
3225 2006-10-02  Chris Toshok  <toshok@ximian.com>
3227         * XplatUIX11.cs (GetWindowState): use hwnd.client_window in the
3228         call to XGetWindowAttributes instead of "handle".  fixes an X
3229         error using notifyicon after the NotifyIconWindow to Form base
3230         class switch.
3232 2006-10-02  Chris Toshok  <toshok@ximian.com>
3234         * XplatUIX11.cs (QueryPointer): new function, encapsulating the
3235         server grab and looping we need to do to get down to the most
3236         deeply nested child window.
3237         (SetCursorPos): use QueryPointer instead of GetCursorPos, and call
3238         QueryPointer again after the WarpPointer so we can generate a
3239         proper (fake) MotionNotify event to be enqueued in the destination
3240         window's queue.
3241         (GetCursorPos): call QueryPointer.
3243         Fixes #79556.
3245 2006-10-02  Jackson Harper  <jackson@ximian.com>
3247         * NotifyIcon.cs: Derive the notify icon from a form, so things
3248         like FindForm work on it.
3249         - Swallow the WM_CONTEXTMENU message, since that is generated on
3250         mouse down, and context menu is a mouse up kinda guy.  I believe
3251         the correct fix here is probably to make the notify icon entirely
3252         NC area, but this seems to work fine for anyone not manipulating
3253         WndProc.
3255 2006-10-02  Jonathan Pobst  <monkey@jpobst.com>
3257         * ToolStrip.cs, ToolStripButton.cs, ToolStripItem.cs,
3258           ToolStripItemCollection.cs, ToolStripLabel.cs,
3259           ToolStripProfessionalRenderer.cs, ToolStripRenderer.cs,
3260           ToolStripSeparator.cs, ToolStripSplitStackLayout.cs:
3261           Initial implementation.
3262         * TextRenderer.cs: Provide padding to MeasureText.
3264 2006-10-02  Sebastien Pouliot  <sebastien@ximian.com>
3266         * ButtonBase.cs: Fix CreateAccessibilityInstance to return an instance
3267         of ButtonBaseAccessibleObject. Fix bug #79552.
3269 2006-10-02  Jackson Harper  <jackson@ximian.com>
3271         * MdiWindowManager.cs: When maximizing use the containers client
3272         rect, not it's bounds, so nc area is accounted correctly.
3273         - Use the parent form's size for the menu position, since the
3274         client isn't always the full form size.
3276 2006-10-01  Chris Toshok  <toshok@ximian.com>
3278         * ScrollableControl.cs: make sure neither right_edge or
3279         bottom_edge are < 0, since they're used as LargeChange for the
3280         horiz/vert scrollbars respectively.  Fixes #79539.
3282 2006-10-01  Chris Toshok  <toshok@ximian.com>
3284         * NotifyIcon.cs: add NotifyIconWindow.InternalRecreateHandle, so
3285         the xplatuix11 code can cause us to destroy/recreate our handle.
3287         * XplatUIX11.cs
3288         (SystrayAdd):
3289         - this code can be invoked many times for the same Hwnd.  Make
3290           sure we only destroy the client window once (the first time this
3291           method is called).  This fixes bug #79544.
3292         - Remove the call to the improperly bound XSync.  why we had two
3293           bindings to this, I will never know, but this call resulted in
3294           events being discarded from the queue(!).
3295         - correct a misunderstanding of _XEMBED_INFO - the second atom is
3296           not our current state but the state we wish to be in.  So, 0 if
3297           we don't want to be mapped.  Change it to 1.
3298         (SystrayRemove): The XEMBED spec makes mention of the fact that
3299         gtk doesn't support the reparent of client windows away from the
3300         embedder.  Looking at gtksocket-x11.c seems to agree with this.
3301         The only avenue we have for removing systray icons is to destroy
3302         them.  We don't want the handle to go away for good, though, so
3303         call InternalRecreateHandle on the NotifyIconWindow.  Fixes
3304         #79545.
3305         
3306 2006-10-01  Chris Toshok  <toshok@ximian.com>
3308         * Form.cs (WndProc): inline the native_enabled variable usage into
3309         the cases in which it's used.  Fixes #79536.
3311 2006-09-29  Mike Kestner  <mkestner@novell.com>
3313         * ListView.cs : toggle the selection state for ctrl clicks in 
3314         multiselect mode. [Fixes #79417]
3316 2006-09-29  Mike Kestner  <mkestner@novell.com>
3318         * ListView.cs : kill CanMultiSelect and refactor the selection
3319         code to support multiselection in the absence of mod keys. Steal
3320         arrow/home/end keys by overriding InternalPreProcessMessage to
3321         restore regressed keynav behavior.
3322         [Fixes #79416]
3324 2006-09-29  Jackson Harper  <jackson@ximian.com>
3326         * MdiClient.cs: Repaint the titlebars when the active window is
3327         changed.
3329 2006-09-29  Chris Toshok  <toshok@ximian.com>
3331         * Application.cs: when entering a runloop with a modal, make sure
3332         the hwnd is enabled.  Fixes #79480.
3334 2006-09-29  Chris Toshok  <toshok@ximian.com>
3336         * DataGrid.cs (CurrentCell): if we try to navigate to the add row
3337         when ListManager.CanAddRows == false, bump us back one.
3339         * DataGridColumnStyle.cs (ParentReadOnly): remove the
3340         listmanager.CanAddRows check.  This makes ArrayLists uneditable
3341         using a datagrid, which is not right.
3342         (SetColumnValueAtRow): call IEditable.BeginEdit if source[rowNum]
3343         is an IEditable, but call property_descriptor.SetValue regardless.
3344         fixes #79435.
3346 2006-09-29  Chris Toshok  <toshok@ximian.com>
3348         * DataGridBoolColumn.cs: we need to test equality in the face of
3349         possible null values (as is the case with the default NullValue).
3350         This patch keeps us from crashing in that case.
3352 2006-09-29  Jackson Harper  <jackson@ximian.com>
3354         * TreeNodeCollection.cs: Don't do a recalculate/updatescrollbars
3355         here, since it will get called for every node collection in the
3356         tree. This is now done in the treeview once the sorting is
3357         finished.
3358         * TreeView.cs: Recalculate the visible order, and update the
3359         scrollbars after sorting, set the top nope to the root so that the
3360         recalc actually works.
3362 2006-09-29  Chris Toshok  <toshok@ximian.com>
3364         * LinkLabel.cs: more handling of the default link collection in
3365         the face of LinkArea manipulation.  The default link collection
3366         contains 1 element (start=0,length=-1).  If the user sets LinkArea
3367         to anything and the links collection is the default, clear it.
3368         Then only add the link if its nonempty.  Fixes #79518.
3370 2006-09-29  Chris Toshok  <toshok@ximian.com>
3372         * LinkLabel.cs (CreatePiecesFromText): calculate the length of a
3373         piece correctly when we hit a '\n'.  Fixes #79517.
3375 2006-09-29  Chris Toshok  <toshok@ximian.com>
3377         * MimeIcon.cs, ThemeGtk.cs, X11DesktopColors.cs, XplatUIX11GTK.cs:
3378         change the binding of gdk_init_check to take two IntPtr's, and
3379         pass IntPtr.Zero for both of them.  Fixes #79520.
3381 2006-09-29  Mike Kestner  <mkestner@novell.com>
3383         * ComboBox.cs : raise TextChanged on ComboTextBox.TextChanged.
3384         [Fixes #78779]
3386 2006-09-28  Jackson Harper  <jackson@ximian.com>
3388         * XplatUIX11.cs: When translating NC messages make sure we go from
3389         whole window to screen, not client window to screen.
3390         * MdiClient.cs: Remove the calls to PaintWindowDecorations, this
3391         method doesn't exist
3392         - Skip over controls that aren't forms when arranging.
3394 2006-09-28  Jackson Harper  <jackson@ximian.com>
3396         * XplatUIWin32.cs: Clip the rect to the parent window.
3397         * XplatUIStructs.cs: Add clipping modes struct.
3398         * InternalWindowManager.cs: New private method that factors title
3399         bar heights in when calculating the pos of an NC mouse message.
3400         - Use SendMessage to force a paint when the form's size is changed
3401         instead of painting the decorations immediately.
3402         - Don't let the NC button click messages get to DefWndProc,
3403         because they will attempt to handle windowing themself, and this
3404         messes up z-order (it will put them in front of the scrollbars).
3405         * XplatUIX11.cs: Make sure that we don't reset window managers if
3406         we already have one (ie the window is an MDI window).
3408 2006-09-28  Chris Toshok  <toshok@ximian.com>
3410         * MainMenu.cs: fix #79405 by way of a disgusting hack.  all the
3411         menu code really needs going over.
3413 2006-09-27  Chris Toshok  <toshok@ximian.com>
3415         * XplatUIX11.cs (SetWMStyles): more metacity wonderment.  turns
3416         out metacity ignores the MAXIMIZE_HORZ/VERT messages unless the
3417         window is maximizable.  So, we need to make sure that even if we
3418         clear the border/wm frame of those functions, they're still
3419         available (basically, we remove the decoration without removing
3420         the function).  Half the fix for #79338.
3422 2006-09-27  Chris Toshok  <toshok@ximian.com>
3424         * DataGrid.cs (ProcessGridKey): implement Shift-Tab handling.
3425         Fixes bug #79515.
3427 2006-09-27  Chris Toshok  <toshok@ximian.com>
3429         * Splitter.cs: reorder things a bit so that we don't actually
3430         draw/move the splitter until after calling OnSplitterMoving.  This
3431         lets users cancel/disallow the movement by explicitly setting
3432         event.SplitX/SplitY.  Fixes #79372.
3434 2006-09-27  Jackson Harper  <jackson@ximian.com>
3436         * XplatUIX11.cs: Don't hide the caret when it is being destroyed,
3437         because it is most likely on a window being destroyed, and that
3438         will give us an X11 error.
3440 2006-09-27  Chris Toshok  <toshok@ximian.com>
3442         * PropertyGridView.cs: half of the fix for #78190.  Clicking on
3443         the dropdown button now toggles between showing and hiding the
3444         dropdown.  Also, get rid of dropdown_form_showing and just use
3445         dropdown_form.Visible.  We still don't do a grab, but I'll leave
3446         that part to someone who has handled Capture-fu before.
3448 2006-09-27  Chris Toshok  <toshok@ximian.com>
3450         * DataGrid.cs: return false if alt isn't pressed when '0' is
3451         pressed.  this keeps the '0' key from being swallowed, and fixes
3452         bug #79350.
3454 2006-09-27  Chris Toshok  <toshok@ximian.com>
3456         * ComboBox.cs: use Invalidate when scrolling the dropdown list.
3457         Calling Refresh (in response to a scrollbar event) screws up the
3458         scrollbar painting.  Fixes bug #78923.
3460 2006-09-27  Chris Toshok  <toshok@ximian.com>
3462         * Theme.cs (SystemResPool): make the "if hashtable[key] == null
3463         then insert into hashtable" blocks threadsafe.
3465 2006-09-27  Chris Toshok  <toshok@ximian.com>
3467         * MessageBox.cs (CreateParams): the styles should be |'ed with our
3468         baseclass's, since otherwise the
3469         ControlBox/MinimizeBox/MaximizeBox assignments above have no
3470         effect.  This gets the close button back in messageboxes.
3472 2006-09-27  Chris Toshok  <toshok@ximian.com>
3474         * XplatUIX11.cs: make StyleSet and ExStyleSet check == with the
3475         flag, not just != 0.  this makes flags that are actually multiple
3476         bits (like WS_CAPTION) work.  fixes bug #79508.
3478 2006-09-27  Jordi Mas i Hernandez <jordimash@gmail.com>
3480         * PageSetupDialog.cs: add support for getting and settings the 
3481         paper size, source and orientation.
3483 2006-09-26  Chris Toshok  <toshok@ximian.com>
3485         * XplatUIX11.cs (SetWMStyles): turns out when SYSMENU is not set
3486         and caption == "", we need to remove the resize handles as well as
3487         the title bar.
3489         * Control.cs (set_Text): turns out that setting Text on a form
3490         should change the WM styles on the window, since if ControlBox ==
3491         false, the only way to get a window border is to have a non-""
3492         Text property.  check winforms/forms/text.cs for an example.  so,
3493         call both XplatUI.SetWindowStyle and XplatUI.Text here to properly
3494         update both window styles and title.  This fixes a lot of dialogs
3495         (including the preferences dialog in MonoCalendar.)
3497 2006-09-26  Chris Toshok  <toshok@ximian.com>
3499         * XplatUIWin32.cs (SetParent): if parent == IntPtr.Zero (and the
3500         control isn't a Form), call Win32ShowWindow to hide the window,
3501         but don't update the control Visible property.  When we reparent
3502         back to a parent control, call SetVisible in order for the
3503         window's visibility to be reinstated.
3505         * XplatUIX11.cs (SetParent): if hwnd.parent == null, reparent to
3506         the FosterParent.
3508         * Control.cs (ControlCollection.Remove): remove that value.Hide()
3509         call for good, since it breaks MonoCalendar (and other things I'm
3510         sure.) Also, set all_controls to null *after* the owner calls,
3511         which end up regenerating it.
3512         (ChangeParent): allow new_parent to be == null, passing
3513         IntPtr.Zero down to XplatUI.
3515         this fixes #79294 the right way.
3517 2006-09-26  Mike Kestner  <mkestner@novell.com>
3519         * GridEntry.cs : internal SetParent method.
3520         * PropertyGrid.cs : attach to property changed on the proper
3521         target if we have a hierarchical grid with subobjects. Setup
3522         GridItem.Parent for hierarchical items.
3523         * PropertyGridView.cs : Set value on the correct target for
3524         hierarchical grids. [Fixes #78903]
3526 2006-09-26  Chris Toshok  <toshok@ximian.com>
3528         * Control.cs (ChildNeedsRecreating): this should return true if
3529         either we're being recreated and the child is in our list, or our
3530         parent is waiting for our recreation.
3532 2006-09-26  Chris Toshok  <toshok@ximian.com>
3534         * Control.cs (ControlCollection.Remove): reinstate the
3535         value.Hide() call as suggested in bug #79294.
3537 2006-09-26  Sebastien Pouliot  <sebastien@ximian.com>
3539         * XplatUIX11.cs: Fixed SetCursorPos to move the cursor to screen
3540         coordinates (versus a relative move).
3542 2006-09-26  Chris Toshok  <toshok@ximian.com>
3544         * Control.cs: rework child recreation a little bit.  It turns out
3545         that we race between the DestroyNotify the WM_DESTROY message.  If
3546         the parent gets its DestroyNotify before the child gets the
3547         WM_DESTROY message, the child ends up not recreating (since the
3548         parent finishes its recreation on DestroyNotify, and the child
3549         checks ParentIsRecreating.)
3551         So, instead we store off a list of all the child controls which
3552         need to be recreated when the parent control starts to recreate
3553         itself.  Then, when child controls get their WM_DESTROY message we
3554         check to see if they're in the parent's pending recreation list,
3555         and if so, we recreate.  This removes all dependency on ordering
3556         from the code and fixes the initial MonoCalendar upgrade dialog.
3557         
3558 2006-09-26  Jackson Harper  <jackson@ximian.com>
3560         * TextControl.cs: Use the Line to get the length of the line,
3561         since soft line breaks can change the end line.
3563 2006-09-26  Chris Toshok  <toshok@ximian.com>
3565         * Control.cs (ControlCollection.AddImplicit): don't add the
3566         control again if it's already in one of our lists.  This keeps us
3567         from adding controls over and over again for comboboxes when their
3568         handle gets recreated (as the combobox adds implicit controls in
3569         OnHandleCreated).  Fixes the X11 errors in bug #79480.
3571 2006-09-26  Jackson Harper  <jackson@ximian.com>
3573         * TextControl.cs: When deleting characters make sure that any
3574         orphaned zero lengthed tags get deleted.
3575         - Fix ToString for zero lengthed tags.
3577 2006-09-25  Jackson Harper  <jackson@ximian.com>
3579         * TextControl.cs: When getting a tag at the location there can be
3580         multiple tags at the same spot, these are 0-lengthed tags that
3581         appear when extra formatting has been stuck in a location.  We
3582         need to pull out the last of these 0 lengthed tags.
3584 2006-09-25  Jackson Harper  <jackson@ximian.com>
3586         * TextControl.cs: Fix print out in debug method.
3587         * TextBoxBase.cs: When text is set bail if we are setting to the
3588         previous value.
3589         
3590 2006-09-24  Alexander Olk  <alex.olk@googlemail.com>
3592         * FontDialog.cs: Fixed the up/down arrow keys issue from bug #79478.
3593           It is now possible to change the selected index in a FontXXXListBox
3594           with the up and down arrow keys from the FontXXXTextBoxes.
3595           Also, send the FontXXXTextBox mouse wheel event to the corresponding
3596           FontXXXListBoxes to match ms.
3598 2006-09-22  Sebastien Pouliot  <sebastien@ximian.com>
3600         * SystemInformation.cs: Return a clone of the theme's MenuFont because
3601         anyone can dispose it, anytime. All other properties returns enums, 
3602         structs or basic types so they don't need such tricks.
3604 2006-09-22  Jackson Harper  <jackson@ximian.com>
3606         * XplatUI.cs:
3607         * XplatUIWin32.cs:
3608         * Clipboard.cs:
3609         * DataFormats.cs:
3610         * XplatUIOSX.cs:
3611         * XplatUIDriver.cs: Update interface to add a primary selection
3612         flag, so the driver can use the primary selection buffer if
3613         needed.
3614         * XplatUIX11.cs: Allow the clipboard to retrieve from PRIMARY.
3616         * RichTextBox.cs: We need to supply the data object to paste now
3617         (so we can choose to supply CLIPBOARD or PRIMARY).
3618         * TextBoxBase.cs: Supply data object to paste (see above).
3619         - Middle click uses the primary selection data object.
3620         
3621 2006-09-21  Chris Toshok  <toshok@ximian.com>
3623         * XplatUIX11.cs: first little cleanup of the StyleSet (...) block
3624         of SetWMStyles.  It's still a rat's nest and is largely
3625         order-dependent which I dislike immensely.  This also fixes the X
3626         button disappearing from toplevel forms.
3628 2006-09-21  Mike Kestner <mkestner@novell.com>
3630         * ListBox.cs: move Jordi's click/dblclick raising code to the
3631         mouse up handler.
3633 2006-09-21  Jordi Mas i Hernandez <jordimash@gmail.com>
3635         * ListBox.cs: Fixes 79450
3637 2006-09-21  Mike Kestner <mkestner@novell.com>
3639         * TreeView.cs: guard against disposed conditions in UpdateScrollbars
3640         to deal with people updating the TreeNodeCollection after the tree
3641         is disposed.  "Fixes" 79330.
3643 2006-09-20  Jackson Harper <jackson@ximian.com>
3645         * TextControl.cs: Push the cursor record onto the undo stack
3646         before the delete action. This fixes 78651.
3648 2006-09-20  Jonathan Chambers  <joncham@gmail.com>
3650         * PropertyGridView.cs: Remove WindowStyles.WS_VISIBLE from
3651         CreateParams. Fixes 79329.
3653 2006-09-19  Chris Toshok  <toshok@ximian.com>
3655         * XplatUIX11.cs: a couple of blanket code massage passes to clean
3656         things up a bit.  First, get rid of the NetAtoms array (and the NA
3657         enum), and just embed the atoms as static fields.  Also, add a
3658         couple of functions (StyleSet and ExStyleSet) to clean up all the
3659         bitmask testing of styles.
3661         * X11Structs.cs: remove the NA enum, not needed anymore.
3662         
3663 2006-09-19  Chris Toshok  <toshok@ximian.com>
3665         * XplatUIX11.cs: apply Alexander's tool window fix for bug #79245
3666         (mapping them to _NET_WM_WINDOW_TYPE_UTILITY).  and add a little
3667         added cleanup to get MessageBox titles appearing again, which were
3668         broken by my earlier fix for caption-less/ControlBox-less windows.
3670 2006-09-18  Jonathan Pobst <monkey@jpobst.com>
3672         * ToolStripArrowRenderEventArgs.cs, ToolStripArrowRenderEventHandler.cs,
3673           ToolStripContentPanelRenderEventArgs.cs, ToolStripContentPanelRenderEventHandler.cs,
3674           ToolStripGripRenderEventArgs.cs, ToolStripGripRenderEventHandler.cs,
3675           ToolStripItemClickedEventArgs.cs, ToolStripItemClickedEventHandler.cs,
3676           ToolStripItemEventArgs.cs, ToolStripItemEventHandler.cs,
3677           ToolStripItemImageRenderEventArgs.cs, ToolStripItemImageRenderEventHandler.cs,
3678           ToolStripItemRenderEventArgs.cs, ToolStripItemRenderEventHandler.cs,
3679           ToolStripItemTextRenderEventArgs.cs, ToolStripItemTextRenderEventHandler.cs,
3680           ToolStripPanelRenderEventArgs.cs, ToolStripPanelRenderEventHandler.cs,
3681           ToolStripRenderEventArgs.cs, ToolStripRenderEventHandler.cs,
3682           ToolStripSeparatorRenderEventArgs.cs, ToolStripSeparatorRenderEventHandler.cs:
3683             Inital import.
3684         * ToolStripPanel.cs, ToolStripContentPanel.cs, ToolStripSeparator.cs,
3685           ToolStripButton.cs: Stubs needed for above.
3686         * ToolStrip.cs, ToolStripItem.cs: Stub a few variables/properties for above.
3688 2006-09-15  Chris Toshok  <toshok@ximian.com>
3690         * XplatUIX11.cs:
3691         - make the MessageQueues hashtable Synchronized.
3692         
3693         - SendMessage: if the Hwnd is owned by a different thread, use the
3694         AsyncMethod stuff to dispatch the SendMessage on the hwnd's
3695         thread.  Fixes bug #79201.
3697 2006-09-15  Chris Toshok  <toshok@ximian.com>
3699         * XplatUIX11.cs (SetWMStyles): rework the #79368 fix slightly.  If
3700         ControlBox == false, we disallow maximize/minimize/close.  If the
3701         form Caption is "" we also disallow move (and get rid of the Title
3702         decoration).  Unfortunately, regardless of how things are set,
3703         we're stuck with the Title and WM menu.
3705 2006-09-15  Chris Toshok  <toshok@ximian.com>
3707         * Application.cs: add locking around the static message_filters
3708         ArrayList, part of #79196.
3710 2006-09-15  Chris Toshok  <toshok@ximian.com>
3712         * XplatUIX11.cs (SetWMStyles): if Form.Text == "" and
3713         Form.ControlBox == false, the window has no titlebar nor resize
3714         handles.  fixes bug #79368.
3716 2006-09-15  Chris Toshok  <toshok@ximian.com>
3718         * TextBoxBase.cs: in CalculateScrollBars make sure LargeChange is
3719         >= 0.  Fixes bug #79370.
3721 2006-09-15  Jonathan Pobst <monkey@jpobst.com>
3722         * FlowLayoutPanel.cs, FlowLayoutSettings.cs: Initial commit.
3723         * Control.cs:
3724             Add properties: LayoutEngine, Margin, DefaultMargin.
3725             Add method: GetPreferredSize.
3726             Move layout logic from PerformLayout to layout engines. 
3728 2006-09-13  Chris Toshok  <toshok@ximian.com>
3730         * XplatUIX11.cs: more destroy work.  Jackson pointed out that my
3731         fix for #79326 broke #78718, so this change addresses that.
3733         - in SendWMDestroyMessages remove the call to
3734         CleanupCachedWindows, since we might be recreating the control and
3735         need to maintain the references to right Hwnd handles.  Also, set
3736         the zombie flag to true for each of the children in the hierarchy
3737         instead of calling hwnd.Dispose.  This will cause GetMessage to
3738         ignore all events for the window except for DestroyNotify.
3740         - In GetMessage, ignore messages except for DestroyNotify for
3741         zombie hwnds.
3742         
3743         * Control.cs: revert the is_recreating fix from the last
3744         ChangeLog.  It's definitely "right", but it breaks switching from
3745         an MDI form to a non-MDI form.  Will need to revisit that.
3747         * Hwnd.cs: add a zombie flag, which means "the
3748         client_window/whole_window handles are invalid, but we're waiting
3749         for the DestroyNotify event to come in for them".  Set the flag to
3750         false explicitly if setting WholeWindow/ClientWindow, and also
3751         when Disposing.
3752         
3753 2006-09-13  Chris Toshok  <toshok@ximian.com>
3755         * XplatUIX11.cs: rework window destruction slightly.
3757         - when destroying the windows associated with a control, we don't
3758         need 2 separate XDestroyWindow calls.  Just the one for the
3759         whole_window (or for client_window if whole_window is somehow
3760         IntPtr.Zero -- can this happen?) is enough.
3762         - reworked SendWMDestroyMessages slightly, so we always dispose
3763         the child control hwnd's after sending the messages.
3764         
3765         - refactored out the ActiveWindow/FocusWindow/Caret clearing from
3766         the two places it was used (one was even using hwnd.Handle and the
3767         other hwnd.client_window.  ugh), adding another call in
3768         SendWMDestroyMessages.  We need this new call because now the
3769         DestroyNotify events in the queue will be ignored for the child
3770         controls (as their hwnd's were disposed, and the window id's
3771         removed from the hashtable in SendWMDestroyMessages.) fun, eh?
3773         - this fixes bug #79326.
3775 2006-09-13  Chris Toshok  <toshok@ximian.com>
3777         * Control.cs: don't always set is_recreating to false at the end
3778         of RecreateHandle, since sometimes we're not done (and won't be
3779         until WndProc handles the WM_DESTROY message).  Also, set
3780         is_recreating to false in the WM_DESTROY handling code.  Part of
3781         the fix for bug #79326.
3783 2006-09-13  Miguel de Icaza  <miguel@novell.com>
3785         * X11DesktopColors.cs: Start the droppage of debugging messages.
3787         * FileDialog.cs: Store the configuration file in ~/.mono/mwf_config
3789 2006-09-13  Jonathan Pobst <monkey@jpobst.com>
3791         * SplitContainer.cs, SplitterPanel.cs: Initial implementation [2.0].
3793 2006-09-12  Chris Toshok  <toshok@ximian.com>
3795         * DataGrid.cs (get_ListManager): if the list_manager is null, try
3796         to create it using SetDataSource.  Fixes bug #79151.
3798 2006-09-11  Chris Toshok  <toshok@ximian.com>
3800         * XEventQueue.cs: add a DispatchIdle property.
3802         * XplatUIX11.cs (UpdateMessageQueue): only emit the Idle event if
3803         either the queue is null, or the queue has DispatchIdle set to
3804         true.
3805         (DoEvents): set queue.DispatchIdle to false around the
3806         peek/translate/dispatch message loop in this method.  This keeps
3807         Application.Doevents from emitting idle events.  Part of the fix
3808         for #78823.
3810 2006-09-11  Chris Toshok  <toshok@ximian.com>
3812         * DataGrid.cs (set_DataSource): make this work for both the
3813         winforms/datagrid test and ReportBuilder.  It seems as though when
3814         we've created a ListManager (or maybe it's if we have a
3815         BindingContext?), when we set the DataSource it clears the
3816         DataMember to "".  otherwise we reuse the datamember.  Fixes bug
3817         #79333.
3819 2006-09-11  Chris Toshok  <toshok@ximian.com>
3821         * XplatUIX11.cs: deal with queue being null, which happens in all
3822         the Clipboard functions.  Fixes one of the two problems mentioned
3823         in #78612.
3825 2006-09-11  Chris Toshok  <toshok@ximian.com>
3827         * MenuAPI.cs: rework OnMouseUp a bit so that releasing the mouse
3828         button on various spots (including outside the menu) works closer
3829         to MS, and doesn't crash.  Fixes #79343.
3831 2006-09-11  Gert Driesen  <drieseng@users.sourceforge.net>
3833         * ListView.cs: Do not initialize item_sorter in init. To match MS,
3834         return null for ListViewItemSorter if View is SmallIcon or LargeIcon
3835         and the internal comparer is set. When a new ListViewItemSorter is set,
3836         sort the items. Use Enum.IsDefined to verify whether a valid SortOrder
3837         was specified. No further processing is necessary if SortOrder is set
3838         to it's current value. If Sorting is modified to None, and View is
3839         neither SmallIcon nor LargeIcon then: on 2.0 profile set item_sorter
3840         (either custom or our internal ItemComparer) to null, on 1.0 profile
3841         only set item_sorter to null if its our internal IComparer. If Sorting
3842         is modified to Ascending or Descending, then use our internal IComparer
3843         if none is set, and if the current IComparer is our internal one then:
3844         on 2.0 profile always replace it with one for new Sorting, and on 1.0
3845         profile only use new Sorting if view is not SmallIcon or LargeIcon. Use
3846         Enum.IsDefined to verify whether a valid View value is specified in
3847         its setter. Automatically sort listview items when listview is
3848         created. In Sort, do nothing if ListView is not yet created, or if
3849         no item_sorter is set (no Sorting was set, Sorting was explicitly set
3850         to None or ListViewItemSorter was set to null). Added Sort overload
3851         taking a bool to indicate whether the ListView should be redrawn when
3852         items are sorted (we use this in ListViewItemCollection to avoid double
3853         redraws). Modified our internal IComparer to take the sort order into
3854         account. In Add and AddRange methods of ListViewItemCollection, also
3855         call Sort if Sorting is None (necessary for SmallIcon and LargeIcon
3856         view), but use overload with noredraw option to avoid double redraw.
3857         On 2.0 profile, throw NotSupportedException when setting CheckBoxes to
3858         true when View is Tile, and do the same when attempting to set View to
3859         Tile when CheckBoxes is true. Avoid maintaining separate ArrayLists
3860         for selected/checked indices, as it involves overhead when sorting is
3861         done while these collections are not used all that often. Instead
3862         we'll build the indices on demand. Modified IList implementation of
3863         CheckedIndexCollection to use public methods if object is int.
3864         Modified CheckedListViewItemCollection to hide checked items if
3865         ListView.CheckBoxes is false. Removed LAMESPEC remark in 
3866         ListViewItemCollection as the .NET SDK docs have been fixed. Modified
3867         IList implementation in SelectedIndexCollection to use public methods
3868         if object is int. Modified SelectedListViewItemCollection to hide
3869         selected items if listview is not yet created.
3870         * ListViewItem.cs: CheckedIndices list no longer needs to be
3871         maintained separately (see ListView changes). Also clone font, fixes
3872         test failure.
3874 2006-09-11  Mike Kestner  <mkestner@novell.com>
3876         * ComboBox.cs: if we are updating the contents of the currently
3877         selected index, refresh the control or the textbox selection.
3878         [Fixes #79066]
3880 2006-09-11  Mike Kestner  <mkestner@novell.com>
3882         * ComboBox.cs (UpdateBounds): use SetBounds not SetBoundsCore since 
3883         the 'specified' logic has been moved there.  This seems like a bug 
3884         in Control.cs, since our current SetBoundsCore completely ignores 
3885         the specified parameter.  Peter's commit seems to indicate that is 
3886         the way the MS control implementation works.  [Fixes #79325]
3888 2006-09-10  Jonathan Chambers  <joncham@gmail.com>
3890         * XplatUI.cs: Set default_class_name to be composed
3891         of current domain id. This allows MWF to be loaded in multiple
3892         domains on Win32.
3894 2006-09-09  Miguel de Icaza  <miguel@novell.com>
3896         * X11Keyboard.cs: If we are unable to obtain the input method, do
3897         not call CreateXic to create the input context.   Should fix
3898         #78944/79276.
3900 2006-09-08  Alexander Olk  <alex.olk@googlemail.com>
3902         * MimeIcon.cs: Rewrote major parts. Dropped KDE support for now.
3903           Simplified gnome support by adding more pinvokes to get the
3904           icon for a file or mime type.
3906 2006-09-08  Jackson Harper  <jackson@ximian.com>
3908         * MenuAPI.cs: Deslect popup context menu items before closing the
3909         window, so that you don't see the previously selected item
3910         selected when you reopen the menu.
3911         * TextControl.cs: Update the cursor position even if we don't have
3912         focus.  This fixes typing in things like the ComboBox.  I'm not
3913         totally sure we should always set the visibility if we don't have
3914         focus, but couldn't find any corner cases where the cursor showed
3915         up when it shouldn't.
3917 2006-09-08  Chris Toshok  <toshok@ximian.com>
3919         * X11Keyboard.cs: In UpdateKeyState vkey can be any integer, but
3920         our arrays are length 256.  & 0xff before indexing.  Fixes the
3921         crash in bug #78077.
3922         
3923 2006-09-08  Carlos Alberto Cortez <calberto.cortez@gmail.com>
3925         * ThemeWin32Classic.cs: 
3926         * DateTimePicker.cs: Draw check box if DateTimePicker.ShowCheckBox
3927         is true. Handle that check box too.
3929 2006-09-07  Chris Toshok  <toshok@ximian.com>
3931         * MenuAPI.cs: move the PerformClick call to OnMouseUp.  Fixes bug
3932         79244.
3934 2006-09-07  Chris Toshok  <toshok@ximian.com>
3936         * Control.cs: in set_BackColor only do the work if
3937         background_color != value.
3939         * XplatUIX11.cs: move the clearing of invalid areas (both client
3940         and nc) to the same block of code where we set (nc_)expose_pending
3941         to false.  That is, move it from PaintEventEnd to PaintEventStart,
3942         so things that cause invalidates from within OnPaint will trigger
3943         another call to OnPaint.  Fixes bug #79262.
3945 2006-09-07  Alexander Olk  <alex.olk@googlemail.com>
3947         * Theme.cs: Use correct icon for UIIcon.PlacesPersonal
3948         * FileDialog.cs: Fix typo
3950 2006-09-07  Jackson Harper  <jackson@ximian.com>
3952         * ThemeWin32Classic.cs:  oops, forgot to commit.  Draw the images
3953         for tab pages if they have any.
3955 2006-09-06  Mike Kestner  <mkestner@novell.com>
3957         * Splitter.cs: use the "current" rect when finishing drag handle
3958         to avoid an artifact demonstrated by resedit.exe.  [Fixes #79251]
3960 2006-09-06  Mike Kestner  <mkestner@novell.com>
3962         * Splitter.cs: draw the drag handle at X or Y instead of 0 to deal
3963         support offset splitters. [Fixes #79298]
3965 2006-09-06  Alexander Olk  <alex.olk@googlemail.com>
3967         * Mime.cs: Fixed a bug that could override the global mime type
3968           result.
3970 2006-09-05  Jackson Harper  <jackson@ximian.com>
3972         * TabControl.cs: Better calculation method for setting the slider
3973         pos. Prevents crashes on really wide tabs.
3974         - Draw Image on tab pages if an image list is used.
3976 2006-09-02  Carlos Alberto Cortez <calberto.cortez@gmail.com>
3978         * MonthCalendar.cs: When Font changes, the Size should be
3979         updated to fit the new font's space requirements.
3981 2006-09-02  Alexander Olk  <alex.olk@googlemail.com>
3983         * ListBox.cs: If the items are cleared with Items.Clear set
3984           top_index to 0.
3986 2006-09-01  Carlos Alberto Cortez <calberto.cortez@gmail.com>
3988         * MonthCalendar.cs: Handle arrow keys as input keys. Also
3989         fire DateChanged event instead of DateSelected event when
3990         the date was changed by keyboard interaction.
3992 2006-09-01  Carlos Alberto Cortez <calberto.cortez@gmail.com>
3994         * DateTimePicker.cs: Handle DateChanged for the associated
3995         month_calendar control, and set month_calendar.Font from 
3996         OnFontChanged method, as well as resize the height of the
3997         control when needed. Make PreferredHeight proportional.
3999 2006-09-01  Chris Toshok  <toshok@ximian.com>
4001         * DataGrid.cs: grr, stop overthinking the DataMember/DataSource
4002         properties.
4004         * BindingContext.cs (HashKey.GetHashCode): use ^ instead of +.
4006 2006-09-01  Peter Dennis Bartok  <pbartok@novell.com> 
4008         * FileDialog.cs: Set ClientSize instead of window size, to allow space
4009           for decorations (Fixes #79219)
4011 2006-09-01  Mike Kestner  <mkestner@novell.com>
4013         * ComboBox.cs: first stab at sorting plus some selection handling
4014         fixes to bring us more in line with MS behavior.  Also switches back
4015         to index based selection.  Alternative patches for index-based 
4016         selection were provided by Jackson Harper, Carlos Alberto Cortez, 
4017         and latency@gmx.de on bug 78848.  I assume they were similar to this
4018         code I've had simmering in my tree forever.
4019         [Fixes #78848]
4021 2006-09-01  Chris Toshok  <toshok@ximian.com>
4023         * CurrencyManager.cs (ListChangedHandler): in the ItemAdded case,
4024         when setting list position guard against ending up with a -1 index
4025         (the other part of the fix for #78812).  Should probably make sure
4026         we don't need the analogous fix in the ItemDeleted case.
4028         * DataGrid.cs:
4029         - in SetDataSource, work around the fact that the way
4030         OnBindingContextChanged is invoked will cause us to re-enter this
4031         method.  I'll remove the hack once I investigate
4032         OnBindingContextChanged.
4034         - fix the logic in set_DataSource and set_DataMember (basically
4035         what to do if the other of the two is null.)
4036         
4037         - in OnListManagerItemChanged, we need to take into account the
4038         edit row when deciding whether or not to call RecreateDataGridRows
4039         (part of the fix for #78812).
4041 2006-09-01  Jackson Harper  <jackson@ximian.com>
4043         * Splitter.cs: Don't do anything if there is no control to affect
4044         (prevents us from crashing in weird tet cases).
4045         * TreeView.cs: Bounding box for the mouse movement reverting
4046         focus/selection back to previously selected node.  This matches
4047         MS, and makes the tree a lot more useable.
4048         * GroupBox.cs: Instead of drawing over the lines of the groupbox,
4049         use clipping so they are not drawn.  This fixes when the control
4050         is set to have a transparent background, or if it was over an
4051         image.
4053 2006-09-01  Alexander Olk  <alex.olk@googlemail.com>
4055         * MimeIcon.cs: Improved handling for reading default icons when
4056           using gnome (2.16 made it necessary). Check and read svg icons
4057           first, then 48x48 and then 32x32 icons.
4059 2006-08-31  Chris Toshok  <toshok@ximian.com>
4061         * DataGridTextBoxColumn.cs: only hide the textbox if it's still
4062         visible.
4064         * DataGridTextBox.cs: Pass Tab's up to the datagrid by calling
4065         ProcessKeyPreview.  Fixes part of #77806.
4067         * DataGrid.cs: big patch.
4069         - revert the queueing up of DataSource/DataMember if inside
4070         BeginInit/EndInit calls.  That's not the way the datagrid achieves
4071         its delayed databinding.  Instead, call SetDataSource in
4072         OnBindingContextChanged.  This mimic's MS's behavior, and fixes
4073         #78811.
4075         - Also, it wasn't mentioned in #78811, but the test case exhibits
4076         behavior that was lacking in our datagrid implementation - Columns
4077         that have mapping names that don't exist in the datasource's
4078         properties aren't shown.  Yuck.  To fix this I added the bound
4079         field to the column style, and basically any calculation to figure
4080         out anything about columns uses a loop to find the bound columns.
4081         still need to investigate if I can cache an array of the bound
4082         columns or if the indices must be the same.
4084         - When setting CurrentCell, we no longer abort if the cell being
4085         edited was in the add row.  This fixes the other part of #77806.
4087         - The new code also fixes #78807.
4088         
4089         * ThemeWin32Classic.cs: perpetrate the same disgusting
4090         column.bound field hack, and only render bound fields.
4092 2006-08-31  Chris Toshok  <toshok@ximian.com>
4094         * DataGridColumnStyle.cs: add bound field.  this field is true if
4095         the datasource has a property corresponding to the mapping name.
4097         * DataGridTableStyle.cs: set the bound field on the column styles
4098         depending on whether or not we have a column for that property.
4100 2006-08-31  Peter Dennis Bartok  <pbartok@novell.com> 
4102         * Splitter.cs (SetBoundsCore): Don't ignore width/height of the 
4103           splitter control (fixes #79228)
4105 2006-08-31  Chris Toshok  <toshok@ximian.com>
4107         * DataGridColumnStyle.cs: we need to delay the assignment of
4108         property descriptor until the last possible moment due to the lazy
4109         databinding stuff in the datagrid.  Also, fix the exceptions
4110         thrown by CheckValidDataSource to match MS.
4112 2006-08-31  Jackson Harper  <jackson@ximian.com>
4114         * Form.cs: When activated select the active control, if there is
4115         no active control, we select the first control.
4116         * XplatUIX11.cs: If there is no focus control when we get a
4117         FocusIn event, find the toplevel form and activate it.  This
4118         occurs when you popup a window, it becomes the focus window, then
4119         you close that window, giving focus back to the main window.
4121 2006-08-21  Carlos Alberto Cortez <calberto.cortez@gmail.com>
4123         * MonthCalendar.cs: 
4124         * ThemeWin32Classic.cs: Cache Font in bold style, as well
4125         as StringFormat with Center alignments in MonthCalendar,
4126         instead of creating new ones when drawing the control. 
4127         Also, draw the month name in bold style.
4129 2006-08-30  Peter Dennis Bartok  <pbartok@novell.com> 
4131         * Control.cs:
4132           - PerformLayout(): It would seem MS performs the fill even if the 
4133             control is not visible (part of #79218 fix)
4134           - ResetBackColor(): Use the setter to reset the color, to allow
4135             overriders to catch the change.
4136         * Form.cs:
4137           - .ctor: Call UpdateBounds to adjust client rectangle (part of #79218 fix)
4138           - CreateHandle(): dito (part of $79218 fix)
4139           - Don't set an icon if we have a dialog
4140         * ScrollableControl.cs:
4141           - set_AutoScrollMinSize: Setting the property enables AutoScroll (#79218)
4142           - ScrollIntoView(): No need to scroll if control is already visible
4143             (resolves fixme and fixes #79218)
4145 2006-08-30  Carlos Alberto Cortez <calberto.cortez@gmail.com>
4147         * MonthCalendar.cs: Change proportions in SingleMonthSize
4148         to match the aspect of the original control.
4150 2006-08-29  Alexander Olk  <alex.olk@googlemail.com>
4152         * XplatUIX11.cs: Fix for a metacity/X problem where windows don't
4153           get updated when they get maximized.
4155 2006-08-29  Peter Dennis Bartok  <pbartok@novell.com> 
4157         * XplatUIX11.cs: Handle windows with no border (Fixes part of #79160)
4159 2006-08-29  Chris Toshok  <toshok@ximian.com>
4161         * XplatUIX11.cs: when destroying the FocusWindow, send KILLFOCUS.
4163 2006-08-29  Jackson Harper  <jackson@ximian.com>
4165         * TreeView.cs: Need to track selected node and highlighted node,
4166         they aren't always the same thing, when the mouse is down on a
4167         node it is hilighted, but not selected yet.
4168         - Do the HideSelection stuff right
4169         - Need to focus on rbutton mouse down. And redraw selection when
4170         right click is mouse upped.
4172 2006-08-29  Mike Kestner  <mkestner@novell.com>
4174         * ThemeWin32Classic.cs: draw selections for columns in FullRowSelect
4175         when SubItems.Count < Columns.Count.  [Fixes #79167]
4177 2006-08-28  Peter Dennis Bartok  <pbartok@novell.com> 
4179         * TextControl.cs (FindCursor): Fix math error (Fixes #78402)
4181 2006-08-28  Peter Dennis Bartok  <pbartok@novell.com>
4183         * XplatUIX11.cs: Preempt the roundtrip for getting the location back
4184           from X. Only send based on ConfigureNotify if we don't have the
4185           correct location in hwnd (if the window manager moved us)
4187 2006-08-28  Mike Kestner  <mkestner@novell.com>
4189         * ListView.cs: remove a TODO. 
4190         * ThemeWin32Classic.cs: implement HideSelection support for ListView.
4191         [Fixes ListView part of #79166]
4193 2006-08-28  Mike Kestner  <mkestner@novell.com>
4195         * ListView.cs: move wheel handler to parent since it is focused
4196         instead of the item_control now.  [Fixes #79177]
4198 2006-08-28  Mike Kestner  <mkestner@novell.com>
4200         * ThemeWin32Classic.cs: only highlight subitems in fullrowselect
4201         when the control is focused. [Fixes #79171]
4203 2006-08-28  Mike Kestner  <mkestner@novell.com>
4205         * ListView.cs: size the item and header controls for empty and
4206         unscrollable views.
4207         * ThemeWin32Classic.cs: draw disabled backgrounds.
4208         [Fixes #79187]
4210 2006-08-28  Chris Toshok  <toshok@ximian.com>
4212         * Form.cs: remove unused "active_form" static field.
4214         * Hwnd.cs: lock around accesses to static windows collection.
4216         * Application.cs: lock threads in Exit ().
4218 2006-08-28  Chris Toshok  <toshok@ximian.com>
4220         * NativeWindow.cs: lock around accesses to window_collection.
4221         
4222 2006-08-28  Chris Toshok  <toshok@ximian.com>
4224         * Control.cs: err, fix this the right way, by locking on controls
4225         when using it.  not by making it synchronized.
4227 2006-08-28  Chris Toshok  <toshok@ximian.com>
4229         * Control.cs: make the static "controls" field synchronized, as it
4230         gets updated from multiple threads.
4232 2006-08-27  Peter Dennis Bartok  <pbartok@novell.com>
4234         * XplatUIX11.cs: PostQuitMessage is thread-specific not app-specific.
4235           Prevent other threads from exiting when calling thread sets quit state.
4236         * XEventQueue.cs: Added PostQuitState property
4238 2006-08-27  Chris Toshok  <toshok@ximian.com>
4240         * AsyncMethodData.cs: add a slot for the window handle.
4242         * XplatUIX11.cs (SendAsyncMethod): send the event to the right
4243         window (the destination control's window, not the foster window).
4245         * Control.cs (BeginInvokeInternal): store the window's handle in
4246         the AsyncMethodData.
4247         
4249 2006-08-27  Peter Dennis Bartok  <pbartok@novell.com>
4251         * XplatUIX11.cs:
4252           - PostQuitMessage: Removed resetting S.D display handle, we might have
4253             another loop started after calling PostQuitMessage (Fixes #79119)
4254           - Created destructor to reset S.D handle
4256 2006-08-27  Peter Dennis Bartok  <pbartok@novell.com> 
4258         * XplatUIX11.cs (SetCursor): Issue flush after setting the cursor (#79168)
4260 2006-08-23  Peter Dennis Bartok  <pbartok@novell.com>
4262         * TextControl.cs (Insert): Update the caret position even if we don't
4263           have a handle yet, just don't call the driver in that case.
4264         * TextBoxBase.cs (set_SelectedText): Set the Start and End selection
4265           to the end of the new selection text (Fixes #79184)
4267 2006-08-23  Peter Dennis Bartok  <pbartok@novell.com> 
4269         * Form.cs (Activate): Only activate if the handle is created)
4270         * Control.c:
4271           - Mark window as invisible when it's disposed
4272           - Check if window handle is created when setting window visible, 
4273             instead of relying just on the is_created variable
4274           - Check if object is disposed when creating the control (Fixes #79155)
4276 2006-08-23  Peter Dennis Bartok  <pbartok@novell.com>
4278         * ScrollableWindow.cs (ScrollWindow): Don't actually perform layouting
4279           when allowing layout again. Otherwise we re-generate the anchoring 
4280           distance to the border again and actually alter what the user wanted
4281           This is ugly, it'd be better if we used DisplayRectangle instead of
4282           ClientRectangle for Control.UpdateDistances, but that causes us to
4283           have other problems (initial anchoring positons would be wrong)
4284           (Fixes #78835)
4286 2006-08-23  Peter Dennis Bartok  <pbartok@novell.com> 
4288         * Control.cs:
4289           - The size and location setters shouldn't go directly to 
4290             SetBoundsCore, but to SetBounds, which triggers layout on the
4291             parent, then calls SetBoundsCore. (Related to fix for #78835)
4292           - SetBounds: Moved actual location update code into this function
4293             from SetBoundsCore, to match MS. Added call to PerformLayout if
4294             we have a parent (to trigger resizing of anchored parents if the 
4295             child size has changed (see testcase for #78835) 
4296         * ListBox.cs, Form.cs: Call SetBounds instead of SetBoundsCore to match 
4297           new control code
4298         * ScrollableControl.cs (CalculateCanvasSize): Use shortcut variable
4300 2006-08-23  Peter Dennis Bartok  <pbartok@novell.com>
4302         * XplatUIX11.cs: Don't reset the DisplayHandle that's stored in
4303           System.Drawing when a toplevel window gets closed; there might
4304           be other toplevel windows belonging to the same app (Fixes #78052)
4306 2006-08-26  Alexander Olk  <alex.olk@googlemail.com>
4308         * FileDialog.cs: After reading FileDialog settings from mwf_config
4309           use Desktop prefix only if a real folder doesn't exist anymore.
4310         * FontDialog.cs: Added char sets.
4311           It is now possible to select the font, size or style with the
4312           textboxes.
4314 2006-08-25  Kornél Pál  <kornelpal@gmail.com>
4316         * PrintPreviewDialog.cs: Use assembly name constants.
4318 2006-08-23  Peter Dennis Bartok  <pbartok@novell.com>
4320         * XplatUIWin32.cs (ScrollWindow): Use clipping rectangle arg (prevents
4321           scrollbar from whacking it's buttons)
4323 2006-08-24  Chris Toshok  <toshok@ximian.com>
4325         * ScrollableControl.cs: fix #78271.  There's a lot of misc stuff
4326         in this patch (aggregating setting Left/Top/Width/Height to
4327         setting Bounds on the scrollbars), but the crux of the fix is in
4328         Recalculate, where we scroll by the remaining scroll_position if
4329         we're hiding a scrollbar.  The 2*$5 reward in the comment is
4330         serious.
4332 2006-08-24  Jackson Harper  <jackson@ximian.com>
4334         * MdiClient.cs:
4335         * MdiWindowManager.cs: If the form is made a non-mdi window we
4336         need to remove the form closed event so that closing forms works
4337         correctly.
4339 2006-08-24  Jackson Harper  <jackson@ximian.com>
4341         * Control.cs: Make IsRecreating internal so that the driver can
4342         check it
4343         - Temporarily remove the Hide when controls are removed, its
4344         making a whole bunch of things not work because visibility isn't
4345         getting reset elsewhere correctly
4346         * Form.cs: Need to do a full handle recreation when the mdi parent
4347         is set.
4348         * XplatUIX11.cs: If we are recreating handles don't dispose the
4349         HWNDs.  What was happening is the handles were being recreated in
4350         SendWMDestroyMessages, but then flow continued on in that method
4351         and destroyed the new handles.
4353 2006-08-23  Jackson Harper  <jackson@ximian.com>
4355         * Form.cs: MdiClient is always at the back of the bus
4356         * Control.cs: When the order of items in the collection is changed
4357         we need to reset the all_controls array
4358         - do the same sorta setup thats done when adding a control when a
4359         control is set on the collection.
4361 2006-08-23  Peter Dennis Bartok  <pbartok@novell.com>
4363         * TextBoxBase.cs (get_Text): Return an empty array if our document
4364           is empty (fixes #79052)
4366 2006-08-23  Peter Dennis Bartok  <pbartok@novell.com> 
4368         * Control.cs: We should call IsInputChar on only on WM_CHAR but not
4369           on WM_SYSCHAR messages (fixes #79053)
4371 2006-08-23  Chris Toshok  <toshok@ximian.com>
4373         * DataGrid.cs: fix flickering when scrolling vertically.
4375 2006-08-23  Chris Toshok  <toshok@ximian.com>
4377         * DataGrid.cs (EndEdit): only invalidate the row header when we
4378         need to.
4380 2006-08-23  Chris Toshok  <toshok@ximian.com>
4382         * ThemeWin32Classic.cs: fix the clip munging of the datagrid paint
4383         methods.  fixes the flicker when scrolling around.
4385 2006-08-23  Peter Dennis Bartok  <pbartok@novell.com> 
4387         * FileDialog.cs: Making sure the control is created before we get a 
4388           chance to use it with BeginInvoke (Fixes #79096)
4390 2006-08-23  Chris Toshok  <toshok@ximian.com>
4392         * ThemeWin32Classic.cs (DataGridPaintRows): calculate the proper
4393         width to use when painting the rows.
4395 2006-08-23  Peter Dennis Bartok  <pbartok@novell.com> 
4397         * TextBoxBase.cs:
4398           - Throw ArgumentException if a negative value is passed to SelectionLength
4399           - Update the selection end if start is moved. end needs to be always
4400             after start. (Fixes #79095)
4401           - Track selection length; MS keeps the selection length even if start
4402             is changed; reset on all other operations affection selection
4404 2006-08-22  Jackson Harper  <jackson@ximian.com>
4406         * TreeView.cs: Make sure both scrollbars get displayed and sized
4407         correctly when the other bar is visible.
4408         - Use the original clip rectangle for checking if the area between
4409         the two scrollbars is visible, not the viewport adjusted clipping
4410         rectangle.
4412 2006-08-22  Jackson Harper  <jackson@ximian.com>
4414         * Binding.cs: We don't use IsBinding because it requires the
4415         control to be created, which really shouldn't be necessary just to
4416         set a property on the control.
4418 2006-08-21  Carlos Alberto Cortez <calberto.cortez@gmail.com>
4420         * ComboBox.cs: Some CB.ObjectCollection methods must throw
4421         ArgumentNullReferenceException when the argument is null.
4423 2006-08-21  Jackson Harper  <jackson@ximian.com>
4425         * Timer.cs: Track the thread that the timer is started in (NOT
4426         CREATED), this way messages for it will only be triggered on its
4427         queue.
4428         * XEventQueue.cs: Track the timers here, this makes timers per
4429         thread, like MS.
4430         * XplatUIX11.cs: The timers are moved to the XEventQueue.
4432 2006-08-19  Chris Toshok  <toshok@ximian.com>
4434         * XplatUIX11.cs: after further communication with pdb, we get the
4435         best of both worlds.  SetZOrder working for un-Mapped windows, and
4436         no X errors for un-mapped windows.
4438 2006-08-19  Chris Toshok  <toshok@ximian.com>
4440         * XplatUIX11.cs (SetZOrder): remove the if (!hwnd.mapped) check,
4441         as it was causing pdn toolbars to not have the correct stacking.
4443 2006-08-18  Mike Kestner  <mkestner@novell.com> 
4445         * ListView.cs : guard against negative ClientArea.Width in scrollbar
4446         calculation.  Not sure why control should ever be setting a negative
4447         width though.  Fixes #78931.
4449 2006-08-18  Carlos Alberto Cortez <calberto.cortez@gmail.com>
4451         * ComboBox.cs: Throw ArgumentNullException when adding/modifyng
4452         null items in ObjectCollection class.
4453         * ListBox.cs.: Likewise.
4455 2006-08-18  Atsushi Enomoto  <atsushi@ximian.com>
4457         * ThemeNice.cs, ThemeClearlooks.cs : remove RadioButton_DrawFocus()
4458           as the base method in ThemeWin32Classic should work fine.
4459           Fixed bug #78607.
4461 2006-08-18  Jackson Harper  <jackson@ximian.com>
4463         * Binding.cs: When validating if the value entered doesn't convert
4464         properly reset to the old value.
4465         * RadioButton.cs: Don't fire click when we get focus.
4467 2006-08-18  Jackson Harper  <jackson@ximian.com>
4469         * FileDialog.cs: Paint the selection on the directory combobox the
4470         same way as on MS. 
4472 2006-08-17  Jackson Harper  <jackson@ximian.com>
4474         * ErrorProvider.cs: Don't allow the error control to be selected.
4475         * Control.cs: Don't send the SetFocus messages, the control
4476         activation will do this, and if we do it blindly here validation
4477         does not work.
4479 2006-08-17  Jackson Harper  <jackson@ximian.com>
4481         * Control.cs:
4482         * ContainerControl.cs: Make validation events fire in the correct
4483         order.  TODO: For some reason the first validation event is not
4484         getting fired.
4486 2006-08-17  Mike Kestner  <mkestner@novell.com> 
4488         * ComboBox.cs : some null guarding for ComboListBox.Scroll.
4490 2006-08-17  Mike Kestner  <mkestner@novell.com> 
4492         * ComboBox.cs : implement scroll wheel support for popped-down
4493         state. Fixes #78945. 
4495 2006-08-17  Jackson Harper  <jackson@ximian.com>
4497         * TreeView.cs: Specify treeview actions (old patch that didn't get
4498         committed for some reason).
4499         - Don't let the mouse wheel scroll us too far.  Just want to make
4500         the bottom node visible, not scroll it all the ways to the top.
4502 2006-08-17  Jackson Harper  <jackson@ximian.com>
4504         * XplatUIX11.cs: Mouse wheel events go to the focused window.
4506 2006-08-17  Mike Kestner  <mkestner@novell.com> 
4508         * ComboBox.cs : don't do mouseover selection in simple mode.
4510 2006-08-16  Jackson Harper  <jackson@ximian.com>
4512         * Form.cs: Fire the closing events for all the mdi child windows
4513         when a window is closed.  If the cancel args are set to true, the
4514         main window still gets the event fired, but it doesn't not close.
4515         * MdiWindowManager.cs: Do this closing cleanup in a Closed
4516         handler, instead of when the button is clicked, so cancelling the
4517         close works correctly.
4518         * ComboBox.cs: Send the mouse down to the scrollbar.
4520 2006-08-16  Carlos Alberto Cortez <calberto.cortez@gmail.com>
4522         * ListBox.cs: When passing 'null' to SelectedItem,
4523         set SelectedIndex to -1, to unselect items. This is the
4524         observed behaviour in .Net.
4526 2006-08-16  Peter Dennis Bartok  <pbartok@novell.com> 
4528         * TextBoxBase.cs: Overriding HandleClick to get clicks in spite of
4529           MS flags saying there won't be any. (fixes #78800)
4530         * Control.cs (HandleClick): Made virtual
4532 2006-08-16  Atsushi Enomoto  <atsushi@ximian.com>
4534         * PageSetupDialog.cs : use Yard-Pound units only in en-GB and en-US
4535           cultures. Fixed bug #78399.
4537 2006-08-16  Jackson Harper  <jackson@ximian.com>
4539         * Form.cs: Use the MdiClients MdiChildren property to access
4540         MdiChildren instead of creating the array from the child controls.
4541         * MdiClient.cs: Maintain a separate array of the mdi children, so
4542         that insertion order is maintained when the Z-order is changed.
4544 2006-08-16  Mike Kestner  <mkestner@novell.com> 
4546         * ListView.cs : add an ItemComparer and default to it for sorting.
4547         Fixes #79076, but sorting needs a complete overhaul to be compat with
4548         MS.
4550 2006-08-15  Peter Dennis Bartok  <pbartok@novell.com> 
4552         * XplatUIX11.cs (SetZOrder): Fix debugging leftover (fixes #79080)
4554 2006-08-15  Peter Dennis Bartok  <pbartok@novell.com>
4556         * Hwnd.cs (Mapped): Properly traverse the tree
4558 2006-08-15  Chris Toshok  <toshok@ximian.com>
4560         * Binding.cs: fix PullData/SetPropertyValue.  We don't want to
4561         pass manager.Current.GetType() to ParseData.  It has to be the
4562         property type.  So, hold off doing the ParseData until we're in
4563         SetPropertyValue where we know the type.  This fixes the crash in
4564         #78821 but the textbox is still empty.
4566 2006-08-15  Chris Toshok  <toshok@ximian.com>
4568         * DataGrid.cs:
4569         - when we're scrolling, only call Edit() again if the
4570         current cell is still unobscured. Fixes bug #78927.
4571         - when handling mousedown on a cell, ensure the cell is visible
4572         before calling Edit.
4573         - remove the properties from DataGridRow, and remove the
4574         DataGridParentRow class altogether.
4575         
4577 2006-08-15  Peter Dennis Bartok  <pbartok@novell.com>
4579         * TextBoxBase.cs (set_Text): Don't use base.Text, instead just
4580           fire OnTextChanged by ourselves. There's no point calling base,
4581           we don't set the base value anywhere else. Fixes #78773.
4583 2006-08-15  Carlos Alberto Cortez <calberto.cortez@gmail.com>
4585         * ListBox.cs: Call CollectionChanged when modifying
4586         an item from Items indexer, to update the actual items
4587         in the list box.
4589 2006-08-15  Carlos Alberto Cortez <calberto.cortez@gmail.com>
4591         * PrintDialog.cs: Small fixes for focus and a pair of checks,
4592         to match .Net behaviour.
4594 2006-08-15  Peter Dennis Bartok  <pbartok@novell.com>
4596         * XplatUIX11.cs (SetZOrder): Handle raising toplevel windows
4598 2006-08-15  Peter Dennis Bartok  <pbartok@novell.com> 
4600         * Control.cs: Handle BringToFront for toplevel windows (Fixes #78737)
4602 2006-08-15  Peter Dennis Bartok  <pbartok@novell.com>
4604         * MessageBox.cs: Prevent potential NRE exception.
4605         * TextBoxBase.cs: AutoSize only applies if MultiLine is false. Fixes #78889
4607 2006-08-14  Peter Dennis Bartok  <pbartok@novell.com>
4609         * MessageBox.cs: Calculate the owner of a messagebox, also make
4610           it topmost. Fixes #78753
4612 2006-08-14  Chris Toshok  <toshok@ximian.com>
4614         * XplatUIX11.cs: A couple of fixes so that metacity will let us
4615         programmatically move windows.  first, set the PPosition hint as
4616         well as the USPosition hint.  Second include some code from pdb
4617         that sets the window type to NORMAL when we set the transient for
4618         hint.  This is because, in the absence of a window type, metacity
4619         thinks any window with TransientFor set is a dialog, and refuses
4620         to let us move it programmatically.  fascists.
4622 2006-08-14  Peter Dennis Bartok  <pbartok@novell.com>
4624         * XplatUIX11.cs: When setting normal hints, take into consideration
4625           an different hints previously set so we don't delete them (fixes #78866)
4627 2006-08-12  Chris Toshok  <toshok@ximian.com>
4629         * ToolBarButton.cs: make Layout return a boolean, if something to
4630         do with the button's layout changed.
4632         * ToolBar.cs:
4633         - add another parameter to Redraw, @force, which all existing
4634           calls set to true.
4635         - make the Layout function return a boolean which is true if the
4636           layout has actually changed.  Redraw now uses this (and @force)
4637           to determine when to invalidate.  At present the only place
4638           where @force can be false is the call from OnResize, when
4639           background_image == null.  So, resizing a toolbar when the
4640           layout doesn't change results in no drawing.
4642 2006-08-12  Chris Toshok  <toshok@ximian.com>
4644         * ThemeWin32Classic.cs: fix the bottom right corner painting.  had
4645         the VScrollBar and HScrollbar reversed.  oops.
4647         * DataGrid.cs: fix the logic that assigns sizes to the implicit
4648         scrollbars.  we were assigning them twice (once in
4649         Calc{Horiz,Vertical}Scrollbar, and once in CalcGridAreas),
4650         therefore causing two scrollbar resizes (and redraws?) to happen
4651         per grid resize.
4653 2006-08-12  Chris Toshok  <toshok@ximian.com>
4655         * ToolBarButton.cs: redraw the entire button if the theme tells us
4656         to.
4658         * Theme.cs: add ToolBarInvalidateEntireButton.
4660         * ThemeWin32Classic.cs: we don't need to redraw the entire toolbar
4661         buttons, just the border.
4663         * ThemeNice.cs: redraw the entire toolbar button since we need to
4664         draw the highlight image.
4666         * ThemeClearlooks.cs: the rounded corners of toolbar buttons mean
4667         we need to redraw the entire button (not just the border).
4669 2006-08-11  Peter Dennis Bartok  <pbartok@novell.com>
4671         * TextBoxBase.cs (CalculateScrollbars): Set the proper thumb size
4672           for vertical bars. Fixes the mismatches shown by #78513
4674 2006-08-11  Alexander Olk  <alex.olk@googlemail.com>
4676         * FileDialog.cs: If a saved/remembered path doesn't exist
4677           anymore, fall back to "Desktop".
4679 2006-08-11  Peter Dennis Bartok  <pbartok@novell.com>
4681         * Form.cs (CreateParams): Don't use Parent.Handle unless we have a
4682           parent. It's apparently legal to not have one
4683         * XplatUIX11.cs:
4684           - SetZOrder: Don't try to set Z-Order on an unmapped window
4685           - CreateWindow: 0,0 are legal coordinates for a window. don't move
4686             it unless the coordinates are negative
4688 2006-08-10  Mike Kestner  <mkestner@novell.com>
4690         * ListControl.cs: allow null for DataSource.  Clear DisplayMember
4691         when setting to null per msdn docs.  Fixes #78854.
4693 2006-08-10  Chris Toshok  <toshok@ximian.com>
4695         * Menu.cs, MainMenu.cs, MenuAPI.cs: get rid of most of the
4696         flickering by setting a clip rectangle on the Graphics when we
4697         need to redraw just a particular menuitem.  Also, rename "OnClick"
4698         to "OnMouseDown" to reflect what it actually is.
4699         
4700         * Form.cs: track the OnMouseDown change.
4702 2006-08-10  Peter Dennis Bartok  <pbartok@novell.com>
4704         * CommonDialog.cs: Properly inherit the CreateParams from the form
4705           and only change what we need. Fixes #78865
4707 2006-08-10  Chris Toshok  <toshok@ximian.com>
4709         * ToolBar.cs, ToolBarButton.cs: fix the redraw-on-highlight
4710         flickering in flat mode (and most of the flickering in general) by
4711         only invalidating the button border (and not the entire rectangle)
4712         when the state changes.  A couple of cases still flicker:
4713         ToggleButtons, and the dropdown arrow case when the user mouse
4714         ups.
4716 2006-08-10  Alexander Olk  <alex.olk@googlemail.com>
4718         * X11Keyboard.cs: Fixed handling of the Del key on the cursorblock
4719           for german keyboards. Numlock state shouldn't affect the behaviour
4720           of the Del key. Fixes bug #78291.
4722 2006-08-10  Chris Toshok  <toshok@ximian.com>
4724         * ListControl.cs: remove the items.Clear line from BindDataItems,
4725         as this is the first thing done by both subclasses in their
4726         SetItemsCore overrides.  Also, add a ItemChanged handler, and when
4727         passed -1, refresh the list.  This gets databinding working when
4728         the datasource is set on the list before the datasource is
4729         populated (as in wf-apps/ReportBuilder.)
4731         * ComboBox.cs: remove the argument to BindDataItems.  This call
4732         should really go away, and be initiated by the ListControl code.
4734         * ListBox.cs: same.
4736 2006-08-09  Peter Dennis Bartok  <pbartok@novell.com>
4738         * TextControl.cs (Document.ctor): Initialize caret so we don't crash
4739           if no data is in the document when the control is displayed
4741 2006-08-09  Peter Dennis Bartok  <pbartok@novell.com> 
4743         * TextBoxBase.cs: Don't try moving the caret if we don't have a window
4744           yes (fixes #78806)
4745         * TextControl.cs: 
4746           - PositionCaret: Allow positioning of caret but don't call methods 
4747             requiring a handle if the window isn't created yet
4748           - CharIndexToLineTag: Fix ending loop early error. Lines is 1 based
4749           - owner_HandleCreated: Don't position the caret, just update it's 
4750             location. User might have already set a different position
4752 2006-08-09  Peter Dennis Bartok  <pbartok@novell.com>
4754         * XplatUIWin32.cs: Don't use the desktop as basis for foster-parented
4755           windows. Screws up the returned coordinates for child windows. 
4756           Fixes #78825. I'm hoping this doesn't break something, since the
4757           code was explicitly put in 8 months ago, but no bug was attached.
4758           Menus still seem to work properly.
4760 2006-08-08  Chris Toshok  <toshok@ximian.com>
4762         * DataGrid.cs: make BeginInit/EndInit actually do what they're
4763         supposed to do - delay data binding until the EndInit call.  Also,
4764         make the table style collection's CollectionChangeAction.Refresh
4765         work properly.
4767         * GridTableStylesCollection.cs: raise a CollectionChangeEvent
4768         (with action = Refresh) when a consituent table's MappingName is
4769         changed.
4771 2006-08-08  Chris Toshok  <toshok@ximian.com>
4773         * ToolBarButton.cs: in set_Text, call Parent.Redraw, not
4774         Invalidate, since changing the text can change the size of the all
4775         toolbar buttons.
4777 2006-08-08  Peter Dennis Bartok  <pbartok@novell.com>
4779         * Form.cs (AddOwnedForm): Still need to add the form to our listif
4780           we don't have it yet
4782 2006-08-08  Chris Toshok  <toshok@ximian.com>
4784         * PrintControllerWithStatusDialog.cs: don't .Close() the status
4785         dialog, as this causes X errors later on, since we actually
4786         destroy the window.  Instead, .Hide() it.
4788 2006-08-08  Peter Dennis Bartok  <pbartok@novell.com>
4790         * ComboBox.cs: Added focus reflection for popup window
4791         * XplatUIX11.cs: 
4792           - Removed transient setting for non-app windows for now, not sure it
4793             was needed
4794           - Fixed logic checking if we have captions when deciding 
4795             override_redirect, WS_CAPTION is two bits and a 0 check was not
4796             sufficient
4797           - Removed the WINDOW_TYPE stuff, it was unneeded and making things
4798             complicated
4799         * Form.cs: 
4800           - AddOwnedForm: Don't just add the form to the list, call the property
4801             to ensure the driver is informed about the ownership as well
4802           - CreateHandle: Set the TopMost status in the driver if we have an owner
4803         * XplatUI.cs: Fixed debug statement
4805 2006-08-08  Jonathan Pobst <monkey@jpobst.com>
4806         * ButtonRenderer.cs, CheckBoxRenderer.cs, ComboBoxRenderer.cs
4807           GroupBoxRenderer.cs, ProgressBarRenderer.cs, RadioButtonRenderer.cs,
4808           ScrollBarRenderer.cs, TabRenderer.cs, TextBoxRenderer.cs, 
4809           TrackBarRenderer.cs: Make constructor private.
4810         * ProfessionalColors.cs, ProfessionalColorTable.cs: Fix misnamed properties.
4811         * ProfessionalColorTable.cs: Make properties virtual.
4813 2006-08-06  Duncan Mak  <duncan@novell.com>
4815         * NumericUpDown.cs (Value): Don't call OnValueChanged if the value
4816         is not changing.
4818 2006-08-04  Jonathan Pobst <monkey@jpobst.com>
4819         * ButtonRenderer.cs, CheckBoxRenderer.cs, ComboBoxRenderer.cs
4820           GroupBoxRenderer.cs, ProfessionalColors.cs, ProfessionalColorTable.cs,
4821           ProgressBarRenderer.cs, RadioButtonRenderer.cs, ScrollBarRenderer.cs,
4822           TabRenderer.cs, TextBoxRenderer.cs, TextRenderer.cs, TrackBarRenderer.cs:
4823           Initial import of new 2.0 classes.
4825 2006-08-04  Jonathan Pobst <monkey@jpobst.com>
4826         * Application.cs: Add 2.0 VisualStyles properties.
4828 2006-08-04  Jonathan Pobst <monkey@jpobst.com>
4829         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs, XplatUIWin32.cs,
4830           XplatUIX11.cs: Create property to allow access to existing private
4831           variable "themes_enabled"
4833 2006-08-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
4835         * ImageListStreamer.cs: generate the MemoryStreams with the exact BMP
4836         file size, as otherwise our class libraries fail using windows. Fixes
4837         bug #78759.
4839 2006-08-04  Jackson Harper  <jackson@ximian.com>
4841         * Form.cs:
4842         * XplatUIX11.cs: Move the toolwindow window manager creation into
4843         the X11 driver, this way on win32 we can let windows create/handle
4844         the toolwindows.
4846 2006-08-04  Carlos Alberto Cortez <calberto.cortez@gmail.com>
4848         * PrintDialog.cs: Remove some redundant checks, add some others,
4849         clean some code, and move the focus to the text boxes when the
4850         values are incorrect.
4852 2006-08-04  Alexander Olk  <alex.olk@googlemail.com>
4854         * FontDialog.cs: Remove Form.MinimumSize. It's not needed.
4856 2006-08-03  Alexander Olk  <alex.olk@googlemail.com>
4858         * NumericUpDown.cs: Setting the Minimum and Maximum is now
4859           handled correctly. Fixes bug #79001.
4861 2006-08-03  Carlos Alberto Cortez <calberto.cortez@gmail.com>
4863         * PrintDialog.cs: The "Copies" numeric up down must have
4864         set the Minimum property to 1; only if the value is bigger
4865         than 1, activate "Collate" check box. This is the behaviour of .Net.
4866         Also modify the Document elements only if it is not null.
4868 2006-08-03  Jackson Harper  <jackson@ximian.com>
4870         * TreeNodeCollection.cs: Fix copyto to use the correct nodes
4871         length. (We have a larger array then actual node count).
4872                 
4873 2006-08-03  Jackson Harper  <jackson@ximian.com>
4875         * ComboBox.cs: Don't show selection by default.
4876         - The SelectAll isn't needed here, since the focus code should do
4877         that
4878         - DDL style lists to manual selection drawing, so when they
4879         get/lose focus they have to invalidate.
4881 2006-08-03  Peter Dennis Bartok  <pbartok@novell.com>
4883         * TextBoxBase.cs: Don't always show all selections by default.
4885 2006-08-03  Jonathan Pobst  <monkey@jpobst.com>
4886         * ControlUpdateMode.cs, DataSourceUpdateMode.cs,
4887           HelpNavigator.cs, WebBrowserEncryptionLevel.cs:
4888           Fixed various typos.
4890 2006-08-03  Alexander Olk  <alex.olk@googlemail.com>
4892         * Control.cs: Removing the controls in a ControlCollection with
4893           Clear now hides the controls as expected. Fixes bug #78804. 
4895 2006-08-03  Jackson Harper  <jackson@ximian.com>
4897         * Control.cs: Revert previous focus patch, it breaks reflector.
4899 2006-08-03  Jackson Harper  <jackson@ximian.com>
4901         * ComboBox.cs: Cleanup selection and focus with the combobox.
4902         This also eliminates some duplicated keyboard code, since now
4903         everything is handled by the main class.
4904         - Make list selection work on mouse up instead of down, to match
4905         MS.
4907 2006-08-02  Jackson Harper  <jackson@ximian.com>
4909         * Control.cs: Setting focus needs to go through the whole
4910         selection mechanism.
4912 2006-08-02  Chris Toshok  <toshok@ximian.com>
4914         * PrintPreviewDialog.cs: change MinimumSize to use
4915         base.MinimumSize so it works.
4917 2006-08-02  Peter Dennis Bartok  <pbartok@novell.com>
4919         * TextControl.cs:
4920           - UpdateCaret: Added sanity check in case caret isn't defined yet
4921           - Line.Delete: Now updating selection and caret markers if we're
4922             transfering a node (Properly fixes #78323)
4923           - SetSelectionEnd: Added sanity check
4924         * TextBoxBase.cs: Removed broken attempt to fix #78323
4926 2006-08-01  Chris Toshok  <toshok@ximian.com>
4928         * PrintPreviewDialog.cs: the CancelEventArgs stuff surrounding the
4929         Close() call is handled in Form, not here.
4931 2006-08-01  Chris Toshok  <toshok@ximian.com>
4933         * Theme.cs, ThemeWin32Classic.cs: fix the PrintPreviewControl
4934         layout/rendering.
4936         * PrintPreviewDialog.cs: add scrollbars, and add an image cache
4937         for sizes < 100% zoom.  The code now aggressively attempts to keep
4938         from calling document.Print (), and tries not to use the scaling
4939         g.DrawImage whenever possible (it still does if you scale to >
4940         100%, since usually that involves huge images).
4942         * PrintPreviewControl.cs: hook up the close button.
4944 2006-08-01  Jonathan Pobst  <monkey@jpobst.com>
4945         * ColumnClickEventHandler.cs, DrawItemEventHandler.cs,
4946           ItemChangedEventHandler.cs, ItemCheckEventHandler.cs,
4947           ItemDragEventHandler.cs, LabelEditEventHandler.cs,
4948           LinkClickedEventHandler.cs, LinkLabelLinkClickedEventHandler.cs,
4949           MeasureItemEventHandler.cs, MethodInvoker.cs, PaintEventHandler.cs,
4950           PropertyTabChangedEventHandler.cs, PropertyValueChangedEventHandler.cs,
4951           SelectedGridItemChangedEventHandler.cs, ToolBarButtonClickEventHandler.cs:
4952           Removed [Serializable] for 2.0 Event Handlers.
4954 2006-07-31  Jackson Harper  <jackson@ximian.com>
4956         * TextBoxBase.cs: Make ShowSelection invalidate when changed.
4957         * TextControl.cs: Uncomment out the body of this method.
4959 2006-07-31  Alexander Olk  <alex.olk@googlemail.com>
4961         * XplatUIX11.cs: Use the correct cursor shapes for arrow and default
4962           standard cursors.
4964 2006-07-31  Peter Dennis Bartok  <pbartok@novell.com>
4966         * TextBoxBase.cs: Added internal property ShowSelection to allow controls
4967           that embed TextBox and need selections visible even if textbox is not
4968           focused to enforce that behaviour.
4969         * TextControl.cs (Draw): Use ShowSelection instead of has_focus to determine
4970           selection drawing
4972 2006-07-31  Peter Dennis Bartok  <pbartok@novell.com>
4974         * TextControl.cs:
4975           - Added new SetSelectionStart/SetSelectionEnd overloads
4976           - Fixed viewport width assignment to be accurate
4977           - Adjusted alignment line shift calculations to allow cursor on right
4978             aligned lines to be always visible at the right border (like MS)
4979         * TextBoxBase.cs:
4980           - SetBoundsCore: Re-adjust caret location after resize (Fixes #78323)
4981           - TextBoxBase_SizeChanged: recalculating canvas on size changes
4982           - CalculateScrollBars: Use ViewPort size instead of window size, to
4983             properly consider space occupied by the border and scrollbars 
4984             (Fixes #78661)
4985           - hscroll_ValueChanged, vscroll_ValueChanged: Fixed scroll 
4986             calculations; no longer leaves artifacts
4987           - CaretMoved: Adjusted window scrolling to match MS and fixed several
4988             calculation bugs (Still missing right/center align calculations)
4990 2006-07-31  Peter Dennis Bartok  <pbartok@novell.com> 
4992         * XPlatUIWin32.cs: Made ScrollRectEx a bit more flexible, and removed
4993           use of both scroll rect and clip rect, as they do the same.
4995 2006-07-31  Peter Dennis Bartok  <pbartok@novell.com>
4997         * Control.cs (WM_CHAR WndProc): 2.0 profile allows changing the key 
4998           in the event handler (fixes #78912)
5000 2006-07-31  Chris Toshok  <toshok@ximian.com>
5002         * ThemeWin32Classic.cs: use grid.RowsCount here instead of
5003         grid.ListManager.Count, since grid.ListManager might be null.
5004         This of course begs the question "why are we drawing rows for a
5005         grid with no list manager (and therefor no rows)?"  Fixes the
5006         crash in bug #78929.
5008 2006-07-31  Chris Toshok  <toshok@ximian.com>
5010         * RelatedPropertyManager.cs: Don't always chain up to the parent
5011         ctor.  instead, call SetDataSource if the parent's position is !=
5012         -1.  Fixes the crash in #78822.
5014 2006-07-31  Chris Toshok  <toshok@ximian.com>
5016         * DataGrid.cs (get_ListManager): use field instead of property
5017         accessors for datasource and datamember.
5018         (RowsCount): make internal again.
5019         (OnMouseDown): end edits before resizing columns/rows.
5020         (OnMouseUp): restart edits after resizing columns/rows.
5022 2006-07-30  Peter Dennis Bartok  <pbartok@novell.com>
5024         * XplatUIX11.cs: Default cursor cannot be 0 or it will not get set.
5025           This fixes the situation where the last set cursor is displayed
5026           whenever the mouse is over scrollbars.
5028 2006-07-30  Carlos Alberto Cortez <calberto.cortez@gmail.com>
5030         * PrintDialog.cs: Fix the behaviour of PrinterSettings and
5031         Document properties, as well as initial values.
5033 2006-07-29  Peter Dennis Bartok  <pbartok@novell.com>
5035         * XplatUIWin32.cs (SetBorderStyle): Setting both border
5036           and ClientEdge results in a 3-pixel border, which is
5037           wrong.
5039 2006-07-28  Jackson Harper  <jackson@ximian.com>
5041         * TreeNodeCollection.cs: Fix the clear method.
5042         - Fix the Shrink also
5044 2006-07-27  Jackson Harper  <jackson@ximian.com>
5046         * TreeView.cs: Make sure the visible order is computed when we
5047         attempt to size the scrollbars (for trees that mess with the
5048         scrolling when they shouldn't.
5049         - Make sure to give the scrollbars valid values.
5051 2006-07-26  Peter Dennis Bartok  <pbartok@novell.com> 
5053         * XplatUIX11.cs: Move motion compression code to where it
5054           has less performance impact
5056 2006-07-26  Jackson Harper  <jackson@ximian.com>
5058         * UpDownBase.cs: When the control is selected make the child
5059         controls non selectable, so that a click on them won't do a
5060         focus/unfocus cycle.
5061         - Don't give focus to the text box when the spinner is selected.
5062         * XEventQueue.cs: Peek on both the x11 queue and the lock queue.
5064 2006-07-26  Chris Toshok  <toshok@ximian.com>
5066         * ThemeWin32Classic.cs: add print preview rendering.  I'm not
5067         satisfied with this solution.  If the bitmaps are small, we should
5068         just cache them in the PrintPreviewDialog and draw them here.
5069         Also, the layout is broken for the 2-up and 3-up cases.
5071         * Theme.cs: add PrintPReviewControlPaint.
5073         * PrintPreviewDialog.cs: first pass implementation.
5075         * PrintPreviewControl.cs: first pass implementation.  No
5076         scrollbars yet.
5078         * PrintDialog.cs: only validate fields if that particular portion
5079         of the UI is enabled.  Also, set the document's controller to a
5080         PrintControllerWithStatusDialog wrapping the document's print
5081         controller.
5083         * PrintControllerWithStatusDialog.cs: if we're printing to a file,
5084         bring up a SaveFileDialog (i hope we don't want to match the
5085         behavior of the crappy windows file entry) and set the
5086         PrinterSettings.PrintFileName accordingly.
5088 2006-07-26  Jackson Harper  <jackson@ximian.com>
5090         * ContainerControl.cs: Add a field that disables auto selecting
5091         the next control in a container when the container is activated.
5092         * UpDownBase.cs: Don't select the text box when the up down is
5093         selected.
5095 2006-07-26  Peter Dennis Bartok  <pbartok@novell.com> 
5097         * XEventQueue.cs: Added methods for peeking (used for compression
5098           of successive events)
5099         * XplatUIX11.cs (GetMessage): We're now compressing consecutive
5100           mouse move events (fixes #78732)
5102 2006-07-25  Jackson Harper  <jackson@ximian.com>
5104         * UpDownBase.cs: Use an internal class for the textbox so that we
5105         can control focus.  the updown control should always have focus,
5106         if either the text area or the buttons are clicked.
5107         - Send the key messages to the textbox, since it never actually
5108         has focus
5109         - Activate and decativate the textbox caret.
5111 2006-07-24  Jackson Harper  <jackson@ximian.com>
5113         * Control.cs: Use the directed select when selecting a control,
5114         this way the container controls override will get called and the
5115         whole ActiveControl chain will get triggered.  TODO: probably need
5116         to make sure this gets done everywhere instead of the old
5117         Select(Control).
5118         * ContainerControl.cs: Implement the directed Select method to
5119         find and activate the correct child control.    
5120         
5121 2006-07-22  Mike Kestner  <mkestner@novell.com>
5123         * Form.cs: use Control.MousePosition for NCLBUTTONDOWN in the menu
5124         menu handling code so that clicks without a grab work too.
5125         [Fixes #78914]
5127 2006-07-22  Alexander Olk  <alex.olk@googlemail.com>
5129         * FileDialog.cs: Enable the BackButton when dirstack has one element.
5130           Added some small optimizations.
5132 2006-07-21  Matt Hargett  <matt@use.net>
5134         * Control.cs: Implemented 2.0 MinimumSize/MaximumSize properties
5136 2006-07-21  Peter Dennis Bartok  <pbartok@novell.com> 
5138         * Control.cs (GetNextControl): Fixes to make all of Jackson's unit 
5139           tests pass and match MS in some strange border cases.
5141 2006-07-21  Chris Toshok  <toshok@ximian.com>
5143         * ThemeWin32Classic.cs: handle drawing of the relation links and
5144         parent row buttons.
5146         * Theme.cs: change args to DataGridPaintParentRow.
5148         * DataGrid.cs: Don't use controls for the relation links and
5149         parent buttons, so we have to handle all their interactions in
5150         MouseMove, MouseDown, MouseUp, etc.  Also, store a lot more stuff
5151         when we're navigating through child tables, so we can reinstate
5152         selection, expanded state, current cell, etc.
5154 2006-07-20  Chris Toshok  <toshok@ximian.com>
5156         * ToolBar.cs: When we redraw a button, for whatever reason,
5157         there's no reason to redraw the entire toolbar.  Also, don't call
5158         Control.Refresh from within Redraw, as it's much heavier than
5159         Invalidate (which is really what we want).
5161 2006-07-20  Chris Toshok  <toshok@ximian.com>
5163         * DataGrid.cs, CurrencyManager.cs, DataGridColumnStyle.cs,
5164         DataGridTextBoxColumn.cs, DataGridTextBox.cs,
5165         ThemeWin32Classic.cs, ListControl.cs: After staring at stack
5166         traces from within a debug IBindingList datasource
5167         (in mono/winforms/datagrid) for *days*, I've finally gotten things
5168         to work in a similar fashion.
5170 2006-07-20  Carlos Alberto Cortez <calberto.cortez@gmail.com>
5172         * ListBox.cs: Don't call Sort () when setting 
5173         the Sorted property to false (avoid an unnecessary sort).
5175 2006-07-20  Carlos Alberto Cortez <calberto.cortez@gmail.com>
5177         * ListControl.cs: DataSource should throw an ArgumentException
5178         instead of a normal exception when the argument is not of the 
5179         correct type.
5181 2006-07-20  Mike Kestner  <mkestner@novell.com>
5183         * Control.cs: add InternalPreProcessMessage to allow us to steal
5184         key events before MWF gets its paws on them.  Adapted from a
5185         suggestion by eno.
5186         * ToolBar.cs: add GotLostFocus handing for flat toolbars, with 
5187         up/down/left/right navigation. Override the new internal control
5188         method to steal the events since they never make it to WndProc.
5189         * ToolBarButton.cs: don't worry about pushed when setting hilight
5190         since the drawing code prefers pushed to hilight. Invalidate on 
5191         Hilight changes. Fixes #78547 and #78525.
5193 2006-07-20  Peter Dennis Bartok  <pbartok@novell.com> 
5195         * ScrollableControl.cs: Consider AutoScrollMinSize when calculating
5196           the canvas size. Fixes #78868
5198 2006-07-20  Peter Dennis Bartok  <pbartok@novell.com>
5200         * Splitter.cs: Track requested split position until first layout
5201           is performed. Fixes #78871
5203 2006-07-20  Peter Dennis Bartok  <pbartok@novell.com> 
5205         * Application.cs: Removed code that forces 1.x for the version
5206           number if the version started with 0. Not sure why that code was
5207           there and I couldn't find any bugs that indicated we needed it.
5208           Fixes #78869
5210 2006-07-20  Alexander Olk  <alex.olk@googlemail.com>
5212         * ThemeWin32Classic.cs: Don't throw a NotImplementedException in
5213           ResetDefaults(), just write some output to the console until it's
5214           implemented. Fixes bug #78907 for now. Eliminated two warnings.
5216 2006-07-19  Jonathan Chambers  <joncham@gmail.com>
5218         * PropertyGridView.cs: set StartPosition of drop down forms
5219         so they appear in correct initial spot.  Fixes #78190.
5221 2006-07-19  Mike Kestner  <mkestner@novell.com>
5223         * ThemeWin32Classic.cs: use parent background color when drawing
5224         flat toolbars.  Restructure the conditionals to make sure non-flat
5225         non-Divider toolbars are filled too.  Fixes #78837.
5227 2006-07-19  Mike Kestner  <mkestner@novell.com>
5229         * ListBox.cs: Sort on collection changes even if the handle
5230         isn't created yet.  Fixes #78813.
5232 2006-07-18  Carlos Alberto Cortez <calberto.cortez@gmail.com>
5234         * ListControl.cs: DisplayMember should never be null,
5235         and now we assign String.Empty when null is passed to it (this
5236         is the .Net way).
5238 2006-07-17  Mike Kestner  <mkestner@novell.com>
5240         * ListViewItem.cs: restructure Font and subitem Font handling 
5241         to hold a specific font and refer back to owner on null.
5242         Fixes #78761.
5244 2006-07-17  Mike Kestner  <mkestner@novell.com>
5246         * ToolBar.cs: bandaid for side-effect of previous patch which was
5247         discarding explicit heights for non-AutoSize toolbars.  Need to
5248         extend my format tester to deal with AutoSize=false. Fixes #78864.
5250 2006-07-15  Jackson Harper  <jackson@ximian.com>
5252         * LabelEditTextBox.cs:
5253         * TreeView.cs: Use a new LabelEdit class for node editing, this
5254         class automatically 'closes' itself when it gets the enter key or
5255         loses focus.
5256         - Use the client rectangle when setting the trees scrollbars, so
5257         border style is taken into account.
5258         
5259 2006-07-14  Jackson Harper  <jackson@ximian.com>
5261         * TreeNode.cs:
5262         * TreeView.cs: Make the editing work similar to MSs, firing the
5263         events correctly and ending edits correctly.
5265 2006-07-14  Mike Kestner  <mkestner@novell.com>
5267         * ToolBarButton.cs:
5268         * ToolBar.cs: layout restructuring and redraw enhancements to support
5269         formatting changes gracefully, like setting TextAlign, ImageList, 
5270         ButtonSize, and Appearance.  Handles explicit button sizing quirks
5271         of the MS controls.  Things like flat toolbars ignoring button size
5272         but becoming constant sized at the largest button's size.  Normal
5273         toolbars with an image set cannot be shrunk smaller than the image,
5274         but text can be clipped/ignored.
5275         * ThemeWin32Classic.cs: don't draw text if text_rect height or width
5276         is zero.  Seems like DrawString should be smart enough to not put
5277         anything on screen though. Also trim labels and ellipsize at the char
5278         boundary, not word.
5279         Fixes #78711 and #78483.
5281 2006-07-14  Alexander Olk  <alex.olk@googlemail.com>
5283         * FolderBrowserDialog.cs: Disable "New Folder" button and
5284           "New Folder" contextmenu menuitem if a folder like "My Computer"
5285           is selected.
5287 2006-07-14  Alexander Olk  <alex.olk@googlemail.com>
5289         * FileDialog.cs: Don't create a new folder in "MyComputer" folder.
5290         * FolderBrowserDialog.cs:
5291           - Use MWFConfig to store and read size and position settings
5292           - Added code to create a new folder (button or context menu).
5293             Use TreeView labeledit to change the name of the new folder.
5295 2006-07-14  Jackson Harper  <jackson@ximian.com>
5297         * TreeView.cs: Raise the OnAfterLabelEdit event correctly.  Also,
5298         when the tree is scrolled we end editing.
5300 2006-07-14  Alexander Olk  <alex.olk@googlemail.com>
5302         * ThemeWin32Classic.cs: Fixed position of CPDrawScrollButton Up and
5303           Down arrows
5305 2006-07-14  Jonathan Pobst  <monkey@ipobst.com> 
5307         WebBrowserProgressChangedEventHandler.cs, BindingCompleteEventArgs.cs,
5308         BindingCompleteEventHandler.cs, BindingManagerDataErrorEventArgs.cs,
5309         BindingManagerDataErrorEventHandler.cs, CacheVirtualItemsEventArgs.cs,
5310         CacheVirtualItemsEventHandler.cs, ColumnReorderedEventArgs.cs,
5311         ColumnReorderedEventHandler.cs, ColumnWidthChangedEventArgs.cs,
5312         ColumnWidthChangedEventHandler.cs, ColumnWidthChangingEventArgs.cs,
5313         ColumnWidthChangingEventHandler.cs, FormClosedEventArgs.cs,
5314         FormClosedEventHandler.cs, FormClosingEventArgs.cs,
5315         FormClosingEventHandler.cs, ItemCheckedEventArgs.cs,
5316         ItemCheckedEventHandler.cs, ListControlConvertEventArgs.cs,
5317         ListControlConvertEventHandler.cs, ListViewItemMouseHoverEventArgs.cs,
5318         ListViewItemMouseHoverEventHandler.cs, ListViewItemSelectionChangedEventArgs.cs,
5319         ListViewItemSelectionChangedEventHandler.cs,
5320         ListViewVirtualItemsSelectionRangeChangedEventArgs.cs,
5321         ListViewVirtualItemsSelectionRangeChangedEventHandler.cs,
5322         MaskInputRejectedEventArgs.cs, MaskInputRejectedEventHandler.cs,
5323         PopupEventArgs.cs, PopupEventHandler.cs, PreviewKeyDownEventArgs.cs,
5324         PreviewKeyDownEventHandler.cs, RetrieveVirtualItemEventArgs.cs,
5325         RetrieveVirtualItemEventHandler.cs, SearchForVirtualItemEventArgs.cs,
5326         SearchForVirtualItemEventHandler.cs, SplitterCancelEventArgs.cs,
5327         SplitterCancelEventHandler.cs, TabControlCancelEventArgs.cs, 
5328         TabControlCancelEventHandler.cs, TabControlEventArgs.cs, 
5329         TabControlEventHandler.cs, TableLayoutCellPaintEventArgs.cs,
5330         TableLayoutCellPaintEventHandler.cs, ToolStripDropDownClosedEventArgs.cs,
5331         ToolStripDropDownClosedEventHandler.cs, ToolStripDropDownClosingEventArgs.cs,
5332         ToolStripDropDownClosingEventHandler.cs, TreeNodeMouseClickEventArgs.cs,
5333         TreeNodeMouseClickEventHandler.cs, TreeNodeMouseHoverEventArgs.cs,
5334         TreeNodeMouseHoverEventHandler.cs, TypeValidationEventArgs.cs,
5335         TypeValidationEventHandler.cs, WebBrowserDocumentCompletedEventArgs.cs,
5336         WebBrowserDocumentCompletedEventHandler.cs, WebBrowserNavigatedEventArgs.cs,
5337         WebBrowserNavigatedEventHandler.cs, WebBrowserNavigatingEventArgs.cs,
5338         WebBrowserNavigatingEventHandler.cs, 
5339         WebBrowserProgressChangedEventArgs.cs: New 2.0 Event Handlers
5341 2006-07-14  Jonathan Pobst  <monkey@ipobst.com>
5343         MergeAction.cs, PowerLineStatus.cs, PowerState.cs, PreProcessControlState.cs,
5344         RichTextBoxLanguageOptions.cs, ScreenOrientation.cs, ScrollOrientation.cs,
5345         SearchDirectionHint.cs, SystemParameter.cs, TabControlAction.cs,
5346         TableLayoutPanelCellBorderStyle.cs, TextDataFormat.cs, TextImageRelation.cs,
5347         ToolStripDropDownCloseReason.cs, ToolStripDropDownDirection.cs,
5348         ToolStripGripDisplayStyle.cs, ToolStripGripStyle.cs,
5349         ToolStripItemAlignment.cs, ToolStripItemDisplayStyle.cs,
5350         ToolStripItemImageScaling.cs, ToolStripItemOverflow.cs,
5351         ToolStripItemPlacement.cs, ToolStripLayoutStyle.cs,
5352         ToolStripManagerRenderMode.cs, ToolStripRenderMode.cs,
5353         ToolStripStatusLabelBorderSides.cs, ToolStripTextDirection.cs,
5354         ToolTipIcon.cs, TreeNodeStates.cs, TreeViewDrawMode.cs,
5355         TreeViewHitTestLocations.cs, UnhandledExceptionMode.cs, ValidationConstraints.cs,
5356         WebBrowserEncryptionLevel.cs, WebBrowserReadyState.cs, WebBrowserRefreshOption.cs,
5357         ArrowDirection.cs, AutoCompleteMode.cs, AutoCompleteSource.cs, AutoSizeMode.cs,
5358         AutoValidate.cs, BatteryChargeStatus.cs, BindingCompleteContext.cs,
5359         BindingCompleteState.cs, CloseReason.cs, ColumnHeaderAutoResizeStyle.cs,
5360         ControlUpdateMode.cs, DataSourceUpdateMode.cs, DockingBehavior.cs,
5361         FixedPanel.cs, FlowDirection.cs, GetChildAtPointSkip.cs,
5362         HtmlElementInsertionOrientation.cs, InsertKeyMode.cs, ListViewHitTestLocations.cs,
5363         ListViewItemStates.cs, MaskFormat.cs: Added
5365 2006-07-13  Jonathan Chambers  <joncham@gmail.com>
5367         * PropertyGridView.cs: Fix keyboard navigation of drop down.
5368         Patch from eno for bug 78558.
5369         
5370 2006-07-13  Jackson Harper  <jackson@ximian.com>
5372         * TreeView.cs: When an edit is finished make sure that the
5373         selected node is visible.
5374         - When setting the top/bottom use the scrollbars is_visible, so
5375         everything will be set correctly even if the tree isn't visible
5376         yet.
5378 2006-07-13  Jackson Harper  <jackson@ximian.com>
5380         * ComboBox.cs: Revert the item->index part of my previous patch.
5381         * TreeView.cs: Use LostFocus instead of Leave for detecting when
5382         the edit box has lost focus (duh).
5383         - Just make the edit box not visible when we get return, that will
5384         take the focus, which will call EndEdit
5385         * TreeNode.cs When we start editing, notify the treeview.
5387 2006-07-12  Jackson Harper  <jackson@ximian.com>
5389         * ComboBox.cs: Clear out old items before setting the item list.
5390         This prevents databound controls from having their items added
5391         twice.
5392         - Switch the combobox to use indices whereever possible instead of
5393         using Item's.  This allows usto navigate through lists that have
5394         more then one item with the same string value (ie a, b, b, a).
5395         - Scroll the listboxes scrollbar when a non visible item is
5396         highlighted
5397         - Allow keypress to cycle through all the possible values. For
5398         example if you have b1, b2, b3 and hold down the B key all the
5399         values will be cycled through.
5400         
5401 2006-07-12  Jackson Harper  <jackson@ximian.com>
5403         * TextBoxBase.cs:
5404         * ListView.cs: Don't need to override SETFOCUS anymore, we can do
5405         this using the internal methods.
5406         * Control.cs: Add OnGotFocusInternal.  A new method that allows
5407         controls to "override" OnGotFocus and change focus behavior if
5408         needed.
5409         - Same thing for LostFocus
5410         * ComboBox.cs: Pass off focus to the text control properly.
5412 2006-07-12  Alexander Olk  <alex.olk@googlemail.com>
5414         * FileDialog.cs: Added GetFoldersOnly to MWFVFS
5415         * FolderBrowserDialog.cs: Almost a complete rewrite.
5416           - Better support for Environment.Specialfolders
5417           - Added support for MWFVFS
5418           - Made setting SelectedPath work
5420 2006-07-12  Jackson Harper  <jackson@ximian.com>
5422         * Control.cs: Optimze getting all the controls.
5424 2006-07-11  Jackson Harper  <jackson@ximian.com>
5426         * ContainerControl.cs: Override SETFOCUS in the container control,
5427         so that it is not selected on mouse click.
5429 2006-07-11  Peter Dennis Bartok  <pbartok@novell.com> 
5431         * LinkLabel.cs: Hack to handle Shift-Tabbing to the linklabel. 
5432           Hopefully we will have a better way once all of focus is complete.
5434 2006-07-11  Peter Dennis Bartok  <pbartok@novell.com>
5436         * ThemeWin32Classic.cs: Commented out some debug code and fixed
5437           a compile error with csc.
5439 2006-07-11  Jackson Harper  <jackson@ximian.com>
5441         * Control.cs: When hiding a control only select the next control
5442         if the current control was focused.
5443         - Don't handle enter/leave when setting/killing focus, this is
5444         done by the container control.
5445         - Remove is_selected, it's not needed anymore.
5446         - Add utility methods for selecting a child control, and for
5447         firing the Enter/Leave events.
5448         * ContainerControl.cs: When a control is activated fire the
5449         enter/leave events.
5450         - Don't wrap when processing the tab key, so that focus can be
5451         moved outside of the container.
5452         - Use the correct active control
5454 2006-07-11  Jackson Harper  <jackson@ximian.com>
5456         * ComboBox.cs: Remove some debug code that was blinding me.
5457         * UpDownBase.cs: These controls actually aren't implicit, they are
5458         visible to the user.
5460 2006-07-10  Chris Toshok  <toshok@ximian.com>
5462         * DataGrid.cs: move back to the is_adding boolean field.  god i
5463         hate this is_editing/is_adding/is_changing stuff.
5465 2006-07-10  Chris Toshok  <toshok@ximian.com>
5467         * DataGridTableStyle.cs: just check if the property type is bool.
5468         if it is, use DataGridBoolColumn, otherwise DataGridTextBoxColumn.
5469         Don't use CanRenderType.
5471         * DataGridTextBoxColumn.cs: set the value to DBNull.Value, not "",
5472         if our text == NullText.  Remove CanRenderType.
5474         * DataGridBoolColumn.cs: nuke CanRenderType.
5476         * DataGrid.cs: reenable some code to end the current edit inside
5477         of set_CurrentCell.  This fixes the other 1.1.16 regression.
5478         Also, remove rowhdrs_maxheight and just use rowhdrs_area.Height.
5479         Also, remove the visible_row_count arg from CalcRowHeaders, since
5480         we don't need to worry about the actual height of the area.
5482 2006-07-10  Chris Toshok  <toshok@ximian.com>
5484         * DataGridTextBoxColumn.cs: if when we Commit we're in navigate
5485         mode, just return.
5487         * DataGridTextBox.cs: change "isedit" to "isnavigating" to reflect
5488         the real sense of the IsInEditOrNavigateMode property (true =
5489         navigate, false = edit).  Also, update OnKeyPress to reflect this.
5491         * DataGridTableStyle.cs (CreateColumnsForTable): even if the
5492         column style exists, we still need to set its property descriptor
5493         to match up with our list manager.
5495 2006-07-10  Chris Toshok  <toshok@ximian.com>
5497         * ThemeWin32Classic.cs: implement the new row/header painting
5498         approach.  The parent row painting will likely go away and
5499         replaced with label controls, but the rest seems to work ok (and
5500         efficiently).
5502         * Theme.cs: change the way we draw datagrid rows.  we don't draw
5503         the row headers as a block now.  Instead we draw them in the
5504         normal draw-row loop.  Add some calls for drawing parent rows and
5505         relation rows.
5507         * DataGridTableStyle.cs: add tons of ArgumentExceptions if this is
5508         a default table style.  Set the defaults from ThemeEngine.Current,
5509         not SystemColors.  Fix lots of misc issues with property setters.
5511         * DataGrid.cs: move loads of style information out of this class
5512         as it's being duplicated with DataGridTableStyle.  keep track of a
5513         special DataGridTableStyle for the properties we used to mirror
5514         here.  Switch all the style properties to access this table style
5515         instead of instance fields of this class.  Also add a internal
5516         class to represent parent rows (more needs to be stored here, like
5517         the selection state from the parent table, as well as the
5518         expansion state.)  Also, for datasources with relations, do the
5519         right thing for collapse/expand, and add support for the
5520         navigation/parent row buttons.
5522         Lastly, fix the crash in the 1.1.16 build.
5524         * GridTableStylesCollection.cs: make the explicit interface
5525         implementations call the class's methods as opposed to duplicating
5526         them.
5528         * DataGridTextBoxColumn.cs: set the x/y offset of the textfield to
5529         0 so the text doesn't jump around when we move the cursor.
5531 2006-07-10  Jackson Harper  <jackson@ximian.com>
5533         * TextBoxBase.cs:
5534         * ListBox.cs: Match MS's ToString (this makes debugging focus
5535         stuff infinitely easier).
5537 2006-07-10  Jackson Harper  <jackson@ximian.com>
5539         * Control.cs (SelectNextControl): When checking the control's
5540         parent use this instead of ctrl.parent so that null can be passed
5541         to SelectNextControl. (I have unit tests for this).
5542         - Remove unused var.
5544 2006-07-10  Chris Toshok  <toshok@ximian.com>
5546         * CurrencyManager.cs: correct one regression, the removal of the
5547         finalType field.  Also, add a MonoTODO on CanAddRows, implement
5548         Refresh() correctly, and fix some event emission in
5549         ListChangedHandler.
5551 2006-07-07  Alexander Olk  <alex.olk@googlemail.com>
5553         * FileDialog.cs: Don't use brackets for new folders if they exist
5554           under *nix. Instead use -(number of existing folders +1).
5556 2006-07-07  Alexander Olk  <alex.olk@googlemail.com>
5558         * FileDialog.cs:
5559           - Fixed really nasty bug #78771
5560           - Don't block the whole GUI when reading directories with a lot of
5561             entries. Use an other thread instead and call BeginInvoke to
5562             update the ListView in MWFFileView
5564 2006-07-07  Chris Toshok  <toshok@ximian.com>
5566         * Control.cs (Dispose): release any Capture when disposing.
5568 2006-07-07  Chris Toshok  <toshok@ximian.com>
5570         * LinkLabel.cs (Select): if we chain up to the parent, set
5571         focused_index to -1 so we'll search for the first available link
5572         the next time the user tabs into us.  Also, if the direction is
5573         backward and focused_index == -1, start the search from the last
5574         element.
5576 2006-07-07  Chris Toshok  <toshok@ximian.com>
5578         * LinkLabel.cs (CreatePiecesFromText): if the link's range piece
5579         is beyond the end of the text, don't do anything.
5580         (CreateLinkPieces): set our ControlStyles.Selectable based on
5581         whether or not we have any links.
5582         (Link.Invalidate): use a loop instead of foreach.
5583         (Link.set_Start): null out owner.sorted_links so it'll be
5584         recreated by CreateLinkPieces.
5586 2006-07-06  Chris Toshok  <toshok@ximian.com>
5588         * LinkLabel.cs: revert the SetStyle change.
5590 2006-07-06  Chris Toshok  <toshok@ximian.com>
5592         * LinkLabel.cs (.ctor): SetStyle Selectable to true.
5593         (OnEnableChanged): s/Refresh/Invalidate
5594         (OnGotFocus): if we have a focused index already, refocus it (so
5595         if we mouse out/in to the window it'll focus the right link).
5596         (OnKeyDown): move the tab handling out of here.
5597         (OnLostFocus): don't set focused_index to -1, so we can refocus it
5598         when we lose focus.
5599         (OnMouseDown): don't Capture here - Control handles it.  Also,
5600         focus the active link.
5601         (OnMouseUp): don't deal with Capture.
5602         (OnPaintBackgroundInternal): remove.
5603         (OnTextAlignChanged): CreateLinkPieces before calling the
5604         superclass's method.
5605         (OnTextChanged): call CreateLinkPieces before calling superclass's
5606         method.
5607         (ProcessDialogKey): handle Tab here, and call Select(bool,bool) to
5608         move around.
5609         (Select): implement this, moving the selection between different
5610         links, and call parent.SelectNextControl if we don't have another
5611         link to focus in the given direction.
5612         (CreateLinkPieces): call Invalidate instead of Refresh.
5613         
5614 2006-07-06  Chris Toshok  <toshok@ximian.com>
5616         * ThemeWin32Classic.cs: DrawLinkLabel changes to accomodate the
5617         new LinkLabel internals.
5619         * LinkLabel.cs: fairly major rewrite.  get rid of all the loops
5620         over pieces looking for active/focused/etc links.  also, deal with
5621         runs of text (and links) with embedded \n's in them, and use
5622         MeasureCharacterRanges instead of MeasureString to figure out the
5623         regions text occupies.  Lastly, do the usual s/Refresh/Invalidate
5624         two-step.
5626 2006-07-04  Jackson Harper  <jackson@ximian.com>
5628         * XplatUIX11.cs: Enable key auto repeat. If the user doesn't have
5629         XKB or key auto repeat, do it manually.  Without key auto repeat,
5630         when a key is held down we get key press, key release, key press,
5631         key release, ... with auto repeat we get key press, key press, key
5632         press ..., and then a release when the key is actually released.
5634 2006-07-03  Jackson Harper  <jackson@ximian.com>
5636         * TabControl.cs:
5637         * ThemeWin32Classic.cs: Tabs do not obey normal background color
5638         rules, they are always control color regardless of the background
5639         color.
5641 2006-07-02  Alexander Olk  <alex.olk@googlemail.com>
5643         * FileDialog.cs: Added internal class MWFConfig.
5644           Removed Registry support and replaced it with support for the new
5645           MWFConfig class. See MWFConfig comments for more information.
5647 2006-06-30  Alexander Olk  <alex.olk@googlemail.com>
5649         * ThemeWin32Classic.cs: Added RadioButton and CheckBox focus
5650           rectangle. Added some patches from eno from bug #78490 and fixed
5651           the arrow position for small up and down CPDrawScrollButtons.
5653 2006-06-30  Jackson Harper  <jackson@ximian.com>
5655         * InternalWindowManager.cs: Remove some debug code.
5656         * Form.cs: When an MdiParent is set to null, the window is
5657         "detatched" and becomes a normal window.
5658         * MdiClient.cs: Don't bring the new child form to the front until
5659         it is activated (setting it as active does this), this makes the
5660         previously active forms titlebar get redrawn as inactive.
5662 2006-06-29  Peter Dennis Bartok  <pbartok@novell.com>
5664         * PrintDialog.cs: Labels need a tab index too, otherwise they overlap
5665           with later controls
5667 2006-06-29  Mike Kestner  <mkestner@novell.com>
5669         * MenuAPI.cs: handle arrow keys in keynav state. Go active on down
5670         arrow in keynav state.  Fixes #78682.
5672 2006-06-28  Atsushi Enomoto  <atsushi@ximian.com>
5674         * PrintDialog.cs: Reorder, relayout, remove extra code, set tab 
5675           order (fixes #78393)
5677 2006-06-28  Jonathan Pobst  <monkey@ipobst.com>
5679         * AccessibleRole.cs, AccessibleStates.cs, AnchorStyles.cs, 
5680           ArrangeDirection.cs, ArrangeStartingPosition.cs, ColorDepth.cs,
5681           ControlStyles.cs, DataGridViewImageCellLayout.cs, DrawMode.cs,
5682           FormBorderStyle.cs, FormStartPosition.cs, FormWindowState.cs,
5683           GridItemType.cs, HelpNavigator.cs, ImeMode.cs, ItemActivation.cs,
5684           ItemBoundsPortion.cs, Keys.cs, ListViewAlignment.cs, 
5685           PictureBoxSizeMode.cs, PropertySort.cs, SelectionMode.cs,
5686           Shortcut.cs, SizeGripStyle.cs, SortOrder.cs, StructFormat.cs,
5687           TextFormatFlags.cs, ToolBarAppearance.cs, ToolBarButtonStyle.cs,
5688           ToolBarTextAlign.cs, View.cs: 2.0 Changes to existing 1.x
5689           enumerations (FlagsAttribute, SerializableAttribute, added/removed
5690           values)
5692 2006-06-28  Mike Kestner  <mkestner@novell.com>
5694         * ComboBox.cs: implement scroll wheel support. Fixes #78360.
5696 2006-06-28  Atsushi Enomoto  <atsushi@ximian.com>
5698         * PropertyGrid.cs,
5699           PropertyGridTextBox.cs : explicitly set BackColor to differentiate
5700           item lines from other area (It also makes BackColor consistent and
5701           compatible with .NET). Fixed bug #78564.
5703 2006-06-28  Jonathan Chambers  <jonathan.chambers@ansys.com>
5705         * PropertyGrid.cs: refresh toolbar when PropertySort is set.
5706         Patch from Eno for #78555.
5708 2006-06-27  Chris Toshok  <toshok@ximian.com>
5710         * ThemeWin32Classic.cs: s/grid.grid_drawing/grid
5712         * DataGridColumnStyle.cs: same.
5714         * DataGrid.cs: Roll DataGridDrawingLogic.cs into this file.
5715         
5716         * DataGridDrawingLogic.cs: nuke.
5718 2006-06-27  Chris Toshok  <toshok@ximian.com>
5720         * DataGridTableStyle.cs: clean up the constructors, and build the
5721         list of child relations for this table.  I have no idea if this is
5722         where we should be doing it (it probably isn't), but since we're
5723         already iterating over the properties..
5725         * DataGrid.cs: add row resizing.  for now we add a DataGridRow
5726         struct and array for keeping track of row information, similar to
5727         what's shown in a hack on
5728         http://www.syncfusion.com/FAQ/WindowsForms/FAQ_c44c.aspx.
5730         * Theme.cs: be consistent about the naming of DataGrid methods,
5731         prefering ColumnWidths and RowHeights over columnsWidths and
5732         RowsHeights.
5734         * ThemeWin32Classic.cs: same, and also add support for variable
5735         sized rows (and the +/- expansion icons for related rows).
5737 2006-06-27  Peter Dennis Bartok  <pbartok@novell.com>
5739         * TextBoxBase.cs: Applied Eno's patch from #78660
5741 2006-06-27  Peter Dennis Bartok  <pbartok@novell.com> 
5743         * Form.cs (ScaleCore): We don't want to scale our form if it's
5744           state is minimized or maximized, but we still need to scale our
5745           child windows. Also, added try/finally block to ensure layout
5746           gets reset (Fixes #78697)
5748 2006-06-27  Peter Dennis Bartok  <pbartok@novell.com>
5750         * Control.cs: Added 2.0 Scale(SizeF) method (Fixes 78700)
5752 2006-06-27  Peter Dennis Bartok  <pbartok@novell.com> 
5754         * Form.cs: Fixed c+p error and added check to resize form if minimum
5755           size is bigger than current size (Fixes #78709)
5757 2006-06-26  Peter Dennis Bartok  <pbartok@novell.com> 
5759         * ThemeEngine.cs (..ctor): Properly use ToLower() (Fixes #78704)
5761 2006-06-26  Mike Kestner  <mkestner@novell.com>
5763         * ComboBox.cs: only do Keypress handling in the combo when there  
5764         are items in the collection. Fixes #78710.
5766 2006-06-26  Chris Toshok  <toshok@ximian.com>
5768         * Binding.cs: make this work bi-directionally.  also, clear up
5769         other mixups between Push/Pull Data (e.g. we're supposed to pull
5770         data when validating).
5772         * BindingManagerBase.cs: trim some fully qualified collection
5773         types.
5775         * PropertyManager.cs (get_IsSuspended): oops, fix this check.
5777 2006-06-23  Chris Toshok  <toshok@ximian.com>
5779         * PropertyManager.cs: It appears (according to the unit tests)
5780         that PropertyManager doesn't use
5781         PropertyDescriptor.AddValueChanged to track propery value changes
5782         in its datasource, but uses the same scheme as Binding, where it
5783         looks for a <Property>Changed event and binds to it.
5785         Also, according to the docs, IsSuspended always returns false for
5786         a property manager with a non-null datasource.
5788 2006-06-22  Peter Dennis Bartok  <pbartok@novell.com> 
5790         * Form.cs: (ShowDialog): If we're returning a forced cancel we still
5791           need to update the actual DialogResult. (Fixes #78613)
5793 2006-06-22  Peter Dennis Bartok  <pbartok@novell.com>
5795         * Form.cs (ShowDialog): Release any captures before running the
5796           new message pump (fixes #78680)
5798 2006-06-22  Mike Kestner  <mkestner@novell.com>
5800         * ListView.cs: Layout column widths properly in details mode even 
5801         if HeaderStyle.None is set.  Fixes #78691.
5803 2006-06-21  Peter Dennis Bartok  <pbartok@novell.com>
5805         * FileDialog.cs: Fixed taborder to match MS. Fixes #77873 partially.
5807 2006-06-21  Peter Dennis Bartok  <pbartok@novell.com> 
5809         * Control.cs (ContainsFocus): Using new driver method to get focused
5810           window, instead of trying to use internal tracking var, which can
5811           recursion issues (Fixes #78685)
5812         * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs, XplatUIOSX.cs, 
5813           XplatUIWin32.cs: Added GetFocus method to return focused window
5815 2006-06-21 Gonzalo Paniagua Javier <gonzalo@ximian.com>
5817         * ColorDialog.cs: when the mouse button is pressed inside the color
5818         matrix, don't let the cursor move out of it until the button is
5819         released, which is the behavior on windows. Changed 'colours' by
5820         'colors' to use the same word consistently.
5822 2006-06-21  Chris Toshok  <toshok@ximian.com>
5824         * DataGrid.cs: add in some basic navigation stuff (navigating to a
5825         child relation and back, using a stack).  Also, remove
5826         GetDataSource and the code that calls it - it's not needed.  Also,
5827         track CurrencyManager.ListName's removal.
5829 2006-06-21  Chris Toshok  <toshok@ximian.com>
5831         * CurrencyManager.cs: push some of the original type checking from
5832         BindingContext.CreateBindingManager to here, and remove some of
5833         the finalType stuff.  Need more tests to make sure I've got the
5834         ListName part right, and we might need more in SetDataSource.
5836         * PropertyManager.cs: add a ctor that takes just the datasource,
5837         and no property name.  Make SetDataSource work with a null
5838         property_name, and make Current return the data_source if the
5839         property descriptor is null.  this makes 'string foo = "hi";
5840         BindingContext[foo].Current' return "hi" as it should.
5842         * RelatedCurrencyManager.cs: make this code more generic - there's
5843         no reason the parent manager has to be CurrencyManager, and
5844         there's no reason to pass the DataRelation.  It suffices to use a
5845         BindingManagerBase and PropetyDescriptor.
5847         * RelatedPropertyManager.cs: make a similar change here.
5848         
5849         * BindingContext.cs: make CreateBindingManager the beautiful, tiny
5850         flower I knew it could be.
5852 2006-06-20  Chris Toshok  <toshok@ximian.com>
5854         * PropertyManager.cs: the PropertyChangedHandler is invoked when
5855         data in the source has changed and we need to update the control,
5856         so s/PullData/PushData.
5858         * CurrencyManager.cs: Refresh is meant to update the control from
5859         data in the datasource.  So, s/PullData/PushData.
5861         * BindingContext.cs: add more ugliness (we weren't handling the
5862         case where data_source = DataTable and data_member = column_name).
5864         * Binding.cs: fix PushData/PullData mixup.  Both are interpreted
5865         from the perspective of the datasource.  PullData pulls from the
5866         control, PushData pushes to the control.
5868 2006-06-20  Chris Toshok  <toshok@ximian.com>
5870         * BindingContext.cs: rewrite the CreateBindingManager code to
5871         handle navigation paths more or less properly.  This could
5872         definitely stand some more work, in particular to push the
5873         recursion up to the toplevel.  But that relies on fixes in other
5874         places (System.Data comes to mind).
5876         Also, move to a flat hashtable (and encode the twolevel nature of
5877         the dictionary into the hash key).  This lets us implement the
5878         IEnumerable.GetEnumerator method.
5880         * RelatedCurrencyManager.cs: new class.  Update our view based on
5881         our relation and our parent CurrencyManager's position.
5883         * CurrencyManager.cs: split out some logic from the ctor into
5884         SetView, so it can be called from the new RelatedCurrencyManager
5885         subclass.
5887         * RelatedPropertyManager.cs: new class.  Update our datasource
5888         based on the position of our parent CurrencyManager.
5890         * PropertyManager.cs: split out some logic from the ctor into
5891         SetDataSource, so it can be called from the new RelatedDataSource
5892         subclass.  Also, make the Current getter return the value
5893         of the PropertyDescriptor, not the data_source.
5895         * Binding.cs: no need to duplicate the string splitting code here.
5897 2006-06-19  Peter Dennis Bartok  <pbartok@novell.com> 
5899         * Control.cs:
5900           - set_Enabled: OnEnabledChanged is not called if the inherited state 
5901             of the control is not altered, even though  we might be changing the
5902             internal state of the control (#78458)
5903           - set_Enabled: (Re)Moved the enabling/disabling of the window to 
5904             OnEnabledChanged, to allow easy altering of any child window state
5905           - OnEnabledChanged: Added code to enable/disable driver window state
5906           - OnParentEnabledChanged: Instead of firing the event, call 
5907             OnEnabledChanged, which will fire the event and also a) set driver
5908             window state and pass the enabled state to any grandchildren (#78458)
5910 2006-06-19  Jackson Harper  <jackson@ximian.com>
5912         * InternalWindowManager.cs: We don't set the cursor explicitly
5913         thats done via the response to NCHITTESTs.
5914         - Don't need to adjust for titlebar heights anymore, the
5915         coordinates are coming in the correct coordinates now (see peters
5916         last patch).
5919 2006-06-19  Peter Dennis Bartok  <pbartok@novell.com> 
5921         * XplatUIX11.cs (GetMessage): WM_NCxBUTTONx messages were wrongly
5922           being translated relative to whole window, instead of client window.
5923           That caused broken offsets on mouseclick (and caused gas for our
5924           InternalWindowManager)
5926 2006-06-15  Peter Dennis Bartok  <pbartok@novell.com> 
5928         * TextControl.cs:
5929           - MoveCaret: Implemented PgUp, PgDown, CtrlPgUp and CtrlPgDown
5930           - Undo(): Added replay of cursor move on DeleteChars action; added
5931             calling Undo() again if a recorded cursor move is invalid (to
5932             ensure that some action is performed on Undo)
5933         * TextBoxBase.cs (ProcessKey): Added handling of PgUp and PgDown (#78482)
5935 2006-06-16  Jackson Harper  <jackson@ximian.com>
5937         * MdiClient.cs: Instead of just sizing maximized windows when
5938         there is a resize we also have to adjust the Y of minimized
5939         windows, so they stay pinned to the bottom of the mdi container.
5940         - Eliminate separate tracking of the active control, we can just
5941         get this from the controls collection.
5942         - Paint the decorations for the newly activated titlebar so we get
5943         a pretty blue bar.
5944         * InternalWindowManager.cs:
5945         * ThemeWin32Classic.cs: Minimized windows get all three buttons
5946         even if they are a tool window.
5947         
5948 2006-06-15  Peter Dennis Bartok  <pbartok@novell.com> 
5950         * TextControl.cs (Undo): Handle non-existent cursor locations in the
5951           undo buffer, these can happen when text was deleted and the cursor
5952           was recorded first. Since we will also have a recorded cursor
5953           after the delete this is not an issue. (Fixes #78651)
5955 2006-06-14  Peter Dennis Bartok  <pbartok@novell.com> 
5957         * AccessibleObject.cs: Remove dependence on Control.is_selected;
5958           instead properly track control states internally (allows us to
5959           remove is_selected from Control)
5961 2006-06-14 Gonzalo Paniagua Javier <gonzalo@ximian.com>
5963         * ImageListStreamer.cs: correctly generate the 1bpp mask for images
5964         whose width is not a multiple of 8.
5966 2006-06-13  Jackson Harper  <jackson@ximian.com>
5968         * MdiClient.cs:  Only maximize the next child if the current one
5969         is maximized.
5971 2006-06-13  Chris Toshok  <toshok@ximian.com>
5973         * DataGridColumnStyle.cs: Invalidate the column when HeaderText is
5974         modified.  Also, guard against grid or grid_drawing being null in
5975         Invalidate.
5977         * DataGrid.cs: Reformat tons of getters/setters.  In the
5978         DataMember setter, just call SetNewDataSource instead of
5979         duplicating some of its functionality.  In SetNewDataSource, don't
5980         check ListManager for null, since the property getter creates the
5981         object if needed.
5983         * DataGridTableStyle.cs: don't set TableStyle or call
5984         SetDataGridInternal on the column here, it's done in
5985         GridColumnStylesCollection.Add.
5987         * GridColumnStylesCollection.cs: fix all the explicit interface
5988         implementations to just call our methods.  Nuke AddInternal() and
5989         move the body of it to Add().  Also, add a call to
5990         column.SetDataGridInternal to Add().
5992         * DataGridTextBoxColumn.cs (.ctors): call this() instead of
5993         base()+duplicate code.  Also, use the Format property instead of
5994         format to generate an Invalidate ala MS.  Lastly, create the
5995         textbox here, unconditionally.
5996         (set_Format): call Invalidate.
5997         (get_TextBox): no need to call EnsureTextBox.
5998         (Commit): remove the message box.
5999         (Edit) remove the call to EnsureTextBox.
6000         (EndEdit): call HideEditBox instead of ReleaseHostedControl.
6001         (EnterNullValue): no need to check textbox for null.
6002         (HideEditBox): no need to check textbox for null.
6003         (SetDataGridInColumn): add the textbox to the grid's controls.
6004         (EnsureTextBox): nuke.
6005         
6006 2006-06-13  Jackson Harper  <jackson@ximian.com>
6008         * MdiWindowManager.cs: Hook up to the maximized menus paint event
6009         and redraw the buttons when needed. Unhook when the window is
6010         unmaximized.
6011         * MainMenu.cs: Add an internal Paint event, the mdi window manager
6012         needs this so that it can redraw its buttons when the menu is
6013         repainted.
6014         * InternalWindowManager.cs:
6015         * Form.cs: The method order has changed for DrawMaximizedButtons,
6016         so that it can be a PaintEventHandler.
6017         
6018 2006-06-13  Jackson Harper  <jackson@ximian.com>
6020         * MdiClient.cs: When we close a maximized mdi window, the next mdi
6021         window is activated and maximized, even if it wasn't before.
6022         - When  a new window is activated repaint the decorations of the
6023         old one, so that it no longer has the Active "look" (the blue
6024         titlebar).
6025         * InternalWindowManager.cs: Open up CreateButtons to base classes
6026         so they can recreate the buttons on state changes.
6027         - If a window is maximized give it all three buttons
6028         * MdiWindowManager.cs: Create the titlebar buttons when the state
6029         is changed, this is needed because a toolwindow will not have all
6030         three buttons until it is maximized.
6032 2006-06-13  Atsushi Enomoto  <atsushi@ximian.com>
6034         * ProgressBar.cs : PerformStep() shouldn't exceed Maximum.
6035           Fixed bug #78609.
6037 2006-06-12  Jackson Harper  <jackson@ximian.com>
6039         * KeysConverter.cs: Make sure we handle the Ctrl special case
6040         if its the only key.
6041         
6042 2006-06-12  Jackson Harper  <jackson@ximian.com>
6044         * Theme.cs: Add a method to get the size of a managed window
6045         toolbar button.
6046         * InternalWindowManager.cs: Remove the ButtonSize property, this
6047         should be retrieved from the theme.
6048         * MdiWindowManager.cs: Get the button size from the theme
6049         * ThemeWin32Classic.cs: Make the method to get the managed window
6050         titlebar button size public.
6051         - Handle the different button sizes of maximized toolwindows
6052         (should match any maximized window).
6053         - Get the titlebar height from the theme, not the WM (which gets
6054         it from the theme).
6056 2006-06-12  Jackson Harper  <jackson@ximian.com>
6058         * InternalWindowManager.cs: Handle NC Double Clicks, passing the
6059         event down to the mdi window manager.
6060         - Expose some extra stuff to base classes
6061         - Make sure to end the Capture on an NC Mouse up, so that we can
6062         get double clicks properly, and the sizing doens't stick.
6063         - When doing PointToClient contain it in the workable desktop
6064         area, this prevents windows from changing size when the cursor is
6065         pulled outside of the working area while sizing.
6066         * MdiWindowManager.cs: When we get a double click maximize the
6067         window.
6068         - Reset the cursor after handling mode changes.
6070 2006-06-12  Peter Dennis Bartok  <pbartok@novell.com> 
6072         * XplatUIX11.cs (WorkingArea): Read the actual workarea for the 
6073           current desktop, instead of just assuming a 0, 0 origin. This
6074           is needed for our internal window manager, to know the top
6075           margin of the desktop
6077 2006-06-12  Chris Toshok  <toshok@ximian.com>
6079         * DataGrid.cs (set_CurrentCell): concede focus as we move around.
6080         we need this to get rid of the selected background in the bool
6081         column.
6082         (CancelEditing): move the ConcedeFocus call to above the Abort
6083         call.  Also, set is_changing to false and invalidate the row
6084         header if we were changing before.
6085         (ProcessKeyPreviewInternal): remove, since noone outside this
6086         class calls it anymore.  Roll the code into ProcessKeyPreview.
6087         (EndEdit): remove the internal version.
6088         (InvalidateCurrentRowHeader): make private.
6090         * DataGridBoolColumn.cs: simplify this class a bunch.  remove the
6091         Keys.Escape handling (and with it the last call to
6092         DataGrid.EndEdit from outside the class.)
6095 2006-06-12  Chris Toshok  <toshok@ximian.com>
6097         * DataGridTextBox.cs (.ctor): isedit defaults to false.
6098         (OnKeyPress): set isedit to true.
6099         (ProcessKeyMessage): remove Keys.Enter handling from here.  it's
6100         already handled by the grid.
6102         * DataGrid.cs (set_CurrentCell): more work here.  it's still not
6103         right.  ugh.
6104         (set_DataSource): SetDataSource always returns true, so stop
6105         putting it in an if statement.
6106         (EndEdit): get rid of some {}'s
6107         (ProcessGridKey): return true in case Keys.Escape.
6108         (ProcessKeyPreviewInternal): only handle KEYDOWN messages.
6109         (ConnectListManagerEvents,DisconnectListManagerEvents): connect to
6110         PositionChanged, stopped connecting to CurrentChanged.
6111         (GetDataSource): simplify this a bunch.
6112         (SetDataSource): change return type from bool to void.
6113         (OnListManagerPositionChanged): rename OnListManagerCurrentChanged
6114         to this, and make sure we don't set ListManager.Position inside
6115         set_CurrentCell.
6116         (OnListManagerItemChanged): if we're passed an actual index,
6117         redraw that row.
6119         * CurrencyManager.cs (set_Position): don't call PullData here.
6121 2006-06-09  Jackson Harper  <jackson@ximian.com>
6123         * TreeNode.cs:  Recalculate the visible order before doing the
6124         Expand/Collapse Below calls, because those calls generate an
6125         expose.
6126         - Reduce calls to the TreeView property, which is mildly expensive
6127         by using a local var.
6128         * Form.cs: Layout the MDI child windows when creating the parent
6129         form.
6130         - Don't use the internal constructor anymore
6131         * MdiClient.cs: use the parent form width/height (if available)
6132         when laying out the child windows, we do this because the
6133         mdiclient isn't docked yet when the initial layout is done.
6134         - Don't need an internal constructor anymore.
6136 2006-06-08 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6138         * FileDialog.cs: handle access errors when trying to create a folder
6139         or changing to a directory. No need to initialize out parameters.
6141 2006-06-08  Alexander Olk  <alex.olk@googlemail.com>
6143         * FileDialog.cs: Append a number when creating a new folder if the
6144           folder already exists (use parenthesis instead of square brackets)
6146 2006-06-08  Alexander Olk  <alex.olk@googlemail.com>
6148         * FileDialog.cs:
6149           - Disabled registry support for windows and added better registry
6150             error checking for other systems (need to investigate why it
6151             works perfectly on my system)
6152           - If a folder already exist show an error MessageBox instead of
6153             trying to create an indexed name.
6154           - Fixed a non intentional typo.
6156 2006-06-08 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6158         * FileDialog.cs: (SetFileName) don't crash if CurrentRealFolder is null.
6160 2006-06-08  Alexander Olk  <alex.olk@googlemail.com>
6162         * FileDialog.cs: When creating a new folder don't crash if the
6163           folder already exists.
6165 2006-06-08  Alexander Olk  <alex.olk@googlemail.com>
6167         * FileDialog.cs: Allmost a complete rewrite.
6168           - added a "virtual" file system that handles the differences
6169             between unix and windows file systems (especially the directory
6170             structure). Moved most of the directory and file handling code
6171             into the vfs.
6172             Added vfs classes: MWFVFS, FileSystem, WinFileSystem,
6173             UnixFileSystem and FSEntry.
6174           - Recently used folder/directory, size, location and used file names
6175             (file name ComboBox) are now stored in the registry and get read
6176             before the dialog shows up (fixes part 6 of bug #78446).
6177           - Creation of new folders/directories is now possible (context menu
6178             or ToolBar). Added TextEntryDialog for this that fills in the gap
6179             until ListView.LabelEdit works.
6180           - Fixed cursor handling (bug #78527) and focus handling for
6181             PopupButtonPanel
6182           - Various "Search in" ComboBox enhancements. The content of the
6183             dropdown listbox now almost matches ms.
6184           - Changed the behaviour when the user switches to SpecialFolder
6185             Recent to show the ListView in View.Details.
6186           - Beside using the ToolBar to change the View property of the
6187             file ListView it is now possible to use the context menu too.
6189 2006-06-08  Alexander Olk  <alex.olk@googlemail.com>
6191         * ComboBox.cs: Don't create a new ObjectCollection when an item
6192           gets inserted. Just insert the item in the existing object_items
6193           ArrayList.
6195 2006-06-08  Jackson Harper  <jackson@ximian.com>
6197         * OpenTreeNodeEnumerator.cs: Fix to use the Parent property, so
6198         that the treeview and root node checks are done also, this fixes a
6199         regression i caused in the unit tests.
6201 2006-06-07  Wade Berrier <wberrier@novell.com> 
6203         * RichTextBox.cs: More ISO8859-1 -> unicode
6205 2006-06-07  Mike Kestner  <mkestner@novell.com>
6207         * ComboBox.cs : use items to hold highlight/selection so that
6208         collection insertions don't require synchronization.
6210 2006-06-07  Jackson Harper  <jackson@ximian.com>
6212         * InternalWindowManager.cs: Simplify (and FIX) the window sizing
6213         routine.  We now always keep the sized edge at the cursor instead
6214         of computing movement and adjusting rects.  There is one buglet
6215         with this method though when the cursor is moved over area that
6216         the window can not expand too (such as the toolbars on the desktop).
6218 2006-06-07 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6220         * XplatUIX11.cs: (IsEnabled,IsVisible) the window handler can be null
6221         here. Fixes crash on startup in AlbumSurfer.
6223 2006-06-07  Peter Dennis Bartok  <pbartok@novell.com> 
6225         * RichTextBox.cs: Replaced embedded ISO8859-1 chars with proper unicode
6226           values
6228 2006-06-07 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6230         * XplatUIX11.cs: call XPending and XNextEvent inside the same lock()
6231         statement to avoid calling XNextEvent which will block if another thread
6232         took the event that we were expecting. Fixes bug #78605.
6234 2006-06-07  Mike Kestner  <mkestner@novell.com>
6236         * ListView.cs : isolated checkbox clicking from the selection logic.
6237         Toggle check state on item doubleclicks.  Really fixes #78454 part2.
6239 2006-06-06  Carlos Alberto Cortez <calberto.cortez@gmail.com>
6241         * Form.cs: Check that the value passed to Form.DialogResult
6242         is a valid enum value.
6244 2006-06-06 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6246         * FileDialog.cs: disable the up button when in 'Recently Used' or 'My
6247         Computer'. Clicking it in the network view goes to 'My Computer'.
6248         Added CIFS filesystem type. Display the mount point of filesystems.
6249         Avoid duplicate mount points (happens for me with CIFS);
6251 2006-06-06  Jackson Harper  <jackson@ximian.com>
6253         * InternalWindowManager.cs: Draw the maximized windows buttons
6254         when resizing.
6256 2006-06-06 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6258         * Form.cs: when running a modal dialog, ignore WM_CLOSE requests for
6259         all other dialogs. Fixes bug #78585.
6261 2006-06-06  Mike Kestner  <mkestner@novell.com>
6263         * CheckedListBox.cs : apply CheckOnClick behavior to unchecking too.
6264         Only invalidate checkbox on checkstate changes to avoid flicker.
6265         * ListBox.cs : avoid unselect/select when clicking selected item.
6266         avoid reselection flicker for already multiselected items.
6267         Fixes #78382.
6269 2006-06-06  Jackson Harper  <jackson@ximian.com>
6271         * MdiWindowManager.cs: When the window is closed do an NCRecalc on
6272         the parent form so that the menu is removed if needed.
6274 2006-06-06  Mike Kestner  <mkestner@novell.com>
6276         * ListBox.cs : add ScrollWindow call to UpdateTopItem.  fix
6277         Prev/Next/PrevPage/NextPage/Home/End index calculation.  Fixes #78559.
6279 2006-06-06  Mike Kestner  <mkestner@novell.com>
6281         * CheckedListBox.cs : rebuild check collection on Add.  Fixes #78426.
6284 2006-06-06  Jackson Harper  <jackson@ximian.com>
6286         * Control.cs: Use the property (instead of the field) to get the
6287         default cursor so it is instantiated correctly.
6288         * InternalWindowManager.cs: The OS doesn't give us an NCPAINT with
6289         resizes so we need to manually repaint the window decorations here.
6290         - Set the titlebar button locations as soon as they are created,
6291         otherwise they are not set correctly on win32.
6292         
6293 2006-06-06  Chris Toshok  <toshok@ximian.com>
6295         * CurrencyManager.cs (set_Position): call PullData before
6296         OnCurrentChanged.
6297         (AddNew): after calling IBindingList.AddNew, update our
6298         listposition, and call OnCurrentChanged/OnPositionChanged (without
6299         calling PullData).
6300         (OnCurrentChanged): remove the call to PullData from here.
6301         (OnItemChanged): remove the call to PushData from here.
6302         (OnPositionChanged): change the test from == null to != null to
6303         match the other methods.
6304         (ListChangedHandler): the grossest part of the patch.  Implement
6305         this such that it passes the unit tests in CurrencyManagerTest and
6306         the output more or less matches that of MS's implementation.
6308 2006-06-06  Mike Kestner  <mkestner@novell.com>
6310         * ListView.cs : only update check state on single click.
6311         * ThemeWin32Classic.cs : fix focus drawing for details view without
6312         fullrowselect.  Fixes #78454.
6313         * XplatUIX11.cs : fix for double click emission.
6315 2006-06-05  Jonathan Chambers  <jonathan.chambers@ansys.com>
6317         * PropertyGridView.cs : Applied Atsushi's patch to fix
6318         font dialog bug  (#78197).
6320 2006-06-05  Jackson Harper  <jackson@ximian.com>
6322         * TreeNode.cs: Compute the next node for expanding/collapsing
6323         correctly. We now factor in nodes without a NextNode
6324         correctly. (Fixes somes cases in nunit-gui).
6325         * InternalWindowManager.cs: Set the bounds when updating the
6326         virtual position of a tool window.
6327         
6328 2006-06-05  Chris Toshok  <toshok@ximian.com>
6330         * DataGrid.cs: rename cached_currencymgr to list_manager.
6331         (set_CurrentCell): move SetCurrentCell code here, and clean it up
6332         some.
6333         (CurrentRow, CurrentColumn): single accessors so we can make the
6334         cursor movement code a lot easier to understand.
6335         (CurrentRowIndex): implement this in terms of CurrentRow.
6336         (BeginEdit): clean this up a bit.
6337         (CancelEditing): sort out the is_editing/is_changing/is_adding
6338         stuff a little.
6339         (EndEdit): minor changes.
6340         (OnKeyDown): add a comment about a (most likely) unnecessary
6341         check.
6342         (OnMouseDown): cancel editing when we click on a row header.  And
6343         use the CurrentRow setter, not CurrentCell.
6344         (ProcessDialogKey): directly call ProcessGridKey.
6345         (UpdateSelectionAfterCursorMove): factor out this common block of
6346         code (it's used everywhere that we move the cursor by updating row
6347         or column).
6348         (ProcessGridKey): pretty substantial overhaul.  Use the
6349         CurrentRow/CurrentColumn properties to make the code a lot more
6350         readable.  Only use the CurrentCell property when we have to
6351         modify both row and column at once.  Tab behavior is still broken,
6352         and Delete is untested.
6353         (Select): if we have no selected rows, set selection_start to
6354         @row.
6355         (EditCurrentCell): rename EditCell this.  It was only ever invoked
6356         with CurrentCell as the arg, so drop the arg and rename it.
6358         * DataGridColumnStyle.cs: clean up the constructors a little, and
6359         drop CommonConstructor().
6361         * DataGridTextBox.cs (.ctor): set accepts_return to true so we
6362         actually get notified when the user hits it.
6363         (ProcessKeyMessage): *substantially* simplify this method.
6364         There's no reason (that I can see) for the textbox to be making
6365         calls into the datagrid at all.  Remove all of them but the ones
6366         for Enter handling.  those will take some more work.
6368         * DataGridTextBoxColumn.cs (ConcedeFocus): implement this by
6369         calling HideEditBox.
6370         (HideEditBox): if we have an active textbox, render it invisible
6371         without causing a re-layout of the datagrid.
6373 2006-06-05  Mike Kestner  <mkestner@novell.com>
6375         * ListView.cs : fix NRE crasher when focuseditem is cleared by
6376         collection changes by resetting it to Items[0].  Fixes #78587.
6378 2006-06-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6380         * MessageBox.cs: if the height of the text is larger than the icon_size,
6381         use that. Fixes bug #78575.
6383 2006-06-05  Jackson Harper  <jackson@ximian.com>
6385         * TreeView.cs: Fix line drawing when scrolling.  To do this each
6386         node is basically responsible for drawing its entire horizontal
6387         area.  When drawing a node it draws its parent node lines if
6388         needed.
6389         - Adjust the clip area to the viewport rectangle
6390         - Fix Left/Right key handling to match MS. (It expand/collapses
6391         and moves to parents/first child but does not move selection to
6392         sibling nodes).
6393         - Fix SetTop to work with new bound calculation code
6394         - When scrollbars are no longer needed we need to reset scrolling
6395         vars and recalculate the visible order so the redraw is correct
6396         * TreeNode.cs: We can't expand/collapse nodes with no children.
6398 2006-06-03  John Luke  <john.luke@gmail.com> 
6400         * X11DesktopColors.cs: dllimport the exact gtk and gdk versions
6401         so the colors work without dev packages
6402         
6403 2006-06-02  Peter Dennis Bartok  <pbartok@novell.com> 
6405         * Control.cs 
6406           - Select: Implemented to just use activate. Seems to match MS 
6407             behaviour closest. Documented to only do actual control walking 
6408             based on it's parameters if in a container control so I moved 
6409             the code there.
6410           - Removed selection check logic from our internal Select() method
6411         * ContainerControl.cs:
6412           - Select: Moved selection logic from Control here, since MS documents
6413             that containers obey the bool arguments. No longer calling base
6415 2006-06-02  Jackson Harper  <jackson@ximian.com>
6417         * TreeView.cs: If the selected node isn't changed when we get
6418         focus update the previously selected node so that we see the
6419         selection box.
6421 2006-06-02  Mike Kestner  <mkestner@novell.com>
6423         * ComboBox.cs: restructure grab and general mouse event handling.
6424         Make the composite control raise mouse events like it was a single
6425         control for leaves/enters/motion/up/down events.  fix dropdown list
6426         coordinate mangling and refactor it into the scrollbar subclass to
6427         reduce code duplication.  Fixes #78282 #78361 and #78457.
6429 2006-06-02  Mike Kestner  <mkestner@novell.com>
6431         * ScrollBar.cs: remove Capture setting/clearing, as it happens
6432         automatically in the Control.WndProc.
6434 2006-06-01 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6436         * FileDialog.cs: fix crash when running SharpChess, which sets the
6437         FilterIndex to 2 with only one Filter.
6439 2006-06-01 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6441         * ToolBar.cs: add SizeSpecified property.
6442         * ToolBarButton.cs: when the ButtonSize is calculated by the container,
6443         try to figure out our real size, otherwise fallback to what the
6444         container says.
6446 2006-06-01  Peter Dennis Bartok  <pbartok@novell.com> 
6448         * XplatUIX11.cs (DefWndProc): WM_MOUSEWHEEL needs to be passed up
6449         * Control.cs (WndProc): MS always calls the DefWndProc to pass
6450           up the event
6452 2006-06-01  Mike Kestner  <mkestner@novell.com>
6454         * ListView.cs: revamp the focus management in ListView.  It still
6455         causes churn of LostFocus/GotFocus emissions on clicks, but it's
6456         better than not handling focus at all.  Will revisit when pdb feels
6457         the general focus handling is solid.  Fixes #78526.
6459 2006-06-01  Jackson Harper  <jackson@ximian.com>
6461         * TreeView.cs: Set the default border style in the constructor.
6462         - Move painting to use OnPaintInternal instead of capturing
6463         WM_PAINT, this is the correct way of doing things
6464         - UpdateBelow shouldn't invalidate the scrollbar area
6465         - Cap the top on update below in case the node was above the top
6466         of the viewport rectangle.
6467         - ExpandBelow and Collapse below need to obey Begin/End Update.
6468         * TreeNode.cs: Make is_expanded internal so the treenode
6469         collection can change it without firing the whole event chain.
6470         * TreeNodeCollection.cs: When clearing all the child nodes make
6471         sure to recalc the visible order.
6472         - Improve algo for remove the top node
6474 2006-06-01  Peter Dennis Bartok  <pbartok@novell.com> 
6476         * XplatUIX11.cs (SetFocus): Make sure we can handle re-entrancy due to
6477           SendMessage directly calling window procedures, which in turn might
6478           call SetFocus()
6480 2006-06-01  Peter Dennis Bartok  <pbartok@novell.com>
6482         * Control.cs: Don't handle WM_SETFOCUS if the same window already
6483           has focus (works around X11 sending a FocusIn after our SetFocus)
6484         * XplatUIX11.cs: Send KILLFOCUS before setting SETFOCUS on new window
6486 2006-06-01  Alexander Olk  <alex.olk@googlemail.com>
6488         * Mime.cs: Fix for the NET_2_0 build.
6489           NameValueCollection needs StringComparer now.
6491 2006-05-31  Chris Toshok  <toshok@ximian.com>
6493         * DataGridDrawingLogic.cs (FromPixelToColumn): modify this to also
6494         return (via an out parameter) the starting X of the column.
6495         (UpdateVisibleColumn): track change to FromPixelToColumn.
6496         (HitTest): add a ColumnResize case here.
6497         (DrawResizeLine): new function, probably poorly named.
6499         * DataGrid.cs (.ctor): get rid of cached_currencymgr_events.  We
6500         only need to keep one reference.
6501         (set_ListManager): same.
6502         (OnMouseDown): call HitTest instead of grid_drawing.HitTest.
6503         Also, add support for HitTestType.ColumnResize.
6504         (OnMouseMove): add column resize behavior here, and change the
6505         cursor to the correct one as we move around the datagrid.
6506         (OnMouseUp): terminate the column resize if we're resizing.
6507         (ProcessGridKey): from the MS docs, Alt-0 enters the null value
6508         for the current cell.
6509         (ConnectListManagerEvents): use cached_currencymgr.
6510         (DisconnectListManagerEvents): fill this in, using
6511         cached_currencymgr.
6512         (SetCurrentCell): remove cached_currencymgr_events handling.
6513         (SetDataMember): only call DisconnectListManagerEvents if
6514         cached_currencymgr is != null.
6515         (SetDataSource): same.
6516         (OnListManagerCurrentChanged): cached_currencymgr_events ->
6517         cached_currencymgr.
6519 2006-05-31  Jackson Harper  <jackson@ximian.com>
6521         * BindingManagerBase.cs: Remove somedebug code that creeped into
6522         SVN.
6523         * TreeNode.cs: We get the indent level dynamically right now, so
6524         don't track it as a member.
6525         * TreeNodeCollection.cs: Make sure all nodes added to the list
6526         have parents, treeviews/topnodes setup properly.
6527         - Don't attempt to track indent level.
6529 2006-05-30  Jackson Harper  <jackson@ximian.com>
6531         * BindingContext.cs: Create the currency manager tables here.
6532         This allows us to more easily create null tables (when bad data
6533         members are used), and more easily create related currency
6534         managers.
6535         * CurrencyManager.cs: All the table creation stuff is done by the
6536         binding context now.
6537         - Current should throw an exception if listposition is -1.
6538         - CancelCurrentEdit/EndCurrentEdit, do nothing if the list hasn't
6539         been bound yet.
6541 2006-05-30  Mike Kestner  <mkestner@novell.com>
6543         * ListView.cs: allow reexpansion of zero-width column headers.
6544         Fixes #78528.
6546 2006-05-28  Chris Toshok  <toshok@ximian.com>
6548         * CurrencyManager.cs (get_Current): after the late binding
6549         listposition = -1 fix, we need to guard against it here and return
6550         null, otherwise we raise an exception (which is swallowed
6551         elsewhere, and breaks datagrid databinding.)
6553 2006-05-26  Peter Dennis Bartok  <pbartok@novell.com>
6555         * MenuAPI.cs (ProcessMenuKey): We can legally get msg types other
6556           than WM_SYSKEY, don't throw if get something unexpected (#78507)
6558 2006-05-26  Jackson Harper  <jackson@ximian.com>
6560         * ControlPaint.cs:
6561         * ThemeWin32Classic.cs: For color comparisons just use the ARGB
6562         values, it's faster and it's all we care about (we don't care if
6563         the names aren't equal).
6564         * KeyboardLayouts.cs: Eliminate some dead code.
6565         - Lazy init things
6566         * X11Keyboard.cs: Lazy init keyboard detection.
6567         - Cleanup access modifiers a little.
6569 2006-05-26  Peter Dennis Bartok  <pbartok@novell.com>
6571         * XplatUIX11.cs: Once again, attempting to get layout just right.
6573 2006-05-26  Peter Dennis Bartok  <pbartok@novell.com> 
6575         * LinkLabel.cs (CreateLinkPieces): Use MeasureString to calculate
6576           the sizes of each link section, that will result in sizes that
6577           match DrawString's layout (Fixes #78391)
6579 2006-05-27  Alexander Olk  <alex.olk@googlemail.com>
6581         * FileDialog.cs: If AddExtension property is true autocomplete the
6582           extensions in SaveFileDialog correctly. Fixes bug #78453.
6583           Set MyNetwork and MyComputer to "C:\" for windows. This should
6584           fix part 8 of bug #78446 for now.
6586 2006-05-26  Chris Toshok  <toshok@ximian.com>
6588         * DataGrid.cs (ColumnStartedEditing): fill these in.  for now just
6589         invalidate the current row header if we need to, but presumably
6590         we'll invalidate the row corrsponding to the bounds or
6591         editingControl.
6592         (GridHScrolled): switch back to this method, as it's part of the
6593         public api.  *sigh*.
6594         (GridVScrolled): same.
6595         (OnMouseWheel): hack up something that more or less works.  Call
6596         GridHScrolled/GridVScrolled directly, instead of duplicating much
6597         of their code here.
6598         (EnsureCellVisibility): reinstate a bunch of this code, since we
6599         can't just set the scrollbar Value and expect to do all the work
6600         in the ValueChanged handler.  Also, Call Update() after scrolling
6601         in one direction so the other XplatX11.ScrollWindow call has the
6602         proper stuff in the proper places.
6603         (EditCell): set is_editing to true before calling .Edit.
6605         * DataGridTextBox.cs (set_IsInEditOrNavigateMode): just set it,
6606         don't bother comparing first.
6607         (OnKeyPress): call grid.ColumnStartedEditing before calling
6608         base.OnKeyPress.  this will set is_changing and invalidate the row
6609         header if necessary.
6610         (ProcessKeyMessage): for WM_CHAR messages, call
6611         ProcessKeyEventArgs directly.  swallow anything other than WM_CHAR
6612         and WM_KEYDOWN.
6613         
6614         * DataGridBoolColumn.cs (Edit): don't set is_editing to true here.
6615         it's done in the DataGrid.
6616         (NextState): call grid.ColumnStartedEditing, which takes care of
6617         invalidating the row header (and setting is_changing).
6619         * DataGridTextBoxColumn.cs (Edit): don't set is_editing to true
6620         here.  it's done in the DataGrid.
6622 2006-05-25 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6624         * Control.cs: allow changing the cursor when the mouse position is
6625         out of bounds but Capture is set.
6626         * LinkLabel.cs: handle the case when the mouse button is pressed on the
6627         linklabel but released somewhere else.
6629 2006-05-25  Jackson Harper  <jackson@ximian.com>
6631         * TreeView.cs: When we get focus if there is no selected node make
6632         it the top node
6633         - Remove some uneeded setup code from Draw.
6634         * TreeNodeCollection.cs: If the tree doesn't have a top node when
6635         a new node is inserted make the new node the top.
6636         * XplatUIX11.cs:
6637         * Timer.cs: Use Utc time so that no local time zone stuff needs to
6638         be used (should be faster).
6639         
6640 2006-05-25  Chris Toshok  <toshok@ximian.com>
6642         * DataGrid.cs (EnsureCellVisibility): remove some code to fix a
6643         problem with the last commit.
6645 2006-05-25  Chris Toshok  <toshok@ximian.com>
6647         * DataGridTextBoxColumn.cs (ReleaseHostedControl): turns out we do
6648         need the invalidate call here, while scrolling right-to-left via
6649         the left arrow key (i.e. moving the editing cell while scrolling).
6651         * DataGrid.cs (.ctor): remove the initialization of
6652         ctrl_pressed/shift_pressed.  We no longer track them using key
6653         up/down handlers, but by using Control.ModifierKeys.  Also, switch
6654         to using ValueChanged handlers on the scrollbars instead of
6655         Scrolled event handlers.  This simplifies a bunch of the scrolling
6656         code.
6657         (GridHValueChanged): rename from GridHScrolled, and change it to
6658         work with the new event args.
6659         (GridVValueChanged): same.
6660         (OnMouseDown): initialize ctrl_pressed/shift_pressed here.
6661         (OnMouseWheel): actually scroll the datagrid.  Don't change the
6662         selected cell.
6663         (ProcessGridKey): correct all the keyboard navigation stuff I
6664         could find.  Ctrl up/down/left/right/home/end work now.
6665         (EnsureCellVisibility): correct method name spelling.  Also,
6666         simplify this a touch by not explicitly calling the
6667         ScrollToRow/ScrollToColumnInPixels methods.  We just set the
6668         scrollbar value.
6669         (OnKeyUpDG): no need for this method now.
6670         
6671 2006-05-25 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6673         * LinkLabel.cs: display the OverrideCursor when hovering the label.
6674         Fixes bug #78392.
6676 2006-05-25  Chris Toshok  <toshok@ximian.com>
6678         * ThemeWin32Classic.cs: fix datagrid clipping problems caused by
6679         r61019.
6681 2006-05-25  Peter Dennis Bartok  <pbartok@novell.com> 
6683         * Application.cs: Moved setting of is_modal and closing to before
6684           we create the control, to allow the event handlers called as a
6685           result of creation affect closing. Also removed Gonzalo's previous
6686           change to setting DialogResult, the behaviour has been moved to 
6687           Form.ShowDialog()
6688         * Form.cs: 
6689           - ShowDialog(): Removed explicit creation of the form, let RunLoop
6690             handle it instead
6691           - ShowDialog(): If no dialog result is set, we need to return Cancel
6692           - WM_CLOSE: Fire Closing/Closed events, and reset dialog result if
6693             the close is cancelled
6695 2006-05-25  Jackson Harper  <jackson@ximian.com>
6697         * StatusBar.cs: We only need to update the sizes of the other
6698         panels when we have auto size contents.  Also we are only updating
6699         the contents of the panel, not the borders, so compensate for the
6700         border width (TODO: get this width from the theme somehow).
6701         * TreeView.cs: Scrollable is true by default
6702         - Use invalidate instead of refresh where needed
6703         - Factor the scrollable value into scrollbar updating
6704         - Update the scrollbars if the Scrollable property is altered
6705         - Update the selected node if its ImageIndex is changed
6706         - Handle null nodes in UpdateNode (mainly so we don't have to
6707         check if selected is null when updating it
6708         - Fix VisibleCount to use the ViewportRectangle so that scrollbars
6709         are factored into the visible count
6710         - Use VisibleCount for clarity in the code
6711         - When the font is changed we need to recurse through all the
6712         nodes and invalidate their sizes
6713         
6714 2006-05-25 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6716         * Application.cs: set the DialogResult to fixed when the main form is
6717         hidden or destroyed while being modal.
6719 2006-05-25  Miguel de Icaza  <miguel@novell.com>
6721         * Theme.cs: Use Tangoified messagebox icons. 
6723         (GetSizedResourceImage): Also cope with width = 0 and do not
6724         trigger a warning in that case (0 means "give me your icon from
6725         the resouce, no special size needed).
6727 2006-05-25  Peter Dennis Bartok  <pbartok@novell.com> 
6729         * Application.cs: Leave runloop if the the main modal form is 
6730           hidden (fixes #78484)
6732 2006-05-25  Atsushi Enomoto  <atsushi@ximian.com>
6734         * BindingContext.cs : reject null datasource in Contains() and
6735           Item[].
6736         * CurrencyManager.cs : check data_member validity when data_source
6737           is dataset. When it is late binding, the initial position is -1.
6739 2006-05-24  Jackson Harper  <jackson@ximian.com>
6741         * TreeNodeCollection.cs: Dont't recalculate the visible order on
6742         inserted nodes that aren't visible.  This changes the
6743         max_visible_order which confuses scrollbar settings.
6744         - Use the enumerator to get the prev node instead of duplicating
6745         code.
6746         * TreeView.cs: Use new method for setting scrollbar values
6747         - Don't set the bounds every time the scrollbar is updated
6748         - When updating below the root node use an invalidate instead of a
6749         refresh to prevent the child controls (scrollbars) from being
6750         refreshed. (UpdateBelow still needs to be reworked anyways).
6751         - Reenable SetBottom now that visible orders are set correctly,
6752         added some debug code incase we ever get bad values there again.
6753         - Set the scrollbar max to 2 less then the max value, this
6754         compensates for the max value being one above the node count, and
6755         for scrollbars adding one extra "notch".
6756         - When drawing image nodes if there is an imagelist we draw the
6757         first image in the list if the supplied image index is out of the
6758         image list's bounds.
6759         
6760 2006-05-24  Peter Dennis Bartok  <pbartok@novell.com> 
6762         * XplatUIX11.cs: Don't blindly cache hwnd.ClientRect, reset it when 
6763           we receive a size change from the WM (Fixes #78503)
6765 2006-05-24  Peter Dennis Bartok  <pbartok@novell.com>
6767         * XplatUIWin32.cs, XplatUIX11.cs: Refresh when setting the Clip 
6768           rectangle (Fixes #78501)
6770 2006-05-24  Peter Dennis Bartok  <pbartok@novell.com> 
6772         * ButtonBase.cs: 
6773           - Fixed MouseUp, MouseDown and MouseMove to treat mouseevent.Button 
6774             as a bitfield.
6775           - Fixed MouseMove to no longer switch pressed state unless the left
6776             mouse button is pressed. Atsushi provided the original patch (#78485)
6777           
6778 2006-05-24  Jackson Harper  <jackson@ximian.com>
6780         * ScrollBar.cs: New internal methods that allow us to change a
6781         couple values on the scrollbar (the most common case is maximum
6782         and large change) without getting multiple invalidates.
6784 2006-05-24  Chris Toshok  <toshok@ximian.com>
6786         * DataGridBoolColumn.cs (Abort): revert back to the saved setting.
6787         (Edit): save off the original state in oldState, and set
6788         grid.is_editing to true.
6789         (OnKeyDown): abort editing if escape is pressed.  also, call
6790         NextState if space is pressed.
6791         (OnMouseDown): call NextState.
6792         (NextState): factor out shared code from OnKeyDown and OnMouseDown
6793         here.  Also, only invalidate the row header once (on the initial
6794         is_changing switch) to save on redraws.
6796 2006-05-24  Chris Toshok  <toshok@ximian.com>
6798         * DataGridTextBoxColumn.cs (Commit): only call SetColumnValueAtRow
6799         if the value in the cell is different than it was before.  This
6800         keeps us from triggering a layout when we move around a datarid
6801         with a highlighted cell.
6802         (Edit): suspend layout when creating/positining the text box, and
6803         resume passing false so we don't ever actually re-layout.
6804         (ReleaseHostedControl): same.
6805         (EnsureTextBox): reformat slightly, and set WordWrap to false.
6807         * DataGridTextBox.cs (ProcessKeyMessage): it's not true that all
6808         control-key sequences should go to the datagrid - remove that
6809         lock.  Also, modify the conditions under which we move between
6810         cells when moving the cursor within a cell, and remove the "this"
6811         and "base" from field accesses.  We weren't even consistent, given
6812         they all were in the base class.
6814 2006-05-24  Atsushi Enomoto  <atsushi@ximian.com>
6816         * Binding.cs : (.ctor)
6817           An obvious NRE fix for BindingTest.CtorNullTest().
6819 2006-05-23  Chris Toshok  <toshok@ximian.com>
6821         * TextBoxBase.cs (get_Text): don't add a trailing newline, add
6822         them between lines.  This fixes some quirks editing cells in the
6823         datagrid.
6825 2006-05-23  Jackson Harper  <jackson@ximian.com>
6827         * TreeView.cs: Use begin/end update when doing expand/collapse all
6828         so that we don't get flicker on the scrollbar.
6830 2006-05-23  Jackson Harper  <jackson@ximian.com>
6832         * TreeNode.cs: Bounds are computed 'on the fly' now.  This allows
6833         treenode calculations to be independant of the painting code. To
6834         do this nodes track a visible order which is calculated by the
6835         treeview.
6836         - Call new methods for expanding/collapsing nodes.  These methods
6837         use scrollwindow so we don't have to update everything below the
6838         node.
6839         * TreeView.cs: Refactored drawing and scrolling code.  We don't
6840         need to update nodes when drawing anymore or calculate scrollbar
6841         stuff.
6842         - Added new methods for expanding/collapsing nodes. These methods
6843         use ScrollWindow so as to not have to redraw all the nodes below.
6844         * TreeNodeCollection.cs: Recalc visible order and scrollbars when
6845         we add/remove nodes or sort.
6846         - Handle removing the selected and the top node properly.
6848 2006-05-23  Chris Toshok  <toshok@ximian.com>
6850         * DataGridTextBoxColumn.cs (Edit): set grid.is_editing to true.
6851         maybe this should actually happen in the datagrid code?
6852         (EndEdit): no need to invalidate anything, given that
6853         ReleaseHostedControl causes the datagrid to relayout, which
6854         invalidates everything anyway.
6856         * DataGrid.cs (set_CurrentCell): remove duplicate check (it's also
6857         in SetCurrentCell).
6858         (set_SelectionBackColor): call InvalidateSelection instead of
6859         Refresh.
6860         (set_SelectionForeColor): same.
6861         (BeginEdit): Flesh this out a bit.
6862         (CancelEditing): only do any of this if we're editing/adding.
6863         (EndEdit): same.
6864         (OnMouseDown): there's no need to cancel editing here, it's done
6865         in SetCurrentCell.
6866         (SetCurrentCell): only invalidate the current row header if it's a
6867         different row than the new one.
6868         (ShiftSelection): fix this to work like MS does.
6869         (ResetSelection): factor out the invalidation of selected_rows to
6870         InvalidateSelection.
6871         (SetDataSource): cancel any editing that's going on.
6873         * DataGridColumnStyle.cs
6874         (IDataGridColumnStyleEditingNotificationService.ColumnStartedEditing):
6875         call the non-interface version.
6877         * ThemeWin32Classic.cs (DataGridPaintColumsHdrs): intersect the
6878         header rectangle with the clip rectangle so we don't redraw the
6879         entire header for just a small area.  Gets rid of the last flicker
6880         when horizontally scrolling.
6881         (DataGridPaintRow): same.
6883 2006-05-23  Mike Kestner  <mkestner@novell.com>
6885         * ListViewItem.cs: remove size for line hack from LargeIcon layout.
6886         * ThemeWin32Classic.cs: don't draw line.  it's really the top of a
6887         poorly placed checkbox on the MS control.  Fixes Alex's unfiled
6888         Critical bug report.
6890 2006-05-23  Peter Dennis Bartok  <pbartok@novell.com> 
6892         * PictureBox.cs: Fixed broken ControlStyles. Unit test no longer fails,
6893           and this fixes #78493
6895 2006-05-23  Miguel de Icaza  <miguel@novell.com>
6897         * Theme.cs (GetSizedResourceImage): Scale images if the proper
6898         size is not found.  
6899         
6900         * FileDialog.cs: Do not change the background for the side bar as
6901         it wont work nicely with the theme, and also reduces the artifacts
6902         in rendering the icons (which I want to fix too).
6904         * MimeIcon.cs (ResourceImageLoader): Load images from assembly
6905         resources, not resgen resources. 
6907         (PlatformDefaultHandler): Pull images using the new API.
6909 2006-05-23  Peter Dennis Bartok  <pbartok@novell.com> 
6911         * Hwnd.cs (Dispose): Remove any pending exposures. XEventQueue holds
6912           a reference to the hwnd and will not remove it unless there are
6913           no pending exposures (fixes #78341)
6914         * XplatUI.cs: Improved debug
6916 2006-05-23  Atsushi Enomoto  <atsushi@ximian.com>
6918         * MenuAPI.cs : don't handle OnClick event when it was not the left
6919           button. Fixed bug #78487.
6921 2006-05-23  Mike Kestner  <mkestner@novell.com>
6923         * MenuAPI.cs: fix placement of submenus for multi-row menu bars, and
6924         prefer submenus to the top menu for item lookup, to avoid popping down
6925         top-row items.
6927 2006-05-23  Alexander Olk  <alex.olk@googlemail.com>
6929         * ThemeWin32Classic.cs: Rewrote CPCPDrawScrollButton to drop
6930           Graphics.FillRectangle as the visual results are really bad (even
6931           on win). We now draw perfect arrows (and perfect shadows when the
6932           scrollbar is disabled). Simplified CPDrawGrid. CPDrawGrid now uses
6933           Pen.DashPattern to draw the dots of each line.
6935 2006-05-22  Alexander Olk  <alex.olk@googlemail.com>
6937         * FileDialog.cs: Update the filename combobox when navigating through
6938           the ListView with the cursor keys. Fixes part 7 of bug #78446.
6940 2006-05-22  Mike Kestner  <mkestner@novell.com>
6942         * ListView.cs: raise SelectedIndexChanged on keyboard selection.
6943         Fixes #78463.
6945 2006-05-22  Mike Kestner  <mkestner@novell.com>
6947         * ComboBox.cs: Refresh in EndUpdate to pick up all the dropped Paint
6948         requests. Fix a misspelled parameter and a copy paste exception error
6949         in Select.
6951 2006-05-22  Peter Dennis Bartok  <pbartok@novell.com> 
6953         * ThemeWin32Classic.cs: Changed DefaultFont emSize from 8.25 to 8
6954           to get the same width/height (5/13) on X11 as the default font has on
6955           win32. This means that our DefaultFont emSize is smaller than the 
6956           the MS SWF equivalent (even thought the width/height stays the same)
6958 2006-05-20  Jackson Harper  <jackson@ximian.com>
6960         * MdiClient.cs:
6961         * MdiWindowManager.cs:
6962         * InternalWindowManager.cs: Make sure to use the border width from
6963         the theme.
6965 2006-05-20  Jordi Mas i Hernandez <jordimash@gmail.com>
6967         * PrintDialog.cs: Implements printer details
6969 2006-05-19  Alexander Olk  <alex.olk@googlemail.com>
6971         * FileDialog.cs: Added focus handling for PopupButtonPanel.
6972           Fixes part 1 and 2 of bug #78446
6974 2006-05-19  Peter Dennis Bartok  <pbartok@novell.com> 
6976         * XplatUIX11.cs (SetWindowPos): Recalculate client area size on resizes
6977           instead of sticking to the first ever calculated value
6979 2006-05-19  Mike Kestner  <mkestner@novell.com>
6981         * ComboBox.cs: fix mouse motion selection to use MousePosition and
6982         PointToClient, since Capture is set. Fixes #78344.
6984 2006-05-19  Mike Kestner  <mkestner@novell.com>
6986         * ListView.cs: match MS behavior in Details view where items are not
6987         drawn if Columns.Count == 0. 
6988         * ThemeWin32Classic.cs: only highlight ListView selection if focused.
6989         Use a separate pen to draw the check, since changing the width affects
6990         the box as well.  Fixes #78454.
6992 2006-05-18  Miguel de Icaza  <miguel@novell.com>
6994         * ListView.cs: ArgumentOutOfRangeException, single versions of the
6995         exception should throw the name of the invalid argument.
6997         * FileDialog.cs (OnClickOpenSaveButton): Avoid crash in open if
6998         there are no files listed. 
7000 2006-05-18  Jackson Harper  <jackson@ximian.com>
7002         * ThemeWin32Classic.cs: Don't use endcaps, they mess the drawing
7003         up.
7005 2006-05-18  Peter Dennis Bartok  <pbartok@novell.com> 
7007         * Control.cs: Brought back our old UpdateZOrder method as a private
7008           function and switched our calls from UpdateZOrder to the new one.
7009           This fixes the Paint.Net canvas disappearing bug.
7011 2006-05-18  Jackson Harper  <jackson@ximian.com>
7013         * Theme.cs:
7014         * ThemeWin32Classic.cs:
7015         * InternalWindowManager.cs: Move the drawing into the theme,
7016         expose everything the theme should need from the window manager.
7018 2006-05-18  Peter Dennis Bartok  <pbartok@novell.com>
7020         * XplatUIX11.cs (DefWndProc): WM_SETCURSOR: Assign the return value 
7021           from the call to NativeWindow to avoid walking up the parent chain
7022           further than needed (speeds up setting cursors and avoids setting
7023           the wrong cursor if a parent has another cursor defined)
7024         * Cursor.cs: When loading an icon as cursor, MS uses the center of
7025           the icon as hotspot, not what's contained as hotspot in the icon
7026           file. This fixes the perceived drawing offset seen with Paint.Net
7027         
7028 2006-05-18  Peter Dennis Bartok  <pbartok@novell.com> 
7030         * XplatUIX11.cs: 
7031           - Store the calculated rectangle in Hwnd object and use it when 
7032             setting the client size
7033           - Force Toolwindows to always be type Dock, to ensure they're on top
7035 2006-05-18  Mike Kestner  <mkestner@novell.com>
7037         * ComboBox.cs: first pass at ComboBox rework.  Layout is more
7038         consistent with MS positioning.  IntegralHeight, ItemHeight, Sizing.
7039         Correctly initialize textcontrol and ListBox on DropDownStyle changes. 
7040         Substantial refactoring to remove confusing nested classes. Coding
7041         standard and Get+Set->property refactorings.  Shift to index based
7042         highlighting in ComboListBox instead of constantly using IndexOf and
7043         Items[]. Add invalidations on resize for DropDownList to fix ugliness
7044         in FileDialog growth.  Draw borders manually since Simple mode needs
7045         to look like two independent controls.  Make listbox border
7046         conditional to DropDownStyle.  Improved OwnerDraw support.
7048 2006-05-18  Sebastien Pouliot  <sebastien@ximian.com>
7050         * PaintEventArgs.cs: For 2.0, check for a null Graphics in the .ctor. 
7051         Don't set the disposed graphics to null, so we can throw the "right"
7052         exception if the graphics is reused later (added a flag to avoid 
7053         double disposing). Some behaviours are different under 2.0 and are
7054         filled under bug #78448.
7056 2006-05-18  Peter Dennis Bartok  <pbartok@novell.com>
7058         * Control.cs: When double-buffering is enabled, we need to reset
7059           our graphics context between paint calls. Otherwise, any 
7060           transformations and other alterations on the context will 
7061           become cumulative (#77734)
7063 2006-05-18  Mike Kestner  <mkestner@novell.com>
7065         * ListView.cs: do focused item selection like MS on clicks. 
7066         Rework focus handling for ItemControl so LostFocus invalidates as
7067         well.
7068         * ThemeWin32Classic.cs: only draw focus rectangle for ListViewItems if
7069         the ListView ItemControl has focus.
7071 2006-05-17  Peter Dennis Bartok  <pbartok@novell.com>
7073         * XplatUIX11.cs: If client_window ends up being width or height zero
7074           due to border settings, move it off window inside whole_window (#78433)
7076 2006-05-17  Alexander Olk  <alex.olk@googlemail.com>
7078         * Mime.cs: Shrink the mime file cache correctly.
7080 2006-05-17  Alexander Olk  <alex.olk@googlemail.com>
7082         * ThemeWin32Classic.cs: Readded button focus drawing code. (#78429)
7084 2006-05-16  Peter Dennis Bartok  <pbartok@novell.com>
7086         * XplatUIX11.cs (AddExpose): More sanity checks
7088 2006-05-16  Peter Dennis Bartok  <pbartok@novell.com> 
7090         * XplatUIX11.cs:
7091           - AddExpose: Don't add expose ranges outside the size of our
7092             window
7093           - Cast opacity values to Int32 to avoid crashes with certain
7094             values
7095           - Added disabled code paths that protect against illegal cross-
7096             thread painting (Developers.exe)
7098 2006-05-16  Peter Dennis Bartok  <pbartok@novell.com>
7100         * ProgressBar.cs: Invalidate the control when it's resized
7101           since block size is based on control size. (#78388)
7103 2006-05-16  Miguel de Icaza  <miguel@novell.com>
7105         * DataGrid.cs (SetDataBinding): per the discussion on irc, instead
7106         of setting the incoming argument to the "reset" value, we set the
7107         this.datamember to string.empty (before we were invalidating the
7108         incoming data).   
7110         Fixes 78420
7112 2006-05-16  Peter Dennis Bartok  <pbartok@novell.com> 
7114         * Form.cs: Only apply transparency settings after the form
7115           is created. (Fixes #77800)
7117 2006-05-16  Peter Dennis Bartok  <pbartok@novell.com>
7119         * ApplicationContext.cs: Grab the HandleDestroyed event so
7120           we know when to fire OnMainFormClosed 
7122 2006-05-16  Peter Dennis Bartok  <pbartok@novell.com> 
7124         * Application.cs: Introduced sub-class to allow tracking of
7125           threads and centralized triggering of the event mess for
7126           ThreadExit, AppExit, etc..  (#76156)
7128 2006-05-16  Alexander Olk  <alex.olk@googlemail.com>
7130         * MimeIcon.cs:
7131           - Do not return a null icon index value for a mime subclass.
7132             Instead try the main mime type class too.
7133           - Seems that some newer distributions don't have a link to some
7134             gnome default icons anymore. So check the default gnome dir too.
7135           
7137 2006-05-16  Jackson Harper  <jackson@ximian.com>
7139         * MdiClient.cs: Don't paint the parent background image if we have
7140         our own background image.
7142 2006-05-16  Peter Dennis Bartok  <pbartok@novell.com> 
7144         * Control.cs:
7145           - PerformLayout: Do not shrink space filled by DockStyle.Fill
7146             controls, all filled controls are supposed to overlap (#78080)
7147           - UpdateZOrder is supposed to update the control's z-order in the
7148             parent's z-order chain. Fixed to behave like that
7149           - BringToFront: Removed obsolete code
7150           - SendToBack: Simplyfied
7151           - SetChildIndex: Trigger layout calculations when Z-order changes
7152             since layout is done by z-order
7154 2006-05-16  Chris Toshok  <toshok@ximian.com>
7156         [ fixes bug #78410 ]
7157         * DataGrid.cs (set_AlternatingBackColor): use
7158         grid_drawing.InvalidateCells instead of Refresh().
7159         (set_BackColor): call grid_drawing.InvalidateCells.
7160         (set_BackgroundColor): use Invalidate instead of Refresh.
7162         * DataGridDrawingLogic.cs (InvalidateCells): new function, just
7163         invalidate the cell area.
7165 2006-05-15  Chris Toshok  <toshok@ximian.com>
7167         [ fixes bug #78011 ]
7168         * ThemeWin32Classic.cs (DataGridPaintRows): pass the clip argument
7169         on to DataGridPaintRow.
7170         (DataGridPaintRow): take a clip argument, and only draw the cells
7171         which intersect it.  same with the not_usedarea.
7173         * Theme.cs (DataGridPaintRow) add @clip parameter.
7175         * DataGrid.cs (ScrollToColumnInPixels): simplify, use
7176         XplatUI.ScrollWindow.
7177         (ScrollToRow): same.
7179         * DataGridDrawingLogic.cs (UpdateVisibleColumn): fix corner case
7180         with last column which was causing a gray swath to appear with the
7181         XplatUI.ScrollWindow code.
7183 2006-05-15  Chris Toshok  <toshok@ximian.com>
7185         * ListBox.cs (HorizontalScrollEvent): in the non-multicolumn case,
7186         use XplatUI.ScrollWindow.
7187         (VerticalScrollEvent): use XplatUI.ScrollWindow.
7189 2006-05-15  Peter Dennis Bartok  <pbartok@novell.com> 
7191         * TextBoxBase.cs: Added handling of middle-button paste for X11. (#78375)
7193 2006-05-15  Peter Dennis Bartok  <pbartok@novell.com>
7195         * Cursors.cs: For X11, read NWSE and NESW cursors from our resource
7196           file since there are no equivalent X11 cursors
7198 2006-05-15  Atsushi Enomoto  <atsushi@ximian.com>
7200         * MonthCalendar.cs : DateTimePicker should reflect selected date
7201           on mouse*up*, not mouse*down*. Fixed originally reported part of
7202           bug #76474.
7204 2006-05-15  Atsushi Enomoto  <atsushi@ximian.com>
7206         * TabControl.cs : When argument index is equal or more than tab
7207           count, just ignore. Fixed bug #78395.
7209 2006-05-15  Peter Dennis Bartok  <pbartok@novell.com>
7211         * Control.cs: Dispose all child controls when control is diposed (#78394)
7213 2006-05-14  Alexander Olk  <alex.olk@googlemail.com>
7215         * ColorDialog.cs: Finally it is possible to select the color with
7216           the text boxes
7218 2006-05-14  Alexander Olk  <alex.olk@googlemail.com>
7220         * PrintDialog.cs: Fix typo
7222 2006-05-14  Alexander Olk  <alex.olk@googlemail.com>
7224         * PrintDialog.cs: PrintDialog is not resizable
7225         * ThemeWin32Classic.cs: Draw non links in LinkLabel with the correct
7226           color. Made some ToolBar drawing methods protected virtual.
7228 2006-05-13  Jordi Mas i Hernandez <jordimash@gmail.com>
7230         * PrintDialog.cs: Implementation of the PrintDialog
7232 2006-05-12  Chris Toshok  <toshok@ximian.com>
7234         * ScrollBar.cs (set_Value): don't use Dirty/Invalidate to move the
7235         thumb, instead use MoveThumb.  This has the side effect of making
7236         most of the other thumb moving machinery use MoveThumb as well.
7237         (OnHandleCreated): pass false for @dirty to UpdateThumbPos, as we
7238         need to actually invalidate the rectangle where the new thumb will
7239         go.
7240         (MoveThumb): use XplatUI.ScrollWindow to move the thumb around.
7241         We force an Update() after, so it's not as fast as it could be,
7242         but at least there's zero flicker and no droppings.
7243         (OnMouseMoveSB): in the thumb dragging case, use MoveThumb.
7244         (UpdateThumbPos): add another argument (dirty), which says whether
7245         or not to calculate/add dirty regions which we later invalidate.
7246         For cases where we know we're going to use MoveThumb, we pass
7247         false for this.  Otherwise, pass true.
7249 2006-05-12  Jackson Harper  <jackson@ximian.com>
7251         * ThemeWin32Class.cs: Fixes for alignment and icon rendering in
7252         the status bar.
7253         
7254 2006-05-12  Peter Dennis Bartok  <pbartok@novell.com>
7256         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs: Added new SetClipRegion
7257           and GetClipRegion methods and UserClipWontExposeParent property.
7258         * XplatUIWin32.cs: Implemented SetClipRegion/GetClipRegion methods,
7259           overriding UserClipWontExposeParent property, setting to false, since
7260           Win32 handles the required expose messages to draw our clipped parent
7261           areas internally
7262         * XplatUIX11.cs: Implemented SetClipRegion and GetClipRegion; updated
7263           PaintEventStart to set the user clip region if set.
7264         * Control.cs: 
7265           - Now internally tracking the Region for the control since we need to
7266             store it if the handle is not yet created and only set it when it
7267             becomes created. Before setting the region forced handle creation
7268           - Added code to draw the parents underneath a user-clipped region
7269         * Hwnd.cs: Added UserClip property
7271 2006-05-12  Chris Toshok  <toshok@ximian.com>
7273         * ScrollBar.cs (set_LargeChange): Refresh() -> InvalidateDirty()
7274         (set_Maximum): same.
7275         (set_Minimum): same.
7276         (set_SmallChange): same.
7277         (OnMouseUpSB): remove the call to refresh when releasing the
7278         thumb.  We shouldn't need it.
7279         
7280 2006-05-12  Miguel de Icaza  <miguel@novell.com>
7282         * StatusBar.cs (UpdatePanel): If the panel being refreshes has the
7283         AutoSize set to None, we do not need to relayout everything, we
7284         just need to invalidate the current region.
7286         (Draw): Do not draw the entire ClientArea, just redraw the
7287         clip area being passed.
7289         * MdiClient.cs: Make MdiClient constructor with the Form argument
7290         internal. 
7292 2006-05-12  Jackson Harper  <jackson@ximian.com>
7294         * ThemeWin32Classic.cs (DrawToolBar): Flat toolbars get their
7295         parents background image,  but strangely not their own.
7296         - (DrawStatusBarPanel): Take into account horizontal alignment
7297         when drawing the strings and icons.
7299 2006-05-12  Mike Kestner  <mkestner@novell.com>
7301         * ListBox.cs: avoid invalidations for focus when the collection is
7302         empty. 
7304 2006-05-12  Chris Toshok  <toshok@ximian.com>
7306         * ScrollBar.cs (OnMouseMoveSB): when dragging the thumb, don't
7307         invalidate the entire thumb area.  Call InvalidateDirty which
7308         limits the redraw to the thumb itself and surrounding pixels.
7310         * XplatUIX11.cs (ScrollWindow): optimize copying.
7311         
7312 2006-05-12  Chris Toshok  <toshok@ximian.com>
7314         * DataGridDrawingLogic.cs: make CalcGridAreas non-reentrant.
7315         Figure out the positioning/layout in a single pass instead of
7316         multiple recursive invocations.  Speeds up the initial display of
7317         the data grid.  Also, make many things private that were
7318         originally public but unused outside this class.
7320 2006-05-11  Jackson Harper  <jackson@ximian.com>
7322         * MdiClient.cs: Improved layout code.
7324 2006-05-11  Jonathan Chambers  <jonathan.chambers@ansys.com>
7326         * PropertyGrid.cs : Only check GetPropertiesSupported for properties,
7327           not SelectedObject.
7329 2006-05-11  Chris Toshok  <toshok@ximian.com>
7331         * Hwnd.cs (Invalid): don't start off with Rectangle.Empty, as
7332         union of that will always be {0,0,width,height}.
7334 2006-05-11  Jackson Harper  <jackson@ximian.com>
7336         * Form.cs: Match MS's DefaultSize for forms (they must have
7337         changed the size in sp2).
7339 2006-05-11  Atsushi Enomoto  <atsushi@ximian.com>
7341         * TextBoxBase.cs : implement CTRL+A (select all). Fixed bug #78368.
7343 2006-05-11  Atsushi Enomoto  <atsushi@ximian.com>
7345         * TextControl.cs : Fixed bug #78109. This incorrect position
7346           comparison caused crash on automatic line split.
7347         * TextBoxBase.cs : reduce duplicate code.
7349 2006-05-10  Jackson Harper  <jackson@ximian.com>
7351         * MdiClient.cs: Active form is only sent to the back when using
7352         the Next form functionality, when a form is clicked the current
7353         active shouldn't be sent to the back.
7354         - Layout the mdi windows when the container is first made visible.
7355         * Form.cs: Give the MdiClient a ref to the containing form when we
7356         create it.
7357         
7358 2006-05-10  Atsushi Enomoto  <atsushi@ximian.com>
7360         * LinkLabel.cs : link_font could be uninitialized, so populate one
7361           before actual use. Fixed bug #78340.
7363 2006-05-10  Atsushi Enomoto  <atsushi@ximian.com>
7365         * XplatUIX11.cs : clipboard format native value is IntPtr.
7366           Fixed bug #78283.
7368 2006-05-10  Peter Dennis Bartok  <pbartok@novell.com>
7370         * Control.cs: 
7371           - Instead of showing context menus directly we send WM_CONTEXTMENU, 
7372             which is passed up the parent chain by DefWndProc
7373           - We now handle WM_CONTEXTMENU to display any menu, or pass it 
7374             to DefWndProc (#77956)
7375         * XplatUIX11.cs: Added handling of WM_CONTEXTMENU (pass up) to DefWndProc
7377 2006-05-10  Jackson Harper  <jackson@ximian.com>
7379         * MdiClient.cs: We need to remove the controls from the mdi
7380         collection, when we close the window.
7381         * MdiWindowManager.cs: Special handling of closing mdi windows.
7382         * InternalWindowManager.cs: Make the close method virtual so the
7383         mdi window manager can handle it specially.
7385 2006-05-10  Jordi Mas i Hernandez <jordimash@gmail.com>
7387         * DataGrid.cs:
7388           - Recalculate grid when the data source has changed
7389           - Matches styles provided by user from all data sources types
7390         * DataGridTableStyle.cs: For columns that provided by the user set the
7391         with the preferred value is there was unassigned.
7392         * CurrencyManager.cs: throw OnItemChanged event
7394 2006-05-10  Peter Dennis Bartok  <pbartok@novell.com> 
7396         * PictureBox.cs: Don't animate until handle is created. Start animation
7397           when handle is created.
7399 2006-05-10  Peter Dennis Bartok  <pbartok@novell.com>
7401         * XplatUIX11.cs, Hwnd.cs: Adopted Mike's patch from #77979 to match
7402           current codebase.
7403         * XEventQueue.cs: We don't need to provide the extra info
7405 2006-05-10  Jackson Harper  <jackson@ximian.com>
7407         * MdiClient.cs: If the mdi clients parent form has a background
7408         image set, we draw that background image for the mdi area's
7409         background.
7411 2006-05-10  Peter Dennis Bartok  <pbartok@novell.com>
7413         * TextBoxBase.cs: Set IBeam cursor (#78347)
7415 2006-05-10  Mike Kestner  <mkestner@novell.com>
7417         * ToolBar.cs: fix some text padding issues with ButtonSize
7418         calculation. Update the default size to match MS documentation.
7419         * ToolBarButton.cs: use ToolBar.ButtonSize for layout of unspecified
7420         button size. Fixes #78296.
7422 2006-05-10  Mike Kestner  <mkestner@novell.com>
7424         * ListBox.cs: use is_visible for scrollbar positioning in case the
7425         control isn't on screen yet.  Fix off by one with Right vs Width
7426         usage.  Update Scrollbars in SetBoundsCore. Fixes #78188 and #78258.
7427         
7428 2006-05-10  Jackson Harper  <jackson@ximian.com>
7430         * X11Dnd.cs: Drop to a control with another control on top of it.
7431         * ToolBar.cs: Work on a copy of the buttons list, so that it can
7432         be modified in click handlers. TODO: Look for similar problems in
7433         other controls.
7435 2006-05-09  Jackson Harper  <jackson@ximian.com>
7437         * Form.cs: Window managers need the old window state when setting
7438         window state now.
7439         * InternalWindowManager.cs: Allow the base mdi window manager to
7440         handle more of the MDI only stuff (like maximize buttons).
7441         * MdiWindowManager.cs: Fix some snafus in changing the window
7442         state.  Add all the menu functionality, for both popup and
7443         maximized menus.
7444         * MdiClient.cs: When a new form is selected the currently
7445         activated form is sent to the back, this matches MS.
7446         - Implement a new method to activate the next mdi child window.
7448 2006-05-08  Peter Dennis Bartok  <pbartok@novell.com>
7450         * Control.cs: 
7451           - Added new InternalCapture method to allow controls to prevent
7452             the capture behaviour on the click handlers
7453           - Switched to use InternalCapture
7454         * ComboBox.cs:
7455           - Using InternalCapture to prevent mouse captures from being released
7456             on mouse button release (Fixes #78100)
7457         * XplatUIX11.cs (DeriveStyles): Now checks caption state and only
7458           returns Form borders if a caption is present. (Fixes #78310)
7460 2006-05-08  Peter Dennis Bartok  <pbartok@novell.com> 
7462         * TreeNode.cs: Changed serialization .ctor to not require every field
7463           to be present. (#78265)
7464         * OwnerDrawPropertyBag.cs: Added serialization .ctor
7466 2006-05-05  Alexander Olk  <alex.olk@googlemail.com>
7468         * MimeIcon.cs: for is faster than foreach for strings.
7470 2006-05-05  Mike Kestner  <mkestner@novell.com>
7472         * CheckedListBox.cs: update check handling code to not use selected.
7473         * ListBox.cs: rewrite of mouse selection handling to correspond to MS
7474         behavior for visual feedback, motion response, shift/ctrl handling,
7475         and properly deal with all 4 selection modes. Updates to bounds
7476         handling logic.  Add scroll wheel support. [Fixes #77842]
7478 2006-05-05  Peter Dennis Bartok  <pbartok@novell.com> 
7480         * ListView.cs:
7481           - Moved adding of Implicit controls into .ctor. That way, subsequent
7482             creation of the controls will not cause them to think they are 
7483             toplevel windows (fixes #78200 header problem)
7484           - Added 2.0 ShowGroups and UseCompatibleStateImageBehaviour
7485           - Switched visibility setting of header control to use internal field
7486             to avoid triggering handle creation
7487           - Now checking if handle is created before causing a refresh when items
7488             are added (This makes us now match handle creation time with MS)
7489         * Splitter.cs: Removed loading of private splitter cursor, switched to
7490           Cursors version now that that is loading the right ones
7491         * Cursors.cs: Load proper splitter cursors from resources
7492         * Cursor.cs: Added second method of loading resource cursors for the 
7493           VS.Net users amongst us
7495 2006-05-05  Mike Kestner  <mkestner@novell.com>
7497         * ListView.cs: give header_control a minimum size based on the
7498         ListView size.
7500 2006-05-05  Peter Dennis Bartok  <pbartok@novell.com> 
7502         * XplatUIX11.cs: WS_EX_TOPMOST requires window to be on top. A dock
7503           window seems to do that with metacity, so set that type. (#78120)
7505 2006-05-05  Mike Kestner  <mkestner@novell.com>
7507         * ListViewItem.cs: fix Details mode checkbox layout bug.
7508         * ThemeWin32Classic.cs: draw a ListView column header for unused space
7509         at the end of the header, if it exists. [Fixes for #78200]
7511 2006-05-04  Jackson Harper  <jackson@ximian.com>
7513         * MdiClient.cs: Add a helper property to get the container form.
7514         * MdiWindowManager.cs: We have to make sure to use the menu origin
7515         when drawing the icons and buttons, this fixes maximized window
7516         icons/buttons on win32.
7517         * InternalWindowManager.cs: Reset the restore captions when a
7518         window goes from Maximized to Minimized and vice versa. Move the
7519         DrawMaximizedButtons into the MdiWindowManager source, tool
7520         windows can't be maximized. NOTE: This could use a little
7521         refactoring if time ever permits.
7522         
7523 2006-05-03  Jonathan Chambers  <jonathan.chambers@ansys.com>
7525         * TextBox.cs: Add MWFCategoryAttributes
7526         * TextBoxBase.cs: Add MWFCategoryAttributes
7527         * Form.cs: Add MWFCategoryAttributes
7529 2006-05-03  Jonathan Chambers  <jonathan.chambers@ansys.com>
7531         * Control.cs: Add MWFCategoryAttributes
7532         * ScrollableControl.cs: Add MWFCategoryAttributes
7534 2006-05-03  Alexander Olk  <alex.olk@googlemail.com>
7536         * ThemeWin32Classic.cs: Draw the ToolBar top border only if
7537           Divider is true. Fix a little glitch in PropertyToolBar
7538           drawing code
7540 2006-05-02  Peter Dennis Bartok  <pbartok@novell.com> 
7542         * Control.cs:
7543           - Dispose: Call base.Dispose, this causes the disposed event
7544             to be fired (and probably other, more important stuff)
7545           - SetVisibleCore: Set is_visible to true after creating the
7546             window so that the window still gets created invisible (if
7547             WM_VISIBLE isn't set). That will cause the ShowWindow afterwards
7548             to generate a WM_ACTIVE message
7549         * Form.cs: Call Dispose when we want to destroy the window, instead of
7550           just destroying the handle (Dispose will do that for us)
7551         * XplatUIX11.cs:
7552           - RootWindow also needs a queue, so we can properly process the
7553             property change events from RootWindow (like Activate)
7554           - Generatic synthetic WM_ACTIVE message when the active window is
7555             being destroyed
7557 2006-05-01  Peter Dennis Bartok  <pbartok@novell.com> 
7559         * LinkLabel.cs: Trigger a recalc of our label dimensions when
7560           bounds are changed
7562 2006-05-01  Peter Dennis Bartok  <pbartok@novell.com>
7564         * ThemeWin32Classic.cs (ButtonBase_DrawImage): Use the proper image
7565           for determining width and height (image might not be assigned if
7566           we're drawing an imagelist)
7568 2006-05-01  Peter Dennis Bartok  <pbartok@novell.com> 
7570         * XplatUI.cs, XplatUIDriver.cs: Added MenuHeight property
7571         * XplatUIWin32.cs: Overriding new MenuHeight property, retrieving
7572           height from system
7573         * Theme.cs: No longer returns hardcoded menu height, instead calls
7574           new driver method
7575         * Form.cs (OnLoad): Scaling happens before triggering Load events 
7576           on MS (# 78257)
7578 2006-05-01  Mike Kestner  <mkestner@novell.com>
7580         * MenuItem.cs: fix NRE for text == null.  Fixes #78250.
7582 2006-04-30  Peter Dennis Bartok  <pbartok@novell.com> 
7584         * TextBoxBase.cs: Removed Fixme
7585         * RichTextBox.cs (set_RTF): Invalidate document after update (#78247)
7587 2006-04-30  Peter Dennis Bartok  <pbartok@novell.com>
7589         * XplatUIX11.cs:
7590           - ScrollWindow: We were passing hwnd.ClientRectangle which returns
7591             the rectangle relative to the parent, considering borders. We
7592             don't really want that.
7593           - ScrollWindow: Fixed warning to be more understandable
7594         * TextBoxBase.cs: Fixed ScrollWindow calculations to consider our
7595           scrollbars and scroll only the visible area
7596         * RichTextBox.cs: Removed debug output
7598 2006-04-29  Peter Dennis Bartok  <pbartok@novell.com>
7600         * NumericUpDown.cs (Text): Just use base
7601         * UpDownBase.cs: Ensure txtView is created before using it
7603 2006-04-29  Peter Dennis Bartok  <pbartok@novell.com> 
7605         * XplatUIX11.cs (SetWindowTransparency): Casting opacity to int before
7606           casting to IntPtr to avoid 64bit overflow errors
7608 2006-04-29  Peter Dennis Bartok  <pbartok@novell.com>
7610         * Control.cs:
7611           - AllowDrop: Don't force handle creation.
7612           - CreateHandle: Added call to tell driver if we're allowed to drop
7614 2006-04-27  Alexander Olk  <alex.olk@googlemail.com>
7616         * FileDialog.cs: Remember the last directory not only for the
7617           current instance but also for new FileDialog instances.
7619 2006-04-29  Peter Dennis Bartok  <pbartok@novell.com> 
7620         
7621         * XplatUIX11.cs: Forgot to set the queue on the foster parent. That
7622           broke sending async messages
7624 2006-04-29  Peter Dennis Bartok  <pbartok@novell.com>
7626         * XplatUIX11.cs:
7627           - ScrollWindow: Fixed method. We finally generate expose events again
7628             for scrolled areas. This was causing 'garbage' when scrolling
7629             textbox and other controls that used ScrollWindow
7630           - Switched from using the regular queue for paint events to the MS 
7631             model of 'generating' paint events when the queue is empty.
7632             We use the new XQueueEvent.Paint subclass to store which windows
7633             need painting.
7634           - AddExpose now takes the x/y/width/height of the exposed area
7635             and inserts the window into the paint queue if not already there
7636           - InvalidateWholeWindow: Switched to use new AddExpose method
7637           - UpdateMessageQueue: Added which queue to monitor for paint events
7638           - DefWndProc: Added default handler for WM_PAINT and WM_NCPAINT in
7639             the unlikely case nothing above handles it. We reset the expose
7640             pending states to get them off the queue.
7641           - GetMessage: Now pulls a paint event if no other events are in the
7642             queue
7643           - Invalidate: Switched to new AddExpose method
7644           - PeekMessage: Updated to understand pending paint events
7645           - UpdateWindow: Fixed logic bug. We were only updating if the window
7646             didn't need updating. Also switched to sending WM_PAINT directly,
7647             like MS does.
7648         * XEventQueue.cs: Added Paint queue support. Allows enqueue/dequeue
7649           and random access Remove(). The random access is needed to handle
7650           UpdateWindow() where a WM_PAINT is sent directly without accessing
7651           the queue.
7652         * ScrollBar.cs: Added Update() calls to cause immediate updates to
7653           allow for better feedback when scrolling. Scrollbars are small and
7654           the immediate update should make it 'feel' more responsive without
7655           slowing things down. ScrollBar still needs it's invaliate logic
7656           updated to not always invalidate the whole bar on certain changes.
7658 2006-04-28 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7660         * Control.cs:
7661         (BackColor): if the control does not support a transparent background,
7662         return the default backcolor when the parent backcolor is transparent.
7664 2006-04-28  Peter Dennis Bartok  <pbartok@novell.com>
7666         * Application.cs: Updated to new StartLoop/GetMessage API
7667         * RichTextBox.cs: Provide some output on RTF parsing errors
7668         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs, XplatUIWin32.cs: Added
7669           new queue_id argument to GetMessage and PeekMessage to allow faster
7670           handling of per-thread queues in drivers.
7671         * Hwnd.cs: Added Queue tracking and property
7672         * MenuAPI.cs: Updated to new StartLoop/GetMessage API
7673         * XEventQueue.cs: Added thread trackingA
7674         * PropertyGridView.cs: Updated to new StartLoop/GetMessage API
7675         * XplatUIX11.cs:
7676           - Implemented new per-thread queue
7677           - GetMessage: Fixed return/break behaviour on several cases. We were
7678             returning stale messages in some cases, instead of just processing
7679             the next message
7681 2006-04-27  Jonathan Chambers  <jonathan.chambers@ansys.com>
7683         * PropertyGrid.cs: Call GetPropertiesSupported on TypeConverter.
7685 2006-04-27  Peter Dennis Bartok  <pbartok@novell.com>
7687         * ThemeWin32Classic.cs (DrawToolBar): Refactored, simplified the logic,
7688           fixed off-by-one comparisons between Width/Height and Right/Bottom.
7690 2006-04-27  Jonathan Chambers  <jonathan.chambers@ansys.com>
7692         * PropertyGridView.cs: Fix drop down width.
7694 2006-04-27  Alexander Olk  <alex.olk@googlemail.com>
7696         * ThemeWin32Classic.cs: Peter thinks that three additional lines are
7697           a mess in DrawToolBar, so I removed one of them.
7699 2006-04-27  Alexander Olk  <alex.olk@googlemail.com>
7701         * ThemeWin32Classic.cs: Draw the ToolBar border lines only if
7702           needed (clip). Otherwise we get artifacts.
7704 2006-04-26  Peter Dennis Bartok  <pbartok@novell.com>
7706         * FixedSizeTextBox.cs: Added constructor to allow specifying which
7707           dimension is fixed
7708         * UpDownBase.cs: Set the spinner control to be fixed height vertical,
7709           and switched FixedSizeTextBox to only be fixed vertical (#78116)
7710         * Form.cs: Not applying the 'MS 0.08 fudge factor' for a given dimension
7711           if it matches the scale base font (avoids unneeded scaling)
7713 2006-04-26  Alexander Olk  <alex.olk@googlemail.com>
7715         * X11DesktopColors.cs: One gtk_init_check should be enough
7717 2006-04-26  Peter Dennis Bartok  <pbartok@novell.com> 
7719         * TextBoxBase.cs: Moved Backspace handling into WM_CHAR block to
7720           match MS behaviour
7722 2006-04-26  Peter Dennis Bartok  <pbartok@novell.com>
7724         * TextBoxBase.cs: 
7725           - Generate OnTextChanged for Backspace even if we're only deleting
7726             the current selection
7727           - When setting the Text property, only select all text if the
7728             control does not have focus when it is being set. Otherwise
7729             just place the cursor at the beginning of the control
7731 2006-04-26  Alexander Olk  <alex.olk@googlemail.com>
7733         * ThemeWin32Classic.cs: ToolBars get drawn with two lines at the top.
7734           Added a little helper to draw PropertyGrid ToolBar with a different
7735           border and a different BackColor.
7736         * PropertyGrid.cs: Some background parts didn't get painted with the
7737           correct background color. Added a class that helps us to draw the
7738           correct border for PropertyGridView and a class that helps us to
7739           draw ToolBars with a different backcolor
7740         * PropertyGridView.cs: Draw PlusMinus with the correct colors.
7742 2006-04-25  Jonathan Chambers  <jonathan.chambers@ansys.com>
7744         * PropertyGrid.cs: Bug 78196, font size, and splitter location.
7745         * PropertyGridView.cs: Bug 78196, font size, and splitter location.
7747 2006-04-25  Peter Dennis Bartok  <pbartok@novell.com> 
7749         * XplatUIWin32.cs (DIBtoImage): ORing instead of ANDing the alpha
7750           into the palette entries. Also, since we're working on a copy
7751           we needed to copy the palette back onto the bitmap.
7752         * Cursor.cs: Same fix as XplatUIWin32.cs.
7754 2006-04-25  Peter Dennis Bartok  <pbartok@novell.com>
7756         * ImageListStreamer.cs: Need to read the var (or we're off)
7758 2006-04-25  Peter Dennis Bartok  <pbartok@novell.com> 
7760         * TextControl.cs, ComboBox.cs, CommonDialog.cs, Theme.cs, 
7761           XplatUIWin32.cs, RichTextBox.cs, ImageListStreamer.cs,
7762           TextBoxBase.cs: Unused var fixes
7763         * AxHost.cs: Small 2.0 fix
7764         * XplatUIX11.cs: Switched to IntPtr from int for XA_CARDINAL atoms 
7765           as it seems that is what at least Metacity expects. This will make
7766           icons show up on 64bit platforms. We still have some 64bit size
7767           issues, though, since the startup app window size still won't match.
7769 2006-04-25  Mike Kestner  <mkestner@novell.com>
7771         * *.cs: cleanup newly reported exception var unused warnings.
7773 2006-04-25  Alexander Olk  <alex.olk@googlemail.com>
7775         * ThemeWin32Classic.cs: Button image alignment now matches exactly
7776           ms
7778 2006-04-25  Alexander Olk  <alex.olk@googlemail.com>
7780         * ThemeWin32Classic.cs: Fixed drawing code for buttons with an
7781           image. The image position is always the same, no matter if the
7782           button is pressed or not.
7784 2006-04-25  Alexander Olk  <alex.olk@googlemail.com>
7786         * FileDialog.cs: SaveFileDialog shouldn't rely on a MWFFileView
7787           selection and set the correct filename for SaveFileDialog.
7788           Patch by Emery Conrad.
7790 2006-04-24  Mike Kestner  <mkestner@novell.com>
7792         * ListView.cs (LastVisibleIndex): when in List mode of Alignment.Left,
7793         check for item.X outside the ClientRect instead of item.Y. Fixes
7794         #78151.
7796 2006-04-21 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7798         * ImageListStreamer.cs: some images store a wrong grow factor, so don't
7799         trust that value blindly and do some sanity check. Fixes bug #77814.
7801 2006-04-21 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7803         * ImageListStreamer.cs: save the mask as a 1bpp image.
7805 2006-04-21  Mike Kestner  <mkestner@novell.com>
7807         * CheckedListBox.cs: maintain CheckStatus here. Use DrawItemState to
7808         pass Checked and Indeterminate to the Theme Engine. Improve
7809         encapsulation with ListBox.
7810         * ListBox.cs: Keep a StringFormat instead of calculating it every item
7811         draw. Kill ListBoxItem. Refactor away the ListBoxInfo and ListBoxItem
7812         nested types.  Move all CheckState functionality to CheckedListBox.
7813         Make IntegralHeight work like MS.  Rewrite of Layout engine.  Fix
7814         OwnerDrawVariable layout/rendering.  Fix multicolumn rendering.  Fix
7815         ScrollAlwaysVisible handling. Refactor "selected" collections to use a
7816         single base list. Fix scrollbar sizing and placement to mirror MS.
7817         * Theme.cs: remove CheckedListBoxCheckRectangle. It wasn't really
7818         used.
7819         * ThemeWin32Classic.cs: implement Indeterminate CheckState rendering
7820         for CheckedListBox by using new DrawItemState info.  Center the
7821         checkboxes on the items. Use new StringFormat property.
7823 2006-04-18  Jackson Harper  <jackson@ximian.com>
7825         * Form.cs: MdiChildren don't do default locations the same way as
7826         regular forms.  This prevents a crash when trying to position the
7827         mdi windows.
7829 2006-04-17  Jonathan Chambers  <jonathan.chambers@ansys.com>
7831         * PropertyGridTextBox.cs: Formatting, copyright
7832         * PropertiesTab.cs: Formatting
7833         * PropertyGrid.cs: Formatting
7834         * PropertyGridView.cs: Formatting, fix drop down, enabled double 
7835           click toggling of values
7836           
7837 2006-04-17  Peter Dennis Bartok  <pbartok@novell.com> 
7839         * KeyPressEventArgs: Added 2.0 only setter for KeyChar
7840         * Control.cs (.ctor): verify_thread_handle is static, don't reset
7841           every time a control is created
7842         * Application.cs: Removed obsolete EnableRTLMirroring method
7844 2006-04-18  Gert Driesen  <drieseng@users.sourceforge.net>
7846         * TabControl.cs: Avoid ArgumentOutOfRangeException when setting
7847         SelectedIndex to -1. Fixes bug #78121.
7849 2006-04-17  Jackson Harper  <jackson@ximian.com>
7851         * Binding.cs: Handle null values for Current and BindingContext.
7852         This occurs when binding is a little delayed.
7853         * CurrencyManager.cs: return null for Current when there are no
7854         items in the list.
7855         - Hookup to the listchanged event on the DataView and update
7856         bindings when the list is changed.  This fixes late binding of
7857         controls.
7859 2006-04-17  Jackson Harper  <jackson@ximian.com>
7861         * X11Dnd.cs:
7862         * XplatUIX11.cs: Drops should not create a mousedown. Patch by Tim
7863         Ringenbach.
7865 2006-04-15  Alexander Olk  <alex.olk@googlemail.com>
7867         * ThemeWin32Classic.cs: Draw disabled combo button in the correct
7868           place
7869         * ComboBox.cs: If the combobox is disabled call CPDrawComboButton
7870           with the correct ButtonState
7872 2006-04-14  Peter Dennis Bartok  <pbartok@novell.com>
7874         * XplatUIX11.cs: Improved distinguishing between window types to
7875           tell the WM a type closer to what the app wants (Fixes #78107)
7877 2006-04-14  Alexander Olk  <alex.olk@googlemail.com>
7879         * ThemeWin32Classic.cs: Fixed drawing of ContainerGrabHandle and
7880           GrabHandle
7882 2006-04-14  Alexander Olk  <alex.olk@googlemail.com>
7884         * ThemeWin32Classic.cs: Fixed size grip drawing and updated StatusBar
7885           drawing code to reflect the size grip changes
7887 2006-04-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7889         * ImageListStreamer.cs: fix handling of the mask that follows the main
7890         bitmap when deserializing and serialize it properly. The generated mask
7891         should better be a 1bpp image, but I'll do that later.
7893 2006-04-13  Alexander Olk  <alex.olk@googlemail.com>
7895         * FileDialog.cs: Show something in the DirComboBox on *nix if the
7896           path doesn't fit into some of our Current.Places
7898 2006-04-13  Jackson Harper  <jackson@ximian.com>
7900         * ComboBox.cs: Use borders instead of drawing our own decorations,
7901         try to obey correct rules for heights.
7902         * Theme.cs:
7903         * ThemeNice.cs:
7904         * ThemeClearLooks.cs:
7905         * ThemeWin32Classic.cs: Remove combobox decoration drawing code,
7906         this is now handled by borders.
7907         - Remove unused DrawListBoxDecorationSize method.
7908         
7909 2006-04-13  Mike Kestner  <mkestner@novell.com>
7911         * MenuAPI.cs: null guarding for the disbled click check fixes crash
7912         reported by Alex.
7914 2006-04-13  Alexander Olk  <alex.olk@googlemail.com>
7916         * ThemeWin32Classic.cs: 
7917           - Fixed CPDrawStringDisabled
7918           - Corrected drawing of disabled menu items
7919           - Fixed drawing of disabled radio buttons (bug #78095)
7920           - Draw check in a disabled CheckBox with color ControlDark 
7922 2006-04-12  Peter Dennis Bartok  <pbartok@novell.com>
7924         * Form.cs: Use the provided width when calculating the menu size;
7925           when being maximized we get WM_NCCALCSIZE before WM_WINDOWPOSCHANGED
7926           and ClientSize.Width won't be updated yet
7927         * Application.cs: Use Visible instead of Show() to make form visible,
7928           this way we create the handle later and menusize is considered
7930 2006-04-12  Mike Kestner  <mkestner@novell.com>
7932         * MenuAPI.cs: ignore clicks on disabled menu items. Thanks to Alex for
7933         reporting.
7935 2006-04-12  Peter Dennis Bartok  <pbartok@novell.com>
7937         * TextBox.cs: Implemented context menu
7939 2006-04-12  Mike Kestner  <mkestner@novell.com>
7941         * ListView.cs: implement box selection. fixes #77838.
7942         * ThemeWin32Classic.cs: draw box select rect, remove a ResetClip.
7944 2006-04-12  Peter Dennis Bartok  <pbartok@novell.com> 
7946         * XplatUIX11.cs: Added setting of window type when transient window
7947           is created (metacity would move it otherwise)
7948         * X11Structs.cs: Added WINDOW_TYPE atoms
7949         * LinkLabel.cs: Override OnPaintBackgroundInternal and draw the
7950           background (the control is Opaque but still wants transparent
7951           backgrounds)
7953 2006-04-12  Peter Dennis Bartok  <pbartok@novell.com>
7955         * Control.cs: Added OnPaintBackgroundInternal to allow controls
7956           that set Opaque but don't mean it (like all ButtonBase-derived
7957           controls) to still draw their background
7958         * ButtonBase.cs: Override OnPaintBackgroundInternal and draw
7959           the background
7961 2006-04-12  Peter Dennis Bartok  <pbartok@novell.com> 
7963         * Control.cs (PaintControlBackground): Set the graphics object
7964           on our PaintEvent to null to prevent it from being disposed
7965           when the PaintEvent gets disposed
7967 2006-04-12  Alexander Olk  <alex.olk@googlemail.com>
7969         * ThemeWin32Classic.cs: Use even more SystemBrushes and SystemPens
7970         * ThemeNice.cs, ThemeClearlooks.cs: fix typo
7972 2006-04-12  Peter Dennis Bartok  <pbartok@novell.com>
7974         * Control.cs: 
7975           - Added transparency check to BackColor property. Transparent
7976             backgrounds are only allowed if the control styles permit it
7977           - Added recursive painting of parent control background and
7978             foreground if a control with a transparent backcolor is drawn
7979             (Thanks to Tim Ringenback for providing his 'hack' as a base
7980              for this patch) Fixes #77985 and #78026.
7981           - Added Opaque style check before calling OnPaintBackground, no
7982             need to draw the background if the control is opaque
7983           - Removed ControlAccessibleObject owner variable (inherited from
7984             base, no need to define again)
7985           - Added some documentation links explaining the drawing events
7986             and styles
7988 2006-04-11  Peter Dennis Bartok  <pbartok@novell.com> 
7990         * Splitter.cs (CalculateSplitPosition): Corrected the bad assumption
7991           that the affected control is the located at the left border of our
7992           parent (Fixes #77936)
7994 2006-04-11  Peter Dennis Bartok  <pbartok@novell.com>
7996         * TextBoxBase.cs: When rendering disabled or readonly controls,
7997           draw the background with 'Control' instead of 'Window' color as
7998           long as the user hasn't specifically set a color
8000 2006-04-11  Peter Dennis Bartok  <pbartok@novell.com> 
8002         * TextBoxBase.cs: Don't try to shortcut by checking against base.Text
8003           since that won't be updated if the user types text (only if it's
8004           programatically set)
8006 2006-04-11  Peter Dennis Bartok  <pbartok@novell.com>
8008         * ScrollableControl.cs: Calculate DisplayRect dynamically, so that
8009           layout changes do to app-triggered resizes will have the proper
8010           display rectangle for layout
8012 2006-04-11  Alexander Olk  <alex.olk@googlemail.com>
8014         * ThemeWin32Classic.cs:
8015           - Make use of the SystemBrushes and SystemPens wherever possible
8016           - Corrected some highlight colors
8017           - Corrected RadioButton and CheckBox FlatStyle.Flat and Popup
8018             drawing
8019         * Theme.cs: Added Empty field to CPColor struct
8021 2006-04-11  Peter Dennis Bartok  <pbartok@novell.com>
8023         * ScrollabeControl.cs: We need to consider whether or not a scrollbar
8024           is displayed when calculating the display rectangle. Thanks to Mike
8025           for teaching me the err of my ways.
8027 2006-04-10  Peter Dennis Bartok  <pbartok@novell.com>
8029         * ScrollableControl.cs:
8030           - Rewrote DisplayRectangle code, now returning the proper x/y coords 
8031             (instead of 0,0) and we now return the real width/height instead of
8032             just the clientrectangle, adjusted for padding. The rectangle is
8033             now cached and created by the new CalculateDisplayRectangle method.
8034           - Created new CalculateDisplayRectange method, which basically does
8035             what get_DisplayRectangle() did originally, but now using the 
8036             right edge instead of DisplayRectangle to determine the size of
8037             our scrollbars
8038           - get_Canvas(): Fixed it to properly calculate canvas for 
8039             right/bottom controls which seem to be placed to the right/bottom
8040             of any controls that have a fixed location
8041           - Removed TODO that's taken care of
8042           - Removed NotImplementeds and attempted to implement AdjustFormScrollBars
8043             and SetDisplayRectLocation according to new MSDN2 docs
8044           - Added call to PerformLayout in OnVisibleChanged, MS causes a layout
8045             event when that is called, this is added for compatibility
8046           - ScrollControlIntoView(): Implemented.
8047           - Switched scrollbars to be implicit, they shouldn't be selectable
8048         * ContainerControl: Now that ScrollControlIntoView is implemented, we 
8049           call it when the active control is set/changed
8050         * ScrollBar.cs: Added support for generating Win32 scrollbar messages
8051         * ImplicitHScrollBar.cs, ImplicitVScrollBar.cs: Now setting new base
8052           implicit_control variable (used for native Win32 message generation)
8053         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs: Added new 
8054           HorizontalScrollBarHeight and VerticalScrollBarWidth properties
8055         * ThemeWin32Classic.cs: Now calling the driver for the scrollbar sizes
8056         * XplatUIStructs.cs: Added ScrollBarCommands enum
8058 2006-04-10  Jackson Harper  <jackson@ximian.com>
8060         * ButtonBase.cs:
8061         * CheckedListBox.cs:
8062         * ComboBox.cs:
8063         * DataGrid.cs:
8064         * DataGridView.cs:
8065         * Form.cs:
8066         * GroupBox.cs:
8067         * ListBox.cs:
8068         * PrintPreviewControl.cs:
8069         * ProgressBar.cs:
8070         * PropertyGrid.cs:
8071         * Splitter.cs:
8072         * StatusBar.cs:
8073         * TrackBar.cs:
8074         * UpDownBase.cs: Fixup base event overrides.
8075         
8076 2006-04-06  Mike Kestner  <mkestner@novell.com>
8078         * ScrollBar.cs: fix "new event" declarations (#76509) and bounds check
8079         all user-initiated value changes to min <= value <= max-thumbsz+1.
8080         (set_Value): check for vert/horiz when calculating new thumb position.
8081         (LargeIncrement): bounds check to stop pos at max - thumb_size + 1
8082         like MS does.
8083         (OnMouseMoveSB): refactor the thumb dragging code and refine
8084         invalidation logic to reduce flicker.
8085         (SetEndPosition): bounds check to stop pos at max - thumb_size + 1
8086         (SmallIncrement): bounds check to stop pos at max - thumb_size + 1
8087         (UpdateThumbPosition): small code readability cleanup
8089 2006-04-10  Alexander Olk  <alex.olk@googlemail.com>
8091         * ThemeNice.cs: Small UI polishing. Draw borders a little bit
8092           different
8094 2006-04-08  Alexander Olk  <alex.olk@googlemail.com>
8096         * ThemeNice.cs: Use a better graphics effect when a button is pressed
8098 2006-04-08  Alexander Olk  <alex.olk@googlemail.com>
8100         * Theme.cs: Added GetDashPen and GetSizedPen to SystemResPool
8101         * ThemeWin32Classic.cs: Make use of the new SystemResPool methods.
8102           This dramatically reduces the number of Pen.Dispose calls. 
8103           Where possible call ResPool methods only once instead of calling it
8104           over and over again (for example for the same color).
8106 2006-04-06  Mike Kestner  <mkestner@novell.com>
8108         * TabControl.cs: fix for SelectedIndex updating on TabPage removals.
8109         Also remove an unused private field on the collection. Fixes #77972.
8111 2006-04-06  Alexander Olk  <alex.olk@googlemail.com>
8113         * ThemeNice.cs: Added ToolBar drawing code
8115 2006-04-06  Mike Kestner  <mkestner@novell.com>
8117         * Form.cs (ShowDialog): MS allows IWin32Window param to be a non-form.
8118         I'm assuming that means we need to look up the toplevel for the
8119         provided control. Fixes the crash trace in #77911 but exposes another
8120         crash in some strange reflection usage in NDocGui.
8122 2006-04-06  Alexander Olk  <alex.olk@googlemail.com>
8124         * ThemeNice.cs: Gave it a little silver touch and added Images
8125           method
8126         * FontDialog.cs: FontDialog is not resizable
8127         * FileDialg.cs: Added SizeGripStyle.Show
8129 2006-04-05  Jackson Harper  <jackson@ximian.com>
8131         * KeyboardLayouts.cs: Remove warning.
8133 2006-04-05  Jackson Harper  <jackson@ximian.com>
8135         * Control.cs: Enable OnPaintInternal so we can use it for drawing
8136         all of our controls instead of Paint +=.
8137         * ListBox.cs:
8138         * ListView.cs:
8139         * MenuAPI.cs:
8140         * MessageBox.cs:
8141         * NotifyIcon.cs:
8142         * ProgressBar.cs:
8143         * ScrollBar.cs:
8144         * Splitter.cs:
8145         * StatusBar.cs:
8146         * TabControl.cs:
8147         * TextBoxBase.cs:
8148         * ToolBar.cs:
8149         * TrackBar.cs:
8150         * UpDownBase.cs:
8151         * ComboBox.cs: Remove handling of WM_PAINT and WM_ERASEBKGND and
8152         use OnPaintInternal. Remove Width/Height and Visible checks in
8153         paint handler, this is done at a higher level now.
8154         * GroupBox.cs: Don't need to handle WM_ERASEBKGND anymore.
8155         * PaintEventArgs.cs: Add a handled flag so controls that don't
8156         want anymore painting after OnPaintInternal can make sure OnPaint
8157         isn't called.
8159 2006-04-05  Mike Kestner  <mkestner@novell.com>
8161         * Form.cs: fix the menu WndProc hacks to respect the native enabled
8162         state of the form, so that we don't process events when Modal dialogs
8163         are up. Fixes #77922.
8165 2006-04-05  Alexander Olk  <alex.olk@googlemail.com>
8167         * Mime.cs: Default for range length is 1 not 0. If set to 0 no match
8168           checking is done.
8170 2006-04-05  Mike Kestner  <mkestner@novell.com>
8172         * XplatUIX11.cs: fix typo in the EX_APPWINDOW transient patch.
8174 2006-04-05  Mike Kestner  <mkestner@novell.com>
8176         * ListView.cs (HeaderMouseMove): null guarding for the over column
8177         when setting up the drag_to_index.  Fixes #78015.
8179 2006-04-04  Peter Dennis Bartok  <pbartok@novell.com>
8181         * XplatUIX11.cs: If WS_EX_APPWINDOW isn't set we don't want to show up
8182           in the taskbar. Transient windows seem to accomplish that.
8184 2006-04-04  Peter Dennis Bartok  <pbartok@novell.com> 
8186         * Form.cs:
8187           - Re-enabled CreateParams.X/Y code for FormStartPosition
8188           - Added code for manual placement when creating the Control
8189           - Incomplete patch to treat MDI forms differently when
8190             setting the ClientSizeCore. (Still need to figure out handling
8191             x/y coords there)
8192         * XplatUIX11.cs:
8193           - When we're explicitly setting the X/Y position of a non-Child
8194             window, let the WM know. Metacity really wants this.
8196 2006-04-04  Alexander Olk  <alex.olk@googlemail.com>
8198         * ThemeNice.cs: Added CPDrawButton
8200 2006-04-04  Alexander Olk  <alex.olk@googlemail.com>
8202         * ThemeNice.cs: Changed the color for focused buttons and activated
8203           the arrows for small scroll buttons.
8205 2006-04-04  Alexander Olk  <alex.olk@googlemail.com>
8207         * ThemeWin32Classic.cs: Removed DrawFlatStyleButton, not needed
8208           anymore. Changed some method modifiers to protected (virtual)
8209         * ThemeClearlooks.cs: Updated to reflect the ThemeWin32Classic
8210           changes
8211         * ThemeNice.cs: Updated to reflect the ThemeWin32Classic changes.
8212           Updated drawing of menus, buttons and progressbars; added
8213           CPDrawBorder3D 
8215 2006-04-03 Gonzalo Paniagua Javier <gonzalo@ximian.com>
8217         * ImageListStreamer.cs: implemented serialization/deserialization
8218         of the images.
8220 2006-04-03  Alexander Olk  <alex.olk@googlemail.com>
8222         * ThemeWin32Classic.cs:
8223           - Removed all the DrawFrameControl stuff; CPDrawButton,
8224             CPDrawCheckBox and CPDrawRadioButton are now handled directly
8225             inside the methods
8226           - Updated and corrected the drawing code of CPDrawButton,
8227             CPDrawCheckBox and CPDrawRadioButton to better match ms
8228           - Updated theme checkbox and radiobutton code to use the CP*
8229             methods
8231 2006-03-31  Peter Dennis Bartok  <pbartok@novell.com> 
8233         * XplatUIX11.cs: Enable clipping again now that the libgdiplus
8234           bug is fixed
8236 2006-03-31  Jackson Harper  <jackson@ximian.com>
8238         * XplatUIX11.cs: Somehow we get SETCURSORS for bad windows
8239         sometimes.
8240         * UpDownBase.cs: Don't CreateGraphics manually, use a
8241         Refresh. Ideally we would invalidate the correct areas here.
8243 2006-03-31  Peter Dennis Bartok  <pbartok@novell.com> 
8245         * XplatUIX11.cs: 
8246           - We now track the mapping state of windows. If a window (or 
8247             one of it's parents) is not mapped we no longer permit
8248             WM_PAINT messages to be generated since we'd otherwise get 
8249             lots of BadMatch X errors. Jackson did all the work figuring
8250             out the problem.
8251           - Destroying the caret if the window it's contained in is 
8252             destroyed. Can't use regular DestroyCaret method since it
8253             might fall into a drawing function (trying to remove the
8254             caret) and with that generate new BadMatch errors. Again,
8255             Jackson tracked this down.
8256           - Changed DestroyChildWindows to SendWMDestroyMessages, we now
8257             make sure we send the messages to all windows. (The old code
8258             would send the WM_DESTROY to the window, and then all child
8259             windows would be 'gone' because the WM_DESTROY handle lookup
8260             would no longer find the destroyed window)
8261         * Hwnd.cs: Added Mapping property to track mapping state of hwnd
8262         * X11Structs.cs: Added WindowType enum for MapWindow/UnmapWindow
8264 2006-03-31  Jackson Harper  <jackson@ximian.com>
8266         * ScrollableControl.cs: Dont recalc if we are not visible.
8268 2006-03-31  Mike Kestner  <mkestner@novell.com>
8270         * Control.cs (SetVisibleCore): move the CreateControl call up ahead of
8271         the visibility branch.
8273 2006-03-31  Jackson Harper  <jackson@ximian.com>
8275         * ScrollBar.cs: Cap values when incrementing/decrementing.
8277 2006-03-31  Mike Kestner  <mkestner@novell.com>
8279         * MenuAPI.cs: setup menu.tracker for popup/context menus.
8280         * ToolTip.cs: guard against timer expirations with no active control.
8281         Not sure why it happened.
8283 2006-03-31  Mike Kestner  <mkestner@novell.com>
8285         * ThemeWin32Classic.cs: add some horizontal padding space for the tip
8286         text.
8287         * ToolTip.cs: Position the tooltip based on where the cursor is at
8288         popup time, not at MouseEnter time.  Add a Down state so that we don't
8289         redisplay tips without a Leave. Use faked XplatUI.GetCursorInfo for
8290         positioning offset. Lookup DisplaySize at positioning time, since it
8291         can theoretically change during invocation.
8292         * XplatUIWin32.cs: fake GetCursorInfo until pdb can do it properly.
8293         * XplatUIX11.cs: fake GetCursorInfo until pdb can do it properly.
8295 2006-03-31  Alexander Olk  <alex.olk@googlemail.com>
8297         * ThemeWin32Classic.cs: Use CPDrawBorder3D to draw a GroupBox.
8298           Fixes behaviour when the Text property of the box is String.Empty
8300 2006-03-31  Peter Dennis Bartok  <pbartok@novell.com>
8302         * XplatUIX11.cs: Only send mouseleave for our client windows, not
8303           for the whole window (otherwise we get WM_MOUSE_LEAVE twice for
8304           a window)
8306 2006-03-31  Alexander Olk  <alex.olk@googlemail.com>
8308         * FileDialog.cs: Visual enhancement for the popup buttons in 
8309           PopupButtonPanel
8311 2006-03-31  Alexander Olk  <alex.olk@googlemail.com>
8313         * ColorDialog.cs, FontDialog.cs: Make use of the updated 3D border
8314           code
8316 2006-03-30  Alexander Olk  <alex.olk@googlemail.com>
8318         * ThemeWin32Classic.cs: Updated MainMenu drawing of selected and
8319           highlighted menu items to match ms
8321 2006-03-30  Peter Dennis Bartok  <pbartok@novell.com> 
8323         * XplatUIX11.cs: Don't set a clip rectangle unless it's not empty
8325 2006-03-30  Mike Kestner  <mkestner@novell.com>
8327         * Menu.cs (SelectedItem): use new MenuItem.Selected prop.
8328         * MenuAPI.cs: use new MenuItem.Selected prop. redraw MainMenu when we
8329         go active to account for HotLight to Selected transition.
8330         * MenuItem.cs: add internal Selected prop. Fill out the Status
8331         property by calculating it from item info. Add HotLight,
8332         NoAccelerator, Checked, Grayed, and Disabled flags where appropriate.
8334 2006-03-30  Mike Kestner  <mkestner@novell.com>
8336         * MenuItem.cs: only emit DrawItem and MeasureItem for OwnerDraw.
8338 2006-03-29  Jackson Harper  <jackson@ximian.com>
8340         * Form.cs: Implement TODO.
8342 2006-03-29  Peter Dennis Bartok  <pbartok@novell.com> 
8344         * PrintPreviewDialog.cs: Implemented missing methods and events; still
8345           missing proper dialog setup in the constructor
8347 2006-03-29  Peter Dennis Bartok  <pbartok@novell.com>
8349         * ProgressBar.cs: Added 2.0 Style property that apps seem to use
8350         * Control.cs:
8351           - Implemented CheckForIllegalCrossThreadCalls, removed TODO
8352           - Fixed ResetBindings and removed TODO
8353           - Added check for cross-thread calls to get_Handle()
8354           - Added Marshaller attribute for set_Font to satisfy class status
8355         * FontDialog.cs: Removed TODOs that seemed implemented
8356         * UpDownBase.cs: Removed unneeded TODO and Fixme
8357         * MessageBox.cs: Implemented support for Default button and removed TODO
8358         * FileDialog.cs: Removed obsolete TODO
8359         * DomainUpDown.cs: Removed obsolete TODO
8360         * ButtonBase.cs: Removed obsolete TODO
8361         * XplatUIWin32.cs: Removed obsolete TODO
8362         * Form.cs:
8363           - Removed obsolete TODO
8364           - Calling CheckAcceptButton when the acceptbutton is changed to allow
8365             internal status updates
8366           - Making sure the active control is selected when the control is created
8367         * CurrencyManager.cs: Removed obsolete TODO
8369 2006-03-29  Mike Kestner  <mkestner@novell.com>
8371         * *.cs: fix remaining corcompare issues for 1.1 API with the exception
8372         of PrintPreviewDialog and RichTextBox.
8374 2006-03-29  Alexander Olk  <alex.olk@googlemail.com>
8376         * Theme.cs: Added a little helper to SystemResPool to get the Dark,
8377           DarkDark, Light and LightLight colors for a specific color
8378         * ThemeWin32Classic.cs:
8379           - Use Button drawing code to draw RadioButtons and CheckBoxes with
8380             Appearance = Button 
8381           - Make use of the new ResPool helper CPColor
8382           - Draw ProgressBar and StatusBar with correct 3D borders
8384 2006-03-29  Alexander Olk  <alex.olk@googlemail.com>
8386         * ColorDialog.cs: Return selected color. Fixes bug #77940.
8388 2006-03-28  Mike Kestner  <mkestner@novell.com>
8390         * ListView.cs: fix Icon layout to plan for scrollbar widths when
8391         calculating col/row counts.
8393 2006-03-28  Mike Kestner  <mkestner@novell.com>
8395         * ColumnHeader.cs:
8396         * ListView.cs:
8397         * ListViewItem.cs:
8398         * Menu.cs: 
8399         switch to explicit interface method implementation for some methods
8400         corcompare identifies as inconsistent with MS.
8402 2006-03-28  Mike Kestner  <mkestner@novell.com>
8404         * MainMenu.cs: 
8405         * Menu.cs:
8406         add a few missing methods from the class status output.
8408 2006-03-28  Alexander Olk  <alex.olk@googlemail.com>
8410         * ControlPaint.cs: Fixed ControlPaint.Light method. Results are now
8411           correct.
8413 2006-03-28  Mike Kestner  <mkestner@novell.com>
8415         * MenuAPI.cs: Deactivate on MainMenu item click. Fixes #77917.
8417 2006-03-27  Mike Kestner  <mkestner@novell.com>
8419         * ThemeWin32Classic.cs: Switch flat toolbars to use RaisedInner for
8420         the Hilight state to adapt to Alex's CPDrawBorder3D changes.
8422 2006-03-27  Alexander Olk  <alex.olk@googlemail.com>
8424         * ThemeWin32Classic.cs: Rewrote Button drawing code to match ms.
8426 2006-03-25  Alexander Olk  <alex.olk@googlemail.com>
8428         * ThemeWin32Classic.cs:
8429           - GroupBox: Inserted a little gap between the text and the lines
8430             on the right side
8431           - Made the code in CPDrawBorder3D more readable
8432           - Corrected the drawing location of the up and down arrows in 
8433             CPDrawScrollButton
8435 2006-03-25  Alexander Olk  <alex.olk@googlemail.com>
8437         * ControlPaint.cs: Corrected line widths in DrawBorder for
8438           ButtonBorderStyle Inset and Outset
8440 2006-03-25  Alexander Olk  <alex.olk@googlemail.com>
8442         * ThemeWin32Classic.cs:
8443           - Rewrote the totally broken CPDrawBorder3D method. That was
8444             one of the main problems for the terrific ThemeWin32Classic
8445             look
8446           - Updated and corrected Button drawing
8447           - Correct the dimensions of the SizeGrip to match ms ones
8448           - Removed a small drawing glitch in DrawComboBoxEditDecorations
8449         * XplatUIX11.cs: Draw borders with BorderStyle = Fixed3D with
8450           Border3DStyle.Sunken to match ms.
8452 2006-03-25  Alexander Olk  <alex.olk@googlemail.com>
8454         * ThemeWin32Classic.cs: First small part of the "de-uglify
8455           ThemeWin32Classic" effort, SizeGrip
8457 2006-03-24  Jackson Harper  <jackson@ximian.com>
8459         * XplatUIX11.cs: Give a max idle time of one second, this matches
8460         MS and forces an Idle event every second when there are no other
8461         events in the queue.
8463 2006-03-24  Mike Kestner  <mkestner@novell.com>
8465         * ListView.cs: Handle (Large|Small)ImageList == null more robustly.
8466         * ListView.Item.cs: fix layout issues with null image lists and images
8467         smaller than checkbox size.
8468         * ThemeWin32Classic.cs: Draw a 12 pixel line in ListView LargeIcon
8469         mode like MS does.  It's weird, but consistent.  ;-)
8470         Fixes #77890.
8472 2006-03-24  Mike Kestner  <mkestner@novell.com>
8474         * ListView.cs: Scroll wheel support for the item control.  Fixes
8475         #77839.
8477 2006-03-23  Jackson Harper  <jackson@ximian.com>
8479         * ScrollableControl.cs: Special case negative sized areas, not
8480         zero.
8481         * MonthCalendar.cs: Save the rect of the clicked date so we can
8482         use it for invalidation.
8483         - Try to cut down on the number of invalidates
8484         - Invalidate the rect the mouse is over and was over when moving
8485         the mouse, so we get the focus box following the cursor.
8487 2006-03-23  Mike Kestner  <mkestner@novell.com>
8489         * ThemeWin32Classic.cs: fix FullRowSelect selection background and
8490         focus rectangle drawing. Fixes #77835.
8492 2006-03-23  Mike Kestner  <mkestner@novell.com>
8494         * XplatUIX11.cs: rework the fix for #77828 by changing the order of
8495         the if and else if and reverting back to the original == check on the
8496         None conditional.
8498 2006-03-23  Alexander Olk  <alex.olk@googlemail.com>
8500         * FontDialog.cs: Update the example panel if the selected index of
8501           the fontListBox changes.
8503 2006-03-23  Alexander Olk  <alex.olk@googlemail.com>
8505         * FileDialog.cs: Make FileDialog remember which directory it was in
8506           last in the same execution.
8508 2006-03-22  Mike Kestner  <mkestner@novell.com>
8510         * FileDialog.cs: make the DropDownMenu on the toolbar display
8511         RadioChecks since they are mutually exclusive and that's what MS does.
8513 2006-03-22  Mike Kestner  <mkestner@novell.com>
8515         * Theme.cs: add Color param to CPDrawMenuGlyph.
8516         * ThemeWin32Classic.cs: do color specific menu glyph rendering so that
8517         checks and radio marks and arrows are visible on highlighted items.
8518         * ControlPaint.cs: update to use new Theme signature.
8520 2006-03-22  Mike Kestner  <mkestner@novell.com>
8522         * MenuAPI.cs: only process Enter and arrow keypresses if the tracker
8523         is active. Fixes #77870.
8525 2006-03-22  Alexander Olk  <alex.olk@googlemail.com>
8527         * FileDialog.cs: Corrected TabIndex order and set fileNameComboBox
8528           to be focused/selected after startup
8530 2006-03-22  Alexander Olk  <alex.olk@googlemail.com>
8532         * ColorDialog.cs: 
8533           - Corrected behaviour of Color, AllowFullOpen, FullOpen,
8534             CustomColors and ShowHelp properties
8535           - Some internal rewrites to get better results when using the
8536             ColorMatrix
8538 2006-03-22  Mike Kestner  <mkestner@novell.com>
8540         * ListView.cs: hook into Peter's new ResetMouseHover capability to fix
8541         HoverSelection.  Fixes #77836.
8543 2006-03-22  Mike Kestner  <mkestner@novell.com>
8545         * FileDialog.cs: bugfixes for the toolbar.  Use PushButtons instead of
8546         ToggleButtons.  (De)Sensitize the Back button around a stack count of
8547         1, not 0.  Update ButtonSize based on a pixel count of the win32
8548         control.  Adjust the toolbar size/location for new button size.
8550 2006-03-22  Jackson Harper  <jackson@ximian.com>
8552         * XplatUIX11.cs: Don't handle configurenotifys if PostQuitState is
8553         true.
8554         * ScrollBar.cs: When doing increments and decrements we need to
8555         set the Value property so that ValueChanged gets raised. A
8556         possible optimization here would be to make an internal SetValue
8557         that doesn't invalidate immediately.
8558         * ToolTip.cs: Tooltips get added to their container (when
8559         supplied) so they get disposed when the container is disposed.
8560         - Don't create tooltips for String.Empty. This prevents all these
8561         little 2-3 pixel windows from showing up when running nunit-gui
8562         and driving me mad.
8563         * Form.cs: Don't set topmost when setting the owner if the handles
8564         haven't been created yet.  The topmost set will happen when the
8565         handles are created.
8567 2006-03-22  Peter Dennis Bartok  <pbartok@novell.com> 
8569         * XplatUIX11.cs:
8570           - DeriveWindowStyles: Fixed typo in borderstyle generation (#77828)
8571           - SetVisible: Sending WINDOWPOSCHANGED for all controls when made 
8572             visible (to allow them to recalculate their sizes)
8574 2006-03-21  Mike Kestner  <mkestner@novell.com>
8576         * ThemeWin32Classic.cs: major refactoring of the ToolBar rendering
8577         methods. Removed a ton of redundant code.  Still not really happy with
8578         the border rendering, but I think that's mainly because of the
8579         ControlDarkDark being black instead of a dark grey. Depending on how 
8580         close we want to be, we might want to revisit those color choices.
8581         Among the new features added during the refactor were DropDownArrow
8582         pressed rendering, Disabled image rendering.  Proper flat appearance
8583         boundary rendering.  Removed the Divider and Wrapping dividers since I
8584         can't figure out any combination of themes and conditions to make the
8585         MS control draw a horizontal line on a toolbar despite what the
8586         Divider property docs indicate.
8587         * ToolBar.cs: rewrite the layout engine. Fixes numerous flicker
8588         conditions and incorrect layout.  Updated to coding standard.
8589         * ToolBarButton.cs: refactored layout and positioning code from
8590         ToolBar to here.  Invalidate wherever possible instead of forcing
8591         redraws of the whole toolbar. 
8592         (Known remaining issues: explicit ButtonSize smaller than provided
8593         images.)
8595 2006-03-21  Mike Kestner  <mkestner@novell.com>
8597         * ContextMenu.cs (Show): use the position parameter instead of just
8598         showing at the MousePosition.
8600 2006-03-21  Jackson Harper  <jackson@ximian.com>
8602         * TabControl.cs: Remove the call to ProcessKeyEventArgs and let
8603         control handle this.
8604         * TreeNodeCollection.cs: If we are clearing the root node we need
8605         to reset top_node so calcs can still happen.
8606         * ThemeWin32Classic.cs: This is a Flags so we need to check
8607         properly.
8608         
8609 2006-03-21  Jackson Harper  <jackson@ximian.com>
8611         * DataGrid.cs: Create columns when the binding context has been
8612         changed.
8613         * X11Structs.cs: Keysyms are uints.
8614         - Add size to fix build.
8616 2006-03-21  Peter Dennis Bartok  <pbartok@novell.com> 
8618         * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs, XplatUIWin32.cs, 
8619           XplatUIOSX.cs: 
8620           - Added ResetMouseHover method to allow controls to retrigger
8621             hovering if they need it more than once
8622           - Implemented MouseHoverTime and MouseHoverSize properties
8623         * Timer.cs: Start() must reset the interval
8624         * SystemInformation.cs: Added 2.0 MouseHoverTime and MouseHoverSize
8625           properties
8627 2006-03-21  Jackson Harper  <jackson@ximian.com>
8629         * X11Keyboard.cs: improved layout detection. Move the nonchar
8630         tables into this file.
8631         * KeyboardLayouts.cs: Move the tables into resource files.
8633 2006-03-21  Mike Kestner  <mkestner@novell.com>
8635         * ListView.cs: use OnItemActivated to raise events. Fixes #77834.
8637 2006-03-21  Alexander Olk  <alex.olk@googlemail.com>
8639         * Mime.cs: Various speed optimizations. Looking up mime types
8640           is now 2 times faster than before
8642 2006-03-17  Peter Dennis Bartok  <pbartok@novell.com> 
8644         * CreateParams.cs: Added internal menu field
8645         * Control.cs: 
8646           - Switched call order for UpdateBounds; now we always call
8647             the one that also takes ClientSize, and we're calculating the 
8648             client size via driver method in the others. The previous
8649             method of tracking client size by difference wasn't working
8650             for forms where even the starting client size wouldn't match
8651             the overall form size (due to borders) (Part of fix for #77729)
8652           - CreateParams(): Do not use parent.Handle unless the handle is
8653             already created. Causes havoc with Nexxia and throws off our
8654             creation of controls
8655         * XplatUIX11.cs:
8656           - Created new PerformNCCalc method to trigger WM_NCCALCSIZE message
8657           - Switched handling of ConfigureNotify over to new PerformNCCalc 
8658             method (consolidates code)
8659           - Changed RequestNCRecalc to use new PerformNCCalc method
8660           - Added calls to RequestNCRecalc when menus and borders are changed
8661             to allow app to set NC size. (Part of fix for #77729) This matches
8662             when MS send a WM_NCRECALC on Win32 windows.
8663           - Now sending WM_WINDOWPOSCHANGED when toplevel for is made visible
8664             (Part of fix for #77729). This matches what MS does, they also
8665             send that message when the form is made visible.
8666           - XException.GetMessage: Improved usability of X errors by including
8667             a translation of the window into Hwnd and Control class
8668           - Improved debug info for window creation, reparenting and destruction
8669           - Created helper method WindowIsMapped() [Currently not used]
8670         * XplatUIWin32.cs: Added ToString() debug helper to RECT structure
8671         * Form.cs:
8672           - CreateParams: Now setting our menu on the new internal menu field
8673           - SetClientSizeCore: Now passing cp.menu instead of ActiveMenu to
8674             avoid calculating the same property twice
8675         * Hwnd.cs:
8676           - Improved usability of ToString() for debugging purposes
8677           - GetWindowRectangle(): Now uses proper CalcMenuBarSize method to
8678             determine the height of the menu, instead of just the font. This
8679             required to also create a graphics context and to keep a bmp 
8680             around (for performance reasons)
8682 2006-03-17  Peter Dennis Bartok  <pbartok@novell.com>
8684         * MenuAPI.cs: Added OnMouseUp method
8685         * Form.cs:
8686           - Now remembering the requested client size, avoids size errors
8687           - WndProc: Now handling WM_xBUTTONUP and passing it to MenuTracker
8688             instead of base if the menu is active. This is required due to
8689             control now capturing and releasing on down/up and it would
8690             prematurely release our menu capture
8692 2006-03-17  Jackson Harper  <jackson@ximian.com>
8694         * KeyboardLayouts.cs: Add the czech layouts.
8696 2006-03-16  Jackson Harper  <jackson@ximian.com>
8698         * Control.cs: Use the viewport space when sizing not the controls
8699         client size, so things like ScrollableControl that effect the
8700         viewport size (when scrollbars are added) are computed correctly.
8701         * BindingContext.cs: Cleanup to use the DataSourceEntrys instead
8702         of ManagerEntrys.
8703         - Handle creating BindingManagers for null data sources.
8704         * DataGrid.cs: Bind the cached_currencymgr_events to the real data
8705         source, otherwise when rows are added they are added to the 'fake'
8706         datasource and we will crash when trying to set the position in
8707         those rows.
8708         - Use Implicit scrollbars on the datagrid so they arent
8709         selectable.
8710         
8711 2006-03-16  Jackson Harper  <jackson@ximian.com>
8713         * Binding.cs:
8714         * InternalWindowManager.cs:
8715         * MdiWindowManager.cs:
8716         * X11Keyboard.cs: I really want Mike to love me again (fix
8717         compiler warnings).
8719 2006-03-16  Peter Dennis Bartok  <pbartok@novell.com>
8721         * DataGrid.cs:
8722           - OnMouseDown: Switch to editing mode when clicking on the cell
8723                          even if we're clicking on the cell that's currently 
8724                          selected
8725           - ProcessGridKey: Left/Right now wrap like MS.Net does
8726           - ProcessGridKey: Tab now knows to add a new row when tab is
8727                             pressed in the cell of the last column of the 
8728                             last row
8729           - ProcessGridKey: Enter now adds another row  if pressed in the last
8730                             row and selectes the new row, same column cell
8731           - ProcessGridKey: Home/End navigate columns, not rows, like 
8732                             originally implemented
8733           - Broke ProcessKeyPreview code out into an extra Internal method
8734             so it can be called from the edit code
8735         * DataGridTextBox.cs (ProcessKeyMessage):
8736           - Switched to accept Tab keypresses
8737           - Added F2 handling to allow jumping to the end of the edited cell
8738           - Added logic to allow moving caret left/right inside edited cell
8739             and making the edited cell jump when the caret hits cell borders
8740           - Tab and Enter are now passed to the datagrid after being handled
8741         * TextBoxBase.cs:
8742           - Removed capture code now that Control handles it
8743           - set_SelectionStart now ensures caret is visible
8745 2006-03-16  Jackson Harper  <jackson@ximian.com>
8747         * TrackBar.cs: Debackwards the increment/decrement for handling
8748         mouse clicks on the bar with vertical trackbars.
8749         * ThemeWin32Classic.cs: Draw vertical trackbars with 0 at the
8750         bottom to match MS.
8752 2006-03-16  Mike Kestner  <mkestner@novell.com>
8754         * ListView.cs: make shift/ctrl keyboard and mouse selection 
8755         consistent with the MS control. Fix a bug in
8756         SelectedListViewItemCollection.Clear that was pissing me off for the
8757         better part of a day because the collection was being altered
8758         underneath us as we walked the list.
8760 2006-03-16  Peter Dennis Bartok  <pbartok@novell.com> 
8762         * Control.cs: Not sure how we could miss this so long, but it seems
8763           that MS.Net has Capture set all the way from before calling 
8764           OnMouseDown through sending the mouse events until after
8765           OnMouseUp. This will fix DataGrid's selection being set to end
8766           at the location of the MouseUp.
8768 2006-03-15  Jackson Harper  <jackson@ximian.com>
8770         * BindingContext.cs: Check the binding after its added so that it
8771           can initialize the binding managers and hookup to events.
8772         * Binding.cs: Data members seem to sometimes include rows/cols in
8773           the format Row.Column we now take this into account.
8774           - Hookup to the position changed event so we can update the
8775           control when the position has changed in the data set.
8776         * CurrencyManager.cs: Take into account the row/col naming
8777           convention when creating dataset tables.
8778         * BindingContext.cs: Using a newer better way of storing
8779           datasource/datamember pairs.  Hopefully this better matches MS for
8780           looking up binding managers.
8783 2006-03-15  Jackson Harper  <jackson@ximian.com>
8785         * BindingContext.cs: The currency manager needs the data member
8786         name, if the member is a data set we use the name to find the
8787         correct table.
8788         * CurrencyManager.cs: When creating the list prefer an IList over
8789         an IListSource.
8790         - Attempt to create a DataTable from a DataSet (TODO: might need
8791         some better error checking here, although MS doesn't seem to have much)
8792         - If we have a DataTable create a view and use it as our list.
8794 2006-03-15  Mike Kestner  <mkestner@novell.com>
8796         * ListView.cs: keep a matrix of the icon mode layout to facilitate
8797         keyboard navigation. Support Up/Down/Left/Right selection correctly
8798         for all 4 View modes.
8799         * ListViewItem.cs: add internal row/col fields for icon layouts.
8801 2006-03-15  Jackson Harper  <jackson@ximian.com>
8803         * TabControl.cs: Redraw the tabs when we resize so their newly
8804         calculated sizes are drawn on screen.
8805         * X11Keyboard.cs: Begginnings of XIM support.  We also now support
8806         composite characters.
8807         * XplatUIX11.cs: Keyboard driver needs to know about focus changes
8808         - filter events so that composite characters can be created
8809         patches by peter
8810         * X11Structs.cs: Add XIMProperties enum.
8812 2006-03-14  Peter Dennis Bartok  <pbartok@novell.com> 
8814         * Control.cs (BringToFront, SendToBack): Don't use window or handle
8815           unless it's created
8817 2006-03-14  Peter Dennis Bartok  <pbartok@novell.com>
8819         * Control.cs (PerformLayout): We don't need to consider visiblity
8820           for anchoring, only for docking. This fixes 'whacky' alignment
8821           in listbox and other controls that use implicit scrollbars after
8822           the previous PerformLayout patch
8823         * ListBox.cs: Switched to use implicit scrollbars
8824           
8825 2006-03-14  Mike Kestner  <mkestner@novell.com>
8827         * ToolBar.cs: 
8828         * VScrollBar.cs:
8829         - chain up the "new event" overrides to base and use
8830         OnEvent to raise them.  Part of fix for bug #76509.
8832 2006-03-14  Alexander Olk  <alex.olk@googlemail.com>
8834         * FileDialog.cs: Do not select an item in the parent directory
8835           on backspace
8837 2006-03-14  Peter Dennis Bartok  <pbartok@novell.com> 
8839         * Control.cs (PerformLayout): It would seem that we considered
8840           invisible windows for our layout. Not quite the right thing
8841           to do. Now we don't any longer, thereby fixing bug #76889.
8843 2006-03-14  Peter Dennis Bartok  <pbartok@novell.com>
8845         * Control.cs (CanFocus): I goofed. A control can have focus 
8846           even though it's not selectable. Made it match MS docs.
8848 2006-03-13  Peter Dennis Bartok  <pbartok@novell.com>
8850         * ControlPaint.cs (DrawBorder3D): DrawBorder3D does not fill the
8851           center by default (fixes #76895)
8852         * ThemeWin32Classic.cs, ThemeNice.cs, ThemeClearlooks.cs: Replaced 
8853           all uses of Border3DSides.All with the explicit ORd together
8854           Left|Right|Top|Bottom because I assume that nobody was aware 
8855           that All also implies a center fill. Most places I checked had
8856           a fill right above.
8857         * ProgressBarStyle.cs: Added
8859 2006-03-13  Mike Kestner  <mkestner@novell.com>
8861         * ListView.cs: fix breakage in drag shadow header positioning 
8862         from Peter's csc compilation fix.
8864 2006-03-13  Mike Kestner  <mkestner@novell.com>
8866         * ListView.cs: fix NRE produced by backspacing twice in a focused
8867         FileDialog.
8869 2006-03-13  Mike Kestner  <mkestner@novell.com>
8871         * ListView.cs: proxy Key(Down|Up) from ItemControl to ListView.
8873 2006-03-13  Peter Dennis Bartok  <pbartok@novell.com>
8875         * Hwnd.cs: Added fixed_size field to track windows whose size cannot
8876           be changed
8877         * XplatUIX11.cs: Now setting fixed_size on hwnd and if set, re-setting
8878           the allowed size before making programmatic size changes
8880 2006-03-13  Peter Dennis Bartok  <pbartok@novell.com> 
8882         * XplatUIX11.cs: Don't call XSetWMNormalHints if no flags are 
8883           set, metacity is broken and will still use the emty sizes in 
8884           the struct. (Fix for #77089)
8886 2006-03-13  Peter Dennis Bartok  <pbartok@novell.com>
8888         * XplatUIStructs.cs: Split WindowStyles into WindowStyles and 
8889           WindowExStyles and marked both enums as Flags
8890         * Form.cs, ComboBox.cs, ToolTip.cs, Control.cs, PropertyGridView.cs,
8891           NotifyIcon.cs, MenuAPI.cs, XplatUIOSX.cs, MonthCalendar.cs: Updated
8892           to match WindowStyles split
8893         * XplatUIX11.cs:
8894           - SetWMStyles: Added cehck to not apply WM attributes to Child windows
8895           - Updated to match WindowStyles split
8896         * XplatUIWin32.cs:
8897           - Fixed FosterParent creation, was using ExStyle on the Style field
8898             (This should help with Popup focus issues)
8899           - Updated to match WindowStyles split
8901 2006-03-13  Jackson Harper  <jackson@ximian.com>
8903         * MdiWindowManager.cs: Use the system menu height. Fixes some
8904         strange sizing issues.
8906 2006-03-12  Peter Dennis Bartok  <pbartok@novell.com>
8908         * RichTextBox.cs: Need to scroll to caret after text is inserted (#77672)
8909         * TextBoxBase.cs:
8910           - Scroll to caret after inserting text (#77672)
8911           - Make scroll range one pixel higher, fixes off-by-one error (and
8912             makes underlines visible on the last line)
8914 2006-03-12  Peter Dennis Bartok  <pbartok@novell.com> 
8916         * XplatUIX11.cs: Added call to new Keyboard.ResetKeyState to prevent
8917           the keyboard state from being stuck with keys in 'pressed' state when
8918           focus is switched away via keyboard
8919         * X11Keyboard.cs: Added new ResetKeyState method to allow drivers to
8920           reset the keyboard if no X11 KeyUp events are expected to come
8921         * X11Structs.cs: Switched type of Visible to bool to match driver
8923 2006-03-12  Peter Dennis Bartok  <pbartok@novell.com>
8925         * TextControl.cs:
8926           - Switched caret to be just 1 pixel wide, matches MS and looks less
8927             clunky
8928           - Moved caret display 1 pixel down from the top of the control
8929             to improve view
8930           - InsertCharAtCharet: Update the selection start if moving the caret
8931             (fixes bug #77696; based on patch suggested by kazuki@panicode.com)
8932           - No longer always creating the caret when the caret methods are
8933             called. Only the actual ShowCaret/HideCaret will do that now
8934           - Only setting caret visible if the owner control has focus
8935           - UpdateView: Added invalidation-shortcut logic for center and right 
8936             aligned text. Previously we'd update all according to the left
8937             logic which caused drawing errors. Also fixed height of invalidated
8938             areas, now properly invalidating the whole area (was off-by-one)
8939           - owner_HandleCreated: Always generate the document when the
8940             handle is created; this ensures that 
8941         * TextBoxBase.cs:
8942           - Fixed situation where caret would disappear under the right
8943             window border, also improved scrolling behaviour on left-
8944             aligned textboxes
8945           - Fixed right-aligned textboxes to have a border to the
8946             right instead of the caret being under the right border
8947         * XplatUIX11.cs:
8948           - Switched from 'nested' to simple visible/not visible tracking 
8949             for caret (part of fix for #77671)
8950           - No longer passing through translated FocusIn/FocusOut messages
8951             since we were notifying too often and the wrong windows. Instead
8952             we just notify our focussed window of receiving or loosing focus
8953         * XplatUIWin32.cs: Switched from 'nested' show/hide 
8954           counting for caret to simple visible yes/no behaviour (part of 
8955           fix for #77671)
8957 2006-03-11  Alexander Olk  <alex.olk@googlemail.com>
8959         * Mime.cs: Remove debug code...
8961 2006-03-11  Alexander Olk  <alex.olk@googlemail.com>
8963         * MimeGenerated.cs: Removed
8964         * Mime.cs: Mime now reads the mime data (magic, globs, aliases
8965           and subclasses) from /usr/(local/)share/mime and
8966           $HOME/.local/share/mime.
8968 2006-03-10  Jackson Harper  <jackson@ximian.com>
8970         * MdiWindowManager.cs: Recalc the NC area when a window is
8971         maximized/restored so that the menu area is drawn on forms that
8972         don't have a menu.
8974 2006-03-10  Peter Dennis Bartok  <pbartok@novell.com>
8976         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs, XplatUIWin32.cs,
8977           XplatUIX11.cs: Added RequestNCRecalc method to driver to allow
8978           us to force a WM_NCCALCRESIZE message being sent. This is needed
8979           for MDI maximizing.
8981 2006-03-10  Jackson Harper  <jackson@ximian.com>
8983         * Form.cs: We need to use the ActiveMenu when calculating menu
8984         height.
8985         - Fix nullref when the window manager hasn't been created yet.
8986         * Control.cs: Fix nullref when we try to bring a control to the
8987         front that has no parent.
8988         * MdiWindowManager.cs: Use the MaximizedMenu for calculating
8989         height.
8990         - Add a dummy item to the maximized menu so it always has the
8991         correct height. Otherwise when there are no menus we don't get our
8992         icon and buttons.
8993         
8995 2006-03-10  Jackson Harper  <jackson@ximian.com>
8997         * MenuAPI.cs: Make this available elsewhere. I need it in some MDI
8998         stuff.
8999         * Form.cs: Make the window_state internal so the window managers
9000         can track it.
9001         - When an MDI child is maximized let its window manager create the
9002         main menu (so it can add its icon).
9003         - Notify the window managers of state changes
9004         - Let the window manager paint its buttons and handle button
9005         clicks on the menu when it is maximized.
9006         * InternalWindowManager.cs: Move the prev_bounds into the mdi
9007         window manager, since tool windows don't use it, only mdi windows.
9008         - Tell the main form that we don't want it to handle NCPAINT
9009         itself to avoid extra painting.
9010         - Handle clicks on a maximized windows menu.
9011         - Handle window state changes
9012         - Handle minimize/maximize clicks correctly by setting the window state.
9013         * MdiWindowManager.cs: Add an icon menu that (the menu you get
9014         when clicking on the forms icon).
9015         - New method to create a forms maximized menu. This is its normal
9016         menu + an icon.
9017         - Handle window state changes.
9018         - Handle sizing of maximized windows.  Maximized windows are just
9019         drawn bigger then the parent visible area. All controls are still
9020         there, they are just outside the visible area (this matches windows).
9021         * MdiClient.cs: No scrollbars when a child window is maximized.
9022         - Let the children windows figure out how big they should be when
9023         sizing maximized windows.
9024         - Implement a version of ArrangeIconicWindows somewhat similar to
9025         Windows version.  There are some little differences, but I don't
9026         think any app will rely on the layout of minimized mdi windows.
9028 2006-03-10  Peter Dennis Bartok  <pbartok@novell.com>
9030         * Padding.cs: Several fixes to allow compiling with csc 2.0
9032 2006-03-09  Jackson Harper  <jackson@ximian.com>
9034         * Menu.cs:
9035         * MenuItem.cs: Cheap hack so we can add items to the list without
9036         the events being raised.  This allows adding mdi items during
9037         drawing. TODO: Should probably find a better time to add the items.
9039 2006-03-10  Peter Dennis Bartok  <pbartok@novell.com>
9041         * ThemeWin32Classic.cs:
9042           - CheckBox_DrawText: Added logic to not wrap if not enough space
9043             is available (Fix for bug #77727)
9044           - RadioButton_DrawText: Added logic not to wrap if not enough
9045             space is available (Fix for bug #77727). Also removed some
9046             duplicate code, DrawString always drawing the regular text
9047             before hitting the if statement.
9049 2006-03-10  Peter Dennis Bartok  <pbartok@novell.com> 
9051         * XplatUIX11.cs: Handle an unmapped window state in SetWindowState
9053 2006-03-10  Peter Dennis Bartok  <pbartok@novell.com>
9055         * PictureBox.cs: Implemented ISupportInitialize interface (fixes #77726)
9056         * ContainerControl.cs: Partial implementation of some 2.0 scaling
9057           methods. Moved the new 2.0 properties into alphabetical order with
9058           other properties and added MonoTODO tags
9060 2006-03-09  Peter Dennis Bartok  <pbartok@novell.com> 
9062         * AutoScaleMode.cs: Added. Fix build.
9064 2006-03-09  Peter Dennis Bartok  <pbartok@novell.com>
9066         * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs, XplatUIWin32.cs, 
9067           XplatUIOSX.cs: Removed HWnd argument from CalcuateClientRect, not used
9068           and was requiring premature handle creation for calls from above
9069         * Form.cs, Control.cs: Removed handle arguments from calls to
9070           CalculateClientRect()
9072 2006-03-09  Peter Dennis Bartok  <pbartok@novell.com> 
9074         * ListView.cs (HeaderMouseMove): Fix csc compilation. 
9075           drag_column.column_rect is MarshalByRef and can't be used that way
9077 2006-03-09  Peter Dennis Bartok  <pbartok@novell.com>
9079         * AxHost.cs: Added deserialization constructor for 
9080           AxHost+State (fixes 77743)
9082 2006-03-09  Mike Kestner  <mkestner@novell.com>
9084         * ListView.cs: 
9085         - Added column drag reordering for details view.
9086         - fixed behavior when mouse is dragged off column and
9087         AllowColumnReorder is false.
9088         * ColumnHeader.cs: clone the format too in Clone.
9089         * Theme.cs: add DrawListViewHeaderDragDetails method.
9090         * ThemeWin32Classic.cs:
9091         - impl new method for drawing drag column shadows and targets.
9092         - support column offset for details mode in DrawListViewItem.
9094 2006-03-09  Peter Dennis Bartok  <pbartok@novell.com>
9096         * TextControl.cs: Reset the char_count when the document is cleared
9097           (Fixes bug reported on mono-winforms mailing list)
9099 2006-03-09  Peter Dennis Bartok  <pbartok@novell.com> 
9101         * TextBoxBase.cs: Honor the Handled state of KeyPress events. Instead
9102           of calling base we simply process the key ourselves, since both
9103           DefWindowProc and the handled method would set m.Result. 
9104           (Fixes #77732)
9106 2006-03-09  Peter Dennis Bartok  <pbartok@novell.com>
9108         * Form.cs(ScaleCore): No longer calling base.ScaleCore since that
9109           method also moves the window; instead implemented a copy of
9110           Control.ScaleCore (Part of fix for #77456)
9111         * TextBoxBase.cs: 
9112           - Created new CreateGraphicsInternal method to allow providing
9113             a graphics context when no handle is created without triggering
9114             handle creation. (Part of fix for #77456)
9115           - Replaced use of Control.CreateGraphics with CreateGraphicsInternal
9116         * TextControl.cs: 
9117           - Switched Constructor to require TextBoxBase instead of Control (to
9118             allow uncast access to CreateGraphicsInternal)
9119           - Safeguarded use of owner.Handle property. No longer accessing it
9120             unless the handle is already created.
9121           - Replaced use of Control.CreateGraphics with CreateGraphicsInternal
9122           - Now triggering a recalc when owning control becomes visible
9123         * TextBox.cs, RichTextBox.cs: Switched to use new internal 
9124           TextBoxBase.CreateGraphicsInternal() method to avoid triggering
9125           premature handle creation (Part of fix for #77456)
9126         * Control.cs:
9127           - We now only destroy our double-buffering buffers when the
9128             control is resized or disposed, but not when visibility
9129             changes. (The code even re-created them twice every time)
9130           - Now requiring a redraw of the buffer on visibility changes
9131             (fixes bug 77654 part 2)
9132           - Not passing OnParentVisibleChanged up unless the control
9133             is visible
9134           - CanFocus: Fixed to match MS documentation
9135           - Focus: Fixed to return actual focus state and to check if
9136             setting focus is legal before setting it
9138 2006-03-08  Peter Dennis Bartok  <pbartok@novell.com>
9140         * ThemeWin32Classic.cs: TabPages cannot have focus. Determine
9141           when to draw focus rectangle by looking at parent focus and
9142           selected state instead. This fixes TabPages on Linux sometimes
9143           having none or multiple focus rectangles.
9144         * XplatUIX11.cs (SetFocus): 
9145           - Don't set the focus if the same window already has focus
9146           - Use SendMessage instead of PostMessage (like it's Win32
9147             equivalent) and send the WM_SETFOCUS before the WM_KILLFOCUS
9148             to match MS behaviour
9149         * TabControl.cs(SelectedIndex): Don't set Focus on TabPage, TabPages
9150           are not selectable.
9152 2006-03-07  Jackson Harper  <jackson@ximian.com>
9154         * PictureBox.cs: Revert line I accidently committed last week.
9156 2006-03-07  Peter Dennis Bartok  <pbartok@novell.com>
9158         * Control.cs: 
9159           - Added new IsRecreating and ParentIsRecreating properties to
9160             allow testing if RecreateHandle has been called on ourselves
9161             or one of our parents
9162           - WndProc(WM_DESTROY): If our control handle is being recreated
9163             we immediately need to create the handle when receiving the
9164             destroy, that way our child windows find a valid parent handle
9165             when they themselves are being recreated upon WM_DESTROY receipt
9166             (fix for bug #77654 part 1)
9167         * XplatUIX11.cs:
9168           - DestroyWindow: WM_DESTROY must be sent to our own window before
9169             notifying any child windows. MS documents that child windows
9170             are still valid when WM_DESTROY is received. (Control now relies on
9171             this behaviour)
9172           - Added some fine-grain debug options
9174 2006-03-06  Jackson Harper  <jackson@ximian.com>
9176         * MdiClient.cs: Redid scrolling logic a bit to create a virtual
9177         box and base calculations off this.
9178         * MdiChildContext.cs:
9179         * MdiWindowManager.cs: Don't need to ensure scrollbars here
9180         anymore.
9181         
9182 2006-03-06  Peter Dennis Bartok  <pbartok@novell.com>
9184         * Splitter.cs: In situations where the affected control is added
9185           to the parent's control list after the splitter, we would not
9186           populate affected. Now we try populating it on mousedown, if
9187           it's not already set, and force it to be re-set whenever our
9188           parent changes.
9190 2006-03-03  Matt Hargett  <matt@use.net>
9192         * Control.cs: implement Control.Padding
9193         * Padding.cs: -Padding.All returns -1 when constructing with the
9194         implicit default ctor
9195         -Padding.ToString() matches MS.NET
9196         * ContainerControl.cs: implement
9197         ContainerControl.AutoScaleDimensions
9198         * ListControl.cs: implement ListControl.FormattingEnabled
9199         * TextBox.cs: Implemented TextBox.UseSystemPasswordChar.
9200         * ButtonBase.cs:
9201         * TabPage.cs: Implement UseVisualStyleBackColor.
9202         * PictureBox.cs: Implement PictureBox.InitialImage.
9204 2006-03-03  Mike Kestner  <mkestner@novell.com>
9206         * ListView.cs: Refactor into HeaderControl and ItemControl. Fix new
9207         event declarations to proxy to base event.
9208         * ListViewItem.cs: update to use ItemControl.
9209         * Theme.cs: make DrawListViewHeader. s/DrawListView/DrawListViewItems.
9210         * ThemeWin32Classic.cs: update to new ListView theme API and fix
9211         column header label rendering for 0 width columns.
9213 2006-03-03  Peter Dennis Bartok  <pbartok@novell.com>
9215         * Control.cs (ControlCollection.SetChildIndex): Avoid using a call
9216           that causes the control to be created. Fixes #77476.
9218 2006-03-02  Jackson Harper  <jackson@ximian.com>
9220         * Hwnd.cs: Clear the nc pending when clearing the NC area, not the
9221         expose_pending.
9223 2006-03-02  Peter Dennis Bartok  <pbartok@novell.com>
9225         * Control.cs: Implemented 2.0 feature where OnClick has MouseEventArgs
9226           passed in for the EventArgs (fixes #77690)
9228 2006-03-01  Jackson Harper  <jackson@ximian.com>
9230         * ScrollBar.cs: Refresh afterbeing resized.
9232 2006-02-28  Mike Kestner  <mkestner@novell.com>
9234         * MenuAPI.cs: Call PerformPopup internal method to emit Popup.
9235         Clean up a tracker compile warning.
9236         * MenuItem.cs: add internal PerformPopup method.
9237         [Fixes #77457]
9239 2006-02-28  Peter Dennis Bartok  <pbartok@novell.com> 
9241         * TextBoxBase.cs (set_Text): Recalculate the document (causing an
9242           implicit expose) when the text is set to null
9244 2006-02-28  Peter Dennis Bartok  <pbartok@novell.com>
9246         * RichTextBox.cs (FlushText): When newline is true, we always
9247           need to split the line, even if no text is on it and we may
9248           never eat newlines. (Fixes #77669)
9250 2006-02-28  Mike Kestner  <mkestner@novell.com>
9252         * ListView.cs: Add UpdateSelection internal method. Remove SelectItem 
9253         and set Selected instead.
9254         * ListViewItem.cs: Call owner.UpdateSelection to manipulate the 
9255         collections.
9257 2006-02-28  Peter Dennis Bartok  <pbartok@novell.com> 
9259         * ComboBox.cs: Allow setting SelectedIndex to -1. Fixes #77665
9261 2006-02-28  Alexander Olk  <alex.olk@googlemail.com>
9263         * FontDialog.cs:
9264           - Got rid of the panel. All controls are now directly added to
9265             the dialog form
9266           - It is now possible to set a font with the Font property
9267           - MinSize and MaxSize property do now what they should
9268           - ShowApply, ShowHelp, ShowColor, ShowEffects likewise
9269           - Searching and selecting a font with the font textbox works now,
9270             the same applies to the style and size textbox
9271           - Draw the correct 3D border in the example panel
9272           - Fixed a little mem leak (unused fonts didn't get disposed)
9273           - Many other internal updates/rewrites...
9274           - Fix typo
9276 2006-02-27  Peter Dennis Bartok  <pbartok@novell.com> 
9278         * TextControl.cs: 
9279           - InsertRTFFromStream: Added 'number of characters inserted' argument
9280           - set_SelectedRTF: Now using the number of characters to calculate
9281             the new location for the selection and cursor (x/y cannot be used
9282             due to potentially already wrapped text)
9284 2006-02-27  Peter Dennis Bartok  <pbartok@novell.com>
9286         * TextControl.cs: Added property and implemented means to allow 
9287           disabling recalculation of a document (can be used to speed up
9288           multiple inserts and is needed to make RTF inserts predictable, see
9289           bug #77659)
9290         * RichTextBox.cs: Using the new NoRecalc property of Document to
9291           keep x/y insert locations predictable. Also makes it faster inserting
9292           large chunks of RTF
9294 2006-02-27  Peter Dennis Bartok  <pbartok@novell.com> 
9296         * Control.cs: Separated special WM_SYSKEYUP keyboard handling. That way
9297           it's easier for a child control to handle the other messages without
9298           having to duplicate the special functionality
9299         * TextBoxBase.cs
9300           - WndProc: Removed calling base handler for WM_KEYDOWN and added 
9301             code to handle processing the key ourselves, in order to get 
9302             access to the result of KeyEventArgs.Handled. We now only call 
9303             ProcessKey if they key hasn't been handled already. Fixes #77526.
9304           - set_Text: If null or empty string is given, just clear the 
9305             document. Fixes part of #77526
9307 2006-02-27  Jackson Harper  <jackson@ximian.com>
9309         * SizeGrip.cs: Paint the background color before painting the grip
9310         so things look right.
9311         * MdiClient.cs: Add the sizegrip when both scrollbars are used.
9313 2006-02-27  Mike Kestner  <mkestner@novell.com>
9315         * ListView.cs:
9316           - Restructure layout and invalidation model to remove a ton of
9317           flicker from the control and speed up performance in general.
9318           - Add manual column resize, flickers like crazy, but I already have
9319           some ideas on how I'll fix that. (#76822)
9320           - Merge the three Icon-based views into a single layout method.
9321           - Move item selection interaction logic from the item since 
9322           interaction with the collections is more appropriate to the view.
9323           - Deselection on non-item clicks.
9324         * ListViewItem.cs:
9325           - Encapsulate most of the layout. Add some internal props to trigger
9326           layout.  Move to a model where Items invalidate themselves instead
9327           of just invalidating the whole control every time something changes.
9328           - Invalidate on Text/Caption changes.
9329           - switch to an offset based layout model to avoid having to absolute
9330           position every element on item moves.
9331           - correct checkbox layout to conform to MS layout.
9332         * ThemeWin32Classic.cs:
9333           - refactor some column header drawing code.
9334           - fix string justification for column headers (#76821)
9335           - make SmallIcon labels top justified for compat with MS impl.
9336         * ThemeClearlooks.cs:
9337           - adjust to new ListViewItem internal checkbox bounds api.
9339 2006-02-27  Jackson Harper  <jackson@ximian.com>
9341         * Control.cs:  Change where implicit controls fall in the zorder.
9342         They are now on top of all children.
9343         - Synced AddImplicit code with Add
9344         - Removed unused enumerator.
9345         * SizeGrip.cs: Remove the TODO as its been TODONE.
9347 2006-02-26  Peter Dennis Bartok  <pbartok@novell.com> 
9349         * TextControl.cs(Insert): Combine the last lines unless the insertion
9350           string ends with \n\n, otherwise we leave one line too many (Fixes
9351           something I noticed with the testapp for #77526; the bug itself was
9352           already fixed in the previous checkin)
9354 2006-02-26  Peter Dennis Bartok  <pbartok@novell.com>
9356         * RichTextBox.cs:
9357           - SelectionColor and SelectionFont methods no longer set absolute
9358             styles. Instead, the keep font or color respectively (This 
9359             resolves a long-standing FIXME in the code)
9360           - When flushing RTF text, the insert code now considers text trailing
9361             behind the insertion point (Fixes the bug where when replacing
9362             the selected text via SelectedRTF the remainder of the line behind 
9363             the selection would stay on the first insertion line)
9364         * TextBoxBase.cs:
9365           - AppendText now updates the selection points after inserting text
9366           - AppendText now ensures that the last tag (sometimes 0-length) of
9367             the document is used for the style information (Fixes part of 
9368             bug #77220)
9369         * TextControl.cs:
9370           - Created new FontDefiniton class to allow describing partial style
9371             changes
9372           - StreamLine() now takes a lines argument, to allow it to decide
9373             whether an encountered zero-length tag is the last in the document
9374             (which must be kept to not loose the font/color contained in it,
9375             for later appends)
9376           - Created Combine() and Split() methods for Marker structs, to 
9377             support marker updates due to reformatted documents (soft line
9378             wraps)
9379           - Implemented Document.CaretTag setter
9380           - Fixed MoveCaret(CtrlEnd) handling, now moves to the last character
9381             of the last line (Not the cause, but also exposed by bug #77220)
9382           - Added LineTag argument to InsertString method, to allow callers
9383             to force a certain tag to be used (required to force use of the
9384             trailing zero-length tag of a document)
9385           - Now updating markers in Combine(), to avoid stale tag markers
9386           - Added some method descriptions to aid maintenance
9387           - Implemented new FormatText concept, allowing additive/subtractive
9388             formatting by only specifying the components that are to be 
9389             changed. This was needed for resolving the RTB.SelectedColor/
9390             RTB.SelectedFont fixmes
9391           - Added Break() support method to allow breaking up linetags (used
9392             for partial formatting)
9393           - Added GenerateTextFormat() method. It is used for partial 
9394             formatting and allows to generate a full font/color from given
9395             attributes and an existing tag.
9397 2006-02-26  Jackson Harper  <jackson@ximian.com>
9399         * XplatUIX11.cs:  Use the correct caption height.
9400         - Translate hittest coordinates to screen coords to match MS.
9401         * XplatUIWin32.cs: When we create MDI windows we need to reset
9402         some of the style flags, so we get a nice blank window, and can
9403         draw all the decorations ourselves.
9404         - Set a clipping rectangle on the non client paint event, the
9405         window manager drawing code needs one.
9406         * Form.cs: The window manager needs to know when the window state
9407         has been updated.
9408         * Hwnd.cs: The window manager stuff now does a proper NCCALC so we
9409         don't need to factor in border and title sizes in these
9410         methods. TODO: Remove the args and fix the call points.
9411         * InternalWindowManager.cs: Handle NCHITTEST and NCCALCAREA
9412         properly.
9413         - Let the driver set the cursors.
9414         - Improve active window handling
9415         - Correct sizes for title bars and buttons.
9416         - Match MS drawing better
9417         * MdiWindowManager.cs: We don't need to handle border style
9418         updates specially anymore.
9419         - Check for scrollbars when windows are done moving
9420         - Handle Active properly.
9421         * MimeIcon.cs: Don't crash when we can't load the GNOME stuff
9422         correctly. I am spewing the exception though, so we don't hide the
9423         bugs.
9424         
9425 2006-02-26  Pedro Martinez Julia  <pedromj@gmail.com>
9427         * DataGridViewRowPostPaintEventArgs.cs,
9428           DataGridViewCellPaintingEventArgs.cs,
9429           DataGridViewRowCollection.cs,
9430           DataGridViewRowPrePaintEventArgs.cs,
9431           DataGridViewCell.cs: Clear a few warnings and implement a few
9432           exceptions that should be thrown.
9434 2006-02-22  Peter Dennis Bartok  <pbartok@novell.com>
9436         * ScrollBar.cs (ctor): Explicitly set a cursor to avoid
9437           'inheriting' our parent's (non-default) cursor. (Part of
9438            the fix for #77479)
9440 2006-02-22  Peter Dennis Bartok  <pbartok@novell.com> 
9442         * XplatUIX11.cs: Fixed cast to make csc happy
9444 2006-02-22  Peter Dennis Bartok  <pbartok@novell.com>
9446         * Control.cs (WndProc): Only handle WM_SETCURSOR messages if
9447           it's for the client area (part of fix for #77479 and needed
9448           for MDI window cursor handling)
9449         * XplatUIX11.cs
9450           - DefWindowProc: Now handles the WM_SETCURSOR messages, setting
9451             the appropriate default cursors and also passing the message
9452             up the parent chain 
9453           - GetMessage: Now generating WM_NCHITTEST and WM_SETCURSOR even
9454             for non-client areas
9456 2006-02-15  Jackson Harper  <jackson@ximian.com>
9458         * XplatUIWin32.cs: Since we fake MDI dont tell Windows that this
9459         is a real MDI window
9461 2006-02-14  Alexander Olk  <alex.olk@googlemail.com>
9463         * X11DesktopColors.cs: Instead of checking the desktop session
9464           string for "KDE" check if it starts with "KDE"
9466 2006-02-10  Jackson Harper  <jackson@ximian.com>
9468         * XplatUIX11.cs: These should be unsigned (fixes crash on 32 bit
9469         systems).
9471 2006-02-10  Alexander Olk  <alex.olk@googlemail.com>
9473         * FileDialog.cs: Added Refresh to RunDialog to fix some drawing
9474           errors
9475         * ColorDialog.cs:
9476           - Got rid of the panel. All controls are now directly added to
9477             the dialog form
9478           - Changed to mono coding style
9480 2006-02-10  Jackson Harper  <jackson@ximian.com>
9482         * InternalWindowManager.cs: We don't need the set visibility to
9483         false hack anymore now that peter has written beautiful shutdown
9484         code.
9486 2006-02-10  Peter Dennis Bartok  <pbartok@novell.com>
9488         * XplatUIX11.cs: Ignore DestroyNotify messages for windows that
9489           where already explicitly destroyed
9491 2006-02-10  Jackson Harper  <jackson@ximian.com>
9493         * MdiClient.cs: Handle the case where windows are too high or to
9494         the left and we need scrollbars.
9496 2006-02-10  Alexander Olk  <alex.olk@googlemail.com>
9498         * MimeIcon.cs: Added some icons
9499         * FileDialog.cs:
9500           - Fixed bug #77477
9501           - Got rid of the panel. All controls are now directly added to
9502             the dialog form
9503           - Changed to mono coding style
9504           - On Linux "My Computer" and "My Network" will now show some
9505             more usefull information. A new class, MasterMount, gathers
9506             this information from /proc/mount. Updated MWFFileView to make
9507             use of this information
9508           - Fixed a bug that caused FileDialog to crash when
9509             ".recently_used" file had a zero size
9510           - FilterIndex does now what it should
9511           - Some Refactoring
9512         * OpenFileDialog.cs, SaveFileDialog.cs: Updated to reflect latest
9513             FileDialog changes
9515 2006-02-09  Jackson Harper  <jackson@ximian.com>
9517         * ComboBox.cs: Don't touch if null.
9519 2006-02-09  Peter Dennis Bartok  <pbartok@novell.com>
9521         * Cursor.cs: 64bit safeness fix
9522         * XplatUIX11.cs: Removed several unneeded and one moronic cast.
9524 2006-02-09  Jackson Harper  <jackson@ximian.com>
9526         * Form.cs: If a form is made into an MDI form update the styles so
9527         all the props can get set correctly.
9528         - Kill the mdi_container when we dont need it anymore.
9529         * InternalWindowManager.cs: Add missing NOT
9531 2006-02-08  Jackson Harper  <jackson@ximian.com>
9533         * InternalWindowManager.cs: Respek clipping when drawing MDi
9534         decorations.
9536 2006-02-08  Jackson Harper  <jackson@ximian.com>
9538         * Hwnd.cs: Add bits to track non client expose events.
9539         * XplatUIX11.cs: Track non client expose events on the hwnd. This
9540         gives us a proper invalid rect and will allow for some nice
9541         optimizations with NC client drawing
9542         - MDI windows are children windows, so move their style handling
9543         into the child window block.
9544         * InternalWindowManager.cs: Remove a state reset that was
9545         getting invoked at the wrong time. Fixes managed windows getting
9546         into a 'stuck' captured state.
9548 2006-02-07  Peter Dennis Bartok  <pbartok@novell.com>
9550         * TextControl.cs (Document.ctor): Now initializing 
9551           selection_anchor. Fixes #77493
9553 2006-02-07  Jackson Harper  <jackson@ximian.com>
9555         * TrackBar.cs: The increment/decrements were backwards.
9557 2006-02-07  Mike Kestner  <mkestner@novell.com>
9559         * Theme*.cs : remove ThemeEngine.Current usage as it just points back
9560         to the instance itself.
9562 2006-02-07  Peter Dennis Bartok  <pbartok@novell.com>
9564         * X11DesktopColors.cs, ThemeGtk.cs: The GObject structure is based
9565           on ulongs and pointers, the size differs between 32bit and 64bit
9566           systems. 
9568 2006-02-07  Mike Kestner  <mkestner@novell.com>
9570         * XplatUIX11.cs : force the WorkingArea away from XGetWindowProperty
9571         for 64 bit platforms to work around a metacity bug. 
9573 2006-02-07  Jackson Harper  <jackson@ximian.com>
9575         * TrackBar.cs: Process the input keys we need, and hookup to
9576         KeyDown instead of using WndProc, so we get key messages.
9578 2006-02-06  Peter Dennis Bartok  <pbartok@novell.com>
9580         * XplatUIX11.cs: Atoms are only 32bit on the wire, no matter what
9581           machine we're on. 
9582         * X11Dnd.cs(SetAllowDrop): Since atoms are always 32bit on the wire
9583           we need to translate the XdndVersion atoms array before sending it
9585 2006-02-06  Peter Dennis Bartok  <pbartok@novell.com> 
9587         * XplatUIX11.cs: 
9588           - The preceeding 64bit fixes had a bug: ChangeProperty expects the
9589             number of bits for the property, not the number of bytes. The
9590             change to provide IntPtr.Size broke 32bit. (64bit was also wrong
9591             but would not crash since it specified 8 bits instead of 4 bits)
9592           - More 64bit fixes: Switched all atoms from int to IntPtr (they are
9593             defined as XID -> long in the C headers)
9594           - Removed 'new IntPtr((int))' and '(IntPtr)' casts from all NetAtoms 
9595             references since those are now IntPtr to begin with
9596           - Switched all Atom.XXX 'int' casts to IntPtr casts
9597           - Fixed XGrabPointer DllImport signature to work for 64bit (cursor arg)
9598           - Fixed XInternAtom signature for 64bit, now returns an IntPtr
9599           - Added XChangeActivePointerGrab DllImport (for X11DnD)
9600         * X11Structs.cs:
9601           - Changed 'int' type for Atoms in XEvent structures to IntPtr
9602           - Changed atom in HoverStruct to be IntPtr
9603         * X11DnD.cs:
9604           - Removed local DllImports, switched code to use those from XplatUIX11
9605           - Removed/fixed casts related to the switch of Atom to be a IntPtr
9607 2006-02-06  Mike Kestner  <mkestner@novell.com>
9609         * XplatUIX11.cs : many more 64 bit pinvoke changes.  I've audited all the 
9610         method signatures in the import region.  There may still be some
9611         lingering struct marshaling issues, as I didn't drill down into those.
9612         Yet.
9614 2006-02-06  Jackson Harper  <jackson@ximian.com>
9616         * ComboBox.cs: Dont manually set the top_item, this is computed
9617         when the scrollbar position is set.
9619 2006-02-06  Mike Kestner  <mkestner@novell.com>
9621         * XplatUIX11.cs : 64 bit changes to XGetWindowProperty usage. Fixes
9622         startup crashes on amd64.  There's other fixes needed.  All pinvoke
9623         usage of Atom needs to be mapped to IntPtr for example.  And there are
9624         likely other int/long issues to be addressed.
9626 2006-02-04  Alexander Olk  <alex.olk@googlemail.com>
9628         * FileDialog.cs: One more...
9630 2006-02-03  Alexander Olk  <alex.olk@googlemail.com>
9632         * FileDialog.cs: Next try
9634 2006-02-03  Alexander Olk  <alex.olk@googlemail.com>
9636         * FileDialog.cs: First part of fix for #77464
9638 2006-02-03  Alexander Olk  <alex.olk@googlemail.com>
9640         * ButtonBase.cs, ContainerControl.cs, Forms.cs,
9641           ThemeWin32Classic.cs: Fix for #77458. Correct handling of
9642           AcceptButton border drawing.
9644 2006-02-03  Peter Dennis Bartok  <pbartok@novell.com> 
9646         * Form.cs: Moved positioning of form after auto scaling is applied,
9647           otherwise it would possibly use wrong form size.
9649 2006-02-03  Peter Dennis Bartok  <pbartok@novell.com>
9651         * Control.cs (RecreateHandle): No need to re-create any child
9652           controls, the child windows will get destroyed automatically by
9653           the windowing system or driver, and re-created when the handle
9654           is being accessed the first time. Fixes #77456
9655         * Form.cs: No longer setting the form to closing if the handle is 
9656           being recreated. This seems like the right thing to do, don't
9657           have a bug or testcase for this, though.
9659 2006-02-02  Peter Dennis Bartok  <pbartok@novell.com>
9661         * FileDialog.cs: Suspend/Resume layouting when changing sizes of
9662           controls to avoid unwanted side effects
9664 2006-02-02  Peter Dennis Bartok  <pbartok@novell.com> 
9666         * Control.cs: 
9667           - ScaleCore needs to scale the bounds, not the ClientSize of the 
9668             control. Fixes #77416.
9669           - DefaultSize is 0,0 for control
9670         * TextBoxBase.cs: 
9671           - DefaultSize is 100, 20
9672           - SetBoundsCore: Now enforcing the height, no matter if the provided
9673             height is more or less than the preferred one, as long as AutoSize
9674             is on
9675         * Form.cs: Apply documented fudge factor. Part of item 3 fix for #77416
9677 2006-02-02  Peter Dennis Bartok  <pbartok@novell.com>
9679         * Control.cs:
9680           - ResumeLayout: Fixed logic when to call PerformLayout, we may not
9681             call unless both performLayout is true *and* we have a pending
9682             layout change
9683           - ResumeLayout: MS does not completely nest Suspend and Resume,
9684             they bottom out at 0, fixed our code to match that.
9685           - UpdateBounds/SetBoundsCore: Moved calling of UpdateDistances() to
9686             SetBoundsCore, we were updating even when we shouldn't. This fixes
9687             swf-anchors mis-anchoring when resizing the app fast and lots.
9688           - UpdateDistances: Now only setting the left and top distance if 
9689             we have a parent and are not suspended, this is based on
9690             a suggestion by Don Edvaldson in bug #77355.
9691           - OnVisibleChanged: Fixed logic when to create the control. We may
9692             not create the control if we have no parent or if it's not visible;
9693             switched to using Visible property instead of is_visible field 
9694             since the property also considers parent states. This fixes a bug
9695             when starting Paint.Net
9697 2006-02-02  Jackson Harper  <jackson@ximian.com>
9699         * Form.cs: If the forms handle hasn't been created yet don't call
9700         into xplatui to make it top most, just set the topmost flag on the
9701         form in CreateParams
9702         * XplatUIX11.cs: Handle WS_EX_TOPMOST.
9704 2006-02-01  Jackson Harper  <jackson@ximian.com>
9706         * ScrollableControl.cs: Refactored the Recalculate method a
9707         little, this wasn't handling all the variants of bottom and right
9708         bars needed to be added and added/removed based on their
9709         counterparts being added/removed (which changes the drawable
9710         size). Also we special case client widths and heights of 0 and
9711         don't add the scrollbar for those.
9713 2006-02-01  Peter Dennis Bartok  <pbartok@novell.com>
9715         * XplatUIX11.cs: 
9716           - Added method to get AbsoluteGeometry(); currently unused, but might
9717             be used in the future, if we try again to figure out toplevel
9718             coordinates with some more crappy window managers
9719           - Added FrameExtents() method to retrieve the WM set decoration size
9720           - Tried to fix up AddConfigureNotify and handling of ReparentNotify 
9721             to deal with at least KDE, FVWM and metacity (Fixes #77092)
9722         * Hwnd.cs: 
9723           - Added whacky_wm tracking var for metacity
9724           - Added logic to have default menu height if the actual menu height
9725             has not yet been calculated (part of fix for #77426)
9726         * Form.cs: Keep track whether client size has been set and re-set 
9727           it if a menu is added/removed afterwards (Fixes #77426)
9729 2006-01-31  Jackson Harper  <jackson@ximian.com>
9731         * Control.cs: When a new Site is set on the component attempt to
9732         pull the AmbientProperties from it.
9734 2006-01-31  Peter Dennis Bartok  <pbartok@novell.com>
9736         * ThemeWin32Classic.cs: Menu background is drawn in ColorMenu, not
9737           in the background of the owning form. Fixes #77332
9739 2006-01-31  Alexander Olk  <alex.olk@googlemail.com>
9741         * MimeIcon.cs: Fix for #77409
9743 2006-01-31  Alexander Olk  <alex.olk@googlemail.com>
9745         * XplatUIX11GTK.cs: Initial import
9747 2006-01-31  Jordi Mas i Hernandez <jordimash@gmail.com>
9749         * FixedSizeTextBox: fixes class signature
9751 2006-01-30  Jackson Harper  <jackson@ximian.com>
9753         * FixedSizeTextBox.cs: New internal class that represents a
9754         textBox that will not be scaled.
9755         * TreeView.cs:
9756         * ComboBox.cs:
9757         * UpDownBase.cs: Use the new FixedSizeTextBox instead of a
9758         standard TextBox.
9759                 
9760 2006-01-30  Peter Dennis Bartok  <pbartok@novell.com> 
9762         * XplatUIX11.cs: Retrieve default screen number instead of
9763           assuming 0. Attempted fix for #77318
9765 2006-01-30  Peter Dennis Bartok  <pbartok@novell.com>
9767         * XplatUIWin32.cs: 
9768           - GetWindowPos: When a window is parented by FosterParent, use 
9769             the desktop instead of FosterParent as the base to get coordinates
9770           - CreateWindow: Don't make FosterParent the parent window for Popups
9771             if we don't want a taskbar entry, Popups automatically don't get one
9772         * Hwnd.cs: Need to call remove to actually remove the key from the
9773           hash table
9775 2006-01-30  Mike Kestner  <mkestner@novell.com>
9777         * MenuAPI.cs: adjust MainMenu item popup location to y=0.
9779 2006-01-30  Jackson Harper  <jackson@ximian.com>
9781         * TreeView.cs:
9782         * TreeNode.cs: Raise events no matter how the treenode is
9783         checked. Patch by Don Edvalson.
9785 2006-01-30  Jackson Harper  <jackson@ximian.com>
9787         * TreeNode.cs: Signature fix.
9789 2006-01-29  Alexander Olk  <alex.olk@googlemail.com>
9791         * ThemeClearlooks.cs: Fixed a crash in ProgressBar drawing.
9793 2006-01-20  Mike Kestner  <mkestner@novell.com>
9795         * Form.cs: Add ActiveTracker property to do Captures and perform mouse
9796         event forwarding when menus are active.
9797         * MenuAPI.cs: kill the GrabControl hack.  Use Form.ActiveTracker.
9798         Most of the patch is pdb's with a little rework.
9800 2006-01-26  Peter Dennis Bartok  <pbartok@novell.com> 
9802         * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs, XplatUIOSX.cs: 
9803           Removed GetMenuDC and ReleaseMenuDC methods; replaced
9804           by PaintEventStart(handle, false) and PaintEventEnd(handle, false)
9805         * Form.cs: Changed WM_NCPAINT handler to use PaintEventStart and End
9806         * InternalWindowManager.cs: Added use of PaintEventStart/End to
9807           handling of WM_NCPAINT message, now passing the PaintEventArgs to
9808           the PaintWindowDecorations method
9809         * MainMenu.cs: Switched logic from GetMenuDC to PaintEventStart
9810         * MdiChildContext.cs: Switched logic from GetMenuDC to PaintEventStart
9811         * MenuAPI.cs: Made tracker window invisible
9812         * XplatUIWin32.cs:
9813           - Removed GetMenuDC and ReleaseMenuDC methods
9814           - Implemented the client=false path for PaintEventStart and
9815             PaintEventEnd
9817 2006-01-26  Peter Dennis Bartok  <pbartok@novell.com>
9819         * XplatUIWin32.cs(SetBorderStyle): Fixed3D needs a border
9820         * XplatUIX11.cs(DeriveWindowStyles): Updated to match fixed Form
9821           styles
9822         * Form.cs: 
9823           - MaximizeBox, MinimizeBox: Recreate the handle when setting
9824             the style
9825           - CreateParams: Reworked the styles to match MS look'n'feel,
9826             removed automatic setting of MinimizeBox, MaximizeBox, etc. via
9827             the WS_OVERLAPPEDWINDOW style. This fixes #76823.
9829 2006-01-26  Peter Dennis Bartok  <pbartok@novell.com> 
9831         * XplatUIX11.cs(GetWindowState): Now throwing an exception when the 
9832           window is not mapped, since otherwise every form that's being 
9833           created is considered minimized, which is wrong.
9834         * Form.cs: Catching the exception and returning our internal value
9835           instead
9837 2006-01-26  Peter Dennis Bartok  <pbartok@novell.com>
9839         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs: Added new driver method
9840           SetWindowMinMax() to have means to tell the driver about the minimum,
9841           maximum and maximized state window sizes. (Part of the fix for #76485)
9842         * Form.cs:
9843           - Implemented tracking of minimum and maximum window size, now calling
9844             new SetWindowMinMax() driver method to tell the driver (Part of the
9845             fix for #76485)
9846           - Finished handling of WM_GETMINMAXINFO method, now setting all values
9847             (Completes fix for #76485)
9848           - Calling new SetWindowMinMax driver method when the handle for a 
9849             form is created, to make sure the driver knows about it even if
9850             the values have been set before the window was created
9851           - Now eating the WM_WINDOWPOSCHANGED message if the form is minimized
9852             to avoid messing up our anchoring calculations (partial fix
9853             for #77355)
9854         * XplatUIStructs.cs: Added MINMAXINFO struct (moved from Win32 driver)
9855         * XplatUIX11.cs:
9856           - Added _NET_WM_STATE_HIDDEN property for detecting minimized state
9857           - Improved GetWindowState() to detect 'Minimized' state on Metacity 
9858             (and presumably other freedesktop.org compliant WMs). Left the
9859             assumption unmapped=minimized, needed for SetVisible to work.
9860           - Now setting the window state when creating windows
9861           - Fixed SetVisible to consider/set the window state when mapping
9862             a Form. We cannot set the state before it's mapped, and we cannot
9863             use Form.WindowState once it's mapped (since it would ask the
9864             driver and get 'normal'. Therefore, we grab the state before
9865             mapping, map, and then set state.
9866           - Implmemented SetWindowMinMax method; Metacity does not seem to
9867             honor the ZoomHints, though.
9868         * XplatUIWin32.cs:
9869           - Removed MINMAXINFO (moved to XplatUIStructs)
9870           - Added SetWindowMinMax stub (on Win32 the only way to set that
9871             information is in response to the WM_GETMINMAXINFO message, which
9872             is handled in Form.cs)
9873           - Added logic to SetVisible to set the proper window state when a 
9874             form is made visible (fixes #75720)
9876 2006-01-26  Jackson Harper  <jackson@ximian.com>
9878         * Control.cs (BeginInvoke): Automagically handle EventHandlers the
9879         same way we handle them with Invoke.
9881 2006-01-25  Peter Dennis Bartok  <pbartok@novell.com> 
9883         * Form.cs:
9884           - Added tracking of window state so CreateParams can return
9885             the appropriate style
9886           - Moved setting of WS_CAPTION style in CreateParams to allow
9887             styles without caption
9888         * DataGridTextBoxColumn.cs: We are now also creating the TextBox 
9889           control if the TextBox property is accessed. Fixes #77345
9890         * Control.cs:
9891           - get_Created: now uses is_disposed and is_created to determine
9892             return value (suggested by Jackson)
9893           - CreateHandle: No longer exits if the handle is being recreated
9894           - RecreateHandle: If the handle is not yet created call the 
9895             appropriate method to create either control or handle. If the
9896             control is already created CreateHandle will simply exit instead
9897             of just creating the handle
9898         * Hwnd.cs: Removed expose_pending tracking, no longer needed since we
9899           now SendMessage WM_DESTROY directly to the control when DestroyWindow
9900           is called.
9901         * XplatUIX11.cs: 
9902           - When DestroyWindow is called, instead of waiting for the 
9903             DestroyNotification from X11, we directly post it to the WndProc
9904             and immediately dispose the hwnd object.
9905             Same applies to DestroyChildWindows, and this obsoletes the
9906             expose_pending tracking. Contrary to Win32 behaviour we destroy our
9907             child windows before our own, to avoid X11 errors.
9908           - Removed the direct sending of WM_PAINT on UpdateWindow
9909         * XplatUIWin32.cs:
9910           - Reworked DoEvents and GetMessage to allow access to internal queue
9911             even when trying non-blocking access to the queue.  Fixes #77335. 
9912             Based on a patch suggestion by Don Edvalson. The new private
9913             GetMessage can now also be used as a backend for a PeekMessage
9914             frontend version.
9915         * XplatUI.cs: Improved debug output for CreateWindow
9917 2006-01-25  Jackson Harper  <jackson@ximian.com>
9919         * Help.cs: Allow param to be null. Patch by Don Edvalson.
9921 2006-01-24  Jackson Harper  <jackson@ximian.com>
9923         * ComboBox.cs: Clamp the max value set for the vertical scrollbar
9924         when we have a MaxDropItems lower then the selected index.
9926 2006-01-24  Jackson Harper  <jackson@ximian.com>
9928         * Control.cs: Don't allow selection of non visible controls, allow
9929         selection of controls without parents.
9931 2006-01-24  Jordi Mas i Hernandez <jordimash@gmail.com>
9933         * ThemeWin32Classic.cs: Fixes Datagrid drawing issues
9934         * DataGridDrawingLogic.cs: Add editing row only when is necessary
9936 2006-01-23  Jackson Harper  <jackson@ximian.com>
9938         * UpDownBase.cs: Make the textbox handle all the selection and
9939         tabbing. This fixes tabing to updown controls.
9941 2006-01-24  Jordi Mas i Hernandez <jordimash@gmail.com>
9943         * TextBoxBase.cs: fixes exception thown the object was null
9945 2006-01-23  Jackson Harper  <jackson@ximian.com>
9947         * ButtonBase.cs: Just use the base CreateParams. They set
9948         visibility and enabled correctly.
9949         * ComboBox.cs:
9950         * TrackBar.cs:
9951         * MonthCalendar.cs: Lets let the base set as much of the
9952         createparams as possible so we don't have duplicate code all over
9953         the place.
9955 2006-01-22  Alexander Olk  <alex.olk@googlemail.com>
9957         * ThemeGtk.cs: Added TrackBar and some experimental code to
9958           get double buffering back
9960 2006-01-21  Jordi Mas i Hernandez <jordimash@gmail.com>
9962         * DataGrid.cs: Allows row number set internally higher than the last
9963         when creating a new row. Restores the editing functionality.
9965 2006-01-20  Mike Kestner  <mkestner@novell.com>
9967         * MimeIcon.cs: delay Image creation until the icons are accessed
9968         instead of creating 190 scaled images on GnomeHandler startup.
9970 2006-01-19  Peter Dennis Bartok  <pbartok@novell.com> 
9972         * TextBoxBase.cs (WndProc): When handling WM_KEYDOWN we need to
9973           first call base before processing the event. Fixes #77279
9975 2006-01-19  Peter Dennis Bartok  <pbartok@novell.com>
9977         * XplatUIWin32.cs, Cursor.cs: Fixed code that wrongly assumed
9978           that the stride for the GDI bitmap would match the stride of
9979           a DIB or a Cursor.
9981 2006-01-19  Alexander Olk  <alex.olk@googlemail.com>
9983         * ThemeGtk.cs: Added ProgressBar, RadioButton, CheckBox
9985 2006-01-19  Jackson Harper  <jackson@ximian.com>
9987         * ComboBox.cs: Hookup the text controls keydown event so we get
9988         those when the text control has the focus.
9990 2006-01-18  Peter Dennis Bartok  <pbartok@novell.com> 
9992         * Label.cs: Now using the base events instead of defining new ones;
9993           this allows us to just call the base properties without having to
9994           duplicate all base property logic 
9996 2006-01-18  Peter Dennis Bartok  <pbartok@novell.com>
9998         * Label.cs: A label by default is not a tabstop (Fixes one of our
9999           failing nunit tests)
10001 2006-01-18  Peter Dennis Bartok  <pbartok@novell.com> 
10003         * XplatUIWin32.cs: Fixed wrong DoEvents logic. Fixes #77282
10004         * XplatUIX11.cs: Removed WM_PAINT check from DoEvents. Fixes #77282
10006 2006-01-18  Peter Dennis Bartok  <pbartok@novell.com>
10008         * Cursor.cs: Reimplemented creating cursor bitmaps without using
10009           the Bitmap(Stream) constructor which is semi-broken on MS GDI+.
10010           This fixes #77218
10011         * XplatUIWin32.cs: 
10012           - Reimplemented creating Bitmaps from DIBs since the Bitmap(Stream) 
10013             constructor creates images that can't be saved. Part of the fix
10014             for #76103
10015           - Added handling of CF_BITMAP as CF_DIB to clipboard code (Fixes #76103)
10016           - SetWindowState: Switched ShowWindow flags (part of an upcoming 
10017             bug fix for handling window state in forms properly)
10019 2006-01-18  Alexander Olk  <alex.olk@googlemail.com>
10021         * ThemeGtk.cs: Simplify ScrollBar drawing
10023 2006-01-18  Jackson Harper  <jackson@ximian.com>
10025         * Splitter.cs: Set the default dock style for the splitter control
10026         in the constructor.
10028 2006-01-18  Alexander Olk  <alex.olk@googlemail.com>
10030         * ThemeGtk.cs: Corrected StateType and ShadowType for
10031           gtk_paint_box
10033 2006-01-18  Alexander Olk  <alex.olk@googlemail.com>
10035         * Control.cs: Make use of Theme.DoubleBufferingSupported
10036         * ThemeGtk.cs:
10037           - Added drawing for flat style buttons
10038           - Added ScrollBar drawing
10040 2006-01-18  Alexander Olk  <alex.olk@googlemail.com>
10042         * ThemeClearlooks.cs: Removed some unneeded code.
10043         * ThemeGtk.cs: First part of ThemeGtk enhancements.
10045 2006-01-17  Peter Dennis Bartok  <pbartok@novell.com>
10047         * LinkLabel.cs: We need to update the hover drawing when
10048           leaving the control as well.
10050 2006-01-18  Jordi Mas i Hernandez <jordimash@gmail.com>
10052         * DataGrid.cs: Clicking on non empty areas in the columns
10053            area was giving an exception
10055 2006-01-17  Jackson Harper  <jackson@ximian.com>
10057         * ThemeWin32Classic.cs:
10058         * ListView.cs: Do not draw/clip the headers when the header style
10059         is None.
10061 2006-01-17  Jordi Mas i Hernandez <jordimash@gmail.com>
10063         * DataGrid.cs: Fixes 77260
10064         
10065 2006-01-17  Jordi Mas i Hernandez <jordimash@gmail.com>
10067         * DataGrid.cs: Clicking on a column on a empty grid was giving
10068           an exception
10070 2006-01-17  Peter Dennis Bartok  <pbartok@novell.com>
10072         * DataGrid.cs (OnKeyDown): Don't use the array if it's empty
10073           or any keypress will crash the grid.
10075 2006-01-17  Mike Kestner  <mkestner@novell.com>
10077         * MainMenu.cs (OnMenuChanged): set Height=0 to cause relayout.
10078         * ThemeWin32Classic.cs (CalcItemSize): clear Height/Width for 
10079         invisible/previously-visible items.
10080         [Fixes #76909]
10082 2006-01-17  Alexander Olk  <alex.olk@googlemail.com>
10084         * ThemeClearlooks.cs:
10085         - Added CL_Draw_Button method; now other theme controls that are 
10086           not derived from button or do not have a button can draw buttons
10087           too
10088         - Updated ComboBox drawing
10089         - Beautified RadioButton drawing
10090         - Corrected drawing of bottom and left tabs
10091         - Beautified DateTimePicker and MonthCalendar
10092         - Added CPDrawButton and CPDrawRadioButton
10094 2006-01-16  Jackson Harper  <jackson@ximian.com>
10096         * ComboBox.cs: Set the initial value of the scrollbar to the
10097         current index. Reduce the numbers of refreshs and IndexOfs called.
10099 2006-01-14  Alexander Olk  <alex.olk@googlemail.com>
10101         * FileDialog.cs: When the file listview is focused hitting the
10102           backspace key moves the fileview to the parent directory
10104 2006-01-13  Peter Dennis Bartok  <pbartok@novell.com>
10106         * Form.cs: 
10107           - Added RecreateHandle call when changing taskbar visibility to 
10108             trigger reparenting in Win32 driver (Fixes #75719)
10109           - If a window has minimize or maximize buttons, it cannot have
10110             a help button
10111         * XplatUIWin32.cs:
10112           - CreateWindow: When no WS_EX_APPWINDOW style is found we parent
10113             the toplevel form with FosterParent (A toolwindow not on the
10114             taskbar) (Fixes #75719)
10115           - Made FosterParent a toolwindow
10117 2006-01-13  Alexander Olk  <alex.olk@googlemail.com>
10119         * FileDialog.cs: Don't crash if InitialDirectory doesn't exist
10121 2006-01-13  Alexander Olk  <alex.olk@googlemail.com>
10123         * ToolTip.cs: If SetToolTip is called from a control and the mouse
10124           is currently over that control, make sure that tooltip_window.Text
10125           gets updated
10127 2006-01-13  Mike Kestner  <mkestner@novell.com>
10129         * MimeIcon.cs: size_t on lp64 fix for gdk_pixbuf_save_to_file extern.
10131 2006-01-13  Jackson Harper  <jackson@ximian.com>
10133         * TreeView.cs: On MS GetNodeAt never actually factors in the X
10134         value passed.  Also redraw the selected node when we recieve
10135         focus, so tabbing between trees works correctly.
10137 2006-01-13  Alexander Olk  <alex.olk@googlemail.com>
10139         * MimeIcon.cs: GnomeHandler: older gnome versions don't have
10140           ~/.gconf/%gconf-tree.xml, so use
10141           .gconf/desktop/gnome/interface/%gconf.xml
10143 2006-01-13  Peter Dennis Bartok  <pbartok@novell.com> 
10145         * TextControl.cs: Draw text in gray if control is disabled
10147 2006-01-13  Peter Dennis Bartok  <pbartok@novell.com> 
10149         * TreeView.cs: Draw the focus rectangle outside the highlight, to
10150           make sure it's always visible. Fixes #76680.
10152 2006-01-13  Peter Dennis Bartok  <pbartok@novell.com>
10154         * TreeView.cs: Implemented Wheel scrolling. Fixes #76531
10156 2006-01-13  Jonathan Chambers  <jonathan.chambers@ansys.com>
10158         * PageSetupDialog.cs: Added.
10159         * PrintDialog.cs: Attributes.
10160         * PrintPreviewControl.cs: Updates.
10161         * PrintPreviewDialog.cs: Updates.
10162         
10163 2006-01-12  Peter Dennis Bartok  <pbartok@novell.com>
10165         * Control.cs: Undid my selection check fix, since it's not needed
10166         * TextBoxBase.cs:
10167           - Now considering the presence of hscroll/vscroll when sizing
10168             vscroll/hscroll respectively. Fixed bug #77077
10169           - Added Left/Up/Down/Right to IsInputKey list to prevent
10170             ContainerControl from stealing them. This fixes what I broke
10171             with my last checkin.
10173 2006-01-12  Peter Dennis Bartok  <pbartok@novell.com> 
10175         * ScrollableControl.cs: Implemented dockpadding. Fixes #77166. And
10176           I finally understand how the property can be set without a setter :-)
10178 2006-01-12  Peter Dennis Bartok  <pbartok@novell.com>
10180         * Application.cs:
10181           - Switched RunLoop to use static Message.Create to create a 
10182             Message object
10183           - Added PreProcessMessage call in runloop for keyboard events; this
10184             is part of the fix for #77219, I overlooked this originally in the
10185             MSDN doc for PreProcessMessage
10186         * Control.cs:
10187           - Removed call to PreProcessMessage from handling of keyboard 
10188             messages; it's supposed to be done in the message pump
10189           - Moved call to ProcessKeyEventArgs inside ProcessKeyMessage as
10190             per MSDN documentation.
10191           - IsInputChar: All chars are input chars by default; removed the 
10192             parent calling chain, MS does not document that
10193           - PreProcessMessage: If IsInputChar is true, we want to return false
10194             to allow dispatching of the message
10195           - When selecting the next control, now also check that we're not
10196             selecting ourselves again and therefore return a false positive.
10197         * TextBoxBase.cs:
10198           - Tried to match return values for IsInputKey and ProcessDialogKey
10199             to what MS returns; moved processing of our special keys outside
10200             ProcessDialogKey since MS does not seem to return true on those.
10201           - Moved code that previously was in ProcessDialogKey into new private
10202             ProcessKey method, which gets called upon receipt of WM_KEYDOWN
10203           - Reworked handling of WM_CHAR to not have to duplicate code from
10204             Control.cs anymore, instead we simply call down to base.
10205            
10206 2006-01-12  Jackson Harper  <jackson@ximian.com>
10208         * ComboBox.cs: We always need to refresh the text area when
10209         EndUpdate is called. Fixes the combobox in the file dialog.
10210         * Control.cs: Don't create the creator_thread until the controls
10211         handle is created.  Also in InvokeRequired we check if the
10212         creator_thread is null. This gives the effect of InvokeRequired
10213         returning true if the controls handle is not created yet, and
10214         matches MS.
10216 2006-01-12  Peter Dennis Bartok  <pbartok@novell.com>
10218         * XplatUI.cs:
10219           - Added StartLoop() driver method. This is used to allow drivers to
10220             prepare for an upcoming GetMessage/TranslateMessage/DispatchMessage
10221             loop for a particular thread
10222           - Added EndLoop() driver method. This is called once the message
10223             pump for the thread is shut down
10224           - Added SupportsTransparency method to allow the driver to indicate
10225             opacity support for windows
10226         * Form.cs:
10227           - Removed TODO attribute, completed AllowTransparency property
10228           - Added documented logic to Opacity
10229         * GroupBox.cs, Label.cs, LinkLabel.cs, PropertyGrid.cs, Control.cs,
10230           ButtonBase.cs, CheckedListBox.cs: Combined Jackson's and Miguel's
10231           versions of CompatibleTextRendering
10232         * X11Structs.cs: Added opacity atom to our atom enumeration
10233         * Hwnd.cs: Added opacity tracking (we need to track since the opacity
10234           of a form might be set before it's reparented by the WM, and we need
10235           the opacity value without calling up to Form)
10236         * XplatUIDriver.cs: Added StartLoop(), EndLoop() and 
10237           SupportsTransparency() driver methods
10238         * Application.cs: Now calling StartLoop and EndLoop driver methods
10239         * XplatUIX11.cs:
10240           - Added opacity atom registration
10241           - Added StartLoop()/EndLoop() methods. They're empty right now but
10242             will need to get implemented when we switch to a per-thread queue
10243           - Implemented SupportsTransparency() method
10244           - Implemented SetWindowTransparency() method
10245           - Added support for setting the opacity value when a window is
10246             reparented (since the opacity needs to be set on the WM frame)
10247         * XplatUIOSX.cs, XplatUIWin32.cs:
10248           - Added SupportsTransparency(), StartLoop() and EndLoop() methods
10250 2006-01-12  Alexander Olk  <alex.olk@googlemail.com>
10252         * ThemeClearlooks.cs: Don't crash if TabControl.Parent is null.
10254 2006-01-12  Alexander Olk  <alex.olk@googlemail.com>
10256         * FileDialog.cs: Added ToolTip for MWFFileView
10257         * MimeIcon.cs: Rewrote GnomeHandler.
10258           - Get currently used gnome icon theme from
10259             ($HOME)/.gconf/%gconf-tree.xml
10260           - Make use of inherited icon themes
10261           - Support SVG icon themes like Tango via librsvg
10263 2006-01-12  Miguel de Icaza  <miguel@novell.com>
10265         Revert's Jackson's revert which broke 2.0 builds.   Fix both
10266         builds. 
10267         
10268         * Application.cs: Move the use_compatible_text_rendering outside
10269         the NET_2_0 define.  If we ever need to use the
10270         use_compatible_text_rendering on the individual controls they will
10271         access the variable from the common shared code paths.
10273 2006-01-12  Peter Dennis Bartok  <pbartok@novell.com>
10275         * XplatUI.cs:
10276           - Added more granular debug options
10277           - Added method to print both window text and id
10278           - Switched debug output to use new Window() debug method
10279           - Added IsEnabled() driver method
10280           - Added EnableWindow() driver method
10281         * Form.cs:
10282           - Removed end_modal; no longer needed, new loop handles termination
10283             via 'closing' variable
10284           - If form is modal, setting DialogResult will now initiate loop
10285             termination via 'closing' variable
10286           - Added support for is_enabled/WS_DISABLED to CreateParams
10287           - Close() now just send the WM_CLOSE message; the WM_CLOSE handler
10288             does all the work
10289           - Removed code that's now in RunLoop from ShowDialog()
10290           - Added various documented sanity checks to ShowDialog()
10291           - Added handling of WM_DESTROY message; we set 'closing' on getting
10292             the message to indicate the message pump to terminate
10293           - Added handling of new internal WM_CLOSE_INTERNAL message - it's
10294             send by the Application.ExitThread method. (We send the message
10295             to destroy the window after all other events have been
10296             processed through the queue, instead of destroying the handle 
10297             directly)
10298           - Moved code from Close() method to WM_CLOSE handler; added logic
10299             to only send close-related events if the form is not displayed
10300             modal
10301         * Splitter.cs (..ctor): Fixed typo in resource name
10302         * Control.cs:
10303           - DrawBackgroundImage: Explicitly selecting the wrap mode for the
10304             brush now
10305           - set_Cursor: Now only setting calling into XplatUI if the handle for
10306             the control is already created; this avoids implict handle creation
10307             or crashes if it's not created
10308           - set_Enabled: Now setting the enabled state via the new driver method
10309             instead of just tracking it
10310           - CreateParams: Added logic to set WS_DISABLED based on enabled state
10311           - CreateControl: Reordered event firing and method calls to more
10312             closely fire events in the order MS does. Now setting the
10313             enabled state in the driver when creating the control.
10314           - SetVisibleCore: Moved when the OnVisibleChanged event is fired to
10315             match MS order
10316         * FolderBrowserDialog.cs, MessageBox.cs, ButtonBase.cs, TrackBar.cs,
10317           MonthCalendar.cs: get_CreateParams: Added setting of WS_DISABLED 
10318         * XplatUIStructs.cs: Added internal WM_CLOSE_INTERNAL mesage id
10319         * Hwnd.cs:
10320           - Added tracking of window enabled state (get_Enabled/set_Enabled)
10321           - Added EnabledHwnd property to easily allow a driver to find the
10322             handle of the first enabled window in the parent chain (this is
10323             used by drivers to pass up input events of disabled windows)
10324         * XplatUIDriver.cs: Added IsEnabled() method
10325         * Application.cs:
10326           - Removed crude and obsolete exiting tracking variable
10327           - Removed internal ModalRun(); replaced by RunLoop()
10328           - Implemented private CloseForms() method to allow closing all 
10329             windows owned by a particular (or all) threads
10330           - Exit() now properly closes all windows without forcing the message
10331             pump to quit
10332           - Removed obsolete InternalExit() method
10333           - Changed Run() methods to use new RunLoop() message pump
10334           - Implemented new RunLoop() method for both modal and non-modal forms
10335         * CommonDialog.cs:
10336           - get_CreateParams: Added setting of WS_DISABLED
10337           - Simplified ShowDialog(); now all the work is done in RunLoop(),
10338             invoked via Form.ShowDialog()
10339         * NativeWindow.cs: We don't remove the window from the collection when
10340           the handle is destroyed; there might still be messages for it in the
10341           queue (mainly the resulting WM_DESTROY); instead it will be removed
10342           when Control calls InvalidateHandle in the WM_DESTROY handler
10343         * XplatUIX11.cs:
10344           - CreateWindow: Added logic to handle the WS_DISABLED window style
10345           - EnableWindow: Implemented based on Hwnd.Enabled
10346           - GetMessage: Reset PostQuitState so the method can be called again
10347           - Implemented support for disabled windows (passing messages to the
10348             first enabled parent) in handling all input messages
10349           - Added optimizations for handling Expose events
10350           - Implemeted new driver method IsEnabled()
10351           - Now always resetting paint pending tracking vars when we start paint
10352           - Re-implemented UpdateWindow via just sending a WM_PAINT message
10353         * XplatUIOSX.cs: Added IsEnabled method stub
10354         * XplatUIWin32.cs: Implemented new IsEnabled() method
10356 2006-01-11  Jackson Harper  <jackson@ximian.com>
10358         * ButtonBase.cs, CheckedListBox.cs, GroupBox.cs, Label.cs,
10359         LinkLabel.cs, PropertyGrid.cs: Unbreak 1.1 build. Consolidate the
10360         variables a little.
10361         * ColorDialog.cs: Clear out the old form before adding the new
10362         panel.  
10364 2006-01-11  Jackson Harper  <jackson@ximian.com>
10366         * X11Dnd.cs: Make sure to add all the text formats when adding
10367         strings to the data object.
10368         * TreeNodeCollection.cs: When adding to a sorted tree we need to
10369         do some redrawing too.  Also change the UpdateNode to an
10370         UpdateBelow so the newly added node gets painted.
10371         
10372 2006-01-11  Miguel de Icaza  <miguel@novell.com>
10374         * ButtonBase.cs, CheckedListBox.cs, GroupBox.cs, Label.cs,
10375         LinkLabel.cs, PropertyGrid.cs: Implement the
10376         UseCompatibleTextRendering property for 2.x
10378         * Application.cs (SetCompatibleTextRenderingDefault): Add. 
10380 2006-01-11  Jackson Harper  <jackson@ximian.com>
10382         * TreeView.cs: Use the property for setting the selected node so
10383         the correct events get raised.
10384         * TreeNode.cs: Update the tree when the fore/back colours of a
10385         node are set.
10387 2006-01-10  Jackson Harper  <jackson@ximian.com>
10389         * TreeView.cs: Allow setting SelectedNode to null.
10391 2006-01-9  Jonathan Chambers  <jonathan.chambers@ansys.com>
10393         * Form.cs: Fix support for Form TransparencyKey and Opacity on Windows.
10395 2006-01-9  Jonathan Chambers  <jonathan.chambers@ansys.com>
10397         * PrintControllerWithStatusDialog.cs: Update page number in dialog.
10399 2006-01-9  Jonathan Chambers  <jonathan.chambers@ansys.com>
10401         * PrintDialog.cs: Added attributes and set default property values.
10403 2006-01-9  Jonathan Chambers  <jonathan.chambers@ansys.com>
10405         * PrintControllerWithStatusDialog.cs: 
10406         Added PrintControllerWithStatusDialog.
10408 2006-01-9  Jonathan Chambers  <jonathan.chambers@ansys.com>
10410         * XplatUI.cs, Form.cs, XplatUIDriver.cs, XplatUIX11.cs, XplatUIOSX.cs, 
10411         XplatUIWin32.cs: Added support for Form TransparencyKey and Opacity on Windows.
10413 2006-01-9  Jonathan Chambers  <jonathan.chambers@ansys.com>
10415         * ComboBox.cs: Fix crash when there is no selected item (due to last commit)
10417 2006-01-09  Jonathan Chambers  <jonathan.chambers@ansys.com>
10419         * ComboBox.cs: Added KeyDown event handler for processing arrow keys
10420         and PgUp/PgDown. Also, scroll to selected item upon dropdown. Bugs 76857 and 76788.
10422 2006-01-08  Alexander Olk  <alex.olk@googlemail.com>
10424         * MimeIcon.cs: Added internal class SVGUtil.
10426 2006-01-08  Alexander Olk  <alex.olk@googlemail.com>
10428         * FileDialog.cs: Don't crash if there are two files with the
10429           same name but different locations.
10431 2006-01-08  John BouAntoun  <jba-mono@optusnet.com.au>
10433         * MonthCalendar.cs: Fixed annoying rendering bug when selecting
10434         dates across multiple month grids. Used to not highlight entire 
10435         month, but does now.
10436         
10437 2006-01-06  Jackson Harper  <jackson@ximian.com>
10439         * MonthCalendar.cs: Removed DoEvents call to prevent a running
10440         message loop. Change timer intervals to numbers that seem more
10441         natural.
10443 2006-01-06  John BouAntoun  <jba-mono@optusnet.com.au>
10445         * DateTimePicker.cs: Modified CalculateDropDownLocation to use the screen
10446           object for location info since screen object is now implemented.
10448 2006-01-05  Jackson Harper  <jackson@ximian.com>
10450         * AsyncMethodData.cs: Check if the call is complete before doing a WaitOne
10451         * AsyncMethodResult.cs: We no longer use a WeakReference for the
10452         AsyncMethodResult, this is because we ALWAYS want the
10453         ManualResetEvent to get set.
10454         * Control.cs: When disposing use an async invoke to call shutdown
10455         code, so that thigns don't block on the finalizer thread.  Also
10456         check if we even have a message loop before trying to send
10457         messages, if we don't then don't bother sending messages.
10458         - No more weak references for async methods
10459         * XplatUIDriver.cs: No more weak references for async methods.
10461 2006-01-04  Alexander Olk  <alex.olk@googlemail.com>
10463         * FontDialog.cs: Fix, don't throw an exception if FontFamily.Families
10464           returns two FontFamily with the same name
10466 2006-01-04  Peter Dennis Bartok  <pbartok@novell.com>
10468         * ThemeWin32Classic.cs, ThemeClearlooks.cs: Dropped stupid scheme of 
10469           drawing disabled text. Instead using the ColorGrayText color
10471 2006-01-04  Jackson Harper  <jackson@ximian.com>
10473         * TreeNode.cs: redraw the node when its image index is changed.
10475 2006-01-04  Peter Dennis Bartok  <pbartok@novell.com>
10477         * RichTextBox.cs: Same fix as last, just for SelectionColor. This
10478           time I checked there are no others like it.
10480 2006-01-04  Jackson Harper  <jackson@ximian.com>
10482         * AsyncMethodResult.cs: Use a ManualResetEvent instead of a mutex,
10483         this gives the behavoir I was looking for.
10484         * Control.cs: Special case Invoking EventHandlers, this matches MS
10485         and fixes part of bug #76326.
10487 2006-01-04  Alexander Olk  <alex.olk@googlemail.com>
10489         * ThemeClearlooks.cs, FileDialog.cs:
10490           - Reflect the latest Theme class changes
10491           - Remove Mono.Unix.Syscall.time in FileDialg and replace it 
10492             with DateTime
10493             
10494 2006-01-04  Alexander Olk  <alex.olk@googlemail.com>
10496         * Theme.cs: Cache UI resource images and resize them if needed
10498 2006-01-03  Peter Dennis Bartok  <pbartok@novell.com>
10500         * RichTextBox.cs: FormatText is 1-based, make it so when SelectionFont
10501           is called. This fixes the crash in Nexxia when setting the font
10502           attributes in the chat. [However, RTF needs a look-over to make sure
10503           that all SelectionXXX methods handle the special case that selection
10504           is empty and therefore the change must be applied to all text starting
10505           at the cursor/selection start]
10507 2006-01-03  Peter Dennis Bartok  <pbartok@novell.com> 
10509         * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs, XplatUIWin32.cs,
10510           XplatUIOSX.cs: Added SendMessage and PostMessage methods
10511         * X11Keyboard.cs: Switched to new way of calling PostMessage
10513 2006-01-03  Peter Dennis Bartok  <pbartok@novell.com>
10515         * Theme.cs: Added theme interface for images to allow the theme to
10516           control what images are used for things like FileDialog, MessageBox
10517           icons, etc.
10518         * MessageBox.cs: Now uses the new Theme icon/image interfaces
10520 2006-01-03  Alexander Olk  <alex.olk@googlemail.com>
10522         * FileDialog.cs:
10523           - Removed some dead code
10524           - Opening a recently used file does work now
10525           - Small UI enhancements
10526           - Refactoring
10528 2006-01-02  Alexander Olk  <alex.olk@googlemail.com>
10530         * FileDialog.cs: Forgot too add __MonoCS__
10532 2006-01-02  Alexander Olk  <alex.olk@googlemail.com>
10534         * FileDialog.cs: We are able to read recently used files now let's
10535           go on and write them.
10537 2006-01-01  Alexander Olk  <alex.olk@googlemail.com>
10539         * FileDialog.cs: Breathe some life into "last open"/"recently used"
10540           button
10541         * MimeIcon.cs: Do a check for the top level media type also
10543 2005-12-31  Alexander Olk  <alex.olk@googlemail.com>
10545         * ThemeClearlooks.cs:
10546           - Added CPDrawStringDisabled
10547           - ButtonBase_DrawText: Workaround for a DrawString bug; cut off
10548             some chars if the text doesn't fit into text_rect
10549           - DrawListViewItem: If View = View.LargeIcon center the image;
10550             rewrote the drawing of ListViewItem.Text if View = 
10551             View.LargeIcon
10553 2005-12-31  Alexander Olk  <alex.olk@googlemail.com>
10555         * MimeIcon.cs: Use default KDE icon theme if there is no
10556           "48x48" directory for the current icon theme, fixes #77114
10557         * Mime.cs: Disable not working and actually not used code. 
10558         * ThemeWin32Classic.cs:
10559           - Replace "new SolidBrush" in GetControlBackBrush and
10560             GetControlForeBrush with ResPool.GetSolidBrush
10561           - Changed DrawListViewItem from private to protected virtual
10562         * FileDialog.cs:
10563           - Added form.MaximizeBox = true
10564           - Don't throw an exception if there is a broken symbolic link
10566 2005-12-23  Jackson Harper  <jackson@ximian.com>
10568         * TabControl.cs: Give the panels focus, keyboard navigation is
10569         fixed so this works correctly now.
10570         - We need these key events also.
10571         * ToolBar.cs: Remove some of the poor mans double buffering.
10572         
10573 2005-12-24  Alexander Olk  <alex.olk@googlemail.com>
10575         * ComboBox.cs: The internal TextBox now returns the focus.
10577 2005-12-23  Jackson Harper  <jackson@ximian.com>
10579         * ThemeWin32Classic.cs:  Draw the text for all tab appearances.
10581 2005-12-23  Peter Dennis Bartok  <pbartok@novell.com>
10583         * Control.cs: Removed debug code
10584         * XplatUIX11.cs: Changed DestroyChildWindows to also consider
10585           implicit children
10587 2005-12-23  Peter Dennis Bartok  <pbartok@novell.com> 
10589         * Control.cs: When creating the control, update the Z-order after
10590           all it's children are created, too. (Fixes nexxia not showing
10591           picturebox bug)
10593 2005-12-23  Peter Dennis Bartok  <pbartok@novell.com>
10595         * Control.cs: Do not update the anchoring distances if layout is
10596           suspended, instead do it once layout is resumed
10598 2005-12-22  Peter Dennis Bartok  <pbartok@novell.com> 
10600         * Control.cs: 
10601           - After many hours of debugging, for both Jackson and
10602             myself, it turns out that it helps to set the parent of a control
10603             if you want to actually see it onscreen. In the spirit of that
10604             discovery, we're now setting the parent of the control and
10605             it's children when the control's handle is created. This fix
10606             will make Lutz Roeder's Reflector run happily. 
10607           - now just creating the handle instead of the whole control when
10608             getting a graphics context for the control.
10610 2005-12-22  Peter Dennis Bartok  <pbartok@novell.com>
10612         * ScrollableControl.cs: When calculating the canvas, don't consider
10613           the scrollbar widths. Instead, predict if horizontal scrollbar
10614           will affect canvas when deciding on vertical display and vice versa.
10616 2005-12-22  Peter Dennis Bartok  <pbartok@novell.com>
10618         * RichTextBox.cs: Set default RTF font for documents that don't
10619           have a font table (Fixes #77076)
10621 2005-12-22  Jackson Harper  <jackson@ximian.com>
10623         * TextBoxBase.cs: It's difficult to do, but you can have an empty
10624         clipboard. This prevents a NullRef in that case.
10625         * XplatUIX11.cs: Use CLIPBOARD not PRIMARY for our
10626         clipboard. PRIMARY is for the currently selected text only. (We
10627         should implement PRIMARY at some point.
10629 2005-12-21  Peter Dennis Bartok  <pbartok@novell.com>
10631         * XplatUIWin32.cs: Fixed the TEXTMETRIC structure, we were calling
10632           a Unicode function with a structure that was defined in Ansi way.
10633           This fixes #76942.
10635 2005-12-21  Jackson Harper  <jackson@ximian.com>
10637         * StatusBar.cs: Statusbar handles its fore/back colours on it's
10638         on. Because thats how it rolls. (and this avoids it using ambient
10639         colours).
10640         * ThemeWin32Classic.cs: Use the proper back color for filling.
10641         * Menu.cs: Use the system menu bar color for drawing menu
10642         bars. Using the window back color will bring ambient colours into
10643         the picture.
10645 2005-12-21  Alexander Olk  <alex.olk@googlemail.com>
10647         * ColorDialog.cs: Fixed a memory leak that caused a SIGSEV. A lot of
10648           Bitmaps were created and not disposed.
10650 2005-12-21  Peter Dennis Bartok  <pbartok@novell.com>
10652         * Control.cs (CreateControl): Don't do anything if the control is
10653           already created, otherwise we'd fire the OnCreated event more than
10654           once
10656 2005-12-21  Peter Dennis Bartok  <pbartok@novell.com> 
10658         * ComboBox.cs (FindStringCaseInsensitive): Don't search for emtpy strings,
10659           will always match. Instead return -1. Fixes #76464.
10661 2005-12-21  Peter Dennis Bartok  <pbartok@novell.com>
10663         * TextControl.cs (RecalculateLine): Only wrap if the wrap point is
10664           neither the beginning nor the end of the line (Fixes bug #76479)
10666 2005-12-21  Peter Dennis Bartok  <pbartok@novell.com> 
10668         * Control.cs:
10669           - ControlNativeWindow.ControlFromHandle(): Now handling situation
10670             where handle is invalid
10671           - FromHandle(): Now using hashtable-based ControlFromHandle() lookup
10672             instead of slower linear search
10673         * NativeWindow.cs: Don't remove the window from the hashtable until
10674           after the driver has destroyed it (since the driver might use
10675           Control.FromHandle to lookup the control object
10676         * Hwnd.cs: Added DestroyPending property to track if a window is 
10677           already destroyed as far as the driver is concerned and only hasn't
10678           yet notified the control
10679         * XplatUIX11.cs:
10680           - Activate(): Check if the window is still valid before using the 
10681             handle
10682           - Implemented DestroyChildWindow() method to mark child windows as
10683             destroyed when a window is destroyed. This prevents situations 
10684             where we might call an X method based on queued events for a
10685             window that already has been destroyed but we haven't yet pulled
10686             the destroy method from the queue.
10687           - Added a call to the new DestroyChildWindow() method to the drivers
10688             DestroyWindow code. Also now marking the destroyed window itself
10689             as pending
10691 2005-12-20  Jackson Harper  <jackson@ximian.com>
10693         * StatusBar.cs:
10694         * StatusBarPanel.cs: Don't calculate panel sizes on draw
10695         anymore. Just do them when needed, also track the rects of panels
10696         so that we can optimize refreshing more in the future.
10698 2005-12-20  Alexander Olk  <alex.olk@googlemail.com>
10700         * ColorDialog.cs: Fixed focus drawing in small color controls
10702 2005-12-19  Jackson Harper  <jackson@ximian.com>
10704         * InternalWindowManager.cs:
10705         * MdiWindowManager.cs: Cleanup some coordinate system changes so
10706         moving windows works properly.
10708 2005-12-19  Peter Dennis Bartok  <pbartok@novell.com> 
10710         * Control.cs: 
10711           - Removed call to InitLayout() from SetBoundsCore(); doc says
10712             it's only called when a control is added to a container
10713           - Split InitLayout logic, moved to separate UpdateDistances() method
10714             since we need to perform those calculations more often than just
10715             when adding the control to a container. (Needed to fix #77022)
10716           - Now calling UpdateDistances() from UpdateBounds() (fixes #77022)
10717           - Reduced the OnBindingContextChanged events count, don't send them
10718             unless the control is created, we still aren't totally matching
10719             MS, but I can't quite figure out some of their rules
10721 2005-12-18  Alexander Olk  <alex.olk@googlemail.com>
10723         * ThemeClearlooks.cs: Corrected distance between ProgressBar
10724           stripes
10726 2005-12-18  Alexander Olk  <alex.olk@googlemail.com>
10728         * ThemeClearlooks.cs:
10729           - Updated ProgressBar drawing
10730           - Corrected drawing of ScrollBars and scroll buttons
10731           - Some temporary fixes for minor pixel artefacts
10733 2005-12-18  Peter Dennis Bartok  <pbartok@novell.com> 
10735         * Control.cs:
10736           - Reworked Controls.Add(), Controls.Remove() and set_Parent() to
10737             cause events to be sent in the same order as MS does.
10738           - Added ChangeParent() method to trigger various OnXXXChanged events
10739             that need to be fired when a parent changes (This is a reworking
10740             of the patch from r54254, with the X11 errors fixed)
10741           - Removed SuspendLayout()/ResumeLayout() calls from Controls.Clear()
10742             since on MS we get OnLayoutChanged events when calling Clear()
10743           - Changed Enabled property to consider parent state as well, if a
10744             parent is not enabled, the control will not be either
10745           - Changed Parent property to simply call Controls.Add() since that
10746             now does all the work required, this way we avoid code duplication
10747           - Threw in a few OnBindingsContextChanged calls to try and match
10748             when MS sends them. We seem to send a few too many, though.
10749           - Added call to CreateControl when adding the control to a parent.
10750             We were never calling CreateControl. Still needs some work, in
10751             some places we treat HandleCreated and ControlCreated as equal, 
10752             which is wrong
10753           - Removed obsolete commented out code from UpdateZOrder()
10755 2005-12-18  Alexander Olk  <alex.olk@googlemail.com>
10757         * ThemeClearlooks.cs: Updated TrackBar drawing.
10759 2005-12-17  Alexander Olk  <alex.olk@googlemail.com>
10761         * FileDialog.cs: Patch for #76901 by Atsushi Enomoto
10763 2005-12-17  Alexander Olk  <alex.olk@googlemail.com>
10765         * FileDialog.cs: Add the Help button and the open readonly
10766           checkbox only if needed
10768 2005-12-16  Jackson Harper  <jackson@ximian.com>
10770         * Control.cs: Make sure we have an active menu before trying to
10771         process commands on it. Prevents menu-less forms from crashing
10772         when Alt is pressed.
10773         * TreeNodeCollection.cs: Some fixes to prevent null refs. Patch by
10774         Dieter Bremes.
10775         * RichTextBox.cs: Expand statement to help out gmcs and fix the
10776         2.0 build.
10778 2005-12-16  Jackson Harper  <jackson@ximian.com>
10780         * InternalWindowManager.cs: Don't translate tool windows screen
10781         coordinates. This fixes windows 'bouncing' around when being moved.
10783 2005-12-15  Peter Dennis Bartok  <pbartok@novell.com> 
10785         * TextBoxBase.cs:
10786           - MaxLength now treats 2^31-1 equal to unlimited length (this is
10787             not quite MS compatible, MS uses that number only for single line
10788             and 2^32-1 for multi-line, but I figure it won't hurt keeping
10789             the limit at 2GB)
10790           - Now enforcing the MaxLength limit when entering characters
10791           - Added argument to internal Paste() method to track if it's called
10792             from programatically or via keyboard, since keyboard driven pastes
10793             need to enforce max-length
10794           - Added logic to Paste to only paste as many chars as MaxLength 
10795             allows
10796         * RichTextBox.cs: Updated to use new obey argument for internal Paste()
10797         * TextControl.cs:
10798           - Added Length property to return number of characters in document
10799           - Added private CharCount property which only tracks actual chars
10800             in the document (no linefeeds) and fires event when CharCount
10801             changes
10802           - Added tracking of character count to all methods that alter it
10803           - Added LengthChanged event to allow applications to subscribe
10804             to any changes to the document
10806 2005-12-15  Peter Dennis Bartok  <pbartok@novell.com> 
10808         * TextBox.cs: 
10809           - Removed local password_char field (moved to TextBoxBase)
10810           - Now setting the document's password var when password is
10811             set
10812         * TextBoxBase.cs:
10813           - Added password_char field (needed here so MultiLine can
10814             access it)
10815           - Added logic to MultiLine property setter to set the document's
10816             variable when password display is allowed
10817           - Removed debug code and made some debug code conditional
10818         * TextControl.cs:
10819           - Added RecalculatePasswordLine() method to handle special password
10820             char only lines
10821           - Added PasswordChar property, also added related tracking vars
10822           - Draw() method now uses local text var for grabbing text to draw,
10823             this var is set to line.text unless we're doing password display,
10824             then it is set to the pre-generated all-password-chars line
10825           - Added calling RecalculatePasswordLine() method for password lines
10827 2005-12-14  Peter Dennis Bartok  <pbartok@novell.com> 
10829         * Hwnd.cs: 
10830           - Added Reparented property to allow tracking of Window Manager
10831             reparenting actions (which affect X/Y calculations of toplevel 
10832             windows)
10833           - Made ToString() print window handles in hex
10834         * XplatUIX11.cs:
10835           - AddConfigureNotify(): Now uses reparented state off Hwnd to
10836             determine if X/Y needs offsetting
10837           - AddConfigureNotify(): Fixed offset calculations
10838           - Now adds ReparentNotify messages into the queue
10839           - Now processes ReparentNotify messages and causes a 
10840             WM_WINDOWPOSCHANGED message to be sent upstream if a window
10841             is reparented (as most likely it's X/Y coordinates are changed
10842             due to that)
10844 2005-12-14  Jackson Harper  <jackson@ximian.com>
10846         * XplatUIX11.cs: Tool windows still need to respek focus.
10848 2005-12-14  Peter Dennis Bartok  <pbartok@novell.com> 
10850         * Control.cs: Undid 54254 (causing XConfigure errors) so we can
10851           have a working release
10853 2005-12-13  Jackson Harper  <jackson@ximian.com>
10855         * Form.cs: Update styles after setting the border style regardless
10856         of whether or not the window is using a window manager.
10858 2005-12-13  Jackson Harper  <jackson@ximian.com>
10860         * Form.cs: We now hook into an internal window manager instead of just an
10861         MDI subsystem, this is so we can have properly behaving tool windows.
10862         * MdiClient.cs: Naming change, MdiChildContext is now WindowManager
10863         * InternalWindowManager.cs: New internal class that acts as a
10864         window manager for tool windows and as a base for mdi windows.
10865         * MdiWindowManager.cs: New class that acts as a window manager for
10866         mdi windows.
10868 2005-12-12  Jackson Harper  <jackson@ximian.com>
10870         * Control.cs: Updates so we match behavoir for for implicit
10871         controls. Fixes explosions in MDI.
10873 2005-12-12  Jackson Harper  <jackson@ximian.com>
10875         * Control.cs: Implement Invalidate (Region).
10877 2005-12-12  Peter Dennis Bartok  <pbartok@novell.com> 
10879         * Control.cs: 
10880           - Changed handling of Controls.Add/Controls.Remove to fire (almost) 
10881             the same events as MS does. MS fires events for each property 
10882             except, for unknown reasons, Cursor, when the control is reparented. 
10883             I can't seem to totally match add/remove since MS also fires some 
10884             VisibleChanged events, which makes no sense. Consolidated the
10885             parenting code into a separate method so it can be called from
10886             both Add and Remove. set_Parent no longer needs any special logic
10887             as it calls the parent's add method which implicitly fires
10888             all events
10889           - Removed some obsolete code and debug output
10890           - Enabled state is inherited from parents, if this is enabled
10892 2005-12-08  Peter Dennis Bartok  <pbartok@novell.com> 
10894         * Form.cs: Removed commented out code
10896 2005-12-08  Peter Dennis Bartok  <pbartok@novell.com>
10898         * Control.cs:
10899           - Added internal version of Invoke, with additional argument 
10900             indicating if we're calling it from a Dispose() handler. That
10901             way we can avoid BeginInvoke throwing an exception if we're
10902             calling for an already destroyed window.
10903           - Added a dispose argument to BeginInvokeInternal, and made the
10904             check if a valid window handle chain exists conditional on
10905             it not being a dispose call
10906           - Removed code in DestroyHandle to destroy our children. Since we
10907             now handle the WM_DESTROY message we will catch all our children
10908             being destroyed.
10909           - Now calling OnHandleDestroyed from our new WM_DESTROY handler
10910         * Form.cs:
10911           - Added a field to track the application context of the form.
10912           - No need to set closing variable as response to WM_CLOSE, instead
10913             we destroy the window. We also call PostQuitMessage if the form
10914             has an application context (which makes it the main app form,
10915             which, when closed terminates the app)
10916         * XplatUI.cs:
10917           - Dropped Exit() method, it's naming was confusing
10918           - Added PostQuitMessage() which causes GetMessage to return false
10919             once the message queue is empty
10920         * XplatUIDriver.cs, XplatUIWin32.cs: Dropped Exit(), added 
10921           PostQuitMessage()
10922         * XplatUIOSX.cs: Switched signature for Exit method since Exit() is
10923           no longer a valid XplatUI method, but left it in since it's used
10924           internally. Added empty PostQuitMessage() method.
10925         * MenuAPI.cs: Replaced call to Exit() with call to
10926           PostQuitMessage, even though this is probably no longer needed.
10927         * Hwnd.cs: Added 'pretty' ToString() to support debugging.
10928         * X11Structs.cs: Added pretty XEvent.ToString() to support debugging.
10929         * Application.cs:
10930           - Replaced call to XplatUI.Exit() with PostQuitMessage()
10931           - Removed old debug code that would call XplatUI for exception
10932             display, enabled standard exception handling (Still not enabled
10933             though, until NativeWindow's ExternalExceptionHandler define
10934             is removed
10935         * NativeWindow.cs:
10936           - Added internal method to allow control to update NativeWindow
10937             after a window has been destroyed
10938           - Added handling of already destroyed windows when calling i
10939             DestroyWindow
10940           - Added removal of handle from list on ReleaseHandle
10941         * XplatUIX11.cs:
10942           - Dropped GetMessageResult var and related code
10943           - Added PostQuitState to field to track if PostQuitMessage has been
10944             called
10945           - Dropped Exit() method
10946           - Added PostQuitMessage() method
10947           - GetMessage now will return false if PostQuitState is set and no
10948             more messages are in the queue.
10949           - Expose handler will no longer generate WM_PAINT messages if we are
10950             in PostQuitState since it's very likely any windows have already
10951             been destroyed, and since Hwnd won't get updated until we have
10952             processed the DestroyNotify we'd be causing X errors.
10953         
10954 2005-12-07  Peter Dennis Bartok  <pbartok@novell.com>
10956         * Control.cs(WndProc): Apparently I'm suffering from brain cloud.
10957           Thanks to Mike for pointing out the err of my ways.
10959 2005-12-07  Peter Dennis Bartok  <pbartok@novell.com>
10961         * Control.cs(PreProcessMessage): Moved menu handling back, but
10962           after all other key handling, to match MS (who handles Menu in
10963           DefWndProc)
10964         * Menu.cs (WndProc): Removed my brainfart
10966 2005-12-07  Peter Dennis Bartok  <pbartok@novell.com>
10968         * Control.cs(PreProcessMessage): Removed special menu handling 
10969         * Menu.cs (WndProc): Added handling of WM_SYSKEYUP for menu purposes.
10971 2005-12-07  Mike Kestner  <mkestner@novell.com>
10973         * Control.cs : special case SYSKEYUP so that we can adjust keynav
10974         state according in tracker.
10975         * Menu.cs : promote tracker field to base class and provide a tracker
10976         lookup capability.  Add/Remove shortcuts dynamically if the top menu
10977         has a tracker. Unparent items that are removed from the collection.
10978         * MenuAPI.cs : implement mnemonic, shortcut, and arrow-based keynav.
10979         * Theme*.cs: add always_show_hotkeys field to support configurability
10980         of mnemonic display.  win32 doesn't show mnemonics until Alt is
10981         pressed.
10983 2005-12-07  Jackson Harper  <jackson@ximian.com>
10985         * MdiChildContext.cs: Use Control.ResetCursor.
10986         * Control.cs: ResetCursor needs to set the property so that the
10987         correct XplatUI call gets made.
10989 2005-12-07  Peter Dennis Bartok  <pbartok@novell.com>
10991         * Control.cs: More fixes to make our key events match MS. We
10992           were not setting the modifier state on KeyData, and we were
10993           not generating any events when Alt was pressed with a key
10994           since handling of WM_SYSxxx was missing for the OnKey methods.
10996 2005-12-07  Jackson Harper  <jackson@ximian.com>
10998         * MdiChildContext.cs: reenable the sizing code.
10999         - When the mouse leaves a window reset its cursor.
11001 2005-12-07  Alexander Olk  <alex.olk@googlemail.com>
11003         * ThemeClearlooks.cs: Reflect latest Hwnd changes
11005 2005-12-07  Peter Dennis Bartok  <pbartok@novell.com>
11007         * Hwnd.cs: Now using the theme 3d bordersize to calculate
11008           widths of Fixed3D borders
11010 2005-12-07  Jackson Harper  <jackson@ximian.com>
11012         * MdiClient.cs: Fix warnings. Earn Mike's love.
11014 2005-12-07  Alexander Olk  <alex.olk@googlemail.com>
11016         * ThemeClearlooks.cs:
11017           - Adjusted mouse over button color
11018           - Added first parts of CheckBox drawing
11019           - Added correct color for selected text background
11020           - Fixed ComboBox drawing
11021           - Added CPDrawBorder3D and CPDrawBorder
11023 2005-12-06  Peter Dennis Bartok  <pbartok@novell.com>
11025         * XplatUIX11.cs: Added call to XBell for AudibleAlert
11027 2005-12-06  Peter Dennis Bartok  <pbartok@novell.com> 
11029         * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs, XplatUIWin32.cs,
11030           XplatUIOSX.cs: Added AudibleAlert() method to have a means to
11031           alert users via sound. We could add an enum arg with different
11032           types of alerts in the future
11034 2005-12-06  Peter Dennis Bartok  <pbartok@novell.com>
11036         * Control.cs: Fix behaviour problems pointed out by Mike
11038 2005-12-05  Mike Kestner  <mkestner@novell.com>
11040         * StatusBarPanel.cs: add Invalidate method and hook it into all the
11041         prop setters.  Calls parent.Refresh for now, but could be maybe be
11042         optimized with an internal method on StatusBar at some point.
11043         [Fixes #76513]
11045 2005-12-05  Peter Dennis Bartok  <pbartok@novell.com> 
11047         * RichTextBox.cs: Implemented get_SelectionColor
11049 2005-12-05  Alexander Olk  <alex.olk@googlemail.com>
11051         * ThemeClearlooks.cs:
11052           - Removed dead code
11053           - Draw black button border only if button is Form.AcceptButton
11054           - Draw correct button color for pressed RadioButton if the mouse 
11055             has entered the button
11056           - Updated ProgressBar drawing!
11057           - Updated CPDrawSizeGrip drawing
11058           - Updated StatusBarPanel drawing
11060 2005-12-05  Mike Kestner  <mkestner@novell.com>
11062         * Control.cs (PreProcessMessage): add Keys.Alt based on LParam value.
11063         * X11Keyboard.cs (SendKeyboardInput): formal lParam for alt mod.
11065 2005-12-04  Alexander Olk  <alex.olk@googlemail.com>
11067         * ThemeClearlooks.cs: Initial check-in, activate with
11068           export MONO_THEME=clearlooks
11069         * ThemeEngine.cs: Added ThemeClearlooks
11071 2005-12-03  Mike Kestner  <mkestner@novell.com>
11073         * MenuAPI.cs: deactivate menus prior to calling item.PerformClick.
11074         [Fixes #76897]
11076 2005-12-02  Jackson Harper  <jackson@ximian.com>
11078         * Form.cs: If the child form has no menu the default main menu is
11079         used as the active menu.
11081 2005-12-02  Peter Dennis Bartok  <pbartok@novell.com> 
11083         * ListBox.cs: Check if any items exist before trying to resolve 
11084           coordinates into items
11086 2005-12-02  Peter Dennis Bartok  <pbartok@novell.com>
11088         * ThemeWin32Classic.cs: Hatchbrush on Win32 seems to always use white
11089           as the second color for the background hatch
11091 2005-12-02  Peter Dennis Bartok  <pbartok@novell.com>
11093         * TextBoxBase.cs: Now uses Jackson's new and improved ImplicitScrollbar
11094         * RichTextBox.cs: FormatText position arguments are 1-based, now making
11095           sure that what we pass to FormatText is always 1-based. Fixes #76885
11097 2005-11-29  Miguel de Icaza  <miguel@novell.com>
11099         * NumericUpDown.cs (EndInit): When we are done initializing,
11100         reflect any updates on the UI.
11102 2005-12-02  Jackson Harper  <jackson@ximian.com>
11104         * ImplicitHScrollBar.cs:
11105         * ImplicitVScrollBar.cs: New scrollbars that don't take focus from
11106         their container controls.
11107         * TreeView.cs: Use the new implicit scrollbars.
11109 2005-12-02  Jackson Harper  <jackson@ximian.com>
11111         * TreeView.cs: Make top_node internal so the TreeNodeCollections
11112         can play with it.
11113         * TreeNodeCollection.cs: If we remove the topnode we need to
11114         update topnode to the next node in line.
11115         - When clearing nodes go through the same process as removing
11116         them, so they get depareneted and checked if they are top node.
11118 2005-12-01  Jackson Harper  <jackson@ximian.com>
11120         * TreeView.cs: When imagelists are used the image area is
11121         selectable as well as the text.
11122         - If there are no selected nodes select the first one.
11123         * TreeNodeCollection.cs: Getting the TreeView is mildly expensive,
11124         so don't do it more then we need to.
11126 2005-12-01  Jackson Harper  <jackson@ximian.com>
11128         * ThemeWin32Classic.cs: Reimplement the scroll arrow drawing so
11129         that arrows can be scaled.
11131 2005-12-01  Jackson Harper  <jackson@ximian.com>
11133         * TreeNode.cs : Fixed bugs that caused FullPathTest + Traverse to
11134         fail. Patch by Dieter Bremes
11136 2005-11-30  Jackson Harper  <jackson@ximian.com>
11138         * Form.cs: Property is 2.0 only
11139         * PrintDialog.cs: Signature fix.
11141 2005-11-30  Peter Dennis Bartok  <pbartok@novell.com>
11143         * TextControl.cs: 
11144           - No longer artificially moves text 2 pixels down (now that we have
11145             borders this is no longer needed)
11146           - Added calcs for left, hanging and right indent
11148 2005-11-23  Mike Kestner  <mkestner@novell.com>
11150         * Menu.cs: mark MenuChanged internal, since it's not exposed by MS.
11152 2005-11-30  Jackson Harper  <jackson@ximian.com>
11154         * MdiChildContext.cs: Set the cloned menus forms, as these don't
11155         get cloned as part of CloneMenu ().
11156         * Menu.cs: Make sure the parent of the items get set correctly
11157         when they are added.  And the owners are notified of the changes.
11158         * Form.cs: Create an ActiveMenu property, so that when MDI is used
11159         we can change the menu being displayed/handled by the form without
11160         changing the menu assosciated with the form.
11161         - Don't let Mdi children draw/handle menus.
11162         
11163 2005-11-30  Jackson Harper  <jackson@ximian.com>
11165         * Menu.cs: Switch the MenuChanged method to OnMenuChanged and add
11166         a MenuChanged event. Just to make the API a little more
11167         consistent.
11168         * MainMenu.cs:
11169         * MenuItem.cs: Use the new OnMenuChanged
11170         * MdiChildContext.cs: Handle menu merging.
11171         * Form.cs: Implement MergedMenu.
11172         
11173 2005-11-30  Jackson Harper  <jackson@ximian.com>
11175         * Menu.cs: We were misusing Add. Add goes behind the specified
11176         index according to the docs, and does not replace the specified
11177         index. So I added an Insert method.
11179 2005-11-30  Peter Dennis Bartok  <pbartok@novell.com>
11181         * TextBoxBase.cs:  Implemented Ctrl-Ins (Copy), Shift-Ins (Paste) and
11182           Shift-Del (Cut), apparently Emacs uses these old Win 2.x keys. This
11183           is for Jackson
11184         * RichTextBox.cs: Added calls to base for DnD events
11186 2005-11-28  Peter Dennis Bartok  <pbartok@novell.com>
11188         * TextControl.cs:
11189           - Fixed drag-selection related crash; style fixes
11190           - Implemented undo class
11191             o Implemented method to capture document state for specified
11192               range in document tree
11193             o Implemented method to restore captured document state
11194             o Implemented cursor tracking
11195             o Implemented basic undo stack
11196           - Added undo cursor tracking to methods altering cursor location
11197           - Added undo tracking to selection deletion (still missing
11198             other text-altering hookups)
11199         * RichTextBox.cs:
11200           - Added SelectionLength property
11201           - Implemented CanPaste()
11202           - Implemented Paste()
11203           - Added missing protected methods
11204           - Fixed RTF->Document conversion; now uses font index 0 and color 
11205             index 0 as the default font for the parsed text
11206           - Fixed RTF<->Document font size translation
11207           - Fixed RTF generation, now properly handles cross-tag boundaries
11208             for single line selection
11209           - No longer always appends blank line to generated RTF
11210           - Removed TODOs
11211           - Added missing attributes
11212           - Hooked up undo-related methods
11213         * TextBoxBase.cs:
11214           - Implemented Copy()
11215           - Implemented Paste()
11216           - Implemented Cut()
11217           - Fixed caret mis-behaviour on backspace across line-boundaries
11219 2005-11-29  Jackson Harper  <jackson@ximian.com>
11221         * MdiClient.cs: Add a method for activating mdi children. Very
11222         basic right now. I imagine someday it might need more girth.
11223         * MenuItem.cs: Implement MDI lists. When mdilist is true the mdi
11224         children windows names are added to the menu item.
11225         * ThemeWin32Classic.cs: Draw the arrow if the item is an
11226         mdilist. This happens regardless of whether or not there are any
11227         mdi windows to see in the list, and according to my tests happens
11228         before the items are even added. Also happens if there isn't even
11229         an mdi client to get windows from.
11231 2005-11-29  Alexander Olk  <alex.olk@googlemail.com>
11233         * ThemeWin32Classic.cs: Make DrawFlatStyleRadioButton protected
11234         * ThemeNice.cs: Fix drawing of flatstyle radiobuttons
11236 2005-11-29  Jordi Mas i Hernandez <jordimash@gmail.com>
11238         * DataGridTableStyle.cs:
11239           - Create always the styles for the missing columns even if they are
11240             provided by the user (not default table style)
11241         * DataGrid.cs:
11242           - Fixes bug 76770
11243           - Fixes SetDataBinding (always re-attach source)
11244           - Fixes SetNewDataSource (only clear styles if they are not for 
11245             this source)
11246          -  Expands OnTableStylesCollectionChanged to handle style refresh 
11247             and remove properly
11249 2005-11-29  Jackson Harper  <jackson@ximian.com>
11251         * FileDialog.cs: Implement missing bits, remove some dead
11252         code.
11253         * FontDialog.cs: Implement missing Apply stuff, and ToString. Move
11254         creation of the panel so that the options set on the dialog are
11255         seen when the panel is created.
11256         * TreeView.cs: raise a click when items are clicked.
11257         
11258 2005-11-29  Jackson Harper  <jackson@ximian.com>
11260         * MdiClient.cs: Pass some signature methods through to base.
11262 2005-11-28  Jackson Harper  <jackson@ximian.com>
11264         * ListView.cs: Raise the click event when items are clicked.
11266 2005-11-28  Jackson Harper  <jackson@ximian.com>
11268         * MdiClient.cs: Make this algorithm even more beautiful.  And fix
11269         a nullref.
11271 2005-11-27  Alexander Olk  <alex.olk@googlemail.com>
11273         * ThemeNice.cs: - Removed 1 pixel bitmaps
11274           - Use SmoothingMode.AntiAlias where it makes sense
11275             (ScrollButton arrow for example)
11276           - Enhanced Button focus drawing
11277           - Fixed ComboBox drawing (no artefacts anymore, focus
11278             rectangle is back again, reduced size of ComboButton, etc.)
11279           - Fixed RadioButton focus drawing for Appearence.Button
11280           - Slight ScrollButton redesign
11281           - Some LinearGradientBrush size fixes
11282           - GroupBoxes have now rounded edges
11283           - Fixed StatusBar drawing
11285 2005-11-25  Alexander Olk  <alex.olk@googlemail.com>
11287         * ThemeNice.cs: - Remove dead code
11288           - use correct background colors for menus, etc.
11289           - Fake pixel drawing with 1 pixel bitmaps
11291 2005-11-24  Jackson Harper  <jackson@ximian.com>
11293         * MdiClient.cs: Size the scrollbars when resizing the window.
11294         - Resize the maximized windows when the client is resized
11295         * Form.cs: Make the child context available
11296         
11297 2005-11-23  Jackson Harper  <jackson@ximian.com>
11299         * MdiChildContext.cs: Don't size windows if they are maximized.
11301 2005-11-23  Mike Kestner  <mkestner@novell.com>
11303         * ContextMenu.cs: use MenuTracker.
11304         * Control.cs: remove menu handle usage.
11305         * Form.cs: remove menu handle usage.
11306         * Hwnd.cs: remove menu handle usage.
11307         * MainMenu.cs: Draw method moved here from MenuAPI.DrawMenuBar. Proxy
11308         motion and clicks to the new Tracker handlers.
11309         * Menu.cs: add sizing accessors, SelectedItem prop, kill CreateItems
11310         and handle usage.
11311         * MenuAPI.cs: refactored to combine popup and menubar event handling.
11312         Killed the MENU and MENUITEM data types and associated collections
11313         since we now keep the info on Menu and MenuItem. Expanded TRACKER into
11314         MenuTracker class that exposes the leftovers from the old MenuAPI
11315         static methods. Restructured Capture handling so that only one grab is
11316         done for the entire menu hierarchy instead of handing off grabs to
11317         submenus. Tracker now has an invisible control to Capture when active.
11318         * MenuItem.cs: add sizing accessors, kill Create
11319         and handle usage.
11320         * Theme.cs: remove menu handle and MENU(ITEM) usage.
11321         * ThemeWin32Classic.cs: use Menu/MenuItem sizing props instead of
11322         MENU(ITEM). remove menu handle usage, use Menu directly.
11323         * XplatUIDriver.cs: remove menu handle usage.
11324         * XplatUIOSX.cs: remove menu handle usage.
11325         * XplatUIWin32.cs: remove menu handle usage.
11326         * XplatUIX11.cs: remove menu handle usage.
11328 2005-11-22  Jackson Harper  <jackson@ximian.com>
11330         * Hwnd.cs: Don't compute the menu size for
11331         DefaultClientRectangle.
11332         - Reenable menu sizes being computed for GetClienRectangle.
11333         * Form.cs: Remove comment of trechery
11334         
11335 2005-11-22  Jackson Harper  <jackson@ximian.com>
11337         * Hwnd.cs: The adjustments for the menu bar are made when it is
11338         attached to the form.
11340 2005-11-19  Jackson Harper  <jackson@ximian.com>
11342         * XplatUIX11.cs: Create an HGRN of the invalid area for WM_NCPAINT
11343         (just like on windows).
11345 2005-11-19  Jackson Harper  <jackson@ximian.com>
11347         * MdiChildContext.cs: Handle all the buttons ourselves. We can't
11348         use real buttons anymore because they are in non client area. The
11349         one TODO here is that I need to somehow invalidate a section of
11350         the non client area.
11352 2005-11-18  Jackson Harper  <jackson@ximian.com>
11354         * Control.cs: Put the enum check back in now that MDI doesnt have
11355         to use this to set border styles.
11356         * Form.cs: Only set mdi child windows borders if the handle has
11357         been created.
11358         * MdiChildContext.cs: Don't set the InternalBorderStyle, just pass
11359         this directly on to the driver.
11360         - Get the move start position before adjusting for the titlebar
11361         height, this fixes the windows "skipping" when they are first
11362         moved.
11364 2005-11-18  Jackson Harper  <jackson@ximian.com>
11366         * XplatUIX11.cs: Just compute the mdi borders separately as they
11367         don't totally match up with normal form borders.
11369 2005-11-18  Jackson Harper  <jackson@ximian.com>
11371         * Control.cs: Set WS_ styles for borders, so that the driver does
11372         not have to retrieve the control instance to figure out what kind
11373         of borders it should have.
11374         * Form.cs: Set the WS_EX_MDICHILD flag on mdi children, so the
11375         driver can know its an mdi child easily.
11376         * XplatUIX11.cs: Get the border styles and whether the window is
11377         MDI from the Styles and ExStyles params instead of having to get a
11378         control. This prevents a chicken and egg problem.       
11380 2005-11-18  Jackson Harper  <jackson@ximian.com>
11382         * MdiClient.cs: Fix typo so scrollbars show up correctly.
11384 2005-11-18  Jackson Harper  <jackson@ximian.com>
11386         * MdiClient.cs: Calculate when to add and remove scrollbars
11387         correctly.
11388         * MdiChildContext.cs: Adjust the y position to take the titlebar
11389         into account.
11390         - No height for FormBorderStyle.None
11392 2005-11-18  Jackson Harper  <jackson@ximian.com>
11394         * Control.cs: Allow non enum values to be used for
11395         InternalBorderStyle.  MDI does this to set a special border style.
11396         - New utility methods for converting points to/from client coords
11397         - Add the newly created control to the Controls collection before
11398         updating its style. This way UpdateStyle can walk the control
11399         heirarchy to find the control if needed.
11400         so I don't need to create a new Point object all the time.
11401         * Form.cs: Let MDI windows handle their border styles.
11402         - Set styles on MDI windows so the correct title style is derived.
11403         * MdiChildContext.cs: Move all the painting and window handling
11404         into the non client area.
11405         - Use correct sizing and put correct buttons on frames based on
11406         the FormBorderStyle.
11407         - Notify the mdi client about scrolling
11408         - Need to handle the buttons ourselves now, because they are all
11409         in non client areas and we can't add controls there.
11410         * MdiClient.cs: Halfway to scrolling, this implementation is
11411         somewhat broken though, we need to check to make sure other
11412         windows aren't causing scrolling before removing the bars. Also
11413         the bars need to be drawn on top, maybe I can switch implicit
11414         controls to be on top.
11415         * Hwnd.cs: caption_height and tool_caption_height are now
11416         properties of an hwnd, this way they can be set by the driver
11417         based on the type of window they are.  In X11 the window manager
11418         handles the decorations so caption_height is zero unless its an
11419         MDI window.
11420         - Add 3 pixel borders for MDI windows (0xFFFF).
11421         - Get rid of some code duplication, have DefaultClientRectanle
11422         just call GetClientRectangle.
11423         * XplatUIX11.cs: Pass caption_height and tool_caption_height to
11424         Hwnd now.
11425         - Set border styles differently for mdi windows.
11426         * XplatUIOSX.cs: Pass caption_height and tool_caption_height to
11427         Hwnd now.
11428         
11429 2005-11-15  Mike Kestner  <mkestner@novell.com>
11431         * Menu.cs: when adding an item to the collection, if item is already 
11432         parented, remove it from the parent.
11434 2005-11-13  Alexander Olk  <alex.olk@googlemail.com>
11436         * X11DesktopColors.cs: Added KDE support
11438 2005-11-11  Peter Dennis Bartok  <pbartok@novell.com>
11440         * XplatUIWin32.cs: 
11441           - Clipboard methods now can translate Rtf format
11442           - No longer removes clipboard contents whenever a new format is added
11443             to allow placing multiple formats on the clipboard
11444         * Clipboard.cs: Clipboard now supports getting a IDataObject and
11445           will place all formats contained in it onto the clipboard. Also
11446           now cleans the clipboard before placing a new object onto it
11447         * RichTextBox.cs:
11448           - Implemented set_Rtf
11449           - Implemented set_SelectedRtf
11450           - Created InsertRTFFromStream() method to allow single code base
11451             for all properties and methods that insert RTF into document
11452           - Removed debug output
11453         * TextControl.cs:
11454           - Fixed Delete(int) to fix up line numbers
11455           - Fixed ReplaceSelection to combine start and end line
11456           - Fixed serious DeleteChars bug that would leave the document tree
11457             broken
11458           - Improved DumpTree with several logic checks to detect broken
11459             document trees
11460           - Removed debug lines
11461           - Fixed Caret.WordForward/WordBack moving code, now always also 
11462             updates caret.tag (fixes crash when word-selecting across tag
11463             boundaries via keyboard)
11464           - Added Insert() method for inserting multiline text into documents
11465           - Fixed DeleteChars() calculation errors that would cause a broken
11466             tag chain with multiple tag lines
11467           - DeleteChars() no longer crashes on multi-tag lines if not all tags
11468           - Split() no longer moves caret if split is at caret location
11469           - ReplaceSelection() now updates the cursor and re-displays it
11470           - ReplaceSelection() now uses new Insert() method to avoid code
11471             duplication
11472           - FormatText() can now handle formatting partial lines
11473         * TextBoxBase.cs:
11474           - Append now uses new TextControl.Insert() method (this avoids 
11475             duplicate code)
11476           - Implemented Ctrl-X (Cut) (
11477           - Implemented Ctrl-C (Copy)
11478           - Implemented Ctrl-V (Paste) (Still some bugs related to screen 
11479             regeneration when pasting text; roundtripping Copy&Paste within
11480             edit control still fails due to some calculation bugs in GenerateRTF)
11481           - The Delete key will now remove the current selection if it is visible
11482         * TextBox.cs: Removed debug lines
11483         * XplatUI.cs: Trigger initialization of DataFormats (which requires the
11484           driver to be initialized and can't therefore be done via a static ctor)
11486 2005-11-10  Peter Dennis Bartok  <pbartok@novell.com>
11488         * TextControl.cs: Added backend code for finding char arrays and strings
11489         * TextBoxBase.cs:
11490           - Added mouse wheel scroll support
11491           - Added support for VScroll and HScroll events
11492         * RichTextBox.cs:
11493           - Implemented all seven Find() variants
11494           - Implemented GetCharFromPosition()
11495           - Implemented GetCharIndexFromPosition()
11496           - Implemented GetLineFromIndex()
11497           - Implemented GetPositionFromCharIndex();
11498           - Implemented SaveFile for PlainText and UnicodeText
11499           - Fixed set_Font, now setting a new font applies that font to
11500             the whole document
11501           - Implemented generic Document to RTF converter
11502           - Implemented SaveFile for RichText format (still missing unicode
11503             conversion for non-ansi chars)
11504           - Implemented get_Rtf
11505           - Implemented get_SelectedRtf
11507 2005-11-09  Peter Dennis Bartok  <pbartok@novell.com>
11509         * Control.cs (WndProc): Call HandleClick after having sent OnMouseUp
11510           to allow any captures to be released before triggering OnClick. This
11511           way a click handler may capture the mouse without interference.
11512         * XplatUIX11.cs: Always send mouse messages to grab window if one exists.
11513           This way we send them even though X may not allow a grab (if the window
11514           isn't visible, for example)
11516 2005-11-08  Pedro Martinez Julia <pedromj@gmail.com>
11518         * DataGridViewRowEventArgs.cs: DataGridView implementation
11519         * DataGridViewElement.cs: DataGridView implementation
11520         * DataGridViewComboBoxCell.cs: DataGridView implementation
11521         * DataGridViewDataErrorContexts.cs: DataGridView implementation
11522         * DataGridViewCellErrorTextNeededEventArgs.cs: DataGridView implementation
11523         * DataGridViewColumnHeadersHeightSizeMode.cs: DataGridView implementation
11524         * ImageLayout.cs: DataGridView implementation
11525         * DataGridViewComboBoxColumn.cs: DataGridView implementation
11526         * DataGridViewCellMouseEventHandler.cs: DataGridView implementation
11527         * DataGridViewSelectionMode.cs: DataGridView implementation
11528         * IDataGridViewEditingControl.cs: DataGridView implementation
11529         * DataGridViewSortCompareEventHandler.cs: DataGridView implementation
11530         * DataGridViewCellStyleContentChangedEventHandler.cs: DataGridView implementation
11531         * DataGridViewAutoSizeModeEventHandler.cs: DataGridView implementation
11532         * DataGridViewColumnStateChangedEventHandler.cs: DataGridView implementation
11533         * DataGridViewColumnSortMode.cs: DataGridView implementation
11534         * DataGridView.cs: DataGridView implementation
11535         * DataGridViewRowStateChangedEventHandler.cs: DataGridView implementation
11536         * DataGridViewRowPostPaintEventArgs.cs: DataGridView implementation
11537         * DataGridViewDataErrorEventArgs.cs: DataGridView implementation
11538         * Padding.cs: DataGridView implementation
11539         * DataGridViewCellParsingEventArgs.cs: DataGridView implementation
11540         * DataGridViewCellStateChangedEventHandler.cs: DataGridView implementation
11541         * DataGridViewRowEventHandler.cs: DataGridView implementation
11542         * DataGridViewCellPaintingEventHandler.cs: DataGridView implementation
11543         * DataGridViewCellFormattingEventHandler.cs: DataGridView implementation
11544         * DataGridViewButtonCell.cs: DataGridView implementation
11545         * DataGridViewCellStyleContentChangedEventArgs.cs: DataGridView implementation
11546         * DataGridViewEditMode.cs: DataGridView implementation
11547         * DataGridViewCellValueEventArgs.cs: DataGridView implementation
11548         * DataGridViewRowCancelEventArgs.cs: DataGridView implementation
11549         * DataGridViewRowHeadersWidthSizeMode.cs: DataGridView implementation
11550         * DataGridViewCheckBoxColumn.cs: DataGridView implementation
11551         * DataGridViewCellToolTipTextNeededEventHandler.cs: DataGridView implementation
11552         * DataGridViewAutoSizeColumnsMode.cs: DataGridView implementation
11553         * DataGridViewCellEventHandler.cs: DataGridView implementation
11554         * DataGridViewEditingControlShowingEventHandler.cs: DataGridView implementation
11555         * DataGridViewCellStyleConverter.cs: DataGridView implementation
11556         * DataGridViewSelectedRowCollection.cs: DataGridView implementation
11557         * DataGridViewBindingCompleteEventHandler.cs: DataGridView implementation
11558         * DataGridViewColumnEventArgs.cs: DataGridView implementation
11559         * DataGridViewRowHeightInfoPushedEventHandler.cs: DataGridView implementation
11560         * DataGridViewRowContextMenuStripNeededEventHandler.cs: DataGridView implementation
11561         * QuestionEventArgs.cs: DataGridView implementation
11562         * IDataGridViewEditingCell.cs: DataGridView implementation
11563         * DataGridViewTriState.cs: DataGridView implementation
11564         * DataGridViewColumnDesignTimeVisibleAttribute.cs: DataGridView implementation
11565         * DataGridViewCellStateChangedEventArgs.cs: DataGridView implementation
11566         * DataGridViewColumnCollection.cs: DataGridView implementation
11567         * DataGridViewCellValueEventHandler.cs: DataGridView implementation
11568         * DataGridViewRowDividerDoubleClickEventHandler.cs: DataGridView implementation
11569         * DataGridViewCellFormattingEventArgs.cs: DataGridView implementation
11570         * DataGridViewColumn.cs: DataGridView implementation
11571         * DataGridViewCellBorderStyle.cs: DataGridView implementation
11572         * DataGridViewCellContextMenuStripNeededEventHandler.cs: DataGridView implementation
11573         * DataGridViewCellValidatingEventArgs.cs: DataGridView implementation
11574         * DataGridViewRow.cs: DataGridView implementation
11575         * DataGridViewImageCellLayout.cs: DataGridView implementation
11576         * DataGridViewImageCell.cs: DataGridView implementation
11577         * DataGridViewTopLeftHeaderCell.cs: DataGridView implementation
11578         * DataGridViewCheckBoxCell.cs: DataGridView implementation
11579         * DataGridViewHeaderCell.cs: DataGridView implementation
11580         * DataGridViewCellErrorTextNeededEventHandler.cs: DataGridView implementation
11581         * DataGridViewRowHeightInfoPushedEventArgs.cs: DataGridView implementation
11582         * DataGridViewAutoSizeColumnsModeEventHandler.cs: DataGridView implementation
11583         * DataGridViewTextBoxColumn.cs: DataGridView implementation
11584         * QuestionEventHandler.cs: DataGridView implementation
11585         * DataGridViewCellStyleScopes.cs: DataGridView implementation
11586         * DataGridViewSortCompareEventArgs.cs: DataGridView implementation
11587         * DataGridViewCellContextMenuStripNeededEventArgs.cs: DataGridView implementation
11588         * DataGridViewCell.cs: DataGridView implementation
11589         * DataGridViewCellEventArgs.cs: DataGridView implementation
11590         * DataGridViewClipboardCopyMode.cs: DataGridView implementation
11591         * DataGridViewCellStyle.cs: DataGridView implementation
11592         * DataGridViewColumnHeaderCell.cs: DataGridView implementation
11593         * DataGridViewRowPrePaintEventHandler.cs: DataGridView implementation
11594         * DataGridViewRowCancelEventHandler.cs: DataGridView implementation
11595         * TextFormatFlags.cs: DataGridView implementation
11596         * DataGridViewCellToolTipTextNeededEventArgs.cs: DataGridView implementation
11597         * DataGridViewDataErrorEventHandler.cs: DataGridView implementation
11598         * DataGridViewAdvancedCellBorderStyle.cs: DataGridView implementation
11599         * DataGridViewCellPaintingEventArgs.cs: DataGridView implementation
11600         * DataGridViewButtonColumn.cs: DataGridView implementation
11601         * DataGridViewRowsRemovedEventArgs.cs: DataGridView implementation
11602         * HandledMouseEventArgs.cs: DataGridView implementation
11603         * DataGridViewCellParsingEventHandler.cs: DataGridView implementation
11604         * DataGridViewColumnDividerDoubleClickEventHandler.cs: DataGridView implementation
11605         * DataGridViewCellMouseEventArgs.cs: DataGridView implementation
11606         * DataGridViewAutoSizeRowsMode.cs: DataGridView implementation
11607         * DataGridViewRowCollection.cs: DataGridView implementation
11608         * DataGridViewAdvancedBorderStyle.cs: DataGridView implementation
11609         * DataGridViewCellCancelEventHandler.cs: DataGridView implementation
11610         * DataGridViewHitTestType.cs: DataGridView implementation
11611         * DataGridViewAutoSizeModeEventArgs.cs: DataGridView implementation
11612         * DataGridViewColumnStateChangedEventArgs.cs: DataGridView implementation
11613         * DataGridViewColumnEventHandler.cs: DataGridView implementation
11614         * DataGridViewRowDividerDoubleClickEventArgs.cs: DataGridView implementation
11615         * DataGridViewAutoSizeRowMode.cs: DataGridView implementation
11616         * DataGridViewRowHeightInfoNeededEventArgs.cs: DataGridView implementation
11617         * DataGridViewRowsDeletedEventArgs.cs: DataGridView implementation
11618         * DataGridViewTextBoxEditingControl.cs: DataGridView implementation
11619         * DataGridViewContentAlignment.cs: DataGridView implementation
11620         * DataGridViewRowPostPaintEventHandler.cs: DataGridView implementation
11621         * DataGridViewComboBoxEditingControl.cs: DataGridView implementation
11622         * DataGridViewCellValidatingEventHandler.cs: DataGridView implementation
11623         * DataGridViewSelectedColumnCollection.cs: DataGridView implementation
11624         * DataGridViewPaintParts.cs: DataGridView implementation
11625         * DataGridViewCellCollection.cs: DataGridView implementation
11626         * DataGridViewRowsAddedEventArgs.cs: DataGridView implementation
11627         * DataGridViewImageColumn.cs: DataGridView implementation
11628         * DataGridViewRowsRemovedEventHandler.cs: DataGridView implementation
11629         * DataGridViewElementStates.cs: DataGridView implementation
11630         * DataGridViewRowHeightInfoNeededEventHandler.cs: DataGridView implementation
11631         * DataGridViewColumnDividerDoubleClickEventArgs.cs: DataGridView implementation
11632         * DataGridViewRowPrePaintEventArgs.cs: DataGridView implementation
11633         * DataGridViewRowStateChangedEventArgs.cs: DataGridView implementation
11634         * DataGridViewEditingControlShowingEventArgs.cs: DataGridView implementation
11635         * DataGridViewCellCancelEventArgs.cs: DataGridView implementation
11636         * DataGridViewRowHeaderCell.cs: DataGridView implementation
11637         * DataGridViewBindingCompleteEventArgs.cs: DataGridView implementation
11638         * DataGridViewTextBoxCell.cs: DataGridView implementation
11639         * DataGridViewBand.cs: DataGridView implementation
11640         * DataGridViewAutoSizeColumnModeEventArgs.cs: DataGridView implementation
11641         * DataGridViewHeaderBorderStyle.cs: DataGridView implementation
11642         * DataGridViewRowsAddedEventHandler.cs: DataGridView implementation
11643         * DataGridViewAutoSizeColumnMode.cs: DataGridView implementation
11644         * DataGridViewAutoSizeColumnModeEventHandler.cs: DataGridView implementation
11645         * DataGridViewAutoSizeColumnsModeEventArgs.cs: DataGridView implementation
11646         * DataGridViewRowErrorTextNeededEventHandler.cs: DataGridView implementation
11647         * DataGridViewSelectedCellCollection.cs: DataGridView implementation
11648         * DataGridViewRowContextMenuStripNeededEventArgs.cs: DataGridView implementation
11649         * DataGridViewRowErrorTextNeededEventArgs.cs: DataGridView implementation
11650         * DataGridViewComboBoxDisplayStyle.cs: DataGridView implementation
11652 2005-11-08  Peter Dennis Bartok  <pbartok@novell.com>
11654         * ThemeWin32Classic.cs: 
11655           - Draw the outside focus rectangle around buttons
11656           - Use CPDrawFocusRectangle to draw focus rectangles until Cairo
11657             doesn't use end caps for every dash of a line anymore. This
11658             workaround ignores the forecolor.
11660 2005-11-08  Kornél Pál  <kornelpal@hotmail.com>
11662         * ImageList.cs: Don't use ArgbColor with LayoutKind.Explicit as it isn't
11663           endian safe.
11665 2005-11-07  Jackson Harper  <jackson@ximian.com>
11667         * X11Dnd.cs: Set the X/Y positions on the DragEventArgs correctly.
11669 2005-11-07  Jackson Harper  <jackson@ximian.com>
11671         * ScrollableControl.cs: Calculate the maximum and change vars
11672         (more) correctly so that scrollbars appear as a sensible size.
11674 2005-11-04  Jackson Harper  <jackson@ximian.com>
11676         * TreeNodeCollection.cs: Refresh when nodes are cleared from the
11677         collection.
11678         * TreeView.cs: When the tree is sorted null out the top_node so
11679         that it is recalculated.
11680         - Use dotted lines instead of dashed lines to match MS better.
11682 2005-11-04  Jordi Mas i Hernandez <jordimash@gmail.com>
11684         * ListView.cs: 
11685           - Implements key search for items. Useful when browsing files with FileDialog
11686           - When changing view mode or when clear the items reset scrollbar positions
11688 2005-11-04  Jackson Harper  <jackson@ximian.com>
11690         * CurrencyManager.cs: Implement the MetaDataChanged event, the
11691         Reset method, and the CheckEmpty. CheckEmpty is just a total guess
11692         as to what the method may do as there is no real way of creating a
11693         derived CurrencyManager and calling the method. 
11695 2005-11-03  Jackson Harper  <jackson@ximian.com>
11697         * ThemeWin32Classic.cs: Implement ownerdrawing in the tab control
11698         * TabControl.cs: Add Ownerdrawing bits, add the UpdateTabSelection
11699         method which seems to just be used internally to refresh the tabs.
11701 2005-11-03  Jackson Harper  <jackson@ximian.com>
11703         * TabControl.cs: Implement the remove method. Fix some broken
11704         comments.
11706 2005-11-03  Peter Dennis Bartok  <pbartok@novell.com>
11708         * DateTimePicker.cs:
11709           - Added missing DateTimePickerAccessibleObject class
11710           - Added missing events
11711           - Added OnFontChanged method
11712         * Form.cs: Added missing attributes
11713         * TreeView.cs: Added missing attributes
11715 2005-11-03  Peter Dennis Bartok  <pbartok@novell.com> 
11717         * GridItemCollection.cs: Fix signatures
11719 2005-11-03  Peter Dennis Bartok  <pbartok@novell.com>
11721         * XplatUI.cs: Updated build rev/date
11722         * ComboBox.cs, DataGridTextBoxColumn.cs Control.cs, 
11723           DataGridTableStyle.cs, DataGrid.cs, DateTimePicker.cs: Signature fixes
11724         * Application.cs: Trigger context-specific ExitThread events
11726 2005-11-03  Jackson Harper  <jackson@ximian.com>
11728         * Menu.cs:
11729         * MainMenu.cs:
11730         * GridTableStylesCollection.cs:
11731         * Timer.cs:
11732         * TabPage.cs:
11733         * HelpProvider.cs:
11734         * StatusBar.cs:
11735         * MonthCalendar.cs: Signature fixes
11737 2005-11-03  Jackson Harper  <jackson@ximian.com>
11739         * TreeNodeCollection.cs: Remove should not be virtual.
11740         * TreeView.cs: Implement the last of the missing methods.
11742 2005-11-03  Jackson Harper  <jackson@ximian.com>
11744         * TreeNodeConverter.cs: Implement to get off my class-status back.
11746 2005-11-03  Jackson Harper  <jackson@ximian.com>
11748         * TreeView.cs: Hookup the bits for drag and drop.
11749         * TreeNode.cs: Don't cache the tree_view or index anymore, now
11750         that nodes can be moved from tree to tree easily this just causes
11751         all sorts of problems.
11752         * TreeNodeCollection: Don't need to give treenodes an index and
11753         treeview anymore when they are added, these are computed on the
11754         fly. Also make sure to remove a node before its added.
11756 2005-11-03  Peter Dennis Bartok  <pbartok@novell.com>
11758         * TextControl.cs:
11759           - Added CaretSelection enum
11760           - Added comparison methods to Marker struct, makes selection code
11761             more readable
11762           - Added SelectionStart and SelectionEnd as 'moveable' location for
11763             the CaretDirection enum and handler
11764           - Added selection_prev variable to track optimized invalidation for
11765             word and line selection
11766           - Added SelectionVisible property (returns true if there is a valid 
11767             selection)
11768           - Switched CaretHasFocus to only display the caret if there is no
11769             visible selection
11770           - Avoiding StringBuilder.ToString to retrieve a single char, instead
11771             using the direct character index; should be much faster
11772           - Added various conditional debug statements
11773           - Fixed invalidation calculation for selection ranges
11774           - Added ExpandSelection() method to support word and line selection
11775           - Switched SetSelectionToCaret to use new Marker compare overloads
11776           - Added central IsWordSeparator() method to determine word 
11777             separators/whitespace and FindWordSeparator() to streamline common
11778             usage of IsWordSeparator()
11779         * TextBoxBase.cs:
11780           - Removed unneeded grabbed variable, it was just mirroring
11781             Control.Capture
11782           - No longer firing OnTextChanged event when Text setter is called,
11783             since the base will fire the event for us
11784           - Added handling of Ctrl-Up/Down selection
11785           - Added handling of Shift-Cursorkey selection
11786           - Added handling for Ctrl-Delete and Ctrl-Backspace to remove
11787             words
11788           - Added handling of Shift and Ctrl-Shift-Home/End selection
11789           - Removed some debug output
11790           - Added handling for single/double/tripple-click to place caret/
11791             select word/select line respectively (Fixes bug #76031)
11792           - Added support for drag expansion of word/line selection
11793         * RichTextBox.cs: Handle GotFocus event to trigger redrawing of
11794           current selection
11796 2005-11-02  Jackson Harper  <jackson@ximian.com>
11798         * X11Dnd.cs: If the drag is going to and from a MWF window just
11799         copy the data instead of sending it out through the X Selection
11800         mechanism.
11802 2005-11-02  Jackson Harper  <jackson@ximian.com>
11804         * X11Dnd.cs:
11805         * XplatUIX11.cs: When in a drag we don't want motion notify
11806         messages to get passed on to the other controls. This prevents
11807         mouse move messages from showing up in the drag source.
11809 2005-11-02  Jackson Harper  <jackson@ximian.com>
11811         * X11Dnd.cs: Remove unneeded call to XAllowEvents.  Make sure that
11812         the correct button is release to end a drag.
11813         * XplatUIX11.cs: Make the button state internal so the drag system
11814         can access it.  Dragging needs to know about all button releases,
11815         not just left button.
11817 2005-11-02  Miguel de Icaza  <miguel@novell.com>
11819         * Form.cs (Icon): If the icon is null, reset the icon to the
11820         default value. 
11822         * Cursor.cs: When writing the AND-mask bitmap do not include the
11823         number of colors, but hardcode those to two (black and white),
11824         fixes the loading of color cursors (Paint Dot Net).
11826         * Form.cs: To debug, allow MONO_MWF_SCALING=disable variable to
11827         turn off autoscaling.
11829         * Cursor.cs: Allow resource type to be 1 or 2 (from ImageMagic).
11831 2005-11-02  Jackson Harper  <jackson@ximian.com>
11833         * X11Dnd.cs: Make sure to send a status message if the pointer
11834         enters a control that can not accept a drop, otherwise the cursor
11835         isn't updated correctly. Also tried to compress the lines of code
11836         a bit.
11838 2005-11-02  Jackson Harper  <jackson@ximian.com>
11840         * X11Dnd.cs: Change cursors based on drag action. Also attempt to
11841         set actions correctly.  This isn't perfect as XDND and win32 have
11842         some differences on how you allow actions. I'll clear this up by
11843         adding a path for drag from MWF to MWF windows.
11844         * XplatUIX11.cs: Hook into the dnd system.
11846 2005-11-02  Jordi Mas i Hernandez <jmas@softcatala.org>
11848         * ListView.cs: Fixes scroll bar visibility. Hide them if they were
11849         previously shown but they are no longer need it. Very obvious when 
11850         browsing files with FileDialog.
11852 2005-11-01  Peter Dennis Bartok  <pbartok@novell.com>
11854         * Control.cs: We always need to call OnPaintBackground. We pretty much
11855           ignore AllPaintingInWmPaint and always do the painting there, whether 
11856           it's set or not, since we always ignore the WM_ERASEBKGND message 
11857           (which we don't generate on X11). This fixes #76616.
11858         * Panel.cs: Removed unneeded background painting. This happens properly
11859           in Control.cs already
11861 2005-10-31  Mike Kestner  <mkestner@novell.com>
11863         * Menu.cs: Add items to collection before setting their index.
11864         * MenuItem.cs : add range checking with ArgumentException like MS.
11865         [Fixes #76510]
11867 2005-10-31  Jackson Harper  <jackson@ximian.com>
11869         * ListBox.cs: Invalidate if the area is visible at all not just
11870         contained in the visible rect. Fixes unselection of semi visible
11871         items.
11873 2005-10-31  Jackson Harper  <jackson@ximian.com>
11875         * Control.cs: Consistently name the dnd methods. Make them
11876         internal so we can override them to match some MS behavoir
11877         internally.
11878         * Win32DnD.cs: Use the new consistent names.
11880 2005-10-31  Jackson Harper  <jackson@ximian.com>
11882         * TreeView.cs: Don't draw the selected node when we lose focus.
11884 2005-10-31  Jackson Harper  <jackson@ximian.com>
11886         * X11Dnd.cs: We still need to reset the state even though a full
11887         reset isn't being done, otherwise status's still get sent all over
11888         the place.
11890 2005-10-31  Jackson Harper  <jackson@ximian.com>
11892         * Control.cs: Make the dnd_aware flag internal so the dnd
11893         subsystem can check it. Catch exceptions thrown in dnd handlers to
11894         match MS behavoir.
11895         * Hwnd.cs: Add a flag for whether or not a window is dnd aware.
11896         * X11Dnd.cs: Handle null data in the converters. Set the XDND
11897         version when sending a XdndEnter. Use the control/hwnd dnd_aware
11898         flags to reduce the number of dnd enters/status's sent.
11900 2005-10-31  Jackson Harper  <jackson@ximian.com>
11902         * X11Dnd.cs: Don't need the sizeof here. Patch by Jordi Mas.
11904 2005-10-31  Jordi Mas i Hernandez <jordi@ximian.com>
11906         * PictureBox.cs: Fixes 76512
11908 2005-10-28  Jackson Harper  <jackson@ximian.com>
11910         * X11Dnd.cs: Early implementation to support winforms being a drag
11911         source for data on X11. Also restructured the converters so they
11912         can go both ways now.
11913         * XplatUIX11.cs: Tie ins to the the Dnd stuff.
11914         
11915 2005-10-27  Peter Dennis Bartok  <pbartok@novell.com>
11917         * XplatUIX11.cs: Fixed FIXME - implemented ASCII encoding for XA_STRING
11918           clipboard requests
11920 2005-10-27  Jackson Harper  <jackson@ximian.com>
11922         * TreeNode.cs: Implement serialization so my DnD examples will work.
11924 2005-10-24  Kornél Pál  <kornelpal@hotmail.com>
11926         * ButtonBase.cs, ListView.cs, NotifyIcon.cs, PictureBox.cs, ToolBar.cs,
11927           TreeView.cs: Don't dispose objects that are not owned.
11928           
11929 2005-10-24  Peter Dennis Bartok  <pbartok@novell.com>
11931         * Cursor.cs: Defaulting the Current cursor to Cursors.Default. We
11932           should retrieve the current cursor and report that, but XplatUI
11933           doesn't (yet) have an interface for that (and I'm not sure I even
11934           can, on X11)
11935         * XplatUIWin32.cs: Fixed override behaviour. The override is temporary,
11936           until any message loop processing is done (and the WM_SETCURSOR
11937           replaces the cursor to the proper one)
11938         * XplatUIX11.cs: 
11939           - Fixed override behaviour, we can't set the cursor globally on X11, 
11940             just for our windows.
11941           - Invalidating the System.Drawing X11 display handle when we are
11942             shutting down
11943         * Control.cs: Fix to make csc happy
11945 2005-10-23  Peter Dennis Bartok  <pbartok@novell.com>
11947         * TextBoxBase.cs: 
11948           - get_Text: Add last line (without trailing newline) to returned
11949             value (Fixes 76212)
11950           - get_TextLength: Count last line in returned length
11951           - ToString: Call Text property instead of duplicating code
11953 2005-10-23  Kornél Pál  <kornelpal@hotmail.com>
11955         * ImageList.cs: Dispose ImageAttributes objects.
11957 2005-10-22  Kornél Pál  <kornelpal@hotmail.com>
11959         * ImageList.cs: Use attribute constructors with less arguments where
11960           possible.
11962 2005-10-22  Kornél Pál  <kornelpal@hotmail.com>
11964         * ImageList.cs: Added lastKeyIndex field and use in IndexOfKey.
11965           Use typeof instead of strings when assembly is referenced. Added
11966           some more comments.
11968 2005-10-21  Jackson Harper  <jackson@ximian.com>
11970         * ListView.cs: Raise a double click event. Also tried to somewhat
11971         fix when the selectedindexchanged event is raised. Its still
11972         broken though.
11974 2005-10-21  Jackson Harper  <jackson@ximian.com>
11976         * TreeView.cs: New method to invalidate the plus minus area of a
11977         node without invalidating the whole node (maybe this can be used
11978         in some more places).
11979         * TreeNodeCollection.cs: When adding to an empty node we need to
11980         invalidate its plus minus area so the little block shows up.
11981         
11982 2005-10-21  Jackson Harper  <jackson@ximian.com>
11984         * TreeView.cs: Make sure that when we invalidate a node the bounds
11985         are big enough to cover the selected box and the focus
11986         rectangle. Use a different colour for the lines connecting nodes
11987         so they show up with all themes.
11989 2005-10-21  Peter Dennis Bartok  <pbartok@novell.com>
11991         * NativeWindow.cs: Don't call anything that could call into the driver,
11992           we might be on a different thread.
11994 2005-10-21  Peter Dennis Bartok  <pbartok@novell.com> 
11996         * Control.cs(Dispose): Since Dispose might run on a different thread,
11997           make sure that we call methods that could call into the driver via
11998           invoke, to avoid thread issues
12000 2005-10-21  Peter Dennis Bartok  <pbartok@novell.com>
12002         * XplatUI.cs: Removed finalizer
12003         * XplatUIX11.cs: Removed Destructor, was causing crashes due to X11
12004           not allowing to be called on the finalizer thread.
12006 2005-10-21  Kornél Pál  <kornelpal@hotmail.com>
12008         * ImageList.cs:
12009           - Reverted r51889 and r51891.
12010           - Added ImageListItem class that stores unmodified image items and image
12011             properties required to create list images until handle is created.
12012           - Added AddItem and moved image creation logic to AddItemInternal.
12013           - Added CreateHandle method that creates images based on unmodified items.
12014           - Added DestroyHandle that changes state to store unmodified items.
12015           - Add and AddStrip methods no more create handle.
12016           - ReduceColorDepth has no return value.
12017           - Dispose destroys handle.
12018           - Modified other methods to reflect the above changes.
12019           - Implemented key support.
12020           - Added profile 2.0 members and attributes.
12021           - Added private Reset and ShouldSerialize methods that provide the same
12022             behavior as MS.NET but the Visual Studio .NET designer seems to ignore
12023             them as they are private.
12024           - Added some more comments about implementation details.
12026 2005-10-21  Jordi Mas i Hernandez <jordi@ximian.com>
12028         * DataGrid.cs: Adds support for vertical scrolling using the mousewheel
12030 2005-10-21  Jordi Mas i Hernandez <jordi@ximian.com>
12032         * Binding.cs: No PushData/PullData if there is no binding (fixes crash)
12034 2005-10-21  Jordi Mas i Hernandez <jordi@ximian.com>
12036         * DataGridDrawingLogic.cs: Fixes column hit calcultation
12037         * DataGridColumnStyle.cs: Remove debug message
12039 2005-10-20  Jackson Harper  <jackson@ximian.com>
12041         * TreeView.cs: We can always get input keys regardless of whether
12042         or not editing is enabled. They are used for navigation.
12044 2005-10-20  Jackson Harper  <jackson@ximian.com>
12046         * TreeNode.cs: Use the viewport rect for determining if a node
12047         needs to be moved for visibility. Don't use Begin/End edit. This
12048         calls a full refresh when its done.
12049         * TreeView.cs: New SetBottom works correctly.  Make the viewport
12050         rect property internal so the treenodes can see it. When clicking
12051         on a node we need to ensure that its visible because it might just
12052         be partly visible when clicked.
12054 2005-10-20  Jackson Harper  <jackson@ximian.com>
12056         * TreeNodeCollection.cs: Remove debug code.
12058 2005-10-20  Jordi Mas i Hernandez <jordi@ximian.com>
12060         * Datagrid.cs: Implements column sorting in Datagrid
12061         * DataGridColumnStyle.cs: Implements column sorting in Datagrid
12063 2005-10-20  Jackson Harper  <jackson@ximian.com>
12065         * TreeNodeCollection.cs: Remove items properly. Update the correct
12066         area after removing them.
12068 2005-10-20  Jordi Mas i Hernandez <jordi@ximian.com>
12070         * Datagrid.cs: Should not call base.OnPaintBackground
12072 2005-10-20  Peter Dennis Bartok  <pbartok@novell.com>
12074         * XplatUIX11.cs (GetMessage):
12075           - Now properly calculates NC_xBUTTONDOWN coordinates off the whole
12076             window instead of client window
12077           - Now properly calculates NC_xBUTTONUP message coordinates
12078           - ScreenToMenu now properly calculates it's coordinates of whole 
12079             window, since menus are in the whole window, not in the client
12080             window
12081           - Added WholeToScreen coordinate translation method
12083 2005-10-20  Peter Dennis Bartok  <pbartok@novell.com> 
12085         * XplatUIX11.cs (GetMessage): Don't return in situations where we don't
12086           want to return a message, loop back to the beginning of the function
12087           and grab the next real message to process instead.
12089 2005-10-20  Peter Dennis Bartok  <pbartok@novell.com>
12091         * Splitter.cs: Properly set limits if no filler control is used
12093 2005-10-19  Jackson Harper  <jackson@ximian.com>
12095         * ColorDialog.cs: Don't show the help button if it is not enabled
12096         instead of disabling it (this is what MS does). Don't create the
12097         panel until the dialog is run, otherwise the vars (such as
12098         ShowHelp) are not set yet.
12100 2005-10-19  Jackson Harper  <jackson@ximian.com>
12102         * TreeView.cs: Implement Begin/EndEdit more correctly so refreshes
12103         are reduced when adding nodes.
12104         * TreeNode.cs:
12105         * TreeNodeCollection.cs: Use UpdateNode instead of refreshing the
12106         tree.
12107         
12108 2005-10-19  Jackson Harper  <jackson@ximian.com>
12110         * FolderBrowserDialog.cs: End editing our treeview so the window
12111         actually gets refreshed.
12113 2005-10-18  Peter Dennis Bartok  <pbartok@novell.com>
12115         * Control.cs: Fixed logic flip on when to call OnPaintBackground. 
12116           Obsoleted handling of WM_ERASEBKGND, now always draws our background
12117           inside of WM_PAINT
12119 2005-10-18  Jordi Mas i Hernandez <jordi@ximian.com>
12121         * MenuAPI.cs: Returns after Hidding window
12122         * XplatUIX11.cs: Added TODO found while debugging menu issues
12124 2005-10-18  Peter Dennis Bartok  <pbartok@novell.com>
12126         * XplatUIX11.cs: Do not re-map the whole window when it's size
12127           becomes non-zero unless it's supposed to be actually visible
12129 2005-10-18  Jackson Harper  <jackson@ximian.com>
12131         * TreeView.cs: We don't need to keep a count anymore.
12132         * TreeNodeCollection.cs: Fix off by one in RemoveAt, Insert can
12133         use the Grow method.
12135 2005-10-18  Jackson Harper  <jackson@ximian.com>
12137         * TreeNodeCollection.cs: Insert is not supported on arrays, so
12138         implement it manually here.
12140 2005-10-18  Jackson Harper  <jackson@ximian.com>
12142         * ImageList.cs: Dont kill the list when the colour depth is
12143         changed, just change the colour depth of all the images.
12144         - Same goes for setting the image size. Just resize them all
12145         instead of killing the list softly.
12147 2005-10-18  Jackson Harper  <jackson@ximian.com>
12149         * Control.cs: Don't invalidate empty rectangles.
12151 2005-10-18  Jordi Mas i Hernandez <jordi@ximian.com>
12153         * ListViewItem.cs:
12154           - Adds checked item to the Checked/Item lists (where empty before)
12155           - Do not add items to the Selected lists if they are already present
12156         * ListView.cs:
12157           - Fixes IsFixedSize, SyncRoot, IsReadOnly in many collections
12158           - When deleting items make sure that we delete them for the Selected
12159           and Checked list also.
12161 2005-10-18  Jordi Mas i Hernandez <jordi@ximian.com>
12163         * Label.cs: Dispose objects no longer used
12164         * ThemeWin32Classic.cs: Dispose objects no longer used
12166 2005-10-18  Jackson Harper  <jackson@ximian.com>
12168         * TabControl.cs: Don't refresh the whole control when the tabs are
12169         scrolled, we just need to refresh the tab area.
12171 2005-10-17  Jackson Harper  <jackson@ximian.com>
12173         * XplatUIX11.cs: Compress code a little bit. Only calculate the
12174         after handle when we need it.
12176 2005-10-17  Peter Dennis Bartok  <pbartok@novell.com>
12178         * Control.cs: When the parent size changes, recalculate anchor 
12179           positions. Partial fix for #76462
12181 2005-10-17  Peter Dennis Bartok  <pbartok@novell.com>
12183         * ThemeWin32Classic.cs: Make sure the picturebox has it's background 
12184           drawn. Fixes #76462
12186 2005-10-17  Jackson Harper  <jackson@ximian.com>
12188         * MonthCalendar.cs: Don't create the numeric up down until our
12189         handle is created. Otherwise our handle is created in the
12190         constructor and we don't know if we are a WS_CHILD or WS_POPUP
12191         yet.
12193 2005-10-17  Jackson Harper  <jackson@ximian.com>
12195         * TreeView.cs: Merge in patch by Rafael Teixeira to align strings
12196         correctly.
12198 2005-10-17  Rafael Teixeira <rafaelteixeirabr@hotmail.com> 
12199         * TreeNode.cs : small logical fix (was using local var instead of field)
12200         
12201 2005-10-17  Jordi Mas i Hernandez <jordi@ximian.com>
12203         * ThemeWin32Classic.cs: Fixes vert/horz scrollbar colours
12205 2005-10-17  Jordi Mas i Hernandez <jordi@ximian.com>
12207         * ThemeWin32Classic.cs: Fixes focus drawing in for non-flat/popup buttons
12209 2005-10-16  Peter Dennis Bartok  <pbartok@novell.com> 
12211         * Control.cs: 
12212           - Re-implemented anchoring code. My first version was really broken.
12213             This fixes bug #76033. Unlike the previous implementation we will
12214             no longer have round errors since all numbers are calculated from
12215             scratch every time. Removed various anchor-related obsolete vars.
12216           - InitLayout no longer causes layout event firing and layout to be 
12217             performed
12219 2005-10-16  Jackson Harper  <jackson@ximian.com>
12221         * Hwnd.cs: Compute invalid area correctly (fixes my last commit
12222         which was broken).
12224 2005-10-16  Jackson Harper  <jackson@ximian.com>
12226         * TabControl.cs: Remove debug code.
12228 2005-10-16  Jackson Harper  <jackson@ximian.com>
12230         * XEventQueue.cs: Increase the default queue size (very simple
12231         apps needed to grow the queue).
12232         * Hwnd.cs: No finalizer so we don't need to suppress
12233         finalization. Compute the invalid area manually so a new rectangle
12234         does not newto be created.
12235         * ScrollableControl.cs: Don't set any params (otherwise visibility
12236         isn't set correctly).
12237         * MdiChildContext.cs: New constructor takes the mdi parent so it
12238         doesn't have to be computed and avoids a crash on windows. Draw
12239         the window icon properly, and allow the text to be seen.
12240         * Form.cs: Use new MdiChildContext constructor. Make sure the
12241         child context isn't null in wndproc.
12242         * TabControl.cs: Don't set focus, this is muddling keyboard
12243         behavoir. Expand the tab rows when a window size increase will
12244         allow extra tabs to be seen. Don't allow tabs smaller than the
12245         width of a window to be scrolled out of view.
12246         * TreeNode.cs:
12247         * TreeView.cs: Use measure string to calculate a nodes width, the
12248         width is cached and only updated when the text or the font is
12249         changed. Don't check for expand/collapse clicks on the first level
12250         nodes if root lines are disabled.
12251         
12252 2005-10-16  Ritvik Mayank  <mritvik@novell.com>
12254         * TextBoxBase.cs: Fixes #76352 (passing tab key in a multiline textbox)
12256 2005-10-16  Jordi Mas i Hernandez <jordi@ximian.com>
12258         * DataGridBoolColumn.cs: fixes warning
12260 2005-10-16  Jordi Mas i Hernandez <jordi@ximian.com>
12262         * ControlPaint.cs: Fixes methods Dark, DarkDark, Light, LightLight
12263         to match more to match more precisely the MS Net behavior
12265 2005-10-13  Peter Dennis Bartok  <pbartok@novell.com> 
12267         * Hwnd.cs: Added field to track if window is mapped
12268         * XplatUIX11.cs: 
12269           - Unmap windows if they become 0-size, re-map when 
12270             they are >0 again; fixes #76035
12271           - Re-set our error handler after initializing X11Desktop
12272             to override any error handlers Gtk or whatever was called
12273             may have set.
12275 2005-10-13  Peter Dennis Bartok  <pbartok@novell.com> 
12277         * CheckedListBox.cs: Removed unused vars
12278         * ListView.cs: Fixed signatures
12279         * RichTextBox.cs: Removed unused vars
12280         * TextBoxBase.cs: Removed unused vars
12281         * XplatUIWin32.cs: Removed unused vars
12282         * XplatUIX11.cs: Removed unused vars
12283         * XplatUI.cs: Updated version and date to latest published
12285 2005-10-13  Peter Dennis Bartok  <pbartok@novell.com>
12287         * Cursor.cs: Added private .ctor to work around a bug in
12288           resourceset (Thanks to Geoff Norton for the help on this)
12289         * SplitterEventArgs.cs: Made fields accessible so we don't
12290           waste boatloads of objects and can reuse the same one
12291           in Splitter
12292         * XplatUIWin32.cs(DrawReversibleLine): Now also considers
12293           any captions and borders when generating screen coordinates
12294         * Splitter.cs: Reimplemented control, now fully complete, uses
12295           rubberband drawing, supports and obeys all properties, has
12296           proper cursors
12298 2005-10-13  Miguel de Icaza  <miguel@novell.com>
12300         * Form.cs (Form): Setup default values for autoscale and
12301         autoscale_base_size;  Make these instance variables, not static
12302         variables. 
12304         (OnLoad): on the first load, adjust the size of the form.
12306 2005-10-13  Peter Dennis Bartok  <pbartok@novell.com>
12308         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs: Added 
12309           width argument to DrawReversibleRectangle()
12310         * XplatUIWin32.cs, XplatUIX11.cs: 
12311           - Implemented width for DrawReversibleRectangle()
12312           - Added logic to DrawReversibleRectangle that recognizes a zero
12313             width or height and only draws a line in that situation
12314         
12315 2005-10-12  Peter Dennis Bartok  <pbartok@novell.com> 
12317         * XplatUI.cs, XplatUIDriver.cs: Added GetAutoScaleSize()
12318         * XplatUIOSX.cs: Stubbed GetAutoScaleSize() method
12319         * XplatUIWin32.cs, XplatUIX11.cs: Implemented GetAutoScaleSize()
12320           method (it uses our FosterParent window to get a graphics context)
12322 2005-10-12  Peter Dennis Bartok  <pbartok@novell.com>
12324         * XplatUI.cs, XplatUIDriver.cs: Removed EraseWindowBackground 
12325           and SetWindowBackground methods
12326         * Control.cs:
12327           - Setting proper ControlStyles
12328           - We no longer call XplatUI.SetWindowBackground and XplatUI.
12329             EraseWindowBackground, instead we draw the window background
12330             ourselves in PaintControlBackground. This behaviour is
12331             required to match MS, where, when OnPaintBackground is not
12332             called, the background is not drawn.
12333           - Removed unneeded Refresh() in set_Text
12334         * Hwnd.cs: Dropped the ErasePending support. No longer needed
12335         * XplatUIX11.cs:
12336           - Created DeriveStyles method to translate from CreateParams to
12337             FormBorderStyle and TitleStyle, also handles BorderStyle (which
12338             matches FormBorderStyle enum values)
12339           - Consolidated SetHwndStyles and CalculateWindowRect border/title
12340             style calculations into single DeriveStyles method
12341           - Fixed CreateWindow to (finally) use Gravity. This prevents X11
12342             from redrawing the whole window on any resize or expose.
12343           - Fixed CreateWindow usage of SetWindowValuemask. Before not
12344             all styles were applied to our whole/client window appropriately
12345           - Removed EraseWindowBackground() and SetWindowBackground() methods
12346           - Removed handling of WM_ERASEBKGND message from DefWndProc, we
12347             no longer clear/redraw the background through X
12348           - Removed handling of erase_pending bit, we have no use for it (or
12349             so it seems)
12350         * XplatUIOSX.cs:
12351           - Removed generation and handling of WM_ERASEBKGND message
12352           - Removed EraseWindowBackground() and SetWindowBackground() methods
12353           - Removed handling of hwnd.ErasePending flag
12354         * XplatUIWin32.cs:
12355           - Removed EraseWindowBackground() and SetWindowBackground() methods
12356           - We no longer call EraseWindowBackground on PaintEventStart, we 
12357             ignore the fErase flag, erasing is handled in Control in the
12358             background handler
12359         * Button.cs, GroupBox.cs, Label.cs, CheckBox.cs, ProgressBar.cs,
12360           LinkLabel.cs, ListControl.cs, TabPage.cs, UpDownBase.cs,
12361           TextBoxBase.cs, TextBox.cs, ListView.cs, ButtonBase.cs, 
12362           CheckedListBox.cs, MdiClient.cs, Panel.cs, DataGrid.cs, 
12363           DataGridTextBox.cs, ScrollBar.cs, ListBox.cs, TrackBar.cs, 
12364           TabControl.cs, ScrollableControl.cs, ToolBar.cs, PictureBox.cs,
12365           DateTimePicker.cs, StatusBar.cs, MonthCalendar.cs: Setting proper ControlStyles
12367 2005-10-12  Jonathan Chambers <jonathan.chambers@ansys.com>
12369         * PropertyGrids.cs: Get sub properties
12370         * PropertyGridView.cs: Fix drawing code
12372 2005-10-11  Jordi Mas i Hernandez <jordi@ximian.com>
12374         * ListBox.cs: Fixes 76383
12376 2005-10-11  Jordi Mas i Hernandez <jordi@ximian.com>
12378         * DataGridTextBoxColumn.cs: Sets location and size before attachment
12379         * ThemeWin32Classic.cs: Fixes border drawing and calculations
12380         * DataGridDrawingLogic.cs: Fixes border drawing and calculations
12383 2005-10-11  Jordi Mas i Hernandez <jordi@ximian.com>
12385         * ComboBox.cs: Fixes border drawing
12387 2005-10-10  Miguel de Icaza  <miguel@novell.com>
12389         * MimeIcon.cs: Ignore errors if the file can not be read.
12391 2005-10-11  Jordi Mas i Hernandez <jordi@ximian.com>
12393         * Theme.cs, ThemeWin32Classic.cs, ListBox.cs:
12394          - Fixed border calculations
12395          - Fixed horizontal scrolling in single column listboxes
12396          - Fixed drawing issues
12398 2005-10-10  Peter Dennis Bartok  <pbartok@novell.com>
12400         * XplatUI.cs, XplatUIOSX.cs, XplatUIWin32.cs: Switched from BorderStyle to 
12401           FormBorderStyle enum
12402         * XplatUIX11.cs: Switched BorderStyle to FormBorderStyle, added 
12403           code to determine FormBorderStyles from CreateParams
12404         * Form.cs:
12405           - Fixed bug where we'd set the wrong window styles if we were
12406             not creating an MDI window
12407           - Added call to XplatUI.SetBorderStyle when form borders are set
12408         * Control.cs: Casting BorderStyles to accommodate changed XplatUI APIs
12409         * Hwnd.cs:
12410           - Removed obsolete edge style
12411           - Switched from BorderStyle to FormBorderStyle
12412         
12413 2005-10-10  Jackson Harper  <jackson@ximian.com>
12415         * Form.cs: Use the property to get the window handle instead of
12416         accessing it directly. Prevents a null reference exception.
12418 2005-10-10  Jackson Harper  <jackson@ximian.com>
12420         * TreeView.cs: Don't adjust the rect given to DrawString now that
12421         our libgdiplus draws correctly.
12423 2005-10-08  Jackson Harper  <jackson@ximian.com>
12425         * TreeView.cs: Don't try to find the clicked on node if there are
12426         no nodes in the tree.
12428 2005-10-08  Alexander Olk  <alex.olk@googlemail.com>
12430         * RichTextBox.cs:
12432           restore
12434 2005-10-08  Alexander Olk  <alex.olk@googlemail.com>
12436         * ImageListStreamer.cs, TreeView.cs, UpDownBase.cs, RichTextBox.cs,
12437           ColorDialog.cs, TextControl.cs, Panel.cs, MdiChildContext.cs,
12438           ErrorProvider.cs:
12439           Use ResPool for brushes and dispose System.Drawing objects that
12440           are not used anymore.
12442 2005-10-07  Jackson Harper  <jackson@ximian.com>
12444         * MdiChildContext.cs: Use the new borders instead of drawing them
12445         ourselves.
12447 2005-10-06  Jordi Mas i Hernandez <jordi@ximian.com>
12449         * Calling UpdateBounds after changing the window's BorderStyle 
12450         since the style can change the ClientSize
12452 2005-10-06  Peter Dennis Bartok  <pbartok@novell.com>
12454         * Control.cs: Made PaintControlBackground virtual
12455         * Panel.cs: Overriding PaintControlBackground instead of using paint
12456           event; paint event method was interfering with 'real' users of the
12457           event.
12459 2005-10-06  Jordi Mas i Hernandez <jordi@ximian.com>
12461         * ThemeWin32Classic.cs: remove border drawing since it is handled
12462         by the base control class now and was causing double border drawing.
12464 2005-10-06  Peter Dennis Bartok  <pbartok@novell.com>
12466         * Panel.cs: Redraw our background on paint. Not a pretty solution,
12467           but it does seem to match MS behaviour. This fixes bug #75324
12469 2005-10-06  Peter Dennis Bartok  <pbartok@novell.com>
12471         * XplatUIX11.cs: A better DrawReversibleRectangle version, however
12472           somewhat hackish looking
12474 2005-10-06  Peter Dennis Bartok  <pbartok@novell.com> 
12476         * TextBoxBase.cs:
12477           - We now accept Enter even if AcceptEnter is false, if the containing
12478             form does not have an AcceptButton configured (fixes bug #76355)
12479           - Calculations are now fixed to no longer use Width/Height, but
12480             ClientSize.Width/Height, since we now support borders (this was
12481             a result of fixing borders and therefore bug #76166)
12482           - We no longer show the horizontal scrollbar if TextBox.WordWrap is 
12483             true (fixes bug #76354)
12484         
12485 2005-10-06  Peter Dennis Bartok  <pbartok@novell.com>
12487         * Control.cs: 
12488           - Defaulting BorderStyle and setting it in XplatUI when our window 
12489             is created
12490           - Added enum check to InternalBorderStyle setter
12491         * XplatUIX11.cs: 
12492           - Added drawing of window borders
12493           - Now properly calculates WM decorations offset for toplevel 
12494             windows (fixes bug #74763)
12495         * XplatUIWin32.cs: 
12496           - Implemented BorderStyles for windows (we're letting win32 draw 
12497             the border for us)
12498           - Fixed the signature for SetWindowLong
12499         * PictureBox.cs, DataGrid.cs, TextBoxBase.cs, ToolBar.cs, Panel.cs,
12500           ListBox.cs, Label.cs: Now uses Control.InternalBorderStyle for 
12501           setting borders
12502         * UpDownBase.cs: Remove drawing of borders, this is handled by
12503           the driver, outside the client area
12504         * ListView.cs: Removed bogus border calculations. The control should
12505           be oblivious to borders, since those are not part of the client
12506           area. 
12507         * X11DesktopColors.cs: Commented out (currently) unneeded variables
12508         * ThemeWin32Classic.cs: Removed border calculations from ListView 
12509           drawing code
12511 2005-10-06  Jackson Harper  <jackson@ximian.com>
12513         * MdiChildContext.cs: Clear out the old virtual position remove
12514         all the unneeded calls to CreateGraphics.
12516 2005-10-06  Peter Dennis Bartok  <pbartok@novell.com> 
12518         * TextControl.cs: Use proper color for highlighted text; fixes #76350
12520 2005-10-06  Peter Dennis Bartok  <pbartok@novell.com> 
12522         * Form.cs: 
12523           - Added loading and setting of our new default icon
12524           - Only set icon if window is already created
12526 2005-10-06  Peter Dennis Bartok  <pbartok@novell.com>
12528         * Label.cs:
12529           - Do not explicitly set the foreground and background colors, to
12530             allow inheriting from parents (fixes #76302)
12531           - Use Control's InternalBorderStyle property to deal with borders
12533 2005-10-06  Jackson Harper  <jackson@ximian.com>
12535         * MdiChildContext.cs: Use the new xplatui function to draw a
12536         reversible rect.
12538 2005-10-06  Jackson Harper  <jackson@ximian.com>
12540         * Form.cs: Add the parent before creating the child context cause
12541         we need the parent when setting up the child.
12543 2005-10-06  Jackson Harper  <jackson@ximian.com>
12545         * FolderBrowserDialog.cs: redo the tree population code so a
12546         second thread isn't used. Should be a lot faster and more stable
12547         now.
12549 2005-10-05  Jackson Harper  <jackson@ximian.com>
12551         * TreeView.cs: There are no expand/collapse boxes if the node has
12552         no children.
12554 2005-10-05  Jackson Harper  <jackson@ximian.com>
12556         * X11DesktopColors.cs: Get menu colours for the gtk theme.
12558 2005-10-05  Alexander Olk  <alex.olk@googlemail.com>
12560         * FileDialog.cs: Fix InitialDirectory
12562 2005-10-05  Jordi Mas i Hernandez <jordi@ximian.com>
12564         * ComboBox.cs:
12565                 - Fixes changing between styles
12566                 - Fixes simple mode
12567                 - Fixes last item crashing when navigating with keyboard
12569 2005-10-05  Jordi Mas i Hernandez <jordi@ximian.com>
12571         * LinkLabel.cs: Related to 76045. Stops the LinkLabel been drawn as a Label
12573 2005-10-05  Jackson Harper  <jackson@ximian.com>
12575         * TreeView.cs: If updating the root node do a full refresh.
12576         * TreeNode.cs: The root node should be expanded by default. Also
12577         added a utility prop to tell if we are the root node.
12578         * TreeNodeCollection.cs: Only refresh if the node we are being
12579         added to is expanded. Also added a comment on a potential
12580         optimization.
12581         
12582 2005-10-04  Peter Dennis Bartok  <pbartok@novell.com>
12584         * Cursor.cs, Hwnd.cs: Added call to GC.SuppressFinalize() 
12585           in dispose method. Fixes #76330
12587 2005-10-04  Jordi Mas i Hernandez <jordi@ximian.com>
12589         * ListView.cs, ThemeWin32Classic.cs, ListViewItem.cs:
12591                 - Implements vertical and horizontal scrolling using XplatUI
12592                 - Fixes keyboard navagation
12593                 - Fixes EnsureVisible
12594                 - Drawing fixes
12595                 - Handles and draws focus properly
12598 2005-10-04  Kornél Pál  <kornelpal@hotmail.com>
12600         * ImageList.cs: Use upper case initials for internal fields. ImageStream:
12601           Create handle. NET_2_0: Destroy handle when value is null.
12603 2005-10-03  Jackson Harper  <jackson@ximian.com>
12605         * ScrollBar.cs: My last scrollbar patch was broken. This is a
12606         revert and a new patch to prevent the thumb from refreshing so
12607         much.
12609 2005-10-02  Jackson Harper  <jackson@ximian.com>
12611         * ScrollBar.cs: Don't update position if it hasn't actually
12612         changed. This occurs when you hold down the increment/decrement
12613         buttons and the thumb gets to the max/min.
12615 2005-10-01  Jackson Harper  <jackson@ximian.com>
12617         * Form.cs:
12618         * MdiChildContext.cs:
12619         * MdiClient.cs: Implement ActiveMdiChild in Form.
12621 2005-10-01  Jordi Mas i Hernandez <jordi@ximian.com>
12623         * ComboBox.cs: Include ComboBoxEdit flag for the edit item
12625 2005-10-01  Peter Dennis Bartok  <pbartok@novell.com>
12627         * X11DesktopColors.cs: Bow out gracefully if the Gtk libs cannot
12628           be found
12630 2005-09-30  Jackson Harper  <jackson@ximian.com>
12632         * ListBox.cs: Don't do a full refresh unless some data has
12633         actually changed.
12635 2005-09-30  Jackson Harper  <jackson@ximian.com>
12637         * TreeView.cs: Make sure that the checkboxes size is factored in
12638         even when not visible.
12640 2005-09-30  Peter Dennis Bartok  <pbartok@novell.com> 
12642         * FileDialog.cs: Fix Jordi's build break
12644 2005-09-30  Jordi Mas i Hernandez <jordi@ximian.com>
12646         * FileDialog.cs: 
12647                 - Use standard the Windows colours for the combobox as espected
12648                 - Dispose objects that use resouces when no longer need them
12650 2005-09-30  Peter Dennis Bartok  <pbartok@novell.com> 
12652         * X11DesktopColors.cs: Initial incomplete implementation
12653         * XplatUIX11.cs: Added call to initialize X11DesktopColors
12655 2005-09-30  Peter Dennis Bartok  <pbartok@novell.com>
12657         * Theme.cs: 
12658           - Switched Theme color names to match the names defined in 
12659             System.Drawing.KnownColors. Life's hard enough, no need to make 
12660             it harder.
12661           - Added setters to all theme color properties so themes can set
12662             their color schemes. The setters also propagate the color changes
12663             to System.Drawing.KnownColors via reflection
12664         * ControlPaint.cs,  Label.cs, TextControl.cs, ToolTip.cs, ThemeNice.cs,
12665           ComboBox.cs, MdiChildContext.cs, TextBoxBase.cs, DateTimePicker.cs
12666           DataGridColumnStyle.cs, MonthCalendar.cs, TreeView.cs: Updated to
12667           use the new, more logical theme color names
12668         * XplatUIWin32.cs: Updated the GetSysColorIndex enum to include new
12669           post-NT colors
12670         * ThemeWin32Classic.cs:
12671           - Removed code to set the old classic Windows colors. Instead it
12672             now relies on the colors returned by System.Drawing.KnownColors
12673             which will be either modern static colors (Unix) or colors
12674             read from the user's configuration (Win32)
12675           - Updated to use the new, more logical theme color names
12676           - Switched DataGrid drawing code to use only Theme colors instead of
12677             a mix of System.Drawing.KnownColors and Theme colors
12678           - DrawFrameControl(): Removed code that fills the button area, the
12679             fill would overwrite any previous fill done by a control. This
12680             fixes bug #75338 
12681           - Added DrawReversibleRectangle() stub
12682         * ScrollableControl.cs: Set visible state to false when scrollbars
12683           are removed (pdn fix)
12684         * XplatUI.cs, XplatUIOSX.cs, XplatUIDriver.cs: Added 
12685           DrawReversibleRectangle() method to allow drawing primitive 
12686           'rubber bands'
12687         * XplatUIX11.cs: Implemented DrawReversibleRectangle()
12689 2005-09-30  Kornél Pál  <kornelpal@hotmail.com>
12691         * ImageList.cs: Add(Icon): Create handle.
12693 2005-09-30  Jordi Mas i Hernandez <jordi@ximian.com>
12695         * ListView.cs:
12696         * ThemeWin32Classic.cs:
12697                 - Fixes detail mode
12698                 - Sets clippings
12699                 - Issues with drawing
12701 2005-09-30  Kornél Pál  <kornelpal@hotmail.com>
12703         * ImageList.cs: Moved RecreateHandle back to ImageList as event
12704           source has to be the ImageList.
12706 2005-09-30  Kornél Pál  <kornelpal@hotmail.com>
12708         * ImageList.cs: Add(Icon): Use Graphics.DrawIcon instead of Icon.ToBitmap.
12710 2005-09-30  Kornél Pál  <kornelpal@hotmail.com>
12712         * ImageList.cs: ReduceColorDepth: Clean up pointer operations.
12714 2005-09-30  Kornél Pál  <kornelpal@hotmail.com>
12716         * ImageList.cs: ImageCollection: Removed owner field as it is no more used.
12718 2005-09-29  Jonathan Chambers <jonathan.chambers@ansys.com>
12719         * GridItem.cs: Fixed TODOs
12720         * GridItemCollection.cs: Added ICollection interface
12722 2005-09-30  Kornél Pál  <kornelpal@hotmail.com>
12724         * ImageList.cs: Resize icons when needed.
12726 2005-09-29  Jordi Mas i Hernandez <jordi@ximian.com>
12728         * ListViewItem.cs
12729                 - Fixes GetBounds and returns on screen rects
12730         * ListView.cs:
12731                 - Fixes vertical and horzintal scrolling of items
12732         * ThemeWin32Classic.cs:
12733                 - Fixes drawing
12734                 
12735 2005-09-29  Raja R Harinath  <harinath@gmail.com>
12737         * ImageList.cs (ImageStream) [NET_2_0]: Reflect re-factoring.
12739 2005-09-29  Kornél Pál  <kornelpal@hotmail.com>
12741         * ImageList.cs: Added comments about handle creation. Moved Handle,
12742           HandleCreated and OnRecreateHandle implementations to ImageCollection.
12743           Handle is created in Add methods.
12745 2005-09-28  Jordi Mas i Hernandez <jordi@ximian.com>
12746          
12747         * DataGridDrawingLogic.cs: 
12748                 - Takes rows into account on Colum calculations
12749                 - Returns the column when clickig
12750         * DataGrid.cs:
12751                 - Fixes default HitTestInfo values
12752                 - Fixes HitTestInfo.ToString
12753                 - Fixes ResetBackColor          
12754         
12755 2005-09-28  Jackson Harper  <jackson@ximian.com>
12757         * MdiChildContext.cs: Obey rules for fixed sized windows (no
12758         sizing or cursor changes). Also added some temp code to draw the
12759         titlebars text (Makes dev a little easier).
12761 2005-09-28  Kornél Pál  <kornelpal@hotmail.com>
12763         * ImageList.cs: AddStrip: Throw ArgumentException when Image is not a Bitmap.
12765 2005-09-28  Jordi Mas i Hernandez <jordi@ximian.com>
12766          
12767         * ListBox.cs: Fixes bug 76253
12769 2005-09-28  Kornél Pál  <kornelpal@hotmail.com>
12771         * ImageList.cs: Added comments about the current implementation. Added
12772           ReduceColorDepth, IndexedColorDepths and GetNearestColor to can use
12773           Format32bppArgb to preserve transparency and can use Graphics.FromImage
12774           while using the specified ColorDepth. ReduceColorDepth uses unsafe code
12775           with Bitmap.LockBits for better performance. Revised the whole file to
12776           match MS.NET behaviour and provide better performance. Non-public
12777           interface members are calling public members even when they throw
12778           NotSupportedException for better maintainability. Moved ColorDepth,
12779           ImageSize, ImageStream and TransparentColor implementations to
12780           ImageCollection for better performance as these properties are not used
12781           by ImageList.
12782         * ImageListStreamer.cs: Added a new internal constructor that takes an
12783           ImageList.ImageCollection and serializes Images based on
12784           ImageCollection.ToArray(). Renamed ImageColorDepth to ColorDepth to
12785           match ImageList property name.
12787 2005-09-28  Kazuki Oikawa <kazuki@panicode.com>
12789         * ListBox.cs: Fixes IndexFromPoint for last item
12791 2005-09-27  Jackson Harper  <jackson@ximian.com>
12793         * Form.cs: Set the position of new mdi children correctly.
12795 2005-09-27  Jackson Harper  <jackson@ximian.com>
12797         * MdiClient.cs: New mdi children need to be added to the back of
12798         the controls collection so the zorder is set correctly. Also add a
12799         count of all the child windows that have been created.
12801 2005-09-27  Jackson Harper  <jackson@ximian.com>
12803         * Form.cs (CreateParams): Setup MDI forms correctly.
12805 2005-09-27  Jackson Harper  <jackson@ximian.com>
12807         * MdiChildContext.cs:
12808         * MonthCalendar.cs:
12809         * UpDownBase.cs:
12810         * ListBox.cs:
12811         * ListView.cs:
12812         * TextBoxBase.cs:
12813         * TreeView.cs:
12814         * ScrollableControl.cs:
12815         * ComboBox.cs: Add implicit controls using the new implict control
12816         functionality in ControlCollection. Also try to block multiple
12817         control add in a suspend/resume layout to save some cycles.
12818         
12819 2005-09-27  Jackson Harper  <jackson@ximian.com>
12821         * Control.cs: Add functionality to the controls collection to add
12822         'implicit controls' these are controls that are created by the
12823         containing control but should not be exposed to the user. Such as
12824         scrollbars in the treeview.
12825         * Form.cs: The list var of the ControlsCollection is no longer
12826         available because of the potential of implicit controls getting
12827         ignored by someone accessing the list directly.
12829 2005-09-26  Peter Dennis Bartok  <pbartok@novell.com>
12831         * Control.cs: Fixed SetChildIndex; it no longer causes a child to
12832           loose it's parent. (Fixed bug introduced in r49103 when we added
12833           setting the child parent to null on Remove)
12835 2005-09-26  Gert Driesen  <drieseng@users.sourceforge.net>
12837         * DataGridBoolColumn.cs: Marked CheckState private to fix public API.
12838         * Splitter.cs: Added missing attributes for BorderStyle property.
12839         * TextBoxBase.cs: Marked Calculate* methods internal.
12840         * TextBox.cs: Fixed DefaultValue for PasswordChar property to match
12841         MS.NET.
12843 2005-09-26  Jordi Mas i Hernandez <jordi@ximian.com>
12844          
12845         * ListBox.cs: Fixes navigation to the last item in multicolumn lists
12847 2005-09-25  Jackson Harper  <jackson@ximian.com>
12849         * TreeView.cs: Update the node bounds correctly regardless of
12850         whether the node is visible.
12852 2005-09-25  Jackson Harper  <jackson@ximian.com>
12854         * ImageList.cs: Don't dispose the image after it is added to the
12855         image list. Only reformat images that need to be resized.
12857 2005-09-25  Jackson Harper  <jackson@ximian.com>
12859         * ImageList.cs: Don't set the format when changing the image.
12861 2005-09-25  Jackson Harper  <jackson@ximian.com>
12863         * TreeView.cs: We can't just assume the node has a font. Use the
12864         treeviews font if no node font is available.
12866 2005-09-25  Jackson Harper  <jackson@ximian.com>
12868         * TreeView.cs: Allow the scrollbars to be reset with negative
12869         values.
12870         - Don't add scrollbars to negative sized windows.
12872 2005-09-23  Jackson Harper  <jackson@ximian.com>
12874         * XplatUIX11.cs: Update to use Mono.Posix.Native instead of plain
12875         old Mono.Posix. Also remove some stray code that shouldn't have
12876         been committed.
12878 2005-09-23  Jackson Harper  <jackson@ximian.com>
12880         * TreeView.cs: Attempt at proper sizing of the horizontal
12881         scrollbar. Also don't resize the scrollbars unless they are
12882         visible.
12884 2005-09-23  Jackson Harper  <jackson@ximian.com>
12886         * TreeView.cs: We don't need to expand the invalid area when the
12887         selection changes, as this is all drawn in the node's bounding
12888         box. The area needs to be expanded (previous typo was contracting
12889         it) when the focus rect moves.
12891 2005-09-23  Jackson Harper  <jackson@ximian.com>
12893         * TreeView.cs: Display the selection box under the correct
12894         circumstances. We were rendering white text with no selection box
12895         before.
12897 2005-09-23  Peter Dennis Bartok  <pbartok@novell.com>
12899         * TextControl.cs(Split): Now updates selection start/end if it points 
12900           into a line that's being split. Fixes a FIXME and bug #75258
12902 2005-09-23  Jackson Harper  <jackson@ximian.com>
12904         * Binding.cs:
12905         * ListControl.cs: Don't use the path when retrieving binding
12906         managers from the binding context. My bat sense tells me that the
12907         path is only used on insertion.
12909 2005-09-22  Jackson Harper  <jackson@ximian.com>
12911         * Splitter.cs: Set the cursor an easier way. (Thanks peter).
12913 2005-09-22  Jackson Harper  <jackson@ximian.com>
12915         * Splitter.cs: There are special cursors used for splitting.
12916         * XplatUIX11.cs: The VSplit and HSplit cursors were backwards.
12918 2005-09-22  Jackson Harper  <jackson@ximian.com>
12920         * Splitter.cs: Change the cursor appropriately when the splitter
12921         is moused over, so the user actually knows there is a splitter
12922         there.
12924 2005-09-22 Hisham Mardam Bey <hisham.mardambey@gmail.com>
12926        * Label.cs : Fix ToString method to give same output as MS.NET
12928 2005-09-22  Jackson Harper  <jackson@ximian.com>
12930         * TreeView.cs: Create the scrollbars when the handle is created
12931         and add them right away, just make them invisble. Also account for
12932         the window being shrunk vertically to the point that the vert
12933         scrollbar needs to be added.
12934         - Remove some 0.5 adjustments to get around anti aliasing issues.
12935         
12936 2005-09-22  Jordi Mas i Hernandez <jordi@ximian.com>
12937          
12938         * MainMenu.cs: Fixes default value
12939         * MenuItem.cs: Fixes default value
12941 2005-09-22  Kazuki Oikawa  <kazuki@panicode.com>
12943         * AsyncMethodResult.cs: Fixes Control.Invoke is blocked infinitely.
12945 2005-09-21  Jackson Harper  <jackson@ximian.com>
12947         * Control.cs: Don't try to set the border style on the window if
12948         it hasn't been created. When the window is created the border
12949         style will be used.
12951 2005-09-21  Peter Dennis Bartok  <pbartok@novell.com>
12953         * Control.cs (Update): Don't call XplatUI if we don't have a
12954           window handle yet
12956 2005-09-21  Peter Dennis Bartok  <pbartok@novell.com> 
12958         * ContainerControl.cs: Instead of throwing an exception, print
12959           a one-time warning about Validate not being implemented
12960         * XplatUIWin32.cs: Removed debug output
12962 2005-09-21  Peter Dennis Bartok  <pbartok@novell.com> 
12964         * Control.cs: Only set XplatUI background if we expect the windowing
12965           system to handle the background. This stops controls that draw their
12966           own background from flickering
12968         * XplatUIX11.cs: Support custom visuals and colormaps for window 
12969           creation. This allows, amongst other things, using MWF X11 windows 
12970           with OpenGL.
12972 2005-09-21  Peter Dennis Bartok  <pbartok@novell.com>
12974         * OpenFileDialog.cs, ContentsResizedEventArgs.cs, LibSupport.cs, GridItem.cs,
12975           CursorConverter.cs, SplitterEventHandler.cs, PropertyGridTextBox.cs,
12976           GridTablesFactory.cs, MethodInvoker.cs, AccessibleEvents.cs,
12977           SplitterEventArgs.cs, XplatUI.cs, Mime.cs, PropertySort.cs,
12978           TreeViewCancelEventHandler.cs, Form.cs, PropertyGridCommands.cs,
12979           IDataGridEditingService.cs, DateBoldEventHandler.cs, Label.cs,
12980           KeyboardLayouts.cs, TextControl.cs, ProgressBar.cs, ToolTip.cs,
12981           RadioButton.cs, OSFeature.cs, LinkLabel.cs, ColorDialog.cs,
12982           ThemeNice.cs, ErrorIconAlignment.cs, TreeNode.cs, MimeGenerated.cs,
12983           ComboBox.cs, DataGridTextBoxColumn.cs, ArrangeStartingPosition.cs,
12984           GridColumnStylesCollection.cs, 
12985           IDataGridColumnStyleEditingNotificationService.cs,
12986           PropertyGrid.cs, IFeatureSupport.cs, ICommandExecutor.cs,
12987           MdiLayout.cs, GridEntry.cs, ControlBindingsCollection.cs,
12988           GridTableStylesCollection.cs, TreeViewCancelEventArgs.cs, 
12989           TreeNodeCollection.cs, AmbientProperties.cs, 
12990           RichTextBoxSelectionAttribute.cs, RichTextBoxSelectionTypes.cs,
12991           DataObject.cs, ErrorProvider.cs, Splitter.cs,
12992           DataGridLineStyle.cs, Shortcut.cs, Control.cs,
12993           FontDialog.cs, SecurityIDType.cs, GridItemType.cs,
12994           BindingMemberInfo.cs, DataGridCell.cs, MdiChildContext.cs,
12995           IRootGridEntry.cs, PropertyGridView.cs, DataGridParentRowsLabelStyle.cs,
12996           FolderBrowserDialog.cs, OpacityConverter.cs, HelpProvider.cs,
12997           IComponentEditorPageSite.cs, DataGridTableStyle.cs, NavigateEventArgs.cs,
12998           NotifyIcon.cs, ContentsResizedEventHandler.cs, MenuItem.cs,
12999           PropertyTabChangedEventHandler.cs, TextBoxBase.cs, OpenTreeNodeEnumerator.cs,
13000           SelectionMode.cs, TextBox.cs, ListBindingConverter.cs,
13001           FileDialog.cs, KeysConverter.cs, DomainUpDown.cs,
13002           DataFormats.cs, SaveFileDialog.cs, GridItemCollection.cs,
13003           ArrangeDirection.cs, FeatureSupport.cs, SelectionRangeConverter.cs,
13004           RichTextBoxScrollBars.cs, NodeLabelEditEventHandler.cs, TreeNodeConverter.cs,
13005           MimeIcon.cs, X11Structs.cs, PropertyGridEntry.cs,
13006           ImageList.cs, ThemeWin32Classic.cs, X11Keyboard.cs,
13007           CheckedListBox.cs, HelpNavigator.cs, DateTimePickerFormat.cs,
13008           MdiClient.cs, DataGridDrawingLogic.cs, DataGridBoolColumn.cs,
13009           NodeLabelEditEventArgs.cs, Screen.cs, PropertyManager.cs,
13010           ComponentModel.cs, PropertiesTab.cs, CurrencyManager.cs,
13011           SizeGrip.cs, DateBoldEventArgs.cs, X11Dnd.cs, Panel.cs,
13012           Hwnd.cs, OSXStructs.cs, DrawMode.cs, XplatUIDriver.cs,
13013           RichTextBox.cs, PropertyTabChangedEventArgs.cs, CommonDialog.cs,
13014           DataGrid.cs, XplatUIX11.cs, RichTextBoxStreamType.cs, Win32DnD.cs,
13015           ErrorBlinkStyle.cs, TreeViewEventHandler.cs,
13016           PropertyValueChangedEventHandler.cs, IFileReaderService.cs,
13017           DataGridTextBox.cs, SelectedGridItemChangedEventArgs.cs, ScrollBar.cs,
13018           ListBox.cs, TreeViewAction.cs, Help.cs, TrackBar.cs,
13019           AxHost.cs, PropertyValueChangedEventArgs.cs, XplatUIOSX.cs,
13020           RichTextBoxFinds.cs, UpDownEventArgs.cs, Cursors.cs,
13021           CategoryGridEntry.cs, RichTextBoxWordPunctuations.cs, DataGridColumnStyle.cs,
13022           SelectedGridItemChangedEventHandler.cs, DateTimePicker.cs, NavigateEventHandler.cs,
13023           Clipboard.cs, UpDownEventHandler.cs, MonthCalendar.cs,
13024           SendKeys.cs, DataGridPreferredColumnWidthTypeConverter.cs, TreeView.cs,
13025           ThreadExceptionDialog.cs, ImageListConverter.cs, XplatUIWin32.cs,
13026           TreeViewEventArgs.cs: Fixed whitespace and set eol-style:native attribute
13028 2005-09-21  Jackson Harper  <jackson@ximian.com>
13030         * TreeNode.cs: Call Before/After Expand not Collapse when
13031         expanding.
13033 2005-09-20  Jackson Harper  <jackson@ximian.com>
13034         
13035         * XplatUIX11.cs: Use the more hand looking hand (in most themes).
13037 2005-09-16  Jordi Mas i Hernandez <jordi@ximian.com>
13038          
13039         * ListViewItem.cs:
13040                 - Fixes bug 76120
13041                 - Fixes proper storing of subitems
13042                 - Fixes not updated items
13044 2005-09-20  Peter Dennis Bartok  <pbartok@novell.com>
13046         * Control.cs, TextBoxBase.cs, TextControl.cs: Don't do certain
13047           things if our window handle isn't created yet. Also disabled 
13048           debug for TextBoxBase
13050 2005-09-20  Peter Dennis Bartok  <pbartok@novell.com> 
13052         * MenuAPI.cs: Remove filtering of events to allow menu usage
13054 2005-09-20  Miguel de Icaza  <miguel@novell.com>
13056         * Cursor.cs: Allow null to be passed to Cursor.Current.
13058 2005-09-20  Alexander Olk  <alex.olk@googlemail.com>
13060         * ThemeWin32Classic.cs:
13061           - Change some private methods/fields to protected virtual so that 
13062             they can be accessed and overriden in derived classes
13063           - First refactoring of some methods. Derived themes now don't 
13064             need to duplicate the complete code from ThemeWin32Classic
13065         * ThemeNice.cs:
13066           - Added nice StatusBar
13067           - Derive from ThemeWin32Classic and not Theme
13068           - Removed duplicate ThemeWin32Classic code
13070 2005-09-20  Miguel de Icaza  <miguel@novell.com>
13072         * Control.cs (ControlCollection.Add): If the value null is passed
13073         the control is ignored. 
13075         Optimize this loop.
13077 2005-09-19  Peter Dennis Bartok  <pbartok@novell.com> 
13079         * MenuAPI.cs: Replaced Application.Run() with a loop that tracks
13080           PostQuitMessage state.
13081         * XplatUIWin32.cs: Removed bogus PostQuitMessage P/Invoke with HWND arg
13083 2005-09-19  Peter Dennis Bartok  <pbartok@novell.com>
13085         * Application.cs: Our constructor will never get called, move 
13086           initialization to fields; fixes bug #75933
13088 2005-09-19 Hisham Mardam Bey <hisham.mardambey@gmail.com>
13090         * FileDialog.cs :
13091                 - Allow files to be selected properly using file name
13092                 combo box.
13093                 - Add ability to change diretory (absolute / relative)
13094                 using file name combo box.
13096 2005-09-16  Jordi Mas i Hernandez <jordi@ximian.com>
13097          
13098         * ListBox.cs: 
13099                 - Fixes Multicolumn listboxes item wrong calculations
13100                 - Allows to click when only one item is in the listbox
13101                 - Fixes crash when no items using keyboard navigation
13103 2005-09-16  Alexander Olk  <alex.olk@googlemail.com>
13105         * ComboBox.cs: Reverted almost everything from the latest patch which
13106           broke ComboBox
13108 2005-09-16  Kazuki Oikawa <kazuki@panicode.com>
13109         
13110         * ToolTip.cs:
13111                 - Fixed #Mtd2 of ToolTipTest.RemoveToolTipTest.
13112         * ComboBox.cs:
13113                 - When DropDownStyle is Simple, it does not show scrollbar 
13114                 to the last item of the list.
13115                 - When DropDownStyle is Simple, it crashed when the list was 
13116                 scrolled down with the down cursor key.
13117                 - Fixed a bug that when DropDownStyle is DropDownList, the 
13118                 selected item was not shown.
13119                 - The position of the selected item was not preserved when 
13120                 the next dropdown happened.
13121         * ThemeWin32Classic.cs:
13122                 - Items were wrapped at the right end.
13123         * CheckedListBox.cs:
13124                 - Fixed Add method
13125         * ListBox.cs:
13126                 - Items should be fully shown.
13127                 - When resizing and vertical scrollbar disappeared, the item 
13128                 of index 0 should be on the top of the list.
13129                 - GetItemRectangle should consider the size of ver. scrollbar
13130         * StatusBar.cs:
13131                 - SizingGrip area should not be allocated when it is not 
13132                 displayed.
13133                 - Now it reflects MinWidth of the containing panel and 
13134                 fixed a crash that happens when its width becomes so small.
13136 2005-09-13  Jordi Mas i Hernandez <jordi@ximian.com>
13138         * CheckedListBox.cs: Fixes bug 76028
13139         * ListBox.cs: Fixes bug 76028
13141 2005-09-13  Jordi Mas i Hernandez <jordi@ximian.com>
13143         * ThemeWin32Classic.cs: Sets clipping on DataGridPaintRowsHeaders
13144         * DataGridDrawingLogic.cs: fixes issues with Datagrid drawing
13146 2005-09-12  Jordi Mas i Hernandez <jordi@ximian.com>
13148         * XplatUIX11.cs: fixes System.NullReferenceException in some situations
13150 2005-09-09  Jonathan Chambers  <jonathan.chambers@ansys.com>
13152         * IRootGridEntry.cs: Changed namespace to PropertyGridInternal 
13154 2005-09-09  Jonathan Chambers  <jonathan.chambers@ansys.com>
13156         * IRootGridEntry.cs: Added
13157         * PropertyGridCommands.cs: Added
13158         * PropertiesTab.cs: Added missing methods and property
13159         * PropertyGridView.cs: Made class internal
13160         * PropertyGridTextBox.cs: Made class internal
13162 2005-09-09  Alexander Olk  <alex.olk@googlemail.com>
13164         * MimeIcon.cs: Try to check some other environment variables
13165           if "DESKTOP_SESSION" returns "default"
13167 2005-09-09  Alexander Olk  <alex.olk@googlemail.com>
13169         * ThemeNice.cs: Corrected background colors (e.g. menus)
13170         * ColorDialog.cs: Use correct background colors for controls
13172 2005-09-09  Alexander Olk  <alex.olk@googlemail.com>
13174         * ThemeNice.cs: Merged r49535 from ThemeWin32Classic
13176 2005-09-08  Peter Dennis Bartok  <pbartok@novell.com>
13178         * RichTextBox.cs: Added initial implementation
13179         * lang.cs: Removed. Was accidentally checked in long time ago
13180         * TODO: Removed. Contents were obsolete
13182 2005-09-06  Jonathan Chambers  <jonathan.chambers@ansys.com>
13183                                                                                 
13184         * PropertiesTab.cs : Added
13186 2005-09-06  Jonathan Chambers  <jonathan.chambers@ansys.com>
13187                                                                                 
13188         * PropertyGrid.cs : Update
13189         * PropertyGridView.cs : Update
13190         * System.Windows.Forms.resx : Added images and strings
13192 2005-09-06  Peter Dennis Bartok  <pbartok@novell.com> 
13194         * ThemeNice.cs: Do not dispose Pens retrieved from ResPool
13196 2005-09-06  Peter Dennis Bartok  <pbartok@novell.com>
13198         * XplatUIX11.cs: Force a flush after Ungrab; if case the app enters
13199           a busy loop right after the Ungrab the X11 display is otherwise 
13200           blocked
13202 2005-09-06  Jordi Mas i Hernandez <jordi@ximian.com>
13204         * ThemeWin32Classic.cs: Optimise the use of clipping
13206 2005-09-05  Jordi Mas i Hernandez <jordi@ximian.com>
13208         * DataGrid.cs: fixes recursion bug
13210 2005-09-03  Alexander Olk  <alex.olk@googlemail.com>
13212         * ThemeNice.cs: 
13213           - Draw RadioButton and CheckBox Buttons with DrawButtonBase
13214           - Cleanup
13216 2005-09-02  Alexander Olk  <alex.olk@googlemail.com>
13218         * ThemeNice.cs: Draw nice ProgressBars
13220 2005-09-01  Miguel de Icaza  <miguel@novell.com>
13222         * VScrollBar.cs: Another buglet found by Aaron's tool. 
13224         * ProgressBar.cs: Fix three recursive bugs found by Aaron Tomb's
13225         bug finder.
13227 2005-08-30  Alexander Olk  <alex.olk@googlemail.com>
13229         * ThemeNice.cs:
13230           - Added nicer menu drawing
13231           - Updated DrawTab
13232           - some refactoring
13234 2005-08-30  Peter Dennis Bartok  <pbartok@novell.com>
13236         * CreateParams.cs (ToString): Made output match MS
13237         * Control.cs (Text): Don't set Text or Focus via XplatUI unless 
13238             handle is already created (to avoid forcing window creation)
13239         * XplatUIX11.cs: Set window text to caption after creating window,
13240           in case Text was set before window was created
13241         * Form.cs: Use this.Text instead of a static string as caption
13243 2005-08-30  Peter Dennis Bartok  <pbartok@novell.com> 
13245         * NotifyIcon.cs: Don't set the window to visible; this screws
13246           up Win32 (causes WM_NCPAINT to be sent on Win32, which calls
13247           OnPaint without a bitmap)
13248         * XplatUIX11.cs: Removed Visible optimization in AddExpose; doesn't 
13249           happen very often anyway; we could add the check to the WM_PAINT 
13250           event generation code
13252 2005-08-30  Peter Dennis Bartok  <pbartok@novell.com>
13254         * NotifyIcon.cs: Fill the icon area with a background color, to 
13255           avoid 'residue' when transparent icons are drawn
13256         * XplatUIX11.cs:
13257           - Handle whole_window == client_window when destroying windows
13258           - SystrayAdd(): Set client_window to whole_window value to
13259             get mouse and other events passed to NotifyIcon
13261 2005-08-30  Peter Dennis Bartok  <pbartok@novell.com> 
13263         * Form.cs: Set proper default for Opacity property
13264         * NotifyIcon.cs:
13265           - ShowSystray(): Don't bother creating telling the OS
13266             about the systray item if no icon is provided
13267           - Now handles WM_NCPAINT message to deal with whole/client window
13268             split
13269           - Create window as visible to not get caught by Expose optimization
13270         * Hwnd.cs: Removed debug message
13271         * ComboBox.cs, ScrollBar.cs, ListBox.cs, TrackBar.cs, TabControl.cs,
13272           StatusBar.cs, TreeView.cs, XplatUIOSX.cs, XplatUIWin32.cs: Switched 
13273             PaintEventStart/End to use new client argument
13274         * TextBoxBase.cs:
13275           - Commented out debug messages
13276           - Switched PaintEventStart/End to use new client argument
13277         * XplatUI.cs: Added client window bool to PaintEventStart()/
13278           PaintEventEnd() calls, to support drawing in non-client areas
13279         * XplatUIDriver.cs: 
13280           - Added client window bool to PaintEventStart()/PaintEventEnd() 
13281             calls, to support drawing in non-client areas
13282           - Added conditional compile to allow using MWF BeginInvoke 
13283             on MS runtime
13284         * XplatUIX11.cs:
13285           - Added some conditional debug output
13286           - Fixed SystrayAdd() method to support new (for SystrayAdd, anyway)
13287             whole/client window split
13288           - Implemented handling of client argument to PaintEventStart()/End()
13289         * Control.cs:
13290           - Throw exception if BeginInvoke() is called and the window handle
13291             or one of the window's parent handles is not created
13292           - Added conditional compile to allow using MWF BeginInvoke on
13293             MS runtime
13294           - get_Parent(): Only sets parent if handle is created. This avoids
13295             forcing window handle creation when parent is set.
13296           - Now fires Layout and Parent changed events in proper order
13297           - Switched to use Handle instead of window.Handle for Z-Order setting,
13298             the get_Parent() patch above causes us to possibly get null for 'window'
13299           - Implemented handling of client argument to PaintEventStart()/End()
13300           - Now reports back to windows that WM_SETCURSOR was handled (to avoid
13301             default handling)
13302           - Now sends a Refresh() to all child windows when Refresh() is called
13304 2005-08-29  Peter Dennis Bartok  <pbartok@novell.com> 
13306         * Form.cs: Added (non-functional) Opacity property
13307         * XplatUIWin32.cs (SystrayAdd): Removed bogus line of code
13309 2005-08-29  Alexander Olk  <xenomorph2@onlinehome.de>
13310         * ThemeNice.cs: New theme for MWF, based on ThemWin32Classic
13311           use export MONO_THEME=nice to activate it.
13312           Currently supported controls:
13313           - Button
13314           - ComboBox
13315           - ScrollBar
13316           - TabControl (TabAlignment.Top only, other will follow)
13317         * ThemeEngine.cs: Add theme nice
13318         * ButtonBase.cs: Redraw button on MouseEnter and MouseLeave everytime,
13319           if enabled
13321 2005-08-25  Jonathan Chambers  <jonathan.chambers@ansys.com> 
13323         * Splitter.cs: Resize docked control and its neighbor.
13325 2005-08-24  Rafael Teixeira <rafaelteixeirabr@hotmail.com> 
13326         -- Making Windows with Menus layout correctly --
13327         * Form.cs : The first leg of the fix
13328                 Menu setter - adjust Client Size as needed to make space for the menu
13329                 SetClientSizeCore - doesn't call base version to be able to pass the 
13330                         menu handle to XplatUI.CalculateWindowRect
13331         * Hwnd.cs: Fix for menu_height, now gets from MenuAPI.MENU
13332         * XplatUIX11.cs: The critical second leg of the fix
13333                 GetWindowPos needs to use a recalculated client_rect
13334                 so that resizing the window doesn't break layout of child controls. 
13335                 Also a more complete rule to avoid X Server roundtrips in SetWindowPos
13336                 Lots of \t\n killed
13338 2005-08-23  Peter Dennis Bartok  <pbartok@novell.com> 
13340         * Label.cs: Now properly recalculates width and height on Font and Text
13341           changes if AutoSize is set
13343 2005-08-19  Rafael Teixeira <rafaelteixeirabr@hotmail.com> 
13344         * TreeView.cs : Revamped drawing logic, and support for FullRowSelect
13346 2005-08-19  Jordi Mas i Hernandez <jordi@ximian.com>
13348         * ImageList.cs: Makes ToString method compatible with MS
13350 2005-08-18  Jordi Mas i Hernandez <jordi@ximian.com>
13352         * MenuAPI.cs: fixes bug 75716
13354 2005-08-11 Umadevi S <sumadevi@novell.com>
13355         * Control.cs: Fixed Remove & RemoveAt to make the parent of the control null.
13357 2005-08-11 Umadevi S <sumadevi@novell.com>
13358         * Contorl.cs: Fixed ResetRightToLeft and ResetImeMode to work correctly
13360 2005-08-10  Umadevi S <sumadevi@novell.com>
13361         * CheckedListBox.cs: Fixed event firing on Adding to the CheckedListBox
13363 2005-08-07  Jordi Mas i Hernandez <jordi@ximian.com>
13365         * Menu.cs: fixes bug 75700
13366         * MenuAPI.cs: fixes navigation issues
13368 2005-08-09  Umadevi S <sumadevi@novell.com>
13369         * CheckedListBox.cs - simple fix for GetItemChecked.
13371 2005-08-08  Jordi Mas i Hernandez <jordi@ximian.com>
13373         * ComboBox.cs: Serveral fixes
13374         * ListBox.cs: Serveral fixes
13376 2005-08-05  Jordi Mas i Hernandez <jordi@ximian.com>
13378         * ComboBox.cs: Fixes FindString methods and GetItemHeight
13379         * ListBox.cs: Fixes FindString methods
13381 2005-08-05  Jordi Mas i Hernandez <jordi@ximian.com>
13383         * DataGrid.cs: fixes bugs exposed by new tests
13385 2005-08-04  Peter Dennis Bartok  <pbartok@novell.com> 
13387         * Mime.cs: Compile Mono assembly references only if compiling
13388           with Mono (Allows to build with VS.Net again)
13390 2005-07-28  Marek Safar  <marek.safar@seznam.cz>
13392         * Control.cs (PaintControlBackground): Draw background image
13393         corrrectly.
13394         (CheckForIllegalCrossThreadCalls): Stubbed.
13395         
13396         * Form.cs (OnCreateControl): Center when should be centered.
13397         
13398         * ThemeWin32Classic.cs (DrawPictureBox): Pass size.
13400 2005-07-19  Jordi Mas i Hernandez <jordi@ximian.com>
13402         * Binding.cs: Binding to properties should be case unsensitive
13404 2005-07-18 vlindos@nucleusys.com
13406         * DataGrid.cs: fixes setmember order
13408 2005-07-07  Alexander Olk  <xenomorph2@onlinehome.de>
13410         * MimeIcon.cs: added MimeIcon stuff (MimeIconEngine)
13411         * FileDialog.cs: FileDialog is now resizable and uses the new
13412           MimeIconEngine
13414 2005-07-06  Jordi Mas i Hernandez <jordi@ximian.com>
13416         * DataGridTextBoxColumn.cs: default value
13417         * GridColumnStylesCollection.cs: fixes event firing, checking MappingName
13418         * GridTableStylesCollection.cs: fixes checking MappingName
13419         * DataGridDrawingLogic.cs: fixes drawing logic issues
13420         * DataSourceHelper.cs: rewritten to make compatible with more data sources
13421         * DataGrid.cs: fixes    
13423 2005-07-06  Alexander Olk  <xenomorph2@onlinehome.de>
13425         * MimeGenerated.cs: Use case sensitive comparer for
13426           NameValueCollections
13428 2005-07-01  Jordi Mas i Hernandez <jordi@ximian.com>
13430         * DataGridTextBoxColumn.cs: bug fixes, code refactoring 
13431         * ThemeWin32Classic.cs: bug fixes, code refactoring
13432         * DataGridDrawingLogic.cs:  bug fixes, code refactoring
13433         * DataGrid.cs: bug fixes, code refactoring
13434         * DataGridTextBox.cs: bug fixes, code refactoring
13435         * DataGridColumnStyle.cs:  bug fixes, code refactoring
13436         * Theme.cs:  bug fixes, code refactoring
13438 2005-07-01  Peter Bartok  <pbartok@novell.com> 
13440         * TextControl.cs: Quick fix for the reported crash on ColorDialog
13441           and other text box usage
13443 2005-07-01  Jackson Harper  <jackson@ximian.com>
13445         * TabControl.cs: Make sure the bottom of the tab covers the pages
13446         border.
13448 2005-06-30  Peter Bartok  <pbartok@novell.com> 
13450         * Form.cs (ShowDialog): Assign owner of the dialog
13451         * TextBoxBase.cs: Always refresh caret size when deleting, caret
13452           might have been moved to a tag with different height
13454 2005-06-30  Jackson Harper  <jackson@ximian.com>
13456         * Form.cs: Don't create an infinite loop when setting focus
13457         * MenuItem.cs: Don't dirty the parents if we don't have any
13459 2005-06-29  Ben Maurer  <bmaurer@ximian.com>
13461         * LibSupport.cs: Rename
13463 2005-06-29  Peter Bartok  <pbartok@novell.com>
13465         * TextBoxBase.cs: Re-align caret after deleting a character
13466         * TextControl.cs:
13467           - DeleteChars(): Ensure that tag covers the provided position
13468           - StreamLine(): Drop reference for dropped tag
13470 2005-06-29  Peter Bartok  <pbartok@novell.com> 
13472         * TextControl.cs: 
13473           - Selections now work properly, anchoring at the initial location
13474             and properly extending in either direction (SetSelectionToCaret(),
13475             SetSelectionStart() and SetSelectionEnd())
13476           - No longer redraws the whole control on selection change, now
13477             calculates delta between previous and new selection and only
13478             invalidates/redraws that area
13479           - Fixed FindPos() math off-by-one errors
13480           - Changed DeleteChars() to verify the provided tag covers the
13481             provided position, selections may have a tag that doesn't cover
13482             the position if the selection is at a tag border
13483           - Fixed off-by-one errors in DeleteChars()
13484           - Added missing streamlining check in DeleteChars() to remove
13485             zero-length tags
13486           - Implemented Invalidate() method, now properly calculates exposures
13487             between two given lines/positions
13488           - Implemented SetSelection()
13489           - Obsoleted and removed FixupSelection()
13490           - Improved RecalculateDocument() logic, removing code duplication
13492 2005-06-29 Gonzalo Paniagua Javier <gonzalo@ximian.com>
13494         * LibSupport.cs: changes to match different input/output arguments.
13496 2005-06-29 Gonzalo Paniagua Javier <gonzalo@ximian.com>
13498         * LibSupport.cs: added libsupport.so init routine.
13500 2005-06-29  Jordi Mas i Hernandez <jordi@ximian.com>
13501         
13502         * ControlBindingsCollection.cs
13503                 - Throws an exception on null datasource when adding
13504                 - Checks for duplicated bindings when adding
13506 2005-06-28  Jackson Harper  <jackson@ximian.com>
13508         * TreeView.cs (OnKeyDown): Support left and right properly
13509         (navigates as well as expanding and collapsing.
13510         - Add support for Multiply, this expands all the selected nodes
13511         children.
13512         - Fix some tabbing.
13514 2005-06-28  Jackson Harper  <jackson@ximian.com>
13516         * TreeView.cs: Implement keyboard navigation, currently supports,
13517         LEFT, RIGHT, UP, DOWN, PGUP, PGDOWN, HOME, END, ADD, SUBTRACT. Add
13518         support for toggling checkboxes with the space bar.
13520 2005-06-28  Jackson Harper  <jackson@ximian.com>
13522         * OpenTreeNodeEnumerator.cs: Don't move past the begining of the
13523         tree.
13525 2005-06-28  Jackson Harper  <jackson@ximian.com>
13527         * TreeView.cs: Add missing event.
13529 2005-06-27  Peter Bartok  <pbartok@novell.com> 
13531         * TextControl.cs:
13532           - Made line ending size configurable (now allows for counting 
13533             lineendings as \n or \r\n)
13534           - Added margin to viewport to keep caret visible on right side
13535           - Fixed translation routines for line/pos to documentpos to consider
13536             cr/lf when counting (Fixes RichTextBox.SelectionFont issues)
13537           - Fixed some line-endings to be unix style
13538           - Fixed Document.FormatText to perform it's calculations 1-based
13539           - Added descriptions for a few methods that might otherwise get 
13540             used wrong
13541           - Added NOTE section with some basic conventions to remember at 
13542             the top of the file
13543           - Major fixup for RichTextBox selection drawing:
13544             * Fixed crashes when multiple tags on a single line were selected
13545             * fixed selection box drawing not overlaying text
13546             * fixed bogus offset calculation for tags not starting at index 1
13547             * Switched behaviour from using multiple Substrings of a 
13548               StringBuilder.ToString() to using multiple 
13549               StringBuilder.ToString(start, length) statements, hoping this is
13550               faster (kept original version commented out in the code, in case
13551               original version was faster)
13552         * TextBox.cs (set_TextAlignment): TextBox always needs to wrap if 
13553           alignment != Left
13554         * TextBoxBase.cs (CalculateDocument): Made protected so RichTextBox can
13555           call it as well
13557 2005-06-27  Jackson Harper  <jackson@ximian.com>
13559         * TabControl.cs: Move to the left and right with the arrow
13560         keys. These keys don't cycle beyond first and last like
13561         tab. Refresh all the tabs when scrolling them to the left or
13562         right.
13564 2005-06-27  Jackson Harper  <jackson@ximian.com>
13566         * TabControl.cs:
13567           - ToString: Added method
13568           - CreateParams: Remove TODO and comment
13569           - OnKeyDown: Cycle through bounds properly.
13570           - SelectedIndex: Scroll to the right or left if we need to
13571           display the newly selected tab.
13573 2005-06-23  Jackson Harper  <jackson@ximian.com>
13575         * TabControl.cs: Stay in bounds when cycling. Make sure Handled is
13576         set.
13578 2005-06-23  Jackson Harper  <jackson@ximian.com>
13580         * TabControl.cs: Keyboard handling. We now support CTRL-TAB,
13581         CTRL-SHIFT-TAB, and HOME, END are there any others?
13583 2005-06-23  Jackson Harper  <jackson@ximian.com>
13585         * XplatUIX11.cs: Get the modifier keys from the keyboard driver.
13587 2005-06-22  Jordi Mas i Hernandez <jordi@ximian.com>
13588         
13589         * DataGridTextBoxColumn.cs: fixes and enhancements
13590         * ThemeWin32Classic.cs: fixes and enhancements
13591         * DataGridBoolColumn.cs:  fixes and enhancements
13592         * DataGridDrawingLogic.cs:  fixes and enhancements
13593         * CurrencyManager.cs: fixes and enhancements
13594         * DataGrid.cs: fixes and enhancements
13595         * DataGridColumnStyle.cs:  fixes and enhancements
13597 2005-06-22  Jackson Harper  <jackson@ximian.com>
13599         * TabControl.cs: Add some missing methods that just call into the
13600         base. Make the TabPageCollection's IList interface behave in the
13601         same manner as the MS implementation.
13603 2005-06-22  Peter Bartok  <pbartok@novell.com> 
13605         * TextControl.cs: Added sanity check
13606         * TextBoxBase.cs: 
13607           - Fixed wrapping behaviour, don't set wrap on single line controls
13608             (this fixes the breakage of colordialog introduced in an earlier
13609              checkin)
13610           - Added rudimentary support for autoscrolling right-aligned controls
13611             (still needs fixing, also, center alignment scroll is missing)
13613 2005-06-22  Jordi Mas i Hernandez <jordi@ximian.com>
13614         
13615         * ScrollBar.cs: Fixes thumbpos on Maximum values
13617 2005-06-21  Jonathan Chambers <jonathan.chambers@ansys.com>
13618         
13619         * PropertyGridView.cs: Pass context information to UITypeEditors 
13621 2005-06-21  Peter Bartok  <pbartok@novell.com> 
13623         * TextBoxBase.cs:
13624           - Now calling PositionCaret with absolute space coordinates
13625           - Enabled vertical scrolling
13626           - Better tracking of scrollbar changes, tied into WidthChange
13627             event
13628           - Improved cursor tracking
13629           - Removed debug output
13630         * TextControl.cs:
13631           - PositionCaret coordinates are now works in absolute space, not 
13632             the canvas
13633           - Improved tracking of document size
13634           - Added events for width and height changes
13636 2005-06-21  Peter Bartok  <pbartok@novell.com>
13638         * Form.cs: Set focus to active control when form is activated
13639         * TextControl.cs: 
13640           - Added word-wrap functionality to RecalculateLine() 
13641           - Added some short function descriptions for VS.Net to aid in
13642             writing dependent controls
13643           - Added Caret property, returning the current coords of the caret
13644           - Added ViewPortWidth and ViewPortHeight properties
13645           - Added Wrap property
13646           - Added CaretMoved event
13647           - Removed some old debug code
13648           - Split() can now create soft splits
13649           - Added PreviousTag()/NextTag() to allow walking "tag-lists"
13650           - Added method to format existing text
13651           - Fixed size/alignment calculations to use viewport
13652           - RecalculateDocument now can handle changing line-numbers while
13653             calculating lines
13655         * TextBox.cs:
13656           - Added some wrap logic, we don't wrap if alignment is not left
13657           - Added casts for scrollbar var, base class switched types to
13658             also support RichTextBoxA
13659           - Implemented handling of scrollbar visibility flags
13661         * TextBoxBase.cs:
13662           - Switched scrollbars type to RichTextBoxScrollBars to support
13663             RichTextBox
13664           - Added tracking of canvas width/height
13665           - Switched scrollbars to be not selectable (to keep focus on text)
13666           - Added central CalculateDocument() method to handle all redraw
13667             requirements
13668           - Added ReadOnly support
13669           - Added WordWrap support
13670           - Fixed handling of Enter key (we now treat it as a DialogKey)
13671           - Fixed caret positioning when h or v scroll is not zero
13672           - Fixed placing/generation of vertical scrollbar
13673           - Added CalculateScrollBars() method to allow updating scrollbar
13674             limits and visibility
13675           - Fixed handling of horizontal scroll
13676           - Added handling of vertical scroll
13677           - Implemented auto-'jump' when caret moves to close to a left or
13678             right border and there is text to be scrolled into view (currently
13679             there's the potential for a stack overflow, until a bug in
13680             scrollbar is fixed)
13682 2005-06-21  Geoff Norton  <gnorton@customerdna.com>
13683         
13684         * XplatUIOSX.cs: Initial implementation of WM_ERASEBKGND
13686 2005-06-19  Alexander Olk  <xenomorph2@onlinehome.de>
13688         * Mime.cs:
13689         - added inodes.
13690         - return application/x-zerosize for files with size zero
13691           (if no extension pattern matches).
13692         - check matches collection for strings too.
13693         - return only the first mime type if the name value
13694           collection has more than one mime type.
13696 2005-06-18  Jonathan Chambers <jonathan.chambers@ansys.com>
13697         
13698         * PropertyGrid.cs: Cleaned up some TODOs
13699         * PropertyGridView.cs: Added support for UITypeEditors
13701 2005-06-17  Jordi Mas i Hernandez <jordi@ximian.com>
13702         
13703         * DataGrid.cs: clears cached value
13705 2005-06-17  Jordi Mas i Hernandez <jordi@ximian.com>
13707         * DataGridTextBoxColumn.cs: new rows, speed improvements, fixes, readonly prop.
13708         * DataGridDrawingLogic.cs: new rows, speed improvements, fixes, readonly prop.
13709         * DataGrid.cs: new rows, speed improvements, fixes, readonly prop.
13710         * DataGridColumnStyle.cs: new rows, speed improvements, fixes, readonly prop.
13711         
13712 2005-06-16  Jordi Mas i Hernandez <jordi@ximian.com>
13714         * ThemeWin32Classic.cs: fixes colour
13716 2005-06-15  Peter Bartok  <pbartok@novell.com>
13718         * MWFCategoryAttribute.cs: Added (Needed for PropertyGrid designer support)
13719         * MWFDescriptionAttribute.cs: Added (Needed for PropertyGrid designer support)
13720         * ButtonBase.cs: Added MWFCategory and MWFDescription attributes
13721         * Control.cs: Added some MWFCategory and MWFDescription attributes
13722         * ScrollBar.cs: Added some MWFCategory and MWFDescription attributes
13724 2005-06-15  Alexander Olk  <xenomorph2@onlinehome.de>
13726         * Mime.cs, MimeGenerated.cs: First draft of MWF mime stuff, see Mime.cs for
13727         usage
13729 2005-06-14  Jordi Mas i Hernandez <jordi@ximian.com>
13731         * DataGridTextBoxColumn.cs: default datagrid settings for Default Styles, fixes
13732         * DataGridTableStyle.cs: default datagrid settings for Default Styles, fixes
13733         * DataGridDrawingLogic.cs: default datagrid settings for Default Styles, fixes
13734         * DataGridBoolColumn.cs: default datagrid settings for Default Styles, fixes
13735         * DataGrid.cs: default datagrid settings for Default Styles, fixes
13736         * DataGridColumnStyle.cs: default datagrid settings for Default Styles, fixes
13738 2005-06-13  Jackson Harper  <jackson@ximian.com>
13740         * XplatUIX11.cs: Override SetAllowDrop on X11 so an error message
13741         isn't printed when the user enables dropping. (X11 does accept
13742         drops).
13743         
13744 2005-06-13  Jackson Harper  <jackson@ximian.com>
13746         * TreeView.cs: Remove some TODOS.
13748 2005-06-13  Jackson Harper  <jackson@ximian.com>
13750         * Form.cs: Hook into the mdi framework.
13751         * MdiClient.cs: Use the base control collections add method so
13752         parents get setup correctly. Set the default back colour and dock
13753         style.
13754         * MdiChildContext.cs: New class, this bad actor handles an
13755         instance of an MDI window. Right now there is only basic
13756         support. You can drag, close, and resize windows. Minimize and
13757         Maximize are partially implemented.
13759 2005-06-13  Jackson Harper  <jackson@ximian.com>
13761         * XplatUIX11.cs: Mash numbers together properly, otherwise we get
13762         freaky when both vals are negative. NOTE: There are probably other
13763         places in XplatUIX11 that this needs to be done.
13765 2005-06-13  Jordi Mas i Hernandez <jordi@ximian.com>
13767         * DataGrid.cs: implement missing methods, move KeyboardNavigation
13768         * DataGridColumnStyle.cs: fixes signature
13770 2005-06-12  Jackson Harper  <jackson@ximian.com>
13772         * XplatUIX11.cs: Use sizing cursors similar to the ones on
13773         windows.
13775 2005-06-11  Jackson Harper  <jackson@ximian.com>
13777         * StatusBarPanel.cs: Signature cleanups. Implement
13778         BeginInit/EndInit.
13780 2005-06-10  Jordi Mas i Hernandez <jordi@ximian.com>
13782         * DataGridTextBoxColumn.cs: Honors aligment
13783         * GridColumnStylesCollection.cs: Contains is case unsensitive
13784         * GridTableStylesCollection.cs: several fixes
13785         * DataGridTableStyle.cs: default column creation
13786         * DataGridDrawingLogic.cs: fixes
13787         * CurrencyManager.cs: ListName property
13788         * DataGrid.cs: multiple styles support
13789         * DataGridColumnStyle.cs: fixes
13790         
13792 2005-06-10  Peter Bartok  <pbartok@novell.com>
13794         * Control.cs(Select): Moved SetFocus call to avoid potential
13795           loops if controls change the active control when getting focus
13796         * UpDownBase.cs: Fixes to allow proper keyboard focus after clicking
13797           the up/down buttons
13799 2005-06-10  Matthias Felgner  <matthiasf@voelcker.ocm>
13801         * ImageListConverter.cs: Implemented
13803 2005-06-10  John BouAntoun <jba-mono@optusnet.com.au>
13805         * MonthCalendar.cs: Wired in NumericUpDown control for year
13807 2005-06-10  John BouAntoun <jba-mono@optusnet.com.au>
13809         * MonthCalendar.cs: Removed MonoTodo attributes on Click and
13810           DoubleClick events, since they are not meant to be fired.
13812 2005-06-09  Peter Bartok  <pbartok@novell.com>
13814         * UpDownBase.cs, NumericUpDown.cs, DomainUpDown.cs: Integrated
13815           Jonathan's standalone controls into MWF, implemented missing
13816           events, attributes and methods; added xxxAccessible classes
13817         * AccessibleObject.cs: Made fields internal so other classes
13818           can change them if needed
13820 2005-06-09  Jonathan Gilbert  <2a5gjx302@sneakemail.com>
13822         * UpDownBase.cs: Complete implementation
13823         * NumericUpDown.cs: Complete implementation
13824         * DomainUpDown.cs: Complete implementation
13826 2005-06-09  Jordi Mas i Hernandez <jordi@ximian.com>
13828         * DataGridTextBoxColumn.cs: drawing fixes
13829         * DataGridCell.cs: fixes ToString method to match MSNet
13830         * DataGridTableStyle.cs: fixes
13831         * DataGridBoolColumn.cs: fixes, drawing
13832         * DataGridDrawingLogic.cs: fixes, new methods
13833         * DataGridTextBox.cs: Keyboard and fixes
13834         * DataGrid.cs:
13835                 - Keyboard navigation
13836                 - Scrolling fixes
13837                 - Row selection (single, multiple, deletion, etc)
13838                 - Lots of fixes
13839         
13840 2005-06-07  Jackson Harper  <jackson@ximian.com>
13842         * ThemeWin32Classic.cs: Clear the background area when drawing
13843         buttons.
13845 2005-06-06  Peter Bartok  <pbartok@novell.com>
13847         * ImageListStreamer.cs: Fixed signature for GetData
13848         * CheckBox.cs: Fixed base class for CheckBoxAccessibleObject
13849         * ComboBox.cs:
13850           - Added missing ChildAccessibleObject class
13851           - Added missing OnXXXFocus overrides, switched to using those
13852             instead of the event handler
13853         * Control.cs:
13854           - Added Parent property for ControlAccessibleObject
13855           - Fixed signatures
13856           - Fixed attributes
13857           - Added ResetBindings()
13858         * ListBindingConverter.cs: Implemented some methods
13859         * ButtonBase.cs: Added missing ButtonBaseAccessibleObject class
13860         * ImageList.cs: Implemented basic handle scheme, removed TODOs
13861         * ContainerControl.cs: Fixed signature, now subscribing to the
13862           ControlRemoved event instead of overriding the handler, LAMESPEC
13863         * CurrencyManager.cs: Added missing attribute
13864         * MonthCalendar.cs: Added missing properties
13866 2005-06-06  Jordi Mas i Hernandez <jordi@ximian.com>
13868         * DataGridColumnStyle.cs: fixes for DataGridColumnStyle
13869         
13870 2005-06-06  Gaurav Vaish and Ankit Jain
13872         * DataSourceHelper.cs: Gaurav Vaish and Ankit Jain patch for databinding
13873         * DataGrid.cs: Gaurav Vaish and Ankit Jain patch for databinding
13874         
13875 2005-06-06  Jordi Mas i Hernandez <jordi@ximian.com>
13877         * Control.cs: fixes CreateParams Width / Height.
13879 2005-06-05  Peter Bartok  <pbartok@novell.com>
13881         * Win32DnD.cs: Removed compilation warnings
13883 2005-06-05  Peter Bartok  <pbartok@novell.com>
13885         * Control.cs (CreateParams): Since we don't know if one of the
13886           properties we use is overridden, lets make sure if we fail accessing
13887           we continue with a backup plan
13889 2005-06-05  Peter Bartok  <pbartok@novell.com>
13891         * Win32DnD.cs:
13892           - Removed debug output
13893           - Added MarshalAs attribute to ensure proper marshalling of FORMATETC
13894             struct
13895           - Plugged resource leak
13896         * XplatUIStructs.cs: Changed ClipboardFormats size to ushort, to match
13897           MS size
13899 2005-06-05  Peter Bartok  <pbartok@novell.com>
13901         * XplatUIWin32.cs: Removed DnD code
13902         * Win32DnD.cs: Implemented drop source and drop target functionality
13904 2005-06-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
13906         * UpDownBase.cs: remove duplicate addition of event, enable some code
13907         that was commented out.
13908         * NumericUpDown.cs: added missing attributes and Hexadecimal property.
13909         Validate input when a key is pressed. It works fine now for every
13910         combination of Hexadecimal. Only missing some drawing love when sharing
13911         space with other controls.
13913 2005-06-04  Peter Bartok  <pbartok@novell.com>
13915         * Control.cs:
13916           - We need to pass a window for DragDrop, so enable callback events
13917           - Added DnD callback events when being a DragSource
13918         * XplatUI.cs (StartDrag): Added window handle argument
13919         * XplatUIDriver.cs (StartDrag): Added window handle argument
13920         * QueryContinueDragEventArgs: Made fields internally accessible so
13921           drivers can set them
13922         * GiveFeedbackEventArgs: Made fields internally accessible so drivers
13923           can set them
13925 2005-06-03  Jordi Mas i Hernandez <jordi@ximian.com>
13927         * DataGridTextBoxColumn.cs: column text editing
13928         * DataGridTableStyle.cs: Respect columns styles created by the user
13929         * DataGridDrawingLogic.cs: lots of drawing fixes and enhanments
13930         * DataGridBoolColumn.cs: bool column editing
13931         * DataGrid.cs: fixes to scrolling, properties, etc
13932         * DataGridTextBox.cs: handle keyboard
13933         * DataGridColumnStyle.cs: fixes
13935 2005-06-02  Jackson Harper  <jackson@ximian.com>
13937         * ImageListStreamer.cs: Somewhat broken implementation of
13938         GetObjectData. The RLE needs some work to match MS properly.
13940 2005-06-02  Jackson Harper  <jackson@ximian.com>
13942         * X11Dnd.cs: Attempting to keep at least one file in MWF
13943         monostyled.
13945 2005-06-02  Peter Bartok  <pbartok@novell.com>
13947         * X11DnD.cs: Use Marshal.SizeOf instead of sizeof, no /unsafe required
13948           that way
13950 2005-06-02  Peter Bartok  <pbartok@novell.com>
13952         * Control.cs: Removed MonoTODO from DoDragDrop and added call to Xplat
13953         * XplatUI.cs: Added DoDragDrop() method
13954         * XplatUIDriver.cs: Added DoDragDrop() method
13956 2005-06-02  Jackson Harper  <jackson@ximian.com>
13958         * Splitter.cs: Implement BorderStyle.
13960 2005-06-02  Jackson Harper  <jackson@ximian.com>
13962         * XplatUIX11.cs: Tie into the X11Dnd subsystem.
13963         * X11Dnd.cs: New file. A subsystem that handles drag and drop on
13964         X11 using XDND.
13966 2005-06-02  Peter Bartok  <pbartok@novell.com>
13968         * DataObject.cs:
13969           - Added Data setter
13970           - Fixed broken insertion code for SetData, now also
13971             overwrites any existing entry of the same format name
13972         * Hwnd.cs: Added list of pointers that automatically gets
13973           freed when the window is disposed
13974         * XplatUI.cs: Call driver initialization method when loading
13975           a driver
13976         * Control.cs:
13977           - OnDragLeave takes EventArgs, not DragEventArgs
13978           - Added setting of WS_EX_ACCEPTFILES style when dropping is
13979             supported
13980           - Forces style update when drop state changes
13981         * XplatUIWin32.cs: Implemented Drag'n'Drop (as good as possible,
13982           not perfect since we cannot (yet) call the IDataObject.GetData()
13983           method, we keep getting 0x80004005 error, dunno why)
13985 2005-06-02  Peter Bartok  <pbartok@novell.com>
13987         * DragEventArgs.cs: Make fields internal so we can cache the
13988           object and re-set the fields from XplatUI
13990 2005-06-02  Jackson Harper  <jackson@ximian.com>
13992         * Control.cs: Add some internal methods so the DnD subsystem can
13993         raise DnD events. Also call into the driver when AllowDrop is set.
13994         * XplatUI.cs:
13995         * XplatUIDriver.cs: New method for setting whether or not a window
13996         is allowed to accept drag and drop messages.
13997                 
13998 2005-06-01  Jordi Mas i Hernandez <jordi@ximian.com>
13999         
14000         * ScrollBar.cs: Make sure that values sent in Scroll events
14001         are always between Maximum and Minimum.
14003 2005-06-01  Marek Safar  <marek.safar@seznam.cz>
14005         * Menu.cs: Call MenuChanged when menuitem visibility has been
14006         changed.
14007         * MenuItem.cs: Rebuild menu when item is (not) visible.
14008         * MainMenu.cs: MainMenu has special MenuChanged.
14009         * Theme.cs: Caption and FrameBorderSize are not fixed.
14010         * XplatUI.cs: Added CaptionHeight,FrameBorderSize.
14011         * XplatUIDriver.cs: Introduced Caption and FrameBorderSize.
14012         * XplatUIX11.cs,
14013         * XplatUIOSX: Caption and FrameBorderSize not implemented yet.
14014         * XplatUIWin32.cs: Get Caption and FrameBorderSize from system.
14016 2005-05-30  Jackson Harper  <jackson@ximian.com>
14018         * DataFormat.cs: We can't statically initialize this stuff because
14019         it calls into the xplatui and could create a loop. So we lazy init
14020         it.
14022 2005-05-28  Jackson Harper  <jackson@ximian.com>
14024         * Control.cs: Proper implementation of Product(Name/Version).
14026 2005-05-27  Jackson Harper  <jackson@ximian.com>
14028         * DataObject.cs: Dont crash if no data is found.
14030 2005-05-26  Rafael Teixeira  <rafaelteixeirabr@hotmail.com>
14031         * MdiClient.cs: Add missing Localizable attribute to BackgroundImage property
14032                 as per status page, guessing it should be set to true
14034 2005-05-26  Jordi Mas i Hernandez <jordi@ximian.com>
14036         * DataGridTextBoxColumn.cs: Draws text and basic text formatting
14037         * DataGridTableStyle.cs: set proper formatting text, def header text
14038         * ThemeWin32Classic.cs: new themable paramaters
14039         * DataGridBoolColumn.cs: paint check box, get data, fixes
14040         * DataGridDrawingLogic.cs: huge improvements in painting, fixes, new methods
14041         * DataGrid.cs: fixes properties, implements vertical and horizontal scrolling
14042         * DataGridColumnStyle.cs: fixes
14043         * Theme.cs: new themable paramaters
14044                 
14045 2005-05-26  Peter Bartok  <pbartok@novell.com>
14047         * ContainerControl.cs: Pass AdjustFormScrollbars() call on to base
14049 2005-05-24 Jonathan S. Chambers <jonathan.chambers@ansys.com>
14050         * Control.cs: Fixed LowOrder and HighOrder to preserve sign.
14052 2005-05-24  Peter Bartok  <pbartok@novell.com>
14054         * OpenFileDialog.cs, Form.cs, Menu.cs, GroupBox.cs, UserControl.cs,
14055           Label.cs, DataGridTextBoxColumn.cs, PropertyGrid.cs, ErrorProvider.cs
14056           Splitter.cs, Control.cs, FontDialog.cs, TabPage.cs,
14057           FolderBrowserDialog.cs, HelpProvider.cs, DataGridTableStyle.cs,
14058           NotifyIcon.cs, FileDialog.cs, ListView.cs, SaveFileDialog.cs,
14059           ToolBarButton.cs, ImageList.cs, DataGridBoolColumn.cs, Panel.cs,
14060           DataGrid.cs, DataGridTextBox.cs, ListBox.cs, TrackBar.cs,
14061           AxHost.cs, TabControl.cs, ScrollableControl.cs, ToolBar.cs,
14062           DataGridColumnStyle.cs, PictureBox.cs, DateTimePicker.cs,
14063           StatusBar.cs, MonthCalendar.cs, TreeView.cs: Added
14064           missing attributes, etc
14065         * DataGridPreferredColumnWidthTypeConverter.cs: Added
14067 2005-05-24  Peter Bartok  <pbartok@novell.com>
14069         * Help.cs: Added, implemented trivial functions, throws up MessageBox
14070           when user tries to get help
14071         * DataObject.cs, DataFormats.cs, LinkArea.cs,
14072           SelectionRangeConverter.cs, Clipboard.cs : Removed unused variables
14073           to suppress warnings
14074         * XplatUIWin32.cs, XplatUIOSX.cs, XplatUIX11.cs: Removed unused code to
14075           avoid unreachable code warning
14077 2005-05-20  Peter Bartok  <pbartok@novell.com>
14079         * CursorConverter.cs (ConvertTo): Switched to use Cursor.GetObjectData
14081 2005-05-20  Jordi Mas i Hernandez <jordi@ximian.com>
14083         * DataGridTextBoxColumn.cs: Basic painting methods
14084         * DataGridTableStyle.cs: Set table style in the column
14085         * ThemeWin32Classic.cs: Use Theme for colors
14086         * DataGridDrawingLogic.cs: Implement more drawing
14087         * DataGrid.cs: drawing, theming, enhacements, fixes
14088         * DataGridColumnStyle.cs: fixes, drawing
14089         * Theme.cs: theming for Datagrid
14091 2005-05-20  Peter Bartok  <pbartok@novell.com>
14093         * Cursor.cs: Implemented GetObjectData() method
14095 2005-05-20  Peter Bartok  <pbartok@novell.com>
14097         * Cursors.cs: Added setting of cursor name
14098         * Cursor.cs:
14099           - Implemented constructors
14100           - Implemented Draw and DrawStretched
14101           - Implemented Current property
14102           - Implemented == and != operators
14103           - Implemented Dispose()
14104           - Implemented ToString
14105           - Added missing attributes
14106         * XplatUIX11.cs:
14107           - Added missing reset for OverrideCursor when DoEvents is called
14108           - Fixed creation of cursor, logic was wrong
14109         * XplatUIWin32.cs:
14110           - Added missing reset for OverrideCursor when DoEvents is called
14111           - Fixed creation of cursor, bit arrays were swapped
14112         * Clipboard.cs: Removed obsolete MonoTODO attribute
14114 2005-05-20  Jordi Mas i Hernandez <jordi@ximian.com>
14116         * ComboBox.cs: fixes OnSelectedItemChanged
14117         * ControlBindingsCollection.cs: fixes item range check
14119 2005-05-20  Jordi Mas i Hernandez <jordi@ximian.com>
14121         * UpDownBase.cs:
14122                 - Calc preferred height properly
14123                 - Implement missing properties
14124                 
14125         * NumericUpDown.cs: Implement missing events
14127 2005-05-19  Jackson Harper  <jackson@ximian.com>
14129         * TabControl.cs: New method that resizes the tab pages before
14130         redrawing them. This as needed as the control is double buffered
14131         and sizing will not be recalculated unless ResizeTabPages is
14132         called.
14133         * TabPage.cs: Set base.Text instead of Text in the constructor so
14134         that UpdateOwner does not get called. Use the new Redraw method of
14135         TabControl instead of Refresh so the sizing is recalculated.
14136         * ThemeWin32Classic.cs: Draw the text for button tabs.
14138 2005-05-19  Jackson Harper  <jackson@ximian.com>
14140         * Control.cs: Paint control background images. Fix typo where
14141         PaintControlBackground was not getting called correctly.
14143 2005-05-19  Peter Bartok  <pbartok@novell.com>
14145         * ScrollableControl.cs (DisplayRectangle): Undid my last change until
14146           I can investigate, apparently I broke FileDialog
14148 2005-05-19  Marek Safar  <marek.safar@seznam.cz>
14150         * AxHost.cs: Some simple properties.
14151         * Control.cs: window must be accessible after ctor.
14152         * Form.cs: Added TransparencyKey property.
14153         * TextBoxBase.cs: Implemented Clear. Text property can be null.
14154         * XplatUIWin32.cs: SetBorderStyle implemented.
14156 2005-05-18  Peter Bartok  <pbartok@novell.com>
14158         * DataObject.cs: Entries are not global but particular to the
14159           DataObject, now it behaves that way
14160         * XplatUIWin32.cs: Implemented Clipboard methods
14161         * Clipboard.cs: Implemented
14162         * ScrollableControl.cs (DisplayRectangle): Fixed calculation
14163         * XplatUIOSX.cs: Updated to final clipboard prototypes
14164         * XplatUIX11.cs: Implemented Clipboard methods
14165         * XplatUIDriver.cs: Updated to final clipboard prototypes
14166         * XplatUIStructs.cs:
14167           - Added BITMAPINFOHEADER struct
14168           - Added ClipboardFormats enum
14169         * X11Structs.cs:
14170           - Added ClipboardStruct
14171           - Added Atom enum items for clipboard types
14172           - Fixed atom types for Selection event structures
14173         * DataFormats.cs:
14174           - Added internal properties and methods for drivers to enumerate
14175             all known formats
14176           - Switched initialization method to allow drivers to assign their
14177             own IDs even for the MS predefined clipboard IDs
14178         * XplatUI.cs: Updated to final clipboard interface
14180 2005-05-18 Jonathan S. Chambers <jonathan.chambers@ansys.com>
14181         * PropertyGridView.cs: Fixed compiler warnings.
14183 2005-05-18 Jonathan S. Chambers <jonathan.chambers@ansys.com>
14184         * PropertyGrid.cs: Added some event calls
14185         * PropertyGridView.cs: Change drawing code to use double buffering
14186         * PropertyGridTextBox.cs: Changed Text property name
14187         * GridItem.cs: Added Bounds property.
14188         * GridEntry.cs: Added Bounds property.
14190 2005-05-17  Lluis Sanchez Gual  <lluis@novell.com>
14192         * Binding.cs: Use IsInstanceOfType instead of IsAssignableFrom
14193         since GetType() may not return the correct type if the object is
14194         a remoting proxy.
14196 2005-05-17  Jordi Mas i Hernandez <jordi@ximian.com>
14198         * TreeNodeCollection.cs: fixes get/set item ranges
14199         
14200 2005-05-15  Jordi Mas i Hernandez <jordi@ximian.com>
14202         * ListBox.cs: Kazuki Oikawa's PreferredHeight and ItemHeight fixes
14203                 
14204 2005-05-15  Jordi Mas i Hernandez <jordi@ximian.com>
14206         * ComboBox.cs: Fix item range comparation
14207         * ListView.cs: Fix item range comparation
14209 2005-05-03  Alexander Olk  <xenomorph2@onlinehome.de>
14211         * FontDialog.cs:
14212           - Clear example panel when OnPaint is called
14213           - Better solution for displaying the example panel text
14214           - Select default indexes in the ListBoxes
14216 2005-05-11  Geoff Norton  <gnorton@customerdna.com>
14218         * XplatUIOSX.cs: Avoid painting into invisible views.  Fixes #74926
14220 2005-05-11  Peter Bartok  <pbartok@novell.com>
14222         * LinkArea.cs: Added and implemented LinkAreaTypeConverter class
14223         * SelectionRangeConverter.cs: Implemented
14224         * PropertyGrid.cs: Fixed attribute value
14225         * Control.cs:
14226           - Invoke(): Don't call Begin/EndInvoke if it is not neccessary
14227           - Added Sebastien Pouliot's CAS Stack Propagation fixes
14228         * XplatUIDriver.cs: Added new XplatUIDriverSupport class, for code
14229           that's common to all drivers. First methods to go there are
14230           Sebastien Pouliot's CAS Stack Propagation helper methods
14231         * XplatUIWin32.cs, XplatUIX11.cs, AsyncMethodData.cs: Fixes by
14232           Sebastien Pouliot for CAS Stack Propagation
14234 2005-05-11  Geoff Norton  <gnorton@customerdna.com>
14236         * OSXStructs.cs:
14237           XplatUIOSX.cs: More cosmetic cleanup courtesy of Artyom Tyazhelov (Artyom.Tyazhelov@helmes.ee)
14239 2005-05-12  Jordi Mas i Hernandez <jordi@ximian.com>
14241         * DataGridTextBoxColumn.cs: fixed some members
14242         * GridColumnStylesCollection.cs: indexed column is case insensitive
14243         * DataGridTableStyle.cs: fixes
14244         * ThemeWin32Classic.cs: add new theme parameter
14245         * Theme.cs: add new theme parameter
14246         * DataGridDrawingLogic.cs: Datagrid's drawing logic
14247         * DataGrid.cs: fixes, new internal properties, etc.
14248         * DataGridColumnStyle.cs: allows to set grid value
14249         *
14251 2005-05-10  Peter Bartok  <pbartok@novell.com>
14253         * AccessibleObject.cs:
14254           - Removed MonoTODO attribute on help, method is correct
14255           - Fixed Bounds property
14256         * AxHost.cs: Moved MonoTODO
14257         * ButtonBase.cs: Now setting AccessibleObject properties
14258         * RadioButton.cs: Setting proper AccessibleObject role
14259         * CheckBox.cs: Setting proper AccessibleObject role
14260         * ControlBindingsCollection.cs: Added properties, methods and attributes
14261         * DataFormats.cs: Fixed awkward internal API, and changed to enable
14262           userdefined DataFormats.Format items as well
14263         * ListControl.cs: Removed data_member from the public eye
14264         * OpenFileDialog.cs:
14265           - Made class sealed
14266           - Added missing attributes
14267         * SaveFileDialog.cs: Added missing attributes
14268         * ImageListStreamer.cs: Fixed code that caused warnings
14269         * LinkLabel.cs: Removed unreachable code
14270         * TreeView.cs: Fixed code that caused warnings
14271         * PropertyGridView.cs: Fixed code that caused warnings
14272         * GridColumnStylesCollection.cs: Added missing attributes
14273         * GridTableStylesCollection: Added missing attribute
14274         * PropertyManager: Added .ctor
14275         * SecurityIDType: Added
14276         * DataObject.cs: Implemented class
14277         * LinkArea.cs: Added missing attribute
14279 2005-05-11  Jordi Mas i Hernandez <jordi@ximian.com>
14281         * RadioButton.cs: call base method to allow to fire OnClick event
14282         * UpDownBase.cs: OnMouseUp call base method
14283         * CheckedListBox.cs: call base method before returning
14284         * TrackBar.cs: call base method before returning
14285         
14287 2005-05-10  Peter Bartok  <pbartok@novell.com>
14289         * XplatUIX11.cs: Fix for #74902, check pending timers when peeking
14290           for messages
14292 2005-05-10  Peter Bartok  <pbartok@novell.com>
14294         * DataFormats.cs: Implemented
14295         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs,
14296           XplatUIX11.cs: Added Clipboard APIs
14297         * XplatUIWin32.cs: Implemented Clipboard APIs
14298         * FolderBrowserDialog.cs: Added missing event, attributes
14300 2005-05-10  Jordi Mas i Hernandez <jordi@ximian.com>
14302         * CheckBox.cs: call base method to allow to fire OnClick event
14304 2005-05-09  Sebastien Pouliot  <sebastien@ximian.com>
14306         * XplatUI.cs: Use PlatformID.Unix under NET_2_0.
14308 2005-05-06  Peter Bartok  <pbartok@novell.com>
14310         * XplatUIX11.cs: Redid Jackson's fix, it was causing a busy loop
14311         * Screen.cs: Implemented
14312         * HelpNavigator.cs: Added
14313         * XplatUIWin32.cs: Added SystemParametersInfo call, fixed WorkArea
14314           property
14315         * HelpProvider.cs: Implemented all we can do until we have a CHM
14316           help library (which means that "What's This" does work now)
14318 2005-05-06  Jackson Harper  <jackson@ximian.com>
14320         * XplatUIX11.cs: Fix waking up the main loop.
14321                 
14322 2005-05-05  Peter Bartok  <pbartok@novell.com>
14324         * XplatUI.cs: Updated revision
14325         * Form.cs: Removed enless loop
14326         * GroupBox.cs (OnPaint): Added call to base.OnPaint()
14327         * Label.cs (OnPaint): Added call to base.OnPaint()
14328         * ToolTip.cs: Made ToolTipWindow reusable for other controls
14329         * LinkLabel.cs (OnPaint): Added call to base.OnPaint()
14330         * UpDownBase.cs (OnPaint): Moved base.OnPaint() call to end of method
14331         * AxHost.cs: Added
14332         * ButtonBase.cs: Moved base.OnPaint() call to end of method
14333         * ThemeWin32Classic.cs: Replaced references to ToolTip with references
14334           to ToolTip.ToolTipWindow for drawing and size methods; this allows
14335           reuse of ToolTipWindow by other controls
14336         * SizeGrip.cs: Moved base.OnPaint() call to end of method
14337         * XplatUIX11.cs: Now clipping drawing area (experimental)
14338         * PictureBox.cs: Moved base.OnPaint() call to end of method
14339         * Theme.cs: Fixed ToolTip abstracts to match new format
14340         * ErrorProvider.cs: Implemented
14342 2005-05-05  Jordi Mas i Hernandez <jordi@ximian.com>
14344         * Label.cs: fire events using OnAutoSizeChanged and OnTextAlignChanged
14345         * LinkLabel.cs:
14346                 - Adds cursors
14347                 - Handles focus
14348                 - Implements LinkBehavior
14349                 - Fixes many issues
14351 2005-05-03  Jackson Harper  <jackson@ximian.com>
14353         * ListView.cs: Calculate the scrollbar positioning on resize and
14354         paint, so they get put in the correct place.
14356 2005-05-03  Alexander Olk  <xenomorph2@onlinehome.de>
14358         * ColorDialogs.cs: The small color panels are now handled by
14359           SmallColorControl. This fixes drawing of the focus rectangle
14360           and adds a 3D border.
14362 2005-05-03  Peter Bartok  <pbartok@novell.com>
14364         * Control.cs: Modified version of Jonathan Chamber's fix for
14365           double-buffering
14367 2005-05-03  Jackson Harper  <jackson@ximian.com>
14369         * ListView.cs: Remove redraw variable. Control now handles whether
14370         or not a redraw needs to be done, and will only raise the paint
14371         event if redrawing is needed.
14373 2005-05-03  Jackson Harper  <jackson@ximian.com>
14375         * Splitter.cs: No decorations for the splitter form. Cache the
14376         hatch brush.
14378 2005-05-03  Jackson Harper  <jackson@ximian.com>
14380         * TreeView.cs: Use dashed lines to connect nodes. Use the
14381         ControlPaint method for drawing the focus rect instead of doing
14382         that in treeview.
14384 2005-05-02  Peter Bartok  <pbartok@novell.com>
14386         * LinkLabel.cs: Fixed the fixes from r43566 and 43521
14388 2005-04-29  Jackson Harper  <jackson@ximian.com>
14390         * ThemeWin32Classic.cs: Don't clear the GC that will clear the
14391         entire image buffer. Just clear the clipping rectangle.
14393 2005-04-29  Jackson Harper  <jackson@ximian.com>
14395         * ThemeWin32Classic.cs: Don't draw list view items that are
14396         outside the clipping rectangle.
14398 2005-04-29  Jordi Mas i Hernandez <jordi@ximian.com>
14400         * ListBox.cs: added horizontal item scroll
14402 2005-04-29  Jackson Harper  <jackson@ximian.com>
14404         * ThemeWin32Classic.cs: Remove some old debug code that was
14405         causing flicker with the new double buffering code.
14407 2005-04-29  John BouAntoun  <jba-mono@optusnet.com.au>
14409         * MonthCalendar.cs, DateTimePicker.cs: Made monthcalendar dropdwon
14410         behave like combobox and comboboxlist (still not sure if this is
14411         correct though).
14413 2005-04-28  Jackson Harper  <jackson@ximian.com>
14415         * ThemeWin32Classic.cs: Don't fill the middle of progress
14416         bars. This fills areas outside of the clip bounds that don't need
14417         to be filled.
14419 2005-04-28  Jackson Harper  <jackson@ximian.com>
14421         * Control.cs: Don't expose functionality to touch the image buffers.
14422         * ProgressBar.cs:
14423         * ListView.cs: We do not need to (and no longer can) manipulate
14424         the image buffers directly. All of this is handled by Control.
14426 2005-04-28  Peter Bartok  <pbartok@novell.com>
14428         * RichTextBoxSelectionAttribute.cs, RichTextBoxSelectionTypes.cs,
14429           RichTextBoxScrollBars.cs, RichTextBoxStreamType.cs,
14430           RichTextBoxFinds.cs, RichTextBoxWordPunctuations.cs: Added
14432 2005-04-28  Jordi Mas i Hernandez <jordi@ximian.com>
14434         * Combobox:
14435                 - Adjust control's height for non-simple comboboxes (bug fix)
14436                 - Remove dead code
14437         * MenuAPI.cs: remove unused var
14438         * ScrollBar.cs: remove unsed var
14439                  
14440         * ListBox.cs: unselect items when clearing
14442 2005-04-28  Jordi Mas i Hernandez <jordi@ximian.com>
14444         * ListControl.cs: honors OnPositionChanged and default Selected Item
14445         * ListBox.cs: unselect items when clearing
14447 2005-04-27  Jackson Harper  <jackson@ximian.com>
14449         * X11Keyboard.cs: Initialize a default keyboard and give a warning
14450         if a "correct" keyboard is not found. This will make us not crash,
14451         but might give some users bad keyboard layouts...seems to be the
14452         same thing rewind does.
14454 2005-04-27  Jackson Harper  <jackson@ximian.com>
14456         * BindingManagerBase.cs: Attach the current/position changed
14457         handlers to their respective events.
14459 2005-04-27  Jackson Harper  <jackson@ximian.com>
14461         * Control.cs: Make sure that the first WM_PAINT does a full draw,
14462         not just a blit.
14463         * ThemeWin32Classic.cs: Don't fill the background for picture
14464         boxes. This could overright user drawing.
14465         * ComboBox.cs: Just fill the clipping rect not the entire client
14466         rect when drawing the background. This prevents pieces of the
14467         image buffer from getting overwritten and is theoretically faster.
14469 2005-04-26  Jordi Mas i Hernandez <jordi@ximian.com>
14471         * ComboBox.cs: Databinding support fixes, fire missing events
14472         * ListControl.cs: implement missing methods and properties, fixes
14473         * ThemeWin32Classic.cs: Databiding support on Drawing
14474         * CheckedListBox.cs: Databinding support fixes, fire missing events
14475         * ListBox.cs: Databinding support fixes, fire missing events
14476         
14477 2005-04-25  Peter Bartok  <pbartok@novell.com>
14479         * LinkLabel.cs: Length of LinkArea is not allowed to be negative
14481 2005-04-25  Jackson Harper  <jackson@ximian.com>
14483         * TreeView.cs: Use the horizontal scrollbars height not width when
14484         determining how much of the client area is available.
14486 2005-04-25  Jackson Harper  <jackson@ximian.com>
14488         * Control.cs: Double buffering is handled differently now. As per
14489         the spec, the extra buffer is created in the WM_PAINT message and
14490         passed down to the control's drawing code.
14491         * GroupBox.cs:
14492         * Label.cs:
14493         * CheckBox.cs:
14494         * ProgressBar.cs:
14495         * RadioButton.cs:
14496         * ColorDialog.cs:
14497         * ComboBox.cs:
14498         * PropertyGridView.cs:
14499         * UpDownBase.cs:
14500         * MessageBox.cs:
14501         * MenuAPI.cs:
14502         * ListView.cs:
14503         * ButtonBase.cs:
14504         * SizeGrip.cs:
14505         * ScrollBar.cs:
14506         * ListBox.cs:
14507         * TrackBar.cs:
14508         * ToolBar.cs:
14509         * PictureBox.cs:
14510         * DateTimePicker.cs:
14511         * StatusBar.cs:
14512         * TreeView.cs: Update to new double buffering system.
14513         * MonthCalendar.cs: Uncomment block, as Capture is now
14514         working. Update to new double buffering
14515         * LinkLabel.cs: Lazy init the link collection. Update to new double buffering
14516         * PaintEventArgs.cs: New internal method allows us to set the
14517         graphics object. This is used for double buffering.
14518         * ThemeWin32Classic.cs: Give the picture box drawing code a clip
14519         rectangle. The internal paint_area var has been removed from
14520         StatusBar. The clipping rect should be used instead.
14521         * Theme.cs: Give the PictureBox drawing method a clipping rect.
14522         * TabPage.cs: The RefreshTabs method was removed, so just call the
14523         tab controls Refresh method now.
14524         * TabControl.cs: Update to new double buffering. Make sure the
14525         handle is created before sizing the tab pages, otherwise we will
14526         get stuck in a loop.
14528 2005-04-24  Borja Sanchez Zamorano <borsanza@gmail.com>
14530         * LinkLabel.cs: Fix typo, bug #74719; patch
14531           from Borja Sanchez Zamorano
14533 2005-04-22  Jackson Harper  <jackson@ximian.com>
14535         * TreeNode.cs: Implement Handle stuff.
14536         * TreeView.cs: Utility methods so nodes can get/lookup by handle.
14538 2005-04-22  Jordi Mas i Hernandez <jordi@ximian.com>
14540         * DataGridTextBoxColumn.cs: call base constructors, fixes
14541         * GridColumnStylesCollection.cs: missing events, methods, and functionality
14542         * GridTableStylesCollection.cs: fixes, check duplicate mapping names
14543         * DataGridTableStyle.cs: implements create default column styles
14544         * DataGridBoolColumn.cs: which types can handle
14545         * DataGrid.cs: missing methods, fixes, new functionality
14546         * DataGridColumnStyle.cs: fixes
14548 2005-04-20  Alexander Olk  <xenomorph2@onlinehome.de>
14549         * FolderBrowserDialog.cs:
14550         - Use a thread to fill the TreeView
14551         - Adjusted some sizes
14553 2005-04-19  Peter Bartok  <pbartok@novell.com>
14555         * LinkLabel.cs: (Re-)create the pieces when setting the Text
14556           property. Fixes #74360.
14558 2005-04-19  Jackson Harper  <jackson@ximian.com>
14560         * XEventQueue.cs: Lock when getting the lockqueue size.
14561         * PictureBox.cs: Call base OnPaint
14562         
14563 2005-04-19  Peter Bartok  <pbartok@novell.com>
14565         * XplatUIX11.cs: Fixed bug introduced with the HWND rewrite, Async
14566           messages were no longer being processed (this broke BeginInvoke)
14568           
14569 2005-04-18  Jackson Harper  <jackson@ximian.com>
14571         * TreeView.cs: buglet that caused node images to get drawn
14572         regardless of whether or not they were in the clipping rectangle.
14574 2005-04-18  Jackson Harper  <jackson@ximian.com>
14576         * CurrencyManager.cs: There are four rules for GetItemProperties:
14577         - If the type is an array use the element type of the array
14578         - If the type is a typed list, use the type
14579         - If the list contains an Item property that is not an object, use
14580         that property
14581         - use the first element of the list if there are any elements in
14582         the list.
14583         
14584 2005-04-17  Jackson Harper  <jackson@ximian.oom>
14586         * TreeView.cs: Calculate plus minus and checkbox bounds when there is a
14587         click. This handles offsets for scrolling properly and reduces
14588         memory. Also fixed GetNode to not offset now that TopNode works
14589         properly.
14590         * TreeNode.cs: No longer need to track the plus minus or checkbox bounds.
14591         
14592 2005-04-17  Jackson Harper  <jackson@ximian.com>
14594         * CursorConverter.cs: Initial implementation.
14596 2005-04-15  Jordi Mas i Hernandez <jordi@ximian.com>
14598         * ListControl.cs: work towards complex data binding support on ListControl
14599         * CurrencyManager.cs: work towards complex data binding support on ListControl
14600         * ListBox.cs: work towards complex data binding support on ListControl
14603 2005-04-15  Jordi Mas i Hernandez <jordi@ximian.com>
14605         * GridTableStylesCollection.cs: fixes name and constructor
14606         * DataGridTableStyle.cs: fixes
14607         * DataGridBoolColumn.cs: fixes names and constructors
14608         * DataGrid.cs: define methods and properties. Some init implementations
14609         * DataGridCell.cs: define methods and properties. Some init implementations
14610         * GridTablesFactory.cs: Define methods and properties
14612 2005-04-15  Geoff Norton  <gnorton@customerdna.com>
14614         * XplatUIOSX.cs:  Handle proper mouse tracking even if the current
14615         graphics port changes.  We still want the coordinates in global screen
14616         coordinates.
14618 2005-04-14  Jackson Harper  <jackson@ximian.com>
14620         * TreeView.cs: Handle clicks when plus minus is disabled. Don't
14621         check plus minus or checkbox clicks unless those features are enabled.
14623 2005-04-14  Jackson Harper  <jackson@ximian.com>
14625         * TreeView.cs: Add methods for setting the top and bottom visible
14626         nodes. TreeNode::EnsureVisible uses these methods.
14627         * TreeNode.cs: Implement EnsureVisible
14629 2005-04-13  Jordi Mas i Hernandez <jordi@ximian.com>
14631         * Form.cs: Pospone menu assignation if the window has not been created yet
14632         * XplatUIWin32.cs: Fixes Win32SetWindowPos, then does not change window
14633         size and position
14635 2005-04-12  Jackson Harper  <jackson@ximian.com>
14637         * TreeView.cs: Set the TopNode properly when scrolling
14638         occurs. This has the added benifit of reducing the amount of
14639         walking that needs to be done when drawing. Also removed an old
14640         misleading TODO.
14641         * OpenTreeNodeEnumerator.cs: Fix moving backwards.
14642         
14643 2005-04-11  Jordi Mas i Hernandez <jordi@ximian.com>
14645         * Timer.cs: fixes interval setting when the timer is already enabled
14646         
14647 2005-04-10  Alexander Olk  <xenomorph2@onlinehome.de>
14649         * FolderBrowserDialog.cs: First approach
14651 2005-04-09  Peter Bartok  <pbartok@novell.com>
14653         * FolderBrowserDialog: Added
14655 2005-04-07  Jordi Mas i Hernandez <jordi@ximian.com>
14657         * LinkLabel.cs: move drawing code into the theme
14658         * ThemeWin32Classic.cs: drawing code and painting background bugfix
14659         * Theme.cs: define DrawLinkLabel method
14661 2005-04-05  Jackson Harper  <jackson@ximian.com>
14663         * BindingContext.cs: Use weak references so these bad actors don't
14664         stay alive longer then they need to.
14666 2005-04-05  Jackson Harper  <jackson@ximian.com>
14668         * ListControl.cs: Basic implementation of complex databinding.
14669         * ComboBox.cs:
14670         * ListBox.cs: Add calls to ListControl databinding methods.
14672 2005-04-05  Alexander Olk  <xenomorph2@onlinehome.de>
14674         * FileDialog.cs:
14675           - Don't change PopupButtonState to Normal when the
14676             PopupButton gets pressed several times.
14677           - Renamed ButtonPanel to PopupButtonPanel
14679 2005-04-05  Jordi Mas i Hernandez <jordi@ximian.com>
14681         * ColorDialog.cs: Use cached objects instead of creating them
14682         * LinkLabel.cs: Use cached objects instead of creating them
14683         * Splitter.cs: Use cached objects instead of creating them
14684         * FontDialog.cs: Use cached objects instead of creating them
14685         * PropertyGridView.cs: Use cached objects instead of creating them
14686         * MessageBox.cs: Use cached objects instead of creating them
14687         * FileDialog.cs: Use cached objects instead of creating them
14688         * ThemeWin32Classic.cs: Use cached objects instead of creating them
14689         * TreeView.cs: Use cached objects instead of creating them
14690         
14691 2005-04-04  Jordi Mas i Hernandez <jordi@ximian.com>
14693         * Control.cs: use Equals to compare the font since no == op
14694         * ScrollBar.cs: use Equals to compare the font since no == op
14696 2005-04-04  Alexander Olk  <xenomorph2@onlinehome.de>
14698         * SaveFileDialog.cs: Open stream in OpenFile with FileMode Create
14700 2005-04-01  Jackson Harper  <jackson@ximian.com>
14702         * Binding.cs: Implement IsBinding.
14703         * BindingManagerBase.cs:
14704         * PropertyManager.cs:
14705         * CurrencyManager.cs: Add IsSuspended property.
14707 2005-04-01  Jackson Harper  <jackson@ximian.com>
14709         * Binding.cs: Had some IsAssignableFrom calls backwards.
14711 2005-04-01  Jackson Harper  <jackson@ximian.com>
14713         * Binding.cs: Handle null data members when pulling data.
14714         * PropertyManager.cs: Handle the data member being a property that
14715         does not exist.
14717 2005-04-01  Jordi Mas i Hernandez <jordi@ximian.com>
14719         * DataGridTextBoxColumn.cs: fixes signature
14720         * DataGrid.cs: calls right constructor
14722 2005-04-01  Jordi Mas i Hernandez <jordi@ximian.com>
14724         * DataGridTextBoxColumn.cs: implements DataGridTextBoxColumn class
14725         * GridColumnStylesCollection.cs: implements GridColumnStylesCollection
14726         * GridTableStylesCollection.cs: implements GridTableStylesCollection
14727         * DataGridTableStyle.cs: implements DataGridTableStyle
14728         * DataGridBoolColumn.cs: implements DataGridBoolColumn
14729         * DataGridTextBox.cs: implements DataGridTextBox
14730         * DataGridColumnStyle.cs: implements DataGridColumnStyle
14732 2005-03-31  Alexander Olk  <xenomorph2@onlinehome.de>
14734         * FileDialog.cs: Added simple PopupButton class for ButtonPanel
14736 2005-03-29  Peter Bartok  <pbartok@novell.com>
14738         * Application.cs:
14739           - Properly implemented CompanyName property
14740           - Fixed LocalUserAppDataPath and UserAppDataPath, now properly
14741             returns a path that includes CompanyName, ProductName and
14742             Version (fixes bug #70330)
14744 2005-03-29  Stefan Buehler  <sbuehler@gmx.ch>
14746         * TabPage.cs: Don't use Owner.DisplayRectangle unless owner is valid,
14747           fixes bug #72588.
14749 2005-03-28  Alexander Olk  <xenomorph2@onlinehome.de>
14751         * FileDialog.cs, SaveFileDialog.cs OpenFileDialog.cs:
14752         
14753           - Added ReadOnly CheckBox
14754           - Further refactoring: moved some code from Open-/SaveFileDialog
14755             to FileDialog
14757 2005-03-28  Alexander Olk  <xenomorph2@onlinehome.de>
14759         * OpenFileDialog.cs: Fixed CheckFileExists
14760         * FileDialog.cs:
14761           Moved FileView and DirComboBox outside FileDialog class.
14762           They can now be used outside FileDialog
14764 2005-03-27  Alexander Olk  <xenomorph2@onlinehome.de>
14766         * FileDialog.cs: Added a contextmenu to change ShowHiddenFiles
14767         * SaveDialog.cs, OpenFileDialog.cs: Fixes for Reset() method
14769 2005-03-27  Alexander Olk  <xenomorph2@onlinehome.de>
14771         * FileDialog.cs, OpenFileDialog.cs, SaveFileDialog.cs:
14772           - Added missing CreatePrompt property in SaveDialog
14773           - Overall SaveDialog handling should be better now
14774           - Added non standard ShowHiddenFiles property
14775           - Added extension, CreatePrompt and OverwritePrompt support in SaveDialog
14776           - Added InitialDirectory and RestoreDirectory support
14778 2005-03-26  Alexander Olk  <xenomorph2@onlinehome.de>
14780         * FileDialog.cs: Made dirComboBox usable
14782 2005-03-24  Alexander Olk  <xenomorph2@onlinehome.de>
14784         * FileDialog.cs: Added Filter support (case sensitiv)
14786 2005-03-24  Jackson Harper  <jackson@ximian.com>
14788         * TabControl.cs: Need a couple more pixels for the lines.
14790 2005-03-23  Jackson Harper  <jackson@ximian.com>
14792         * TabControl.cs: Give the tab page focus when it is selected.
14794 2005-03-23  Jackson Harper  <jackson@ximian.com>
14796         * TabControl.cs: Account for the drawing of tabs borders when
14797         invalidating. If the slider was clicked dont do click detection on
14798         the tabs.
14800 2005-03-23  Jackson Harper  <jackson@ximian.com>
14802         * TabControl.cs: Fix typo, emilinates an unneeded expose event.
14804 2005-03-22  Jonathan Chambers  <jonathan.chambers@ansys.com>
14806         * CategoryGridEntry.cs: Added
14807         * GridItem.cs: Added helper properties
14808         * PropertyGridTextBox.cs: Custom textbox control for PropertyGrid.
14809         * GridEntry.cs: Updated code for collection
14810         * PropertyGrid.cs: Cleaned up some formatting
14811         * PropertyGridView.cs: Added drop down functionality for enums.
14812         * GridItemCollection.cs: Added enumerator logic
14813         * PropertyGridEntry.cs: Added
14815 2005-03-19  Alexander Olk  <xenomorph2@onlinehome.de>
14817         * FileDialog.cs:
14818           - Removed unnecessary commented code
14819           - Fixed handling for entering the filename manually in the combobox
14821 2005-03-19  Alexander Olk  <xenomorph2@onlinehome.de>
14823         * FileDialog.cs, OpenFileDialog.cs: OpenFileDialog Multiselect now works
14825 2005-03-18  Peter Bartok  <pbartok@novell.com>
14827         * ThemeWin32Classic.cs: Moved listview column headers a bit, to avoid
14828           them being touching the border
14830 2005-03-18  Peter Bartok  <pbartok@novell.com>
14832         * TextControl.cs: Quick hack to center text better
14834 2005-03-18  Peter Bartok  <pbartok@novell.com>
14836         * ControlPaint.cs:
14837           - Don't throw NotImplemented exceptions, just print a notice once
14838             instead (requested by Miguel). This makes running existing SWF
14839             apps a bit easier
14840         * Control.cs:
14841           - Commented out Drag'N'Drop XplatUI call (no driver support yet)
14842           - Added context menu trigger on right click
14843         * Panel.cs: Trigger invalidate on resize
14844         * StatusBar.cs:
14845           - Removed old double-buffer drawing
14846           - Added ResizeRedraw style to force proper update of statusbar
14847         * ListView.cs:
14848           - Removed debug output
14849         * ThemeWin32Classic.cs:
14850           - Fixed drawing of status bar, now draws Text property if there
14851             are no defined panels
14853 2005-03-18  Jackson Harper  <jackson@ximian.com>
14855         * ImageList.cs: When the image stream is set pull all the images
14856         from it.
14857         * ImageListStreamer.cs: Implement reading image list streams.
14859 2005-03-18  Peter Bartok  <pbartok@novell.com>
14861         * ThemeWin32Classic.cs (DrawPictureBox):
14862           - Fixed calculations for centered drawing
14863           - Fixed drawing for normal mode, not scaling the image on normal
14865 2005-03-18  Peter Bartok  <pbartok@novell.com>
14867         * ComboBox.cs: Now also firing the OnKeyPress events for the embedded
14868           textbox
14869         * FileDialog.cs:
14870           - Made Open/Save button the accept button for FileDialog
14871           - Tied the cancel button to the IButtonControl cancel button
14872           - Save/Open now properly builds the pathname
14873           - Now handles user-entered text
14874           - Preventing crash on right-click if no item is selected
14875           - Fixed Text property, now uses contents of textbox
14876           - Fixed SelectedText property, now just returns the text part that
14877             is selected in the text box
14879 2005-03-18  Jackson Harper  <jackson@ximian.com>
14881         * ThemeWin32Classic.cs: Use the proper func for drawing the focus
14882         rect, make sure to de-adjust the interior rect after drawing the
14883         tab text.
14885 2005-03-18  Peter Bartok  <pbartok@novell.com>
14887         * MenuAPI.cs: Remove menu *before* executing selected action to
14888           prevent the menu from 'hanging around'
14889           
14890 2005-03-17  Geoff Norton  <gnorton@customerdna.com>
14892         * XplatUIOSX.cs: Implemented WorkingArea property
14894 2005-03-17  Peter Bartok  <pbartok@novell.com>
14896         * XplatUIX11.cs: Fixed menu coord calculations
14897         * MenuAPI.cs: Now using new ScreenToMenu()/MenuToScreen() methods
14898           for calculating offsets
14900 2005-03-17  Peter Bartok  <pbartok@novell.com>
14902         * Hwnd.cs: Do not consider menu presence for default client
14903           rectangle location/size
14904         * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs, XplatUIOSX.cs,
14905           XplatUIWin32.cs: Added MenuToScreen() and ScreenToMenu() coord
14906           translation functions
14907         * FileDialog.cs: Fixed (what I presume is a) typo
14909 2005-03-17  Jonathan Gilbert  <logic@deltaq.org>
14911         * XplatUIX11.cs: Added call to XInitThreads() to allow multi-threaded
14912           X access (avoids X-Async errors)
14914 2005-03-16  Jackson Harper  <jackson@ximian.com>
14916         * TabControl.cs: Raise the SelectedIndexChanged event.
14918 2005-03-16  Alexander Olk  <xenomorph2@onlinehome.de>
14920         * FileDialog.cs, OpenFileDialog.cs, SaveFileDialog.cs:
14921           - Removed vertical ToolBar and replaced it with a custom panel
14922             (desktop and home button already work)
14923           - Added Help button (some controls get resized or relocated then)
14924           - Draw correct text depending on Open or Save.
14925           - Fixed some typos...
14927 2005-03-16  Jordi Mas i Hernandez <jordi@ximian.com>
14929         * ScrollBar.cs:
14930           - Only change Maximum and Minimum when need it (bug fix)
14932 2005-03-15  Peter Bartok  <pbartok@novell.com>
14934         * Form.cs: Use Handle for icon, to trigger creation if
14935           the window does not yet exist
14936         * Control.cs:
14937           - CanSelect: Slight performance improvement
14938           - Focus(): Preventing possible recursion
14939           - Invalidate(): Removed ControlStyle based clear flag setting
14940           - WM_PAINT: fixed logic for calling OnPaintBackground
14941           - WM_ERASEBKGND: Fixed logic, added call to new driver method
14942             EraseWindowBackground if the control doesn't paint background
14943         * XplatUIWin32.cs:
14944           - Moved EraseWindowBackground() method to internal methods
14945           - Removed unused WM_ERASEBKGND handling in GetMessage; msg never comes;
14946             is sent via SendMessage on BeginPaint call on Win32
14947         * XplatUIX11.cs:
14948           - Added EraseWindowBackground() method
14949           - No longer sends WM_ERASEBKGND on .Expose, but on call to
14950             PaintEventStart, which more closely matches Win32 behaviour
14951           - Fixed Invalidate() call, now updates new ErasePending Hwnd property
14952           - Fixed SetFocus() to properly deal with client and whole windows
14953         * Hwnd.cs: Added ErasePending property
14954         * XplatUIOSX.cs: Stubbed EraseWindowBackground() method
14955         * XplatUI.cs, XplatUIDriver.cs: Added EraseWindowBackground() method
14957 2005-03-12  Geoff Norton  <gnorton@customerdna.com>
14959         * XplatUIOSX.cs:
14960           - Fix hard loop when timers exist.
14961           - Fix bugs with middle and right click for 3 button mice.
14963 2005-03-11  Peter Bartok  <pbartok@novell.com>
14965         * XplatUIX11.cs:
14966           - get_WorkingArea: Need to call X directly, GetWindowPos only
14967             returns cached data now
14968           - Added sanity check to GetWindowPos hwnd usage
14970 2005-03-11  Jackson Harper  <jackson@ximian.com>
14972         * BindingManagerBase.cs: This method isn't used anymore as
14973         PullData now updates the data in the control.
14975 2005-03-11  Jordi Mas i Hernandez <jordi@ximian.com>
14977         * Form.cs: fixes menu drawing on X11
14978         * MenuAPI.cs:  fixes menu drawing on X11
14980 2005-03-11  Peter Bartok  <pbartok@novell.com>
14982         * Control.cs: Changed OnCreateControl behaviour based on a suggestion
14983           from Jonathan Gilbert; should fix bug #73606
14984         * XplatUIX11.cs: Fixed NC Mouse message coordinates, they need to be
14985           in Screen coordinates. Thanks, Jordi.
14986         * Form.cs: Added missing attribute
14988 2005-03-11  Peter Bartok  <pbartok@novell.com>
14990         * Form.cs:
14991           - Rudimentary Mdi support
14992           - Removed outdated FormParent code
14993           - Implemented lots of missing properties and methods, still missing
14994             transparency support
14995           - Added missing attributes
14996           - Implemented support for MaximumBounds
14997           - Added firing of various events
14998         * XplatUI.cs: Added SetIcon() method
14999         * XplatUIDriver.cs: Added SetIcon() abstract
15000         * XplatUIOSX.cs: Stubbed out SetIcon() method
15001         * XplatUIX11.cs:
15002           - Implemented SetIcon() support
15003           - Moved SetMenu() and SetBorderStyle() to proper alphabetical pos
15004           - Switched to unix line endings
15005         * XplatUIWin32.cs:
15006           - Made POINT internal so for can access it as part of MINMAX
15007           - Implemented SetIcon() support
15008           - Implemented support for CLIENTCREATESTRUCT (but might have to drop
15009             native Mdi support again, might have to go managed)
15010         * Control.cs: Now fires the StyleChanged event
15011         * MdiClient.cs: Added; still mostly empty
15013 2005-03-10  Peter Bartok  <pbartok@novell.com>
15015         * SaveFileDialog.cs: Added emtpy file
15017 2005-03-08  Peter Bartok  <pbartok@novell.com>
15019         * Control.cs: Fixed bug #73190; now invokes CreateControl (which
15020           in turn triggers OnCreateContro) when creating a handle for the
15021           first time.
15022         * TextControl.cs: Fixed endless loop in certain cases when
15023           replacing the current selection
15025 2005-03-08  Jordi Mas i Hernandez <jordi@ximian.com>
15027         * ScrollBar.cs:
15028           - Honors NewValue changes in Scroll events allowing apps to change it
15029           - Adds First and Last Scroll events
15030           - Fixes Thumb events
15032 2005-03-07  Peter Bartok  <pbartok@novell.com>
15034         * Hwnd.cs: Added DefaultClientRectangle property
15035         * XplatUI.cs: Now using the X11 driver Where() method, which provides
15036           more detailed debug information
15037         * XplatUIX11.cs:
15038           - Fixed size-change feedback loop, where we would pull an old size
15039             off the queue and mistakenly change our window's size to an
15040             earlier value
15041           - Now compressing ConfigureNotify events, to reduce looping and
15042             redraw issues
15043         * TextBoxBase.cs: Preventing crash when no text is set and ToString()
15044           is called
15046 2005-03-07  Jackson Harper  <jackson@ximian.com>
15048         * Binding.cs: Push data pushes from data -> property. Check if the
15049         property is readonly when attempting to set it.
15051 2005-03-07  Jackson Harper  <jackson@ximian.com>
15053         * Binding.cs: Format and parse data correctly. Use ASsignableFrom
15054         instead of IsSubclassOf. Pulling data now sets the value on the
15055         control.
15056         * PropertyManager.cs:
15057         * CurrencyManager.cs: Just need to pull data when updating now,
15058         because PullData will set the value on the control.
15060 2005-03-04  Jackson Harper  <jackson@ximian.com>
15062         * Binding.cs: Implement data type parsing and converting on pulled
15063         data. TODO: Are there more ways the data can be converted?
15065 2005-03-04  Jackson Harper  <jackson@ximian.com>
15067         * Binding.cs: Support <Property>IsNull checks. Also bind to the
15068         controls Validating method so we can repull the data when the
15069         control loses focus.
15071 2005-03-03  Jordi Mas i Hernandez <jordi@ximian.com>
15073         * ColumnHeader.cs:
15074           - Fixes null string format
15075           
15076         * ListView.cs:
15077           - Adds enum type checks
15078           - Fixes redrawing and recalc need after changing some properties
15079           - Fixes on focus_item set after the event
15080           - Fixes adding columns after the control has been created
15081           
15082         * ThemeWin32Classic.cs:
15083           - Fixes CheckBox focus rectangle
15084           - Fixes ColumnHeader drawing
15087 2005-03-03  Jackson Harper  <jackson@ximian.com>
15089         * Binding.cs: Bind to <Property>Changed events so we can detect
15090         when properties are changed and update the data.
15092 2005-03-02  Jordi Mas i Hernandez <jordi@ximian.com>
15094         * ImageList.cs:
15095           - Changes 32-bit pixel format to Format32bppArgb to allow transparency
15096           - Fixes ImageList constructor with ImageList container
15097           - Fixes image scaling (wrong parameters at DrawImage)
15099 2005-02-02  Jackson Harper  <jackson@ximian.com>
15101         * Binding.cs: Make property searches case-insensitive. Eliminate
15102         some duplicated code.
15104 2005-03-01  Jordi Mas i Hernandez <jordi@ximian.com>
15106         * ComboBox.cs:
15107                 - Handle focus event
15108                 - Fix scrollbar events
15109                 - Discard highlighted item if remove it
15110                 - Fixes SelectedItem with strings
15112 2005-03-01  Peter Bartok  <pbartok@novell.com>
15114         * Control.cs:
15115           - Fixed Visible property, now follows (once again) parent chain
15116             to return false if any control in the chain is visible=false
15117           - Fixed OnParentVisibleChanged, now just calls OnVisibleChanged event
15118           - Fixed several places where is_visible instead of Visible was used
15119           - Implemented FIXME related to focus selection when setting focused
15120             control to be invisible
15122         * XplatUIWin32.cs: Now using proper method to find out if window is
15123           visible. Thanks to Jordi for pointing it out
15125 2005-02-28  Jordi Mas i Hernandez <jordi@ximian.com>
15127         * ComboBox.cs: show/hide scrollbar instead of creating it
15129 2005-02-27  Jackson Harper  <jackson@ximian.com>
15131         * CurrencyManager.cs: Add PositionChanged stuff.
15133 2005-02-27  Peter Bartok  <pbartok@novell.com>
15135         * XplatUI.cs, XplatUIDriver.cs: Added new GetMenuOrigin() method
15136         * XplatUIOSX.cs: Added GetMenuOrigin() stub
15137         * XplatUIWin32.cs: Implemented GetMenuOrigin()
15138         * XplatUIX11.cs:
15139           - Implemented GetMenuDC()
15140           - Implemented GetMenuOrigin()
15141           - Implemented ReleaseMenuDC()
15142           - Implemented generation of WM_NCPAINT message
15143           - Implemented generation and handling of WM_NCCALCSIZE message
15144         * Form.cs: Added debug helper message for Jordi's menu work
15145         * Hwnd.cs:
15146           - Modified ClientRect property; added setter, fixed getter to handle
15147             setting of ClientRect
15148           - Added MenuOrigin property
15150 2005-02-26  Peter Bartok  <pbartok@novell.com>
15152         * XplatUIX11.cs:
15153           - Destroys the caret if a window that's being destroyed contains it
15154           - Ignores expose events coming from the X11 queue for windows that
15155             already are destroyed
15156           - Now uses the proper variable for handling DestroyNotify, before we
15157             marked the wrong window as destroyed
15158           - Improved/added some debug output
15160 2005-02-26  Peter Bartok  <pbartok@novell.com>
15162         * X11Keyboard.cs: Fixes to work on 64bit systems
15164 2005-02-26  Peter Bartok  <pbartok@novell.com>
15166         * Control.cs:
15167           - Now calling OnHandleDestroyed from DestroyHandle()
15168             instead of Dispose()
15169           - Removed bogus call to controls.Remove() from DestroyHandle()
15171 2005-02-26  Peter Bartok  <pbartok@novell.com>
15173         * Control.cs: Properly destroy child windows when our handle is
15174           destroyed
15176 2005-02-25  Peter Bartok  <pbartok@novell.com>
15178         * XplatUI.cs:
15179           - Added 'DriverDebug' define to allow tracing XplatUI API calls
15180           - Alphabetized Static Methods and Subclasses
15182         * XplatUIX11.cs:
15183           - Added XException class to allow custom handling of X11 exceptions
15184           - Created custom X11 error handler, tied into XException class
15185           - Added support for MONO_XEXCEPTIONS env var to allow the user
15186             to either throw an exception on X errors or continue running
15187             after displaying the error
15188           - Added handling of DestroyNotify message
15189           - Added handler for CreateNotify message (still disabled)
15190           - Improved (tried to at least) Where method to provide file and lineno
15191         * X11Structs.cs:
15192           - Added XErrorHandler delegate
15193           - Added XRequest enumeration (to suppor translation of errors)
15195 2005-02-25  Jackson Harper  <jackson@ximian.com>
15197         * PropertyManager.cs: Implement editing features
15198         * CurrencyManager.cs:
15199         * Binding.cs: First attempt at UpdateIsBinding
15200         * BindingManagerBase.cs: Call UpdateIsBinding before
15201         pushing/pulling data.
15203 2005-02-25  Jordi Mas i Hernandez <jordi@ximian.com>
15205         * MenuAPI.cs: Respect disabled items
15206         * ThemeWin32Classic.cs
15207                 - Caches ImageAttributes creation for DrawImageDisabled
15208                 - Fixes vertical menu line drawing
15209                 - Draws disabled arrows in disable menu items
15211 2005-02-24  Peter Bartok  <pbartok@novell.com>
15213         * Hwnd.cs:
15214           - Added UserData property to allow associating arbitrary objects
15215             with the handle
15216           - Fixed leak; now removing Hwnd references from static windows array
15217         * XplatUIWin32.cs:
15218           - Fixed Graphics leak in PaintEventEnd
15219           - Removed usage of HandleData, switched over to Hwnd class
15220         * HandleData.cs: Removed, obsoleted by Hwnd.cs
15222 2005-02-24  Jordi Mas i Hernandez <jordi@ximian.com>
15224         * ThemeWin32Classic.cs: Adds Cliping to TrackBar drawing
15225         * ScrollBar.cs: Fixes bug
15226         * TrackBar.cs: removes death code, clipping, mimize refreshes,
15227          keyboard navigation enhancements
15229 2005-02-24  Jordi Mas i Hernandez <jordi@ximian.com>
15231         * Control.cs: Call DefWndProc at WM_PAINT only if UserPaint not defined
15232         * GroupBox.cs: Add control styles
15233         * Label.cs: Add control styles
15234         * UpDownBase.cs: Add control styles
15235         * ListBox.cs: Add control styles
15236         * XplatUIWin32.cs: Fixes wrong parameter order
15239 2005-02-23  Chris Bacon  <chris.bacon@docobo.co.uk>
15241         * ListView.cs: Assign owner for ColumnHeader. Patch by Chris Bacon
15243 2005-02-23  Jackson Harper  <jackson@ximian.com>
15245         * PropertyManager.cs: Implement property binding. This doesn't
15246         seem to work yet though as (I think) there are some bugs in
15247         System.ComponentModel.PropertyDescriptor.
15248         * BindingContext.cs: Use new PropertyManager constructor.
15250 2005-02-23  Jordi Mas i Hernandez <jordi@ximian.com>
15252         * ProgressBar.cs: use clip region in ProgressBar
15253         * ThemeWin32Classic.cs: use clip region in ProgressBar
15255 2004-02-22  Jackson Harper  <jackson@ximian.com>
15257         * BindingsCollection.cs: Remove some debug code.
15259 2005-02-22  Jackson Harper  <jackson@ximian.com>
15261         * BindingContext.cs:
15262         * ControlBindingsCollection.cs:
15263         * CurrencyManager.cs:
15264         * Binding.cs:
15265         * BindingManagerBase.cs: Initial implementation
15266         * BindingsCollection.cs: Add an internal contains method that the
15267         BindingManagerBase uses to ensure bindings aren't added twice to
15268         the collection.
15269         * PropertyManager.cs: Stubbed out.
15270         * Control.cs:
15271         * ContainerControl.cs: Hook up databinding
15272         
15273 2005-02-22  Geoff Norton  <gnorton@customerdna.com>
15275         * XplatUIOSX.cs:
15276           OSXStructs.cs: Refactored to handle the new Hwnd NC logic area.
15277           Fixed Invalidate/Update chain.
15278           Fixed tons of other minor bugs (this is almost a complete rewrite).
15280 2005-02-22  Jordi Mas i Hernandez <jordi@ximian.com>
15282         * ComboBox.cs: do subcontrol creation when the control is created
15284 2005-02-19  Jordi Mas i Hernandez <jordi@ximian.com>
15286         * Label.cs: fixes image drawing (image and imagelist)
15287         * ThemeWin32Classic.cs: cache brushes
15288         
15289 2005-02-19  Jordi Mas i Hernandez <jordi@ximian.com>
15291         * Form.cs: Move menu drawing code to Theme class
15292         * ComboBox.cs: Move ComboBox drawing code to Theme class
15293         * MenuItem.cs: Move menu drawing code to Theme class
15294         * MenuAPI.cs: Move menu drawing code to Theme class
15295         * ThemeWin32Classic.cs: New methods
15296         * CheckedListBox.cs: Move CheckedListbox drawing code to Theme class
15297         * ListBox.cs: Move Listbox drawing code to Theme class
15298         * Theme.cs: New methods
15300 2005-02-20  Peter Bartok  <pbartok@novell.com>
15302         * Control.cs:
15303           - Fixed ProcessKeyEventArgs to also handle WM_SYSKEY messages (and
15304             only process mnemonics on those)
15305           - Fixed event sequence for key handling; first calling
15306             ProcessKeyEventArgs now
15307         * TextBoxBase.cs:
15308           - Removed WM_KEYDOWN hook, instead we now use ProcessDialogKey()
15309             for processing non-character keys
15310           - Fixed WM_CHAR to generate proper event sequence before processing
15311         * XplatUIWin32.cs: Added ALT key state to ModifierKeys property
15312           generation
15314 2005-02-19  Peter Bartok  <pbartok@novell.com>
15316         * UserControl.cs: Added TextChanged event; added attributes
15317         * SizeGrip.cs: Implemented resizing and optional display of grip
15318         * Form.cs: Fixed attribute
15319         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs, XplatUIWin32.cs:
15320           Changed meaning of ScrollWindow bool argument; instead of the
15321           clear attribute (which will be true usually anyway), it gives the
15322           option of moving child controls as well.
15323         * XplatUIX11.cs:
15324           - Changed to match new ScrollWindow argument
15325           - Fixed GetWindowPos/SetWindowPos behaviour for toplevel controls,
15326             now handles the implicit parent window a WM puts around us
15327         * ScrollableControl.cs: Implemented (not the prettiest, but it seems
15328           to work)
15329         * TextBoxBase.cs: Adjusted to new ScrollWindow arguments
15330         * TreeView.cs: Adjusted to new ScrollWindow arguments
15332 2005-02-19  Jordi Mas i Hernandez <jordi@ximian.com>
15334         * Form.cs: Menu integration with non-client area
15335         * MenuItem.cs: Menu integration with non-client area
15336         * MenuAPI.cs: Menu integration with non-client area
15338 2005-02-18  Peter Bartok  <pbartok@novell.com>
15340         * MethodInvoker.cs: Added
15341         * MdiLayout.cs: Added
15342         * SendKeys.cs: Started implementation
15343         * ErrorIconAlignment.cs: Added
15345 2005-02-18  Peter Bartok  <pbartok@novell.com>
15347         * XplatUIWin32.cs: Implemented SetMenu(); fixed GetMenuDC()
15348         * Form.cs: Added handling for Menu-related Non-client messages
15350 2005-02-17  Peter Bartok  <pbartok@novell.com>
15352         * UpDownBase.cs: Fixed typo, compilation errors
15353         * DomainUpDown.cs: Fixed attribute value
15355 2005-02-16  Miguel de Icaza  <miguel@novell.com>
15357         * UpDownBase.cs: Attach entry events.
15358         Propagate events.
15359         Add ForeColor property, Focused, InterceptArrowKeys (interception
15360         does not work yet).
15362 2005-02-17  Jordi Mas i Hernandez <jordi@ximian.com>
15364         * Form.cs:
15365                 - Redraw non client are on Setmenu
15366                 - Calc proper menu starting point
15368 2005-02-17  Peter Bartok  <pbartok@novell.com>
15370         * Application.cs: Fixed message_filter check
15372 2005-02-17  Peter Bartok  <pbartok@novell.com>
15374         * Application.cs: Now calls registered message filters
15375         * DockStyle.cs: Fixed attribute
15376         * Form.cs: Fixed attribute
15377         * Menu.cs: Fixed attribute
15378         * ToolTip.cs: Fixed attribute
15379         * TreeNode.cs: Added missing attributes and arranged in regions
15380         * PropertyGrid.cs: Fixed signatures
15381         * TreeNodeCollection.cs: Added attributes
15382         * Splitter.cs: Added missing attributes; arranged into regions
15383         * TabPage.cs: Added missing attributes; arranged into regions
15384         * TextBoxBase.cs: Added missing attributes
15385         * TextBox.cs: Added missing attributes
15386         * ArrangeDirection.cs: Added missing attributes
15387         * TreeNodeConverter.cs: Added stub (needed for TreeNode)
15388         * ToolBarButton.cs: Fixed attributes
15389         * AnchorStyles.cs: Fixed attribute
15390         * TrackBar.cs: Fixed attributes
15391         * TabControl.cs: Added missing attributes and arranged into regions
15392         * ToolBar.cs: Fixed attribute
15393         * StatusBar.cs: Fixed signature, organized into regions and added
15394           attributes
15395         * StatusBarPanel.cs: Fixed attributes
15396         * ContentsResizedEventArgs.cs: Implemented
15397         * ContentsResizedEventHandler.cs: Implemented
15398         * DateBoldEventArgs.cs: Implemented
15399         * DateBoldEventHandler.cs: Implemented
15400         * UpDownEventArgs.cs: Implemented
15401         * UpDownEventHandler.cs: Implemented
15402         
15403 2005-02-16  Jordi Mas i Hernandez <jordi@ximian.com>
15405         * Form.cs: first Menu NC refactoring
15406         * MenuAPI.cs: first Menu NC refactoring
15407         
15408 2005-02-16  Peter Bartok  <pbartok@novell.com>
15410         * ImeMode.cs: Added missing attributes
15411         * Menu.cs: Fixed attribute
15412         * GroupBox.cs: Fixed attribute
15413         * Label.cs: Fixed attribute
15414         * ColorDialog.cs (RunDialog): Removed TODO attribute
15415         * ComboBox.cs: Fixed attributes
15416         * ListControl.cs: Added missing attributes
15417         * PropertyGrid.cs: Fixed attributes
15418         * Control.cs: Fixed attributes
15419         * ListViewItem.cs: Added TypeConverter attribute
15420         * NotifyIcon.cs: Fixed attributes
15421         * ListView.cs: Fixed attributes
15422         * ButtonBase.cs: Fixed attribute
15423         * ImageList.cs: Added missing attributes
15424         * ContainerControl.cs: Fixed signature
15425         * CheckedListBox.cs: Fixed attribute; added missing attributes
15426         * Panel.cs: Fixed attributes
15427         * PropertyTabChangedEventArgs.cs: Added missing attribute
15428         * PropertyValueChangedEventArgs.cs: Added missing attribute
15429         * Binding.cs: Fixed attribute
15430         * ListViewItemConverter: Implemented ListViewSubItemConverter class
15431         * ListBox.cs: Fixed attribute; added missing attributes;
15432         * ScrollableControl.cs: Added missing attributes
15433         * PictureBox.cs: Added missing attributes; implemented missing property
15434         * DateTimePicker.cs: Added missing attributes
15435         * Theme.cs (ToolWindowCaptionHeight): Fixed type
15436         * MonthCalendar.cs: Fixed attributes
15437         * StatusBarPanel.cs: Added missing attributes
15438         * SystemInformation.cs (ToolWindowCaptionHeight): Fixed type
15440 2005-02-16  Peter Bartok  <pbartok@novell.com>
15442         * TextBoxBase.cs: The previous method to enforce height yet remember
15443           the requested high was less than ideal, this is an attempt to do
15444           it better.
15445         * Control.cs: Added comment about possible problem
15446         * Copyright: Updated format
15447         * GridItemType.cs: Fixed swapped values
15449 2005-02-15  Jackson Harper  <jackson@ximian.com>
15451         * BaseCollection.cs: Use property so we never access an
15452         uninitialized list. Also initialize the list in the property.
15454 2005-02-15  Peter Bartok  <pbartok@novell.com>
15456         * GroupBox.cs (ProcessMnemonic): Implemented
15457         * Label.cs (ProcessMnemonic): Implemented
15458         * ThemeWin32Classic.cs (DrawGroupBox): Added stringformat to show
15459           hotkeys
15461 2005-02-15  Peter Bartok  <pbartok@novell.com>
15463         * RadioButton.cs (ProcessMnemonic): Implemented
15464         * CheckBox.cs (ProcessMnemonic): Implemented
15465         * Control.cs:
15466           - Added handling of WM_SYSxxx keyboard messages to support mnemonic
15467             handling
15468           - Added internal method to allow calling ProcessMnemonic from other
15469             controls
15470         * ContainerControl.cs:
15471           - Started support for handling validation chain handling
15472           - Implemented ProcessMnemonic support
15473           - Added Select() call to Active, to make sure the active control
15474             receives focus
15475         * Form.cs: Setting toplevel flag for Forms (this was lost in the
15476           FormParent rewrite)
15477         * ThemeWin32Classic.cs:
15478           - DrawCheckBox(): Fixed stringformat to show hotkeys
15479           - DrawRadioButton(): Fixed stringformat to show hotkeys
15480         * CommonDialog.cs: Removed WndProc override, not needed
15482 2005-02-14  Peter Bartok  <pbartok@novell.com>
15484         * XplatUIX11.cs: Fixed NotImplemented exceptions for properties,
15485           missed those in the rewrite
15487 2005-02-14  Miguel de Icaza  <miguel@novell.com>
15489         * NumericUpDown.cs (Increment, ToString): Add.
15490         (DecimalPlaces): implement.
15491         
15492         Add attributes.
15493         
15494         * UpDownBase.cs: Add the designer attributes.
15496 2005-02-13  Peter Bartok  <pbartok@novell.com>
15498         * Panel.cs: Removed border_style, now in Control
15499         * XplatUIDriver.cs: Added SetBorderStyle, SetMenu, GetMenuDC and
15500           ReleaseMenuDC Methods; renmaed ReleaseWindow to UngrabWindow
15502 2005-02-13  Peter Bartok  <pbartok@novell.com>
15504         * MouseButtons.cs: Added missing attributes
15505         * XplatUIStructs.cs: Added enumeration for title styles
15506         * LeftRightAlignment.cs: Added missing attributes
15507         * Hwnd.cs: Switched to use client_window as handle (slower, but makes
15508           it compatible with Graphics.FromHwnd()
15509         * SelectedGridItemChangedEventArgs.cs: Fixed property type
15510         * Keys.cs: Added missing attributes
15511         * SelectionRange.cs: Added missing attributes
15512         * SelectionRangeConverter.cs: Added
15513         * XplatUI.cs:
15514           - Introduced SetBorderStyle, SetMenu, GetMenuDC and
15515             ReleaseMenuDC methods
15516           - Renamed ReleaseWindow to UngrabWindow
15517           - Added proper startup notice to allow version identification
15518         * Form.cs:
15519           - Added missing attributes
15520           - Removed FormParent concept
15521         * Label.cs: Removed border_style field, now in Control
15522         * RadioButton.cs: Now properly selects RadioButton when focus is
15523           received
15524         * ThemeGtk.cs: Fixed SetDisplay call to match new X11 behaviour
15525         * Control.cs:
15526           - Added missing attributes
15527           - Added borderstyle handling
15528           - Removed FormParent concept support
15529           - Fixed calls to XplatUI to match changed APIs
15530           - Fixed bug that would case us to use disposed Graphics objects
15531           - Removed unneeded internal methods
15532           - PerformLayout(): Fixed to handle DockStyle.Fill properly
15533           - SelectNextControl(): Fixed to properly check common parents
15534         * TextBoxBase.cs: Removed border_style field (now in Control)
15535         * MessageBox.cs:
15536           - Patch by Robert Thompson (rmt@corporatism.org): Added icon support,
15537             fixed calculations for form size
15538           - Added support for localized strings and icons
15539           - Improved form size calculations, added border
15540         * ListView.cs: Removed border_style field (now in Control)
15541         * X11Structs.cs: Moved several structs from X11 driver here
15542         * X11Keyboard.cs: Changed debug message
15543         * Application.cs: Removed FormParent concept support
15544         * CommonDialog.cs:
15545           - Resetting end_modal flag
15546           - Removed FormParent concept support
15547         * NativeWindow.cs: Removed FormParent concept support
15548         * XplatUIX11.cs: Rewritten, now using the new Hwnd class, implementing
15549           Client area and Non-Client whole window to allow support for WM_NC
15550           messages
15551         * XplatUIOSX.cs: Updated to match latest driver spec; added exception
15552           prevent using it until it supports Hwnd as per Geoff Norton's request
15553         * ToolBar.cs: Fixed drawing, was not doing proper drawing
15554         * PictureBox.cs: Removed border_style field, now in Control
15555         * XplatUIWin32.cs: Added new driver methods
15557 2005-02-12  Peter Bartok  <pbartok@novell.com>
15559         * OpacityConverter.cs: Implemented
15560         * Hwnd.cs: Internal class to support drivers that need to emulate
15561           client area/non-client area window behaviour
15563 2005-02-11  Peter Bartok  <pbartok@novell.com>
15565         * KeysConverter.cs: Implemented
15567 2005-02-11  Jordi Mas i Hernandez <jordi@ximian.com>
15569         * Menu.cs: fixes methods GetContextMenu, GetMainMenu, ToString
15570         * LinkLabel: Added missing attributes
15571         * MainMenu.cs: fixes ToString
15572         * MenuItem.cs: fixes methods GetContextMenu, GetMainMenu
15573         * ListBox.cs: fixes event position
15574         * TrackBar.cs: adds missing attributes and events
15575         
15576 2005-02-10  Jordi Mas i Hernandez <jordi@ximian.com>
15578         * MenuItem.cs: Use SystemInformation and bug fixes
15579         * MenuAPI.cs: Use SystemInformation and bug fixes
15581 2005-02-09  Jackson Harper  <jackson@ximian.com>
15583         * X11Keyboard.cs: We ignore some keys, but still need to set/reset
15584         their keystate otherwise things like VK_MENU get stuck "on".
15586 2005-02-09  Kazuki Oikawa <kazuki@panicode.com>
15588         * ListBox.cs: Fixes AddRange bug
15589         
15590 2005-02-09  Jordi Mas i Hernandez <jordi@ximian.com>
15592         * ProgressBar.cs
15593                 - Add missing attributes
15594                 - Add missing method
15595                 
15596         * CheckedListBox.cs: Added missing attributes
15597                 - Add missing attributes
15598                 - Remove extra method
15599         
15600         * ComboBox.cs: Added missing attributes
15601         * VScrollBar.cs: Added missing attributes
15602         * ScrollBar.cs:  Added missing attributes
15603         * ListBox.cs: Fixes signature, add missing consts
15604         * LinkArea.cs:   Added missing attributes
15605         
15607 2005-02-08  Peter Bartok  <pbartok@novell.com>
15609         * Menu.cs: Added missing attributes
15610         * MainMenu.cs: Added missing attributes
15611         * GroupBox.cs: Added missing attributes
15612         * Label.cs: Added missing attributes
15613         * CheckBox.cs: Implemented CheckBoxAccessibleObject class
15614         * ColorDialog.cs:
15615           - Added Instance and Options properties
15616           - Added missing attributes
15617         * Cursor.cs: Made Serializable
15618         * NotifyIcon: Added missing attributes
15619         * MenuItem.cs: Added missing attributes
15620         * TextBoxBase.cs: Implemented AppendText() and Select() methods
15621         * Panel.cs: Added Missing attributes
15622         * MonthCalendar.cs: Fixed CreateParams
15624 2005-02-08  Jordi Mas i Hernandez <jordi@ximian.com>
15625         
15626         * LinkLabel.cs:
15627                 - Fixes signature
15628                 - Fixes issues with links
15629                 - Adds the class attributes
15631 2005-02-08  Jordi Mas i Hernandez <jordi@ximian.com>
15632         
15633         * ComboBox.cs:
15634                 - Fixes button when no items available in dropdown
15635                 - Fixes repainting problems
15636                 - Adds the class attributes
15637                 
15638 2005-02-07  Geoff Norton  <gnorton@customerdna.com>
15640         * XplatUIOSX.cs: Detect the menu bar and title bar height from
15641         the current theme.  Cache these on startup.
15643 2005-02-07  Jackson Harper  <jackson@ximian.com>
15645         * ScrollBar.cs: Give the correct clipping rect to the theme. Dirty
15646         the scrollbar buttons when they are depressed.
15648 2005-02-07  Geoff Norton  <gnorton@customerdna.com>
15650         * XplatUIOSX.cs: Really fix working at resolutions not 1024x768.
15651         Get the display size from the main displayid.  We currently dont
15652         support multiple display configurations.
15654 2005-02-07  Geoff Norton  <gnorton@customerdna.com>
15656         * XplatUIOSX.cs: Ensure the window doesn't get stuck behind the statusbar.
15658 2005-02-07  Miguel de Icaza  <miguel@novell.com>
15660         * UpDownBase.cs: Add ReadOnly and UpDownAlign properties.
15662 2005-02-05  Jonathan Chambers  <jonathan.chambers@ansys.com>
15664         * PropertyGrid.cs: Updated. Patch by Jonathan Chambers
15666 2005-02-04  Jackson Harper  <jackson@ximian.com>
15668         * ThemeWin32Classic.cs: Respect the clipping rect when
15669         drawing. Only fill the intersection of clips and rects so there
15670         isn't a lot of large fills.
15671         * ScrollBar.cs: Pass the correct clipping rect to the theme
15672         engine. Remove some debug code.
15674 2005-02-05  John BouAntoun  <jba-mono@optusnet.com.au>
15675         
15676         * DateTimePicker.cs:
15677                 - Fixed crash on DateTime.Parse, use Constructor instead
15679 2005-02-04  Jordi Mas i Hernandez <jordi@ximian.com>
15680         
15681         * MenuItem.cs:
15682         * MenuAPI.cs:
15683                 - Owner draw support (MeasureItem and DrawItem)
15685 2005-02-04  Jordi Mas i Hernandez <jordi@ximian.com>
15686         
15687         *  Menu.cs:
15688                 - Implements FindMergePosition and MergeMenu functions (very poor documented)
15689                 - Fixes MenuItems.Add range
15690         * MenuItem.cs:
15691                 - MergeMenu and Clone and CloneMenu functions
15693 2005-02-03  Jackson Harper  <jackson@ximian.com>
15695         * ScrollBar.cs: Make abstract
15696         * ScrollableControl.cs: Create H/V scrollbars now that scrollbar
15697         is abstract.
15699 2005-02-03  Jackson Harper  <jackson@ximian.com>
15701         * ScrollBar.cs: First part of my scrollbar fixups. This removes
15702         all the unneeded refreshes and uses invalidates with properly
15703         computed rects.
15705 2005-02-03  Peter Bartok  <pbartok@novell.com>
15707         * ComponentModel.cs: Added
15708         * IDataGridEditingService.cs: Added
15709         * Timer.cs: Added missing attributes
15710         * ToolTip.cs: Added missing attributes
15712 2005-02-03  Jonathan Chambers  <jonathan.chambers@ansys.com>
15714         * PropertyGridView.cs: Added. Patch by Jonathan Chambers
15716 2005-02-03  Peter Bartok  <pbartok@novell.com>
15718         * ListBox.cs: Added missing attributes
15720 2005-02-03  Jordi Mas i Hernandez <jordi@ximian.com>
15721         
15722         * ListBox.cs:
15723                 - Fixes font height after font change
15724                 - Avoid generating unnecesary OnSelectedIndexChanged on clearing
15725                 
15726 2005-02-02  Peter Bartok  <pbartok@novell.com>
15728         * HandleData.cs: Introduced static methods to allow class
15729           to be more self-contained and track it's own HandleData objects
15730         * XplatUIOSX.cs, XplatUIWin32.cs, XplatUIX11.cs: Fixed usage of
15731           HandleData to use new static methods
15733 2005-02-02  Jordi Mas i Hernandez <jordi@ximian.com>
15735         * Combobox.cs:
15736                 - Fixes default size and PreferredHeight
15737                 - Missing events
15738                 - ObjectCollection.Insert implementation
15739                 
15740         * ListControl.cs
15741                 - Fixes signature
15742         * ListBox.cs:
15743                 - Several fixes
15744                 - ObjectCollection.Insert implementation
15745                 - No selection after clean
15746                 - Small fixes
15748 2005-01-31      John BouAntoun  <jba-mono@optusnet.com.au>
15750         * ThemeWin32Classic.cs: quick fix to comboboxbutton pushed painting
15752 2005-02-01  Jordi Mas i Hernandez <jordi@ximian.com>
15754         * Combobox.cs:
15755                 - Caches ItemHeight calculation for OwnerDrawVariable
15756                 - Handles dropdown properly
15757                 - Fixes several minor bugs
15759 2005-01-31  Jordi Mas i Hernandez <jordi@ximian.com>
15761         * ListBox.cs:
15762                 - Fixes 71946 and 71950
15763                 - Fixes changing Multicolumn on the fly
15764                 - Fixes keyboard navigation on Multicolumn listboxes
15766 2005-01-31  Geoff Norton  <gnorton@customerdna.com>
15767         
15768         * XplatUIOSX.cs: Call ExitToShell in our teardown to avoid a
15769         crash reporter log.
15771 2005-01-31  Geoff Norton  <gnorton@customerdna.com>
15773         * XplatUIOSX.cs: Allow applications to actually exit.
15775 2005-01-31  Geoff Norton  <gnorton@customerdna.com>
15777         * XplatUIOSX.cs: SetWindowStyle implemented.  Reposition views in
15778         their parent at creation time rather than lazily later.  Fixes a major
15779         regression we were experiencing.
15781 2005-01-31      John BouAntoun  <jba-mono@optusnet.com.au>
15783         * ThemeWin32Classic.cs: more date time picker painting fixes
15784         * DateTimePicker.cs: more monthcalendar drop down fixes
15785         * MonthCalendar.cs: more CreateParams fixes to ensure correct drop down
15787 2005-01-31  Jordi Mas i Hernandez <jordi@ximian.com>
15789         * ScrollBar.cs:
15790                 - When moving the thumb going outside the control should stop the moving
15791                 - Adds the firing of missing events
15792                 - Fixes no button show if Size is not specified
15793                 - End / Home keys for keyboard navigation
15795 2005-01-30  Peter Bartok  <pbartok@novell.com>
15797         * NotifyIcon.cs (CalculateIconRect): Removed debug output and added
15798           sanity check to prevent theoretical loop
15799         * XplatUIWin32.cs (SetVisible): Removed debug output
15800         * XplatUIX11.cs (SystrayChange): Added sanity check
15801         * ScrollableControl.cs (OnVisibleChanged): Now calls base method
15802         * Control.cs (OnVisibleChanged): Added workaround for ParentForm
15803           behaviour, valid until the X11 client window rewrite is done
15804         * TextBox.cs (ctor): Setting proper default foreground and background
15805           colors
15807 2005-01-30      John BouAntoun  <jba-mono@optusnet.com.au>
15809         * Theme: Added DrawDateTimePicker to interface
15810         * ThemeWin32Classic.cs: Added DrawDateTimePicker (incomplete)
15811         * DateTimePicker.cs: Created (still needs keys and painting code)
15812         * DateTimePickerFormat.cs: added
15813         * MonthCalendar.cs: fixed CreateParams for popup window mode
15814           
15815 2005-01-29  Peter Bartok  <pbartok@novell.com>
15817         * ControlPaint.cs: Fixed luminace value returned on achromatic colors,
15818           this should also the calculations for ligher/darker
15819         * Theme.cs: Fixed defaults for ScrollBar widths/heights
15821 2005-01-29  Peter Bartok  <pbartok@novell.com>
15823         * ArrangeDirection.cs: Added
15824         * ArrangeStartingPositon.cs: Added
15825         * SystemInformation.cs: Implemented
15826         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs, XplatUIWin32.cs,
15827           XplatUIX11.cs, Theme.cs: Added/implemented new static properties
15828           used by SystemInformation class
15829         * X11Strucs.cs: Added XSizeHints structure
15830         * MenuAPI.cs:
15831           - Fixed CreateParams to make sure the menu window is always visible
15832           - TrackPopupMenu: Added check to make sure we don't draw the
15833             menu offscreen
15835 2005-01-29  Peter Bartok  <pbartok@novell.com>
15837         * HandleData.cs: Added method for altering invalid area
15838         * TextBoxBase.cs: Implemented TextLength
15840 2005-01-28  Peter Bartok  <pbartok@novell.com>
15842         * XplatUIX11.cs: Improvement over last patch, not sending
15843           the WM_PAINT directly anymore, instead we scroll any pending
15844           exposed areas and let the system pick out the WM_PAINT later
15846 2005-01-28  Peter Bartok  <pbartok@novell.com>
15848         * SWF.csproj: Deleted, no longer used. Instead,
15849           Managed.Windows.Forms/SWF.csproj should be used
15850         * XplatUIX11.cs: Instead of posting the WM_PAINT, we send it
15851           directly, to avoid a potential race condition with the next
15852           scroll
15854 2005-01-28  Peter Bartok  <pbartok@novell.com>
15856         * XplatUI.cs: Made class internal
15858 2005-01-28  Jordi Mas i Hernandez <jordi@ximian.com>
15860         * CheckedListBox.cs:
15861                 - Draw focus
15862                 - Fixed Drawing
15863                 - Missing methods and events
15865 2005-01-27  Peter Bartok  <pbartok@novell.com>
15867         * Application.cs (Run): Don't use form if we don't have one
15869 2005-01-27  Peter Bartok  <pbartok@novell.com>
15871         * TextBoxBase.cs (get_Lines): Fixed index off by one error
15873 2005-01-27  Peter Bartok  <pbartok@novell.com>
15875         * GridEntry.cs: Added; Patch by Jonathan S. Chambers
15876         * GridItem.cs: Added; Patch by Jonathan S. Chambers
15877         * GridItemCollection.cs: Added; Patch by Jonathan S. Chambers
15878         * GridItemType.cs: Added; Patch by Jonathan S. Chambers
15879         * PropertyGrid.cs: Added; Patch by Jonathan S. Chambers
15880         * PropertySort.cs: Added; Patch by Jonathan S. Chambers
15881         * PropertyTabChangedEventArgs.cs: Added; Patch by Jonathan S. Chambers
15882         * PropertyTabChangedEventHandler.cs: Added; Patch by Jonathan S. Chambers
15883         * PropertyValueChangedEventArgs.cs: Added; Patch by Jonathan S. Chambers
15884         * PropertyValueChangedEventArgs.cs: Added; Patch by Jonathan S. Chambers
15885         * SelectedGridItemChangedEventArgs.cs: Added; Patch by Jonathan S. Chambers
15886         * SelectedGridItemChangedEventHandler.cs: Added; Patch by Jonathan S. Chambers
15888 2005-01-27  Jordi Mas i Hernandez <jordi@ximian.com>
15890         * Combobox.cs:
15891                 - Draw focus on Simple Combobox
15892                 - Fixes drawing issues
15893                 - fixes 71834
15895 2005-01-27  Peter Bartok  <pbartok@novell.com>
15897         * Form.cs:
15898           - Place window in default location, instead of hardcoded 0/0
15899           - Send initial LocationChanged event
15900         * Control.cs:
15901           - UpdateBounds after creation to find out where the WM placed us
15902           - Make sure that if the ParentForm changes location the Form
15903             is notified
15904         * XplatUIX11.cs: XGetGeometry will not return the coords relative
15905             to the root, but to whatever the WM placed around us.
15906             Translate to root coordinates before returning toplevel
15907             coordinates
15908         * XplatUIWin32.cs: Removed debug output
15909         * XplatUIOSX.cs, XplatUI.cs, XplatUIDriver.cs: Added toplevel
15910           flag to GetWindowPos, to allow translation of coordinates on X11
15912 2005-01-27  Jordi Mas i Hernandez <jordi@ximian.com>
15914         * ListBox.cs: connect LostFocus Event
15916 2005-01-27  Peter Bartok  <pbartok@novell.com>
15918         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIOSX.cs,
15919           XplatUIX11.cs: Extended the Systray API
15920         * Form.cs: Removed debug output
15921         * Application.cs: Fixed focus assignment, always need to call
15922           XplatUI.Activate() since Form.Activate() has rules that may
15923           prevent activation
15924         * NotifyIcon.cs: Should be complete now
15925         * ToolTip.cs: Worked around possible timer bug
15927 2005-01-27  Jackson Harper  <jackson@ximian.com>
15929         * TabControl.cs:
15930         - Only invalidate the effected tabs when the
15931         selected index changes. This reduces drawing and gets rid of some
15932         flicker.
15933         - Only refresh if the tabs need to be shifted, otherwise only
15934         invalidate the slider button.
15935         - On windows the tabs are not filled to right if the slider is
15936         visible.
15937         
15938 2005-01-27  Jackson Harper  <jackson@ximian.com>
15940         * TabControl.cs: Only refresh on mouseup if we are showing the
15941         slider. Also only invalidate the button whose state has changed.
15943 2005-01-26  Peter Bartok  <pbartok@novell.com>
15945         * XplatUI.cs, XplatUIDriver.cs: Added Systray methods
15946         * XplatUIWin32.cs: Implemented SystrayAdd(), SystrayChange()
15947           and SystrayRemove() methods
15948         * XplatUIOSX.cs: Stubbed Systray methods
15949         * XplatUIX11.cs:
15950           - Implemented SystrayAdd(), SystrayChange() and SystrayRemove()
15951             methods
15952           - Fixed broken XChangeProperty calls (marshalling messed up things)
15953         * X11Structs.cs: Added enums and structs required for Size hinting
15954         * NotifyIcon.cs: Added & implemented
15956 2005-01-26  Jackson Harper  <jackson@ximian.com>
15958         * TabControl.cs: Space vertically layed out tabs properly.
15960 2005-01-26  Peter Bartok  <pbartok@novell.com>
15962         * Form.cs (CreateClientParams): Always set the location to 0,0
15963           since we're a child window.
15965         * Control.cs (SetVisibleCore): Always explicitly setting the location
15966           of a toplevel window, apparently X11 doesn't like to move windows
15967           while they're not mapped.
15969 2005-01-26  Jackson Harper  <jackson@ximian.com>
15971         * TabControl.cs: Implement FillToRight size mode with vertically
15972         rendered tabs.
15974 2005-01-26  Jordi Mas i Hernandez <jordi@ximian.com>
15976         * ControlPaint.cs, ThemeWin32Classic.cs
15977                 - Fixes DrawFocusRectangle
15979 2005-01-26  Jordi Mas i Hernandez <jordi@ximian.com>
15981         * MenuAPI.cs:
15982                 - MenuBar tracking only starts when item is first clicked
15983                 - Fixes menu hidding for multiple subitems
15984                 - Unselect item in MenuBar when item Executed
15985                 - Fixes bug 71495
15987 2005-01-25  Jordi Mas i Hernandez <jordi@ximian.com>
15989         * ListControl.cs:
15990                 - IsInputKey for ListBox
15991         * ListBox.cs:
15992                 - Focus item
15993                 - Shift and Control item selection
15994                 - Implement SelectionMode.MultiExtended
15995                 - Fixes RightToLeft
15996         * ComboBox.cs:
15997                 - IsInputKey implemented
15998                 - Do not generate OnTextChangedEdit on internal txt changes
15999                 
16000 2005-01-23  Peter Bartok  <pbartok@novell.com>
16002         * AccessibleObject.cs: Partially implemented Select()
16003         * MonthCalendar.cs: Added missing attributes and events
16004         * Form.cs: Fixed CreateParams behaviour, now controls derived from
16005           form can properly override CreateParams.
16006         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs, XplatUIWin32.cs,
16007           XplatUIX11.cs: Dropped RefreshWindow method, not needed if
16008           Control performs Invalidate & Update
16009         * NativeWindow (CreateHandle): Added special handling for Form
16010           and Form.FormParent classes to allow overriding of From.CreateParams
16011         * Control.cs:
16012           - ControlNativeWindow: Renamed 'control' variable to more intuitive
16013             name 'owner'
16014           - ControlNativeWindow: Added Owner property
16015           - Removed usage of Refresh() on property changes, changed into
16016             Invalidate(), we need to wait until the queue is processed for
16017             updates, direct calls might cause problems if not all vars for
16018             Paint are initialized
16019           - Added call to UpdateStyles() when creating the window, to set any
16020             styles that CreateWindow might have ignored.
16021           - Added support for Form CreateParent overrides to UpdateStyles()
16022         * MessageBox.cs: Removed no longer needed FormParent override stuff,
16023           CreateParams are now properly overridable
16024         * CommonDialog.cs: Removed no longer needed FormParent override stuff,
16025           CreateParams are now properly overridable
16027 2005-01-23  Miguel de Icaza  <miguel@ximian.com>
16029         * UpDownBase.cs (ctor): Connect TextChanged in the entry to the
16030         OnTextBoxChanged.
16032         Capture LostFocus and OnTextBoxChanged.  The later introduces a
16033         recursive invocation that I have not figured out yet.
16035         Reset the timer when not using (it was accumulating).
16038         (OnTextBoxChanged): Set UserEdit to true here to track whether the
16039         user has made changes that require validation.
16041         Reset changing to avoid loops.
16043 2005-01-22  Miguel de Icaza  <miguel@ximian.com>
16045         * NumericUpDown.cs: Display value at startup.
16047         * UpDownBase.cs (Text): Do not call UpdateEditText here, only call
16048         ValidateEditText.
16050         * NumericUpDown.cs: Minimum, Maximum, Text, Value properties
16051         filled in.  Added some basic parsing of text.
16053         Still missing the OnXXX method overrides, and figuring out the
16054         events that must be emitted.
16056         * UpDownBase.cs: Handle UserEdit on the Text property.
16057         
16058 2005-01-22  Jordi Mas i Hernandez <jordi@ximian.com>
16060         * ComboBox.cs:
16061           - Fixes IntegralHeight
16062           - ToString method
16064 2005-01-21  Jackson Harper  <jackson@ximian.com>
16066         * TabControl.cs: Set the SelectedIndex property when SelectedTab
16067         is set so that the page visibility is updated and the tabs are
16068         sized correctly.
16070 2005-01-21  Jackson Harper  <jackson@ximian.com>
16072         * TabControl.cs: Use cliping rectangle for blitting. Give the
16073         theme the clipping rect so we can do clipping while
16074         drawing. Remove some debug code.
16076 2005-01-21  Jackson Harper  <jackson@ximian.com>
16078         * TabPage.cs: Add a new method so tab pages can force the tab
16079         control to recalculate the tab page sizes.
16080         * TabControl.cs: UpdateOwner needs to make the tab control recalc
16081         sizes.
16083 2005-01-20  Jackson Harper  <jackson@ximian.com>
16085         * ThemeWin32Classic.cs: Clip text to the staus bar panels rects.
16087 2005-01-20  Jackson Harper  <jackson@ximian.com>
16089         * TreeView.cs: Set the bounds for nodes properly. They were
16090         getting screwed up when checkboxes were not enabled, but images
16091         were.
16093 2005-01-20  Jordi Mas i Hernandez <jordi@ximian.com>
16095         * ListBox.cs:
16096                 - Owner draw support
16097                 - Fixes
16098                 
16099 2005-01-20  Jackson Harper  <jackson@ximian.com>
16101         * XplatUIStructs.cs: More misc keys
16102         * X11Keyboard.cs: Ignore some control keys.
16104 2005-01-20  Jackson Harper  <jackson@ximian.com>
16106         * X11Structs.cs: Add the modmaps to the keymask struct and tabify.
16107         * X11Keyboard.cs: Set the AltGr mask when we get a key event.
16109 2005-01-19  Peter Bartok  <pbartok@novell.com>
16111         * Control.cs: Un-selecting the control when it is loosing focus
16113 2005-01-19  Jackson Harper  <jackson@ximian.com>
16115         * TreeView.cs: Hook up to the text controls leave event so we can
16116         end editing when the users clicks outside the text box.
16117         
16118 2005-01-19  Jackson Harper  <jackson@ximian.com>
16120         * X11Keyboard.cs: Fix typo that was causing the wrong keycodes to
16121         get set in the conversion array.
16123 2005-01-19  Peter Bartok  <pbartok@novell.com>
16125         * Application.cs (ModalRun): Added a call to CreateControl to ensure
16126           focus is properly set
16127         * Button.cs:
16128           - Added missing attributes
16129           - removed styles, those are already set in the base class
16130         * ButtonBase.cs:
16131           - Added missing attributes
16132           - Added clip window styles
16133         * CheckBox.cs: Added missing attributes
16134         * CommonDialog.cs:
16135           - FormParentWindow.CreateParams: Added required clip styles
16136         * Form.cs (ProcessDialogKey): Fixed handling of Escape key, now
16137           also filters modifier keys
16138         * MessageBox.cs:
16139           - Added assignment of Accept and Cancel button to enable Enter
16140             and Esc keys in MessageBox dialogs
16141           - FormParentWindow.CreateParams: Added required clip styles
16142         * RadioButton.cs: Added missing attributes
16143         * TextControl.cs: No longer draws selection if control does not
16144           have focus
16145         * TextBoxBase.cs:
16146           - Now draws simple rectangle around test area to make it obvious
16147             there's a control. This is a hack until we properly support borders
16148           - A few simple fixes to support selections better, now erases selected
16149             text when typing, and resets selection when using movement keys
16151 2005-01-19  Miguel de Icaza  <miguel@ximian.com>
16153         * UpDownBase.cs: Added some new properties.
16155         * DomainUpDown.cs: Implement a lot to get my test working.
16157 2005-01-19  Geoff Norton  <gnorton@customerdna.com>
16159         * XplatUIOSX.cs: Fix a minor bug to bring the close box back
16161 2005-01-19  Geoff Norton  <gnorton@customerdna.com>
16163         * OSXStructs (WindowAttributes): Fixed csc complaints
16165 2005-01-19  Geoff Norton  <gnorton@customerdna.com>
16167         * XplayUIOSX.cs:
16168           OSXStructs.cs: Initial refactor to move enums and consts into
16169           OSXStructs and use them in the driver for greater readability.
16171 2005-01-19  Geoff Norton  <gnorton@customerdna.com>
16173         * XplatUIOSX.cs: Initial support for Standard Cursors.
16174         * OSXStructs.cs: Move our structs here; added ThemeCursor enum
16176 2005-01-19  Jordi Mas i Hernandez <jordi@ximian.com>
16178         * ComboBox.cs: ability to change style when the ctrl is already
16179         created, missing methods and events, bug fixes, signature fixes
16181 2005-01-19  Peter Bartok  <pbartok@novell.com>
16183         * Cursors.cs (ctor): Added ctor to fix signature
16185 2005-01-18  Peter Bartok  <pbartok@novell.com>
16187         * Button.cs: Implemented DoubleClick event
16188         * ButtonBase.cs:
16189           - Fixed keyboard handling to behave like MS, where the press of
16190             Spacebar is equivalent to a mousedown, and the key release is
16191             equivalent to mouseup. Now a spacebar push will give the same
16192             visual feedback like a mouse click.
16193           - Added missing attributes
16194           - Added ImeModeChanged event
16195           - Added support for generating DoubleClick event for derived classes
16196         * CheckBox.cs:
16197           - Implemented DoubleClick event
16198           - Added missing attributes
16199         * CommonDialog.cs: Added missing attribute
16200         * ContextMenu.cs: Added missing attributes
16201         * RadioButton.cs:
16202           - AutoChecked buttons do not allow to be unselected when clicked
16203             (otherwise we might end up with no selected buttons in a group)
16204           - Added missing attributes
16205           - Implemented DoubleClickEvent
16206         * ThreadExceptionDialog.cs: Enabled TextBox code
16208 2005-01-18  Peter Bartok  <pbartok@novell.com>
16210         * Form.cs: Removed debug output
16211         * Button.cs: Added support for DoubleClick method
16213 2005-01-18  Peter Bartok  <pbartok@novell.com>
16215         * Form.cs:
16216           - Added method to parent window that allows triggering size
16217             calculations when a menu is added/removed
16218           - set_Menu: Cleaned up mess from early days of Form and Control,
16219             now properly triggers a recalc when a menu is added/removed
16220           - Added case to select form itself as focused form if no child
16221             controls exist
16222           - Added PerformLayout call when showing dialog, to ensure properly
16223             placed controls
16224         * Control.cs:
16225           - Select(): Made internal so Form can access it
16226           - Focus(): Only call Xplat layer if required (avoids loop), and sets
16227             status
16228         * Application.cs (Run): Removed hack and calls PerformLayout instead
16229           to trigger calculation when Form becomes visible
16231 2005-01-18  Jordi Mas i Hernandez <jordi@ximian.com>
16233         * ComboBox.cs: fixes for ownerdraw
16235 2005-01-18  Peter Bartok  <pbartok@novell.com>
16237         * TextControl.cs:
16238           - Sentinel is no longer static, each Document gets it's own, this
16239             avoids locking or alternatively overwrite problems when more
16240             than one text control is used simultaneously.
16241           - Switched to use Hilight and HilightText brushes for text selection
16243         * TextBoxBase.cs (PaintControl): Disabled AntiAliasing to improve looks
16245 2005-01-18  Peter Bartok  <pbartok@novell.com>
16247         * Control.cs:
16248           - Hooked up the following events:
16249                 o ControlAdded
16250                 o ControlRemoved
16251                 o HandleDestroyed
16252                 o ImeModeChanged
16253                 o ParentChanged
16254                 o TabStopChanged
16255                 o Invalidated
16256                 o SystemColorsChanged
16257                 o ParentFontChanged
16258                 o Move
16259           - Removed debug output
16260           - Added a call to the current theme's ResetDefaults when a color change
16261             is detected
16262         * Form.cs: Now setting the proper ImeMode
16263         * Theme.cs: Defined a method to force recreation of cached resources
16264           and rereading of system defaults (ResetDefaults())
16265         * ThemeWin32Classic.cs: Added ResetDefaults() stub
16267 2005-01-17  Peter Bartok  <pbartok@novell.com>
16269         * Control.cs: Added missing attributes
16271 2005-01-17  Jackson Harper  <jackson@ximian.com>
16273         * TreeNode.cs: Implement editing. Add missing properties selected
16274         and visible.
16275         * TreeView.cs: Implement node editing. Also some fixes to use
16276         Invalidate (invalid area) instead of Refresh when selecting.
16278 2005-01-17  Peter Bartok  <pbartok@novell.com>
16280         * Control.cs:
16281           - Implemented InvokeGotFocus() method
16282           - Implemented InvokeLostFocus() method
16283           - Implemented InvokePaint() method
16284           - Implemented InvokePaintBackground() method
16285           - Implemented InvokeClick() method
16286           - Implemented FindForm() method
16287           - Implemented RectangleToClient() method
16288           - Implemented ClientToRectangle() method
16289           - Implemented ResetBackColor() method
16290           - Implemented ResetCursor() method
16291           - Implemented ResetFont() method
16292           - Implemented ResteForeColor() method
16293           - Implemented ResetImeMode() method
16294           - Implemented ResetLeftToRight() method
16295           - Implemented ResetText() method
16296           - Implemented Scale() methods
16297           - Implemented ScaleCore() method
16298           - Implemented Update() method
16299           - Removed unused variables
16300           - Stubbed AccessibilityNotifyClients and
16301             ControlAccessibleObject.NotifyClients() methods (dunno what to do
16302             with those yet)
16303           - Now setting proper default for RightToLeft property
16304           - Fixed bug in SetClientSizeCore that would cause windows to get
16305             really big
16306           - Now sending Click/DoubleClick events
16307           - Now selecting controls when left mouse button is clicked on
16308             selectable control
16309         * AccessibleEvents.cs: Added
16310         * XplatUI.cs, XplatUIDriver.cs: Added UpdateWindow() method
16311         * XplatUIOSX.cs: Stubbed UpdateWindow() method
16312         * XplatUIWin32.cs: Implemented UpdateWindow() method
16313         * XplatUIX11.cs: Implemented UpdateWindow() method
16314         * Form.cs: Removed stray semicolon causing CS0162 warning
16315         * ThemeWin32Classic.cs: Fixed unused variable warnings
16316         * ScrollableControl.cs: Now calls base method for ScaleCore
16317         * ButtonBase.cs: Now disabling StandardClick and StandardDoubleClick
16318           style to avoid interference with internal click handler (which is
16319           different than standard Control click handling)
16320         * RadioButton.cs:
16321           - Now unchecks all sibling radio buttons when control is
16322             selected (Fixes #68756)
16323           - Removed internal tabstop variable, using the one inherited from
16324             Control
16326 2005-01-17  Jackson Harper  <jackson@ximian.com>
16328         * NavigateEventArgs.cs: Fix base type.
16329         * LinkLabel.cs: Sig fix
16330         
16331 2005-01-17  Jackson Harper  <jackson@ximian.com>
16333         * TreeView.cs: Only invalidate the effected nodes bounds when
16334         selecting nodes.
16336 2005-01-13  Jordi Mas i Hernandez <jordi@ximian.com>
16338         * XplatUIWin32.cs: fixes Win32 marshaling
16339         * XplatUIX11.cs: fixes method signature
16341 2005-01-17  Peter Bartok  <pbartok@novell.com>
16343         * XplatUIX11.cs: Clean up resources when we no longer need them
16345 2005-01-17  Peter Bartok  <pbartok@novell.com>
16347         * XplatUI.cs, XplatUIDriver.cs: Added SetCursor(), ShowCursor(),
16348           OverrideCursor(), DefineCursor(), DefineStdCursor(), GetCursorInfo()
16349           and DestroyCursor() methods.
16350         * Cursor.cs: Partially implemented, now supports standard cursors;
16351           still contains some debug code
16352         * Cursors.cs: Implemented class
16353         * Control.cs:
16354           - WndProc(): Added handling of WM_SETCURSOR message, setting the
16355             appropriate cursor
16356           - Implemented Cursor property
16357           - Replaced break; with return; more straightforwar and possibly
16358             faster
16359           - Now properly setting the result for WM_HELP
16360         * X11Structs.cs: Added CursorFontShape enum
16361         * XplatUIStructs.cs:
16362           - Added StdCursor enum (to support DefineStdCursor() method)
16363           - Added HitTest enum (to support sending WM_SETCURSOR message)
16364         * XplatUIX11.cs:
16365           - Now sends the WM_SETCURSOR message
16366           - Implemented new cursor methods
16367         * XplatUIOSX.cs: Stubbed new cursor methods
16368         * XplatUIWin32.cs:
16369           - Implemented new cursor methods
16370           - Added GetSystemMetrics function and associated enumeration
16372 2005-01-15  Peter Bartok  <pbartok@novell.com>
16374         * Control.cs:
16375           - WndProc(): Now handles EnableNotifyMessage
16376           - SelectNextControl(): Fixed bug where if no child or sibling
16377             controls exist we looped endlessly
16379 2005-01-14  Jackson Harper  <jackson@ximian.com>
16381         * TreeView.cs: Recalculate the tab pages when a new one is added
16382         so that the proper bounding rects are created.
16384 2005-01-14  Jackson Harper  <jackson@ximian.com>
16386         * TreeView.cs: Draw a gray box instead of a grip in the lower
16387         right hand corner when there are both horizontal and vertical
16388         scroll bars.
16390 2005-01-14  Jackson Harper  <jackson@ximian.com>
16392         * Control.cs: When erasing backgrounds use FromHwnd instead of
16393         FromHdc when there is a NULL wparam. This occurs on the X driver.
16394         * XplatUIX11.cs: Set the wparam to NULL.
16396 2005-01-13  Jackson Harper  <jackson@ximian.com>
16398         * PictureBox.cs: Implement missing methods (except ToString, need
16399         to test that on windows) and events. When visibility is changed we
16400         need to redraw the image because the buffers are killed. When size
16401         is changed refresh if the sizemode needs it.
16403 2005-01-13  Peter Bartok  <pbartok@novell.com>
16405         * Control.cs (SelectNextControl): Was using wrong method to select
16406           a control
16408 2005-01-13  Jordi Mas i Hernandez <jordi@ximian.com>
16410         * ComboBox.cs: fixes dropstyle
16412 2005-01-13  Peter Bartok  <pbartok@novell.com>
16414         * Form.cs:
16415           - Implemented Select() override
16416           - Now handles WM_SETFOCUS/WM_KILLFOCUS messages
16417           - Now sets keyboard focus on startup
16418         * Control.cs (SelectNextControl): Now properly handles directed=true
16419         * TextBoxBase.cs:
16420           - WndProc: Now passes tab key on to base if AcceptTabChar=false
16421           - Added (really bad) focus rectangle (mostly for testing)
16422         * TextBox.cs: Added code to handle getting/loosing focus and invalidating
16423           to enforce redraw on focus changes
16424         * ContainerControl.cs:
16425           - Fixed detection of Shift-Tab key presses
16426           - Fixed traversal with arrow keys
16427         * XplatUIX11.cs: Implemented simulated keyboard focus; not sure if we're
16428           gonna keep this or if it's complete yet
16429         
16430 2005-01-13  Jordi Mas i Hernandez <jordi@ximian.com>
16432         * ComboBox.cs: missing properties, fixes
16434 2005-01-13  Peter Bartok  <pbartok@novell.com>
16436         * Panel.cs (ctor): Setting Selectable window style to off
16437         * Splitter.cs (ctor): Setting Selectable window style to off
16438         * GroupBox.cs (ctor): Setting Selectable window style to off
16439         * Label.cs (ctor): Setting Selectable window style to off
16441 2005-01-12  Miguel de Icaza  <miguel@ximian.com>
16443         * UpDownBase.cs (InitTimer): If the timer has been already
16444         created, enable it.
16446         Use a TextBox instead of a Label.
16448 2005-01-12  Jackson Harper  <jackson@ximian.com>
16450         * TreeView.cs: Refresh the tree after sorting the nodes. Always
16451         draw the connecting node lines (when ShowLines is true).
16452         * TreeNode.cs: The nodes index can now be updated. This is used
16453         when a node collection is sorted.
16454         * TreeNodeCollection.cs: Implement sorting. Nodes can be sorted on
16455         insert or an existing unsorted node collection can be sorted.
16456         
16457 2005-01-12  Peter Bartok  <pbartok@novell.com>
16459         * ContainerControl.cs: Implemented ProcessDialogKeys()
16461 2005-01-12  Peter Bartok  <pbartok@novell.com>
16463         * Control.cs:
16464           - Implemented SelectNextControl() method
16465           - Several focus related bug fixes
16466           - Fixed Docking calculations to match MS documentation and
16467             behaviour
16469 2005-01-12  Jordi Mas i Hernandez <jordi@ximian.com>
16471         * ContainerControl.cs, ListControl.cs, ListBox.cs: keyboard navigation and
16472         bug fixes
16474 2005-01-12  Peter Bartok  <pbartok@novell.com>
16476         * Control.cs:
16477           - Fixed broken Contains() method
16478           - Implemented GetNextControl() method. Finally. This is the pre-
16479             requisite for focus handling.
16481 2005-01-12  Peter Bartok  <pbartok@novell.com>
16483         * OSXStrucs.cs: Added
16485 2005-01-12  Peter Bartok  <pbartok@novell.com>
16487         * XplatUIWin32.cs:
16488           - Removed PeekMessageFlags
16489           - Implemented SetWindowStyle() method
16490         * XplatUIStructs.cs: Added PeekMessageFlags
16491         * X11Structs: Added missing border_width field to XWindowChanges struct
16492         * XplatUIX11.cs:
16493           - PeekMessage: Now throws exception if flags which are not yet
16494             supported are passed
16495           - Implemented SetWindowStyle() method
16496           - Fixed SetZOrder to handle AfterHwnd properly
16497         * XplatUI.cs: Added SetWindowStyle() method
16498         * XplatUIDriver.cs: Added SetWindowStyle() abstract
16499         * Control.cs:
16500           - Implemented UpdateStyles() method
16501           - Implemented UpdateZOrder() method
16502         * XplatUIOSX.cs: Added SetWindowStyle() stub
16504 2005-01-12  Geoff Norton  <gnorton@customerdna.com>
16506         * XplatUIOSX.cs: Fix SetZOrder (this needs more testing with a 3
16507         button mouse).
16510 2005-01-11  Jackson Harper  <jackson@ximian.com>
16512         * TreeView.cs: Still need to draw lines to siblings even if out of
16513         the current node is out of the clip.
16515 2005-01-11  Jackson Harper  <jackson@ximian.com>
16517         * TreeView.cs: When setting the hbar/vbar/grip position use
16518         SetBounds so that perform layout is only called once. Also suspend
16519         and resume layout so layout is only done once for all controls.
16520         - Removed some debug fluff
16521         * SizeGrip.cs: Call base implmentation in overriding methods.
16522         - When visibility is changed the drawing buffers are killed so we
16523         need to redraw.
16525 2005-01-11  Jackson Harper  <jackson@ximian.com>
16527         * TreeView.cs: Calculate the open node count while drawing. This
16528         saves us an entire tree traversal for every paint operation. Use
16529         a member var for the open node count so less vars are passed around.
16531 2005-01-11  John BouAntoun  <jba-mono@optusnet.com.au>
16533         * MonthCalendar.cs:
16534         - fixed selection to use mousemove, not mouse polling on timer
16535         * ThemeWin32Classic.cs
16536         - removed redundant unused variable "no_more_content"
16537         
16538 2005-01-11  Peter Bartok  <pbartok@novell.com>
16540         * XplatUIX11.cs (DoEvents): Needs to return when no more events
16541           are pending, so it now calls PeekMessage instead of GetMessage;
16542           implemented a incomplete version of PeekMessage
16543         
16544 2005-01-11  Peter Bartok  <pbartok@novell.com>
16546         * XplatUIWin32.cs: Switched P/Invokes to unicode charset to avoid
16547           I18n issues
16548         * TextBoxBase.cs: Added sending of TextChanged event
16550 2005-01-10  Jackson Harper  <jackson@ximian.com>
16552         * TreeView.cs: Try not to draw outside the clipping rectangle on
16553         each node element.
16555 2005-01-10  Jordi Mas i Hernandez <jordi@ximian.com>
16557         * ComboBox.cs: keyboard navigation, item navigation, bug fixes
16559 2005-01-10  Jackson Harper  <jackson@ximian.com>
16561         * TreeView.cs:
16562         - Implement fast scrolling. Now only the newly
16563         exposed nodes are drawn and the old image is moved using the
16564         XplatUI::ScrollWindow method.
16565         - Factor in height of nodes when calculating whether or not the
16566         node is in the clipping rect.
16568 2005-01-10  Jackson Harper  <jackson@ximian.com>
16570         * TreeNodeCollection.cs: Refresh the tree when a new node is added.
16572 2005-01-10  Peter Bartok  <pbartok@novell.com>
16574         * Application.cs: Added temporary hack to resolve all our resize
16575           required issues on startup. This will get fixed properly at
16576           some point in the future
16578 2005-01-10  Jackson Harper  <jackson@ximian.com>
16580         * SizeGrip.cs: New internal class that is used as a sizing
16581         grip control...hence the name.
16583 2005-01-10  Peter Bartok  <pbartok@novell.com>
16585         * Control.cs: Implemented proper TabIndex handling, now assigning
16586           a tabindex when a control is added to a container
16587         * GroupBox.cs (ctor): Now sets the Container style bit, required
16588           for Control.GetNextControl()
16590 2005-01-09  Jackson Harper  <jackson@ximian.com>
16592         * TextBoxBase.cs: Clear window when scrolling (fixes build).
16594 2005-01-09  Peter Bartok <pbartok@novell.com>
16596         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIOSX.cs,
16597           XplatUIX11.cs: Added ability to control ScrollWindow expose and
16598           an overload for ScrollWindow to allow only scrolling a rectangle
16600 2005-01-09  Peter Bartok <pbartok@novell.com>
16602         * Form.cs:
16603           - Implemented SetDesktopBounds method
16604           - Implemented SetDesktopLocation method
16606 2005-01-08  Jackson Harper  <jackson@ximian.com>
16608         * TreeView.cs: Only set the vbar's Maximum and LargeChange when
16609         the node count has changed, this removes to VScroll::Refresh calls
16610         when drawing.
16612 2005-01-08  Geoff Norton  <gnorton@customerdna.com>
16614         * XplatUIOSX.cs: Fix GetWindowState & SetWindowState
16616 2005-01-07  Jackson Harper  <jackson@ximian.com>
16618         * TreeNode.cs: Just update the single node when it is
16619         checked. Don't refresh after toggling, the Expand/Collapse already
16620         handles this.
16621         * TreeView.cs: Respect clipping a little more when drawing. Try
16622         not to redraw things that don't need to be redrawn. Just hide the
16623         scrollbars when they are no longer needed instead of removing
16624         them, so they don't have to be created again and again.
16625         
16626 2005-01-07  Geoff Norton  <gnorton@customerdna.com>
16628         * XplatUIOSX.cs (SetCaretPos):  We need to translate the view
16629         coordinates to window space to place the caret properly, FIXED.
16630         Implement GetWindowState & SetWindowState
16632 2005-01-06  Peter Bartok <pbartok@novell.com>
16634         * Form.cs:
16635           - Implemented ClientSize property
16636           - Implemented DesktopBounds property
16637           - Implemented DesktopLocation property
16638           - Implemented IsRestrictedWindow property
16639           - Implemented Size property
16640           - Implemented TopLevel property
16641           - Implemented FormWindowState property
16642         * Control.cs:
16643           - Implemented GetTopLevel() method
16644           - Implemented SetTopLevel() method
16645         * X11Structs.cs (Atom):
16646           - Added AnyPropertyType definition
16647           - Added MapState definiton and updated XWindowAttribute struct
16648         * XplatUI.cs: Added GetWindowState() and SetWindowState() methods
16649         * XplatUIDriver.cs: Added GetWindowState() and SetWindowState() methods
16650         * XplatUIOSX.cs: Stubbed GetWindowState() and SetWindowState() methods
16651         * XplatUIWin32.cs:
16652           - Implemented GetWindowState() and SetWindowState() methods
16653           - Fixed Win32GetWindowLong return type
16654         * XplatUIX11.cs:
16655           - Introduced central function for sending NET_WM messages
16656           - Implemented GetWindowState() and SetWindowState() methods
16657         * TextBoxBase.cs (set_Lines):
16658           - Now uses Foreground color for text added via Text property (Duh!)
16659           - Added code to remember programmatically requested size (fixes
16660             behaviour when Multiline is set after Size)
16661           - Added AutoSize logic
16663 2005-01-06  Jackson Harper  <jackson@ximian.com>
16665         * TreeView.cs: Draw the image after the checkbox if checkboxes are enabled.
16667 2005-01-06  Jackson Harper  <jackson@ximian.com>
16669         * ListBox.cs: Don't allow the horizontal scrollbars maximum to be
16670         set to less then 0.
16672 2005-01-06  Jackson Harper  <jackson@ximian.com>
16674         * ScrollableControl.cs: Lazy init the scrollbars.
16675         
16676 2005-01-06  Jackson Harper  <jackson@ximian.com>
16678         * Theme.cs: Speed up getting pens and solid brushes, by using
16679         their ARGB as a hash instead of tostring and not calling Contains.
16681 2005-01-06  Peter Bartok <pbartok@novell.com>
16683         * Form.cs:
16684           - Implemented OnActivated and OnDeactivate event trigger
16685           - Implemented Activate() method
16686           - Fixed ShowDialog() to activate the form that was active before
16687             the dialog was shown
16688         * XplatUIX11.cs:
16689           - Added global active_window var that tracks the currently active
16690             X11 window
16691           - Now always grabs Property changes from the root window to always
16692             catch changes on the active window property
16693           - Added code to PropertyNotify handler to send Active/Inactive
16694             messages when state changes. This puts X11 and Win32 en par on
16695             WM_ACTIVATE notifications (except for double notifications when
16696             the user clicks away from our modal window to another one of our
16697             windows)
16699 2005-01-05  Jackson Harper  <jackson@ximian.com>
16701         * ImageList.cs: Implment ctor
16703 2005-01-05  Geoff Norton  <gnorton@customerdna.com>
16705         * XplatUIOSX.cs: Implement Activate/SetTopmost
16707 2005-01-05  Geoff Norton  <gnorton@customerdna.com>
16709         * XplatUIOSX.cs: Implement SetZOrder, minor cleanup
16711 2005-01-05  Geoff Norton  <gnorton@customerdna.com>
16713         * XplatUIOSX.cs: Implement GetActive/SetFocus.
16715 2005-01-05  Peter Bartok <pbartok@novell.com>
16717         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIX11.cs,
16718           XplatUIOSX.cs: Added GetActive method to return the currently
16719           active window for the application (or null, if none is active)
16720         * Form.cs:
16721           - Implemented ActiveForm
16722           - Commented out owner assignment for modal dialogs (causes problems
16723             on Win32, since the owner will be disabled)
16724           - Reworked some Active/Focus handling (still incomplete)
16725         * CommonDialog.cs: Commented out owner assignment for modal dialogs
16726           (causes problems on Win32, since the owner will be disabled)
16727         * IWin32Window: Added ComVisible attribute
16729 2005-01-05  Peter Bartok <pbartok@novell.com>
16731         * ToolTip.cs (WndProc): Enable setting focus now that we have the
16732           required XplatUI functions.
16734 2005-01-05  Peter Bartok <pbartok@novell.com>
16736         * XplatUI.cs, XplatUIOSX.cs, XplatUIWin32.cs, XplatUIDriver.cs,
16737           XplatUIX11.cs, X11Structs.cs, Form.cs: Framework code required
16738           to implement focus and activation handling; still incomplete and
16739           with debug output
16741 2005-01-04  Peter Bartok <pbartok@novell.com>
16743         * TextBoxBase.cs: Changed access level for Document property to
16744           match switch to internal for TextControl
16746 2005-01-04  Peter Bartok <pbartok@novell.com>
16748         * AccessibleObject: Added ComVisible attribute
16750 2005-01-04  Jackson Harper  <jackson@ximian.com>
16752         * X11Keyboard.cs: Remove unneeded var.
16754 2005-01-04  Jackson Harper  <jackson@ximian.com>
16756         * XplatUIX11.cs (DoEvents): Implement, Just cast aside all events
16757         but PAINT.
16758         * XplatUIX11.cs (GetMessage): Call Exit when we get an unknown
16759         ClientMessage. This makes apps exit cleanly (more often).
16760         
16761 2005-01-04  Jackson Harper  <jackson@ximian.com>
16763         * TreeNode.cs: Patches by Kazuki Oikawa (kazuki@panicode.com) for
16764         handling focus, return correct colors and fonts,
16765         * TreeView.cs: Patches by Kazuki Oikawa (kazuki@panicode.com) to
16766         handle selection, horizontal scrolling, and mouse interaction.
16768 2005-01-04  Peter Bartok <pbartok@novell.com>
16770         * ICommandExecutor.cs: Added
16771         * IDataGridColumnStyleEditingNotificationService.cs: Added
16772         * IFeatureSupport.cs: Added
16773         * IFileReaderService.cs: Added
16774         * IDataObject.cs: Added ComVisible attribute
16775         * AmbientProperties.cs: Added
16776         * BaseCollection.cs: Added missing attributes
16777         * ListBindingConverter.cs: Added (stubbed, required for certain attributes)
16778         * BaseCollection.cs: Added missing attributes
16779         * Binding.cs: Added TypeConverter attribute
16780         * BindingContext.cs: Added DefaultEvent attribute
16781         * BindingsCollection.cs: Added DefaultEvent attribute
16782         * Button.cs: Added DefaultValue attribute
16783         * DragEventArgs.cs: Added ComVisible attribute
16784         * GiveFeedbackEventArgs.cs: Added ComVisible attribute
16785         * KeyEventArgs.cs: Added ComVisible attribute
16786         * KeyPressEventArgs.cs: Added ComVisible attribute
16787         * MouseEventArgs.cs: Added ComVisible attribute
16788         * NavigateEventArgs.cs: Added
16789         * NavigateEventHandler.cs: Added
16790         * FeatureSupport.cs: Added
16791         * OSFeature.cs: Added
16792         * Theme.cs: Added abstract Version property to support OSFeature
16793         * ThemeWin32Classic.cs: Added Version property to
16794           support OSFeature.Themes
16795         * ProgressBar.cs: Removed OnPaintBackground override, not required since
16796           the proper styles to avoid background drawing are set, also doesn't
16797           match MS signature
16798         * QueryAccessibilityHelpEventArgs.cs: Added ComVisible attribute
16799         * QueryContinueDragEventArgs.cs: Added ComVisible attribute
16800         * ScrollEventArgs.cs: Added ComVisible attribute
16801         * SplitterEventArgs.cs: Added ComVisible attribute
16802         * AccessibleSelection.cs: Added Flags attribute
16803         * Appearance.cs: Added ComVisible attribute
16804         * Border3DSide.cs: Added ComVisible attribute
16805         * Border3DStyle.cs: Added ComVisible attribute
16806         * BorderStyle.cs: Added ComVisible attribute
16807         * DragAction.cs: Added ComVisible attribute
16808         * ErrorBlinkStyle.cs: Added
16809         * ScrollEventType.cs: Added ComVisible attribute
16810         * AnchorStyles.cs: Added Editor attribute
16811         * DockStyle.cs: Added Editor attribute
16812         * HorizontalAlignment.cs: Added ComVisible attribute
16813         * HelpEventArgs.cs: Added ComVisible attribute
16814         * PaintEventArgs.cs: Added IDisposable
16816 2005-01-04  Peter Bartok <pbartok@novell.com>
16818         * TextControl.cs: Switched Line, LineTag and Document classes to
16819           internal
16821 2005-01-04  Jordi Mas i Hernandez <jordi@ximian.com>
16823         * ComboBox.cs, ThemeWin32Classic.cs, ListBox.cs, Theme.cs:
16824         Simple mode, fixes, IntegralHeight, etc.
16826 2005-01-04  Peter Bartok <pbartok@novell.com>
16828         * TextBoxBase.cs: Using proper font variable now
16830 2005-01-04  Peter Bartok <pbartok@novell.com>
16832         * Form.cs (ShowDialog): Set parent to owner, if provided
16833         * GroupBox.cs: Removed unused vars
16834         * TextControl.cs:
16835           - Added GetHashCode() for Document and LineTag classes
16836           - Removed unused variables
16837           - Added CharIndexToLineTag() and LineTagToCharIndex() methods
16838             to allow translation between continuous char position and line/pos
16839         * CheckBox.cs: Removed vars that are provided by base class
16840         * RadioButton.cs: Removed vars that are provided by base class, added
16841           new keyword where required
16842         * LinkLabel.cs: Added new keyword where required
16843         * Control.cs (WndProc): Removed unused variable
16844         * TextBoxBase.cs:
16845           - Finished SelectionLength property
16846           - Implemented SelectionStart property
16847           - Implemented Text property
16848           - Removed unused vars
16849         * MessageBox.cs: Added new keyword where required
16850         * TextBox.cs: Removed Text property code (now in TextBoxBase), fixed
16851           WndProc signature
16852         * MenuAPI.cs: Added new keyword where required
16853         * ButtonBase.cs: Removed vars that are provided by base class, added
16854           new keyword where required
16855         * ThemeWin32Classic.cs (DrawMonthCalendarDate): Now cast Math.Floor
16856           argument to double, to allow compiling with csc 2.0 (Atsushi ran
16857           into this)
16858         * Application.cs (Run): Now triggers the ThreadExit event
16859         * CommonDialog.cs: Added new keyword where required; now properly sets
16860           parent (owner) for dialog
16861         * XplatUIX11.cs: Commented out unused vars
16862         * StatusBar.cs: Fixed signature for Text property
16863         * TabPage.cs: Undid Jordi's removal of unused var, now using the var
16865 2005-01-04  Jordi Mas i Hernandez <jordi@ximian.com>
16867         * ComboBox.cs, TabPage.cs, MenuAPI.cs, ThemeWin32Classic.cs,
16868         TrackBar.cs, MonthCalendar.cs: remove unused vars
16870 2005-01-03  Jackson Harper  <jackson@ximian.com>
16872         * ThemeWin32Classic.cs:
16873         * X11Keyboard.cs: Remove unused vars.
16875 2005-01-03  Peter Bartok  <pbartok@novell.com>
16877         * TextBox.cs:
16878           - set_Text: Tied into TextControl
16879           - set_TextAlignment: Tied into TextControl
16880         * TextControl.cs:
16881           - Added alignment properties and implemented alignment handling
16882             and drawing (still has a bug, not generating proper expose events)
16883           - Added new Line() constructor to allow passing the line alignment
16884           - Fixed selection setting, properly handling end<start now
16885           - Added aligment considerations to RecalculateDocument()
16886         * TextBoxBase.cs:
16887           - Now properly enforces control height for single line controls
16888           - Added support for CharacterCasing
16889           - Added IsInputKey override
16890           - Fixed Keys.Enter logic
16891           - Added SetBoundsCore override
16892           - Fixed mouse selection handling
16894 2005-01-03  Jackson Harper  <jackson@ximian.com>
16896         * TreeView.cs:
16897           - Collapse and uncheck all nodes when CheckBoxes is disabled.
16898           - Checkboxes are always aligned to the bottom of the node,
16899           regardless of item height.
16900           - Use the node bounds to draw the text so we can center it when
16901           the item height is greater then the font height.
16902           - Node::Bounds are only the text part of the node.
16903         * TreeNode.cs: New method to combine collapsing and unchecking all
16904           nodes recursively.
16906 2005-01-02  Jackson Harper  <jackson@ximian.com>
16908         * TreeView.cs: Draw checkmarks, handle detecting check mark clicks
16909         * TreeNode.cs: Add a bounding box for the checkbox, refresh the
16910         tree when a check is changed. TODO: Only refresh the checked node.
16912 2004-12-30  Jackson Harper  <jackson@ximian.com>
16914         * TreeView.cs: Draw checkbox boxes when checkboxes are enabled.
16915         * TreeNode.cs: When collapsing make sure to never collapse the
16916         root node.
16918 2004-12-29  Jackson Harper  <jackson@ximian.com>
16920         * TreeView.cs: Align lines to the bottom of plus minus boxes properly.
16921         
16922 2004-12-28  Zoltan Varga  <vargaz@freemail.hu>
16924         * X11Structs.cs X11Keyboard.cs XplatUIX11.cs: Fix 64 bit issues.
16926 2004-12-28  Peter Bartok  <pbartok@novell.com>
16928         * MessageBox.cs (get_CreateParams): Don't use owner var if it's
16929           not yet assigned
16931 2004-12-28  Peter Bartok  <pbartok@novell.com>
16933         * Control.cs (WndProc): Added WM_HELP handler, now generates
16934           HelpRequested event
16935         * Form.cs: Added HelpButton property and required support code
16936         * XplatUIStructs.cs: Added HELPINFO structure for WM_HELP handling
16938 2004-12-28  Peter Bartok  <pbartok@novell.com>
16940         * CommonDialog.cs:
16941           - Made DialogForm.owner variable internal
16942           - Added check to ensure owner form is set before setting
16943             owner properties in CreateParams
16945 2004-12-28  Geoff Norton  <gnorton@customerdna.com>
16947         * XplatUIOSX.cs: Implement mouse hovering.  Fix QDPoint struct to avoid
16948           swizzling.  Implement ClientToScreen and ScreenToClient.  Implement
16949           GetCursorPos.  Fix major visibility issues.  Rework the windowing
16950           system to support borderless/titleless windows (implements menus).
16951           Fix GetWindowPos.  Implement initial background color support for
16952           views.
16954 2004-12-28  Peter Bartok  <pbartok@novell.com>
16956         * Form.cs (get_CreateParams): Make sure we have an owner before using
16957           the owner variable. Implement proper default if no owner exists
16959 2004-12-28  Peter Bartok  <pbartok@novell.com>
16961         * In preparation for making Managed.Windows.Forms the default build target
16962           for System.Windows.Forms, the following stubbed files were added.
16963           Dialogs are currently being implemented by contributors and are only
16964           short-term place holders.
16965         * ColorDialog.cs: Initial check-in (minmal stub)
16966         * DataGrid.cs: Initial check-in (minimal stub)
16967         * DataGridLineStyle.cs: Initial check-in (minimal stub)
16968         * DataGridParentRowsLabelStyle.cs: Initial check-in (minimal stub)
16969         * DataGridTableStyle.cs: Initial check-in (minimal stub)
16970         * FontDialog.cs: Initial check-in (minimal stub)
16971         * FileDialog.cs: Initial check-in (minimal stub)
16972         * GridColumnStylesCollection.cs: Initial check-in (minimal stub)
16973         * GridTableStylesCollection.cs: Initial check-in (minimal stub)
16974         * OpenFileDialog: Initial check-in (minimal stub)
16975         * IComponentEditorPageSite.cs: Initial check-in
16976         * Splitter.cs: Initial check-in (for Jackson)
16977         * SplitterEventArgs.cs: Initial check-in (for Jackson)
16978         * SplitterEventHandler.cs: Initial check-in (for Jackson)
16979         * TextBox.cs: Initial check-in; still needs some wiring to
16980           TextControl backend
16981         * Form.cs: Implemented ControlBox property
16982         * MessageBox.cs: Added proper coding for Minimize/Maximize/ControlBox
16983         * CommonDialog.cs: Added proper coding for Minimize/Maximize/ControlBox
16984         * TextControl.cs: Added selection functionality; added todo header
16985         * TextBoxBase.cs:
16986           - Implemented Lines property
16987           - Implemented TextHeight property
16988           - Implemented SelectedText property
16989           - Implemented SelectionLength property
16990           - Implemented SelectAll method
16991           - Implemented ToString method
16992           - Removed and cleaned up some debug code
16993           - Implemented (still buggy) mouse text selection
16995 2004-12-27  Jordi Mas i Hernandez <jordi@ximian.com>
16997         * ComboBox.cs: Complete DropDownList implementation, fixes.
16999 2004-12-26  Jordi Mas i Hernandez <jordi@ximian.com>
17001         * ThemeWin32Classic, Theme.cs: ComboBox drawing methods
17002         * ComboBoxStyle.cs: ComboBoxStyle enum
17003         * ComboBox.cs: Initial work on ComboBox control
17005 2004-12-21  Peter Bartok  <pbartok@novell.com>
17007         * Control.cs (ctor, CreateParams): Moved setting of is_visible
17008           forward so that anything that creates a window gets the default,
17009           also no longer uses Visible property in CreateParams to avoid
17010           walking up the parent chain and possibly get the wrong visible
17011           status. Fixed IsVisible to no longer walk up to the parent.
17013 2004-12-21  Peter Bartok  <pbartok@novell.com>
17015         * Form.cs (ShowDialog): Unset modality for the proper window
17017 2004-12-20  Peter Bartok  <pbartok@novell.com>
17019         * CommonDialog.cs: Initial check-in
17021 2004-12-20  Peter Bartok  <pbartok@novell.com>
17023         * Control.cs (Visible): Now uses the parent window instead of the
17024           client area window for the property
17026         * Form.cs
17027           - ShowDialog(): Now uses the proper window for modality
17028           - The default visibility state for the form parent is now false. This
17029             will prevent the user from seeing all the changes to the form and
17030             its controls before the application hits Application.Run()
17031           - Removed some stale commented out code
17033         * NativeWindow.cs:
17034           - Added FindWindow() method to have a method to check for existence
17035             of a window handle
17036           - Added ability to override default exception handling (for example
17037             when debugging with VS.Net; to do this the ExternalExceptionHandler
17038             define must be set
17039           - Removed some useless debug output
17041         * XplatUIX11.cs:
17042           - Removed r37929 (SetModal patch from Ashwin Bharambe), was
17043             not working as expected
17044           - Implemented modal_window stack and checking for _WM_ACTIVE_WINDOW
17045             property to allow switching back to the modal window if focus is
17046             given to another one of our windows (Application Modal)
17047           - Now only sets override_redirect if we create a window
17048             without WS_CAPTION
17049           - Moved EventMask selection before mapping of newly created window
17050             so we can catch the map event as well
17051           - Implemented Activate() method via the _WM_ACTIVE_WINDOW property
17052           - Added various Atom related DllImports
17053           - Implemented Exit() method
17054           - .ctor() : No longer shows window if WS_VISIBLE is not defined
17055             in the CreateParams
17057         * MessageBox.cs: Now properly deals with the FormParent window by
17058           providing an override the FormParent CreateParams property to
17059           set as POPUP instead of OVERLAPPED window.
17061 2004-12-19  Geoff Norton  <gnorton@customerdna.com>
17063         * XplatUIOSX.cs: Implement DestroyWindow.  Implement ScrollWindow
17064         Minor code cleanup.
17066 2004-12-19  Geoff Norton  <gnorton@customerdna.com>
17067         
17068         * XplatUIOSX.cs (SetModal): Implement this method on OSX.
17070 2004-12-18  Peter Bartok  <pbartok@novell.com>
17072         * XplatUIX11.cs (SetModal): Applied patch from Ashwin Bharambe,
17073           implementing SetModal() method
17075 2004-12-18  Peter Bartok  <pbartok@novell.com>
17077         * X11Structs.cs (XGCValues): Fixed type of function element
17078         * XplatUI.cs: Added ScrollWindow() method
17079         * XplatUIDriver.cs: Added ScrollWindow() abstract
17080         * XplatUIWin32.cs: Implemented ScrollWindow() method
17081         * XplatUIX11.cs: Implemented ScrollWindow() method
17082         * XplatUIOSX.cs: Stubbed out ScrollWindow() method
17084 2004-12-17  Geoff Norton  <gnorton@customerdna.com>
17086         * XplatUIOSX.cs:  Fix cursor to use an Invert instead of drawing it
17087         Some more keyboard support (INCOMPLETE)
17089 2004-12-17  Peter Bartok  <pbartok@novell.com>
17091         * TextControl.cs:
17092         - Added color attribute to line tags.
17093         - Added color argument to all functions dealing with tags
17094         - Added color argument support to various functions
17095         - Fixed miss-calculation of baseline/shift in certain circumstances
17097         * TextBoxBase.cs: Added new color option to test code
17099 2004-12-17  Jackson Harper  <jackson@ximian.com>
17101         * TreeNode.cs:
17102         * MonthCalendar.cs: Signature fixes
17104 2004-12-17  Geoff Norton  <gnorton@customerdna.com>
17106         * XplatUIOSX.cs: Find the missing caret; caret was dissappearing after a
17107         keyboard event moved it.  Create a new graphics context for each paint resolves this
17109 2004-12-17  Geoff Norton  <gnorton@customerdna.com>
17111         * XplatUIOSX.cs: Fix hard cpu eat on loop with existing timers,
17112         Make caret exist and go blink blink.  Initial keyboard support.
17113         Fix exception handler, Add Invalidate support.  Change way RefreshWindow
17114         works.
17116 2004-12-17  Jackson Harper  <jackson@ximian.com>
17118         * XplatUIStructs.cs: Updated set of virtual keycodes.
17119         * KeyboardLayouts.cs: SCROLL_LOCK is now SCROLL
17121 2004-12-17  Jackson Harper  <jackson@ximian.com>
17123         * XplatUIX11.cs: Prune old keyboard code.
17125 2004-12-17  Jackson Harper  <jackson@ximian.com>
17127         * XplatUIX11.cs: When generating mouse wparams get the modifier
17128         keys from the ModifierKeys property.
17130 2004-12-17  Jackson Harper  <jackson@ximian.com>
17132         * X11Keyboard.cs: Send up/down input when generating
17133         messages. Remove some unused vars.
17135 2004-12-17  Jackson Harper  <jackson@ximian.com>
17137         * TabControl.cs:
17138         * TreeView.cs: get rid of warnings.
17140 2004-12-17  Jackson Harper  <jackson@ximian.com>
17142         * XplatUIStructs.cs: Fix a couple wrong virtual keycodes.
17144 2004-12-17  Jordi Mas i Hernandez <jordi@ximian.com>
17146         * ListBox.cs: bug fixes, changes for CheckedListBox.cs
17147           CheckedListBox.cs: Implementation
17149 2004-12-17  Peter Bartok  <pbartok@novell.com>
17151         * TextControl.cs (RecalculateLine): Fixed baseline aligning calcs
17153 2004-12-16  Peter Bartok  <pbartok@novell.com>
17155         * TextControl.cs:
17156           - InsertCharAtCaret(): Fixed start pos fixup
17157           - CaretLine_get: No longer derives the line from the tag, the tag
17158             could be stale if lines in the document have been added or deleted
17159           - RebalanceAfterDelete(): Fixed bug in balancing code
17160           - RebalanceAfterAdd(): Fixed really stupid bug in balancing code
17161           - Line.Streamline(): Now can also elminate leading empty tags
17162           - DumpTree(): Added a few more tests and prevented exception on
17163             uninitialized data
17164           - Added Debug section for Combining lines
17165           - Delete(): Now copies all remaining properties of a line
17166           
17167         * TextBoxBase.cs:
17168           - Left mousebutton now sets the caret (and middle button still acts
17169             as formatting tester, which must go away soon)
17170           - Added Debug section for Deleting/Combining lines
17171           - Fixed calculations for UpdateView after Combining lines
17173 2004-12-16  Peter Bartok  <pbartok@novell.com>
17175         * TextControl.cs: Now properly aligns text on a baseline, using the
17176           new XplatUI.GetFontMetrics() method. Simplified several calculations
17177         * TextBoxBase.cs: Moved #endif to allow compiling if Debug is not
17178           defined
17180 2004-12-16  Peter Bartok  <pbartok@novell.com>
17182         * XplatUI.cs: Added GetFontMetrics() method
17183         * XplatUIDriver.cs: Added GetFontMetrics() abstract
17184         * XplatUIX11.cs: Implemented GetFontMetrics() method, now calls
17185           into libgdiplus, our private GetFontMetrics function
17186         * XplatUIOSX.cs: Implemented GetFontMetrics() method, same as X11
17187         * XplatUIWin32.cs: Implemented GetFontMetrics() method
17189 2004-12-16  Jackson Harper  <jackson@ximain.com>
17191         * XplatUIStruct.cs: Add enum for dead keys
17192         * X11Keyboard.cs: Map and unmap dead keys.
17194 2004-12-16  Jackson Harper  <jackson@ximian.com>
17196         * X11Keyboard.cs: Detect and use the num lock mask.
17198 2004-12-16  Peter Bartok  <pbartok@novell.com>
17200         * Control.cs (CreateGraphics): Added check to make sure the
17201           handle of the window exists before calling Graphics.FromHwnd()
17203 2004-12-16  Peter Bartok  <pbartok@novell.com>
17205         * TextBoxBase.cs: Initial check-in. DO NOT TRY TO USE THIS YET. It
17206           contains a lot of code that's not supposed to be there for the
17207           real thing, but required for developing/testing the textbox
17208           backend.
17210 2004-12-16  Peter Bartok  <pbartok@novell.com>
17212         * TextControl.cs:
17213         - Fixed Streamline method
17214         - Added FindTag method to Line
17215         - Added DumpTree method for debugging
17216         - Added DecrementLines() method for deleting lines
17217         - Fixed UpdateView to update the cursor to end-of-line on single-line
17218           updates
17219         - Added PositionCaret() method
17220         - Fixed MoveCaret(LineDown) to move into the last line, too
17221         - Added InsertChar overload
17222         - Fixed InsertChar tag offset calculations
17223         - Added DeleteChar() method
17224         - Added Combine() method for folding lines
17225         - Fixed Delete() method, no longer allocates wasted Line object and
17226           now copies all properties when swapping nodes
17227         - Delete() method now updates document line counter
17229 2004-12-15  Jackson Harper  <jackson@ximian.com>
17231         * XplatUIX11.cs: Get the modifier keys from the keyboard driver
17232         * X11Keyboard.cs: Expose the currently selected modifier keys
17233         through a property.
17235 2004-12-15  Peter Bartok  <pbartok@novell.com>
17237         * TextControl.cs: Initial check-in. Still incomplete
17239 2004-12-15  Jackson Harper  <jackson@ximian.com>
17241         * TreeNode.cs:
17242         * TreeView.cs: Fix build on csc (second time today ;-))
17244 2004-12-15  Jackson Harper  <jackson@ximian.com>
17246         * TreeView.cs: Store the treenodes plus/minus box bounds when it
17247         is calculated and use this for click testing.
17248         * TreeNode.cs: Add functionality to store the nodes plus minus box bounds.
17250 2004-12-15  Jackson Harper  <jackson@ximian.com>
17252         * TreeView.cs: Pass the nodes image index to the image list when
17253         drawing that image.
17255 2004-12-15  Jackson Harper  <jackson@ximian.com>
17257         * X11Keyboard.cs: Set messages hwnd.
17258         * XplatUIX11.cs: Pass proper hwnd wot keyboard driver. Set hwnd on
17259         post_message calls.
17261 2004-12-15  Jackson Harper  <jackson@ximian.com>
17263         * X11Keyboard.cs: Fix to compile with csc.
17264         
17265 2004-12-15  Jackson Harper  <jackson@ximian.com>
17267         * X11Structs.cs: Add key mask values
17268         * XplatUIStruct.cs: Add keyboard event flags, and keyboard definitions
17269         * X11Keyboard.cs: New file - Extrapolates and interpolates key
17270         down/up foo into WM_CHAR foo
17271         * KeyboardLayouts.cs: Common keyboard layouts
17272         * XplatUIX11.cs: Add the keyboard driver. Add functionality to
17273         post messages into the main queue.
17275 2004-12-13  Jordi Mas i Hernandez <jordi@ximian.com>
17277         * Button.cs: implement ProcessMnemonic
17278         * ThemeWin32Classic.cs: use ResPool (caching) instead of creating
17279           brushes everytime
17280         * Control.cs: fixes IsMnemonic (support for &&, case insensitive, etc)
17281         * ButtonBase.cs: Show HotkeyPrefix (not the &)
17283 2004-12-12  John BouAntoun  <jba-mon@optusnet.com.au>
17284         
17285         * MonthCalendar.cs: Implemented click-hold for next/previous month
17286           and date selection
17287           
17288 2004-12-11  Peter Bartok  <pbartok@novell.com>
17290         * X11Structs.cs:
17291           - Added XKeyboardState (moved from XplatUIX11.cs)
17292           - Added XCreateGC related enums and structures
17293           - Added GXFunction for XSetFunction
17295         * XplatUIStructs.cs: Added missing WS_EX_xxx definitions
17297         * XplatUI.cs: Added CreateCaret(), DestroyCaret(), SetCaretPos() and
17298           CaretVisible() calls
17300         * ToolTip.cs: Added code to prevent stealing focus from app windows
17302         * XplatUIDriver.cs: Added abstracts for caret functions (CreateCaret,
17303           DestroyCaret, SetCaretPos and CaretVisible)
17305         * XplatUIX11.cs:
17306           - Added implementation for caret functions
17307           - Moved hover variables into a struct, to make it a bit easier
17308             on the eyes and to debug
17309           - Removed XKeyboardState (moved to XplatUIX11.cs)
17310           - Moved Keyboard properties into the properties region
17312         * Control.cs (get_Region): Control.CreateGraphics is the appropriate
17313           call to get a graphics context for our control
17315         * XplatUIOSX.cs: Added empty overrides for the new caret functions
17317         * TreeView.cs: Fixed bug. No matter what color was set it would always
17318           return SystemColors.Window
17320         * XplatUIWin32.cs: Implemented caret overrides
17322 2004-12-10  Jordi Mas i Hernandez <jordi@ximian.com>
17324         * ListBox.cs: fire events, implement missing methods and properties,
17325         sorting.
17327 2004-12-10  John BouAntoun <jba-mono@optusnet.com.au>
17329         * MonthCalendar.cs: invalidation bug fixing
17330         * ThemeWin32Classic.cs: paint fixing
17332 2004-12-09  Geoff Norton  <gnorton@customerdna.com>
17334         * XplatUIOSX.cs: Refactor to pass the real hwnd into Graphics.FromHwnd, we
17335         prepare the CGContextRef there now.
17337 2004-12-09  John BouAntoun <jba-mono@optusnet.com.au>
17339         * MonthCalendar.cs:
17340           - optimisationL only invalidate areas that have changed
17341         * ThemeWin32Classic.cs:
17342           - only paint parts that intersect with clip_area
17344 2004-12-09  Peter Bartok  <pbartok@novell.com>
17346         * Application.cs: Undid changes from r37004 which cause problems
17347         on X11
17349 2004-12-09  Ravindra  <rkumar@novell.com>
17351         * ToolBar.cs: Added support for displaying ContextMenu
17352         attached to a button on ToolBar.
17353         * ToolBarButton.cs: Uncomment/fixed the DropDownMenu
17354         property.
17356 2004-12-09  Jordi Mas i Hernandez <jordi@ximian.com>
17358         * Label.cs: autosize works in text change and removes unnecessary
17359         invalidate
17361 2004-12-09  Jordi Mas i Hernandez <jordi@ximian.com>
17363         * ThemeWin32Classic.cs, XplatUIOSX.cs, XplatUIWin32.cs:
17364         remove warnings
17366 2004-12-08  Geoff Norton  <gnorton@customerdna.com>
17368         * XplatUIOSX.cs: Added mouse move/click/grab support
17369         Remove some debugging WriteLines not needed anymore.
17370         Add window resizing/positioning.
17371         Fix visibility on reparenting.
17373 2004-12-08  Peter Bartok  <pbartok@novell.com>
17375         * XplatUIOSX.cs: Added Idle event, now compiles on VS.Net
17377 2004-12-07  Geoff Norton  <gnorton@customerdna.com>
17379         * XplatUIOSX.cs: Initial checkin
17380         * XplatUI.cs: Use the Quartz driver if the environment is set to use it
17382 2004-12-03  Ravindra <rkumar@novell.com>
17384         * ListView.cs: Added some keybindings and fixed scrolling.
17385         ScrollBars listen to ValueChanged event instead of Scroll
17386         Event. This would let us take care of all changes being
17387         done in the scrollbars' values programmatically or manually.
17388         * ListView.cs (CanMultiselect): Added a check for shift key.
17389         * ListView.cs (EnsureVisible): Fixed. Do proper scrolling.
17390         * ListViewItem.cs (Clone): Fixed. We need to make a copy
17391         of ListViewSubItemCollection as well.
17393 2004-12-06  Peter Bartok <pbartok@novell.com>
17395         * Control.cs (Parent): Added check and exception to prevent
17396         circular parenting
17398 2004-12-03  Jordi Mas i Hernandez <jordi@ximian.com>
17400         * ListBox.cs: implemented clipping, selection single and multiple,
17401         bug fixing
17403 2004-12-03  Ravindra <rkumar@novell.com>
17405         * ListView.cs (ListView_KeyDown):
17406         * ListView.cs (ListView_KeyUp): Fixed multiple selection handling
17407         when CTRL key is pressed.
17408         * ListViewItem.cs (Selected): Fixed setting the property.
17410 2004-12-03  Marek Safar  <marek.safar@seznam.cz>
17412         * Application.cs (OnThreadException): Use ThreadExceptionDialog.
17414         * Form.cs: Add ActiveForm, FormBorderStyle, MaximizeBox,
17415         MinimizeBox, ShowInTaskbar, TopMost properties.
17417         * ThreadExceptionDialog.cs: Implemented (disabled TextBox until
17418         will be implemented).
17420 2004-12-03  Marek Safar  <marek.safar@seznam.cz>
17422         * OwnerDrawPropertyBag.cs: New internal parameterless ctor.
17424         * TreeNode.cs: Implemented ICloneable, Fixed to pass my simple
17425         tests.
17426         
17427         * TreeNodeCollection.cs: Add exception throwing for Add,AddRange.
17428         
17429         * TreeView.cs: BackColor is Colors.Window.
17431 2004-12-01  Jackson Harper  <jackson@ximian.com>
17433         * TreeView.cs: When resizing the tree if the user is making it
17434         smaller we don't get expose events, so we need to handle adding
17435         the horizontal scrollbar in the size changed handler as well as
17436         the expose handler.
17438 2004-12-02  Jordi Mas i Hernandez <jordi@ximian.com>
17440         * DrawItemState.cs: fixes wrong enum values
17442 2004-12-01  Jackson Harper  <jackson@ximian.com>
17444         * TreeView.cs: Resize the hbar as well as the vbar on resize.
17446 2004-12-01  Jackson Harper  <jackson@ximian.com>
17448         * NodeLabelEditEventArgs.cs:
17449         * NodeLabelEditEventHandler.cs:
17450         * OpenTreeNodeEnumerator.cs:
17451         * TreeNode.cs:
17452         * TreeNodeCollection.cs:
17453         * TreeView.cs:
17454         * TreeViewAction.cs:
17455         * TreeViewCancelEventArgs.cs:
17456         * TreeViewCancelEventHandler.cs:
17457         * TreeViewEventArgs.cs:
17458         * TreeViewEventHandler.cs: Initial implementation.
17460 2004-12-01  Ravindra <rkumar@novell.com>
17462         * ListView.cs (CalculateListView): Fixed scrolling related
17463         calculations. Also, removed some debug statements from other
17464         places.
17465         * ListViewItem.cs: Changed access to 'selected' instance variable
17466         from private to internal.
17467         * ThemeWin32Classic.cs (DrawListViewItem): Fixed SubItem drawing.
17469 2004-12-01  Jordi Mas i Hernandez <jordi@ximian.com>
17471         * ThemeWin32Classic.cs: remove cache of brush and pens for
17472         specific controls and use the global system, fixes scrollbutton
17473         bugs (for small sizes, disabled, etc)
17474         
17475         * ScrollBar.cs: does not show the thumb for very small controls
17476         (as MS) and allow smaller buttons that the regular size
17478 2004-12-01  Miguel de Icaza  <miguel@ximian.com>
17480         * UpDownBase.cs: Add abstract methods for the interface.
17481         Add new virtual methods (need to be hooked up to TextEntry when it
17482         exists).
17483         Add override methods for most features.
17484         Computes the size, forces the height of the text entry.
17486         * NumericUpDown.cs: Put here the current testing code.
17488         * Set eol-style property on all files that do not have mixed line
17489         endings, to minimize the future problems.  There are still a few
17490         files with mixed endings, and someone should choose whether they
17491         want to move it or not.
17493 2004-11-30  Jordi Mas i Hernandez <jordi@ximian.com>
17495         * MonthCalendar.cs, ListView.cs: use Theme colours instead of
17496         System.Colors
17497         
17498 2004-11-30  Ravindra <rkumar@novell.com>
17500         * ThemeWin32Classic.cs (DrawListViewItem): Fixed selected item
17501         drawing and replaced use of SystemColors by theme colors.
17502         * ListView.cs (ListView_Paint): Fixed painting done during scrolling.
17503         * ListView.cs (ListViewItemCollection.Add): Throw exception when
17504         same ListViewItem is being added more than once.
17506 2004-11-30  John BouAntoun <jba-mono@optusnet.com.au>
17508         * MonthCalendar.cs:
17509           - ControlStyles love to make the control not flicker
17510           
17511 2004-11-30  Peter Bartok  <pbartok@novell.com>
17513         * CharacterCasing.cs: Added
17515 2004-11-29  Peter Bartok  <pbartok@novell.com>
17517         * TreeNode.cs, TreeNodeCollection.cs, TreeView.cs,
17518           TreeViewAction.cs, TreeViewEventArgs.cs: Removed new files.
17519           I am removing these files as they conflict with already completed
17520           work. While it is fantastic to get contributions to MWF, I
17521           respectfully ask that everyone please coordinate their contributions
17522           through mono-winforms-list or #mono-winforms at this time. We're
17523           explicitly avoiding stubbing and don't want controls that don't have
17524           their basic functionality implemented in svn. Please also see
17525           http://www.mono-project.com/contributing/winforms.html
17528 2004-11-29  Marek Safar  <marek.safar@seznam.cz>
17530         * Application.cs (ModalRun): Don't hang after exit.
17532         * Theme.cs: New TreeViewDefaultSize property.
17534         * ThemeWin32Classic.cs: Replaced hardcoded defaultWindowBackColor
17535         with less hardcoded SystemColors constant.
17536         Implemented TreeViewDefaultSize.
17538         * TreeNode.cs, TreeNodeCollection.cs, TreeView.cs,
17539         TreeViewAction.cs, TreeViewEventArgs.cs: New files.
17542 2004-11-29  John BouAntoun <jba-mono@optusnet.com.au>
17544         * MonthCalendar.cs:
17545           - Fix NextMonthDate and PrevMonthDate click moving calendar
17547 2004-11-26  John BouAntoun <jba-mono@optusnet.com.au>
17549         * MonthCalendar.cs:
17550           - Fix usage of ScrollChange Property when scrolling months
17552 2004-11-26  Jordi Mas i Hernandez <jordi@ximian.com>
17554         * Menu.cs, MainMenu.cs, MenuItem.cs, MenuAPI.cs
17555          - Fixes menu destroying
17556          - Support adding and removing items on already created menus
17558 2004-11-26  John BouAntoun <jba-mono@optusnet.com.au>
17560         * MonthCalendar.cs:
17561           - Re-worked all bolded dates handling to match win32
17562         * ThemeWin32Classic.cs:
17563           - Fixed rendering with bolded dates
17565 2004-11-25  Jordi Mas i Hernandez <jordi@ximian.com>
17567         * ListBox.cs, Theme.cs, ThemeWin32Classic.cs:
17568         - Horizontal scroolbar
17569         - Multicolumn
17570         - Fixes
17573 2004-11-25  John BouAntoun <jba-mono@optusnet.com.au>
17575         * MonthCalendar.cs:
17576           - Fix Usage of MaxSelectionCount from SelectionRange
17577           - Fixed Shift + Cursor Selection
17578           - Fixed Shift + (Pg up/Pg dn, Home/End) selection
17579           - Fixed normal cursor selection to be compat with win32
17580           - Fixed Shift + Mouse Click selection
17582 2004-11-24  Peter Bartok <pbartok@novell.com>
17584         * XplatUI.cs (DispatchMessage): Switched to return IntPtr
17585         * XplatUIDriver.cs (DispatchMessage): Switched to return IntPtr
17586         * XplatUIX11.cs:
17587           - CreatedKeyBoardMsg now updates keystate with Alt key
17588           - Added workaround for timer crash to CheckTimers, Jackson will
17589             develop a proper fix and check in later
17590           - Implemented DispatchMessage
17591           - Removed calling the native window proc from GetMessage (call
17592             now moved to DispatchMessage)
17594         * KeyEventArgs.cs (Constructor): Now combines modifierkeys into
17595           the keydata (Fixes bug #69831)
17597         * XplatUIWin32.cs:
17598           - (DispatchMessage): Switched to return IntPtr
17599           - Added DllImport for SetFocus
17601 2004-11-24  Ravindra <rkumar@novell.com>
17603         * ThemeWin32Classic.cs: Fixed ListView border and checkbox
17604         background drawing.
17605         * ListViewItem.cs: Fixed various properties, calculations
17606         and Clone() method. Fixed ListViewSubItemCollection.Clear() method.
17607         * ListView.cs: Fixed calculations, BackColor, ForeColor properties
17608         and some internal properties. Fixed MouseDown handler and Paint
17609         method.
17611 2004-11-24  John BouAntoun <jba-mono@optusnet.com.au>
17613         * MonthCalendar.cs: Add TitleMonth ContextMenu handling
17615 2004-11-24  John BouAntoun <jba-mono@optusnet.com.au>
17617         * ContainerControl.cs: correct accidental check in of local changes
17619 2004-11-24  John BouAntoun <jba-mono@optusnet.com.au>
17621         * ThemeWin32Classic.cs:
17622                 - Fixed Drawing Last month in grid (sometimes not showing)
17623         * MonthCalendar.cs:
17624                 - Fixed title width calculation bug (makeing title small)
17626 2004-11-23  Peter Bartok <pbartok@novell.com>
17628         * XplatUIX11.cs:
17629           - Added generation of WM_MOUSEHOVER event
17630           - Added missing assignment of async_method atom
17631           - Fixed WM_ERASEBKGND; now only redraws the exposed area
17633 2004-11-23  John BouAntoun <jba-mono@optusnet.com.au>
17635         * ThemeWin32Classic.cs:
17636                 - Fixed Drawing of today circle when showtodaycircle not set
17637                 - fixed drawing of first and last month in the grid (gay dates)
17638         * MonthCalendar.cs:
17639                 - Fixed Drawing of today circle
17640                 - Fixed drawing of grady dates
17641                 - Fixed HitTest for today link when ShowToday set to false
17642                 - Fixed DefaultSize to obey ShowToday
17644 2004-11-23  John BouAntoun <jba-mono@optusnet.com.au>
17646         * ThemeWin32Classic.cs: Fixed DrawMonthCalendar and private support methods
17647         * System.Windows.Forms/Theme.cs
17648         * MonthCalendar.cs: added for MonthCalendar
17649         * SelectionRange.cs: added for MonthCalendar
17650         * Day.cs: added for MonthCalendar: added for MonthCalendar
17651         * DateRangeEventArgs.cs: added for MonthCalendar
17652         * DateRangeEventHandler.cs: added for MonthCalendar
17654 2004-11-22  Ravindra <rkumar@novell.com>
17656         * ThemeWin32Classic.cs: Fixed ListViewDrawing with 'UseItemStyleForSubItems'
17657         property.
17659 2004-11-22  Miguel de Icaza  <miguel@ximian.com>
17661         * UpDownBase.cs (InitTimer): Use prehistoric C# 1.0 notation for
17662         event handler.
17663         
17664         * NumericUpDown.cs: Added new implementation.
17665         * UpDownBase.cs: Added new implementation.
17667         * XplatUIWin32.cs (KeyboardSpeed, KeyboardDelay): added default
17668         implementations.
17669         
17670         * XplatUIX11.cs (KeyboardSpeed, KeyboardDelay): added default
17671         implementations.
17673         * XplatUIDriver.cs ((KeyboardSpeed, KeyboardDelay): added new
17674         methods.
17676 2004-11-21  Miguel de Icaza  <miguel@ximian.com>
17678         * Timer.cs  (Dispose): Should call the base dispose when
17679         overriding.
17681 2004-11-19  Jordi Mas i Hernandez <jordi@ximian.com>
17683         * ScrollBar.cs: updates thumb position when max, min or increment
17684         is changed
17686 2004-11-21  Ravindra <rkumar@novell.com>
17688         * ListView.cs: Implemented item selection, activation and
17689         column header style. Fixed properties to do a redraw, if
17690         required. Added support for MouseHover, DoubleClick, KeyDown
17691         and KeyUp event handling and some minor fixes.
17692         * ListViewItem.cs: Fixed constructor.
17693         * ThemeWin32Classic.cs: Improved drawing for ListView.
17695 2004-11-19  Jordi Mas i Hernandez <jordi@ximian.com>
17697         * ThemeWin32Classic.cs: initial listbox drawing code
17698         * DrawMode.cs: new enumerator
17699         * ListControl.cs: stubbed class
17700         * ListBox.cs: initial implementation
17701         * Theme.cs: new methods definitions
17702         * SelectionMode.cs: new enumerator
17704 2004-11-17  Peter Bartok  <pbartok@novell.com>
17706         * XplatUIWin32.cs: Added double-click events to the class style
17707         * Control.cs (WndProc):
17708           - Added handling of click-count to MouseDown/ MouseUp events.
17709           - Added handling of middle and right mouse buttons
17710           - Removed old debug code
17712 2004-11-17  Jackson Harper  <jackson@ximian.com>
17714         * XplatUIX11.cs: Use the new Mono.Unix namespace.
17716 2004-11-17  Ravindra <rkumar@novell.com>
17718         * ListView.cs: Added event handling for MouseMove/Up/Down.
17719         * ColumnHeader.cs: Added a read-only internal property 'Pressed'.
17720         * ThemeWin32Classic.cs: We need to clear the graphics context and
17721         draw column header in a proper state.
17724 2004-11-17  Jordi Mas i Hernandez <jordi@ximian.com>
17726         *  Menu.cs: fixes signature
17728 2004-11-16  Peter Bartok  <pbartok@novell.com>
17730         * XplatUIX11.cs (GetMessage): Implemented generation of
17731           double click mouse messages
17733 2004-11-12  Jordi Mas i Hernandez <jordi@ximian.com>
17735         *  Form.cs, MainMenu.cs, MenuAPI.cs: tracker should be for tracking session
17736         not by menu
17738 2004-11-11  Peter Bartok  <pbartok@novell.com>
17740         * HandleData.cs: Added Visible property
17741         * XplatUIX11.cs (IsVisible): Now uses Visible property from
17742           HandleData
17743         * XplatUIX11.cs: Removed old debug leftovers
17744         * XplatUIX11.cs (DefWndProc): Added WM_ERASEBKGND handler
17745         * Control.cs (WndProc): Removed old debug leftovers,
17746           streamlined handling of WM_WINDOWPOSCHANGED, removed un-
17747           needed WM_SIZE handling
17749 2004-11-11  Jackson Harper  <jackson@ximian.com>
17751         * OwnerDrawPropertyBag.cs:
17752         * TreeViewImageIndexConverter.cs: Initial implementation
17754 2004-11-10  Jackson Harper  <jackson@ximian.com>
17756         * ThemeWin32Classic.cs:
17757         * TabControl.cs: instead of moving tabs by the slider pos just
17758         start drawing at the tab that is offset by the slider. This way
17759         scrolling always moves by exactly one tab.
17761 2004-11-10  Jackson Harper  <jackson@ximian.com>
17763         * TabControl.cs: You can only scroll left when the slider has
17764         already ben moved right.
17765         
17766 2004-11-10  Jackson Harper  <jackson@ximian.com>
17768         * ThemeWin32Classic.cs: Do not draw the selected tab if its not in
17769         the clip area.
17770         
17771 2004-11-10  Jackson Harper  <jackson@ximian.com>
17773         * ThemeWin32Classic.cs: Don't bother drawing tabs outside of the
17774         clip area.
17775         
17776 2004-11-09  Jackson Harper  <jackson@ximian.com>
17778         * TabControl.cs (CalcXPos): New helper method so we can determine
17779         the proper place to start drawing vertical tabs.
17780         * ThemeWin32Classic.cs (DrawTab): Draw right aligned tabs.
17781         
17782 2004-11-09  Jackson Harper  <jackson@ximian.com>
17784         * TabControl.cs: Calculate sizing and rects for left aligned tabs.
17785         * ThemeWin32Classic.cs (GetTabControl*ScrollRect): Only handle Top
17786         and Bottom, left and right are illegal values for this and
17787         multiline is enabled when the alignment is set to left or right.
17788         (DrawTab): Each alignment block should draw the text itself now
17789         because Left requires special love. Also add rendering for Left
17790         aligned tabs.
17791         
17792 2004-11-09  Jordi Mas i Hernandez <jordi@ximian.com>
17794         *  Form.cs, MainMenu.cs, MenuAPI.cs: fixes menu navigation, fixes popups,
17795         does not destroy the windows, removes debugging messages
17797 2004-11-09  jba  <jba-mono@optusnet.com.au>
17799         * ThemeWin32Classic.cs
17800         (DrawButtonBase): Fix verticle text rect clipping in windows
17801         (DrawCheckBox): Fix CheckAlign.TopCenter and CheckAlign.BottomCenter
17802         rendering and incorrect text rect clipping
17803         (DrawRadioButton): Fix CheckAlign.TopCenter and CheckAlign.BottomCenter
17804         rendering and incorrect text rect clipping
17805         
17806 2004-11-08  Jackson Harper  <jackson@ximian.com>
17808         * ThemeWin32Classic.cs (DrawTabControl): Render tabs from top to
17809         bottom when they are bottom aligned so the bottoms of the tabs get
17810         displayed.
17811         * TabControl.cs (DropRow): Move rows up instead of down when the
17812         tab control is bottom aligned.
17814 2004-11-08 13:59  pbartok
17816         * XplatUIX11.cs:
17817           - Added handling for various window styles
17818           - Added handling for popup windows
17819           - Added SetTopmost handling
17821 2004-11-08 13:55  pbartok
17823         * XplatUIWin32.cs:
17824           - Added argument to SetTopmost method
17825           - Fixed broken ClientToScreen function
17827 2004-11-08 13:53  pbartok
17829         * XplatUIStructs.cs:
17830           - Added missing WS_EX styles
17832 2004-11-08 13:53  pbartok
17834         * XplatUI.cs, XplatUIDriver.cs:
17835           - Added argument to SetTopmost
17837 2004-11-08 13:52  pbartok
17839         * X11Structs.cs:
17840           - Added XSetWindowAttributes structure
17841           - Improved XWindowAttributes structure
17842           - Added SetWindowValuemask enum
17843           - Added window creation arguments enum
17844           - Added gravity enum
17845           - Added Motif hints structure
17846           - Added various Motif flags and enums
17847           - Added PropertyMode enum for property functions
17849 2004-11-08 13:50  pbartok
17851         * Form.cs:
17852           - Fixed arguments for updated SetTopmost method
17854 2004-11-08 13:49  pbartok
17856         * ToolTip.cs:
17857           - Fixed arguments for updated SetTopmost function
17858           - Fixed usage of PointToClient
17860 2004-11-08 13:44  pbartok
17862         * MenuAPI.cs:
17863           - Added Clipping of children and siblings
17865 2004-11-08 13:41  pbartok
17867         * MainMenu.cs:
17868           - Removed SetMenuBarWindow call. We do this in Form.cs
17870 2004-11-08 13:40  jackson
17872         * TabControl.cs, Theme.cs, ThemeWin32Classic.cs: Render the little
17873           scrolling jimmi in the correct location with bottom aligned tabs
17875 2004-11-08 13:36  pbartok
17877         * ContainerControl.cs:
17878           - Implemented BindingContext
17879           - Implemented ParentForm
17881 2004-11-08 12:46  jackson
17883         * TabControl.cs: Put bottom rendered tabs in the right location
17885 2004-11-08 07:15  jordi
17887         * ScrollBar.cs, ThemeWin32Classic.cs: fixes vertical scrollbar and
17888           removes dead code
17890 2004-11-05 17:30  jackson
17892         * TabControl.cs: When selected tabs are expanded make sure they
17893           don't go beyond the edges of the tab control
17895 2004-11-05 14:57  jackson
17897         * TabControl.cs: Reset show_slider so if the control is resized to
17898           a size where it is no longer needed it's not displayed anymore
17900 2004-11-05 13:16  jackson
17902         * TabControl.cs: Make tab pages non visible when added to the
17903           control
17905 2004-11-05 12:42  jackson
17907         * TabControl.cs: Implement SizeMode.FillToRight
17909 2004-11-05 12:16  jackson
17911         * Control.cs: Do not call CreateHandle if the handle is already
17912           created
17914 2004-11-05 11:46  jackson
17916         * TabControl.cs: Remove superflous call to CalcTabRows
17918 2004-11-05 09:07  jackson
17920         * XplatUIX11.cs: Update for Mono.Posix changes
17922 2004-11-05 07:00  ravindra
17924         * ListView.cs, ListViewItem.cs: Implemented some methods and fixed
17925           scrolling.
17927 2004-11-04 22:47  jba
17929         * ThemeWin32Classic.cs:
17930           - Fix Button rendering for FlatStyle = Flat or Popup
17931           - Fix RadioButton and CheckBox rendering when Appearance = Button
17932             (normal and flatstyle).
17933           - Correct outer rectangle color when drawing focus rectangle
17934           - Adjust button bounds to be 1 px smaller when focused
17935           - Make button not draw sunken 3d border when pushed (windows compat)
17936           - Fix CPDrawBorder3D to not make bottom right hand corner rounded
17937           - Offset the text in RadioButton and Checkbox when being rendered as
17938           a button.
17939           - Hover and Click behaviour for Colored FlatStyle.Flat and Popup
17940           radiobuttons
17941           - Fixed disabled rendering for colored flatstyle radiobuttons (both)
17942           - Fixed disabled text rendering for normally rendered radiobuttons
17944 2004-11-04 10:26  jackson
17946         * TabControl.cs: Recalculate tab rows when resizing
17948 2004-11-04 07:47  jordi
17950         * Form.cs, MainMenu.cs, Menu.cs, MenuAPI.cs, MenuItem.cs:
17951           collection completion, drawing issues, missing features
17953 2004-11-04 05:03  ravindra
17955         * ScrollBar.cs:
17956                 - We need to recalculate the Thumb area when
17957                 LargeChange/maximum/minimum values are changed.
17958           - We set the 'pos' in UpdatePos() method to minimum, if it's less
17959                 than minimum. This is required to handle the case if large_change is
17960                 more than max, and use LargeChange property instead of large_change
17961                 variable.
17962           - We return max+1 when large_change is more than max, like MS does.
17964 2004-11-04 04:29  ravindra
17966         * ColumnHeader.cs, ListView.cs, ListViewItem.cs:
17967                 - Changed default value signatures (prefixed all with ListView).
17968                 - Fixed/implemented layout LargeIcon, SmallIcon and List views for
17969                 ListView.
17970           - Fixed calculations for ListViewItem and implemented Clone()
17971           method.
17973 2004-11-04 04:26  ravindra
17975         * Theme.cs, ThemeWin32Classic.cs:
17976                 - Changed default ListView values signatures (prefixed all with
17977                 ListView).
17978           - Fixed default size values for VScrollBar and HScrollBar.
17979                 - Fixed DrawListViewItem method.
17981 2004-11-04 04:05  ravindra
17983         * ColumnHeaderStyle.cs: Typo. It should be Nonclickable.
17985 2004-11-04 04:04  ravindra
17987         * ImageList.cs: Implemented the missing overload for Draw method.
17989 2004-11-03 19:29  jackson
17991         * TabControl.cs: Handle dropping rows on selection properly
17993 2004-11-03 11:59  jackson
17995         * TabControl.cs: remove debug code
17997 2004-11-03 11:52  jackson
17999         * TabControl.cs, ThemeWin32Classic.cs: Initial implementation of
18000           the scrolly widgerywoo
18002 2004-11-02 13:52  jackson
18004         * TabControl.cs: Resize the tab pages and tabs when the tab control
18005           is resized
18007 2004-11-02 13:40  jackson
18009         * TabControl.cs, ThemeWin32Classic.cs: Move the row with the
18010           selected tab to the bottom
18012 2004-11-02 13:39  jackson
18014         * TabPage.cs: Store the tab pages row
18016 2004-11-02 12:33  jordi
18018         * MenuItem.cs: fixes handle creation
18020 2004-11-02 11:42  jackson
18022         * TabControl.cs: signature fix
18024 2004-11-02 08:56  jackson
18026         * TabControl.cs: Calculate whether the tab is on an edge properly.
18027           Remove top secret debugging code
18029 2004-11-01 19:57  jackson
18031         * TabControl.cs: Add click handling, and proper sizing
18033 2004-11-01 19:47  jackson
18035         * Theme.cs, ThemeWin32Classic.cs: New rendering and sizing code for
18036           tab controls
18038 2004-11-01 19:39  jackson
18040         * TabPage.cs: add internal property to store the bounds of a tab
18041           page
18043 2004-10-30 04:23  ravindra
18045         * Theme.cs, ThemeWin32Classic.cs: Drawing ListView and some default
18046           values.
18048 2004-10-30 04:21  ravindra
18050         * ListView.cs, ListViewItem.cs: Added support for scrolling and
18051           fixed calculations.
18053 2004-10-30 03:06  pbartok
18055         * XplatUIX11.cs:
18056           - Removed extension of DllImported libs
18058 2004-10-29 09:55  jordi
18060         * Form.cs, MainMenu.cs, Menu.cs, MenuAPI.cs, MenuItem.cs: Menu key
18061           navigation, itemcollection completion, menu fixes
18063 2004-10-27 22:58  pbartok
18065         * XplatUIX11.cs:
18066           - Now throws a nice error message when no X display could be opened
18068 2004-10-26 13:51  jordi
18070         * ListView.cs: removes warning
18072 2004-10-26 03:55  ravindra
18074         * ColumnHeader.cs, ListView.cs, ListViewItem.cs,
18075           ThemeWin32Classic.cs: Some formatting for my last checkins.
18077 2004-10-26 03:36  ravindra
18079         * ThemeWin32Classic.cs: Implemented DetailView drawing for ListView
18080           control and default values.
18082 2004-10-26 03:35  ravindra
18084         * Theme.cs: Added some default values for ListView control.
18086 2004-10-26 03:33  ravindra
18088         * ToolBar.cs: ToolBar should use the user specified button size, if
18089           there is any. Added a size_specified flag for the same.
18091 2004-10-26 03:33  ravindra
18093         * ColumnHeader.cs: Added some internal members and calculations for
18094           ColumnHeader.
18096 2004-10-26 03:32  ravindra
18098         * ListViewItem.cs: Calculations for ListViewItem.
18100 2004-10-26 03:31  ravindra
18102         * ListView.cs: Added some internal members and calculations for
18103           ListView.
18105 2004-10-22 13:31  jordi
18107         * MenuAPI.cs: speedup menus drawing
18109 2004-10-22 13:16  jackson
18111         * XplatUIX11.cs: Make sure to update exposed regions when adding an
18112           expose event
18114 2004-10-22 11:49  jackson
18116         * Control.cs: oops
18118 2004-10-22 11:41  jackson
18120         * Control.cs: Check to see if the window should have its background
18121           repainted by X when drawing.
18123 2004-10-22 11:31  jackson
18125         * XplatUIX11.cs: When invalidating areas only use XClearArea if
18126           clear is true, this way we do not get flicker from X repainting the
18127           background
18129 2004-10-22 11:28  jackson
18131         * XEventQueue.cs: Queue properly
18133 2004-10-21 09:38  jackson
18135         * XEventQueue.cs: Fix access modifier
18137 2004-10-21 09:36  jackson
18139         * XEventQueue.cs: Don't loose messages
18141 2004-10-21 09:22  jackson
18143         * XEventQueue.cs: Don't loose messages
18145 2004-10-20 04:15  jordi
18147         * BootMode.cs: enum need it by SystemInfo
18149 2004-10-19 21:58  pbartok
18151         * XplatUIWin32.cs:
18152           - Small sanity check
18154 2004-10-19 21:56  pbartok
18156         * Form.cs:
18157           - Added private FormParentWindow class which acts as the container
18158             for our form and as the non-client area where menus are drawn
18159           - Added/Moved required tie-ins to Jordi's menus
18160           - Fixed/Implemented the FormStartPosition functionality
18162 2004-10-19 21:52  pbartok
18164         * Control.cs:
18165           - Removed unneeded locals
18166           - Added code to all size and location properties to understand and
18167             deal with the parent container of Form
18169 2004-10-19 21:33  pbartok
18171         * Application.cs:
18172           - Fixed to deal with new Form subclasses for menus
18174 2004-10-19 17:48  jackson
18176         * XEventQueue.cs: commit correct version of file
18178 2004-10-19 16:50  jackson
18180         * XEventQueue.cs, XplatUIX11.cs: New optimized event queue
18182 2004-10-19 16:15  jordi
18184         * MenuAPI.cs: MenuBarCalcSize returns the height
18186 2004-10-19 08:31  pbartok
18188         * Control.cs:
18189           - Added missing call to PreProcessMessage before calling OnXXXKey
18190           methods
18192 2004-10-19 00:04  ravindra
18194         * ToolTip.cs: Fixed constructor.
18196 2004-10-18 09:31  jordi
18198         * MenuAPI.cs: menuitems in menubars do not have shortcuts
18200 2004-10-18 09:26  jordi
18202         * MenuItem.cs: fixes MenuItem class signature
18204 2004-10-18 08:56  jordi
18206         * MenuAPI.cs: prevents windows from showing in the taskbar
18208 2004-10-18 00:28  ravindra
18210         * ToolTip.cs: Suppressed a warning message.
18212 2004-10-18 00:27  ravindra
18214         * Control.cs: Default value of visible property must be true.
18216 2004-10-17 23:19  pbartok
18218         * ToolTip.cs:
18219           - Complete implementation
18221 2004-10-17 23:19  pbartok
18223         * XplatUIX11.cs:
18224           - Added EnableWindow method
18225           - Added SetModal stub
18226           - Added generation of WM_ACTIVATE message (still needs testing)
18227           - Added SetTopMost stub
18228           - Changes to deal with VirtualKeys being moved to XplatUIStructs.cs
18230 2004-10-17 23:17  pbartok
18232         * XplatUIWin32.cs:
18233           - Removed VirtualKeys to XplatUIStructs
18234           - Implemented SetTopMost method
18235           - Implemented EnableWindow method
18236           - Bugfix in ScreenToClient()
18237           - Bugfixes in ClientToScreen()
18239 2004-10-17 22:51  pbartok
18241         * XplatUIStructs.cs:
18242           - Added WS_EX styles to WindowStyles enumeration
18244 2004-10-17 22:50  pbartok
18246         * XplatUI.cs, XplatUIDriver.cs:
18247           - Added method for enabling/disabling windows
18248           - Added method for setting window modality
18249           - Added method for setting topmost window
18251 2004-10-17 22:49  pbartok
18253         * ThemeWin32Classic.cs:
18254           - Added ToolTip drawing code
18256 2004-10-17 22:49  pbartok
18258         * Theme.cs:
18259           - Added ToolTip abstracts
18261 2004-10-17 22:47  pbartok
18263         * Form.cs:
18264           - Fixed Form.ControlCollection to handle owner relations
18265           - Added Owner/OwnedForms handling
18266           - Implemented Z-Ordering for owned forms
18267           - Removed unneeded private overload of ShowDialog
18268           - Fixed ShowDialog, added the X11 incarnation of modal handling (or
18269             so I hope)
18270           - Fixed Close(), had wrong default
18271           - Added firing of OnLoad event
18272           - Added some commented out debug code for Ownership handling
18274 2004-10-17 22:16  pbartok
18276         * Control.cs:
18277           - Fixed/implemented flat list of controls
18279 2004-10-17 22:14  pbartok
18281         * Application.cs:
18282           - Added code to simulate modal dialogs on Win32
18284 2004-10-17 16:11  jordi
18286         * ScrollBar.cs: disabled scrollbar should not honor any keyboard or
18287           mouse event
18289 2004-10-17 13:39  jordi
18291         * MenuAPI.cs: menu drawing fixes
18293 2004-10-15 09:10  ravindra
18295         * StructFormat.cs: General Enum.
18297 2004-10-15 09:09  ravindra
18299         * SizeGripStyle.cs: Enum for Form.
18301 2004-10-15 09:08  ravindra
18303         * Theme.cs, ThemeWin32Classic.cs: Added ColumnHeaderHeight property
18304           in Theme for ListView.
18306 2004-10-15 09:06  ravindra
18308         * ColumnHeader.cs: Flushing some formatting changes.
18310 2004-10-15 09:05  ravindra
18312         * ListViewItem.cs: Implemented GetBounds method and fixed coding
18313           style.
18315 2004-10-15 09:03  ravindra
18317         * ListView.cs: Implemented Paint method and fixed coding style.
18319 2004-10-15 07:34  jordi
18321         * MenuAPI.cs: fix for X11
18323 2004-10-15 07:32  ravindra
18325         * ButtonBase.cs, CheckBox.cs, RadioButton.cs:
18326                 - Renamed Paint() method to Draw() for clarity. Also, moved
18327                 DrawImage() to OnPaint().
18329 2004-10-15 07:25  ravindra
18331         * CheckBox.cs, RadioButton.cs:
18332                 - Removed Redraw (), we get it from ButtonBase.
18333                 - Implemented Paint (), to do class specific painting.
18335 2004-10-15 07:16  ravindra
18337         * ButtonBase.cs:
18338                 - Redraw () is not virtual now.
18339                 - Added an internal virtual method Paint (), so that
18340                 derived classes can do their painting on their own.
18341                 - Modified OnPaint () to call Paint ().
18343 2004-10-15 06:43  jordi
18345         * ContextMenu.cs, DrawItemEventHandler.cs, Form.cs, MainMenu.cs,
18346           MenuAPI.cs, MenuItem.cs: menu work, mainmenu, subitems, etc
18348 2004-10-15 00:30  ravindra
18350         * MessageBox.cs:
18351                 - MessageBox on windows does not have min/max buttons.
18352                 This change in CreateParams fixes this on Windows. We
18353                 still need to implement this windowstyle behavior in
18354                 our X11 driver.
18356 2004-10-14 05:14  ravindra
18358         * ToolBar.cs:
18359                 - Changed Redraw () to do a Refresh () always.
18360                 - Fixed the MouseMove event handling when mouse is pressed,
18361                 ie drag event handling.
18362                 - Replaced the usage of ToolBarButton.Pressed property to
18363                 ToolBarButton.pressed internal variable.
18365 2004-10-14 05:10  ravindra
18367         * ToolBarButton.cs:
18368                 - Added an internal member 'inside' to handle mouse move
18369                 with mouse pressed ie mouse drag event.
18370                 - Changed 'Pressed' property to return true only when
18371                 'inside' and 'pressed' are both true.
18372                 - Some coding style love.
18374 2004-10-14 00:17  ravindra
18376         * Form.cs: Fixed class signature. ShowDialog (Control) is not a
18377           public method.
18379 2004-10-14 00:15  ravindra
18381         * ButtonBase.cs: Redraw () related improvements.
18383 2004-10-14 00:14  ravindra
18385         * MessageBox.cs: Moved InitFormSize () out of Paint method and
18386           removed unnecessary calls to Button.Show () method.
18388 2004-10-13 17:50  pbartok
18390         * XplatUIX11.cs:
18391           - Formatting fix
18392           - Removed destroying of window until we solve the problem of X
18393             destroying the window before us on shutdown
18395 2004-10-13 16:32  pbartok
18397         * ButtonBase.cs:
18398           - Now Redraws on MouseUp for FlatStyle Flat and Popup
18400 2004-10-13 14:18  pbartok
18402         * XplatUIX11.cs:
18403           - Added code to destroy the X window
18405 2004-10-13 14:18  pbartok
18407         * XplatUIWin32.cs:
18408           - Added code to destroy a window
18410 2004-10-13 14:12  pbartok
18412         * ButtonBase.cs:
18413           - Added the Redraw on Resize that got dropped in the last rev
18415 2004-10-13 09:06  pbartok
18417         * ThemeWin32Classic.cs:
18418           - Path from John BouAntoun:
18419             * Fix check rendering (centre correctly for normal style, offset
18420               correctly for FlatStyle).
18421             * Fix border color usage (use backcolor) for FlatStyle.Popup
18422             * Use checkbox.Capture instead of checkbox.is_pressed when
18423               rendering flatstyle states.
18425 2004-10-12 21:48  pbartok
18427         * ThemeWin32Classic.cs:
18428           - Removed all occurences of SystemColors and replaced them with the
18429             matching theme color
18431 2004-10-12 21:41  pbartok
18433         * ThemeWin32Classic.cs:
18434           - From John BouAntoun: Added an overload to CPDrawBorder3D to allow
18435             him using the function for flatstyle drawing
18436           - Changed functions to use the new version of CPDrawBorder3D
18438 2004-10-12 21:15  pbartok
18440         * ControlPaint.cs:
18441           - Fixed Dark(), DarkDark(), Light() and LightLight() methods to
18442             match MS documentation. They need to return defined colors if the
18443             passed color matches the configured control color. Thanks to John
18444             BouAntoun for pointing this out.
18446 2004-10-12 20:57  pbartok
18448         * Control.cs:
18449           - Fix from John BouAntoun: Raise ForeColorChanged event when text
18450             color is changed
18452 2004-10-12 20:46  pbartok
18454         * CheckBox.cs:
18455           - Fix from John BouAntoun: Now properly sets the Appearance property
18457 2004-10-12 20:45  pbartok
18459         * ThemeWin32Classic.cs:
18460           - Fixes from John BouAntoun: now handles forecolors and backcolors
18461             for flatstyle rendered controls much better; It also fixes normal
18462             checkbox rendering when pushed or disabled.
18464 2004-10-08 02:50  jordi
18466         * Form.cs, MainMenu.cs, Menu.cs, MenuAPI.cs, MenuItem.cs: more menu
18467           work
18469 2004-10-07 08:56  jordi
18471         * ThemeWin32Classic.cs: Removes deletion of cached brushes
18473 2004-10-06 03:59  jordi
18475         * Control.cs, StatusBar.cs, ThemeWin32Classic.cs, ToolBar.cs,
18476           XplatUIWin32.cs: removes warnings from compilation
18478 2004-10-05 12:23  jackson
18480         * RadioButton.cs: Fix ctor
18482 2004-10-05 11:10  pbartok
18484         * MessageBox.cs:
18485           - Partial implementation by Benjamin Dasnois
18487 2004-10-05 10:15  jackson
18489         * ThemeWin32Classic.cs: Improve rendering of the radio button patch
18490           by John BouAntoun
18492 2004-10-05 03:07  ravindra
18494         * ToolBar.cs:
18495                 - Removed a private method, Draw ().
18496                 - Fixed the ButtonDropDown event handling.
18497                 - Fixed MouseMove event handling.
18499 2004-10-05 03:04  ravindra
18501         * ThemeWin32Classic.cs:
18502                 - Added DrawListView method and ListViewDefaultSize property.
18503                 - Changed ControlPaint method calls to CPDrawXXX wherever possible.
18504                 - Changed DOS style CRLF to Unix format (dos2unix).
18506 2004-10-05 03:03  ravindra
18508         * Theme.cs:
18509                 - Added DrawListView method and ListViewDefaultSize property.
18511 2004-10-05 02:42  ravindra
18513         * ToolBarButton.cs: Added an internal member dd_pressed to handle
18514           clicks on DropDown arrow.
18516 2004-10-04 22:56  jackson
18518         * ButtonBase.cs, Label.cs, MenuAPI.cs, ProgressBar.cs,
18519           ScrollBar.cs, StatusBar.cs, ToolBar.cs, TrackBar.cs: Let the base
18520           Control handle the buffers, derived classes should not have to
18521           CreateBuffers themselves.
18523 2004-10-04 21:20  jackson
18525         * StatusBar.cs: The control handles resizing the buffers now.
18527 2004-10-04 21:18  jackson
18529         * Control.cs: When resizing the buffers should be invalidated. This
18530           should be handled in Control not in derived classes.
18532 2004-10-04 14:45  jackson
18534         * TabPage.cs: oops
18536 2004-10-04 02:14  pbartok
18538         * LeftRightAlignment.cs:
18539           - Initial check-in
18541 2004-10-04 01:09  jordi
18543         * ThemeWin32Classic.cs: fixes right button position causing right
18544           button not showing on horizontal scrollbars
18546 2004-10-02 13:12  pbartok
18548         * XplatUIX11.cs:
18549           - Simplified the Invalidate method by using an X call instead of
18550             generating the expose ourselves
18551           - Added an expose when the window background is changed
18552           - Implemented ClientToScreen method
18554 2004-10-02 13:08  pbartok
18556         * XplatUIWin32.cs:
18557           - Added Win32EnableWindow method (test for implementing modal
18558           dialogs)
18559           - Added ClientToScreen method and imports
18561 2004-10-02 13:07  pbartok
18563         * XplatUI.cs, XplatUIDriver.cs:
18564           - Added ClientToScreen coordinate translation method
18566 2004-10-02 13:06  pbartok
18568         * KeyPressEventArgs.cs:
18569           - Fixed access level for constructor
18571 2004-10-02 13:06  pbartok
18573         * NativeWindow.cs:
18574           - Changed access level for the window_collection hash table
18576 2004-10-02 13:05  pbartok
18578         * Form.cs:
18579           - Added KeyPreview property
18580           - Added Menu property (still incomplete, pending Jordi's menu work)
18581           - Implemented ProcessCmdKey
18582           - Implemented ProcessDialogKey
18583           - Implemented ProcessKeyPreview
18585 2004-10-02 13:02  pbartok
18587         * Control.cs:
18588           - Added private method to get the Control object from the window
18589           handle
18590           - Implemented ContextMenu property
18591           - Implemented PointToScreen
18592           - Implemented PreProcessMessage
18593           - Implemented IsInputChar
18594           - Implemented IsInputKey
18595           - Implemented ProcessCmdKey
18596           - Completed ProcessKeyEventArgs
18597           - Fixed message loop to call the proper chain of functions on key
18598           events
18599           - Implemented ProcessDialogChar
18600           - Implemented ProcessDialogKey
18601           - Implemented ProcessKeyMessage
18602           - Implemented ProcessKeyPreview
18603           - Added RaiseDragEvent stub (MS internal method)
18604           - Added RaiseKeyEvent stub (MS internal method)
18605           - Added RaiseMouseEvent stub (MS Internal method)
18606           - Added RaisePaintEvent stub (MS Internal method)
18607           - Added ResetMouseEventArgs stub (MS Internal method)
18608           - Implemented RtlTranslateAlignment
18609           - Implemented RtlTranslateContent
18610           - Implemented RtlTranslateHorizontal
18611           - Implemented RtlTranslateLeftRight
18612           - Added generation of KeyPress event
18614 2004-10-02 05:57  ravindra
18616         * ListViewItem.cs: Added attributes.
18618 2004-10-02 05:32  ravindra
18620         * ListView.cs: Added attributes.
18622 2004-10-01 11:53  jackson
18624         * Form.cs: Implement the Close method so work on MessageBox can
18625           continue.
18627 2004-09-30 14:06  pbartok
18629         * XplatUIX11.cs:
18630           - Bug fixes
18632 2004-09-30 11:34  jackson
18634         * RadioButton.cs: Fix typo. Patch by John BouAntoun.
18636 2004-09-30 07:26  ravindra
18638         * ListViewItemConverter.cs: Converter for ListViewItem.
18640 2004-09-30 07:26  ravindra
18642         * SortOrder.cs: Enum for ListView control.
18644 2004-09-30 07:25  ravindra
18646         * ColumnHeader.cs: Supporting class for ListView control.
18648 2004-09-30 07:24  ravindra
18650         * ListView.cs, ListViewItem.cs: Initial implementation.
18652 2004-09-30 07:20  ravindra
18654         * ItemActivation.cs: Enum for ListView Control.
18656 2004-09-29 20:29  pbartok
18658         * XplatUIX11.cs:
18659           - Added lookup of pixel value for background color; tries to get a
18660             color 'close' to the requested color, it avoids having to create a
18661             colormap.  Depending on the display this could mean the used color
18662             is slightly off the desired color. Might have to change it to a more
18663             resource intensive colormap approach, but it will work as a
18664           workaround to avoid red screens.
18666 2004-09-29 14:27  jackson
18668         * XplatUIX11.cs: Set the X DisplayHandle in System.Drawing
18670 2004-09-28 12:44  pbartok
18672         * ButtonBase.cs, CheckBox.cs, ControlPaint.cs, GroupBox.cs,
18673           HScrollBar.cs, Label.cs, LinkLabel.cs, Panel.cs, PictureBox.cs,
18674           ProgressBar.cs, RadioButton.cs, ScrollBar.cs, StatusBar.cs,
18675           Theme.cs, ThemeGtk.cs, ThemeWin32Classic.cs, ToolBar.cs,
18676           TrackBar.cs, VScrollBar.cs:
18677           - Streamlined Theme interfaces:
18678             * Each DrawXXX method for a control now is passed the object for
18679               the control to be drawn in order to allow accessing any state the
18680               theme might require
18682             * ControlPaint methods for the theme now have a CP prefix to avoid
18683               name clashes with the Draw methods for controls
18685             * Every control now retrieves it's DefaultSize from the current
18686             theme
18688 2004-09-28 12:17  jackson
18690         * Button.cs: Do not redraw OnClick MouseUp/Down will handle the
18691           drawing
18693 2004-09-24 14:57  jackson
18695         * XplatUIX11.cs: Don't lock/enqueue/dequeue for unhandled messages.
18696           Gives us a nice little performance boost.
18698 2004-09-24 12:02  jackson
18700         * TabAlignment.cs, TabAppearance.cs, TabControl.cs, TabDrawMode.cs,
18701           TabPage.cs, TabSizeMode.cs: Partial implementation of the Tab
18702           Control and supporting classes. Initial checkin
18704 2004-09-23 13:08  jackson
18706         * Form.cs: Temp build fixage
18708 2004-09-23 01:39  ravindra
18710         * ItemChangedEventArgs.cs, ItemChangedEventHandler.cs,
18711           ItemCheckEventArgs.cs, ItemCheckEventHandler.cs,
18712           ItemDragEventArgs.cs, ItemDragEventHandler.cs,
18713           LabelEditEventArgs.cs, LabelEditEventHandler.cs: EventArgs and
18714           EventHandlers needed by ListView Control.
18716 2004-09-22 14:12  pbartok
18718         * ScrollableControl.cs:
18719           - Implemented DockPadding property
18720           - Implemented AutoScroll property
18721           - Implemented AutoScrollMargin property
18722           - Implemented AutoScrollMinSize property
18723           - Implemented AutoScrollPosition property
18724           - Implemented DisplayRectangle property (still incomplete)
18725           - Implemented CreateParams property
18726           - Implemented HScroll property
18727           - Implemented VScroll property
18728           - Implemented OnVisibleChanged property
18730 2004-09-22 14:09  pbartok
18732         * Form.cs:
18733           - Added Form.ControllCollection class
18734           - Added handling for Form owners: Owner, OwnedForms, AddOwnedForm,
18735             RemoveOwnedForm (still incomplete, missing on-top and common
18736             minimize/maximize behaviour)
18737           - Added StartPosition property (still incomplete, does not use when
18738             creating the form)
18739           - Added ShowDialog() methods (still incomplete, missing forcing the
18740             dialog modal)
18742 2004-09-22 14:05  pbartok
18744         * Application.cs:
18745           - Added message loop for modal dialogs
18747 2004-09-22 14:02  pbartok
18749         * GroupBox.cs:
18750           - Fixed wrong types for events
18752 2004-09-22 14:00  pbartok
18754         * Shortcut.cs, FormWindowState.cs:
18755           - Fixed wrong values
18757 2004-09-22 12:01  jackson
18759         * Control.cs: Text is never null
18761 2004-09-20 22:14  pbartok
18763         * XplatUIWin32.cs:
18764           - Fixed accessibility level for Idle handler
18766 2004-09-20 18:54  jackson
18768         * Application.cs, XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs,
18769           XplatUIX11.cs: New message loop that uses poll so we don't get a
18770           busy loop
18772 2004-09-17 10:43  pbartok
18774         * ScrollBar.cs:
18775           - Fixed behaviour of arrow buttons. Now properly behaves like
18776             Buttons (and like Microsoft's scrollbar arrow buttons)
18778 2004-09-17 10:14  pbartok
18780         * ScrollBar.cs:
18781           - Added missing release of keyboard/mouse capture
18783 2004-09-17 06:18  jordi
18785         * ContextMenu.cs, MainMenu.cs, Menu.cs, MenuAPI.cs, MenuItem.cs,
18786           Theme.cs: Very early menu support
18788 2004-09-16 17:45  pbartok
18790         * XplatUIWin32.cs:
18791           - Fixed sending a window to the front
18792           - Added overload for SetWindowPos to avoid casting
18794 2004-09-16 17:44  pbartok
18796         * Control.cs:
18797           - Added SendToBack and BringToFront methods
18799 2004-09-16 07:00  ravindra
18801         * Copyright: Added Novell URL.
18803 2004-09-16 07:00  ravindra
18805         * ToolBar.cs: Invalidate should be done before redrawing.
18807 2004-09-15 21:19  ravindra
18809         * ColumnHeaderStyle.cs: Enum for ListView Control.
18811 2004-09-15 21:18  ravindra
18813         * ColumnClickEventArgs.cs, ColumnClickEventHandler.cs: Event for
18814           ListView Control.
18816 2004-09-13 18:26  jackson
18818         * Timer.cs, XplatUIX11.cs: Remove test code so timers are updated
18819           properly
18821 2004-09-13 18:13  jackson
18823         * Timer.cs, X11Structs.cs, XplatUIX11.cs: Timers are now handled in
18824           a second thread and post messages into the main threads message
18825           queue. This makes timing much more consistent. Both win2K and XP
18826           have a minimum timer value of 15 milliseconds, so we now do this
18827           too.
18829 2004-09-13 15:18  pbartok
18831         * X11Structs.cs, XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs,
18832           XplatUIX11.cs:
18833           - Added Z-Ordering methods
18835 2004-09-13 10:56  pbartok
18837         * Form.cs:
18838           - Fixed #region names
18839           - Moved properties and methods into their proper #regions
18841 2004-09-13 10:51  pbartok
18843         * Form.cs:
18844           - Added Accept and CancelButton properties
18845           - Added ProcessDialogKey() method
18847 2004-09-13 08:18  pbartok
18849         * IWindowTarget.cs:
18850           - Initial check-in
18852 2004-09-10 21:50  pbartok
18854         * Control.cs:
18855           - Added DoDragDrop() [incomplete]
18856           - Properly implemented 'Visible' handling
18857           - Added SetVisibleCore()
18858           - Implemented FindChildAtPoint()
18859           - Implemented GetContainerControl()
18860           - Implemented Hide()
18862 2004-09-10 19:28  pbartok
18864         * Control.cs:
18865           - Moved methods into their appropriate #regions
18866           - Reordered methods within regions alphabetically
18868 2004-09-10 18:57  pbartok
18870         * XplatUIX11.cs, XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs:
18871           - Added method to retrieve text from window
18873 2004-09-10 18:56  pbartok
18875         * Control.cs:
18876           - Moved some internal functions into the internal region
18877           - Implemented FontHeight
18878           - Implemented RenderRightToLeft
18879           - Implemented ResizeRedraw
18880           - Implemented ShowFocusCues
18881           - Implemented ShowKeyboardCues
18882           - Implemented FromChildHandle
18883           - Implemented FromHandle
18884           - Implemented IsMnemonic
18885           - Implemented ReflectMessage
18886           - All public and protected Static Methods are now complete
18888 2004-09-10 16:54  pbartok
18890         * Control.cs:
18891           - Implemented remaining missing public instance properties
18892           - Alphabetized some out of order properties
18894 2004-09-10 05:51  ravindra
18896         * PictureBox.cs: Added a check for null image.
18898 2004-09-10 00:59  jordi
18900         * GroupBox.cs: remove cvs tag
18902 2004-09-09 05:25  ravindra
18904         * ToolBar.cs: Make redraw accessible from ToolBarButton.
18906 2004-09-09 05:23  ravindra
18908         * ToolBarButton.cs: Changes in ToolBarButton need to make it's
18909           parent redraw.
18911 2004-09-09 02:28  pbartok
18913         * ThemeWin32Classic.cs:
18914           - Improve disabled string look
18916 2004-09-09 01:15  jordi
18918         * MeasureItemEventArgs.cs, MeasureItemEventHandler.cs: measureitem
18919           args and handler
18921 2004-09-08 23:56  ravindra
18923         * ItemBoundsPortion.cs: It's enum, not a class!
18925 2004-09-08 23:47  ravindra
18927         * FormBorderStyle.cs, FormStartPosition.cs, FormWindowState.cs:
18928           Enums for Form.
18930 2004-09-08 21:13  ravindra
18932         * ItemBoundsPortion.cs, ListViewAlignment.cs, View.cs: Enums for
18933           ListView control.
18935 2004-09-08 21:03  ravindra
18937         * ThemeWin32Classic.cs: PictureBox would not draw a null image to
18938           avoid crash.
18940 2004-09-08 21:01  ravindra
18942         * ScrollableControl.cs: Removed unreachable code.
18944 2004-09-08 06:45  jordi
18946         * MenuMerge.cs, Shortcut.cs: enumerations need it by menus
18948 2004-09-08 01:00  jackson
18950         * XplatUIX11.cs: Only run the timers when updating the message
18951           queue. This effectively gives X messages a higher priority then
18952           timer messages. Timers still need love though
18954 2004-09-07 14:01  jackson
18956         * XplatUIX11.cs: Do not call XDestroyWindow, X has already done
18957           this for us and the handle is no longer valid.
18959 2004-09-07 13:59  jackson
18961         * HandleData.cs, XplatUIX11.cs: First steps towards a new X event
18962           loop that manages to not crash. TODO: Add poll and cleanup timers
18964 2004-09-07 11:12  jordi
18966         * GroupBox.cs, Theme.cs, ThemeWin32Classic.cs: GroupBox control
18968 2004-09-07 03:40  jordi
18970         * Label.cs, LinkLabel.cs, Theme.cs, ThemeWin32Classic.cs: LinkLabel
18971           fixes, methods, multiple links
18973 2004-09-06 06:55  jordi
18975         * Control.cs: Caches ClientRectangle rectangle value
18977 2004-09-05 02:03  jordi
18979         * ScrollBar.cs, ThemeWin32Classic.cs: fixes bugs, adds flashing on
18980           certain situations
18982 2004-09-04 11:10  jordi
18984         * Label.cs: Refresh when font changed
18986 2004-09-02 16:24  pbartok
18988         * Control.cs:
18989           - Added sanity check to creation of double buffer bitmap
18991 2004-09-02 16:24  pbartok
18993         * ButtonBase.cs:
18994           - Fixed selection of text color
18995           - Fixed handling of resize event; now properly recreates double
18996             buffering bitmap
18997           - Added missing assignment of TextAlignment
18998           - Added proper default for TextAlignment
19000 2004-09-02 14:26  pbartok
19002         * RadioButton.cs:
19003           - Added missing RadioButton.RadioButtonAccessibleObject class
19005 2004-09-02 14:26  pbartok
19007         * Control.cs:
19008           - Added missing Control.ControlAccessibleObject class
19009           - Started to implement Select()ion mechanisms, still very incomplete
19011 2004-09-02 14:25  pbartok
19013         * AccessibleObject.cs:
19014           - Added missing methods
19016 2004-09-02 14:23  pbartok
19018         * AccessibleNavigation.cs, AccessibleSelection.cs:
19019           - Initial check-in
19021 2004-09-02 10:32  jordi
19023         * Theme.cs, ThemeGtk.cs, ThemeWin32Classic.cs: implements resource
19024           pool for pens, brushes, and hatchbruses
19026 2004-09-01 15:30  jackson
19028         * StatusBar.cs: Fix typo
19030 2004-09-01 14:44  pbartok
19032         * RadioButton.cs:
19033           - Fixed state
19035 2004-09-01 14:39  pbartok
19037         * Button.cs, RadioButton.cs:
19038           - Functional initial check-in
19040 2004-09-01 14:01  pbartok
19042         * CheckBox.cs:
19043           - Added missing default
19044           - Added missing region mark
19046 2004-09-01 09:10  jordi
19048         * Label.cs: fixes method signatures, new methods, events, fixes
19049           autosize
19051 2004-09-01 07:19  jordi
19053         * Control.cs: Init string variables with an empty object
19055 2004-09-01 04:20  jordi
19057         * Control.cs: fires OnFontChanged event
19059 2004-08-31 20:07  pbartok
19061         * ButtonBase.cs:
19062           - Enabled display of strings
19064 2004-08-31 20:05  pbartok
19066         * Form.cs:
19067           - Added (partial) implementation of DialogResult; rest needs to be
19068             implemented when the modal loop code is done
19070 2004-08-31 19:55  pbartok
19072         * CheckBox.cs:
19073           - Fixed to match the removal of the needs_redraw concept
19075 2004-08-31 19:55  pbartok
19077         * ButtonBase.cs:
19078           - Removed the rather odd split between 'needs redraw' and redrawing
19079           - Now handles the events that require regeneration (ambient
19080             properties and size)
19082 2004-08-31 19:41  pbartok
19084         * Control.cs:
19085           - Added firing of BackColorChanged event
19086           - Added TopLevelControl property
19087           - Fixed handling of WM_ERASEBKGRND message
19089 2004-08-31 12:49  pbartok
19091         * ButtonBase.cs:
19092           - Removed debug
19093           - Minor fixes
19095 2004-08-31 12:48  pbartok
19097         * CheckBox.cs:
19098           - Finished (famous last words)
19100 2004-08-31 04:35  jordi
19102         * ScrollBar.cs: adds autorepeat timer, uses a single timer, fixes
19103           scrolling bugs, adds new methods
19105 2004-08-30 14:42  pbartok
19107         * CheckBox.cs:
19108           - Implemented CheckBox drawing code
19110 2004-08-30 14:42  pbartok
19112         * ButtonBase.cs:
19113           - Made Redraw() and CheckRedraw() virtual
19114           - Improved mouse up/down/move logic to properly track buttons
19116 2004-08-30 09:44  pbartok
19118         * CheckBox.cs:
19119           - Updated to fix broken build. Not complete yet.
19121 2004-08-30 09:28  pbartok
19123         * CheckState.cs:
19124           - Initial checkin
19126 2004-08-30 09:17  pbartok
19128         * Appearance.cs:
19129           - Initial check-in
19131 2004-08-27 16:12  ravindra
19133         * ToolBarButton.cs: Added TypeConverter attribute.
19135 2004-08-27 16:07  ravindra
19137         * ImageIndexConverter.cs: Implemented.
19139 2004-08-27 14:17  pbartok
19141         * Control.cs:
19142           - Removed unneeded stack vars
19143           - First attempt to fix sizing issues when layout is suspended
19145 2004-08-25 15:35  jordi
19147         * ScrollBar.cs: more fixes to scrollbar
19149 2004-08-25 14:04  ravindra
19151         * Theme.cs, ThemeWin32Classic.cs, ToolBar.cs, ToolBarButton.cs:
19152           Added the missing divider code and grip for ToolBar Control.
19154 2004-08-25 13:20  pbartok
19156         * Control.cs:
19157           - Control now properly passes the ambient background color to child
19158             controls
19160 2004-08-25 13:20  jordi
19162         * ScrollBar.cs: small bug fix regarding bar position
19164 2004-08-25 12:33  pbartok
19166         * Timer.cs:
19167           - Now only calls SetTimer or KillTimer if the enabled state has
19168           changed
19170 2004-08-25 12:33  pbartok
19172         * XplatUIWin32.cs:
19173           - Fixed timer handling, now seems to work
19174           - Improved error message for window creation
19176 2004-08-25 12:32  pbartok
19178         * Control.cs:
19179           - Fixed generation of MouseUp message
19181 2004-08-25 12:29  jordi
19183         * ProgressBar.cs, ThemeWin32Classic.cs: new methods, properties,
19184           and fixes for progressbar
19186 2004-08-24 18:43  ravindra
19188         * ThemeWin32Classic.cs, ToolBar.cs: Fixed wrapping related issues
19189           in ToolBar control.
19191 2004-08-24 17:15  pbartok
19193         * Panel.cs:
19194           - Added #region
19195           - Added missing events
19196           - Alphabetized
19198 2004-08-24 17:14  pbartok
19200         * StatusBar.cs, PictureBox.cs:
19201           - Now uses Control's CreateParams
19203 2004-08-24 16:36  pbartok
19205         * XplatUIX11.cs:
19206           - Fixed background color handling
19207           - Fixed sending of enter/leave events on a grab
19209 2004-08-24 16:35  pbartok
19211         * X11Structs.cs:
19212           - Refined definitions for CrossingEvent
19214 2004-08-24 12:37  jordi
19216         * ScrollBar.cs, Theme.cs, ThemeGtk.cs, ThemeWin32Classic.cs: fixes
19217           formmating, methods signature, and adds missing events
19219 2004-08-24 12:24  jordi
19221         * Control.cs: fire OnEnabledChanged event
19223 2004-08-24 11:17  pbartok
19225         * XplatUIWin32.cs:
19226           - Implemented SetTimer() and KillTimer()
19228 2004-08-24 11:16  pbartok
19230         * XplatUIX11.cs:
19231           - Now uses Remove instead of Add to kill the timer
19233 2004-08-24 10:16  jackson
19235         * PictureBox.cs, Theme.cs, ThemeWin32Classic.cs: Handle drawing
19236           picture boxes in the theme now. Draw picture box borders and obey
19237           sizing modes
19239 2004-08-24 05:49  jackson
19241         * Timer.cs: Remove top secret debugging code
19243 2004-08-24 05:34  jackson
19245         * PictureBox.cs: Temp hack to make picture boxes draw their full
19246           image
19248 2004-08-24 05:29  jackson
19250         * Timer.cs, XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs,
19251           XplatUIX11.cs: Move timers to the driver level. On X they are
19252           queued by the driver and checked on idle.
19254 2004-08-24 01:07  jackson
19256         * XplatUIX11.cs: Use a queue for async messages instead of passing
19257           them as ClientMessages since that was totally broken. Also simply
19258           check for events and return an idle message if none are found. This
19259           gives us an idle handler, and prevents deadlocking when no messages
19260           are in the queue.
19262 2004-08-23 18:19  ravindra
19264         * XplatUIWin32.cs: Removed the unwanted destructor.
19266 2004-08-23 17:27  pbartok
19268         * ButtonBase.cs:
19269           - Finishing touches. Works now, just needs some optimizations.
19271 2004-08-23 16:53  jordi
19273         * ScrollBar.cs: small fix
19275 2004-08-23 16:45  pbartok
19277         * Application.cs:
19278           - Removed debug output
19279           - Simplifications
19281 2004-08-23 16:43  jordi
19283         * ScrollBar.cs: [no log message]
19285 2004-08-23 16:10  pbartok
19287         * Form.cs:
19288           - Fixed handling of WM_CLOSE message
19289           - Removed debug output
19291 2004-08-23 16:09  pbartok
19293         * Application.cs:
19294           - Added handling of Idle event
19295           - Added handling of form closing
19296           - Fixed reporting of MessageLoop property
19297           - Removed some unneeded code, should provide a bit of a speedup
19299 2004-08-23 15:22  pbartok
19301         * Control.cs:
19302           - Added InitLayout() method
19303           - Added code to properly perform layout when Anchor or Dock property
19304             is changed
19305           - Changed 'interpretation' of ResumeLayout. MS seems to have a
19306             LAMESPEC, tried to do it in a way that makes sense
19308 2004-08-23 14:10  jordi
19310         * HScrollBar.cs, ScrollBar.cs, TrackBar.cs, VScrollBar.cs: fixes
19311           properties and methods
19313 2004-08-23 13:55  pbartok
19315         * Control.cs:
19316           - Properly fixed Jordi's last fix
19317           - Now uses Cursor's Position property instead of calling XplatUI
19318           directly
19320 2004-08-23 13:44  jordi
19322         * PaintEventHandler.cs: Adding missing attribute
19324 2004-08-23 13:39  pbartok
19326         * Cursor.cs:
19327           - Implemented Position property
19329 2004-08-23 13:39  pbartok
19331         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs:
19332           - Added method to move mouse cursor
19334 2004-08-23 13:39  pbartok
19336         * XplatUIX11.cs:
19337           - Fixed setting of background color
19338           - Added method to move mouse cursor
19340 2004-08-23 13:16  jordi
19342         * Control.cs: avoids null exception
19344 2004-08-22 17:46  jackson
19346         * PictureBox.cs, PictureBoxSizeMode.cs: Initial implementation of
19347           PictureBox
19349 2004-08-22 17:40  jackson
19351         * XplatUIX11.cs: Add some missing locks
19353 2004-08-22 15:10  pbartok
19355         * Control.cs, Form.cs:
19356           - Removed OverlappedWindow style from Control, instead it's default
19357             now is child
19358           - Made form windows OverlappedWindow by default
19360 2004-08-22 13:34  jackson
19362         * ScrollBar.cs: Update the position through the Value property so
19363           the OnValueChanged event is raised.
19365 2004-08-22 12:04  pbartok
19367         * SWF.csproj:
19368           - Added Cursor.cs and UserControl.cs
19370 2004-08-22 12:03  pbartok
19372         * Cursor.cs:
19373           - Started implementation, not usable yet
19375 2004-08-22 12:00  pbartok
19377         * UserControl.cs:
19378           - Implemented UserControl (complete)
19380 2004-08-21 19:20  ravindra
19382         * ToolBar.cs: Correcting the formatting mess of VS.NET.
19384 2004-08-21 18:49  ravindra
19386         * ToolBar.cs: Probably this completes the missing attributes in
19387           toolbar control.
19389 2004-08-21 18:03  ravindra
19391         * ToolBar.cs, ToolBarButton.cs, ToolBarButtonClickEventArgs.cs:
19392           Fixed toolbar control signatures.
19394 2004-08-21 16:32  pbartok
19396         * LinkLabel.cs:
19397           - Signature Fixes
19399 2004-08-21 16:30  pbartok
19401         * Label.cs:
19402           - Signature fixes
19404 2004-08-21 16:19  pbartok
19406         * Control.cs, Label.cs:
19407           - Signature fixes
19409 2004-08-21 15:57  pbartok
19411         * ButtonBase.cs:
19412           - Added loads of debug output for development
19413           - Fixed typo in method name
19415 2004-08-21 15:52  pbartok
19417         * ToolBarButtonClickEventArgs.cs:
19418           - Added missing base class
19420 2004-08-21 14:53  pbartok
19422         * Control.cs:
19423           - Updated to match new GrabWindow signature
19425 2004-08-21 14:51  pbartok
19427         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIX11.cs:
19428           - Added method to get default display size
19430 2004-08-21 14:23  pbartok
19432         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIX11.cs:
19433           - Added method to query current grab state
19434           - Added argument to allow confining a grab to a window
19436 2004-08-21 14:22  pbartok
19438         * Keys.cs:
19439           - Added [Flags] attribute so that modifiers can be used in bitwise
19440           ops
19442 2004-08-21 14:21  pbartok
19444         * TrackBar.cs, ScrollBar.cs:
19445           - Replaced direct XplatUI calls with their Control counterpart
19447 2004-08-21 13:32  pbartok
19449         * Control.cs:
19450           - Implemented Created property
19452 2004-08-21 13:28  pbartok
19454         * Control.cs:
19455           - Implemented ContainsFocus
19457 2004-08-21 13:26  pbartok
19459         * Control.cs:
19460           - Implemented CausesValidation
19462 2004-08-21 13:21  pbartok
19464         * Control.cs:
19465           - Implemented CanFocus
19466           - Implemented CanSelect
19467           - Implemented Capture
19469 2004-08-21 12:35  pbartok
19471         * XplatUIWin32.cs:
19472           - Fixed bug with Async message handling
19473           - Implemented getting the ModifierKeys
19475 2004-08-21 12:32  jackson
19477         * AsyncMethodResult.cs: Make sure we have the mutex before we
19478           release it. Fixes BeginInvoke on windows
19480 2004-08-21 11:31  pbartok
19482         * XplatUIWin32.cs, XplatUIX11.cs:
19483           - Drivers now return proper mouse state
19485 2004-08-21 10:54  jackson
19487         * Control.cs: Implement EndInvoke
19489 2004-08-21 10:48  jackson
19491         * Timer.cs: Remove unneeded finalizer
19493 2004-08-20 19:52  ravindra
19495         * ThemeWin32Classic.cs, ToolBar.cs, ToolBarButton.cs: Improvments
19496           in mouse event handling in the ToolBar control.
19498 2004-08-20 19:50  ravindra
19500         * ImageList.cs: Changed draw method to use the arguments passed in
19501           to draw the image.
19503 2004-08-20 18:58  pbartok
19505         * XplatUIStructs.cs:
19506           - Added private message for async communication
19508 2004-08-20 17:38  ravindra
19510         * Control.cs: Made RightToLeft property virtual and removed a
19511           Console.WriteLine.
19513 2004-08-20 14:39  jordi
19515         * ThemeGtk.cs: use style_attach
19517 2004-08-20 14:39  pbartok
19519         * XplatUIWin32.cs:
19520           - Added jackson's Async code from X11 to Win32
19522 2004-08-20 14:09  pbartok
19524         * SWF.csproj:
19525           - Added all new files
19527 2004-08-20 14:09  pbartok
19529         * Control.cs:
19530           - Added call to set window background color
19532 2004-08-20 14:03  pbartok
19534         * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs:
19535           - Added method for setting the window background
19537 2004-08-20 14:02  pbartok
19539         * XplatUIWin32.cs:
19540           - Added method for setting the background color
19541           - Added handling for erasing the window background
19543 2004-08-20 13:45  jordi
19545         * TrackBar.cs: fixes timer, new properties and methods
19547 2004-08-20 13:34  jackson
19549         * ScrollBar.cs: Use the SWF timer so callbacks are run in the
19550           correct thread
19552 2004-08-20 13:22  jackson
19554         * Timer.cs: Timer Tick events are now handed through Controls Async
19555           mechanism so the callbacks are executed in the same thread as X
19557 2004-08-20 13:19  jackson
19559         * XplatUIDriver.cs: Expose functionality to send async messages
19560           through the driver
19562 2004-08-20 13:18  jackson
19564         * Control.cs: Implement Begininvoke
19566 2004-08-20 13:14  jackson
19568         * XplatUI.cs, XplatUIWin32.cs: Expose functionality to send async
19569           messages through the driver
19571 2004-08-20 13:12  jackson
19573         * XplatUIX11.cs: Lock before all X operations. Also added Async
19574           method functionality through XSendEvent
19576 2004-08-20 13:11  jackson
19578         * X11Structs.cs: Use IntPtrs for ClientMessage extra data (TODO:
19579           This will screw up on 64 bit systems)
19581 2004-08-20 13:10  jackson
19583         * AsyncMethodData.cs, AsyncMethodResult.cs: Classes for sending
19584           Async messages through X/Win32
19586 2004-08-19 19:39  pbartok
19588         * XplatUIX11.cs:
19589           - Updated code to match new HandleData.DeviceContext type
19591 2004-08-19 19:38  pbartok
19593         * HandleData.cs:
19594           - Made DeviceContext a generic object to allow usage from various
19595           drivers
19596           - Added support for queueing Windows messages
19598 2004-08-19 19:37  pbartok
19600         * XplatUIWin32.cs:
19601           - Added generation of MouseEnter, MouseLeave and MouseHover events
19602           - Added cleanup on EndPaint
19604 2004-08-19 19:17  pbartok
19606         * Control.cs:
19607           - Added handling of WM_MOUSEHOVER
19608           - Worked around 'bug' in Win32 WM_MOUSE_ENTER/WM_MOUSE_LEAVE driver
19609           code
19611 2004-08-19 18:55  jordi
19613         * ThemeGtk.cs: fixes button order
19615 2004-08-19 18:12  jordi
19617         * Theme.cs, ThemeWin32Classic.cs: fixes methods signature
19619 2004-08-19 17:09  pbartok
19621         * Control.cs:
19622           - Added Right property
19623           - Added RightToLeft property
19625 2004-08-19 16:27  jordi
19627         * ThemeGtk.cs: experimental GTK theme support
19629 2004-08-19 16:26  jordi
19631         * ITheme.cs, Theme.cs: move themes from an interface to a class
19633 2004-08-19 16:25  jordi
19635         * Control.cs, ScrollBar.cs, ThemeEngine.cs, ThemeWin32Classic.cs:
19636           theme enhancaments
19638 2004-08-19 16:04  pbartok
19640         * XplatUIX11.cs:
19641           - Added colormap basics
19642           - Added a way to re-initialize with a different display handle
19643           - Fixed setting of the window background color
19644           - Added various X11 imports related to colors and colormaps
19646 2004-08-19 15:51  pbartok
19648         * X11Structs.cs:
19649           - Removed packing hints (Paolo suggested this a while back)
19650           - fixed colormap type
19651           - Added default Atom types
19652           - Added Screen and color structs and enums
19654 2004-08-19 15:39  pbartok
19656         * ImageList.cs:
19657           - Added missing Draw() method
19658           - Added missing RecreateHandle event
19660 2004-08-19 15:30  pbartok
19662         * Form.cs:
19663           - Added handling of WM_CLOSE
19665 2004-08-18 13:16  jordi
19667         * ITheme.cs, ThemeWin32Classic.cs, XplatUIWin32.cs: Move colors to
19668           a table
19670 2004-08-18 09:56  jordi
19672         * ScrollBar.cs: fixes to scrollbar: steps and multiple timers
19674 2004-08-17 15:31  ravindra
19676         * SWF.csproj: Updated project.
19678 2004-08-17 15:25  pbartok
19680         * Control.cs:
19681           - Drawing improvement; don't call UpdateBounds if we are not visible
19682             (or have been minimized)
19684 2004-08-17 15:24  pbartok
19686         * XplatUIWin32.cs:
19687           - Finished IsVisible
19688           - Added Win32GetWindowPlacement
19690 2004-08-17 15:08  jackson
19692         * Panel.cs: Initial checkin of the Panel
19694 2004-08-17 14:25  pbartok
19696         * Control.cs:
19697           - Fixed broken handling of default window sizes
19699 2004-08-17 13:29  jackson
19701         * ThemeWin32Classic.cs: Don't use KnownColor to create colours. It
19702           has a large startup time.
19704 2004-08-17 10:25  jackson
19706         * HandleData.cs: union areas properly
19708 2004-08-17 10:12  jackson
19710         * HandleData.cs: union areas properly
19712 2004-08-16 20:00  ravindra
19714         * ToolBar.cs, ToolBarButton.cs: Added attributes.
19716 2004-08-16 18:48  ravindra
19718         * ToolBar.cs: Added attributes.
19720 2004-08-16 17:17  ravindra
19722         * SWF.csproj: Updated project.
19724 2004-08-16 17:16  jackson
19726         * XplatUIX11.cs: Check for more expose events before sending a
19727           WM_PAINT so they can all be grouped together. This makes dragging a
19728           window across another window redraw in a sane way.
19730 2004-08-16 15:47  pbartok
19732         * Control.cs:
19733           - Added handling of WM_MOUSE_ENTER & WM_MOUSE_LEAVE to
19734             support OnMouseEnter/Leave()
19735           - Added WS_CLIPSIBLINGS and WS_CLIPCHILDREN window styles to improve
19736             exposure handling
19738 2004-08-16 15:46  pbartok
19740         * XplatUIStructs.cs, XplatUIX11.cs:
19741           - Added WM_MOUSE_ENTER & WM_MOUSE_LEAVE to support
19742           OnMouseEnter/Leave()
19744 2004-08-16 15:34  jackson
19746         * XplatUIX11.cs: Group multiple expose events in HandleData, make
19747           sure messages get the message field set to WM_NULL if they are not
19748           handled.
19750 2004-08-16 15:24  jackson
19752         * HandleData.cs: HandleData is used for storing message information
19753           for window handles
19755 2004-08-15 17:23  ravindra
19757         * ColorDepth.cs: Added attribute.
19759 2004-08-15 17:23  ravindra
19761         * SWF.csproj: Updated project for ToolBar Control.
19763 2004-08-15 17:20  ravindra
19765         * ITheme.cs, ThemeWin32Classic.cs: Changes to Theme for ToolBar
19766           control and also dos2unix format.
19768 2004-08-15 17:13  ravindra
19770         * ToolBar.cs, ToolBarAppearance.cs, ToolBarButton.cs,
19771           ToolBarButtonClickEventArgs.cs,
19772           ToolBarButtonClickEventHandler.cs, ToolBarButtonStyle.cs,
19773           ToolBarTextAlign.cs: First Implementation of ToolBar control.
19775 2004-08-15 15:31  pbartok
19777         * ButtonBase.cs:
19778           - First (mostly) working version
19780 2004-08-13 16:15  pbartok
19782         * Control.cs:
19783           - Fixed Anchor default
19785 2004-08-13 15:43  pbartok
19787         * Control.cs:
19788           - Changed GetCursorPos signature
19790 2004-08-13 15:42  pbartok
19792         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs:
19793           - Changed signature for GetCursorPos
19795 2004-08-13 15:25  pbartok
19797         * XplatUIX11.cs:
19798           - Cleanup
19799           - Fixed resizing/exposure handling
19801 2004-08-13 15:22  jordi
19803         * ThemeWin32Classic.cs: removes redundant code and fixes issues
19804           with tickposition
19806 2004-08-13 14:55  jordi
19808         * TrackBar.cs: change from wndproc to events
19810 2004-08-13 13:00  jordi
19812         * Control.cs, XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs,
19813           XplatUIX11.cs: implements PointToClient (ScreenToClient)
19815 2004-08-13 12:53  pbartok
19817         * XplatUIWin32.cs:
19818           - Changed GetWindowPos to also provide client area size
19819           - Fixed broken prototypes for several win32 functions
19821 2004-08-13 12:53  pbartok
19823         * XplatUI.cs, XplatUIDriver.cs:
19824           - Changed GetWindowPos to also provide client area size
19826 2004-08-13 12:52  pbartok
19828         * XplatUIX11.cs:
19829           - Added generation of WM_POSCHANGED
19830           - Changed GetWindowPos to also provide client area size
19832 2004-08-13 12:52  pbartok
19834         * Control.cs:
19835           - Added Dispose() and destructor
19836           - Fixed resizing and bounds calculation
19837           - Fixed Layout
19838           - Added memory savings for invisible windows
19840 2004-08-13 12:46  jordi
19842         * TrackBar.cs: adds timer and grap window
19844 2004-08-13 10:25  jackson
19846         * Timer.cs: SWF Timer
19848 2004-08-12 16:59  pbartok
19850         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIX11.cs:
19851           - Implemented method to get current mouse position
19853 2004-08-12 14:29  jordi
19855         * ITheme.cs, ThemeWin32Classic.cs, TrackBar.cs: Trackbar
19856           enhancement, fix mouse problems, highli thumb, etc
19858 2004-08-12 13:31  pbartok
19860         * Control.cs:
19861           - Fixed Anchoring bugs
19863 2004-08-12 13:01  jackson
19865         * StatusBar.cs: Don't forget things
19867 2004-08-12 12:54  jackson
19869         * ThemeWin32Classic.cs: Handle owner draw status bars
19871 2004-08-12 12:54  jackson
19873         * StatusBar.cs: Implement missing properties, events, and methods.
19874           Handle mouse clicking
19876 2004-08-12 10:19  jackson
19878         * StatusBarPanelClickEventArgs.cs,
19879           StatusBarPanelClickEventHandler.cs: Classes for handling status
19880           bar panel click events
19882 2004-08-12 10:10  jackson
19884         * Control.cs: Add missing properties
19886 2004-08-12 09:46  pbartok
19888         * BindingsManagerBase.cs:
19889           - Name changed to BindingManagerBase.cs
19891 2004-08-12 09:25  jordi
19893         * ScrollableControl.cs: calls ctrlbase instead of exeception
19895 2004-08-11 16:28  pbartok
19897         * InputLanguageChangingEventArgs.cs:
19898           - Never check in before compiling. Fixes the last check-in
19900 2004-08-11 16:26  pbartok
19902         * InputLanguageChangingEventArgs.cs:
19903           - More signature fixes
19905 2004-08-11 16:20  pbartok
19907         * BindingManagerBase.cs, BindingMemberInfo.cs, ContainerControl.cs,
19908           Control.cs, ControlEventArgs.cs, ControlPaint.cs, Form.cs,
19909           ImageListStreamer.cs, InputLanguage.cs,
19910           InputLanguageChangedEventArgs.cs,
19911           InputLanguageChangingEventArgs.cs, Keys.cs, LayoutEventArgs.cs,
19912           LinkArea.cs, Message.cs, MouseEventArgs.cs, NativeWindow.cs,
19913           ScrollEventArgs.cs, ScrollableControl.cs, XplatUI.cs,
19914           XplatUIDriver.cs, XplatUIWin32.cs, XplatUIX11.cs:
19915           - Signature fixes
19917 2004-08-11 16:16  pbartok
19919         * Application.cs:
19920           - Fixed Signature
19921           - Added .Net 1.1 method
19923 2004-08-11 15:25  pbartok
19925         * SWF.csproj:
19926           - Fixed BindingManagerBase.cs filename
19928 2004-08-11 15:22  pbartok
19930         * BindingManagerBase.cs:
19931           - Was checked in with wrong filename
19933 2004-08-11 14:50  pbartok
19935         * SWF.csproj:
19936           - Updated
19938 2004-08-11 13:41  jordi
19940         * XplatUIWin32.cs: Fixes ClientRect
19942 2004-08-11 13:19  pbartok
19944         * Control.cs, XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs,
19945           XplatUIX11.cs:
19946           - We had SetWindowPos and MoveWindow to set window positions and
19947             size, removed MoveWindow. We have GetWindowPos, so it made sense to
19948             keep SetWindowPos as matching counterpart
19949           - Added some X11 sanity checking
19951 2004-08-11 12:59  pbartok
19953         * Control.cs:
19954           - Major cleanup of my SetBounds/SetBoundsCore/UpdateBounds mess
19955             (It seems that SetBounds is just a front for SetBoundsCore and
19956              SetBoundsCore updates the underlying window system and
19957              UpdateBounds is responsible for updating the variables associated
19958              with the Control and sending the events)
19959           - Major cleanup of Size handling; we now have two sizes, client_size
19960             and bounds. Bounds defines the window with decorations, client_size
19961             without them.
19963 2004-08-11 12:55  pbartok
19965         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIX11.cs:
19966           - Added method to calculate difference between decorated window and
19967             raw client area
19969 2004-08-11 12:54  pbartok
19971         * Label.cs:
19972           - Forcing redraw on resize
19974 2004-08-11 11:43  pbartok
19976         * ImageList.cs:
19977           - Removed disposing of the actual images when the list is disposed
19979 2004-08-11 09:13  pbartok
19981         * Control.cs:
19982           - Now properly reparents windows
19984 2004-08-11 08:37  pbartok
19986         * Control.cs:
19987           - Duh!
19989 2004-08-11 07:47  pbartok
19991         * Control.cs:
19992           - Rewrote the collection stuff. Might not be as fast now, not
19993             keeping the number of children around and accessible directly, but
19994             it's more straightforward
19996 2004-08-11 07:44  pbartok
19998         * AccessibleObject.cs:
19999           - Fixed to match ControlCollection rewrite
20001 2004-08-11 07:43  pbartok
20003         * ImageList.cs:
20004           - Added missing creation of the collection list
20006 2004-08-10 20:08  jackson
20008         * StatusBar.cs: Get the paint message from WndProc
20010 2004-08-10 19:31  jackson
20012         * ThemeWin32Classic.cs: Create Brushes as little as possible
20014 2004-08-10 19:20  jackson
20016         * UICues.cs: Add Flags attribute
20018 2004-08-10 19:19  jackson
20020         * StatusBarPanel.cs: Signature cleanup
20022 2004-08-10 19:10  jackson
20024         * StatusBarDrawItemEventArgs.cs, StatusBarDrawItemEventHandler.cs:
20025           Initial implementation of status bar item drawing
20027 2004-08-10 17:27  jordi
20029         * TrackBar.cs: add missing methods, properties, and restructure to
20030           hide extra ones
20032 2004-08-10 16:24  jackson
20034         * AccessibleStates.cs, Border3DSide.cs, Border3DStyle.cs,
20035           ButtonState.cs, ControlStyles.cs, DragDropEffects.cs: Add flags
20036           attribute
20038 2004-08-10 13:21  jordi
20040         * ITheme.cs, ScrollBar.cs, ThemeWin32Classic.cs: scrollbar
20041           enhancements and standarize on win colors defaults
20043 2004-08-10 12:52  jackson
20045         * DrawItemEventArgs.cs, DrawItemState.cs, ITheme.cs,
20046           ThemeWin32Classic.cs: Implement DrawItem functionality
20048 2004-08-10 12:47  jordi
20050         * XplatUIWin32.cs: Calls InvalidateRect before UpdateWindow
20052 2004-08-10 12:32  jordi
20054         * Control.cs: throw ontextchange event
20056 2004-08-10 11:43  pbartok
20058         * Control.cs:
20059           - Added more to the still unfinished Dock/Anchor layout code
20061 2004-08-10 11:39  pbartok
20063         * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs:
20064           - Added GetWindowPos method
20066 2004-08-10 11:36  pbartok
20068         * XplatUIWin32.cs:
20069           - Implemented several methods
20071 2004-08-10 09:47  jackson
20073         * TrackBar.cs: Allow control to handle buffering
20075 2004-08-10 09:41  jackson
20077         * ProgressBar.cs, ScrollBar.cs: Allow control to handle buffering
20079 2004-08-10 09:24  jackson
20081         * Label.cs, LinkLabel.cs: Let Control handle buffering.
20083 2004-08-10 09:09  jackson
20085         * StatusBar.cs: Let Control handle all the buffering.
20087 2004-08-10 09:08  jackson
20089         * Control.cs: Control will now handle the buffering code, so each
20090           control does not have to implement this.
20092 2004-08-10 08:34  jackson
20094         * XplatUIDriver.cs: Use default colors from the theme
20096 2004-08-09 17:12  pbartok
20098         * ImageList.cs:
20099           - Fixed several bugs Ravindra pointed out
20101 2004-08-09 16:11  pbartok
20103         * Control.cs:
20104           - Added incomplete dock layout code
20105           - Added support for mouse wheel
20107 2004-08-09 16:09  pbartok
20109         * XplatUIX11.cs:
20110           - Added handling for middle and right mousebutton
20111           - Added handling for mouse wheel
20112           - Added handling for key state and mouse state and position
20113           - Now properly generates WM_xBUTTONx messages and WM_MOUSEWHEEL
20114           messages
20116 2004-08-09 15:40  jackson
20118         * StatusBarPanel.cs, StatusBarPanelAutoSize.cs,
20119           StatusBarPanelBorderStyle.cs, StatusBarPanelStyle.cs: Initial
20120           checkin
20122 2004-08-09 15:37  jackson
20124         * StatusBar.cs: Initial implementation of StatusBar
20126 2004-08-09 15:36  jackson
20128         * ITheme.cs: Add support for drawing status bar and getting status
20129           bar item sizes
20131 2004-08-09 15:35  pbartok
20133         * MouseButtons.cs:
20134           - Fixed values
20136 2004-08-09 15:34  jackson
20138         * ThemeWin32Classic.cs: Add support for drawing status bar and get
20139           status bar item sizes
20141 2004-08-09 15:21  jackson
20143         * ThemeWin32Classic.cs: Use known colors for default control
20144           colours
20146 2004-08-09 15:12  jackson
20148         * ThemeWin32Classic.cs: Make the default font static, it is static
20149           in control so this doesn't change functionality and creating fonts
20150           is sloooooow.
20152 2004-08-09 14:56  pbartok
20154         * X11Structs.cs:
20155           - Added GrabMode enum
20157 2004-08-09 14:55  pbartok
20159         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIX11.cs:
20160           - Removed Run method, was only required for initial development
20162 2004-08-09 14:51  pbartok
20164         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIX11.cs:
20165           - Implemented GrabWindow/ReleaseWindow methods to allow pointer
20166           capture
20168 2004-08-09 13:48  pbartok
20170         * XplatUIX11.cs:
20171           - Fixed default sizing for child windows
20173 2004-08-09 12:56  pbartok
20175         * XplatUIX11.cs:
20176           - Added generation of WM_DESTROY message
20177           - Added handling of window manager induced shutdown
20179 2004-08-09 11:31  jackson
20181         * ThemeWin32Classic.cs: New names for control properties
20183 2004-08-09 11:25  jackson
20185         * Control.cs: Use new color names
20187 2004-08-09 11:02  jackson
20189         * XplatUI.cs: Get default window properties from the theme
20191 2004-08-09 11:01  jackson
20193         * ITheme.cs: The theme engine now controls default window
20194           properties
20196 2004-08-09 11:00  jackson
20198         * ThemeWin32Classic.cs: Add default window color properties
20200 2004-08-09 10:17  jackson
20202         * ThemeWin32Classic.cs: Use correct default back color
20204 2004-08-09 10:05  jackson
20206         * XplatUIWin32.cs, XplatUIX11.cs: These properties are handled by
20207           the theme now.
20209 2004-08-09 09:56  jackson
20211         * XplatUI.cs: Remove defaults, these are handled by the theme now.
20213 2004-08-09 09:54  jackson
20215         * Control.cs: Get default properties from the theme.
20217 2004-08-09 09:53  jackson
20219         * ITheme.cs: Themes now handle default control properties
20221 2004-08-09 09:53  jackson
20223         * ThemeWin32Classic.cs: Themes now handle default control
20224           properties so coloring will be consistent
20226 2004-08-08 16:54  jordi
20228         * ITheme.cs, ThemeWin32Classic.cs: Label BorderStyles
20230 2004-08-08 15:08  jordi
20232         * XplatUIX11.cs: fixes keyboard crash
20234 2004-08-08 13:47  jordi
20236         * Label.cs: add cvs header info
20238 2004-08-08 12:09  jackson
20240         * ThemeWin32Classic.cs: Add pen_buttonface
20242 2004-08-08 11:52  jordi
20244         * Label.cs, LinkLabel.cs: [no log message]
20246 2004-08-08 11:34  jordi
20248         * ThemeWin32Classic.cs: Use Windows Standard Colours
20250 2004-08-07 17:32  jordi
20252         * TrackBar.cs: throw exceptions of invalid enums values
20254 2004-08-07 17:31  jordi
20256         * Label.cs, LinkLabel.cs, ThemeWin32Classic.cs: fixes label bug and
20257           draw method name
20259 2004-08-07 16:56  jackson
20261         * HorizontalAlignment.cs: Initial checkin
20263 2004-08-07 13:16  jordi
20265         * Label.cs, LinkLabel.cs: throw exceptions, fixes events, missing
20266           methods
20268 2004-08-07 13:05  jordi
20270         * ITheme.cs, ThemeWin32Classic.cs: Theme colour support and
20271           GetSysColor defines
20273 2004-08-06 18:01  pbartok
20275         * ThemeWin32Classic.cs:
20276           - Fixed some rounding issues with float/int
20278 2004-08-06 18:00  jackson
20280         * DockStyle.cs, AnchorStyles.cs:
20282                   Add flags and serializable attributes.
20284 2004-08-06 17:46  pbartok
20286         * XplatUIX11.cs:
20287           - Implemented GetParent
20289 2004-08-06 17:18  pbartok
20291         * TrackBar.cs:
20292           - Fixed some rounding issues with float/int
20294 2004-08-06 17:17  pbartok
20296         * X11Structs.cs, XplatUIX11.cs:
20297           - Fixed Refresh and Invalidate
20299 2004-08-06 15:30  pbartok
20301         * Control.cs, X11Structs.cs, XplatUIX11.cs:
20302           - Fixed recursive loop when resizing
20303           - Improved/fixed redrawing on expose messages
20305 2004-08-06 09:53  jordi
20307         * Control.cs, X11Structs.cs, XplatUIWin32.cs, XplatUIX11.cs: X11
20308           keyboard navigation
20310 2004-08-06 08:02  pbartok
20312         * X11Structs.cs, XplatUIX11.cs:
20313           - Fixed reparenting
20314           - Fixed window border creation
20316 2004-08-05 15:38  pbartok
20318         * XplatUIX11.cs:
20319           - Attempted fix for reparenting problems
20321 2004-08-04 15:14  pbartok
20323         * Control.cs:
20324           - Fixed Invalidation bug (calculated wrong client area)
20325           - Added ClientSize setter
20327 2004-08-04 15:13  pbartok
20329         * Form.cs:
20330           - Added AutoScale properties
20332 2004-08-04 15:13  pbartok
20334         * SWF.csproj:
20335           - Added latest files
20337 2004-08-04 14:11  pbartok
20339         * Control.cs, XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs,
20340           XplatUIX11.cs:
20341           - Added Invalidate handling
20343 2004-08-03 17:09  jordi
20345         * XplatUIDriver.cs: fixes spelling mistake
20347 2004-07-27 09:53  jordi
20349         * TrackBar.cs: fixes trackbar events, def classname, methods
20350           signature
20352 2004-07-27 09:29  jordi
20354         * ScrollBar.cs: fixes scrollbar events
20356 2004-07-27 04:38  jordi
20358         * Control.cs: changes to be able to run winforms samples
20360 2004-07-26 11:42  jordi
20362         * ControlPaint.cs, ITheme.cs, ProgressBar.cs, ScrollBar.cs,
20363           ThemeEngine.cs, ThemeWin32Classic.cs, TrackBar.cs: Theme support
20365 2004-07-26 05:41  jordi
20367         * MessageBox.cs, MessageBoxButtons.cs, MessageBoxDefaultButton.cs,
20368           MessageBoxIcon.cs, MessageBoxOptions.cs: initial messagebox
20369           implementation
20371 2004-07-22 09:22  jordi
20373         * LinkLabel.cs, LinkLabelLinkClickedEventHandler.cs: link label:
20374           check link overlapping, implement events, and fixes
20376 2004-07-21 10:28  jordi
20378         * DialogResult.cs, IButtonControl.cs: fixes comments filenames
20380 2004-07-21 10:19  jordi
20382         * DialogResult.cs, IButtonControl.cs, Label.cs, LinkArea.cs,
20383           LinkBehavior.cs, LinkClickedEventArgs.cs, LinkLabel.cs,
20384           LinkLabelLinkClickedEventArgs.cs,
20385           LinkLabelLinkClickedEventHandler.cs, LinkState.cs,
20386           XplatUIWin32.cs, LinkClickedEventHandler.cs: LinkLabel control
20387           implementation
20389 2004-07-19 13:09  jordi
20391         * Control.cs, Label.cs: label control re-written: added missing
20392           functionlity, events, and properties
20394 2004-07-19 10:49  jordi
20396         * Control.cs: fixes SetBounds logic
20398 2004-07-19 01:29  jordi
20400         * Control.cs: Call RefreshWindow only if the window has created
20402 2004-07-15 14:05  pbartok
20404         * ColorDepth.cs, ImageList.cs, ImageListStreamer.cs, SWF.csproj:
20405           - Implemented ImageList and ImageList.ImageCollection classes
20406           - Added ColorDepth enumeration
20407           - Updated SWF VS.Net project
20409 2004-07-15 11:06  jordi
20411         * XplatUIStructs.cs: added MsgButons enum
20413 2004-07-15 11:03  jordi
20415         * Control.cs: added basic mouse handeling events
20417 2004-07-15 03:38  jordi
20419         * Orientation.cs, TickStyle.cs, TrackBar.cs: Horizontal and
20420           Vertical TrackBar control implementation
20422 2004-07-13 09:33  jordi
20424         * HScrollBar.cs, VScrollBar.cs: vertical and hort. classes commit
20426 2004-07-13 09:31  jordi
20428         * Control.cs, Form.cs: commit: new properties and fixes form size
20429           problems
20431 2004-07-09 14:13  miguel
20433         * ProgressBar.cs: Spelling
20435 2004-07-09 11:25  pbartok
20437         * ProgressBar.cs:
20438           - Removed usage of Rectangle for drawing. Miguel pointed out it's
20439           faster
20441 2004-07-09 11:17  miguel
20443         * ProgressBar.cs: 2004-07-09  Miguel de Icaza  <miguel@ximian.com>
20445                 * ProgressBar.cs: Fixed spelling for `block'
20447                 drawProgressBar: renamed to `DrawProgressBar' to follow the coding
20448                 style guidelines.
20450                 Avoid using the += on rect.X, that exposed a bug in the compiler.
20452 2004-07-08 23:21  pbartok
20454         * AccessibleObject.cs, AccessibleRole.cs, AccessibleStates.cs,
20455           AnchorStyles.cs, Application.cs, ApplicationContext.cs,
20456           BaseCollection.cs, Binding.cs, BindingContext.cs,
20457           BindingMemberInfo.cs, BindingsCollection.cs,
20458           BindingsManagerBase.cs, Border3DSide.cs, Border3DStyle.cs,
20459           BorderStyle.cs, BoundsSpecified.cs, ButtonBorderStyle.cs,
20460           ButtonState.cs, CaptionButton.cs, CheckBox.cs,
20461           ContainerControl.cs, Control.cs, ControlEventArgs.cs,
20462           ControlEventHandler.cs, ControlPaint.cs, ControlStyles.cs,
20463           ConvertEventArgs.cs, ConvertEventHandler.cs, Copyright,
20464           CreateParams.cs, DockStyle.cs, DragAction.cs, DragDropEffects.cs,
20465           DragEventArgs.cs, DragEventHandler.cs, FlatStyle.cs, Form.cs,
20466           FrameStyle.cs, GiveFeedbackEventArgs.cs,
20467           GiveFeedbackEventHandler.cs, HelpEventArgs.cs,
20468           HelpEventHandler.cs, IContainerControl.cs, IDataObject.cs,
20469           IMessageFilter.cs, IWin32Window.cs, ImeMode.cs, InputLanguage.cs,
20470           InputLanguageChangedEventArgs.cs,
20471           InputLanguageChangedEventHandler.cs,
20472           InputLanguageChangingEventArgs.cs,
20473           InputLanguageChangingEventHandler.cs, InputLanguageCollection.cs,
20474           InvalidateEventArgs.cs, InvalidateEventHandler.cs,
20475           KeyEventArgs.cs, KeyEventHandler.cs, KeyPressEventArgs.cs,
20476           KeyPressEventHandler.cs, Keys.cs, Label.cs, LayoutEventArgs.cs,
20477           LayoutEventHandler.cs, MenuGlyph.cs, Message.cs, MouseButtons.cs,
20478           MouseEventArgs.cs, MouseEventHandler.cs, NativeWindow.cs,
20479           PaintEventArgs.cs, PaintEventHandler.cs, ProgressBar.cs,
20480           QueryAccessibilityHelpEventArgs.cs,
20481           QueryAccessibilityHelpEventHandler.cs,
20482           QueryContinueDragEventArgs.cs, QueryContinueDragEventHandler.cs,
20483           RightToLeft.cs, SWF.csproj, SWF.csproj.user, ScrollBar.cs,
20484           ScrollBars.cs, ScrollButton.cs, ScrollEventArgs.cs,
20485           ScrollEventHandler.cs, ScrollEventType.cs, ScrollableControl.cs,
20486           TODO, TODOAttribute.cs, UICues.cs, UICuesEventArgs.cs,
20487           UICuesEventHandler.cs, X11Structs.cs, XplatUI.cs,
20488           XplatUIDriver.cs, XplatUIStructs.cs, XplatUIWin32.cs,
20489           XplatUIX11.cs, lang.cs:
20490           - Initial check-in