In System.Windows.Forms:
[mcs.git] / class / Managed.Windows.Forms / System.Windows.Forms / ChangeLog
blob22268218d35c46c444be64ae17c96c55a1c654e8
1 2006-12-25  Chris Toshok  <toshok@ximian.com>
3         * Control.cs: only update dist_right/dist_bottom if the
4         width/height is > 0.  this fixes anchored controls being resized
5         smaller until they disappear and then resized larger again.
7 2006-12-25  Chris Toshok  <toshok@ximian.com>
9         * Control.cs: a couple of changes.  Remove dist_left and dist_top,
10         since they're nothing more than X/Left and Y/Top, respectively.
12         Also, move back to a per-control Bitmap/Graphics for
13         DeviceContext, since using the static Hwnd.bmp/bmp_g is bad in the
14         MT case.  Go with a tiny bitmap though, 1x1, instead of Width x
15         Height.
17 2006-12-25  Miguel de Icaza  <miguel@novell.com>
19         * MessageBox.cs: Implemented overload that takes a new "bool
20         displayHelpButton" by adding a new internal field "show_help".
21         When clicked this will raise the HelpRequested on the owner or the
22         main form. 
24         From: 007dbe3ff0ca4729a4f5fcd1d8ab2a2e.txt
25         From: c935e12b95fe4dc1ae670e7f4dc5fd68.txt
27         * ListView.cs: Add support ColumnWidthChanged and
28         ColumnWidthChanging. 
30         Add support for ColumnReordered event.
31         (ReorderColumn): Add NET_2_0 specific support for cancelling the
32         reorder.
34         Very nice codebase!
36         * TextBoxBase.cs (GetLineFromCharIndex): Implement this method.
38         This is used by report f4ae0a88a0a244558aaadf017c9b9efe.
40 2006-12-24  Chris Toshok  <toshok@ximian.com>
42         * GridTablesFactory.cs: 2.0 corcompare work.
44         * ToolStripContainer.cs: add "override" to
45         ContextMenuStripChanged, and remove the local event object.
47         * ToolStripDropDown.cs: same with a couple properties.
49         * ToolStripPanel.cs: same with AutoSizeChanged event.
51         * TextBoxBase.cs: add "override" to AutoSizeChanged.
53         * Form.cs: add the remaining 2.0 events, and do some corcompare
54         attribute work.
56         * DateTimePicker.cs: add "new" to padding.
58         * ButtonBase.cs: use Control's use_compatible_text_rendering.
60         * ToolStripContentPanel.cs: use base.AutoSizeChanged.
62         * DataGridView.cs: PaddingChanged is overridden.
64 2006-12-24  Chris Toshok  <toshok@ximian.com>
66         * Control.cs: corecompare work here too.
68         * DataGridViewElement.cs, DataGridView.cs,
69         DataGridViewButtonCell.cs, DataGridViewRowCollection.cs,
70         DataGridViewImageColumn.cs, DataGridViewComboBoxColumn.cs,
71         DataGridViewImageCell.cs, DataGridViewCheckBoxCell.cs,
72         DataGridViewHeaderCell.cs, DataGridViewCell.cs: more corcompare
73         work.
75 2006-12-24  Miguel de Icaza  <miguel@novell.com>
77         * Control.cs: Switched the error message on the console for a
78         todo.  A review of the code will have to cope with this anyways
79         (since its a large feature, it is in our radar) and it was
80         producing too much output when running PDN.
82         * ToolStripComboBox.cs: Set the text when the SelectedIndex
83         changes.  Applications depend on this (PDN 2.72)
85 2006-12-23  Chris Toshok  <toshok@ximian.com>
87         * TableLayoutSettings.cs: finish up the corcompare work for this
88         class.
90 2006-12-23  Chris Toshok  <toshok@ximian.com>
92         * Control.cs: make SetImplicitBounds internal, do some futzing
93         with LayoutEngine so that it's available in 1.1, and remove the
94         entire duplicated code mess from PerformLayout.  Use
95         System.Windows.Forms.Layout.DefaultLayout instead.
97         * LayoutEngine.cs: make this class internal in 1.1, public in 2.0.
99 2006-12-23  Jonathan Pobst  <monkey@jpobst.com>
101         * Form.cs: Add MainMenuStrip property.
103 2006-12-23  Jonathan Pobst  <monkey@jpobst.com>
105         * Control.cs: Add ContextMenuStrip property and implementation.
106         Fix ContextMenu implementation to show menu centered on control when
107         activated using the keyboard instead of showing at screen (0,0).
109         * ToolStripDropDown.cs: Fix needed overload of Show ().
111 2006-12-23  Everaldo Canuto  <everaldo@simios.org>
113         * Menu.cs: Name property added for 2.0 profile.
114         
115 2006-12-23  Everaldo Canuto  <everaldo@simios.org>
117         * Menu.cs: Update information about FindMenuItem, method to be
118         implemented soon.
120 2006-12-23  Everaldo Canuto  <everaldo@simios.org>
122         * MenuAPI.cs: When deselect items deselect also selected subitems.
123         
124 2006-12-23  Everaldo Canuto  <everaldo@simios.org>
126         * MenuAPI.cs: When hides menu set Wnd to null, it prevents
127         FindSubItemByCoord to found itens that is not active, also an
128         cheking added to FindSubItemByCoord to search for items only 
129         in visible popup windows. Fixes #80274.
131 2006-12-22  Everaldo Canuto  <everaldo@simios.org>
133         * UserControl.cs: Remove MonoTodo and use InternalBorderStyle,
134         internal property, it be care about change ExStyle. 
136 2006-12-22  Andreia Gaita  <avidigal@novell.com>
138         * ContainerControl.cs: set activeControl for parent forms up the 
139         tree when the new activecontrol is a container.
140         When validating the active control, if it is a container, also
141         raise up the validation for it's active control. Fixes #80280
142         
143         * Control.cs: Add internal property flag and check to prevent
144         Focus events from getting raised when Select() is called for
145         a ContainerControl. There are still too many focus events being
146         raised at the moment though.
147         Cleaned up the code a bit.
149 2006-12-22  Rolf Bjarne Kvinge  <RKvinge@novell.com>
151         * Control.cs: Added all missing 2.0 events.and
152         fixed a couple of corcompare issues.
153         * TrackBar.cs: Implemented missing 2.0 bits.
154         * MonthCalendar.cs, 
155         * DateTimePicker.cs, 
156         * MdiClient.cs: Fixed some corcompare issues.
158 2006-12-21  Jonathan Pobst  <monkey@jpobst.com>
160         * ContextMenuStrip.cs, FlowLayoutPanel.cs, SplitContainer.cs,
161         SplitterPanel.cs: corecompare work.
163 2006-12-21  Jonathan Pobst  <monkey@jpobst.com>
165         * ToolStripContainer.cs, ToolStripDropDown.cs, StatusStrip.cs:
166         Clean up warnings for BackgroundImageChanged and PaddingChanged
167         events now that they are implemented in Control.cs.
169 2006-12-21  Jonathan Pobst  <monkey@jpobst.com>
171         * Control.cs: Make sure layout_engine isn't null before using it (2.0).
172         
173         * TableLayoutControlCollection.cs, TableLayoutPanel.cs, TableLayoutCellPosition.cs,
174         TableLayoutSettings.cs, TableLayoutStyleCollection.cs: Initial implementation
175         of TableLayoutPanel and supporting cast.
177 2006-12-21  Rolf Bjarne Kvinge  <RKvinge@novell.com>
179         * XplatUIWin32.cs: 
180         - GrabWindow now confines the mouse pointer to the confine window.
181         - Added Win32ClipCursor and Win32GetClipCursor.
183         * Control.cs: 
184         - Added CaptureWithConfine to be able to capture and confine 
185         mouse pointer.
186         
187         * InternalWindowManager.cs: 
188         - Call CaptureWithConfine instead of Capture if we're an
189         MdiChild (fixes #79982).
191 2006-12-21  Chris Toshok  <toshok@ximian.com>
193         * DataGrid.cs: guard against the initial state of selection, where
194         selection_start == -1.  make sure we only select from index >= 0.
195         Fixes bug #80291.
197 2006-12-21  Chris Toshok  <toshok@ximian.com>
199         * Control.cs: we don't need to be so draconian with
200         UpdateDistances, and we thusly don't need to call it before
201         calling PerformLayout in ResumeLayout.  Fixes bug #80289.
203 2006-12-21  Daniel Nauck  <dna@mono-project.de>
205         * ComboBox.cs,
206         TextBox.cs: Implemented AutoComplete properties.
208 2006-12-20  Chris Toshok  <toshok@ximian.com>
210         * DataGridView*.cs: some corecompare work.
212 2006-12-20  Jackson Harper  <jackson@ximian.com>
214         * XplatUIX11.cs: We need to hide the caret when deleting it,
215         otherwise you get carets left lying around everywhere.
216         * TextBoxBase.cs: Kill then redraw the caret when scrolling.  This
217         prevents getting some weird half drawn caret tracers when
218         scrolling.
219         * TextControl.cs: Attempt to reduce the number of times we need to
220         recreate the caret.
222 2006-12-20  Gert Driesen  <drieseng@users.sourceforge.net>
224         * MonthCalendar.cs: Fixed previous month button. Removed extra tabs.
226 2006-12-19  Rolf Bjarne Kvinge  <RKvinge@novell.com>
228         * DateTimePicker.cs:
229         - Implemented missing 2.0 bits.
230         - Changed some default values to match MS.
231         
232 2006-12-20  Jackson Harper  <jackson@ximian.com>
234         * TextBoxBase.cs: When changing the font across the document we
235         can't recalculate after changing each line, since that will cahnge
236         the line count.
237         - PreferredHeight is a little different than i thought.
238         - When backspacing, move the caret before we do the actual char
239         delete, because when that delete crosses a wrap boundary the
240         positional information will change.
242 2006-12-19  Rolf Bjarne Kvinge  <RKvinge@novell.com>
244         * Control.cs: Added some missing 2.0 bits: 
245         BackgroundImageLayout, BackgroundImageLayoutChanged, 
246         OnPaddingChanged, MouseClick, MouseDoubleClick, PaddingChanged and 
247         add IBindableComponent and IDropTarget implementation.
248         
249         * MonthCalendar.cs: 
250         - Added all missing 2.0 features:
251         BackgroundImageLayout, RightToLeftLayout, 
252         OnHandleDestroyed, RightToLeftLayoutChanged, 
253         BackgroundImageLayoutChanged, MouseClick, MouseDoubleClick,
254         PaddingChanged.
255         - Rewrote all the BoldDate code, it was completely broken.
256         - Fixed all the tests (the tests can now be re-enabled, the
257         problems were not with the tests, but with the control, it was
258         mostly broken).
259         
260         * DateTimePicker.cs: Changed the location where the 
261         MonthCalendar is shown.
262         
263 2006-12-19  Chris Toshok  <toshok@ximian.com>
265         * DataGridView.cs: add IDropTarget implementation.
267         * ToolStripPanel.cs: add IDropTarget implementation.
269 2006-12-19  Jackson Harper  <jackson@ximian.com>
271         * TextControl.cs: soft now means something different than what it
272         used to mean, we want to move the caret regardless of whether or
273         not this break was soft (would we really have wanted the caret
274         to not move with the break in the old context?)
275         * TreeView.cs: Make sure we factor in the vert scrollbar when
276         calculating the horizontal scrollbar's maximum.
278 2006-12-19  Andreia Gaita  <avidigal@novell.org>
280         * SendKeys.cs: Fix Send() behaviour, clear keys after sending,
281         check for keywords in alternate casing, close bug #80049.
283 2006-12-19  Chris Toshok  <toshok@ximian.com>
285         * ToolStripItem.cs: add the implementation of the 4 IDropTarget
286         methods (which all do nothing).
288         * IDropTarget.cs: add the 4 missing methods.
290 2006-12-19  Chris Toshok  <toshok@ximian.com>
292         * TableLayoutRowStyleCollection.cs: corcompare work.
293         
294         * TableLayoutSettings.cs: same.
296         * TableLayoutStyle.cs: same.
298         * TableLayoutColumnStyleCollection.cs: same.
300 2006-12-19  Jonathan Pobst  <monkey@jpobst.com>
302         * ColumnStyle.cs, RowStyle.cs, TableLayoutStyle.cs: Plumbing for
303         TableLayoutPanel I've had in my local tree for way too long.
305 2006-12-19  Miguel de Icaza  <miguel@novell.com>
307         * TableLayoutSettings.cs: Finish the public API (still needs all
308         the logic to update on changes). 
310         * TableLayoutPanelCellPosition.cs: new file.
311         
312         * TableLayoutRowStyleCollection.cs,
313         TableLayoutColumnStyleCollection, TableLayoutStyle.cs,
314         TableLayoutSettings.cs: Track the final 2.0 table api.
316 2006-12-19  Carlos Alberto Cortez <calberto.cortez@gmail.com>
318         * ColumnHeader.cs: Add Tag, Name, ImageKey, ImageIndex,
319         and Image List 2.0 members for ColummnHeader.
320         * ListView.cs: Add key-related 2.0 methods for
321         ColumnHeaderCollection.
323 2006-12-19  Gert Driesen  <drieseng@users.sourceforge.net>
325         * ListViewItem.cs: Changed AddRange overloads to match MS: throw
326         ArgumentNullException if items argument is null. Ignore null item in
327         arrays. Removed extra tabs.
329 2006-12-19  Gert Driesen  <drieseng@users.sourceforge.net>
331         * MonthCalendar.cs: Fixed InvalidCastException.
333 2006-12-19  Jackson Harper  <jackson@ximian.com>
335         * TextControl.cs: Don't increment the position here.
336         - When calculating char positions only add in the line break size
337         for hard line breaks.
339 2006-12-19  Andreia Gaita  <avidigal@novell.org>
341         * SendKeys.cs: Changed some things to match ms.net behaviour
342         when parsing shifted capital letters.
343         
344         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32, XplatUIOSX: 
345         Add window handle as parameter to SendInput. X11 needs the 
346         window handle, and the handle being passed      to it in the keys 
347         queue is the active control handle (which windows needs), not 
348         the window handle.
349         
350         XplatUIX11.cs, XplaUIX11-new.cs, X11Display: Implement SendInput 
351         to support SendKeys on X.       
352         
353         * X11Keyboard: Implement helper method to lookup a linux keycode
354         given the virtual keycode. Added table of keycode-2-virtualkey
355         values to support this.
357 2006-12-19  Carlos Alberto Cortez <calberto.cortez@gmail.com>
359         * ListView.cs: Add support for SelectedIndexCollection
360         and SelectedItemCollection 2.0 methods. Implement support
361         for ImageKey too.
362         * ListViewItem.cs: Add support for ListViewSubItemCollection
363         2.0 methods. Also, fix an incorrect behavior of AddRange method
364         (it shouldn't call Clear).
365         * ThemeWin32Classic.cs: Support for ListView.ImageKey 2.0 property.
367 2006-12-19  Jackson Harper  <jackson@ximian.com>
369         * RichTextBox.cs: 
370         * TextBoxBase.cs: New args for FormatText
371         * TextControl.cs: Rewrote the main drawing method, this version
372         feels a little easier to understand and debug to me.  Hopefully it
373         does to others also
374         - Fix FormatText to OR in the new formating values.  Added
375         FormatSpecified param, basically this works in the same way as
376         BoundsSpecified in Control.
377         - Set the caret properties when the caret is positioned.
378         - When wrapping text make sure that we calculate the width of the
379         last character
380         - when calculating alignments we might have wrapped down to the
381         next line, so don't search for an individual tag, search for the
382         end of the line
383         - We need to invalidate the selection area when we replace the
384         selection.
385         
386 2006-12-19  Daniel Nauck  <dna@mono-project.de>
388         * Application.cs: add Restart () 2.0 support
390 2006-12-18  Everaldo Canuto  <everaldo@simios.org>
392         * MenuItem.cs: Invalidate menu item rectangle after change Enable
393         property. Fixes #80268.
394         
395 2006-12-18  Everaldo Canuto  <everaldo@simios.org>
397         * MenuAPI.cs: Dont trigger select event when closes top menu
398         item. Fixes #80270.
400 2006-12-18  Everaldo Canuto  <everaldo@simios.org>
402         * MenuAPI.cs: When you click on menuitem only trigger onselect
403         event for top menu itens. Fixes #80271.
404         
405 2006-12-18  Rolf Bjarne Kvinge  <RKvinge@novell.com>
407         * MdiWindowManager.cs: Make IconicBounds depend on
408         the bottom of MdiClient, not the top (fixes #80267)
409         
410 2006-12-18  Rolf Bjarne Kvinge  <RKvinge@novell.com>
412         * MdiClient.cs: Added missing 2.0 attribute
414 2006-12-18  Carlos Alberto Cortez <calberto.cortez@gmail.com>
416         * ListViewItem.cs: Add Name and Tag 2.0 properties, as well
417         as IndexOfKey, ContainsKey, RemoveByKey and indexer 2.0.
419 2006-12-18  Everaldo Canuto  <everaldo@simios.org>
421         * MenuAPI.cs: Fix click when menuitem is not popup,
422         this regression was caused by last commit (#80272).
424 2006-12-17  Everaldo Canuto  <everaldo@simios.org>
426         * MenuAPI.cs: When a non-toplevel menuitem is clicked dont
427         fire click event or close menu. Fixes #80272.
429 2006-12-17  Daniel Nauck  <dna@mono-project.de>
431         * ListViewHitTestInfo.cs: add
433 2006-12-17  Daniel Nauck  <dna@mono-project.de>
435         * ButtonBase.cs: Added FlatButtonAppearance 2.0 support.
436         * FlatButtonAppearance.cs: add
437         * DockingAttribute.cs: add
439 2006-12-17  Chris Toshok  <toshok@ximian.com>
441         * DataGrid.cs: hook up MetaDataChanged event on the list manager,
442         and rebind our columns when it does - this way, if you make
443         changes to the DataTable (or set the Table attribute on a DataView
444         after setting it as the DataGrid's DataSource, the changes are
445         made visible.)  Fixes bug #80107.
447 2006-12-17  Daniel Nauck  <dna@mono-project.de>
449         * ListViewGroup.cs: add internal Location property for layouting.
450         * Theme.cs: add abstract ListViewGroupHeight function.
451         * ThemeWin32Classic.cs: implement ListViewGroupHeight function.
453 2006-12-16  Andreia Gaita  <avidigal@novell.com>
455         * TabControl.cs: Fixed checks for NET_2_0-specific exceptions.
456         Added reset of selected index to 0 when adding first tab page.
457         Fixes #80264
458         
459         * NumericUpDown.cs: Fix NET_2_0 check
461 2006-12-16  Daniel Nauck  <dna@mono-project.de>
463         * ListViewGroup.cs: fixed DefaultValueAttribute value
465 2006-12-16  Daniel Nauck  <dna@mono-project.de>
467         * AutoCompleteStringCollection.cs: add new AutoCompleteStringCollection 2.0 class
469 2006-12-15  Miguel de Icaza  <miguel@novell.com>
471         * Button.cs, ComboBox.cs, ScrollBar.cs, UserControl.cs,
472         TextBoxBase.cs, ListView.cs, ContainerControl.cs,
473         ScrollableControl.cs: Add a handful of methods that are
474         overwritten in 2.0 
476 2006-12-15  Chris Toshok  <toshok@ximian.com>
478         * XplatUIWin32.cs: initial implementation of the Reversible
479         drawing functions.  there are some problems.  DrawReversibleFrame
480         doesn't seem to work at all for Dashed FrameStyle, and in the
481         Thick case there are drawing errors at the corners (we probably
482         need to bind Rectangle instead of doing moveto/lineto's.)
484 2006-12-16  Andreia Gaita  <avidigal@novell.com>
485         
486         * SendKeys.cs: Implemented. SendKeys uses a new method in XPlatUI, SendInput, 
487         to send blocks of key messages. Send accumulates keys to send with Flush, 
488         while SendWait sends all keys immediately.
489                 
490         * XplaUI.cs, XplatUIDriver.cs, XplatUIOSX.cs, XplatUIWin32.cs, 
491         XplatUIX11.cs,  XplatUIX11-new.cs:
492         - Define SendInput and stubs for OSX and X11, implements Win32 with a call
493         to Win32 SendInput.
494         - Added INPUT support structures to XplatUIWin32 for Win32SendInput
495         
496         Tests:  It seems ms.net is hooking the keyboard to implement this, so doing unit
497         testing for ms.net on this class is very tricky, as the tests run too fast 
498         to allow the hook to release, essentially freezing the keyboard and the 
499         test. So, barring a win32 miracle, they'll be commited in the ms-notworking     
500         category :p
502 2006-12-16  Daniel Nauck  <dna@mono-project.de>
504         * Padding.cs: fixed serialization compability to MS ("_var" field names),
505                         added missing attributes.
507 2006-12-15  Daniel Nauck  <dna@mono-project.de>
509         * ListViewGroup.cs: Added missing attributes.
510         * ListViewGroupCollection.cs: Added missing attributes.
512 2006-12-15  Daniel Nauck  <dna@mono-project.de>
514         * ListViewItem.cs: fixed ListViewSubItem text property.
516 2006-12-15  Rolf Bjarne Kvinge  <RKvinge@novell.com>
517         
518         * Control.cs: Added missing 2.0 attributes
519         
520 2006-12-15  Rolf Bjarne Kvinge  <RKvinge@novell.com>
521         
522         * MdiClient.cs: Added missing 2.0 attribute.
523         * MonthCalendar.cs: Added some missing 2.0 attributes 
524         and properties.
525         
526 2006-12-15  Daniel Nauck  <dna@mono-project.de>
528         * ListView.cs: implemented ListViewItemCollection Add 2.0 support.
530 2006-12-15  Jonathan Pobst  <monkey@jpobst.com>
532         * MainMenu.cs: Add the new 2.0 constructor to help out people
533         using the MainMenu in VS2005.
535 2006-12-15  Rolf Bjarne Kvinge  <RKvinge@novell.com>
536         
537         * MdiChildContext.cs: Removed it, no longer used.
538         * MdiClient.cs: Added missing 2.0 attributes.
539         
540 2006-12-15  Rolf Bjarne Kvinge  <RKvinge@novell.com>
541         
542         * InternalWindowManager.cs: Fix a NullRef with previous 
543         changes for toolwindows.
544         
545 2006-12-15  Rolf Bjarne Kvinge  <RKvinge@novell.com>
547         * Control.cs: 
548         - Added AfterTopMostControl to allow for certain controls 
549         to always stay on top when normal controls are brought to 
550         front.
551         
552         * XplatUIWin32.cs: 
553         - (DrawInversibleRectangle): Get window rectangle from Win32 
554         in stead of from control, since Win32 doesn't calculate
555         screen coords correctly from control's Location if it 
556         have docked siblings.
557         
558         * MdiWindowManager.cs:
559         - Correct the control menu popup location when clicked on
560         the maximized form icon. (fixes #80223.1)
561         - Don't show moving rectangle if mouse hasn't moved from
562         the original clicked point.
563         - Removed FormGotFocus handler (not used).
564         - Calculate the control buttons location from the main
565         window's size and not client size (fixes #79770).
566         - Form is now closed when the form icon is double-clicked
567         (fixes #79775). 
568         - Correct NCCalcSize numbers a little bit (fixes #80223.2)
569         
570         * InternalWindowManager.cs:
571         - Moved some MDI-only methods to MdiWindowManager.
572         - Removed unused properties and methods.
573         - Unified method naming for methods handling wm messages.
574         - Moved all message handling to seperate methods for
575         each message.
576         
577         * ThemeWin32Classic.cs:
578         - DrawManagedWindowDecorations now draws the title bar 
579         with a gradient brush.
580         - Add a CPDrawButtonInternal that allows us to specify
581         light, normal and dark colors for the buttons (control 
582         buttons for MDI children were drawn with the same light
583         color as the background, therefore loosing the 3D effect).
584         
585         * SizeGrip.cs:
586         - Add a CapturedControl property that is used to 
587         determine the control to resize (defaults to parent). 
588         Needed for MdiClient, since its SizeGrip's parent is
589         MdiClient, but the control to resize is the main form.
590         
591         * MdiClient.cs:
592         - Set SizeGrip's CapturedControl to the main form in order
593         to resize the main form and not the MdiClient.
594         - Override AfterTopMostControl to leave the scrollbars 
595         always on top.
597 2006-12-15  Daniel Nauck  <dna@mono-project.de>
599         * ListView.cs: fixed ListViewItemCollection AddRange and
600                         implemented ListViewItemCollection AddRange 2.0 support.
602 2006-12-15  Daniel Nauck  <dna@mono-project.de>
604         * ListViewGroup.cs: Add.
605         * ListViewGroupCollection.cs: Add
606         * ListView.cs: Add ListViewGroup (Group) and ShowGroups 2.0 support.
607         * ListViewItem.cs: Add ListViewgroup (Group), ListViewGroups constructors and
608                                 stub for ImageKey 2.0 support.
610 2006-12-14  Mike Kestner  <mkestner@novell.com>
612         * ListView.cs: add text padding to the autocalculation for columns
613         of width -2.  Fixes #80207.
615 2006-12-14  Mike Kestner  <mkestner@novell.com>
617         * ListView.cs: add some index guarding for partial row navigation 
618         logic.  Fixes #80250.
620 2006-12-14  Mike Kestner  <mkestner@novell.com>
622         * ListView.cs: throw ArgumentExceptions when parented ListViewItems
623         are added or inserted to the collection.  Fixes #81099.
625 2006-12-13  Everaldo Canuto  <everaldo@simios.org>
627         * MenuAPI.cs: Closes menu when right click out side of popup
628         it fix problem in ContextMenu and MainMenu. Fixes #80252.
630 2006-12-13  Carlos Alberto Cortez <calberto.cortez@gmail.com>
632         * ListViewItem.cs: Fix dumb error.
634         * ListView.cs: Add Find and ContainsKey methods in 
635         ListViewItemCollection, and also return true for IsReadOnly
636         and IsFixedSize (changes for 2.0). 
638 2006-12-13  Gert Driesen  <drieseng@users.sourceforge.net>
640         * Control.cs: Allow Region to be set to null.
642 2006-12-13  Rolf Bjarne Kvinge  <RKvinge@novell.com>
644         * MdiWindowManager.cs: Remove unused (commented out) code.
645         * Form.cs: When the MdiChild is maximized, the form needs 
646         WM_NCMOUSELEAVE, so request it.
647         * InternalWindowManager.cs: 
648         - Added tooltips to control buttons.
649         - Removed duplicated control button handling code.
650         - Removed unused (commented out) code.
651         
652 2006-12-12  Everaldo Canuto  <everaldo@simios.org>
654         * MenuAPI.cs: Set cursor to default in popup menus, a XplatUI.SetCursor 
655         was used because we must set cursor without trigger ChangeCursor event
656         and without change Cursor control property. Fixes #79963.
658 2006-12-12  Andreia Gaita  <avidigal@novell.com>
659         
660         * Control.cs: Check if Region setter value is null, and ignore
662 2006-12-12  Jackson Harper  <jackson@ximian.com>
664         * TextControl.cs: We were almost always drawing one more line then
665         needed, since the GetLineByPixel will return the last line found
666         at that pixel. In most cases though, we were invalidating up to
667         the junction between two lines.
668         - Improve debug code.
670 2006-12-12  Chris Toshok  <toshok@ximian.com>
672         * XplatUI.cs: add static DrawReversibleFrame, DrawReversibleLine,
673         and FillReversibleRectangle.
675         * XplatUIDriver.cs: add abstract DrawReversibleFrame, DrawReversibleLine,
676         and FillReversibleRectangle.
678         * XplatUIWin32.cs: add stubs which do nothing for
679         DrawReversibleFrame, DrawReversibleLine, and
680         FillReversibleRectangle.
682         * XplatUIOSX.cs: add stubs which raise NIE for
683         DrawReversibleFrame, DrawReversibleLine, and
684         FillReversibleRectangle.
686         * XplatUIX11.cs: add working implementation for
687         DrawReversibleFrame, DrawReversibleLine, and
688         FillReversibleRectangle.
689         
690         * ControlPaint.cs: implement DrawReversibleFrame,
691         DrawReversibleLine, and FillReversibleRectangle, by calling into
692         the appropriate XplatUI method.
694 2006-12-11  Rolf Bjarne Kvinge  <RKvinge@novell.com>
696         * Form.cs: Make MdiClient have the focus even if it's
697         not selectable, since it should receive WM_KEY* and WM_MOUSE 
698         messages. Fixes #79907.
699         
700 2006-12-11  Rolf Bjarne Kvinge  <RKvinge@novell.com>
702         * Hwnd.cs: Save the CreateParams.ExStyle so that it can be
703         queried after the window is created.
704         
705         * XplatUIX11.cs: Added SendParentNotify to implement 
706         WM_PARENTNOTIFY logic. Fixes #79965.
707         
708         * Control.cs: Added MakeParam.
709         
710 2006-12-11  Rolf Bjarne Kvinge  <RKvinge@novell.com>
712         * MdiClient.cs: Resume Layout before setting window
713         states (fixes #80201).
715 2006-12-11  Rolf Bjarne Kvinge  <RKvinge@novell.com>
717         * MenuAPI.cs: Deselect a menu item after performing
718         the click (fixes #80197).
720 2006-12-11  Jackson Harper  <jackson@ximian.com>
722         * TextBoxBase.cs: We need to cap this value, since Maximum -
723         ViewPortHeight can be less than zero.
724         - Only do selection with the left mouse button.
725         * TextBox.cs: Don't tell the world that we have a context menu.
726         * Control.cs: New method so that we can control whether or not the
727         context menu is visible outside MWF.
729 2006-12-11  Everaldo Canuto  <everaldo@simios.org>
731         * ToolBarButton.cs: Fix text positon. 
733 2006-12-11  Miguel de Icaza  <miguel@novell.com>
735         * ProgressBar.cs (MarqueeAnimationSpeed): Add stub.
737         * Control.cs (DoubleBuffered): Add implementation.
739         * Application.cs (OpenForms): Add.
741 2006-12-11  Jonathan Pobst  <monkey@jpobst.com>
743         * Form.cs: Use opacity instead of Opactiy to determine if we need
744         to set the WS_EX_LAYERED bit.  [Fixes bug #80185]
746 2006-12-11  Jonathan Pobst  <monkey@jpobst.com>
748         * Control.cs: Fix NRE if Control.Site was set to null.
750 2006-12-11  Chris Toshok  <toshok@ximian.com>
752         * Control.cs: ControlCollection.Remove should return if the arg is
753         null, and ControlCollection.SetChildIndex should raise a ANE.
755 2006-12-11  Gert Driesen  <drieseng@users.sourceforge.net>
757         * Control.cs: Verify value set for Dock property. Code formatting
758         updates.
760 2006-12-11  Jackson Harper  <jackson@ximian.com>
762         * TextControl.cs: Draw the caret and the selection when a flag is
763         set on the owner.
764         * TextBoxBase.cs: We want to draw the caret and the selection for
765         TextBox but not for TextBoxBase.
766         - If the window is resized and scrolling is no longer needed (the
767         whole doc is visible) set the scroll position to zero.
768         - The default SelectWord (the one TextBox uses) should move the
769         caret to the end of the word.
770         - SelectAll moves the caret to the end of the selection.
771         * TextBox.cs: We don't selectall on focus, we just do it when the
772         control is created.
773         
774 2006-12-11  Mike Kestner  <mkestner@novell.com>
776         * ComboBox.cs: stub in a 2.0 override for ProcessKeyEventArgs.
778 2006-12-11  Carlos Alberto Cortez <calberto.cortez@gmail.com>
780         * ListView.cs: Add Insert, IndexOfKey, RemoveByKey and indexer 
781         2.0 support.
782         * ListViewItem.cs: Add Name 2.0 property.
784 2006-12-11  Andreia Gaita  <avidigal@novell.com>
786         * TabControl.cs: Set visibility on selected or default tab 
787         when tabcontrol handle is created, so that it's contents
788         actually show up (duh). Fixes #80193
789         Don't redraw the control if there is no handle created, as
790         the selected index might be completely invalid. Added some tests
791         to check for this.
793 2006-12-11  Everaldo Canuto  <everaldo@simios.org>
795         * ToolBar.cs: Uses maximun width and height of all buttons as 
796         button rectangle when ButtonSize specified, it looks strange but
797         is what happens in Win32. Fixes #80189.
799 2006-12-11  Jackson Harper  <jackson@ximian.com>
801         * TextControl.cs: Need to track undo levels ourself, since
802         compound actions will mess them up.
804 2006-12-10  Andreia Gaita  <avidigal@novell.com>
806         * TabControl.cs: Raise SelectedIndexChanged for 1.1 if the
807         SelectedIndex value is changed (even if it's not valid).
808         Reset SelectedIndex to 0 when the handle is created and if
809         the current index is invalid.
810         Fixes SelectdeIndex unit tests and #80128
812 2006-12-08  Chris Toshok  <toshok@ximian.com>
814         * DataGrid.cs (set_CurrentCell): because EnsureCellVisibility
815         calls EndEdit, it needs to be called before we set current_cell to
816         its new value.  Otherwise, we end up committing the value in the
817         textbox to the new cell as well.  Fixes bug #80160.
819 2006-12-08  Chris Toshok  <toshok@ximian.com>
821         * Form.cs (set_CancelButton): if the button's DialogResult is
822         None, set it to Cancel.  Fixes bug 80180.
824 2006-12-08  Jackson Harper  <jackson@ximian.com>
826         * TextBoxBase.cs: Ugh, ClientSize can be 0,0 sometimes, so we need
827         to watch ourselves when setting the canvas size and setting the
828         scrollbar values.
830 2006-12-08  Chris Toshok  <toshok@ximian.com>
832         * DataGrid.cs: comment out the two MakeTransparent calls for the
833         time being so people using trunk (and not 1.2.2) on windows can
834         actually use the datagrid.  This deals with bug #80151.
836 2006-12-08  Jonathan Pobst  <monkey@jpobst.com>
838         * ThemeWin32Classic.cs: Change ButtonBase_DrawImage to use the
839         Graphics.DrawImage (image, int, int, int, int) overload instead
840         of Graphics.DrawImage (image, int, int).  GDI+ can't figure out
841         the dpi difference and was blurring images it drew.
842         [Fixes bug #79960]
844 2006-12-08  Chris Toshok  <toshok@ximian.com>
846         * ThemeWin32Classic.cs (DataGridPaintRows): handle case where
847         rowcnt is 0 (such as with an empty datasource), and make sure we
848         initialize not_usedarea.Y to cells.Y, so we don't draw over the
849         other areas (caption, parent row, etc, etc).  Fixes bug #80095.
851 2006-12-08  Chris Toshok  <toshok@ximian.com>
853         * DataGridColumnStyle.cs (SetDataGrid): don't try to access a null
854         grid.
856 2006-12-08  Chris Toshok  <toshok@ximian.com>
858         [ Fixes bug #80167 ]
859         
860         * ThemeWin32Classic.cs: don't draw the image if the button's flat
861         style is FlatStyle.System.
863         * ButtonBase, ThemeClearlooks.cs, ThemeGtk.cs, ThemeNice.cs: make
864         ButtonBase.flat_style private, and switch uses of it to the public
865         property.
866         
867 2006-12-08  Chris Toshok  <toshok@ximian.com>
869         [ Fixes bug #80121 ]
870         
871         * ThemeWin32Classic.cs: center the caption text in the datagrid
872         when we draw it.
874         * DataGrid.cs: lessen the amount we add to the caption height from
875         6 to 2.  6 was making it huge.
877 2006-12-08  Andreia Gaita  <avidigal@novell.com>
879         * UpDownBase: Handle MouseWheel call directly instead of capturing
880         the inner textbox's OnMouseWheel. Fixes #80166
882 2006-12-08  Jackson Harper  <jackson@ximian.com>
884         * TextControl.cs: We need to invalidate the textbox when we empty
885         it (how had this not been discovered before?)
887 2006-12-08  Jackson Harper  <jackson@ximian.com>
889         * TextBoxBase.cs: Reworked the mouse down code so I could get it
890         to behave like MS, we now ignore the eventargs.Click and just
891         track state ourself, which we were already doing anyways.
892         - Constrain the double click handler to the double click size.
893         
894 2006-12-08  Chris Toshok  <toshok@ximian.com>
896         * DataGrid.cs: the mousewheel code shouldn't try to scroll in a
897         direction if that scrollbar isn't shown.  fixes bug #80158.
899 2006-12-08  Andreia Gaita  <avidigal@novell.com>
901         * NumericUpDown.cs: Update value on getter. Fixes #79950
903 2006-12-08  Chris Toshok  <toshok@ximian.com>
905         * MenuItem.cs: add back in the event cloning code.  I didn't know
906         how to do it in the face of the EventHandlerList work i'd done
907         last week.  Fixes bug #80183.
909 2006-12-08  Jonathan Pobst  <monkey@jpobst.com>
911         * Control.cs: Add an invalidate to the BackgroundImage setter.
912         [Fixes 80184]
914 2006-12-07  Jonathan Pobst  <monkey@jpobst.com>
916         * ToolStrip*: Add some small properties reported by MoMA, fix event
917         firing and default properties based off of unit tests, and add some
918         attributes based off of the class status page.
920 2006-12-07  Jackson Harper  <jackson@ximian.com>
922         * TextBoxBase.cs: Take HideSelection into account when determining
923         whether or not to show the selection.
924         * RichTextBox.cs: After inserting the RTF into the document move
925         the cursor to the beginning of the document.
927 2006-12-07  Jonathan Pobst  <monkey@jpobst.com>
929         * Control.cs: Remove static ArrayList "controls" which maintained
930         a reference to every control created.
931         * Application.cs: Create a static FormCollection to maintain a reference
932         to every form created.  Use it in places that formerly enumerated through
933         the controls one looking for forms.
934         * Form.cs: Add and remove self from above FormCollection.
936 2006-12-07  Alexander Olk  <alex.olk@googlemail.com>
938         * MimeIcon.cs: gdk_pixbuf_save_to_buffer is part of libgdk-pixbuf,
939           not libgdk (though it makes me wonder why I didn't have any
940           problems)
942 2006-12-07  Chris Toshok  <toshok@ximian.com>
944         [ you had to know this was coming after that last commit...]
945         
946         * XplatUIX11.cs: implement the 3 Offscreen functions in terms of
947         XPixmaps (CreateOffscreenDrawable maps to XCreatePixmap,
948         DestroyOffscreenDrawable to FreePixmap, and BlitFromOffscreen to
949         XCopyArea).
951 2006-12-07  Chris Toshok  <toshok@ximian.com>
953         * XplatUI.cs: add 3 calls (CreateOffscreenDrawable,
954         DestroyOffscreenDrawable, and BlitFromOffscreen) that encompass
955         all the behavior we need for double buffering.
957         * XplatUIDriver.cs: implement the 3 double buffer methods using a
958         client side Bitmap, just like the old Control-based double buffer
959         code did.  The methods are virtual, so each XplatUI driver
960         subclass can replace the implementation to use a faster, platform
961         specific approach.
963         * Control.cs: make use of the 3 Offscreen XplatUI calls in the
964         double buffer code, and clean things up a bit in the process.
966 2006-12-06  Chris Toshok  <toshok@ximian.com>
968         * Control.cs: reindent WndProc.
970 2006-12-06  Chris Toshok  <toshok@ximian.com>
972         [ I wanna be like BenM when I grow up ]
973         
974         * Hwnd.cs: create a single static Graphics object on the static
975         Bitmap we create.  use this for our text measurements.
977         * Control.cs (DeviceContext): stop using the backbuffer's dc_mem.
978         This was causing us to allocate a backbuffer for every control,
979         even when it wasn't flagged as double buffered.  Instead use the
980         single graphics instance.  This might have implications for
981         multithreaded applications.  If we run into problems we can switch
982         to creating 1 Graphics per control, on the static Hwnd bitmap.
984         this change nets us a 7M savings in private dirty mappings when
985         running FormsTest.exe.
987 2006-12-06  Chris Toshok  <toshok@ximian.com>
989         * ListView.cs: the BackgroundImage override is just to set
990         attributes.  chain up to base.BackgroundImage.
992         * RichTextBox.cs: same.
994         * ToolBar.cs: same, but we need to also redraw the toolbar when it
995         changes, so instead a handler for BackgroundImageChanged.
996         
997         * Control.cs: make background_image private.
999 2006-12-06  Chris Toshok  <toshok@ximian.com>
1001         * ScrollBar.cs: change the assignment of cursor to Cursor.  not
1002         sure we even need this assignment, but roll with it for now.
1004         * Control.cs: make the cursor field private.
1006 2006-12-06  Chris Toshok  <toshok@ximian.com>
1008         * Form.cs: we don't need to explicitly set ImeMode to
1009         ImeMode.NoControl - that's a natural fallout of Control.ImeMode's
1010         behavior in the face of ImeMode.Inherit.
1012         * ButtonBase.cs: change DefaultImeMode to ImeMode.Disable, and
1013         change the ctor's assignment to use ImeMode instead of ime_mode.
1015         * Control.cs (get_ImeMode): don't assume DefaultImeMode ==
1016         ImeModeInherit.  Only check for the parent's imemode (and return
1017         NoControl if there is no parent) if ime_Mode == ImeMode.Inherit.
1018         This fixes the button unit test, which sets both ImeMode and
1019         DefaultImeMode to ImeMode.Disable.
1021         also make the ime_mode field private.
1023 2006-12-06  Chris Toshok  <toshok@ximian.com>
1025         * Control.cs: make control_style private.
1027         * TextBoxBase.cs: fix the HandleClick override.  it was explicitly
1028         setting the styles to true, then setting them to false instead of
1029         reverting to their previous values.
1031         also, call SetStyle on the scrollbars instead of using
1032         control_style directly.
1034 2006-12-06  Jonathan Pobst  <monkey@jpobst.com>
1036         * FormCollection.cs: Implement. [2.0]
1038 2006-12-06  Chris Toshok  <toshok@ximian.com>
1040         * Control.cs: make tab_stop private.
1042         * Label.cs: set TabStop, not tab_stop.  reformat some event
1043         add/remove methods to make them more compact.
1045 2006-12-06  Chris Toshok  <toshok@ximian.com>
1047         * RadioButton.cs: fix TabStop handling.
1049 2006-12-06  Chris Toshok  <toshok@ximian.com>
1051         * TextBox.cs: remove the explicit assignments to has_focus.
1052         Control does that.
1054         * ButtonBase.cs: remove the assignment to has_focus.  Control will
1055         manage that.
1056         
1057 2006-12-06  Chris Toshok  <toshok@ximian.com>
1059         * ButtonBase.cs: remove all uses of is_enabled from this code.
1060         it's always true when any of the code containing the checks is
1061         executed.
1063 2006-12-06  Chris Toshok  <toshok@ximian.com>
1065         * ImageList.cs: reinstate the ShouldSerialize*/Reset* methods,
1066         with different semantics (some are present in both 1.1 and 2.0
1067         profiles) so that we match MS's behavior in our unit tests.
1069 2006-12-06  Jackson Harper  <jackson@ximian.com>
1071         * TextControl.cs: Make this operation undoable.
1072         * TextBoxBase.cs: Factor the border width into the preferred
1073         height.
1074         - implement Modified as per the spec.
1076 2006-12-06  Chris Toshok  <toshok@ximian.com>
1078         * Timer.cs, Control.cs, Menu.cs: make control_tag private.
1080 2006-12-06  Chris Toshok  <toshok@ximian.com>
1082         * Control.cs: make right_to_left and context_menu fields private.
1084 2006-12-06  Chris Toshok  <toshok@ximian.com>
1086         * AccessibleObject.cs, Control.cs, XplatUIX11GTK.cs,
1087         XplatUIX11.cs, Form.cs, RadioButton.cs, ScrollableControl.cs: make
1088         Control.child_controls private.  switch all uses over to
1089         Control.Controls.
1091 2006-12-06  Chris Toshok  <toshok@ximian.com>
1093         * System.Windows.Forms/GroupBox.cs,
1094         System.Windows.Forms/AccessibleObject.cs,
1095         System.Windows.Forms/ErrorProvider.cs,
1096         System.Windows.Forms/Control.cs,
1097         System.Windows.Forms/UpDownBase.cs,
1098         System.Windows.Forms/ScrollBar.cs,
1099         System.Windows.Forms/DateTimePicker.cs,
1100         System.Windows.Forms/Form.cs, System.Windows.Forms/Label.cs,
1101         System.Windows.Forms/ToolTip.cs,
1102         System.Windows.Forms/RadioButton.cs,
1103         System.Windows.Forms/LinkLabel.cs,
1104         System.Windows.Forms/Splitter.cs,
1105         System.Windows.Forms/TextBoxBase.cs,
1106         System.Windows.Forms/ToolStripTextBox.cs,
1107         System.Windows.Forms/ContainerControl.cs,
1108         System.Windows.Forms/ThemeWin32Classic.cs,
1109         System.Windows.Forms/SizeGrip.cs,
1110         System.Windows.Forms/ToolStripDropDown.cs,
1111         System.Windows.Forms/ScrollableControl.cs: Make Control.parent
1112         private.  switch all uses over to Control.Parent.
1114 2006-12-06  Chris Toshok  <toshok@ximian.com>
1116         * RichTextBox.cs: don't assign to has_focus in GotFocus/LostFocus.
1117         Control does this before calling emitting these events.
1119         * TabControl.cs: same.
1121         * ThemeWin32Classic.cs: use Control.ClientRectangle instead of
1122         Control.client_rect.
1124         * ButtonBase.cs: use the ClientSize property instead of the
1125         client_size field.
1127         * ScrollableControl.cs: same.
1129         * Control.cs: another pass at making properties private.  also,
1130         move the initialization of tab_stop to the ctor.
1132 2006-12-05  Andreia Gaita <avidigal@novell.com>
1134         * TabControl.cs: Let the selected index be set freely if the 
1135         control handle is not yet created.
1137 2006-12-05  Jonathan Pobst  <monkey@jpobst.com>
1139         * Control.cs: Revert dist_top, dist_right, and dist_bottom to 
1140         internal until I can rewrite DefaultLayout.
1141         * ToolStrip.cs: Fix build error and some general cleaning.
1142         * ToolStripControlHost.cs, SplitterPanel.cs, DataGridView.cs:
1143         Fix build errors caused by making some of Control's fields private.
1145 2006-12-05  Jackson Harper  <jackson@ximian.com>
1147         * TextControl.cs: Redo Insert a little so that it use IndexOf
1148         instead of Split, this prevents it from messing up on things like
1149         \n\n\n. Also more effecient since the split array doesn't need to
1150         be created.
1151         * TextBoxBase.cs: AppendText doesnt handle multiline and non
1152         multiline text differently, this is the first of many fixes that
1153         will make multiline/non-multiline the same thing as far as the
1154         TextBoxBase is concerned.
1155         - Don't split the text and insert lines, this can lose some line
1156         endings (like is the last line a soft or hard break). Instead use
1157         the new Insert.
1158         - Fix an off by one when combining all the lines in the Text
1159         getter.
1160         - Remove separate multiline handling from the Text getter/setter.
1162 2006-12-05  Chris Toshok  <toshok@ximian.com>
1164         * ButtonBase.cs: a few changes:
1166         - don't reinitialize internal Control fields in the ctor when they
1167         have the same values as Control sets them.
1169         - don't set has_focus in OnGotFocus/OnLostFocus.  Control does
1170         this before calling those methods.
1172         - we don't need to call Refresh for anything.  use Invalidate
1173         instead.
1175         - OnEnabledChanged doesn't need to redraw at all - Control.cs
1176         calls Refresh in its OnEnabledChanged.
1177         
1178         - several of the events we were registered for in the ctor to
1179         redraw ourselves already include calls to Invalidate in the
1180         property setters that raise the events.  remove the extra
1181         invalidation.
1183         - reformat a switch statement that was 83274658 columns wide.
1184         
1185 2006-12-05  Mike Kestner  <mkestner@novell.com>
1187         * ComboBox.cs: fix a unit test regression from a TextBox
1188         SelectionLength return of -1 when there's no selection.  
1190 2006-12-05  Chris Toshok  <toshok@ximian.com>
1192         * Control.cs, Button.cs, ThemeGtk.cs, Form.cs, ListView.cs,
1193         ThemeWin32Classic.cs, SizeGrip.cs, ToolBar.cs: first pass at
1194         cleaning up some of the internal Control fields being used by
1195         subclasses.
1197 2006-12-05  Mike Kestner  <mkestner@novell.com>
1199         * ComboBox.cs: fix some Simple mode regressions.  Set Visible on the
1200         listbox after AddImplicit calls since it defaults to hidden. Add a 
1201         hack to preserve requested heights across DropDownStyle changes.
1203 2006-12-05  Jonathan Pobst  <monkey@jpobst.com>
1205         * PropertyGrid.cs: Hide FindFirstItem method from public API.
1207 2006-12-05  Chris Toshok  <toshok@ximian.com>
1209         * DataGridView.cs: fix compiler warnings.
1211         * PrintControllerWithStatusDialog.cs: same.
1213         * ToolBar.cs: same.
1215         * FolderBrowserDialog.cs: same.
1217         * Splitter.cs: same.
1219         * DataGridViewComboBoxCell.cs: same.
1221         * XplatUIWin32.cs: same.
1223         * PictureBox.cs: same.
1225         * Win32DnD.cs: same.
1227         * PageSetupDialog.cs: same.
1229         * FileDialog.cs: same.
1231         * PrintDialog.cs: same.
1233         * DataGridTextBoxColumn.cs: same.
1235         * DrawTreeNodeEventArgs.cs: same (and fix corcompare)
1237 2006-12-05  Chris Toshok  <toshok@ximian.com>
1239         * TextBox.cs, CheckedListBox.cs, MonthCalendar.cs, Menu.cs,
1240         MainMenu.cs, ListView.cs, LabelEditTextBox.cs, ToolBar.cs: more
1241         System.ComponentModel.EventHandlerList work.
1243 2006-12-05  Jonathan Chambers  <joncham@gmail.com>
1245         * DrawTreeNodeEventArgs.cs: Added.
1247 2006-12-05  Rolf Bjarne Kvinge  <RKvinge@novell.com>
1248         
1249         * InternalWindowManager.cs: Remove an unused field.
1250         
1251 2006-12-05  Rolf Bjarne Kvinge  <RKvinge@novell.com>
1253         * InternalWindowManager.cs:
1254         - Save the point where the title bar is clicked.
1255         
1256         * MdiWindowManager.cs:
1257         - Only allow moving of the window as long as the 
1258         clicked point on the title bar does not get out of
1259         MdiClient's rectangle. Fixes #79982.
1260         
1261         * MdiClient.cs:
1262         - Added Horizontal/VerticalScrollbarVisible.
1263         - Simplified the scrollbar sizing algorithm.
1264         - Cache the difference in scrolled value in
1265         H/VBarValueChanged and move the calculation out
1266         of the for loop.
1268 2006-12-05  Rolf Bjarne Kvinge  <RKvinge@novell.com>
1270         * Control.cs: Make the Console.WriteLine in WndProc 
1271         write more info.
1273 2006-12-05  Chris Toshok  <toshok@ximian.com>
1275         * ToolStripManager.cs, ToolStripButton.cs,
1276         ToolStripContentPanel.cs, ToolStripComboBox.cs, ToolStrip.cs,
1277         ToolStripMenuItem.cs, ToolStripItem.cs, ToolStripControlHost.cs,
1278         ToolStripSplitButton.cs, ToolStripSeparator.cs,
1279         ToolStripRenderer.cs, ToolStripDropDownItem.cs,
1280         ToolStripProgressBar.cs, ToolStripContainer.cs,
1281         ToolStripTextBox.cs, ToolStripPanel.cs, ToolStripDropDown.cs: move
1282         to using System.ComponentModel.EventHandlerList.
1284 2006-12-04  Chris Toshok  <toshok@ximian.com>
1286         * LinkLabel.cs: fix up compiler warnings.
1288         * TableLayoutSettings.cs: same.
1290         * TreeView.cs: same.
1292         * ToolBar.cs: same.
1294         * TabControl.cs: same.
1296         * RichTextBox.cs: same.
1298         * ListViewItem.cs: same.
1300         * PropertyGrid.cs: same.
1302         * DataGridViewRowPostPaintEventArgs.cs: corcompare fix.
1304         * ToolTip.cs same.
1306         * TextRenderer.cs: fix up compiler warnings.
1308         * Label.cs: same.
1310         * Form.cs: corcompare fixes.
1312         * PictureBox.cs: fix up compiler warnings.
1314         * ImageListStreamer.cs: same.
1316         * TrackBar.cs: corcompare fix.
1318         * Control.cs: fix up compiler warnings.
1320         * SplitterPanel.cs: same.
1322         * NumericTextBox.cs: same.
1324         * ImageList.cs: same.
1326         * StatusStrip.cs: same.
1328         * ProgressBar.cs: corcompare fix.
1330         * ToolStripButton.cs: fix up compiler warnings.
1332         * ToolStripStatusLabel.cs: same.
1334         * ToolStripSplitButton.cs: same.
1336         * ToolStripSeparator.cs: same.
1338         * ToolStripProgressBar.cs: same.
1340         * ToolStripDropDownMenu.cs: same
1342         * ToolStripDropDown.cs: same.
1344         * ToolStripDropDownButton.cs: same.
1346         * ToolStrip.cs: same.
1348         * ToolStripControlHost.cs: same.
1350         * ToolStripContentPanel.cs: same.
1352         * ToolStripDropDown.cs: same.
1354         * ToolStripContainer.cs: same.
1356         * ToolStripPanel.cs: same, and add "new" where we need it to work
1357         with the new ArrangedElementCollection.
1359         * ToolStripItemCollection.cs: add "new" where we need it to work
1360         with the new ArrangedElementCollection.
1362 2006-12-04  Andreia Gaita <avidigal@novell.com>
1364         * TabControl.cs: Fix default tab selection to after TabControl
1365         gets focus and not before. Fixes #80128
1367 2006-12-04  Chris Toshok  <toshok@ximian.com>
1369         * DataGridTableStyle.cs: remove the gross calling of
1370         datagrid.Refresh from here.  It's a broken idea and it doesn't
1371         work anyway.
1373         * DataGrid.cs: instead, just register/unregister from the
1374         DataGridTableStyle events in CurrentTableStyle.  we play it
1375         conservatively and EndEdit + CalcAreasAndInvalidate on any event,
1376         even though some would most likely not require it.  Fixes bug
1377         #80115 (and one portion of #80117 as a side effect).
1379 2006-12-04  Chris Toshok  <toshok@ximian.com>
1381         * DataGrid.cs (set_CaptionVisible): EndEdit before doing the work
1382         so the textbox (if any) goes away.  Fixes bug #80117.
1384 2006-12-04  Chris Toshok  <toshok@ximian.com>
1386         * DataGridColumnStyle.cs: set the column's readonly property
1387         initially based on the property descriptor's IsReadOnly.  Fixes
1388         bug #80044.
1390 2006-12-04  Chris Toshok  <toshok@ximian.com>
1392         * ComboBox.cs: wrap the dropdown style changing work in
1393         SuspendLayout/ResumeLayout.  Fixes bug #79968.
1395 2006-12-04  Jackson Harper  <jackson@ximian.com>
1397         * TextBoxBase.cs: Fix off by one, since these are one-based.
1398         * TextBox.cs: Select all the text when we get focus.  The TextBox
1399         does this but the RTB does not.
1401 2006-12-04  Chris Toshok  <toshok@ximian.com>
1403         * DataGridTextBoxColumn.cs: remove some spew.
1405         * DataGridColumnStyle.cs (SetColumnValueAtRow): this seems right
1406         but some part of me is saying "it shouldn't be here.."  At any
1407         rate, it fixes bug #80046.  Call IEditableObject.EndEdit after
1408         setting the value.
1410 2006-12-04  Chris Toshok  <toshok@ximian.com>
1412         * DataGridColumnStyle.cs (SetDataGrid): call CheckValidDataSource
1413         to reassign the propertydescriptor.
1415 2006-12-04  Jackson Harper  <jackson@ximian.com>
1417         * TextBoxBase.cs:
1418         * TextControl.cs: Remove some unused variables.  Maybe this will
1419         patch things up between mike and I.
1420         - don't split lines less then one char wide, if the viewport is
1421         that small text won't be visible anyways.
1422         
1423 2006-12-04  Jackson Harper  <jackson@ximian.com>
1425         * TextBoxBase.cs: Default selection length is -1, need to do some
1426         more testing on windows to see when this is used for the property.
1427         - Redid the Lines [] property to that we properly remove soft line
1428         breaks
1429         - added support for preserving carriage returns
1430         -  CanUndo is not a variable like 'is undo enabled' it just returns
1431         true if there is undo operations available.
1432         - AppendText doesn't need to grab the last tag itself anymore,
1433         this happens automatically when we move the cursor.
1434         * TextControl.cs: Add CompoundActions to the undo class. This
1435         allows combining the other operations into one big option.  ie a
1436         paste will combine { delete old, insert new, move cursor }
1437         - Add InsertString undo operation
1438         - New method for deleting multiline text
1439         - Add carriage returns to lines. So we can preserve carriage
1440         returns when text is 'roundtripped'
1442 2006-12-04  Chris Toshok  <toshok@ximian.com>
1444         * DataGrid.cs (CalcCellsArea): cells_area.Width/Height are at a
1445         minimum 0.  Fixes the scrollbar exception in bug #80136.
1447 2006-12-04  Rolf Bjarne Kvinge  <RKvinge@novell.com>
1449         * MdiClient.cs: 
1450         * MdiWindowManager: Removed unused fields and methods.
1451         
1452 2006-12-04  Rolf Bjarne Kvinge  <RKvinge@novell.com>
1453         
1454         * StatusBar.cs: Update all panels when a AutoSize=Contents
1455         panel needs updating.
1456         
1457         * StatusBarPanel.cs: Remove twidth and only use initialize.
1458         Fixes #80031.
1459                 
1460 2006-12-04  Rolf Bjarne Kvinge  <RKvinge@novell.com>
1462         * Form.cs: When a form's MdiParent is set add it directly
1463         on top of the z-order in stead of relying on MdiClient's
1464         ActivateChild to do it. Fixes #80135.
1465         
1466         * MdiClient.cs: 
1467         - Remove original_order, mdi_child_list is already doing
1468         the same thing.
1469         - Create mdi_child_list on construction in
1470         stead of first use (avoids a few null checks).
1472         * MenuItem.cs: Use an already existing list of mdi children
1473         to get the correct order of children and remove the other
1474         redundant list.
1476 2006-12-04  Chris Toshok  <toshok@ximian.com>
1478         * PropertyGridView.cs: cached_splitter_location is only used in
1479         !DOUBLEBUFFER code.
1481         * PropertyGrid.cs: implement the ComComponentNameChanged event
1482         using Events, hoping that would fix the warning.  Looks like a
1483         compiler bug instead (#80144).
1485         * PropertyManager.cs: remove unused method.
1487 2006-11-04  Everaldo Canuto  <everaldo@simios.org>
1489         * ThemeWin32Classic.cs: Dont draw arrow when menuitem on menubar, 
1490         include parentesis to fix expression evaluation. Fixes #79634.
1492 2006-11-02  Everaldo Canuto  <everaldo@simios.org>
1493         
1494         * MenuAPI.cs:
1495         - Changes to fix behavior in Menu control, some reported in #80097
1496         and other detected during behavior refactory like a select event
1497         problems.
1498         - Remove unneded "if's" conditions.
1499         - Created an internal to flag when popup is active in control, we need 
1500         it because in .NET you can have menu active but without popup active
1501         when you active menu using popup without visible items.
1502         - Mimic win32 behavior for Select and Popup events.  
1503         - Dont open popup menu when you dont have visible subitems.
1504         - Do nothing when click on disabled menu item.
1505         - Some small changes to follow the coding style guidelines.
1506         - Unselect menu only when another control gives focus. Fixes #80097.
1507         - Remove unused code.
1508         
1509         * MenuItem.cs: internal VisibleItems method to check if menu
1510         theres visible subitems, it will be usefull to fix some 
1511         behavior in Menu control.
1512         
1513 2006-11-01  Everaldo Canuto  <everaldo@simios.org>
1514         
1515         * Timer.cs: Tag property for 2.0 profile.
1516         
1517 2006-12-01  Chris Toshok  <toshok@ximian.com>
1519         [ after removing all warning suppressions, this cleans up over 100 warnings. ]
1520         
1521         * Win32DnD.cs: comment out some unused fields.
1523         * XplatUIWin32.cs: comment out some unused pinvokes, and remove
1524         some unused properties/methods.
1526         * XplatUIX11.cs: fix MousePosition so we override the base class's
1527         property instead of conflicting with it.
1529         * PictureBox.cs: comment out some unused fields
1531         * OSXStructs.cs: make some struct fields public.
1533         * XplatUIOSX.cs: comment out some unused pinvokes, and fix
1534         MousePosition so we override the base class's property instead of
1535         conflicting with it.
1537         * X11Dnd.cs: comment out some unused fields
1539         * X11DesktopColors.cs: fix some struct field visibility to quiet
1540         the compiler.
1542         * X11Dnd.cs: remove some debug code.
1544         * ThemeClearlooks.cs: comment out unused field.
1546         * ThemeNice.cs: mark some methods as overriding ThemeWin32Classic as needed.
1548         * ThemeGtk.cs: comment out some unused pinvokes.
1550         * Timer.cs: remove some unused fields.
1552         * ThemeClearlooks.cs: comment out unused field.
1554         * UpDownBase.cs: comment out unused field.
1556         * DataObject.cs: comment out unused field.
1558         * DataGridBoolColumn.cs: reomve unused field.
1560         * DataGrid.cs: remove unused field.
1562         * Cursor.cs: remove old ToBitmap code.
1564         * ControlPaint.cs: remove unused method.
1566         * ScrollBar.cs: remove unused fields.
1568         * ComboBox.cs: remove unused field, and chain up to
1569         AccessibleObject ctor.
1571         * ListBox.cs: remove unused field.
1573         * ButtonBase.cs: wrap a couple fields in NET_2_0.
1575         * GridEntry.cs: remove unused fields.
1577         * Binding.cs: remove unused fields.
1579         * AxHost.cs: remove unused method.
1581         * ContainerControl.cs: remove unused field.
1583         * ScrollableControl.cs: remove unused fields.
1585 2006-12-01  Chris Toshok  <toshok@ximian.com>
1587         * XplatUI.cs, XplatUIWin32.cs, XplatUIGTK.cs: nuke
1588         the Where/WhereString stuff.  it's easy enough to CWL
1589         Environment.StackTrace.
1591         * XplatUIX11.cs: same, but also fix up a lot of mcs warnings about
1592         unused private fields.
1594 2006-12-01  Jackson Harper  <jackson@ximian.com>
1596         * TextControl.cs: Do not update the view while inserting multiline
1597         text. If we update the view we might wrap lines, before entering
1598         the new lines, which causes the new line insertion calculations to
1599         be totally fubared.
1600         - Remove an old TODO
1601         - Make debug output a little nicer
1602         
1603 2006-12-01  Chris Toshok  <toshok@ximian.com>
1605         * ToolBar.cs: revert the ImeMode fix here and add an XXX comment.
1607 2006-12-01  Chris Toshok  <toshok@ximian.com>
1609         [ fix the majority of the CS0108 warnings we've been suppressing ]
1610         
1611         * TreeView.cs: mark BackgroundImageChanged as 'new'.
1613         * ToolBar.cs: ImeMode just passes stuff to Control.  Rename Layout
1614         to "LayoutToolBar" to quiet mcs.
1615         
1616         * TabControl.cs: mark our ControlCollection class as 'new'.
1618         * TextBoxBase.cs: mark some events as 'new'.
1620         * Splitter.cs: TabStop is 'new'.
1622         * ControlBindingsCollection.cs: mark a few methods as new since
1623         they change the visibility from protected to public.
1625         * RadioButton.cs: DoubleClick -> base class, and remove unused
1626         HaveDoubleClick.
1628         * MonthCalendar.cs: ImeMode property -> base class, and mark many
1629         events as new.
1631         * NumericUpDown.cs: TextChanged -> base class.
1633         * CheckedListBox.cs: mark our ObjectCollection class as new to
1634         quiet mcs.
1636         * FolderBrowserDialog.cs: make HelpRequest event new and have it
1637         muck with the base class.
1639         * StatusBar.cs: fix some mcs warnings about Update being the same
1640         name as a base class method.
1642         * RichTextBox.cs: mark some events as new, and make them do things
1643         to the base class impl.
1645         * UserControl.cs: mark TextChanged as new, and have it manipulate
1646         base.TextChanged.
1648         * UpDownBase.cs: mark some things new.
1650         * CheckBox.cs: mark DoubleClick "new", and add some text about
1651         what we need to look at.
1653         * Panel.cs: make the events "new", and manipulate the base
1654         version.  these are just here for attributes.
1656         * AccessibleObject.cs: make owner private.
1658         * Control.cs: deal with AccessibleObject.owner being private.
1659         cache our own copy if we need it.
1661         * Button.cs: add "new" to the DoubleClickEvent.
1663         * ListBox.cs: no need to track our own has_focus here.  let
1664         Control.has_focus do it for us.  Also some other work to clear up
1665         warnings about not overriding base class methods of the same name.
1666         
1667         * ComboBox.cs: clear up some warnings about not override base
1668         class methods of the same name.
1670 2006-12-01  Chris Toshok  <toshok@ximian.com>
1672         * Form.cs: flag a few things as "new" to quiet some of the mcs
1673         warnings.
1675         * AxHost.cs: same.
1677         * PrintPreviewDialog.cs: same.
1679         * DataGridView.cs: fix a ton of corcompare warnings.  not all, but
1680         now DGV isn't so horrible on the class status page.  also, move
1681         all events to using System.ComponentModel.EventHandlerList.  my
1682         wrists hurt.
1684 2006-12-01  Rolf Bjarne Kvinge  <RKvinge@novell.com>
1686         * MdiWindowManager.cs:
1687         - Set form to active mdi child if shown,
1688         and update the active mdi child to the next 
1689         remaining child in the z-order if the form is hidden.
1691         * Form.cs: 
1692         - Track if the form has been visible and if its 
1693         visibility is beeing changed, so that the MdiClient
1694         can properly decide the ActiveMdiChild. The MdiClient 
1695         cannot track this since the form can change visibility 
1696         before MdiClient is created.
1698         * MdiClient.cs:
1699         - Don't activate anything of the parent form is changing
1700         its visibility.
1701         - Rework ActiveMdiChild to only return visible mdi 
1702         children and take into account several other corner 
1703         cases.
1705 2006-12-01  Chris Toshok  <toshok@ximian.com>
1707         * IBindableComponent.cs: new 2.0 interface.
1709 2006-12-01  Gert Driesen  <drieseng@users.sourceforge.net>
1711         * DataGrid.cs: Font for caption area is bold by default.
1713 2006-12-01  Everaldo Canuto  <everaldo@simios.org>
1715         * Menu.cs: Tag property for 2.0.
1716         
1717 2006-11-01  Everaldo Canuto  <everaldo@simios.org>
1719         * ThemeWin32Classic.cs: Adjust menu separator drawing. 
1720         
1721 2006-12-01  Chris Toshok  <toshok@ximian.com>
1723         * TreeView.cs: doh, the Begin* events should be
1724         TreeViewCancelEventHandler.
1726 2006-12-01  Chris Toshok  <toshok@ximian.com>
1728         * Form.cs: Form.ControlCollection already stores off the
1729         form_owner field.  don't access the base class's internal "owner"
1730         field.
1732         * Control.cs: make all the fields in Control.ControlCollection
1733         private.  there's no need for any internal fields here.
1735 2006-12-01  Chris Toshok  <toshok@ximian.com>
1737         * DataGrid.cs: call SetDataSource instead of CalcGridAreas in
1738         OnHandleCreated.  Fixes bug #80109.
1740 2006-12-01  Chris Toshok  <toshok@ximian.com>
1742         * Button.cs, PropertyGridTextBox.cs, ComboBox.cs,
1743         SplitContainer.cs, Control.cs, StatusStrip.cs,
1744         DataGridTableStyle.cs, MenuItem.cs, DomainUpDown.cs, ImageList.cs,
1745         NumericTextBox.cs, NumericUpDown.cs, Panel.cs, CommonDialog.cs,
1746         DataGrid.cs, ScrollBar.cs, TrackBar.cs, PictureBox.cs,
1747         DateTimePicker.cs, StatusBar.cs, Form.cs, PrintPreviewDialog.cs,
1748         Label.cs, UserControl.cs, CheckBox.cs, RadioButton.cs,
1749         LinkLabel.cs, ListControl.cs, PropertyGrid.cs, Splitter.cs,
1750         MenuStrip.cs, FolderBrowserDialog.cs, NotifyIcon.cs,
1751         TextBoxBase.cs, ListView.cs, DataGridBoolColumn.cs,
1752         PrintPreviewControl.cs, RichTextBox.cs, ListBox.cs, TabControl.cs,
1753         DataGridColumnStyle.cs, ContextMenu.cs, TreeView.cs:
1755         do most of the work to convert our code over to use
1756         System.ComponentModel.Component.Events for
1757         adding/removing/dispatching events.
1760 2006-11-30  Jonathan Pobst  <monkey@jpobst.com>
1762         * DataGridView.cs: Fix an ArgumentNullException reported 
1763         twice today in IRC.
1765 2006-11-30  Mike Kestner  <mkestner@novell.com>
1767         * ComboBox.cs: fix the scrollbar mouse event forwarding in the 
1768         grabbed listbox.  Fixes #80036 and #80101.
1770 2006-11-30  Rolf Bjarne Kvinge <RKvinge@novell.com>
1772         * Message.cs: Changed ToString() to match MS.
1773         
1774 2006-11-30  Jackson Harper  <jackson@ximian.com>
1776         * TextBoxBase.cs: You can still change the selected text on a read
1777         only textbox.
1778         * TextControl.cs: Lower magic number for wrap calculations. This
1779         lets text get closer to the right (far) edge.
1781 2006-11-30  Jonathan Pobst  <monkey@jpobst.com>
1783         * Control.cs: Tweak 2.0 layout properties.
1784         * Form.cs: Switch ToolStripMenuTracker hooks to ToolStripManager.
1785         * TextRenderer.cs: Add a new overload.
1786         * ToolStrip*: Huge amount of changes and new features.
1788 2006-11-30  Mike Kestner  <mkestner@novell.com>
1790         * ComboBox.cs: fixes for LargeChange and Maximum to get the 
1791         scroll range correct.  Fixes #79994.
1793 2006-11-30  Rolf Bjarne Kvinge <RKvinge@novell.com>
1795         * MdiWindowManager.cs: Update main form's text when
1796         a form is closed. (fixes #80038)
1797         
1798 2006-11-30  Everaldo Canuto  <everaldo@simios.org>
1800         * ToolBar.cs:
1801         - Fix an regression in ButtonSize.
1802         - Get ImeMode default value change to "Disable".
1803         - Get ShowTooltips default value change to true, default value is 
1804         "false" but after make a test in .NET we get "true" result as default.
1805         
1806 2006-11-29  Jonathan Pobst  <monkey@jpobst.com>
1808         * ToolStripDropDown.cs: Fix for SupportsTransparency change.
1810 2006-11-29  Chris Toshok  <toshok@ximian.com>
1812         * XplatUIWin32.cs (GetWindowTransparency): check return value of
1813         GetLayeredWindowAttributes.  if it's 0, return 1.0, as
1814         SetWindowTransparency hasn't been called.
1816 2006-11-29  Chris Toshok  <toshok@ximian.com>
1818         * Form.cs (set_TransparencyKey): only call SetWindowTransparency
1819         if it's supported.
1820         (set_AllowTransparency): reorder things a little so that the
1821         WS_EX_LAYERED style is removed properly.
1823 2006-11-29  Chris Toshok  <toshok@ximian.com>
1825         [ totally cosmetic eye-candy feature, fixes bug #80089 ]
1826         
1827         * Form.cs: only call the XplatUI transparency method (get/set) if
1828         SupportsTransparency says it's supported. Otherwise fallback to
1829         doing nothing (in the set case) or returning the instance field we
1830         cache (in the get case).
1832         * XplatUIStructs.cs: add TransparencySupport flag enum.
1833         
1834         * XplatUIDriver.cs: add abstract GetWindowTransparency, and track
1835         change to SupportsTransparency.
1837         * XplatUIOSX.cs: stub out GetWindowTransparency, and return
1838         TransparencySupport.None from SupportsTransparency.
1840         * XplatUIX11.cs: Stub out GetWindowTransparency, and return
1841         TransparencySupport.Set from SupportsTransparency.
1843         * XplatUIWin32.cs: implement GetWindowTransparency calling
1844         GetLayeredWindowAttributes, and implement SupportsTransparency by
1845         checking whether or not both
1846         GetWindowTransparency/SetWindowTransparency are available
1847         entrypoints.  We need to do this since SetWindowTransparency is
1848         available as of win2k, but GetWindowTransparency requires winxp.
1849         yay win32 api.
1851         * XplatUI.cs: Add GetWindowTransparency, and change
1852         SupportsTransparency to allow for either/both Get/Set.
1854 2006-11-29  Chris Toshok  <toshok@ximian.com>
1856         * DataGrid.cs: keep from going into an infinite loop redrawing a
1857         datagrid that has no datasource.  Fixes bug #80033.
1859 2006-11-29  Chris Toshok  <toshok@ximian.com>
1861         * MenuItem.cs: fix the NRE when we assign text (and therefore call
1862         Invalidate) before the mainmenu has been assigned to a control.
1864 2006-11-29  Chris Toshok  <toshok@ximian.com>
1866         * DataGrid.cs: detect when we should be double the double click
1867         row/column autosize stuff, although that codepath has yet to be
1868         written.  part of the work for bug #79891.
1870 2006-11-29  Chris Toshok  <toshok@ximian.com>
1872         * Binding.cs (SetControl): fix unit test.
1874 2006-11-29  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1876         * PageSetupDialog.cs: Validate the margins and set them in
1877         PageSettings. 
1878         * NumericTextBox.cs: New class to mimic the behavior of the
1879         textboxes used in the printing dialogs.
1881 2006-11-29  Andreia Gaita  <avidigal@novell.com>
1882         
1883         * Form.cs: Revert previous change (remove call UpdateBounds
1884         from form constructor), because it messes with the handle creation
1885         order, and that one needs lots and lots of love.
1886         * PrintPreviewDialog.cs: Revert change to CreateHandle (add check
1887         for valid printer and throw InvalidPrinterException if document
1888         is set but printer not valid), adding a MonoTODO. Once 
1889         handle creation is done properly, we can put this back in.
1891 2006-11-28  Everaldo Canuto  <everaldo@simios.org>
1893         * MenuItem.cs: Create a invalidate method for menu item, to be
1894         calling from set text, it make text changes to imadiate update
1895         on screen. Fixes #80013. 
1896         
1897 2006-11-28  Everaldo Canuto  <everaldo@simios.org>
1899         * ToolBar.cs: Fixes and simplify toolbar button layout, it 
1900         fixes bug #80070 and some other problem on toolbar buttons
1901         layout.
1903 2006-11-28  Everaldo Canuto  <everaldo@simios.org>
1905         * ThemeWin32Classic.cs: Paint toolbar toggle button background 
1906         with dotted brush.      Fixes #79564
1907         
1908 2006-11-28  Andreia Gaita  <avidigal@novell.com>
1910         * Form.cs: Removed call to UpdateBounds on Form
1911         constructor, it was causing a call to CreateHandle
1912         before it was supposed to.
1913         * PrintControllerWithStatusDialog: Applied patch
1914         by Chris Toshok to hide controller when there are
1915         no printers available.
1916         PrintDialog.cs: initialize printer settings to 
1917         null - correct DefaultValues test #5
1918         * PrintPreviewControl.cs: Move PrintController
1919         initialization to GeneratePreview
1920         * PrintPreviewDialog.cs: 
1921         - Remove Preview generation     from Document_set(). It is 
1922         called on OnPaint
1923         - Throw InvalidPrinterException on CreateHandle if
1924         a Document is set but there are no printers or 
1925         printer is not valid.
1926         * ThemeWin32Classic: don't paint PrintPreviewControl
1927         if there is nothing to paint    
1929 2006-11-28  Miguel de Icaza  <miguel@novell.com>
1931         * Form.cs: Add another popular method.
1933         * TabPage.cs: ditto.
1935 2006-11-28  Rolf Bjarne Kvinge  <RKvinge@novell.com>
1937         * MenuItem.cs: Fixed a warning.
1938         * InternalWindowManager: Fixed a warning.
1940 2006-11-28  Rolf Bjarne Kvinge  <RKvinge@novell.com>
1942         * MenuItem.cs:
1943         - When cloning a menu also clone MdiList and clone the 
1944           window menu items properly (as the forms and menuitems
1945           are kept in an internal hashtable, these need updating 
1946           as well)
1947         - Rewrote the window menu code, menu items are added in the
1948           order the forms were added to their parent, and they are
1949           updated every time the window menu is shown (before the
1950           list was only generated once, in the current order of the
1951           forms, and would never be updated). A checkmark is shown
1952           next to the item corresponding to the active mdi child.
1954 2006-11-28  Rolf Bjarne Kvinge  <RKvinge@novell.com>
1956         * XplatUIStructs.cs: 
1957         - Added WM_NCMOUSEHOVER and WM_NCMOUSELEAVE.
1958         
1959         * XplatUIWin32.cs: 
1960         - Added TME_NONCLIENT to TMEFlags.
1961         - Handles WM_NCMOUSEMOVE in GetMessage to 
1962           generate WM_NCMOUSEHOVER and WM_NCMOUSELEAVE messages.
1964         * MdiWindowManager:
1965         - Now merges mdi child menu to parent menu when maximized.
1966         - Recalculate NC areas of both mdi child and mdi parent. 
1967           Fixes #79757 (4).
1968           on window state and size changes.Fixes #79844 (3).
1969         - Handle WM_NCCALCSIZE to properly calculate borders.
1971         * Form.cs:
1972         - Add/remove to the mdi containers list of mdi children 
1973           in the order they are added.
1974         - Pass on WM_NCLBUTTONUP, WM_NCMOUSEMOVE and WM_NCMOUSELEAVE 
1975           to the maximized mdi child.
1976         
1977         * InternalWindowManager.cs:
1978         - Only execute a click on the control buttons on the mouse up,
1979           not on the mouse down. Show the state of the button 
1980           (was only showing Normal state, never Pressed state). The
1981           pressed button now follows the mouse (if you click the Close 
1982           button and move the mouse over the Maximize button, the 
1983           Maximize button will be shown as pressed). Since Win32 does
1984           not generate WM_NCLBUTTONUP if you release the button outside
1985           of the nc area, we need to handle WM_NCMOUSELEAVE and treat
1986           it as a mouse up.
1987         
1988         * ThemeWin32Classic.cs:
1989         - Draw a missing border around mdi child forms. Fixes #79844 (2).
1991         * MdiClient.cs:
1992         - Added a list of forms which contains the order the forms are
1993           added to the mdi parent.
1994         - Handle WM_NCPAINT to properly draw a 3D border. Fixes #79844 (2).
1995         - Handle WM_NCCALCSIZE to properly calculate the 3D border.
1996         - If the active form changes set the scrollbars to the top
1997           of the Z order, otherwise the form could hide them.
1998         - Scrollbars are now sized according to ClientSize, not 
1999           to Size, and they take into account the other scrollbar
2000           to determine maximum.
2001         
2002 2006-11-28  Rolf Bjarne Kvinge <RKvinge@novell.com>
2003         
2004         * XplatUI.cs:
2005         * XplatUIDriver.cs:
2006         * XplatUIX11.cs:
2007         * XplatUIWin32.cs:
2008         * XplatUIOSX.cs:
2009         - Added RequestAdditionalWM_NCMessages for windows to 
2010           opt in for WM_NCMOUSELEAVE and WM_NCMOUSEHOVER.
2011           Currently only implemented in XplatUIWin32.
2013 2006-11-27  Chris Toshok  <toshok@ximian.com>
2015         * Hwnd.cs: only add the hwnd to the windows hash in
2016         set_WholeWindow and set_ClientWindow if whole_window/client_window
2017         are not IntPtr.Zero.  also, remove the unused SetObjectWindow.
2019 2006-11-27  Mike Kestner  <mkestner@novell.com>
2021         * ComboBox.cs: remove redundant OnDropDown call.  It is called
2022         from the ComboListBox.ShowWindow code. Fixes #79969.
2024 2006-11-27  Chris Toshok  <toshok@ximian.com>
2026         * Hwnd.cs: remove the setters for ExposePending and
2027         NCExposePending - noone uses them.
2029 2006-11-27  Jackson Harper  <jackson@ximian.com>
2031         * TextControl.cs: new param for ReplaceSelection which determines
2032         whether we select the new selection, or set the cursor to the end
2033         of the new selection.
2034         * TextBoxBase.cs: Use new param for ReplaceSelection.  When
2035         pasting, select the new text.
2036         * RichTextBox.cs: Use new param for ReplaceSelection.
2038 2006-11-27  Jackson Harper  <jackson@ximian.com>
2040         * TextBoxBase.cs: Set the selection to the caret after the caret
2041         is moved, otherwise they get out of sync.
2043 2006-11-26  Everaldo Canuto  <everaldo@simios.org>
2045         * ToolBar.cs: Fixe size of ToolBar when AutoSize is false,
2046         it fixes #80015
2048 2006-11-26  Everaldo Canuto  <everaldo@simios.org>
2050         * ThemeWin32Classic.cs: 
2051         - Fix toolbar drop down arrow position.
2052         - Fix drop down appearance when ToolBar.Appearance is normal,
2053         it fixes #80018.
2054         
2055 2006-11-26  Gert Driesen  <drieseng@users.sourceforge.net>
2057         * ProgressBar.cs: GetStyle fixes for 2.0 profile.
2058         * Control.cs: Same.
2059         * UpDownBase.cs: Same.
2060         * ButtonBase.cs: Same.
2061         * ScrollBar.cs: Same.
2062         * TrackBar.cs: Same.
2063         * PictureBox.cs: Same.
2064         * UserControl.cs: Same.
2065         * Label.cs: Same.
2066         * ListControl.cs: Same.
2067         * TextBoxBase.cs: Same.
2068         * ListView.cs: Same.
2069         * RichTextBox.cs: Same.
2070         * TreeView.cs: Same.
2072 2006-11-25  Jordi Mas i Hernandez <jordimash@gmail.com>
2074         * PrintDialog.cs:
2075         - Text label for where 
2076         - Text label comment was not shown
2078 2006-11-23  Everaldo Canuto  <everaldo@simios.org>
2080         * ThemeWin32Classic.cs: Fix toolbar drop down arrow size.
2082 2006-11-23  Rolf Bjarne Kvinge  <RKvinge@novell.com> 
2084         * InternalWindowManager.cs: 
2085         - Handle WM_PARENTNOTIFY to activate the form
2086         if any child control is clicked.
2087         - The form is only sizable if not minimized.
2089         * MdiWindowManager.cs:
2090         - Save the IconicBounds if the form is moved.
2091         - Rework SetWindowState, now the window bounds 
2092         are stored only if the old window state is Normal.
2093         
2094         * MdiClient.cs:
2095         - In SetWindowStates store the old window state if 
2096         the window is maximized and restore window state if
2097         the window looses focus.
2098         - Don't handle any scrollbar value changes if 
2099         initializing the scroll bars. Fixes #79771.
2100         - Reworked ArrangeIconicWindows. Current algorithm
2101         tests bounds agains all other minimized windows, if
2102         any intersections create new bounds (going left to 
2103         right, bottom to top) and then test again. When 
2104         successful the bounds are saved and never computed
2105         again. Fixes #79774.
2107 2006-11-23  Rolf Bjarne Kvinge  <RKvinge@novell.com> 
2109         * InternalWindowManager.cs: Added HandleTitleBarUp.
2111 2006-11-23  Gert Driesen  <drieseng@users.sourceforge.net>
2113         * NumericUpDown.cs: In .NET 1.1, user entered text is still
2114         hexadecimal in ParseUserEdit.
2116         
2117 2006-11-23  Rolf Bjarne Kvinge  <RKvinge@novell.com> 
2119         * MdiWindowManager.cs: 
2120         - Handle a click on the form's icon to show the 
2121         system menu (when maximized). Fixes #79775.
2122         - Change the existing click handler for the form's
2123         icon when not maximized to show on MouseUp.
2124         Fixes #79776.
2126         * Form.cs: In OnResize only layout the mdi child's
2127         parent if it actually has a parent. Might not if
2128         the window is closing.
2131 2006-11-23  Gert Driesen  <drieseng@users.sourceforge.net>
2133         * MdiClient.cs: Ignore active MDI client for text of parent, if
2134         child has no text set.
2136 2006-11-23  Gert Driesen  <drieseng@users.sourceforge.net>
2138         * ToolBar.cs: Fixed ToString to match MS.
2140 2006-11-22  Andreia Gaita  <avidigal@novell.com>
2142         * NumericUpDown: 
2143         - Fix DecimalPlaces, Hexadecimal and ThousandsSeparator to 
2144         update inner values on set. Fixes #79966.
2145         - Override OnLostFocus to update value on NET 2. Fixes #79950.
2146         - Fix hexadecimal parsing.
2147         
2148         * UpDownBase: Override OnGotFocus and OnLostFocus to notify 
2149         parent. Fixes #79957
2151 2006-11-22  Rolf Bjarne Kvinge  <RKvinge@novell.com>
2153         * Control.cs: After calling SetWindowsPos in SetBoundsCore 
2154         the actual size has to be queried, since if height /
2155         width is negative Win32 changes it to 0. 
2156         Fixes #79999 on Windows.
2157         
2158         * XplatUIX11.cs: Set height / width to 0 if negative
2159         in SetWindowPos. Fixes #79999 on Linux.
2160         
2161 2006-11-22  Everaldo Canuto  <everaldo@simios.org>
2163         * ThemeWin32Classic.cs: Fix text redenring when button is
2164         pressed.
2166 2006-11-22  Everaldo Canuto  <everaldo@simios.org>
2168         * MenuAPI.cs: Fixes behavior when menu is opened by kerboard
2169         and later navigate by mouse. Fixes #79528.
2171 2006-11-21  Everaldo Canuto  <everaldo@simios.org>
2173         * ToolBar.cs: Set default value for TabStop to false in
2174         constructor, it fixes remaining behavior of bug #79863.
2176 2006-11-21  Rolf Bjarne Kvinge  <RKvinge@novell.com>
2178         * MdiWindowManager.cs:
2179         * InternalWindowManager.cs:
2180         - Moved a few methods specific to Mdi from 
2181         InternalWindowManager to MdiWindowManager.
2182         Fixes #79996.
2183         
2184 2006-11-21  Chris Toshok  <toshok@ximian.com>
2186         * XplatUIOSX.cs: stub out InvalidateNC.
2188         * XplatUIWin32.cs: implement InvalidateNC using the call I found
2189         at http://www.dotnet247.com/247reference/msgs/58/292037.aspx.
2191         * XplatUIX11.cs: rename InvalidateWholeWindow to InvalidateNC.
2193         * XplatUIDriver.cs: add InvalidateNC abstract method.
2195         * XplatUI.cs: add InvalidateNC.
2197 2006-11-21  Everaldo Canuto  <everaldo@simios.org>
2199         * ToolBar.cs: Invalidate complete button area when pressed status 
2200         was changed.
2201         * ToolButton.cs: Fix InvalidateBorder for DropDown buttons.
2202         * ThemeWin32Classic.cs: Increase vertical and horizontal position 
2203         by 1 when button is pressed.
2205 2006-11-20  Everaldo Canuto  <everaldo@simios.org>
2207         * ToolButton.cs: Invalidate middle of DropDown button when
2208         ToolBar theres DropDownArrows.
2209         * ThemeWin32Classic.cs: Change position of DropDown arrow and
2210         fix DropDown drawing operations.
2212 2006-11-20  Chris Toshok  <toshok@ximian.com>
2214         * NativeWindow.cs: fix the formatting of functions ('{' on the
2215         following line), and enable the thread exception dialog.
2217         * Application.cs: remove the duplicate exception catching from
2218         here.
2220 2006-11-20  Everaldo Canuto  <everaldo@simios.org>
2222         * Toolbar.cs: Triggers button click event when click on icon
2223         of dropdown ToolBarButton. Fixes #79912.
2224         
2225 2006-11-20  Rolf Bjarne Kvinge  <RKvinge@novell.com>
2227         * Theme.cs:
2228         * ThemeWin32Classic.cs:
2229         - Added a property WindowBorderFont to enable themeing
2230           of mdi child windows' Text.
2231           
2232 2006-11-20  Rolf Bjarne Kvinge  <RKvinge@novell.com>
2234         * InternalWindowManager.cs:
2235         * Form.cs:
2236         * MdiClient.cs:
2237         * MdiWindowManager.cs: 
2238         - If mdi child is maximized, set mdi parent's
2239           text to "Parent - [Child]". Fixes #79770.
2240         - If there is any maximized mdi child windows, only the active 
2241           window (and any new windows) is maximized, the rest are normal.
2242         - On a WindowState change only save mdi child's window bounds 
2243           if the old window state was normal. Fixes #79774.
2244         - The scroll bars are now calculated on hopefully all
2245           necessary events. Fixed #79771 / #79844->6 / #79906.
2246         - MdiClient.SizeScrollBars() now takes into account docked 
2247           controls in the parent when calculating available space.
2248         - InternalWindowManager now always repaints the entire title
2249           area. Fixes #79844->1/4/5.
2250         - Added RequestNCRecalc on mdi child windowstate changes.
2251           Fixes #79772.
2253 2006-11-20  Mike Kestner  <mkestner@novell.com>
2255         * ComboBox.cs: setup LargeChange on the scrollbar. Invoke FireMouseUp
2256         in the MouseUp handler of the listbox and move the return handling
2257         code to FireMouseUp to avoid scrolling on ups.  Fixes #79952.
2259 2006-11-20  Everaldo Canuto  <everaldo@simios.org>
2261         * Toolbar.cs: Ignore right mouse clicks in toolbar. Fixes #79855. 
2263 2006-11-17  Alexander Olk  <alex.olk@googlemail.com>
2265         * MimeIcon.cs: Seems that DllImports that were fine in 1.2 are not
2266           working in 1.2.x anymore. So, updated.
2268 2006-11-19  Gert Driesen  <drieseng@users.sourceforge.net>
2270         * NumericUpDown.cs: Use NegativeSign, NumberDecimalSeparator and
2271         NumberGroupSeparator of current culture instead of assuming en-US.
2272         Fixed bug #79967.
2274 2006-11-17  Mike Kestner  <mkestner@novell.com>
2276         * Control.cs: Add the concept of implicit bounds setting so that
2277         dock/undock round trips preserve explicitly set size/locations.
2278         Fixes #79313.
2280 2006-11-17  Alexander Olk  <alex.olk@googlemail.com>
2282         * FileDialog.cs: Trim all filters, otherwise DirInfo.GetFiles
2283           can't handle those filters. (Fixes bug #79961)
2285 2006-11-17  Chris Toshok  <toshok@ximian.com>
2287         [ fixes the exit/crashes associated with #79835.  it's clearly
2288         suboptimal though, we need to figure out a better way to solve
2289         this. ]
2290         
2291         * PrintPreviewControl.cs: deal with the new invalid printer
2292         exceptions.
2294         * PageSetupDialog.cs: if the printer is invalid, pop up a dialog
2295         and return false (so CommonDialog.ShowDialog doesn't actually show
2296         the form.)
2298         * PrintDialog.cs: enable/disable the Ok button depending on
2299         whether or not the printer is valid.
2301         * CommonDialog.cs (ShowDialog): only actually show the form if
2302         RunDialog returns true.
2304 2006-11-17  Jackson Harper  <jackson@ximian.com>
2306         * TextControl.cs: When soft splitting a line, mark it as a soft
2307         split line. Also carry over the current line break to the next
2308         line.
2310 2006-11-17  Chris Toshok  <toshok@ximian.com>
2312         * XplatUIX11.cs: when scrolling a window with an invalid area, we
2313         only want to shift the part of the invalid area that overlaps the
2314         area we're scrolling.  we also don't want to clear the invalid
2315         area unless the invalid area was entirely contained within the
2316         scrolling area.
2318 2006-11-16  Chris Toshok  <toshok@ximian.com>
2320         * XplatUIX11.cs: remove the handling of the TimerEvent stuff, and
2321         also make sure to free the memory returned by XGetWindowProperty
2322         in GetText().
2324         * X11Structs.cs: remove the TimerEvent stuff, it's unused.
2326 2006-11-16  Chris Toshok  <toshok@ximian.com>
2328         * XplatUI.cs: add a new super secret way to get at the totally
2329         unsupported X11 backend.
2331 2006-11-16  Gert Driesen  <drieseng@users.sourceforge.net>
2333         * NumericUpDown.cs: Allow lowercase letters when in hex-mode.
2335 2006-11-16  Jackson Harper  <jackson@ximian.com>
2337         * TreeView.cs: Allow more explicit setting of top node position
2338         for scrollbars. Slower algo, but more accurate.
2339         - CollapseAll should maintain the current top node.
2340         * TextBoxBase.cs: When positioning the caret, use the line, pos
2341         method, since the x, y method does not grab the correct tag, and
2342         the caret height never gets set correctly. (Maybe I should just do
2343         away with the caret having its own height, and always use the
2344         carets current tag for height).
2346 2006-11-16  Jonathan Pobst  <monkey@jpobst.com
2348         [Fixes 79778, 79923]
2350         * XplatUIWin32.cs: Don't allow a parent to be set to IntPtr.Zero.
2351         Parent to the FosterParent instead.
2353 2006-11-16  Jackson Harper  <jackson@ximian.com>
2355         * TreeView.cs: Need to recalc the topnode when we expand or
2356         collapse. The scrolling methods can't handle this on their own,
2357         since they use differences between the last scroll position, and
2358         those difference get completely messed up since we are expanding
2359         nodes.  This problem should probably be fixed in the scrolling
2360         methods, so they can figure out exactly where they are, but this
2361         will slow things down a little.
2362         * ThemeWin32Classic.cs: Special case for groupboxes with empty
2363         strings, makes nunit-gui look a lot nicer.
2365 2006-11-16  Chris Toshok  <toshok@ximian.com>
2367         * XplatUIX11.cs: nasty, nasty, nasty changes required because of
2368         the broken multithreaded event handling we have in here.  File
2369         this entry under "Why we should move to the new X11 backend".
2371         Any thread can make it into UpdateMessageQueue, which gets events
2372         from the X socket - some of which could belong to hwnds being
2373         managed by a different thread.  We can also have multiple threads
2374         in UpdateMessageQueue at the same time, with each one reading from
2375         the X socket.  This leads to many problems, with the following
2376         solutions:
2378         We can't use hwnd.Queue.Enqueue anywhere in here and must use
2379         EnqueueLocked.
2381         The MotionNotify compression we do can't work across threads
2382         (without locking the entire queue, perhaps) since we call
2383         hwnd.Queue.Peek, so we just punt and don't compress motion events
2384         unless the owning thread is the one which got the X event.
2386         ConfigureNotify is another fun one, since it modifies the hwnd's
2387         bounds and then enqueues the event.  We add a lock to Hwnd which
2388         is held when setting configure_pending to true (and enqueuing the
2389         event).
2391         There is a race wrt the wake socket.  we need to make sure that
2392         only 1 thread is waiting on that socket, or else a thread could
2393         sleep waiting for data that never comes.  It's difficult (but not
2394         impossible) to make happen, because it seems to require something
2395         like the following:
2397             1. Thread 1 polls on wake_receive
2398         
2399             2. poll returns saying there's data to be read on
2400                wake_receive.
2401         
2402             3. Thread 2 polls on wake_receive and immediately returns
2403                saying there's data to be read.
2405             4. Thread 2 reads the wakeup byte from wake_receive
2407             5. Thread 1 attempts to read the wakeup byte from
2408                wake_receive.
2410             6. Thread 2 exits (due to a form closing, perhaps).
2412             7. Thread 1 blocks forever.
2413         
2414         Fun, eh?
2416         Fixing the Expose handling isn't done yet, and the races inherent
2417         in that piece of code are responsible for the drawing mistakes you
2418         see when generating expose events in a MT app (like NPlot).  This
2419         one is the likely to be the hardest to bandaid, and it doesn't
2420         appear to cause anything but drawing problems.  The other issues
2421         caused apps to exit or hang.
2423         * XEventQueue.cs: output some spew when Dequeue/Enqueue/Peek are
2424         called from a different thread than the one that should be calling
2425         these functions.
2427         * Hwnd.cs: add some locks to be used by the XplatUIX11 code.
2429 2006-11-15  Chris Toshok  <toshok@ximian.com>
2431         * Application.cs: null out the context's MainForm when we exit
2432         RunLoop.  Fixes a newly checked in unit test as well as the last
2433         ODE from bug #79933.
2435 2006-11-15  Chris Toshok  <toshok@ximian.com>
2437         * Form.cs (set_Owner): allow a null value so we can clear the
2438         form's owner.
2439         (Dispose): set all our owned_form's Owner properties to null, and
2440         clear the owned_forms collection.
2441         (WM_CLOSE): clean up this a little bit.. still not right though.
2443         * ApplicationContext.cs: OnMainFormClosed should only call
2444         ExitThreadCore if the main form isn't recreating.  Fixes unit
2445         test.
2447 2006-11-15  Jonathan Pobst  <monkey@jpobst.com>
2449         [Fixes 78346]
2451         * ComboBox.cs: Set the Hwnd.no_activate flag for the ComboListBox.
2453 2006-11-15  Jonathan Pobst  <monkey@jpobst.com>
2455         [Fixes 79433]
2457         * Hwnd.cs: Add a flag to show a window, but not activate it, to 
2458         keep popup window types from stealing focus from the main form
2459         on Windows.
2461         * XPlatUIWin32.cs: Use SW_SHOWNOACTIVATE if above field is true.
2463         * MenuAPI.cs: Set above flag to true.
2465 2006-11-15  Chris Toshok  <toshok@ximian.com>
2467         * XplatUIX11.cs: mimic win32 behavior on BUTTONUP events, where
2468         the button being released is not in wParam.
2470 2006-11-15  Jonathan Pobst  <monkey@jpobst.com>
2472         * Form.cs: Add the released button to MouseEventArgs.Button
2473         for the OnMouseUp call to the MenuTracker.  Fixes menu clicking
2474         on Win32.
2476 2006-11-15  Chris Toshok  <toshok@ximian.com>
2478         * XplatUIX11.cs: add (untested) a _NET_WM_NAME implementation of
2479         GetText().  untested because it's unused in our implementation.
2480         Control.Text always caches the text, even if
2481         ControlStyles.CacheText is not set.
2483         fixes bug #79939.
2485 2006-11-15  Chris Toshok  <toshok@ximian.com>
2487         [ fixes #79933 ]
2488         
2489         * Form.cs: in Close() don't do anything after we send the WM_CLOSE
2490         message.  no hiding, no disposing.
2492         in the WM_CLOSE handler, hide the form if it's modal.
2494 2006-11-15  Chris Toshok  <toshok@ximian.com>
2496         * XplatUIX11.cs: use AddExpose instead of sending a message.
2497         fixes textbox border drawing.
2499 2006-11-15  Chris Toshok  <toshok@ximian.com>
2501         * PropertyGridView.cs: keep from crashing on mouse move/down when
2502         the property grid is empty.
2504 2006-11-14  Jackson Harper  <jackson@ximian.com>
2506         * TextControl.cs: Make PageUp and PageDown more like the MS
2507         versions.
2508         * TextBoxBase.cs: When we set the text property position the
2509         cursor at the beginning of the document.
2511 2006-11-14  Rolf Bjarne Kvinge  <RKvinge@novell.com>
2513         * Form.cs: if a mdi child's WindowState has changed
2514         before it's creation, it would display wrong control
2515         buttons.
2516         
2517 2006-11-14  Alexander Olk  <alex.olk@googlemail.com>
2519         * TreeView.cs: De-uglify TreeView checkbox checkmarks.
2520           (Fixes bug #79927)
2522 2006-11-14  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2524         * XplatUIX11.cs: send a WM_NCPAINT on WM_NCCALCSIZE so that 
2525         the window gets to paint its borders even if the window is
2526         getting smaller.
2527         
2528         * Form.cs: on a WM_NCPAINT invalidate the entire menu, 
2529         otherwise the old control buttons would still be painted 
2530         if the window gets bigger.
2531         
2532         * PaintEventArgs.cs: add an internal method so that the clip 
2533         rectangle can be changed.
2534         
2535 2006-11-13  Chris Toshok  <toshok@ximian.com>
2537         [ fixes bug #79745 ]
2538         
2539         * NotifyIcon.cs: lots of cleanup.
2541         * X11Structs.cs: add an enum for XEMBED messages.
2543         * XplatUIX11.cs: reindent one of the giant switch statements, it
2544         was taking up an additional tab stop, and this file is already way
2545         too wide for my laptop's screen.
2547         Also, add handling for the XEmbed EMBEDDED_NOTIFY message.  When
2548         we get it, resize the hwnd to the WMNormalHints max_width/height.
2550 2006-11-13  Jackson Harper  <jackson@ximian.com>
2552         * TextBoxBase.cs: Compute the value changes for the mouse wheel
2553         teh simple way.
2555 2006-11-13  Chris Toshok  <toshok@ximian.com>
2557         * XplatUIX11.cs, XplatUIStructs.cs: kind of a gross fix for
2558         #79898.  force a reference to the Region to stick around so the
2559         unmanaged object isn't collected (rendering our handle in the MSG
2560         stale).
2562 2006-11-13  Chris Toshok  <toshok@ximian.com>
2564         * XplatUIX11.cs: fix #79917 for window managers which support
2566         using XStoreName on the raw utf8, and we need to convert to
2567         COMPOUND_TEXT if it's non-latin1.
2569 2006-11-13  Chris Toshok  <toshok@ximian.com>
2571         * Form.cs (set_DialogResult): we need to set closing to false if
2572         we're setting our result to None.  fixes bug #79908.
2574 2006-11-13  Jackson Harper  <jackson@ximian.com>
2576         * TextControl.cs: When formatting text, compute the adjusted tag
2577         lengths correctly, using FindTag for the end tag instead of trying
2578         to figure it out outselves.
2579         * TreeNode.cs: Use ActualItemHeight, which is the actual height of
2580         the item, ItemHeight doesn't work, because trees with large
2581         imagelists use those for their height
2582         * TreeView.cs: ActualItemHeight factors in the image height
2583         - compute left edge of checkboxes correctly
2584         - when expanding/collapsing move the bottom down one pixel, so we
2585         aren't moving part of the node
2587 2006-11-13  Rolf Bjarne Kvinge  <RKvinge@novell.com>
2589         * XplatUIX11.cs: The PaintEventArgs is also added to the drawing
2590         stack in PaintEventStart so that it won't get disposed by the gc
2591         before reaching PaintEventEnd.
2593 2006-11-13  Jackson Harper  <jackson@ximian.com>
2595         * TextBoxBase.cs: Don't select the word if we are on a line with
2596         no text.
2597         - We don't need to position the caret on mouse up, since the mouse
2598         move handler should be doing this
2599         - When double clicking a blank line, the caret is advanced to the
2600         next line.
2602 2006-11-13  Gert Driesen  <drieseng@users.sourceforge.net>
2604         * TreeNodeCollection.cs: Avoid duplicating indexer code.
2606 2006-11-12  Gert Driesen  <drieseng@users.sourceforge.net>
2608         * ColorDialog.cs: Reset size of dialog between calls to ShowDialog.
2609         Fixes part of bug #79910.
2611 2006-11-11  Alexander Olk  <alex.olk@googlemail.com>
2613         * ColorDialog.cs: Fix a NRE when adding a color to custom colors
2614           (bug #79903). Some minor string updates to match ms.
2616 2006-11-10  Alexander Olk  <alex.olk@googlemail.com>
2618         * FileDialog.cs: Don't add an extension if the filename
2619           already ends with that extension.
2621 2006-11-10  Jackson Harper  <jackson@ximian.com>
2623         * TreeView.cs: Use the currently highlighted node for the
2624         BeforeSelect event.
2625         * TextBoxBase.cs: There is no need to expand selection on
2626         MouseMove.
2627         - CanUndo means 'is there any undo operations', not 'is undo
2628         allowed on this textcontrol. Fixed ClearUndo unit test.
2630 2006-11-10  Andreia Gaita  <shana.ufie@gmail.com>
2632         * Button.cs: only perform click when button is Selectable (so as 
2633         not to activate default buttons when they're disabled)
2634         
2635         * Control.cs: Rewrite of the SelectNextControl and related 
2636         methods. HandleClick now selects next control if the current one
2637         is being disabled.
2638         
2639         * Form.cs: OnActivated selects next active control only if Load 
2640         has already occurred. If Load hasn't run, there's no point in 
2641         selecting here, Load might change the state of controls.
2642         
2643         * FocusTest.cs: Tests marked as working again for these fixes
2645 2006-11-10  Chris Toshok  <toshok@ximian.com>
2647         * XplatUIX11.cs: a couple of fixes.
2649         - use XInternAtoms with almost all the atoms we need to register,
2650         instead of many, many calls to XInternAtom.  should help a bit on
2651         startup time, at the expense of making the code look a little
2652         worse.
2654         - fall back to setting TransientFor on TOOLWINDOW's if their hwnd
2655         isn't reparented (which seems to be a clue that we're running fon
2656         compiz) and they have an Owner form.  This fixes the tool windows
2657         in paint.net when running under compiz.
2659         - when setting the opacity of a window, support both the case
2660         where the window has been reparented and also when it hasn't been.
2661         Since compiz/beryl doesn't seem to reparent windows, and these are
2662         the only window managers which support translucency, I'm not sure
2663         why we need the hwnd.reparented case at all.. but leave it in.
2664         now we get translucent windows in paint.net under compiz/beryl.
2666 2006-11-10  Alexander Olk  <alex.olk@googlemail.com>
2668         * FileDialog.cs: Always return the value for FilterIndex that
2669           was set. Internally convert it to values that make sense.
2671 2006-11-10  Everaldo Canuto  <everaldo@simios.org>
2672         
2673         * ThemeWin32Classic.cs: Fix drowp down arrow borders.
2675 2006-11-10  Everaldo Canuto  <everaldo@simios.org>
2677         * Toolbar.cs: Change default value of DropDownArrows to true, the 
2678         signature still using false to make it compatible with MS but the 
2679         initial value is true. Fixes #79855.
2681 2006-11-10  Alexander Olk  <alex.olk@googlemail.com>
2683         * MimeIcon.cs: Don't throw an exception on windows. Mime stuff is
2684           only available on Linux.
2686 2006-11-09  Everaldo Canuto  <everaldo@simios.org>
2688         * Toolbar.cs, ToolBarButton.cs: Fix wrong separator size and
2689         reduce number of calls to redraw method during toolbar creation.
2691 2006-11-09  Mike Kestner  <mkestner@novell.com>
2693         * ListView.cs : raise SelectedIndexChanged when an item is selected
2694         programmatically via the Item.Selected property.  Gert's nice 
2695         ListViewSelectedIndexChanged test fixture now runs clean.
2697 2006-11-09  Mike Kestner  <mkestner@novell.com>
2699         * ListView.cs : raise SelectedIndexChanged when a selected item is
2700         removed from the item collection using Remove or RemoveAt.
2702 2006-11-09  Mike Kestner  <mkestner@novell.com>
2704         * ListView.cs : raise SelectedIndexChanged once per selected item
2705         for compat with MS.  Fixes #79849+.
2707 2006-11-09  Chris Toshok  <toshok@ximian.com>
2709         * TabControl.cs: initialize row_count to 0, and set it to 1 when
2710         we need to (if we have any tab pages).  Fixes unit test.
2712 2006-11-09  Chris Toshok  <toshok@ximian.com>
2714         * Label.cs (CalcPreferredWidth): if Text == "", our preferred
2715         width is 0, not 3.  Fixes a unit test.
2717 2006-11-09  Mike Kestner  <mkestner@novell.com>
2719         * ListView.cs : use Implicit scrollbars so that focus isn't 
2720         stolen from the listview when they are clicked. Fixes #79850.
2722 2006-11-09  Chris Toshok  <toshok@ximian.com>
2724         * PropertyGridView.cs (OnPaint): only call DrawGridItems if we
2725         have a root item.  Fixes #79879.
2727 2006-11-09  Alexander Olk  <alex.olk@googlemail.com>
2729         * FileDialog.cs:
2730           - Fix ToString ()
2731           - An ArgumentException is now thrown if a wrong filter
2732             is applied (matches ms). The previous filter doesn't change
2733             anymore if an exception is thrown.
2734           - Changing the FileName property also affects FileNames
2735         * ColorDialog.cs: The length of the CustomColors array is always
2736           16. It doesn't matter if we use a smaller array or null to update
2737           or change the custom colors property.
2738         * FolderBrowserDialog.cs: Throw an InvalidEnumArgumentException if
2739           for RootFolder if we get a undefined value.
2741 2006-11-09  Rolf Bjarne Kvinge  <RKvinge@novell.com>
2743         * StatusBarPanel.cs: 
2744         - Width is set to MinWidth if Width is smaller than
2745         MinWidth. Fixes #79842.
2746         - MinWidth now always overrides Width (MSDN says MinWidth
2747         is set to Width when AutoSize = None, but they do not 
2748         behave like that).
2749         - Style has now the the correct default value.
2750         
2751 2006-11-09  Rolf Bjarne Kvinge  <RKvinge@novell.com>
2753         * TrackBar.cs: 
2754         - The control is completely invalidated on 
2755         Got/LostFocus to draw the focus rectangle correctly.
2756         - When AutoSize then height is always 45 (width for 
2757         vertical controls).
2758         
2759         * ThemeWin32Classic.cs: The TrackBar thumb is now centered
2760         on the mouse when moved and it doesn't move when grabbed
2761         until the mouse moves as well. Also fixed some wrong 
2762         calculations when clicking on the thumb (control thought
2763         click was outside of thumb and didn't grab it).
2764         Fixes some of the issues in #79718.
2766 2006-11-08  Everaldo Canuto  <everaldo@simios.org>
2768         * Toolbar.cs: Prevent disabled button to highlight. Fixes #79868.
2770 2006-11-08  Chris Toshok  <toshok@ximian.com>
2772         * PropertyGridView.cs: only call ToggleValue if the item is not
2773         readonly.
2775 2006-11-08  Jackson Harper  <jackson@ximian.com>
2777         * TextBoxBase.cs: The RichTextBox and textbox have very different
2778         word selection methods.  Implement the textbox's simple word
2779         selection here, and let the RichTextBox override and provide it's
2780         own.
2781         - Don't do extra selection on mouseup
2782         * RichTextBox.cs: Use the documents word selection algorithm, I
2783         think ideally, this function will be pulled into the
2784         RichTextBox.cs code someday.
2786 2006-11-08  Chris Toshok  <toshok@ximian.com>
2788         * RootGridEntry.cs: new class to represent GridItemType.Root.
2790         * CategoryGridEntry.cs: reformat, and add boilerplate.
2791         
2792         * GridEntry.cs: remove the UIParent stuff - turns out .Parent
2793         returns the UI parent anyway, and we need special handling to
2794         implement the GetTarget method in the face of it.  Also, implement
2795         Select().
2797         * PropertyGrid.cs, PropertyGridView.cs: a number of fixes.  create
2798         a root grid item, and use that instead of PropertyGrid.grid_items.
2799         Also, make use of TypeConverters (and add limitted support for
2800         ICustomTypeDescriptors) when initially populating the grid.
2801         Arrays now show up more or less properly.
2803 2006-11-08  Chris Toshok  <toshok@ximian.com>
2805         * Application.cs: set the modal dialog to non modal after we close
2806         it.  Fixes bug #79866.
2808 2006-11-08  Jackson Harper  <jackson@ximian.com>
2810         * TextControl.cs: When combining lines carry over the line end
2811         style from the end line.
2812         - Invalidate the selected area when setting it, if it is visible.
2813         * TextBoxBase.cs: Only rich text box can do full line selects.
2814         - Make sure to set the cursor position when there is a click,
2815         otherwise two clicks in separate areas could cause a large chunk
2816         to be selected.
2818 2006-11-07  Everaldo Canuto  <everaldo@simios.org>
2820         * Toolbar.cs: Release flat button borders when Toolbar lost focus. 
2821         Fixes #79863.
2823 2006-11-07  Everaldo Canuto  <everaldo@simios.org>
2825         * Toolbar.cs: Prevent toolbar to open more than one tooltip at same
2826         time. Remove tooltips when ToolButton click events.  Fixes #79856.
2828 2006-11-07  Everaldo Canuto  <everaldo@simios.org>
2830         * MenuAPI.cs: Ignore right click for menu actions and fixes
2831         menu border when clicked.  Fixes #79846.
2833 2006-11-07  Everaldo Canuto  <everaldo@simios.org>
2835         * XplatUIX11.cs, XplatUIX11.cs: Fix MouseRelease to only release
2836         MouseState after create wParam for message, this fixes mouse button 
2837         equal none in mouse up events.
2838         
2839 2006-11-07  Andreia Gaita  <shana.ufie@gmail.com>
2841         * Control.cs : Focus() now calls Select to set the Container's
2842         Active Control and to give it focus. To avoid infinite recursion
2843         (because ActiveControl also calls Focus at one point), a check 
2844         is made in Focus with the help of a new internal variable
2845         is_focusing.
2847 2006-11-07  Mike Kestner  <mkestner@novell.com>
2849         * ListView.cs : raise OnSelectedIndexChanged in CreateHandle
2850         if there's a selection.  Fixes #79849.
2852 2006-11-07  Gert Driesen  <drieseng@users.sourceforge.net>
2854         * PropertyGrid.cs: Avoid fixed height of help description label.
2855         Fixes part of bug #79829.
2857 2006-11-07  Chris Toshok  <toshok@ximian.com>
2859         * XplatUIX11.cs: fix #79790 again, by using the
2860         _NET_WM_STATE_SKIP_TASKBAR atom to implement Form.ShowInTaskbar.
2862 2006-11-07  Everaldo Canuto  <everaldo@simios.org>
2864         * ToolBar.cs: Fix left click checking.
2866 2006-11-07  Chris Toshok  <toshok@ximian.com>
2868         * ProgressBar.cs: fix a typo in ToString().  fixes a unit test.
2870 2006-11-07  Chris Toshok  <toshok@ximian.com>
2872         * RelatedPropertyManager.cs: set property_name in our ctor.  fixes
2873         PropertyManager unit tests.
2875         * PropertyManager.cs: make property_name internal.
2877 2006-11-07  Chris Toshok  <toshok@ximian.com>
2879         * ButtonBase.cs: initialize base.ime_mode to ImeMode.Disable to
2880         pass a unit test.  Also, don't set image_index to anything in
2881         response to setting the ImageList property.
2883 2006-11-07  Everaldo Canuto  <everaldo@simios.org>
2885         * ToolBar.cs: Ignore click events when mouse button is not a
2886         left button, only accepts other button for dropdown menus.  
2887         Fixes #79854.
2889 2006-11-07  Chris Toshok  <toshok@ximian.com>
2891         * DataGrid.cs: make the back and parent row buttons a little less
2892         ugly.
2894 2006-11-07  Jackson Harper  <jackson@ximian.com>
2896         * TextBoxBase.cs: When converting to Text don't put line breaks in
2897         for soft line breaks.
2898         * TextControl.cs: There is an initial "fake" line in the document,
2899         this is now a soft break line, so that an extra line feed doesn't
2900         get added to the end of documents.
2902 2006-11-07  Chris Toshok  <toshok@ximian.com>
2904         [ fix bug #79778 ]
2905         
2906         * CurrencyManager.cs: if the list is readonly, don't bother
2907         checking if IBindingList.AllowNew is true.
2909         * ThemeWin32Classic.cs (DataGridPaintParentRow): make this work
2910         for non-DataRowView datasources..  or rather, make it not crash.
2911         (DataGridPaintRelationRow): make sure we limit the row painting to
2912         the area not covered by the row header, and make our cell width at
2913         least large enough to cover the relation area.  This allows grids
2914         that have relations but no rows to render correctly.
2915         (DataGridPaintRowContents): same type of changes here.
2916         (SetDataSource): move back to always calling
2917         CalcAreasAndInvalidate.  this fixes a crash/drawing problem when
2918         navigating back through relations.
2919         (HitTest): handle the case where we have no cells but have
2920         relations.  Right now we generate a hit in cell 0 of whatever the
2921         row is, not sure if this is strictly correct, but it works for our
2922         purposes.
2923         
2924         * DataGrid.cs (EndEdit, CancelEdit): if we have no columns, don't
2925         bother doing anything.
2927 2006-11-07  Jonathan Pobst  <monkey@jpobst.com>
2929         * StatusStrip.cs, ToolStripStatusLabel.cs: By request, an
2930         early version of StatusStrip.  Not responsible for eaten
2931         application or firstborn children.
2933 2006-11-06  Chris Toshok  <toshok@ximian.com>
2935         * TabControl.cs: in OnGotFocusInternal/OnLostFocusInternal don't
2936         call GetTabRect with a -1 index.  Fixes #79847.
2938 2006-11-06  Jackson Harper  <jackson@ximian.com>
2940         * TreeNodeCollection.cs: Update scrollbars after clearing.
2942 2006-11-06  Chris Toshok  <toshok@ximian.com>
2944         * NumericUpDown.cs: fix the ToString method for some unit test
2945         love.
2947 2006-11-06  Chris Toshok  <toshok@ximian.com>
2949         * PropertyGrid.cs:
2950         - set the initial SelectedGridItem if we can.
2952         - Exclude non-mergable properties only if we're merging > 1
2953         object.  Merging 1 object isn't really merging, obviously.
2955         - Handle PropertySort.NoSort just like Alphabetical, which is
2956         wrong of course, but at least gets things on the screen.
2957         
2958         * PropertyGridView.cs:
2959         - Add method "FindFirstItem" which finds the first property grid
2960         item, so we can select it by default.
2962         - make use of GridEntry.CanResetValue.
2964         - Don't call RedrawBelowItemOnExpansion here anymore, the
2965         individual GridEntry's will do that.
2967         - Remove the ITypeDescriptorContextImpl internal class.
2968         
2969         * GridEntry.cs:
2970         - this class needs to implement ITypeDescriptorContext, as it's
2971         what MS's PropertyDescriptorGridEntry does, which means we can
2972         remove the ITypeDescriptorContextImpl internal class from
2973         PropertyGrid.cs.  This fixes the crashing portion of bug #79829.
2975         - keep a reference to our PropertyGridView, and move the call to
2976         RedrawBelowItemOnExpansion here from PGV.  This means
2977         programmaticly setting Expanded actually does something visible.
2979         - add a CanResetValue() function which takes into account our
2980         possibly multiple "selected_objects" in the merged case.  Shifting
2981         PropertyGridView to use this method fixes another unreported
2982         crasher found running the test for #79829.
2984         - when Top or Bounds is updated, make sure the PropertyGridTextBox
2985         is updated to reflect this.
2987         * CategoryGridEntry.cs: the ctor takes the PGV now.
2988         
2989 2006-11-06  Jackson Harper  <jackson@ximian.com>
2991         * TextControl.cs: These are 1 based.
2992         * TextBoxBase.cs: When setting the selected text, don't change the
2993         selected text tags, this is done by ReplaceText, just position the
2994         cursor at the end of the new text.
2996 2006-11-06  Alexander Olk  <alex.olk@googlemail.com>
2998         * ListView.cs: Allow label edit only when, when LabelEdit is
2999           set to true.
3001 2006-11-06  Jackson Harper  <jackson@ximian.com>
3003         * TextControl.cs: If a suitable wrapping position isn't found,
3004         just wrap right in the middle of a word.
3006 2006-11-06  Alexander Olk  <alex.olk@googlemail.com>
3008         * ListView.cs, ListViewItem.cs: Implement LabelEdit. Fixes
3009           bug #79820.
3011 2006-11-06  Jackson Harper  <jackson@ximian.com>
3013         * TreeView.cs: Can't use the VisibleCount property when setting
3014         scrollbar heights, because this doesn't take into account whether
3015         or not the horz scrollbar just came visible.
3017 2006-11-05  Everaldo Canuto  <everaldo@simios.org>
3019         * MenuAPI.cs: Deactivate menu on mouse up when menus it is already
3020         activated.  Fixes #79369, #79832.
3022 2006-11-05  Alexander Olk  <alex.olk@googlemail.com>
3024         * FileDialog.cs: *sigh* Because of recent runtime changes (r67043) I
3025           had to remove support for links that point to a directory. FileInfo
3026           returns no usefull information (means, the directory they point to)
3027           for such links. Replaced some empty string ("") with String.Empty.
3029 2006-11-04  Gert Driesen  <drieseng@users.sourceforge.net>
3031         * TreeNodeCollection.cs: To match MS, in 1.0 profile throw 
3032         NullReferenceException when attempting to remove node that is not in
3033         collection. Throw NullReferenceException when null is passed to 
3034         Remove. Allow first element of the collection to be removed. Fixes
3035         bug #79831.  In GetEnumerator ().Current return null if positioned 
3036         before the first element of the collection. In GetEnumerator ().Reset,
3037         position before first element of the collection.
3039 2006-11-04  Gert Driesen  <drieseng@users.sourceforge.net>
3041         * PropertyGrid.cs: To match MS, remove default title and description
3042         for panel. Fixed tooltips for Categorized and Alphabetic toolbar
3043         buttons.
3045 2006-11-04  Chris Toshok  <toshok@ximian.com>
3047         * Theme.cs: add a Clamp method, just for kicks.
3049         * ThemeWin32Classic.cs: clamp all color components to [0..255].
3051 2006-11-04  Chris Toshok  <toshok@ximian.com>
3053         * Form.cs: if the form isn't visible, Close() does nothing.
3055 2006-11-03  Chris Toshok  <toshok@ximian.com>
3057         * Form.cs (Close): if the form is modal, don't Dispose of it, only
3058         Hide it.
3059         (WndProc): don't Dispose after handling the WM_CLOSE message.
3061         * Application.cs (RunLoop): toplevels is a list of Forms, so treat
3062         them as such, instead of using casts from Control to Form.  Also,
3063         don't Dispose of the modal dialog when we fall out of the loop -
3064         Close() it instead.
3066         fixes bug #79813.
3068 2006-11-03  Chris Toshok  <toshok@ximian.com>
3070         * Control.cs (Dispose): only go through the dispose thing if we're
3071         @disposing, and we haven't already been disposed.  Fixes bug
3072         #79814.
3074         * Form.cs: no reason to call "base.Dispose()" here instead of
3075         "Dispose()".
3077 2006-11-03  Mike Kestner  <mkestner@novell.com>
3079         * ComboBox.cs : use ToString instead of casts in AddItem for
3080         sorting functionality.  Fixes #79812.
3082 2006-11-03  Chris Toshok  <toshok@ximian.com>
3084         * Application.cs: pave the way for actually using the thread
3085         exception dialog.  it's ifdefed out at the moment.
3087 2006-11-03  Chris Toshok  <toshok@ximian.com>
3089         * ThreadExceptionDialog.cs: until we get a better layout, actually
3090         hide the details textbox and label when we shouldn't see them.
3092 2006-11-03  Jackson Harper  <jackson@ximian.com>
3094         * TextBoxBase.cs: Don't bail from the scrollbar calcs for non
3095         multiline textboxes anymore.  This method also determines the
3096         width/height of a textboxes canvas area.
3097         - Sorta a revert of the last patch.  For multiline just position
3098         the controls, then bail.  This way the scrollbar width won't be
3099         altered.
3101 2006-11-03  Everaldo Canuto  <everaldo@simios.org>
3103         * ThemeWin32Classic.cs: Dont paint inner lines of 3D border when
3104         it dont need.  Fixes #79537.
3106 2006-11-02  Jackson Harper  <jackson@ximian.com>
3108         * X11Dnd.cs: We always allow copy, since XDND implies Copy.  Also
3109         send the status after firing the DndOver event.
3111 2006-11-02  Rolf Bjarne Kvinge  <RKvinge@novell.com>
3113         * TrackBar.cs: Now orientation only switches height / width if
3114         the control's handle is created (Win32 does it like this). Also 
3115         fixed a typo in ToString() for a test to pass, changed the 
3116         exception thrown in set_LargeChange and set_SmallChange to 
3117         match Win32 behaviour, and added TrackBar tests to the unit 
3118         tests.
3120 2006-11-02  Chris Toshok  <toshok@ximian.com>
3122         * XplatUIX11.cs: the atom we want is _NET_WM_STATE_SKIP_TASKBAR,
3123         not _NET_WM_STATE_NO_TASKBAR.
3125 2006-11-02  Jackson Harper  <jackson@ximian.com>
3127         * TextControl.cs: Increment count by one, since in the update view
3128         count - 1 is used.
3130 2006-11-02  Jackson Harper  <jackson@ximian.com>
3132         * TextBoxBase.cs: Use client rectangle not bounds for checking if
3133         the mouse is in the client rectangle (duh).
3135 2006-11-02  Rolf Bjarne Kvinge  <RKvinge@novell.com>
3136         
3137         * TrackBar.cs: Fixed trackbar jumping around when clicking
3138         on it - the trackbar was not detecting correctly at which
3139         side of the thumb the click was done. (fixes #79718)
3141 2006-11-02  Everaldo Canuto  <everaldo@simios.org>
3143         * ListBox.cs: scroll visible area when change SelectedIndex to
3144         a non visible area.  Fixes #79481.
3146 2006-11-01  Jackson Harper  <jackson@ximian.com>
3148         * TextControl.cs: When replacing the selection move the selection
3149         start/end/anchor to the end of the new text.
3151 2006-11-01  Jackson Harper  <jackson@ximian.com>
3153         * XplatUIWin32.cs: When setting the parent change the controls
3154         visibility to it's visibility flag, not to it's old parents
3155         visibility (.Visible walks the parent chain).
3157 2006-11-01  Chris Toshok  <toshok@ximian.com>
3159         * XplatUIX11.cs: revert the #79790 fix, as the simple.
3160         XSetTransientForHint fix breaks paint .net's tool windows.  more
3161         work needed for that one.
3163 2006-11-01  Chris Toshok  <toshok@ximian.com>
3165         * ScrollBar.cs: throw ArgumentException instead of Exception in
3166         LargeChange/SmallChange setters.  fixes unit tests.
3168 2006-10-31      Andreia Gaita <shana.ufie@gmail.com>
3170         * ContainerControl.cs: reverted rev.67183 (which was itself
3171         a reversion of rev.66853... eh).
3172         
3173         * Control.cs: Fixes Reflector hang by changing Focus() call
3174         to what it was before rev.66643 (calling Select() here sets 
3175         ActiveControl, which in some situations calls back Focus and 
3176         eventually does a stack overflow). Temp fix.    
3177         Changes to GetNextControl() to not look for children to select when
3178         parent cannot be selectable (so it looks for siblings instead)  
3179         
3180 2006-10-31  Mike Kestner  <mkestner@novell.com>
3182         * CheckedListBox.cs : off by one error in returned index from
3183         ObjectCollection.Add.  Fixes #79758.
3185 2006-10-31  Chris Toshok  <toshok@ximian.com>
3187         * UpDownBase.cs: remove the OnGotFocusInternal/OnLostFocusInternal
3188         calls for the textbox/spinner, to keep from recursing to the point
3189         where we crash.  Fixes #79760.
3191 2006-10-31  Chris Toshok  <toshok@ximian.com>
3193         * ListControl.cs (set_SelectedValue): don't throw exceptions on
3194         null/"" value, just return.  matches ms's behavior and fixes some
3195         failing tests.
3197 2006-10-31  Chris Toshok  <toshok@ximian.com>
3199         * Control.cs (set_Capture): make a logic a little easier to
3200         follow.
3202         * XplatUIX11.cs (CleanupCachedWindows): zero out the Grab window
3203         if it's being destroyed.  A necessary fix surely, but a bandaid
3204         also, to fix the stuck capture problem in bug #78413.
3206 2006-10-31  Chris Toshok  <toshok@ximian.com>
3208         * XplatUIX11.cs: fix a couple of compiler warnings, and follow the
3209         convention of clearing hwnd.ClientRect when we set the
3210         width/height (so it'll be recalculated by Hwnd).
3212 2006-10-31      Andreia Gaita <shana.ufie@gmail.com>
3214         * ContainerControl.cs: reversed Contains check from
3215         ActiveControl due to hanging problems. This fix
3216         partly regresses #79667 (button does not have
3217         initial focus), so this might be a symptom for 
3218         a larger parenting problem (set_ActiveControl
3219         is being called but the child control does
3220         not have the parent set yet?)   
3221         
3222 2006-10-31  Mike Kestner  <mkestner@novell.com>
3224         * MenuAPI.cs : fix keynav when menu is click activated.
3226 2006-10-31  Jonathan Pobst  <monkey@jpobst.com>
3228         * ToolStrip*: Version 0.2.
3230         * MenuStrip.cs: Version 0.1.
3232         * Form.cs: Add a 2.0 MenuStrip tracker like the 1.1 Menu one.
3234 2006-10-30  Chris Toshok  <toshok@ximian.com>
3236         [ fixes the oversized notify icon issue in bug #79745 ]
3237         
3238         * NotifyIcon.cs: scale the icon down to the size we're given by
3239         the XplatUI layer (this would be faster if we did it once instead
3240         of whenever we paint..)  Also, remove the WM_NCPAINT handling,
3241         since it's never invoked.
3243         * XplatUIX11.cs: the gnome and kde systrays use icons that are 24
3244         pixels high by default, so let's hardcode our systray icon to that
3245         size.  The SYSTEM_TRAY protocol should really have a way for
3246         client apps to query for the correct icon size.. but oh well.  A
3247         couple of patches to deal with the screwy client_window ==
3248         whole_window notifyicon stuff (we don't want to PerformNCCalc, for
3249         instance, and also make sure we don't XSelectInput twice).
3251 2006-10-30  Chris Toshok  <toshok@ximian.com>
3253         * Control.cs: ugh, the unit test fix (CH11, yesterday) breaks when
3254         recreating forms.  Control recreation is the bane of my existence.
3255         Fix it in a way that keeps everyone happy.
3257 2006-10-30  Chris Toshok  <toshok@ximian.com>
3259         * XplatUIX11.cs: use StructureNotifyMask on all whole_windows, not
3260         just non-CHILD ones.  otherwise sometimes scrollbars end up with
3261         client_windows not being resized to the proper size (ReportBuilder
3262         shows this extremely well).
3264 2006-10-30  Chris Toshok  <toshok@ximian.com>
3266         * XplatUIX11.cs (SetWMStyles): reinstate the XSetTransientForHint
3267         for non-WS_EX_APPWINDOW windows.  This is what keeps them from
3268         showing up in the gnome taskbar.  Fixes bug #79790.
3270 2006-10-30  Chris Toshok  <toshok@ximian.com>
3272         * ApplicationContext.cs: guard against a NRE.
3274         * Application.cs: null out the old MainForm for the context, so we
3275         don't try to use it again once it's disposed.  Fixes bug #79783.
3277 2006-10-30  Chris Toshok  <toshok@ximian.com>
3279         * DataGrid.cs (set_DataSource, set_DataMember): if we have a
3280         BindingContext, set the data source directly, otherwise do the
3281         lazy approach - the actual ListManager will be created when we get
3282         a BindingContext. Fixes bug #79700.
3284 2006-10-30  Jonathan Pobst  <monkey@jpobst.com>
3286         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIOSX.cs,
3287           XplatUIX11.cs: Remove old 2 parameter SetVisible.
3289         * Control.cs: Use the new 3 parameter SetVisible with activate = true.
3291 2006-10-30  Jonathan Pobst  <monkey@jpobst.com>
3293         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs: Add an overload
3294         of SetVisible that allows a window to be shown, but not activated.
3295         This is needed on Windows for MenuStrip, and can probably be used
3296         with MainMenu and ComboBox to fix the focus stealing issues on
3297         Windows.
3299         * XplatUIOSX.cs, XplatUIX11.cs: Not needed, call existing SetVisible.
3301 2006-10-30  Alexander Olk  <alex.olk@googlemail.com>
3303         * PictureBox.cs: Fix the output of the ToString method.
3305 2006-10-29  Chris Toshok  <toshok@ximian.com>
3307         * Control.cs (get_TopLevelControl): fix bug #79781.
3309 2006-10-29  Chris Toshok  <toshok@ximian.com>
3311         * ListControl.cs (set_DataSource): throw Exception here, not
3312         ArgumentException, to match MS behavior.
3314 2006-10-29  Chris Toshok  <toshok@ximian.com>
3316         * Form.cs: remove the try-catch's around calls to GetWindowState.
3317         We can just check the return value.
3319         * XplatUIX11.cs: don't throw exceptions from GetWindowState.
3320         Instead return -1.
3322         * XplatUI.cs: Add note about additional return value for
3323         GetWindowState.
3325 2006-10-29  Chris Toshok  <toshok@ximian.com>
3327         * Control.cs (CreateHandle): when we create our handle, we also
3328         create the handles of our child controls.  Fixes one of the
3329         Control unit tests (CH11).
3331 2006-10-28  Alexander Olk  <alex.olk@googlemail.com>
3333         * MimeIcon.cs: If a gnome icon doesn't exist add a default icon.
3335 2006-10-28  Alexander Olk  <alex.olk@googlemail.com>
3337         * ThemeClearlooks.cs: A little speedup.
3339 2006-10-27  Chris Toshok  <toshok@ximian.com>
3341         * Control.cs: implement Control.FromChildHandle in a way that
3342         matches the docs (and fixes the failed test.)
3344 2006-10-27  Chris Toshok  <toshok@ximian.com>
3346         * DataGridTableStyle.cs: reproduce buggy MS behavior (with
3347         comments).
3349         * DataGrid.cs: implement ResetForeColor such that the tests
3350         succeed.
3351         
3352 2006-10-27  Chris Toshok  <toshok@ximian.com>
3354         * ToolBarButton.cs: setting text/tooltiptext to null results in it
3355         being set to "".  Fixes bug #79759.
3357 2006-10-27  Jackson Harper  <jackson@ximian.com>
3359         * TextControl.cs: We need to clear the entire selection area when
3360         setting the start, otherwise multiline selections are still
3361         visible.
3363 2006-10-26  Chris Toshok  <toshok@ximian.com>
3365         * PropertyGridView.cs: 
3367         - ifdef all the code specific to the double
3368         buffer case, and provide some alternatives in the non-doublebuffer
3369         code, which makes heavy use of XplatUI.ScrollWindow to move things
3370         around without having to invalidate (and cause flicker).  There
3371         are still some drawing problems in the non-doublebuffered case, so
3372         DOUBLEBUFFER is defined by default.
3374         - Fix the way dropdowns are handled.  now we explicitly watch for
3375         the events which might cause the dropdown to close, and break out
3376         of the nested event loop there.  This gets rid of all Capture
3377         code, at the expense of the Msg special casing.  Seems to work,
3378         though, and fixes bug #79743.
3380 2006-10-27  Rolf Bjarne Kvinge <RKvinge@novell.com>
3381         * Control.cs: SetIsRecreating now recreates implicitly added
3382         child controls as well. Finally fixes #79629. The flag passed to 
3383         SetIsRecreating has also been removed since it wasn't used.
3384         
3385 2006-10-26  Carlos Alberto Cortez <calberto.cortez@gmail.com>
3387         * PageSetupDialog.cs: Clean some code, fix some bits, 
3388         add some checks, and add a printer sub-dialog.
3390 2006-10-26  Chris Toshok  <toshok@ximian.com>
3392         * PropertyGrid.cs: make set_SelectedObject call
3393         set_SelectedObjects, and move the duplicate logic to the
3394         SelectedObjects setter.  Also, raise SelectedObjectsChanged.
3396         * PropertyGridView.cs: hide the textbox when we get a
3397         SelectedObjectsChanged event.
3399         Fixes bug #79748.
3401 2006-10-26  Chris Toshok  <toshok@ximian.com>
3403         * PropertyGridView.cs: deal with the type converter not supporting
3404         GetStandardValues() or GetStandardValues() returning null, which
3405         is does in the default case.  Fixes #79742.
3407 2006-10-25  Andreia Gaita <shana.ufie@gmail.com>
3409         * CheckedListBox.cs: nunit no longer crashes when selecting 
3410         Project/Edit menu option
3411         
3412 2006-10-25  Andreia Gaita <shana.ufie@gmail.com>
3414         * MenuAPI.cs: prevent ExecFocusedItem from blowing up if there
3415         is no menu selected. fixes #79739
3417 2006-10-25  Chris Toshok  <toshok@ximian.com>
3419         * PropertyGridView.cs: factor out the splitter invalidation code
3420         into the SplitterPercent setter, and for kicks implement the
3421         Ctrl-Left/Ctrl-Right handling that moves the splitter by a small
3422         amount in either direction.
3424 2006-10-25  Chris Toshok  <toshok@ximian.com>
3426         * PropertyGridView.cs: do some cleanup of the brush used to draw
3427         text - read only fields should be grayed out.  not sure how to do
3428         this with the textbox, though.  but the textbox's should also be
3429         readonly now at least.  Also, hide/show the textbox when resizing
3430         the control.
3431         
3432         * CursorConverter.cs: use System.Reflection when getting the
3433         properties of Cursors, as TypeDescriptor.GetProperties isn't
3434         returning static properties.
3436 2006-10-25  Chris Toshok  <toshok@ximian.com>
3438         * PropertyGridView.cs: factor out the up/down handling, and reuse
3439         it for page up/down.  also add End/Home support.
3441 2006-10-25  Chris Toshok  <toshok@ximian.com>
3443         * PropertyGridView.cs:
3445         - ensure the selected grid item is visible in the scrolled area,
3446         fixes bug #79572.
3448         - fix Keys.Down handling when you're on the last item in the
3449         propertygrid.
3451 2006-10-25  Mike Kestner  <mkestner@novell.com>
3453         * MenuAPI.cs : set the ActiveTracker for MainMenu non-popup 
3454         clicks too.  Fixes #79725.
3456 2006-10-24  Chris Toshok  <toshok@ximian.com>
3458         * PropertyGrid.cs: use property.Converter instead of
3459         TypeDescriptor.GetConverter(property.PropertyType), so we catch
3460         TypeConverters declared on the property as well as on the
3461         PropertyType.  Fixes bug #79678.
3463 2006-10-24  Alexander Olk  <alex.olk@googlemail.com>
3465         * MimeIcon.cs, Mime.cs:
3466           Fallback to the default platform handler if no shared mime info
3467           stuff exists (fixes #79693).
3469 2006-10-20 Andreia Gaita <shana.ufie@gmail.com>
3470         * ContainerControl.cs: Incorrect contains check in ActiveControl 
3471         from previous fix (duh).
3473 2006-10-20  Chris Toshok  <toshok@ximian.com>
3475         * PropertyGridView.cs: the dropdown should be MIN(number of items
3476         in list, 15).  Fixes #79551.
3478 2006-10-20 Andreia Gaita <shana.ufie@gmail.com>
3479         Fixes #79384, #79394, #79652, #79667
3480         * Application.cs: 
3481         
3482         - Modal windows are now destroyed in the proper order for windows
3483         
3484         * ContainerControl.cs:
3485         
3486         - ActiveControl setter has more conditions on when to return:
3487                 - if we're reselecting the active control, but it actually
3488                 didn't have focus (window hidden or some such), it runs
3489                 - if the active control being selected doesn't actually 
3490                 exist in the container, it returns
3491         
3492         * Form.cs
3493         
3494         - The ShowDialog now gets the current form as the owner when
3495         invoking without parameters, and correctly activates the owner 
3496         when returning
3497         
3498         * MessageBox.cs
3499         
3500         - MessageBox now catches the Escape key to exit
3502 2006-10-20  Chris Toshok  <toshok@ximian.com>
3504         * PropertyGridView.cs: fix a number of issues (bug #78565, and
3505         most of bug #79676):
3507         - you can navigate around the property grid with the arrow keys.
3509         - the dropdown is sized properly when the pg has a vertical
3510         scrollbar.
3512         - fix the indentation for subentries, and properly select the
3513         entire label rect.
3515         - fix the gray bar's drawing (only draw it to the last element,
3516         not for the height of the control.  Also make sure we draw that
3517         last horizontal grid line.
3519         - use the same mechanism the datagrid uses wrt the editing textbox
3520         when scrolling/resizing/etc.  Namely, we hide it first, do the
3521         operation, then show it again (if it's still visible).
3522         
3523         - aggressively remove a lot of unnecessary refreshes (and also
3524         calls to Invalidate(). call more limited variants, and only redraw
3525         what we need.)
3526         
3527         * PropertyGrid.cs:
3529         - when we're populating the merged collection, fill in the UI
3530         parent with either the passed in item, or the category item we
3531         create.
3533         - remove the Refresh call from the BorderHelpControl.OnSizeChanged.
3535         * GridItem.cs: drop some fully qualified names.
3536         
3537         * GridEntry.cs: add a "UIParent", which is basically the parent
3538         treenode.
3540         * GridItemCollection.cs: add an IndexOf method.
3542 2006-10-20  Mike Kestner  <mkestner@novell.com>
3544         * MainMenu.cs : go back to Draw in OnMenuChanged.  Until we get
3545         a working win32 NC invalidation mechanism, we can't invalidate
3546         menus.  [Fixes #79705]
3548 2006-10-20  Mike Kestner  <mkestner@novell.com>
3550         * ListBox.cs : don't update the VScrollbar if the list is empty,
3551         just hide it.  [Fixes #79692]
3553 2006-10-20  Jackson Harper  <jackson@ximian.com>
3555         * RichTextBox.cs: Handle some special chars better, and don't skip
3556         the entire group when we encounter a special char that we don't
3557         handle correctly.
3559 2006-10-18  Chris Toshok  <toshok@ximian.com>
3561         * PropertyGridView.cs: address a number of issues from bug #79676,
3562         mostly of the cosmetic variety.
3564         - The highlight rectangle for indented items not extends all the
3565         way to the left.
3567         - Indented items aren't indented so much.
3569         - the dropdown is properly sized width-wise if the pg has a
3570         vertical scrollbar.
3572 2006-10-18  Chris Toshok  <toshok@ximian.com>
3574         * XplatUIX11.cs (SystrayAdd): a rather convoluted change, but the
3575         systray stuff is rather convoluted to begin with.
3577         systray icons are a single window for some reason (that I haven't
3578         figured out yet), and for them, client_window == whole_window.
3579         Given the way the tests are structured elsewhere to determine
3580         which paints are pending (client vs. nc), that situation will
3581         always yield PAINT, not NCPAINT.  So, if we have a pending
3582         nc_expose and no pending expose, remove the hwnd from the paint
3583         queue, and also set nc_expose_pending to false, to keep us from
3584         blocking further expose's adding the hwnd to the paint queue.
3586         phew.  like i said, a rather convoluted change.  Fixes the
3587         notifyicon repaint issues in bug #79645.
3589 2006-10-18  Chris Toshok  <toshok@ximian.com>
3591         * Form.cs: when getting the backcolor of the form, don't get
3592         base.BackColor, as this allows parents to influence the background
3593         color.  This breaks mdi forms.  Instead, if the background_color
3594         is empty, return the default.
3596 2006-10-18  Chris Toshok  <toshok@ximian.com>
3598         * XplatUIX11.cs: change some debug ifdefs, and return XGetParent
3599         to being private instead of internal static.
3601         * Control.cs: remove all the stupid ParentWaitingOnRecreation
3602         crap, it wasn't working for more deeply nested controls anyway,
3603         and we already have the is_recreating flag - use that instead.
3604         Before calling DestroyHandle in RecreateHandle, recurse through
3605         the control tree setting it to true.  this returns the recreate
3606         code to much of its original simplicity, while now guaranteeing we
3607         actually recreate everything we're supposed to.  This change gets
3608         fyireporting actually showing mdi children.
3610 2006-10-17  Chris Toshok  <toshok@ximian.com>
3612         * Form.cs: remove some debug spew, and collapse some duplicate
3613         code at the end of SetClientSizeCore.
3615         * XplatUIX11.cs: 
3616         - add some more debug spew here too wrt Destroy handling.
3617         - don't call hwnd.Dispose in DestroyWindow, it's effectively done
3618         in Control's handling of WM_DESTROY.
3619         - Remove the handling of zombie window DestroyNotifies from the
3620         event loop - we don't need it.  Now the only DestroyNotifies we
3621         actually handle are ones generated by X.
3622         - When sending _NET_ACTIVE_WINDOW, the first param should be 1, to
3623         match gtk's (functioning) handling of this. This keep metacity
3624         from leaving droppings in the form of wm borders with no window
3625         contents all over the place.
3627         * Control.cs:
3628         - add a bunch of debug spew wrt control recreation.
3629         - fix a bug where we weren't tracking Visible properly on
3630         recreated hwnds.
3631         - fixed the WM_PAINT double buffer handling to support re-entrant
3632         calls (yes, i know it's gross, but it's happening to us).
3634 2006-10-17  Rolf Bjarne Kvinge  <rolfkvinge@ya.com>
3635         * ThemeWin32Classic.cs: changed drawing of selected days
3636         to make them look better.
3638 2006-10-16  Chris Toshok  <toshok@ximian.com>
3640         * Hwnd.cs: replace the user_data/client_dc/non_client_dc with
3641         drawing_stack.  Nuke the ClientDC/NonClientDC properties.
3643         * XplatUIX11.cs: move away from using hwnd.client_dc and
3644         hwnd.non_client_dc and on to a stack of dc's (and in window's
3645         case, PAINTSTRUCT's), so we can deal with nested Paint calls
3646         without puking or not disposing of Graphics objects.
3648         * XplatUIOSX.cs: same.
3650         * XplatUIWin32.cs: same.
3652 2006-10-03  Alexander Olk  <alex.olk@googlemail.com>
3654         * FileDialog.cs: Don't call on_directory_changed inside
3655           OnSelectedIndexChanged (it changes the SelectedIndex too).
3656           Instead move it to OnSelectionChangeCommitted.
3658 2006-10-13  Chris Toshok  <toshok@ximian.com>
3660         * XplatUIX11.cs: more Destroy work.  the current code does the
3661         following things, in order:
3663         1. Enumerates all handles of all controls at or below the one
3664         being destroyed, in pre-order.  As it is doing this, it marks the
3665         handles as zombie and clears all references to them.
3666         
3667         2. calls XDestroyWindow on the window passed in.
3669         3. SendMessage's WM_DESTROY to all he handles in the accumulated
3670         list.
3672 2006-10-13  Chris Toshok  <toshok@ximian.com>
3674         * XplatUIX11.cs: set hwnd.zombie to true before calling
3675         SendMessage (WM_DESTROY).  this keeps us from marking the new
3676         window a zombie, and also keeps us from calling sendmessage at
3677         all.
3679 2006-10-13  Jackson Harper  <jackson@ximian.com>
3681         * TextControl.cs: Do not show the caret and selection at the same
3682         time.  Reduces ugliness by 35%.
3684 2006-10-13  Chris Toshok  <toshok@ximian.com>
3686         * XplatUIX11.cs (SendWMDestroyMessages): set the hwnd to be a
3687         zombie after we do the recursive call, so we actually do call
3688         SendMessage on the children controls.
3689         (GetMessage): if we find a pending paint event for a zombie hwnd,
3690         remove the hwnd from the paint queue, or else it will always be
3691         there (and we'll effectively loop infinitely)
3693 2006-10-13  Mike Kestner  <mkestner@novell.com>
3695         * MenuItem.cs : add Selected format under keynav too.
3696         Fixes #79528.
3698 2006-10-13  Gert Driesen  <drieseng@users.sourceforge.net>
3700         * PropertyGrid.cs: Fixed some NRE's and small difference between our
3701         implementation and that of MS.
3703 2006-10-13  Chris Toshok  <toshok@ximian.com>
3705         * Control.cs (OnInvalidated) only futz with the invalid_region if
3706         the control is double buffered.  this fixes the apparent hang in
3707         the ListView unit tests.  Someone needs to make the
3708         BeginEndUpdateTest not call OnInvalidated 15004 times, though..
3710 2006-10-13  Chris Toshok  <toshok@ximian.com>
3712         * PropertyGridView.cs:
3714         - do a little refactoring so that only one place calls
3715         dropdown_form.Hide, and that is CloseDropDown.  make everywhere
3716         else call that.  Also make it Refresh, since there are redraw bugs
3717         otherwise (we should take a look at that...)
3719         - do a little more refactoring work to share the body of code
3720         involved with the drop down.  it was duplicated in the code
3721         dealing with the listbox handling and in the code dealing with the
3722         UITypeEditors.
3724         - add a Capture to the dropdown form's control once it's
3725         displayed, and add a MouseDown handler that checks to make sure
3726         the position is inside the control.  If it's not, close the
3727         dropdown.  This fixes #78190.
3729         - in SetPropertyValueFromUITypeEditor, only call SetPropertyValue
3730         if the value is different than the initial value.
3731         
3732 2006-10-13  Andreia Gaita  <shana.ufie@gmail.com>
3734         * Control.cs: see #78650
3735         - Fixed GetNextControl for several cases:
3736                 - Changed FindFlatForward to return 
3737                 correct sibling control when more than one
3738                 control has same TabIndex as the currently 
3739                 focused one.
3740                 - Changed FindFlatBackward to loop children
3741                 from last to first and apply same logic as in
3742                 FindFlatForward
3743                 - Changed FindControlForward to search for
3744                 children when control is not a container
3745                 but has children, or search for siblings if
3746                 control is a container...
3747                 - Changed FindControlBackward   to continue
3748                 searching for child controls when hitting 
3749                 Panel-like parents
3750                 
3751         - Fixed Focus method to update ActiveControl
3752         (FocusTest.FocusSetsActive failure)
3753         
3754         * TabControl.cs:
3755         - Focus rectangle now refreshes when gaining
3756         or losing focus
3757         - Removed grab for Tab key on IsInputKey that 
3758         was keeping tab navigation from working (#78650)
3760 2006-10-13  Chris Toshok  <toshok@ximian.com>
3762         * PropertyGridView.cs:
3763         - Rewrite SetPropertyValue to loop over SelectedGridItem's
3764         SelectedObjects.
3766         - Deal with GridItem.Value == null a few places.
3768         * PropertyGrid.cs: 
3769         - replace the PopulateGridItemCollection with a pair of methods
3770         which compute the intersection of all the properties in the
3771         SelectedObjects array.  Fixes #79615.
3773         - Throw ArgumentException from set_SelectedObjects if there's a
3774         null in the array.
3776         - Add GetTarget method which can be used to traverse up the
3777         GridItem.Parent chain.  It depends on the assumption that
3778         selected_objects for different GridEntries are always in the same
3779         order (a safe assumption).  Use this method and loop over all the
3780         selected objects in the entry when calling RemoveValueChanged and
3781         AddValueChanged.
3782         
3783         * GridEntry.cs: Make this handle multiple selected objects.
3784         .Value returns null if not all the selected objects share the same
3785         value.
3787 2006-10-12  Jonathan Pobst  <monkey@jpobst.com>
3788         * ToolStrip.cs, ToolStripButton.cs, ToolStripComboBox.cs,
3789           ToolStripControlHost.cs, ToolStripItem.cs, ToolStripLabel.cs,
3790           ToolStripProfessionalRenderer.cs, ToolStripProgressBar.cs,
3791           ToolStripSeparator.cs, ToolStripSplitStackLayout.cs,
3792           ToolStripTextBox.cs: Add accessibility, fix attributes/API and
3793         add additional functionality.
3795 2006-10-12  Mike Kestner  <mkestner@novell.com>
3797         * ErrorProvider.cs : new ToolTipWindow ctor sig.
3798         * HelpProvider.cs : new ToolTipWindow ctor sig.
3799         * ToolTip.cs : remove ToolTip param from Window sig since it is
3800         not used.
3801         * ToolBar.cs : add tooltip support.  Fixes #79565.
3803 2006-10-12  Rolf Bjarne Kvinge  <rolfkvinge@ya.com>
3805         * ComboBox.cs: move the events in set_SelectedIndex to 
3806         after the call to HighlightIndex in order to avoid 
3807         possible recursion and subsequent problems with the call
3808         to HighlightIndex and include a range check in 
3809         set_HighlightIndex. Fixes #79588
3810         
3811 2006-10-12  Rolf Bjarne Kvinge  <rolfkvinge@ya.com>
3813         * MonthCalendar.cs: When FirstDayOfWeek is default set firstday 
3814         to ui thread's settings instead of sunday. 
3815         * ThemeWin32Classic.cs: Localize the day string. Fixes #79563
3817 2006-10-12  Rolf Bjarne Kvinge  <rolfkvinge@ya.com>
3819         * DateTimePicker.cs
3820         * MonthCalendar.cs
3821         * ThemeWin32Classic.cs: rewrote DateTimePicker to fix bug #78364
3822         and implement missing functionality (selecting different parts 
3823         of the date and edit them individually with the keyboard).
3824         
3825 2006-10-11  Chris Toshok  <toshok@ximian.com>
3827         * Control.cs (OnInvalidated): fix NRE relating to last change.
3829 2006-10-11  Chris Toshok  <toshok@ximian.com>
3831         * XplatUIX11.cs (SetWMStyles): make sure we include the MAXIMIZED
3832         atoms in _NET_WM_STATE here if the window is maximized.  We need
3833         to do this because we're *replacing* the existing _NET_WM_STATE
3834         property, so those atoms will be lost otherwise, and any further
3835         call to GetWindowState will return Normal for a window which is
3836         actually maximized.  Fixes #79338.
3838 2006-10-11  Jackson Harper  <jackson@ximian.com>
3840         * TextControl.cs: Special case for setting selection end to
3841         selection start, we basically kill the anchor.
3842         - some todo comments.
3844 2006-10-11  Chris Toshok  <toshok@ximian.com>
3846         * Control.cs: switch to using an "invalid_region" to track which
3847         parts of the image buffer need updating.  This is more code than
3848         the simple fix from r66532.  That version just attempted to always
3849         fill the entire buffer on redraw, which turns out to be
3850         inefficient when invalidating small rectangles.  This version
3851         simply adds the invalid rectangle to the invalid region.  When we
3852         get any WM_PAINT message we see if it can be filled using the
3853         image buffer, and if it can't (if the paint event's clip rectangle
3854         is visible in the invalid region) we first fill the image buffer.
3855         So, the image buffer is still a cache, we just fill it lazily.
3857         * PaintEventArgs.cs: remove the SetClipRectangle method, we don't
3858         need it any longer.
3860 2006-10-11  Chris Toshok  <toshok@ximian.com>
3862         * XplatUIX11.cs (SetWindowPos): we need to update both position as
3863         well as size after calling XMoveResizeWindow.  This keeps us from
3864         ignoring future SetWindowPos calls.  Fixes the disappearing
3865         DateTimePicker in the ToolBarDockExample from bug #72499.
3867 2006-10-11  Chris Toshok  <toshok@ximian.com>
3869         * TextBoxBase.cs: reorder things a bit when it comes to
3870         resizing-causing-recalculation.  we were recalculating the
3871         document when our position was changed, which shouldn't happen.
3872         We only care about size changes.  Clear up some more redundant
3873         recalculation calls while I'm at it.  This makes the toolbar dock
3874         example snappy when you're just dragging toolbars around (since it
3875         causes a relayout whenever you move one.)
3877 2006-10-11  Chris Toshok  <toshok@ximian.com>
3879         * ToolBarButton.cs (get_Rectangle): this only returns
3880         Rectangle.Empty if Visible == false, or Parent == null.
3881         Parent.Visible doesn't matter.
3883 2006-10-10  Chris Toshok  <toshok@ximian.com>
3885         * Control.cs, PaintEventArgs.cs: "internal set { .. }" isn't loved
3886         by .net 1.1, so switch to an internal method instead.
3888 2006-10-10  Chris Toshok  <toshok@ximian.com>
3890         * Control.cs (WM_PAINT): when a control is double buffered we draw
3891         initially to the ImageBuffer and then copy from there.  But when a
3892         parent control which has child controls is double buffered, the
3893         initial drawing doesn't encompass the entire ClientRectangle of
3894         the parent control, so we end up with uninitialized bits (this is
3895         easily seen by dragging the top toolbar in
3896         wf-apps/ToolBarDockExample to the right, quickly).  The fix is to
3897         manually set the ClipRectangle of the paint_event (only the one we
3898         use to populate the ImageBuffer) to ClientRectangle.  Fixes more
3899         of the nastiness in bug #72499.
3901         * PaintEventArgs.cs: Add an internal setter for ClipRectangle,
3902         which we use in Control.cs's WM_PAINT handling.
3904 2006-10-10  Jackson Harper  <jackson@ximian.com>
3906         * TextBoxBase.cs: Finish off the autoscrolling stuff.
3908 2006-10-10  Chris Toshok  <toshok@ximian.com>
3910         * Cursor.cs: Apply a slightly different patch to the one suggested
3911         in #79609.
3913 2006-10-10  Jackson Harper  <jackson@ximian.com>
3915         * MenuItem.cs: Make sure to put the mdi child in the hashtable,
3916         not the parent form.
3917         * TextControl.cs: use difference in old line count vs new count to
3918         calculate how many lines were added, this takes into account soft
3919         line breaks properly.
3921 2006-10-10  Chris Toshok  <toshok@ximian.com>
3923         * LinkLabel.cs: don't call MeasureCharacterRanges against a
3924         rectangle located at 0,0 and the size of the text.  Use
3925         ClientRectangle instead.  This fixes rendering of non-left aligned
3926         link labels.
3928 2006-10-10  Jackson Harper  <jackson@ximian.com>
3930         * TextBoxBase.cs: When we set the selection start position the
3931         caret.
3932         * TextControl.cs: Need to update the caret when we decrement it to
3933         zero.
3934         - Make sure that the selection_visible flag gets reset to false if
3935         the selection isn't visible.  Before this you could get it set to
3936         visible by changing the selection start, then changing the end to
3937         equal the start.
3939 2006-10-09  Jackson Harper  <jackson@ximian.com>
3941         * TreeView.cs: Don't update scrollbars when we aren't visible.
3942         * TreeNodeCollection.cs: Only need to update scrollbars if being
3943         added to an expanded visible node or the root node.
3945 2006-10-09  Chris Toshok  <toshok@ximian.com>
3947         * XplatUIX11.cs (SendMessage): fix NRE.
3949 2006-10-09  Jackson Harper  <jackson@ximian.com>
3951         * TextBoxBase.cs: Implement horizontal autoscrolling.
3952         * TextControl.cs: Add a movement types that allows moving forward
3953         and backwards without wrapping.
3955 2006-10-09  Mike Kestner  <mkestner@novell.com>
3957         * ListViewItem.cs : layout changes for wrapped LargeIcon labels
3958         with focus "expansion" of labels.  Fixes #79532 and then some.
3959         * ThemeWin32Classic.cs : add LineLimit to ListView label format
3960         when wrapping.
3962 2006-10-09  Jackson Harper  <jackson@ximian.com>
3964         * TextBoxBase.cs: Set the default max values to MaxValue since
3965         we use the scrollbar for autoscrolling and the default value is
3966         100.  If we don't do this the caret won't keep up with typing
3967         after about 18 characters.
3968         * TextControl.cs: Make sure the selection is offset by the
3969         viewport x.  This fixes selection when using auto scrolling.
3971 2006-10-07  Andreia Gaita <shana.ufie@gmail.com>
3972         
3973         * Form.cs: The active control should be selected after the 
3974         OnLoad so that any child control initialization that affects
3975         the selection is done. Fixes #79406
3977 2006-10-06  Chris Toshok  <toshok@ximian.com>
3979         * XplatUIX11.cs: This is perhaps a dangerous change, but it seems
3980         to have no evil effects.
3982         - Stop selecting StructureNotifyMask on non-toplevel windows.
3984           The only way children should be resized is by using the SWF api,
3985           and we already send WM_WINDOWPOSCHANGED messages in those cases.
3986           Toplevel windows can be interacted with via the window manager,
3987           and so we keep the input mask there.
3989           The other event StructureNotifyMask gives us (that we care
3990           about) is DestroyNotify.  The code is already structured such
3991           that it assumes we won't be getting a DestroyNotify event for
3992           the window we pass to XDestroyWindow (which is what
3993           StructureNotifyMask is supposed to guarantee.)  So, that code
3994           shouldn't be affected by this either.
3996         - Stop selecting VisibilityChangeMask altogether.
3998           We weren't doing anything with the resulting events anyway.
3999         
4000         This vastly reduces the number of X requests and events we see
4001         when resizing/laying out a large ui.
4003 2006-10-06  Chris Toshok  <toshok@ximian.com>
4005         * ScrollableControl.cs (DisplayRectangle): we need to take into
4006         account the DockPadding regardless of whether or not auto_scroll
4007         == true.  rework this slightly to this effect, and fix bug #79606,
4008         and part of #72499 (you can now see the drag handles and drag
4009         toolbars around).
4011 2006-10-06  Gert Driesen  <drieseng@users.souceforge.net>
4013         * ListViewItem.cs: Collections of selected and checked items are now
4014         dynamically rebuilt. Whenever an item is (un)checked or (de)selected
4015         we mark the collection "dirty".
4016         * ListView.cs: Marked collections readonly. Modified UpdateSelection
4017         to only clear SelectedItems when a new item is selected and MultiSelect
4018         is enabled. CheckedItems and SelectedItems now subscribe to Changed
4019         event of ListViewItemCollection, and mark its list dirty whenever
4020         that event is fire. This allows us to return selected/checked items 
4021         in the same order as they are in the Items collection. This matches
4022         the MS behavior.
4024 2006-10-06  Chris Toshok  <toshok@ximian.com>
4026         * NotifyIcon.cs (HandleMouseUp): only show the context menu on
4027         right mouse clicks.  Fixes bug #79593.
4029 2006-10-06  Chris Toshok  <toshok@ximian.com>
4031         * Splitter.cs: doh, fix splitters that don't want to cancel the
4032         movement when you drag them.  Also, impose the limits on the
4033         values we send to the SplitterMovingEvent.  Fixes #79598.
4035 2006-10-06  Jackson Harper  <jackson@ximian.com>
4037         * TextBoxBase.cs: Ignore whether or not the scrollbar is enabled,
4038         since we use this for auto scrolling also.
4040 2006-10-05  Chris Toshok  <toshok@ximian.com>
4042         * DataGridBoolColumn.cs: Nuke the code from ConcedeFocus.  I'm
4043         beginning to think that most datagrid column types don't need this
4044         method.  Fixes bug #79392.
4046 2006-10-05  Chris Toshok  <toshok@ximian.com>
4048         * DataGrid.cs: move back to a more lazy scheme for creating the
4049         CurrencyManager, so we aren't updating it every time you set
4050         either DataSource or DataMember.  Also, don't call
4051         RecreateDataGridRows if the currency manager hasn't changed.
4053 2006-10-05  Chris Toshok  <toshok@ximian.com>
4055         * ComboBox.cs: by the time the OnSelectionChangeCommitted event is
4056         emitted, SelectedIndex should already be updated.  Fixes bug
4057         #78929.
4059 2006-10-05  Jonathan Pobst  <monkey@jpobst.com>
4061         * ToolStripComboBox.cs, ToolStripControlHost.cs, ToolStripProgressBar,
4062           ToolStripTextBox.cs: Initial commit.
4063         * ToolStripItem.cs: Fixes for OnLayout, BackColor, Parent.
4065 2006-10-05  Jackson Harper  <jackson@ximian.com>
4067         * TabControl.cs: We need to invalidate the tab control area when
4068         new ones are added (duh).
4070 2006-10-03  Chris Toshok  <toshok@ximian.com>
4072         * Form.cs (ProcessDialogKey): if the focused control is in this
4073         form and is a button, call its PerformClick method here.  Fixes
4074         #79534.
4076 2006-10-04  Jackson Harper  <jackson@ximian.com>
4078         * TabPage.cs: Ignore setting of Visible, and add an internal
4079         method for setting the controls visibility.  TabPage's Visible
4080         property is a little strange on MS, this seems to make us
4081         compatible, and fixes cases where people set all the tab pages to
4082         visible.
4083         * TabControl.cs: Use the new internal setting on tab pages
4084         visibility.
4086 2006-10-03  Mike Kestner  <mkestner@novell.com>
4088         * ComboBox.cs : raise Click on ComboTextBox clicks. Fixes #79555.
4090 2006-10-03  Mike Kestner  <mkestner@novell.com>
4092         * ListView.cs : use is_visible instead of Visible to check if 
4093         scrollbars should be placed/sized.  Also some max_wrap_width
4094         love for LargeIcon view.  [Fixes #79533]
4096 2006-10-03  Atsushi Enomoto  <atsushi@ximian.com>
4098         * TextControl.cs :
4099           Make set_TextAlign() do actually update the align. Fixed #78403.
4101 2006-10-03  Chris Toshok  <toshok@ximian.com>
4103         * DataGrid.cs: fix a crash when switching datasources if the
4104         vertical scrollbar is at someplace other than Value = 0.  Also,
4105         reduce the number of recalculation passes we do in SetDataSource
4106         from 2 to 1.
4108 2006-10-03  Jackson Harper  <jackson@ximian.com>
4110         * TextBoxBase.cs: Move the if value the same bail check up, we
4111         don't want to empty the document if it is already empty, this
4112         seems to severly mess up the caret.  TODO: I should probably fix
4113         the empty statement to update teh caret somehow.
4115 2006-10-03  Chris Toshok  <toshok@ximian.com>
4117         * ThemeWin32Classic.cs, DataGrid.cs: some changes so that the
4118         incredibly hacky Windows.Forms FAQ autosize rows entry (it uses
4119         reflection, an internal row type, properties on said type, etc.)
4120         will work with our datagrid.  Fixes #79531.
4122 2006-10-03  Alexander Olk  <alex.olk@googlemail.com>
4124         * FileDialog.cs: Don't crash if a path is not accessible
4125           (System.UnauthorizedAccessException). Fixes #79569.
4126         * MimeIcon.cs: Workaround for a Uri bug. Unix paths/files can have
4127           a ':' too. Return unknown icon for those paths/files.
4129 2006-10-03  Sebastien Pouliot  <sebastien@ximian.com>
4131         * ToolTip.cs: Fix rare, but possible, NRE on MouseEnter when 
4132         GetContainerControl returns null.
4134 2006-10-02  Chris Toshok  <toshok@ximian.com>
4136         * XplatUIX11.cs (GetWindowState): use hwnd.client_window in the
4137         call to XGetWindowAttributes instead of "handle".  fixes an X
4138         error using notifyicon after the NotifyIconWindow to Form base
4139         class switch.
4141 2006-10-02  Chris Toshok  <toshok@ximian.com>
4143         * XplatUIX11.cs (QueryPointer): new function, encapsulating the
4144         server grab and looping we need to do to get down to the most
4145         deeply nested child window.
4146         (SetCursorPos): use QueryPointer instead of GetCursorPos, and call
4147         QueryPointer again after the WarpPointer so we can generate a
4148         proper (fake) MotionNotify event to be enqueued in the destination
4149         window's queue.
4150         (GetCursorPos): call QueryPointer.
4152         Fixes #79556.
4154 2006-10-02  Jackson Harper  <jackson@ximian.com>
4156         * NotifyIcon.cs: Derive the notify icon from a form, so things
4157         like FindForm work on it.
4158         - Swallow the WM_CONTEXTMENU message, since that is generated on
4159         mouse down, and context menu is a mouse up kinda guy.  I believe
4160         the correct fix here is probably to make the notify icon entirely
4161         NC area, but this seems to work fine for anyone not manipulating
4162         WndProc.
4164 2006-10-02  Jonathan Pobst  <monkey@jpobst.com>
4166         * ToolStrip.cs, ToolStripButton.cs, ToolStripItem.cs,
4167           ToolStripItemCollection.cs, ToolStripLabel.cs,
4168           ToolStripProfessionalRenderer.cs, ToolStripRenderer.cs,
4169           ToolStripSeparator.cs, ToolStripSplitStackLayout.cs:
4170           Initial implementation.
4171         * TextRenderer.cs: Provide padding to MeasureText.
4173 2006-10-02  Sebastien Pouliot  <sebastien@ximian.com>
4175         * ButtonBase.cs: Fix CreateAccessibilityInstance to return an instance
4176         of ButtonBaseAccessibleObject. Fix bug #79552.
4178 2006-10-02  Jackson Harper  <jackson@ximian.com>
4180         * MdiWindowManager.cs: When maximizing use the containers client
4181         rect, not it's bounds, so nc area is accounted correctly.
4182         - Use the parent form's size for the menu position, since the
4183         client isn't always the full form size.
4185 2006-10-01  Chris Toshok  <toshok@ximian.com>
4187         * ScrollableControl.cs: make sure neither right_edge or
4188         bottom_edge are < 0, since they're used as LargeChange for the
4189         horiz/vert scrollbars respectively.  Fixes #79539.
4191 2006-10-01  Chris Toshok  <toshok@ximian.com>
4193         * NotifyIcon.cs: add NotifyIconWindow.InternalRecreateHandle, so
4194         the xplatuix11 code can cause us to destroy/recreate our handle.
4196         * XplatUIX11.cs
4197         (SystrayAdd):
4198         - this code can be invoked many times for the same Hwnd.  Make
4199           sure we only destroy the client window once (the first time this
4200           method is called).  This fixes bug #79544.
4201         - Remove the call to the improperly bound XSync.  why we had two
4202           bindings to this, I will never know, but this call resulted in
4203           events being discarded from the queue(!).
4204         - correct a misunderstanding of _XEMBED_INFO - the second atom is
4205           not our current state but the state we wish to be in.  So, 0 if
4206           we don't want to be mapped.  Change it to 1.
4207         (SystrayRemove): The XEMBED spec makes mention of the fact that
4208         gtk doesn't support the reparent of client windows away from the
4209         embedder.  Looking at gtksocket-x11.c seems to agree with this.
4210         The only avenue we have for removing systray icons is to destroy
4211         them.  We don't want the handle to go away for good, though, so
4212         call InternalRecreateHandle on the NotifyIconWindow.  Fixes
4213         #79545.
4214         
4215 2006-10-01  Chris Toshok  <toshok@ximian.com>
4217         * Form.cs (WndProc): inline the native_enabled variable usage into
4218         the cases in which it's used.  Fixes #79536.
4220 2006-09-29  Mike Kestner  <mkestner@novell.com>
4222         * ListView.cs : toggle the selection state for ctrl clicks in 
4223         multiselect mode. [Fixes #79417]
4225 2006-09-29  Mike Kestner  <mkestner@novell.com>
4227         * ListView.cs : kill CanMultiSelect and refactor the selection
4228         code to support multiselection in the absence of mod keys. Steal
4229         arrow/home/end keys by overriding InternalPreProcessMessage to
4230         restore regressed keynav behavior.
4231         [Fixes #79416]
4233 2006-09-29  Jackson Harper  <jackson@ximian.com>
4235         * MdiClient.cs: Repaint the titlebars when the active window is
4236         changed.
4238 2006-09-29  Chris Toshok  <toshok@ximian.com>
4240         * Application.cs: when entering a runloop with a modal, make sure
4241         the hwnd is enabled.  Fixes #79480.
4243 2006-09-29  Chris Toshok  <toshok@ximian.com>
4245         * DataGrid.cs (CurrentCell): if we try to navigate to the add row
4246         when ListManager.CanAddRows == false, bump us back one.
4248         * DataGridColumnStyle.cs (ParentReadOnly): remove the
4249         listmanager.CanAddRows check.  This makes ArrayLists uneditable
4250         using a datagrid, which is not right.
4251         (SetColumnValueAtRow): call IEditable.BeginEdit if source[rowNum]
4252         is an IEditable, but call property_descriptor.SetValue regardless.
4253         fixes #79435.
4255 2006-09-29  Chris Toshok  <toshok@ximian.com>
4257         * DataGridBoolColumn.cs: we need to test equality in the face of
4258         possible null values (as is the case with the default NullValue).
4259         This patch keeps us from crashing in that case.
4261 2006-09-29  Jackson Harper  <jackson@ximian.com>
4263         * TreeNodeCollection.cs: Don't do a recalculate/updatescrollbars
4264         here, since it will get called for every node collection in the
4265         tree. This is now done in the treeview once the sorting is
4266         finished.
4267         * TreeView.cs: Recalculate the visible order, and update the
4268         scrollbars after sorting, set the top nope to the root so that the
4269         recalc actually works.
4271 2006-09-29  Chris Toshok  <toshok@ximian.com>
4273         * LinkLabel.cs: more handling of the default link collection in
4274         the face of LinkArea manipulation.  The default link collection
4275         contains 1 element (start=0,length=-1).  If the user sets LinkArea
4276         to anything and the links collection is the default, clear it.
4277         Then only add the link if its nonempty.  Fixes #79518.
4279 2006-09-29  Chris Toshok  <toshok@ximian.com>
4281         * LinkLabel.cs (CreatePiecesFromText): calculate the length of a
4282         piece correctly when we hit a '\n'.  Fixes #79517.
4284 2006-09-29  Chris Toshok  <toshok@ximian.com>
4286         * MimeIcon.cs, ThemeGtk.cs, X11DesktopColors.cs, XplatUIX11GTK.cs:
4287         change the binding of gdk_init_check to take two IntPtr's, and
4288         pass IntPtr.Zero for both of them.  Fixes #79520.
4290 2006-09-29  Mike Kestner  <mkestner@novell.com>
4292         * ComboBox.cs : raise TextChanged on ComboTextBox.TextChanged.
4293         [Fixes #78779]
4295 2006-09-28  Jackson Harper  <jackson@ximian.com>
4297         * XplatUIX11.cs: When translating NC messages make sure we go from
4298         whole window to screen, not client window to screen.
4299         * MdiClient.cs: Remove the calls to PaintWindowDecorations, this
4300         method doesn't exist
4301         - Skip over controls that aren't forms when arranging.
4303 2006-09-28  Jackson Harper  <jackson@ximian.com>
4305         * XplatUIWin32.cs: Clip the rect to the parent window.
4306         * XplatUIStructs.cs: Add clipping modes struct.
4307         * InternalWindowManager.cs: New private method that factors title
4308         bar heights in when calculating the pos of an NC mouse message.
4309         - Use SendMessage to force a paint when the form's size is changed
4310         instead of painting the decorations immediately.
4311         - Don't let the NC button click messages get to DefWndProc,
4312         because they will attempt to handle windowing themself, and this
4313         messes up z-order (it will put them in front of the scrollbars).
4314         * XplatUIX11.cs: Make sure that we don't reset window managers if
4315         we already have one (ie the window is an MDI window).
4317 2006-09-28  Chris Toshok  <toshok@ximian.com>
4319         * MainMenu.cs: fix #79405 by way of a disgusting hack.  all the
4320         menu code really needs going over.
4322 2006-09-27  Chris Toshok  <toshok@ximian.com>
4324         * XplatUIX11.cs (SetWMStyles): more metacity wonderment.  turns
4325         out metacity ignores the MAXIMIZE_HORZ/VERT messages unless the
4326         window is maximizable.  So, we need to make sure that even if we
4327         clear the border/wm frame of those functions, they're still
4328         available (basically, we remove the decoration without removing
4329         the function).  Half the fix for #79338.
4331 2006-09-27  Chris Toshok  <toshok@ximian.com>
4333         * DataGrid.cs (ProcessGridKey): implement Shift-Tab handling.
4334         Fixes bug #79515.
4336 2006-09-27  Chris Toshok  <toshok@ximian.com>
4338         * Splitter.cs: reorder things a bit so that we don't actually
4339         draw/move the splitter until after calling OnSplitterMoving.  This
4340         lets users cancel/disallow the movement by explicitly setting
4341         event.SplitX/SplitY.  Fixes #79372.
4343 2006-09-27  Jackson Harper  <jackson@ximian.com>
4345         * XplatUIX11.cs: Don't hide the caret when it is being destroyed,
4346         because it is most likely on a window being destroyed, and that
4347         will give us an X11 error.
4349 2006-09-27  Chris Toshok  <toshok@ximian.com>
4351         * PropertyGridView.cs: half of the fix for #78190.  Clicking on
4352         the dropdown button now toggles between showing and hiding the
4353         dropdown.  Also, get rid of dropdown_form_showing and just use
4354         dropdown_form.Visible.  We still don't do a grab, but I'll leave
4355         that part to someone who has handled Capture-fu before.
4357 2006-09-27  Chris Toshok  <toshok@ximian.com>
4359         * DataGrid.cs: return false if alt isn't pressed when '0' is
4360         pressed.  this keeps the '0' key from being swallowed, and fixes
4361         bug #79350.
4363 2006-09-27  Chris Toshok  <toshok@ximian.com>
4365         * ComboBox.cs: use Invalidate when scrolling the dropdown list.
4366         Calling Refresh (in response to a scrollbar event) screws up the
4367         scrollbar painting.  Fixes bug #78923.
4369 2006-09-27  Chris Toshok  <toshok@ximian.com>
4371         * Theme.cs (SystemResPool): make the "if hashtable[key] == null
4372         then insert into hashtable" blocks threadsafe.
4374 2006-09-27  Chris Toshok  <toshok@ximian.com>
4376         * MessageBox.cs (CreateParams): the styles should be |'ed with our
4377         baseclass's, since otherwise the
4378         ControlBox/MinimizeBox/MaximizeBox assignments above have no
4379         effect.  This gets the close button back in messageboxes.
4381 2006-09-27  Chris Toshok  <toshok@ximian.com>
4383         * XplatUIX11.cs: make StyleSet and ExStyleSet check == with the
4384         flag, not just != 0.  this makes flags that are actually multiple
4385         bits (like WS_CAPTION) work.  fixes bug #79508.
4387 2006-09-27  Jordi Mas i Hernandez <jordimash@gmail.com>
4389         * PageSetupDialog.cs: add support for getting and settings the 
4390         paper size, source and orientation.
4392 2006-09-26  Chris Toshok  <toshok@ximian.com>
4394         * XplatUIX11.cs (SetWMStyles): turns out when SYSMENU is not set
4395         and caption == "", we need to remove the resize handles as well as
4396         the title bar.
4398         * Control.cs (set_Text): turns out that setting Text on a form
4399         should change the WM styles on the window, since if ControlBox ==
4400         false, the only way to get a window border is to have a non-""
4401         Text property.  check winforms/forms/text.cs for an example.  so,
4402         call both XplatUI.SetWindowStyle and XplatUI.Text here to properly
4403         update both window styles and title.  This fixes a lot of dialogs
4404         (including the preferences dialog in MonoCalendar.)
4406 2006-09-26  Chris Toshok  <toshok@ximian.com>
4408         * XplatUIWin32.cs (SetParent): if parent == IntPtr.Zero (and the
4409         control isn't a Form), call Win32ShowWindow to hide the window,
4410         but don't update the control Visible property.  When we reparent
4411         back to a parent control, call SetVisible in order for the
4412         window's visibility to be reinstated.
4414         * XplatUIX11.cs (SetParent): if hwnd.parent == null, reparent to
4415         the FosterParent.
4417         * Control.cs (ControlCollection.Remove): remove that value.Hide()
4418         call for good, since it breaks MonoCalendar (and other things I'm
4419         sure.) Also, set all_controls to null *after* the owner calls,
4420         which end up regenerating it.
4421         (ChangeParent): allow new_parent to be == null, passing
4422         IntPtr.Zero down to XplatUI.
4424         this fixes #79294 the right way.
4426 2006-09-26  Mike Kestner  <mkestner@novell.com>
4428         * GridEntry.cs : internal SetParent method.
4429         * PropertyGrid.cs : attach to property changed on the proper
4430         target if we have a hierarchical grid with subobjects. Setup
4431         GridItem.Parent for hierarchical items.
4432         * PropertyGridView.cs : Set value on the correct target for
4433         hierarchical grids. [Fixes #78903]
4435 2006-09-26  Chris Toshok  <toshok@ximian.com>
4437         * Control.cs (ChildNeedsRecreating): this should return true if
4438         either we're being recreated and the child is in our list, or our
4439         parent is waiting for our recreation.
4441 2006-09-26  Chris Toshok  <toshok@ximian.com>
4443         * Control.cs (ControlCollection.Remove): reinstate the
4444         value.Hide() call as suggested in bug #79294.
4446 2006-09-26  Sebastien Pouliot  <sebastien@ximian.com>
4448         * XplatUIX11.cs: Fixed SetCursorPos to move the cursor to screen
4449         coordinates (versus a relative move).
4451 2006-09-26  Chris Toshok  <toshok@ximian.com>
4453         * Control.cs: rework child recreation a little bit.  It turns out
4454         that we race between the DestroyNotify the WM_DESTROY message.  If
4455         the parent gets its DestroyNotify before the child gets the
4456         WM_DESTROY message, the child ends up not recreating (since the
4457         parent finishes its recreation on DestroyNotify, and the child
4458         checks ParentIsRecreating.)
4460         So, instead we store off a list of all the child controls which
4461         need to be recreated when the parent control starts to recreate
4462         itself.  Then, when child controls get their WM_DESTROY message we
4463         check to see if they're in the parent's pending recreation list,
4464         and if so, we recreate.  This removes all dependency on ordering
4465         from the code and fixes the initial MonoCalendar upgrade dialog.
4466         
4467 2006-09-26  Jackson Harper  <jackson@ximian.com>
4469         * TextControl.cs: Use the Line to get the length of the line,
4470         since soft line breaks can change the end line.
4472 2006-09-26  Chris Toshok  <toshok@ximian.com>
4474         * Control.cs (ControlCollection.AddImplicit): don't add the
4475         control again if it's already in one of our lists.  This keeps us
4476         from adding controls over and over again for comboboxes when their
4477         handle gets recreated (as the combobox adds implicit controls in
4478         OnHandleCreated).  Fixes the X11 errors in bug #79480.
4480 2006-09-26  Jackson Harper  <jackson@ximian.com>
4482         * TextControl.cs: When deleting characters make sure that any
4483         orphaned zero lengthed tags get deleted.
4484         - Fix ToString for zero lengthed tags.
4486 2006-09-25  Jackson Harper  <jackson@ximian.com>
4488         * TextControl.cs: When getting a tag at the location there can be
4489         multiple tags at the same spot, these are 0-lengthed tags that
4490         appear when extra formatting has been stuck in a location.  We
4491         need to pull out the last of these 0 lengthed tags.
4493 2006-09-25  Jackson Harper  <jackson@ximian.com>
4495         * TextControl.cs: Fix print out in debug method.
4496         * TextBoxBase.cs: When text is set bail if we are setting to the
4497         previous value.
4498         
4499 2006-09-24  Alexander Olk  <alex.olk@googlemail.com>
4501         * FontDialog.cs: Fixed the up/down arrow keys issue from bug #79478.
4502           It is now possible to change the selected index in a FontXXXListBox
4503           with the up and down arrow keys from the FontXXXTextBoxes.
4504           Also, send the FontXXXTextBox mouse wheel event to the corresponding
4505           FontXXXListBoxes to match ms.
4507 2006-09-22  Sebastien Pouliot  <sebastien@ximian.com>
4509         * SystemInformation.cs: Return a clone of the theme's MenuFont because
4510         anyone can dispose it, anytime. All other properties returns enums, 
4511         structs or basic types so they don't need such tricks.
4513 2006-09-22  Jackson Harper  <jackson@ximian.com>
4515         * XplatUI.cs:
4516         * XplatUIWin32.cs:
4517         * Clipboard.cs:
4518         * DataFormats.cs:
4519         * XplatUIOSX.cs:
4520         * XplatUIDriver.cs: Update interface to add a primary selection
4521         flag, so the driver can use the primary selection buffer if
4522         needed.
4523         * XplatUIX11.cs: Allow the clipboard to retrieve from PRIMARY.
4525         * RichTextBox.cs: We need to supply the data object to paste now
4526         (so we can choose to supply CLIPBOARD or PRIMARY).
4527         * TextBoxBase.cs: Supply data object to paste (see above).
4528         - Middle click uses the primary selection data object.
4529         
4530 2006-09-21  Chris Toshok  <toshok@ximian.com>
4532         * XplatUIX11.cs: first little cleanup of the StyleSet (...) block
4533         of SetWMStyles.  It's still a rat's nest and is largely
4534         order-dependent which I dislike immensely.  This also fixes the X
4535         button disappearing from toplevel forms.
4537 2006-09-21  Mike Kestner <mkestner@novell.com>
4539         * ListBox.cs: move Jordi's click/dblclick raising code to the
4540         mouse up handler.
4542 2006-09-21  Jordi Mas i Hernandez <jordimash@gmail.com>
4544         * ListBox.cs: Fixes 79450
4546 2006-09-21  Mike Kestner <mkestner@novell.com>
4548         * TreeView.cs: guard against disposed conditions in UpdateScrollbars
4549         to deal with people updating the TreeNodeCollection after the tree
4550         is disposed.  "Fixes" 79330.
4552 2006-09-20  Jackson Harper <jackson@ximian.com>
4554         * TextControl.cs: Push the cursor record onto the undo stack
4555         before the delete action. This fixes 78651.
4557 2006-09-20  Jonathan Chambers  <joncham@gmail.com>
4559         * PropertyGridView.cs: Remove WindowStyles.WS_VISIBLE from
4560         CreateParams. Fixes 79329.
4562 2006-09-19  Chris Toshok  <toshok@ximian.com>
4564         * XplatUIX11.cs: a couple of blanket code massage passes to clean
4565         things up a bit.  First, get rid of the NetAtoms array (and the NA
4566         enum), and just embed the atoms as static fields.  Also, add a
4567         couple of functions (StyleSet and ExStyleSet) to clean up all the
4568         bitmask testing of styles.
4570         * X11Structs.cs: remove the NA enum, not needed anymore.
4571         
4572 2006-09-19  Chris Toshok  <toshok@ximian.com>
4574         * XplatUIX11.cs: apply Alexander's tool window fix for bug #79245
4575         (mapping them to _NET_WM_WINDOW_TYPE_UTILITY).  and add a little
4576         added cleanup to get MessageBox titles appearing again, which were
4577         broken by my earlier fix for caption-less/ControlBox-less windows.
4579 2006-09-18  Jonathan Pobst <monkey@jpobst.com>
4581         * ToolStripArrowRenderEventArgs.cs, ToolStripArrowRenderEventHandler.cs,
4582           ToolStripContentPanelRenderEventArgs.cs, ToolStripContentPanelRenderEventHandler.cs,
4583           ToolStripGripRenderEventArgs.cs, ToolStripGripRenderEventHandler.cs,
4584           ToolStripItemClickedEventArgs.cs, ToolStripItemClickedEventHandler.cs,
4585           ToolStripItemEventArgs.cs, ToolStripItemEventHandler.cs,
4586           ToolStripItemImageRenderEventArgs.cs, ToolStripItemImageRenderEventHandler.cs,
4587           ToolStripItemRenderEventArgs.cs, ToolStripItemRenderEventHandler.cs,
4588           ToolStripItemTextRenderEventArgs.cs, ToolStripItemTextRenderEventHandler.cs,
4589           ToolStripPanelRenderEventArgs.cs, ToolStripPanelRenderEventHandler.cs,
4590           ToolStripRenderEventArgs.cs, ToolStripRenderEventHandler.cs,
4591           ToolStripSeparatorRenderEventArgs.cs, ToolStripSeparatorRenderEventHandler.cs:
4592             Inital import.
4593         * ToolStripPanel.cs, ToolStripContentPanel.cs, ToolStripSeparator.cs,
4594           ToolStripButton.cs: Stubs needed for above.
4595         * ToolStrip.cs, ToolStripItem.cs: Stub a few variables/properties for above.
4597 2006-09-15  Chris Toshok  <toshok@ximian.com>
4599         * XplatUIX11.cs:
4600         - make the MessageQueues hashtable Synchronized.
4601         
4602         - SendMessage: if the Hwnd is owned by a different thread, use the
4603         AsyncMethod stuff to dispatch the SendMessage on the hwnd's
4604         thread.  Fixes bug #79201.
4606 2006-09-15  Chris Toshok  <toshok@ximian.com>
4608         * XplatUIX11.cs (SetWMStyles): rework the #79368 fix slightly.  If
4609         ControlBox == false, we disallow maximize/minimize/close.  If the
4610         form Caption is "" we also disallow move (and get rid of the Title
4611         decoration).  Unfortunately, regardless of how things are set,
4612         we're stuck with the Title and WM menu.
4614 2006-09-15  Chris Toshok  <toshok@ximian.com>
4616         * Application.cs: add locking around the static message_filters
4617         ArrayList, part of #79196.
4619 2006-09-15  Chris Toshok  <toshok@ximian.com>
4621         * XplatUIX11.cs (SetWMStyles): if Form.Text == "" and
4622         Form.ControlBox == false, the window has no titlebar nor resize
4623         handles.  fixes bug #79368.
4625 2006-09-15  Chris Toshok  <toshok@ximian.com>
4627         * TextBoxBase.cs: in CalculateScrollBars make sure LargeChange is
4628         >= 0.  Fixes bug #79370.
4630 2006-09-15  Jonathan Pobst <monkey@jpobst.com>
4631         * FlowLayoutPanel.cs, FlowLayoutSettings.cs: Initial commit.
4632         * Control.cs:
4633             Add properties: LayoutEngine, Margin, DefaultMargin.
4634             Add method: GetPreferredSize.
4635             Move layout logic from PerformLayout to layout engines. 
4637 2006-09-13  Chris Toshok  <toshok@ximian.com>
4639         * XplatUIX11.cs: more destroy work.  Jackson pointed out that my
4640         fix for #79326 broke #78718, so this change addresses that.
4642         - in SendWMDestroyMessages remove the call to
4643         CleanupCachedWindows, since we might be recreating the control and
4644         need to maintain the references to right Hwnd handles.  Also, set
4645         the zombie flag to true for each of the children in the hierarchy
4646         instead of calling hwnd.Dispose.  This will cause GetMessage to
4647         ignore all events for the window except for DestroyNotify.
4649         - In GetMessage, ignore messages except for DestroyNotify for
4650         zombie hwnds.
4651         
4652         * Control.cs: revert the is_recreating fix from the last
4653         ChangeLog.  It's definitely "right", but it breaks switching from
4654         an MDI form to a non-MDI form.  Will need to revisit that.
4656         * Hwnd.cs: add a zombie flag, which means "the
4657         client_window/whole_window handles are invalid, but we're waiting
4658         for the DestroyNotify event to come in for them".  Set the flag to
4659         false explicitly if setting WholeWindow/ClientWindow, and also
4660         when Disposing.
4661         
4662 2006-09-13  Chris Toshok  <toshok@ximian.com>
4664         * XplatUIX11.cs: rework window destruction slightly.
4666         - when destroying the windows associated with a control, we don't
4667         need 2 separate XDestroyWindow calls.  Just the one for the
4668         whole_window (or for client_window if whole_window is somehow
4669         IntPtr.Zero -- can this happen?) is enough.
4671         - reworked SendWMDestroyMessages slightly, so we always dispose
4672         the child control hwnd's after sending the messages.
4673         
4674         - refactored out the ActiveWindow/FocusWindow/Caret clearing from
4675         the two places it was used (one was even using hwnd.Handle and the
4676         other hwnd.client_window.  ugh), adding another call in
4677         SendWMDestroyMessages.  We need this new call because now the
4678         DestroyNotify events in the queue will be ignored for the child
4679         controls (as their hwnd's were disposed, and the window id's
4680         removed from the hashtable in SendWMDestroyMessages.) fun, eh?
4682         - this fixes bug #79326.
4684 2006-09-13  Chris Toshok  <toshok@ximian.com>
4686         * Control.cs: don't always set is_recreating to false at the end
4687         of RecreateHandle, since sometimes we're not done (and won't be
4688         until WndProc handles the WM_DESTROY message).  Also, set
4689         is_recreating to false in the WM_DESTROY handling code.  Part of
4690         the fix for bug #79326.
4692 2006-09-13  Miguel de Icaza  <miguel@novell.com>
4694         * X11DesktopColors.cs: Start the droppage of debugging messages.
4696         * FileDialog.cs: Store the configuration file in ~/.mono/mwf_config
4698 2006-09-13  Jonathan Pobst <monkey@jpobst.com>
4700         * SplitContainer.cs, SplitterPanel.cs: Initial implementation [2.0].
4702 2006-09-12  Chris Toshok  <toshok@ximian.com>
4704         * DataGrid.cs (get_ListManager): if the list_manager is null, try
4705         to create it using SetDataSource.  Fixes bug #79151.
4707 2006-09-11  Chris Toshok  <toshok@ximian.com>
4709         * XEventQueue.cs: add a DispatchIdle property.
4711         * XplatUIX11.cs (UpdateMessageQueue): only emit the Idle event if
4712         either the queue is null, or the queue has DispatchIdle set to
4713         true.
4714         (DoEvents): set queue.DispatchIdle to false around the
4715         peek/translate/dispatch message loop in this method.  This keeps
4716         Application.Doevents from emitting idle events.  Part of the fix
4717         for #78823.
4719 2006-09-11  Chris Toshok  <toshok@ximian.com>
4721         * DataGrid.cs (set_DataSource): make this work for both the
4722         winforms/datagrid test and ReportBuilder.  It seems as though when
4723         we've created a ListManager (or maybe it's if we have a
4724         BindingContext?), when we set the DataSource it clears the
4725         DataMember to "".  otherwise we reuse the datamember.  Fixes bug
4726         #79333.
4728 2006-09-11  Chris Toshok  <toshok@ximian.com>
4730         * XplatUIX11.cs: deal with queue being null, which happens in all
4731         the Clipboard functions.  Fixes one of the two problems mentioned
4732         in #78612.
4734 2006-09-11  Chris Toshok  <toshok@ximian.com>
4736         * MenuAPI.cs: rework OnMouseUp a bit so that releasing the mouse
4737         button on various spots (including outside the menu) works closer
4738         to MS, and doesn't crash.  Fixes #79343.
4740 2006-09-11  Gert Driesen  <drieseng@users.sourceforge.net>
4742         * ListView.cs: Do not initialize item_sorter in init. To match MS,
4743         return null for ListViewItemSorter if View is SmallIcon or LargeIcon
4744         and the internal comparer is set. When a new ListViewItemSorter is set,
4745         sort the items. Use Enum.IsDefined to verify whether a valid SortOrder
4746         was specified. No further processing is necessary if SortOrder is set
4747         to it's current value. If Sorting is modified to None, and View is
4748         neither SmallIcon nor LargeIcon then: on 2.0 profile set item_sorter
4749         (either custom or our internal ItemComparer) to null, on 1.0 profile
4750         only set item_sorter to null if its our internal IComparer. If Sorting
4751         is modified to Ascending or Descending, then use our internal IComparer
4752         if none is set, and if the current IComparer is our internal one then:
4753         on 2.0 profile always replace it with one for new Sorting, and on 1.0
4754         profile only use new Sorting if view is not SmallIcon or LargeIcon. Use
4755         Enum.IsDefined to verify whether a valid View value is specified in
4756         its setter. Automatically sort listview items when listview is
4757         created. In Sort, do nothing if ListView is not yet created, or if
4758         no item_sorter is set (no Sorting was set, Sorting was explicitly set
4759         to None or ListViewItemSorter was set to null). Added Sort overload
4760         taking a bool to indicate whether the ListView should be redrawn when
4761         items are sorted (we use this in ListViewItemCollection to avoid double
4762         redraws). Modified our internal IComparer to take the sort order into
4763         account. In Add and AddRange methods of ListViewItemCollection, also
4764         call Sort if Sorting is None (necessary for SmallIcon and LargeIcon
4765         view), but use overload with noredraw option to avoid double redraw.
4766         On 2.0 profile, throw NotSupportedException when setting CheckBoxes to
4767         true when View is Tile, and do the same when attempting to set View to
4768         Tile when CheckBoxes is true. Avoid maintaining separate ArrayLists
4769         for selected/checked indices, as it involves overhead when sorting is
4770         done while these collections are not used all that often. Instead
4771         we'll build the indices on demand. Modified IList implementation of
4772         CheckedIndexCollection to use public methods if object is int.
4773         Modified CheckedListViewItemCollection to hide checked items if
4774         ListView.CheckBoxes is false. Removed LAMESPEC remark in 
4775         ListViewItemCollection as the .NET SDK docs have been fixed. Modified
4776         IList implementation in SelectedIndexCollection to use public methods
4777         if object is int. Modified SelectedListViewItemCollection to hide
4778         selected items if listview is not yet created.
4779         * ListViewItem.cs: CheckedIndices list no longer needs to be
4780         maintained separately (see ListView changes). Also clone font, fixes
4781         test failure.
4783 2006-09-11  Mike Kestner  <mkestner@novell.com>
4785         * ComboBox.cs: if we are updating the contents of the currently
4786         selected index, refresh the control or the textbox selection.
4787         [Fixes #79066]
4789 2006-09-11  Mike Kestner  <mkestner@novell.com>
4791         * ComboBox.cs (UpdateBounds): use SetBounds not SetBoundsCore since 
4792         the 'specified' logic has been moved there.  This seems like a bug 
4793         in Control.cs, since our current SetBoundsCore completely ignores 
4794         the specified parameter.  Peter's commit seems to indicate that is 
4795         the way the MS control implementation works.  [Fixes #79325]
4797 2006-09-10  Jonathan Chambers  <joncham@gmail.com>
4799         * XplatUI.cs: Set default_class_name to be composed
4800         of current domain id. This allows MWF to be loaded in multiple
4801         domains on Win32.
4803 2006-09-09  Miguel de Icaza  <miguel@novell.com>
4805         * X11Keyboard.cs: If we are unable to obtain the input method, do
4806         not call CreateXic to create the input context.   Should fix
4807         #78944/79276.
4809 2006-09-08  Alexander Olk  <alex.olk@googlemail.com>
4811         * MimeIcon.cs: Rewrote major parts. Dropped KDE support for now.
4812           Simplified gnome support by adding more pinvokes to get the
4813           icon for a file or mime type.
4815 2006-09-08  Jackson Harper  <jackson@ximian.com>
4817         * MenuAPI.cs: Deslect popup context menu items before closing the
4818         window, so that you don't see the previously selected item
4819         selected when you reopen the menu.
4820         * TextControl.cs: Update the cursor position even if we don't have
4821         focus.  This fixes typing in things like the ComboBox.  I'm not
4822         totally sure we should always set the visibility if we don't have
4823         focus, but couldn't find any corner cases where the cursor showed
4824         up when it shouldn't.
4826 2006-09-08  Chris Toshok  <toshok@ximian.com>
4828         * X11Keyboard.cs: In UpdateKeyState vkey can be any integer, but
4829         our arrays are length 256.  & 0xff before indexing.  Fixes the
4830         crash in bug #78077.
4831         
4832 2006-09-08  Carlos Alberto Cortez <calberto.cortez@gmail.com>
4834         * ThemeWin32Classic.cs: 
4835         * DateTimePicker.cs: Draw check box if DateTimePicker.ShowCheckBox
4836         is true. Handle that check box too.
4838 2006-09-07  Chris Toshok  <toshok@ximian.com>
4840         * MenuAPI.cs: move the PerformClick call to OnMouseUp.  Fixes bug
4841         79244.
4843 2006-09-07  Chris Toshok  <toshok@ximian.com>
4845         * Control.cs: in set_BackColor only do the work if
4846         background_color != value.
4848         * XplatUIX11.cs: move the clearing of invalid areas (both client
4849         and nc) to the same block of code where we set (nc_)expose_pending
4850         to false.  That is, move it from PaintEventEnd to PaintEventStart,
4851         so things that cause invalidates from within OnPaint will trigger
4852         another call to OnPaint.  Fixes bug #79262.
4854 2006-09-07  Alexander Olk  <alex.olk@googlemail.com>
4856         * Theme.cs: Use correct icon for UIIcon.PlacesPersonal
4857         * FileDialog.cs: Fix typo
4859 2006-09-07  Jackson Harper  <jackson@ximian.com>
4861         * ThemeWin32Classic.cs:  oops, forgot to commit.  Draw the images
4862         for tab pages if they have any.
4864 2006-09-06  Mike Kestner  <mkestner@novell.com>
4866         * Splitter.cs: use the "current" rect when finishing drag handle
4867         to avoid an artifact demonstrated by resedit.exe.  [Fixes #79251]
4869 2006-09-06  Mike Kestner  <mkestner@novell.com>
4871         * Splitter.cs: draw the drag handle at X or Y instead of 0 to deal
4872         support offset splitters. [Fixes #79298]
4874 2006-09-06  Alexander Olk  <alex.olk@googlemail.com>
4876         * Mime.cs: Fixed a bug that could override the global mime type
4877           result.
4879 2006-09-05  Jackson Harper  <jackson@ximian.com>
4881         * TabControl.cs: Better calculation method for setting the slider
4882         pos. Prevents crashes on really wide tabs.
4883         - Draw Image on tab pages if an image list is used.
4885 2006-09-02  Carlos Alberto Cortez <calberto.cortez@gmail.com>
4887         * MonthCalendar.cs: When Font changes, the Size should be
4888         updated to fit the new font's space requirements.
4890 2006-09-02  Alexander Olk  <alex.olk@googlemail.com>
4892         * ListBox.cs: If the items are cleared with Items.Clear set
4893           top_index to 0.
4895 2006-09-01  Carlos Alberto Cortez <calberto.cortez@gmail.com>
4897         * MonthCalendar.cs: Handle arrow keys as input keys. Also
4898         fire DateChanged event instead of DateSelected event when
4899         the date was changed by keyboard interaction.
4901 2006-09-01  Carlos Alberto Cortez <calberto.cortez@gmail.com>
4903         * DateTimePicker.cs: Handle DateChanged for the associated
4904         month_calendar control, and set month_calendar.Font from 
4905         OnFontChanged method, as well as resize the height of the
4906         control when needed. Make PreferredHeight proportional.
4908 2006-09-01  Chris Toshok  <toshok@ximian.com>
4910         * DataGrid.cs: grr, stop overthinking the DataMember/DataSource
4911         properties.
4913         * BindingContext.cs (HashKey.GetHashCode): use ^ instead of +.
4915 2006-09-01  Peter Dennis Bartok  <pbartok@novell.com> 
4917         * FileDialog.cs: Set ClientSize instead of window size, to allow space
4918           for decorations (Fixes #79219)
4920 2006-09-01  Mike Kestner  <mkestner@novell.com>
4922         * ComboBox.cs: first stab at sorting plus some selection handling
4923         fixes to bring us more in line with MS behavior.  Also switches back
4924         to index based selection.  Alternative patches for index-based 
4925         selection were provided by Jackson Harper, Carlos Alberto Cortez, 
4926         and latency@gmx.de on bug 78848.  I assume they were similar to this
4927         code I've had simmering in my tree forever.
4928         [Fixes #78848]
4930 2006-09-01  Chris Toshok  <toshok@ximian.com>
4932         * CurrencyManager.cs (ListChangedHandler): in the ItemAdded case,
4933         when setting list position guard against ending up with a -1 index
4934         (the other part of the fix for #78812).  Should probably make sure
4935         we don't need the analogous fix in the ItemDeleted case.
4937         * DataGrid.cs:
4938         - in SetDataSource, work around the fact that the way
4939         OnBindingContextChanged is invoked will cause us to re-enter this
4940         method.  I'll remove the hack once I investigate
4941         OnBindingContextChanged.
4943         - fix the logic in set_DataSource and set_DataMember (basically
4944         what to do if the other of the two is null.)
4945         
4946         - in OnListManagerItemChanged, we need to take into account the
4947         edit row when deciding whether or not to call RecreateDataGridRows
4948         (part of the fix for #78812).
4950 2006-09-01  Jackson Harper  <jackson@ximian.com>
4952         * Splitter.cs: Don't do anything if there is no control to affect
4953         (prevents us from crashing in weird tet cases).
4954         * TreeView.cs: Bounding box for the mouse movement reverting
4955         focus/selection back to previously selected node.  This matches
4956         MS, and makes the tree a lot more useable.
4957         * GroupBox.cs: Instead of drawing over the lines of the groupbox,
4958         use clipping so they are not drawn.  This fixes when the control
4959         is set to have a transparent background, or if it was over an
4960         image.
4962 2006-09-01  Alexander Olk  <alex.olk@googlemail.com>
4964         * MimeIcon.cs: Improved handling for reading default icons when
4965           using gnome (2.16 made it necessary). Check and read svg icons
4966           first, then 48x48 and then 32x32 icons.
4968 2006-08-31  Chris Toshok  <toshok@ximian.com>
4970         * DataGridTextBoxColumn.cs: only hide the textbox if it's still
4971         visible.
4973         * DataGridTextBox.cs: Pass Tab's up to the datagrid by calling
4974         ProcessKeyPreview.  Fixes part of #77806.
4976         * DataGrid.cs: big patch.
4978         - revert the queueing up of DataSource/DataMember if inside
4979         BeginInit/EndInit calls.  That's not the way the datagrid achieves
4980         its delayed databinding.  Instead, call SetDataSource in
4981         OnBindingContextChanged.  This mimic's MS's behavior, and fixes
4982         #78811.
4984         - Also, it wasn't mentioned in #78811, but the test case exhibits
4985         behavior that was lacking in our datagrid implementation - Columns
4986         that have mapping names that don't exist in the datasource's
4987         properties aren't shown.  Yuck.  To fix this I added the bound
4988         field to the column style, and basically any calculation to figure
4989         out anything about columns uses a loop to find the bound columns.
4990         still need to investigate if I can cache an array of the bound
4991         columns or if the indices must be the same.
4993         - When setting CurrentCell, we no longer abort if the cell being
4994         edited was in the add row.  This fixes the other part of #77806.
4996         - The new code also fixes #78807.
4997         
4998         * ThemeWin32Classic.cs: perpetrate the same disgusting
4999         column.bound field hack, and only render bound fields.
5001 2006-08-31  Chris Toshok  <toshok@ximian.com>
5003         * DataGridColumnStyle.cs: add bound field.  this field is true if
5004         the datasource has a property corresponding to the mapping name.
5006         * DataGridTableStyle.cs: set the bound field on the column styles
5007         depending on whether or not we have a column for that property.
5009 2006-08-31  Peter Dennis Bartok  <pbartok@novell.com> 
5011         * Splitter.cs (SetBoundsCore): Don't ignore width/height of the 
5012           splitter control (fixes #79228)
5014 2006-08-31  Chris Toshok  <toshok@ximian.com>
5016         * DataGridColumnStyle.cs: we need to delay the assignment of
5017         property descriptor until the last possible moment due to the lazy
5018         databinding stuff in the datagrid.  Also, fix the exceptions
5019         thrown by CheckValidDataSource to match MS.
5021 2006-08-31  Jackson Harper  <jackson@ximian.com>
5023         * Form.cs: When activated select the active control, if there is
5024         no active control, we select the first control.
5025         * XplatUIX11.cs: If there is no focus control when we get a
5026         FocusIn event, find the toplevel form and activate it.  This
5027         occurs when you popup a window, it becomes the focus window, then
5028         you close that window, giving focus back to the main window.
5030 2006-08-21  Carlos Alberto Cortez <calberto.cortez@gmail.com>
5032         * MonthCalendar.cs: 
5033         * ThemeWin32Classic.cs: Cache Font in bold style, as well
5034         as StringFormat with Center alignments in MonthCalendar,
5035         instead of creating new ones when drawing the control. 
5036         Also, draw the month name in bold style.
5038 2006-08-30  Peter Dennis Bartok  <pbartok@novell.com> 
5040         * Control.cs:
5041           - PerformLayout(): It would seem MS performs the fill even if the 
5042             control is not visible (part of #79218 fix)
5043           - ResetBackColor(): Use the setter to reset the color, to allow
5044             overriders to catch the change.
5045         * Form.cs:
5046           - .ctor: Call UpdateBounds to adjust client rectangle (part of #79218 fix)
5047           - CreateHandle(): dito (part of $79218 fix)
5048           - Don't set an icon if we have a dialog
5049         * ScrollableControl.cs:
5050           - set_AutoScrollMinSize: Setting the property enables AutoScroll (#79218)
5051           - ScrollIntoView(): No need to scroll if control is already visible
5052             (resolves fixme and fixes #79218)
5054 2006-08-30  Carlos Alberto Cortez <calberto.cortez@gmail.com>
5056         * MonthCalendar.cs: Change proportions in SingleMonthSize
5057         to match the aspect of the original control.
5059 2006-08-29  Alexander Olk  <alex.olk@googlemail.com>
5061         * XplatUIX11.cs: Fix for a metacity/X problem where windows don't
5062           get updated when they get maximized.
5064 2006-08-29  Peter Dennis Bartok  <pbartok@novell.com> 
5066         * XplatUIX11.cs: Handle windows with no border (Fixes part of #79160)
5068 2006-08-29  Chris Toshok  <toshok@ximian.com>
5070         * XplatUIX11.cs: when destroying the FocusWindow, send KILLFOCUS.
5072 2006-08-29  Jackson Harper  <jackson@ximian.com>
5074         * TreeView.cs: Need to track selected node and highlighted node,
5075         they aren't always the same thing, when the mouse is down on a
5076         node it is hilighted, but not selected yet.
5077         - Do the HideSelection stuff right
5078         - Need to focus on rbutton mouse down. And redraw selection when
5079         right click is mouse upped.
5081 2006-08-29  Mike Kestner  <mkestner@novell.com>
5083         * ThemeWin32Classic.cs: draw selections for columns in FullRowSelect
5084         when SubItems.Count < Columns.Count.  [Fixes #79167]
5086 2006-08-28  Peter Dennis Bartok  <pbartok@novell.com> 
5088         * TextControl.cs (FindCursor): Fix math error (Fixes #78402)
5090 2006-08-28  Peter Dennis Bartok  <pbartok@novell.com>
5092         * XplatUIX11.cs: Preempt the roundtrip for getting the location back
5093           from X. Only send based on ConfigureNotify if we don't have the
5094           correct location in hwnd (if the window manager moved us)
5096 2006-08-28  Mike Kestner  <mkestner@novell.com>
5098         * ListView.cs: remove a TODO. 
5099         * ThemeWin32Classic.cs: implement HideSelection support for ListView.
5100         [Fixes ListView part of #79166]
5102 2006-08-28  Mike Kestner  <mkestner@novell.com>
5104         * ListView.cs: move wheel handler to parent since it is focused
5105         instead of the item_control now.  [Fixes #79177]
5107 2006-08-28  Mike Kestner  <mkestner@novell.com>
5109         * ThemeWin32Classic.cs: only highlight subitems in fullrowselect
5110         when the control is focused. [Fixes #79171]
5112 2006-08-28  Mike Kestner  <mkestner@novell.com>
5114         * ListView.cs: size the item and header controls for empty and
5115         unscrollable views.
5116         * ThemeWin32Classic.cs: draw disabled backgrounds.
5117         [Fixes #79187]
5119 2006-08-28  Chris Toshok  <toshok@ximian.com>
5121         * Form.cs: remove unused "active_form" static field.
5123         * Hwnd.cs: lock around accesses to static windows collection.
5125         * Application.cs: lock threads in Exit ().
5127 2006-08-28  Chris Toshok  <toshok@ximian.com>
5129         * NativeWindow.cs: lock around accesses to window_collection.
5130         
5131 2006-08-28  Chris Toshok  <toshok@ximian.com>
5133         * Control.cs: err, fix this the right way, by locking on controls
5134         when using it.  not by making it synchronized.
5136 2006-08-28  Chris Toshok  <toshok@ximian.com>
5138         * Control.cs: make the static "controls" field synchronized, as it
5139         gets updated from multiple threads.
5141 2006-08-27  Peter Dennis Bartok  <pbartok@novell.com>
5143         * XplatUIX11.cs: PostQuitMessage is thread-specific not app-specific.
5144           Prevent other threads from exiting when calling thread sets quit state.
5145         * XEventQueue.cs: Added PostQuitState property
5147 2006-08-27  Chris Toshok  <toshok@ximian.com>
5149         * AsyncMethodData.cs: add a slot for the window handle.
5151         * XplatUIX11.cs (SendAsyncMethod): send the event to the right
5152         window (the destination control's window, not the foster window).
5154         * Control.cs (BeginInvokeInternal): store the window's handle in
5155         the AsyncMethodData.
5156         
5158 2006-08-27  Peter Dennis Bartok  <pbartok@novell.com>
5160         * XplatUIX11.cs:
5161           - PostQuitMessage: Removed resetting S.D display handle, we might have
5162             another loop started after calling PostQuitMessage (Fixes #79119)
5163           - Created destructor to reset S.D handle
5165 2006-08-27  Peter Dennis Bartok  <pbartok@novell.com> 
5167         * XplatUIX11.cs (SetCursor): Issue flush after setting the cursor (#79168)
5169 2006-08-23  Peter Dennis Bartok  <pbartok@novell.com>
5171         * TextControl.cs (Insert): Update the caret position even if we don't
5172           have a handle yet, just don't call the driver in that case.
5173         * TextBoxBase.cs (set_SelectedText): Set the Start and End selection
5174           to the end of the new selection text (Fixes #79184)
5176 2006-08-23  Peter Dennis Bartok  <pbartok@novell.com> 
5178         * Form.cs (Activate): Only activate if the handle is created)
5179         * Control.c:
5180           - Mark window as invisible when it's disposed
5181           - Check if window handle is created when setting window visible, 
5182             instead of relying just on the is_created variable
5183           - Check if object is disposed when creating the control (Fixes #79155)
5185 2006-08-23  Peter Dennis Bartok  <pbartok@novell.com>
5187         * ScrollableWindow.cs (ScrollWindow): Don't actually perform layouting
5188           when allowing layout again. Otherwise we re-generate the anchoring 
5189           distance to the border again and actually alter what the user wanted
5190           This is ugly, it'd be better if we used DisplayRectangle instead of
5191           ClientRectangle for Control.UpdateDistances, but that causes us to
5192           have other problems (initial anchoring positons would be wrong)
5193           (Fixes #78835)
5195 2006-08-23  Peter Dennis Bartok  <pbartok@novell.com> 
5197         * Control.cs:
5198           - The size and location setters shouldn't go directly to 
5199             SetBoundsCore, but to SetBounds, which triggers layout on the
5200             parent, then calls SetBoundsCore. (Related to fix for #78835)
5201           - SetBounds: Moved actual location update code into this function
5202             from SetBoundsCore, to match MS. Added call to PerformLayout if
5203             we have a parent (to trigger resizing of anchored parents if the 
5204             child size has changed (see testcase for #78835) 
5205         * ListBox.cs, Form.cs: Call SetBounds instead of SetBoundsCore to match 
5206           new control code
5207         * ScrollableControl.cs (CalculateCanvasSize): Use shortcut variable
5209 2006-08-23  Peter Dennis Bartok  <pbartok@novell.com>
5211         * XplatUIX11.cs: Don't reset the DisplayHandle that's stored in
5212           System.Drawing when a toplevel window gets closed; there might
5213           be other toplevel windows belonging to the same app (Fixes #78052)
5215 2006-08-26  Alexander Olk  <alex.olk@googlemail.com>
5217         * FileDialog.cs: After reading FileDialog settings from mwf_config
5218           use Desktop prefix only if a real folder doesn't exist anymore.
5219         * FontDialog.cs: Added char sets.
5220           It is now possible to select the font, size or style with the
5221           textboxes.
5223 2006-08-25  Kornél Pál  <kornelpal@gmail.com>
5225         * PrintPreviewDialog.cs: Use assembly name constants.
5227 2006-08-23  Peter Dennis Bartok  <pbartok@novell.com>
5229         * XplatUIWin32.cs (ScrollWindow): Use clipping rectangle arg (prevents
5230           scrollbar from whacking it's buttons)
5232 2006-08-24  Chris Toshok  <toshok@ximian.com>
5234         * ScrollableControl.cs: fix #78271.  There's a lot of misc stuff
5235         in this patch (aggregating setting Left/Top/Width/Height to
5236         setting Bounds on the scrollbars), but the crux of the fix is in
5237         Recalculate, where we scroll by the remaining scroll_position if
5238         we're hiding a scrollbar.  The 2*$5 reward in the comment is
5239         serious.
5241 2006-08-24  Jackson Harper  <jackson@ximian.com>
5243         * MdiClient.cs:
5244         * MdiWindowManager.cs: If the form is made a non-mdi window we
5245         need to remove the form closed event so that closing forms works
5246         correctly.
5248 2006-08-24  Jackson Harper  <jackson@ximian.com>
5250         * Control.cs: Make IsRecreating internal so that the driver can
5251         check it
5252         - Temporarily remove the Hide when controls are removed, its
5253         making a whole bunch of things not work because visibility isn't
5254         getting reset elsewhere correctly
5255         * Form.cs: Need to do a full handle recreation when the mdi parent
5256         is set.
5257         * XplatUIX11.cs: If we are recreating handles don't dispose the
5258         HWNDs.  What was happening is the handles were being recreated in
5259         SendWMDestroyMessages, but then flow continued on in that method
5260         and destroyed the new handles.
5262 2006-08-23  Jackson Harper  <jackson@ximian.com>
5264         * Form.cs: MdiClient is always at the back of the bus
5265         * Control.cs: When the order of items in the collection is changed
5266         we need to reset the all_controls array
5267         - do the same sorta setup thats done when adding a control when a
5268         control is set on the collection.
5270 2006-08-23  Peter Dennis Bartok  <pbartok@novell.com>
5272         * TextBoxBase.cs (get_Text): Return an empty array if our document
5273           is empty (fixes #79052)
5275 2006-08-23  Peter Dennis Bartok  <pbartok@novell.com> 
5277         * Control.cs: We should call IsInputChar on only on WM_CHAR but not
5278           on WM_SYSCHAR messages (fixes #79053)
5280 2006-08-23  Chris Toshok  <toshok@ximian.com>
5282         * DataGrid.cs: fix flickering when scrolling vertically.
5284 2006-08-23  Chris Toshok  <toshok@ximian.com>
5286         * DataGrid.cs (EndEdit): only invalidate the row header when we
5287         need to.
5289 2006-08-23  Chris Toshok  <toshok@ximian.com>
5291         * ThemeWin32Classic.cs: fix the clip munging of the datagrid paint
5292         methods.  fixes the flicker when scrolling around.
5294 2006-08-23  Peter Dennis Bartok  <pbartok@novell.com> 
5296         * FileDialog.cs: Making sure the control is created before we get a 
5297           chance to use it with BeginInvoke (Fixes #79096)
5299 2006-08-23  Chris Toshok  <toshok@ximian.com>
5301         * ThemeWin32Classic.cs (DataGridPaintRows): calculate the proper
5302         width to use when painting the rows.
5304 2006-08-23  Peter Dennis Bartok  <pbartok@novell.com> 
5306         * TextBoxBase.cs:
5307           - Throw ArgumentException if a negative value is passed to SelectionLength
5308           - Update the selection end if start is moved. end needs to be always
5309             after start. (Fixes #79095)
5310           - Track selection length; MS keeps the selection length even if start
5311             is changed; reset on all other operations affection selection
5313 2006-08-22  Jackson Harper  <jackson@ximian.com>
5315         * TreeView.cs: Make sure both scrollbars get displayed and sized
5316         correctly when the other bar is visible.
5317         - Use the original clip rectangle for checking if the area between
5318         the two scrollbars is visible, not the viewport adjusted clipping
5319         rectangle.
5321 2006-08-22  Jackson Harper  <jackson@ximian.com>
5323         * Binding.cs: We don't use IsBinding because it requires the
5324         control to be created, which really shouldn't be necessary just to
5325         set a property on the control.
5327 2006-08-21  Carlos Alberto Cortez <calberto.cortez@gmail.com>
5329         * ComboBox.cs: Some CB.ObjectCollection methods must throw
5330         ArgumentNullReferenceException when the argument is null.
5332 2006-08-21  Jackson Harper  <jackson@ximian.com>
5334         * Timer.cs: Track the thread that the timer is started in (NOT
5335         CREATED), this way messages for it will only be triggered on its
5336         queue.
5337         * XEventQueue.cs: Track the timers here, this makes timers per
5338         thread, like MS.
5339         * XplatUIX11.cs: The timers are moved to the XEventQueue.
5341 2006-08-19  Chris Toshok  <toshok@ximian.com>
5343         * XplatUIX11.cs: after further communication with pdb, we get the
5344         best of both worlds.  SetZOrder working for un-Mapped windows, and
5345         no X errors for un-mapped windows.
5347 2006-08-19  Chris Toshok  <toshok@ximian.com>
5349         * XplatUIX11.cs (SetZOrder): remove the if (!hwnd.mapped) check,
5350         as it was causing pdn toolbars to not have the correct stacking.
5352 2006-08-18  Mike Kestner  <mkestner@novell.com> 
5354         * ListView.cs : guard against negative ClientArea.Width in scrollbar
5355         calculation.  Not sure why control should ever be setting a negative
5356         width though.  Fixes #78931.
5358 2006-08-18  Carlos Alberto Cortez <calberto.cortez@gmail.com>
5360         * ComboBox.cs: Throw ArgumentNullException when adding/modifyng
5361         null items in ObjectCollection class.
5362         * ListBox.cs.: Likewise.
5364 2006-08-18  Atsushi Enomoto  <atsushi@ximian.com>
5366         * ThemeNice.cs, ThemeClearlooks.cs : remove RadioButton_DrawFocus()
5367           as the base method in ThemeWin32Classic should work fine.
5368           Fixed bug #78607.
5370 2006-08-18  Jackson Harper  <jackson@ximian.com>
5372         * Binding.cs: When validating if the value entered doesn't convert
5373         properly reset to the old value.
5374         * RadioButton.cs: Don't fire click when we get focus.
5376 2006-08-18  Jackson Harper  <jackson@ximian.com>
5378         * FileDialog.cs: Paint the selection on the directory combobox the
5379         same way as on MS. 
5381 2006-08-17  Jackson Harper  <jackson@ximian.com>
5383         * ErrorProvider.cs: Don't allow the error control to be selected.
5384         * Control.cs: Don't send the SetFocus messages, the control
5385         activation will do this, and if we do it blindly here validation
5386         does not work.
5388 2006-08-17  Jackson Harper  <jackson@ximian.com>
5390         * Control.cs:
5391         * ContainerControl.cs: Make validation events fire in the correct
5392         order.  TODO: For some reason the first validation event is not
5393         getting fired.
5395 2006-08-17  Mike Kestner  <mkestner@novell.com> 
5397         * ComboBox.cs : some null guarding for ComboListBox.Scroll.
5399 2006-08-17  Mike Kestner  <mkestner@novell.com> 
5401         * ComboBox.cs : implement scroll wheel support for popped-down
5402         state. Fixes #78945. 
5404 2006-08-17  Jackson Harper  <jackson@ximian.com>
5406         * TreeView.cs: Specify treeview actions (old patch that didn't get
5407         committed for some reason).
5408         - Don't let the mouse wheel scroll us too far.  Just want to make
5409         the bottom node visible, not scroll it all the ways to the top.
5411 2006-08-17  Jackson Harper  <jackson@ximian.com>
5413         * XplatUIX11.cs: Mouse wheel events go to the focused window.
5415 2006-08-17  Mike Kestner  <mkestner@novell.com> 
5417         * ComboBox.cs : don't do mouseover selection in simple mode.
5419 2006-08-16  Jackson Harper  <jackson@ximian.com>
5421         * Form.cs: Fire the closing events for all the mdi child windows
5422         when a window is closed.  If the cancel args are set to true, the
5423         main window still gets the event fired, but it doesn't not close.
5424         * MdiWindowManager.cs: Do this closing cleanup in a Closed
5425         handler, instead of when the button is clicked, so cancelling the
5426         close works correctly.
5427         * ComboBox.cs: Send the mouse down to the scrollbar.
5429 2006-08-16  Carlos Alberto Cortez <calberto.cortez@gmail.com>
5431         * ListBox.cs: When passing 'null' to SelectedItem,
5432         set SelectedIndex to -1, to unselect items. This is the
5433         observed behaviour in .Net.
5435 2006-08-16  Peter Dennis Bartok  <pbartok@novell.com> 
5437         * TextBoxBase.cs: Overriding HandleClick to get clicks in spite of
5438           MS flags saying there won't be any. (fixes #78800)
5439         * Control.cs (HandleClick): Made virtual
5441 2006-08-16  Atsushi Enomoto  <atsushi@ximian.com>
5443         * PageSetupDialog.cs : use Yard-Pound units only in en-GB and en-US
5444           cultures. Fixed bug #78399.
5446 2006-08-16  Jackson Harper  <jackson@ximian.com>
5448         * Form.cs: Use the MdiClients MdiChildren property to access
5449         MdiChildren instead of creating the array from the child controls.
5450         * MdiClient.cs: Maintain a separate array of the mdi children, so
5451         that insertion order is maintained when the Z-order is changed.
5453 2006-08-16  Mike Kestner  <mkestner@novell.com> 
5455         * ListView.cs : add an ItemComparer and default to it for sorting.
5456         Fixes #79076, but sorting needs a complete overhaul to be compat with
5457         MS.
5459 2006-08-15  Peter Dennis Bartok  <pbartok@novell.com> 
5461         * XplatUIX11.cs (SetZOrder): Fix debugging leftover (fixes #79080)
5463 2006-08-15  Peter Dennis Bartok  <pbartok@novell.com>
5465         * Hwnd.cs (Mapped): Properly traverse the tree
5467 2006-08-15  Chris Toshok  <toshok@ximian.com>
5469         * Binding.cs: fix PullData/SetPropertyValue.  We don't want to
5470         pass manager.Current.GetType() to ParseData.  It has to be the
5471         property type.  So, hold off doing the ParseData until we're in
5472         SetPropertyValue where we know the type.  This fixes the crash in
5473         #78821 but the textbox is still empty.
5475 2006-08-15  Chris Toshok  <toshok@ximian.com>
5477         * DataGrid.cs:
5478         - when we're scrolling, only call Edit() again if the
5479         current cell is still unobscured. Fixes bug #78927.
5480         - when handling mousedown on a cell, ensure the cell is visible
5481         before calling Edit.
5482         - remove the properties from DataGridRow, and remove the
5483         DataGridParentRow class altogether.
5484         
5486 2006-08-15  Peter Dennis Bartok  <pbartok@novell.com>
5488         * TextBoxBase.cs (set_Text): Don't use base.Text, instead just
5489           fire OnTextChanged by ourselves. There's no point calling base,
5490           we don't set the base value anywhere else. Fixes #78773.
5492 2006-08-15  Carlos Alberto Cortez <calberto.cortez@gmail.com>
5494         * ListBox.cs: Call CollectionChanged when modifying
5495         an item from Items indexer, to update the actual items
5496         in the list box.
5498 2006-08-15  Carlos Alberto Cortez <calberto.cortez@gmail.com>
5500         * PrintDialog.cs: Small fixes for focus and a pair of checks,
5501         to match .Net behaviour.
5503 2006-08-15  Peter Dennis Bartok  <pbartok@novell.com>
5505         * XplatUIX11.cs (SetZOrder): Handle raising toplevel windows
5507 2006-08-15  Peter Dennis Bartok  <pbartok@novell.com> 
5509         * Control.cs: Handle BringToFront for toplevel windows (Fixes #78737)
5511 2006-08-15  Peter Dennis Bartok  <pbartok@novell.com>
5513         * MessageBox.cs: Prevent potential NRE exception.
5514         * TextBoxBase.cs: AutoSize only applies if MultiLine is false. Fixes #78889
5516 2006-08-14  Peter Dennis Bartok  <pbartok@novell.com>
5518         * MessageBox.cs: Calculate the owner of a messagebox, also make
5519           it topmost. Fixes #78753
5521 2006-08-14  Chris Toshok  <toshok@ximian.com>
5523         * XplatUIX11.cs: A couple of fixes so that metacity will let us
5524         programmatically move windows.  first, set the PPosition hint as
5525         well as the USPosition hint.  Second include some code from pdb
5526         that sets the window type to NORMAL when we set the transient for
5527         hint.  This is because, in the absence of a window type, metacity
5528         thinks any window with TransientFor set is a dialog, and refuses
5529         to let us move it programmatically.  fascists.
5531 2006-08-14  Peter Dennis Bartok  <pbartok@novell.com>
5533         * XplatUIX11.cs: When setting normal hints, take into consideration
5534           an different hints previously set so we don't delete them (fixes #78866)
5536 2006-08-12  Chris Toshok  <toshok@ximian.com>
5538         * ToolBarButton.cs: make Layout return a boolean, if something to
5539         do with the button's layout changed.
5541         * ToolBar.cs:
5542         - add another parameter to Redraw, @force, which all existing
5543           calls set to true.
5544         - make the Layout function return a boolean which is true if the
5545           layout has actually changed.  Redraw now uses this (and @force)
5546           to determine when to invalidate.  At present the only place
5547           where @force can be false is the call from OnResize, when
5548           background_image == null.  So, resizing a toolbar when the
5549           layout doesn't change results in no drawing.
5551 2006-08-12  Chris Toshok  <toshok@ximian.com>
5553         * ThemeWin32Classic.cs: fix the bottom right corner painting.  had
5554         the VScrollBar and HScrollbar reversed.  oops.
5556         * DataGrid.cs: fix the logic that assigns sizes to the implicit
5557         scrollbars.  we were assigning them twice (once in
5558         Calc{Horiz,Vertical}Scrollbar, and once in CalcGridAreas),
5559         therefore causing two scrollbar resizes (and redraws?) to happen
5560         per grid resize.
5562 2006-08-12  Chris Toshok  <toshok@ximian.com>
5564         * ToolBarButton.cs: redraw the entire button if the theme tells us
5565         to.
5567         * Theme.cs: add ToolBarInvalidateEntireButton.
5569         * ThemeWin32Classic.cs: we don't need to redraw the entire toolbar
5570         buttons, just the border.
5572         * ThemeNice.cs: redraw the entire toolbar button since we need to
5573         draw the highlight image.
5575         * ThemeClearlooks.cs: the rounded corners of toolbar buttons mean
5576         we need to redraw the entire button (not just the border).
5578 2006-08-11  Peter Dennis Bartok  <pbartok@novell.com>
5580         * TextBoxBase.cs (CalculateScrollbars): Set the proper thumb size
5581           for vertical bars. Fixes the mismatches shown by #78513
5583 2006-08-11  Alexander Olk  <alex.olk@googlemail.com>
5585         * FileDialog.cs: If a saved/remembered path doesn't exist
5586           anymore, fall back to "Desktop".
5588 2006-08-11  Peter Dennis Bartok  <pbartok@novell.com>
5590         * Form.cs (CreateParams): Don't use Parent.Handle unless we have a
5591           parent. It's apparently legal to not have one
5592         * XplatUIX11.cs:
5593           - SetZOrder: Don't try to set Z-Order on an unmapped window
5594           - CreateWindow: 0,0 are legal coordinates for a window. don't move
5595             it unless the coordinates are negative
5597 2006-08-10  Mike Kestner  <mkestner@novell.com>
5599         * ListControl.cs: allow null for DataSource.  Clear DisplayMember
5600         when setting to null per msdn docs.  Fixes #78854.
5602 2006-08-10  Chris Toshok  <toshok@ximian.com>
5604         * Menu.cs, MainMenu.cs, MenuAPI.cs: get rid of most of the
5605         flickering by setting a clip rectangle on the Graphics when we
5606         need to redraw just a particular menuitem.  Also, rename "OnClick"
5607         to "OnMouseDown" to reflect what it actually is.
5608         
5609         * Form.cs: track the OnMouseDown change.
5611 2006-08-10  Peter Dennis Bartok  <pbartok@novell.com>
5613         * CommonDialog.cs: Properly inherit the CreateParams from the form
5614           and only change what we need. Fixes #78865
5616 2006-08-10  Chris Toshok  <toshok@ximian.com>
5618         * ToolBar.cs, ToolBarButton.cs: fix the redraw-on-highlight
5619         flickering in flat mode (and most of the flickering in general) by
5620         only invalidating the button border (and not the entire rectangle)
5621         when the state changes.  A couple of cases still flicker:
5622         ToggleButtons, and the dropdown arrow case when the user mouse
5623         ups.
5625 2006-08-10  Alexander Olk  <alex.olk@googlemail.com>
5627         * X11Keyboard.cs: Fixed handling of the Del key on the cursorblock
5628           for german keyboards. Numlock state shouldn't affect the behaviour
5629           of the Del key. Fixes bug #78291.
5631 2006-08-10  Chris Toshok  <toshok@ximian.com>
5633         * ListControl.cs: remove the items.Clear line from BindDataItems,
5634         as this is the first thing done by both subclasses in their
5635         SetItemsCore overrides.  Also, add a ItemChanged handler, and when
5636         passed -1, refresh the list.  This gets databinding working when
5637         the datasource is set on the list before the datasource is
5638         populated (as in wf-apps/ReportBuilder.)
5640         * ComboBox.cs: remove the argument to BindDataItems.  This call
5641         should really go away, and be initiated by the ListControl code.
5643         * ListBox.cs: same.
5645 2006-08-09  Peter Dennis Bartok  <pbartok@novell.com>
5647         * TextControl.cs (Document.ctor): Initialize caret so we don't crash
5648           if no data is in the document when the control is displayed
5650 2006-08-09  Peter Dennis Bartok  <pbartok@novell.com> 
5652         * TextBoxBase.cs: Don't try moving the caret if we don't have a window
5653           yes (fixes #78806)
5654         * TextControl.cs: 
5655           - PositionCaret: Allow positioning of caret but don't call methods 
5656             requiring a handle if the window isn't created yet
5657           - CharIndexToLineTag: Fix ending loop early error. Lines is 1 based
5658           - owner_HandleCreated: Don't position the caret, just update it's 
5659             location. User might have already set a different position
5661 2006-08-09  Peter Dennis Bartok  <pbartok@novell.com>
5663         * XplatUIWin32.cs: Don't use the desktop as basis for foster-parented
5664           windows. Screws up the returned coordinates for child windows. 
5665           Fixes #78825. I'm hoping this doesn't break something, since the
5666           code was explicitly put in 8 months ago, but no bug was attached.
5667           Menus still seem to work properly.
5669 2006-08-08  Chris Toshok  <toshok@ximian.com>
5671         * DataGrid.cs: make BeginInit/EndInit actually do what they're
5672         supposed to do - delay data binding until the EndInit call.  Also,
5673         make the table style collection's CollectionChangeAction.Refresh
5674         work properly.
5676         * GridTableStylesCollection.cs: raise a CollectionChangeEvent
5677         (with action = Refresh) when a consituent table's MappingName is
5678         changed.
5680 2006-08-08  Chris Toshok  <toshok@ximian.com>
5682         * ToolBarButton.cs: in set_Text, call Parent.Redraw, not
5683         Invalidate, since changing the text can change the size of the all
5684         toolbar buttons.
5686 2006-08-08  Peter Dennis Bartok  <pbartok@novell.com>
5688         * Form.cs (AddOwnedForm): Still need to add the form to our listif
5689           we don't have it yet
5691 2006-08-08  Chris Toshok  <toshok@ximian.com>
5693         * PrintControllerWithStatusDialog.cs: don't .Close() the status
5694         dialog, as this causes X errors later on, since we actually
5695         destroy the window.  Instead, .Hide() it.
5697 2006-08-08  Peter Dennis Bartok  <pbartok@novell.com>
5699         * ComboBox.cs: Added focus reflection for popup window
5700         * XplatUIX11.cs: 
5701           - Removed transient setting for non-app windows for now, not sure it
5702             was needed
5703           - Fixed logic checking if we have captions when deciding 
5704             override_redirect, WS_CAPTION is two bits and a 0 check was not
5705             sufficient
5706           - Removed the WINDOW_TYPE stuff, it was unneeded and making things
5707             complicated
5708         * Form.cs: 
5709           - AddOwnedForm: Don't just add the form to the list, call the property
5710             to ensure the driver is informed about the ownership as well
5711           - CreateHandle: Set the TopMost status in the driver if we have an owner
5712         * XplatUI.cs: Fixed debug statement
5714 2006-08-08  Jonathan Pobst <monkey@jpobst.com>
5715         * ButtonRenderer.cs, CheckBoxRenderer.cs, ComboBoxRenderer.cs
5716           GroupBoxRenderer.cs, ProgressBarRenderer.cs, RadioButtonRenderer.cs,
5717           ScrollBarRenderer.cs, TabRenderer.cs, TextBoxRenderer.cs, 
5718           TrackBarRenderer.cs: Make constructor private.
5719         * ProfessionalColors.cs, ProfessionalColorTable.cs: Fix misnamed properties.
5720         * ProfessionalColorTable.cs: Make properties virtual.
5722 2006-08-06  Duncan Mak  <duncan@novell.com>
5724         * NumericUpDown.cs (Value): Don't call OnValueChanged if the value
5725         is not changing.
5727 2006-08-04  Jonathan Pobst <monkey@jpobst.com>
5728         * ButtonRenderer.cs, CheckBoxRenderer.cs, ComboBoxRenderer.cs
5729           GroupBoxRenderer.cs, ProfessionalColors.cs, ProfessionalColorTable.cs,
5730           ProgressBarRenderer.cs, RadioButtonRenderer.cs, ScrollBarRenderer.cs,
5731           TabRenderer.cs, TextBoxRenderer.cs, TextRenderer.cs, TrackBarRenderer.cs:
5732           Initial import of new 2.0 classes.
5734 2006-08-04  Jonathan Pobst <monkey@jpobst.com>
5735         * Application.cs: Add 2.0 VisualStyles properties.
5737 2006-08-04  Jonathan Pobst <monkey@jpobst.com>
5738         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs, XplatUIWin32.cs,
5739           XplatUIX11.cs: Create property to allow access to existing private
5740           variable "themes_enabled"
5742 2006-08-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
5744         * ImageListStreamer.cs: generate the MemoryStreams with the exact BMP
5745         file size, as otherwise our class libraries fail using windows. Fixes
5746         bug #78759.
5748 2006-08-04  Jackson Harper  <jackson@ximian.com>
5750         * Form.cs:
5751         * XplatUIX11.cs: Move the toolwindow window manager creation into
5752         the X11 driver, this way on win32 we can let windows create/handle
5753         the toolwindows.
5755 2006-08-04  Carlos Alberto Cortez <calberto.cortez@gmail.com>
5757         * PrintDialog.cs: Remove some redundant checks, add some others,
5758         clean some code, and move the focus to the text boxes when the
5759         values are incorrect.
5761 2006-08-04  Alexander Olk  <alex.olk@googlemail.com>
5763         * FontDialog.cs: Remove Form.MinimumSize. It's not needed.
5765 2006-08-03  Alexander Olk  <alex.olk@googlemail.com>
5767         * NumericUpDown.cs: Setting the Minimum and Maximum is now
5768           handled correctly. Fixes bug #79001.
5770 2006-08-03  Carlos Alberto Cortez <calberto.cortez@gmail.com>
5772         * PrintDialog.cs: The "Copies" numeric up down must have
5773         set the Minimum property to 1; only if the value is bigger
5774         than 1, activate "Collate" check box. This is the behaviour of .Net.
5775         Also modify the Document elements only if it is not null.
5777 2006-08-03  Jackson Harper  <jackson@ximian.com>
5779         * TreeNodeCollection.cs: Fix copyto to use the correct nodes
5780         length. (We have a larger array then actual node count).
5781                 
5782 2006-08-03  Jackson Harper  <jackson@ximian.com>
5784         * ComboBox.cs: Don't show selection by default.
5785         - The SelectAll isn't needed here, since the focus code should do
5786         that
5787         - DDL style lists to manual selection drawing, so when they
5788         get/lose focus they have to invalidate.
5790 2006-08-03  Peter Dennis Bartok  <pbartok@novell.com>
5792         * TextBoxBase.cs: Don't always show all selections by default.
5794 2006-08-03  Jonathan Pobst  <monkey@jpobst.com>
5795         * ControlUpdateMode.cs, DataSourceUpdateMode.cs,
5796           HelpNavigator.cs, WebBrowserEncryptionLevel.cs:
5797           Fixed various typos.
5799 2006-08-03  Alexander Olk  <alex.olk@googlemail.com>
5801         * Control.cs: Removing the controls in a ControlCollection with
5802           Clear now hides the controls as expected. Fixes bug #78804. 
5804 2006-08-03  Jackson Harper  <jackson@ximian.com>
5806         * Control.cs: Revert previous focus patch, it breaks reflector.
5808 2006-08-03  Jackson Harper  <jackson@ximian.com>
5810         * ComboBox.cs: Cleanup selection and focus with the combobox.
5811         This also eliminates some duplicated keyboard code, since now
5812         everything is handled by the main class.
5813         - Make list selection work on mouse up instead of down, to match
5814         MS.
5816 2006-08-02  Jackson Harper  <jackson@ximian.com>
5818         * Control.cs: Setting focus needs to go through the whole
5819         selection mechanism.
5821 2006-08-02  Chris Toshok  <toshok@ximian.com>
5823         * PrintPreviewDialog.cs: change MinimumSize to use
5824         base.MinimumSize so it works.
5826 2006-08-02  Peter Dennis Bartok  <pbartok@novell.com>
5828         * TextControl.cs:
5829           - UpdateCaret: Added sanity check in case caret isn't defined yet
5830           - Line.Delete: Now updating selection and caret markers if we're
5831             transfering a node (Properly fixes #78323)
5832           - SetSelectionEnd: Added sanity check
5833         * TextBoxBase.cs: Removed broken attempt to fix #78323
5835 2006-08-01  Chris Toshok  <toshok@ximian.com>
5837         * PrintPreviewDialog.cs: the CancelEventArgs stuff surrounding the
5838         Close() call is handled in Form, not here.
5840 2006-08-01  Chris Toshok  <toshok@ximian.com>
5842         * Theme.cs, ThemeWin32Classic.cs: fix the PrintPreviewControl
5843         layout/rendering.
5845         * PrintPreviewDialog.cs: add scrollbars, and add an image cache
5846         for sizes < 100% zoom.  The code now aggressively attempts to keep
5847         from calling document.Print (), and tries not to use the scaling
5848         g.DrawImage whenever possible (it still does if you scale to >
5849         100%, since usually that involves huge images).
5851         * PrintPreviewControl.cs: hook up the close button.
5853 2006-08-01  Jonathan Pobst  <monkey@jpobst.com>
5854         * ColumnClickEventHandler.cs, DrawItemEventHandler.cs,
5855           ItemChangedEventHandler.cs, ItemCheckEventHandler.cs,
5856           ItemDragEventHandler.cs, LabelEditEventHandler.cs,
5857           LinkClickedEventHandler.cs, LinkLabelLinkClickedEventHandler.cs,
5858           MeasureItemEventHandler.cs, MethodInvoker.cs, PaintEventHandler.cs,
5859           PropertyTabChangedEventHandler.cs, PropertyValueChangedEventHandler.cs,
5860           SelectedGridItemChangedEventHandler.cs, ToolBarButtonClickEventHandler.cs:
5861           Removed [Serializable] for 2.0 Event Handlers.
5863 2006-07-31  Jackson Harper  <jackson@ximian.com>
5865         * TextBoxBase.cs: Make ShowSelection invalidate when changed.
5866         * TextControl.cs: Uncomment out the body of this method.
5868 2006-07-31  Alexander Olk  <alex.olk@googlemail.com>
5870         * XplatUIX11.cs: Use the correct cursor shapes for arrow and default
5871           standard cursors.
5873 2006-07-31  Peter Dennis Bartok  <pbartok@novell.com>
5875         * TextBoxBase.cs: Added internal property ShowSelection to allow controls
5876           that embed TextBox and need selections visible even if textbox is not
5877           focused to enforce that behaviour.
5878         * TextControl.cs (Draw): Use ShowSelection instead of has_focus to determine
5879           selection drawing
5881 2006-07-31  Peter Dennis Bartok  <pbartok@novell.com>
5883         * TextControl.cs:
5884           - Added new SetSelectionStart/SetSelectionEnd overloads
5885           - Fixed viewport width assignment to be accurate
5886           - Adjusted alignment line shift calculations to allow cursor on right
5887             aligned lines to be always visible at the right border (like MS)
5888         * TextBoxBase.cs:
5889           - SetBoundsCore: Re-adjust caret location after resize (Fixes #78323)
5890           - TextBoxBase_SizeChanged: recalculating canvas on size changes
5891           - CalculateScrollBars: Use ViewPort size instead of window size, to
5892             properly consider space occupied by the border and scrollbars 
5893             (Fixes #78661)
5894           - hscroll_ValueChanged, vscroll_ValueChanged: Fixed scroll 
5895             calculations; no longer leaves artifacts
5896           - CaretMoved: Adjusted window scrolling to match MS and fixed several
5897             calculation bugs (Still missing right/center align calculations)
5899 2006-07-31  Peter Dennis Bartok  <pbartok@novell.com> 
5901         * XPlatUIWin32.cs: Made ScrollRectEx a bit more flexible, and removed
5902           use of both scroll rect and clip rect, as they do the same.
5904 2006-07-31  Peter Dennis Bartok  <pbartok@novell.com>
5906         * Control.cs (WM_CHAR WndProc): 2.0 profile allows changing the key 
5907           in the event handler (fixes #78912)
5909 2006-07-31  Chris Toshok  <toshok@ximian.com>
5911         * ThemeWin32Classic.cs: use grid.RowsCount here instead of
5912         grid.ListManager.Count, since grid.ListManager might be null.
5913         This of course begs the question "why are we drawing rows for a
5914         grid with no list manager (and therefor no rows)?"  Fixes the
5915         crash in bug #78929.
5917 2006-07-31  Chris Toshok  <toshok@ximian.com>
5919         * RelatedPropertyManager.cs: Don't always chain up to the parent
5920         ctor.  instead, call SetDataSource if the parent's position is !=
5921         -1.  Fixes the crash in #78822.
5923 2006-07-31  Chris Toshok  <toshok@ximian.com>
5925         * DataGrid.cs (get_ListManager): use field instead of property
5926         accessors for datasource and datamember.
5927         (RowsCount): make internal again.
5928         (OnMouseDown): end edits before resizing columns/rows.
5929         (OnMouseUp): restart edits after resizing columns/rows.
5931 2006-07-30  Peter Dennis Bartok  <pbartok@novell.com>
5933         * XplatUIX11.cs: Default cursor cannot be 0 or it will not get set.
5934           This fixes the situation where the last set cursor is displayed
5935           whenever the mouse is over scrollbars.
5937 2006-07-30  Carlos Alberto Cortez <calberto.cortez@gmail.com>
5939         * PrintDialog.cs: Fix the behaviour of PrinterSettings and
5940         Document properties, as well as initial values.
5942 2006-07-29  Peter Dennis Bartok  <pbartok@novell.com>
5944         * XplatUIWin32.cs (SetBorderStyle): Setting both border
5945           and ClientEdge results in a 3-pixel border, which is
5946           wrong.
5948 2006-07-28  Jackson Harper  <jackson@ximian.com>
5950         * TreeNodeCollection.cs: Fix the clear method.
5951         - Fix the Shrink also
5953 2006-07-27  Jackson Harper  <jackson@ximian.com>
5955         * TreeView.cs: Make sure the visible order is computed when we
5956         attempt to size the scrollbars (for trees that mess with the
5957         scrolling when they shouldn't.
5958         - Make sure to give the scrollbars valid values.
5960 2006-07-26  Peter Dennis Bartok  <pbartok@novell.com> 
5962         * XplatUIX11.cs: Move motion compression code to where it
5963           has less performance impact
5965 2006-07-26  Jackson Harper  <jackson@ximian.com>
5967         * UpDownBase.cs: When the control is selected make the child
5968         controls non selectable, so that a click on them won't do a
5969         focus/unfocus cycle.
5970         - Don't give focus to the text box when the spinner is selected.
5971         * XEventQueue.cs: Peek on both the x11 queue and the lock queue.
5973 2006-07-26  Chris Toshok  <toshok@ximian.com>
5975         * ThemeWin32Classic.cs: add print preview rendering.  I'm not
5976         satisfied with this solution.  If the bitmaps are small, we should
5977         just cache them in the PrintPreviewDialog and draw them here.
5978         Also, the layout is broken for the 2-up and 3-up cases.
5980         * Theme.cs: add PrintPReviewControlPaint.
5982         * PrintPreviewDialog.cs: first pass implementation.
5984         * PrintPreviewControl.cs: first pass implementation.  No
5985         scrollbars yet.
5987         * PrintDialog.cs: only validate fields if that particular portion
5988         of the UI is enabled.  Also, set the document's controller to a
5989         PrintControllerWithStatusDialog wrapping the document's print
5990         controller.
5992         * PrintControllerWithStatusDialog.cs: if we're printing to a file,
5993         bring up a SaveFileDialog (i hope we don't want to match the
5994         behavior of the crappy windows file entry) and set the
5995         PrinterSettings.PrintFileName accordingly.
5997 2006-07-26  Jackson Harper  <jackson@ximian.com>
5999         * ContainerControl.cs: Add a field that disables auto selecting
6000         the next control in a container when the container is activated.
6001         * UpDownBase.cs: Don't select the text box when the up down is
6002         selected.
6004 2006-07-26  Peter Dennis Bartok  <pbartok@novell.com> 
6006         * XEventQueue.cs: Added methods for peeking (used for compression
6007           of successive events)
6008         * XplatUIX11.cs (GetMessage): We're now compressing consecutive
6009           mouse move events (fixes #78732)
6011 2006-07-25  Jackson Harper  <jackson@ximian.com>
6013         * UpDownBase.cs: Use an internal class for the textbox so that we
6014         can control focus.  the updown control should always have focus,
6015         if either the text area or the buttons are clicked.
6016         - Send the key messages to the textbox, since it never actually
6017         has focus
6018         - Activate and decativate the textbox caret.
6020 2006-07-24  Jackson Harper  <jackson@ximian.com>
6022         * Control.cs: Use the directed select when selecting a control,
6023         this way the container controls override will get called and the
6024         whole ActiveControl chain will get triggered.  TODO: probably need
6025         to make sure this gets done everywhere instead of the old
6026         Select(Control).
6027         * ContainerControl.cs: Implement the directed Select method to
6028         find and activate the correct child control.    
6029         
6030 2006-07-22  Mike Kestner  <mkestner@novell.com>
6032         * Form.cs: use Control.MousePosition for NCLBUTTONDOWN in the menu
6033         menu handling code so that clicks without a grab work too.
6034         [Fixes #78914]
6036 2006-07-22  Alexander Olk  <alex.olk@googlemail.com>
6038         * FileDialog.cs: Enable the BackButton when dirstack has one element.
6039           Added some small optimizations.
6041 2006-07-21  Matt Hargett  <matt@use.net>
6043         * Control.cs: Implemented 2.0 MinimumSize/MaximumSize properties
6045 2006-07-21  Peter Dennis Bartok  <pbartok@novell.com> 
6047         * Control.cs (GetNextControl): Fixes to make all of Jackson's unit 
6048           tests pass and match MS in some strange border cases.
6050 2006-07-21  Chris Toshok  <toshok@ximian.com>
6052         * ThemeWin32Classic.cs: handle drawing of the relation links and
6053         parent row buttons.
6055         * Theme.cs: change args to DataGridPaintParentRow.
6057         * DataGrid.cs: Don't use controls for the relation links and
6058         parent buttons, so we have to handle all their interactions in
6059         MouseMove, MouseDown, MouseUp, etc.  Also, store a lot more stuff
6060         when we're navigating through child tables, so we can reinstate
6061         selection, expanded state, current cell, etc.
6063 2006-07-20  Chris Toshok  <toshok@ximian.com>
6065         * ToolBar.cs: When we redraw a button, for whatever reason,
6066         there's no reason to redraw the entire toolbar.  Also, don't call
6067         Control.Refresh from within Redraw, as it's much heavier than
6068         Invalidate (which is really what we want).
6070 2006-07-20  Chris Toshok  <toshok@ximian.com>
6072         * DataGrid.cs, CurrencyManager.cs, DataGridColumnStyle.cs,
6073         DataGridTextBoxColumn.cs, DataGridTextBox.cs,
6074         ThemeWin32Classic.cs, ListControl.cs: After staring at stack
6075         traces from within a debug IBindingList datasource
6076         (in mono/winforms/datagrid) for *days*, I've finally gotten things
6077         to work in a similar fashion.
6079 2006-07-20  Carlos Alberto Cortez <calberto.cortez@gmail.com>
6081         * ListBox.cs: Don't call Sort () when setting 
6082         the Sorted property to false (avoid an unnecessary sort).
6084 2006-07-20  Carlos Alberto Cortez <calberto.cortez@gmail.com>
6086         * ListControl.cs: DataSource should throw an ArgumentException
6087         instead of a normal exception when the argument is not of the 
6088         correct type.
6090 2006-07-20  Mike Kestner  <mkestner@novell.com>
6092         * Control.cs: add InternalPreProcessMessage to allow us to steal
6093         key events before MWF gets its paws on them.  Adapted from a
6094         suggestion by eno.
6095         * ToolBar.cs: add GotLostFocus handing for flat toolbars, with 
6096         up/down/left/right navigation. Override the new internal control
6097         method to steal the events since they never make it to WndProc.
6098         * ToolBarButton.cs: don't worry about pushed when setting hilight
6099         since the drawing code prefers pushed to hilight. Invalidate on 
6100         Hilight changes. Fixes #78547 and #78525.
6102 2006-07-20  Peter Dennis Bartok  <pbartok@novell.com> 
6104         * ScrollableControl.cs: Consider AutoScrollMinSize when calculating
6105           the canvas size. Fixes #78868
6107 2006-07-20  Peter Dennis Bartok  <pbartok@novell.com>
6109         * Splitter.cs: Track requested split position until first layout
6110           is performed. Fixes #78871
6112 2006-07-20  Peter Dennis Bartok  <pbartok@novell.com> 
6114         * Application.cs: Removed code that forces 1.x for the version
6115           number if the version started with 0. Not sure why that code was
6116           there and I couldn't find any bugs that indicated we needed it.
6117           Fixes #78869
6119 2006-07-20  Alexander Olk  <alex.olk@googlemail.com>
6121         * ThemeWin32Classic.cs: Don't throw a NotImplementedException in
6122           ResetDefaults(), just write some output to the console until it's
6123           implemented. Fixes bug #78907 for now. Eliminated two warnings.
6125 2006-07-19  Jonathan Chambers  <joncham@gmail.com>
6127         * PropertyGridView.cs: set StartPosition of drop down forms
6128         so they appear in correct initial spot.  Fixes #78190.
6130 2006-07-19  Mike Kestner  <mkestner@novell.com>
6132         * ThemeWin32Classic.cs: use parent background color when drawing
6133         flat toolbars.  Restructure the conditionals to make sure non-flat
6134         non-Divider toolbars are filled too.  Fixes #78837.
6136 2006-07-19  Mike Kestner  <mkestner@novell.com>
6138         * ListBox.cs: Sort on collection changes even if the handle
6139         isn't created yet.  Fixes #78813.
6141 2006-07-18  Carlos Alberto Cortez <calberto.cortez@gmail.com>
6143         * ListControl.cs: DisplayMember should never be null,
6144         and now we assign String.Empty when null is passed to it (this
6145         is the .Net way).
6147 2006-07-17  Mike Kestner  <mkestner@novell.com>
6149         * ListViewItem.cs: restructure Font and subitem Font handling 
6150         to hold a specific font and refer back to owner on null.
6151         Fixes #78761.
6153 2006-07-17  Mike Kestner  <mkestner@novell.com>
6155         * ToolBar.cs: bandaid for side-effect of previous patch which was
6156         discarding explicit heights for non-AutoSize toolbars.  Need to
6157         extend my format tester to deal with AutoSize=false. Fixes #78864.
6159 2006-07-15  Jackson Harper  <jackson@ximian.com>
6161         * LabelEditTextBox.cs:
6162         * TreeView.cs: Use a new LabelEdit class for node editing, this
6163         class automatically 'closes' itself when it gets the enter key or
6164         loses focus.
6165         - Use the client rectangle when setting the trees scrollbars, so
6166         border style is taken into account.
6167         
6168 2006-07-14  Jackson Harper  <jackson@ximian.com>
6170         * TreeNode.cs:
6171         * TreeView.cs: Make the editing work similar to MSs, firing the
6172         events correctly and ending edits correctly.
6174 2006-07-14  Mike Kestner  <mkestner@novell.com>
6176         * ToolBarButton.cs:
6177         * ToolBar.cs: layout restructuring and redraw enhancements to support
6178         formatting changes gracefully, like setting TextAlign, ImageList, 
6179         ButtonSize, and Appearance.  Handles explicit button sizing quirks
6180         of the MS controls.  Things like flat toolbars ignoring button size
6181         but becoming constant sized at the largest button's size.  Normal
6182         toolbars with an image set cannot be shrunk smaller than the image,
6183         but text can be clipped/ignored.
6184         * ThemeWin32Classic.cs: don't draw text if text_rect height or width
6185         is zero.  Seems like DrawString should be smart enough to not put
6186         anything on screen though. Also trim labels and ellipsize at the char
6187         boundary, not word.
6188         Fixes #78711 and #78483.
6190 2006-07-14  Alexander Olk  <alex.olk@googlemail.com>
6192         * FolderBrowserDialog.cs: Disable "New Folder" button and
6193           "New Folder" contextmenu menuitem if a folder like "My Computer"
6194           is selected.
6196 2006-07-14  Alexander Olk  <alex.olk@googlemail.com>
6198         * FileDialog.cs: Don't create a new folder in "MyComputer" folder.
6199         * FolderBrowserDialog.cs:
6200           - Use MWFConfig to store and read size and position settings
6201           - Added code to create a new folder (button or context menu).
6202             Use TreeView labeledit to change the name of the new folder.
6204 2006-07-14  Jackson Harper  <jackson@ximian.com>
6206         * TreeView.cs: Raise the OnAfterLabelEdit event correctly.  Also,
6207         when the tree is scrolled we end editing.
6209 2006-07-14  Alexander Olk  <alex.olk@googlemail.com>
6211         * ThemeWin32Classic.cs: Fixed position of CPDrawScrollButton Up and
6212           Down arrows
6214 2006-07-14  Jonathan Pobst  <monkey@ipobst.com> 
6216         WebBrowserProgressChangedEventHandler.cs, BindingCompleteEventArgs.cs,
6217         BindingCompleteEventHandler.cs, BindingManagerDataErrorEventArgs.cs,
6218         BindingManagerDataErrorEventHandler.cs, CacheVirtualItemsEventArgs.cs,
6219         CacheVirtualItemsEventHandler.cs, ColumnReorderedEventArgs.cs,
6220         ColumnReorderedEventHandler.cs, ColumnWidthChangedEventArgs.cs,
6221         ColumnWidthChangedEventHandler.cs, ColumnWidthChangingEventArgs.cs,
6222         ColumnWidthChangingEventHandler.cs, FormClosedEventArgs.cs,
6223         FormClosedEventHandler.cs, FormClosingEventArgs.cs,
6224         FormClosingEventHandler.cs, ItemCheckedEventArgs.cs,
6225         ItemCheckedEventHandler.cs, ListControlConvertEventArgs.cs,
6226         ListControlConvertEventHandler.cs, ListViewItemMouseHoverEventArgs.cs,
6227         ListViewItemMouseHoverEventHandler.cs, ListViewItemSelectionChangedEventArgs.cs,
6228         ListViewItemSelectionChangedEventHandler.cs,
6229         ListViewVirtualItemsSelectionRangeChangedEventArgs.cs,
6230         ListViewVirtualItemsSelectionRangeChangedEventHandler.cs,
6231         MaskInputRejectedEventArgs.cs, MaskInputRejectedEventHandler.cs,
6232         PopupEventArgs.cs, PopupEventHandler.cs, PreviewKeyDownEventArgs.cs,
6233         PreviewKeyDownEventHandler.cs, RetrieveVirtualItemEventArgs.cs,
6234         RetrieveVirtualItemEventHandler.cs, SearchForVirtualItemEventArgs.cs,
6235         SearchForVirtualItemEventHandler.cs, SplitterCancelEventArgs.cs,
6236         SplitterCancelEventHandler.cs, TabControlCancelEventArgs.cs, 
6237         TabControlCancelEventHandler.cs, TabControlEventArgs.cs, 
6238         TabControlEventHandler.cs, TableLayoutCellPaintEventArgs.cs,
6239         TableLayoutCellPaintEventHandler.cs, ToolStripDropDownClosedEventArgs.cs,
6240         ToolStripDropDownClosedEventHandler.cs, ToolStripDropDownClosingEventArgs.cs,
6241         ToolStripDropDownClosingEventHandler.cs, TreeNodeMouseClickEventArgs.cs,
6242         TreeNodeMouseClickEventHandler.cs, TreeNodeMouseHoverEventArgs.cs,
6243         TreeNodeMouseHoverEventHandler.cs, TypeValidationEventArgs.cs,
6244         TypeValidationEventHandler.cs, WebBrowserDocumentCompletedEventArgs.cs,
6245         WebBrowserDocumentCompletedEventHandler.cs, WebBrowserNavigatedEventArgs.cs,
6246         WebBrowserNavigatedEventHandler.cs, WebBrowserNavigatingEventArgs.cs,
6247         WebBrowserNavigatingEventHandler.cs, 
6248         WebBrowserProgressChangedEventArgs.cs: New 2.0 Event Handlers
6250 2006-07-14  Jonathan Pobst  <monkey@ipobst.com>
6252         MergeAction.cs, PowerLineStatus.cs, PowerState.cs, PreProcessControlState.cs,
6253         RichTextBoxLanguageOptions.cs, ScreenOrientation.cs, ScrollOrientation.cs,
6254         SearchDirectionHint.cs, SystemParameter.cs, TabControlAction.cs,
6255         TableLayoutPanelCellBorderStyle.cs, TextDataFormat.cs, TextImageRelation.cs,
6256         ToolStripDropDownCloseReason.cs, ToolStripDropDownDirection.cs,
6257         ToolStripGripDisplayStyle.cs, ToolStripGripStyle.cs,
6258         ToolStripItemAlignment.cs, ToolStripItemDisplayStyle.cs,
6259         ToolStripItemImageScaling.cs, ToolStripItemOverflow.cs,
6260         ToolStripItemPlacement.cs, ToolStripLayoutStyle.cs,
6261         ToolStripManagerRenderMode.cs, ToolStripRenderMode.cs,
6262         ToolStripStatusLabelBorderSides.cs, ToolStripTextDirection.cs,
6263         ToolTipIcon.cs, TreeNodeStates.cs, TreeViewDrawMode.cs,
6264         TreeViewHitTestLocations.cs, UnhandledExceptionMode.cs, ValidationConstraints.cs,
6265         WebBrowserEncryptionLevel.cs, WebBrowserReadyState.cs, WebBrowserRefreshOption.cs,
6266         ArrowDirection.cs, AutoCompleteMode.cs, AutoCompleteSource.cs, AutoSizeMode.cs,
6267         AutoValidate.cs, BatteryChargeStatus.cs, BindingCompleteContext.cs,
6268         BindingCompleteState.cs, CloseReason.cs, ColumnHeaderAutoResizeStyle.cs,
6269         ControlUpdateMode.cs, DataSourceUpdateMode.cs, DockingBehavior.cs,
6270         FixedPanel.cs, FlowDirection.cs, GetChildAtPointSkip.cs,
6271         HtmlElementInsertionOrientation.cs, InsertKeyMode.cs, ListViewHitTestLocations.cs,
6272         ListViewItemStates.cs, MaskFormat.cs: Added
6274 2006-07-13  Jonathan Chambers  <joncham@gmail.com>
6276         * PropertyGridView.cs: Fix keyboard navigation of drop down.
6277         Patch from eno for bug 78558.
6278         
6279 2006-07-13  Jackson Harper  <jackson@ximian.com>
6281         * TreeView.cs: When an edit is finished make sure that the
6282         selected node is visible.
6283         - When setting the top/bottom use the scrollbars is_visible, so
6284         everything will be set correctly even if the tree isn't visible
6285         yet.
6287 2006-07-13  Jackson Harper  <jackson@ximian.com>
6289         * ComboBox.cs: Revert the item->index part of my previous patch.
6290         * TreeView.cs: Use LostFocus instead of Leave for detecting when
6291         the edit box has lost focus (duh).
6292         - Just make the edit box not visible when we get return, that will
6293         take the focus, which will call EndEdit
6294         * TreeNode.cs When we start editing, notify the treeview.
6296 2006-07-12  Jackson Harper  <jackson@ximian.com>
6298         * ComboBox.cs: Clear out old items before setting the item list.
6299         This prevents databound controls from having their items added
6300         twice.
6301         - Switch the combobox to use indices whereever possible instead of
6302         using Item's.  This allows usto navigate through lists that have
6303         more then one item with the same string value (ie a, b, b, a).
6304         - Scroll the listboxes scrollbar when a non visible item is
6305         highlighted
6306         - Allow keypress to cycle through all the possible values. For
6307         example if you have b1, b2, b3 and hold down the B key all the
6308         values will be cycled through.
6309         
6310 2006-07-12  Jackson Harper  <jackson@ximian.com>
6312         * TextBoxBase.cs:
6313         * ListView.cs: Don't need to override SETFOCUS anymore, we can do
6314         this using the internal methods.
6315         * Control.cs: Add OnGotFocusInternal.  A new method that allows
6316         controls to "override" OnGotFocus and change focus behavior if
6317         needed.
6318         - Same thing for LostFocus
6319         * ComboBox.cs: Pass off focus to the text control properly.
6321 2006-07-12  Alexander Olk  <alex.olk@googlemail.com>
6323         * FileDialog.cs: Added GetFoldersOnly to MWFVFS
6324         * FolderBrowserDialog.cs: Almost a complete rewrite.
6325           - Better support for Environment.Specialfolders
6326           - Added support for MWFVFS
6327           - Made setting SelectedPath work
6329 2006-07-12  Jackson Harper  <jackson@ximian.com>
6331         * Control.cs: Optimze getting all the controls.
6333 2006-07-11  Jackson Harper  <jackson@ximian.com>
6335         * ContainerControl.cs: Override SETFOCUS in the container control,
6336         so that it is not selected on mouse click.
6338 2006-07-11  Peter Dennis Bartok  <pbartok@novell.com> 
6340         * LinkLabel.cs: Hack to handle Shift-Tabbing to the linklabel. 
6341           Hopefully we will have a better way once all of focus is complete.
6343 2006-07-11  Peter Dennis Bartok  <pbartok@novell.com>
6345         * ThemeWin32Classic.cs: Commented out some debug code and fixed
6346           a compile error with csc.
6348 2006-07-11  Jackson Harper  <jackson@ximian.com>
6350         * Control.cs: When hiding a control only select the next control
6351         if the current control was focused.
6352         - Don't handle enter/leave when setting/killing focus, this is
6353         done by the container control.
6354         - Remove is_selected, it's not needed anymore.
6355         - Add utility methods for selecting a child control, and for
6356         firing the Enter/Leave events.
6357         * ContainerControl.cs: When a control is activated fire the
6358         enter/leave events.
6359         - Don't wrap when processing the tab key, so that focus can be
6360         moved outside of the container.
6361         - Use the correct active control
6363 2006-07-11  Jackson Harper  <jackson@ximian.com>
6365         * ComboBox.cs: Remove some debug code that was blinding me.
6366         * UpDownBase.cs: These controls actually aren't implicit, they are
6367         visible to the user.
6369 2006-07-10  Chris Toshok  <toshok@ximian.com>
6371         * DataGrid.cs: move back to the is_adding boolean field.  god i
6372         hate this is_editing/is_adding/is_changing stuff.
6374 2006-07-10  Chris Toshok  <toshok@ximian.com>
6376         * DataGridTableStyle.cs: just check if the property type is bool.
6377         if it is, use DataGridBoolColumn, otherwise DataGridTextBoxColumn.
6378         Don't use CanRenderType.
6380         * DataGridTextBoxColumn.cs: set the value to DBNull.Value, not "",
6381         if our text == NullText.  Remove CanRenderType.
6383         * DataGridBoolColumn.cs: nuke CanRenderType.
6385         * DataGrid.cs: reenable some code to end the current edit inside
6386         of set_CurrentCell.  This fixes the other 1.1.16 regression.
6387         Also, remove rowhdrs_maxheight and just use rowhdrs_area.Height.
6388         Also, remove the visible_row_count arg from CalcRowHeaders, since
6389         we don't need to worry about the actual height of the area.
6391 2006-07-10  Chris Toshok  <toshok@ximian.com>
6393         * DataGridTextBoxColumn.cs: if when we Commit we're in navigate
6394         mode, just return.
6396         * DataGridTextBox.cs: change "isedit" to "isnavigating" to reflect
6397         the real sense of the IsInEditOrNavigateMode property (true =
6398         navigate, false = edit).  Also, update OnKeyPress to reflect this.
6400         * DataGridTableStyle.cs (CreateColumnsForTable): even if the
6401         column style exists, we still need to set its property descriptor
6402         to match up with our list manager.
6404 2006-07-10  Chris Toshok  <toshok@ximian.com>
6406         * ThemeWin32Classic.cs: implement the new row/header painting
6407         approach.  The parent row painting will likely go away and
6408         replaced with label controls, but the rest seems to work ok (and
6409         efficiently).
6411         * Theme.cs: change the way we draw datagrid rows.  we don't draw
6412         the row headers as a block now.  Instead we draw them in the
6413         normal draw-row loop.  Add some calls for drawing parent rows and
6414         relation rows.
6416         * DataGridTableStyle.cs: add tons of ArgumentExceptions if this is
6417         a default table style.  Set the defaults from ThemeEngine.Current,
6418         not SystemColors.  Fix lots of misc issues with property setters.
6420         * DataGrid.cs: move loads of style information out of this class
6421         as it's being duplicated with DataGridTableStyle.  keep track of a
6422         special DataGridTableStyle for the properties we used to mirror
6423         here.  Switch all the style properties to access this table style
6424         instead of instance fields of this class.  Also add a internal
6425         class to represent parent rows (more needs to be stored here, like
6426         the selection state from the parent table, as well as the
6427         expansion state.)  Also, for datasources with relations, do the
6428         right thing for collapse/expand, and add support for the
6429         navigation/parent row buttons.
6431         Lastly, fix the crash in the 1.1.16 build.
6433         * GridTableStylesCollection.cs: make the explicit interface
6434         implementations call the class's methods as opposed to duplicating
6435         them.
6437         * DataGridTextBoxColumn.cs: set the x/y offset of the textfield to
6438         0 so the text doesn't jump around when we move the cursor.
6440 2006-07-10  Jackson Harper  <jackson@ximian.com>
6442         * TextBoxBase.cs:
6443         * ListBox.cs: Match MS's ToString (this makes debugging focus
6444         stuff infinitely easier).
6446 2006-07-10  Jackson Harper  <jackson@ximian.com>
6448         * Control.cs (SelectNextControl): When checking the control's
6449         parent use this instead of ctrl.parent so that null can be passed
6450         to SelectNextControl. (I have unit tests for this).
6451         - Remove unused var.
6453 2006-07-10  Chris Toshok  <toshok@ximian.com>
6455         * CurrencyManager.cs: correct one regression, the removal of the
6456         finalType field.  Also, add a MonoTODO on CanAddRows, implement
6457         Refresh() correctly, and fix some event emission in
6458         ListChangedHandler.
6460 2006-07-07  Alexander Olk  <alex.olk@googlemail.com>
6462         * FileDialog.cs: Don't use brackets for new folders if they exist
6463           under *nix. Instead use -(number of existing folders +1).
6465 2006-07-07  Alexander Olk  <alex.olk@googlemail.com>
6467         * FileDialog.cs:
6468           - Fixed really nasty bug #78771
6469           - Don't block the whole GUI when reading directories with a lot of
6470             entries. Use an other thread instead and call BeginInvoke to
6471             update the ListView in MWFFileView
6473 2006-07-07  Chris Toshok  <toshok@ximian.com>
6475         * Control.cs (Dispose): release any Capture when disposing.
6477 2006-07-07  Chris Toshok  <toshok@ximian.com>
6479         * LinkLabel.cs (Select): if we chain up to the parent, set
6480         focused_index to -1 so we'll search for the first available link
6481         the next time the user tabs into us.  Also, if the direction is
6482         backward and focused_index == -1, start the search from the last
6483         element.
6485 2006-07-07  Chris Toshok  <toshok@ximian.com>
6487         * LinkLabel.cs (CreatePiecesFromText): if the link's range piece
6488         is beyond the end of the text, don't do anything.
6489         (CreateLinkPieces): set our ControlStyles.Selectable based on
6490         whether or not we have any links.
6491         (Link.Invalidate): use a loop instead of foreach.
6492         (Link.set_Start): null out owner.sorted_links so it'll be
6493         recreated by CreateLinkPieces.
6495 2006-07-06  Chris Toshok  <toshok@ximian.com>
6497         * LinkLabel.cs: revert the SetStyle change.
6499 2006-07-06  Chris Toshok  <toshok@ximian.com>
6501         * LinkLabel.cs (.ctor): SetStyle Selectable to true.
6502         (OnEnableChanged): s/Refresh/Invalidate
6503         (OnGotFocus): if we have a focused index already, refocus it (so
6504         if we mouse out/in to the window it'll focus the right link).
6505         (OnKeyDown): move the tab handling out of here.
6506         (OnLostFocus): don't set focused_index to -1, so we can refocus it
6507         when we lose focus.
6508         (OnMouseDown): don't Capture here - Control handles it.  Also,
6509         focus the active link.
6510         (OnMouseUp): don't deal with Capture.
6511         (OnPaintBackgroundInternal): remove.
6512         (OnTextAlignChanged): CreateLinkPieces before calling the
6513         superclass's method.
6514         (OnTextChanged): call CreateLinkPieces before calling superclass's
6515         method.
6516         (ProcessDialogKey): handle Tab here, and call Select(bool,bool) to
6517         move around.
6518         (Select): implement this, moving the selection between different
6519         links, and call parent.SelectNextControl if we don't have another
6520         link to focus in the given direction.
6521         (CreateLinkPieces): call Invalidate instead of Refresh.
6522         
6523 2006-07-06  Chris Toshok  <toshok@ximian.com>
6525         * ThemeWin32Classic.cs: DrawLinkLabel changes to accomodate the
6526         new LinkLabel internals.
6528         * LinkLabel.cs: fairly major rewrite.  get rid of all the loops
6529         over pieces looking for active/focused/etc links.  also, deal with
6530         runs of text (and links) with embedded \n's in them, and use
6531         MeasureCharacterRanges instead of MeasureString to figure out the
6532         regions text occupies.  Lastly, do the usual s/Refresh/Invalidate
6533         two-step.
6535 2006-07-04  Jackson Harper  <jackson@ximian.com>
6537         * XplatUIX11.cs: Enable key auto repeat. If the user doesn't have
6538         XKB or key auto repeat, do it manually.  Without key auto repeat,
6539         when a key is held down we get key press, key release, key press,
6540         key release, ... with auto repeat we get key press, key press, key
6541         press ..., and then a release when the key is actually released.
6543 2006-07-03  Jackson Harper  <jackson@ximian.com>
6545         * TabControl.cs:
6546         * ThemeWin32Classic.cs: Tabs do not obey normal background color
6547         rules, they are always control color regardless of the background
6548         color.
6550 2006-07-02  Alexander Olk  <alex.olk@googlemail.com>
6552         * FileDialog.cs: Added internal class MWFConfig.
6553           Removed Registry support and replaced it with support for the new
6554           MWFConfig class. See MWFConfig comments for more information.
6556 2006-06-30  Alexander Olk  <alex.olk@googlemail.com>
6558         * ThemeWin32Classic.cs: Added RadioButton and CheckBox focus
6559           rectangle. Added some patches from eno from bug #78490 and fixed
6560           the arrow position for small up and down CPDrawScrollButtons.
6562 2006-06-30  Jackson Harper  <jackson@ximian.com>
6564         * InternalWindowManager.cs: Remove some debug code.
6565         * Form.cs: When an MdiParent is set to null, the window is
6566         "detatched" and becomes a normal window.
6567         * MdiClient.cs: Don't bring the new child form to the front until
6568         it is activated (setting it as active does this), this makes the
6569         previously active forms titlebar get redrawn as inactive.
6571 2006-06-29  Peter Dennis Bartok  <pbartok@novell.com>
6573         * PrintDialog.cs: Labels need a tab index too, otherwise they overlap
6574           with later controls
6576 2006-06-29  Mike Kestner  <mkestner@novell.com>
6578         * MenuAPI.cs: handle arrow keys in keynav state. Go active on down
6579         arrow in keynav state.  Fixes #78682.
6581 2006-06-28  Atsushi Enomoto  <atsushi@ximian.com>
6583         * PrintDialog.cs: Reorder, relayout, remove extra code, set tab 
6584           order (fixes #78393)
6586 2006-06-28  Jonathan Pobst  <monkey@ipobst.com>
6588         * AccessibleRole.cs, AccessibleStates.cs, AnchorStyles.cs, 
6589           ArrangeDirection.cs, ArrangeStartingPosition.cs, ColorDepth.cs,
6590           ControlStyles.cs, DataGridViewImageCellLayout.cs, DrawMode.cs,
6591           FormBorderStyle.cs, FormStartPosition.cs, FormWindowState.cs,
6592           GridItemType.cs, HelpNavigator.cs, ImeMode.cs, ItemActivation.cs,
6593           ItemBoundsPortion.cs, Keys.cs, ListViewAlignment.cs, 
6594           PictureBoxSizeMode.cs, PropertySort.cs, SelectionMode.cs,
6595           Shortcut.cs, SizeGripStyle.cs, SortOrder.cs, StructFormat.cs,
6596           TextFormatFlags.cs, ToolBarAppearance.cs, ToolBarButtonStyle.cs,
6597           ToolBarTextAlign.cs, View.cs: 2.0 Changes to existing 1.x
6598           enumerations (FlagsAttribute, SerializableAttribute, added/removed
6599           values)
6601 2006-06-28  Mike Kestner  <mkestner@novell.com>
6603         * ComboBox.cs: implement scroll wheel support. Fixes #78360.
6605 2006-06-28  Atsushi Enomoto  <atsushi@ximian.com>
6607         * PropertyGrid.cs,
6608           PropertyGridTextBox.cs : explicitly set BackColor to differentiate
6609           item lines from other area (It also makes BackColor consistent and
6610           compatible with .NET). Fixed bug #78564.
6612 2006-06-28  Jonathan Chambers  <jonathan.chambers@ansys.com>
6614         * PropertyGrid.cs: refresh toolbar when PropertySort is set.
6615         Patch from Eno for #78555.
6617 2006-06-27  Chris Toshok  <toshok@ximian.com>
6619         * ThemeWin32Classic.cs: s/grid.grid_drawing/grid
6621         * DataGridColumnStyle.cs: same.
6623         * DataGrid.cs: Roll DataGridDrawingLogic.cs into this file.
6624         
6625         * DataGridDrawingLogic.cs: nuke.
6627 2006-06-27  Chris Toshok  <toshok@ximian.com>
6629         * DataGridTableStyle.cs: clean up the constructors, and build the
6630         list of child relations for this table.  I have no idea if this is
6631         where we should be doing it (it probably isn't), but since we're
6632         already iterating over the properties..
6634         * DataGrid.cs: add row resizing.  for now we add a DataGridRow
6635         struct and array for keeping track of row information, similar to
6636         what's shown in a hack on
6637         http://www.syncfusion.com/FAQ/WindowsForms/FAQ_c44c.aspx.
6639         * Theme.cs: be consistent about the naming of DataGrid methods,
6640         prefering ColumnWidths and RowHeights over columnsWidths and
6641         RowsHeights.
6643         * ThemeWin32Classic.cs: same, and also add support for variable
6644         sized rows (and the +/- expansion icons for related rows).
6646 2006-06-27  Peter Dennis Bartok  <pbartok@novell.com>
6648         * TextBoxBase.cs: Applied Eno's patch from #78660
6650 2006-06-27  Peter Dennis Bartok  <pbartok@novell.com> 
6652         * Form.cs (ScaleCore): We don't want to scale our form if it's
6653           state is minimized or maximized, but we still need to scale our
6654           child windows. Also, added try/finally block to ensure layout
6655           gets reset (Fixes #78697)
6657 2006-06-27  Peter Dennis Bartok  <pbartok@novell.com>
6659         * Control.cs: Added 2.0 Scale(SizeF) method (Fixes 78700)
6661 2006-06-27  Peter Dennis Bartok  <pbartok@novell.com> 
6663         * Form.cs: Fixed c+p error and added check to resize form if minimum
6664           size is bigger than current size (Fixes #78709)
6666 2006-06-26  Peter Dennis Bartok  <pbartok@novell.com> 
6668         * ThemeEngine.cs (..ctor): Properly use ToLower() (Fixes #78704)
6670 2006-06-26  Mike Kestner  <mkestner@novell.com>
6672         * ComboBox.cs: only do Keypress handling in the combo when there  
6673         are items in the collection. Fixes #78710.
6675 2006-06-26  Chris Toshok  <toshok@ximian.com>
6677         * Binding.cs: make this work bi-directionally.  also, clear up
6678         other mixups between Push/Pull Data (e.g. we're supposed to pull
6679         data when validating).
6681         * BindingManagerBase.cs: trim some fully qualified collection
6682         types.
6684         * PropertyManager.cs (get_IsSuspended): oops, fix this check.
6686 2006-06-23  Chris Toshok  <toshok@ximian.com>
6688         * PropertyManager.cs: It appears (according to the unit tests)
6689         that PropertyManager doesn't use
6690         PropertyDescriptor.AddValueChanged to track propery value changes
6691         in its datasource, but uses the same scheme as Binding, where it
6692         looks for a <Property>Changed event and binds to it.
6694         Also, according to the docs, IsSuspended always returns false for
6695         a property manager with a non-null datasource.
6697 2006-06-22  Peter Dennis Bartok  <pbartok@novell.com> 
6699         * Form.cs: (ShowDialog): If we're returning a forced cancel we still
6700           need to update the actual DialogResult. (Fixes #78613)
6702 2006-06-22  Peter Dennis Bartok  <pbartok@novell.com>
6704         * Form.cs (ShowDialog): Release any captures before running the
6705           new message pump (fixes #78680)
6707 2006-06-22  Mike Kestner  <mkestner@novell.com>
6709         * ListView.cs: Layout column widths properly in details mode even 
6710         if HeaderStyle.None is set.  Fixes #78691.
6712 2006-06-21  Peter Dennis Bartok  <pbartok@novell.com>
6714         * FileDialog.cs: Fixed taborder to match MS. Fixes #77873 partially.
6716 2006-06-21  Peter Dennis Bartok  <pbartok@novell.com> 
6718         * Control.cs (ContainsFocus): Using new driver method to get focused
6719           window, instead of trying to use internal tracking var, which can
6720           recursion issues (Fixes #78685)
6721         * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs, XplatUIOSX.cs, 
6722           XplatUIWin32.cs: Added GetFocus method to return focused window
6724 2006-06-21 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6726         * ColorDialog.cs: when the mouse button is pressed inside the color
6727         matrix, don't let the cursor move out of it until the button is
6728         released, which is the behavior on windows. Changed 'colours' by
6729         'colors' to use the same word consistently.
6731 2006-06-21  Chris Toshok  <toshok@ximian.com>
6733         * DataGrid.cs: add in some basic navigation stuff (navigating to a
6734         child relation and back, using a stack).  Also, remove
6735         GetDataSource and the code that calls it - it's not needed.  Also,
6736         track CurrencyManager.ListName's removal.
6738 2006-06-21  Chris Toshok  <toshok@ximian.com>
6740         * CurrencyManager.cs: push some of the original type checking from
6741         BindingContext.CreateBindingManager to here, and remove some of
6742         the finalType stuff.  Need more tests to make sure I've got the
6743         ListName part right, and we might need more in SetDataSource.
6745         * PropertyManager.cs: add a ctor that takes just the datasource,
6746         and no property name.  Make SetDataSource work with a null
6747         property_name, and make Current return the data_source if the
6748         property descriptor is null.  this makes 'string foo = "hi";
6749         BindingContext[foo].Current' return "hi" as it should.
6751         * RelatedCurrencyManager.cs: make this code more generic - there's
6752         no reason the parent manager has to be CurrencyManager, and
6753         there's no reason to pass the DataRelation.  It suffices to use a
6754         BindingManagerBase and PropetyDescriptor.
6756         * RelatedPropertyManager.cs: make a similar change here.
6757         
6758         * BindingContext.cs: make CreateBindingManager the beautiful, tiny
6759         flower I knew it could be.
6761 2006-06-20  Chris Toshok  <toshok@ximian.com>
6763         * PropertyManager.cs: the PropertyChangedHandler is invoked when
6764         data in the source has changed and we need to update the control,
6765         so s/PullData/PushData.
6767         * CurrencyManager.cs: Refresh is meant to update the control from
6768         data in the datasource.  So, s/PullData/PushData.
6770         * BindingContext.cs: add more ugliness (we weren't handling the
6771         case where data_source = DataTable and data_member = column_name).
6773         * Binding.cs: fix PushData/PullData mixup.  Both are interpreted
6774         from the perspective of the datasource.  PullData pulls from the
6775         control, PushData pushes to the control.
6777 2006-06-20  Chris Toshok  <toshok@ximian.com>
6779         * BindingContext.cs: rewrite the CreateBindingManager code to
6780         handle navigation paths more or less properly.  This could
6781         definitely stand some more work, in particular to push the
6782         recursion up to the toplevel.  But that relies on fixes in other
6783         places (System.Data comes to mind).
6785         Also, move to a flat hashtable (and encode the twolevel nature of
6786         the dictionary into the hash key).  This lets us implement the
6787         IEnumerable.GetEnumerator method.
6789         * RelatedCurrencyManager.cs: new class.  Update our view based on
6790         our relation and our parent CurrencyManager's position.
6792         * CurrencyManager.cs: split out some logic from the ctor into
6793         SetView, so it can be called from the new RelatedCurrencyManager
6794         subclass.
6796         * RelatedPropertyManager.cs: new class.  Update our datasource
6797         based on the position of our parent CurrencyManager.
6799         * PropertyManager.cs: split out some logic from the ctor into
6800         SetDataSource, so it can be called from the new RelatedDataSource
6801         subclass.  Also, make the Current getter return the value
6802         of the PropertyDescriptor, not the data_source.
6804         * Binding.cs: no need to duplicate the string splitting code here.
6806 2006-06-19  Peter Dennis Bartok  <pbartok@novell.com> 
6808         * Control.cs:
6809           - set_Enabled: OnEnabledChanged is not called if the inherited state 
6810             of the control is not altered, even though  we might be changing the
6811             internal state of the control (#78458)
6812           - set_Enabled: (Re)Moved the enabling/disabling of the window to 
6813             OnEnabledChanged, to allow easy altering of any child window state
6814           - OnEnabledChanged: Added code to enable/disable driver window state
6815           - OnParentEnabledChanged: Instead of firing the event, call 
6816             OnEnabledChanged, which will fire the event and also a) set driver
6817             window state and pass the enabled state to any grandchildren (#78458)
6819 2006-06-19  Jackson Harper  <jackson@ximian.com>
6821         * InternalWindowManager.cs: We don't set the cursor explicitly
6822         thats done via the response to NCHITTESTs.
6823         - Don't need to adjust for titlebar heights anymore, the
6824         coordinates are coming in the correct coordinates now (see peters
6825         last patch).
6828 2006-06-19  Peter Dennis Bartok  <pbartok@novell.com> 
6830         * XplatUIX11.cs (GetMessage): WM_NCxBUTTONx messages were wrongly
6831           being translated relative to whole window, instead of client window.
6832           That caused broken offsets on mouseclick (and caused gas for our
6833           InternalWindowManager)
6835 2006-06-15  Peter Dennis Bartok  <pbartok@novell.com> 
6837         * TextControl.cs:
6838           - MoveCaret: Implemented PgUp, PgDown, CtrlPgUp and CtrlPgDown
6839           - Undo(): Added replay of cursor move on DeleteChars action; added
6840             calling Undo() again if a recorded cursor move is invalid (to
6841             ensure that some action is performed on Undo)
6842         * TextBoxBase.cs (ProcessKey): Added handling of PgUp and PgDown (#78482)
6844 2006-06-16  Jackson Harper  <jackson@ximian.com>
6846         * MdiClient.cs: Instead of just sizing maximized windows when
6847         there is a resize we also have to adjust the Y of minimized
6848         windows, so they stay pinned to the bottom of the mdi container.
6849         - Eliminate separate tracking of the active control, we can just
6850         get this from the controls collection.
6851         - Paint the decorations for the newly activated titlebar so we get
6852         a pretty blue bar.
6853         * InternalWindowManager.cs:
6854         * ThemeWin32Classic.cs: Minimized windows get all three buttons
6855         even if they are a tool window.
6856         
6857 2006-06-15  Peter Dennis Bartok  <pbartok@novell.com> 
6859         * TextControl.cs (Undo): Handle non-existent cursor locations in the
6860           undo buffer, these can happen when text was deleted and the cursor
6861           was recorded first. Since we will also have a recorded cursor
6862           after the delete this is not an issue. (Fixes #78651)
6864 2006-06-14  Peter Dennis Bartok  <pbartok@novell.com> 
6866         * AccessibleObject.cs: Remove dependence on Control.is_selected;
6867           instead properly track control states internally (allows us to
6868           remove is_selected from Control)
6870 2006-06-14 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6872         * ImageListStreamer.cs: correctly generate the 1bpp mask for images
6873         whose width is not a multiple of 8.
6875 2006-06-13  Jackson Harper  <jackson@ximian.com>
6877         * MdiClient.cs:  Only maximize the next child if the current one
6878         is maximized.
6880 2006-06-13  Chris Toshok  <toshok@ximian.com>
6882         * DataGridColumnStyle.cs: Invalidate the column when HeaderText is
6883         modified.  Also, guard against grid or grid_drawing being null in
6884         Invalidate.
6886         * DataGrid.cs: Reformat tons of getters/setters.  In the
6887         DataMember setter, just call SetNewDataSource instead of
6888         duplicating some of its functionality.  In SetNewDataSource, don't
6889         check ListManager for null, since the property getter creates the
6890         object if needed.
6892         * DataGridTableStyle.cs: don't set TableStyle or call
6893         SetDataGridInternal on the column here, it's done in
6894         GridColumnStylesCollection.Add.
6896         * GridColumnStylesCollection.cs: fix all the explicit interface
6897         implementations to just call our methods.  Nuke AddInternal() and
6898         move the body of it to Add().  Also, add a call to
6899         column.SetDataGridInternal to Add().
6901         * DataGridTextBoxColumn.cs (.ctors): call this() instead of
6902         base()+duplicate code.  Also, use the Format property instead of
6903         format to generate an Invalidate ala MS.  Lastly, create the
6904         textbox here, unconditionally.
6905         (set_Format): call Invalidate.
6906         (get_TextBox): no need to call EnsureTextBox.
6907         (Commit): remove the message box.
6908         (Edit) remove the call to EnsureTextBox.
6909         (EndEdit): call HideEditBox instead of ReleaseHostedControl.
6910         (EnterNullValue): no need to check textbox for null.
6911         (HideEditBox): no need to check textbox for null.
6912         (SetDataGridInColumn): add the textbox to the grid's controls.
6913         (EnsureTextBox): nuke.
6914         
6915 2006-06-13  Jackson Harper  <jackson@ximian.com>
6917         * MdiWindowManager.cs: Hook up to the maximized menus paint event
6918         and redraw the buttons when needed. Unhook when the window is
6919         unmaximized.
6920         * MainMenu.cs: Add an internal Paint event, the mdi window manager
6921         needs this so that it can redraw its buttons when the menu is
6922         repainted.
6923         * InternalWindowManager.cs:
6924         * Form.cs: The method order has changed for DrawMaximizedButtons,
6925         so that it can be a PaintEventHandler.
6926         
6927 2006-06-13  Jackson Harper  <jackson@ximian.com>
6929         * MdiClient.cs: When we close a maximized mdi window, the next mdi
6930         window is activated and maximized, even if it wasn't before.
6931         - When  a new window is activated repaint the decorations of the
6932         old one, so that it no longer has the Active "look" (the blue
6933         titlebar).
6934         * InternalWindowManager.cs: Open up CreateButtons to base classes
6935         so they can recreate the buttons on state changes.
6936         - If a window is maximized give it all three buttons
6937         * MdiWindowManager.cs: Create the titlebar buttons when the state
6938         is changed, this is needed because a toolwindow will not have all
6939         three buttons until it is maximized.
6941 2006-06-13  Atsushi Enomoto  <atsushi@ximian.com>
6943         * ProgressBar.cs : PerformStep() shouldn't exceed Maximum.
6944           Fixed bug #78609.
6946 2006-06-12  Jackson Harper  <jackson@ximian.com>
6948         * KeysConverter.cs: Make sure we handle the Ctrl special case
6949         if its the only key.
6950         
6951 2006-06-12  Jackson Harper  <jackson@ximian.com>
6953         * Theme.cs: Add a method to get the size of a managed window
6954         toolbar button.
6955         * InternalWindowManager.cs: Remove the ButtonSize property, this
6956         should be retrieved from the theme.
6957         * MdiWindowManager.cs: Get the button size from the theme
6958         * ThemeWin32Classic.cs: Make the method to get the managed window
6959         titlebar button size public.
6960         - Handle the different button sizes of maximized toolwindows
6961         (should match any maximized window).
6962         - Get the titlebar height from the theme, not the WM (which gets
6963         it from the theme).
6965 2006-06-12  Jackson Harper  <jackson@ximian.com>
6967         * InternalWindowManager.cs: Handle NC Double Clicks, passing the
6968         event down to the mdi window manager.
6969         - Expose some extra stuff to base classes
6970         - Make sure to end the Capture on an NC Mouse up, so that we can
6971         get double clicks properly, and the sizing doens't stick.
6972         - When doing PointToClient contain it in the workable desktop
6973         area, this prevents windows from changing size when the cursor is
6974         pulled outside of the working area while sizing.
6975         * MdiWindowManager.cs: When we get a double click maximize the
6976         window.
6977         - Reset the cursor after handling mode changes.
6979 2006-06-12  Peter Dennis Bartok  <pbartok@novell.com> 
6981         * XplatUIX11.cs (WorkingArea): Read the actual workarea for the 
6982           current desktop, instead of just assuming a 0, 0 origin. This
6983           is needed for our internal window manager, to know the top
6984           margin of the desktop
6986 2006-06-12  Chris Toshok  <toshok@ximian.com>
6988         * DataGrid.cs (set_CurrentCell): concede focus as we move around.
6989         we need this to get rid of the selected background in the bool
6990         column.
6991         (CancelEditing): move the ConcedeFocus call to above the Abort
6992         call.  Also, set is_changing to false and invalidate the row
6993         header if we were changing before.
6994         (ProcessKeyPreviewInternal): remove, since noone outside this
6995         class calls it anymore.  Roll the code into ProcessKeyPreview.
6996         (EndEdit): remove the internal version.
6997         (InvalidateCurrentRowHeader): make private.
6999         * DataGridBoolColumn.cs: simplify this class a bunch.  remove the
7000         Keys.Escape handling (and with it the last call to
7001         DataGrid.EndEdit from outside the class.)
7004 2006-06-12  Chris Toshok  <toshok@ximian.com>
7006         * DataGridTextBox.cs (.ctor): isedit defaults to false.
7007         (OnKeyPress): set isedit to true.
7008         (ProcessKeyMessage): remove Keys.Enter handling from here.  it's
7009         already handled by the grid.
7011         * DataGrid.cs (set_CurrentCell): more work here.  it's still not
7012         right.  ugh.
7013         (set_DataSource): SetDataSource always returns true, so stop
7014         putting it in an if statement.
7015         (EndEdit): get rid of some {}'s
7016         (ProcessGridKey): return true in case Keys.Escape.
7017         (ProcessKeyPreviewInternal): only handle KEYDOWN messages.
7018         (ConnectListManagerEvents,DisconnectListManagerEvents): connect to
7019         PositionChanged, stopped connecting to CurrentChanged.
7020         (GetDataSource): simplify this a bunch.
7021         (SetDataSource): change return type from bool to void.
7022         (OnListManagerPositionChanged): rename OnListManagerCurrentChanged
7023         to this, and make sure we don't set ListManager.Position inside
7024         set_CurrentCell.
7025         (OnListManagerItemChanged): if we're passed an actual index,
7026         redraw that row.
7028         * CurrencyManager.cs (set_Position): don't call PullData here.
7030 2006-06-09  Jackson Harper  <jackson@ximian.com>
7032         * TreeNode.cs:  Recalculate the visible order before doing the
7033         Expand/Collapse Below calls, because those calls generate an
7034         expose.
7035         - Reduce calls to the TreeView property, which is mildly expensive
7036         by using a local var.
7037         * Form.cs: Layout the MDI child windows when creating the parent
7038         form.
7039         - Don't use the internal constructor anymore
7040         * MdiClient.cs: use the parent form width/height (if available)
7041         when laying out the child windows, we do this because the
7042         mdiclient isn't docked yet when the initial layout is done.
7043         - Don't need an internal constructor anymore.
7045 2006-06-08 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7047         * FileDialog.cs: handle access errors when trying to create a folder
7048         or changing to a directory. No need to initialize out parameters.
7050 2006-06-08  Alexander Olk  <alex.olk@googlemail.com>
7052         * FileDialog.cs: Append a number when creating a new folder if the
7053           folder already exists (use parenthesis instead of square brackets)
7055 2006-06-08  Alexander Olk  <alex.olk@googlemail.com>
7057         * FileDialog.cs:
7058           - Disabled registry support for windows and added better registry
7059             error checking for other systems (need to investigate why it
7060             works perfectly on my system)
7061           - If a folder already exist show an error MessageBox instead of
7062             trying to create an indexed name.
7063           - Fixed a non intentional typo.
7065 2006-06-08 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7067         * FileDialog.cs: (SetFileName) don't crash if CurrentRealFolder is null.
7069 2006-06-08  Alexander Olk  <alex.olk@googlemail.com>
7071         * FileDialog.cs: When creating a new folder don't crash if the
7072           folder already exists.
7074 2006-06-08  Alexander Olk  <alex.olk@googlemail.com>
7076         * FileDialog.cs: Allmost a complete rewrite.
7077           - added a "virtual" file system that handles the differences
7078             between unix and windows file systems (especially the directory
7079             structure). Moved most of the directory and file handling code
7080             into the vfs.
7081             Added vfs classes: MWFVFS, FileSystem, WinFileSystem,
7082             UnixFileSystem and FSEntry.
7083           - Recently used folder/directory, size, location and used file names
7084             (file name ComboBox) are now stored in the registry and get read
7085             before the dialog shows up (fixes part 6 of bug #78446).
7086           - Creation of new folders/directories is now possible (context menu
7087             or ToolBar). Added TextEntryDialog for this that fills in the gap
7088             until ListView.LabelEdit works.
7089           - Fixed cursor handling (bug #78527) and focus handling for
7090             PopupButtonPanel
7091           - Various "Search in" ComboBox enhancements. The content of the
7092             dropdown listbox now almost matches ms.
7093           - Changed the behaviour when the user switches to SpecialFolder
7094             Recent to show the ListView in View.Details.
7095           - Beside using the ToolBar to change the View property of the
7096             file ListView it is now possible to use the context menu too.
7098 2006-06-08  Alexander Olk  <alex.olk@googlemail.com>
7100         * ComboBox.cs: Don't create a new ObjectCollection when an item
7101           gets inserted. Just insert the item in the existing object_items
7102           ArrayList.
7104 2006-06-08  Jackson Harper  <jackson@ximian.com>
7106         * OpenTreeNodeEnumerator.cs: Fix to use the Parent property, so
7107         that the treeview and root node checks are done also, this fixes a
7108         regression i caused in the unit tests.
7110 2006-06-07  Wade Berrier <wberrier@novell.com> 
7112         * RichTextBox.cs: More ISO8859-1 -> unicode
7114 2006-06-07  Mike Kestner  <mkestner@novell.com>
7116         * ComboBox.cs : use items to hold highlight/selection so that
7117         collection insertions don't require synchronization.
7119 2006-06-07  Jackson Harper  <jackson@ximian.com>
7121         * InternalWindowManager.cs: Simplify (and FIX) the window sizing
7122         routine.  We now always keep the sized edge at the cursor instead
7123         of computing movement and adjusting rects.  There is one buglet
7124         with this method though when the cursor is moved over area that
7125         the window can not expand too (such as the toolbars on the desktop).
7127 2006-06-07 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7129         * XplatUIX11.cs: (IsEnabled,IsVisible) the window handler can be null
7130         here. Fixes crash on startup in AlbumSurfer.
7132 2006-06-07  Peter Dennis Bartok  <pbartok@novell.com> 
7134         * RichTextBox.cs: Replaced embedded ISO8859-1 chars with proper unicode
7135           values
7137 2006-06-07 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7139         * XplatUIX11.cs: call XPending and XNextEvent inside the same lock()
7140         statement to avoid calling XNextEvent which will block if another thread
7141         took the event that we were expecting. Fixes bug #78605.
7143 2006-06-07  Mike Kestner  <mkestner@novell.com>
7145         * ListView.cs : isolated checkbox clicking from the selection logic.
7146         Toggle check state on item doubleclicks.  Really fixes #78454 part2.
7148 2006-06-06  Carlos Alberto Cortez <calberto.cortez@gmail.com>
7150         * Form.cs: Check that the value passed to Form.DialogResult
7151         is a valid enum value.
7153 2006-06-06 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7155         * FileDialog.cs: disable the up button when in 'Recently Used' or 'My
7156         Computer'. Clicking it in the network view goes to 'My Computer'.
7157         Added CIFS filesystem type. Display the mount point of filesystems.
7158         Avoid duplicate mount points (happens for me with CIFS);
7160 2006-06-06  Jackson Harper  <jackson@ximian.com>
7162         * InternalWindowManager.cs: Draw the maximized windows buttons
7163         when resizing.
7165 2006-06-06 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7167         * Form.cs: when running a modal dialog, ignore WM_CLOSE requests for
7168         all other dialogs. Fixes bug #78585.
7170 2006-06-06  Mike Kestner  <mkestner@novell.com>
7172         * CheckedListBox.cs : apply CheckOnClick behavior to unchecking too.
7173         Only invalidate checkbox on checkstate changes to avoid flicker.
7174         * ListBox.cs : avoid unselect/select when clicking selected item.
7175         avoid reselection flicker for already multiselected items.
7176         Fixes #78382.
7178 2006-06-06  Jackson Harper  <jackson@ximian.com>
7180         * MdiWindowManager.cs: When the window is closed do an NCRecalc on
7181         the parent form so that the menu is removed if needed.
7183 2006-06-06  Mike Kestner  <mkestner@novell.com>
7185         * ListBox.cs : add ScrollWindow call to UpdateTopItem.  fix
7186         Prev/Next/PrevPage/NextPage/Home/End index calculation.  Fixes #78559.
7188 2006-06-06  Mike Kestner  <mkestner@novell.com>
7190         * CheckedListBox.cs : rebuild check collection on Add.  Fixes #78426.
7193 2006-06-06  Jackson Harper  <jackson@ximian.com>
7195         * Control.cs: Use the property (instead of the field) to get the
7196         default cursor so it is instantiated correctly.
7197         * InternalWindowManager.cs: The OS doesn't give us an NCPAINT with
7198         resizes so we need to manually repaint the window decorations here.
7199         - Set the titlebar button locations as soon as they are created,
7200         otherwise they are not set correctly on win32.
7201         
7202 2006-06-06  Chris Toshok  <toshok@ximian.com>
7204         * CurrencyManager.cs (set_Position): call PullData before
7205         OnCurrentChanged.
7206         (AddNew): after calling IBindingList.AddNew, update our
7207         listposition, and call OnCurrentChanged/OnPositionChanged (without
7208         calling PullData).
7209         (OnCurrentChanged): remove the call to PullData from here.
7210         (OnItemChanged): remove the call to PushData from here.
7211         (OnPositionChanged): change the test from == null to != null to
7212         match the other methods.
7213         (ListChangedHandler): the grossest part of the patch.  Implement
7214         this such that it passes the unit tests in CurrencyManagerTest and
7215         the output more or less matches that of MS's implementation.
7217 2006-06-06  Mike Kestner  <mkestner@novell.com>
7219         * ListView.cs : only update check state on single click.
7220         * ThemeWin32Classic.cs : fix focus drawing for details view without
7221         fullrowselect.  Fixes #78454.
7222         * XplatUIX11.cs : fix for double click emission.
7224 2006-06-05  Jonathan Chambers  <jonathan.chambers@ansys.com>
7226         * PropertyGridView.cs : Applied Atsushi's patch to fix
7227         font dialog bug  (#78197).
7229 2006-06-05  Jackson Harper  <jackson@ximian.com>
7231         * TreeNode.cs: Compute the next node for expanding/collapsing
7232         correctly. We now factor in nodes without a NextNode
7233         correctly. (Fixes somes cases in nunit-gui).
7234         * InternalWindowManager.cs: Set the bounds when updating the
7235         virtual position of a tool window.
7236         
7237 2006-06-05  Chris Toshok  <toshok@ximian.com>
7239         * DataGrid.cs: rename cached_currencymgr to list_manager.
7240         (set_CurrentCell): move SetCurrentCell code here, and clean it up
7241         some.
7242         (CurrentRow, CurrentColumn): single accessors so we can make the
7243         cursor movement code a lot easier to understand.
7244         (CurrentRowIndex): implement this in terms of CurrentRow.
7245         (BeginEdit): clean this up a bit.
7246         (CancelEditing): sort out the is_editing/is_changing/is_adding
7247         stuff a little.
7248         (EndEdit): minor changes.
7249         (OnKeyDown): add a comment about a (most likely) unnecessary
7250         check.
7251         (OnMouseDown): cancel editing when we click on a row header.  And
7252         use the CurrentRow setter, not CurrentCell.
7253         (ProcessDialogKey): directly call ProcessGridKey.
7254         (UpdateSelectionAfterCursorMove): factor out this common block of
7255         code (it's used everywhere that we move the cursor by updating row
7256         or column).
7257         (ProcessGridKey): pretty substantial overhaul.  Use the
7258         CurrentRow/CurrentColumn properties to make the code a lot more
7259         readable.  Only use the CurrentCell property when we have to
7260         modify both row and column at once.  Tab behavior is still broken,
7261         and Delete is untested.
7262         (Select): if we have no selected rows, set selection_start to
7263         @row.
7264         (EditCurrentCell): rename EditCell this.  It was only ever invoked
7265         with CurrentCell as the arg, so drop the arg and rename it.
7267         * DataGridColumnStyle.cs: clean up the constructors a little, and
7268         drop CommonConstructor().
7270         * DataGridTextBox.cs (.ctor): set accepts_return to true so we
7271         actually get notified when the user hits it.
7272         (ProcessKeyMessage): *substantially* simplify this method.
7273         There's no reason (that I can see) for the textbox to be making
7274         calls into the datagrid at all.  Remove all of them but the ones
7275         for Enter handling.  those will take some more work.
7277         * DataGridTextBoxColumn.cs (ConcedeFocus): implement this by
7278         calling HideEditBox.
7279         (HideEditBox): if we have an active textbox, render it invisible
7280         without causing a re-layout of the datagrid.
7282 2006-06-05  Mike Kestner  <mkestner@novell.com>
7284         * ListView.cs : fix NRE crasher when focuseditem is cleared by
7285         collection changes by resetting it to Items[0].  Fixes #78587.
7287 2006-06-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7289         * MessageBox.cs: if the height of the text is larger than the icon_size,
7290         use that. Fixes bug #78575.
7292 2006-06-05  Jackson Harper  <jackson@ximian.com>
7294         * TreeView.cs: Fix line drawing when scrolling.  To do this each
7295         node is basically responsible for drawing its entire horizontal
7296         area.  When drawing a node it draws its parent node lines if
7297         needed.
7298         - Adjust the clip area to the viewport rectangle
7299         - Fix Left/Right key handling to match MS. (It expand/collapses
7300         and moves to parents/first child but does not move selection to
7301         sibling nodes).
7302         - Fix SetTop to work with new bound calculation code
7303         - When scrollbars are no longer needed we need to reset scrolling
7304         vars and recalculate the visible order so the redraw is correct
7305         * TreeNode.cs: We can't expand/collapse nodes with no children.
7307 2006-06-03  John Luke  <john.luke@gmail.com> 
7309         * X11DesktopColors.cs: dllimport the exact gtk and gdk versions
7310         so the colors work without dev packages
7311         
7312 2006-06-02  Peter Dennis Bartok  <pbartok@novell.com> 
7314         * Control.cs 
7315           - Select: Implemented to just use activate. Seems to match MS 
7316             behaviour closest. Documented to only do actual control walking 
7317             based on it's parameters if in a container control so I moved 
7318             the code there.
7319           - Removed selection check logic from our internal Select() method
7320         * ContainerControl.cs:
7321           - Select: Moved selection logic from Control here, since MS documents
7322             that containers obey the bool arguments. No longer calling base
7324 2006-06-02  Jackson Harper  <jackson@ximian.com>
7326         * TreeView.cs: If the selected node isn't changed when we get
7327         focus update the previously selected node so that we see the
7328         selection box.
7330 2006-06-02  Mike Kestner  <mkestner@novell.com>
7332         * ComboBox.cs: restructure grab and general mouse event handling.
7333         Make the composite control raise mouse events like it was a single
7334         control for leaves/enters/motion/up/down events.  fix dropdown list
7335         coordinate mangling and refactor it into the scrollbar subclass to
7336         reduce code duplication.  Fixes #78282 #78361 and #78457.
7338 2006-06-02  Mike Kestner  <mkestner@novell.com>
7340         * ScrollBar.cs: remove Capture setting/clearing, as it happens
7341         automatically in the Control.WndProc.
7343 2006-06-01 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7345         * FileDialog.cs: fix crash when running SharpChess, which sets the
7346         FilterIndex to 2 with only one Filter.
7348 2006-06-01 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7350         * ToolBar.cs: add SizeSpecified property.
7351         * ToolBarButton.cs: when the ButtonSize is calculated by the container,
7352         try to figure out our real size, otherwise fallback to what the
7353         container says.
7355 2006-06-01  Peter Dennis Bartok  <pbartok@novell.com> 
7357         * XplatUIX11.cs (DefWndProc): WM_MOUSEWHEEL needs to be passed up
7358         * Control.cs (WndProc): MS always calls the DefWndProc to pass
7359           up the event
7361 2006-06-01  Mike Kestner  <mkestner@novell.com>
7363         * ListView.cs: revamp the focus management in ListView.  It still
7364         causes churn of LostFocus/GotFocus emissions on clicks, but it's
7365         better than not handling focus at all.  Will revisit when pdb feels
7366         the general focus handling is solid.  Fixes #78526.
7368 2006-06-01  Jackson Harper  <jackson@ximian.com>
7370         * TreeView.cs: Set the default border style in the constructor.
7371         - Move painting to use OnPaintInternal instead of capturing
7372         WM_PAINT, this is the correct way of doing things
7373         - UpdateBelow shouldn't invalidate the scrollbar area
7374         - Cap the top on update below in case the node was above the top
7375         of the viewport rectangle.
7376         - ExpandBelow and Collapse below need to obey Begin/End Update.
7377         * TreeNode.cs: Make is_expanded internal so the treenode
7378         collection can change it without firing the whole event chain.
7379         * TreeNodeCollection.cs: When clearing all the child nodes make
7380         sure to recalc the visible order.
7381         - Improve algo for remove the top node
7383 2006-06-01  Peter Dennis Bartok  <pbartok@novell.com> 
7385         * XplatUIX11.cs (SetFocus): Make sure we can handle re-entrancy due to
7386           SendMessage directly calling window procedures, which in turn might
7387           call SetFocus()
7389 2006-06-01  Peter Dennis Bartok  <pbartok@novell.com>
7391         * Control.cs: Don't handle WM_SETFOCUS if the same window already
7392           has focus (works around X11 sending a FocusIn after our SetFocus)
7393         * XplatUIX11.cs: Send KILLFOCUS before setting SETFOCUS on new window
7395 2006-06-01  Alexander Olk  <alex.olk@googlemail.com>
7397         * Mime.cs: Fix for the NET_2_0 build.
7398           NameValueCollection needs StringComparer now.
7400 2006-05-31  Chris Toshok  <toshok@ximian.com>
7402         * DataGridDrawingLogic.cs (FromPixelToColumn): modify this to also
7403         return (via an out parameter) the starting X of the column.
7404         (UpdateVisibleColumn): track change to FromPixelToColumn.
7405         (HitTest): add a ColumnResize case here.
7406         (DrawResizeLine): new function, probably poorly named.
7408         * DataGrid.cs (.ctor): get rid of cached_currencymgr_events.  We
7409         only need to keep one reference.
7410         (set_ListManager): same.
7411         (OnMouseDown): call HitTest instead of grid_drawing.HitTest.
7412         Also, add support for HitTestType.ColumnResize.
7413         (OnMouseMove): add column resize behavior here, and change the
7414         cursor to the correct one as we move around the datagrid.
7415         (OnMouseUp): terminate the column resize if we're resizing.
7416         (ProcessGridKey): from the MS docs, Alt-0 enters the null value
7417         for the current cell.
7418         (ConnectListManagerEvents): use cached_currencymgr.
7419         (DisconnectListManagerEvents): fill this in, using
7420         cached_currencymgr.
7421         (SetCurrentCell): remove cached_currencymgr_events handling.
7422         (SetDataMember): only call DisconnectListManagerEvents if
7423         cached_currencymgr is != null.
7424         (SetDataSource): same.
7425         (OnListManagerCurrentChanged): cached_currencymgr_events ->
7426         cached_currencymgr.
7428 2006-05-31  Jackson Harper  <jackson@ximian.com>
7430         * BindingManagerBase.cs: Remove somedebug code that creeped into
7431         SVN.
7432         * TreeNode.cs: We get the indent level dynamically right now, so
7433         don't track it as a member.
7434         * TreeNodeCollection.cs: Make sure all nodes added to the list
7435         have parents, treeviews/topnodes setup properly.
7436         - Don't attempt to track indent level.
7438 2006-05-30  Jackson Harper  <jackson@ximian.com>
7440         * BindingContext.cs: Create the currency manager tables here.
7441         This allows us to more easily create null tables (when bad data
7442         members are used), and more easily create related currency
7443         managers.
7444         * CurrencyManager.cs: All the table creation stuff is done by the
7445         binding context now.
7446         - Current should throw an exception if listposition is -1.
7447         - CancelCurrentEdit/EndCurrentEdit, do nothing if the list hasn't
7448         been bound yet.
7450 2006-05-30  Mike Kestner  <mkestner@novell.com>
7452         * ListView.cs: allow reexpansion of zero-width column headers.
7453         Fixes #78528.
7455 2006-05-28  Chris Toshok  <toshok@ximian.com>
7457         * CurrencyManager.cs (get_Current): after the late binding
7458         listposition = -1 fix, we need to guard against it here and return
7459         null, otherwise we raise an exception (which is swallowed
7460         elsewhere, and breaks datagrid databinding.)
7462 2006-05-26  Peter Dennis Bartok  <pbartok@novell.com>
7464         * MenuAPI.cs (ProcessMenuKey): We can legally get msg types other
7465           than WM_SYSKEY, don't throw if get something unexpected (#78507)
7467 2006-05-26  Jackson Harper  <jackson@ximian.com>
7469         * ControlPaint.cs:
7470         * ThemeWin32Classic.cs: For color comparisons just use the ARGB
7471         values, it's faster and it's all we care about (we don't care if
7472         the names aren't equal).
7473         * KeyboardLayouts.cs: Eliminate some dead code.
7474         - Lazy init things
7475         * X11Keyboard.cs: Lazy init keyboard detection.
7476         - Cleanup access modifiers a little.
7478 2006-05-26  Peter Dennis Bartok  <pbartok@novell.com>
7480         * XplatUIX11.cs: Once again, attempting to get layout just right.
7482 2006-05-26  Peter Dennis Bartok  <pbartok@novell.com> 
7484         * LinkLabel.cs (CreateLinkPieces): Use MeasureString to calculate
7485           the sizes of each link section, that will result in sizes that
7486           match DrawString's layout (Fixes #78391)
7488 2006-05-27  Alexander Olk  <alex.olk@googlemail.com>
7490         * FileDialog.cs: If AddExtension property is true autocomplete the
7491           extensions in SaveFileDialog correctly. Fixes bug #78453.
7492           Set MyNetwork and MyComputer to "C:\" for windows. This should
7493           fix part 8 of bug #78446 for now.
7495 2006-05-26  Chris Toshok  <toshok@ximian.com>
7497         * DataGrid.cs (ColumnStartedEditing): fill these in.  for now just
7498         invalidate the current row header if we need to, but presumably
7499         we'll invalidate the row corrsponding to the bounds or
7500         editingControl.
7501         (GridHScrolled): switch back to this method, as it's part of the
7502         public api.  *sigh*.
7503         (GridVScrolled): same.
7504         (OnMouseWheel): hack up something that more or less works.  Call
7505         GridHScrolled/GridVScrolled directly, instead of duplicating much
7506         of their code here.
7507         (EnsureCellVisibility): reinstate a bunch of this code, since we
7508         can't just set the scrollbar Value and expect to do all the work
7509         in the ValueChanged handler.  Also, Call Update() after scrolling
7510         in one direction so the other XplatX11.ScrollWindow call has the
7511         proper stuff in the proper places.
7512         (EditCell): set is_editing to true before calling .Edit.
7514         * DataGridTextBox.cs (set_IsInEditOrNavigateMode): just set it,
7515         don't bother comparing first.
7516         (OnKeyPress): call grid.ColumnStartedEditing before calling
7517         base.OnKeyPress.  this will set is_changing and invalidate the row
7518         header if necessary.
7519         (ProcessKeyMessage): for WM_CHAR messages, call
7520         ProcessKeyEventArgs directly.  swallow anything other than WM_CHAR
7521         and WM_KEYDOWN.
7522         
7523         * DataGridBoolColumn.cs (Edit): don't set is_editing to true here.
7524         it's done in the DataGrid.
7525         (NextState): call grid.ColumnStartedEditing, which takes care of
7526         invalidating the row header (and setting is_changing).
7528         * DataGridTextBoxColumn.cs (Edit): don't set is_editing to true
7529         here.  it's done in the DataGrid.
7531 2006-05-25 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7533         * Control.cs: allow changing the cursor when the mouse position is
7534         out of bounds but Capture is set.
7535         * LinkLabel.cs: handle the case when the mouse button is pressed on the
7536         linklabel but released somewhere else.
7538 2006-05-25  Jackson Harper  <jackson@ximian.com>
7540         * TreeView.cs: When we get focus if there is no selected node make
7541         it the top node
7542         - Remove some uneeded setup code from Draw.
7543         * TreeNodeCollection.cs: If the tree doesn't have a top node when
7544         a new node is inserted make the new node the top.
7545         * XplatUIX11.cs:
7546         * Timer.cs: Use Utc time so that no local time zone stuff needs to
7547         be used (should be faster).
7548         
7549 2006-05-25  Chris Toshok  <toshok@ximian.com>
7551         * DataGrid.cs (EnsureCellVisibility): remove some code to fix a
7552         problem with the last commit.
7554 2006-05-25  Chris Toshok  <toshok@ximian.com>
7556         * DataGridTextBoxColumn.cs (ReleaseHostedControl): turns out we do
7557         need the invalidate call here, while scrolling right-to-left via
7558         the left arrow key (i.e. moving the editing cell while scrolling).
7560         * DataGrid.cs (.ctor): remove the initialization of
7561         ctrl_pressed/shift_pressed.  We no longer track them using key
7562         up/down handlers, but by using Control.ModifierKeys.  Also, switch
7563         to using ValueChanged handlers on the scrollbars instead of
7564         Scrolled event handlers.  This simplifies a bunch of the scrolling
7565         code.
7566         (GridHValueChanged): rename from GridHScrolled, and change it to
7567         work with the new event args.
7568         (GridVValueChanged): same.
7569         (OnMouseDown): initialize ctrl_pressed/shift_pressed here.
7570         (OnMouseWheel): actually scroll the datagrid.  Don't change the
7571         selected cell.
7572         (ProcessGridKey): correct all the keyboard navigation stuff I
7573         could find.  Ctrl up/down/left/right/home/end work now.
7574         (EnsureCellVisibility): correct method name spelling.  Also,
7575         simplify this a touch by not explicitly calling the
7576         ScrollToRow/ScrollToColumnInPixels methods.  We just set the
7577         scrollbar value.
7578         (OnKeyUpDG): no need for this method now.
7579         
7580 2006-05-25 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7582         * LinkLabel.cs: display the OverrideCursor when hovering the label.
7583         Fixes bug #78392.
7585 2006-05-25  Chris Toshok  <toshok@ximian.com>
7587         * ThemeWin32Classic.cs: fix datagrid clipping problems caused by
7588         r61019.
7590 2006-05-25  Peter Dennis Bartok  <pbartok@novell.com> 
7592         * Application.cs: Moved setting of is_modal and closing to before
7593           we create the control, to allow the event handlers called as a
7594           result of creation affect closing. Also removed Gonzalo's previous
7595           change to setting DialogResult, the behaviour has been moved to 
7596           Form.ShowDialog()
7597         * Form.cs: 
7598           - ShowDialog(): Removed explicit creation of the form, let RunLoop
7599             handle it instead
7600           - ShowDialog(): If no dialog result is set, we need to return Cancel
7601           - WM_CLOSE: Fire Closing/Closed events, and reset dialog result if
7602             the close is cancelled
7604 2006-05-25  Jackson Harper  <jackson@ximian.com>
7606         * StatusBar.cs: We only need to update the sizes of the other
7607         panels when we have auto size contents.  Also we are only updating
7608         the contents of the panel, not the borders, so compensate for the
7609         border width (TODO: get this width from the theme somehow).
7610         * TreeView.cs: Scrollable is true by default
7611         - Use invalidate instead of refresh where needed
7612         - Factor the scrollable value into scrollbar updating
7613         - Update the scrollbars if the Scrollable property is altered
7614         - Update the selected node if its ImageIndex is changed
7615         - Handle null nodes in UpdateNode (mainly so we don't have to
7616         check if selected is null when updating it
7617         - Fix VisibleCount to use the ViewportRectangle so that scrollbars
7618         are factored into the visible count
7619         - Use VisibleCount for clarity in the code
7620         - When the font is changed we need to recurse through all the
7621         nodes and invalidate their sizes
7622         
7623 2006-05-25 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7625         * Application.cs: set the DialogResult to fixed when the main form is
7626         hidden or destroyed while being modal.
7628 2006-05-25  Miguel de Icaza  <miguel@novell.com>
7630         * Theme.cs: Use Tangoified messagebox icons. 
7632         (GetSizedResourceImage): Also cope with width = 0 and do not
7633         trigger a warning in that case (0 means "give me your icon from
7634         the resouce, no special size needed).
7636 2006-05-25  Peter Dennis Bartok  <pbartok@novell.com> 
7638         * Application.cs: Leave runloop if the the main modal form is 
7639           hidden (fixes #78484)
7641 2006-05-25  Atsushi Enomoto  <atsushi@ximian.com>
7643         * BindingContext.cs : reject null datasource in Contains() and
7644           Item[].
7645         * CurrencyManager.cs : check data_member validity when data_source
7646           is dataset. When it is late binding, the initial position is -1.
7648 2006-05-24  Jackson Harper  <jackson@ximian.com>
7650         * TreeNodeCollection.cs: Dont't recalculate the visible order on
7651         inserted nodes that aren't visible.  This changes the
7652         max_visible_order which confuses scrollbar settings.
7653         - Use the enumerator to get the prev node instead of duplicating
7654         code.
7655         * TreeView.cs: Use new method for setting scrollbar values
7656         - Don't set the bounds every time the scrollbar is updated
7657         - When updating below the root node use an invalidate instead of a
7658         refresh to prevent the child controls (scrollbars) from being
7659         refreshed. (UpdateBelow still needs to be reworked anyways).
7660         - Reenable SetBottom now that visible orders are set correctly,
7661         added some debug code incase we ever get bad values there again.
7662         - Set the scrollbar max to 2 less then the max value, this
7663         compensates for the max value being one above the node count, and
7664         for scrollbars adding one extra "notch".
7665         - When drawing image nodes if there is an imagelist we draw the
7666         first image in the list if the supplied image index is out of the
7667         image list's bounds.
7668         
7669 2006-05-24  Peter Dennis Bartok  <pbartok@novell.com> 
7671         * XplatUIX11.cs: Don't blindly cache hwnd.ClientRect, reset it when 
7672           we receive a size change from the WM (Fixes #78503)
7674 2006-05-24  Peter Dennis Bartok  <pbartok@novell.com>
7676         * XplatUIWin32.cs, XplatUIX11.cs: Refresh when setting the Clip 
7677           rectangle (Fixes #78501)
7679 2006-05-24  Peter Dennis Bartok  <pbartok@novell.com> 
7681         * ButtonBase.cs: 
7682           - Fixed MouseUp, MouseDown and MouseMove to treat mouseevent.Button 
7683             as a bitfield.
7684           - Fixed MouseMove to no longer switch pressed state unless the left
7685             mouse button is pressed. Atsushi provided the original patch (#78485)
7686           
7687 2006-05-24  Jackson Harper  <jackson@ximian.com>
7689         * ScrollBar.cs: New internal methods that allow us to change a
7690         couple values on the scrollbar (the most common case is maximum
7691         and large change) without getting multiple invalidates.
7693 2006-05-24  Chris Toshok  <toshok@ximian.com>
7695         * DataGridBoolColumn.cs (Abort): revert back to the saved setting.
7696         (Edit): save off the original state in oldState, and set
7697         grid.is_editing to true.
7698         (OnKeyDown): abort editing if escape is pressed.  also, call
7699         NextState if space is pressed.
7700         (OnMouseDown): call NextState.
7701         (NextState): factor out shared code from OnKeyDown and OnMouseDown
7702         here.  Also, only invalidate the row header once (on the initial
7703         is_changing switch) to save on redraws.
7705 2006-05-24  Chris Toshok  <toshok@ximian.com>
7707         * DataGridTextBoxColumn.cs (Commit): only call SetColumnValueAtRow
7708         if the value in the cell is different than it was before.  This
7709         keeps us from triggering a layout when we move around a datarid
7710         with a highlighted cell.
7711         (Edit): suspend layout when creating/positining the text box, and
7712         resume passing false so we don't ever actually re-layout.
7713         (ReleaseHostedControl): same.
7714         (EnsureTextBox): reformat slightly, and set WordWrap to false.
7716         * DataGridTextBox.cs (ProcessKeyMessage): it's not true that all
7717         control-key sequences should go to the datagrid - remove that
7718         lock.  Also, modify the conditions under which we move between
7719         cells when moving the cursor within a cell, and remove the "this"
7720         and "base" from field accesses.  We weren't even consistent, given
7721         they all were in the base class.
7723 2006-05-24  Atsushi Enomoto  <atsushi@ximian.com>
7725         * Binding.cs : (.ctor)
7726           An obvious NRE fix for BindingTest.CtorNullTest().
7728 2006-05-23  Chris Toshok  <toshok@ximian.com>
7730         * TextBoxBase.cs (get_Text): don't add a trailing newline, add
7731         them between lines.  This fixes some quirks editing cells in the
7732         datagrid.
7734 2006-05-23  Jackson Harper  <jackson@ximian.com>
7736         * TreeView.cs: Use begin/end update when doing expand/collapse all
7737         so that we don't get flicker on the scrollbar.
7739 2006-05-23  Jackson Harper  <jackson@ximian.com>
7741         * TreeNode.cs: Bounds are computed 'on the fly' now.  This allows
7742         treenode calculations to be independant of the painting code. To
7743         do this nodes track a visible order which is calculated by the
7744         treeview.
7745         - Call new methods for expanding/collapsing nodes.  These methods
7746         use scrollwindow so we don't have to update everything below the
7747         node.
7748         * TreeView.cs: Refactored drawing and scrolling code.  We don't
7749         need to update nodes when drawing anymore or calculate scrollbar
7750         stuff.
7751         - Added new methods for expanding/collapsing nodes. These methods
7752         use ScrollWindow so as to not have to redraw all the nodes below.
7753         * TreeNodeCollection.cs: Recalc visible order and scrollbars when
7754         we add/remove nodes or sort.
7755         - Handle removing the selected and the top node properly.
7757 2006-05-23  Chris Toshok  <toshok@ximian.com>
7759         * DataGridTextBoxColumn.cs (Edit): set grid.is_editing to true.
7760         maybe this should actually happen in the datagrid code?
7761         (EndEdit): no need to invalidate anything, given that
7762         ReleaseHostedControl causes the datagrid to relayout, which
7763         invalidates everything anyway.
7765         * DataGrid.cs (set_CurrentCell): remove duplicate check (it's also
7766         in SetCurrentCell).
7767         (set_SelectionBackColor): call InvalidateSelection instead of
7768         Refresh.
7769         (set_SelectionForeColor): same.
7770         (BeginEdit): Flesh this out a bit.
7771         (CancelEditing): only do any of this if we're editing/adding.
7772         (EndEdit): same.
7773         (OnMouseDown): there's no need to cancel editing here, it's done
7774         in SetCurrentCell.
7775         (SetCurrentCell): only invalidate the current row header if it's a
7776         different row than the new one.
7777         (ShiftSelection): fix this to work like MS does.
7778         (ResetSelection): factor out the invalidation of selected_rows to
7779         InvalidateSelection.
7780         (SetDataSource): cancel any editing that's going on.
7782         * DataGridColumnStyle.cs
7783         (IDataGridColumnStyleEditingNotificationService.ColumnStartedEditing):
7784         call the non-interface version.
7786         * ThemeWin32Classic.cs (DataGridPaintColumsHdrs): intersect the
7787         header rectangle with the clip rectangle so we don't redraw the
7788         entire header for just a small area.  Gets rid of the last flicker
7789         when horizontally scrolling.
7790         (DataGridPaintRow): same.
7792 2006-05-23  Mike Kestner  <mkestner@novell.com>
7794         * ListViewItem.cs: remove size for line hack from LargeIcon layout.
7795         * ThemeWin32Classic.cs: don't draw line.  it's really the top of a
7796         poorly placed checkbox on the MS control.  Fixes Alex's unfiled
7797         Critical bug report.
7799 2006-05-23  Peter Dennis Bartok  <pbartok@novell.com> 
7801         * PictureBox.cs: Fixed broken ControlStyles. Unit test no longer fails,
7802           and this fixes #78493
7804 2006-05-23  Miguel de Icaza  <miguel@novell.com>
7806         * Theme.cs (GetSizedResourceImage): Scale images if the proper
7807         size is not found.  
7808         
7809         * FileDialog.cs: Do not change the background for the side bar as
7810         it wont work nicely with the theme, and also reduces the artifacts
7811         in rendering the icons (which I want to fix too).
7813         * MimeIcon.cs (ResourceImageLoader): Load images from assembly
7814         resources, not resgen resources. 
7816         (PlatformDefaultHandler): Pull images using the new API.
7818 2006-05-23  Peter Dennis Bartok  <pbartok@novell.com> 
7820         * Hwnd.cs (Dispose): Remove any pending exposures. XEventQueue holds
7821           a reference to the hwnd and will not remove it unless there are
7822           no pending exposures (fixes #78341)
7823         * XplatUI.cs: Improved debug
7825 2006-05-23  Atsushi Enomoto  <atsushi@ximian.com>
7827         * MenuAPI.cs : don't handle OnClick event when it was not the left
7828           button. Fixed bug #78487.
7830 2006-05-23  Mike Kestner  <mkestner@novell.com>
7832         * MenuAPI.cs: fix placement of submenus for multi-row menu bars, and
7833         prefer submenus to the top menu for item lookup, to avoid popping down
7834         top-row items.
7836 2006-05-23  Alexander Olk  <alex.olk@googlemail.com>
7838         * ThemeWin32Classic.cs: Rewrote CPCPDrawScrollButton to drop
7839           Graphics.FillRectangle as the visual results are really bad (even
7840           on win). We now draw perfect arrows (and perfect shadows when the
7841           scrollbar is disabled). Simplified CPDrawGrid. CPDrawGrid now uses
7842           Pen.DashPattern to draw the dots of each line.
7844 2006-05-22  Alexander Olk  <alex.olk@googlemail.com>
7846         * FileDialog.cs: Update the filename combobox when navigating through
7847           the ListView with the cursor keys. Fixes part 7 of bug #78446.
7849 2006-05-22  Mike Kestner  <mkestner@novell.com>
7851         * ListView.cs: raise SelectedIndexChanged on keyboard selection.
7852         Fixes #78463.
7854 2006-05-22  Mike Kestner  <mkestner@novell.com>
7856         * ComboBox.cs: Refresh in EndUpdate to pick up all the dropped Paint
7857         requests. Fix a misspelled parameter and a copy paste exception error
7858         in Select.
7860 2006-05-22  Peter Dennis Bartok  <pbartok@novell.com> 
7862         * ThemeWin32Classic.cs: Changed DefaultFont emSize from 8.25 to 8
7863           to get the same width/height (5/13) on X11 as the default font has on
7864           win32. This means that our DefaultFont emSize is smaller than the 
7865           the MS SWF equivalent (even thought the width/height stays the same)
7867 2006-05-20  Jackson Harper  <jackson@ximian.com>
7869         * MdiClient.cs:
7870         * MdiWindowManager.cs:
7871         * InternalWindowManager.cs: Make sure to use the border width from
7872         the theme.
7874 2006-05-20  Jordi Mas i Hernandez <jordimash@gmail.com>
7876         * PrintDialog.cs: Implements printer details
7878 2006-05-19  Alexander Olk  <alex.olk@googlemail.com>
7880         * FileDialog.cs: Added focus handling for PopupButtonPanel.
7881           Fixes part 1 and 2 of bug #78446
7883 2006-05-19  Peter Dennis Bartok  <pbartok@novell.com> 
7885         * XplatUIX11.cs (SetWindowPos): Recalculate client area size on resizes
7886           instead of sticking to the first ever calculated value
7888 2006-05-19  Mike Kestner  <mkestner@novell.com>
7890         * ComboBox.cs: fix mouse motion selection to use MousePosition and
7891         PointToClient, since Capture is set. Fixes #78344.
7893 2006-05-19  Mike Kestner  <mkestner@novell.com>
7895         * ListView.cs: match MS behavior in Details view where items are not
7896         drawn if Columns.Count == 0. 
7897         * ThemeWin32Classic.cs: only highlight ListView selection if focused.
7898         Use a separate pen to draw the check, since changing the width affects
7899         the box as well.  Fixes #78454.
7901 2006-05-18  Miguel de Icaza  <miguel@novell.com>
7903         * ListView.cs: ArgumentOutOfRangeException, single versions of the
7904         exception should throw the name of the invalid argument.
7906         * FileDialog.cs (OnClickOpenSaveButton): Avoid crash in open if
7907         there are no files listed. 
7909 2006-05-18  Jackson Harper  <jackson@ximian.com>
7911         * ThemeWin32Classic.cs: Don't use endcaps, they mess the drawing
7912         up.
7914 2006-05-18  Peter Dennis Bartok  <pbartok@novell.com> 
7916         * Control.cs: Brought back our old UpdateZOrder method as a private
7917           function and switched our calls from UpdateZOrder to the new one.
7918           This fixes the Paint.Net canvas disappearing bug.
7920 2006-05-18  Jackson Harper  <jackson@ximian.com>
7922         * Theme.cs:
7923         * ThemeWin32Classic.cs:
7924         * InternalWindowManager.cs: Move the drawing into the theme,
7925         expose everything the theme should need from the window manager.
7927 2006-05-18  Peter Dennis Bartok  <pbartok@novell.com>
7929         * XplatUIX11.cs (DefWndProc): WM_SETCURSOR: Assign the return value 
7930           from the call to NativeWindow to avoid walking up the parent chain
7931           further than needed (speeds up setting cursors and avoids setting
7932           the wrong cursor if a parent has another cursor defined)
7933         * Cursor.cs: When loading an icon as cursor, MS uses the center of
7934           the icon as hotspot, not what's contained as hotspot in the icon
7935           file. This fixes the perceived drawing offset seen with Paint.Net
7936         
7937 2006-05-18  Peter Dennis Bartok  <pbartok@novell.com> 
7939         * XplatUIX11.cs: 
7940           - Store the calculated rectangle in Hwnd object and use it when 
7941             setting the client size
7942           - Force Toolwindows to always be type Dock, to ensure they're on top
7944 2006-05-18  Mike Kestner  <mkestner@novell.com>
7946         * ComboBox.cs: first pass at ComboBox rework.  Layout is more
7947         consistent with MS positioning.  IntegralHeight, ItemHeight, Sizing.
7948         Correctly initialize textcontrol and ListBox on DropDownStyle changes. 
7949         Substantial refactoring to remove confusing nested classes. Coding
7950         standard and Get+Set->property refactorings.  Shift to index based
7951         highlighting in ComboListBox instead of constantly using IndexOf and
7952         Items[]. Add invalidations on resize for DropDownList to fix ugliness
7953         in FileDialog growth.  Draw borders manually since Simple mode needs
7954         to look like two independent controls.  Make listbox border
7955         conditional to DropDownStyle.  Improved OwnerDraw support.
7957 2006-05-18  Sebastien Pouliot  <sebastien@ximian.com>
7959         * PaintEventArgs.cs: For 2.0, check for a null Graphics in the .ctor. 
7960         Don't set the disposed graphics to null, so we can throw the "right"
7961         exception if the graphics is reused later (added a flag to avoid 
7962         double disposing). Some behaviours are different under 2.0 and are
7963         filled under bug #78448.
7965 2006-05-18  Peter Dennis Bartok  <pbartok@novell.com>
7967         * Control.cs: When double-buffering is enabled, we need to reset
7968           our graphics context between paint calls. Otherwise, any 
7969           transformations and other alterations on the context will 
7970           become cumulative (#77734)
7972 2006-05-18  Mike Kestner  <mkestner@novell.com>
7974         * ListView.cs: do focused item selection like MS on clicks. 
7975         Rework focus handling for ItemControl so LostFocus invalidates as
7976         well.
7977         * ThemeWin32Classic.cs: only draw focus rectangle for ListViewItems if
7978         the ListView ItemControl has focus.
7980 2006-05-17  Peter Dennis Bartok  <pbartok@novell.com>
7982         * XplatUIX11.cs: If client_window ends up being width or height zero
7983           due to border settings, move it off window inside whole_window (#78433)
7985 2006-05-17  Alexander Olk  <alex.olk@googlemail.com>
7987         * Mime.cs: Shrink the mime file cache correctly.
7989 2006-05-17  Alexander Olk  <alex.olk@googlemail.com>
7991         * ThemeWin32Classic.cs: Readded button focus drawing code. (#78429)
7993 2006-05-16  Peter Dennis Bartok  <pbartok@novell.com>
7995         * XplatUIX11.cs (AddExpose): More sanity checks
7997 2006-05-16  Peter Dennis Bartok  <pbartok@novell.com> 
7999         * XplatUIX11.cs:
8000           - AddExpose: Don't add expose ranges outside the size of our
8001             window
8002           - Cast opacity values to Int32 to avoid crashes with certain
8003             values
8004           - Added disabled code paths that protect against illegal cross-
8005             thread painting (Developers.exe)
8007 2006-05-16  Peter Dennis Bartok  <pbartok@novell.com>
8009         * ProgressBar.cs: Invalidate the control when it's resized
8010           since block size is based on control size. (#78388)
8012 2006-05-16  Miguel de Icaza  <miguel@novell.com>
8014         * DataGrid.cs (SetDataBinding): per the discussion on irc, instead
8015         of setting the incoming argument to the "reset" value, we set the
8016         this.datamember to string.empty (before we were invalidating the
8017         incoming data).   
8019         Fixes 78420
8021 2006-05-16  Peter Dennis Bartok  <pbartok@novell.com> 
8023         * Form.cs: Only apply transparency settings after the form
8024           is created. (Fixes #77800)
8026 2006-05-16  Peter Dennis Bartok  <pbartok@novell.com>
8028         * ApplicationContext.cs: Grab the HandleDestroyed event so
8029           we know when to fire OnMainFormClosed 
8031 2006-05-16  Peter Dennis Bartok  <pbartok@novell.com> 
8033         * Application.cs: Introduced sub-class to allow tracking of
8034           threads and centralized triggering of the event mess for
8035           ThreadExit, AppExit, etc..  (#76156)
8037 2006-05-16  Alexander Olk  <alex.olk@googlemail.com>
8039         * MimeIcon.cs:
8040           - Do not return a null icon index value for a mime subclass.
8041             Instead try the main mime type class too.
8042           - Seems that some newer distributions don't have a link to some
8043             gnome default icons anymore. So check the default gnome dir too.
8044           
8046 2006-05-16  Jackson Harper  <jackson@ximian.com>
8048         * MdiClient.cs: Don't paint the parent background image if we have
8049         our own background image.
8051 2006-05-16  Peter Dennis Bartok  <pbartok@novell.com> 
8053         * Control.cs:
8054           - PerformLayout: Do not shrink space filled by DockStyle.Fill
8055             controls, all filled controls are supposed to overlap (#78080)
8056           - UpdateZOrder is supposed to update the control's z-order in the
8057             parent's z-order chain. Fixed to behave like that
8058           - BringToFront: Removed obsolete code
8059           - SendToBack: Simplyfied
8060           - SetChildIndex: Trigger layout calculations when Z-order changes
8061             since layout is done by z-order
8063 2006-05-16  Chris Toshok  <toshok@ximian.com>
8065         [ fixes bug #78410 ]
8066         * DataGrid.cs (set_AlternatingBackColor): use
8067         grid_drawing.InvalidateCells instead of Refresh().
8068         (set_BackColor): call grid_drawing.InvalidateCells.
8069         (set_BackgroundColor): use Invalidate instead of Refresh.
8071         * DataGridDrawingLogic.cs (InvalidateCells): new function, just
8072         invalidate the cell area.
8074 2006-05-15  Chris Toshok  <toshok@ximian.com>
8076         [ fixes bug #78011 ]
8077         * ThemeWin32Classic.cs (DataGridPaintRows): pass the clip argument
8078         on to DataGridPaintRow.
8079         (DataGridPaintRow): take a clip argument, and only draw the cells
8080         which intersect it.  same with the not_usedarea.
8082         * Theme.cs (DataGridPaintRow) add @clip parameter.
8084         * DataGrid.cs (ScrollToColumnInPixels): simplify, use
8085         XplatUI.ScrollWindow.
8086         (ScrollToRow): same.
8088         * DataGridDrawingLogic.cs (UpdateVisibleColumn): fix corner case
8089         with last column which was causing a gray swath to appear with the
8090         XplatUI.ScrollWindow code.
8092 2006-05-15  Chris Toshok  <toshok@ximian.com>
8094         * ListBox.cs (HorizontalScrollEvent): in the non-multicolumn case,
8095         use XplatUI.ScrollWindow.
8096         (VerticalScrollEvent): use XplatUI.ScrollWindow.
8098 2006-05-15  Peter Dennis Bartok  <pbartok@novell.com> 
8100         * TextBoxBase.cs: Added handling of middle-button paste for X11. (#78375)
8102 2006-05-15  Peter Dennis Bartok  <pbartok@novell.com>
8104         * Cursors.cs: For X11, read NWSE and NESW cursors from our resource
8105           file since there are no equivalent X11 cursors
8107 2006-05-15  Atsushi Enomoto  <atsushi@ximian.com>
8109         * MonthCalendar.cs : DateTimePicker should reflect selected date
8110           on mouse*up*, not mouse*down*. Fixed originally reported part of
8111           bug #76474.
8113 2006-05-15  Atsushi Enomoto  <atsushi@ximian.com>
8115         * TabControl.cs : When argument index is equal or more than tab
8116           count, just ignore. Fixed bug #78395.
8118 2006-05-15  Peter Dennis Bartok  <pbartok@novell.com>
8120         * Control.cs: Dispose all child controls when control is diposed (#78394)
8122 2006-05-14  Alexander Olk  <alex.olk@googlemail.com>
8124         * ColorDialog.cs: Finally it is possible to select the color with
8125           the text boxes
8127 2006-05-14  Alexander Olk  <alex.olk@googlemail.com>
8129         * PrintDialog.cs: Fix typo
8131 2006-05-14  Alexander Olk  <alex.olk@googlemail.com>
8133         * PrintDialog.cs: PrintDialog is not resizable
8134         * ThemeWin32Classic.cs: Draw non links in LinkLabel with the correct
8135           color. Made some ToolBar drawing methods protected virtual.
8137 2006-05-13  Jordi Mas i Hernandez <jordimash@gmail.com>
8139         * PrintDialog.cs: Implementation of the PrintDialog
8141 2006-05-12  Chris Toshok  <toshok@ximian.com>
8143         * ScrollBar.cs (set_Value): don't use Dirty/Invalidate to move the
8144         thumb, instead use MoveThumb.  This has the side effect of making
8145         most of the other thumb moving machinery use MoveThumb as well.
8146         (OnHandleCreated): pass false for @dirty to UpdateThumbPos, as we
8147         need to actually invalidate the rectangle where the new thumb will
8148         go.
8149         (MoveThumb): use XplatUI.ScrollWindow to move the thumb around.
8150         We force an Update() after, so it's not as fast as it could be,
8151         but at least there's zero flicker and no droppings.
8152         (OnMouseMoveSB): in the thumb dragging case, use MoveThumb.
8153         (UpdateThumbPos): add another argument (dirty), which says whether
8154         or not to calculate/add dirty regions which we later invalidate.
8155         For cases where we know we're going to use MoveThumb, we pass
8156         false for this.  Otherwise, pass true.
8158 2006-05-12  Jackson Harper  <jackson@ximian.com>
8160         * ThemeWin32Class.cs: Fixes for alignment and icon rendering in
8161         the status bar.
8162         
8163 2006-05-12  Peter Dennis Bartok  <pbartok@novell.com>
8165         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs: Added new SetClipRegion
8166           and GetClipRegion methods and UserClipWontExposeParent property.
8167         * XplatUIWin32.cs: Implemented SetClipRegion/GetClipRegion methods,
8168           overriding UserClipWontExposeParent property, setting to false, since
8169           Win32 handles the required expose messages to draw our clipped parent
8170           areas internally
8171         * XplatUIX11.cs: Implemented SetClipRegion and GetClipRegion; updated
8172           PaintEventStart to set the user clip region if set.
8173         * Control.cs: 
8174           - Now internally tracking the Region for the control since we need to
8175             store it if the handle is not yet created and only set it when it
8176             becomes created. Before setting the region forced handle creation
8177           - Added code to draw the parents underneath a user-clipped region
8178         * Hwnd.cs: Added UserClip property
8180 2006-05-12  Chris Toshok  <toshok@ximian.com>
8182         * ScrollBar.cs (set_LargeChange): Refresh() -> InvalidateDirty()
8183         (set_Maximum): same.
8184         (set_Minimum): same.
8185         (set_SmallChange): same.
8186         (OnMouseUpSB): remove the call to refresh when releasing the
8187         thumb.  We shouldn't need it.
8188         
8189 2006-05-12  Miguel de Icaza  <miguel@novell.com>
8191         * StatusBar.cs (UpdatePanel): If the panel being refreshes has the
8192         AutoSize set to None, we do not need to relayout everything, we
8193         just need to invalidate the current region.
8195         (Draw): Do not draw the entire ClientArea, just redraw the
8196         clip area being passed.
8198         * MdiClient.cs: Make MdiClient constructor with the Form argument
8199         internal. 
8201 2006-05-12  Jackson Harper  <jackson@ximian.com>
8203         * ThemeWin32Classic.cs (DrawToolBar): Flat toolbars get their
8204         parents background image,  but strangely not their own.
8205         - (DrawStatusBarPanel): Take into account horizontal alignment
8206         when drawing the strings and icons.
8208 2006-05-12  Mike Kestner  <mkestner@novell.com>
8210         * ListBox.cs: avoid invalidations for focus when the collection is
8211         empty. 
8213 2006-05-12  Chris Toshok  <toshok@ximian.com>
8215         * ScrollBar.cs (OnMouseMoveSB): when dragging the thumb, don't
8216         invalidate the entire thumb area.  Call InvalidateDirty which
8217         limits the redraw to the thumb itself and surrounding pixels.
8219         * XplatUIX11.cs (ScrollWindow): optimize copying.
8220         
8221 2006-05-12  Chris Toshok  <toshok@ximian.com>
8223         * DataGridDrawingLogic.cs: make CalcGridAreas non-reentrant.
8224         Figure out the positioning/layout in a single pass instead of
8225         multiple recursive invocations.  Speeds up the initial display of
8226         the data grid.  Also, make many things private that were
8227         originally public but unused outside this class.
8229 2006-05-11  Jackson Harper  <jackson@ximian.com>
8231         * MdiClient.cs: Improved layout code.
8233 2006-05-11  Jonathan Chambers  <jonathan.chambers@ansys.com>
8235         * PropertyGrid.cs : Only check GetPropertiesSupported for properties,
8236           not SelectedObject.
8238 2006-05-11  Chris Toshok  <toshok@ximian.com>
8240         * Hwnd.cs (Invalid): don't start off with Rectangle.Empty, as
8241         union of that will always be {0,0,width,height}.
8243 2006-05-11  Jackson Harper  <jackson@ximian.com>
8245         * Form.cs: Match MS's DefaultSize for forms (they must have
8246         changed the size in sp2).
8248 2006-05-11  Atsushi Enomoto  <atsushi@ximian.com>
8250         * TextBoxBase.cs : implement CTRL+A (select all). Fixed bug #78368.
8252 2006-05-11  Atsushi Enomoto  <atsushi@ximian.com>
8254         * TextControl.cs : Fixed bug #78109. This incorrect position
8255           comparison caused crash on automatic line split.
8256         * TextBoxBase.cs : reduce duplicate code.
8258 2006-05-10  Jackson Harper  <jackson@ximian.com>
8260         * MdiClient.cs: Active form is only sent to the back when using
8261         the Next form functionality, when a form is clicked the current
8262         active shouldn't be sent to the back.
8263         - Layout the mdi windows when the container is first made visible.
8264         * Form.cs: Give the MdiClient a ref to the containing form when we
8265         create it.
8266         
8267 2006-05-10  Atsushi Enomoto  <atsushi@ximian.com>
8269         * LinkLabel.cs : link_font could be uninitialized, so populate one
8270           before actual use. Fixed bug #78340.
8272 2006-05-10  Atsushi Enomoto  <atsushi@ximian.com>
8274         * XplatUIX11.cs : clipboard format native value is IntPtr.
8275           Fixed bug #78283.
8277 2006-05-10  Peter Dennis Bartok  <pbartok@novell.com>
8279         * Control.cs: 
8280           - Instead of showing context menus directly we send WM_CONTEXTMENU, 
8281             which is passed up the parent chain by DefWndProc
8282           - We now handle WM_CONTEXTMENU to display any menu, or pass it 
8283             to DefWndProc (#77956)
8284         * XplatUIX11.cs: Added handling of WM_CONTEXTMENU (pass up) to DefWndProc
8286 2006-05-10  Jackson Harper  <jackson@ximian.com>
8288         * MdiClient.cs: We need to remove the controls from the mdi
8289         collection, when we close the window.
8290         * MdiWindowManager.cs: Special handling of closing mdi windows.
8291         * InternalWindowManager.cs: Make the close method virtual so the
8292         mdi window manager can handle it specially.
8294 2006-05-10  Jordi Mas i Hernandez <jordimash@gmail.com>
8296         * DataGrid.cs:
8297           - Recalculate grid when the data source has changed
8298           - Matches styles provided by user from all data sources types
8299         * DataGridTableStyle.cs: For columns that provided by the user set the
8300         with the preferred value is there was unassigned.
8301         * CurrencyManager.cs: throw OnItemChanged event
8303 2006-05-10  Peter Dennis Bartok  <pbartok@novell.com> 
8305         * PictureBox.cs: Don't animate until handle is created. Start animation
8306           when handle is created.
8308 2006-05-10  Peter Dennis Bartok  <pbartok@novell.com>
8310         * XplatUIX11.cs, Hwnd.cs: Adopted Mike's patch from #77979 to match
8311           current codebase.
8312         * XEventQueue.cs: We don't need to provide the extra info
8314 2006-05-10  Jackson Harper  <jackson@ximian.com>
8316         * MdiClient.cs: If the mdi clients parent form has a background
8317         image set, we draw that background image for the mdi area's
8318         background.
8320 2006-05-10  Peter Dennis Bartok  <pbartok@novell.com>
8322         * TextBoxBase.cs: Set IBeam cursor (#78347)
8324 2006-05-10  Mike Kestner  <mkestner@novell.com>
8326         * ToolBar.cs: fix some text padding issues with ButtonSize
8327         calculation. Update the default size to match MS documentation.
8328         * ToolBarButton.cs: use ToolBar.ButtonSize for layout of unspecified
8329         button size. Fixes #78296.
8331 2006-05-10  Mike Kestner  <mkestner@novell.com>
8333         * ListBox.cs: use is_visible for scrollbar positioning in case the
8334         control isn't on screen yet.  Fix off by one with Right vs Width
8335         usage.  Update Scrollbars in SetBoundsCore. Fixes #78188 and #78258.
8336         
8337 2006-05-10  Jackson Harper  <jackson@ximian.com>
8339         * X11Dnd.cs: Drop to a control with another control on top of it.
8340         * ToolBar.cs: Work on a copy of the buttons list, so that it can
8341         be modified in click handlers. TODO: Look for similar problems in
8342         other controls.
8344 2006-05-09  Jackson Harper  <jackson@ximian.com>
8346         * Form.cs: Window managers need the old window state when setting
8347         window state now.
8348         * InternalWindowManager.cs: Allow the base mdi window manager to
8349         handle more of the MDI only stuff (like maximize buttons).
8350         * MdiWindowManager.cs: Fix some snafus in changing the window
8351         state.  Add all the menu functionality, for both popup and
8352         maximized menus.
8353         * MdiClient.cs: When a new form is selected the currently
8354         activated form is sent to the back, this matches MS.
8355         - Implement a new method to activate the next mdi child window.
8357 2006-05-08  Peter Dennis Bartok  <pbartok@novell.com>
8359         * Control.cs: 
8360           - Added new InternalCapture method to allow controls to prevent
8361             the capture behaviour on the click handlers
8362           - Switched to use InternalCapture
8363         * ComboBox.cs:
8364           - Using InternalCapture to prevent mouse captures from being released
8365             on mouse button release (Fixes #78100)
8366         * XplatUIX11.cs (DeriveStyles): Now checks caption state and only
8367           returns Form borders if a caption is present. (Fixes #78310)
8369 2006-05-08  Peter Dennis Bartok  <pbartok@novell.com> 
8371         * TreeNode.cs: Changed serialization .ctor to not require every field
8372           to be present. (#78265)
8373         * OwnerDrawPropertyBag.cs: Added serialization .ctor
8375 2006-05-05  Alexander Olk  <alex.olk@googlemail.com>
8377         * MimeIcon.cs: for is faster than foreach for strings.
8379 2006-05-05  Mike Kestner  <mkestner@novell.com>
8381         * CheckedListBox.cs: update check handling code to not use selected.
8382         * ListBox.cs: rewrite of mouse selection handling to correspond to MS
8383         behavior for visual feedback, motion response, shift/ctrl handling,
8384         and properly deal with all 4 selection modes. Updates to bounds
8385         handling logic.  Add scroll wheel support. [Fixes #77842]
8387 2006-05-05  Peter Dennis Bartok  <pbartok@novell.com> 
8389         * ListView.cs:
8390           - Moved adding of Implicit controls into .ctor. That way, subsequent
8391             creation of the controls will not cause them to think they are 
8392             toplevel windows (fixes #78200 header problem)
8393           - Added 2.0 ShowGroups and UseCompatibleStateImageBehaviour
8394           - Switched visibility setting of header control to use internal field
8395             to avoid triggering handle creation
8396           - Now checking if handle is created before causing a refresh when items
8397             are added (This makes us now match handle creation time with MS)
8398         * Splitter.cs: Removed loading of private splitter cursor, switched to
8399           Cursors version now that that is loading the right ones
8400         * Cursors.cs: Load proper splitter cursors from resources
8401         * Cursor.cs: Added second method of loading resource cursors for the 
8402           VS.Net users amongst us
8404 2006-05-05  Mike Kestner  <mkestner@novell.com>
8406         * ListView.cs: give header_control a minimum size based on the
8407         ListView size.
8409 2006-05-05  Peter Dennis Bartok  <pbartok@novell.com> 
8411         * XplatUIX11.cs: WS_EX_TOPMOST requires window to be on top. A dock
8412           window seems to do that with metacity, so set that type. (#78120)
8414 2006-05-05  Mike Kestner  <mkestner@novell.com>
8416         * ListViewItem.cs: fix Details mode checkbox layout bug.
8417         * ThemeWin32Classic.cs: draw a ListView column header for unused space
8418         at the end of the header, if it exists. [Fixes for #78200]
8420 2006-05-04  Jackson Harper  <jackson@ximian.com>
8422         * MdiClient.cs: Add a helper property to get the container form.
8423         * MdiWindowManager.cs: We have to make sure to use the menu origin
8424         when drawing the icons and buttons, this fixes maximized window
8425         icons/buttons on win32.
8426         * InternalWindowManager.cs: Reset the restore captions when a
8427         window goes from Maximized to Minimized and vice versa. Move the
8428         DrawMaximizedButtons into the MdiWindowManager source, tool
8429         windows can't be maximized. NOTE: This could use a little
8430         refactoring if time ever permits.
8431         
8432 2006-05-03  Jonathan Chambers  <jonathan.chambers@ansys.com>
8434         * TextBox.cs: Add MWFCategoryAttributes
8435         * TextBoxBase.cs: Add MWFCategoryAttributes
8436         * Form.cs: Add MWFCategoryAttributes
8438 2006-05-03  Jonathan Chambers  <jonathan.chambers@ansys.com>
8440         * Control.cs: Add MWFCategoryAttributes
8441         * ScrollableControl.cs: Add MWFCategoryAttributes
8443 2006-05-03  Alexander Olk  <alex.olk@googlemail.com>
8445         * ThemeWin32Classic.cs: Draw the ToolBar top border only if
8446           Divider is true. Fix a little glitch in PropertyToolBar
8447           drawing code
8449 2006-05-02  Peter Dennis Bartok  <pbartok@novell.com> 
8451         * Control.cs:
8452           - Dispose: Call base.Dispose, this causes the disposed event
8453             to be fired (and probably other, more important stuff)
8454           - SetVisibleCore: Set is_visible to true after creating the
8455             window so that the window still gets created invisible (if
8456             WM_VISIBLE isn't set). That will cause the ShowWindow afterwards
8457             to generate a WM_ACTIVE message
8458         * Form.cs: Call Dispose when we want to destroy the window, instead of
8459           just destroying the handle (Dispose will do that for us)
8460         * XplatUIX11.cs:
8461           - RootWindow also needs a queue, so we can properly process the
8462             property change events from RootWindow (like Activate)
8463           - Generatic synthetic WM_ACTIVE message when the active window is
8464             being destroyed
8466 2006-05-01  Peter Dennis Bartok  <pbartok@novell.com> 
8468         * LinkLabel.cs: Trigger a recalc of our label dimensions when
8469           bounds are changed
8471 2006-05-01  Peter Dennis Bartok  <pbartok@novell.com>
8473         * ThemeWin32Classic.cs (ButtonBase_DrawImage): Use the proper image
8474           for determining width and height (image might not be assigned if
8475           we're drawing an imagelist)
8477 2006-05-01  Peter Dennis Bartok  <pbartok@novell.com> 
8479         * XplatUI.cs, XplatUIDriver.cs: Added MenuHeight property
8480         * XplatUIWin32.cs: Overriding new MenuHeight property, retrieving
8481           height from system
8482         * Theme.cs: No longer returns hardcoded menu height, instead calls
8483           new driver method
8484         * Form.cs (OnLoad): Scaling happens before triggering Load events 
8485           on MS (# 78257)
8487 2006-05-01  Mike Kestner  <mkestner@novell.com>
8489         * MenuItem.cs: fix NRE for text == null.  Fixes #78250.
8491 2006-04-30  Peter Dennis Bartok  <pbartok@novell.com> 
8493         * TextBoxBase.cs: Removed Fixme
8494         * RichTextBox.cs (set_RTF): Invalidate document after update (#78247)
8496 2006-04-30  Peter Dennis Bartok  <pbartok@novell.com>
8498         * XplatUIX11.cs:
8499           - ScrollWindow: We were passing hwnd.ClientRectangle which returns
8500             the rectangle relative to the parent, considering borders. We
8501             don't really want that.
8502           - ScrollWindow: Fixed warning to be more understandable
8503         * TextBoxBase.cs: Fixed ScrollWindow calculations to consider our
8504           scrollbars and scroll only the visible area
8505         * RichTextBox.cs: Removed debug output
8507 2006-04-29  Peter Dennis Bartok  <pbartok@novell.com>
8509         * NumericUpDown.cs (Text): Just use base
8510         * UpDownBase.cs: Ensure txtView is created before using it
8512 2006-04-29  Peter Dennis Bartok  <pbartok@novell.com> 
8514         * XplatUIX11.cs (SetWindowTransparency): Casting opacity to int before
8515           casting to IntPtr to avoid 64bit overflow errors
8517 2006-04-29  Peter Dennis Bartok  <pbartok@novell.com>
8519         * Control.cs:
8520           - AllowDrop: Don't force handle creation.
8521           - CreateHandle: Added call to tell driver if we're allowed to drop
8523 2006-04-27  Alexander Olk  <alex.olk@googlemail.com>
8525         * FileDialog.cs: Remember the last directory not only for the
8526           current instance but also for new FileDialog instances.
8528 2006-04-29  Peter Dennis Bartok  <pbartok@novell.com> 
8529         
8530         * XplatUIX11.cs: Forgot to set the queue on the foster parent. That
8531           broke sending async messages
8533 2006-04-29  Peter Dennis Bartok  <pbartok@novell.com>
8535         * XplatUIX11.cs:
8536           - ScrollWindow: Fixed method. We finally generate expose events again
8537             for scrolled areas. This was causing 'garbage' when scrolling
8538             textbox and other controls that used ScrollWindow
8539           - Switched from using the regular queue for paint events to the MS 
8540             model of 'generating' paint events when the queue is empty.
8541             We use the new XQueueEvent.Paint subclass to store which windows
8542             need painting.
8543           - AddExpose now takes the x/y/width/height of the exposed area
8544             and inserts the window into the paint queue if not already there
8545           - InvalidateWholeWindow: Switched to use new AddExpose method
8546           - UpdateMessageQueue: Added which queue to monitor for paint events
8547           - DefWndProc: Added default handler for WM_PAINT and WM_NCPAINT in
8548             the unlikely case nothing above handles it. We reset the expose
8549             pending states to get them off the queue.
8550           - GetMessage: Now pulls a paint event if no other events are in the
8551             queue
8552           - Invalidate: Switched to new AddExpose method
8553           - PeekMessage: Updated to understand pending paint events
8554           - UpdateWindow: Fixed logic bug. We were only updating if the window
8555             didn't need updating. Also switched to sending WM_PAINT directly,
8556             like MS does.
8557         * XEventQueue.cs: Added Paint queue support. Allows enqueue/dequeue
8558           and random access Remove(). The random access is needed to handle
8559           UpdateWindow() where a WM_PAINT is sent directly without accessing
8560           the queue.
8561         * ScrollBar.cs: Added Update() calls to cause immediate updates to
8562           allow for better feedback when scrolling. Scrollbars are small and
8563           the immediate update should make it 'feel' more responsive without
8564           slowing things down. ScrollBar still needs it's invaliate logic
8565           updated to not always invalidate the whole bar on certain changes.
8567 2006-04-28 Gonzalo Paniagua Javier <gonzalo@ximian.com>
8569         * Control.cs:
8570         (BackColor): if the control does not support a transparent background,
8571         return the default backcolor when the parent backcolor is transparent.
8573 2006-04-28  Peter Dennis Bartok  <pbartok@novell.com>
8575         * Application.cs: Updated to new StartLoop/GetMessage API
8576         * RichTextBox.cs: Provide some output on RTF parsing errors
8577         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs, XplatUIWin32.cs: Added
8578           new queue_id argument to GetMessage and PeekMessage to allow faster
8579           handling of per-thread queues in drivers.
8580         * Hwnd.cs: Added Queue tracking and property
8581         * MenuAPI.cs: Updated to new StartLoop/GetMessage API
8582         * XEventQueue.cs: Added thread trackingA
8583         * PropertyGridView.cs: Updated to new StartLoop/GetMessage API
8584         * XplatUIX11.cs:
8585           - Implemented new per-thread queue
8586           - GetMessage: Fixed return/break behaviour on several cases. We were
8587             returning stale messages in some cases, instead of just processing
8588             the next message
8590 2006-04-27  Jonathan Chambers  <jonathan.chambers@ansys.com>
8592         * PropertyGrid.cs: Call GetPropertiesSupported on TypeConverter.
8594 2006-04-27  Peter Dennis Bartok  <pbartok@novell.com>
8596         * ThemeWin32Classic.cs (DrawToolBar): Refactored, simplified the logic,
8597           fixed off-by-one comparisons between Width/Height and Right/Bottom.
8599 2006-04-27  Jonathan Chambers  <jonathan.chambers@ansys.com>
8601         * PropertyGridView.cs: Fix drop down width.
8603 2006-04-27  Alexander Olk  <alex.olk@googlemail.com>
8605         * ThemeWin32Classic.cs: Peter thinks that three additional lines are
8606           a mess in DrawToolBar, so I removed one of them.
8608 2006-04-27  Alexander Olk  <alex.olk@googlemail.com>
8610         * ThemeWin32Classic.cs: Draw the ToolBar border lines only if
8611           needed (clip). Otherwise we get artifacts.
8613 2006-04-26  Peter Dennis Bartok  <pbartok@novell.com>
8615         * FixedSizeTextBox.cs: Added constructor to allow specifying which
8616           dimension is fixed
8617         * UpDownBase.cs: Set the spinner control to be fixed height vertical,
8618           and switched FixedSizeTextBox to only be fixed vertical (#78116)
8619         * Form.cs: Not applying the 'MS 0.08 fudge factor' for a given dimension
8620           if it matches the scale base font (avoids unneeded scaling)
8622 2006-04-26  Alexander Olk  <alex.olk@googlemail.com>
8624         * X11DesktopColors.cs: One gtk_init_check should be enough
8626 2006-04-26  Peter Dennis Bartok  <pbartok@novell.com> 
8628         * TextBoxBase.cs: Moved Backspace handling into WM_CHAR block to
8629           match MS behaviour
8631 2006-04-26  Peter Dennis Bartok  <pbartok@novell.com>
8633         * TextBoxBase.cs: 
8634           - Generate OnTextChanged for Backspace even if we're only deleting
8635             the current selection
8636           - When setting the Text property, only select all text if the
8637             control does not have focus when it is being set. Otherwise
8638             just place the cursor at the beginning of the control
8640 2006-04-26  Alexander Olk  <alex.olk@googlemail.com>
8642         * ThemeWin32Classic.cs: ToolBars get drawn with two lines at the top.
8643           Added a little helper to draw PropertyGrid ToolBar with a different
8644           border and a different BackColor.
8645         * PropertyGrid.cs: Some background parts didn't get painted with the
8646           correct background color. Added a class that helps us to draw the
8647           correct border for PropertyGridView and a class that helps us to
8648           draw ToolBars with a different backcolor
8649         * PropertyGridView.cs: Draw PlusMinus with the correct colors.
8651 2006-04-25  Jonathan Chambers  <jonathan.chambers@ansys.com>
8653         * PropertyGrid.cs: Bug 78196, font size, and splitter location.
8654         * PropertyGridView.cs: Bug 78196, font size, and splitter location.
8656 2006-04-25  Peter Dennis Bartok  <pbartok@novell.com> 
8658         * XplatUIWin32.cs (DIBtoImage): ORing instead of ANDing the alpha
8659           into the palette entries. Also, since we're working on a copy
8660           we needed to copy the palette back onto the bitmap.
8661         * Cursor.cs: Same fix as XplatUIWin32.cs.
8663 2006-04-25  Peter Dennis Bartok  <pbartok@novell.com>
8665         * ImageListStreamer.cs: Need to read the var (or we're off)
8667 2006-04-25  Peter Dennis Bartok  <pbartok@novell.com> 
8669         * TextControl.cs, ComboBox.cs, CommonDialog.cs, Theme.cs, 
8670           XplatUIWin32.cs, RichTextBox.cs, ImageListStreamer.cs,
8671           TextBoxBase.cs: Unused var fixes
8672         * AxHost.cs: Small 2.0 fix
8673         * XplatUIX11.cs: Switched to IntPtr from int for XA_CARDINAL atoms 
8674           as it seems that is what at least Metacity expects. This will make
8675           icons show up on 64bit platforms. We still have some 64bit size
8676           issues, though, since the startup app window size still won't match.
8678 2006-04-25  Mike Kestner  <mkestner@novell.com>
8680         * *.cs: cleanup newly reported exception var unused warnings.
8682 2006-04-25  Alexander Olk  <alex.olk@googlemail.com>
8684         * ThemeWin32Classic.cs: Button image alignment now matches exactly
8685           ms
8687 2006-04-25  Alexander Olk  <alex.olk@googlemail.com>
8689         * ThemeWin32Classic.cs: Fixed drawing code for buttons with an
8690           image. The image position is always the same, no matter if the
8691           button is pressed or not.
8693 2006-04-25  Alexander Olk  <alex.olk@googlemail.com>
8695         * FileDialog.cs: SaveFileDialog shouldn't rely on a MWFFileView
8696           selection and set the correct filename for SaveFileDialog.
8697           Patch by Emery Conrad.
8699 2006-04-24  Mike Kestner  <mkestner@novell.com>
8701         * ListView.cs (LastVisibleIndex): when in List mode of Alignment.Left,
8702         check for item.X outside the ClientRect instead of item.Y. Fixes
8703         #78151.
8705 2006-04-21 Gonzalo Paniagua Javier <gonzalo@ximian.com>
8707         * ImageListStreamer.cs: some images store a wrong grow factor, so don't
8708         trust that value blindly and do some sanity check. Fixes bug #77814.
8710 2006-04-21 Gonzalo Paniagua Javier <gonzalo@ximian.com>
8712         * ImageListStreamer.cs: save the mask as a 1bpp image.
8714 2006-04-21  Mike Kestner  <mkestner@novell.com>
8716         * CheckedListBox.cs: maintain CheckStatus here. Use DrawItemState to
8717         pass Checked and Indeterminate to the Theme Engine. Improve
8718         encapsulation with ListBox.
8719         * ListBox.cs: Keep a StringFormat instead of calculating it every item
8720         draw. Kill ListBoxItem. Refactor away the ListBoxInfo and ListBoxItem
8721         nested types.  Move all CheckState functionality to CheckedListBox.
8722         Make IntegralHeight work like MS.  Rewrite of Layout engine.  Fix
8723         OwnerDrawVariable layout/rendering.  Fix multicolumn rendering.  Fix
8724         ScrollAlwaysVisible handling. Refactor "selected" collections to use a
8725         single base list. Fix scrollbar sizing and placement to mirror MS.
8726         * Theme.cs: remove CheckedListBoxCheckRectangle. It wasn't really
8727         used.
8728         * ThemeWin32Classic.cs: implement Indeterminate CheckState rendering
8729         for CheckedListBox by using new DrawItemState info.  Center the
8730         checkboxes on the items. Use new StringFormat property.
8732 2006-04-18  Jackson Harper  <jackson@ximian.com>
8734         * Form.cs: MdiChildren don't do default locations the same way as
8735         regular forms.  This prevents a crash when trying to position the
8736         mdi windows.
8738 2006-04-17  Jonathan Chambers  <jonathan.chambers@ansys.com>
8740         * PropertyGridTextBox.cs: Formatting, copyright
8741         * PropertiesTab.cs: Formatting
8742         * PropertyGrid.cs: Formatting
8743         * PropertyGridView.cs: Formatting, fix drop down, enabled double 
8744           click toggling of values
8745           
8746 2006-04-17  Peter Dennis Bartok  <pbartok@novell.com> 
8748         * KeyPressEventArgs: Added 2.0 only setter for KeyChar
8749         * Control.cs (.ctor): verify_thread_handle is static, don't reset
8750           every time a control is created
8751         * Application.cs: Removed obsolete EnableRTLMirroring method
8753 2006-04-18  Gert Driesen  <drieseng@users.sourceforge.net>
8755         * TabControl.cs: Avoid ArgumentOutOfRangeException when setting
8756         SelectedIndex to -1. Fixes bug #78121.
8758 2006-04-17  Jackson Harper  <jackson@ximian.com>
8760         * Binding.cs: Handle null values for Current and BindingContext.
8761         This occurs when binding is a little delayed.
8762         * CurrencyManager.cs: return null for Current when there are no
8763         items in the list.
8764         - Hookup to the listchanged event on the DataView and update
8765         bindings when the list is changed.  This fixes late binding of
8766         controls.
8768 2006-04-17  Jackson Harper  <jackson@ximian.com>
8770         * X11Dnd.cs:
8771         * XplatUIX11.cs: Drops should not create a mousedown. Patch by Tim
8772         Ringenbach.
8774 2006-04-15  Alexander Olk  <alex.olk@googlemail.com>
8776         * ThemeWin32Classic.cs: Draw disabled combo button in the correct
8777           place
8778         * ComboBox.cs: If the combobox is disabled call CPDrawComboButton
8779           with the correct ButtonState
8781 2006-04-14  Peter Dennis Bartok  <pbartok@novell.com>
8783         * XplatUIX11.cs: Improved distinguishing between window types to
8784           tell the WM a type closer to what the app wants (Fixes #78107)
8786 2006-04-14  Alexander Olk  <alex.olk@googlemail.com>
8788         * ThemeWin32Classic.cs: Fixed drawing of ContainerGrabHandle and
8789           GrabHandle
8791 2006-04-14  Alexander Olk  <alex.olk@googlemail.com>
8793         * ThemeWin32Classic.cs: Fixed size grip drawing and updated StatusBar
8794           drawing code to reflect the size grip changes
8796 2006-04-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
8798         * ImageListStreamer.cs: fix handling of the mask that follows the main
8799         bitmap when deserializing and serialize it properly. The generated mask
8800         should better be a 1bpp image, but I'll do that later.
8802 2006-04-13  Alexander Olk  <alex.olk@googlemail.com>
8804         * FileDialog.cs: Show something in the DirComboBox on *nix if the
8805           path doesn't fit into some of our Current.Places
8807 2006-04-13  Jackson Harper  <jackson@ximian.com>
8809         * ComboBox.cs: Use borders instead of drawing our own decorations,
8810         try to obey correct rules for heights.
8811         * Theme.cs:
8812         * ThemeNice.cs:
8813         * ThemeClearLooks.cs:
8814         * ThemeWin32Classic.cs: Remove combobox decoration drawing code,
8815         this is now handled by borders.
8816         - Remove unused DrawListBoxDecorationSize method.
8817         
8818 2006-04-13  Mike Kestner  <mkestner@novell.com>
8820         * MenuAPI.cs: null guarding for the disbled click check fixes crash
8821         reported by Alex.
8823 2006-04-13  Alexander Olk  <alex.olk@googlemail.com>
8825         * ThemeWin32Classic.cs: 
8826           - Fixed CPDrawStringDisabled
8827           - Corrected drawing of disabled menu items
8828           - Fixed drawing of disabled radio buttons (bug #78095)
8829           - Draw check in a disabled CheckBox with color ControlDark 
8831 2006-04-12  Peter Dennis Bartok  <pbartok@novell.com>
8833         * Form.cs: Use the provided width when calculating the menu size;
8834           when being maximized we get WM_NCCALCSIZE before WM_WINDOWPOSCHANGED
8835           and ClientSize.Width won't be updated yet
8836         * Application.cs: Use Visible instead of Show() to make form visible,
8837           this way we create the handle later and menusize is considered
8839 2006-04-12  Mike Kestner  <mkestner@novell.com>
8841         * MenuAPI.cs: ignore clicks on disabled menu items. Thanks to Alex for
8842         reporting.
8844 2006-04-12  Peter Dennis Bartok  <pbartok@novell.com>
8846         * TextBox.cs: Implemented context menu
8848 2006-04-12  Mike Kestner  <mkestner@novell.com>
8850         * ListView.cs: implement box selection. fixes #77838.
8851         * ThemeWin32Classic.cs: draw box select rect, remove a ResetClip.
8853 2006-04-12  Peter Dennis Bartok  <pbartok@novell.com> 
8855         * XplatUIX11.cs: Added setting of window type when transient window
8856           is created (metacity would move it otherwise)
8857         * X11Structs.cs: Added WINDOW_TYPE atoms
8858         * LinkLabel.cs: Override OnPaintBackgroundInternal and draw the
8859           background (the control is Opaque but still wants transparent
8860           backgrounds)
8862 2006-04-12  Peter Dennis Bartok  <pbartok@novell.com>
8864         * Control.cs: Added OnPaintBackgroundInternal to allow controls
8865           that set Opaque but don't mean it (like all ButtonBase-derived
8866           controls) to still draw their background
8867         * ButtonBase.cs: Override OnPaintBackgroundInternal and draw
8868           the background
8870 2006-04-12  Peter Dennis Bartok  <pbartok@novell.com> 
8872         * Control.cs (PaintControlBackground): Set the graphics object
8873           on our PaintEvent to null to prevent it from being disposed
8874           when the PaintEvent gets disposed
8876 2006-04-12  Alexander Olk  <alex.olk@googlemail.com>
8878         * ThemeWin32Classic.cs: Use even more SystemBrushes and SystemPens
8879         * ThemeNice.cs, ThemeClearlooks.cs: fix typo
8881 2006-04-12  Peter Dennis Bartok  <pbartok@novell.com>
8883         * Control.cs: 
8884           - Added transparency check to BackColor property. Transparent
8885             backgrounds are only allowed if the control styles permit it
8886           - Added recursive painting of parent control background and
8887             foreground if a control with a transparent backcolor is drawn
8888             (Thanks to Tim Ringenback for providing his 'hack' as a base
8889              for this patch) Fixes #77985 and #78026.
8890           - Added Opaque style check before calling OnPaintBackground, no
8891             need to draw the background if the control is opaque
8892           - Removed ControlAccessibleObject owner variable (inherited from
8893             base, no need to define again)
8894           - Added some documentation links explaining the drawing events
8895             and styles
8897 2006-04-11  Peter Dennis Bartok  <pbartok@novell.com> 
8899         * Splitter.cs (CalculateSplitPosition): Corrected the bad assumption
8900           that the affected control is the located at the left border of our
8901           parent (Fixes #77936)
8903 2006-04-11  Peter Dennis Bartok  <pbartok@novell.com>
8905         * TextBoxBase.cs: When rendering disabled or readonly controls,
8906           draw the background with 'Control' instead of 'Window' color as
8907           long as the user hasn't specifically set a color
8909 2006-04-11  Peter Dennis Bartok  <pbartok@novell.com> 
8911         * TextBoxBase.cs: Don't try to shortcut by checking against base.Text
8912           since that won't be updated if the user types text (only if it's
8913           programatically set)
8915 2006-04-11  Peter Dennis Bartok  <pbartok@novell.com>
8917         * ScrollableControl.cs: Calculate DisplayRect dynamically, so that
8918           layout changes do to app-triggered resizes will have the proper
8919           display rectangle for layout
8921 2006-04-11  Alexander Olk  <alex.olk@googlemail.com>
8923         * ThemeWin32Classic.cs:
8924           - Make use of the SystemBrushes and SystemPens wherever possible
8925           - Corrected some highlight colors
8926           - Corrected RadioButton and CheckBox FlatStyle.Flat and Popup
8927             drawing
8928         * Theme.cs: Added Empty field to CPColor struct
8930 2006-04-11  Peter Dennis Bartok  <pbartok@novell.com>
8932         * ScrollabeControl.cs: We need to consider whether or not a scrollbar
8933           is displayed when calculating the display rectangle. Thanks to Mike
8934           for teaching me the err of my ways.
8936 2006-04-10  Peter Dennis Bartok  <pbartok@novell.com>
8938         * ScrollableControl.cs:
8939           - Rewrote DisplayRectangle code, now returning the proper x/y coords 
8940             (instead of 0,0) and we now return the real width/height instead of
8941             just the clientrectangle, adjusted for padding. The rectangle is
8942             now cached and created by the new CalculateDisplayRectangle method.
8943           - Created new CalculateDisplayRectange method, which basically does
8944             what get_DisplayRectangle() did originally, but now using the 
8945             right edge instead of DisplayRectangle to determine the size of
8946             our scrollbars
8947           - get_Canvas(): Fixed it to properly calculate canvas for 
8948             right/bottom controls which seem to be placed to the right/bottom
8949             of any controls that have a fixed location
8950           - Removed TODO that's taken care of
8951           - Removed NotImplementeds and attempted to implement AdjustFormScrollBars
8952             and SetDisplayRectLocation according to new MSDN2 docs
8953           - Added call to PerformLayout in OnVisibleChanged, MS causes a layout
8954             event when that is called, this is added for compatibility
8955           - ScrollControlIntoView(): Implemented.
8956           - Switched scrollbars to be implicit, they shouldn't be selectable
8957         * ContainerControl: Now that ScrollControlIntoView is implemented, we 
8958           call it when the active control is set/changed
8959         * ScrollBar.cs: Added support for generating Win32 scrollbar messages
8960         * ImplicitHScrollBar.cs, ImplicitVScrollBar.cs: Now setting new base
8961           implicit_control variable (used for native Win32 message generation)
8962         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs: Added new 
8963           HorizontalScrollBarHeight and VerticalScrollBarWidth properties
8964         * ThemeWin32Classic.cs: Now calling the driver for the scrollbar sizes
8965         * XplatUIStructs.cs: Added ScrollBarCommands enum
8967 2006-04-10  Jackson Harper  <jackson@ximian.com>
8969         * ButtonBase.cs:
8970         * CheckedListBox.cs:
8971         * ComboBox.cs:
8972         * DataGrid.cs:
8973         * DataGridView.cs:
8974         * Form.cs:
8975         * GroupBox.cs:
8976         * ListBox.cs:
8977         * PrintPreviewControl.cs:
8978         * ProgressBar.cs:
8979         * PropertyGrid.cs:
8980         * Splitter.cs:
8981         * StatusBar.cs:
8982         * TrackBar.cs:
8983         * UpDownBase.cs: Fixup base event overrides.
8984         
8985 2006-04-06  Mike Kestner  <mkestner@novell.com>
8987         * ScrollBar.cs: fix "new event" declarations (#76509) and bounds check
8988         all user-initiated value changes to min <= value <= max-thumbsz+1.
8989         (set_Value): check for vert/horiz when calculating new thumb position.
8990         (LargeIncrement): bounds check to stop pos at max - thumb_size + 1
8991         like MS does.
8992         (OnMouseMoveSB): refactor the thumb dragging code and refine
8993         invalidation logic to reduce flicker.
8994         (SetEndPosition): bounds check to stop pos at max - thumb_size + 1
8995         (SmallIncrement): bounds check to stop pos at max - thumb_size + 1
8996         (UpdateThumbPosition): small code readability cleanup
8998 2006-04-10  Alexander Olk  <alex.olk@googlemail.com>
9000         * ThemeNice.cs: Small UI polishing. Draw borders a little bit
9001           different
9003 2006-04-08  Alexander Olk  <alex.olk@googlemail.com>
9005         * ThemeNice.cs: Use a better graphics effect when a button is pressed
9007 2006-04-08  Alexander Olk  <alex.olk@googlemail.com>
9009         * Theme.cs: Added GetDashPen and GetSizedPen to SystemResPool
9010         * ThemeWin32Classic.cs: Make use of the new SystemResPool methods.
9011           This dramatically reduces the number of Pen.Dispose calls. 
9012           Where possible call ResPool methods only once instead of calling it
9013           over and over again (for example for the same color).
9015 2006-04-06  Mike Kestner  <mkestner@novell.com>
9017         * TabControl.cs: fix for SelectedIndex updating on TabPage removals.
9018         Also remove an unused private field on the collection. Fixes #77972.
9020 2006-04-06  Alexander Olk  <alex.olk@googlemail.com>
9022         * ThemeNice.cs: Added ToolBar drawing code
9024 2006-04-06  Mike Kestner  <mkestner@novell.com>
9026         * Form.cs (ShowDialog): MS allows IWin32Window param to be a non-form.
9027         I'm assuming that means we need to look up the toplevel for the
9028         provided control. Fixes the crash trace in #77911 but exposes another
9029         crash in some strange reflection usage in NDocGui.
9031 2006-04-06  Alexander Olk  <alex.olk@googlemail.com>
9033         * ThemeNice.cs: Gave it a little silver touch and added Images
9034           method
9035         * FontDialog.cs: FontDialog is not resizable
9036         * FileDialg.cs: Added SizeGripStyle.Show
9038 2006-04-05  Jackson Harper  <jackson@ximian.com>
9040         * KeyboardLayouts.cs: Remove warning.
9042 2006-04-05  Jackson Harper  <jackson@ximian.com>
9044         * Control.cs: Enable OnPaintInternal so we can use it for drawing
9045         all of our controls instead of Paint +=.
9046         * ListBox.cs:
9047         * ListView.cs:
9048         * MenuAPI.cs:
9049         * MessageBox.cs:
9050         * NotifyIcon.cs:
9051         * ProgressBar.cs:
9052         * ScrollBar.cs:
9053         * Splitter.cs:
9054         * StatusBar.cs:
9055         * TabControl.cs:
9056         * TextBoxBase.cs:
9057         * ToolBar.cs:
9058         * TrackBar.cs:
9059         * UpDownBase.cs:
9060         * ComboBox.cs: Remove handling of WM_PAINT and WM_ERASEBKGND and
9061         use OnPaintInternal. Remove Width/Height and Visible checks in
9062         paint handler, this is done at a higher level now.
9063         * GroupBox.cs: Don't need to handle WM_ERASEBKGND anymore.
9064         * PaintEventArgs.cs: Add a handled flag so controls that don't
9065         want anymore painting after OnPaintInternal can make sure OnPaint
9066         isn't called.
9068 2006-04-05  Mike Kestner  <mkestner@novell.com>
9070         * Form.cs: fix the menu WndProc hacks to respect the native enabled
9071         state of the form, so that we don't process events when Modal dialogs
9072         are up. Fixes #77922.
9074 2006-04-05  Alexander Olk  <alex.olk@googlemail.com>
9076         * Mime.cs: Default for range length is 1 not 0. If set to 0 no match
9077           checking is done.
9079 2006-04-05  Mike Kestner  <mkestner@novell.com>
9081         * XplatUIX11.cs: fix typo in the EX_APPWINDOW transient patch.
9083 2006-04-05  Mike Kestner  <mkestner@novell.com>
9085         * ListView.cs (HeaderMouseMove): null guarding for the over column
9086         when setting up the drag_to_index.  Fixes #78015.
9088 2006-04-04  Peter Dennis Bartok  <pbartok@novell.com>
9090         * XplatUIX11.cs: If WS_EX_APPWINDOW isn't set we don't want to show up
9091           in the taskbar. Transient windows seem to accomplish that.
9093 2006-04-04  Peter Dennis Bartok  <pbartok@novell.com> 
9095         * Form.cs:
9096           - Re-enabled CreateParams.X/Y code for FormStartPosition
9097           - Added code for manual placement when creating the Control
9098           - Incomplete patch to treat MDI forms differently when
9099             setting the ClientSizeCore. (Still need to figure out handling
9100             x/y coords there)
9101         * XplatUIX11.cs:
9102           - When we're explicitly setting the X/Y position of a non-Child
9103             window, let the WM know. Metacity really wants this.
9105 2006-04-04  Alexander Olk  <alex.olk@googlemail.com>
9107         * ThemeNice.cs: Added CPDrawButton
9109 2006-04-04  Alexander Olk  <alex.olk@googlemail.com>
9111         * ThemeNice.cs: Changed the color for focused buttons and activated
9112           the arrows for small scroll buttons.
9114 2006-04-04  Alexander Olk  <alex.olk@googlemail.com>
9116         * ThemeWin32Classic.cs: Removed DrawFlatStyleButton, not needed
9117           anymore. Changed some method modifiers to protected (virtual)
9118         * ThemeClearlooks.cs: Updated to reflect the ThemeWin32Classic
9119           changes
9120         * ThemeNice.cs: Updated to reflect the ThemeWin32Classic changes.
9121           Updated drawing of menus, buttons and progressbars; added
9122           CPDrawBorder3D 
9124 2006-04-03 Gonzalo Paniagua Javier <gonzalo@ximian.com>
9126         * ImageListStreamer.cs: implemented serialization/deserialization
9127         of the images.
9129 2006-04-03  Alexander Olk  <alex.olk@googlemail.com>
9131         * ThemeWin32Classic.cs:
9132           - Removed all the DrawFrameControl stuff; CPDrawButton,
9133             CPDrawCheckBox and CPDrawRadioButton are now handled directly
9134             inside the methods
9135           - Updated and corrected the drawing code of CPDrawButton,
9136             CPDrawCheckBox and CPDrawRadioButton to better match ms
9137           - Updated theme checkbox and radiobutton code to use the CP*
9138             methods
9140 2006-03-31  Peter Dennis Bartok  <pbartok@novell.com> 
9142         * XplatUIX11.cs: Enable clipping again now that the libgdiplus
9143           bug is fixed
9145 2006-03-31  Jackson Harper  <jackson@ximian.com>
9147         * XplatUIX11.cs: Somehow we get SETCURSORS for bad windows
9148         sometimes.
9149         * UpDownBase.cs: Don't CreateGraphics manually, use a
9150         Refresh. Ideally we would invalidate the correct areas here.
9152 2006-03-31  Peter Dennis Bartok  <pbartok@novell.com> 
9154         * XplatUIX11.cs: 
9155           - We now track the mapping state of windows. If a window (or 
9156             one of it's parents) is not mapped we no longer permit
9157             WM_PAINT messages to be generated since we'd otherwise get 
9158             lots of BadMatch X errors. Jackson did all the work figuring
9159             out the problem.
9160           - Destroying the caret if the window it's contained in is 
9161             destroyed. Can't use regular DestroyCaret method since it
9162             might fall into a drawing function (trying to remove the
9163             caret) and with that generate new BadMatch errors. Again,
9164             Jackson tracked this down.
9165           - Changed DestroyChildWindows to SendWMDestroyMessages, we now
9166             make sure we send the messages to all windows. (The old code
9167             would send the WM_DESTROY to the window, and then all child
9168             windows would be 'gone' because the WM_DESTROY handle lookup
9169             would no longer find the destroyed window)
9170         * Hwnd.cs: Added Mapping property to track mapping state of hwnd
9171         * X11Structs.cs: Added WindowType enum for MapWindow/UnmapWindow
9173 2006-03-31  Jackson Harper  <jackson@ximian.com>
9175         * ScrollableControl.cs: Dont recalc if we are not visible.
9177 2006-03-31  Mike Kestner  <mkestner@novell.com>
9179         * Control.cs (SetVisibleCore): move the CreateControl call up ahead of
9180         the visibility branch.
9182 2006-03-31  Jackson Harper  <jackson@ximian.com>
9184         * ScrollBar.cs: Cap values when incrementing/decrementing.
9186 2006-03-31  Mike Kestner  <mkestner@novell.com>
9188         * MenuAPI.cs: setup menu.tracker for popup/context menus.
9189         * ToolTip.cs: guard against timer expirations with no active control.
9190         Not sure why it happened.
9192 2006-03-31  Mike Kestner  <mkestner@novell.com>
9194         * ThemeWin32Classic.cs: add some horizontal padding space for the tip
9195         text.
9196         * ToolTip.cs: Position the tooltip based on where the cursor is at
9197         popup time, not at MouseEnter time.  Add a Down state so that we don't
9198         redisplay tips without a Leave. Use faked XplatUI.GetCursorInfo for
9199         positioning offset. Lookup DisplaySize at positioning time, since it
9200         can theoretically change during invocation.
9201         * XplatUIWin32.cs: fake GetCursorInfo until pdb can do it properly.
9202         * XplatUIX11.cs: fake GetCursorInfo until pdb can do it properly.
9204 2006-03-31  Alexander Olk  <alex.olk@googlemail.com>
9206         * ThemeWin32Classic.cs: Use CPDrawBorder3D to draw a GroupBox.
9207           Fixes behaviour when the Text property of the box is String.Empty
9209 2006-03-31  Peter Dennis Bartok  <pbartok@novell.com>
9211         * XplatUIX11.cs: Only send mouseleave for our client windows, not
9212           for the whole window (otherwise we get WM_MOUSE_LEAVE twice for
9213           a window)
9215 2006-03-31  Alexander Olk  <alex.olk@googlemail.com>
9217         * FileDialog.cs: Visual enhancement for the popup buttons in 
9218           PopupButtonPanel
9220 2006-03-31  Alexander Olk  <alex.olk@googlemail.com>
9222         * ColorDialog.cs, FontDialog.cs: Make use of the updated 3D border
9223           code
9225 2006-03-30  Alexander Olk  <alex.olk@googlemail.com>
9227         * ThemeWin32Classic.cs: Updated MainMenu drawing of selected and
9228           highlighted menu items to match ms
9230 2006-03-30  Peter Dennis Bartok  <pbartok@novell.com> 
9232         * XplatUIX11.cs: Don't set a clip rectangle unless it's not empty
9234 2006-03-30  Mike Kestner  <mkestner@novell.com>
9236         * Menu.cs (SelectedItem): use new MenuItem.Selected prop.
9237         * MenuAPI.cs: use new MenuItem.Selected prop. redraw MainMenu when we
9238         go active to account for HotLight to Selected transition.
9239         * MenuItem.cs: add internal Selected prop. Fill out the Status
9240         property by calculating it from item info. Add HotLight,
9241         NoAccelerator, Checked, Grayed, and Disabled flags where appropriate.
9243 2006-03-30  Mike Kestner  <mkestner@novell.com>
9245         * MenuItem.cs: only emit DrawItem and MeasureItem for OwnerDraw.
9247 2006-03-29  Jackson Harper  <jackson@ximian.com>
9249         * Form.cs: Implement TODO.
9251 2006-03-29  Peter Dennis Bartok  <pbartok@novell.com> 
9253         * PrintPreviewDialog.cs: Implemented missing methods and events; still
9254           missing proper dialog setup in the constructor
9256 2006-03-29  Peter Dennis Bartok  <pbartok@novell.com>
9258         * ProgressBar.cs: Added 2.0 Style property that apps seem to use
9259         * Control.cs:
9260           - Implemented CheckForIllegalCrossThreadCalls, removed TODO
9261           - Fixed ResetBindings and removed TODO
9262           - Added check for cross-thread calls to get_Handle()
9263           - Added Marshaller attribute for set_Font to satisfy class status
9264         * FontDialog.cs: Removed TODOs that seemed implemented
9265         * UpDownBase.cs: Removed unneeded TODO and Fixme
9266         * MessageBox.cs: Implemented support for Default button and removed TODO
9267         * FileDialog.cs: Removed obsolete TODO
9268         * DomainUpDown.cs: Removed obsolete TODO
9269         * ButtonBase.cs: Removed obsolete TODO
9270         * XplatUIWin32.cs: Removed obsolete TODO
9271         * Form.cs:
9272           - Removed obsolete TODO
9273           - Calling CheckAcceptButton when the acceptbutton is changed to allow
9274             internal status updates
9275           - Making sure the active control is selected when the control is created
9276         * CurrencyManager.cs: Removed obsolete TODO
9278 2006-03-29  Mike Kestner  <mkestner@novell.com>
9280         * *.cs: fix remaining corcompare issues for 1.1 API with the exception
9281         of PrintPreviewDialog and RichTextBox.
9283 2006-03-29  Alexander Olk  <alex.olk@googlemail.com>
9285         * Theme.cs: Added a little helper to SystemResPool to get the Dark,
9286           DarkDark, Light and LightLight colors for a specific color
9287         * ThemeWin32Classic.cs:
9288           - Use Button drawing code to draw RadioButtons and CheckBoxes with
9289             Appearance = Button 
9290           - Make use of the new ResPool helper CPColor
9291           - Draw ProgressBar and StatusBar with correct 3D borders
9293 2006-03-29  Alexander Olk  <alex.olk@googlemail.com>
9295         * ColorDialog.cs: Return selected color. Fixes bug #77940.
9297 2006-03-28  Mike Kestner  <mkestner@novell.com>
9299         * ListView.cs: fix Icon layout to plan for scrollbar widths when
9300         calculating col/row counts.
9302 2006-03-28  Mike Kestner  <mkestner@novell.com>
9304         * ColumnHeader.cs:
9305         * ListView.cs:
9306         * ListViewItem.cs:
9307         * Menu.cs: 
9308         switch to explicit interface method implementation for some methods
9309         corcompare identifies as inconsistent with MS.
9311 2006-03-28  Mike Kestner  <mkestner@novell.com>
9313         * MainMenu.cs: 
9314         * Menu.cs:
9315         add a few missing methods from the class status output.
9317 2006-03-28  Alexander Olk  <alex.olk@googlemail.com>
9319         * ControlPaint.cs: Fixed ControlPaint.Light method. Results are now
9320           correct.
9322 2006-03-28  Mike Kestner  <mkestner@novell.com>
9324         * MenuAPI.cs: Deactivate on MainMenu item click. Fixes #77917.
9326 2006-03-27  Mike Kestner  <mkestner@novell.com>
9328         * ThemeWin32Classic.cs: Switch flat toolbars to use RaisedInner for
9329         the Hilight state to adapt to Alex's CPDrawBorder3D changes.
9331 2006-03-27  Alexander Olk  <alex.olk@googlemail.com>
9333         * ThemeWin32Classic.cs: Rewrote Button drawing code to match ms.
9335 2006-03-25  Alexander Olk  <alex.olk@googlemail.com>
9337         * ThemeWin32Classic.cs:
9338           - GroupBox: Inserted a little gap between the text and the lines
9339             on the right side
9340           - Made the code in CPDrawBorder3D more readable
9341           - Corrected the drawing location of the up and down arrows in 
9342             CPDrawScrollButton
9344 2006-03-25  Alexander Olk  <alex.olk@googlemail.com>
9346         * ControlPaint.cs: Corrected line widths in DrawBorder for
9347           ButtonBorderStyle Inset and Outset
9349 2006-03-25  Alexander Olk  <alex.olk@googlemail.com>
9351         * ThemeWin32Classic.cs:
9352           - Rewrote the totally broken CPDrawBorder3D method. That was
9353             one of the main problems for the terrific ThemeWin32Classic
9354             look
9355           - Updated and corrected Button drawing
9356           - Correct the dimensions of the SizeGrip to match ms ones
9357           - Removed a small drawing glitch in DrawComboBoxEditDecorations
9358         * XplatUIX11.cs: Draw borders with BorderStyle = Fixed3D with
9359           Border3DStyle.Sunken to match ms.
9361 2006-03-25  Alexander Olk  <alex.olk@googlemail.com>
9363         * ThemeWin32Classic.cs: First small part of the "de-uglify
9364           ThemeWin32Classic" effort, SizeGrip
9366 2006-03-24  Jackson Harper  <jackson@ximian.com>
9368         * XplatUIX11.cs: Give a max idle time of one second, this matches
9369         MS and forces an Idle event every second when there are no other
9370         events in the queue.
9372 2006-03-24  Mike Kestner  <mkestner@novell.com>
9374         * ListView.cs: Handle (Large|Small)ImageList == null more robustly.
9375         * ListView.Item.cs: fix layout issues with null image lists and images
9376         smaller than checkbox size.
9377         * ThemeWin32Classic.cs: Draw a 12 pixel line in ListView LargeIcon
9378         mode like MS does.  It's weird, but consistent.  ;-)
9379         Fixes #77890.
9381 2006-03-24  Mike Kestner  <mkestner@novell.com>
9383         * ListView.cs: Scroll wheel support for the item control.  Fixes
9384         #77839.
9386 2006-03-23  Jackson Harper  <jackson@ximian.com>
9388         * ScrollableControl.cs: Special case negative sized areas, not
9389         zero.
9390         * MonthCalendar.cs: Save the rect of the clicked date so we can
9391         use it for invalidation.
9392         - Try to cut down on the number of invalidates
9393         - Invalidate the rect the mouse is over and was over when moving
9394         the mouse, so we get the focus box following the cursor.
9396 2006-03-23  Mike Kestner  <mkestner@novell.com>
9398         * ThemeWin32Classic.cs: fix FullRowSelect selection background and
9399         focus rectangle drawing. Fixes #77835.
9401 2006-03-23  Mike Kestner  <mkestner@novell.com>
9403         * XplatUIX11.cs: rework the fix for #77828 by changing the order of
9404         the if and else if and reverting back to the original == check on the
9405         None conditional.
9407 2006-03-23  Alexander Olk  <alex.olk@googlemail.com>
9409         * FontDialog.cs: Update the example panel if the selected index of
9410           the fontListBox changes.
9412 2006-03-23  Alexander Olk  <alex.olk@googlemail.com>
9414         * FileDialog.cs: Make FileDialog remember which directory it was in
9415           last in the same execution.
9417 2006-03-22  Mike Kestner  <mkestner@novell.com>
9419         * FileDialog.cs: make the DropDownMenu on the toolbar display
9420         RadioChecks since they are mutually exclusive and that's what MS does.
9422 2006-03-22  Mike Kestner  <mkestner@novell.com>
9424         * Theme.cs: add Color param to CPDrawMenuGlyph.
9425         * ThemeWin32Classic.cs: do color specific menu glyph rendering so that
9426         checks and radio marks and arrows are visible on highlighted items.
9427         * ControlPaint.cs: update to use new Theme signature.
9429 2006-03-22  Mike Kestner  <mkestner@novell.com>
9431         * MenuAPI.cs: only process Enter and arrow keypresses if the tracker
9432         is active. Fixes #77870.
9434 2006-03-22  Alexander Olk  <alex.olk@googlemail.com>
9436         * FileDialog.cs: Corrected TabIndex order and set fileNameComboBox
9437           to be focused/selected after startup
9439 2006-03-22  Alexander Olk  <alex.olk@googlemail.com>
9441         * ColorDialog.cs: 
9442           - Corrected behaviour of Color, AllowFullOpen, FullOpen,
9443             CustomColors and ShowHelp properties
9444           - Some internal rewrites to get better results when using the
9445             ColorMatrix
9447 2006-03-22  Mike Kestner  <mkestner@novell.com>
9449         * ListView.cs: hook into Peter's new ResetMouseHover capability to fix
9450         HoverSelection.  Fixes #77836.
9452 2006-03-22  Mike Kestner  <mkestner@novell.com>
9454         * FileDialog.cs: bugfixes for the toolbar.  Use PushButtons instead of
9455         ToggleButtons.  (De)Sensitize the Back button around a stack count of
9456         1, not 0.  Update ButtonSize based on a pixel count of the win32
9457         control.  Adjust the toolbar size/location for new button size.
9459 2006-03-22  Jackson Harper  <jackson@ximian.com>
9461         * XplatUIX11.cs: Don't handle configurenotifys if PostQuitState is
9462         true.
9463         * ScrollBar.cs: When doing increments and decrements we need to
9464         set the Value property so that ValueChanged gets raised. A
9465         possible optimization here would be to make an internal SetValue
9466         that doesn't invalidate immediately.
9467         * ToolTip.cs: Tooltips get added to their container (when
9468         supplied) so they get disposed when the container is disposed.
9469         - Don't create tooltips for String.Empty. This prevents all these
9470         little 2-3 pixel windows from showing up when running nunit-gui
9471         and driving me mad.
9472         * Form.cs: Don't set topmost when setting the owner if the handles
9473         haven't been created yet.  The topmost set will happen when the
9474         handles are created.
9476 2006-03-22  Peter Dennis Bartok  <pbartok@novell.com> 
9478         * XplatUIX11.cs:
9479           - DeriveWindowStyles: Fixed typo in borderstyle generation (#77828)
9480           - SetVisible: Sending WINDOWPOSCHANGED for all controls when made 
9481             visible (to allow them to recalculate their sizes)
9483 2006-03-21  Mike Kestner  <mkestner@novell.com>
9485         * ThemeWin32Classic.cs: major refactoring of the ToolBar rendering
9486         methods. Removed a ton of redundant code.  Still not really happy with
9487         the border rendering, but I think that's mainly because of the
9488         ControlDarkDark being black instead of a dark grey. Depending on how 
9489         close we want to be, we might want to revisit those color choices.
9490         Among the new features added during the refactor were DropDownArrow
9491         pressed rendering, Disabled image rendering.  Proper flat appearance
9492         boundary rendering.  Removed the Divider and Wrapping dividers since I
9493         can't figure out any combination of themes and conditions to make the
9494         MS control draw a horizontal line on a toolbar despite what the
9495         Divider property docs indicate.
9496         * ToolBar.cs: rewrite the layout engine. Fixes numerous flicker
9497         conditions and incorrect layout.  Updated to coding standard.
9498         * ToolBarButton.cs: refactored layout and positioning code from
9499         ToolBar to here.  Invalidate wherever possible instead of forcing
9500         redraws of the whole toolbar. 
9501         (Known remaining issues: explicit ButtonSize smaller than provided
9502         images.)
9504 2006-03-21  Mike Kestner  <mkestner@novell.com>
9506         * ContextMenu.cs (Show): use the position parameter instead of just
9507         showing at the MousePosition.
9509 2006-03-21  Jackson Harper  <jackson@ximian.com>
9511         * TabControl.cs: Remove the call to ProcessKeyEventArgs and let
9512         control handle this.
9513         * TreeNodeCollection.cs: If we are clearing the root node we need
9514         to reset top_node so calcs can still happen.
9515         * ThemeWin32Classic.cs: This is a Flags so we need to check
9516         properly.
9517         
9518 2006-03-21  Jackson Harper  <jackson@ximian.com>
9520         * DataGrid.cs: Create columns when the binding context has been
9521         changed.
9522         * X11Structs.cs: Keysyms are uints.
9523         - Add size to fix build.
9525 2006-03-21  Peter Dennis Bartok  <pbartok@novell.com> 
9527         * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs, XplatUIWin32.cs, 
9528           XplatUIOSX.cs: 
9529           - Added ResetMouseHover method to allow controls to retrigger
9530             hovering if they need it more than once
9531           - Implemented MouseHoverTime and MouseHoverSize properties
9532         * Timer.cs: Start() must reset the interval
9533         * SystemInformation.cs: Added 2.0 MouseHoverTime and MouseHoverSize
9534           properties
9536 2006-03-21  Jackson Harper  <jackson@ximian.com>
9538         * X11Keyboard.cs: improved layout detection. Move the nonchar
9539         tables into this file.
9540         * KeyboardLayouts.cs: Move the tables into resource files.
9542 2006-03-21  Mike Kestner  <mkestner@novell.com>
9544         * ListView.cs: use OnItemActivated to raise events. Fixes #77834.
9546 2006-03-21  Alexander Olk  <alex.olk@googlemail.com>
9548         * Mime.cs: Various speed optimizations. Looking up mime types
9549           is now 2 times faster than before
9551 2006-03-17  Peter Dennis Bartok  <pbartok@novell.com> 
9553         * CreateParams.cs: Added internal menu field
9554         * Control.cs: 
9555           - Switched call order for UpdateBounds; now we always call
9556             the one that also takes ClientSize, and we're calculating the 
9557             client size via driver method in the others. The previous
9558             method of tracking client size by difference wasn't working
9559             for forms where even the starting client size wouldn't match
9560             the overall form size (due to borders) (Part of fix for #77729)
9561           - CreateParams(): Do not use parent.Handle unless the handle is
9562             already created. Causes havoc with Nexxia and throws off our
9563             creation of controls
9564         * XplatUIX11.cs:
9565           - Created new PerformNCCalc method to trigger WM_NCCALCSIZE message
9566           - Switched handling of ConfigureNotify over to new PerformNCCalc 
9567             method (consolidates code)
9568           - Changed RequestNCRecalc to use new PerformNCCalc method
9569           - Added calls to RequestNCRecalc when menus and borders are changed
9570             to allow app to set NC size. (Part of fix for #77729) This matches
9571             when MS send a WM_NCRECALC on Win32 windows.
9572           - Now sending WM_WINDOWPOSCHANGED when toplevel for is made visible
9573             (Part of fix for #77729). This matches what MS does, they also
9574             send that message when the form is made visible.
9575           - XException.GetMessage: Improved usability of X errors by including
9576             a translation of the window into Hwnd and Control class
9577           - Improved debug info for window creation, reparenting and destruction
9578           - Created helper method WindowIsMapped() [Currently not used]
9579         * XplatUIWin32.cs: Added ToString() debug helper to RECT structure
9580         * Form.cs:
9581           - CreateParams: Now setting our menu on the new internal menu field
9582           - SetClientSizeCore: Now passing cp.menu instead of ActiveMenu to
9583             avoid calculating the same property twice
9584         * Hwnd.cs:
9585           - Improved usability of ToString() for debugging purposes
9586           - GetWindowRectangle(): Now uses proper CalcMenuBarSize method to
9587             determine the height of the menu, instead of just the font. This
9588             required to also create a graphics context and to keep a bmp 
9589             around (for performance reasons)
9591 2006-03-17  Peter Dennis Bartok  <pbartok@novell.com>
9593         * MenuAPI.cs: Added OnMouseUp method
9594         * Form.cs:
9595           - Now remembering the requested client size, avoids size errors
9596           - WndProc: Now handling WM_xBUTTONUP and passing it to MenuTracker
9597             instead of base if the menu is active. This is required due to
9598             control now capturing and releasing on down/up and it would
9599             prematurely release our menu capture
9601 2006-03-17  Jackson Harper  <jackson@ximian.com>
9603         * KeyboardLayouts.cs: Add the czech layouts.
9605 2006-03-16  Jackson Harper  <jackson@ximian.com>
9607         * Control.cs: Use the viewport space when sizing not the controls
9608         client size, so things like ScrollableControl that effect the
9609         viewport size (when scrollbars are added) are computed correctly.
9610         * BindingContext.cs: Cleanup to use the DataSourceEntrys instead
9611         of ManagerEntrys.
9612         - Handle creating BindingManagers for null data sources.
9613         * DataGrid.cs: Bind the cached_currencymgr_events to the real data
9614         source, otherwise when rows are added they are added to the 'fake'
9615         datasource and we will crash when trying to set the position in
9616         those rows.
9617         - Use Implicit scrollbars on the datagrid so they arent
9618         selectable.
9619         
9620 2006-03-16  Jackson Harper  <jackson@ximian.com>
9622         * Binding.cs:
9623         * InternalWindowManager.cs:
9624         * MdiWindowManager.cs:
9625         * X11Keyboard.cs: I really want Mike to love me again (fix
9626         compiler warnings).
9628 2006-03-16  Peter Dennis Bartok  <pbartok@novell.com>
9630         * DataGrid.cs:
9631           - OnMouseDown: Switch to editing mode when clicking on the cell
9632                          even if we're clicking on the cell that's currently 
9633                          selected
9634           - ProcessGridKey: Left/Right now wrap like MS.Net does
9635           - ProcessGridKey: Tab now knows to add a new row when tab is
9636                             pressed in the cell of the last column of the 
9637                             last row
9638           - ProcessGridKey: Enter now adds another row  if pressed in the last
9639                             row and selectes the new row, same column cell
9640           - ProcessGridKey: Home/End navigate columns, not rows, like 
9641                             originally implemented
9642           - Broke ProcessKeyPreview code out into an extra Internal method
9643             so it can be called from the edit code
9644         * DataGridTextBox.cs (ProcessKeyMessage):
9645           - Switched to accept Tab keypresses
9646           - Added F2 handling to allow jumping to the end of the edited cell
9647           - Added logic to allow moving caret left/right inside edited cell
9648             and making the edited cell jump when the caret hits cell borders
9649           - Tab and Enter are now passed to the datagrid after being handled
9650         * TextBoxBase.cs:
9651           - Removed capture code now that Control handles it
9652           - set_SelectionStart now ensures caret is visible
9654 2006-03-16  Jackson Harper  <jackson@ximian.com>
9656         * TrackBar.cs: Debackwards the increment/decrement for handling
9657         mouse clicks on the bar with vertical trackbars.
9658         * ThemeWin32Classic.cs: Draw vertical trackbars with 0 at the
9659         bottom to match MS.
9661 2006-03-16  Mike Kestner  <mkestner@novell.com>
9663         * ListView.cs: make shift/ctrl keyboard and mouse selection 
9664         consistent with the MS control. Fix a bug in
9665         SelectedListViewItemCollection.Clear that was pissing me off for the
9666         better part of a day because the collection was being altered
9667         underneath us as we walked the list.
9669 2006-03-16  Peter Dennis Bartok  <pbartok@novell.com> 
9671         * Control.cs: Not sure how we could miss this so long, but it seems
9672           that MS.Net has Capture set all the way from before calling 
9673           OnMouseDown through sending the mouse events until after
9674           OnMouseUp. This will fix DataGrid's selection being set to end
9675           at the location of the MouseUp.
9677 2006-03-15  Jackson Harper  <jackson@ximian.com>
9679         * BindingContext.cs: Check the binding after its added so that it
9680           can initialize the binding managers and hookup to events.
9681         * Binding.cs: Data members seem to sometimes include rows/cols in
9682           the format Row.Column we now take this into account.
9683           - Hookup to the position changed event so we can update the
9684           control when the position has changed in the data set.
9685         * CurrencyManager.cs: Take into account the row/col naming
9686           convention when creating dataset tables.
9687         * BindingContext.cs: Using a newer better way of storing
9688           datasource/datamember pairs.  Hopefully this better matches MS for
9689           looking up binding managers.
9692 2006-03-15  Jackson Harper  <jackson@ximian.com>
9694         * BindingContext.cs: The currency manager needs the data member
9695         name, if the member is a data set we use the name to find the
9696         correct table.
9697         * CurrencyManager.cs: When creating the list prefer an IList over
9698         an IListSource.
9699         - Attempt to create a DataTable from a DataSet (TODO: might need
9700         some better error checking here, although MS doesn't seem to have much)
9701         - If we have a DataTable create a view and use it as our list.
9703 2006-03-15  Mike Kestner  <mkestner@novell.com>
9705         * ListView.cs: keep a matrix of the icon mode layout to facilitate
9706         keyboard navigation. Support Up/Down/Left/Right selection correctly
9707         for all 4 View modes.
9708         * ListViewItem.cs: add internal row/col fields for icon layouts.
9710 2006-03-15  Jackson Harper  <jackson@ximian.com>
9712         * TabControl.cs: Redraw the tabs when we resize so their newly
9713         calculated sizes are drawn on screen.
9714         * X11Keyboard.cs: Begginnings of XIM support.  We also now support
9715         composite characters.
9716         * XplatUIX11.cs: Keyboard driver needs to know about focus changes
9717         - filter events so that composite characters can be created
9718         patches by peter
9719         * X11Structs.cs: Add XIMProperties enum.
9721 2006-03-14  Peter Dennis Bartok  <pbartok@novell.com> 
9723         * Control.cs (BringToFront, SendToBack): Don't use window or handle
9724           unless it's created
9726 2006-03-14  Peter Dennis Bartok  <pbartok@novell.com>
9728         * Control.cs (PerformLayout): We don't need to consider visiblity
9729           for anchoring, only for docking. This fixes 'whacky' alignment
9730           in listbox and other controls that use implicit scrollbars after
9731           the previous PerformLayout patch
9732         * ListBox.cs: Switched to use implicit scrollbars
9733           
9734 2006-03-14  Mike Kestner  <mkestner@novell.com>
9736         * ToolBar.cs: 
9737         * VScrollBar.cs:
9738         - chain up the "new event" overrides to base and use
9739         OnEvent to raise them.  Part of fix for bug #76509.
9741 2006-03-14  Alexander Olk  <alex.olk@googlemail.com>
9743         * FileDialog.cs: Do not select an item in the parent directory
9744           on backspace
9746 2006-03-14  Peter Dennis Bartok  <pbartok@novell.com> 
9748         * Control.cs (PerformLayout): It would seem that we considered
9749           invisible windows for our layout. Not quite the right thing
9750           to do. Now we don't any longer, thereby fixing bug #76889.
9752 2006-03-14  Peter Dennis Bartok  <pbartok@novell.com>
9754         * Control.cs (CanFocus): I goofed. A control can have focus 
9755           even though it's not selectable. Made it match MS docs.
9757 2006-03-13  Peter Dennis Bartok  <pbartok@novell.com>
9759         * ControlPaint.cs (DrawBorder3D): DrawBorder3D does not fill the
9760           center by default (fixes #76895)
9761         * ThemeWin32Classic.cs, ThemeNice.cs, ThemeClearlooks.cs: Replaced 
9762           all uses of Border3DSides.All with the explicit ORd together
9763           Left|Right|Top|Bottom because I assume that nobody was aware 
9764           that All also implies a center fill. Most places I checked had
9765           a fill right above.
9766         * ProgressBarStyle.cs: Added
9768 2006-03-13  Mike Kestner  <mkestner@novell.com>
9770         * ListView.cs: fix breakage in drag shadow header positioning 
9771         from Peter's csc compilation fix.
9773 2006-03-13  Mike Kestner  <mkestner@novell.com>
9775         * ListView.cs: fix NRE produced by backspacing twice in a focused
9776         FileDialog.
9778 2006-03-13  Mike Kestner  <mkestner@novell.com>
9780         * ListView.cs: proxy Key(Down|Up) from ItemControl to ListView.
9782 2006-03-13  Peter Dennis Bartok  <pbartok@novell.com>
9784         * Hwnd.cs: Added fixed_size field to track windows whose size cannot
9785           be changed
9786         * XplatUIX11.cs: Now setting fixed_size on hwnd and if set, re-setting
9787           the allowed size before making programmatic size changes
9789 2006-03-13  Peter Dennis Bartok  <pbartok@novell.com> 
9791         * XplatUIX11.cs: Don't call XSetWMNormalHints if no flags are 
9792           set, metacity is broken and will still use the emty sizes in 
9793           the struct. (Fix for #77089)
9795 2006-03-13  Peter Dennis Bartok  <pbartok@novell.com>
9797         * XplatUIStructs.cs: Split WindowStyles into WindowStyles and 
9798           WindowExStyles and marked both enums as Flags
9799         * Form.cs, ComboBox.cs, ToolTip.cs, Control.cs, PropertyGridView.cs,
9800           NotifyIcon.cs, MenuAPI.cs, XplatUIOSX.cs, MonthCalendar.cs: Updated
9801           to match WindowStyles split
9802         * XplatUIX11.cs:
9803           - SetWMStyles: Added cehck to not apply WM attributes to Child windows
9804           - Updated to match WindowStyles split
9805         * XplatUIWin32.cs:
9806           - Fixed FosterParent creation, was using ExStyle on the Style field
9807             (This should help with Popup focus issues)
9808           - Updated to match WindowStyles split
9810 2006-03-13  Jackson Harper  <jackson@ximian.com>
9812         * MdiWindowManager.cs: Use the system menu height. Fixes some
9813         strange sizing issues.
9815 2006-03-12  Peter Dennis Bartok  <pbartok@novell.com>
9817         * RichTextBox.cs: Need to scroll to caret after text is inserted (#77672)
9818         * TextBoxBase.cs:
9819           - Scroll to caret after inserting text (#77672)
9820           - Make scroll range one pixel higher, fixes off-by-one error (and
9821             makes underlines visible on the last line)
9823 2006-03-12  Peter Dennis Bartok  <pbartok@novell.com> 
9825         * XplatUIX11.cs: Added call to new Keyboard.ResetKeyState to prevent
9826           the keyboard state from being stuck with keys in 'pressed' state when
9827           focus is switched away via keyboard
9828         * X11Keyboard.cs: Added new ResetKeyState method to allow drivers to
9829           reset the keyboard if no X11 KeyUp events are expected to come
9830         * X11Structs.cs: Switched type of Visible to bool to match driver
9832 2006-03-12  Peter Dennis Bartok  <pbartok@novell.com>
9834         * TextControl.cs:
9835           - Switched caret to be just 1 pixel wide, matches MS and looks less
9836             clunky
9837           - Moved caret display 1 pixel down from the top of the control
9838             to improve view
9839           - InsertCharAtCharet: Update the selection start if moving the caret
9840             (fixes bug #77696; based on patch suggested by kazuki@panicode.com)
9841           - No longer always creating the caret when the caret methods are
9842             called. Only the actual ShowCaret/HideCaret will do that now
9843           - Only setting caret visible if the owner control has focus
9844           - UpdateView: Added invalidation-shortcut logic for center and right 
9845             aligned text. Previously we'd update all according to the left
9846             logic which caused drawing errors. Also fixed height of invalidated
9847             areas, now properly invalidating the whole area (was off-by-one)
9848           - owner_HandleCreated: Always generate the document when the
9849             handle is created; this ensures that 
9850         * TextBoxBase.cs:
9851           - Fixed situation where caret would disappear under the right
9852             window border, also improved scrolling behaviour on left-
9853             aligned textboxes
9854           - Fixed right-aligned textboxes to have a border to the
9855             right instead of the caret being under the right border
9856         * XplatUIX11.cs:
9857           - Switched from 'nested' to simple visible/not visible tracking 
9858             for caret (part of fix for #77671)
9859           - No longer passing through translated FocusIn/FocusOut messages
9860             since we were notifying too often and the wrong windows. Instead
9861             we just notify our focussed window of receiving or loosing focus
9862         * XplatUIWin32.cs: Switched from 'nested' show/hide 
9863           counting for caret to simple visible yes/no behaviour (part of 
9864           fix for #77671)
9866 2006-03-11  Alexander Olk  <alex.olk@googlemail.com>
9868         * Mime.cs: Remove debug code...
9870 2006-03-11  Alexander Olk  <alex.olk@googlemail.com>
9872         * MimeGenerated.cs: Removed
9873         * Mime.cs: Mime now reads the mime data (magic, globs, aliases
9874           and subclasses) from /usr/(local/)share/mime and
9875           $HOME/.local/share/mime.
9877 2006-03-10  Jackson Harper  <jackson@ximian.com>
9879         * MdiWindowManager.cs: Recalc the NC area when a window is
9880         maximized/restored so that the menu area is drawn on forms that
9881         don't have a menu.
9883 2006-03-10  Peter Dennis Bartok  <pbartok@novell.com>
9885         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs, XplatUIWin32.cs,
9886           XplatUIX11.cs: Added RequestNCRecalc method to driver to allow
9887           us to force a WM_NCCALCRESIZE message being sent. This is needed
9888           for MDI maximizing.
9890 2006-03-10  Jackson Harper  <jackson@ximian.com>
9892         * Form.cs: We need to use the ActiveMenu when calculating menu
9893         height.
9894         - Fix nullref when the window manager hasn't been created yet.
9895         * Control.cs: Fix nullref when we try to bring a control to the
9896         front that has no parent.
9897         * MdiWindowManager.cs: Use the MaximizedMenu for calculating
9898         height.
9899         - Add a dummy item to the maximized menu so it always has the
9900         correct height. Otherwise when there are no menus we don't get our
9901         icon and buttons.
9902         
9904 2006-03-10  Jackson Harper  <jackson@ximian.com>
9906         * MenuAPI.cs: Make this available elsewhere. I need it in some MDI
9907         stuff.
9908         * Form.cs: Make the window_state internal so the window managers
9909         can track it.
9910         - When an MDI child is maximized let its window manager create the
9911         main menu (so it can add its icon).
9912         - Notify the window managers of state changes
9913         - Let the window manager paint its buttons and handle button
9914         clicks on the menu when it is maximized.
9915         * InternalWindowManager.cs: Move the prev_bounds into the mdi
9916         window manager, since tool windows don't use it, only mdi windows.
9917         - Tell the main form that we don't want it to handle NCPAINT
9918         itself to avoid extra painting.
9919         - Handle clicks on a maximized windows menu.
9920         - Handle window state changes
9921         - Handle minimize/maximize clicks correctly by setting the window state.
9922         * MdiWindowManager.cs: Add an icon menu that (the menu you get
9923         when clicking on the forms icon).
9924         - New method to create a forms maximized menu. This is its normal
9925         menu + an icon.
9926         - Handle window state changes.
9927         - Handle sizing of maximized windows.  Maximized windows are just
9928         drawn bigger then the parent visible area. All controls are still
9929         there, they are just outside the visible area (this matches windows).
9930         * MdiClient.cs: No scrollbars when a child window is maximized.
9931         - Let the children windows figure out how big they should be when
9932         sizing maximized windows.
9933         - Implement a version of ArrangeIconicWindows somewhat similar to
9934         Windows version.  There are some little differences, but I don't
9935         think any app will rely on the layout of minimized mdi windows.
9937 2006-03-10  Peter Dennis Bartok  <pbartok@novell.com>
9939         * Padding.cs: Several fixes to allow compiling with csc 2.0
9941 2006-03-09  Jackson Harper  <jackson@ximian.com>
9943         * Menu.cs:
9944         * MenuItem.cs: Cheap hack so we can add items to the list without
9945         the events being raised.  This allows adding mdi items during
9946         drawing. TODO: Should probably find a better time to add the items.
9948 2006-03-10  Peter Dennis Bartok  <pbartok@novell.com>
9950         * ThemeWin32Classic.cs:
9951           - CheckBox_DrawText: Added logic to not wrap if not enough space
9952             is available (Fix for bug #77727)
9953           - RadioButton_DrawText: Added logic not to wrap if not enough
9954             space is available (Fix for bug #77727). Also removed some
9955             duplicate code, DrawString always drawing the regular text
9956             before hitting the if statement.
9958 2006-03-10  Peter Dennis Bartok  <pbartok@novell.com> 
9960         * XplatUIX11.cs: Handle an unmapped window state in SetWindowState
9962 2006-03-10  Peter Dennis Bartok  <pbartok@novell.com>
9964         * PictureBox.cs: Implemented ISupportInitialize interface (fixes #77726)
9965         * ContainerControl.cs: Partial implementation of some 2.0 scaling
9966           methods. Moved the new 2.0 properties into alphabetical order with
9967           other properties and added MonoTODO tags
9969 2006-03-09  Peter Dennis Bartok  <pbartok@novell.com> 
9971         * AutoScaleMode.cs: Added. Fix build.
9973 2006-03-09  Peter Dennis Bartok  <pbartok@novell.com>
9975         * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs, XplatUIWin32.cs, 
9976           XplatUIOSX.cs: Removed HWnd argument from CalcuateClientRect, not used
9977           and was requiring premature handle creation for calls from above
9978         * Form.cs, Control.cs: Removed handle arguments from calls to
9979           CalculateClientRect()
9981 2006-03-09  Peter Dennis Bartok  <pbartok@novell.com> 
9983         * ListView.cs (HeaderMouseMove): Fix csc compilation. 
9984           drag_column.column_rect is MarshalByRef and can't be used that way
9986 2006-03-09  Peter Dennis Bartok  <pbartok@novell.com>
9988         * AxHost.cs: Added deserialization constructor for 
9989           AxHost+State (fixes 77743)
9991 2006-03-09  Mike Kestner  <mkestner@novell.com>
9993         * ListView.cs: 
9994         - Added column drag reordering for details view.
9995         - fixed behavior when mouse is dragged off column and
9996         AllowColumnReorder is false.
9997         * ColumnHeader.cs: clone the format too in Clone.
9998         * Theme.cs: add DrawListViewHeaderDragDetails method.
9999         * ThemeWin32Classic.cs:
10000         - impl new method for drawing drag column shadows and targets.
10001         - support column offset for details mode in DrawListViewItem.
10003 2006-03-09  Peter Dennis Bartok  <pbartok@novell.com>
10005         * TextControl.cs: Reset the char_count when the document is cleared
10006           (Fixes bug reported on mono-winforms mailing list)
10008 2006-03-09  Peter Dennis Bartok  <pbartok@novell.com> 
10010         * TextBoxBase.cs: Honor the Handled state of KeyPress events. Instead
10011           of calling base we simply process the key ourselves, since both
10012           DefWindowProc and the handled method would set m.Result. 
10013           (Fixes #77732)
10015 2006-03-09  Peter Dennis Bartok  <pbartok@novell.com>
10017         * Form.cs(ScaleCore): No longer calling base.ScaleCore since that
10018           method also moves the window; instead implemented a copy of
10019           Control.ScaleCore (Part of fix for #77456)
10020         * TextBoxBase.cs: 
10021           - Created new CreateGraphicsInternal method to allow providing
10022             a graphics context when no handle is created without triggering
10023             handle creation. (Part of fix for #77456)
10024           - Replaced use of Control.CreateGraphics with CreateGraphicsInternal
10025         * TextControl.cs: 
10026           - Switched Constructor to require TextBoxBase instead of Control (to
10027             allow uncast access to CreateGraphicsInternal)
10028           - Safeguarded use of owner.Handle property. No longer accessing it
10029             unless the handle is already created.
10030           - Replaced use of Control.CreateGraphics with CreateGraphicsInternal
10031           - Now triggering a recalc when owning control becomes visible
10032         * TextBox.cs, RichTextBox.cs: Switched to use new internal 
10033           TextBoxBase.CreateGraphicsInternal() method to avoid triggering
10034           premature handle creation (Part of fix for #77456)
10035         * Control.cs:
10036           - We now only destroy our double-buffering buffers when the
10037             control is resized or disposed, but not when visibility
10038             changes. (The code even re-created them twice every time)
10039           - Now requiring a redraw of the buffer on visibility changes
10040             (fixes bug 77654 part 2)
10041           - Not passing OnParentVisibleChanged up unless the control
10042             is visible
10043           - CanFocus: Fixed to match MS documentation
10044           - Focus: Fixed to return actual focus state and to check if
10045             setting focus is legal before setting it
10047 2006-03-08  Peter Dennis Bartok  <pbartok@novell.com>
10049         * ThemeWin32Classic.cs: TabPages cannot have focus. Determine
10050           when to draw focus rectangle by looking at parent focus and
10051           selected state instead. This fixes TabPages on Linux sometimes
10052           having none or multiple focus rectangles.
10053         * XplatUIX11.cs (SetFocus): 
10054           - Don't set the focus if the same window already has focus
10055           - Use SendMessage instead of PostMessage (like it's Win32
10056             equivalent) and send the WM_SETFOCUS before the WM_KILLFOCUS
10057             to match MS behaviour
10058         * TabControl.cs(SelectedIndex): Don't set Focus on TabPage, TabPages
10059           are not selectable.
10061 2006-03-07  Jackson Harper  <jackson@ximian.com>
10063         * PictureBox.cs: Revert line I accidently committed last week.
10065 2006-03-07  Peter Dennis Bartok  <pbartok@novell.com>
10067         * Control.cs: 
10068           - Added new IsRecreating and ParentIsRecreating properties to
10069             allow testing if RecreateHandle has been called on ourselves
10070             or one of our parents
10071           - WndProc(WM_DESTROY): If our control handle is being recreated
10072             we immediately need to create the handle when receiving the
10073             destroy, that way our child windows find a valid parent handle
10074             when they themselves are being recreated upon WM_DESTROY receipt
10075             (fix for bug #77654 part 1)
10076         * XplatUIX11.cs:
10077           - DestroyWindow: WM_DESTROY must be sent to our own window before
10078             notifying any child windows. MS documents that child windows
10079             are still valid when WM_DESTROY is received. (Control now relies on
10080             this behaviour)
10081           - Added some fine-grain debug options
10083 2006-03-06  Jackson Harper  <jackson@ximian.com>
10085         * MdiClient.cs: Redid scrolling logic a bit to create a virtual
10086         box and base calculations off this.
10087         * MdiChildContext.cs:
10088         * MdiWindowManager.cs: Don't need to ensure scrollbars here
10089         anymore.
10090         
10091 2006-03-06  Peter Dennis Bartok  <pbartok@novell.com>
10093         * Splitter.cs: In situations where the affected control is added
10094           to the parent's control list after the splitter, we would not
10095           populate affected. Now we try populating it on mousedown, if
10096           it's not already set, and force it to be re-set whenever our
10097           parent changes.
10099 2006-03-03  Matt Hargett  <matt@use.net>
10101         * Control.cs: implement Control.Padding
10102         * Padding.cs: -Padding.All returns -1 when constructing with the
10103         implicit default ctor
10104         -Padding.ToString() matches MS.NET
10105         * ContainerControl.cs: implement
10106         ContainerControl.AutoScaleDimensions
10107         * ListControl.cs: implement ListControl.FormattingEnabled
10108         * TextBox.cs: Implemented TextBox.UseSystemPasswordChar.
10109         * ButtonBase.cs:
10110         * TabPage.cs: Implement UseVisualStyleBackColor.
10111         * PictureBox.cs: Implement PictureBox.InitialImage.
10113 2006-03-03  Mike Kestner  <mkestner@novell.com>
10115         * ListView.cs: Refactor into HeaderControl and ItemControl. Fix new
10116         event declarations to proxy to base event.
10117         * ListViewItem.cs: update to use ItemControl.
10118         * Theme.cs: make DrawListViewHeader. s/DrawListView/DrawListViewItems.
10119         * ThemeWin32Classic.cs: update to new ListView theme API and fix
10120         column header label rendering for 0 width columns.
10122 2006-03-03  Peter Dennis Bartok  <pbartok@novell.com>
10124         * Control.cs (ControlCollection.SetChildIndex): Avoid using a call
10125           that causes the control to be created. Fixes #77476.
10127 2006-03-02  Jackson Harper  <jackson@ximian.com>
10129         * Hwnd.cs: Clear the nc pending when clearing the NC area, not the
10130         expose_pending.
10132 2006-03-02  Peter Dennis Bartok  <pbartok@novell.com>
10134         * Control.cs: Implemented 2.0 feature where OnClick has MouseEventArgs
10135           passed in for the EventArgs (fixes #77690)
10137 2006-03-01  Jackson Harper  <jackson@ximian.com>
10139         * ScrollBar.cs: Refresh afterbeing resized.
10141 2006-02-28  Mike Kestner  <mkestner@novell.com>
10143         * MenuAPI.cs: Call PerformPopup internal method to emit Popup.
10144         Clean up a tracker compile warning.
10145         * MenuItem.cs: add internal PerformPopup method.
10146         [Fixes #77457]
10148 2006-02-28  Peter Dennis Bartok  <pbartok@novell.com> 
10150         * TextBoxBase.cs (set_Text): Recalculate the document (causing an
10151           implicit expose) when the text is set to null
10153 2006-02-28  Peter Dennis Bartok  <pbartok@novell.com>
10155         * RichTextBox.cs (FlushText): When newline is true, we always
10156           need to split the line, even if no text is on it and we may
10157           never eat newlines. (Fixes #77669)
10159 2006-02-28  Mike Kestner  <mkestner@novell.com>
10161         * ListView.cs: Add UpdateSelection internal method. Remove SelectItem 
10162         and set Selected instead.
10163         * ListViewItem.cs: Call owner.UpdateSelection to manipulate the 
10164         collections.
10166 2006-02-28  Peter Dennis Bartok  <pbartok@novell.com> 
10168         * ComboBox.cs: Allow setting SelectedIndex to -1. Fixes #77665
10170 2006-02-28  Alexander Olk  <alex.olk@googlemail.com>
10172         * FontDialog.cs:
10173           - Got rid of the panel. All controls are now directly added to
10174             the dialog form
10175           - It is now possible to set a font with the Font property
10176           - MinSize and MaxSize property do now what they should
10177           - ShowApply, ShowHelp, ShowColor, ShowEffects likewise
10178           - Searching and selecting a font with the font textbox works now,
10179             the same applies to the style and size textbox
10180           - Draw the correct 3D border in the example panel
10181           - Fixed a little mem leak (unused fonts didn't get disposed)
10182           - Many other internal updates/rewrites...
10183           - Fix typo
10185 2006-02-27  Peter Dennis Bartok  <pbartok@novell.com> 
10187         * TextControl.cs: 
10188           - InsertRTFFromStream: Added 'number of characters inserted' argument
10189           - set_SelectedRTF: Now using the number of characters to calculate
10190             the new location for the selection and cursor (x/y cannot be used
10191             due to potentially already wrapped text)
10193 2006-02-27  Peter Dennis Bartok  <pbartok@novell.com>
10195         * TextControl.cs: Added property and implemented means to allow 
10196           disabling recalculation of a document (can be used to speed up
10197           multiple inserts and is needed to make RTF inserts predictable, see
10198           bug #77659)
10199         * RichTextBox.cs: Using the new NoRecalc property of Document to
10200           keep x/y insert locations predictable. Also makes it faster inserting
10201           large chunks of RTF
10203 2006-02-27  Peter Dennis Bartok  <pbartok@novell.com> 
10205         * Control.cs: Separated special WM_SYSKEYUP keyboard handling. That way
10206           it's easier for a child control to handle the other messages without
10207           having to duplicate the special functionality
10208         * TextBoxBase.cs
10209           - WndProc: Removed calling base handler for WM_KEYDOWN and added 
10210             code to handle processing the key ourselves, in order to get 
10211             access to the result of KeyEventArgs.Handled. We now only call 
10212             ProcessKey if they key hasn't been handled already. Fixes #77526.
10213           - set_Text: If null or empty string is given, just clear the 
10214             document. Fixes part of #77526
10216 2006-02-27  Jackson Harper  <jackson@ximian.com>
10218         * SizeGrip.cs: Paint the background color before painting the grip
10219         so things look right.
10220         * MdiClient.cs: Add the sizegrip when both scrollbars are used.
10222 2006-02-27  Mike Kestner  <mkestner@novell.com>
10224         * ListView.cs:
10225           - Restructure layout and invalidation model to remove a ton of
10226           flicker from the control and speed up performance in general.
10227           - Add manual column resize, flickers like crazy, but I already have
10228           some ideas on how I'll fix that. (#76822)
10229           - Merge the three Icon-based views into a single layout method.
10230           - Move item selection interaction logic from the item since 
10231           interaction with the collections is more appropriate to the view.
10232           - Deselection on non-item clicks.
10233         * ListViewItem.cs:
10234           - Encapsulate most of the layout. Add some internal props to trigger
10235           layout.  Move to a model where Items invalidate themselves instead
10236           of just invalidating the whole control every time something changes.
10237           - Invalidate on Text/Caption changes.
10238           - switch to an offset based layout model to avoid having to absolute
10239           position every element on item moves.
10240           - correct checkbox layout to conform to MS layout.
10241         * ThemeWin32Classic.cs:
10242           - refactor some column header drawing code.
10243           - fix string justification for column headers (#76821)
10244           - make SmallIcon labels top justified for compat with MS impl.
10245         * ThemeClearlooks.cs:
10246           - adjust to new ListViewItem internal checkbox bounds api.
10248 2006-02-27  Jackson Harper  <jackson@ximian.com>
10250         * Control.cs:  Change where implicit controls fall in the zorder.
10251         They are now on top of all children.
10252         - Synced AddImplicit code with Add
10253         - Removed unused enumerator.
10254         * SizeGrip.cs: Remove the TODO as its been TODONE.
10256 2006-02-26  Peter Dennis Bartok  <pbartok@novell.com> 
10258         * TextControl.cs(Insert): Combine the last lines unless the insertion
10259           string ends with \n\n, otherwise we leave one line too many (Fixes
10260           something I noticed with the testapp for #77526; the bug itself was
10261           already fixed in the previous checkin)
10263 2006-02-26  Peter Dennis Bartok  <pbartok@novell.com>
10265         * RichTextBox.cs:
10266           - SelectionColor and SelectionFont methods no longer set absolute
10267             styles. Instead, the keep font or color respectively (This 
10268             resolves a long-standing FIXME in the code)
10269           - When flushing RTF text, the insert code now considers text trailing
10270             behind the insertion point (Fixes the bug where when replacing
10271             the selected text via SelectedRTF the remainder of the line behind 
10272             the selection would stay on the first insertion line)
10273         * TextBoxBase.cs:
10274           - AppendText now updates the selection points after inserting text
10275           - AppendText now ensures that the last tag (sometimes 0-length) of
10276             the document is used for the style information (Fixes part of 
10277             bug #77220)
10278         * TextControl.cs:
10279           - Created new FontDefiniton class to allow describing partial style
10280             changes
10281           - StreamLine() now takes a lines argument, to allow it to decide
10282             whether an encountered zero-length tag is the last in the document
10283             (which must be kept to not loose the font/color contained in it,
10284             for later appends)
10285           - Created Combine() and Split() methods for Marker structs, to 
10286             support marker updates due to reformatted documents (soft line
10287             wraps)
10288           - Implemented Document.CaretTag setter
10289           - Fixed MoveCaret(CtrlEnd) handling, now moves to the last character
10290             of the last line (Not the cause, but also exposed by bug #77220)
10291           - Added LineTag argument to InsertString method, to allow callers
10292             to force a certain tag to be used (required to force use of the
10293             trailing zero-length tag of a document)
10294           - Now updating markers in Combine(), to avoid stale tag markers
10295           - Added some method descriptions to aid maintenance
10296           - Implemented new FormatText concept, allowing additive/subtractive
10297             formatting by only specifying the components that are to be 
10298             changed. This was needed for resolving the RTB.SelectedColor/
10299             RTB.SelectedFont fixmes
10300           - Added Break() support method to allow breaking up linetags (used
10301             for partial formatting)
10302           - Added GenerateTextFormat() method. It is used for partial 
10303             formatting and allows to generate a full font/color from given
10304             attributes and an existing tag.
10306 2006-02-26  Jackson Harper  <jackson@ximian.com>
10308         * XplatUIX11.cs:  Use the correct caption height.
10309         - Translate hittest coordinates to screen coords to match MS.
10310         * XplatUIWin32.cs: When we create MDI windows we need to reset
10311         some of the style flags, so we get a nice blank window, and can
10312         draw all the decorations ourselves.
10313         - Set a clipping rectangle on the non client paint event, the
10314         window manager drawing code needs one.
10315         * Form.cs: The window manager needs to know when the window state
10316         has been updated.
10317         * Hwnd.cs: The window manager stuff now does a proper NCCALC so we
10318         don't need to factor in border and title sizes in these
10319         methods. TODO: Remove the args and fix the call points.
10320         * InternalWindowManager.cs: Handle NCHITTEST and NCCALCAREA
10321         properly.
10322         - Let the driver set the cursors.
10323         - Improve active window handling
10324         - Correct sizes for title bars and buttons.
10325         - Match MS drawing better
10326         * MdiWindowManager.cs: We don't need to handle border style
10327         updates specially anymore.
10328         - Check for scrollbars when windows are done moving
10329         - Handle Active properly.
10330         * MimeIcon.cs: Don't crash when we can't load the GNOME stuff
10331         correctly. I am spewing the exception though, so we don't hide the
10332         bugs.
10333         
10334 2006-02-26  Pedro Martinez Julia  <pedromj@gmail.com>
10336         * DataGridViewRowPostPaintEventArgs.cs,
10337           DataGridViewCellPaintingEventArgs.cs,
10338           DataGridViewRowCollection.cs,
10339           DataGridViewRowPrePaintEventArgs.cs,
10340           DataGridViewCell.cs: Clear a few warnings and implement a few
10341           exceptions that should be thrown.
10343 2006-02-22  Peter Dennis Bartok  <pbartok@novell.com>
10345         * ScrollBar.cs (ctor): Explicitly set a cursor to avoid
10346           'inheriting' our parent's (non-default) cursor. (Part of
10347            the fix for #77479)
10349 2006-02-22  Peter Dennis Bartok  <pbartok@novell.com> 
10351         * XplatUIX11.cs: Fixed cast to make csc happy
10353 2006-02-22  Peter Dennis Bartok  <pbartok@novell.com>
10355         * Control.cs (WndProc): Only handle WM_SETCURSOR messages if
10356           it's for the client area (part of fix for #77479 and needed
10357           for MDI window cursor handling)
10358         * XplatUIX11.cs
10359           - DefWindowProc: Now handles the WM_SETCURSOR messages, setting
10360             the appropriate default cursors and also passing the message
10361             up the parent chain 
10362           - GetMessage: Now generating WM_NCHITTEST and WM_SETCURSOR even
10363             for non-client areas
10365 2006-02-15  Jackson Harper  <jackson@ximian.com>
10367         * XplatUIWin32.cs: Since we fake MDI dont tell Windows that this
10368         is a real MDI window
10370 2006-02-14  Alexander Olk  <alex.olk@googlemail.com>
10372         * X11DesktopColors.cs: Instead of checking the desktop session
10373           string for "KDE" check if it starts with "KDE"
10375 2006-02-10  Jackson Harper  <jackson@ximian.com>
10377         * XplatUIX11.cs: These should be unsigned (fixes crash on 32 bit
10378         systems).
10380 2006-02-10  Alexander Olk  <alex.olk@googlemail.com>
10382         * FileDialog.cs: Added Refresh to RunDialog to fix some drawing
10383           errors
10384         * ColorDialog.cs:
10385           - Got rid of the panel. All controls are now directly added to
10386             the dialog form
10387           - Changed to mono coding style
10389 2006-02-10  Jackson Harper  <jackson@ximian.com>
10391         * InternalWindowManager.cs: We don't need the set visibility to
10392         false hack anymore now that peter has written beautiful shutdown
10393         code.
10395 2006-02-10  Peter Dennis Bartok  <pbartok@novell.com>
10397         * XplatUIX11.cs: Ignore DestroyNotify messages for windows that
10398           where already explicitly destroyed
10400 2006-02-10  Jackson Harper  <jackson@ximian.com>
10402         * MdiClient.cs: Handle the case where windows are too high or to
10403         the left and we need scrollbars.
10405 2006-02-10  Alexander Olk  <alex.olk@googlemail.com>
10407         * MimeIcon.cs: Added some icons
10408         * FileDialog.cs:
10409           - Fixed bug #77477
10410           - Got rid of the panel. All controls are now directly added to
10411             the dialog form
10412           - Changed to mono coding style
10413           - On Linux "My Computer" and "My Network" will now show some
10414             more usefull information. A new class, MasterMount, gathers
10415             this information from /proc/mount. Updated MWFFileView to make
10416             use of this information
10417           - Fixed a bug that caused FileDialog to crash when
10418             ".recently_used" file had a zero size
10419           - FilterIndex does now what it should
10420           - Some Refactoring
10421         * OpenFileDialog.cs, SaveFileDialog.cs: Updated to reflect latest
10422             FileDialog changes
10424 2006-02-09  Jackson Harper  <jackson@ximian.com>
10426         * ComboBox.cs: Don't touch if null.
10428 2006-02-09  Peter Dennis Bartok  <pbartok@novell.com>
10430         * Cursor.cs: 64bit safeness fix
10431         * XplatUIX11.cs: Removed several unneeded and one moronic cast.
10433 2006-02-09  Jackson Harper  <jackson@ximian.com>
10435         * Form.cs: If a form is made into an MDI form update the styles so
10436         all the props can get set correctly.
10437         - Kill the mdi_container when we dont need it anymore.
10438         * InternalWindowManager.cs: Add missing NOT
10440 2006-02-08  Jackson Harper  <jackson@ximian.com>
10442         * InternalWindowManager.cs: Respek clipping when drawing MDi
10443         decorations.
10445 2006-02-08  Jackson Harper  <jackson@ximian.com>
10447         * Hwnd.cs: Add bits to track non client expose events.
10448         * XplatUIX11.cs: Track non client expose events on the hwnd. This
10449         gives us a proper invalid rect and will allow for some nice
10450         optimizations with NC client drawing
10451         - MDI windows are children windows, so move their style handling
10452         into the child window block.
10453         * InternalWindowManager.cs: Remove a state reset that was
10454         getting invoked at the wrong time. Fixes managed windows getting
10455         into a 'stuck' captured state.
10457 2006-02-07  Peter Dennis Bartok  <pbartok@novell.com>
10459         * TextControl.cs (Document.ctor): Now initializing 
10460           selection_anchor. Fixes #77493
10462 2006-02-07  Jackson Harper  <jackson@ximian.com>
10464         * TrackBar.cs: The increment/decrements were backwards.
10466 2006-02-07  Mike Kestner  <mkestner@novell.com>
10468         * Theme*.cs : remove ThemeEngine.Current usage as it just points back
10469         to the instance itself.
10471 2006-02-07  Peter Dennis Bartok  <pbartok@novell.com>
10473         * X11DesktopColors.cs, ThemeGtk.cs: The GObject structure is based
10474           on ulongs and pointers, the size differs between 32bit and 64bit
10475           systems. 
10477 2006-02-07  Mike Kestner  <mkestner@novell.com>
10479         * XplatUIX11.cs : force the WorkingArea away from XGetWindowProperty
10480         for 64 bit platforms to work around a metacity bug. 
10482 2006-02-07  Jackson Harper  <jackson@ximian.com>
10484         * TrackBar.cs: Process the input keys we need, and hookup to
10485         KeyDown instead of using WndProc, so we get key messages.
10487 2006-02-06  Peter Dennis Bartok  <pbartok@novell.com>
10489         * XplatUIX11.cs: Atoms are only 32bit on the wire, no matter what
10490           machine we're on. 
10491         * X11Dnd.cs(SetAllowDrop): Since atoms are always 32bit on the wire
10492           we need to translate the XdndVersion atoms array before sending it
10494 2006-02-06  Peter Dennis Bartok  <pbartok@novell.com> 
10496         * XplatUIX11.cs: 
10497           - The preceeding 64bit fixes had a bug: ChangeProperty expects the
10498             number of bits for the property, not the number of bytes. The
10499             change to provide IntPtr.Size broke 32bit. (64bit was also wrong
10500             but would not crash since it specified 8 bits instead of 4 bits)
10501           - More 64bit fixes: Switched all atoms from int to IntPtr (they are
10502             defined as XID -> long in the C headers)
10503           - Removed 'new IntPtr((int))' and '(IntPtr)' casts from all NetAtoms 
10504             references since those are now IntPtr to begin with
10505           - Switched all Atom.XXX 'int' casts to IntPtr casts
10506           - Fixed XGrabPointer DllImport signature to work for 64bit (cursor arg)
10507           - Fixed XInternAtom signature for 64bit, now returns an IntPtr
10508           - Added XChangeActivePointerGrab DllImport (for X11DnD)
10509         * X11Structs.cs:
10510           - Changed 'int' type for Atoms in XEvent structures to IntPtr
10511           - Changed atom in HoverStruct to be IntPtr
10512         * X11DnD.cs:
10513           - Removed local DllImports, switched code to use those from XplatUIX11
10514           - Removed/fixed casts related to the switch of Atom to be a IntPtr
10516 2006-02-06  Mike Kestner  <mkestner@novell.com>
10518         * XplatUIX11.cs : many more 64 bit pinvoke changes.  I've audited all the 
10519         method signatures in the import region.  There may still be some
10520         lingering struct marshaling issues, as I didn't drill down into those.
10521         Yet.
10523 2006-02-06  Jackson Harper  <jackson@ximian.com>
10525         * ComboBox.cs: Dont manually set the top_item, this is computed
10526         when the scrollbar position is set.
10528 2006-02-06  Mike Kestner  <mkestner@novell.com>
10530         * XplatUIX11.cs : 64 bit changes to XGetWindowProperty usage. Fixes
10531         startup crashes on amd64.  There's other fixes needed.  All pinvoke
10532         usage of Atom needs to be mapped to IntPtr for example.  And there are
10533         likely other int/long issues to be addressed.
10535 2006-02-04  Alexander Olk  <alex.olk@googlemail.com>
10537         * FileDialog.cs: One more...
10539 2006-02-03  Alexander Olk  <alex.olk@googlemail.com>
10541         * FileDialog.cs: Next try
10543 2006-02-03  Alexander Olk  <alex.olk@googlemail.com>
10545         * FileDialog.cs: First part of fix for #77464
10547 2006-02-03  Alexander Olk  <alex.olk@googlemail.com>
10549         * ButtonBase.cs, ContainerControl.cs, Forms.cs,
10550           ThemeWin32Classic.cs: Fix for #77458. Correct handling of
10551           AcceptButton border drawing.
10553 2006-02-03  Peter Dennis Bartok  <pbartok@novell.com> 
10555         * Form.cs: Moved positioning of form after auto scaling is applied,
10556           otherwise it would possibly use wrong form size.
10558 2006-02-03  Peter Dennis Bartok  <pbartok@novell.com>
10560         * Control.cs (RecreateHandle): No need to re-create any child
10561           controls, the child windows will get destroyed automatically by
10562           the windowing system or driver, and re-created when the handle
10563           is being accessed the first time. Fixes #77456
10564         * Form.cs: No longer setting the form to closing if the handle is 
10565           being recreated. This seems like the right thing to do, don't
10566           have a bug or testcase for this, though.
10568 2006-02-02  Peter Dennis Bartok  <pbartok@novell.com>
10570         * FileDialog.cs: Suspend/Resume layouting when changing sizes of
10571           controls to avoid unwanted side effects
10573 2006-02-02  Peter Dennis Bartok  <pbartok@novell.com> 
10575         * Control.cs: 
10576           - ScaleCore needs to scale the bounds, not the ClientSize of the 
10577             control. Fixes #77416.
10578           - DefaultSize is 0,0 for control
10579         * TextBoxBase.cs: 
10580           - DefaultSize is 100, 20
10581           - SetBoundsCore: Now enforcing the height, no matter if the provided
10582             height is more or less than the preferred one, as long as AutoSize
10583             is on
10584         * Form.cs: Apply documented fudge factor. Part of item 3 fix for #77416
10586 2006-02-02  Peter Dennis Bartok  <pbartok@novell.com>
10588         * Control.cs:
10589           - ResumeLayout: Fixed logic when to call PerformLayout, we may not
10590             call unless both performLayout is true *and* we have a pending
10591             layout change
10592           - ResumeLayout: MS does not completely nest Suspend and Resume,
10593             they bottom out at 0, fixed our code to match that.
10594           - UpdateBounds/SetBoundsCore: Moved calling of UpdateDistances() to
10595             SetBoundsCore, we were updating even when we shouldn't. This fixes
10596             swf-anchors mis-anchoring when resizing the app fast and lots.
10597           - UpdateDistances: Now only setting the left and top distance if 
10598             we have a parent and are not suspended, this is based on
10599             a suggestion by Don Edvaldson in bug #77355.
10600           - OnVisibleChanged: Fixed logic when to create the control. We may
10601             not create the control if we have no parent or if it's not visible;
10602             switched to using Visible property instead of is_visible field 
10603             since the property also considers parent states. This fixes a bug
10604             when starting Paint.Net
10606 2006-02-02  Jackson Harper  <jackson@ximian.com>
10608         * Form.cs: If the forms handle hasn't been created yet don't call
10609         into xplatui to make it top most, just set the topmost flag on the
10610         form in CreateParams
10611         * XplatUIX11.cs: Handle WS_EX_TOPMOST.
10613 2006-02-01  Jackson Harper  <jackson@ximian.com>
10615         * ScrollableControl.cs: Refactored the Recalculate method a
10616         little, this wasn't handling all the variants of bottom and right
10617         bars needed to be added and added/removed based on their
10618         counterparts being added/removed (which changes the drawable
10619         size). Also we special case client widths and heights of 0 and
10620         don't add the scrollbar for those.
10622 2006-02-01  Peter Dennis Bartok  <pbartok@novell.com>
10624         * XplatUIX11.cs: 
10625           - Added method to get AbsoluteGeometry(); currently unused, but might
10626             be used in the future, if we try again to figure out toplevel
10627             coordinates with some more crappy window managers
10628           - Added FrameExtents() method to retrieve the WM set decoration size
10629           - Tried to fix up AddConfigureNotify and handling of ReparentNotify 
10630             to deal with at least KDE, FVWM and metacity (Fixes #77092)
10631         * Hwnd.cs: 
10632           - Added whacky_wm tracking var for metacity
10633           - Added logic to have default menu height if the actual menu height
10634             has not yet been calculated (part of fix for #77426)
10635         * Form.cs: Keep track whether client size has been set and re-set 
10636           it if a menu is added/removed afterwards (Fixes #77426)
10638 2006-01-31  Jackson Harper  <jackson@ximian.com>
10640         * Control.cs: When a new Site is set on the component attempt to
10641         pull the AmbientProperties from it.
10643 2006-01-31  Peter Dennis Bartok  <pbartok@novell.com>
10645         * ThemeWin32Classic.cs: Menu background is drawn in ColorMenu, not
10646           in the background of the owning form. Fixes #77332
10648 2006-01-31  Alexander Olk  <alex.olk@googlemail.com>
10650         * MimeIcon.cs: Fix for #77409
10652 2006-01-31  Alexander Olk  <alex.olk@googlemail.com>
10654         * XplatUIX11GTK.cs: Initial import
10656 2006-01-31  Jordi Mas i Hernandez <jordimash@gmail.com>
10658         * FixedSizeTextBox: fixes class signature
10660 2006-01-30  Jackson Harper  <jackson@ximian.com>
10662         * FixedSizeTextBox.cs: New internal class that represents a
10663         textBox that will not be scaled.
10664         * TreeView.cs:
10665         * ComboBox.cs:
10666         * UpDownBase.cs: Use the new FixedSizeTextBox instead of a
10667         standard TextBox.
10668                 
10669 2006-01-30  Peter Dennis Bartok  <pbartok@novell.com> 
10671         * XplatUIX11.cs: Retrieve default screen number instead of
10672           assuming 0. Attempted fix for #77318
10674 2006-01-30  Peter Dennis Bartok  <pbartok@novell.com>
10676         * XplatUIWin32.cs: 
10677           - GetWindowPos: When a window is parented by FosterParent, use 
10678             the desktop instead of FosterParent as the base to get coordinates
10679           - CreateWindow: Don't make FosterParent the parent window for Popups
10680             if we don't want a taskbar entry, Popups automatically don't get one
10681         * Hwnd.cs: Need to call remove to actually remove the key from the
10682           hash table
10684 2006-01-30  Mike Kestner  <mkestner@novell.com>
10686         * MenuAPI.cs: adjust MainMenu item popup location to y=0.
10688 2006-01-30  Jackson Harper  <jackson@ximian.com>
10690         * TreeView.cs:
10691         * TreeNode.cs: Raise events no matter how the treenode is
10692         checked. Patch by Don Edvalson.
10694 2006-01-30  Jackson Harper  <jackson@ximian.com>
10696         * TreeNode.cs: Signature fix.
10698 2006-01-29  Alexander Olk  <alex.olk@googlemail.com>
10700         * ThemeClearlooks.cs: Fixed a crash in ProgressBar drawing.
10702 2006-01-20  Mike Kestner  <mkestner@novell.com>
10704         * Form.cs: Add ActiveTracker property to do Captures and perform mouse
10705         event forwarding when menus are active.
10706         * MenuAPI.cs: kill the GrabControl hack.  Use Form.ActiveTracker.
10707         Most of the patch is pdb's with a little rework.
10709 2006-01-26  Peter Dennis Bartok  <pbartok@novell.com> 
10711         * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs, XplatUIOSX.cs: 
10712           Removed GetMenuDC and ReleaseMenuDC methods; replaced
10713           by PaintEventStart(handle, false) and PaintEventEnd(handle, false)
10714         * Form.cs: Changed WM_NCPAINT handler to use PaintEventStart and End
10715         * InternalWindowManager.cs: Added use of PaintEventStart/End to
10716           handling of WM_NCPAINT message, now passing the PaintEventArgs to
10717           the PaintWindowDecorations method
10718         * MainMenu.cs: Switched logic from GetMenuDC to PaintEventStart
10719         * MdiChildContext.cs: Switched logic from GetMenuDC to PaintEventStart
10720         * MenuAPI.cs: Made tracker window invisible
10721         * XplatUIWin32.cs:
10722           - Removed GetMenuDC and ReleaseMenuDC methods
10723           - Implemented the client=false path for PaintEventStart and
10724             PaintEventEnd
10726 2006-01-26  Peter Dennis Bartok  <pbartok@novell.com>
10728         * XplatUIWin32.cs(SetBorderStyle): Fixed3D needs a border
10729         * XplatUIX11.cs(DeriveWindowStyles): Updated to match fixed Form
10730           styles
10731         * Form.cs: 
10732           - MaximizeBox, MinimizeBox: Recreate the handle when setting
10733             the style
10734           - CreateParams: Reworked the styles to match MS look'n'feel,
10735             removed automatic setting of MinimizeBox, MaximizeBox, etc. via
10736             the WS_OVERLAPPEDWINDOW style. This fixes #76823.
10738 2006-01-26  Peter Dennis Bartok  <pbartok@novell.com> 
10740         * XplatUIX11.cs(GetWindowState): Now throwing an exception when the 
10741           window is not mapped, since otherwise every form that's being 
10742           created is considered minimized, which is wrong.
10743         * Form.cs: Catching the exception and returning our internal value
10744           instead
10746 2006-01-26  Peter Dennis Bartok  <pbartok@novell.com>
10748         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs: Added new driver method
10749           SetWindowMinMax() to have means to tell the driver about the minimum,
10750           maximum and maximized state window sizes. (Part of the fix for #76485)
10751         * Form.cs:
10752           - Implemented tracking of minimum and maximum window size, now calling
10753             new SetWindowMinMax() driver method to tell the driver (Part of the
10754             fix for #76485)
10755           - Finished handling of WM_GETMINMAXINFO method, now setting all values
10756             (Completes fix for #76485)
10757           - Calling new SetWindowMinMax driver method when the handle for a 
10758             form is created, to make sure the driver knows about it even if
10759             the values have been set before the window was created
10760           - Now eating the WM_WINDOWPOSCHANGED message if the form is minimized
10761             to avoid messing up our anchoring calculations (partial fix
10762             for #77355)
10763         * XplatUIStructs.cs: Added MINMAXINFO struct (moved from Win32 driver)
10764         * XplatUIX11.cs:
10765           - Added _NET_WM_STATE_HIDDEN property for detecting minimized state
10766           - Improved GetWindowState() to detect 'Minimized' state on Metacity 
10767             (and presumably other freedesktop.org compliant WMs). Left the
10768             assumption unmapped=minimized, needed for SetVisible to work.
10769           - Now setting the window state when creating windows
10770           - Fixed SetVisible to consider/set the window state when mapping
10771             a Form. We cannot set the state before it's mapped, and we cannot
10772             use Form.WindowState once it's mapped (since it would ask the
10773             driver and get 'normal'. Therefore, we grab the state before
10774             mapping, map, and then set state.
10775           - Implmemented SetWindowMinMax method; Metacity does not seem to
10776             honor the ZoomHints, though.
10777         * XplatUIWin32.cs:
10778           - Removed MINMAXINFO (moved to XplatUIStructs)
10779           - Added SetWindowMinMax stub (on Win32 the only way to set that
10780             information is in response to the WM_GETMINMAXINFO message, which
10781             is handled in Form.cs)
10782           - Added logic to SetVisible to set the proper window state when a 
10783             form is made visible (fixes #75720)
10785 2006-01-26  Jackson Harper  <jackson@ximian.com>
10787         * Control.cs (BeginInvoke): Automagically handle EventHandlers the
10788         same way we handle them with Invoke.
10790 2006-01-25  Peter Dennis Bartok  <pbartok@novell.com> 
10792         * Form.cs:
10793           - Added tracking of window state so CreateParams can return
10794             the appropriate style
10795           - Moved setting of WS_CAPTION style in CreateParams to allow
10796             styles without caption
10797         * DataGridTextBoxColumn.cs: We are now also creating the TextBox 
10798           control if the TextBox property is accessed. Fixes #77345
10799         * Control.cs:
10800           - get_Created: now uses is_disposed and is_created to determine
10801             return value (suggested by Jackson)
10802           - CreateHandle: No longer exits if the handle is being recreated
10803           - RecreateHandle: If the handle is not yet created call the 
10804             appropriate method to create either control or handle. If the
10805             control is already created CreateHandle will simply exit instead
10806             of just creating the handle
10807         * Hwnd.cs: Removed expose_pending tracking, no longer needed since we
10808           now SendMessage WM_DESTROY directly to the control when DestroyWindow
10809           is called.
10810         * XplatUIX11.cs: 
10811           - When DestroyWindow is called, instead of waiting for the 
10812             DestroyNotification from X11, we directly post it to the WndProc
10813             and immediately dispose the hwnd object.
10814             Same applies to DestroyChildWindows, and this obsoletes the
10815             expose_pending tracking. Contrary to Win32 behaviour we destroy our
10816             child windows before our own, to avoid X11 errors.
10817           - Removed the direct sending of WM_PAINT on UpdateWindow
10818         * XplatUIWin32.cs:
10819           - Reworked DoEvents and GetMessage to allow access to internal queue
10820             even when trying non-blocking access to the queue.  Fixes #77335. 
10821             Based on a patch suggestion by Don Edvalson. The new private
10822             GetMessage can now also be used as a backend for a PeekMessage
10823             frontend version.
10824         * XplatUI.cs: Improved debug output for CreateWindow
10826 2006-01-25  Jackson Harper  <jackson@ximian.com>
10828         * Help.cs: Allow param to be null. Patch by Don Edvalson.
10830 2006-01-24  Jackson Harper  <jackson@ximian.com>
10832         * ComboBox.cs: Clamp the max value set for the vertical scrollbar
10833         when we have a MaxDropItems lower then the selected index.
10835 2006-01-24  Jackson Harper  <jackson@ximian.com>
10837         * Control.cs: Don't allow selection of non visible controls, allow
10838         selection of controls without parents.
10840 2006-01-24  Jordi Mas i Hernandez <jordimash@gmail.com>
10842         * ThemeWin32Classic.cs: Fixes Datagrid drawing issues
10843         * DataGridDrawingLogic.cs: Add editing row only when is necessary
10845 2006-01-23  Jackson Harper  <jackson@ximian.com>
10847         * UpDownBase.cs: Make the textbox handle all the selection and
10848         tabbing. This fixes tabing to updown controls.
10850 2006-01-24  Jordi Mas i Hernandez <jordimash@gmail.com>
10852         * TextBoxBase.cs: fixes exception thown the object was null
10854 2006-01-23  Jackson Harper  <jackson@ximian.com>
10856         * ButtonBase.cs: Just use the base CreateParams. They set
10857         visibility and enabled correctly.
10858         * ComboBox.cs:
10859         * TrackBar.cs:
10860         * MonthCalendar.cs: Lets let the base set as much of the
10861         createparams as possible so we don't have duplicate code all over
10862         the place.
10864 2006-01-22  Alexander Olk  <alex.olk@googlemail.com>
10866         * ThemeGtk.cs: Added TrackBar and some experimental code to
10867           get double buffering back
10869 2006-01-21  Jordi Mas i Hernandez <jordimash@gmail.com>
10871         * DataGrid.cs: Allows row number set internally higher than the last
10872         when creating a new row. Restores the editing functionality.
10874 2006-01-20  Mike Kestner  <mkestner@novell.com>
10876         * MimeIcon.cs: delay Image creation until the icons are accessed
10877         instead of creating 190 scaled images on GnomeHandler startup.
10879 2006-01-19  Peter Dennis Bartok  <pbartok@novell.com> 
10881         * TextBoxBase.cs (WndProc): When handling WM_KEYDOWN we need to
10882           first call base before processing the event. Fixes #77279
10884 2006-01-19  Peter Dennis Bartok  <pbartok@novell.com>
10886         * XplatUIWin32.cs, Cursor.cs: Fixed code that wrongly assumed
10887           that the stride for the GDI bitmap would match the stride of
10888           a DIB or a Cursor.
10890 2006-01-19  Alexander Olk  <alex.olk@googlemail.com>
10892         * ThemeGtk.cs: Added ProgressBar, RadioButton, CheckBox
10894 2006-01-19  Jackson Harper  <jackson@ximian.com>
10896         * ComboBox.cs: Hookup the text controls keydown event so we get
10897         those when the text control has the focus.
10899 2006-01-18  Peter Dennis Bartok  <pbartok@novell.com> 
10901         * Label.cs: Now using the base events instead of defining new ones;
10902           this allows us to just call the base properties without having to
10903           duplicate all base property logic 
10905 2006-01-18  Peter Dennis Bartok  <pbartok@novell.com>
10907         * Label.cs: A label by default is not a tabstop (Fixes one of our
10908           failing nunit tests)
10910 2006-01-18  Peter Dennis Bartok  <pbartok@novell.com> 
10912         * XplatUIWin32.cs: Fixed wrong DoEvents logic. Fixes #77282
10913         * XplatUIX11.cs: Removed WM_PAINT check from DoEvents. Fixes #77282
10915 2006-01-18  Peter Dennis Bartok  <pbartok@novell.com>
10917         * Cursor.cs: Reimplemented creating cursor bitmaps without using
10918           the Bitmap(Stream) constructor which is semi-broken on MS GDI+.
10919           This fixes #77218
10920         * XplatUIWin32.cs: 
10921           - Reimplemented creating Bitmaps from DIBs since the Bitmap(Stream) 
10922             constructor creates images that can't be saved. Part of the fix
10923             for #76103
10924           - Added handling of CF_BITMAP as CF_DIB to clipboard code (Fixes #76103)
10925           - SetWindowState: Switched ShowWindow flags (part of an upcoming 
10926             bug fix for handling window state in forms properly)
10928 2006-01-18  Alexander Olk  <alex.olk@googlemail.com>
10930         * ThemeGtk.cs: Simplify ScrollBar drawing
10932 2006-01-18  Jackson Harper  <jackson@ximian.com>
10934         * Splitter.cs: Set the default dock style for the splitter control
10935         in the constructor.
10937 2006-01-18  Alexander Olk  <alex.olk@googlemail.com>
10939         * ThemeGtk.cs: Corrected StateType and ShadowType for
10940           gtk_paint_box
10942 2006-01-18  Alexander Olk  <alex.olk@googlemail.com>
10944         * Control.cs: Make use of Theme.DoubleBufferingSupported
10945         * ThemeGtk.cs:
10946           - Added drawing for flat style buttons
10947           - Added ScrollBar drawing
10949 2006-01-18  Alexander Olk  <alex.olk@googlemail.com>
10951         * ThemeClearlooks.cs: Removed some unneeded code.
10952         * ThemeGtk.cs: First part of ThemeGtk enhancements.
10954 2006-01-17  Peter Dennis Bartok  <pbartok@novell.com>
10956         * LinkLabel.cs: We need to update the hover drawing when
10957           leaving the control as well.
10959 2006-01-18  Jordi Mas i Hernandez <jordimash@gmail.com>
10961         * DataGrid.cs: Clicking on non empty areas in the columns
10962            area was giving an exception
10964 2006-01-17  Jackson Harper  <jackson@ximian.com>
10966         * ThemeWin32Classic.cs:
10967         * ListView.cs: Do not draw/clip the headers when the header style
10968         is None.
10970 2006-01-17  Jordi Mas i Hernandez <jordimash@gmail.com>
10972         * DataGrid.cs: Fixes 77260
10973         
10974 2006-01-17  Jordi Mas i Hernandez <jordimash@gmail.com>
10976         * DataGrid.cs: Clicking on a column on a empty grid was giving
10977           an exception
10979 2006-01-17  Peter Dennis Bartok  <pbartok@novell.com>
10981         * DataGrid.cs (OnKeyDown): Don't use the array if it's empty
10982           or any keypress will crash the grid.
10984 2006-01-17  Mike Kestner  <mkestner@novell.com>
10986         * MainMenu.cs (OnMenuChanged): set Height=0 to cause relayout.
10987         * ThemeWin32Classic.cs (CalcItemSize): clear Height/Width for 
10988         invisible/previously-visible items.
10989         [Fixes #76909]
10991 2006-01-17  Alexander Olk  <alex.olk@googlemail.com>
10993         * ThemeClearlooks.cs:
10994         - Added CL_Draw_Button method; now other theme controls that are 
10995           not derived from button or do not have a button can draw buttons
10996           too
10997         - Updated ComboBox drawing
10998         - Beautified RadioButton drawing
10999         - Corrected drawing of bottom and left tabs
11000         - Beautified DateTimePicker and MonthCalendar
11001         - Added CPDrawButton and CPDrawRadioButton
11003 2006-01-16  Jackson Harper  <jackson@ximian.com>
11005         * ComboBox.cs: Set the initial value of the scrollbar to the
11006         current index. Reduce the numbers of refreshs and IndexOfs called.
11008 2006-01-14  Alexander Olk  <alex.olk@googlemail.com>
11010         * FileDialog.cs: When the file listview is focused hitting the
11011           backspace key moves the fileview to the parent directory
11013 2006-01-13  Peter Dennis Bartok  <pbartok@novell.com>
11015         * Form.cs: 
11016           - Added RecreateHandle call when changing taskbar visibility to 
11017             trigger reparenting in Win32 driver (Fixes #75719)
11018           - If a window has minimize or maximize buttons, it cannot have
11019             a help button
11020         * XplatUIWin32.cs:
11021           - CreateWindow: When no WS_EX_APPWINDOW style is found we parent
11022             the toplevel form with FosterParent (A toolwindow not on the
11023             taskbar) (Fixes #75719)
11024           - Made FosterParent a toolwindow
11026 2006-01-13  Alexander Olk  <alex.olk@googlemail.com>
11028         * FileDialog.cs: Don't crash if InitialDirectory doesn't exist
11030 2006-01-13  Alexander Olk  <alex.olk@googlemail.com>
11032         * ToolTip.cs: If SetToolTip is called from a control and the mouse
11033           is currently over that control, make sure that tooltip_window.Text
11034           gets updated
11036 2006-01-13  Mike Kestner  <mkestner@novell.com>
11038         * MimeIcon.cs: size_t on lp64 fix for gdk_pixbuf_save_to_file extern.
11040 2006-01-13  Jackson Harper  <jackson@ximian.com>
11042         * TreeView.cs: On MS GetNodeAt never actually factors in the X
11043         value passed.  Also redraw the selected node when we recieve
11044         focus, so tabbing between trees works correctly.
11046 2006-01-13  Alexander Olk  <alex.olk@googlemail.com>
11048         * MimeIcon.cs: GnomeHandler: older gnome versions don't have
11049           ~/.gconf/%gconf-tree.xml, so use
11050           .gconf/desktop/gnome/interface/%gconf.xml
11052 2006-01-13  Peter Dennis Bartok  <pbartok@novell.com> 
11054         * TextControl.cs: Draw text in gray if control is disabled
11056 2006-01-13  Peter Dennis Bartok  <pbartok@novell.com> 
11058         * TreeView.cs: Draw the focus rectangle outside the highlight, to
11059           make sure it's always visible. Fixes #76680.
11061 2006-01-13  Peter Dennis Bartok  <pbartok@novell.com>
11063         * TreeView.cs: Implemented Wheel scrolling. Fixes #76531
11065 2006-01-13  Jonathan Chambers  <jonathan.chambers@ansys.com>
11067         * PageSetupDialog.cs: Added.
11068         * PrintDialog.cs: Attributes.
11069         * PrintPreviewControl.cs: Updates.
11070         * PrintPreviewDialog.cs: Updates.
11071         
11072 2006-01-12  Peter Dennis Bartok  <pbartok@novell.com>
11074         * Control.cs: Undid my selection check fix, since it's not needed
11075         * TextBoxBase.cs:
11076           - Now considering the presence of hscroll/vscroll when sizing
11077             vscroll/hscroll respectively. Fixed bug #77077
11078           - Added Left/Up/Down/Right to IsInputKey list to prevent
11079             ContainerControl from stealing them. This fixes what I broke
11080             with my last checkin.
11082 2006-01-12  Peter Dennis Bartok  <pbartok@novell.com> 
11084         * ScrollableControl.cs: Implemented dockpadding. Fixes #77166. And
11085           I finally understand how the property can be set without a setter :-)
11087 2006-01-12  Peter Dennis Bartok  <pbartok@novell.com>
11089         * Application.cs:
11090           - Switched RunLoop to use static Message.Create to create a 
11091             Message object
11092           - Added PreProcessMessage call in runloop for keyboard events; this
11093             is part of the fix for #77219, I overlooked this originally in the
11094             MSDN doc for PreProcessMessage
11095         * Control.cs:
11096           - Removed call to PreProcessMessage from handling of keyboard 
11097             messages; it's supposed to be done in the message pump
11098           - Moved call to ProcessKeyEventArgs inside ProcessKeyMessage as
11099             per MSDN documentation.
11100           - IsInputChar: All chars are input chars by default; removed the 
11101             parent calling chain, MS does not document that
11102           - PreProcessMessage: If IsInputChar is true, we want to return false
11103             to allow dispatching of the message
11104           - When selecting the next control, now also check that we're not
11105             selecting ourselves again and therefore return a false positive.
11106         * TextBoxBase.cs:
11107           - Tried to match return values for IsInputKey and ProcessDialogKey
11108             to what MS returns; moved processing of our special keys outside
11109             ProcessDialogKey since MS does not seem to return true on those.
11110           - Moved code that previously was in ProcessDialogKey into new private
11111             ProcessKey method, which gets called upon receipt of WM_KEYDOWN
11112           - Reworked handling of WM_CHAR to not have to duplicate code from
11113             Control.cs anymore, instead we simply call down to base.
11114            
11115 2006-01-12  Jackson Harper  <jackson@ximian.com>
11117         * ComboBox.cs: We always need to refresh the text area when
11118         EndUpdate is called. Fixes the combobox in the file dialog.
11119         * Control.cs: Don't create the creator_thread until the controls
11120         handle is created.  Also in InvokeRequired we check if the
11121         creator_thread is null. This gives the effect of InvokeRequired
11122         returning true if the controls handle is not created yet, and
11123         matches MS.
11125 2006-01-12  Peter Dennis Bartok  <pbartok@novell.com>
11127         * XplatUI.cs:
11128           - Added StartLoop() driver method. This is used to allow drivers to
11129             prepare for an upcoming GetMessage/TranslateMessage/DispatchMessage
11130             loop for a particular thread
11131           - Added EndLoop() driver method. This is called once the message
11132             pump for the thread is shut down
11133           - Added SupportsTransparency method to allow the driver to indicate
11134             opacity support for windows
11135         * Form.cs:
11136           - Removed TODO attribute, completed AllowTransparency property
11137           - Added documented logic to Opacity
11138         * GroupBox.cs, Label.cs, LinkLabel.cs, PropertyGrid.cs, Control.cs,
11139           ButtonBase.cs, CheckedListBox.cs: Combined Jackson's and Miguel's
11140           versions of CompatibleTextRendering
11141         * X11Structs.cs: Added opacity atom to our atom enumeration
11142         * Hwnd.cs: Added opacity tracking (we need to track since the opacity
11143           of a form might be set before it's reparented by the WM, and we need
11144           the opacity value without calling up to Form)
11145         * XplatUIDriver.cs: Added StartLoop(), EndLoop() and 
11146           SupportsTransparency() driver methods
11147         * Application.cs: Now calling StartLoop and EndLoop driver methods
11148         * XplatUIX11.cs:
11149           - Added opacity atom registration
11150           - Added StartLoop()/EndLoop() methods. They're empty right now but
11151             will need to get implemented when we switch to a per-thread queue
11152           - Implemented SupportsTransparency() method
11153           - Implemented SetWindowTransparency() method
11154           - Added support for setting the opacity value when a window is
11155             reparented (since the opacity needs to be set on the WM frame)
11156         * XplatUIOSX.cs, XplatUIWin32.cs:
11157           - Added SupportsTransparency(), StartLoop() and EndLoop() methods
11159 2006-01-12  Alexander Olk  <alex.olk@googlemail.com>
11161         * ThemeClearlooks.cs: Don't crash if TabControl.Parent is null.
11163 2006-01-12  Alexander Olk  <alex.olk@googlemail.com>
11165         * FileDialog.cs: Added ToolTip for MWFFileView
11166         * MimeIcon.cs: Rewrote GnomeHandler.
11167           - Get currently used gnome icon theme from
11168             ($HOME)/.gconf/%gconf-tree.xml
11169           - Make use of inherited icon themes
11170           - Support SVG icon themes like Tango via librsvg
11172 2006-01-12  Miguel de Icaza  <miguel@novell.com>
11174         Revert's Jackson's revert which broke 2.0 builds.   Fix both
11175         builds. 
11176         
11177         * Application.cs: Move the use_compatible_text_rendering outside
11178         the NET_2_0 define.  If we ever need to use the
11179         use_compatible_text_rendering on the individual controls they will
11180         access the variable from the common shared code paths.
11182 2006-01-12  Peter Dennis Bartok  <pbartok@novell.com>
11184         * XplatUI.cs:
11185           - Added more granular debug options
11186           - Added method to print both window text and id
11187           - Switched debug output to use new Window() debug method
11188           - Added IsEnabled() driver method
11189           - Added EnableWindow() driver method
11190         * Form.cs:
11191           - Removed end_modal; no longer needed, new loop handles termination
11192             via 'closing' variable
11193           - If form is modal, setting DialogResult will now initiate loop
11194             termination via 'closing' variable
11195           - Added support for is_enabled/WS_DISABLED to CreateParams
11196           - Close() now just send the WM_CLOSE message; the WM_CLOSE handler
11197             does all the work
11198           - Removed code that's now in RunLoop from ShowDialog()
11199           - Added various documented sanity checks to ShowDialog()
11200           - Added handling of WM_DESTROY message; we set 'closing' on getting
11201             the message to indicate the message pump to terminate
11202           - Added handling of new internal WM_CLOSE_INTERNAL message - it's
11203             send by the Application.ExitThread method. (We send the message
11204             to destroy the window after all other events have been
11205             processed through the queue, instead of destroying the handle 
11206             directly)
11207           - Moved code from Close() method to WM_CLOSE handler; added logic
11208             to only send close-related events if the form is not displayed
11209             modal
11210         * Splitter.cs (..ctor): Fixed typo in resource name
11211         * Control.cs:
11212           - DrawBackgroundImage: Explicitly selecting the wrap mode for the
11213             brush now
11214           - set_Cursor: Now only setting calling into XplatUI if the handle for
11215             the control is already created; this avoids implict handle creation
11216             or crashes if it's not created
11217           - set_Enabled: Now setting the enabled state via the new driver method
11218             instead of just tracking it
11219           - CreateParams: Added logic to set WS_DISABLED based on enabled state
11220           - CreateControl: Reordered event firing and method calls to more
11221             closely fire events in the order MS does. Now setting the
11222             enabled state in the driver when creating the control.
11223           - SetVisibleCore: Moved when the OnVisibleChanged event is fired to
11224             match MS order
11225         * FolderBrowserDialog.cs, MessageBox.cs, ButtonBase.cs, TrackBar.cs,
11226           MonthCalendar.cs: get_CreateParams: Added setting of WS_DISABLED 
11227         * XplatUIStructs.cs: Added internal WM_CLOSE_INTERNAL mesage id
11228         * Hwnd.cs:
11229           - Added tracking of window enabled state (get_Enabled/set_Enabled)
11230           - Added EnabledHwnd property to easily allow a driver to find the
11231             handle of the first enabled window in the parent chain (this is
11232             used by drivers to pass up input events of disabled windows)
11233         * XplatUIDriver.cs: Added IsEnabled() method
11234         * Application.cs:
11235           - Removed crude and obsolete exiting tracking variable
11236           - Removed internal ModalRun(); replaced by RunLoop()
11237           - Implemented private CloseForms() method to allow closing all 
11238             windows owned by a particular (or all) threads
11239           - Exit() now properly closes all windows without forcing the message
11240             pump to quit
11241           - Removed obsolete InternalExit() method
11242           - Changed Run() methods to use new RunLoop() message pump
11243           - Implemented new RunLoop() method for both modal and non-modal forms
11244         * CommonDialog.cs:
11245           - get_CreateParams: Added setting of WS_DISABLED
11246           - Simplified ShowDialog(); now all the work is done in RunLoop(),
11247             invoked via Form.ShowDialog()
11248         * NativeWindow.cs: We don't remove the window from the collection when
11249           the handle is destroyed; there might still be messages for it in the
11250           queue (mainly the resulting WM_DESTROY); instead it will be removed
11251           when Control calls InvalidateHandle in the WM_DESTROY handler
11252         * XplatUIX11.cs:
11253           - CreateWindow: Added logic to handle the WS_DISABLED window style
11254           - EnableWindow: Implemented based on Hwnd.Enabled
11255           - GetMessage: Reset PostQuitState so the method can be called again
11256           - Implemented support for disabled windows (passing messages to the
11257             first enabled parent) in handling all input messages
11258           - Added optimizations for handling Expose events
11259           - Implemeted new driver method IsEnabled()
11260           - Now always resetting paint pending tracking vars when we start paint
11261           - Re-implemented UpdateWindow via just sending a WM_PAINT message
11262         * XplatUIOSX.cs: Added IsEnabled method stub
11263         * XplatUIWin32.cs: Implemented new IsEnabled() method
11265 2006-01-11  Jackson Harper  <jackson@ximian.com>
11267         * ButtonBase.cs, CheckedListBox.cs, GroupBox.cs, Label.cs,
11268         LinkLabel.cs, PropertyGrid.cs: Unbreak 1.1 build. Consolidate the
11269         variables a little.
11270         * ColorDialog.cs: Clear out the old form before adding the new
11271         panel.  
11273 2006-01-11  Jackson Harper  <jackson@ximian.com>
11275         * X11Dnd.cs: Make sure to add all the text formats when adding
11276         strings to the data object.
11277         * TreeNodeCollection.cs: When adding to a sorted tree we need to
11278         do some redrawing too.  Also change the UpdateNode to an
11279         UpdateBelow so the newly added node gets painted.
11280         
11281 2006-01-11  Miguel de Icaza  <miguel@novell.com>
11283         * ButtonBase.cs, CheckedListBox.cs, GroupBox.cs, Label.cs,
11284         LinkLabel.cs, PropertyGrid.cs: Implement the
11285         UseCompatibleTextRendering property for 2.x
11287         * Application.cs (SetCompatibleTextRenderingDefault): Add. 
11289 2006-01-11  Jackson Harper  <jackson@ximian.com>
11291         * TreeView.cs: Use the property for setting the selected node so
11292         the correct events get raised.
11293         * TreeNode.cs: Update the tree when the fore/back colours of a
11294         node are set.
11296 2006-01-10  Jackson Harper  <jackson@ximian.com>
11298         * TreeView.cs: Allow setting SelectedNode to null.
11300 2006-01-9  Jonathan Chambers  <jonathan.chambers@ansys.com>
11302         * Form.cs: Fix support for Form TransparencyKey and Opacity on Windows.
11304 2006-01-9  Jonathan Chambers  <jonathan.chambers@ansys.com>
11306         * PrintControllerWithStatusDialog.cs: Update page number in dialog.
11308 2006-01-9  Jonathan Chambers  <jonathan.chambers@ansys.com>
11310         * PrintDialog.cs: Added attributes and set default property values.
11312 2006-01-9  Jonathan Chambers  <jonathan.chambers@ansys.com>
11314         * PrintControllerWithStatusDialog.cs: 
11315         Added PrintControllerWithStatusDialog.
11317 2006-01-9  Jonathan Chambers  <jonathan.chambers@ansys.com>
11319         * XplatUI.cs, Form.cs, XplatUIDriver.cs, XplatUIX11.cs, XplatUIOSX.cs, 
11320         XplatUIWin32.cs: Added support for Form TransparencyKey and Opacity on Windows.
11322 2006-01-9  Jonathan Chambers  <jonathan.chambers@ansys.com>
11324         * ComboBox.cs: Fix crash when there is no selected item (due to last commit)
11326 2006-01-09  Jonathan Chambers  <jonathan.chambers@ansys.com>
11328         * ComboBox.cs: Added KeyDown event handler for processing arrow keys
11329         and PgUp/PgDown. Also, scroll to selected item upon dropdown. Bugs 76857 and 76788.
11331 2006-01-08  Alexander Olk  <alex.olk@googlemail.com>
11333         * MimeIcon.cs: Added internal class SVGUtil.
11335 2006-01-08  Alexander Olk  <alex.olk@googlemail.com>
11337         * FileDialog.cs: Don't crash if there are two files with the
11338           same name but different locations.
11340 2006-01-08  John BouAntoun  <jba-mono@optusnet.com.au>
11342         * MonthCalendar.cs: Fixed annoying rendering bug when selecting
11343         dates across multiple month grids. Used to not highlight entire 
11344         month, but does now.
11345         
11346 2006-01-06  Jackson Harper  <jackson@ximian.com>
11348         * MonthCalendar.cs: Removed DoEvents call to prevent a running
11349         message loop. Change timer intervals to numbers that seem more
11350         natural.
11352 2006-01-06  John BouAntoun  <jba-mono@optusnet.com.au>
11354         * DateTimePicker.cs: Modified CalculateDropDownLocation to use the screen
11355           object for location info since screen object is now implemented.
11357 2006-01-05  Jackson Harper  <jackson@ximian.com>
11359         * AsyncMethodData.cs: Check if the call is complete before doing a WaitOne
11360         * AsyncMethodResult.cs: We no longer use a WeakReference for the
11361         AsyncMethodResult, this is because we ALWAYS want the
11362         ManualResetEvent to get set.
11363         * Control.cs: When disposing use an async invoke to call shutdown
11364         code, so that thigns don't block on the finalizer thread.  Also
11365         check if we even have a message loop before trying to send
11366         messages, if we don't then don't bother sending messages.
11367         - No more weak references for async methods
11368         * XplatUIDriver.cs: No more weak references for async methods.
11370 2006-01-04  Alexander Olk  <alex.olk@googlemail.com>
11372         * FontDialog.cs: Fix, don't throw an exception if FontFamily.Families
11373           returns two FontFamily with the same name
11375 2006-01-04  Peter Dennis Bartok  <pbartok@novell.com>
11377         * ThemeWin32Classic.cs, ThemeClearlooks.cs: Dropped stupid scheme of 
11378           drawing disabled text. Instead using the ColorGrayText color
11380 2006-01-04  Jackson Harper  <jackson@ximian.com>
11382         * TreeNode.cs: redraw the node when its image index is changed.
11384 2006-01-04  Peter Dennis Bartok  <pbartok@novell.com>
11386         * RichTextBox.cs: Same fix as last, just for SelectionColor. This
11387           time I checked there are no others like it.
11389 2006-01-04  Jackson Harper  <jackson@ximian.com>
11391         * AsyncMethodResult.cs: Use a ManualResetEvent instead of a mutex,
11392         this gives the behavoir I was looking for.
11393         * Control.cs: Special case Invoking EventHandlers, this matches MS
11394         and fixes part of bug #76326.
11396 2006-01-04  Alexander Olk  <alex.olk@googlemail.com>
11398         * ThemeClearlooks.cs, FileDialog.cs:
11399           - Reflect the latest Theme class changes
11400           - Remove Mono.Unix.Syscall.time in FileDialg and replace it 
11401             with DateTime
11402             
11403 2006-01-04  Alexander Olk  <alex.olk@googlemail.com>
11405         * Theme.cs: Cache UI resource images and resize them if needed
11407 2006-01-03  Peter Dennis Bartok  <pbartok@novell.com>
11409         * RichTextBox.cs: FormatText is 1-based, make it so when SelectionFont
11410           is called. This fixes the crash in Nexxia when setting the font
11411           attributes in the chat. [However, RTF needs a look-over to make sure
11412           that all SelectionXXX methods handle the special case that selection
11413           is empty and therefore the change must be applied to all text starting
11414           at the cursor/selection start]
11416 2006-01-03  Peter Dennis Bartok  <pbartok@novell.com> 
11418         * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs, XplatUIWin32.cs,
11419           XplatUIOSX.cs: Added SendMessage and PostMessage methods
11420         * X11Keyboard.cs: Switched to new way of calling PostMessage
11422 2006-01-03  Peter Dennis Bartok  <pbartok@novell.com>
11424         * Theme.cs: Added theme interface for images to allow the theme to
11425           control what images are used for things like FileDialog, MessageBox
11426           icons, etc.
11427         * MessageBox.cs: Now uses the new Theme icon/image interfaces
11429 2006-01-03  Alexander Olk  <alex.olk@googlemail.com>
11431         * FileDialog.cs:
11432           - Removed some dead code
11433           - Opening a recently used file does work now
11434           - Small UI enhancements
11435           - Refactoring
11437 2006-01-02  Alexander Olk  <alex.olk@googlemail.com>
11439         * FileDialog.cs: Forgot too add __MonoCS__
11441 2006-01-02  Alexander Olk  <alex.olk@googlemail.com>
11443         * FileDialog.cs: We are able to read recently used files now let's
11444           go on and write them.
11446 2006-01-01  Alexander Olk  <alex.olk@googlemail.com>
11448         * FileDialog.cs: Breathe some life into "last open"/"recently used"
11449           button
11450         * MimeIcon.cs: Do a check for the top level media type also
11452 2005-12-31  Alexander Olk  <alex.olk@googlemail.com>
11454         * ThemeClearlooks.cs:
11455           - Added CPDrawStringDisabled
11456           - ButtonBase_DrawText: Workaround for a DrawString bug; cut off
11457             some chars if the text doesn't fit into text_rect
11458           - DrawListViewItem: If View = View.LargeIcon center the image;
11459             rewrote the drawing of ListViewItem.Text if View = 
11460             View.LargeIcon
11462 2005-12-31  Alexander Olk  <alex.olk@googlemail.com>
11464         * MimeIcon.cs: Use default KDE icon theme if there is no
11465           "48x48" directory for the current icon theme, fixes #77114
11466         * Mime.cs: Disable not working and actually not used code. 
11467         * ThemeWin32Classic.cs:
11468           - Replace "new SolidBrush" in GetControlBackBrush and
11469             GetControlForeBrush with ResPool.GetSolidBrush
11470           - Changed DrawListViewItem from private to protected virtual
11471         * FileDialog.cs:
11472           - Added form.MaximizeBox = true
11473           - Don't throw an exception if there is a broken symbolic link
11475 2005-12-23  Jackson Harper  <jackson@ximian.com>
11477         * TabControl.cs: Give the panels focus, keyboard navigation is
11478         fixed so this works correctly now.
11479         - We need these key events also.
11480         * ToolBar.cs: Remove some of the poor mans double buffering.
11481         
11482 2005-12-24  Alexander Olk  <alex.olk@googlemail.com>
11484         * ComboBox.cs: The internal TextBox now returns the focus.
11486 2005-12-23  Jackson Harper  <jackson@ximian.com>
11488         * ThemeWin32Classic.cs:  Draw the text for all tab appearances.
11490 2005-12-23  Peter Dennis Bartok  <pbartok@novell.com>
11492         * Control.cs: Removed debug code
11493         * XplatUIX11.cs: Changed DestroyChildWindows to also consider
11494           implicit children
11496 2005-12-23  Peter Dennis Bartok  <pbartok@novell.com> 
11498         * Control.cs: When creating the control, update the Z-order after
11499           all it's children are created, too. (Fixes nexxia not showing
11500           picturebox bug)
11502 2005-12-23  Peter Dennis Bartok  <pbartok@novell.com>
11504         * Control.cs: Do not update the anchoring distances if layout is
11505           suspended, instead do it once layout is resumed
11507 2005-12-22  Peter Dennis Bartok  <pbartok@novell.com> 
11509         * Control.cs: 
11510           - After many hours of debugging, for both Jackson and
11511             myself, it turns out that it helps to set the parent of a control
11512             if you want to actually see it onscreen. In the spirit of that
11513             discovery, we're now setting the parent of the control and
11514             it's children when the control's handle is created. This fix
11515             will make Lutz Roeder's Reflector run happily. 
11516           - now just creating the handle instead of the whole control when
11517             getting a graphics context for the control.
11519 2005-12-22  Peter Dennis Bartok  <pbartok@novell.com>
11521         * ScrollableControl.cs: When calculating the canvas, don't consider
11522           the scrollbar widths. Instead, predict if horizontal scrollbar
11523           will affect canvas when deciding on vertical display and vice versa.
11525 2005-12-22  Peter Dennis Bartok  <pbartok@novell.com>
11527         * RichTextBox.cs: Set default RTF font for documents that don't
11528           have a font table (Fixes #77076)
11530 2005-12-22  Jackson Harper  <jackson@ximian.com>
11532         * TextBoxBase.cs: It's difficult to do, but you can have an empty
11533         clipboard. This prevents a NullRef in that case.
11534         * XplatUIX11.cs: Use CLIPBOARD not PRIMARY for our
11535         clipboard. PRIMARY is for the currently selected text only. (We
11536         should implement PRIMARY at some point.
11538 2005-12-21  Peter Dennis Bartok  <pbartok@novell.com>
11540         * XplatUIWin32.cs: Fixed the TEXTMETRIC structure, we were calling
11541           a Unicode function with a structure that was defined in Ansi way.
11542           This fixes #76942.
11544 2005-12-21  Jackson Harper  <jackson@ximian.com>
11546         * StatusBar.cs: Statusbar handles its fore/back colours on it's
11547         on. Because thats how it rolls. (and this avoids it using ambient
11548         colours).
11549         * ThemeWin32Classic.cs: Use the proper back color for filling.
11550         * Menu.cs: Use the system menu bar color for drawing menu
11551         bars. Using the window back color will bring ambient colours into
11552         the picture.
11554 2005-12-21  Alexander Olk  <alex.olk@googlemail.com>
11556         * ColorDialog.cs: Fixed a memory leak that caused a SIGSEV. A lot of
11557           Bitmaps were created and not disposed.
11559 2005-12-21  Peter Dennis Bartok  <pbartok@novell.com>
11561         * Control.cs (CreateControl): Don't do anything if the control is
11562           already created, otherwise we'd fire the OnCreated event more than
11563           once
11565 2005-12-21  Peter Dennis Bartok  <pbartok@novell.com> 
11567         * ComboBox.cs (FindStringCaseInsensitive): Don't search for emtpy strings,
11568           will always match. Instead return -1. Fixes #76464.
11570 2005-12-21  Peter Dennis Bartok  <pbartok@novell.com>
11572         * TextControl.cs (RecalculateLine): Only wrap if the wrap point is
11573           neither the beginning nor the end of the line (Fixes bug #76479)
11575 2005-12-21  Peter Dennis Bartok  <pbartok@novell.com> 
11577         * Control.cs:
11578           - ControlNativeWindow.ControlFromHandle(): Now handling situation
11579             where handle is invalid
11580           - FromHandle(): Now using hashtable-based ControlFromHandle() lookup
11581             instead of slower linear search
11582         * NativeWindow.cs: Don't remove the window from the hashtable until
11583           after the driver has destroyed it (since the driver might use
11584           Control.FromHandle to lookup the control object
11585         * Hwnd.cs: Added DestroyPending property to track if a window is 
11586           already destroyed as far as the driver is concerned and only hasn't
11587           yet notified the control
11588         * XplatUIX11.cs:
11589           - Activate(): Check if the window is still valid before using the 
11590             handle
11591           - Implemented DestroyChildWindow() method to mark child windows as
11592             destroyed when a window is destroyed. This prevents situations 
11593             where we might call an X method based on queued events for a
11594             window that already has been destroyed but we haven't yet pulled
11595             the destroy method from the queue.
11596           - Added a call to the new DestroyChildWindow() method to the drivers
11597             DestroyWindow code. Also now marking the destroyed window itself
11598             as pending
11600 2005-12-20  Jackson Harper  <jackson@ximian.com>
11602         * StatusBar.cs:
11603         * StatusBarPanel.cs: Don't calculate panel sizes on draw
11604         anymore. Just do them when needed, also track the rects of panels
11605         so that we can optimize refreshing more in the future.
11607 2005-12-20  Alexander Olk  <alex.olk@googlemail.com>
11609         * ColorDialog.cs: Fixed focus drawing in small color controls
11611 2005-12-19  Jackson Harper  <jackson@ximian.com>
11613         * InternalWindowManager.cs:
11614         * MdiWindowManager.cs: Cleanup some coordinate system changes so
11615         moving windows works properly.
11617 2005-12-19  Peter Dennis Bartok  <pbartok@novell.com> 
11619         * Control.cs: 
11620           - Removed call to InitLayout() from SetBoundsCore(); doc says
11621             it's only called when a control is added to a container
11622           - Split InitLayout logic, moved to separate UpdateDistances() method
11623             since we need to perform those calculations more often than just
11624             when adding the control to a container. (Needed to fix #77022)
11625           - Now calling UpdateDistances() from UpdateBounds() (fixes #77022)
11626           - Reduced the OnBindingContextChanged events count, don't send them
11627             unless the control is created, we still aren't totally matching
11628             MS, but I can't quite figure out some of their rules
11630 2005-12-18  Alexander Olk  <alex.olk@googlemail.com>
11632         * ThemeClearlooks.cs: Corrected distance between ProgressBar
11633           stripes
11635 2005-12-18  Alexander Olk  <alex.olk@googlemail.com>
11637         * ThemeClearlooks.cs:
11638           - Updated ProgressBar drawing
11639           - Corrected drawing of ScrollBars and scroll buttons
11640           - Some temporary fixes for minor pixel artefacts
11642 2005-12-18  Peter Dennis Bartok  <pbartok@novell.com> 
11644         * Control.cs:
11645           - Reworked Controls.Add(), Controls.Remove() and set_Parent() to
11646             cause events to be sent in the same order as MS does.
11647           - Added ChangeParent() method to trigger various OnXXXChanged events
11648             that need to be fired when a parent changes (This is a reworking
11649             of the patch from r54254, with the X11 errors fixed)
11650           - Removed SuspendLayout()/ResumeLayout() calls from Controls.Clear()
11651             since on MS we get OnLayoutChanged events when calling Clear()
11652           - Changed Enabled property to consider parent state as well, if a
11653             parent is not enabled, the control will not be either
11654           - Changed Parent property to simply call Controls.Add() since that
11655             now does all the work required, this way we avoid code duplication
11656           - Threw in a few OnBindingsContextChanged calls to try and match
11657             when MS sends them. We seem to send a few too many, though.
11658           - Added call to CreateControl when adding the control to a parent.
11659             We were never calling CreateControl. Still needs some work, in
11660             some places we treat HandleCreated and ControlCreated as equal, 
11661             which is wrong
11662           - Removed obsolete commented out code from UpdateZOrder()
11664 2005-12-18  Alexander Olk  <alex.olk@googlemail.com>
11666         * ThemeClearlooks.cs: Updated TrackBar drawing.
11668 2005-12-17  Alexander Olk  <alex.olk@googlemail.com>
11670         * FileDialog.cs: Patch for #76901 by Atsushi Enomoto
11672 2005-12-17  Alexander Olk  <alex.olk@googlemail.com>
11674         * FileDialog.cs: Add the Help button and the open readonly
11675           checkbox only if needed
11677 2005-12-16  Jackson Harper  <jackson@ximian.com>
11679         * Control.cs: Make sure we have an active menu before trying to
11680         process commands on it. Prevents menu-less forms from crashing
11681         when Alt is pressed.
11682         * TreeNodeCollection.cs: Some fixes to prevent null refs. Patch by
11683         Dieter Bremes.
11684         * RichTextBox.cs: Expand statement to help out gmcs and fix the
11685         2.0 build.
11687 2005-12-16  Jackson Harper  <jackson@ximian.com>
11689         * InternalWindowManager.cs: Don't translate tool windows screen
11690         coordinates. This fixes windows 'bouncing' around when being moved.
11692 2005-12-15  Peter Dennis Bartok  <pbartok@novell.com> 
11694         * TextBoxBase.cs:
11695           - MaxLength now treats 2^31-1 equal to unlimited length (this is
11696             not quite MS compatible, MS uses that number only for single line
11697             and 2^32-1 for multi-line, but I figure it won't hurt keeping
11698             the limit at 2GB)
11699           - Now enforcing the MaxLength limit when entering characters
11700           - Added argument to internal Paste() method to track if it's called
11701             from programatically or via keyboard, since keyboard driven pastes
11702             need to enforce max-length
11703           - Added logic to Paste to only paste as many chars as MaxLength 
11704             allows
11705         * RichTextBox.cs: Updated to use new obey argument for internal Paste()
11706         * TextControl.cs:
11707           - Added Length property to return number of characters in document
11708           - Added private CharCount property which only tracks actual chars
11709             in the document (no linefeeds) and fires event when CharCount
11710             changes
11711           - Added tracking of character count to all methods that alter it
11712           - Added LengthChanged event to allow applications to subscribe
11713             to any changes to the document
11715 2005-12-15  Peter Dennis Bartok  <pbartok@novell.com> 
11717         * TextBox.cs: 
11718           - Removed local password_char field (moved to TextBoxBase)
11719           - Now setting the document's password var when password is
11720             set
11721         * TextBoxBase.cs:
11722           - Added password_char field (needed here so MultiLine can
11723             access it)
11724           - Added logic to MultiLine property setter to set the document's
11725             variable when password display is allowed
11726           - Removed debug code and made some debug code conditional
11727         * TextControl.cs:
11728           - Added RecalculatePasswordLine() method to handle special password
11729             char only lines
11730           - Added PasswordChar property, also added related tracking vars
11731           - Draw() method now uses local text var for grabbing text to draw,
11732             this var is set to line.text unless we're doing password display,
11733             then it is set to the pre-generated all-password-chars line
11734           - Added calling RecalculatePasswordLine() method for password lines
11736 2005-12-14  Peter Dennis Bartok  <pbartok@novell.com> 
11738         * Hwnd.cs: 
11739           - Added Reparented property to allow tracking of Window Manager
11740             reparenting actions (which affect X/Y calculations of toplevel 
11741             windows)
11742           - Made ToString() print window handles in hex
11743         * XplatUIX11.cs:
11744           - AddConfigureNotify(): Now uses reparented state off Hwnd to
11745             determine if X/Y needs offsetting
11746           - AddConfigureNotify(): Fixed offset calculations
11747           - Now adds ReparentNotify messages into the queue
11748           - Now processes ReparentNotify messages and causes a 
11749             WM_WINDOWPOSCHANGED message to be sent upstream if a window
11750             is reparented (as most likely it's X/Y coordinates are changed
11751             due to that)
11753 2005-12-14  Jackson Harper  <jackson@ximian.com>
11755         * XplatUIX11.cs: Tool windows still need to respek focus.
11757 2005-12-14  Peter Dennis Bartok  <pbartok@novell.com> 
11759         * Control.cs: Undid 54254 (causing XConfigure errors) so we can
11760           have a working release
11762 2005-12-13  Jackson Harper  <jackson@ximian.com>
11764         * Form.cs: Update styles after setting the border style regardless
11765         of whether or not the window is using a window manager.
11767 2005-12-13  Jackson Harper  <jackson@ximian.com>
11769         * Form.cs: We now hook into an internal window manager instead of just an
11770         MDI subsystem, this is so we can have properly behaving tool windows.
11771         * MdiClient.cs: Naming change, MdiChildContext is now WindowManager
11772         * InternalWindowManager.cs: New internal class that acts as a
11773         window manager for tool windows and as a base for mdi windows.
11774         * MdiWindowManager.cs: New class that acts as a window manager for
11775         mdi windows.
11777 2005-12-12  Jackson Harper  <jackson@ximian.com>
11779         * Control.cs: Updates so we match behavoir for for implicit
11780         controls. Fixes explosions in MDI.
11782 2005-12-12  Jackson Harper  <jackson@ximian.com>
11784         * Control.cs: Implement Invalidate (Region).
11786 2005-12-12  Peter Dennis Bartok  <pbartok@novell.com> 
11788         * Control.cs: 
11789           - Changed handling of Controls.Add/Controls.Remove to fire (almost) 
11790             the same events as MS does. MS fires events for each property 
11791             except, for unknown reasons, Cursor, when the control is reparented. 
11792             I can't seem to totally match add/remove since MS also fires some 
11793             VisibleChanged events, which makes no sense. Consolidated the
11794             parenting code into a separate method so it can be called from
11795             both Add and Remove. set_Parent no longer needs any special logic
11796             as it calls the parent's add method which implicitly fires
11797             all events
11798           - Removed some obsolete code and debug output
11799           - Enabled state is inherited from parents, if this is enabled
11801 2005-12-08  Peter Dennis Bartok  <pbartok@novell.com> 
11803         * Form.cs: Removed commented out code
11805 2005-12-08  Peter Dennis Bartok  <pbartok@novell.com>
11807         * Control.cs:
11808           - Added internal version of Invoke, with additional argument 
11809             indicating if we're calling it from a Dispose() handler. That
11810             way we can avoid BeginInvoke throwing an exception if we're
11811             calling for an already destroyed window.
11812           - Added a dispose argument to BeginInvokeInternal, and made the
11813             check if a valid window handle chain exists conditional on
11814             it not being a dispose call
11815           - Removed code in DestroyHandle to destroy our children. Since we
11816             now handle the WM_DESTROY message we will catch all our children
11817             being destroyed.
11818           - Now calling OnHandleDestroyed from our new WM_DESTROY handler
11819         * Form.cs:
11820           - Added a field to track the application context of the form.
11821           - No need to set closing variable as response to WM_CLOSE, instead
11822             we destroy the window. We also call PostQuitMessage if the form
11823             has an application context (which makes it the main app form,
11824             which, when closed terminates the app)
11825         * XplatUI.cs:
11826           - Dropped Exit() method, it's naming was confusing
11827           - Added PostQuitMessage() which causes GetMessage to return false
11828             once the message queue is empty
11829         * XplatUIDriver.cs, XplatUIWin32.cs: Dropped Exit(), added 
11830           PostQuitMessage()
11831         * XplatUIOSX.cs: Switched signature for Exit method since Exit() is
11832           no longer a valid XplatUI method, but left it in since it's used
11833           internally. Added empty PostQuitMessage() method.
11834         * MenuAPI.cs: Replaced call to Exit() with call to
11835           PostQuitMessage, even though this is probably no longer needed.
11836         * Hwnd.cs: Added 'pretty' ToString() to support debugging.
11837         * X11Structs.cs: Added pretty XEvent.ToString() to support debugging.
11838         * Application.cs:
11839           - Replaced call to XplatUI.Exit() with PostQuitMessage()
11840           - Removed old debug code that would call XplatUI for exception
11841             display, enabled standard exception handling (Still not enabled
11842             though, until NativeWindow's ExternalExceptionHandler define
11843             is removed
11844         * NativeWindow.cs:
11845           - Added internal method to allow control to update NativeWindow
11846             after a window has been destroyed
11847           - Added handling of already destroyed windows when calling i
11848             DestroyWindow
11849           - Added removal of handle from list on ReleaseHandle
11850         * XplatUIX11.cs:
11851           - Dropped GetMessageResult var and related code
11852           - Added PostQuitState to field to track if PostQuitMessage has been
11853             called
11854           - Dropped Exit() method
11855           - Added PostQuitMessage() method
11856           - GetMessage now will return false if PostQuitState is set and no
11857             more messages are in the queue.
11858           - Expose handler will no longer generate WM_PAINT messages if we are
11859             in PostQuitState since it's very likely any windows have already
11860             been destroyed, and since Hwnd won't get updated until we have
11861             processed the DestroyNotify we'd be causing X errors.
11862         
11863 2005-12-07  Peter Dennis Bartok  <pbartok@novell.com>
11865         * Control.cs(WndProc): Apparently I'm suffering from brain cloud.
11866           Thanks to Mike for pointing out the err of my ways.
11868 2005-12-07  Peter Dennis Bartok  <pbartok@novell.com>
11870         * Control.cs(PreProcessMessage): Moved menu handling back, but
11871           after all other key handling, to match MS (who handles Menu in
11872           DefWndProc)
11873         * Menu.cs (WndProc): Removed my brainfart
11875 2005-12-07  Peter Dennis Bartok  <pbartok@novell.com>
11877         * Control.cs(PreProcessMessage): Removed special menu handling 
11878         * Menu.cs (WndProc): Added handling of WM_SYSKEYUP for menu purposes.
11880 2005-12-07  Mike Kestner  <mkestner@novell.com>
11882         * Control.cs : special case SYSKEYUP so that we can adjust keynav
11883         state according in tracker.
11884         * Menu.cs : promote tracker field to base class and provide a tracker
11885         lookup capability.  Add/Remove shortcuts dynamically if the top menu
11886         has a tracker. Unparent items that are removed from the collection.
11887         * MenuAPI.cs : implement mnemonic, shortcut, and arrow-based keynav.
11888         * Theme*.cs: add always_show_hotkeys field to support configurability
11889         of mnemonic display.  win32 doesn't show mnemonics until Alt is
11890         pressed.
11892 2005-12-07  Jackson Harper  <jackson@ximian.com>
11894         * MdiChildContext.cs: Use Control.ResetCursor.
11895         * Control.cs: ResetCursor needs to set the property so that the
11896         correct XplatUI call gets made.
11898 2005-12-07  Peter Dennis Bartok  <pbartok@novell.com>
11900         * Control.cs: More fixes to make our key events match MS. We
11901           were not setting the modifier state on KeyData, and we were
11902           not generating any events when Alt was pressed with a key
11903           since handling of WM_SYSxxx was missing for the OnKey methods.
11905 2005-12-07  Jackson Harper  <jackson@ximian.com>
11907         * MdiChildContext.cs: reenable the sizing code.
11908         - When the mouse leaves a window reset its cursor.
11910 2005-12-07  Alexander Olk  <alex.olk@googlemail.com>
11912         * ThemeClearlooks.cs: Reflect latest Hwnd changes
11914 2005-12-07  Peter Dennis Bartok  <pbartok@novell.com>
11916         * Hwnd.cs: Now using the theme 3d bordersize to calculate
11917           widths of Fixed3D borders
11919 2005-12-07  Jackson Harper  <jackson@ximian.com>
11921         * MdiClient.cs: Fix warnings. Earn Mike's love.
11923 2005-12-07  Alexander Olk  <alex.olk@googlemail.com>
11925         * ThemeClearlooks.cs:
11926           - Adjusted mouse over button color
11927           - Added first parts of CheckBox drawing
11928           - Added correct color for selected text background
11929           - Fixed ComboBox drawing
11930           - Added CPDrawBorder3D and CPDrawBorder
11932 2005-12-06  Peter Dennis Bartok  <pbartok@novell.com>
11934         * XplatUIX11.cs: Added call to XBell for AudibleAlert
11936 2005-12-06  Peter Dennis Bartok  <pbartok@novell.com> 
11938         * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs, XplatUIWin32.cs,
11939           XplatUIOSX.cs: Added AudibleAlert() method to have a means to
11940           alert users via sound. We could add an enum arg with different
11941           types of alerts in the future
11943 2005-12-06  Peter Dennis Bartok  <pbartok@novell.com>
11945         * Control.cs: Fix behaviour problems pointed out by Mike
11947 2005-12-05  Mike Kestner  <mkestner@novell.com>
11949         * StatusBarPanel.cs: add Invalidate method and hook it into all the
11950         prop setters.  Calls parent.Refresh for now, but could be maybe be
11951         optimized with an internal method on StatusBar at some point.
11952         [Fixes #76513]
11954 2005-12-05  Peter Dennis Bartok  <pbartok@novell.com> 
11956         * RichTextBox.cs: Implemented get_SelectionColor
11958 2005-12-05  Alexander Olk  <alex.olk@googlemail.com>
11960         * ThemeClearlooks.cs:
11961           - Removed dead code
11962           - Draw black button border only if button is Form.AcceptButton
11963           - Draw correct button color for pressed RadioButton if the mouse 
11964             has entered the button
11965           - Updated ProgressBar drawing!
11966           - Updated CPDrawSizeGrip drawing
11967           - Updated StatusBarPanel drawing
11969 2005-12-05  Mike Kestner  <mkestner@novell.com>
11971         * Control.cs (PreProcessMessage): add Keys.Alt based on LParam value.
11972         * X11Keyboard.cs (SendKeyboardInput): formal lParam for alt mod.
11974 2005-12-04  Alexander Olk  <alex.olk@googlemail.com>
11976         * ThemeClearlooks.cs: Initial check-in, activate with
11977           export MONO_THEME=clearlooks
11978         * ThemeEngine.cs: Added ThemeClearlooks
11980 2005-12-03  Mike Kestner  <mkestner@novell.com>
11982         * MenuAPI.cs: deactivate menus prior to calling item.PerformClick.
11983         [Fixes #76897]
11985 2005-12-02  Jackson Harper  <jackson@ximian.com>
11987         * Form.cs: If the child form has no menu the default main menu is
11988         used as the active menu.
11990 2005-12-02  Peter Dennis Bartok  <pbartok@novell.com> 
11992         * ListBox.cs: Check if any items exist before trying to resolve 
11993           coordinates into items
11995 2005-12-02  Peter Dennis Bartok  <pbartok@novell.com>
11997         * ThemeWin32Classic.cs: Hatchbrush on Win32 seems to always use white
11998           as the second color for the background hatch
12000 2005-12-02  Peter Dennis Bartok  <pbartok@novell.com>
12002         * TextBoxBase.cs: Now uses Jackson's new and improved ImplicitScrollbar
12003         * RichTextBox.cs: FormatText position arguments are 1-based, now making
12004           sure that what we pass to FormatText is always 1-based. Fixes #76885
12006 2005-11-29  Miguel de Icaza  <miguel@novell.com>
12008         * NumericUpDown.cs (EndInit): When we are done initializing,
12009         reflect any updates on the UI.
12011 2005-12-02  Jackson Harper  <jackson@ximian.com>
12013         * ImplicitHScrollBar.cs:
12014         * ImplicitVScrollBar.cs: New scrollbars that don't take focus from
12015         their container controls.
12016         * TreeView.cs: Use the new implicit scrollbars.
12018 2005-12-02  Jackson Harper  <jackson@ximian.com>
12020         * TreeView.cs: Make top_node internal so the TreeNodeCollections
12021         can play with it.
12022         * TreeNodeCollection.cs: If we remove the topnode we need to
12023         update topnode to the next node in line.
12024         - When clearing nodes go through the same process as removing
12025         them, so they get depareneted and checked if they are top node.
12027 2005-12-01  Jackson Harper  <jackson@ximian.com>
12029         * TreeView.cs: When imagelists are used the image area is
12030         selectable as well as the text.
12031         - If there are no selected nodes select the first one.
12032         * TreeNodeCollection.cs: Getting the TreeView is mildly expensive,
12033         so don't do it more then we need to.
12035 2005-12-01  Jackson Harper  <jackson@ximian.com>
12037         * ThemeWin32Classic.cs: Reimplement the scroll arrow drawing so
12038         that arrows can be scaled.
12040 2005-12-01  Jackson Harper  <jackson@ximian.com>
12042         * TreeNode.cs : Fixed bugs that caused FullPathTest + Traverse to
12043         fail. Patch by Dieter Bremes
12045 2005-11-30  Jackson Harper  <jackson@ximian.com>
12047         * Form.cs: Property is 2.0 only
12048         * PrintDialog.cs: Signature fix.
12050 2005-11-30  Peter Dennis Bartok  <pbartok@novell.com>
12052         * TextControl.cs: 
12053           - No longer artificially moves text 2 pixels down (now that we have
12054             borders this is no longer needed)
12055           - Added calcs for left, hanging and right indent
12057 2005-11-23  Mike Kestner  <mkestner@novell.com>
12059         * Menu.cs: mark MenuChanged internal, since it's not exposed by MS.
12061 2005-11-30  Jackson Harper  <jackson@ximian.com>
12063         * MdiChildContext.cs: Set the cloned menus forms, as these don't
12064         get cloned as part of CloneMenu ().
12065         * Menu.cs: Make sure the parent of the items get set correctly
12066         when they are added.  And the owners are notified of the changes.
12067         * Form.cs: Create an ActiveMenu property, so that when MDI is used
12068         we can change the menu being displayed/handled by the form without
12069         changing the menu assosciated with the form.
12070         - Don't let Mdi children draw/handle menus.
12071         
12072 2005-11-30  Jackson Harper  <jackson@ximian.com>
12074         * Menu.cs: Switch the MenuChanged method to OnMenuChanged and add
12075         a MenuChanged event. Just to make the API a little more
12076         consistent.
12077         * MainMenu.cs:
12078         * MenuItem.cs: Use the new OnMenuChanged
12079         * MdiChildContext.cs: Handle menu merging.
12080         * Form.cs: Implement MergedMenu.
12081         
12082 2005-11-30  Jackson Harper  <jackson@ximian.com>
12084         * Menu.cs: We were misusing Add. Add goes behind the specified
12085         index according to the docs, and does not replace the specified
12086         index. So I added an Insert method.
12088 2005-11-30  Peter Dennis Bartok  <pbartok@novell.com>
12090         * TextBoxBase.cs:  Implemented Ctrl-Ins (Copy), Shift-Ins (Paste) and
12091           Shift-Del (Cut), apparently Emacs uses these old Win 2.x keys. This
12092           is for Jackson
12093         * RichTextBox.cs: Added calls to base for DnD events
12095 2005-11-28  Peter Dennis Bartok  <pbartok@novell.com>
12097         * TextControl.cs:
12098           - Fixed drag-selection related crash; style fixes
12099           - Implemented undo class
12100             o Implemented method to capture document state for specified
12101               range in document tree
12102             o Implemented method to restore captured document state
12103             o Implemented cursor tracking
12104             o Implemented basic undo stack
12105           - Added undo cursor tracking to methods altering cursor location
12106           - Added undo tracking to selection deletion (still missing
12107             other text-altering hookups)
12108         * RichTextBox.cs:
12109           - Added SelectionLength property
12110           - Implemented CanPaste()
12111           - Implemented Paste()
12112           - Added missing protected methods
12113           - Fixed RTF->Document conversion; now uses font index 0 and color 
12114             index 0 as the default font for the parsed text
12115           - Fixed RTF<->Document font size translation
12116           - Fixed RTF generation, now properly handles cross-tag boundaries
12117             for single line selection
12118           - No longer always appends blank line to generated RTF
12119           - Removed TODOs
12120           - Added missing attributes
12121           - Hooked up undo-related methods
12122         * TextBoxBase.cs:
12123           - Implemented Copy()
12124           - Implemented Paste()
12125           - Implemented Cut()
12126           - Fixed caret mis-behaviour on backspace across line-boundaries
12128 2005-11-29  Jackson Harper  <jackson@ximian.com>
12130         * MdiClient.cs: Add a method for activating mdi children. Very
12131         basic right now. I imagine someday it might need more girth.
12132         * MenuItem.cs: Implement MDI lists. When mdilist is true the mdi
12133         children windows names are added to the menu item.
12134         * ThemeWin32Classic.cs: Draw the arrow if the item is an
12135         mdilist. This happens regardless of whether or not there are any
12136         mdi windows to see in the list, and according to my tests happens
12137         before the items are even added. Also happens if there isn't even
12138         an mdi client to get windows from.
12140 2005-11-29  Alexander Olk  <alex.olk@googlemail.com>
12142         * ThemeWin32Classic.cs: Make DrawFlatStyleRadioButton protected
12143         * ThemeNice.cs: Fix drawing of flatstyle radiobuttons
12145 2005-11-29  Jordi Mas i Hernandez <jordimash@gmail.com>
12147         * DataGridTableStyle.cs:
12148           - Create always the styles for the missing columns even if they are
12149             provided by the user (not default table style)
12150         * DataGrid.cs:
12151           - Fixes bug 76770
12152           - Fixes SetDataBinding (always re-attach source)
12153           - Fixes SetNewDataSource (only clear styles if they are not for 
12154             this source)
12155          -  Expands OnTableStylesCollectionChanged to handle style refresh 
12156             and remove properly
12158 2005-11-29  Jackson Harper  <jackson@ximian.com>
12160         * FileDialog.cs: Implement missing bits, remove some dead
12161         code.
12162         * FontDialog.cs: Implement missing Apply stuff, and ToString. Move
12163         creation of the panel so that the options set on the dialog are
12164         seen when the panel is created.
12165         * TreeView.cs: raise a click when items are clicked.
12166         
12167 2005-11-29  Jackson Harper  <jackson@ximian.com>
12169         * MdiClient.cs: Pass some signature methods through to base.
12171 2005-11-28  Jackson Harper  <jackson@ximian.com>
12173         * ListView.cs: Raise the click event when items are clicked.
12175 2005-11-28  Jackson Harper  <jackson@ximian.com>
12177         * MdiClient.cs: Make this algorithm even more beautiful.  And fix
12178         a nullref.
12180 2005-11-27  Alexander Olk  <alex.olk@googlemail.com>
12182         * ThemeNice.cs: - Removed 1 pixel bitmaps
12183           - Use SmoothingMode.AntiAlias where it makes sense
12184             (ScrollButton arrow for example)
12185           - Enhanced Button focus drawing
12186           - Fixed ComboBox drawing (no artefacts anymore, focus
12187             rectangle is back again, reduced size of ComboButton, etc.)
12188           - Fixed RadioButton focus drawing for Appearence.Button
12189           - Slight ScrollButton redesign
12190           - Some LinearGradientBrush size fixes
12191           - GroupBoxes have now rounded edges
12192           - Fixed StatusBar drawing
12194 2005-11-25  Alexander Olk  <alex.olk@googlemail.com>
12196         * ThemeNice.cs: - Remove dead code
12197           - use correct background colors for menus, etc.
12198           - Fake pixel drawing with 1 pixel bitmaps
12200 2005-11-24  Jackson Harper  <jackson@ximian.com>
12202         * MdiClient.cs: Size the scrollbars when resizing the window.
12203         - Resize the maximized windows when the client is resized
12204         * Form.cs: Make the child context available
12205         
12206 2005-11-23  Jackson Harper  <jackson@ximian.com>
12208         * MdiChildContext.cs: Don't size windows if they are maximized.
12210 2005-11-23  Mike Kestner  <mkestner@novell.com>
12212         * ContextMenu.cs: use MenuTracker.
12213         * Control.cs: remove menu handle usage.
12214         * Form.cs: remove menu handle usage.
12215         * Hwnd.cs: remove menu handle usage.
12216         * MainMenu.cs: Draw method moved here from MenuAPI.DrawMenuBar. Proxy
12217         motion and clicks to the new Tracker handlers.
12218         * Menu.cs: add sizing accessors, SelectedItem prop, kill CreateItems
12219         and handle usage.
12220         * MenuAPI.cs: refactored to combine popup and menubar event handling.
12221         Killed the MENU and MENUITEM data types and associated collections
12222         since we now keep the info on Menu and MenuItem. Expanded TRACKER into
12223         MenuTracker class that exposes the leftovers from the old MenuAPI
12224         static methods. Restructured Capture handling so that only one grab is
12225         done for the entire menu hierarchy instead of handing off grabs to
12226         submenus. Tracker now has an invisible control to Capture when active.
12227         * MenuItem.cs: add sizing accessors, kill Create
12228         and handle usage.
12229         * Theme.cs: remove menu handle and MENU(ITEM) usage.
12230         * ThemeWin32Classic.cs: use Menu/MenuItem sizing props instead of
12231         MENU(ITEM). remove menu handle usage, use Menu directly.
12232         * XplatUIDriver.cs: remove menu handle usage.
12233         * XplatUIOSX.cs: remove menu handle usage.
12234         * XplatUIWin32.cs: remove menu handle usage.
12235         * XplatUIX11.cs: remove menu handle usage.
12237 2005-11-22  Jackson Harper  <jackson@ximian.com>
12239         * Hwnd.cs: Don't compute the menu size for
12240         DefaultClientRectangle.
12241         - Reenable menu sizes being computed for GetClienRectangle.
12242         * Form.cs: Remove comment of trechery
12243         
12244 2005-11-22  Jackson Harper  <jackson@ximian.com>
12246         * Hwnd.cs: The adjustments for the menu bar are made when it is
12247         attached to the form.
12249 2005-11-19  Jackson Harper  <jackson@ximian.com>
12251         * XplatUIX11.cs: Create an HGRN of the invalid area for WM_NCPAINT
12252         (just like on windows).
12254 2005-11-19  Jackson Harper  <jackson@ximian.com>
12256         * MdiChildContext.cs: Handle all the buttons ourselves. We can't
12257         use real buttons anymore because they are in non client area. The
12258         one TODO here is that I need to somehow invalidate a section of
12259         the non client area.
12261 2005-11-18  Jackson Harper  <jackson@ximian.com>
12263         * Control.cs: Put the enum check back in now that MDI doesnt have
12264         to use this to set border styles.
12265         * Form.cs: Only set mdi child windows borders if the handle has
12266         been created.
12267         * MdiChildContext.cs: Don't set the InternalBorderStyle, just pass
12268         this directly on to the driver.
12269         - Get the move start position before adjusting for the titlebar
12270         height, this fixes the windows "skipping" when they are first
12271         moved.
12273 2005-11-18  Jackson Harper  <jackson@ximian.com>
12275         * XplatUIX11.cs: Just compute the mdi borders separately as they
12276         don't totally match up with normal form borders.
12278 2005-11-18  Jackson Harper  <jackson@ximian.com>
12280         * Control.cs: Set WS_ styles for borders, so that the driver does
12281         not have to retrieve the control instance to figure out what kind
12282         of borders it should have.
12283         * Form.cs: Set the WS_EX_MDICHILD flag on mdi children, so the
12284         driver can know its an mdi child easily.
12285         * XplatUIX11.cs: Get the border styles and whether the window is
12286         MDI from the Styles and ExStyles params instead of having to get a
12287         control. This prevents a chicken and egg problem.       
12289 2005-11-18  Jackson Harper  <jackson@ximian.com>
12291         * MdiClient.cs: Fix typo so scrollbars show up correctly.
12293 2005-11-18  Jackson Harper  <jackson@ximian.com>
12295         * MdiClient.cs: Calculate when to add and remove scrollbars
12296         correctly.
12297         * MdiChildContext.cs: Adjust the y position to take the titlebar
12298         into account.
12299         - No height for FormBorderStyle.None
12301 2005-11-18  Jackson Harper  <jackson@ximian.com>
12303         * Control.cs: Allow non enum values to be used for
12304         InternalBorderStyle.  MDI does this to set a special border style.
12305         - New utility methods for converting points to/from client coords
12306         - Add the newly created control to the Controls collection before
12307         updating its style. This way UpdateStyle can walk the control
12308         heirarchy to find the control if needed.
12309         so I don't need to create a new Point object all the time.
12310         * Form.cs: Let MDI windows handle their border styles.
12311         - Set styles on MDI windows so the correct title style is derived.
12312         * MdiChildContext.cs: Move all the painting and window handling
12313         into the non client area.
12314         - Use correct sizing and put correct buttons on frames based on
12315         the FormBorderStyle.
12316         - Notify the mdi client about scrolling
12317         - Need to handle the buttons ourselves now, because they are all
12318         in non client areas and we can't add controls there.
12319         * MdiClient.cs: Halfway to scrolling, this implementation is
12320         somewhat broken though, we need to check to make sure other
12321         windows aren't causing scrolling before removing the bars. Also
12322         the bars need to be drawn on top, maybe I can switch implicit
12323         controls to be on top.
12324         * Hwnd.cs: caption_height and tool_caption_height are now
12325         properties of an hwnd, this way they can be set by the driver
12326         based on the type of window they are.  In X11 the window manager
12327         handles the decorations so caption_height is zero unless its an
12328         MDI window.
12329         - Add 3 pixel borders for MDI windows (0xFFFF).
12330         - Get rid of some code duplication, have DefaultClientRectanle
12331         just call GetClientRectangle.
12332         * XplatUIX11.cs: Pass caption_height and tool_caption_height to
12333         Hwnd now.
12334         - Set border styles differently for mdi windows.
12335         * XplatUIOSX.cs: Pass caption_height and tool_caption_height to
12336         Hwnd now.
12337         
12338 2005-11-15  Mike Kestner  <mkestner@novell.com>
12340         * Menu.cs: when adding an item to the collection, if item is already 
12341         parented, remove it from the parent.
12343 2005-11-13  Alexander Olk  <alex.olk@googlemail.com>
12345         * X11DesktopColors.cs: Added KDE support
12347 2005-11-11  Peter Dennis Bartok  <pbartok@novell.com>
12349         * XplatUIWin32.cs: 
12350           - Clipboard methods now can translate Rtf format
12351           - No longer removes clipboard contents whenever a new format is added
12352             to allow placing multiple formats on the clipboard
12353         * Clipboard.cs: Clipboard now supports getting a IDataObject and
12354           will place all formats contained in it onto the clipboard. Also
12355           now cleans the clipboard before placing a new object onto it
12356         * RichTextBox.cs:
12357           - Implemented set_Rtf
12358           - Implemented set_SelectedRtf
12359           - Created InsertRTFFromStream() method to allow single code base
12360             for all properties and methods that insert RTF into document
12361           - Removed debug output
12362         * TextControl.cs:
12363           - Fixed Delete(int) to fix up line numbers
12364           - Fixed ReplaceSelection to combine start and end line
12365           - Fixed serious DeleteChars bug that would leave the document tree
12366             broken
12367           - Improved DumpTree with several logic checks to detect broken
12368             document trees
12369           - Removed debug lines
12370           - Fixed Caret.WordForward/WordBack moving code, now always also 
12371             updates caret.tag (fixes crash when word-selecting across tag
12372             boundaries via keyboard)
12373           - Added Insert() method for inserting multiline text into documents
12374           - Fixed DeleteChars() calculation errors that would cause a broken
12375             tag chain with multiple tag lines
12376           - DeleteChars() no longer crashes on multi-tag lines if not all tags
12377           - Split() no longer moves caret if split is at caret location
12378           - ReplaceSelection() now updates the cursor and re-displays it
12379           - ReplaceSelection() now uses new Insert() method to avoid code
12380             duplication
12381           - FormatText() can now handle formatting partial lines
12382         * TextBoxBase.cs:
12383           - Append now uses new TextControl.Insert() method (this avoids 
12384             duplicate code)
12385           - Implemented Ctrl-X (Cut) (
12386           - Implemented Ctrl-C (Copy)
12387           - Implemented Ctrl-V (Paste) (Still some bugs related to screen 
12388             regeneration when pasting text; roundtripping Copy&Paste within
12389             edit control still fails due to some calculation bugs in GenerateRTF)
12390           - The Delete key will now remove the current selection if it is visible
12391         * TextBox.cs: Removed debug lines
12392         * XplatUI.cs: Trigger initialization of DataFormats (which requires the
12393           driver to be initialized and can't therefore be done via a static ctor)
12395 2005-11-10  Peter Dennis Bartok  <pbartok@novell.com>
12397         * TextControl.cs: Added backend code for finding char arrays and strings
12398         * TextBoxBase.cs:
12399           - Added mouse wheel scroll support
12400           - Added support for VScroll and HScroll events
12401         * RichTextBox.cs:
12402           - Implemented all seven Find() variants
12403           - Implemented GetCharFromPosition()
12404           - Implemented GetCharIndexFromPosition()
12405           - Implemented GetLineFromIndex()
12406           - Implemented GetPositionFromCharIndex();
12407           - Implemented SaveFile for PlainText and UnicodeText
12408           - Fixed set_Font, now setting a new font applies that font to
12409             the whole document
12410           - Implemented generic Document to RTF converter
12411           - Implemented SaveFile for RichText format (still missing unicode
12412             conversion for non-ansi chars)
12413           - Implemented get_Rtf
12414           - Implemented get_SelectedRtf
12416 2005-11-09  Peter Dennis Bartok  <pbartok@novell.com>
12418         * Control.cs (WndProc): Call HandleClick after having sent OnMouseUp
12419           to allow any captures to be released before triggering OnClick. This
12420           way a click handler may capture the mouse without interference.
12421         * XplatUIX11.cs: Always send mouse messages to grab window if one exists.
12422           This way we send them even though X may not allow a grab (if the window
12423           isn't visible, for example)
12425 2005-11-08  Pedro Martinez Julia <pedromj@gmail.com>
12427         * DataGridViewRowEventArgs.cs: DataGridView implementation
12428         * DataGridViewElement.cs: DataGridView implementation
12429         * DataGridViewComboBoxCell.cs: DataGridView implementation
12430         * DataGridViewDataErrorContexts.cs: DataGridView implementation
12431         * DataGridViewCellErrorTextNeededEventArgs.cs: DataGridView implementation
12432         * DataGridViewColumnHeadersHeightSizeMode.cs: DataGridView implementation
12433         * ImageLayout.cs: DataGridView implementation
12434         * DataGridViewComboBoxColumn.cs: DataGridView implementation
12435         * DataGridViewCellMouseEventHandler.cs: DataGridView implementation
12436         * DataGridViewSelectionMode.cs: DataGridView implementation
12437         * IDataGridViewEditingControl.cs: DataGridView implementation
12438         * DataGridViewSortCompareEventHandler.cs: DataGridView implementation
12439         * DataGridViewCellStyleContentChangedEventHandler.cs: DataGridView implementation
12440         * DataGridViewAutoSizeModeEventHandler.cs: DataGridView implementation
12441         * DataGridViewColumnStateChangedEventHandler.cs: DataGridView implementation
12442         * DataGridViewColumnSortMode.cs: DataGridView implementation
12443         * DataGridView.cs: DataGridView implementation
12444         * DataGridViewRowStateChangedEventHandler.cs: DataGridView implementation
12445         * DataGridViewRowPostPaintEventArgs.cs: DataGridView implementation
12446         * DataGridViewDataErrorEventArgs.cs: DataGridView implementation
12447         * Padding.cs: DataGridView implementation
12448         * DataGridViewCellParsingEventArgs.cs: DataGridView implementation
12449         * DataGridViewCellStateChangedEventHandler.cs: DataGridView implementation
12450         * DataGridViewRowEventHandler.cs: DataGridView implementation
12451         * DataGridViewCellPaintingEventHandler.cs: DataGridView implementation
12452         * DataGridViewCellFormattingEventHandler.cs: DataGridView implementation
12453         * DataGridViewButtonCell.cs: DataGridView implementation
12454         * DataGridViewCellStyleContentChangedEventArgs.cs: DataGridView implementation
12455         * DataGridViewEditMode.cs: DataGridView implementation
12456         * DataGridViewCellValueEventArgs.cs: DataGridView implementation
12457         * DataGridViewRowCancelEventArgs.cs: DataGridView implementation
12458         * DataGridViewRowHeadersWidthSizeMode.cs: DataGridView implementation
12459         * DataGridViewCheckBoxColumn.cs: DataGridView implementation
12460         * DataGridViewCellToolTipTextNeededEventHandler.cs: DataGridView implementation
12461         * DataGridViewAutoSizeColumnsMode.cs: DataGridView implementation
12462         * DataGridViewCellEventHandler.cs: DataGridView implementation
12463         * DataGridViewEditingControlShowingEventHandler.cs: DataGridView implementation
12464         * DataGridViewCellStyleConverter.cs: DataGridView implementation
12465         * DataGridViewSelectedRowCollection.cs: DataGridView implementation
12466         * DataGridViewBindingCompleteEventHandler.cs: DataGridView implementation
12467         * DataGridViewColumnEventArgs.cs: DataGridView implementation
12468         * DataGridViewRowHeightInfoPushedEventHandler.cs: DataGridView implementation
12469         * DataGridViewRowContextMenuStripNeededEventHandler.cs: DataGridView implementation
12470         * QuestionEventArgs.cs: DataGridView implementation
12471         * IDataGridViewEditingCell.cs: DataGridView implementation
12472         * DataGridViewTriState.cs: DataGridView implementation
12473         * DataGridViewColumnDesignTimeVisibleAttribute.cs: DataGridView implementation
12474         * DataGridViewCellStateChangedEventArgs.cs: DataGridView implementation
12475         * DataGridViewColumnCollection.cs: DataGridView implementation
12476         * DataGridViewCellValueEventHandler.cs: DataGridView implementation
12477         * DataGridViewRowDividerDoubleClickEventHandler.cs: DataGridView implementation
12478         * DataGridViewCellFormattingEventArgs.cs: DataGridView implementation
12479         * DataGridViewColumn.cs: DataGridView implementation
12480         * DataGridViewCellBorderStyle.cs: DataGridView implementation
12481         * DataGridViewCellContextMenuStripNeededEventHandler.cs: DataGridView implementation
12482         * DataGridViewCellValidatingEventArgs.cs: DataGridView implementation
12483         * DataGridViewRow.cs: DataGridView implementation
12484         * DataGridViewImageCellLayout.cs: DataGridView implementation
12485         * DataGridViewImageCell.cs: DataGridView implementation
12486         * DataGridViewTopLeftHeaderCell.cs: DataGridView implementation
12487         * DataGridViewCheckBoxCell.cs: DataGridView implementation
12488         * DataGridViewHeaderCell.cs: DataGridView implementation
12489         * DataGridViewCellErrorTextNeededEventHandler.cs: DataGridView implementation
12490         * DataGridViewRowHeightInfoPushedEventArgs.cs: DataGridView implementation
12491         * DataGridViewAutoSizeColumnsModeEventHandler.cs: DataGridView implementation
12492         * DataGridViewTextBoxColumn.cs: DataGridView implementation
12493         * QuestionEventHandler.cs: DataGridView implementation
12494         * DataGridViewCellStyleScopes.cs: DataGridView implementation
12495         * DataGridViewSortCompareEventArgs.cs: DataGridView implementation
12496         * DataGridViewCellContextMenuStripNeededEventArgs.cs: DataGridView implementation
12497         * DataGridViewCell.cs: DataGridView implementation
12498         * DataGridViewCellEventArgs.cs: DataGridView implementation
12499         * DataGridViewClipboardCopyMode.cs: DataGridView implementation
12500         * DataGridViewCellStyle.cs: DataGridView implementation
12501         * DataGridViewColumnHeaderCell.cs: DataGridView implementation
12502         * DataGridViewRowPrePaintEventHandler.cs: DataGridView implementation
12503         * DataGridViewRowCancelEventHandler.cs: DataGridView implementation
12504         * TextFormatFlags.cs: DataGridView implementation
12505         * DataGridViewCellToolTipTextNeededEventArgs.cs: DataGridView implementation
12506         * DataGridViewDataErrorEventHandler.cs: DataGridView implementation
12507         * DataGridViewAdvancedCellBorderStyle.cs: DataGridView implementation
12508         * DataGridViewCellPaintingEventArgs.cs: DataGridView implementation
12509         * DataGridViewButtonColumn.cs: DataGridView implementation
12510         * DataGridViewRowsRemovedEventArgs.cs: DataGridView implementation
12511         * HandledMouseEventArgs.cs: DataGridView implementation
12512         * DataGridViewCellParsingEventHandler.cs: DataGridView implementation
12513         * DataGridViewColumnDividerDoubleClickEventHandler.cs: DataGridView implementation
12514         * DataGridViewCellMouseEventArgs.cs: DataGridView implementation
12515         * DataGridViewAutoSizeRowsMode.cs: DataGridView implementation
12516         * DataGridViewRowCollection.cs: DataGridView implementation
12517         * DataGridViewAdvancedBorderStyle.cs: DataGridView implementation
12518         * DataGridViewCellCancelEventHandler.cs: DataGridView implementation
12519         * DataGridViewHitTestType.cs: DataGridView implementation
12520         * DataGridViewAutoSizeModeEventArgs.cs: DataGridView implementation
12521         * DataGridViewColumnStateChangedEventArgs.cs: DataGridView implementation
12522         * DataGridViewColumnEventHandler.cs: DataGridView implementation
12523         * DataGridViewRowDividerDoubleClickEventArgs.cs: DataGridView implementation
12524         * DataGridViewAutoSizeRowMode.cs: DataGridView implementation
12525         * DataGridViewRowHeightInfoNeededEventArgs.cs: DataGridView implementation
12526         * DataGridViewRowsDeletedEventArgs.cs: DataGridView implementation
12527         * DataGridViewTextBoxEditingControl.cs: DataGridView implementation
12528         * DataGridViewContentAlignment.cs: DataGridView implementation
12529         * DataGridViewRowPostPaintEventHandler.cs: DataGridView implementation
12530         * DataGridViewComboBoxEditingControl.cs: DataGridView implementation
12531         * DataGridViewCellValidatingEventHandler.cs: DataGridView implementation
12532         * DataGridViewSelectedColumnCollection.cs: DataGridView implementation
12533         * DataGridViewPaintParts.cs: DataGridView implementation
12534         * DataGridViewCellCollection.cs: DataGridView implementation
12535         * DataGridViewRowsAddedEventArgs.cs: DataGridView implementation
12536         * DataGridViewImageColumn.cs: DataGridView implementation
12537         * DataGridViewRowsRemovedEventHandler.cs: DataGridView implementation
12538         * DataGridViewElementStates.cs: DataGridView implementation
12539         * DataGridViewRowHeightInfoNeededEventHandler.cs: DataGridView implementation
12540         * DataGridViewColumnDividerDoubleClickEventArgs.cs: DataGridView implementation
12541         * DataGridViewRowPrePaintEventArgs.cs: DataGridView implementation
12542         * DataGridViewRowStateChangedEventArgs.cs: DataGridView implementation
12543         * DataGridViewEditingControlShowingEventArgs.cs: DataGridView implementation
12544         * DataGridViewCellCancelEventArgs.cs: DataGridView implementation
12545         * DataGridViewRowHeaderCell.cs: DataGridView implementation
12546         * DataGridViewBindingCompleteEventArgs.cs: DataGridView implementation
12547         * DataGridViewTextBoxCell.cs: DataGridView implementation
12548         * DataGridViewBand.cs: DataGridView implementation
12549         * DataGridViewAutoSizeColumnModeEventArgs.cs: DataGridView implementation
12550         * DataGridViewHeaderBorderStyle.cs: DataGridView implementation
12551         * DataGridViewRowsAddedEventHandler.cs: DataGridView implementation
12552         * DataGridViewAutoSizeColumnMode.cs: DataGridView implementation
12553         * DataGridViewAutoSizeColumnModeEventHandler.cs: DataGridView implementation
12554         * DataGridViewAutoSizeColumnsModeEventArgs.cs: DataGridView implementation
12555         * DataGridViewRowErrorTextNeededEventHandler.cs: DataGridView implementation
12556         * DataGridViewSelectedCellCollection.cs: DataGridView implementation
12557         * DataGridViewRowContextMenuStripNeededEventArgs.cs: DataGridView implementation
12558         * DataGridViewRowErrorTextNeededEventArgs.cs: DataGridView implementation
12559         * DataGridViewComboBoxDisplayStyle.cs: DataGridView implementation
12561 2005-11-08  Peter Dennis Bartok  <pbartok@novell.com>
12563         * ThemeWin32Classic.cs: 
12564           - Draw the outside focus rectangle around buttons
12565           - Use CPDrawFocusRectangle to draw focus rectangles until Cairo
12566             doesn't use end caps for every dash of a line anymore. This
12567             workaround ignores the forecolor.
12569 2005-11-08  Kornél Pál  <kornelpal@hotmail.com>
12571         * ImageList.cs: Don't use ArgbColor with LayoutKind.Explicit as it isn't
12572           endian safe.
12574 2005-11-07  Jackson Harper  <jackson@ximian.com>
12576         * X11Dnd.cs: Set the X/Y positions on the DragEventArgs correctly.
12578 2005-11-07  Jackson Harper  <jackson@ximian.com>
12580         * ScrollableControl.cs: Calculate the maximum and change vars
12581         (more) correctly so that scrollbars appear as a sensible size.
12583 2005-11-04  Jackson Harper  <jackson@ximian.com>
12585         * TreeNodeCollection.cs: Refresh when nodes are cleared from the
12586         collection.
12587         * TreeView.cs: When the tree is sorted null out the top_node so
12588         that it is recalculated.
12589         - Use dotted lines instead of dashed lines to match MS better.
12591 2005-11-04  Jordi Mas i Hernandez <jordimash@gmail.com>
12593         * ListView.cs: 
12594           - Implements key search for items. Useful when browsing files with FileDialog
12595           - When changing view mode or when clear the items reset scrollbar positions
12597 2005-11-04  Jackson Harper  <jackson@ximian.com>
12599         * CurrencyManager.cs: Implement the MetaDataChanged event, the
12600         Reset method, and the CheckEmpty. CheckEmpty is just a total guess
12601         as to what the method may do as there is no real way of creating a
12602         derived CurrencyManager and calling the method. 
12604 2005-11-03  Jackson Harper  <jackson@ximian.com>
12606         * ThemeWin32Classic.cs: Implement ownerdrawing in the tab control
12607         * TabControl.cs: Add Ownerdrawing bits, add the UpdateTabSelection
12608         method which seems to just be used internally to refresh the tabs.
12610 2005-11-03  Jackson Harper  <jackson@ximian.com>
12612         * TabControl.cs: Implement the remove method. Fix some broken
12613         comments.
12615 2005-11-03  Peter Dennis Bartok  <pbartok@novell.com>
12617         * DateTimePicker.cs:
12618           - Added missing DateTimePickerAccessibleObject class
12619           - Added missing events
12620           - Added OnFontChanged method
12621         * Form.cs: Added missing attributes
12622         * TreeView.cs: Added missing attributes
12624 2005-11-03  Peter Dennis Bartok  <pbartok@novell.com> 
12626         * GridItemCollection.cs: Fix signatures
12628 2005-11-03  Peter Dennis Bartok  <pbartok@novell.com>
12630         * XplatUI.cs: Updated build rev/date
12631         * ComboBox.cs, DataGridTextBoxColumn.cs Control.cs, 
12632           DataGridTableStyle.cs, DataGrid.cs, DateTimePicker.cs: Signature fixes
12633         * Application.cs: Trigger context-specific ExitThread events
12635 2005-11-03  Jackson Harper  <jackson@ximian.com>
12637         * Menu.cs:
12638         * MainMenu.cs:
12639         * GridTableStylesCollection.cs:
12640         * Timer.cs:
12641         * TabPage.cs:
12642         * HelpProvider.cs:
12643         * StatusBar.cs:
12644         * MonthCalendar.cs: Signature fixes
12646 2005-11-03  Jackson Harper  <jackson@ximian.com>
12648         * TreeNodeCollection.cs: Remove should not be virtual.
12649         * TreeView.cs: Implement the last of the missing methods.
12651 2005-11-03  Jackson Harper  <jackson@ximian.com>
12653         * TreeNodeConverter.cs: Implement to get off my class-status back.
12655 2005-11-03  Jackson Harper  <jackson@ximian.com>
12657         * TreeView.cs: Hookup the bits for drag and drop.
12658         * TreeNode.cs: Don't cache the tree_view or index anymore, now
12659         that nodes can be moved from tree to tree easily this just causes
12660         all sorts of problems.
12661         * TreeNodeCollection: Don't need to give treenodes an index and
12662         treeview anymore when they are added, these are computed on the
12663         fly. Also make sure to remove a node before its added.
12665 2005-11-03  Peter Dennis Bartok  <pbartok@novell.com>
12667         * TextControl.cs:
12668           - Added CaretSelection enum
12669           - Added comparison methods to Marker struct, makes selection code
12670             more readable
12671           - Added SelectionStart and SelectionEnd as 'moveable' location for
12672             the CaretDirection enum and handler
12673           - Added selection_prev variable to track optimized invalidation for
12674             word and line selection
12675           - Added SelectionVisible property (returns true if there is a valid 
12676             selection)
12677           - Switched CaretHasFocus to only display the caret if there is no
12678             visible selection
12679           - Avoiding StringBuilder.ToString to retrieve a single char, instead
12680             using the direct character index; should be much faster
12681           - Added various conditional debug statements
12682           - Fixed invalidation calculation for selection ranges
12683           - Added ExpandSelection() method to support word and line selection
12684           - Switched SetSelectionToCaret to use new Marker compare overloads
12685           - Added central IsWordSeparator() method to determine word 
12686             separators/whitespace and FindWordSeparator() to streamline common
12687             usage of IsWordSeparator()
12688         * TextBoxBase.cs:
12689           - Removed unneeded grabbed variable, it was just mirroring
12690             Control.Capture
12691           - No longer firing OnTextChanged event when Text setter is called,
12692             since the base will fire the event for us
12693           - Added handling of Ctrl-Up/Down selection
12694           - Added handling of Shift-Cursorkey selection
12695           - Added handling for Ctrl-Delete and Ctrl-Backspace to remove
12696             words
12697           - Added handling of Shift and Ctrl-Shift-Home/End selection
12698           - Removed some debug output
12699           - Added handling for single/double/tripple-click to place caret/
12700             select word/select line respectively (Fixes bug #76031)
12701           - Added support for drag expansion of word/line selection
12702         * RichTextBox.cs: Handle GotFocus event to trigger redrawing of
12703           current selection
12705 2005-11-02  Jackson Harper  <jackson@ximian.com>
12707         * X11Dnd.cs: If the drag is going to and from a MWF window just
12708         copy the data instead of sending it out through the X Selection
12709         mechanism.
12711 2005-11-02  Jackson Harper  <jackson@ximian.com>
12713         * X11Dnd.cs:
12714         * XplatUIX11.cs: When in a drag we don't want motion notify
12715         messages to get passed on to the other controls. This prevents
12716         mouse move messages from showing up in the drag source.
12718 2005-11-02  Jackson Harper  <jackson@ximian.com>
12720         * X11Dnd.cs: Remove unneeded call to XAllowEvents.  Make sure that
12721         the correct button is release to end a drag.
12722         * XplatUIX11.cs: Make the button state internal so the drag system
12723         can access it.  Dragging needs to know about all button releases,
12724         not just left button.
12726 2005-11-02  Miguel de Icaza  <miguel@novell.com>
12728         * Form.cs (Icon): If the icon is null, reset the icon to the
12729         default value. 
12731         * Cursor.cs: When writing the AND-mask bitmap do not include the
12732         number of colors, but hardcode those to two (black and white),
12733         fixes the loading of color cursors (Paint Dot Net).
12735         * Form.cs: To debug, allow MONO_MWF_SCALING=disable variable to
12736         turn off autoscaling.
12738         * Cursor.cs: Allow resource type to be 1 or 2 (from ImageMagic).
12740 2005-11-02  Jackson Harper  <jackson@ximian.com>
12742         * X11Dnd.cs: Make sure to send a status message if the pointer
12743         enters a control that can not accept a drop, otherwise the cursor
12744         isn't updated correctly. Also tried to compress the lines of code
12745         a bit.
12747 2005-11-02  Jackson Harper  <jackson@ximian.com>
12749         * X11Dnd.cs: Change cursors based on drag action. Also attempt to
12750         set actions correctly.  This isn't perfect as XDND and win32 have
12751         some differences on how you allow actions. I'll clear this up by
12752         adding a path for drag from MWF to MWF windows.
12753         * XplatUIX11.cs: Hook into the dnd system.
12755 2005-11-02  Jordi Mas i Hernandez <jmas@softcatala.org>
12757         * ListView.cs: Fixes scroll bar visibility. Hide them if they were
12758         previously shown but they are no longer need it. Very obvious when 
12759         browsing files with FileDialog.
12761 2005-11-01  Peter Dennis Bartok  <pbartok@novell.com>
12763         * Control.cs: We always need to call OnPaintBackground. We pretty much
12764           ignore AllPaintingInWmPaint and always do the painting there, whether 
12765           it's set or not, since we always ignore the WM_ERASEBKGND message 
12766           (which we don't generate on X11). This fixes #76616.
12767         * Panel.cs: Removed unneeded background painting. This happens properly
12768           in Control.cs already
12770 2005-10-31  Mike Kestner  <mkestner@novell.com>
12772         * Menu.cs: Add items to collection before setting their index.
12773         * MenuItem.cs : add range checking with ArgumentException like MS.
12774         [Fixes #76510]
12776 2005-10-31  Jackson Harper  <jackson@ximian.com>
12778         * ListBox.cs: Invalidate if the area is visible at all not just
12779         contained in the visible rect. Fixes unselection of semi visible
12780         items.
12782 2005-10-31  Jackson Harper  <jackson@ximian.com>
12784         * Control.cs: Consistently name the dnd methods. Make them
12785         internal so we can override them to match some MS behavoir
12786         internally.
12787         * Win32DnD.cs: Use the new consistent names.
12789 2005-10-31  Jackson Harper  <jackson@ximian.com>
12791         * TreeView.cs: Don't draw the selected node when we lose focus.
12793 2005-10-31  Jackson Harper  <jackson@ximian.com>
12795         * X11Dnd.cs: We still need to reset the state even though a full
12796         reset isn't being done, otherwise status's still get sent all over
12797         the place.
12799 2005-10-31  Jackson Harper  <jackson@ximian.com>
12801         * Control.cs: Make the dnd_aware flag internal so the dnd
12802         subsystem can check it. Catch exceptions thrown in dnd handlers to
12803         match MS behavoir.
12804         * Hwnd.cs: Add a flag for whether or not a window is dnd aware.
12805         * X11Dnd.cs: Handle null data in the converters. Set the XDND
12806         version when sending a XdndEnter. Use the control/hwnd dnd_aware
12807         flags to reduce the number of dnd enters/status's sent.
12809 2005-10-31  Jackson Harper  <jackson@ximian.com>
12811         * X11Dnd.cs: Don't need the sizeof here. Patch by Jordi Mas.
12813 2005-10-31  Jordi Mas i Hernandez <jordi@ximian.com>
12815         * PictureBox.cs: Fixes 76512
12817 2005-10-28  Jackson Harper  <jackson@ximian.com>
12819         * X11Dnd.cs: Early implementation to support winforms being a drag
12820         source for data on X11. Also restructured the converters so they
12821         can go both ways now.
12822         * XplatUIX11.cs: Tie ins to the the Dnd stuff.
12823         
12824 2005-10-27  Peter Dennis Bartok  <pbartok@novell.com>
12826         * XplatUIX11.cs: Fixed FIXME - implemented ASCII encoding for XA_STRING
12827           clipboard requests
12829 2005-10-27  Jackson Harper  <jackson@ximian.com>
12831         * TreeNode.cs: Implement serialization so my DnD examples will work.
12833 2005-10-24  Kornél Pál  <kornelpal@hotmail.com>
12835         * ButtonBase.cs, ListView.cs, NotifyIcon.cs, PictureBox.cs, ToolBar.cs,
12836           TreeView.cs: Don't dispose objects that are not owned.
12837           
12838 2005-10-24  Peter Dennis Bartok  <pbartok@novell.com>
12840         * Cursor.cs: Defaulting the Current cursor to Cursors.Default. We
12841           should retrieve the current cursor and report that, but XplatUI
12842           doesn't (yet) have an interface for that (and I'm not sure I even
12843           can, on X11)
12844         * XplatUIWin32.cs: Fixed override behaviour. The override is temporary,
12845           until any message loop processing is done (and the WM_SETCURSOR
12846           replaces the cursor to the proper one)
12847         * XplatUIX11.cs: 
12848           - Fixed override behaviour, we can't set the cursor globally on X11, 
12849             just for our windows.
12850           - Invalidating the System.Drawing X11 display handle when we are
12851             shutting down
12852         * Control.cs: Fix to make csc happy
12854 2005-10-23  Peter Dennis Bartok  <pbartok@novell.com>
12856         * TextBoxBase.cs: 
12857           - get_Text: Add last line (without trailing newline) to returned
12858             value (Fixes 76212)
12859           - get_TextLength: Count last line in returned length
12860           - ToString: Call Text property instead of duplicating code
12862 2005-10-23  Kornél Pál  <kornelpal@hotmail.com>
12864         * ImageList.cs: Dispose ImageAttributes objects.
12866 2005-10-22  Kornél Pál  <kornelpal@hotmail.com>
12868         * ImageList.cs: Use attribute constructors with less arguments where
12869           possible.
12871 2005-10-22  Kornél Pál  <kornelpal@hotmail.com>
12873         * ImageList.cs: Added lastKeyIndex field and use in IndexOfKey.
12874           Use typeof instead of strings when assembly is referenced. Added
12875           some more comments.
12877 2005-10-21  Jackson Harper  <jackson@ximian.com>
12879         * ListView.cs: Raise a double click event. Also tried to somewhat
12880         fix when the selectedindexchanged event is raised. Its still
12881         broken though.
12883 2005-10-21  Jackson Harper  <jackson@ximian.com>
12885         * TreeView.cs: New method to invalidate the plus minus area of a
12886         node without invalidating the whole node (maybe this can be used
12887         in some more places).
12888         * TreeNodeCollection.cs: When adding to an empty node we need to
12889         invalidate its plus minus area so the little block shows up.
12890         
12891 2005-10-21  Jackson Harper  <jackson@ximian.com>
12893         * TreeView.cs: Make sure that when we invalidate a node the bounds
12894         are big enough to cover the selected box and the focus
12895         rectangle. Use a different colour for the lines connecting nodes
12896         so they show up with all themes.
12898 2005-10-21  Peter Dennis Bartok  <pbartok@novell.com>
12900         * NativeWindow.cs: Don't call anything that could call into the driver,
12901           we might be on a different thread.
12903 2005-10-21  Peter Dennis Bartok  <pbartok@novell.com> 
12905         * Control.cs(Dispose): Since Dispose might run on a different thread,
12906           make sure that we call methods that could call into the driver via
12907           invoke, to avoid thread issues
12909 2005-10-21  Peter Dennis Bartok  <pbartok@novell.com>
12911         * XplatUI.cs: Removed finalizer
12912         * XplatUIX11.cs: Removed Destructor, was causing crashes due to X11
12913           not allowing to be called on the finalizer thread.
12915 2005-10-21  Kornél Pál  <kornelpal@hotmail.com>
12917         * ImageList.cs:
12918           - Reverted r51889 and r51891.
12919           - Added ImageListItem class that stores unmodified image items and image
12920             properties required to create list images until handle is created.
12921           - Added AddItem and moved image creation logic to AddItemInternal.
12922           - Added CreateHandle method that creates images based on unmodified items.
12923           - Added DestroyHandle that changes state to store unmodified items.
12924           - Add and AddStrip methods no more create handle.
12925           - ReduceColorDepth has no return value.
12926           - Dispose destroys handle.
12927           - Modified other methods to reflect the above changes.
12928           - Implemented key support.
12929           - Added profile 2.0 members and attributes.
12930           - Added private Reset and ShouldSerialize methods that provide the same
12931             behavior as MS.NET but the Visual Studio .NET designer seems to ignore
12932             them as they are private.
12933           - Added some more comments about implementation details.
12935 2005-10-21  Jordi Mas i Hernandez <jordi@ximian.com>
12937         * DataGrid.cs: Adds support for vertical scrolling using the mousewheel
12939 2005-10-21  Jordi Mas i Hernandez <jordi@ximian.com>
12941         * Binding.cs: No PushData/PullData if there is no binding (fixes crash)
12943 2005-10-21  Jordi Mas i Hernandez <jordi@ximian.com>
12945         * DataGridDrawingLogic.cs: Fixes column hit calcultation
12946         * DataGridColumnStyle.cs: Remove debug message
12948 2005-10-20  Jackson Harper  <jackson@ximian.com>
12950         * TreeView.cs: We can always get input keys regardless of whether
12951         or not editing is enabled. They are used for navigation.
12953 2005-10-20  Jackson Harper  <jackson@ximian.com>
12955         * TreeNode.cs: Use the viewport rect for determining if a node
12956         needs to be moved for visibility. Don't use Begin/End edit. This
12957         calls a full refresh when its done.
12958         * TreeView.cs: New SetBottom works correctly.  Make the viewport
12959         rect property internal so the treenodes can see it. When clicking
12960         on a node we need to ensure that its visible because it might just
12961         be partly visible when clicked.
12963 2005-10-20  Jackson Harper  <jackson@ximian.com>
12965         * TreeNodeCollection.cs: Remove debug code.
12967 2005-10-20  Jordi Mas i Hernandez <jordi@ximian.com>
12969         * Datagrid.cs: Implements column sorting in Datagrid
12970         * DataGridColumnStyle.cs: Implements column sorting in Datagrid
12972 2005-10-20  Jackson Harper  <jackson@ximian.com>
12974         * TreeNodeCollection.cs: Remove items properly. Update the correct
12975         area after removing them.
12977 2005-10-20  Jordi Mas i Hernandez <jordi@ximian.com>
12979         * Datagrid.cs: Should not call base.OnPaintBackground
12981 2005-10-20  Peter Dennis Bartok  <pbartok@novell.com>
12983         * XplatUIX11.cs (GetMessage):
12984           - Now properly calculates NC_xBUTTONDOWN coordinates off the whole
12985             window instead of client window
12986           - Now properly calculates NC_xBUTTONUP message coordinates
12987           - ScreenToMenu now properly calculates it's coordinates of whole 
12988             window, since menus are in the whole window, not in the client
12989             window
12990           - Added WholeToScreen coordinate translation method
12992 2005-10-20  Peter Dennis Bartok  <pbartok@novell.com> 
12994         * XplatUIX11.cs (GetMessage): Don't return in situations where we don't
12995           want to return a message, loop back to the beginning of the function
12996           and grab the next real message to process instead.
12998 2005-10-20  Peter Dennis Bartok  <pbartok@novell.com>
13000         * Splitter.cs: Properly set limits if no filler control is used
13002 2005-10-19  Jackson Harper  <jackson@ximian.com>
13004         * ColorDialog.cs: Don't show the help button if it is not enabled
13005         instead of disabling it (this is what MS does). Don't create the
13006         panel until the dialog is run, otherwise the vars (such as
13007         ShowHelp) are not set yet.
13009 2005-10-19  Jackson Harper  <jackson@ximian.com>
13011         * TreeView.cs: Implement Begin/EndEdit more correctly so refreshes
13012         are reduced when adding nodes.
13013         * TreeNode.cs:
13014         * TreeNodeCollection.cs: Use UpdateNode instead of refreshing the
13015         tree.
13016         
13017 2005-10-19  Jackson Harper  <jackson@ximian.com>
13019         * FolderBrowserDialog.cs: End editing our treeview so the window
13020         actually gets refreshed.
13022 2005-10-18  Peter Dennis Bartok  <pbartok@novell.com>
13024         * Control.cs: Fixed logic flip on when to call OnPaintBackground. 
13025           Obsoleted handling of WM_ERASEBKGND, now always draws our background
13026           inside of WM_PAINT
13028 2005-10-18  Jordi Mas i Hernandez <jordi@ximian.com>
13030         * MenuAPI.cs: Returns after Hidding window
13031         * XplatUIX11.cs: Added TODO found while debugging menu issues
13033 2005-10-18  Peter Dennis Bartok  <pbartok@novell.com>
13035         * XplatUIX11.cs: Do not re-map the whole window when it's size
13036           becomes non-zero unless it's supposed to be actually visible
13038 2005-10-18  Jackson Harper  <jackson@ximian.com>
13040         * TreeView.cs: We don't need to keep a count anymore.
13041         * TreeNodeCollection.cs: Fix off by one in RemoveAt, Insert can
13042         use the Grow method.
13044 2005-10-18  Jackson Harper  <jackson@ximian.com>
13046         * TreeNodeCollection.cs: Insert is not supported on arrays, so
13047         implement it manually here.
13049 2005-10-18  Jackson Harper  <jackson@ximian.com>
13051         * ImageList.cs: Dont kill the list when the colour depth is
13052         changed, just change the colour depth of all the images.
13053         - Same goes for setting the image size. Just resize them all
13054         instead of killing the list softly.
13056 2005-10-18  Jackson Harper  <jackson@ximian.com>
13058         * Control.cs: Don't invalidate empty rectangles.
13060 2005-10-18  Jordi Mas i Hernandez <jordi@ximian.com>
13062         * ListViewItem.cs:
13063           - Adds checked item to the Checked/Item lists (where empty before)
13064           - Do not add items to the Selected lists if they are already present
13065         * ListView.cs:
13066           - Fixes IsFixedSize, SyncRoot, IsReadOnly in many collections
13067           - When deleting items make sure that we delete them for the Selected
13068           and Checked list also.
13070 2005-10-18  Jordi Mas i Hernandez <jordi@ximian.com>
13072         * Label.cs: Dispose objects no longer used
13073         * ThemeWin32Classic.cs: Dispose objects no longer used
13075 2005-10-18  Jackson Harper  <jackson@ximian.com>
13077         * TabControl.cs: Don't refresh the whole control when the tabs are
13078         scrolled, we just need to refresh the tab area.
13080 2005-10-17  Jackson Harper  <jackson@ximian.com>
13082         * XplatUIX11.cs: Compress code a little bit. Only calculate the
13083         after handle when we need it.
13085 2005-10-17  Peter Dennis Bartok  <pbartok@novell.com>
13087         * Control.cs: When the parent size changes, recalculate anchor 
13088           positions. Partial fix for #76462
13090 2005-10-17  Peter Dennis Bartok  <pbartok@novell.com>
13092         * ThemeWin32Classic.cs: Make sure the picturebox has it's background 
13093           drawn. Fixes #76462
13095 2005-10-17  Jackson Harper  <jackson@ximian.com>
13097         * MonthCalendar.cs: Don't create the numeric up down until our
13098         handle is created. Otherwise our handle is created in the
13099         constructor and we don't know if we are a WS_CHILD or WS_POPUP
13100         yet.
13102 2005-10-17  Jackson Harper  <jackson@ximian.com>
13104         * TreeView.cs: Merge in patch by Rafael Teixeira to align strings
13105         correctly.
13107 2005-10-17  Rafael Teixeira <rafaelteixeirabr@hotmail.com> 
13108         * TreeNode.cs : small logical fix (was using local var instead of field)
13109         
13110 2005-10-17  Jordi Mas i Hernandez <jordi@ximian.com>
13112         * ThemeWin32Classic.cs: Fixes vert/horz scrollbar colours
13114 2005-10-17  Jordi Mas i Hernandez <jordi@ximian.com>
13116         * ThemeWin32Classic.cs: Fixes focus drawing in for non-flat/popup buttons
13118 2005-10-16  Peter Dennis Bartok  <pbartok@novell.com> 
13120         * Control.cs: 
13121           - Re-implemented anchoring code. My first version was really broken.
13122             This fixes bug #76033. Unlike the previous implementation we will
13123             no longer have round errors since all numbers are calculated from
13124             scratch every time. Removed various anchor-related obsolete vars.
13125           - InitLayout no longer causes layout event firing and layout to be 
13126             performed
13128 2005-10-16  Jackson Harper  <jackson@ximian.com>
13130         * Hwnd.cs: Compute invalid area correctly (fixes my last commit
13131         which was broken).
13133 2005-10-16  Jackson Harper  <jackson@ximian.com>
13135         * TabControl.cs: Remove debug code.
13137 2005-10-16  Jackson Harper  <jackson@ximian.com>
13139         * XEventQueue.cs: Increase the default queue size (very simple
13140         apps needed to grow the queue).
13141         * Hwnd.cs: No finalizer so we don't need to suppress
13142         finalization. Compute the invalid area manually so a new rectangle
13143         does not newto be created.
13144         * ScrollableControl.cs: Don't set any params (otherwise visibility
13145         isn't set correctly).
13146         * MdiChildContext.cs: New constructor takes the mdi parent so it
13147         doesn't have to be computed and avoids a crash on windows. Draw
13148         the window icon properly, and allow the text to be seen.
13149         * Form.cs: Use new MdiChildContext constructor. Make sure the
13150         child context isn't null in wndproc.
13151         * TabControl.cs: Don't set focus, this is muddling keyboard
13152         behavoir. Expand the tab rows when a window size increase will
13153         allow extra tabs to be seen. Don't allow tabs smaller than the
13154         width of a window to be scrolled out of view.
13155         * TreeNode.cs:
13156         * TreeView.cs: Use measure string to calculate a nodes width, the
13157         width is cached and only updated when the text or the font is
13158         changed. Don't check for expand/collapse clicks on the first level
13159         nodes if root lines are disabled.
13160         
13161 2005-10-16  Ritvik Mayank  <mritvik@novell.com>
13163         * TextBoxBase.cs: Fixes #76352 (passing tab key in a multiline textbox)
13165 2005-10-16  Jordi Mas i Hernandez <jordi@ximian.com>
13167         * DataGridBoolColumn.cs: fixes warning
13169 2005-10-16  Jordi Mas i Hernandez <jordi@ximian.com>
13171         * ControlPaint.cs: Fixes methods Dark, DarkDark, Light, LightLight
13172         to match more to match more precisely the MS Net behavior
13174 2005-10-13  Peter Dennis Bartok  <pbartok@novell.com> 
13176         * Hwnd.cs: Added field to track if window is mapped
13177         * XplatUIX11.cs: 
13178           - Unmap windows if they become 0-size, re-map when 
13179             they are >0 again; fixes #76035
13180           - Re-set our error handler after initializing X11Desktop
13181             to override any error handlers Gtk or whatever was called
13182             may have set.
13184 2005-10-13  Peter Dennis Bartok  <pbartok@novell.com> 
13186         * CheckedListBox.cs: Removed unused vars
13187         * ListView.cs: Fixed signatures
13188         * RichTextBox.cs: Removed unused vars
13189         * TextBoxBase.cs: Removed unused vars
13190         * XplatUIWin32.cs: Removed unused vars
13191         * XplatUIX11.cs: Removed unused vars
13192         * XplatUI.cs: Updated version and date to latest published
13194 2005-10-13  Peter Dennis Bartok  <pbartok@novell.com>
13196         * Cursor.cs: Added private .ctor to work around a bug in
13197           resourceset (Thanks to Geoff Norton for the help on this)
13198         * SplitterEventArgs.cs: Made fields accessible so we don't
13199           waste boatloads of objects and can reuse the same one
13200           in Splitter
13201         * XplatUIWin32.cs(DrawReversibleLine): Now also considers
13202           any captions and borders when generating screen coordinates
13203         * Splitter.cs: Reimplemented control, now fully complete, uses
13204           rubberband drawing, supports and obeys all properties, has
13205           proper cursors
13207 2005-10-13  Miguel de Icaza  <miguel@novell.com>
13209         * Form.cs (Form): Setup default values for autoscale and
13210         autoscale_base_size;  Make these instance variables, not static
13211         variables. 
13213         (OnLoad): on the first load, adjust the size of the form.
13215 2005-10-13  Peter Dennis Bartok  <pbartok@novell.com>
13217         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs: Added 
13218           width argument to DrawReversibleRectangle()
13219         * XplatUIWin32.cs, XplatUIX11.cs: 
13220           - Implemented width for DrawReversibleRectangle()
13221           - Added logic to DrawReversibleRectangle that recognizes a zero
13222             width or height and only draws a line in that situation
13223         
13224 2005-10-12  Peter Dennis Bartok  <pbartok@novell.com> 
13226         * XplatUI.cs, XplatUIDriver.cs: Added GetAutoScaleSize()
13227         * XplatUIOSX.cs: Stubbed GetAutoScaleSize() method
13228         * XplatUIWin32.cs, XplatUIX11.cs: Implemented GetAutoScaleSize()
13229           method (it uses our FosterParent window to get a graphics context)
13231 2005-10-12  Peter Dennis Bartok  <pbartok@novell.com>
13233         * XplatUI.cs, XplatUIDriver.cs: Removed EraseWindowBackground 
13234           and SetWindowBackground methods
13235         * Control.cs:
13236           - Setting proper ControlStyles
13237           - We no longer call XplatUI.SetWindowBackground and XplatUI.
13238             EraseWindowBackground, instead we draw the window background
13239             ourselves in PaintControlBackground. This behaviour is
13240             required to match MS, where, when OnPaintBackground is not
13241             called, the background is not drawn.
13242           - Removed unneeded Refresh() in set_Text
13243         * Hwnd.cs: Dropped the ErasePending support. No longer needed
13244         * XplatUIX11.cs:
13245           - Created DeriveStyles method to translate from CreateParams to
13246             FormBorderStyle and TitleStyle, also handles BorderStyle (which
13247             matches FormBorderStyle enum values)
13248           - Consolidated SetHwndStyles and CalculateWindowRect border/title
13249             style calculations into single DeriveStyles method
13250           - Fixed CreateWindow to (finally) use Gravity. This prevents X11
13251             from redrawing the whole window on any resize or expose.
13252           - Fixed CreateWindow usage of SetWindowValuemask. Before not
13253             all styles were applied to our whole/client window appropriately
13254           - Removed EraseWindowBackground() and SetWindowBackground() methods
13255           - Removed handling of WM_ERASEBKGND message from DefWndProc, we
13256             no longer clear/redraw the background through X
13257           - Removed handling of erase_pending bit, we have no use for it (or
13258             so it seems)
13259         * XplatUIOSX.cs:
13260           - Removed generation and handling of WM_ERASEBKGND message
13261           - Removed EraseWindowBackground() and SetWindowBackground() methods
13262           - Removed handling of hwnd.ErasePending flag
13263         * XplatUIWin32.cs:
13264           - Removed EraseWindowBackground() and SetWindowBackground() methods
13265           - We no longer call EraseWindowBackground on PaintEventStart, we 
13266             ignore the fErase flag, erasing is handled in Control in the
13267             background handler
13268         * Button.cs, GroupBox.cs, Label.cs, CheckBox.cs, ProgressBar.cs,
13269           LinkLabel.cs, ListControl.cs, TabPage.cs, UpDownBase.cs,
13270           TextBoxBase.cs, TextBox.cs, ListView.cs, ButtonBase.cs, 
13271           CheckedListBox.cs, MdiClient.cs, Panel.cs, DataGrid.cs, 
13272           DataGridTextBox.cs, ScrollBar.cs, ListBox.cs, TrackBar.cs, 
13273           TabControl.cs, ScrollableControl.cs, ToolBar.cs, PictureBox.cs,
13274           DateTimePicker.cs, StatusBar.cs, MonthCalendar.cs: Setting proper ControlStyles
13276 2005-10-12  Jonathan Chambers <jonathan.chambers@ansys.com>
13278         * PropertyGrids.cs: Get sub properties
13279         * PropertyGridView.cs: Fix drawing code
13281 2005-10-11  Jordi Mas i Hernandez <jordi@ximian.com>
13283         * ListBox.cs: Fixes 76383
13285 2005-10-11  Jordi Mas i Hernandez <jordi@ximian.com>
13287         * DataGridTextBoxColumn.cs: Sets location and size before attachment
13288         * ThemeWin32Classic.cs: Fixes border drawing and calculations
13289         * DataGridDrawingLogic.cs: Fixes border drawing and calculations
13292 2005-10-11  Jordi Mas i Hernandez <jordi@ximian.com>
13294         * ComboBox.cs: Fixes border drawing
13296 2005-10-10  Miguel de Icaza  <miguel@novell.com>
13298         * MimeIcon.cs: Ignore errors if the file can not be read.
13300 2005-10-11  Jordi Mas i Hernandez <jordi@ximian.com>
13302         * Theme.cs, ThemeWin32Classic.cs, ListBox.cs:
13303          - Fixed border calculations
13304          - Fixed horizontal scrolling in single column listboxes
13305          - Fixed drawing issues
13307 2005-10-10  Peter Dennis Bartok  <pbartok@novell.com>
13309         * XplatUI.cs, XplatUIOSX.cs, XplatUIWin32.cs: Switched from BorderStyle to 
13310           FormBorderStyle enum
13311         * XplatUIX11.cs: Switched BorderStyle to FormBorderStyle, added 
13312           code to determine FormBorderStyles from CreateParams
13313         * Form.cs:
13314           - Fixed bug where we'd set the wrong window styles if we were
13315             not creating an MDI window
13316           - Added call to XplatUI.SetBorderStyle when form borders are set
13317         * Control.cs: Casting BorderStyles to accommodate changed XplatUI APIs
13318         * Hwnd.cs:
13319           - Removed obsolete edge style
13320           - Switched from BorderStyle to FormBorderStyle
13321         
13322 2005-10-10  Jackson Harper  <jackson@ximian.com>
13324         * Form.cs: Use the property to get the window handle instead of
13325         accessing it directly. Prevents a null reference exception.
13327 2005-10-10  Jackson Harper  <jackson@ximian.com>
13329         * TreeView.cs: Don't adjust the rect given to DrawString now that
13330         our libgdiplus draws correctly.
13332 2005-10-08  Jackson Harper  <jackson@ximian.com>
13334         * TreeView.cs: Don't try to find the clicked on node if there are
13335         no nodes in the tree.
13337 2005-10-08  Alexander Olk  <alex.olk@googlemail.com>
13339         * RichTextBox.cs:
13341           restore
13343 2005-10-08  Alexander Olk  <alex.olk@googlemail.com>
13345         * ImageListStreamer.cs, TreeView.cs, UpDownBase.cs, RichTextBox.cs,
13346           ColorDialog.cs, TextControl.cs, Panel.cs, MdiChildContext.cs,
13347           ErrorProvider.cs:
13348           Use ResPool for brushes and dispose System.Drawing objects that
13349           are not used anymore.
13351 2005-10-07  Jackson Harper  <jackson@ximian.com>
13353         * MdiChildContext.cs: Use the new borders instead of drawing them
13354         ourselves.
13356 2005-10-06  Jordi Mas i Hernandez <jordi@ximian.com>
13358         * Calling UpdateBounds after changing the window's BorderStyle 
13359         since the style can change the ClientSize
13361 2005-10-06  Peter Dennis Bartok  <pbartok@novell.com>
13363         * Control.cs: Made PaintControlBackground virtual
13364         * Panel.cs: Overriding PaintControlBackground instead of using paint
13365           event; paint event method was interfering with 'real' users of the
13366           event.
13368 2005-10-06  Jordi Mas i Hernandez <jordi@ximian.com>
13370         * ThemeWin32Classic.cs: remove border drawing since it is handled
13371         by the base control class now and was causing double border drawing.
13373 2005-10-06  Peter Dennis Bartok  <pbartok@novell.com>
13375         * Panel.cs: Redraw our background on paint. Not a pretty solution,
13376           but it does seem to match MS behaviour. This fixes bug #75324
13378 2005-10-06  Peter Dennis Bartok  <pbartok@novell.com>
13380         * XplatUIX11.cs: A better DrawReversibleRectangle version, however
13381           somewhat hackish looking
13383 2005-10-06  Peter Dennis Bartok  <pbartok@novell.com> 
13385         * TextBoxBase.cs:
13386           - We now accept Enter even if AcceptEnter is false, if the containing
13387             form does not have an AcceptButton configured (fixes bug #76355)
13388           - Calculations are now fixed to no longer use Width/Height, but
13389             ClientSize.Width/Height, since we now support borders (this was
13390             a result of fixing borders and therefore bug #76166)
13391           - We no longer show the horizontal scrollbar if TextBox.WordWrap is 
13392             true (fixes bug #76354)
13393         
13394 2005-10-06  Peter Dennis Bartok  <pbartok@novell.com>
13396         * Control.cs: 
13397           - Defaulting BorderStyle and setting it in XplatUI when our window 
13398             is created
13399           - Added enum check to InternalBorderStyle setter
13400         * XplatUIX11.cs: 
13401           - Added drawing of window borders
13402           - Now properly calculates WM decorations offset for toplevel 
13403             windows (fixes bug #74763)
13404         * XplatUIWin32.cs: 
13405           - Implemented BorderStyles for windows (we're letting win32 draw 
13406             the border for us)
13407           - Fixed the signature for SetWindowLong
13408         * PictureBox.cs, DataGrid.cs, TextBoxBase.cs, ToolBar.cs, Panel.cs,
13409           ListBox.cs, Label.cs: Now uses Control.InternalBorderStyle for 
13410           setting borders
13411         * UpDownBase.cs: Remove drawing of borders, this is handled by
13412           the driver, outside the client area
13413         * ListView.cs: Removed bogus border calculations. The control should
13414           be oblivious to borders, since those are not part of the client
13415           area. 
13416         * X11DesktopColors.cs: Commented out (currently) unneeded variables
13417         * ThemeWin32Classic.cs: Removed border calculations from ListView 
13418           drawing code
13420 2005-10-06  Jackson Harper  <jackson@ximian.com>
13422         * MdiChildContext.cs: Clear out the old virtual position remove
13423         all the unneeded calls to CreateGraphics.
13425 2005-10-06  Peter Dennis Bartok  <pbartok@novell.com> 
13427         * TextControl.cs: Use proper color for highlighted text; fixes #76350
13429 2005-10-06  Peter Dennis Bartok  <pbartok@novell.com> 
13431         * Form.cs: 
13432           - Added loading and setting of our new default icon
13433           - Only set icon if window is already created
13435 2005-10-06  Peter Dennis Bartok  <pbartok@novell.com>
13437         * Label.cs:
13438           - Do not explicitly set the foreground and background colors, to
13439             allow inheriting from parents (fixes #76302)
13440           - Use Control's InternalBorderStyle property to deal with borders
13442 2005-10-06  Jackson Harper  <jackson@ximian.com>
13444         * MdiChildContext.cs: Use the new xplatui function to draw a
13445         reversible rect.
13447 2005-10-06  Jackson Harper  <jackson@ximian.com>
13449         * Form.cs: Add the parent before creating the child context cause
13450         we need the parent when setting up the child.
13452 2005-10-06  Jackson Harper  <jackson@ximian.com>
13454         * FolderBrowserDialog.cs: redo the tree population code so a
13455         second thread isn't used. Should be a lot faster and more stable
13456         now.
13458 2005-10-05  Jackson Harper  <jackson@ximian.com>
13460         * TreeView.cs: There are no expand/collapse boxes if the node has
13461         no children.
13463 2005-10-05  Jackson Harper  <jackson@ximian.com>
13465         * X11DesktopColors.cs: Get menu colours for the gtk theme.
13467 2005-10-05  Alexander Olk  <alex.olk@googlemail.com>
13469         * FileDialog.cs: Fix InitialDirectory
13471 2005-10-05  Jordi Mas i Hernandez <jordi@ximian.com>
13473         * ComboBox.cs:
13474                 - Fixes changing between styles
13475                 - Fixes simple mode
13476                 - Fixes last item crashing when navigating with keyboard
13478 2005-10-05  Jordi Mas i Hernandez <jordi@ximian.com>
13480         * LinkLabel.cs: Related to 76045. Stops the LinkLabel been drawn as a Label
13482 2005-10-05  Jackson Harper  <jackson@ximian.com>
13484         * TreeView.cs: If updating the root node do a full refresh.
13485         * TreeNode.cs: The root node should be expanded by default. Also
13486         added a utility prop to tell if we are the root node.
13487         * TreeNodeCollection.cs: Only refresh if the node we are being
13488         added to is expanded. Also added a comment on a potential
13489         optimization.
13490         
13491 2005-10-04  Peter Dennis Bartok  <pbartok@novell.com>
13493         * Cursor.cs, Hwnd.cs: Added call to GC.SuppressFinalize() 
13494           in dispose method. Fixes #76330
13496 2005-10-04  Jordi Mas i Hernandez <jordi@ximian.com>
13498         * ListView.cs, ThemeWin32Classic.cs, ListViewItem.cs:
13500                 - Implements vertical and horizontal scrolling using XplatUI
13501                 - Fixes keyboard navagation
13502                 - Fixes EnsureVisible
13503                 - Drawing fixes
13504                 - Handles and draws focus properly
13507 2005-10-04  Kornél Pál  <kornelpal@hotmail.com>
13509         * ImageList.cs: Use upper case initials for internal fields. ImageStream:
13510           Create handle. NET_2_0: Destroy handle when value is null.
13512 2005-10-03  Jackson Harper  <jackson@ximian.com>
13514         * ScrollBar.cs: My last scrollbar patch was broken. This is a
13515         revert and a new patch to prevent the thumb from refreshing so
13516         much.
13518 2005-10-02  Jackson Harper  <jackson@ximian.com>
13520         * ScrollBar.cs: Don't update position if it hasn't actually
13521         changed. This occurs when you hold down the increment/decrement
13522         buttons and the thumb gets to the max/min.
13524 2005-10-01  Jackson Harper  <jackson@ximian.com>
13526         * Form.cs:
13527         * MdiChildContext.cs:
13528         * MdiClient.cs: Implement ActiveMdiChild in Form.
13530 2005-10-01  Jordi Mas i Hernandez <jordi@ximian.com>
13532         * ComboBox.cs: Include ComboBoxEdit flag for the edit item
13534 2005-10-01  Peter Dennis Bartok  <pbartok@novell.com>
13536         * X11DesktopColors.cs: Bow out gracefully if the Gtk libs cannot
13537           be found
13539 2005-09-30  Jackson Harper  <jackson@ximian.com>
13541         * ListBox.cs: Don't do a full refresh unless some data has
13542         actually changed.
13544 2005-09-30  Jackson Harper  <jackson@ximian.com>
13546         * TreeView.cs: Make sure that the checkboxes size is factored in
13547         even when not visible.
13549 2005-09-30  Peter Dennis Bartok  <pbartok@novell.com> 
13551         * FileDialog.cs: Fix Jordi's build break
13553 2005-09-30  Jordi Mas i Hernandez <jordi@ximian.com>
13555         * FileDialog.cs: 
13556                 - Use standard the Windows colours for the combobox as espected
13557                 - Dispose objects that use resouces when no longer need them
13559 2005-09-30  Peter Dennis Bartok  <pbartok@novell.com> 
13561         * X11DesktopColors.cs: Initial incomplete implementation
13562         * XplatUIX11.cs: Added call to initialize X11DesktopColors
13564 2005-09-30  Peter Dennis Bartok  <pbartok@novell.com>
13566         * Theme.cs: 
13567           - Switched Theme color names to match the names defined in 
13568             System.Drawing.KnownColors. Life's hard enough, no need to make 
13569             it harder.
13570           - Added setters to all theme color properties so themes can set
13571             their color schemes. The setters also propagate the color changes
13572             to System.Drawing.KnownColors via reflection
13573         * ControlPaint.cs,  Label.cs, TextControl.cs, ToolTip.cs, ThemeNice.cs,
13574           ComboBox.cs, MdiChildContext.cs, TextBoxBase.cs, DateTimePicker.cs
13575           DataGridColumnStyle.cs, MonthCalendar.cs, TreeView.cs: Updated to
13576           use the new, more logical theme color names
13577         * XplatUIWin32.cs: Updated the GetSysColorIndex enum to include new
13578           post-NT colors
13579         * ThemeWin32Classic.cs:
13580           - Removed code to set the old classic Windows colors. Instead it
13581             now relies on the colors returned by System.Drawing.KnownColors
13582             which will be either modern static colors (Unix) or colors
13583             read from the user's configuration (Win32)
13584           - Updated to use the new, more logical theme color names
13585           - Switched DataGrid drawing code to use only Theme colors instead of
13586             a mix of System.Drawing.KnownColors and Theme colors
13587           - DrawFrameControl(): Removed code that fills the button area, the
13588             fill would overwrite any previous fill done by a control. This
13589             fixes bug #75338 
13590           - Added DrawReversibleRectangle() stub
13591         * ScrollableControl.cs: Set visible state to false when scrollbars
13592           are removed (pdn fix)
13593         * XplatUI.cs, XplatUIOSX.cs, XplatUIDriver.cs: Added 
13594           DrawReversibleRectangle() method to allow drawing primitive 
13595           'rubber bands'
13596         * XplatUIX11.cs: Implemented DrawReversibleRectangle()
13598 2005-09-30  Kornél Pál  <kornelpal@hotmail.com>
13600         * ImageList.cs: Add(Icon): Create handle.
13602 2005-09-30  Jordi Mas i Hernandez <jordi@ximian.com>
13604         * ListView.cs:
13605         * ThemeWin32Classic.cs:
13606                 - Fixes detail mode
13607                 - Sets clippings
13608                 - Issues with drawing
13610 2005-09-30  Kornél Pál  <kornelpal@hotmail.com>
13612         * ImageList.cs: Moved RecreateHandle back to ImageList as event
13613           source has to be the ImageList.
13615 2005-09-30  Kornél Pál  <kornelpal@hotmail.com>
13617         * ImageList.cs: Add(Icon): Use Graphics.DrawIcon instead of Icon.ToBitmap.
13619 2005-09-30  Kornél Pál  <kornelpal@hotmail.com>
13621         * ImageList.cs: ReduceColorDepth: Clean up pointer operations.
13623 2005-09-30  Kornél Pál  <kornelpal@hotmail.com>
13625         * ImageList.cs: ImageCollection: Removed owner field as it is no more used.
13627 2005-09-29  Jonathan Chambers <jonathan.chambers@ansys.com>
13628         * GridItem.cs: Fixed TODOs
13629         * GridItemCollection.cs: Added ICollection interface
13631 2005-09-30  Kornél Pál  <kornelpal@hotmail.com>
13633         * ImageList.cs: Resize icons when needed.
13635 2005-09-29  Jordi Mas i Hernandez <jordi@ximian.com>
13637         * ListViewItem.cs
13638                 - Fixes GetBounds and returns on screen rects
13639         * ListView.cs:
13640                 - Fixes vertical and horzintal scrolling of items
13641         * ThemeWin32Classic.cs:
13642                 - Fixes drawing
13643                 
13644 2005-09-29  Raja R Harinath  <harinath@gmail.com>
13646         * ImageList.cs (ImageStream) [NET_2_0]: Reflect re-factoring.
13648 2005-09-29  Kornél Pál  <kornelpal@hotmail.com>
13650         * ImageList.cs: Added comments about handle creation. Moved Handle,
13651           HandleCreated and OnRecreateHandle implementations to ImageCollection.
13652           Handle is created in Add methods.
13654 2005-09-28  Jordi Mas i Hernandez <jordi@ximian.com>
13655          
13656         * DataGridDrawingLogic.cs: 
13657                 - Takes rows into account on Colum calculations
13658                 - Returns the column when clickig
13659         * DataGrid.cs:
13660                 - Fixes default HitTestInfo values
13661                 - Fixes HitTestInfo.ToString
13662                 - Fixes ResetBackColor          
13663         
13664 2005-09-28  Jackson Harper  <jackson@ximian.com>
13666         * MdiChildContext.cs: Obey rules for fixed sized windows (no
13667         sizing or cursor changes). Also added some temp code to draw the
13668         titlebars text (Makes dev a little easier).
13670 2005-09-28  Kornél Pál  <kornelpal@hotmail.com>
13672         * ImageList.cs: AddStrip: Throw ArgumentException when Image is not a Bitmap.
13674 2005-09-28  Jordi Mas i Hernandez <jordi@ximian.com>
13675          
13676         * ListBox.cs: Fixes bug 76253
13678 2005-09-28  Kornél Pál  <kornelpal@hotmail.com>
13680         * ImageList.cs: Added comments about the current implementation. Added
13681           ReduceColorDepth, IndexedColorDepths and GetNearestColor to can use
13682           Format32bppArgb to preserve transparency and can use Graphics.FromImage
13683           while using the specified ColorDepth. ReduceColorDepth uses unsafe code
13684           with Bitmap.LockBits for better performance. Revised the whole file to
13685           match MS.NET behaviour and provide better performance. Non-public
13686           interface members are calling public members even when they throw
13687           NotSupportedException for better maintainability. Moved ColorDepth,
13688           ImageSize, ImageStream and TransparentColor implementations to
13689           ImageCollection for better performance as these properties are not used
13690           by ImageList.
13691         * ImageListStreamer.cs: Added a new internal constructor that takes an
13692           ImageList.ImageCollection and serializes Images based on
13693           ImageCollection.ToArray(). Renamed ImageColorDepth to ColorDepth to
13694           match ImageList property name.
13696 2005-09-28  Kazuki Oikawa <kazuki@panicode.com>
13698         * ListBox.cs: Fixes IndexFromPoint for last item
13700 2005-09-27  Jackson Harper  <jackson@ximian.com>
13702         * Form.cs: Set the position of new mdi children correctly.
13704 2005-09-27  Jackson Harper  <jackson@ximian.com>
13706         * MdiClient.cs: New mdi children need to be added to the back of
13707         the controls collection so the zorder is set correctly. Also add a
13708         count of all the child windows that have been created.
13710 2005-09-27  Jackson Harper  <jackson@ximian.com>
13712         * Form.cs (CreateParams): Setup MDI forms correctly.
13714 2005-09-27  Jackson Harper  <jackson@ximian.com>
13716         * MdiChildContext.cs:
13717         * MonthCalendar.cs:
13718         * UpDownBase.cs:
13719         * ListBox.cs:
13720         * ListView.cs:
13721         * TextBoxBase.cs:
13722         * TreeView.cs:
13723         * ScrollableControl.cs:
13724         * ComboBox.cs: Add implicit controls using the new implict control
13725         functionality in ControlCollection. Also try to block multiple
13726         control add in a suspend/resume layout to save some cycles.
13727         
13728 2005-09-27  Jackson Harper  <jackson@ximian.com>
13730         * Control.cs: Add functionality to the controls collection to add
13731         'implicit controls' these are controls that are created by the
13732         containing control but should not be exposed to the user. Such as
13733         scrollbars in the treeview.
13734         * Form.cs: The list var of the ControlsCollection is no longer
13735         available because of the potential of implicit controls getting
13736         ignored by someone accessing the list directly.
13738 2005-09-26  Peter Dennis Bartok  <pbartok@novell.com>
13740         * Control.cs: Fixed SetChildIndex; it no longer causes a child to
13741           loose it's parent. (Fixed bug introduced in r49103 when we added
13742           setting the child parent to null on Remove)
13744 2005-09-26  Gert Driesen  <drieseng@users.sourceforge.net>
13746         * DataGridBoolColumn.cs: Marked CheckState private to fix public API.
13747         * Splitter.cs: Added missing attributes for BorderStyle property.
13748         * TextBoxBase.cs: Marked Calculate* methods internal.
13749         * TextBox.cs: Fixed DefaultValue for PasswordChar property to match
13750         MS.NET.
13752 2005-09-26  Jordi Mas i Hernandez <jordi@ximian.com>
13753          
13754         * ListBox.cs: Fixes navigation to the last item in multicolumn lists
13756 2005-09-25  Jackson Harper  <jackson@ximian.com>
13758         * TreeView.cs: Update the node bounds correctly regardless of
13759         whether the node is visible.
13761 2005-09-25  Jackson Harper  <jackson@ximian.com>
13763         * ImageList.cs: Don't dispose the image after it is added to the
13764         image list. Only reformat images that need to be resized.
13766 2005-09-25  Jackson Harper  <jackson@ximian.com>
13768         * ImageList.cs: Don't set the format when changing the image.
13770 2005-09-25  Jackson Harper  <jackson@ximian.com>
13772         * TreeView.cs: We can't just assume the node has a font. Use the
13773         treeviews font if no node font is available.
13775 2005-09-25  Jackson Harper  <jackson@ximian.com>
13777         * TreeView.cs: Allow the scrollbars to be reset with negative
13778         values.
13779         - Don't add scrollbars to negative sized windows.
13781 2005-09-23  Jackson Harper  <jackson@ximian.com>
13783         * XplatUIX11.cs: Update to use Mono.Posix.Native instead of plain
13784         old Mono.Posix. Also remove some stray code that shouldn't have
13785         been committed.
13787 2005-09-23  Jackson Harper  <jackson@ximian.com>
13789         * TreeView.cs: Attempt at proper sizing of the horizontal
13790         scrollbar. Also don't resize the scrollbars unless they are
13791         visible.
13793 2005-09-23  Jackson Harper  <jackson@ximian.com>
13795         * TreeView.cs: We don't need to expand the invalid area when the
13796         selection changes, as this is all drawn in the node's bounding
13797         box. The area needs to be expanded (previous typo was contracting
13798         it) when the focus rect moves.
13800 2005-09-23  Jackson Harper  <jackson@ximian.com>
13802         * TreeView.cs: Display the selection box under the correct
13803         circumstances. We were rendering white text with no selection box
13804         before.
13806 2005-09-23  Peter Dennis Bartok  <pbartok@novell.com>
13808         * TextControl.cs(Split): Now updates selection start/end if it points 
13809           into a line that's being split. Fixes a FIXME and bug #75258
13811 2005-09-23  Jackson Harper  <jackson@ximian.com>
13813         * Binding.cs:
13814         * ListControl.cs: Don't use the path when retrieving binding
13815         managers from the binding context. My bat sense tells me that the
13816         path is only used on insertion.
13818 2005-09-22  Jackson Harper  <jackson@ximian.com>
13820         * Splitter.cs: Set the cursor an easier way. (Thanks peter).
13822 2005-09-22  Jackson Harper  <jackson@ximian.com>
13824         * Splitter.cs: There are special cursors used for splitting.
13825         * XplatUIX11.cs: The VSplit and HSplit cursors were backwards.
13827 2005-09-22  Jackson Harper  <jackson@ximian.com>
13829         * Splitter.cs: Change the cursor appropriately when the splitter
13830         is moused over, so the user actually knows there is a splitter
13831         there.
13833 2005-09-22 Hisham Mardam Bey <hisham.mardambey@gmail.com>
13835        * Label.cs : Fix ToString method to give same output as MS.NET
13837 2005-09-22  Jackson Harper  <jackson@ximian.com>
13839         * TreeView.cs: Create the scrollbars when the handle is created
13840         and add them right away, just make them invisble. Also account for
13841         the window being shrunk vertically to the point that the vert
13842         scrollbar needs to be added.
13843         - Remove some 0.5 adjustments to get around anti aliasing issues.
13844         
13845 2005-09-22  Jordi Mas i Hernandez <jordi@ximian.com>
13846          
13847         * MainMenu.cs: Fixes default value
13848         * MenuItem.cs: Fixes default value
13850 2005-09-22  Kazuki Oikawa  <kazuki@panicode.com>
13852         * AsyncMethodResult.cs: Fixes Control.Invoke is blocked infinitely.
13854 2005-09-21  Jackson Harper  <jackson@ximian.com>
13856         * Control.cs: Don't try to set the border style on the window if
13857         it hasn't been created. When the window is created the border
13858         style will be used.
13860 2005-09-21  Peter Dennis Bartok  <pbartok@novell.com>
13862         * Control.cs (Update): Don't call XplatUI if we don't have a
13863           window handle yet
13865 2005-09-21  Peter Dennis Bartok  <pbartok@novell.com> 
13867         * ContainerControl.cs: Instead of throwing an exception, print
13868           a one-time warning about Validate not being implemented
13869         * XplatUIWin32.cs: Removed debug output
13871 2005-09-21  Peter Dennis Bartok  <pbartok@novell.com> 
13873         * Control.cs: Only set XplatUI background if we expect the windowing
13874           system to handle the background. This stops controls that draw their
13875           own background from flickering
13877         * XplatUIX11.cs: Support custom visuals and colormaps for window 
13878           creation. This allows, amongst other things, using MWF X11 windows 
13879           with OpenGL.
13881 2005-09-21  Peter Dennis Bartok  <pbartok@novell.com>
13883         * OpenFileDialog.cs, ContentsResizedEventArgs.cs, LibSupport.cs, GridItem.cs,
13884           CursorConverter.cs, SplitterEventHandler.cs, PropertyGridTextBox.cs,
13885           GridTablesFactory.cs, MethodInvoker.cs, AccessibleEvents.cs,
13886           SplitterEventArgs.cs, XplatUI.cs, Mime.cs, PropertySort.cs,
13887           TreeViewCancelEventHandler.cs, Form.cs, PropertyGridCommands.cs,
13888           IDataGridEditingService.cs, DateBoldEventHandler.cs, Label.cs,
13889           KeyboardLayouts.cs, TextControl.cs, ProgressBar.cs, ToolTip.cs,
13890           RadioButton.cs, OSFeature.cs, LinkLabel.cs, ColorDialog.cs,
13891           ThemeNice.cs, ErrorIconAlignment.cs, TreeNode.cs, MimeGenerated.cs,
13892           ComboBox.cs, DataGridTextBoxColumn.cs, ArrangeStartingPosition.cs,
13893           GridColumnStylesCollection.cs, 
13894           IDataGridColumnStyleEditingNotificationService.cs,
13895           PropertyGrid.cs, IFeatureSupport.cs, ICommandExecutor.cs,
13896           MdiLayout.cs, GridEntry.cs, ControlBindingsCollection.cs,
13897           GridTableStylesCollection.cs, TreeViewCancelEventArgs.cs, 
13898           TreeNodeCollection.cs, AmbientProperties.cs, 
13899           RichTextBoxSelectionAttribute.cs, RichTextBoxSelectionTypes.cs,
13900           DataObject.cs, ErrorProvider.cs, Splitter.cs,
13901           DataGridLineStyle.cs, Shortcut.cs, Control.cs,
13902           FontDialog.cs, SecurityIDType.cs, GridItemType.cs,
13903           BindingMemberInfo.cs, DataGridCell.cs, MdiChildContext.cs,
13904           IRootGridEntry.cs, PropertyGridView.cs, DataGridParentRowsLabelStyle.cs,
13905           FolderBrowserDialog.cs, OpacityConverter.cs, HelpProvider.cs,
13906           IComponentEditorPageSite.cs, DataGridTableStyle.cs, NavigateEventArgs.cs,
13907           NotifyIcon.cs, ContentsResizedEventHandler.cs, MenuItem.cs,
13908           PropertyTabChangedEventHandler.cs, TextBoxBase.cs, OpenTreeNodeEnumerator.cs,
13909           SelectionMode.cs, TextBox.cs, ListBindingConverter.cs,
13910           FileDialog.cs, KeysConverter.cs, DomainUpDown.cs,
13911           DataFormats.cs, SaveFileDialog.cs, GridItemCollection.cs,
13912           ArrangeDirection.cs, FeatureSupport.cs, SelectionRangeConverter.cs,
13913           RichTextBoxScrollBars.cs, NodeLabelEditEventHandler.cs, TreeNodeConverter.cs,
13914           MimeIcon.cs, X11Structs.cs, PropertyGridEntry.cs,
13915           ImageList.cs, ThemeWin32Classic.cs, X11Keyboard.cs,
13916           CheckedListBox.cs, HelpNavigator.cs, DateTimePickerFormat.cs,
13917           MdiClient.cs, DataGridDrawingLogic.cs, DataGridBoolColumn.cs,
13918           NodeLabelEditEventArgs.cs, Screen.cs, PropertyManager.cs,
13919           ComponentModel.cs, PropertiesTab.cs, CurrencyManager.cs,
13920           SizeGrip.cs, DateBoldEventArgs.cs, X11Dnd.cs, Panel.cs,
13921           Hwnd.cs, OSXStructs.cs, DrawMode.cs, XplatUIDriver.cs,
13922           RichTextBox.cs, PropertyTabChangedEventArgs.cs, CommonDialog.cs,
13923           DataGrid.cs, XplatUIX11.cs, RichTextBoxStreamType.cs, Win32DnD.cs,
13924           ErrorBlinkStyle.cs, TreeViewEventHandler.cs,
13925           PropertyValueChangedEventHandler.cs, IFileReaderService.cs,
13926           DataGridTextBox.cs, SelectedGridItemChangedEventArgs.cs, ScrollBar.cs,
13927           ListBox.cs, TreeViewAction.cs, Help.cs, TrackBar.cs,
13928           AxHost.cs, PropertyValueChangedEventArgs.cs, XplatUIOSX.cs,
13929           RichTextBoxFinds.cs, UpDownEventArgs.cs, Cursors.cs,
13930           CategoryGridEntry.cs, RichTextBoxWordPunctuations.cs, DataGridColumnStyle.cs,
13931           SelectedGridItemChangedEventHandler.cs, DateTimePicker.cs, NavigateEventHandler.cs,
13932           Clipboard.cs, UpDownEventHandler.cs, MonthCalendar.cs,
13933           SendKeys.cs, DataGridPreferredColumnWidthTypeConverter.cs, TreeView.cs,
13934           ThreadExceptionDialog.cs, ImageListConverter.cs, XplatUIWin32.cs,
13935           TreeViewEventArgs.cs: Fixed whitespace and set eol-style:native attribute
13937 2005-09-21  Jackson Harper  <jackson@ximian.com>
13939         * TreeNode.cs: Call Before/After Expand not Collapse when
13940         expanding.
13942 2005-09-20  Jackson Harper  <jackson@ximian.com>
13943         
13944         * XplatUIX11.cs: Use the more hand looking hand (in most themes).
13946 2005-09-16  Jordi Mas i Hernandez <jordi@ximian.com>
13947          
13948         * ListViewItem.cs:
13949                 - Fixes bug 76120
13950                 - Fixes proper storing of subitems
13951                 - Fixes not updated items
13953 2005-09-20  Peter Dennis Bartok  <pbartok@novell.com>
13955         * Control.cs, TextBoxBase.cs, TextControl.cs: Don't do certain
13956           things if our window handle isn't created yet. Also disabled 
13957           debug for TextBoxBase
13959 2005-09-20  Peter Dennis Bartok  <pbartok@novell.com> 
13961         * MenuAPI.cs: Remove filtering of events to allow menu usage
13963 2005-09-20  Miguel de Icaza  <miguel@novell.com>
13965         * Cursor.cs: Allow null to be passed to Cursor.Current.
13967 2005-09-20  Alexander Olk  <alex.olk@googlemail.com>
13969         * ThemeWin32Classic.cs:
13970           - Change some private methods/fields to protected virtual so that 
13971             they can be accessed and overriden in derived classes
13972           - First refactoring of some methods. Derived themes now don't 
13973             need to duplicate the complete code from ThemeWin32Classic
13974         * ThemeNice.cs:
13975           - Added nice StatusBar
13976           - Derive from ThemeWin32Classic and not Theme
13977           - Removed duplicate ThemeWin32Classic code
13979 2005-09-20  Miguel de Icaza  <miguel@novell.com>
13981         * Control.cs (ControlCollection.Add): If the value null is passed
13982         the control is ignored. 
13984         Optimize this loop.
13986 2005-09-19  Peter Dennis Bartok  <pbartok@novell.com> 
13988         * MenuAPI.cs: Replaced Application.Run() with a loop that tracks
13989           PostQuitMessage state.
13990         * XplatUIWin32.cs: Removed bogus PostQuitMessage P/Invoke with HWND arg
13992 2005-09-19  Peter Dennis Bartok  <pbartok@novell.com>
13994         * Application.cs: Our constructor will never get called, move 
13995           initialization to fields; fixes bug #75933
13997 2005-09-19 Hisham Mardam Bey <hisham.mardambey@gmail.com>
13999         * FileDialog.cs :
14000                 - Allow files to be selected properly using file name
14001                 combo box.
14002                 - Add ability to change diretory (absolute / relative)
14003                 using file name combo box.
14005 2005-09-16  Jordi Mas i Hernandez <jordi@ximian.com>
14006          
14007         * ListBox.cs: 
14008                 - Fixes Multicolumn listboxes item wrong calculations
14009                 - Allows to click when only one item is in the listbox
14010                 - Fixes crash when no items using keyboard navigation
14012 2005-09-16  Alexander Olk  <alex.olk@googlemail.com>
14014         * ComboBox.cs: Reverted almost everything from the latest patch which
14015           broke ComboBox
14017 2005-09-16  Kazuki Oikawa <kazuki@panicode.com>
14018         
14019         * ToolTip.cs:
14020                 - Fixed #Mtd2 of ToolTipTest.RemoveToolTipTest.
14021         * ComboBox.cs:
14022                 - When DropDownStyle is Simple, it does not show scrollbar 
14023                 to the last item of the list.
14024                 - When DropDownStyle is Simple, it crashed when the list was 
14025                 scrolled down with the down cursor key.
14026                 - Fixed a bug that when DropDownStyle is DropDownList, the 
14027                 selected item was not shown.
14028                 - The position of the selected item was not preserved when 
14029                 the next dropdown happened.
14030         * ThemeWin32Classic.cs:
14031                 - Items were wrapped at the right end.
14032         * CheckedListBox.cs:
14033                 - Fixed Add method
14034         * ListBox.cs:
14035                 - Items should be fully shown.
14036                 - When resizing and vertical scrollbar disappeared, the item 
14037                 of index 0 should be on the top of the list.
14038                 - GetItemRectangle should consider the size of ver. scrollbar
14039         * StatusBar.cs:
14040                 - SizingGrip area should not be allocated when it is not 
14041                 displayed.
14042                 - Now it reflects MinWidth of the containing panel and 
14043                 fixed a crash that happens when its width becomes so small.
14045 2005-09-13  Jordi Mas i Hernandez <jordi@ximian.com>
14047         * CheckedListBox.cs: Fixes bug 76028
14048         * ListBox.cs: Fixes bug 76028
14050 2005-09-13  Jordi Mas i Hernandez <jordi@ximian.com>
14052         * ThemeWin32Classic.cs: Sets clipping on DataGridPaintRowsHeaders
14053         * DataGridDrawingLogic.cs: fixes issues with Datagrid drawing
14055 2005-09-12  Jordi Mas i Hernandez <jordi@ximian.com>
14057         * XplatUIX11.cs: fixes System.NullReferenceException in some situations
14059 2005-09-09  Jonathan Chambers  <jonathan.chambers@ansys.com>
14061         * IRootGridEntry.cs: Changed namespace to PropertyGridInternal 
14063 2005-09-09  Jonathan Chambers  <jonathan.chambers@ansys.com>
14065         * IRootGridEntry.cs: Added
14066         * PropertyGridCommands.cs: Added
14067         * PropertiesTab.cs: Added missing methods and property
14068         * PropertyGridView.cs: Made class internal
14069         * PropertyGridTextBox.cs: Made class internal
14071 2005-09-09  Alexander Olk  <alex.olk@googlemail.com>
14073         * MimeIcon.cs: Try to check some other environment variables
14074           if "DESKTOP_SESSION" returns "default"
14076 2005-09-09  Alexander Olk  <alex.olk@googlemail.com>
14078         * ThemeNice.cs: Corrected background colors (e.g. menus)
14079         * ColorDialog.cs: Use correct background colors for controls
14081 2005-09-09  Alexander Olk  <alex.olk@googlemail.com>
14083         * ThemeNice.cs: Merged r49535 from ThemeWin32Classic
14085 2005-09-08  Peter Dennis Bartok  <pbartok@novell.com>
14087         * RichTextBox.cs: Added initial implementation
14088         * lang.cs: Removed. Was accidentally checked in long time ago
14089         * TODO: Removed. Contents were obsolete
14091 2005-09-06  Jonathan Chambers  <jonathan.chambers@ansys.com>
14092                                                                                 
14093         * PropertiesTab.cs : Added
14095 2005-09-06  Jonathan Chambers  <jonathan.chambers@ansys.com>
14096                                                                                 
14097         * PropertyGrid.cs : Update
14098         * PropertyGridView.cs : Update
14099         * System.Windows.Forms.resx : Added images and strings
14101 2005-09-06  Peter Dennis Bartok  <pbartok@novell.com> 
14103         * ThemeNice.cs: Do not dispose Pens retrieved from ResPool
14105 2005-09-06  Peter Dennis Bartok  <pbartok@novell.com>
14107         * XplatUIX11.cs: Force a flush after Ungrab; if case the app enters
14108           a busy loop right after the Ungrab the X11 display is otherwise 
14109           blocked
14111 2005-09-06  Jordi Mas i Hernandez <jordi@ximian.com>
14113         * ThemeWin32Classic.cs: Optimise the use of clipping
14115 2005-09-05  Jordi Mas i Hernandez <jordi@ximian.com>
14117         * DataGrid.cs: fixes recursion bug
14119 2005-09-03  Alexander Olk  <alex.olk@googlemail.com>
14121         * ThemeNice.cs: 
14122           - Draw RadioButton and CheckBox Buttons with DrawButtonBase
14123           - Cleanup
14125 2005-09-02  Alexander Olk  <alex.olk@googlemail.com>
14127         * ThemeNice.cs: Draw nice ProgressBars
14129 2005-09-01  Miguel de Icaza  <miguel@novell.com>
14131         * VScrollBar.cs: Another buglet found by Aaron's tool. 
14133         * ProgressBar.cs: Fix three recursive bugs found by Aaron Tomb's
14134         bug finder.
14136 2005-08-30  Alexander Olk  <alex.olk@googlemail.com>
14138         * ThemeNice.cs:
14139           - Added nicer menu drawing
14140           - Updated DrawTab
14141           - some refactoring
14143 2005-08-30  Peter Dennis Bartok  <pbartok@novell.com>
14145         * CreateParams.cs (ToString): Made output match MS
14146         * Control.cs (Text): Don't set Text or Focus via XplatUI unless 
14147             handle is already created (to avoid forcing window creation)
14148         * XplatUIX11.cs: Set window text to caption after creating window,
14149           in case Text was set before window was created
14150         * Form.cs: Use this.Text instead of a static string as caption
14152 2005-08-30  Peter Dennis Bartok  <pbartok@novell.com> 
14154         * NotifyIcon.cs: Don't set the window to visible; this screws
14155           up Win32 (causes WM_NCPAINT to be sent on Win32, which calls
14156           OnPaint without a bitmap)
14157         * XplatUIX11.cs: Removed Visible optimization in AddExpose; doesn't 
14158           happen very often anyway; we could add the check to the WM_PAINT 
14159           event generation code
14161 2005-08-30  Peter Dennis Bartok  <pbartok@novell.com>
14163         * NotifyIcon.cs: Fill the icon area with a background color, to 
14164           avoid 'residue' when transparent icons are drawn
14165         * XplatUIX11.cs:
14166           - Handle whole_window == client_window when destroying windows
14167           - SystrayAdd(): Set client_window to whole_window value to
14168             get mouse and other events passed to NotifyIcon
14170 2005-08-30  Peter Dennis Bartok  <pbartok@novell.com> 
14172         * Form.cs: Set proper default for Opacity property
14173         * NotifyIcon.cs:
14174           - ShowSystray(): Don't bother creating telling the OS
14175             about the systray item if no icon is provided
14176           - Now handles WM_NCPAINT message to deal with whole/client window
14177             split
14178           - Create window as visible to not get caught by Expose optimization
14179         * Hwnd.cs: Removed debug message
14180         * ComboBox.cs, ScrollBar.cs, ListBox.cs, TrackBar.cs, TabControl.cs,
14181           StatusBar.cs, TreeView.cs, XplatUIOSX.cs, XplatUIWin32.cs: Switched 
14182             PaintEventStart/End to use new client argument
14183         * TextBoxBase.cs:
14184           - Commented out debug messages
14185           - Switched PaintEventStart/End to use new client argument
14186         * XplatUI.cs: Added client window bool to PaintEventStart()/
14187           PaintEventEnd() calls, to support drawing in non-client areas
14188         * XplatUIDriver.cs: 
14189           - Added client window bool to PaintEventStart()/PaintEventEnd() 
14190             calls, to support drawing in non-client areas
14191           - Added conditional compile to allow using MWF BeginInvoke 
14192             on MS runtime
14193         * XplatUIX11.cs:
14194           - Added some conditional debug output
14195           - Fixed SystrayAdd() method to support new (for SystrayAdd, anyway)
14196             whole/client window split
14197           - Implemented handling of client argument to PaintEventStart()/End()
14198         * Control.cs:
14199           - Throw exception if BeginInvoke() is called and the window handle
14200             or one of the window's parent handles is not created
14201           - Added conditional compile to allow using MWF BeginInvoke on
14202             MS runtime
14203           - get_Parent(): Only sets parent if handle is created. This avoids
14204             forcing window handle creation when parent is set.
14205           - Now fires Layout and Parent changed events in proper order
14206           - Switched to use Handle instead of window.Handle for Z-Order setting,
14207             the get_Parent() patch above causes us to possibly get null for 'window'
14208           - Implemented handling of client argument to PaintEventStart()/End()
14209           - Now reports back to windows that WM_SETCURSOR was handled (to avoid
14210             default handling)
14211           - Now sends a Refresh() to all child windows when Refresh() is called
14213 2005-08-29  Peter Dennis Bartok  <pbartok@novell.com> 
14215         * Form.cs: Added (non-functional) Opacity property
14216         * XplatUIWin32.cs (SystrayAdd): Removed bogus line of code
14218 2005-08-29  Alexander Olk  <xenomorph2@onlinehome.de>
14219         * ThemeNice.cs: New theme for MWF, based on ThemWin32Classic
14220           use export MONO_THEME=nice to activate it.
14221           Currently supported controls:
14222           - Button
14223           - ComboBox
14224           - ScrollBar
14225           - TabControl (TabAlignment.Top only, other will follow)
14226         * ThemeEngine.cs: Add theme nice
14227         * ButtonBase.cs: Redraw button on MouseEnter and MouseLeave everytime,
14228           if enabled
14230 2005-08-25  Jonathan Chambers  <jonathan.chambers@ansys.com> 
14232         * Splitter.cs: Resize docked control and its neighbor.
14234 2005-08-24  Rafael Teixeira <rafaelteixeirabr@hotmail.com> 
14235         -- Making Windows with Menus layout correctly --
14236         * Form.cs : The first leg of the fix
14237                 Menu setter - adjust Client Size as needed to make space for the menu
14238                 SetClientSizeCore - doesn't call base version to be able to pass the 
14239                         menu handle to XplatUI.CalculateWindowRect
14240         * Hwnd.cs: Fix for menu_height, now gets from MenuAPI.MENU
14241         * XplatUIX11.cs: The critical second leg of the fix
14242                 GetWindowPos needs to use a recalculated client_rect
14243                 so that resizing the window doesn't break layout of child controls. 
14244                 Also a more complete rule to avoid X Server roundtrips in SetWindowPos
14245                 Lots of \t\n killed
14247 2005-08-23  Peter Dennis Bartok  <pbartok@novell.com> 
14249         * Label.cs: Now properly recalculates width and height on Font and Text
14250           changes if AutoSize is set
14252 2005-08-19  Rafael Teixeira <rafaelteixeirabr@hotmail.com> 
14253         * TreeView.cs : Revamped drawing logic, and support for FullRowSelect
14255 2005-08-19  Jordi Mas i Hernandez <jordi@ximian.com>
14257         * ImageList.cs: Makes ToString method compatible with MS
14259 2005-08-18  Jordi Mas i Hernandez <jordi@ximian.com>
14261         * MenuAPI.cs: fixes bug 75716
14263 2005-08-11 Umadevi S <sumadevi@novell.com>
14264         * Control.cs: Fixed Remove & RemoveAt to make the parent of the control null.
14266 2005-08-11 Umadevi S <sumadevi@novell.com>
14267         * Contorl.cs: Fixed ResetRightToLeft and ResetImeMode to work correctly
14269 2005-08-10  Umadevi S <sumadevi@novell.com>
14270         * CheckedListBox.cs: Fixed event firing on Adding to the CheckedListBox
14272 2005-08-07  Jordi Mas i Hernandez <jordi@ximian.com>
14274         * Menu.cs: fixes bug 75700
14275         * MenuAPI.cs: fixes navigation issues
14277 2005-08-09  Umadevi S <sumadevi@novell.com>
14278         * CheckedListBox.cs - simple fix for GetItemChecked.
14280 2005-08-08  Jordi Mas i Hernandez <jordi@ximian.com>
14282         * ComboBox.cs: Serveral fixes
14283         * ListBox.cs: Serveral fixes
14285 2005-08-05  Jordi Mas i Hernandez <jordi@ximian.com>
14287         * ComboBox.cs: Fixes FindString methods and GetItemHeight
14288         * ListBox.cs: Fixes FindString methods
14290 2005-08-05  Jordi Mas i Hernandez <jordi@ximian.com>
14292         * DataGrid.cs: fixes bugs exposed by new tests
14294 2005-08-04  Peter Dennis Bartok  <pbartok@novell.com> 
14296         * Mime.cs: Compile Mono assembly references only if compiling
14297           with Mono (Allows to build with VS.Net again)
14299 2005-07-28  Marek Safar  <marek.safar@seznam.cz>
14301         * Control.cs (PaintControlBackground): Draw background image
14302         corrrectly.
14303         (CheckForIllegalCrossThreadCalls): Stubbed.
14304         
14305         * Form.cs (OnCreateControl): Center when should be centered.
14306         
14307         * ThemeWin32Classic.cs (DrawPictureBox): Pass size.
14309 2005-07-19  Jordi Mas i Hernandez <jordi@ximian.com>
14311         * Binding.cs: Binding to properties should be case unsensitive
14313 2005-07-18 vlindos@nucleusys.com
14315         * DataGrid.cs: fixes setmember order
14317 2005-07-07  Alexander Olk  <xenomorph2@onlinehome.de>
14319         * MimeIcon.cs: added MimeIcon stuff (MimeIconEngine)
14320         * FileDialog.cs: FileDialog is now resizable and uses the new
14321           MimeIconEngine
14323 2005-07-06  Jordi Mas i Hernandez <jordi@ximian.com>
14325         * DataGridTextBoxColumn.cs: default value
14326         * GridColumnStylesCollection.cs: fixes event firing, checking MappingName
14327         * GridTableStylesCollection.cs: fixes checking MappingName
14328         * DataGridDrawingLogic.cs: fixes drawing logic issues
14329         * DataSourceHelper.cs: rewritten to make compatible with more data sources
14330         * DataGrid.cs: fixes    
14332 2005-07-06  Alexander Olk  <xenomorph2@onlinehome.de>
14334         * MimeGenerated.cs: Use case sensitive comparer for
14335           NameValueCollections
14337 2005-07-01  Jordi Mas i Hernandez <jordi@ximian.com>
14339         * DataGridTextBoxColumn.cs: bug fixes, code refactoring 
14340         * ThemeWin32Classic.cs: bug fixes, code refactoring
14341         * DataGridDrawingLogic.cs:  bug fixes, code refactoring
14342         * DataGrid.cs: bug fixes, code refactoring
14343         * DataGridTextBox.cs: bug fixes, code refactoring
14344         * DataGridColumnStyle.cs:  bug fixes, code refactoring
14345         * Theme.cs:  bug fixes, code refactoring
14347 2005-07-01  Peter Bartok  <pbartok@novell.com> 
14349         * TextControl.cs: Quick fix for the reported crash on ColorDialog
14350           and other text box usage
14352 2005-07-01  Jackson Harper  <jackson@ximian.com>
14354         * TabControl.cs: Make sure the bottom of the tab covers the pages
14355         border.
14357 2005-06-30  Peter Bartok  <pbartok@novell.com> 
14359         * Form.cs (ShowDialog): Assign owner of the dialog
14360         * TextBoxBase.cs: Always refresh caret size when deleting, caret
14361           might have been moved to a tag with different height
14363 2005-06-30  Jackson Harper  <jackson@ximian.com>
14365         * Form.cs: Don't create an infinite loop when setting focus
14366         * MenuItem.cs: Don't dirty the parents if we don't have any
14368 2005-06-29  Ben Maurer  <bmaurer@ximian.com>
14370         * LibSupport.cs: Rename
14372 2005-06-29  Peter Bartok  <pbartok@novell.com>
14374         * TextBoxBase.cs: Re-align caret after deleting a character
14375         * TextControl.cs:
14376           - DeleteChars(): Ensure that tag covers the provided position
14377           - StreamLine(): Drop reference for dropped tag
14379 2005-06-29  Peter Bartok  <pbartok@novell.com> 
14381         * TextControl.cs: 
14382           - Selections now work properly, anchoring at the initial location
14383             and properly extending in either direction (SetSelectionToCaret(),
14384             SetSelectionStart() and SetSelectionEnd())
14385           - No longer redraws the whole control on selection change, now
14386             calculates delta between previous and new selection and only
14387             invalidates/redraws that area
14388           - Fixed FindPos() math off-by-one errors
14389           - Changed DeleteChars() to verify the provided tag covers the
14390             provided position, selections may have a tag that doesn't cover
14391             the position if the selection is at a tag border
14392           - Fixed off-by-one errors in DeleteChars()
14393           - Added missing streamlining check in DeleteChars() to remove
14394             zero-length tags
14395           - Implemented Invalidate() method, now properly calculates exposures
14396             between two given lines/positions
14397           - Implemented SetSelection()
14398           - Obsoleted and removed FixupSelection()
14399           - Improved RecalculateDocument() logic, removing code duplication
14401 2005-06-29 Gonzalo Paniagua Javier <gonzalo@ximian.com>
14403         * LibSupport.cs: changes to match different input/output arguments.
14405 2005-06-29 Gonzalo Paniagua Javier <gonzalo@ximian.com>
14407         * LibSupport.cs: added libsupport.so init routine.
14409 2005-06-29  Jordi Mas i Hernandez <jordi@ximian.com>
14410         
14411         * ControlBindingsCollection.cs
14412                 - Throws an exception on null datasource when adding
14413                 - Checks for duplicated bindings when adding
14415 2005-06-28  Jackson Harper  <jackson@ximian.com>
14417         * TreeView.cs (OnKeyDown): Support left and right properly
14418         (navigates as well as expanding and collapsing.
14419         - Add support for Multiply, this expands all the selected nodes
14420         children.
14421         - Fix some tabbing.
14423 2005-06-28  Jackson Harper  <jackson@ximian.com>
14425         * TreeView.cs: Implement keyboard navigation, currently supports,
14426         LEFT, RIGHT, UP, DOWN, PGUP, PGDOWN, HOME, END, ADD, SUBTRACT. Add
14427         support for toggling checkboxes with the space bar.
14429 2005-06-28  Jackson Harper  <jackson@ximian.com>
14431         * OpenTreeNodeEnumerator.cs: Don't move past the begining of the
14432         tree.
14434 2005-06-28  Jackson Harper  <jackson@ximian.com>
14436         * TreeView.cs: Add missing event.
14438 2005-06-27  Peter Bartok  <pbartok@novell.com> 
14440         * TextControl.cs:
14441           - Made line ending size configurable (now allows for counting 
14442             lineendings as \n or \r\n)
14443           - Added margin to viewport to keep caret visible on right side
14444           - Fixed translation routines for line/pos to documentpos to consider
14445             cr/lf when counting (Fixes RichTextBox.SelectionFont issues)
14446           - Fixed some line-endings to be unix style
14447           - Fixed Document.FormatText to perform it's calculations 1-based
14448           - Added descriptions for a few methods that might otherwise get 
14449             used wrong
14450           - Added NOTE section with some basic conventions to remember at 
14451             the top of the file
14452           - Major fixup for RichTextBox selection drawing:
14453             * Fixed crashes when multiple tags on a single line were selected
14454             * fixed selection box drawing not overlaying text
14455             * fixed bogus offset calculation for tags not starting at index 1
14456             * Switched behaviour from using multiple Substrings of a 
14457               StringBuilder.ToString() to using multiple 
14458               StringBuilder.ToString(start, length) statements, hoping this is
14459               faster (kept original version commented out in the code, in case
14460               original version was faster)
14461         * TextBox.cs (set_TextAlignment): TextBox always needs to wrap if 
14462           alignment != Left
14463         * TextBoxBase.cs (CalculateDocument): Made protected so RichTextBox can
14464           call it as well
14466 2005-06-27  Jackson Harper  <jackson@ximian.com>
14468         * TabControl.cs: Move to the left and right with the arrow
14469         keys. These keys don't cycle beyond first and last like
14470         tab. Refresh all the tabs when scrolling them to the left or
14471         right.
14473 2005-06-27  Jackson Harper  <jackson@ximian.com>
14475         * TabControl.cs:
14476           - ToString: Added method
14477           - CreateParams: Remove TODO and comment
14478           - OnKeyDown: Cycle through bounds properly.
14479           - SelectedIndex: Scroll to the right or left if we need to
14480           display the newly selected tab.
14482 2005-06-23  Jackson Harper  <jackson@ximian.com>
14484         * TabControl.cs: Stay in bounds when cycling. Make sure Handled is
14485         set.
14487 2005-06-23  Jackson Harper  <jackson@ximian.com>
14489         * TabControl.cs: Keyboard handling. We now support CTRL-TAB,
14490         CTRL-SHIFT-TAB, and HOME, END are there any others?
14492 2005-06-23  Jackson Harper  <jackson@ximian.com>
14494         * XplatUIX11.cs: Get the modifier keys from the keyboard driver.
14496 2005-06-22  Jordi Mas i Hernandez <jordi@ximian.com>
14497         
14498         * DataGridTextBoxColumn.cs: fixes and enhancements
14499         * ThemeWin32Classic.cs: fixes and enhancements
14500         * DataGridBoolColumn.cs:  fixes and enhancements
14501         * DataGridDrawingLogic.cs:  fixes and enhancements
14502         * CurrencyManager.cs: fixes and enhancements
14503         * DataGrid.cs: fixes and enhancements
14504         * DataGridColumnStyle.cs:  fixes and enhancements
14506 2005-06-22  Jackson Harper  <jackson@ximian.com>
14508         * TabControl.cs: Add some missing methods that just call into the
14509         base. Make the TabPageCollection's IList interface behave in the
14510         same manner as the MS implementation.
14512 2005-06-22  Peter Bartok  <pbartok@novell.com> 
14514         * TextControl.cs: Added sanity check
14515         * TextBoxBase.cs: 
14516           - Fixed wrapping behaviour, don't set wrap on single line controls
14517             (this fixes the breakage of colordialog introduced in an earlier
14518              checkin)
14519           - Added rudimentary support for autoscrolling right-aligned controls
14520             (still needs fixing, also, center alignment scroll is missing)
14522 2005-06-22  Jordi Mas i Hernandez <jordi@ximian.com>
14523         
14524         * ScrollBar.cs: Fixes thumbpos on Maximum values
14526 2005-06-21  Jonathan Chambers <jonathan.chambers@ansys.com>
14527         
14528         * PropertyGridView.cs: Pass context information to UITypeEditors 
14530 2005-06-21  Peter Bartok  <pbartok@novell.com> 
14532         * TextBoxBase.cs:
14533           - Now calling PositionCaret with absolute space coordinates
14534           - Enabled vertical scrolling
14535           - Better tracking of scrollbar changes, tied into WidthChange
14536             event
14537           - Improved cursor tracking
14538           - Removed debug output
14539         * TextControl.cs:
14540           - PositionCaret coordinates are now works in absolute space, not 
14541             the canvas
14542           - Improved tracking of document size
14543           - Added events for width and height changes
14545 2005-06-21  Peter Bartok  <pbartok@novell.com>
14547         * Form.cs: Set focus to active control when form is activated
14548         * TextControl.cs: 
14549           - Added word-wrap functionality to RecalculateLine() 
14550           - Added some short function descriptions for VS.Net to aid in
14551             writing dependent controls
14552           - Added Caret property, returning the current coords of the caret
14553           - Added ViewPortWidth and ViewPortHeight properties
14554           - Added Wrap property
14555           - Added CaretMoved event
14556           - Removed some old debug code
14557           - Split() can now create soft splits
14558           - Added PreviousTag()/NextTag() to allow walking "tag-lists"
14559           - Added method to format existing text
14560           - Fixed size/alignment calculations to use viewport
14561           - RecalculateDocument now can handle changing line-numbers while
14562             calculating lines
14564         * TextBox.cs:
14565           - Added some wrap logic, we don't wrap if alignment is not left
14566           - Added casts for scrollbar var, base class switched types to
14567             also support RichTextBoxA
14568           - Implemented handling of scrollbar visibility flags
14570         * TextBoxBase.cs:
14571           - Switched scrollbars type to RichTextBoxScrollBars to support
14572             RichTextBox
14573           - Added tracking of canvas width/height
14574           - Switched scrollbars to be not selectable (to keep focus on text)
14575           - Added central CalculateDocument() method to handle all redraw
14576             requirements
14577           - Added ReadOnly support
14578           - Added WordWrap support
14579           - Fixed handling of Enter key (we now treat it as a DialogKey)
14580           - Fixed caret positioning when h or v scroll is not zero
14581           - Fixed placing/generation of vertical scrollbar
14582           - Added CalculateScrollBars() method to allow updating scrollbar
14583             limits and visibility
14584           - Fixed handling of horizontal scroll
14585           - Added handling of vertical scroll
14586           - Implemented auto-'jump' when caret moves to close to a left or
14587             right border and there is text to be scrolled into view (currently
14588             there's the potential for a stack overflow, until a bug in
14589             scrollbar is fixed)
14591 2005-06-21  Geoff Norton  <gnorton@customerdna.com>
14592         
14593         * XplatUIOSX.cs: Initial implementation of WM_ERASEBKGND
14595 2005-06-19  Alexander Olk  <xenomorph2@onlinehome.de>
14597         * Mime.cs:
14598         - added inodes.
14599         - return application/x-zerosize for files with size zero
14600           (if no extension pattern matches).
14601         - check matches collection for strings too.
14602         - return only the first mime type if the name value
14603           collection has more than one mime type.
14605 2005-06-18  Jonathan Chambers <jonathan.chambers@ansys.com>
14606         
14607         * PropertyGrid.cs: Cleaned up some TODOs
14608         * PropertyGridView.cs: Added support for UITypeEditors
14610 2005-06-17  Jordi Mas i Hernandez <jordi@ximian.com>
14611         
14612         * DataGrid.cs: clears cached value
14614 2005-06-17  Jordi Mas i Hernandez <jordi@ximian.com>
14616         * DataGridTextBoxColumn.cs: new rows, speed improvements, fixes, readonly prop.
14617         * DataGridDrawingLogic.cs: new rows, speed improvements, fixes, readonly prop.
14618         * DataGrid.cs: new rows, speed improvements, fixes, readonly prop.
14619         * DataGridColumnStyle.cs: new rows, speed improvements, fixes, readonly prop.
14620         
14621 2005-06-16  Jordi Mas i Hernandez <jordi@ximian.com>
14623         * ThemeWin32Classic.cs: fixes colour
14625 2005-06-15  Peter Bartok  <pbartok@novell.com>
14627         * MWFCategoryAttribute.cs: Added (Needed for PropertyGrid designer support)
14628         * MWFDescriptionAttribute.cs: Added (Needed for PropertyGrid designer support)
14629         * ButtonBase.cs: Added MWFCategory and MWFDescription attributes
14630         * Control.cs: Added some MWFCategory and MWFDescription attributes
14631         * ScrollBar.cs: Added some MWFCategory and MWFDescription attributes
14633 2005-06-15  Alexander Olk  <xenomorph2@onlinehome.de>
14635         * Mime.cs, MimeGenerated.cs: First draft of MWF mime stuff, see Mime.cs for
14636         usage
14638 2005-06-14  Jordi Mas i Hernandez <jordi@ximian.com>
14640         * DataGridTextBoxColumn.cs: default datagrid settings for Default Styles, fixes
14641         * DataGridTableStyle.cs: default datagrid settings for Default Styles, fixes
14642         * DataGridDrawingLogic.cs: default datagrid settings for Default Styles, fixes
14643         * DataGridBoolColumn.cs: default datagrid settings for Default Styles, fixes
14644         * DataGrid.cs: default datagrid settings for Default Styles, fixes
14645         * DataGridColumnStyle.cs: default datagrid settings for Default Styles, fixes
14647 2005-06-13  Jackson Harper  <jackson@ximian.com>
14649         * XplatUIX11.cs: Override SetAllowDrop on X11 so an error message
14650         isn't printed when the user enables dropping. (X11 does accept
14651         drops).
14652         
14653 2005-06-13  Jackson Harper  <jackson@ximian.com>
14655         * TreeView.cs: Remove some TODOS.
14657 2005-06-13  Jackson Harper  <jackson@ximian.com>
14659         * Form.cs: Hook into the mdi framework.
14660         * MdiClient.cs: Use the base control collections add method so
14661         parents get setup correctly. Set the default back colour and dock
14662         style.
14663         * MdiChildContext.cs: New class, this bad actor handles an
14664         instance of an MDI window. Right now there is only basic
14665         support. You can drag, close, and resize windows. Minimize and
14666         Maximize are partially implemented.
14668 2005-06-13  Jackson Harper  <jackson@ximian.com>
14670         * XplatUIX11.cs: Mash numbers together properly, otherwise we get
14671         freaky when both vals are negative. NOTE: There are probably other
14672         places in XplatUIX11 that this needs to be done.
14674 2005-06-13  Jordi Mas i Hernandez <jordi@ximian.com>
14676         * DataGrid.cs: implement missing methods, move KeyboardNavigation
14677         * DataGridColumnStyle.cs: fixes signature
14679 2005-06-12  Jackson Harper  <jackson@ximian.com>
14681         * XplatUIX11.cs: Use sizing cursors similar to the ones on
14682         windows.
14684 2005-06-11  Jackson Harper  <jackson@ximian.com>
14686         * StatusBarPanel.cs: Signature cleanups. Implement
14687         BeginInit/EndInit.
14689 2005-06-10  Jordi Mas i Hernandez <jordi@ximian.com>
14691         * DataGridTextBoxColumn.cs: Honors aligment
14692         * GridColumnStylesCollection.cs: Contains is case unsensitive
14693         * GridTableStylesCollection.cs: several fixes
14694         * DataGridTableStyle.cs: default column creation
14695         * DataGridDrawingLogic.cs: fixes
14696         * CurrencyManager.cs: ListName property
14697         * DataGrid.cs: multiple styles support
14698         * DataGridColumnStyle.cs: fixes
14699         
14701 2005-06-10  Peter Bartok  <pbartok@novell.com>
14703         * Control.cs(Select): Moved SetFocus call to avoid potential
14704           loops if controls change the active control when getting focus
14705         * UpDownBase.cs: Fixes to allow proper keyboard focus after clicking
14706           the up/down buttons
14708 2005-06-10  Matthias Felgner  <matthiasf@voelcker.ocm>
14710         * ImageListConverter.cs: Implemented
14712 2005-06-10  John BouAntoun <jba-mono@optusnet.com.au>
14714         * MonthCalendar.cs: Wired in NumericUpDown control for year
14716 2005-06-10  John BouAntoun <jba-mono@optusnet.com.au>
14718         * MonthCalendar.cs: Removed MonoTodo attributes on Click and
14719           DoubleClick events, since they are not meant to be fired.
14721 2005-06-09  Peter Bartok  <pbartok@novell.com>
14723         * UpDownBase.cs, NumericUpDown.cs, DomainUpDown.cs: Integrated
14724           Jonathan's standalone controls into MWF, implemented missing
14725           events, attributes and methods; added xxxAccessible classes
14726         * AccessibleObject.cs: Made fields internal so other classes
14727           can change them if needed
14729 2005-06-09  Jonathan Gilbert  <2a5gjx302@sneakemail.com>
14731         * UpDownBase.cs: Complete implementation
14732         * NumericUpDown.cs: Complete implementation
14733         * DomainUpDown.cs: Complete implementation
14735 2005-06-09  Jordi Mas i Hernandez <jordi@ximian.com>
14737         * DataGridTextBoxColumn.cs: drawing fixes
14738         * DataGridCell.cs: fixes ToString method to match MSNet
14739         * DataGridTableStyle.cs: fixes
14740         * DataGridBoolColumn.cs: fixes, drawing
14741         * DataGridDrawingLogic.cs: fixes, new methods
14742         * DataGridTextBox.cs: Keyboard and fixes
14743         * DataGrid.cs:
14744                 - Keyboard navigation
14745                 - Scrolling fixes
14746                 - Row selection (single, multiple, deletion, etc)
14747                 - Lots of fixes
14748         
14749 2005-06-07  Jackson Harper  <jackson@ximian.com>
14751         * ThemeWin32Classic.cs: Clear the background area when drawing
14752         buttons.
14754 2005-06-06  Peter Bartok  <pbartok@novell.com>
14756         * ImageListStreamer.cs: Fixed signature for GetData
14757         * CheckBox.cs: Fixed base class for CheckBoxAccessibleObject
14758         * ComboBox.cs:
14759           - Added missing ChildAccessibleObject class
14760           - Added missing OnXXXFocus overrides, switched to using those
14761             instead of the event handler
14762         * Control.cs:
14763           - Added Parent property for ControlAccessibleObject
14764           - Fixed signatures
14765           - Fixed attributes
14766           - Added ResetBindings()
14767         * ListBindingConverter.cs: Implemented some methods
14768         * ButtonBase.cs: Added missing ButtonBaseAccessibleObject class
14769         * ImageList.cs: Implemented basic handle scheme, removed TODOs
14770         * ContainerControl.cs: Fixed signature, now subscribing to the
14771           ControlRemoved event instead of overriding the handler, LAMESPEC
14772         * CurrencyManager.cs: Added missing attribute
14773         * MonthCalendar.cs: Added missing properties
14775 2005-06-06  Jordi Mas i Hernandez <jordi@ximian.com>
14777         * DataGridColumnStyle.cs: fixes for DataGridColumnStyle
14778         
14779 2005-06-06  Gaurav Vaish and Ankit Jain
14781         * DataSourceHelper.cs: Gaurav Vaish and Ankit Jain patch for databinding
14782         * DataGrid.cs: Gaurav Vaish and Ankit Jain patch for databinding
14783         
14784 2005-06-06  Jordi Mas i Hernandez <jordi@ximian.com>
14786         * Control.cs: fixes CreateParams Width / Height.
14788 2005-06-05  Peter Bartok  <pbartok@novell.com>
14790         * Win32DnD.cs: Removed compilation warnings
14792 2005-06-05  Peter Bartok  <pbartok@novell.com>
14794         * Control.cs (CreateParams): Since we don't know if one of the
14795           properties we use is overridden, lets make sure if we fail accessing
14796           we continue with a backup plan
14798 2005-06-05  Peter Bartok  <pbartok@novell.com>
14800         * Win32DnD.cs:
14801           - Removed debug output
14802           - Added MarshalAs attribute to ensure proper marshalling of FORMATETC
14803             struct
14804           - Plugged resource leak
14805         * XplatUIStructs.cs: Changed ClipboardFormats size to ushort, to match
14806           MS size
14808 2005-06-05  Peter Bartok  <pbartok@novell.com>
14810         * XplatUIWin32.cs: Removed DnD code
14811         * Win32DnD.cs: Implemented drop source and drop target functionality
14813 2005-06-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
14815         * UpDownBase.cs: remove duplicate addition of event, enable some code
14816         that was commented out.
14817         * NumericUpDown.cs: added missing attributes and Hexadecimal property.
14818         Validate input when a key is pressed. It works fine now for every
14819         combination of Hexadecimal. Only missing some drawing love when sharing
14820         space with other controls.
14822 2005-06-04  Peter Bartok  <pbartok@novell.com>
14824         * Control.cs:
14825           - We need to pass a window for DragDrop, so enable callback events
14826           - Added DnD callback events when being a DragSource
14827         * XplatUI.cs (StartDrag): Added window handle argument
14828         * XplatUIDriver.cs (StartDrag): Added window handle argument
14829         * QueryContinueDragEventArgs: Made fields internally accessible so
14830           drivers can set them
14831         * GiveFeedbackEventArgs: Made fields internally accessible so drivers
14832           can set them
14834 2005-06-03  Jordi Mas i Hernandez <jordi@ximian.com>
14836         * DataGridTextBoxColumn.cs: column text editing
14837         * DataGridTableStyle.cs: Respect columns styles created by the user
14838         * DataGridDrawingLogic.cs: lots of drawing fixes and enhanments
14839         * DataGridBoolColumn.cs: bool column editing
14840         * DataGrid.cs: fixes to scrolling, properties, etc
14841         * DataGridTextBox.cs: handle keyboard
14842         * DataGridColumnStyle.cs: fixes
14844 2005-06-02  Jackson Harper  <jackson@ximian.com>
14846         * ImageListStreamer.cs: Somewhat broken implementation of
14847         GetObjectData. The RLE needs some work to match MS properly.
14849 2005-06-02  Jackson Harper  <jackson@ximian.com>
14851         * X11Dnd.cs: Attempting to keep at least one file in MWF
14852         monostyled.
14854 2005-06-02  Peter Bartok  <pbartok@novell.com>
14856         * X11DnD.cs: Use Marshal.SizeOf instead of sizeof, no /unsafe required
14857           that way
14859 2005-06-02  Peter Bartok  <pbartok@novell.com>
14861         * Control.cs: Removed MonoTODO from DoDragDrop and added call to Xplat
14862         * XplatUI.cs: Added DoDragDrop() method
14863         * XplatUIDriver.cs: Added DoDragDrop() method
14865 2005-06-02  Jackson Harper  <jackson@ximian.com>
14867         * Splitter.cs: Implement BorderStyle.
14869 2005-06-02  Jackson Harper  <jackson@ximian.com>
14871         * XplatUIX11.cs: Tie into the X11Dnd subsystem.
14872         * X11Dnd.cs: New file. A subsystem that handles drag and drop on
14873         X11 using XDND.
14875 2005-06-02  Peter Bartok  <pbartok@novell.com>
14877         * DataObject.cs:
14878           - Added Data setter
14879           - Fixed broken insertion code for SetData, now also
14880             overwrites any existing entry of the same format name
14881         * Hwnd.cs: Added list of pointers that automatically gets
14882           freed when the window is disposed
14883         * XplatUI.cs: Call driver initialization method when loading
14884           a driver
14885         * Control.cs:
14886           - OnDragLeave takes EventArgs, not DragEventArgs
14887           - Added setting of WS_EX_ACCEPTFILES style when dropping is
14888             supported
14889           - Forces style update when drop state changes
14890         * XplatUIWin32.cs: Implemented Drag'n'Drop (as good as possible,
14891           not perfect since we cannot (yet) call the IDataObject.GetData()
14892           method, we keep getting 0x80004005 error, dunno why)
14894 2005-06-02  Peter Bartok  <pbartok@novell.com>
14896         * DragEventArgs.cs: Make fields internal so we can cache the
14897           object and re-set the fields from XplatUI
14899 2005-06-02  Jackson Harper  <jackson@ximian.com>
14901         * Control.cs: Add some internal methods so the DnD subsystem can
14902         raise DnD events. Also call into the driver when AllowDrop is set.
14903         * XplatUI.cs:
14904         * XplatUIDriver.cs: New method for setting whether or not a window
14905         is allowed to accept drag and drop messages.
14906                 
14907 2005-06-01  Jordi Mas i Hernandez <jordi@ximian.com>
14908         
14909         * ScrollBar.cs: Make sure that values sent in Scroll events
14910         are always between Maximum and Minimum.
14912 2005-06-01  Marek Safar  <marek.safar@seznam.cz>
14914         * Menu.cs: Call MenuChanged when menuitem visibility has been
14915         changed.
14916         * MenuItem.cs: Rebuild menu when item is (not) visible.
14917         * MainMenu.cs: MainMenu has special MenuChanged.
14918         * Theme.cs: Caption and FrameBorderSize are not fixed.
14919         * XplatUI.cs: Added CaptionHeight,FrameBorderSize.
14920         * XplatUIDriver.cs: Introduced Caption and FrameBorderSize.
14921         * XplatUIX11.cs,
14922         * XplatUIOSX: Caption and FrameBorderSize not implemented yet.
14923         * XplatUIWin32.cs: Get Caption and FrameBorderSize from system.
14925 2005-05-30  Jackson Harper  <jackson@ximian.com>
14927         * DataFormat.cs: We can't statically initialize this stuff because
14928         it calls into the xplatui and could create a loop. So we lazy init
14929         it.
14931 2005-05-28  Jackson Harper  <jackson@ximian.com>
14933         * Control.cs: Proper implementation of Product(Name/Version).
14935 2005-05-27  Jackson Harper  <jackson@ximian.com>
14937         * DataObject.cs: Dont crash if no data is found.
14939 2005-05-26  Rafael Teixeira  <rafaelteixeirabr@hotmail.com>
14940         * MdiClient.cs: Add missing Localizable attribute to BackgroundImage property
14941                 as per status page, guessing it should be set to true
14943 2005-05-26  Jordi Mas i Hernandez <jordi@ximian.com>
14945         * DataGridTextBoxColumn.cs: Draws text and basic text formatting
14946         * DataGridTableStyle.cs: set proper formatting text, def header text
14947         * ThemeWin32Classic.cs: new themable paramaters
14948         * DataGridBoolColumn.cs: paint check box, get data, fixes
14949         * DataGridDrawingLogic.cs: huge improvements in painting, fixes, new methods
14950         * DataGrid.cs: fixes properties, implements vertical and horizontal scrolling
14951         * DataGridColumnStyle.cs: fixes
14952         * Theme.cs: new themable paramaters
14953                 
14954 2005-05-26  Peter Bartok  <pbartok@novell.com>
14956         * ContainerControl.cs: Pass AdjustFormScrollbars() call on to base
14958 2005-05-24 Jonathan S. Chambers <jonathan.chambers@ansys.com>
14959         * Control.cs: Fixed LowOrder and HighOrder to preserve sign.
14961 2005-05-24  Peter Bartok  <pbartok@novell.com>
14963         * OpenFileDialog.cs, Form.cs, Menu.cs, GroupBox.cs, UserControl.cs,
14964           Label.cs, DataGridTextBoxColumn.cs, PropertyGrid.cs, ErrorProvider.cs
14965           Splitter.cs, Control.cs, FontDialog.cs, TabPage.cs,
14966           FolderBrowserDialog.cs, HelpProvider.cs, DataGridTableStyle.cs,
14967           NotifyIcon.cs, FileDialog.cs, ListView.cs, SaveFileDialog.cs,
14968           ToolBarButton.cs, ImageList.cs, DataGridBoolColumn.cs, Panel.cs,
14969           DataGrid.cs, DataGridTextBox.cs, ListBox.cs, TrackBar.cs,
14970           AxHost.cs, TabControl.cs, ScrollableControl.cs, ToolBar.cs,
14971           DataGridColumnStyle.cs, PictureBox.cs, DateTimePicker.cs,
14972           StatusBar.cs, MonthCalendar.cs, TreeView.cs: Added
14973           missing attributes, etc
14974         * DataGridPreferredColumnWidthTypeConverter.cs: Added
14976 2005-05-24  Peter Bartok  <pbartok@novell.com>
14978         * Help.cs: Added, implemented trivial functions, throws up MessageBox
14979           when user tries to get help
14980         * DataObject.cs, DataFormats.cs, LinkArea.cs,
14981           SelectionRangeConverter.cs, Clipboard.cs : Removed unused variables
14982           to suppress warnings
14983         * XplatUIWin32.cs, XplatUIOSX.cs, XplatUIX11.cs: Removed unused code to
14984           avoid unreachable code warning
14986 2005-05-20  Peter Bartok  <pbartok@novell.com>
14988         * CursorConverter.cs (ConvertTo): Switched to use Cursor.GetObjectData
14990 2005-05-20  Jordi Mas i Hernandez <jordi@ximian.com>
14992         * DataGridTextBoxColumn.cs: Basic painting methods
14993         * DataGridTableStyle.cs: Set table style in the column
14994         * ThemeWin32Classic.cs: Use Theme for colors
14995         * DataGridDrawingLogic.cs: Implement more drawing
14996         * DataGrid.cs: drawing, theming, enhacements, fixes
14997         * DataGridColumnStyle.cs: fixes, drawing
14998         * Theme.cs: theming for Datagrid
15000 2005-05-20  Peter Bartok  <pbartok@novell.com>
15002         * Cursor.cs: Implemented GetObjectData() method
15004 2005-05-20  Peter Bartok  <pbartok@novell.com>
15006         * Cursors.cs: Added setting of cursor name
15007         * Cursor.cs:
15008           - Implemented constructors
15009           - Implemented Draw and DrawStretched
15010           - Implemented Current property
15011           - Implemented == and != operators
15012           - Implemented Dispose()
15013           - Implemented ToString
15014           - Added missing attributes
15015         * XplatUIX11.cs:
15016           - Added missing reset for OverrideCursor when DoEvents is called
15017           - Fixed creation of cursor, logic was wrong
15018         * XplatUIWin32.cs:
15019           - Added missing reset for OverrideCursor when DoEvents is called
15020           - Fixed creation of cursor, bit arrays were swapped
15021         * Clipboard.cs: Removed obsolete MonoTODO attribute
15023 2005-05-20  Jordi Mas i Hernandez <jordi@ximian.com>
15025         * ComboBox.cs: fixes OnSelectedItemChanged
15026         * ControlBindingsCollection.cs: fixes item range check
15028 2005-05-20  Jordi Mas i Hernandez <jordi@ximian.com>
15030         * UpDownBase.cs:
15031                 - Calc preferred height properly
15032                 - Implement missing properties
15033                 
15034         * NumericUpDown.cs: Implement missing events
15036 2005-05-19  Jackson Harper  <jackson@ximian.com>
15038         * TabControl.cs: New method that resizes the tab pages before
15039         redrawing them. This as needed as the control is double buffered
15040         and sizing will not be recalculated unless ResizeTabPages is
15041         called.
15042         * TabPage.cs: Set base.Text instead of Text in the constructor so
15043         that UpdateOwner does not get called. Use the new Redraw method of
15044         TabControl instead of Refresh so the sizing is recalculated.
15045         * ThemeWin32Classic.cs: Draw the text for button tabs.
15047 2005-05-19  Jackson Harper  <jackson@ximian.com>
15049         * Control.cs: Paint control background images. Fix typo where
15050         PaintControlBackground was not getting called correctly.
15052 2005-05-19  Peter Bartok  <pbartok@novell.com>
15054         * ScrollableControl.cs (DisplayRectangle): Undid my last change until
15055           I can investigate, apparently I broke FileDialog
15057 2005-05-19  Marek Safar  <marek.safar@seznam.cz>
15059         * AxHost.cs: Some simple properties.
15060         * Control.cs: window must be accessible after ctor.
15061         * Form.cs: Added TransparencyKey property.
15062         * TextBoxBase.cs: Implemented Clear. Text property can be null.
15063         * XplatUIWin32.cs: SetBorderStyle implemented.
15065 2005-05-18  Peter Bartok  <pbartok@novell.com>
15067         * DataObject.cs: Entries are not global but particular to the
15068           DataObject, now it behaves that way
15069         * XplatUIWin32.cs: Implemented Clipboard methods
15070         * Clipboard.cs: Implemented
15071         * ScrollableControl.cs (DisplayRectangle): Fixed calculation
15072         * XplatUIOSX.cs: Updated to final clipboard prototypes
15073         * XplatUIX11.cs: Implemented Clipboard methods
15074         * XplatUIDriver.cs: Updated to final clipboard prototypes
15075         * XplatUIStructs.cs:
15076           - Added BITMAPINFOHEADER struct
15077           - Added ClipboardFormats enum
15078         * X11Structs.cs:
15079           - Added ClipboardStruct
15080           - Added Atom enum items for clipboard types
15081           - Fixed atom types for Selection event structures
15082         * DataFormats.cs:
15083           - Added internal properties and methods for drivers to enumerate
15084             all known formats
15085           - Switched initialization method to allow drivers to assign their
15086             own IDs even for the MS predefined clipboard IDs
15087         * XplatUI.cs: Updated to final clipboard interface
15089 2005-05-18 Jonathan S. Chambers <jonathan.chambers@ansys.com>
15090         * PropertyGridView.cs: Fixed compiler warnings.
15092 2005-05-18 Jonathan S. Chambers <jonathan.chambers@ansys.com>
15093         * PropertyGrid.cs: Added some event calls
15094         * PropertyGridView.cs: Change drawing code to use double buffering
15095         * PropertyGridTextBox.cs: Changed Text property name
15096         * GridItem.cs: Added Bounds property.
15097         * GridEntry.cs: Added Bounds property.
15099 2005-05-17  Lluis Sanchez Gual  <lluis@novell.com>
15101         * Binding.cs: Use IsInstanceOfType instead of IsAssignableFrom
15102         since GetType() may not return the correct type if the object is
15103         a remoting proxy.
15105 2005-05-17  Jordi Mas i Hernandez <jordi@ximian.com>
15107         * TreeNodeCollection.cs: fixes get/set item ranges
15108         
15109 2005-05-15  Jordi Mas i Hernandez <jordi@ximian.com>
15111         * ListBox.cs: Kazuki Oikawa's PreferredHeight and ItemHeight fixes
15112                 
15113 2005-05-15  Jordi Mas i Hernandez <jordi@ximian.com>
15115         * ComboBox.cs: Fix item range comparation
15116         * ListView.cs: Fix item range comparation
15118 2005-05-03  Alexander Olk  <xenomorph2@onlinehome.de>
15120         * FontDialog.cs:
15121           - Clear example panel when OnPaint is called
15122           - Better solution for displaying the example panel text
15123           - Select default indexes in the ListBoxes
15125 2005-05-11  Geoff Norton  <gnorton@customerdna.com>
15127         * XplatUIOSX.cs: Avoid painting into invisible views.  Fixes #74926
15129 2005-05-11  Peter Bartok  <pbartok@novell.com>
15131         * LinkArea.cs: Added and implemented LinkAreaTypeConverter class
15132         * SelectionRangeConverter.cs: Implemented
15133         * PropertyGrid.cs: Fixed attribute value
15134         * Control.cs:
15135           - Invoke(): Don't call Begin/EndInvoke if it is not neccessary
15136           - Added Sebastien Pouliot's CAS Stack Propagation fixes
15137         * XplatUIDriver.cs: Added new XplatUIDriverSupport class, for code
15138           that's common to all drivers. First methods to go there are
15139           Sebastien Pouliot's CAS Stack Propagation helper methods
15140         * XplatUIWin32.cs, XplatUIX11.cs, AsyncMethodData.cs: Fixes by
15141           Sebastien Pouliot for CAS Stack Propagation
15143 2005-05-11  Geoff Norton  <gnorton@customerdna.com>
15145         * OSXStructs.cs:
15146           XplatUIOSX.cs: More cosmetic cleanup courtesy of Artyom Tyazhelov (Artyom.Tyazhelov@helmes.ee)
15148 2005-05-12  Jordi Mas i Hernandez <jordi@ximian.com>
15150         * DataGridTextBoxColumn.cs: fixed some members
15151         * GridColumnStylesCollection.cs: indexed column is case insensitive
15152         * DataGridTableStyle.cs: fixes
15153         * ThemeWin32Classic.cs: add new theme parameter
15154         * Theme.cs: add new theme parameter
15155         * DataGridDrawingLogic.cs: Datagrid's drawing logic
15156         * DataGrid.cs: fixes, new internal properties, etc.
15157         * DataGridColumnStyle.cs: allows to set grid value
15158         *
15160 2005-05-10  Peter Bartok  <pbartok@novell.com>
15162         * AccessibleObject.cs:
15163           - Removed MonoTODO attribute on help, method is correct
15164           - Fixed Bounds property
15165         * AxHost.cs: Moved MonoTODO
15166         * ButtonBase.cs: Now setting AccessibleObject properties
15167         * RadioButton.cs: Setting proper AccessibleObject role
15168         * CheckBox.cs: Setting proper AccessibleObject role
15169         * ControlBindingsCollection.cs: Added properties, methods and attributes
15170         * DataFormats.cs: Fixed awkward internal API, and changed to enable
15171           userdefined DataFormats.Format items as well
15172         * ListControl.cs: Removed data_member from the public eye
15173         * OpenFileDialog.cs:
15174           - Made class sealed
15175           - Added missing attributes
15176         * SaveFileDialog.cs: Added missing attributes
15177         * ImageListStreamer.cs: Fixed code that caused warnings
15178         * LinkLabel.cs: Removed unreachable code
15179         * TreeView.cs: Fixed code that caused warnings
15180         * PropertyGridView.cs: Fixed code that caused warnings
15181         * GridColumnStylesCollection.cs: Added missing attributes
15182         * GridTableStylesCollection: Added missing attribute
15183         * PropertyManager: Added .ctor
15184         * SecurityIDType: Added
15185         * DataObject.cs: Implemented class
15186         * LinkArea.cs: Added missing attribute
15188 2005-05-11  Jordi Mas i Hernandez <jordi@ximian.com>
15190         * RadioButton.cs: call base method to allow to fire OnClick event
15191         * UpDownBase.cs: OnMouseUp call base method
15192         * CheckedListBox.cs: call base method before returning
15193         * TrackBar.cs: call base method before returning
15194         
15196 2005-05-10  Peter Bartok  <pbartok@novell.com>
15198         * XplatUIX11.cs: Fix for #74902, check pending timers when peeking
15199           for messages
15201 2005-05-10  Peter Bartok  <pbartok@novell.com>
15203         * DataFormats.cs: Implemented
15204         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs,
15205           XplatUIX11.cs: Added Clipboard APIs
15206         * XplatUIWin32.cs: Implemented Clipboard APIs
15207         * FolderBrowserDialog.cs: Added missing event, attributes
15209 2005-05-10  Jordi Mas i Hernandez <jordi@ximian.com>
15211         * CheckBox.cs: call base method to allow to fire OnClick event
15213 2005-05-09  Sebastien Pouliot  <sebastien@ximian.com>
15215         * XplatUI.cs: Use PlatformID.Unix under NET_2_0.
15217 2005-05-06  Peter Bartok  <pbartok@novell.com>
15219         * XplatUIX11.cs: Redid Jackson's fix, it was causing a busy loop
15220         * Screen.cs: Implemented
15221         * HelpNavigator.cs: Added
15222         * XplatUIWin32.cs: Added SystemParametersInfo call, fixed WorkArea
15223           property
15224         * HelpProvider.cs: Implemented all we can do until we have a CHM
15225           help library (which means that "What's This" does work now)
15227 2005-05-06  Jackson Harper  <jackson@ximian.com>
15229         * XplatUIX11.cs: Fix waking up the main loop.
15230                 
15231 2005-05-05  Peter Bartok  <pbartok@novell.com>
15233         * XplatUI.cs: Updated revision
15234         * Form.cs: Removed enless loop
15235         * GroupBox.cs (OnPaint): Added call to base.OnPaint()
15236         * Label.cs (OnPaint): Added call to base.OnPaint()
15237         * ToolTip.cs: Made ToolTipWindow reusable for other controls
15238         * LinkLabel.cs (OnPaint): Added call to base.OnPaint()
15239         * UpDownBase.cs (OnPaint): Moved base.OnPaint() call to end of method
15240         * AxHost.cs: Added
15241         * ButtonBase.cs: Moved base.OnPaint() call to end of method
15242         * ThemeWin32Classic.cs: Replaced references to ToolTip with references
15243           to ToolTip.ToolTipWindow for drawing and size methods; this allows
15244           reuse of ToolTipWindow by other controls
15245         * SizeGrip.cs: Moved base.OnPaint() call to end of method
15246         * XplatUIX11.cs: Now clipping drawing area (experimental)
15247         * PictureBox.cs: Moved base.OnPaint() call to end of method
15248         * Theme.cs: Fixed ToolTip abstracts to match new format
15249         * ErrorProvider.cs: Implemented
15251 2005-05-05  Jordi Mas i Hernandez <jordi@ximian.com>
15253         * Label.cs: fire events using OnAutoSizeChanged and OnTextAlignChanged
15254         * LinkLabel.cs:
15255                 - Adds cursors
15256                 - Handles focus
15257                 - Implements LinkBehavior
15258                 - Fixes many issues
15260 2005-05-03  Jackson Harper  <jackson@ximian.com>
15262         * ListView.cs: Calculate the scrollbar positioning on resize and
15263         paint, so they get put in the correct place.
15265 2005-05-03  Alexander Olk  <xenomorph2@onlinehome.de>
15267         * ColorDialogs.cs: The small color panels are now handled by
15268           SmallColorControl. This fixes drawing of the focus rectangle
15269           and adds a 3D border.
15271 2005-05-03  Peter Bartok  <pbartok@novell.com>
15273         * Control.cs: Modified version of Jonathan Chamber's fix for
15274           double-buffering
15276 2005-05-03  Jackson Harper  <jackson@ximian.com>
15278         * ListView.cs: Remove redraw variable. Control now handles whether
15279         or not a redraw needs to be done, and will only raise the paint
15280         event if redrawing is needed.
15282 2005-05-03  Jackson Harper  <jackson@ximian.com>
15284         * Splitter.cs: No decorations for the splitter form. Cache the
15285         hatch brush.
15287 2005-05-03  Jackson Harper  <jackson@ximian.com>
15289         * TreeView.cs: Use dashed lines to connect nodes. Use the
15290         ControlPaint method for drawing the focus rect instead of doing
15291         that in treeview.
15293 2005-05-02  Peter Bartok  <pbartok@novell.com>
15295         * LinkLabel.cs: Fixed the fixes from r43566 and 43521
15297 2005-04-29  Jackson Harper  <jackson@ximian.com>
15299         * ThemeWin32Classic.cs: Don't clear the GC that will clear the
15300         entire image buffer. Just clear the clipping rectangle.
15302 2005-04-29  Jackson Harper  <jackson@ximian.com>
15304         * ThemeWin32Classic.cs: Don't draw list view items that are
15305         outside the clipping rectangle.
15307 2005-04-29  Jordi Mas i Hernandez <jordi@ximian.com>
15309         * ListBox.cs: added horizontal item scroll
15311 2005-04-29  Jackson Harper  <jackson@ximian.com>
15313         * ThemeWin32Classic.cs: Remove some old debug code that was
15314         causing flicker with the new double buffering code.
15316 2005-04-29  John BouAntoun  <jba-mono@optusnet.com.au>
15318         * MonthCalendar.cs, DateTimePicker.cs: Made monthcalendar dropdwon
15319         behave like combobox and comboboxlist (still not sure if this is
15320         correct though).
15322 2005-04-28  Jackson Harper  <jackson@ximian.com>
15324         * ThemeWin32Classic.cs: Don't fill the middle of progress
15325         bars. This fills areas outside of the clip bounds that don't need
15326         to be filled.
15328 2005-04-28  Jackson Harper  <jackson@ximian.com>
15330         * Control.cs: Don't expose functionality to touch the image buffers.
15331         * ProgressBar.cs:
15332         * ListView.cs: We do not need to (and no longer can) manipulate
15333         the image buffers directly. All of this is handled by Control.
15335 2005-04-28  Peter Bartok  <pbartok@novell.com>
15337         * RichTextBoxSelectionAttribute.cs, RichTextBoxSelectionTypes.cs,
15338           RichTextBoxScrollBars.cs, RichTextBoxStreamType.cs,
15339           RichTextBoxFinds.cs, RichTextBoxWordPunctuations.cs: Added
15341 2005-04-28  Jordi Mas i Hernandez <jordi@ximian.com>
15343         * Combobox:
15344                 - Adjust control's height for non-simple comboboxes (bug fix)
15345                 - Remove dead code
15346         * MenuAPI.cs: remove unused var
15347         * ScrollBar.cs: remove unsed var
15348                  
15349         * ListBox.cs: unselect items when clearing
15351 2005-04-28  Jordi Mas i Hernandez <jordi@ximian.com>
15353         * ListControl.cs: honors OnPositionChanged and default Selected Item
15354         * ListBox.cs: unselect items when clearing
15356 2005-04-27  Jackson Harper  <jackson@ximian.com>
15358         * X11Keyboard.cs: Initialize a default keyboard and give a warning
15359         if a "correct" keyboard is not found. This will make us not crash,
15360         but might give some users bad keyboard layouts...seems to be the
15361         same thing rewind does.
15363 2005-04-27  Jackson Harper  <jackson@ximian.com>
15365         * BindingManagerBase.cs: Attach the current/position changed
15366         handlers to their respective events.
15368 2005-04-27  Jackson Harper  <jackson@ximian.com>
15370         * Control.cs: Make sure that the first WM_PAINT does a full draw,
15371         not just a blit.
15372         * ThemeWin32Classic.cs: Don't fill the background for picture
15373         boxes. This could overright user drawing.
15374         * ComboBox.cs: Just fill the clipping rect not the entire client
15375         rect when drawing the background. This prevents pieces of the
15376         image buffer from getting overwritten and is theoretically faster.
15378 2005-04-26  Jordi Mas i Hernandez <jordi@ximian.com>
15380         * ComboBox.cs: Databinding support fixes, fire missing events
15381         * ListControl.cs: implement missing methods and properties, fixes
15382         * ThemeWin32Classic.cs: Databiding support on Drawing
15383         * CheckedListBox.cs: Databinding support fixes, fire missing events
15384         * ListBox.cs: Databinding support fixes, fire missing events
15385         
15386 2005-04-25  Peter Bartok  <pbartok@novell.com>
15388         * LinkLabel.cs: Length of LinkArea is not allowed to be negative
15390 2005-04-25  Jackson Harper  <jackson@ximian.com>
15392         * TreeView.cs: Use the horizontal scrollbars height not width when
15393         determining how much of the client area is available.
15395 2005-04-25  Jackson Harper  <jackson@ximian.com>
15397         * Control.cs: Double buffering is handled differently now. As per
15398         the spec, the extra buffer is created in the WM_PAINT message and
15399         passed down to the control's drawing code.
15400         * GroupBox.cs:
15401         * Label.cs:
15402         * CheckBox.cs:
15403         * ProgressBar.cs:
15404         * RadioButton.cs:
15405         * ColorDialog.cs:
15406         * ComboBox.cs:
15407         * PropertyGridView.cs:
15408         * UpDownBase.cs:
15409         * MessageBox.cs:
15410         * MenuAPI.cs:
15411         * ListView.cs:
15412         * ButtonBase.cs:
15413         * SizeGrip.cs:
15414         * ScrollBar.cs:
15415         * ListBox.cs:
15416         * TrackBar.cs:
15417         * ToolBar.cs:
15418         * PictureBox.cs:
15419         * DateTimePicker.cs:
15420         * StatusBar.cs:
15421         * TreeView.cs: Update to new double buffering system.
15422         * MonthCalendar.cs: Uncomment block, as Capture is now
15423         working. Update to new double buffering
15424         * LinkLabel.cs: Lazy init the link collection. Update to new double buffering
15425         * PaintEventArgs.cs: New internal method allows us to set the
15426         graphics object. This is used for double buffering.
15427         * ThemeWin32Classic.cs: Give the picture box drawing code a clip
15428         rectangle. The internal paint_area var has been removed from
15429         StatusBar. The clipping rect should be used instead.
15430         * Theme.cs: Give the PictureBox drawing method a clipping rect.
15431         * TabPage.cs: The RefreshTabs method was removed, so just call the
15432         tab controls Refresh method now.
15433         * TabControl.cs: Update to new double buffering. Make sure the
15434         handle is created before sizing the tab pages, otherwise we will
15435         get stuck in a loop.
15437 2005-04-24  Borja Sanchez Zamorano <borsanza@gmail.com>
15439         * LinkLabel.cs: Fix typo, bug #74719; patch
15440           from Borja Sanchez Zamorano
15442 2005-04-22  Jackson Harper  <jackson@ximian.com>
15444         * TreeNode.cs: Implement Handle stuff.
15445         * TreeView.cs: Utility methods so nodes can get/lookup by handle.
15447 2005-04-22  Jordi Mas i Hernandez <jordi@ximian.com>
15449         * DataGridTextBoxColumn.cs: call base constructors, fixes
15450         * GridColumnStylesCollection.cs: missing events, methods, and functionality
15451         * GridTableStylesCollection.cs: fixes, check duplicate mapping names
15452         * DataGridTableStyle.cs: implements create default column styles
15453         * DataGridBoolColumn.cs: which types can handle
15454         * DataGrid.cs: missing methods, fixes, new functionality
15455         * DataGridColumnStyle.cs: fixes
15457 2005-04-20  Alexander Olk  <xenomorph2@onlinehome.de>
15458         * FolderBrowserDialog.cs:
15459         - Use a thread to fill the TreeView
15460         - Adjusted some sizes
15462 2005-04-19  Peter Bartok  <pbartok@novell.com>
15464         * LinkLabel.cs: (Re-)create the pieces when setting the Text
15465           property. Fixes #74360.
15467 2005-04-19  Jackson Harper  <jackson@ximian.com>
15469         * XEventQueue.cs: Lock when getting the lockqueue size.
15470         * PictureBox.cs: Call base OnPaint
15471         
15472 2005-04-19  Peter Bartok  <pbartok@novell.com>
15474         * XplatUIX11.cs: Fixed bug introduced with the HWND rewrite, Async
15475           messages were no longer being processed (this broke BeginInvoke)
15477           
15478 2005-04-18  Jackson Harper  <jackson@ximian.com>
15480         * TreeView.cs: buglet that caused node images to get drawn
15481         regardless of whether or not they were in the clipping rectangle.
15483 2005-04-18  Jackson Harper  <jackson@ximian.com>
15485         * CurrencyManager.cs: There are four rules for GetItemProperties:
15486         - If the type is an array use the element type of the array
15487         - If the type is a typed list, use the type
15488         - If the list contains an Item property that is not an object, use
15489         that property
15490         - use the first element of the list if there are any elements in
15491         the list.
15492         
15493 2005-04-17  Jackson Harper  <jackson@ximian.oom>
15495         * TreeView.cs: Calculate plus minus and checkbox bounds when there is a
15496         click. This handles offsets for scrolling properly and reduces
15497         memory. Also fixed GetNode to not offset now that TopNode works
15498         properly.
15499         * TreeNode.cs: No longer need to track the plus minus or checkbox bounds.
15500         
15501 2005-04-17  Jackson Harper  <jackson@ximian.com>
15503         * CursorConverter.cs: Initial implementation.
15505 2005-04-15  Jordi Mas i Hernandez <jordi@ximian.com>
15507         * ListControl.cs: work towards complex data binding support on ListControl
15508         * CurrencyManager.cs: work towards complex data binding support on ListControl
15509         * ListBox.cs: work towards complex data binding support on ListControl
15512 2005-04-15  Jordi Mas i Hernandez <jordi@ximian.com>
15514         * GridTableStylesCollection.cs: fixes name and constructor
15515         * DataGridTableStyle.cs: fixes
15516         * DataGridBoolColumn.cs: fixes names and constructors
15517         * DataGrid.cs: define methods and properties. Some init implementations
15518         * DataGridCell.cs: define methods and properties. Some init implementations
15519         * GridTablesFactory.cs: Define methods and properties
15521 2005-04-15  Geoff Norton  <gnorton@customerdna.com>
15523         * XplatUIOSX.cs:  Handle proper mouse tracking even if the current
15524         graphics port changes.  We still want the coordinates in global screen
15525         coordinates.
15527 2005-04-14  Jackson Harper  <jackson@ximian.com>
15529         * TreeView.cs: Handle clicks when plus minus is disabled. Don't
15530         check plus minus or checkbox clicks unless those features are enabled.
15532 2005-04-14  Jackson Harper  <jackson@ximian.com>
15534         * TreeView.cs: Add methods for setting the top and bottom visible
15535         nodes. TreeNode::EnsureVisible uses these methods.
15536         * TreeNode.cs: Implement EnsureVisible
15538 2005-04-13  Jordi Mas i Hernandez <jordi@ximian.com>
15540         * Form.cs: Pospone menu assignation if the window has not been created yet
15541         * XplatUIWin32.cs: Fixes Win32SetWindowPos, then does not change window
15542         size and position
15544 2005-04-12  Jackson Harper  <jackson@ximian.com>
15546         * TreeView.cs: Set the TopNode properly when scrolling
15547         occurs. This has the added benifit of reducing the amount of
15548         walking that needs to be done when drawing. Also removed an old
15549         misleading TODO.
15550         * OpenTreeNodeEnumerator.cs: Fix moving backwards.
15551         
15552 2005-04-11  Jordi Mas i Hernandez <jordi@ximian.com>
15554         * Timer.cs: fixes interval setting when the timer is already enabled
15555         
15556 2005-04-10  Alexander Olk  <xenomorph2@onlinehome.de>
15558         * FolderBrowserDialog.cs: First approach
15560 2005-04-09  Peter Bartok  <pbartok@novell.com>
15562         * FolderBrowserDialog: Added
15564 2005-04-07  Jordi Mas i Hernandez <jordi@ximian.com>
15566         * LinkLabel.cs: move drawing code into the theme
15567         * ThemeWin32Classic.cs: drawing code and painting background bugfix
15568         * Theme.cs: define DrawLinkLabel method
15570 2005-04-05  Jackson Harper  <jackson@ximian.com>
15572         * BindingContext.cs: Use weak references so these bad actors don't
15573         stay alive longer then they need to.
15575 2005-04-05  Jackson Harper  <jackson@ximian.com>
15577         * ListControl.cs: Basic implementation of complex databinding.
15578         * ComboBox.cs:
15579         * ListBox.cs: Add calls to ListControl databinding methods.
15581 2005-04-05  Alexander Olk  <xenomorph2@onlinehome.de>
15583         * FileDialog.cs:
15584           - Don't change PopupButtonState to Normal when the
15585             PopupButton gets pressed several times.
15586           - Renamed ButtonPanel to PopupButtonPanel
15588 2005-04-05  Jordi Mas i Hernandez <jordi@ximian.com>
15590         * ColorDialog.cs: Use cached objects instead of creating them
15591         * LinkLabel.cs: Use cached objects instead of creating them
15592         * Splitter.cs: Use cached objects instead of creating them
15593         * FontDialog.cs: Use cached objects instead of creating them
15594         * PropertyGridView.cs: Use cached objects instead of creating them
15595         * MessageBox.cs: Use cached objects instead of creating them
15596         * FileDialog.cs: Use cached objects instead of creating them
15597         * ThemeWin32Classic.cs: Use cached objects instead of creating them
15598         * TreeView.cs: Use cached objects instead of creating them
15599         
15600 2005-04-04  Jordi Mas i Hernandez <jordi@ximian.com>
15602         * Control.cs: use Equals to compare the font since no == op
15603         * ScrollBar.cs: use Equals to compare the font since no == op
15605 2005-04-04  Alexander Olk  <xenomorph2@onlinehome.de>
15607         * SaveFileDialog.cs: Open stream in OpenFile with FileMode Create
15609 2005-04-01  Jackson Harper  <jackson@ximian.com>
15611         * Binding.cs: Implement IsBinding.
15612         * BindingManagerBase.cs:
15613         * PropertyManager.cs:
15614         * CurrencyManager.cs: Add IsSuspended property.
15616 2005-04-01  Jackson Harper  <jackson@ximian.com>
15618         * Binding.cs: Had some IsAssignableFrom calls backwards.
15620 2005-04-01  Jackson Harper  <jackson@ximian.com>
15622         * Binding.cs: Handle null data members when pulling data.
15623         * PropertyManager.cs: Handle the data member being a property that
15624         does not exist.
15626 2005-04-01  Jordi Mas i Hernandez <jordi@ximian.com>
15628         * DataGridTextBoxColumn.cs: fixes signature
15629         * DataGrid.cs: calls right constructor
15631 2005-04-01  Jordi Mas i Hernandez <jordi@ximian.com>
15633         * DataGridTextBoxColumn.cs: implements DataGridTextBoxColumn class
15634         * GridColumnStylesCollection.cs: implements GridColumnStylesCollection
15635         * GridTableStylesCollection.cs: implements GridTableStylesCollection
15636         * DataGridTableStyle.cs: implements DataGridTableStyle
15637         * DataGridBoolColumn.cs: implements DataGridBoolColumn
15638         * DataGridTextBox.cs: implements DataGridTextBox
15639         * DataGridColumnStyle.cs: implements DataGridColumnStyle
15641 2005-03-31  Alexander Olk  <xenomorph2@onlinehome.de>
15643         * FileDialog.cs: Added simple PopupButton class for ButtonPanel
15645 2005-03-29  Peter Bartok  <pbartok@novell.com>
15647         * Application.cs:
15648           - Properly implemented CompanyName property
15649           - Fixed LocalUserAppDataPath and UserAppDataPath, now properly
15650             returns a path that includes CompanyName, ProductName and
15651             Version (fixes bug #70330)
15653 2005-03-29  Stefan Buehler  <sbuehler@gmx.ch>
15655         * TabPage.cs: Don't use Owner.DisplayRectangle unless owner is valid,
15656           fixes bug #72588.
15658 2005-03-28  Alexander Olk  <xenomorph2@onlinehome.de>
15660         * FileDialog.cs, SaveFileDialog.cs OpenFileDialog.cs:
15661         
15662           - Added ReadOnly CheckBox
15663           - Further refactoring: moved some code from Open-/SaveFileDialog
15664             to FileDialog
15666 2005-03-28  Alexander Olk  <xenomorph2@onlinehome.de>
15668         * OpenFileDialog.cs: Fixed CheckFileExists
15669         * FileDialog.cs:
15670           Moved FileView and DirComboBox outside FileDialog class.
15671           They can now be used outside FileDialog
15673 2005-03-27  Alexander Olk  <xenomorph2@onlinehome.de>
15675         * FileDialog.cs: Added a contextmenu to change ShowHiddenFiles
15676         * SaveDialog.cs, OpenFileDialog.cs: Fixes for Reset() method
15678 2005-03-27  Alexander Olk  <xenomorph2@onlinehome.de>
15680         * FileDialog.cs, OpenFileDialog.cs, SaveFileDialog.cs:
15681           - Added missing CreatePrompt property in SaveDialog
15682           - Overall SaveDialog handling should be better now
15683           - Added non standard ShowHiddenFiles property
15684           - Added extension, CreatePrompt and OverwritePrompt support in SaveDialog
15685           - Added InitialDirectory and RestoreDirectory support
15687 2005-03-26  Alexander Olk  <xenomorph2@onlinehome.de>
15689         * FileDialog.cs: Made dirComboBox usable
15691 2005-03-24  Alexander Olk  <xenomorph2@onlinehome.de>
15693         * FileDialog.cs: Added Filter support (case sensitiv)
15695 2005-03-24  Jackson Harper  <jackson@ximian.com>
15697         * TabControl.cs: Need a couple more pixels for the lines.
15699 2005-03-23  Jackson Harper  <jackson@ximian.com>
15701         * TabControl.cs: Give the tab page focus when it is selected.
15703 2005-03-23  Jackson Harper  <jackson@ximian.com>
15705         * TabControl.cs: Account for the drawing of tabs borders when
15706         invalidating. If the slider was clicked dont do click detection on
15707         the tabs.
15709 2005-03-23  Jackson Harper  <jackson@ximian.com>
15711         * TabControl.cs: Fix typo, emilinates an unneeded expose event.
15713 2005-03-22  Jonathan Chambers  <jonathan.chambers@ansys.com>
15715         * CategoryGridEntry.cs: Added
15716         * GridItem.cs: Added helper properties
15717         * PropertyGridTextBox.cs: Custom textbox control for PropertyGrid.
15718         * GridEntry.cs: Updated code for collection
15719         * PropertyGrid.cs: Cleaned up some formatting
15720         * PropertyGridView.cs: Added drop down functionality for enums.
15721         * GridItemCollection.cs: Added enumerator logic
15722         * PropertyGridEntry.cs: Added
15724 2005-03-19  Alexander Olk  <xenomorph2@onlinehome.de>
15726         * FileDialog.cs:
15727           - Removed unnecessary commented code
15728           - Fixed handling for entering the filename manually in the combobox
15730 2005-03-19  Alexander Olk  <xenomorph2@onlinehome.de>
15732         * FileDialog.cs, OpenFileDialog.cs: OpenFileDialog Multiselect now works
15734 2005-03-18  Peter Bartok  <pbartok@novell.com>
15736         * ThemeWin32Classic.cs: Moved listview column headers a bit, to avoid
15737           them being touching the border
15739 2005-03-18  Peter Bartok  <pbartok@novell.com>
15741         * TextControl.cs: Quick hack to center text better
15743 2005-03-18  Peter Bartok  <pbartok@novell.com>
15745         * ControlPaint.cs:
15746           - Don't throw NotImplemented exceptions, just print a notice once
15747             instead (requested by Miguel). This makes running existing SWF
15748             apps a bit easier
15749         * Control.cs:
15750           - Commented out Drag'N'Drop XplatUI call (no driver support yet)
15751           - Added context menu trigger on right click
15752         * Panel.cs: Trigger invalidate on resize
15753         * StatusBar.cs:
15754           - Removed old double-buffer drawing
15755           - Added ResizeRedraw style to force proper update of statusbar
15756         * ListView.cs:
15757           - Removed debug output
15758         * ThemeWin32Classic.cs:
15759           - Fixed drawing of status bar, now draws Text property if there
15760             are no defined panels
15762 2005-03-18  Jackson Harper  <jackson@ximian.com>
15764         * ImageList.cs: When the image stream is set pull all the images
15765         from it.
15766         * ImageListStreamer.cs: Implement reading image list streams.
15768 2005-03-18  Peter Bartok  <pbartok@novell.com>
15770         * ThemeWin32Classic.cs (DrawPictureBox):
15771           - Fixed calculations for centered drawing
15772           - Fixed drawing for normal mode, not scaling the image on normal
15774 2005-03-18  Peter Bartok  <pbartok@novell.com>
15776         * ComboBox.cs: Now also firing the OnKeyPress events for the embedded
15777           textbox
15778         * FileDialog.cs:
15779           - Made Open/Save button the accept button for FileDialog
15780           - Tied the cancel button to the IButtonControl cancel button
15781           - Save/Open now properly builds the pathname
15782           - Now handles user-entered text
15783           - Preventing crash on right-click if no item is selected
15784           - Fixed Text property, now uses contents of textbox
15785           - Fixed SelectedText property, now just returns the text part that
15786             is selected in the text box
15788 2005-03-18  Jackson Harper  <jackson@ximian.com>
15790         * ThemeWin32Classic.cs: Use the proper func for drawing the focus
15791         rect, make sure to de-adjust the interior rect after drawing the
15792         tab text.
15794 2005-03-18  Peter Bartok  <pbartok@novell.com>
15796         * MenuAPI.cs: Remove menu *before* executing selected action to
15797           prevent the menu from 'hanging around'
15798           
15799 2005-03-17  Geoff Norton  <gnorton@customerdna.com>
15801         * XplatUIOSX.cs: Implemented WorkingArea property
15803 2005-03-17  Peter Bartok  <pbartok@novell.com>
15805         * XplatUIX11.cs: Fixed menu coord calculations
15806         * MenuAPI.cs: Now using new ScreenToMenu()/MenuToScreen() methods
15807           for calculating offsets
15809 2005-03-17  Peter Bartok  <pbartok@novell.com>
15811         * Hwnd.cs: Do not consider menu presence for default client
15812           rectangle location/size
15813         * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs, XplatUIOSX.cs,
15814           XplatUIWin32.cs: Added MenuToScreen() and ScreenToMenu() coord
15815           translation functions
15816         * FileDialog.cs: Fixed (what I presume is a) typo
15818 2005-03-17  Jonathan Gilbert  <logic@deltaq.org>
15820         * XplatUIX11.cs: Added call to XInitThreads() to allow multi-threaded
15821           X access (avoids X-Async errors)
15823 2005-03-16  Jackson Harper  <jackson@ximian.com>
15825         * TabControl.cs: Raise the SelectedIndexChanged event.
15827 2005-03-16  Alexander Olk  <xenomorph2@onlinehome.de>
15829         * FileDialog.cs, OpenFileDialog.cs, SaveFileDialog.cs:
15830           - Removed vertical ToolBar and replaced it with a custom panel
15831             (desktop and home button already work)
15832           - Added Help button (some controls get resized or relocated then)
15833           - Draw correct text depending on Open or Save.
15834           - Fixed some typos...
15836 2005-03-16  Jordi Mas i Hernandez <jordi@ximian.com>
15838         * ScrollBar.cs:
15839           - Only change Maximum and Minimum when need it (bug fix)
15841 2005-03-15  Peter Bartok  <pbartok@novell.com>
15843         * Form.cs: Use Handle for icon, to trigger creation if
15844           the window does not yet exist
15845         * Control.cs:
15846           - CanSelect: Slight performance improvement
15847           - Focus(): Preventing possible recursion
15848           - Invalidate(): Removed ControlStyle based clear flag setting
15849           - WM_PAINT: fixed logic for calling OnPaintBackground
15850           - WM_ERASEBKGND: Fixed logic, added call to new driver method
15851             EraseWindowBackground if the control doesn't paint background
15852         * XplatUIWin32.cs:
15853           - Moved EraseWindowBackground() method to internal methods
15854           - Removed unused WM_ERASEBKGND handling in GetMessage; msg never comes;
15855             is sent via SendMessage on BeginPaint call on Win32
15856         * XplatUIX11.cs:
15857           - Added EraseWindowBackground() method
15858           - No longer sends WM_ERASEBKGND on .Expose, but on call to
15859             PaintEventStart, which more closely matches Win32 behaviour
15860           - Fixed Invalidate() call, now updates new ErasePending Hwnd property
15861           - Fixed SetFocus() to properly deal with client and whole windows
15862         * Hwnd.cs: Added ErasePending property
15863         * XplatUIOSX.cs: Stubbed EraseWindowBackground() method
15864         * XplatUI.cs, XplatUIDriver.cs: Added EraseWindowBackground() method
15866 2005-03-12  Geoff Norton  <gnorton@customerdna.com>
15868         * XplatUIOSX.cs:
15869           - Fix hard loop when timers exist.
15870           - Fix bugs with middle and right click for 3 button mice.
15872 2005-03-11  Peter Bartok  <pbartok@novell.com>
15874         * XplatUIX11.cs:
15875           - get_WorkingArea: Need to call X directly, GetWindowPos only
15876             returns cached data now
15877           - Added sanity check to GetWindowPos hwnd usage
15879 2005-03-11  Jackson Harper  <jackson@ximian.com>
15881         * BindingManagerBase.cs: This method isn't used anymore as
15882         PullData now updates the data in the control.
15884 2005-03-11  Jordi Mas i Hernandez <jordi@ximian.com>
15886         * Form.cs: fixes menu drawing on X11
15887         * MenuAPI.cs:  fixes menu drawing on X11
15889 2005-03-11  Peter Bartok  <pbartok@novell.com>
15891         * Control.cs: Changed OnCreateControl behaviour based on a suggestion
15892           from Jonathan Gilbert; should fix bug #73606
15893         * XplatUIX11.cs: Fixed NC Mouse message coordinates, they need to be
15894           in Screen coordinates. Thanks, Jordi.
15895         * Form.cs: Added missing attribute
15897 2005-03-11  Peter Bartok  <pbartok@novell.com>
15899         * Form.cs:
15900           - Rudimentary Mdi support
15901           - Removed outdated FormParent code
15902           - Implemented lots of missing properties and methods, still missing
15903             transparency support
15904           - Added missing attributes
15905           - Implemented support for MaximumBounds
15906           - Added firing of various events
15907         * XplatUI.cs: Added SetIcon() method
15908         * XplatUIDriver.cs: Added SetIcon() abstract
15909         * XplatUIOSX.cs: Stubbed out SetIcon() method
15910         * XplatUIX11.cs:
15911           - Implemented SetIcon() support
15912           - Moved SetMenu() and SetBorderStyle() to proper alphabetical pos
15913           - Switched to unix line endings
15914         * XplatUIWin32.cs:
15915           - Made POINT internal so for can access it as part of MINMAX
15916           - Implemented SetIcon() support
15917           - Implemented support for CLIENTCREATESTRUCT (but might have to drop
15918             native Mdi support again, might have to go managed)
15919         * Control.cs: Now fires the StyleChanged event
15920         * MdiClient.cs: Added; still mostly empty
15922 2005-03-10  Peter Bartok  <pbartok@novell.com>
15924         * SaveFileDialog.cs: Added emtpy file
15926 2005-03-08  Peter Bartok  <pbartok@novell.com>
15928         * Control.cs: Fixed bug #73190; now invokes CreateControl (which
15929           in turn triggers OnCreateContro) when creating a handle for the
15930           first time.
15931         * TextControl.cs: Fixed endless loop in certain cases when
15932           replacing the current selection
15934 2005-03-08  Jordi Mas i Hernandez <jordi@ximian.com>
15936         * ScrollBar.cs:
15937           - Honors NewValue changes in Scroll events allowing apps to change it
15938           - Adds First and Last Scroll events
15939           - Fixes Thumb events
15941 2005-03-07  Peter Bartok  <pbartok@novell.com>
15943         * Hwnd.cs: Added DefaultClientRectangle property
15944         * XplatUI.cs: Now using the X11 driver Where() method, which provides
15945           more detailed debug information
15946         * XplatUIX11.cs:
15947           - Fixed size-change feedback loop, where we would pull an old size
15948             off the queue and mistakenly change our window's size to an
15949             earlier value
15950           - Now compressing ConfigureNotify events, to reduce looping and
15951             redraw issues
15952         * TextBoxBase.cs: Preventing crash when no text is set and ToString()
15953           is called
15955 2005-03-07  Jackson Harper  <jackson@ximian.com>
15957         * Binding.cs: Push data pushes from data -> property. Check if the
15958         property is readonly when attempting to set it.
15960 2005-03-07  Jackson Harper  <jackson@ximian.com>
15962         * Binding.cs: Format and parse data correctly. Use ASsignableFrom
15963         instead of IsSubclassOf. Pulling data now sets the value on the
15964         control.
15965         * PropertyManager.cs:
15966         * CurrencyManager.cs: Just need to pull data when updating now,
15967         because PullData will set the value on the control.
15969 2005-03-04  Jackson Harper  <jackson@ximian.com>
15971         * Binding.cs: Implement data type parsing and converting on pulled
15972         data. TODO: Are there more ways the data can be converted?
15974 2005-03-04  Jackson Harper  <jackson@ximian.com>
15976         * Binding.cs: Support <Property>IsNull checks. Also bind to the
15977         controls Validating method so we can repull the data when the
15978         control loses focus.
15980 2005-03-03  Jordi Mas i Hernandez <jordi@ximian.com>
15982         * ColumnHeader.cs:
15983           - Fixes null string format
15984           
15985         * ListView.cs:
15986           - Adds enum type checks
15987           - Fixes redrawing and recalc need after changing some properties
15988           - Fixes on focus_item set after the event
15989           - Fixes adding columns after the control has been created
15990           
15991         * ThemeWin32Classic.cs:
15992           - Fixes CheckBox focus rectangle
15993           - Fixes ColumnHeader drawing
15996 2005-03-03  Jackson Harper  <jackson@ximian.com>
15998         * Binding.cs: Bind to <Property>Changed events so we can detect
15999         when properties are changed and update the data.
16001 2005-03-02  Jordi Mas i Hernandez <jordi@ximian.com>
16003         * ImageList.cs:
16004           - Changes 32-bit pixel format to Format32bppArgb to allow transparency
16005           - Fixes ImageList constructor with ImageList container
16006           - Fixes image scaling (wrong parameters at DrawImage)
16008 2005-02-02  Jackson Harper  <jackson@ximian.com>
16010         * Binding.cs: Make property searches case-insensitive. Eliminate
16011         some duplicated code.
16013 2005-03-01  Jordi Mas i Hernandez <jordi@ximian.com>
16015         * ComboBox.cs:
16016                 - Handle focus event
16017                 - Fix scrollbar events
16018                 - Discard highlighted item if remove it
16019                 - Fixes SelectedItem with strings
16021 2005-03-01  Peter Bartok  <pbartok@novell.com>
16023         * Control.cs:
16024           - Fixed Visible property, now follows (once again) parent chain
16025             to return false if any control in the chain is visible=false
16026           - Fixed OnParentVisibleChanged, now just calls OnVisibleChanged event
16027           - Fixed several places where is_visible instead of Visible was used
16028           - Implemented FIXME related to focus selection when setting focused
16029             control to be invisible
16031         * XplatUIWin32.cs: Now using proper method to find out if window is
16032           visible. Thanks to Jordi for pointing it out
16034 2005-02-28  Jordi Mas i Hernandez <jordi@ximian.com>
16036         * ComboBox.cs: show/hide scrollbar instead of creating it
16038 2005-02-27  Jackson Harper  <jackson@ximian.com>
16040         * CurrencyManager.cs: Add PositionChanged stuff.
16042 2005-02-27  Peter Bartok  <pbartok@novell.com>
16044         * XplatUI.cs, XplatUIDriver.cs: Added new GetMenuOrigin() method
16045         * XplatUIOSX.cs: Added GetMenuOrigin() stub
16046         * XplatUIWin32.cs: Implemented GetMenuOrigin()
16047         * XplatUIX11.cs:
16048           - Implemented GetMenuDC()
16049           - Implemented GetMenuOrigin()
16050           - Implemented ReleaseMenuDC()
16051           - Implemented generation of WM_NCPAINT message
16052           - Implemented generation and handling of WM_NCCALCSIZE message
16053         * Form.cs: Added debug helper message for Jordi's menu work
16054         * Hwnd.cs:
16055           - Modified ClientRect property; added setter, fixed getter to handle
16056             setting of ClientRect
16057           - Added MenuOrigin property
16059 2005-02-26  Peter Bartok  <pbartok@novell.com>
16061         * XplatUIX11.cs:
16062           - Destroys the caret if a window that's being destroyed contains it
16063           - Ignores expose events coming from the X11 queue for windows that
16064             already are destroyed
16065           - Now uses the proper variable for handling DestroyNotify, before we
16066             marked the wrong window as destroyed
16067           - Improved/added some debug output
16069 2005-02-26  Peter Bartok  <pbartok@novell.com>
16071         * X11Keyboard.cs: Fixes to work on 64bit systems
16073 2005-02-26  Peter Bartok  <pbartok@novell.com>
16075         * Control.cs:
16076           - Now calling OnHandleDestroyed from DestroyHandle()
16077             instead of Dispose()
16078           - Removed bogus call to controls.Remove() from DestroyHandle()
16080 2005-02-26  Peter Bartok  <pbartok@novell.com>
16082         * Control.cs: Properly destroy child windows when our handle is
16083           destroyed
16085 2005-02-25  Peter Bartok  <pbartok@novell.com>
16087         * XplatUI.cs:
16088           - Added 'DriverDebug' define to allow tracing XplatUI API calls
16089           - Alphabetized Static Methods and Subclasses
16091         * XplatUIX11.cs:
16092           - Added XException class to allow custom handling of X11 exceptions
16093           - Created custom X11 error handler, tied into XException class
16094           - Added support for MONO_XEXCEPTIONS env var to allow the user
16095             to either throw an exception on X errors or continue running
16096             after displaying the error
16097           - Added handling of DestroyNotify message
16098           - Added handler for CreateNotify message (still disabled)
16099           - Improved (tried to at least) Where method to provide file and lineno
16100         * X11Structs.cs:
16101           - Added XErrorHandler delegate
16102           - Added XRequest enumeration (to suppor translation of errors)
16104 2005-02-25  Jackson Harper  <jackson@ximian.com>
16106         * PropertyManager.cs: Implement editing features
16107         * CurrencyManager.cs:
16108         * Binding.cs: First attempt at UpdateIsBinding
16109         * BindingManagerBase.cs: Call UpdateIsBinding before
16110         pushing/pulling data.
16112 2005-02-25  Jordi Mas i Hernandez <jordi@ximian.com>
16114         * MenuAPI.cs: Respect disabled items
16115         * ThemeWin32Classic.cs
16116                 - Caches ImageAttributes creation for DrawImageDisabled
16117                 - Fixes vertical menu line drawing
16118                 - Draws disabled arrows in disable menu items
16120 2005-02-24  Peter Bartok  <pbartok@novell.com>
16122         * Hwnd.cs:
16123           - Added UserData property to allow associating arbitrary objects
16124             with the handle
16125           - Fixed leak; now removing Hwnd references from static windows array
16126         * XplatUIWin32.cs:
16127           - Fixed Graphics leak in PaintEventEnd
16128           - Removed usage of HandleData, switched over to Hwnd class
16129         * HandleData.cs: Removed, obsoleted by Hwnd.cs
16131 2005-02-24  Jordi Mas i Hernandez <jordi@ximian.com>
16133         * ThemeWin32Classic.cs: Adds Cliping to TrackBar drawing
16134         * ScrollBar.cs: Fixes bug
16135         * TrackBar.cs: removes death code, clipping, mimize refreshes,
16136          keyboard navigation enhancements
16138 2005-02-24  Jordi Mas i Hernandez <jordi@ximian.com>
16140         * Control.cs: Call DefWndProc at WM_PAINT only if UserPaint not defined
16141         * GroupBox.cs: Add control styles
16142         * Label.cs: Add control styles
16143         * UpDownBase.cs: Add control styles
16144         * ListBox.cs: Add control styles
16145         * XplatUIWin32.cs: Fixes wrong parameter order
16148 2005-02-23  Chris Bacon  <chris.bacon@docobo.co.uk>
16150         * ListView.cs: Assign owner for ColumnHeader. Patch by Chris Bacon
16152 2005-02-23  Jackson Harper  <jackson@ximian.com>
16154         * PropertyManager.cs: Implement property binding. This doesn't
16155         seem to work yet though as (I think) there are some bugs in
16156         System.ComponentModel.PropertyDescriptor.
16157         * BindingContext.cs: Use new PropertyManager constructor.
16159 2005-02-23  Jordi Mas i Hernandez <jordi@ximian.com>
16161         * ProgressBar.cs: use clip region in ProgressBar
16162         * ThemeWin32Classic.cs: use clip region in ProgressBar
16164 2004-02-22  Jackson Harper  <jackson@ximian.com>
16166         * BindingsCollection.cs: Remove some debug code.
16168 2005-02-22  Jackson Harper  <jackson@ximian.com>
16170         * BindingContext.cs:
16171         * ControlBindingsCollection.cs:
16172         * CurrencyManager.cs:
16173         * Binding.cs:
16174         * BindingManagerBase.cs: Initial implementation
16175         * BindingsCollection.cs: Add an internal contains method that the
16176         BindingManagerBase uses to ensure bindings aren't added twice to
16177         the collection.
16178         * PropertyManager.cs: Stubbed out.
16179         * Control.cs:
16180         * ContainerControl.cs: Hook up databinding
16181         
16182 2005-02-22  Geoff Norton  <gnorton@customerdna.com>
16184         * XplatUIOSX.cs:
16185           OSXStructs.cs: Refactored to handle the new Hwnd NC logic area.
16186           Fixed Invalidate/Update chain.
16187           Fixed tons of other minor bugs (this is almost a complete rewrite).
16189 2005-02-22  Jordi Mas i Hernandez <jordi@ximian.com>
16191         * ComboBox.cs: do subcontrol creation when the control is created
16193 2005-02-19  Jordi Mas i Hernandez <jordi@ximian.com>
16195         * Label.cs: fixes image drawing (image and imagelist)
16196         * ThemeWin32Classic.cs: cache brushes
16197         
16198 2005-02-19  Jordi Mas i Hernandez <jordi@ximian.com>
16200         * Form.cs: Move menu drawing code to Theme class
16201         * ComboBox.cs: Move ComboBox drawing code to Theme class
16202         * MenuItem.cs: Move menu drawing code to Theme class
16203         * MenuAPI.cs: Move menu drawing code to Theme class
16204         * ThemeWin32Classic.cs: New methods
16205         * CheckedListBox.cs: Move CheckedListbox drawing code to Theme class
16206         * ListBox.cs: Move Listbox drawing code to Theme class
16207         * Theme.cs: New methods
16209 2005-02-20  Peter Bartok  <pbartok@novell.com>
16211         * Control.cs:
16212           - Fixed ProcessKeyEventArgs to also handle WM_SYSKEY messages (and
16213             only process mnemonics on those)
16214           - Fixed event sequence for key handling; first calling
16215             ProcessKeyEventArgs now
16216         * TextBoxBase.cs:
16217           - Removed WM_KEYDOWN hook, instead we now use ProcessDialogKey()
16218             for processing non-character keys
16219           - Fixed WM_CHAR to generate proper event sequence before processing
16220         * XplatUIWin32.cs: Added ALT key state to ModifierKeys property
16221           generation
16223 2005-02-19  Peter Bartok  <pbartok@novell.com>
16225         * UserControl.cs: Added TextChanged event; added attributes
16226         * SizeGrip.cs: Implemented resizing and optional display of grip
16227         * Form.cs: Fixed attribute
16228         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs, XplatUIWin32.cs:
16229           Changed meaning of ScrollWindow bool argument; instead of the
16230           clear attribute (which will be true usually anyway), it gives the
16231           option of moving child controls as well.
16232         * XplatUIX11.cs:
16233           - Changed to match new ScrollWindow argument
16234           - Fixed GetWindowPos/SetWindowPos behaviour for toplevel controls,
16235             now handles the implicit parent window a WM puts around us
16236         * ScrollableControl.cs: Implemented (not the prettiest, but it seems
16237           to work)
16238         * TextBoxBase.cs: Adjusted to new ScrollWindow arguments
16239         * TreeView.cs: Adjusted to new ScrollWindow arguments
16241 2005-02-19  Jordi Mas i Hernandez <jordi@ximian.com>
16243         * Form.cs: Menu integration with non-client area
16244         * MenuItem.cs: Menu integration with non-client area
16245         * MenuAPI.cs: Menu integration with non-client area
16247 2005-02-18  Peter Bartok  <pbartok@novell.com>
16249         * MethodInvoker.cs: Added
16250         * MdiLayout.cs: Added
16251         * SendKeys.cs: Started implementation
16252         * ErrorIconAlignment.cs: Added
16254 2005-02-18  Peter Bartok  <pbartok@novell.com>
16256         * XplatUIWin32.cs: Implemented SetMenu(); fixed GetMenuDC()
16257         * Form.cs: Added handling for Menu-related Non-client messages
16259 2005-02-17  Peter Bartok  <pbartok@novell.com>
16261         * UpDownBase.cs: Fixed typo, compilation errors
16262         * DomainUpDown.cs: Fixed attribute value
16264 2005-02-16  Miguel de Icaza  <miguel@novell.com>
16266         * UpDownBase.cs: Attach entry events.
16267         Propagate events.
16268         Add ForeColor property, Focused, InterceptArrowKeys (interception
16269         does not work yet).
16271 2005-02-17  Jordi Mas i Hernandez <jordi@ximian.com>
16273         * Form.cs:
16274                 - Redraw non client are on Setmenu
16275                 - Calc proper menu starting point
16277 2005-02-17  Peter Bartok  <pbartok@novell.com>
16279         * Application.cs: Fixed message_filter check
16281 2005-02-17  Peter Bartok  <pbartok@novell.com>
16283         * Application.cs: Now calls registered message filters
16284         * DockStyle.cs: Fixed attribute
16285         * Form.cs: Fixed attribute
16286         * Menu.cs: Fixed attribute
16287         * ToolTip.cs: Fixed attribute
16288         * TreeNode.cs: Added missing attributes and arranged in regions
16289         * PropertyGrid.cs: Fixed signatures
16290         * TreeNodeCollection.cs: Added attributes
16291         * Splitter.cs: Added missing attributes; arranged into regions
16292         * TabPage.cs: Added missing attributes; arranged into regions
16293         * TextBoxBase.cs: Added missing attributes
16294         * TextBox.cs: Added missing attributes
16295         * ArrangeDirection.cs: Added missing attributes
16296         * TreeNodeConverter.cs: Added stub (needed for TreeNode)
16297         * ToolBarButton.cs: Fixed attributes
16298         * AnchorStyles.cs: Fixed attribute
16299         * TrackBar.cs: Fixed attributes
16300         * TabControl.cs: Added missing attributes and arranged into regions
16301         * ToolBar.cs: Fixed attribute
16302         * StatusBar.cs: Fixed signature, organized into regions and added
16303           attributes
16304         * StatusBarPanel.cs: Fixed attributes
16305         * ContentsResizedEventArgs.cs: Implemented
16306         * ContentsResizedEventHandler.cs: Implemented
16307         * DateBoldEventArgs.cs: Implemented
16308         * DateBoldEventHandler.cs: Implemented
16309         * UpDownEventArgs.cs: Implemented
16310         * UpDownEventHandler.cs: Implemented
16311         
16312 2005-02-16  Jordi Mas i Hernandez <jordi@ximian.com>
16314         * Form.cs: first Menu NC refactoring
16315         * MenuAPI.cs: first Menu NC refactoring
16316         
16317 2005-02-16  Peter Bartok  <pbartok@novell.com>
16319         * ImeMode.cs: Added missing attributes
16320         * Menu.cs: Fixed attribute
16321         * GroupBox.cs: Fixed attribute
16322         * Label.cs: Fixed attribute
16323         * ColorDialog.cs (RunDialog): Removed TODO attribute
16324         * ComboBox.cs: Fixed attributes
16325         * ListControl.cs: Added missing attributes
16326         * PropertyGrid.cs: Fixed attributes
16327         * Control.cs: Fixed attributes
16328         * ListViewItem.cs: Added TypeConverter attribute
16329         * NotifyIcon.cs: Fixed attributes
16330         * ListView.cs: Fixed attributes
16331         * ButtonBase.cs: Fixed attribute
16332         * ImageList.cs: Added missing attributes
16333         * ContainerControl.cs: Fixed signature
16334         * CheckedListBox.cs: Fixed attribute; added missing attributes
16335         * Panel.cs: Fixed attributes
16336         * PropertyTabChangedEventArgs.cs: Added missing attribute
16337         * PropertyValueChangedEventArgs.cs: Added missing attribute
16338         * Binding.cs: Fixed attribute
16339         * ListViewItemConverter: Implemented ListViewSubItemConverter class
16340         * ListBox.cs: Fixed attribute; added missing attributes;
16341         * ScrollableControl.cs: Added missing attributes
16342         * PictureBox.cs: Added missing attributes; implemented missing property
16343         * DateTimePicker.cs: Added missing attributes
16344         * Theme.cs (ToolWindowCaptionHeight): Fixed type
16345         * MonthCalendar.cs: Fixed attributes
16346         * StatusBarPanel.cs: Added missing attributes
16347         * SystemInformation.cs (ToolWindowCaptionHeight): Fixed type
16349 2005-02-16  Peter Bartok  <pbartok@novell.com>
16351         * TextBoxBase.cs: The previous method to enforce height yet remember
16352           the requested high was less than ideal, this is an attempt to do
16353           it better.
16354         * Control.cs: Added comment about possible problem
16355         * Copyright: Updated format
16356         * GridItemType.cs: Fixed swapped values
16358 2005-02-15  Jackson Harper  <jackson@ximian.com>
16360         * BaseCollection.cs: Use property so we never access an
16361         uninitialized list. Also initialize the list in the property.
16363 2005-02-15  Peter Bartok  <pbartok@novell.com>
16365         * GroupBox.cs (ProcessMnemonic): Implemented
16366         * Label.cs (ProcessMnemonic): Implemented
16367         * ThemeWin32Classic.cs (DrawGroupBox): Added stringformat to show
16368           hotkeys
16370 2005-02-15  Peter Bartok  <pbartok@novell.com>
16372         * RadioButton.cs (ProcessMnemonic): Implemented
16373         * CheckBox.cs (ProcessMnemonic): Implemented
16374         * Control.cs:
16375           - Added handling of WM_SYSxxx keyboard messages to support mnemonic
16376             handling
16377           - Added internal method to allow calling ProcessMnemonic from other
16378             controls
16379         * ContainerControl.cs:
16380           - Started support for handling validation chain handling
16381           - Implemented ProcessMnemonic support
16382           - Added Select() call to Active, to make sure the active control
16383             receives focus
16384         * Form.cs: Setting toplevel flag for Forms (this was lost in the
16385           FormParent rewrite)
16386         * ThemeWin32Classic.cs:
16387           - DrawCheckBox(): Fixed stringformat to show hotkeys
16388           - DrawRadioButton(): Fixed stringformat to show hotkeys
16389         * CommonDialog.cs: Removed WndProc override, not needed
16391 2005-02-14  Peter Bartok  <pbartok@novell.com>
16393         * XplatUIX11.cs: Fixed NotImplemented exceptions for properties,
16394           missed those in the rewrite
16396 2005-02-14  Miguel de Icaza  <miguel@novell.com>
16398         * NumericUpDown.cs (Increment, ToString): Add.
16399         (DecimalPlaces): implement.
16400         
16401         Add attributes.
16402         
16403         * UpDownBase.cs: Add the designer attributes.
16405 2005-02-13  Peter Bartok  <pbartok@novell.com>
16407         * Panel.cs: Removed border_style, now in Control
16408         * XplatUIDriver.cs: Added SetBorderStyle, SetMenu, GetMenuDC and
16409           ReleaseMenuDC Methods; renmaed ReleaseWindow to UngrabWindow
16411 2005-02-13  Peter Bartok  <pbartok@novell.com>
16413         * MouseButtons.cs: Added missing attributes
16414         * XplatUIStructs.cs: Added enumeration for title styles
16415         * LeftRightAlignment.cs: Added missing attributes
16416         * Hwnd.cs: Switched to use client_window as handle (slower, but makes
16417           it compatible with Graphics.FromHwnd()
16418         * SelectedGridItemChangedEventArgs.cs: Fixed property type
16419         * Keys.cs: Added missing attributes
16420         * SelectionRange.cs: Added missing attributes
16421         * SelectionRangeConverter.cs: Added
16422         * XplatUI.cs:
16423           - Introduced SetBorderStyle, SetMenu, GetMenuDC and
16424             ReleaseMenuDC methods
16425           - Renamed ReleaseWindow to UngrabWindow
16426           - Added proper startup notice to allow version identification
16427         * Form.cs:
16428           - Added missing attributes
16429           - Removed FormParent concept
16430         * Label.cs: Removed border_style field, now in Control
16431         * RadioButton.cs: Now properly selects RadioButton when focus is
16432           received
16433         * ThemeGtk.cs: Fixed SetDisplay call to match new X11 behaviour
16434         * Control.cs:
16435           - Added missing attributes
16436           - Added borderstyle handling
16437           - Removed FormParent concept support
16438           - Fixed calls to XplatUI to match changed APIs
16439           - Fixed bug that would case us to use disposed Graphics objects
16440           - Removed unneeded internal methods
16441           - PerformLayout(): Fixed to handle DockStyle.Fill properly
16442           - SelectNextControl(): Fixed to properly check common parents
16443         * TextBoxBase.cs: Removed border_style field (now in Control)
16444         * MessageBox.cs:
16445           - Patch by Robert Thompson (rmt@corporatism.org): Added icon support,
16446             fixed calculations for form size
16447           - Added support for localized strings and icons
16448           - Improved form size calculations, added border
16449         * ListView.cs: Removed border_style field (now in Control)
16450         * X11Structs.cs: Moved several structs from X11 driver here
16451         * X11Keyboard.cs: Changed debug message
16452         * Application.cs: Removed FormParent concept support
16453         * CommonDialog.cs:
16454           - Resetting end_modal flag
16455           - Removed FormParent concept support
16456         * NativeWindow.cs: Removed FormParent concept support
16457         * XplatUIX11.cs: Rewritten, now using the new Hwnd class, implementing
16458           Client area and Non-Client whole window to allow support for WM_NC
16459           messages
16460         * XplatUIOSX.cs: Updated to match latest driver spec; added exception
16461           prevent using it until it supports Hwnd as per Geoff Norton's request
16462         * ToolBar.cs: Fixed drawing, was not doing proper drawing
16463         * PictureBox.cs: Removed border_style field, now in Control
16464         * XplatUIWin32.cs: Added new driver methods
16466 2005-02-12  Peter Bartok  <pbartok@novell.com>
16468         * OpacityConverter.cs: Implemented
16469         * Hwnd.cs: Internal class to support drivers that need to emulate
16470           client area/non-client area window behaviour
16472 2005-02-11  Peter Bartok  <pbartok@novell.com>
16474         * KeysConverter.cs: Implemented
16476 2005-02-11  Jordi Mas i Hernandez <jordi@ximian.com>
16478         * Menu.cs: fixes methods GetContextMenu, GetMainMenu, ToString
16479         * LinkLabel: Added missing attributes
16480         * MainMenu.cs: fixes ToString
16481         * MenuItem.cs: fixes methods GetContextMenu, GetMainMenu
16482         * ListBox.cs: fixes event position
16483         * TrackBar.cs: adds missing attributes and events
16484         
16485 2005-02-10  Jordi Mas i Hernandez <jordi@ximian.com>
16487         * MenuItem.cs: Use SystemInformation and bug fixes
16488         * MenuAPI.cs: Use SystemInformation and bug fixes
16490 2005-02-09  Jackson Harper  <jackson@ximian.com>
16492         * X11Keyboard.cs: We ignore some keys, but still need to set/reset
16493         their keystate otherwise things like VK_MENU get stuck "on".
16495 2005-02-09  Kazuki Oikawa <kazuki@panicode.com>
16497         * ListBox.cs: Fixes AddRange bug
16498         
16499 2005-02-09  Jordi Mas i Hernandez <jordi@ximian.com>
16501         * ProgressBar.cs
16502                 - Add missing attributes
16503                 - Add missing method
16504                 
16505         * CheckedListBox.cs: Added missing attributes
16506                 - Add missing attributes
16507                 - Remove extra method
16508         
16509         * ComboBox.cs: Added missing attributes
16510         * VScrollBar.cs: Added missing attributes
16511         * ScrollBar.cs:  Added missing attributes
16512         * ListBox.cs: Fixes signature, add missing consts
16513         * LinkArea.cs:   Added missing attributes
16514         
16516 2005-02-08  Peter Bartok  <pbartok@novell.com>
16518         * Menu.cs: Added missing attributes
16519         * MainMenu.cs: Added missing attributes
16520         * GroupBox.cs: Added missing attributes
16521         * Label.cs: Added missing attributes
16522         * CheckBox.cs: Implemented CheckBoxAccessibleObject class
16523         * ColorDialog.cs:
16524           - Added Instance and Options properties
16525           - Added missing attributes
16526         * Cursor.cs: Made Serializable
16527         * NotifyIcon: Added missing attributes
16528         * MenuItem.cs: Added missing attributes
16529         * TextBoxBase.cs: Implemented AppendText() and Select() methods
16530         * Panel.cs: Added Missing attributes
16531         * MonthCalendar.cs: Fixed CreateParams
16533 2005-02-08  Jordi Mas i Hernandez <jordi@ximian.com>
16534         
16535         * LinkLabel.cs:
16536                 - Fixes signature
16537                 - Fixes issues with links
16538                 - Adds the class attributes
16540 2005-02-08  Jordi Mas i Hernandez <jordi@ximian.com>
16541         
16542         * ComboBox.cs:
16543                 - Fixes button when no items available in dropdown
16544                 - Fixes repainting problems
16545                 - Adds the class attributes
16546                 
16547 2005-02-07  Geoff Norton  <gnorton@customerdna.com>
16549         * XplatUIOSX.cs: Detect the menu bar and title bar height from
16550         the current theme.  Cache these on startup.
16552 2005-02-07  Jackson Harper  <jackson@ximian.com>
16554         * ScrollBar.cs: Give the correct clipping rect to the theme. Dirty
16555         the scrollbar buttons when they are depressed.
16557 2005-02-07  Geoff Norton  <gnorton@customerdna.com>
16559         * XplatUIOSX.cs: Really fix working at resolutions not 1024x768.
16560         Get the display size from the main displayid.  We currently dont
16561         support multiple display configurations.
16563 2005-02-07  Geoff Norton  <gnorton@customerdna.com>
16565         * XplatUIOSX.cs: Ensure the window doesn't get stuck behind the statusbar.
16567 2005-02-07  Miguel de Icaza  <miguel@novell.com>
16569         * UpDownBase.cs: Add ReadOnly and UpDownAlign properties.
16571 2005-02-05  Jonathan Chambers  <jonathan.chambers@ansys.com>
16573         * PropertyGrid.cs: Updated. Patch by Jonathan Chambers
16575 2005-02-04  Jackson Harper  <jackson@ximian.com>
16577         * ThemeWin32Classic.cs: Respect the clipping rect when
16578         drawing. Only fill the intersection of clips and rects so there
16579         isn't a lot of large fills.
16580         * ScrollBar.cs: Pass the correct clipping rect to the theme
16581         engine. Remove some debug code.
16583 2005-02-05  John BouAntoun  <jba-mono@optusnet.com.au>
16584         
16585         * DateTimePicker.cs:
16586                 - Fixed crash on DateTime.Parse, use Constructor instead
16588 2005-02-04  Jordi Mas i Hernandez <jordi@ximian.com>
16589         
16590         * MenuItem.cs:
16591         * MenuAPI.cs:
16592                 - Owner draw support (MeasureItem and DrawItem)
16594 2005-02-04  Jordi Mas i Hernandez <jordi@ximian.com>
16595         
16596         *  Menu.cs:
16597                 - Implements FindMergePosition and MergeMenu functions (very poor documented)
16598                 - Fixes MenuItems.Add range
16599         * MenuItem.cs:
16600                 - MergeMenu and Clone and CloneMenu functions
16602 2005-02-03  Jackson Harper  <jackson@ximian.com>
16604         * ScrollBar.cs: Make abstract
16605         * ScrollableControl.cs: Create H/V scrollbars now that scrollbar
16606         is abstract.
16608 2005-02-03  Jackson Harper  <jackson@ximian.com>
16610         * ScrollBar.cs: First part of my scrollbar fixups. This removes
16611         all the unneeded refreshes and uses invalidates with properly
16612         computed rects.
16614 2005-02-03  Peter Bartok  <pbartok@novell.com>
16616         * ComponentModel.cs: Added
16617         * IDataGridEditingService.cs: Added
16618         * Timer.cs: Added missing attributes
16619         * ToolTip.cs: Added missing attributes
16621 2005-02-03  Jonathan Chambers  <jonathan.chambers@ansys.com>
16623         * PropertyGridView.cs: Added. Patch by Jonathan Chambers
16625 2005-02-03  Peter Bartok  <pbartok@novell.com>
16627         * ListBox.cs: Added missing attributes
16629 2005-02-03  Jordi Mas i Hernandez <jordi@ximian.com>
16630         
16631         * ListBox.cs:
16632                 - Fixes font height after font change
16633                 - Avoid generating unnecesary OnSelectedIndexChanged on clearing
16634                 
16635 2005-02-02  Peter Bartok  <pbartok@novell.com>
16637         * HandleData.cs: Introduced static methods to allow class
16638           to be more self-contained and track it's own HandleData objects
16639         * XplatUIOSX.cs, XplatUIWin32.cs, XplatUIX11.cs: Fixed usage of
16640           HandleData to use new static methods
16642 2005-02-02  Jordi Mas i Hernandez <jordi@ximian.com>
16644         * Combobox.cs:
16645                 - Fixes default size and PreferredHeight
16646                 - Missing events
16647                 - ObjectCollection.Insert implementation
16648                 
16649         * ListControl.cs
16650                 - Fixes signature
16651         * ListBox.cs:
16652                 - Several fixes
16653                 - ObjectCollection.Insert implementation
16654                 - No selection after clean
16655                 - Small fixes
16657 2005-01-31      John BouAntoun  <jba-mono@optusnet.com.au>
16659         * ThemeWin32Classic.cs: quick fix to comboboxbutton pushed painting
16661 2005-02-01  Jordi Mas i Hernandez <jordi@ximian.com>
16663         * Combobox.cs:
16664                 - Caches ItemHeight calculation for OwnerDrawVariable
16665                 - Handles dropdown properly
16666                 - Fixes several minor bugs
16668 2005-01-31  Jordi Mas i Hernandez <jordi@ximian.com>
16670         * ListBox.cs:
16671                 - Fixes 71946 and 71950
16672                 - Fixes changing Multicolumn on the fly
16673                 - Fixes keyboard navigation on Multicolumn listboxes
16675 2005-01-31  Geoff Norton  <gnorton@customerdna.com>
16676         
16677         * XplatUIOSX.cs: Call ExitToShell in our teardown to avoid a
16678         crash reporter log.
16680 2005-01-31  Geoff Norton  <gnorton@customerdna.com>
16682         * XplatUIOSX.cs: Allow applications to actually exit.
16684 2005-01-31  Geoff Norton  <gnorton@customerdna.com>
16686         * XplatUIOSX.cs: SetWindowStyle implemented.  Reposition views in
16687         their parent at creation time rather than lazily later.  Fixes a major
16688         regression we were experiencing.
16690 2005-01-31      John BouAntoun  <jba-mono@optusnet.com.au>
16692         * ThemeWin32Classic.cs: more date time picker painting fixes
16693         * DateTimePicker.cs: more monthcalendar drop down fixes
16694         * MonthCalendar.cs: more CreateParams fixes to ensure correct drop down
16696 2005-01-31  Jordi Mas i Hernandez <jordi@ximian.com>
16698         * ScrollBar.cs:
16699                 - When moving the thumb going outside the control should stop the moving
16700                 - Adds the firing of missing events
16701                 - Fixes no button show if Size is not specified
16702                 - End / Home keys for keyboard navigation
16704 2005-01-30  Peter Bartok  <pbartok@novell.com>
16706         * NotifyIcon.cs (CalculateIconRect): Removed debug output and added
16707           sanity check to prevent theoretical loop
16708         * XplatUIWin32.cs (SetVisible): Removed debug output
16709         * XplatUIX11.cs (SystrayChange): Added sanity check
16710         * ScrollableControl.cs (OnVisibleChanged): Now calls base method
16711         * Control.cs (OnVisibleChanged): Added workaround for ParentForm
16712           behaviour, valid until the X11 client window rewrite is done
16713         * TextBox.cs (ctor): Setting proper default foreground and background
16714           colors
16716 2005-01-30      John BouAntoun  <jba-mono@optusnet.com.au>
16718         * Theme: Added DrawDateTimePicker to interface
16719         * ThemeWin32Classic.cs: Added DrawDateTimePicker (incomplete)
16720         * DateTimePicker.cs: Created (still needs keys and painting code)
16721         * DateTimePickerFormat.cs: added
16722         * MonthCalendar.cs: fixed CreateParams for popup window mode
16723           
16724 2005-01-29  Peter Bartok  <pbartok@novell.com>
16726         * ControlPaint.cs: Fixed luminace value returned on achromatic colors,
16727           this should also the calculations for ligher/darker
16728         * Theme.cs: Fixed defaults for ScrollBar widths/heights
16730 2005-01-29  Peter Bartok  <pbartok@novell.com>
16732         * ArrangeDirection.cs: Added
16733         * ArrangeStartingPositon.cs: Added
16734         * SystemInformation.cs: Implemented
16735         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs, XplatUIWin32.cs,
16736           XplatUIX11.cs, Theme.cs: Added/implemented new static properties
16737           used by SystemInformation class
16738         * X11Strucs.cs: Added XSizeHints structure
16739         * MenuAPI.cs:
16740           - Fixed CreateParams to make sure the menu window is always visible
16741           - TrackPopupMenu: Added check to make sure we don't draw the
16742             menu offscreen
16744 2005-01-29  Peter Bartok  <pbartok@novell.com>
16746         * HandleData.cs: Added method for altering invalid area
16747         * TextBoxBase.cs: Implemented TextLength
16749 2005-01-28  Peter Bartok  <pbartok@novell.com>
16751         * XplatUIX11.cs: Improvement over last patch, not sending
16752           the WM_PAINT directly anymore, instead we scroll any pending
16753           exposed areas and let the system pick out the WM_PAINT later
16755 2005-01-28  Peter Bartok  <pbartok@novell.com>
16757         * SWF.csproj: Deleted, no longer used. Instead,
16758           Managed.Windows.Forms/SWF.csproj should be used
16759         * XplatUIX11.cs: Instead of posting the WM_PAINT, we send it
16760           directly, to avoid a potential race condition with the next
16761           scroll
16763 2005-01-28  Peter Bartok  <pbartok@novell.com>
16765         * XplatUI.cs: Made class internal
16767 2005-01-28  Jordi Mas i Hernandez <jordi@ximian.com>
16769         * CheckedListBox.cs:
16770                 - Draw focus
16771                 - Fixed Drawing
16772                 - Missing methods and events
16774 2005-01-27  Peter Bartok  <pbartok@novell.com>
16776         * Application.cs (Run): Don't use form if we don't have one
16778 2005-01-27  Peter Bartok  <pbartok@novell.com>
16780         * TextBoxBase.cs (get_Lines): Fixed index off by one error
16782 2005-01-27  Peter Bartok  <pbartok@novell.com>
16784         * GridEntry.cs: Added; Patch by Jonathan S. Chambers
16785         * GridItem.cs: Added; Patch by Jonathan S. Chambers
16786         * GridItemCollection.cs: Added; Patch by Jonathan S. Chambers
16787         * GridItemType.cs: Added; Patch by Jonathan S. Chambers
16788         * PropertyGrid.cs: Added; Patch by Jonathan S. Chambers
16789         * PropertySort.cs: Added; Patch by Jonathan S. Chambers
16790         * PropertyTabChangedEventArgs.cs: Added; Patch by Jonathan S. Chambers
16791         * PropertyTabChangedEventHandler.cs: Added; Patch by Jonathan S. Chambers
16792         * PropertyValueChangedEventArgs.cs: Added; Patch by Jonathan S. Chambers
16793         * PropertyValueChangedEventArgs.cs: Added; Patch by Jonathan S. Chambers
16794         * SelectedGridItemChangedEventArgs.cs: Added; Patch by Jonathan S. Chambers
16795         * SelectedGridItemChangedEventHandler.cs: Added; Patch by Jonathan S. Chambers
16797 2005-01-27  Jordi Mas i Hernandez <jordi@ximian.com>
16799         * Combobox.cs:
16800                 - Draw focus on Simple Combobox
16801                 - Fixes drawing issues
16802                 - fixes 71834
16804 2005-01-27  Peter Bartok  <pbartok@novell.com>
16806         * Form.cs:
16807           - Place window in default location, instead of hardcoded 0/0
16808           - Send initial LocationChanged event
16809         * Control.cs:
16810           - UpdateBounds after creation to find out where the WM placed us
16811           - Make sure that if the ParentForm changes location the Form
16812             is notified
16813         * XplatUIX11.cs: XGetGeometry will not return the coords relative
16814             to the root, but to whatever the WM placed around us.
16815             Translate to root coordinates before returning toplevel
16816             coordinates
16817         * XplatUIWin32.cs: Removed debug output
16818         * XplatUIOSX.cs, XplatUI.cs, XplatUIDriver.cs: Added toplevel
16819           flag to GetWindowPos, to allow translation of coordinates on X11
16821 2005-01-27  Jordi Mas i Hernandez <jordi@ximian.com>
16823         * ListBox.cs: connect LostFocus Event
16825 2005-01-27  Peter Bartok  <pbartok@novell.com>
16827         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIOSX.cs,
16828           XplatUIX11.cs: Extended the Systray API
16829         * Form.cs: Removed debug output
16830         * Application.cs: Fixed focus assignment, always need to call
16831           XplatUI.Activate() since Form.Activate() has rules that may
16832           prevent activation
16833         * NotifyIcon.cs: Should be complete now
16834         * ToolTip.cs: Worked around possible timer bug
16836 2005-01-27  Jackson Harper  <jackson@ximian.com>
16838         * TabControl.cs:
16839         - Only invalidate the effected tabs when the
16840         selected index changes. This reduces drawing and gets rid of some
16841         flicker.
16842         - Only refresh if the tabs need to be shifted, otherwise only
16843         invalidate the slider button.
16844         - On windows the tabs are not filled to right if the slider is
16845         visible.
16846         
16847 2005-01-27  Jackson Harper  <jackson@ximian.com>
16849         * TabControl.cs: Only refresh on mouseup if we are showing the
16850         slider. Also only invalidate the button whose state has changed.
16852 2005-01-26  Peter Bartok  <pbartok@novell.com>
16854         * XplatUI.cs, XplatUIDriver.cs: Added Systray methods
16855         * XplatUIWin32.cs: Implemented SystrayAdd(), SystrayChange()
16856           and SystrayRemove() methods
16857         * XplatUIOSX.cs: Stubbed Systray methods
16858         * XplatUIX11.cs:
16859           - Implemented SystrayAdd(), SystrayChange() and SystrayRemove()
16860             methods
16861           - Fixed broken XChangeProperty calls (marshalling messed up things)
16862         * X11Structs.cs: Added enums and structs required for Size hinting
16863         * NotifyIcon.cs: Added & implemented
16865 2005-01-26  Jackson Harper  <jackson@ximian.com>
16867         * TabControl.cs: Space vertically layed out tabs properly.
16869 2005-01-26  Peter Bartok  <pbartok@novell.com>
16871         * Form.cs (CreateClientParams): Always set the location to 0,0
16872           since we're a child window.
16874         * Control.cs (SetVisibleCore): Always explicitly setting the location
16875           of a toplevel window, apparently X11 doesn't like to move windows
16876           while they're not mapped.
16878 2005-01-26  Jackson Harper  <jackson@ximian.com>
16880         * TabControl.cs: Implement FillToRight size mode with vertically
16881         rendered tabs.
16883 2005-01-26  Jordi Mas i Hernandez <jordi@ximian.com>
16885         * ControlPaint.cs, ThemeWin32Classic.cs
16886                 - Fixes DrawFocusRectangle
16888 2005-01-26  Jordi Mas i Hernandez <jordi@ximian.com>
16890         * MenuAPI.cs:
16891                 - MenuBar tracking only starts when item is first clicked
16892                 - Fixes menu hidding for multiple subitems
16893                 - Unselect item in MenuBar when item Executed
16894                 - Fixes bug 71495
16896 2005-01-25  Jordi Mas i Hernandez <jordi@ximian.com>
16898         * ListControl.cs:
16899                 - IsInputKey for ListBox
16900         * ListBox.cs:
16901                 - Focus item
16902                 - Shift and Control item selection
16903                 - Implement SelectionMode.MultiExtended
16904                 - Fixes RightToLeft
16905         * ComboBox.cs:
16906                 - IsInputKey implemented
16907                 - Do not generate OnTextChangedEdit on internal txt changes
16908                 
16909 2005-01-23  Peter Bartok  <pbartok@novell.com>
16911         * AccessibleObject.cs: Partially implemented Select()
16912         * MonthCalendar.cs: Added missing attributes and events
16913         * Form.cs: Fixed CreateParams behaviour, now controls derived from
16914           form can properly override CreateParams.
16915         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs, XplatUIWin32.cs,
16916           XplatUIX11.cs: Dropped RefreshWindow method, not needed if
16917           Control performs Invalidate & Update
16918         * NativeWindow (CreateHandle): Added special handling for Form
16919           and Form.FormParent classes to allow overriding of From.CreateParams
16920         * Control.cs:
16921           - ControlNativeWindow: Renamed 'control' variable to more intuitive
16922             name 'owner'
16923           - ControlNativeWindow: Added Owner property
16924           - Removed usage of Refresh() on property changes, changed into
16925             Invalidate(), we need to wait until the queue is processed for
16926             updates, direct calls might cause problems if not all vars for
16927             Paint are initialized
16928           - Added call to UpdateStyles() when creating the window, to set any
16929             styles that CreateWindow might have ignored.
16930           - Added support for Form CreateParent overrides to UpdateStyles()
16931         * MessageBox.cs: Removed no longer needed FormParent override stuff,
16932           CreateParams are now properly overridable
16933         * CommonDialog.cs: Removed no longer needed FormParent override stuff,
16934           CreateParams are now properly overridable
16936 2005-01-23  Miguel de Icaza  <miguel@ximian.com>
16938         * UpDownBase.cs (ctor): Connect TextChanged in the entry to the
16939         OnTextBoxChanged.
16941         Capture LostFocus and OnTextBoxChanged.  The later introduces a
16942         recursive invocation that I have not figured out yet.
16944         Reset the timer when not using (it was accumulating).
16947         (OnTextBoxChanged): Set UserEdit to true here to track whether the
16948         user has made changes that require validation.
16950         Reset changing to avoid loops.
16952 2005-01-22  Miguel de Icaza  <miguel@ximian.com>
16954         * NumericUpDown.cs: Display value at startup.
16956         * UpDownBase.cs (Text): Do not call UpdateEditText here, only call
16957         ValidateEditText.
16959         * NumericUpDown.cs: Minimum, Maximum, Text, Value properties
16960         filled in.  Added some basic parsing of text.
16962         Still missing the OnXXX method overrides, and figuring out the
16963         events that must be emitted.
16965         * UpDownBase.cs: Handle UserEdit on the Text property.
16966         
16967 2005-01-22  Jordi Mas i Hernandez <jordi@ximian.com>
16969         * ComboBox.cs:
16970           - Fixes IntegralHeight
16971           - ToString method
16973 2005-01-21  Jackson Harper  <jackson@ximian.com>
16975         * TabControl.cs: Set the SelectedIndex property when SelectedTab
16976         is set so that the page visibility is updated and the tabs are
16977         sized correctly.
16979 2005-01-21  Jackson Harper  <jackson@ximian.com>
16981         * TabControl.cs: Use cliping rectangle for blitting. Give the
16982         theme the clipping rect so we can do clipping while
16983         drawing. Remove some debug code.
16985 2005-01-21  Jackson Harper  <jackson@ximian.com>
16987         * TabPage.cs: Add a new method so tab pages can force the tab
16988         control to recalculate the tab page sizes.
16989         * TabControl.cs: UpdateOwner needs to make the tab control recalc
16990         sizes.
16992 2005-01-20  Jackson Harper  <jackson@ximian.com>
16994         * ThemeWin32Classic.cs: Clip text to the staus bar panels rects.
16996 2005-01-20  Jackson Harper  <jackson@ximian.com>
16998         * TreeView.cs: Set the bounds for nodes properly. They were
16999         getting screwed up when checkboxes were not enabled, but images
17000         were.
17002 2005-01-20  Jordi Mas i Hernandez <jordi@ximian.com>
17004         * ListBox.cs:
17005                 - Owner draw support
17006                 - Fixes
17007                 
17008 2005-01-20  Jackson Harper  <jackson@ximian.com>
17010         * XplatUIStructs.cs: More misc keys
17011         * X11Keyboard.cs: Ignore some control keys.
17013 2005-01-20  Jackson Harper  <jackson@ximian.com>
17015         * X11Structs.cs: Add the modmaps to the keymask struct and tabify.
17016         * X11Keyboard.cs: Set the AltGr mask when we get a key event.
17018 2005-01-19  Peter Bartok  <pbartok@novell.com>
17020         * Control.cs: Un-selecting the control when it is loosing focus
17022 2005-01-19  Jackson Harper  <jackson@ximian.com>
17024         * TreeView.cs: Hook up to the text controls leave event so we can
17025         end editing when the users clicks outside the text box.
17026         
17027 2005-01-19  Jackson Harper  <jackson@ximian.com>
17029         * X11Keyboard.cs: Fix typo that was causing the wrong keycodes to
17030         get set in the conversion array.
17032 2005-01-19  Peter Bartok  <pbartok@novell.com>
17034         * Application.cs (ModalRun): Added a call to CreateControl to ensure
17035           focus is properly set
17036         * Button.cs:
17037           - Added missing attributes
17038           - removed styles, those are already set in the base class
17039         * ButtonBase.cs:
17040           - Added missing attributes
17041           - Added clip window styles
17042         * CheckBox.cs: Added missing attributes
17043         * CommonDialog.cs:
17044           - FormParentWindow.CreateParams: Added required clip styles
17045         * Form.cs (ProcessDialogKey): Fixed handling of Escape key, now
17046           also filters modifier keys
17047         * MessageBox.cs:
17048           - Added assignment of Accept and Cancel button to enable Enter
17049             and Esc keys in MessageBox dialogs
17050           - FormParentWindow.CreateParams: Added required clip styles
17051         * RadioButton.cs: Added missing attributes
17052         * TextControl.cs: No longer draws selection if control does not
17053           have focus
17054         * TextBoxBase.cs:
17055           - Now draws simple rectangle around test area to make it obvious
17056             there's a control. This is a hack until we properly support borders
17057           - A few simple fixes to support selections better, now erases selected
17058             text when typing, and resets selection when using movement keys
17060 2005-01-19  Miguel de Icaza  <miguel@ximian.com>
17062         * UpDownBase.cs: Added some new properties.
17064         * DomainUpDown.cs: Implement a lot to get my test working.
17066 2005-01-19  Geoff Norton  <gnorton@customerdna.com>
17068         * XplatUIOSX.cs: Fix a minor bug to bring the close box back
17070 2005-01-19  Geoff Norton  <gnorton@customerdna.com>
17072         * OSXStructs (WindowAttributes): Fixed csc complaints
17074 2005-01-19  Geoff Norton  <gnorton@customerdna.com>
17076         * XplayUIOSX.cs:
17077           OSXStructs.cs: Initial refactor to move enums and consts into
17078           OSXStructs and use them in the driver for greater readability.
17080 2005-01-19  Geoff Norton  <gnorton@customerdna.com>
17082         * XplatUIOSX.cs: Initial support for Standard Cursors.
17083         * OSXStructs.cs: Move our structs here; added ThemeCursor enum
17085 2005-01-19  Jordi Mas i Hernandez <jordi@ximian.com>
17087         * ComboBox.cs: ability to change style when the ctrl is already
17088         created, missing methods and events, bug fixes, signature fixes
17090 2005-01-19  Peter Bartok  <pbartok@novell.com>
17092         * Cursors.cs (ctor): Added ctor to fix signature
17094 2005-01-18  Peter Bartok  <pbartok@novell.com>
17096         * Button.cs: Implemented DoubleClick event
17097         * ButtonBase.cs:
17098           - Fixed keyboard handling to behave like MS, where the press of
17099             Spacebar is equivalent to a mousedown, and the key release is
17100             equivalent to mouseup. Now a spacebar push will give the same
17101             visual feedback like a mouse click.
17102           - Added missing attributes
17103           - Added ImeModeChanged event
17104           - Added support for generating DoubleClick event for derived classes
17105         * CheckBox.cs:
17106           - Implemented DoubleClick event
17107           - Added missing attributes
17108         * CommonDialog.cs: Added missing attribute
17109         * ContextMenu.cs: Added missing attributes
17110         * RadioButton.cs:
17111           - AutoChecked buttons do not allow to be unselected when clicked
17112             (otherwise we might end up with no selected buttons in a group)
17113           - Added missing attributes
17114           - Implemented DoubleClickEvent
17115         * ThreadExceptionDialog.cs: Enabled TextBox code
17117 2005-01-18  Peter Bartok  <pbartok@novell.com>
17119         * Form.cs: Removed debug output
17120         * Button.cs: Added support for DoubleClick method
17122 2005-01-18  Peter Bartok  <pbartok@novell.com>
17124         * Form.cs:
17125           - Added method to parent window that allows triggering size
17126             calculations when a menu is added/removed
17127           - set_Menu: Cleaned up mess from early days of Form and Control,
17128             now properly triggers a recalc when a menu is added/removed
17129           - Added case to select form itself as focused form if no child
17130             controls exist
17131           - Added PerformLayout call when showing dialog, to ensure properly
17132             placed controls
17133         * Control.cs:
17134           - Select(): Made internal so Form can access it
17135           - Focus(): Only call Xplat layer if required (avoids loop), and sets
17136             status
17137         * Application.cs (Run): Removed hack and calls PerformLayout instead
17138           to trigger calculation when Form becomes visible
17140 2005-01-18  Jordi Mas i Hernandez <jordi@ximian.com>
17142         * ComboBox.cs: fixes for ownerdraw
17144 2005-01-18  Peter Bartok  <pbartok@novell.com>
17146         * TextControl.cs:
17147           - Sentinel is no longer static, each Document gets it's own, this
17148             avoids locking or alternatively overwrite problems when more
17149             than one text control is used simultaneously.
17150           - Switched to use Hilight and HilightText brushes for text selection
17152         * TextBoxBase.cs (PaintControl): Disabled AntiAliasing to improve looks
17154 2005-01-18  Peter Bartok  <pbartok@novell.com>
17156         * Control.cs:
17157           - Hooked up the following events:
17158                 o ControlAdded
17159                 o ControlRemoved
17160                 o HandleDestroyed
17161                 o ImeModeChanged
17162                 o ParentChanged
17163                 o TabStopChanged
17164                 o Invalidated
17165                 o SystemColorsChanged
17166                 o ParentFontChanged
17167                 o Move
17168           - Removed debug output
17169           - Added a call to the current theme's ResetDefaults when a color change
17170             is detected
17171         * Form.cs: Now setting the proper ImeMode
17172         * Theme.cs: Defined a method to force recreation of cached resources
17173           and rereading of system defaults (ResetDefaults())
17174         * ThemeWin32Classic.cs: Added ResetDefaults() stub
17176 2005-01-17  Peter Bartok  <pbartok@novell.com>
17178         * Control.cs: Added missing attributes
17180 2005-01-17  Jackson Harper  <jackson@ximian.com>
17182         * TreeNode.cs: Implement editing. Add missing properties selected
17183         and visible.
17184         * TreeView.cs: Implement node editing. Also some fixes to use
17185         Invalidate (invalid area) instead of Refresh when selecting.
17187 2005-01-17  Peter Bartok  <pbartok@novell.com>
17189         * Control.cs:
17190           - Implemented InvokeGotFocus() method
17191           - Implemented InvokeLostFocus() method
17192           - Implemented InvokePaint() method
17193           - Implemented InvokePaintBackground() method
17194           - Implemented InvokeClick() method
17195           - Implemented FindForm() method
17196           - Implemented RectangleToClient() method
17197           - Implemented ClientToRectangle() method
17198           - Implemented ResetBackColor() method
17199           - Implemented ResetCursor() method
17200           - Implemented ResetFont() method
17201           - Implemented ResteForeColor() method
17202           - Implemented ResetImeMode() method
17203           - Implemented ResetLeftToRight() method
17204           - Implemented ResetText() method
17205           - Implemented Scale() methods
17206           - Implemented ScaleCore() method
17207           - Implemented Update() method
17208           - Removed unused variables
17209           - Stubbed AccessibilityNotifyClients and
17210             ControlAccessibleObject.NotifyClients() methods (dunno what to do
17211             with those yet)
17212           - Now setting proper default for RightToLeft property
17213           - Fixed bug in SetClientSizeCore that would cause windows to get
17214             really big
17215           - Now sending Click/DoubleClick events
17216           - Now selecting controls when left mouse button is clicked on
17217             selectable control
17218         * AccessibleEvents.cs: Added
17219         * XplatUI.cs, XplatUIDriver.cs: Added UpdateWindow() method
17220         * XplatUIOSX.cs: Stubbed UpdateWindow() method
17221         * XplatUIWin32.cs: Implemented UpdateWindow() method
17222         * XplatUIX11.cs: Implemented UpdateWindow() method
17223         * Form.cs: Removed stray semicolon causing CS0162 warning
17224         * ThemeWin32Classic.cs: Fixed unused variable warnings
17225         * ScrollableControl.cs: Now calls base method for ScaleCore
17226         * ButtonBase.cs: Now disabling StandardClick and StandardDoubleClick
17227           style to avoid interference with internal click handler (which is
17228           different than standard Control click handling)
17229         * RadioButton.cs:
17230           - Now unchecks all sibling radio buttons when control is
17231             selected (Fixes #68756)
17232           - Removed internal tabstop variable, using the one inherited from
17233             Control
17235 2005-01-17  Jackson Harper  <jackson@ximian.com>
17237         * NavigateEventArgs.cs: Fix base type.
17238         * LinkLabel.cs: Sig fix
17239         
17240 2005-01-17  Jackson Harper  <jackson@ximian.com>
17242         * TreeView.cs: Only invalidate the effected nodes bounds when
17243         selecting nodes.
17245 2005-01-13  Jordi Mas i Hernandez <jordi@ximian.com>
17247         * XplatUIWin32.cs: fixes Win32 marshaling
17248         * XplatUIX11.cs: fixes method signature
17250 2005-01-17  Peter Bartok  <pbartok@novell.com>
17252         * XplatUIX11.cs: Clean up resources when we no longer need them
17254 2005-01-17  Peter Bartok  <pbartok@novell.com>
17256         * XplatUI.cs, XplatUIDriver.cs: Added SetCursor(), ShowCursor(),
17257           OverrideCursor(), DefineCursor(), DefineStdCursor(), GetCursorInfo()
17258           and DestroyCursor() methods.
17259         * Cursor.cs: Partially implemented, now supports standard cursors;
17260           still contains some debug code
17261         * Cursors.cs: Implemented class
17262         * Control.cs:
17263           - WndProc(): Added handling of WM_SETCURSOR message, setting the
17264             appropriate cursor
17265           - Implemented Cursor property
17266           - Replaced break; with return; more straightforwar and possibly
17267             faster
17268           - Now properly setting the result for WM_HELP
17269         * X11Structs.cs: Added CursorFontShape enum
17270         * XplatUIStructs.cs:
17271           - Added StdCursor enum (to support DefineStdCursor() method)
17272           - Added HitTest enum (to support sending WM_SETCURSOR message)
17273         * XplatUIX11.cs:
17274           - Now sends the WM_SETCURSOR message
17275           - Implemented new cursor methods
17276         * XplatUIOSX.cs: Stubbed new cursor methods
17277         * XplatUIWin32.cs:
17278           - Implemented new cursor methods
17279           - Added GetSystemMetrics function and associated enumeration
17281 2005-01-15  Peter Bartok  <pbartok@novell.com>
17283         * Control.cs:
17284           - WndProc(): Now handles EnableNotifyMessage
17285           - SelectNextControl(): Fixed bug where if no child or sibling
17286             controls exist we looped endlessly
17288 2005-01-14  Jackson Harper  <jackson@ximian.com>
17290         * TreeView.cs: Recalculate the tab pages when a new one is added
17291         so that the proper bounding rects are created.
17293 2005-01-14  Jackson Harper  <jackson@ximian.com>
17295         * TreeView.cs: Draw a gray box instead of a grip in the lower
17296         right hand corner when there are both horizontal and vertical
17297         scroll bars.
17299 2005-01-14  Jackson Harper  <jackson@ximian.com>
17301         * Control.cs: When erasing backgrounds use FromHwnd instead of
17302         FromHdc when there is a NULL wparam. This occurs on the X driver.
17303         * XplatUIX11.cs: Set the wparam to NULL.
17305 2005-01-13  Jackson Harper  <jackson@ximian.com>
17307         * PictureBox.cs: Implement missing methods (except ToString, need
17308         to test that on windows) and events. When visibility is changed we
17309         need to redraw the image because the buffers are killed. When size
17310         is changed refresh if the sizemode needs it.
17312 2005-01-13  Peter Bartok  <pbartok@novell.com>
17314         * Control.cs (SelectNextControl): Was using wrong method to select
17315           a control
17317 2005-01-13  Jordi Mas i Hernandez <jordi@ximian.com>
17319         * ComboBox.cs: fixes dropstyle
17321 2005-01-13  Peter Bartok  <pbartok@novell.com>
17323         * Form.cs:
17324           - Implemented Select() override
17325           - Now handles WM_SETFOCUS/WM_KILLFOCUS messages
17326           - Now sets keyboard focus on startup
17327         * Control.cs (SelectNextControl): Now properly handles directed=true
17328         * TextBoxBase.cs:
17329           - WndProc: Now passes tab key on to base if AcceptTabChar=false
17330           - Added (really bad) focus rectangle (mostly for testing)
17331         * TextBox.cs: Added code to handle getting/loosing focus and invalidating
17332           to enforce redraw on focus changes
17333         * ContainerControl.cs:
17334           - Fixed detection of Shift-Tab key presses
17335           - Fixed traversal with arrow keys
17336         * XplatUIX11.cs: Implemented simulated keyboard focus; not sure if we're
17337           gonna keep this or if it's complete yet
17338         
17339 2005-01-13  Jordi Mas i Hernandez <jordi@ximian.com>
17341         * ComboBox.cs: missing properties, fixes
17343 2005-01-13  Peter Bartok  <pbartok@novell.com>
17345         * Panel.cs (ctor): Setting Selectable window style to off
17346         * Splitter.cs (ctor): Setting Selectable window style to off
17347         * GroupBox.cs (ctor): Setting Selectable window style to off
17348         * Label.cs (ctor): Setting Selectable window style to off
17350 2005-01-12  Miguel de Icaza  <miguel@ximian.com>
17352         * UpDownBase.cs (InitTimer): If the timer has been already
17353         created, enable it.
17355         Use a TextBox instead of a Label.
17357 2005-01-12  Jackson Harper  <jackson@ximian.com>
17359         * TreeView.cs: Refresh the tree after sorting the nodes. Always
17360         draw the connecting node lines (when ShowLines is true).
17361         * TreeNode.cs: The nodes index can now be updated. This is used
17362         when a node collection is sorted.
17363         * TreeNodeCollection.cs: Implement sorting. Nodes can be sorted on
17364         insert or an existing unsorted node collection can be sorted.
17365         
17366 2005-01-12  Peter Bartok  <pbartok@novell.com>
17368         * ContainerControl.cs: Implemented ProcessDialogKeys()
17370 2005-01-12  Peter Bartok  <pbartok@novell.com>
17372         * Control.cs:
17373           - Implemented SelectNextControl() method
17374           - Several focus related bug fixes
17375           - Fixed Docking calculations to match MS documentation and
17376             behaviour
17378 2005-01-12  Jordi Mas i Hernandez <jordi@ximian.com>
17380         * ContainerControl.cs, ListControl.cs, ListBox.cs: keyboard navigation and
17381         bug fixes
17383 2005-01-12  Peter Bartok  <pbartok@novell.com>
17385         * Control.cs:
17386           - Fixed broken Contains() method
17387           - Implemented GetNextControl() method. Finally. This is the pre-
17388             requisite for focus handling.
17390 2005-01-12  Peter Bartok  <pbartok@novell.com>
17392         * OSXStrucs.cs: Added
17394 2005-01-12  Peter Bartok  <pbartok@novell.com>
17396         * XplatUIWin32.cs:
17397           - Removed PeekMessageFlags
17398           - Implemented SetWindowStyle() method
17399         * XplatUIStructs.cs: Added PeekMessageFlags
17400         * X11Structs: Added missing border_width field to XWindowChanges struct
17401         * XplatUIX11.cs:
17402           - PeekMessage: Now throws exception if flags which are not yet
17403             supported are passed
17404           - Implemented SetWindowStyle() method
17405           - Fixed SetZOrder to handle AfterHwnd properly
17406         * XplatUI.cs: Added SetWindowStyle() method
17407         * XplatUIDriver.cs: Added SetWindowStyle() abstract
17408         * Control.cs:
17409           - Implemented UpdateStyles() method
17410           - Implemented UpdateZOrder() method
17411         * XplatUIOSX.cs: Added SetWindowStyle() stub
17413 2005-01-12  Geoff Norton  <gnorton@customerdna.com>
17415         * XplatUIOSX.cs: Fix SetZOrder (this needs more testing with a 3
17416         button mouse).
17419 2005-01-11  Jackson Harper  <jackson@ximian.com>
17421         * TreeView.cs: Still need to draw lines to siblings even if out of
17422         the current node is out of the clip.
17424 2005-01-11  Jackson Harper  <jackson@ximian.com>
17426         * TreeView.cs: When setting the hbar/vbar/grip position use
17427         SetBounds so that perform layout is only called once. Also suspend
17428         and resume layout so layout is only done once for all controls.
17429         - Removed some debug fluff
17430         * SizeGrip.cs: Call base implmentation in overriding methods.
17431         - When visibility is changed the drawing buffers are killed so we
17432         need to redraw.
17434 2005-01-11  Jackson Harper  <jackson@ximian.com>
17436         * TreeView.cs: Calculate the open node count while drawing. This
17437         saves us an entire tree traversal for every paint operation. Use
17438         a member var for the open node count so less vars are passed around.
17440 2005-01-11  John BouAntoun  <jba-mono@optusnet.com.au>
17442         * MonthCalendar.cs:
17443         - fixed selection to use mousemove, not mouse polling on timer
17444         * ThemeWin32Classic.cs
17445         - removed redundant unused variable "no_more_content"
17446         
17447 2005-01-11  Peter Bartok  <pbartok@novell.com>
17449         * XplatUIX11.cs (DoEvents): Needs to return when no more events
17450           are pending, so it now calls PeekMessage instead of GetMessage;
17451           implemented a incomplete version of PeekMessage
17452         
17453 2005-01-11  Peter Bartok  <pbartok@novell.com>
17455         * XplatUIWin32.cs: Switched P/Invokes to unicode charset to avoid
17456           I18n issues
17457         * TextBoxBase.cs: Added sending of TextChanged event
17459 2005-01-10  Jackson Harper  <jackson@ximian.com>
17461         * TreeView.cs: Try not to draw outside the clipping rectangle on
17462         each node element.
17464 2005-01-10  Jordi Mas i Hernandez <jordi@ximian.com>
17466         * ComboBox.cs: keyboard navigation, item navigation, bug fixes
17468 2005-01-10  Jackson Harper  <jackson@ximian.com>
17470         * TreeView.cs:
17471         - Implement fast scrolling. Now only the newly
17472         exposed nodes are drawn and the old image is moved using the
17473         XplatUI::ScrollWindow method.
17474         - Factor in height of nodes when calculating whether or not the
17475         node is in the clipping rect.
17477 2005-01-10  Jackson Harper  <jackson@ximian.com>
17479         * TreeNodeCollection.cs: Refresh the tree when a new node is added.
17481 2005-01-10  Peter Bartok  <pbartok@novell.com>
17483         * Application.cs: Added temporary hack to resolve all our resize
17484           required issues on startup. This will get fixed properly at
17485           some point in the future
17487 2005-01-10  Jackson Harper  <jackson@ximian.com>
17489         * SizeGrip.cs: New internal class that is used as a sizing
17490         grip control...hence the name.
17492 2005-01-10  Peter Bartok  <pbartok@novell.com>
17494         * Control.cs: Implemented proper TabIndex handling, now assigning
17495           a tabindex when a control is added to a container
17496         * GroupBox.cs (ctor): Now sets the Container style bit, required
17497           for Control.GetNextControl()
17499 2005-01-09  Jackson Harper  <jackson@ximian.com>
17501         * TextBoxBase.cs: Clear window when scrolling (fixes build).
17503 2005-01-09  Peter Bartok <pbartok@novell.com>
17505         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIOSX.cs,
17506           XplatUIX11.cs: Added ability to control ScrollWindow expose and
17507           an overload for ScrollWindow to allow only scrolling a rectangle
17509 2005-01-09  Peter Bartok <pbartok@novell.com>
17511         * Form.cs:
17512           - Implemented SetDesktopBounds method
17513           - Implemented SetDesktopLocation method
17515 2005-01-08  Jackson Harper  <jackson@ximian.com>
17517         * TreeView.cs: Only set the vbar's Maximum and LargeChange when
17518         the node count has changed, this removes to VScroll::Refresh calls
17519         when drawing.
17521 2005-01-08  Geoff Norton  <gnorton@customerdna.com>
17523         * XplatUIOSX.cs: Fix GetWindowState & SetWindowState
17525 2005-01-07  Jackson Harper  <jackson@ximian.com>
17527         * TreeNode.cs: Just update the single node when it is
17528         checked. Don't refresh after toggling, the Expand/Collapse already
17529         handles this.
17530         * TreeView.cs: Respect clipping a little more when drawing. Try
17531         not to redraw things that don't need to be redrawn. Just hide the
17532         scrollbars when they are no longer needed instead of removing
17533         them, so they don't have to be created again and again.
17534         
17535 2005-01-07  Geoff Norton  <gnorton@customerdna.com>
17537         * XplatUIOSX.cs (SetCaretPos):  We need to translate the view
17538         coordinates to window space to place the caret properly, FIXED.
17539         Implement GetWindowState & SetWindowState
17541 2005-01-06  Peter Bartok <pbartok@novell.com>
17543         * Form.cs:
17544           - Implemented ClientSize property
17545           - Implemented DesktopBounds property
17546           - Implemented DesktopLocation property
17547           - Implemented IsRestrictedWindow property
17548           - Implemented Size property
17549           - Implemented TopLevel property
17550           - Implemented FormWindowState property
17551         * Control.cs:
17552           - Implemented GetTopLevel() method
17553           - Implemented SetTopLevel() method
17554         * X11Structs.cs (Atom):
17555           - Added AnyPropertyType definition
17556           - Added MapState definiton and updated XWindowAttribute struct
17557         * XplatUI.cs: Added GetWindowState() and SetWindowState() methods
17558         * XplatUIDriver.cs: Added GetWindowState() and SetWindowState() methods
17559         * XplatUIOSX.cs: Stubbed GetWindowState() and SetWindowState() methods
17560         * XplatUIWin32.cs:
17561           - Implemented GetWindowState() and SetWindowState() methods
17562           - Fixed Win32GetWindowLong return type
17563         * XplatUIX11.cs:
17564           - Introduced central function for sending NET_WM messages
17565           - Implemented GetWindowState() and SetWindowState() methods
17566         * TextBoxBase.cs (set_Lines):
17567           - Now uses Foreground color for text added via Text property (Duh!)
17568           - Added code to remember programmatically requested size (fixes
17569             behaviour when Multiline is set after Size)
17570           - Added AutoSize logic
17572 2005-01-06  Jackson Harper  <jackson@ximian.com>
17574         * TreeView.cs: Draw the image after the checkbox if checkboxes are enabled.
17576 2005-01-06  Jackson Harper  <jackson@ximian.com>
17578         * ListBox.cs: Don't allow the horizontal scrollbars maximum to be
17579         set to less then 0.
17581 2005-01-06  Jackson Harper  <jackson@ximian.com>
17583         * ScrollableControl.cs: Lazy init the scrollbars.
17584         
17585 2005-01-06  Jackson Harper  <jackson@ximian.com>
17587         * Theme.cs: Speed up getting pens and solid brushes, by using
17588         their ARGB as a hash instead of tostring and not calling Contains.
17590 2005-01-06  Peter Bartok <pbartok@novell.com>
17592         * Form.cs:
17593           - Implemented OnActivated and OnDeactivate event trigger
17594           - Implemented Activate() method
17595           - Fixed ShowDialog() to activate the form that was active before
17596             the dialog was shown
17597         * XplatUIX11.cs:
17598           - Added global active_window var that tracks the currently active
17599             X11 window
17600           - Now always grabs Property changes from the root window to always
17601             catch changes on the active window property
17602           - Added code to PropertyNotify handler to send Active/Inactive
17603             messages when state changes. This puts X11 and Win32 en par on
17604             WM_ACTIVATE notifications (except for double notifications when
17605             the user clicks away from our modal window to another one of our
17606             windows)
17608 2005-01-05  Jackson Harper  <jackson@ximian.com>
17610         * ImageList.cs: Implment ctor
17612 2005-01-05  Geoff Norton  <gnorton@customerdna.com>
17614         * XplatUIOSX.cs: Implement Activate/SetTopmost
17616 2005-01-05  Geoff Norton  <gnorton@customerdna.com>
17618         * XplatUIOSX.cs: Implement SetZOrder, minor cleanup
17620 2005-01-05  Geoff Norton  <gnorton@customerdna.com>
17622         * XplatUIOSX.cs: Implement GetActive/SetFocus.
17624 2005-01-05  Peter Bartok <pbartok@novell.com>
17626         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIX11.cs,
17627           XplatUIOSX.cs: Added GetActive method to return the currently
17628           active window for the application (or null, if none is active)
17629         * Form.cs:
17630           - Implemented ActiveForm
17631           - Commented out owner assignment for modal dialogs (causes problems
17632             on Win32, since the owner will be disabled)
17633           - Reworked some Active/Focus handling (still incomplete)
17634         * CommonDialog.cs: Commented out owner assignment for modal dialogs
17635           (causes problems on Win32, since the owner will be disabled)
17636         * IWin32Window: Added ComVisible attribute
17638 2005-01-05  Peter Bartok <pbartok@novell.com>
17640         * ToolTip.cs (WndProc): Enable setting focus now that we have the
17641           required XplatUI functions.
17643 2005-01-05  Peter Bartok <pbartok@novell.com>
17645         * XplatUI.cs, XplatUIOSX.cs, XplatUIWin32.cs, XplatUIDriver.cs,
17646           XplatUIX11.cs, X11Structs.cs, Form.cs: Framework code required
17647           to implement focus and activation handling; still incomplete and
17648           with debug output
17650 2005-01-04  Peter Bartok <pbartok@novell.com>
17652         * TextBoxBase.cs: Changed access level for Document property to
17653           match switch to internal for TextControl
17655 2005-01-04  Peter Bartok <pbartok@novell.com>
17657         * AccessibleObject: Added ComVisible attribute
17659 2005-01-04  Jackson Harper  <jackson@ximian.com>
17661         * X11Keyboard.cs: Remove unneeded var.
17663 2005-01-04  Jackson Harper  <jackson@ximian.com>
17665         * XplatUIX11.cs (DoEvents): Implement, Just cast aside all events
17666         but PAINT.
17667         * XplatUIX11.cs (GetMessage): Call Exit when we get an unknown
17668         ClientMessage. This makes apps exit cleanly (more often).
17669         
17670 2005-01-04  Jackson Harper  <jackson@ximian.com>
17672         * TreeNode.cs: Patches by Kazuki Oikawa (kazuki@panicode.com) for
17673         handling focus, return correct colors and fonts,
17674         * TreeView.cs: Patches by Kazuki Oikawa (kazuki@panicode.com) to
17675         handle selection, horizontal scrolling, and mouse interaction.
17677 2005-01-04  Peter Bartok <pbartok@novell.com>
17679         * ICommandExecutor.cs: Added
17680         * IDataGridColumnStyleEditingNotificationService.cs: Added
17681         * IFeatureSupport.cs: Added
17682         * IFileReaderService.cs: Added
17683         * IDataObject.cs: Added ComVisible attribute
17684         * AmbientProperties.cs: Added
17685         * BaseCollection.cs: Added missing attributes
17686         * ListBindingConverter.cs: Added (stubbed, required for certain attributes)
17687         * BaseCollection.cs: Added missing attributes
17688         * Binding.cs: Added TypeConverter attribute
17689         * BindingContext.cs: Added DefaultEvent attribute
17690         * BindingsCollection.cs: Added DefaultEvent attribute
17691         * Button.cs: Added DefaultValue attribute
17692         * DragEventArgs.cs: Added ComVisible attribute
17693         * GiveFeedbackEventArgs.cs: Added ComVisible attribute
17694         * KeyEventArgs.cs: Added ComVisible attribute
17695         * KeyPressEventArgs.cs: Added ComVisible attribute
17696         * MouseEventArgs.cs: Added ComVisible attribute
17697         * NavigateEventArgs.cs: Added
17698         * NavigateEventHandler.cs: Added
17699         * FeatureSupport.cs: Added
17700         * OSFeature.cs: Added
17701         * Theme.cs: Added abstract Version property to support OSFeature
17702         * ThemeWin32Classic.cs: Added Version property to
17703           support OSFeature.Themes
17704         * ProgressBar.cs: Removed OnPaintBackground override, not required since
17705           the proper styles to avoid background drawing are set, also doesn't
17706           match MS signature
17707         * QueryAccessibilityHelpEventArgs.cs: Added ComVisible attribute
17708         * QueryContinueDragEventArgs.cs: Added ComVisible attribute
17709         * ScrollEventArgs.cs: Added ComVisible attribute
17710         * SplitterEventArgs.cs: Added ComVisible attribute
17711         * AccessibleSelection.cs: Added Flags attribute
17712         * Appearance.cs: Added ComVisible attribute
17713         * Border3DSide.cs: Added ComVisible attribute
17714         * Border3DStyle.cs: Added ComVisible attribute
17715         * BorderStyle.cs: Added ComVisible attribute
17716         * DragAction.cs: Added ComVisible attribute
17717         * ErrorBlinkStyle.cs: Added
17718         * ScrollEventType.cs: Added ComVisible attribute
17719         * AnchorStyles.cs: Added Editor attribute
17720         * DockStyle.cs: Added Editor attribute
17721         * HorizontalAlignment.cs: Added ComVisible attribute
17722         * HelpEventArgs.cs: Added ComVisible attribute
17723         * PaintEventArgs.cs: Added IDisposable
17725 2005-01-04  Peter Bartok <pbartok@novell.com>
17727         * TextControl.cs: Switched Line, LineTag and Document classes to
17728           internal
17730 2005-01-04  Jordi Mas i Hernandez <jordi@ximian.com>
17732         * ComboBox.cs, ThemeWin32Classic.cs, ListBox.cs, Theme.cs:
17733         Simple mode, fixes, IntegralHeight, etc.
17735 2005-01-04  Peter Bartok <pbartok@novell.com>
17737         * TextBoxBase.cs: Using proper font variable now
17739 2005-01-04  Peter Bartok <pbartok@novell.com>
17741         * Form.cs (ShowDialog): Set parent to owner, if provided
17742         * GroupBox.cs: Removed unused vars
17743         * TextControl.cs:
17744           - Added GetHashCode() for Document and LineTag classes
17745           - Removed unused variables
17746           - Added CharIndexToLineTag() and LineTagToCharIndex() methods
17747             to allow translation between continuous char position and line/pos
17748         * CheckBox.cs: Removed vars that are provided by base class
17749         * RadioButton.cs: Removed vars that are provided by base class, added
17750           new keyword where required
17751         * LinkLabel.cs: Added new keyword where required
17752         * Control.cs (WndProc): Removed unused variable
17753         * TextBoxBase.cs:
17754           - Finished SelectionLength property
17755           - Implemented SelectionStart property
17756           - Implemented Text property
17757           - Removed unused vars
17758         * MessageBox.cs: Added new keyword where required
17759         * TextBox.cs: Removed Text property code (now in TextBoxBase), fixed
17760           WndProc signature
17761         * MenuAPI.cs: Added new keyword where required
17762         * ButtonBase.cs: Removed vars that are provided by base class, added
17763           new keyword where required
17764         * ThemeWin32Classic.cs (DrawMonthCalendarDate): Now cast Math.Floor
17765           argument to double, to allow compiling with csc 2.0 (Atsushi ran
17766           into this)
17767         * Application.cs (Run): Now triggers the ThreadExit event
17768         * CommonDialog.cs: Added new keyword where required; now properly sets
17769           parent (owner) for dialog
17770         * XplatUIX11.cs: Commented out unused vars
17771         * StatusBar.cs: Fixed signature for Text property
17772         * TabPage.cs: Undid Jordi's removal of unused var, now using the var
17774 2005-01-04  Jordi Mas i Hernandez <jordi@ximian.com>
17776         * ComboBox.cs, TabPage.cs, MenuAPI.cs, ThemeWin32Classic.cs,
17777         TrackBar.cs, MonthCalendar.cs: remove unused vars
17779 2005-01-03  Jackson Harper  <jackson@ximian.com>
17781         * ThemeWin32Classic.cs:
17782         * X11Keyboard.cs: Remove unused vars.
17784 2005-01-03  Peter Bartok  <pbartok@novell.com>
17786         * TextBox.cs:
17787           - set_Text: Tied into TextControl
17788           - set_TextAlignment: Tied into TextControl
17789         * TextControl.cs:
17790           - Added alignment properties and implemented alignment handling
17791             and drawing (still has a bug, not generating proper expose events)
17792           - Added new Line() constructor to allow passing the line alignment
17793           - Fixed selection setting, properly handling end<start now
17794           - Added aligment considerations to RecalculateDocument()
17795         * TextBoxBase.cs:
17796           - Now properly enforces control height for single line controls
17797           - Added support for CharacterCasing
17798           - Added IsInputKey override
17799           - Fixed Keys.Enter logic
17800           - Added SetBoundsCore override
17801           - Fixed mouse selection handling
17803 2005-01-03  Jackson Harper  <jackson@ximian.com>
17805         * TreeView.cs:
17806           - Collapse and uncheck all nodes when CheckBoxes is disabled.
17807           - Checkboxes are always aligned to the bottom of the node,
17808           regardless of item height.
17809           - Use the node bounds to draw the text so we can center it when
17810           the item height is greater then the font height.
17811           - Node::Bounds are only the text part of the node.
17812         * TreeNode.cs: New method to combine collapsing and unchecking all
17813           nodes recursively.
17815 2005-01-02  Jackson Harper  <jackson@ximian.com>
17817         * TreeView.cs: Draw checkmarks, handle detecting check mark clicks
17818         * TreeNode.cs: Add a bounding box for the checkbox, refresh the
17819         tree when a check is changed. TODO: Only refresh the checked node.
17821 2004-12-30  Jackson Harper  <jackson@ximian.com>
17823         * TreeView.cs: Draw checkbox boxes when checkboxes are enabled.
17824         * TreeNode.cs: When collapsing make sure to never collapse the
17825         root node.
17827 2004-12-29  Jackson Harper  <jackson@ximian.com>
17829         * TreeView.cs: Align lines to the bottom of plus minus boxes properly.
17830         
17831 2004-12-28  Zoltan Varga  <vargaz@freemail.hu>
17833         * X11Structs.cs X11Keyboard.cs XplatUIX11.cs: Fix 64 bit issues.
17835 2004-12-28  Peter Bartok  <pbartok@novell.com>
17837         * MessageBox.cs (get_CreateParams): Don't use owner var if it's
17838           not yet assigned
17840 2004-12-28  Peter Bartok  <pbartok@novell.com>
17842         * Control.cs (WndProc): Added WM_HELP handler, now generates
17843           HelpRequested event
17844         * Form.cs: Added HelpButton property and required support code
17845         * XplatUIStructs.cs: Added HELPINFO structure for WM_HELP handling
17847 2004-12-28  Peter Bartok  <pbartok@novell.com>
17849         * CommonDialog.cs:
17850           - Made DialogForm.owner variable internal
17851           - Added check to ensure owner form is set before setting
17852             owner properties in CreateParams
17854 2004-12-28  Geoff Norton  <gnorton@customerdna.com>
17856         * XplatUIOSX.cs: Implement mouse hovering.  Fix QDPoint struct to avoid
17857           swizzling.  Implement ClientToScreen and ScreenToClient.  Implement
17858           GetCursorPos.  Fix major visibility issues.  Rework the windowing
17859           system to support borderless/titleless windows (implements menus).
17860           Fix GetWindowPos.  Implement initial background color support for
17861           views.
17863 2004-12-28  Peter Bartok  <pbartok@novell.com>
17865         * Form.cs (get_CreateParams): Make sure we have an owner before using
17866           the owner variable. Implement proper default if no owner exists
17868 2004-12-28  Peter Bartok  <pbartok@novell.com>
17870         * In preparation for making Managed.Windows.Forms the default build target
17871           for System.Windows.Forms, the following stubbed files were added.
17872           Dialogs are currently being implemented by contributors and are only
17873           short-term place holders.
17874         * ColorDialog.cs: Initial check-in (minmal stub)
17875         * DataGrid.cs: Initial check-in (minimal stub)
17876         * DataGridLineStyle.cs: Initial check-in (minimal stub)
17877         * DataGridParentRowsLabelStyle.cs: Initial check-in (minimal stub)
17878         * DataGridTableStyle.cs: Initial check-in (minimal stub)
17879         * FontDialog.cs: Initial check-in (minimal stub)
17880         * FileDialog.cs: Initial check-in (minimal stub)
17881         * GridColumnStylesCollection.cs: Initial check-in (minimal stub)
17882         * GridTableStylesCollection.cs: Initial check-in (minimal stub)
17883         * OpenFileDialog: Initial check-in (minimal stub)
17884         * IComponentEditorPageSite.cs: Initial check-in
17885         * Splitter.cs: Initial check-in (for Jackson)
17886         * SplitterEventArgs.cs: Initial check-in (for Jackson)
17887         * SplitterEventHandler.cs: Initial check-in (for Jackson)
17888         * TextBox.cs: Initial check-in; still needs some wiring to
17889           TextControl backend
17890         * Form.cs: Implemented ControlBox property
17891         * MessageBox.cs: Added proper coding for Minimize/Maximize/ControlBox
17892         * CommonDialog.cs: Added proper coding for Minimize/Maximize/ControlBox
17893         * TextControl.cs: Added selection functionality; added todo header
17894         * TextBoxBase.cs:
17895           - Implemented Lines property
17896           - Implemented TextHeight property
17897           - Implemented SelectedText property
17898           - Implemented SelectionLength property
17899           - Implemented SelectAll method
17900           - Implemented ToString method
17901           - Removed and cleaned up some debug code
17902           - Implemented (still buggy) mouse text selection
17904 2004-12-27  Jordi Mas i Hernandez <jordi@ximian.com>
17906         * ComboBox.cs: Complete DropDownList implementation, fixes.
17908 2004-12-26  Jordi Mas i Hernandez <jordi@ximian.com>
17910         * ThemeWin32Classic, Theme.cs: ComboBox drawing methods
17911         * ComboBoxStyle.cs: ComboBoxStyle enum
17912         * ComboBox.cs: Initial work on ComboBox control
17914 2004-12-21  Peter Bartok  <pbartok@novell.com>
17916         * Control.cs (ctor, CreateParams): Moved setting of is_visible
17917           forward so that anything that creates a window gets the default,
17918           also no longer uses Visible property in CreateParams to avoid
17919           walking up the parent chain and possibly get the wrong visible
17920           status. Fixed IsVisible to no longer walk up to the parent.
17922 2004-12-21  Peter Bartok  <pbartok@novell.com>
17924         * Form.cs (ShowDialog): Unset modality for the proper window
17926 2004-12-20  Peter Bartok  <pbartok@novell.com>
17928         * CommonDialog.cs: Initial check-in
17930 2004-12-20  Peter Bartok  <pbartok@novell.com>
17932         * Control.cs (Visible): Now uses the parent window instead of the
17933           client area window for the property
17935         * Form.cs
17936           - ShowDialog(): Now uses the proper window for modality
17937           - The default visibility state for the form parent is now false. This
17938             will prevent the user from seeing all the changes to the form and
17939             its controls before the application hits Application.Run()
17940           - Removed some stale commented out code
17942         * NativeWindow.cs:
17943           - Added FindWindow() method to have a method to check for existence
17944             of a window handle
17945           - Added ability to override default exception handling (for example
17946             when debugging with VS.Net; to do this the ExternalExceptionHandler
17947             define must be set
17948           - Removed some useless debug output
17950         * XplatUIX11.cs:
17951           - Removed r37929 (SetModal patch from Ashwin Bharambe), was
17952             not working as expected
17953           - Implemented modal_window stack and checking for _WM_ACTIVE_WINDOW
17954             property to allow switching back to the modal window if focus is
17955             given to another one of our windows (Application Modal)
17956           - Now only sets override_redirect if we create a window
17957             without WS_CAPTION
17958           - Moved EventMask selection before mapping of newly created window
17959             so we can catch the map event as well
17960           - Implemented Activate() method via the _WM_ACTIVE_WINDOW property
17961           - Added various Atom related DllImports
17962           - Implemented Exit() method
17963           - .ctor() : No longer shows window if WS_VISIBLE is not defined
17964             in the CreateParams
17966         * MessageBox.cs: Now properly deals with the FormParent window by
17967           providing an override the FormParent CreateParams property to
17968           set as POPUP instead of OVERLAPPED window.
17970 2004-12-19  Geoff Norton  <gnorton@customerdna.com>
17972         * XplatUIOSX.cs: Implement DestroyWindow.  Implement ScrollWindow
17973         Minor code cleanup.
17975 2004-12-19  Geoff Norton  <gnorton@customerdna.com>
17976         
17977         * XplatUIOSX.cs (SetModal): Implement this method on OSX.
17979 2004-12-18  Peter Bartok  <pbartok@novell.com>
17981         * XplatUIX11.cs (SetModal): Applied patch from Ashwin Bharambe,
17982           implementing SetModal() method
17984 2004-12-18  Peter Bartok  <pbartok@novell.com>
17986         * X11Structs.cs (XGCValues): Fixed type of function element
17987         * XplatUI.cs: Added ScrollWindow() method
17988         * XplatUIDriver.cs: Added ScrollWindow() abstract
17989         * XplatUIWin32.cs: Implemented ScrollWindow() method
17990         * XplatUIX11.cs: Implemented ScrollWindow() method
17991         * XplatUIOSX.cs: Stubbed out ScrollWindow() method
17993 2004-12-17  Geoff Norton  <gnorton@customerdna.com>
17995         * XplatUIOSX.cs:  Fix cursor to use an Invert instead of drawing it
17996         Some more keyboard support (INCOMPLETE)
17998 2004-12-17  Peter Bartok  <pbartok@novell.com>
18000         * TextControl.cs:
18001         - Added color attribute to line tags.
18002         - Added color argument to all functions dealing with tags
18003         - Added color argument support to various functions
18004         - Fixed miss-calculation of baseline/shift in certain circumstances
18006         * TextBoxBase.cs: Added new color option to test code
18008 2004-12-17  Jackson Harper  <jackson@ximian.com>
18010         * TreeNode.cs:
18011         * MonthCalendar.cs: Signature fixes
18013 2004-12-17  Geoff Norton  <gnorton@customerdna.com>
18015         * XplatUIOSX.cs: Find the missing caret; caret was dissappearing after a
18016         keyboard event moved it.  Create a new graphics context for each paint resolves this
18018 2004-12-17  Geoff Norton  <gnorton@customerdna.com>
18020         * XplatUIOSX.cs: Fix hard cpu eat on loop with existing timers,
18021         Make caret exist and go blink blink.  Initial keyboard support.
18022         Fix exception handler, Add Invalidate support.  Change way RefreshWindow
18023         works.
18025 2004-12-17  Jackson Harper  <jackson@ximian.com>
18027         * XplatUIStructs.cs: Updated set of virtual keycodes.
18028         * KeyboardLayouts.cs: SCROLL_LOCK is now SCROLL
18030 2004-12-17  Jackson Harper  <jackson@ximian.com>
18032         * XplatUIX11.cs: Prune old keyboard code.
18034 2004-12-17  Jackson Harper  <jackson@ximian.com>
18036         * XplatUIX11.cs: When generating mouse wparams get the modifier
18037         keys from the ModifierKeys property.
18039 2004-12-17  Jackson Harper  <jackson@ximian.com>
18041         * X11Keyboard.cs: Send up/down input when generating
18042         messages. Remove some unused vars.
18044 2004-12-17  Jackson Harper  <jackson@ximian.com>
18046         * TabControl.cs:
18047         * TreeView.cs: get rid of warnings.
18049 2004-12-17  Jackson Harper  <jackson@ximian.com>
18051         * XplatUIStructs.cs: Fix a couple wrong virtual keycodes.
18053 2004-12-17  Jordi Mas i Hernandez <jordi@ximian.com>
18055         * ListBox.cs: bug fixes, changes for CheckedListBox.cs
18056           CheckedListBox.cs: Implementation
18058 2004-12-17  Peter Bartok  <pbartok@novell.com>
18060         * TextControl.cs (RecalculateLine): Fixed baseline aligning calcs
18062 2004-12-16  Peter Bartok  <pbartok@novell.com>
18064         * TextControl.cs:
18065           - InsertCharAtCaret(): Fixed start pos fixup
18066           - CaretLine_get: No longer derives the line from the tag, the tag
18067             could be stale if lines in the document have been added or deleted
18068           - RebalanceAfterDelete(): Fixed bug in balancing code
18069           - RebalanceAfterAdd(): Fixed really stupid bug in balancing code
18070           - Line.Streamline(): Now can also elminate leading empty tags
18071           - DumpTree(): Added a few more tests and prevented exception on
18072             uninitialized data
18073           - Added Debug section for Combining lines
18074           - Delete(): Now copies all remaining properties of a line
18075           
18076         * TextBoxBase.cs:
18077           - Left mousebutton now sets the caret (and middle button still acts
18078             as formatting tester, which must go away soon)
18079           - Added Debug section for Deleting/Combining lines
18080           - Fixed calculations for UpdateView after Combining lines
18082 2004-12-16  Peter Bartok  <pbartok@novell.com>
18084         * TextControl.cs: Now properly aligns text on a baseline, using the
18085           new XplatUI.GetFontMetrics() method. Simplified several calculations
18086         * TextBoxBase.cs: Moved #endif to allow compiling if Debug is not
18087           defined
18089 2004-12-16  Peter Bartok  <pbartok@novell.com>
18091         * XplatUI.cs: Added GetFontMetrics() method
18092         * XplatUIDriver.cs: Added GetFontMetrics() abstract
18093         * XplatUIX11.cs: Implemented GetFontMetrics() method, now calls
18094           into libgdiplus, our private GetFontMetrics function
18095         * XplatUIOSX.cs: Implemented GetFontMetrics() method, same as X11
18096         * XplatUIWin32.cs: Implemented GetFontMetrics() method
18098 2004-12-16  Jackson Harper  <jackson@ximain.com>
18100         * XplatUIStruct.cs: Add enum for dead keys
18101         * X11Keyboard.cs: Map and unmap dead keys.
18103 2004-12-16  Jackson Harper  <jackson@ximian.com>
18105         * X11Keyboard.cs: Detect and use the num lock mask.
18107 2004-12-16  Peter Bartok  <pbartok@novell.com>
18109         * Control.cs (CreateGraphics): Added check to make sure the
18110           handle of the window exists before calling Graphics.FromHwnd()
18112 2004-12-16  Peter Bartok  <pbartok@novell.com>
18114         * TextBoxBase.cs: Initial check-in. DO NOT TRY TO USE THIS YET. It
18115           contains a lot of code that's not supposed to be there for the
18116           real thing, but required for developing/testing the textbox
18117           backend.
18119 2004-12-16  Peter Bartok  <pbartok@novell.com>
18121         * TextControl.cs:
18122         - Fixed Streamline method
18123         - Added FindTag method to Line
18124         - Added DumpTree method for debugging
18125         - Added DecrementLines() method for deleting lines
18126         - Fixed UpdateView to update the cursor to end-of-line on single-line
18127           updates
18128         - Added PositionCaret() method
18129         - Fixed MoveCaret(LineDown) to move into the last line, too
18130         - Added InsertChar overload
18131         - Fixed InsertChar tag offset calculations
18132         - Added DeleteChar() method
18133         - Added Combine() method for folding lines
18134         - Fixed Delete() method, no longer allocates wasted Line object and
18135           now copies all properties when swapping nodes
18136         - Delete() method now updates document line counter
18138 2004-12-15  Jackson Harper  <jackson@ximian.com>
18140         * XplatUIX11.cs: Get the modifier keys from the keyboard driver
18141         * X11Keyboard.cs: Expose the currently selected modifier keys
18142         through a property.
18144 2004-12-15  Peter Bartok  <pbartok@novell.com>
18146         * TextControl.cs: Initial check-in. Still incomplete
18148 2004-12-15  Jackson Harper  <jackson@ximian.com>
18150         * TreeNode.cs:
18151         * TreeView.cs: Fix build on csc (second time today ;-))
18153 2004-12-15  Jackson Harper  <jackson@ximian.com>
18155         * TreeView.cs: Store the treenodes plus/minus box bounds when it
18156         is calculated and use this for click testing.
18157         * TreeNode.cs: Add functionality to store the nodes plus minus box bounds.
18159 2004-12-15  Jackson Harper  <jackson@ximian.com>
18161         * TreeView.cs: Pass the nodes image index to the image list when
18162         drawing that image.
18164 2004-12-15  Jackson Harper  <jackson@ximian.com>
18166         * X11Keyboard.cs: Set messages hwnd.
18167         * XplatUIX11.cs: Pass proper hwnd wot keyboard driver. Set hwnd on
18168         post_message calls.
18170 2004-12-15  Jackson Harper  <jackson@ximian.com>
18172         * X11Keyboard.cs: Fix to compile with csc.
18173         
18174 2004-12-15  Jackson Harper  <jackson@ximian.com>
18176         * X11Structs.cs: Add key mask values
18177         * XplatUIStruct.cs: Add keyboard event flags, and keyboard definitions
18178         * X11Keyboard.cs: New file - Extrapolates and interpolates key
18179         down/up foo into WM_CHAR foo
18180         * KeyboardLayouts.cs: Common keyboard layouts
18181         * XplatUIX11.cs: Add the keyboard driver. Add functionality to
18182         post messages into the main queue.
18184 2004-12-13  Jordi Mas i Hernandez <jordi@ximian.com>
18186         * Button.cs: implement ProcessMnemonic
18187         * ThemeWin32Classic.cs: use ResPool (caching) instead of creating
18188           brushes everytime
18189         * Control.cs: fixes IsMnemonic (support for &&, case insensitive, etc)
18190         * ButtonBase.cs: Show HotkeyPrefix (not the &)
18192 2004-12-12  John BouAntoun  <jba-mon@optusnet.com.au>
18193         
18194         * MonthCalendar.cs: Implemented click-hold for next/previous month
18195           and date selection
18196           
18197 2004-12-11  Peter Bartok  <pbartok@novell.com>
18199         * X11Structs.cs:
18200           - Added XKeyboardState (moved from XplatUIX11.cs)
18201           - Added XCreateGC related enums and structures
18202           - Added GXFunction for XSetFunction
18204         * XplatUIStructs.cs: Added missing WS_EX_xxx definitions
18206         * XplatUI.cs: Added CreateCaret(), DestroyCaret(), SetCaretPos() and
18207           CaretVisible() calls
18209         * ToolTip.cs: Added code to prevent stealing focus from app windows
18211         * XplatUIDriver.cs: Added abstracts for caret functions (CreateCaret,
18212           DestroyCaret, SetCaretPos and CaretVisible)
18214         * XplatUIX11.cs:
18215           - Added implementation for caret functions
18216           - Moved hover variables into a struct, to make it a bit easier
18217             on the eyes and to debug
18218           - Removed XKeyboardState (moved to XplatUIX11.cs)
18219           - Moved Keyboard properties into the properties region
18221         * Control.cs (get_Region): Control.CreateGraphics is the appropriate
18222           call to get a graphics context for our control
18224         * XplatUIOSX.cs: Added empty overrides for the new caret functions
18226         * TreeView.cs: Fixed bug. No matter what color was set it would always
18227           return SystemColors.Window
18229         * XplatUIWin32.cs: Implemented caret overrides
18231 2004-12-10  Jordi Mas i Hernandez <jordi@ximian.com>
18233         * ListBox.cs: fire events, implement missing methods and properties,
18234         sorting.
18236 2004-12-10  John BouAntoun <jba-mono@optusnet.com.au>
18238         * MonthCalendar.cs: invalidation bug fixing
18239         * ThemeWin32Classic.cs: paint fixing
18241 2004-12-09  Geoff Norton  <gnorton@customerdna.com>
18243         * XplatUIOSX.cs: Refactor to pass the real hwnd into Graphics.FromHwnd, we
18244         prepare the CGContextRef there now.
18246 2004-12-09  John BouAntoun <jba-mono@optusnet.com.au>
18248         * MonthCalendar.cs:
18249           - optimisationL only invalidate areas that have changed
18250         * ThemeWin32Classic.cs:
18251           - only paint parts that intersect with clip_area
18253 2004-12-09  Peter Bartok  <pbartok@novell.com>
18255         * Application.cs: Undid changes from r37004 which cause problems
18256         on X11
18258 2004-12-09  Ravindra  <rkumar@novell.com>
18260         * ToolBar.cs: Added support for displaying ContextMenu
18261         attached to a button on ToolBar.
18262         * ToolBarButton.cs: Uncomment/fixed the DropDownMenu
18263         property.
18265 2004-12-09  Jordi Mas i Hernandez <jordi@ximian.com>
18267         * Label.cs: autosize works in text change and removes unnecessary
18268         invalidate
18270 2004-12-09  Jordi Mas i Hernandez <jordi@ximian.com>
18272         * ThemeWin32Classic.cs, XplatUIOSX.cs, XplatUIWin32.cs:
18273         remove warnings
18275 2004-12-08  Geoff Norton  <gnorton@customerdna.com>
18277         * XplatUIOSX.cs: Added mouse move/click/grab support
18278         Remove some debugging WriteLines not needed anymore.
18279         Add window resizing/positioning.
18280         Fix visibility on reparenting.
18282 2004-12-08  Peter Bartok  <pbartok@novell.com>
18284         * XplatUIOSX.cs: Added Idle event, now compiles on VS.Net
18286 2004-12-07  Geoff Norton  <gnorton@customerdna.com>
18288         * XplatUIOSX.cs: Initial checkin
18289         * XplatUI.cs: Use the Quartz driver if the environment is set to use it
18291 2004-12-03  Ravindra <rkumar@novell.com>
18293         * ListView.cs: Added some keybindings and fixed scrolling.
18294         ScrollBars listen to ValueChanged event instead of Scroll
18295         Event. This would let us take care of all changes being
18296         done in the scrollbars' values programmatically or manually.
18297         * ListView.cs (CanMultiselect): Added a check for shift key.
18298         * ListView.cs (EnsureVisible): Fixed. Do proper scrolling.
18299         * ListViewItem.cs (Clone): Fixed. We need to make a copy
18300         of ListViewSubItemCollection as well.
18302 2004-12-06  Peter Bartok <pbartok@novell.com>
18304         * Control.cs (Parent): Added check and exception to prevent
18305         circular parenting
18307 2004-12-03  Jordi Mas i Hernandez <jordi@ximian.com>
18309         * ListBox.cs: implemented clipping, selection single and multiple,
18310         bug fixing
18312 2004-12-03  Ravindra <rkumar@novell.com>
18314         * ListView.cs (ListView_KeyDown):
18315         * ListView.cs (ListView_KeyUp): Fixed multiple selection handling
18316         when CTRL key is pressed.
18317         * ListViewItem.cs (Selected): Fixed setting the property.
18319 2004-12-03  Marek Safar  <marek.safar@seznam.cz>
18321         * Application.cs (OnThreadException): Use ThreadExceptionDialog.
18323         * Form.cs: Add ActiveForm, FormBorderStyle, MaximizeBox,
18324         MinimizeBox, ShowInTaskbar, TopMost properties.
18326         * ThreadExceptionDialog.cs: Implemented (disabled TextBox until
18327         will be implemented).
18329 2004-12-03  Marek Safar  <marek.safar@seznam.cz>
18331         * OwnerDrawPropertyBag.cs: New internal parameterless ctor.
18333         * TreeNode.cs: Implemented ICloneable, Fixed to pass my simple
18334         tests.
18335         
18336         * TreeNodeCollection.cs: Add exception throwing for Add,AddRange.
18337         
18338         * TreeView.cs: BackColor is Colors.Window.
18340 2004-12-01  Jackson Harper  <jackson@ximian.com>
18342         * TreeView.cs: When resizing the tree if the user is making it
18343         smaller we don't get expose events, so we need to handle adding
18344         the horizontal scrollbar in the size changed handler as well as
18345         the expose handler.
18347 2004-12-02  Jordi Mas i Hernandez <jordi@ximian.com>
18349         * DrawItemState.cs: fixes wrong enum values
18351 2004-12-01  Jackson Harper  <jackson@ximian.com>
18353         * TreeView.cs: Resize the hbar as well as the vbar on resize.
18355 2004-12-01  Jackson Harper  <jackson@ximian.com>
18357         * NodeLabelEditEventArgs.cs:
18358         * NodeLabelEditEventHandler.cs:
18359         * OpenTreeNodeEnumerator.cs:
18360         * TreeNode.cs:
18361         * TreeNodeCollection.cs:
18362         * TreeView.cs:
18363         * TreeViewAction.cs:
18364         * TreeViewCancelEventArgs.cs:
18365         * TreeViewCancelEventHandler.cs:
18366         * TreeViewEventArgs.cs:
18367         * TreeViewEventHandler.cs: Initial implementation.
18369 2004-12-01  Ravindra <rkumar@novell.com>
18371         * ListView.cs (CalculateListView): Fixed scrolling related
18372         calculations. Also, removed some debug statements from other
18373         places.
18374         * ListViewItem.cs: Changed access to 'selected' instance variable
18375         from private to internal.
18376         * ThemeWin32Classic.cs (DrawListViewItem): Fixed SubItem drawing.
18378 2004-12-01  Jordi Mas i Hernandez <jordi@ximian.com>
18380         * ThemeWin32Classic.cs: remove cache of brush and pens for
18381         specific controls and use the global system, fixes scrollbutton
18382         bugs (for small sizes, disabled, etc)
18383         
18384         * ScrollBar.cs: does not show the thumb for very small controls
18385         (as MS) and allow smaller buttons that the regular size
18387 2004-12-01  Miguel de Icaza  <miguel@ximian.com>
18389         * UpDownBase.cs: Add abstract methods for the interface.
18390         Add new virtual methods (need to be hooked up to TextEntry when it
18391         exists).
18392         Add override methods for most features.
18393         Computes the size, forces the height of the text entry.
18395         * NumericUpDown.cs: Put here the current testing code.
18397         * Set eol-style property on all files that do not have mixed line
18398         endings, to minimize the future problems.  There are still a few
18399         files with mixed endings, and someone should choose whether they
18400         want to move it or not.
18402 2004-11-30  Jordi Mas i Hernandez <jordi@ximian.com>
18404         * MonthCalendar.cs, ListView.cs: use Theme colours instead of
18405         System.Colors
18406         
18407 2004-11-30  Ravindra <rkumar@novell.com>
18409         * ThemeWin32Classic.cs (DrawListViewItem): Fixed selected item
18410         drawing and replaced use of SystemColors by theme colors.
18411         * ListView.cs (ListView_Paint): Fixed painting done during scrolling.
18412         * ListView.cs (ListViewItemCollection.Add): Throw exception when
18413         same ListViewItem is being added more than once.
18415 2004-11-30  John BouAntoun <jba-mono@optusnet.com.au>
18417         * MonthCalendar.cs:
18418           - ControlStyles love to make the control not flicker
18419           
18420 2004-11-30  Peter Bartok  <pbartok@novell.com>
18422         * CharacterCasing.cs: Added
18424 2004-11-29  Peter Bartok  <pbartok@novell.com>
18426         * TreeNode.cs, TreeNodeCollection.cs, TreeView.cs,
18427           TreeViewAction.cs, TreeViewEventArgs.cs: Removed new files.
18428           I am removing these files as they conflict with already completed
18429           work. While it is fantastic to get contributions to MWF, I
18430           respectfully ask that everyone please coordinate their contributions
18431           through mono-winforms-list or #mono-winforms at this time. We're
18432           explicitly avoiding stubbing and don't want controls that don't have
18433           their basic functionality implemented in svn. Please also see
18434           http://www.mono-project.com/contributing/winforms.html
18437 2004-11-29  Marek Safar  <marek.safar@seznam.cz>
18439         * Application.cs (ModalRun): Don't hang after exit.
18441         * Theme.cs: New TreeViewDefaultSize property.
18443         * ThemeWin32Classic.cs: Replaced hardcoded defaultWindowBackColor
18444         with less hardcoded SystemColors constant.
18445         Implemented TreeViewDefaultSize.
18447         * TreeNode.cs, TreeNodeCollection.cs, TreeView.cs,
18448         TreeViewAction.cs, TreeViewEventArgs.cs: New files.
18451 2004-11-29  John BouAntoun <jba-mono@optusnet.com.au>
18453         * MonthCalendar.cs:
18454           - Fix NextMonthDate and PrevMonthDate click moving calendar
18456 2004-11-26  John BouAntoun <jba-mono@optusnet.com.au>
18458         * MonthCalendar.cs:
18459           - Fix usage of ScrollChange Property when scrolling months
18461 2004-11-26  Jordi Mas i Hernandez <jordi@ximian.com>
18463         * Menu.cs, MainMenu.cs, MenuItem.cs, MenuAPI.cs
18464          - Fixes menu destroying
18465          - Support adding and removing items on already created menus
18467 2004-11-26  John BouAntoun <jba-mono@optusnet.com.au>
18469         * MonthCalendar.cs:
18470           - Re-worked all bolded dates handling to match win32
18471         * ThemeWin32Classic.cs:
18472           - Fixed rendering with bolded dates
18474 2004-11-25  Jordi Mas i Hernandez <jordi@ximian.com>
18476         * ListBox.cs, Theme.cs, ThemeWin32Classic.cs:
18477         - Horizontal scroolbar
18478         - Multicolumn
18479         - Fixes
18482 2004-11-25  John BouAntoun <jba-mono@optusnet.com.au>
18484         * MonthCalendar.cs:
18485           - Fix Usage of MaxSelectionCount from SelectionRange
18486           - Fixed Shift + Cursor Selection
18487           - Fixed Shift + (Pg up/Pg dn, Home/End) selection
18488           - Fixed normal cursor selection to be compat with win32
18489           - Fixed Shift + Mouse Click selection
18491 2004-11-24  Peter Bartok <pbartok@novell.com>
18493         * XplatUI.cs (DispatchMessage): Switched to return IntPtr
18494         * XplatUIDriver.cs (DispatchMessage): Switched to return IntPtr
18495         * XplatUIX11.cs:
18496           - CreatedKeyBoardMsg now updates keystate with Alt key
18497           - Added workaround for timer crash to CheckTimers, Jackson will
18498             develop a proper fix and check in later
18499           - Implemented DispatchMessage
18500           - Removed calling the native window proc from GetMessage (call
18501             now moved to DispatchMessage)
18503         * KeyEventArgs.cs (Constructor): Now combines modifierkeys into
18504           the keydata (Fixes bug #69831)
18506         * XplatUIWin32.cs:
18507           - (DispatchMessage): Switched to return IntPtr
18508           - Added DllImport for SetFocus
18510 2004-11-24  Ravindra <rkumar@novell.com>
18512         * ThemeWin32Classic.cs: Fixed ListView border and checkbox
18513         background drawing.
18514         * ListViewItem.cs: Fixed various properties, calculations
18515         and Clone() method. Fixed ListViewSubItemCollection.Clear() method.
18516         * ListView.cs: Fixed calculations, BackColor, ForeColor properties
18517         and some internal properties. Fixed MouseDown handler and Paint
18518         method.
18520 2004-11-24  John BouAntoun <jba-mono@optusnet.com.au>
18522         * MonthCalendar.cs: Add TitleMonth ContextMenu handling
18524 2004-11-24  John BouAntoun <jba-mono@optusnet.com.au>
18526         * ContainerControl.cs: correct accidental check in of local changes
18528 2004-11-24  John BouAntoun <jba-mono@optusnet.com.au>
18530         * ThemeWin32Classic.cs:
18531                 - Fixed Drawing Last month in grid (sometimes not showing)
18532         * MonthCalendar.cs:
18533                 - Fixed title width calculation bug (makeing title small)
18535 2004-11-23  Peter Bartok <pbartok@novell.com>
18537         * XplatUIX11.cs:
18538           - Added generation of WM_MOUSEHOVER event
18539           - Added missing assignment of async_method atom
18540           - Fixed WM_ERASEBKGND; now only redraws the exposed area
18542 2004-11-23  John BouAntoun <jba-mono@optusnet.com.au>
18544         * ThemeWin32Classic.cs:
18545                 - Fixed Drawing of today circle when showtodaycircle not set
18546                 - fixed drawing of first and last month in the grid (gay dates)
18547         * MonthCalendar.cs:
18548                 - Fixed Drawing of today circle
18549                 - Fixed drawing of grady dates
18550                 - Fixed HitTest for today link when ShowToday set to false
18551                 - Fixed DefaultSize to obey ShowToday
18553 2004-11-23  John BouAntoun <jba-mono@optusnet.com.au>
18555         * ThemeWin32Classic.cs: Fixed DrawMonthCalendar and private support methods
18556         * System.Windows.Forms/Theme.cs
18557         * MonthCalendar.cs: added for MonthCalendar
18558         * SelectionRange.cs: added for MonthCalendar
18559         * Day.cs: added for MonthCalendar: added for MonthCalendar
18560         * DateRangeEventArgs.cs: added for MonthCalendar
18561         * DateRangeEventHandler.cs: added for MonthCalendar
18563 2004-11-22  Ravindra <rkumar@novell.com>
18565         * ThemeWin32Classic.cs: Fixed ListViewDrawing with 'UseItemStyleForSubItems'
18566         property.
18568 2004-11-22  Miguel de Icaza  <miguel@ximian.com>
18570         * UpDownBase.cs (InitTimer): Use prehistoric C# 1.0 notation for
18571         event handler.
18572         
18573         * NumericUpDown.cs: Added new implementation.
18574         * UpDownBase.cs: Added new implementation.
18576         * XplatUIWin32.cs (KeyboardSpeed, KeyboardDelay): added default
18577         implementations.
18578         
18579         * XplatUIX11.cs (KeyboardSpeed, KeyboardDelay): added default
18580         implementations.
18582         * XplatUIDriver.cs ((KeyboardSpeed, KeyboardDelay): added new
18583         methods.
18585 2004-11-21  Miguel de Icaza  <miguel@ximian.com>
18587         * Timer.cs  (Dispose): Should call the base dispose when
18588         overriding.
18590 2004-11-19  Jordi Mas i Hernandez <jordi@ximian.com>
18592         * ScrollBar.cs: updates thumb position when max, min or increment
18593         is changed
18595 2004-11-21  Ravindra <rkumar@novell.com>
18597         * ListView.cs: Implemented item selection, activation and
18598         column header style. Fixed properties to do a redraw, if
18599         required. Added support for MouseHover, DoubleClick, KeyDown
18600         and KeyUp event handling and some minor fixes.
18601         * ListViewItem.cs: Fixed constructor.
18602         * ThemeWin32Classic.cs: Improved drawing for ListView.
18604 2004-11-19  Jordi Mas i Hernandez <jordi@ximian.com>
18606         * ThemeWin32Classic.cs: initial listbox drawing code
18607         * DrawMode.cs: new enumerator
18608         * ListControl.cs: stubbed class
18609         * ListBox.cs: initial implementation
18610         * Theme.cs: new methods definitions
18611         * SelectionMode.cs: new enumerator
18613 2004-11-17  Peter Bartok  <pbartok@novell.com>
18615         * XplatUIWin32.cs: Added double-click events to the class style
18616         * Control.cs (WndProc):
18617           - Added handling of click-count to MouseDown/ MouseUp events.
18618           - Added handling of middle and right mouse buttons
18619           - Removed old debug code
18621 2004-11-17  Jackson Harper  <jackson@ximian.com>
18623         * XplatUIX11.cs: Use the new Mono.Unix namespace.
18625 2004-11-17  Ravindra <rkumar@novell.com>
18627         * ListView.cs: Added event handling for MouseMove/Up/Down.
18628         * ColumnHeader.cs: Added a read-only internal property 'Pressed'.
18629         * ThemeWin32Classic.cs: We need to clear the graphics context and
18630         draw column header in a proper state.
18633 2004-11-17  Jordi Mas i Hernandez <jordi@ximian.com>
18635         *  Menu.cs: fixes signature
18637 2004-11-16  Peter Bartok  <pbartok@novell.com>
18639         * XplatUIX11.cs (GetMessage): Implemented generation of
18640           double click mouse messages
18642 2004-11-12  Jordi Mas i Hernandez <jordi@ximian.com>
18644         *  Form.cs, MainMenu.cs, MenuAPI.cs: tracker should be for tracking session
18645         not by menu
18647 2004-11-11  Peter Bartok  <pbartok@novell.com>
18649         * HandleData.cs: Added Visible property
18650         * XplatUIX11.cs (IsVisible): Now uses Visible property from
18651           HandleData
18652         * XplatUIX11.cs: Removed old debug leftovers
18653         * XplatUIX11.cs (DefWndProc): Added WM_ERASEBKGND handler
18654         * Control.cs (WndProc): Removed old debug leftovers,
18655           streamlined handling of WM_WINDOWPOSCHANGED, removed un-
18656           needed WM_SIZE handling
18658 2004-11-11  Jackson Harper  <jackson@ximian.com>
18660         * OwnerDrawPropertyBag.cs:
18661         * TreeViewImageIndexConverter.cs: Initial implementation
18663 2004-11-10  Jackson Harper  <jackson@ximian.com>
18665         * ThemeWin32Classic.cs:
18666         * TabControl.cs: instead of moving tabs by the slider pos just
18667         start drawing at the tab that is offset by the slider. This way
18668         scrolling always moves by exactly one tab.
18670 2004-11-10  Jackson Harper  <jackson@ximian.com>
18672         * TabControl.cs: You can only scroll left when the slider has
18673         already ben moved right.
18674         
18675 2004-11-10  Jackson Harper  <jackson@ximian.com>
18677         * ThemeWin32Classic.cs: Do not draw the selected tab if its not in
18678         the clip area.
18679         
18680 2004-11-10  Jackson Harper  <jackson@ximian.com>
18682         * ThemeWin32Classic.cs: Don't bother drawing tabs outside of the
18683         clip area.
18684         
18685 2004-11-09  Jackson Harper  <jackson@ximian.com>
18687         * TabControl.cs (CalcXPos): New helper method so we can determine
18688         the proper place to start drawing vertical tabs.
18689         * ThemeWin32Classic.cs (DrawTab): Draw right aligned tabs.
18690         
18691 2004-11-09  Jackson Harper  <jackson@ximian.com>
18693         * TabControl.cs: Calculate sizing and rects for left aligned tabs.
18694         * ThemeWin32Classic.cs (GetTabControl*ScrollRect): Only handle Top
18695         and Bottom, left and right are illegal values for this and
18696         multiline is enabled when the alignment is set to left or right.
18697         (DrawTab): Each alignment block should draw the text itself now
18698         because Left requires special love. Also add rendering for Left
18699         aligned tabs.
18700         
18701 2004-11-09  Jordi Mas i Hernandez <jordi@ximian.com>
18703         *  Form.cs, MainMenu.cs, MenuAPI.cs: fixes menu navigation, fixes popups,
18704         does not destroy the windows, removes debugging messages
18706 2004-11-09  jba  <jba-mono@optusnet.com.au>
18708         * ThemeWin32Classic.cs
18709         (DrawButtonBase): Fix verticle text rect clipping in windows
18710         (DrawCheckBox): Fix CheckAlign.TopCenter and CheckAlign.BottomCenter
18711         rendering and incorrect text rect clipping
18712         (DrawRadioButton): Fix CheckAlign.TopCenter and CheckAlign.BottomCenter
18713         rendering and incorrect text rect clipping
18714         
18715 2004-11-08  Jackson Harper  <jackson@ximian.com>
18717         * ThemeWin32Classic.cs (DrawTabControl): Render tabs from top to
18718         bottom when they are bottom aligned so the bottoms of the tabs get
18719         displayed.
18720         * TabControl.cs (DropRow): Move rows up instead of down when the
18721         tab control is bottom aligned.
18723 2004-11-08 13:59  pbartok
18725         * XplatUIX11.cs:
18726           - Added handling for various window styles
18727           - Added handling for popup windows
18728           - Added SetTopmost handling
18730 2004-11-08 13:55  pbartok
18732         * XplatUIWin32.cs:
18733           - Added argument to SetTopmost method
18734           - Fixed broken ClientToScreen function
18736 2004-11-08 13:53  pbartok
18738         * XplatUIStructs.cs:
18739           - Added missing WS_EX styles
18741 2004-11-08 13:53  pbartok
18743         * XplatUI.cs, XplatUIDriver.cs:
18744           - Added argument to SetTopmost
18746 2004-11-08 13:52  pbartok
18748         * X11Structs.cs:
18749           - Added XSetWindowAttributes structure
18750           - Improved XWindowAttributes structure
18751           - Added SetWindowValuemask enum
18752           - Added window creation arguments enum
18753           - Added gravity enum
18754           - Added Motif hints structure
18755           - Added various Motif flags and enums
18756           - Added PropertyMode enum for property functions
18758 2004-11-08 13:50  pbartok
18760         * Form.cs:
18761           - Fixed arguments for updated SetTopmost method
18763 2004-11-08 13:49  pbartok
18765         * ToolTip.cs:
18766           - Fixed arguments for updated SetTopmost function
18767           - Fixed usage of PointToClient
18769 2004-11-08 13:44  pbartok
18771         * MenuAPI.cs:
18772           - Added Clipping of children and siblings
18774 2004-11-08 13:41  pbartok
18776         * MainMenu.cs:
18777           - Removed SetMenuBarWindow call. We do this in Form.cs
18779 2004-11-08 13:40  jackson
18781         * TabControl.cs, Theme.cs, ThemeWin32Classic.cs: Render the little
18782           scrolling jimmi in the correct location with bottom aligned tabs
18784 2004-11-08 13:36  pbartok
18786         * ContainerControl.cs:
18787           - Implemented BindingContext
18788           - Implemented ParentForm
18790 2004-11-08 12:46  jackson
18792         * TabControl.cs: Put bottom rendered tabs in the right location
18794 2004-11-08 07:15  jordi
18796         * ScrollBar.cs, ThemeWin32Classic.cs: fixes vertical scrollbar and
18797           removes dead code
18799 2004-11-05 17:30  jackson
18801         * TabControl.cs: When selected tabs are expanded make sure they
18802           don't go beyond the edges of the tab control
18804 2004-11-05 14:57  jackson
18806         * TabControl.cs: Reset show_slider so if the control is resized to
18807           a size where it is no longer needed it's not displayed anymore
18809 2004-11-05 13:16  jackson
18811         * TabControl.cs: Make tab pages non visible when added to the
18812           control
18814 2004-11-05 12:42  jackson
18816         * TabControl.cs: Implement SizeMode.FillToRight
18818 2004-11-05 12:16  jackson
18820         * Control.cs: Do not call CreateHandle if the handle is already
18821           created
18823 2004-11-05 11:46  jackson
18825         * TabControl.cs: Remove superflous call to CalcTabRows
18827 2004-11-05 09:07  jackson
18829         * XplatUIX11.cs: Update for Mono.Posix changes
18831 2004-11-05 07:00  ravindra
18833         * ListView.cs, ListViewItem.cs: Implemented some methods and fixed
18834           scrolling.
18836 2004-11-04 22:47  jba
18838         * ThemeWin32Classic.cs:
18839           - Fix Button rendering for FlatStyle = Flat or Popup
18840           - Fix RadioButton and CheckBox rendering when Appearance = Button
18841             (normal and flatstyle).
18842           - Correct outer rectangle color when drawing focus rectangle
18843           - Adjust button bounds to be 1 px smaller when focused
18844           - Make button not draw sunken 3d border when pushed (windows compat)
18845           - Fix CPDrawBorder3D to not make bottom right hand corner rounded
18846           - Offset the text in RadioButton and Checkbox when being rendered as
18847           a button.
18848           - Hover and Click behaviour for Colored FlatStyle.Flat and Popup
18849           radiobuttons
18850           - Fixed disabled rendering for colored flatstyle radiobuttons (both)
18851           - Fixed disabled text rendering for normally rendered radiobuttons
18853 2004-11-04 10:26  jackson
18855         * TabControl.cs: Recalculate tab rows when resizing
18857 2004-11-04 07:47  jordi
18859         * Form.cs, MainMenu.cs, Menu.cs, MenuAPI.cs, MenuItem.cs:
18860           collection completion, drawing issues, missing features
18862 2004-11-04 05:03  ravindra
18864         * ScrollBar.cs:
18865                 - We need to recalculate the Thumb area when
18866                 LargeChange/maximum/minimum values are changed.
18867           - We set the 'pos' in UpdatePos() method to minimum, if it's less
18868                 than minimum. This is required to handle the case if large_change is
18869                 more than max, and use LargeChange property instead of large_change
18870                 variable.
18871           - We return max+1 when large_change is more than max, like MS does.
18873 2004-11-04 04:29  ravindra
18875         * ColumnHeader.cs, ListView.cs, ListViewItem.cs:
18876                 - Changed default value signatures (prefixed all with ListView).
18877                 - Fixed/implemented layout LargeIcon, SmallIcon and List views for
18878                 ListView.
18879           - Fixed calculations for ListViewItem and implemented Clone()
18880           method.
18882 2004-11-04 04:26  ravindra
18884         * Theme.cs, ThemeWin32Classic.cs:
18885                 - Changed default ListView values signatures (prefixed all with
18886                 ListView).
18887           - Fixed default size values for VScrollBar and HScrollBar.
18888                 - Fixed DrawListViewItem method.
18890 2004-11-04 04:05  ravindra
18892         * ColumnHeaderStyle.cs: Typo. It should be Nonclickable.
18894 2004-11-04 04:04  ravindra
18896         * ImageList.cs: Implemented the missing overload for Draw method.
18898 2004-11-03 19:29  jackson
18900         * TabControl.cs: Handle dropping rows on selection properly
18902 2004-11-03 11:59  jackson
18904         * TabControl.cs: remove debug code
18906 2004-11-03 11:52  jackson
18908         * TabControl.cs, ThemeWin32Classic.cs: Initial implementation of
18909           the scrolly widgerywoo
18911 2004-11-02 13:52  jackson
18913         * TabControl.cs: Resize the tab pages and tabs when the tab control
18914           is resized
18916 2004-11-02 13:40  jackson
18918         * TabControl.cs, ThemeWin32Classic.cs: Move the row with the
18919           selected tab to the bottom
18921 2004-11-02 13:39  jackson
18923         * TabPage.cs: Store the tab pages row
18925 2004-11-02 12:33  jordi
18927         * MenuItem.cs: fixes handle creation
18929 2004-11-02 11:42  jackson
18931         * TabControl.cs: signature fix
18933 2004-11-02 08:56  jackson
18935         * TabControl.cs: Calculate whether the tab is on an edge properly.
18936           Remove top secret debugging code
18938 2004-11-01 19:57  jackson
18940         * TabControl.cs: Add click handling, and proper sizing
18942 2004-11-01 19:47  jackson
18944         * Theme.cs, ThemeWin32Classic.cs: New rendering and sizing code for
18945           tab controls
18947 2004-11-01 19:39  jackson
18949         * TabPage.cs: add internal property to store the bounds of a tab
18950           page
18952 2004-10-30 04:23  ravindra
18954         * Theme.cs, ThemeWin32Classic.cs: Drawing ListView and some default
18955           values.
18957 2004-10-30 04:21  ravindra
18959         * ListView.cs, ListViewItem.cs: Added support for scrolling and
18960           fixed calculations.
18962 2004-10-30 03:06  pbartok
18964         * XplatUIX11.cs:
18965           - Removed extension of DllImported libs
18967 2004-10-29 09:55  jordi
18969         * Form.cs, MainMenu.cs, Menu.cs, MenuAPI.cs, MenuItem.cs: Menu key
18970           navigation, itemcollection completion, menu fixes
18972 2004-10-27 22:58  pbartok
18974         * XplatUIX11.cs:
18975           - Now throws a nice error message when no X display could be opened
18977 2004-10-26 13:51  jordi
18979         * ListView.cs: removes warning
18981 2004-10-26 03:55  ravindra
18983         * ColumnHeader.cs, ListView.cs, ListViewItem.cs,
18984           ThemeWin32Classic.cs: Some formatting for my last checkins.
18986 2004-10-26 03:36  ravindra
18988         * ThemeWin32Classic.cs: Implemented DetailView drawing for ListView
18989           control and default values.
18991 2004-10-26 03:35  ravindra
18993         * Theme.cs: Added some default values for ListView control.
18995 2004-10-26 03:33  ravindra
18997         * ToolBar.cs: ToolBar should use the user specified button size, if
18998           there is any. Added a size_specified flag for the same.
19000 2004-10-26 03:33  ravindra
19002         * ColumnHeader.cs: Added some internal members and calculations for
19003           ColumnHeader.
19005 2004-10-26 03:32  ravindra
19007         * ListViewItem.cs: Calculations for ListViewItem.
19009 2004-10-26 03:31  ravindra
19011         * ListView.cs: Added some internal members and calculations for
19012           ListView.
19014 2004-10-22 13:31  jordi
19016         * MenuAPI.cs: speedup menus drawing
19018 2004-10-22 13:16  jackson
19020         * XplatUIX11.cs: Make sure to update exposed regions when adding an
19021           expose event
19023 2004-10-22 11:49  jackson
19025         * Control.cs: oops
19027 2004-10-22 11:41  jackson
19029         * Control.cs: Check to see if the window should have its background
19030           repainted by X when drawing.
19032 2004-10-22 11:31  jackson
19034         * XplatUIX11.cs: When invalidating areas only use XClearArea if
19035           clear is true, this way we do not get flicker from X repainting the
19036           background
19038 2004-10-22 11:28  jackson
19040         * XEventQueue.cs: Queue properly
19042 2004-10-21 09:38  jackson
19044         * XEventQueue.cs: Fix access modifier
19046 2004-10-21 09:36  jackson
19048         * XEventQueue.cs: Don't loose messages
19050 2004-10-21 09:22  jackson
19052         * XEventQueue.cs: Don't loose messages
19054 2004-10-20 04:15  jordi
19056         * BootMode.cs: enum need it by SystemInfo
19058 2004-10-19 21:58  pbartok
19060         * XplatUIWin32.cs:
19061           - Small sanity check
19063 2004-10-19 21:56  pbartok
19065         * Form.cs:
19066           - Added private FormParentWindow class which acts as the container
19067             for our form and as the non-client area where menus are drawn
19068           - Added/Moved required tie-ins to Jordi's menus
19069           - Fixed/Implemented the FormStartPosition functionality
19071 2004-10-19 21:52  pbartok
19073         * Control.cs:
19074           - Removed unneeded locals
19075           - Added code to all size and location properties to understand and
19076             deal with the parent container of Form
19078 2004-10-19 21:33  pbartok
19080         * Application.cs:
19081           - Fixed to deal with new Form subclasses for menus
19083 2004-10-19 17:48  jackson
19085         * XEventQueue.cs: commit correct version of file
19087 2004-10-19 16:50  jackson
19089         * XEventQueue.cs, XplatUIX11.cs: New optimized event queue
19091 2004-10-19 16:15  jordi
19093         * MenuAPI.cs: MenuBarCalcSize returns the height
19095 2004-10-19 08:31  pbartok
19097         * Control.cs:
19098           - Added missing call to PreProcessMessage before calling OnXXXKey
19099           methods
19101 2004-10-19 00:04  ravindra
19103         * ToolTip.cs: Fixed constructor.
19105 2004-10-18 09:31  jordi
19107         * MenuAPI.cs: menuitems in menubars do not have shortcuts
19109 2004-10-18 09:26  jordi
19111         * MenuItem.cs: fixes MenuItem class signature
19113 2004-10-18 08:56  jordi
19115         * MenuAPI.cs: prevents windows from showing in the taskbar
19117 2004-10-18 00:28  ravindra
19119         * ToolTip.cs: Suppressed a warning message.
19121 2004-10-18 00:27  ravindra
19123         * Control.cs: Default value of visible property must be true.
19125 2004-10-17 23:19  pbartok
19127         * ToolTip.cs:
19128           - Complete implementation
19130 2004-10-17 23:19  pbartok
19132         * XplatUIX11.cs:
19133           - Added EnableWindow method
19134           - Added SetModal stub
19135           - Added generation of WM_ACTIVATE message (still needs testing)
19136           - Added SetTopMost stub
19137           - Changes to deal with VirtualKeys being moved to XplatUIStructs.cs
19139 2004-10-17 23:17  pbartok
19141         * XplatUIWin32.cs:
19142           - Removed VirtualKeys to XplatUIStructs
19143           - Implemented SetTopMost method
19144           - Implemented EnableWindow method
19145           - Bugfix in ScreenToClient()
19146           - Bugfixes in ClientToScreen()
19148 2004-10-17 22:51  pbartok
19150         * XplatUIStructs.cs:
19151           - Added WS_EX styles to WindowStyles enumeration
19153 2004-10-17 22:50  pbartok
19155         * XplatUI.cs, XplatUIDriver.cs:
19156           - Added method for enabling/disabling windows
19157           - Added method for setting window modality
19158           - Added method for setting topmost window
19160 2004-10-17 22:49  pbartok
19162         * ThemeWin32Classic.cs:
19163           - Added ToolTip drawing code
19165 2004-10-17 22:49  pbartok
19167         * Theme.cs:
19168           - Added ToolTip abstracts
19170 2004-10-17 22:47  pbartok
19172         * Form.cs:
19173           - Fixed Form.ControlCollection to handle owner relations
19174           - Added Owner/OwnedForms handling
19175           - Implemented Z-Ordering for owned forms
19176           - Removed unneeded private overload of ShowDialog
19177           - Fixed ShowDialog, added the X11 incarnation of modal handling (or
19178             so I hope)
19179           - Fixed Close(), had wrong default
19180           - Added firing of OnLoad event
19181           - Added some commented out debug code for Ownership handling
19183 2004-10-17 22:16  pbartok
19185         * Control.cs:
19186           - Fixed/implemented flat list of controls
19188 2004-10-17 22:14  pbartok
19190         * Application.cs:
19191           - Added code to simulate modal dialogs on Win32
19193 2004-10-17 16:11  jordi
19195         * ScrollBar.cs: disabled scrollbar should not honor any keyboard or
19196           mouse event
19198 2004-10-17 13:39  jordi
19200         * MenuAPI.cs: menu drawing fixes
19202 2004-10-15 09:10  ravindra
19204         * StructFormat.cs: General Enum.
19206 2004-10-15 09:09  ravindra
19208         * SizeGripStyle.cs: Enum for Form.
19210 2004-10-15 09:08  ravindra
19212         * Theme.cs, ThemeWin32Classic.cs: Added ColumnHeaderHeight property
19213           in Theme for ListView.
19215 2004-10-15 09:06  ravindra
19217         * ColumnHeader.cs: Flushing some formatting changes.
19219 2004-10-15 09:05  ravindra
19221         * ListViewItem.cs: Implemented GetBounds method and fixed coding
19222           style.
19224 2004-10-15 09:03  ravindra
19226         * ListView.cs: Implemented Paint method and fixed coding style.
19228 2004-10-15 07:34  jordi
19230         * MenuAPI.cs: fix for X11
19232 2004-10-15 07:32  ravindra
19234         * ButtonBase.cs, CheckBox.cs, RadioButton.cs:
19235                 - Renamed Paint() method to Draw() for clarity. Also, moved
19236                 DrawImage() to OnPaint().
19238 2004-10-15 07:25  ravindra
19240         * CheckBox.cs, RadioButton.cs:
19241                 - Removed Redraw (), we get it from ButtonBase.
19242                 - Implemented Paint (), to do class specific painting.
19244 2004-10-15 07:16  ravindra
19246         * ButtonBase.cs:
19247                 - Redraw () is not virtual now.
19248                 - Added an internal virtual method Paint (), so that
19249                 derived classes can do their painting on their own.
19250                 - Modified OnPaint () to call Paint ().
19252 2004-10-15 06:43  jordi
19254         * ContextMenu.cs, DrawItemEventHandler.cs, Form.cs, MainMenu.cs,
19255           MenuAPI.cs, MenuItem.cs: menu work, mainmenu, subitems, etc
19257 2004-10-15 00:30  ravindra
19259         * MessageBox.cs:
19260                 - MessageBox on windows does not have min/max buttons.
19261                 This change in CreateParams fixes this on Windows. We
19262                 still need to implement this windowstyle behavior in
19263                 our X11 driver.
19265 2004-10-14 05:14  ravindra
19267         * ToolBar.cs:
19268                 - Changed Redraw () to do a Refresh () always.
19269                 - Fixed the MouseMove event handling when mouse is pressed,
19270                 ie drag event handling.
19271                 - Replaced the usage of ToolBarButton.Pressed property to
19272                 ToolBarButton.pressed internal variable.
19274 2004-10-14 05:10  ravindra
19276         * ToolBarButton.cs:
19277                 - Added an internal member 'inside' to handle mouse move
19278                 with mouse pressed ie mouse drag event.
19279                 - Changed 'Pressed' property to return true only when
19280                 'inside' and 'pressed' are both true.
19281                 - Some coding style love.
19283 2004-10-14 00:17  ravindra
19285         * Form.cs: Fixed class signature. ShowDialog (Control) is not a
19286           public method.
19288 2004-10-14 00:15  ravindra
19290         * ButtonBase.cs: Redraw () related improvements.
19292 2004-10-14 00:14  ravindra
19294         * MessageBox.cs: Moved InitFormSize () out of Paint method and
19295           removed unnecessary calls to Button.Show () method.
19297 2004-10-13 17:50  pbartok
19299         * XplatUIX11.cs:
19300           - Formatting fix
19301           - Removed destroying of window until we solve the problem of X
19302             destroying the window before us on shutdown
19304 2004-10-13 16:32  pbartok
19306         * ButtonBase.cs:
19307           - Now Redraws on MouseUp for FlatStyle Flat and Popup
19309 2004-10-13 14:18  pbartok
19311         * XplatUIX11.cs:
19312           - Added code to destroy the X window
19314 2004-10-13 14:18  pbartok
19316         * XplatUIWin32.cs:
19317           - Added code to destroy a window
19319 2004-10-13 14:12  pbartok
19321         * ButtonBase.cs:
19322           - Added the Redraw on Resize that got dropped in the last rev
19324 2004-10-13 09:06  pbartok
19326         * ThemeWin32Classic.cs:
19327           - Path from John BouAntoun:
19328             * Fix check rendering (centre correctly for normal style, offset
19329               correctly for FlatStyle).
19330             * Fix border color usage (use backcolor) for FlatStyle.Popup
19331             * Use checkbox.Capture instead of checkbox.is_pressed when
19332               rendering flatstyle states.
19334 2004-10-12 21:48  pbartok
19336         * ThemeWin32Classic.cs:
19337           - Removed all occurences of SystemColors and replaced them with the
19338             matching theme color
19340 2004-10-12 21:41  pbartok
19342         * ThemeWin32Classic.cs:
19343           - From John BouAntoun: Added an overload to CPDrawBorder3D to allow
19344             him using the function for flatstyle drawing
19345           - Changed functions to use the new version of CPDrawBorder3D
19347 2004-10-12 21:15  pbartok
19349         * ControlPaint.cs:
19350           - Fixed Dark(), DarkDark(), Light() and LightLight() methods to
19351             match MS documentation. They need to return defined colors if the
19352             passed color matches the configured control color. Thanks to John
19353             BouAntoun for pointing this out.
19355 2004-10-12 20:57  pbartok
19357         * Control.cs:
19358           - Fix from John BouAntoun: Raise ForeColorChanged event when text
19359             color is changed
19361 2004-10-12 20:46  pbartok
19363         * CheckBox.cs:
19364           - Fix from John BouAntoun: Now properly sets the Appearance property
19366 2004-10-12 20:45  pbartok
19368         * ThemeWin32Classic.cs:
19369           - Fixes from John BouAntoun: now handles forecolors and backcolors
19370             for flatstyle rendered controls much better; It also fixes normal
19371             checkbox rendering when pushed or disabled.
19373 2004-10-08 02:50  jordi
19375         * Form.cs, MainMenu.cs, Menu.cs, MenuAPI.cs, MenuItem.cs: more menu
19376           work
19378 2004-10-07 08:56  jordi
19380         * ThemeWin32Classic.cs: Removes deletion of cached brushes
19382 2004-10-06 03:59  jordi
19384         * Control.cs, StatusBar.cs, ThemeWin32Classic.cs, ToolBar.cs,
19385           XplatUIWin32.cs: removes warnings from compilation
19387 2004-10-05 12:23  jackson
19389         * RadioButton.cs: Fix ctor
19391 2004-10-05 11:10  pbartok
19393         * MessageBox.cs:
19394           - Partial implementation by Benjamin Dasnois
19396 2004-10-05 10:15  jackson
19398         * ThemeWin32Classic.cs: Improve rendering of the radio button patch
19399           by John BouAntoun
19401 2004-10-05 03:07  ravindra
19403         * ToolBar.cs:
19404                 - Removed a private method, Draw ().
19405                 - Fixed the ButtonDropDown event handling.
19406                 - Fixed MouseMove event handling.
19408 2004-10-05 03:04  ravindra
19410         * ThemeWin32Classic.cs:
19411                 - Added DrawListView method and ListViewDefaultSize property.
19412                 - Changed ControlPaint method calls to CPDrawXXX wherever possible.
19413                 - Changed DOS style CRLF to Unix format (dos2unix).
19415 2004-10-05 03:03  ravindra
19417         * Theme.cs:
19418                 - Added DrawListView method and ListViewDefaultSize property.
19420 2004-10-05 02:42  ravindra
19422         * ToolBarButton.cs: Added an internal member dd_pressed to handle
19423           clicks on DropDown arrow.
19425 2004-10-04 22:56  jackson
19427         * ButtonBase.cs, Label.cs, MenuAPI.cs, ProgressBar.cs,
19428           ScrollBar.cs, StatusBar.cs, ToolBar.cs, TrackBar.cs: Let the base
19429           Control handle the buffers, derived classes should not have to
19430           CreateBuffers themselves.
19432 2004-10-04 21:20  jackson
19434         * StatusBar.cs: The control handles resizing the buffers now.
19436 2004-10-04 21:18  jackson
19438         * Control.cs: When resizing the buffers should be invalidated. This
19439           should be handled in Control not in derived classes.
19441 2004-10-04 14:45  jackson
19443         * TabPage.cs: oops
19445 2004-10-04 02:14  pbartok
19447         * LeftRightAlignment.cs:
19448           - Initial check-in
19450 2004-10-04 01:09  jordi
19452         * ThemeWin32Classic.cs: fixes right button position causing right
19453           button not showing on horizontal scrollbars
19455 2004-10-02 13:12  pbartok
19457         * XplatUIX11.cs:
19458           - Simplified the Invalidate method by using an X call instead of
19459             generating the expose ourselves
19460           - Added an expose when the window background is changed
19461           - Implemented ClientToScreen method
19463 2004-10-02 13:08  pbartok
19465         * XplatUIWin32.cs:
19466           - Added Win32EnableWindow method (test for implementing modal
19467           dialogs)
19468           - Added ClientToScreen method and imports
19470 2004-10-02 13:07  pbartok
19472         * XplatUI.cs, XplatUIDriver.cs:
19473           - Added ClientToScreen coordinate translation method
19475 2004-10-02 13:06  pbartok
19477         * KeyPressEventArgs.cs:
19478           - Fixed access level for constructor
19480 2004-10-02 13:06  pbartok
19482         * NativeWindow.cs:
19483           - Changed access level for the window_collection hash table
19485 2004-10-02 13:05  pbartok
19487         * Form.cs:
19488           - Added KeyPreview property
19489           - Added Menu property (still incomplete, pending Jordi's menu work)
19490           - Implemented ProcessCmdKey
19491           - Implemented ProcessDialogKey
19492           - Implemented ProcessKeyPreview
19494 2004-10-02 13:02  pbartok
19496         * Control.cs:
19497           - Added private method to get the Control object from the window
19498           handle
19499           - Implemented ContextMenu property
19500           - Implemented PointToScreen
19501           - Implemented PreProcessMessage
19502           - Implemented IsInputChar
19503           - Implemented IsInputKey
19504           - Implemented ProcessCmdKey
19505           - Completed ProcessKeyEventArgs
19506           - Fixed message loop to call the proper chain of functions on key
19507           events
19508           - Implemented ProcessDialogChar
19509           - Implemented ProcessDialogKey
19510           - Implemented ProcessKeyMessage
19511           - Implemented ProcessKeyPreview
19512           - Added RaiseDragEvent stub (MS internal method)
19513           - Added RaiseKeyEvent stub (MS internal method)
19514           - Added RaiseMouseEvent stub (MS Internal method)
19515           - Added RaisePaintEvent stub (MS Internal method)
19516           - Added ResetMouseEventArgs stub (MS Internal method)
19517           - Implemented RtlTranslateAlignment
19518           - Implemented RtlTranslateContent
19519           - Implemented RtlTranslateHorizontal
19520           - Implemented RtlTranslateLeftRight
19521           - Added generation of KeyPress event
19523 2004-10-02 05:57  ravindra
19525         * ListViewItem.cs: Added attributes.
19527 2004-10-02 05:32  ravindra
19529         * ListView.cs: Added attributes.
19531 2004-10-01 11:53  jackson
19533         * Form.cs: Implement the Close method so work on MessageBox can
19534           continue.
19536 2004-09-30 14:06  pbartok
19538         * XplatUIX11.cs:
19539           - Bug fixes
19541 2004-09-30 11:34  jackson
19543         * RadioButton.cs: Fix typo. Patch by John BouAntoun.
19545 2004-09-30 07:26  ravindra
19547         * ListViewItemConverter.cs: Converter for ListViewItem.
19549 2004-09-30 07:26  ravindra
19551         * SortOrder.cs: Enum for ListView control.
19553 2004-09-30 07:25  ravindra
19555         * ColumnHeader.cs: Supporting class for ListView control.
19557 2004-09-30 07:24  ravindra
19559         * ListView.cs, ListViewItem.cs: Initial implementation.
19561 2004-09-30 07:20  ravindra
19563         * ItemActivation.cs: Enum for ListView Control.
19565 2004-09-29 20:29  pbartok
19567         * XplatUIX11.cs:
19568           - Added lookup of pixel value for background color; tries to get a
19569             color 'close' to the requested color, it avoids having to create a
19570             colormap.  Depending on the display this could mean the used color
19571             is slightly off the desired color. Might have to change it to a more
19572             resource intensive colormap approach, but it will work as a
19573           workaround to avoid red screens.
19575 2004-09-29 14:27  jackson
19577         * XplatUIX11.cs: Set the X DisplayHandle in System.Drawing
19579 2004-09-28 12:44  pbartok
19581         * ButtonBase.cs, CheckBox.cs, ControlPaint.cs, GroupBox.cs,
19582           HScrollBar.cs, Label.cs, LinkLabel.cs, Panel.cs, PictureBox.cs,
19583           ProgressBar.cs, RadioButton.cs, ScrollBar.cs, StatusBar.cs,
19584           Theme.cs, ThemeGtk.cs, ThemeWin32Classic.cs, ToolBar.cs,
19585           TrackBar.cs, VScrollBar.cs:
19586           - Streamlined Theme interfaces:
19587             * Each DrawXXX method for a control now is passed the object for
19588               the control to be drawn in order to allow accessing any state the
19589               theme might require
19591             * ControlPaint methods for the theme now have a CP prefix to avoid
19592               name clashes with the Draw methods for controls
19594             * Every control now retrieves it's DefaultSize from the current
19595             theme
19597 2004-09-28 12:17  jackson
19599         * Button.cs: Do not redraw OnClick MouseUp/Down will handle the
19600           drawing
19602 2004-09-24 14:57  jackson
19604         * XplatUIX11.cs: Don't lock/enqueue/dequeue for unhandled messages.
19605           Gives us a nice little performance boost.
19607 2004-09-24 12:02  jackson
19609         * TabAlignment.cs, TabAppearance.cs, TabControl.cs, TabDrawMode.cs,
19610           TabPage.cs, TabSizeMode.cs: Partial implementation of the Tab
19611           Control and supporting classes. Initial checkin
19613 2004-09-23 13:08  jackson
19615         * Form.cs: Temp build fixage
19617 2004-09-23 01:39  ravindra
19619         * ItemChangedEventArgs.cs, ItemChangedEventHandler.cs,
19620           ItemCheckEventArgs.cs, ItemCheckEventHandler.cs,
19621           ItemDragEventArgs.cs, ItemDragEventHandler.cs,
19622           LabelEditEventArgs.cs, LabelEditEventHandler.cs: EventArgs and
19623           EventHandlers needed by ListView Control.
19625 2004-09-22 14:12  pbartok
19627         * ScrollableControl.cs:
19628           - Implemented DockPadding property
19629           - Implemented AutoScroll property
19630           - Implemented AutoScrollMargin property
19631           - Implemented AutoScrollMinSize property
19632           - Implemented AutoScrollPosition property
19633           - Implemented DisplayRectangle property (still incomplete)
19634           - Implemented CreateParams property
19635           - Implemented HScroll property
19636           - Implemented VScroll property
19637           - Implemented OnVisibleChanged property
19639 2004-09-22 14:09  pbartok
19641         * Form.cs:
19642           - Added Form.ControllCollection class
19643           - Added handling for Form owners: Owner, OwnedForms, AddOwnedForm,
19644             RemoveOwnedForm (still incomplete, missing on-top and common
19645             minimize/maximize behaviour)
19646           - Added StartPosition property (still incomplete, does not use when
19647             creating the form)
19648           - Added ShowDialog() methods (still incomplete, missing forcing the
19649             dialog modal)
19651 2004-09-22 14:05  pbartok
19653         * Application.cs:
19654           - Added message loop for modal dialogs
19656 2004-09-22 14:02  pbartok
19658         * GroupBox.cs:
19659           - Fixed wrong types for events
19661 2004-09-22 14:00  pbartok
19663         * Shortcut.cs, FormWindowState.cs:
19664           - Fixed wrong values
19666 2004-09-22 12:01  jackson
19668         * Control.cs: Text is never null
19670 2004-09-20 22:14  pbartok
19672         * XplatUIWin32.cs:
19673           - Fixed accessibility level for Idle handler
19675 2004-09-20 18:54  jackson
19677         * Application.cs, XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs,
19678           XplatUIX11.cs: New message loop that uses poll so we don't get a
19679           busy loop
19681 2004-09-17 10:43  pbartok
19683         * ScrollBar.cs:
19684           - Fixed behaviour of arrow buttons. Now properly behaves like
19685             Buttons (and like Microsoft's scrollbar arrow buttons)
19687 2004-09-17 10:14  pbartok
19689         * ScrollBar.cs:
19690           - Added missing release of keyboard/mouse capture
19692 2004-09-17 06:18  jordi
19694         * ContextMenu.cs, MainMenu.cs, Menu.cs, MenuAPI.cs, MenuItem.cs,
19695           Theme.cs: Very early menu support
19697 2004-09-16 17:45  pbartok
19699         * XplatUIWin32.cs:
19700           - Fixed sending a window to the front
19701           - Added overload for SetWindowPos to avoid casting
19703 2004-09-16 17:44  pbartok
19705         * Control.cs:
19706           - Added SendToBack and BringToFront methods
19708 2004-09-16 07:00  ravindra
19710         * Copyright: Added Novell URL.
19712 2004-09-16 07:00  ravindra
19714         * ToolBar.cs: Invalidate should be done before redrawing.
19716 2004-09-15 21:19  ravindra
19718         * ColumnHeaderStyle.cs: Enum for ListView Control.
19720 2004-09-15 21:18  ravindra
19722         * ColumnClickEventArgs.cs, ColumnClickEventHandler.cs: Event for
19723           ListView Control.
19725 2004-09-13 18:26  jackson
19727         * Timer.cs, XplatUIX11.cs: Remove test code so timers are updated
19728           properly
19730 2004-09-13 18:13  jackson
19732         * Timer.cs, X11Structs.cs, XplatUIX11.cs: Timers are now handled in
19733           a second thread and post messages into the main threads message
19734           queue. This makes timing much more consistent. Both win2K and XP
19735           have a minimum timer value of 15 milliseconds, so we now do this
19736           too.
19738 2004-09-13 15:18  pbartok
19740         * X11Structs.cs, XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs,
19741           XplatUIX11.cs:
19742           - Added Z-Ordering methods
19744 2004-09-13 10:56  pbartok
19746         * Form.cs:
19747           - Fixed #region names
19748           - Moved properties and methods into their proper #regions
19750 2004-09-13 10:51  pbartok
19752         * Form.cs:
19753           - Added Accept and CancelButton properties
19754           - Added ProcessDialogKey() method
19756 2004-09-13 08:18  pbartok
19758         * IWindowTarget.cs:
19759           - Initial check-in
19761 2004-09-10 21:50  pbartok
19763         * Control.cs:
19764           - Added DoDragDrop() [incomplete]
19765           - Properly implemented 'Visible' handling
19766           - Added SetVisibleCore()
19767           - Implemented FindChildAtPoint()
19768           - Implemented GetContainerControl()
19769           - Implemented Hide()
19771 2004-09-10 19:28  pbartok
19773         * Control.cs:
19774           - Moved methods into their appropriate #regions
19775           - Reordered methods within regions alphabetically
19777 2004-09-10 18:57  pbartok
19779         * XplatUIX11.cs, XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs:
19780           - Added method to retrieve text from window
19782 2004-09-10 18:56  pbartok
19784         * Control.cs:
19785           - Moved some internal functions into the internal region
19786           - Implemented FontHeight
19787           - Implemented RenderRightToLeft
19788           - Implemented ResizeRedraw
19789           - Implemented ShowFocusCues
19790           - Implemented ShowKeyboardCues
19791           - Implemented FromChildHandle
19792           - Implemented FromHandle
19793           - Implemented IsMnemonic
19794           - Implemented ReflectMessage
19795           - All public and protected Static Methods are now complete
19797 2004-09-10 16:54  pbartok
19799         * Control.cs:
19800           - Implemented remaining missing public instance properties
19801           - Alphabetized some out of order properties
19803 2004-09-10 05:51  ravindra
19805         * PictureBox.cs: Added a check for null image.
19807 2004-09-10 00:59  jordi
19809         * GroupBox.cs: remove cvs tag
19811 2004-09-09 05:25  ravindra
19813         * ToolBar.cs: Make redraw accessible from ToolBarButton.
19815 2004-09-09 05:23  ravindra
19817         * ToolBarButton.cs: Changes in ToolBarButton need to make it's
19818           parent redraw.
19820 2004-09-09 02:28  pbartok
19822         * ThemeWin32Classic.cs:
19823           - Improve disabled string look
19825 2004-09-09 01:15  jordi
19827         * MeasureItemEventArgs.cs, MeasureItemEventHandler.cs: measureitem
19828           args and handler
19830 2004-09-08 23:56  ravindra
19832         * ItemBoundsPortion.cs: It's enum, not a class!
19834 2004-09-08 23:47  ravindra
19836         * FormBorderStyle.cs, FormStartPosition.cs, FormWindowState.cs:
19837           Enums for Form.
19839 2004-09-08 21:13  ravindra
19841         * ItemBoundsPortion.cs, ListViewAlignment.cs, View.cs: Enums for
19842           ListView control.
19844 2004-09-08 21:03  ravindra
19846         * ThemeWin32Classic.cs: PictureBox would not draw a null image to
19847           avoid crash.
19849 2004-09-08 21:01  ravindra
19851         * ScrollableControl.cs: Removed unreachable code.
19853 2004-09-08 06:45  jordi
19855         * MenuMerge.cs, Shortcut.cs: enumerations need it by menus
19857 2004-09-08 01:00  jackson
19859         * XplatUIX11.cs: Only run the timers when updating the message
19860           queue. This effectively gives X messages a higher priority then
19861           timer messages. Timers still need love though
19863 2004-09-07 14:01  jackson
19865         * XplatUIX11.cs: Do not call XDestroyWindow, X has already done
19866           this for us and the handle is no longer valid.
19868 2004-09-07 13:59  jackson
19870         * HandleData.cs, XplatUIX11.cs: First steps towards a new X event
19871           loop that manages to not crash. TODO: Add poll and cleanup timers
19873 2004-09-07 11:12  jordi
19875         * GroupBox.cs, Theme.cs, ThemeWin32Classic.cs: GroupBox control
19877 2004-09-07 03:40  jordi
19879         * Label.cs, LinkLabel.cs, Theme.cs, ThemeWin32Classic.cs: LinkLabel
19880           fixes, methods, multiple links
19882 2004-09-06 06:55  jordi
19884         * Control.cs: Caches ClientRectangle rectangle value
19886 2004-09-05 02:03  jordi
19888         * ScrollBar.cs, ThemeWin32Classic.cs: fixes bugs, adds flashing on
19889           certain situations
19891 2004-09-04 11:10  jordi
19893         * Label.cs: Refresh when font changed
19895 2004-09-02 16:24  pbartok
19897         * Control.cs:
19898           - Added sanity check to creation of double buffer bitmap
19900 2004-09-02 16:24  pbartok
19902         * ButtonBase.cs:
19903           - Fixed selection of text color
19904           - Fixed handling of resize event; now properly recreates double
19905             buffering bitmap
19906           - Added missing assignment of TextAlignment
19907           - Added proper default for TextAlignment
19909 2004-09-02 14:26  pbartok
19911         * RadioButton.cs:
19912           - Added missing RadioButton.RadioButtonAccessibleObject class
19914 2004-09-02 14:26  pbartok
19916         * Control.cs:
19917           - Added missing Control.ControlAccessibleObject class
19918           - Started to implement Select()ion mechanisms, still very incomplete
19920 2004-09-02 14:25  pbartok
19922         * AccessibleObject.cs:
19923           - Added missing methods
19925 2004-09-02 14:23  pbartok
19927         * AccessibleNavigation.cs, AccessibleSelection.cs:
19928           - Initial check-in
19930 2004-09-02 10:32  jordi
19932         * Theme.cs, ThemeGtk.cs, ThemeWin32Classic.cs: implements resource
19933           pool for pens, brushes, and hatchbruses
19935 2004-09-01 15:30  jackson
19937         * StatusBar.cs: Fix typo
19939 2004-09-01 14:44  pbartok
19941         * RadioButton.cs:
19942           - Fixed state
19944 2004-09-01 14:39  pbartok
19946         * Button.cs, RadioButton.cs:
19947           - Functional initial check-in
19949 2004-09-01 14:01  pbartok
19951         * CheckBox.cs:
19952           - Added missing default
19953           - Added missing region mark
19955 2004-09-01 09:10  jordi
19957         * Label.cs: fixes method signatures, new methods, events, fixes
19958           autosize
19960 2004-09-01 07:19  jordi
19962         * Control.cs: Init string variables with an empty object
19964 2004-09-01 04:20  jordi
19966         * Control.cs: fires OnFontChanged event
19968 2004-08-31 20:07  pbartok
19970         * ButtonBase.cs:
19971           - Enabled display of strings
19973 2004-08-31 20:05  pbartok
19975         * Form.cs:
19976           - Added (partial) implementation of DialogResult; rest needs to be
19977             implemented when the modal loop code is done
19979 2004-08-31 19:55  pbartok
19981         * CheckBox.cs:
19982           - Fixed to match the removal of the needs_redraw concept
19984 2004-08-31 19:55  pbartok
19986         * ButtonBase.cs:
19987           - Removed the rather odd split between 'needs redraw' and redrawing
19988           - Now handles the events that require regeneration (ambient
19989             properties and size)
19991 2004-08-31 19:41  pbartok
19993         * Control.cs:
19994           - Added firing of BackColorChanged event
19995           - Added TopLevelControl property
19996           - Fixed handling of WM_ERASEBKGRND message
19998 2004-08-31 12:49  pbartok
20000         * ButtonBase.cs:
20001           - Removed debug
20002           - Minor fixes
20004 2004-08-31 12:48  pbartok
20006         * CheckBox.cs:
20007           - Finished (famous last words)
20009 2004-08-31 04:35  jordi
20011         * ScrollBar.cs: adds autorepeat timer, uses a single timer, fixes
20012           scrolling bugs, adds new methods
20014 2004-08-30 14:42  pbartok
20016         * CheckBox.cs:
20017           - Implemented CheckBox drawing code
20019 2004-08-30 14:42  pbartok
20021         * ButtonBase.cs:
20022           - Made Redraw() and CheckRedraw() virtual
20023           - Improved mouse up/down/move logic to properly track buttons
20025 2004-08-30 09:44  pbartok
20027         * CheckBox.cs:
20028           - Updated to fix broken build. Not complete yet.
20030 2004-08-30 09:28  pbartok
20032         * CheckState.cs:
20033           - Initial checkin
20035 2004-08-30 09:17  pbartok
20037         * Appearance.cs:
20038           - Initial check-in
20040 2004-08-27 16:12  ravindra
20042         * ToolBarButton.cs: Added TypeConverter attribute.
20044 2004-08-27 16:07  ravindra
20046         * ImageIndexConverter.cs: Implemented.
20048 2004-08-27 14:17  pbartok
20050         * Control.cs:
20051           - Removed unneeded stack vars
20052           - First attempt to fix sizing issues when layout is suspended
20054 2004-08-25 15:35  jordi
20056         * ScrollBar.cs: more fixes to scrollbar
20058 2004-08-25 14:04  ravindra
20060         * Theme.cs, ThemeWin32Classic.cs, ToolBar.cs, ToolBarButton.cs:
20061           Added the missing divider code and grip for ToolBar Control.
20063 2004-08-25 13:20  pbartok
20065         * Control.cs:
20066           - Control now properly passes the ambient background color to child
20067             controls
20069 2004-08-25 13:20  jordi
20071         * ScrollBar.cs: small bug fix regarding bar position
20073 2004-08-25 12:33  pbartok
20075         * Timer.cs:
20076           - Now only calls SetTimer or KillTimer if the enabled state has
20077           changed
20079 2004-08-25 12:33  pbartok
20081         * XplatUIWin32.cs:
20082           - Fixed timer handling, now seems to work
20083           - Improved error message for window creation
20085 2004-08-25 12:32  pbartok
20087         * Control.cs:
20088           - Fixed generation of MouseUp message
20090 2004-08-25 12:29  jordi
20092         * ProgressBar.cs, ThemeWin32Classic.cs: new methods, properties,
20093           and fixes for progressbar
20095 2004-08-24 18:43  ravindra
20097         * ThemeWin32Classic.cs, ToolBar.cs: Fixed wrapping related issues
20098           in ToolBar control.
20100 2004-08-24 17:15  pbartok
20102         * Panel.cs:
20103           - Added #region
20104           - Added missing events
20105           - Alphabetized
20107 2004-08-24 17:14  pbartok
20109         * StatusBar.cs, PictureBox.cs:
20110           - Now uses Control's CreateParams
20112 2004-08-24 16:36  pbartok
20114         * XplatUIX11.cs:
20115           - Fixed background color handling
20116           - Fixed sending of enter/leave events on a grab
20118 2004-08-24 16:35  pbartok
20120         * X11Structs.cs:
20121           - Refined definitions for CrossingEvent
20123 2004-08-24 12:37  jordi
20125         * ScrollBar.cs, Theme.cs, ThemeGtk.cs, ThemeWin32Classic.cs: fixes
20126           formmating, methods signature, and adds missing events
20128 2004-08-24 12:24  jordi
20130         * Control.cs: fire OnEnabledChanged event
20132 2004-08-24 11:17  pbartok
20134         * XplatUIWin32.cs:
20135           - Implemented SetTimer() and KillTimer()
20137 2004-08-24 11:16  pbartok
20139         * XplatUIX11.cs:
20140           - Now uses Remove instead of Add to kill the timer
20142 2004-08-24 10:16  jackson
20144         * PictureBox.cs, Theme.cs, ThemeWin32Classic.cs: Handle drawing
20145           picture boxes in the theme now. Draw picture box borders and obey
20146           sizing modes
20148 2004-08-24 05:49  jackson
20150         * Timer.cs: Remove top secret debugging code
20152 2004-08-24 05:34  jackson
20154         * PictureBox.cs: Temp hack to make picture boxes draw their full
20155           image
20157 2004-08-24 05:29  jackson
20159         * Timer.cs, XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs,
20160           XplatUIX11.cs: Move timers to the driver level. On X they are
20161           queued by the driver and checked on idle.
20163 2004-08-24 01:07  jackson
20165         * XplatUIX11.cs: Use a queue for async messages instead of passing
20166           them as ClientMessages since that was totally broken. Also simply
20167           check for events and return an idle message if none are found. This
20168           gives us an idle handler, and prevents deadlocking when no messages
20169           are in the queue.
20171 2004-08-23 18:19  ravindra
20173         * XplatUIWin32.cs: Removed the unwanted destructor.
20175 2004-08-23 17:27  pbartok
20177         * ButtonBase.cs:
20178           - Finishing touches. Works now, just needs some optimizations.
20180 2004-08-23 16:53  jordi
20182         * ScrollBar.cs: small fix
20184 2004-08-23 16:45  pbartok
20186         * Application.cs:
20187           - Removed debug output
20188           - Simplifications
20190 2004-08-23 16:43  jordi
20192         * ScrollBar.cs: [no log message]
20194 2004-08-23 16:10  pbartok
20196         * Form.cs:
20197           - Fixed handling of WM_CLOSE message
20198           - Removed debug output
20200 2004-08-23 16:09  pbartok
20202         * Application.cs:
20203           - Added handling of Idle event
20204           - Added handling of form closing
20205           - Fixed reporting of MessageLoop property
20206           - Removed some unneeded code, should provide a bit of a speedup
20208 2004-08-23 15:22  pbartok
20210         * Control.cs:
20211           - Added InitLayout() method
20212           - Added code to properly perform layout when Anchor or Dock property
20213             is changed
20214           - Changed 'interpretation' of ResumeLayout. MS seems to have a
20215             LAMESPEC, tried to do it in a way that makes sense
20217 2004-08-23 14:10  jordi
20219         * HScrollBar.cs, ScrollBar.cs, TrackBar.cs, VScrollBar.cs: fixes
20220           properties and methods
20222 2004-08-23 13:55  pbartok
20224         * Control.cs:
20225           - Properly fixed Jordi's last fix
20226           - Now uses Cursor's Position property instead of calling XplatUI
20227           directly
20229 2004-08-23 13:44  jordi
20231         * PaintEventHandler.cs: Adding missing attribute
20233 2004-08-23 13:39  pbartok
20235         * Cursor.cs:
20236           - Implemented Position property
20238 2004-08-23 13:39  pbartok
20240         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs:
20241           - Added method to move mouse cursor
20243 2004-08-23 13:39  pbartok
20245         * XplatUIX11.cs:
20246           - Fixed setting of background color
20247           - Added method to move mouse cursor
20249 2004-08-23 13:16  jordi
20251         * Control.cs: avoids null exception
20253 2004-08-22 17:46  jackson
20255         * PictureBox.cs, PictureBoxSizeMode.cs: Initial implementation of
20256           PictureBox
20258 2004-08-22 17:40  jackson
20260         * XplatUIX11.cs: Add some missing locks
20262 2004-08-22 15:10  pbartok
20264         * Control.cs, Form.cs:
20265           - Removed OverlappedWindow style from Control, instead it's default
20266             now is child
20267           - Made form windows OverlappedWindow by default
20269 2004-08-22 13:34  jackson
20271         * ScrollBar.cs: Update the position through the Value property so
20272           the OnValueChanged event is raised.
20274 2004-08-22 12:04  pbartok
20276         * SWF.csproj:
20277           - Added Cursor.cs and UserControl.cs
20279 2004-08-22 12:03  pbartok
20281         * Cursor.cs:
20282           - Started implementation, not usable yet
20284 2004-08-22 12:00  pbartok
20286         * UserControl.cs:
20287           - Implemented UserControl (complete)
20289 2004-08-21 19:20  ravindra
20291         * ToolBar.cs: Correcting the formatting mess of VS.NET.
20293 2004-08-21 18:49  ravindra
20295         * ToolBar.cs: Probably this completes the missing attributes in
20296           toolbar control.
20298 2004-08-21 18:03  ravindra
20300         * ToolBar.cs, ToolBarButton.cs, ToolBarButtonClickEventArgs.cs:
20301           Fixed toolbar control signatures.
20303 2004-08-21 16:32  pbartok
20305         * LinkLabel.cs:
20306           - Signature Fixes
20308 2004-08-21 16:30  pbartok
20310         * Label.cs:
20311           - Signature fixes
20313 2004-08-21 16:19  pbartok
20315         * Control.cs, Label.cs:
20316           - Signature fixes
20318 2004-08-21 15:57  pbartok
20320         * ButtonBase.cs:
20321           - Added loads of debug output for development
20322           - Fixed typo in method name
20324 2004-08-21 15:52  pbartok
20326         * ToolBarButtonClickEventArgs.cs:
20327           - Added missing base class
20329 2004-08-21 14:53  pbartok
20331         * Control.cs:
20332           - Updated to match new GrabWindow signature
20334 2004-08-21 14:51  pbartok
20336         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIX11.cs:
20337           - Added method to get default display size
20339 2004-08-21 14:23  pbartok
20341         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIX11.cs:
20342           - Added method to query current grab state
20343           - Added argument to allow confining a grab to a window
20345 2004-08-21 14:22  pbartok
20347         * Keys.cs:
20348           - Added [Flags] attribute so that modifiers can be used in bitwise
20349           ops
20351 2004-08-21 14:21  pbartok
20353         * TrackBar.cs, ScrollBar.cs:
20354           - Replaced direct XplatUI calls with their Control counterpart
20356 2004-08-21 13:32  pbartok
20358         * Control.cs:
20359           - Implemented Created property
20361 2004-08-21 13:28  pbartok
20363         * Control.cs:
20364           - Implemented ContainsFocus
20366 2004-08-21 13:26  pbartok
20368         * Control.cs:
20369           - Implemented CausesValidation
20371 2004-08-21 13:21  pbartok
20373         * Control.cs:
20374           - Implemented CanFocus
20375           - Implemented CanSelect
20376           - Implemented Capture
20378 2004-08-21 12:35  pbartok
20380         * XplatUIWin32.cs:
20381           - Fixed bug with Async message handling
20382           - Implemented getting the ModifierKeys
20384 2004-08-21 12:32  jackson
20386         * AsyncMethodResult.cs: Make sure we have the mutex before we
20387           release it. Fixes BeginInvoke on windows
20389 2004-08-21 11:31  pbartok
20391         * XplatUIWin32.cs, XplatUIX11.cs:
20392           - Drivers now return proper mouse state
20394 2004-08-21 10:54  jackson
20396         * Control.cs: Implement EndInvoke
20398 2004-08-21 10:48  jackson
20400         * Timer.cs: Remove unneeded finalizer
20402 2004-08-20 19:52  ravindra
20404         * ThemeWin32Classic.cs, ToolBar.cs, ToolBarButton.cs: Improvments
20405           in mouse event handling in the ToolBar control.
20407 2004-08-20 19:50  ravindra
20409         * ImageList.cs: Changed draw method to use the arguments passed in
20410           to draw the image.
20412 2004-08-20 18:58  pbartok
20414         * XplatUIStructs.cs:
20415           - Added private message for async communication
20417 2004-08-20 17:38  ravindra
20419         * Control.cs: Made RightToLeft property virtual and removed a
20420           Console.WriteLine.
20422 2004-08-20 14:39  jordi
20424         * ThemeGtk.cs: use style_attach
20426 2004-08-20 14:39  pbartok
20428         * XplatUIWin32.cs:
20429           - Added jackson's Async code from X11 to Win32
20431 2004-08-20 14:09  pbartok
20433         * SWF.csproj:
20434           - Added all new files
20436 2004-08-20 14:09  pbartok
20438         * Control.cs:
20439           - Added call to set window background color
20441 2004-08-20 14:03  pbartok
20443         * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs:
20444           - Added method for setting the window background
20446 2004-08-20 14:02  pbartok
20448         * XplatUIWin32.cs:
20449           - Added method for setting the background color
20450           - Added handling for erasing the window background
20452 2004-08-20 13:45  jordi
20454         * TrackBar.cs: fixes timer, new properties and methods
20456 2004-08-20 13:34  jackson
20458         * ScrollBar.cs: Use the SWF timer so callbacks are run in the
20459           correct thread
20461 2004-08-20 13:22  jackson
20463         * Timer.cs: Timer Tick events are now handed through Controls Async
20464           mechanism so the callbacks are executed in the same thread as X
20466 2004-08-20 13:19  jackson
20468         * XplatUIDriver.cs: Expose functionality to send async messages
20469           through the driver
20471 2004-08-20 13:18  jackson
20473         * Control.cs: Implement Begininvoke
20475 2004-08-20 13:14  jackson
20477         * XplatUI.cs, XplatUIWin32.cs: Expose functionality to send async
20478           messages through the driver
20480 2004-08-20 13:12  jackson
20482         * XplatUIX11.cs: Lock before all X operations. Also added Async
20483           method functionality through XSendEvent
20485 2004-08-20 13:11  jackson
20487         * X11Structs.cs: Use IntPtrs for ClientMessage extra data (TODO:
20488           This will screw up on 64 bit systems)
20490 2004-08-20 13:10  jackson
20492         * AsyncMethodData.cs, AsyncMethodResult.cs: Classes for sending
20493           Async messages through X/Win32
20495 2004-08-19 19:39  pbartok
20497         * XplatUIX11.cs:
20498           - Updated code to match new HandleData.DeviceContext type
20500 2004-08-19 19:38  pbartok
20502         * HandleData.cs:
20503           - Made DeviceContext a generic object to allow usage from various
20504           drivers
20505           - Added support for queueing Windows messages
20507 2004-08-19 19:37  pbartok
20509         * XplatUIWin32.cs:
20510           - Added generation of MouseEnter, MouseLeave and MouseHover events
20511           - Added cleanup on EndPaint
20513 2004-08-19 19:17  pbartok
20515         * Control.cs:
20516           - Added handling of WM_MOUSEHOVER
20517           - Worked around 'bug' in Win32 WM_MOUSE_ENTER/WM_MOUSE_LEAVE driver
20518           code
20520 2004-08-19 18:55  jordi
20522         * ThemeGtk.cs: fixes button order
20524 2004-08-19 18:12  jordi
20526         * Theme.cs, ThemeWin32Classic.cs: fixes methods signature
20528 2004-08-19 17:09  pbartok
20530         * Control.cs:
20531           - Added Right property
20532           - Added RightToLeft property
20534 2004-08-19 16:27  jordi
20536         * ThemeGtk.cs: experimental GTK theme support
20538 2004-08-19 16:26  jordi
20540         * ITheme.cs, Theme.cs: move themes from an interface to a class
20542 2004-08-19 16:25  jordi
20544         * Control.cs, ScrollBar.cs, ThemeEngine.cs, ThemeWin32Classic.cs:
20545           theme enhancaments
20547 2004-08-19 16:04  pbartok
20549         * XplatUIX11.cs:
20550           - Added colormap basics
20551           - Added a way to re-initialize with a different display handle
20552           - Fixed setting of the window background color
20553           - Added various X11 imports related to colors and colormaps
20555 2004-08-19 15:51  pbartok
20557         * X11Structs.cs:
20558           - Removed packing hints (Paolo suggested this a while back)
20559           - fixed colormap type
20560           - Added default Atom types
20561           - Added Screen and color structs and enums
20563 2004-08-19 15:39  pbartok
20565         * ImageList.cs:
20566           - Added missing Draw() method
20567           - Added missing RecreateHandle event
20569 2004-08-19 15:30  pbartok
20571         * Form.cs:
20572           - Added handling of WM_CLOSE
20574 2004-08-18 13:16  jordi
20576         * ITheme.cs, ThemeWin32Classic.cs, XplatUIWin32.cs: Move colors to
20577           a table
20579 2004-08-18 09:56  jordi
20581         * ScrollBar.cs: fixes to scrollbar: steps and multiple timers
20583 2004-08-17 15:31  ravindra
20585         * SWF.csproj: Updated project.
20587 2004-08-17 15:25  pbartok
20589         * Control.cs:
20590           - Drawing improvement; don't call UpdateBounds if we are not visible
20591             (or have been minimized)
20593 2004-08-17 15:24  pbartok
20595         * XplatUIWin32.cs:
20596           - Finished IsVisible
20597           - Added Win32GetWindowPlacement
20599 2004-08-17 15:08  jackson
20601         * Panel.cs: Initial checkin of the Panel
20603 2004-08-17 14:25  pbartok
20605         * Control.cs:
20606           - Fixed broken handling of default window sizes
20608 2004-08-17 13:29  jackson
20610         * ThemeWin32Classic.cs: Don't use KnownColor to create colours. It
20611           has a large startup time.
20613 2004-08-17 10:25  jackson
20615         * HandleData.cs: union areas properly
20617 2004-08-17 10:12  jackson
20619         * HandleData.cs: union areas properly
20621 2004-08-16 20:00  ravindra
20623         * ToolBar.cs, ToolBarButton.cs: Added attributes.
20625 2004-08-16 18:48  ravindra
20627         * ToolBar.cs: Added attributes.
20629 2004-08-16 17:17  ravindra
20631         * SWF.csproj: Updated project.
20633 2004-08-16 17:16  jackson
20635         * XplatUIX11.cs: Check for more expose events before sending a
20636           WM_PAINT so they can all be grouped together. This makes dragging a
20637           window across another window redraw in a sane way.
20639 2004-08-16 15:47  pbartok
20641         * Control.cs:
20642           - Added handling of WM_MOUSE_ENTER & WM_MOUSE_LEAVE to
20643             support OnMouseEnter/Leave()
20644           - Added WS_CLIPSIBLINGS and WS_CLIPCHILDREN window styles to improve
20645             exposure handling
20647 2004-08-16 15:46  pbartok
20649         * XplatUIStructs.cs, XplatUIX11.cs:
20650           - Added WM_MOUSE_ENTER & WM_MOUSE_LEAVE to support
20651           OnMouseEnter/Leave()
20653 2004-08-16 15:34  jackson
20655         * XplatUIX11.cs: Group multiple expose events in HandleData, make
20656           sure messages get the message field set to WM_NULL if they are not
20657           handled.
20659 2004-08-16 15:24  jackson
20661         * HandleData.cs: HandleData is used for storing message information
20662           for window handles
20664 2004-08-15 17:23  ravindra
20666         * ColorDepth.cs: Added attribute.
20668 2004-08-15 17:23  ravindra
20670         * SWF.csproj: Updated project for ToolBar Control.
20672 2004-08-15 17:20  ravindra
20674         * ITheme.cs, ThemeWin32Classic.cs: Changes to Theme for ToolBar
20675           control and also dos2unix format.
20677 2004-08-15 17:13  ravindra
20679         * ToolBar.cs, ToolBarAppearance.cs, ToolBarButton.cs,
20680           ToolBarButtonClickEventArgs.cs,
20681           ToolBarButtonClickEventHandler.cs, ToolBarButtonStyle.cs,
20682           ToolBarTextAlign.cs: First Implementation of ToolBar control.
20684 2004-08-15 15:31  pbartok
20686         * ButtonBase.cs:
20687           - First (mostly) working version
20689 2004-08-13 16:15  pbartok
20691         * Control.cs:
20692           - Fixed Anchor default
20694 2004-08-13 15:43  pbartok
20696         * Control.cs:
20697           - Changed GetCursorPos signature
20699 2004-08-13 15:42  pbartok
20701         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs:
20702           - Changed signature for GetCursorPos
20704 2004-08-13 15:25  pbartok
20706         * XplatUIX11.cs:
20707           - Cleanup
20708           - Fixed resizing/exposure handling
20710 2004-08-13 15:22  jordi
20712         * ThemeWin32Classic.cs: removes redundant code and fixes issues
20713           with tickposition
20715 2004-08-13 14:55  jordi
20717         * TrackBar.cs: change from wndproc to events
20719 2004-08-13 13:00  jordi
20721         * Control.cs, XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs,
20722           XplatUIX11.cs: implements PointToClient (ScreenToClient)
20724 2004-08-13 12:53  pbartok
20726         * XplatUIWin32.cs:
20727           - Changed GetWindowPos to also provide client area size
20728           - Fixed broken prototypes for several win32 functions
20730 2004-08-13 12:53  pbartok
20732         * XplatUI.cs, XplatUIDriver.cs:
20733           - Changed GetWindowPos to also provide client area size
20735 2004-08-13 12:52  pbartok
20737         * XplatUIX11.cs:
20738           - Added generation of WM_POSCHANGED
20739           - Changed GetWindowPos to also provide client area size
20741 2004-08-13 12:52  pbartok
20743         * Control.cs:
20744           - Added Dispose() and destructor
20745           - Fixed resizing and bounds calculation
20746           - Fixed Layout
20747           - Added memory savings for invisible windows
20749 2004-08-13 12:46  jordi
20751         * TrackBar.cs: adds timer and grap window
20753 2004-08-13 10:25  jackson
20755         * Timer.cs: SWF Timer
20757 2004-08-12 16:59  pbartok
20759         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIX11.cs:
20760           - Implemented method to get current mouse position
20762 2004-08-12 14:29  jordi
20764         * ITheme.cs, ThemeWin32Classic.cs, TrackBar.cs: Trackbar
20765           enhancement, fix mouse problems, highli thumb, etc
20767 2004-08-12 13:31  pbartok
20769         * Control.cs:
20770           - Fixed Anchoring bugs
20772 2004-08-12 13:01  jackson
20774         * StatusBar.cs: Don't forget things
20776 2004-08-12 12:54  jackson
20778         * ThemeWin32Classic.cs: Handle owner draw status bars
20780 2004-08-12 12:54  jackson
20782         * StatusBar.cs: Implement missing properties, events, and methods.
20783           Handle mouse clicking
20785 2004-08-12 10:19  jackson
20787         * StatusBarPanelClickEventArgs.cs,
20788           StatusBarPanelClickEventHandler.cs: Classes for handling status
20789           bar panel click events
20791 2004-08-12 10:10  jackson
20793         * Control.cs: Add missing properties
20795 2004-08-12 09:46  pbartok
20797         * BindingsManagerBase.cs:
20798           - Name changed to BindingManagerBase.cs
20800 2004-08-12 09:25  jordi
20802         * ScrollableControl.cs: calls ctrlbase instead of exeception
20804 2004-08-11 16:28  pbartok
20806         * InputLanguageChangingEventArgs.cs:
20807           - Never check in before compiling. Fixes the last check-in
20809 2004-08-11 16:26  pbartok
20811         * InputLanguageChangingEventArgs.cs:
20812           - More signature fixes
20814 2004-08-11 16:20  pbartok
20816         * BindingManagerBase.cs, BindingMemberInfo.cs, ContainerControl.cs,
20817           Control.cs, ControlEventArgs.cs, ControlPaint.cs, Form.cs,
20818           ImageListStreamer.cs, InputLanguage.cs,
20819           InputLanguageChangedEventArgs.cs,
20820           InputLanguageChangingEventArgs.cs, Keys.cs, LayoutEventArgs.cs,
20821           LinkArea.cs, Message.cs, MouseEventArgs.cs, NativeWindow.cs,
20822           ScrollEventArgs.cs, ScrollableControl.cs, XplatUI.cs,
20823           XplatUIDriver.cs, XplatUIWin32.cs, XplatUIX11.cs:
20824           - Signature fixes
20826 2004-08-11 16:16  pbartok
20828         * Application.cs:
20829           - Fixed Signature
20830           - Added .Net 1.1 method
20832 2004-08-11 15:25  pbartok
20834         * SWF.csproj:
20835           - Fixed BindingManagerBase.cs filename
20837 2004-08-11 15:22  pbartok
20839         * BindingManagerBase.cs:
20840           - Was checked in with wrong filename
20842 2004-08-11 14:50  pbartok
20844         * SWF.csproj:
20845           - Updated
20847 2004-08-11 13:41  jordi
20849         * XplatUIWin32.cs: Fixes ClientRect
20851 2004-08-11 13:19  pbartok
20853         * Control.cs, XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs,
20854           XplatUIX11.cs:
20855           - We had SetWindowPos and MoveWindow to set window positions and
20856             size, removed MoveWindow. We have GetWindowPos, so it made sense to
20857             keep SetWindowPos as matching counterpart
20858           - Added some X11 sanity checking
20860 2004-08-11 12:59  pbartok
20862         * Control.cs:
20863           - Major cleanup of my SetBounds/SetBoundsCore/UpdateBounds mess
20864             (It seems that SetBounds is just a front for SetBoundsCore and
20865              SetBoundsCore updates the underlying window system and
20866              UpdateBounds is responsible for updating the variables associated
20867              with the Control and sending the events)
20868           - Major cleanup of Size handling; we now have two sizes, client_size
20869             and bounds. Bounds defines the window with decorations, client_size
20870             without them.
20872 2004-08-11 12:55  pbartok
20874         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIX11.cs:
20875           - Added method to calculate difference between decorated window and
20876             raw client area
20878 2004-08-11 12:54  pbartok
20880         * Label.cs:
20881           - Forcing redraw on resize
20883 2004-08-11 11:43  pbartok
20885         * ImageList.cs:
20886           - Removed disposing of the actual images when the list is disposed
20888 2004-08-11 09:13  pbartok
20890         * Control.cs:
20891           - Now properly reparents windows
20893 2004-08-11 08:37  pbartok
20895         * Control.cs:
20896           - Duh!
20898 2004-08-11 07:47  pbartok
20900         * Control.cs:
20901           - Rewrote the collection stuff. Might not be as fast now, not
20902             keeping the number of children around and accessible directly, but
20903             it's more straightforward
20905 2004-08-11 07:44  pbartok
20907         * AccessibleObject.cs:
20908           - Fixed to match ControlCollection rewrite
20910 2004-08-11 07:43  pbartok
20912         * ImageList.cs:
20913           - Added missing creation of the collection list
20915 2004-08-10 20:08  jackson
20917         * StatusBar.cs: Get the paint message from WndProc
20919 2004-08-10 19:31  jackson
20921         * ThemeWin32Classic.cs: Create Brushes as little as possible
20923 2004-08-10 19:20  jackson
20925         * UICues.cs: Add Flags attribute
20927 2004-08-10 19:19  jackson
20929         * StatusBarPanel.cs: Signature cleanup
20931 2004-08-10 19:10  jackson
20933         * StatusBarDrawItemEventArgs.cs, StatusBarDrawItemEventHandler.cs:
20934           Initial implementation of status bar item drawing
20936 2004-08-10 17:27  jordi
20938         * TrackBar.cs: add missing methods, properties, and restructure to
20939           hide extra ones
20941 2004-08-10 16:24  jackson
20943         * AccessibleStates.cs, Border3DSide.cs, Border3DStyle.cs,
20944           ButtonState.cs, ControlStyles.cs, DragDropEffects.cs: Add flags
20945           attribute
20947 2004-08-10 13:21  jordi
20949         * ITheme.cs, ScrollBar.cs, ThemeWin32Classic.cs: scrollbar
20950           enhancements and standarize on win colors defaults
20952 2004-08-10 12:52  jackson
20954         * DrawItemEventArgs.cs, DrawItemState.cs, ITheme.cs,
20955           ThemeWin32Classic.cs: Implement DrawItem functionality
20957 2004-08-10 12:47  jordi
20959         * XplatUIWin32.cs: Calls InvalidateRect before UpdateWindow
20961 2004-08-10 12:32  jordi
20963         * Control.cs: throw ontextchange event
20965 2004-08-10 11:43  pbartok
20967         * Control.cs:
20968           - Added more to the still unfinished Dock/Anchor layout code
20970 2004-08-10 11:39  pbartok
20972         * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs:
20973           - Added GetWindowPos method
20975 2004-08-10 11:36  pbartok
20977         * XplatUIWin32.cs:
20978           - Implemented several methods
20980 2004-08-10 09:47  jackson
20982         * TrackBar.cs: Allow control to handle buffering
20984 2004-08-10 09:41  jackson
20986         * ProgressBar.cs, ScrollBar.cs: Allow control to handle buffering
20988 2004-08-10 09:24  jackson
20990         * Label.cs, LinkLabel.cs: Let Control handle buffering.
20992 2004-08-10 09:09  jackson
20994         * StatusBar.cs: Let Control handle all the buffering.
20996 2004-08-10 09:08  jackson
20998         * Control.cs: Control will now handle the buffering code, so each
20999           control does not have to implement this.
21001 2004-08-10 08:34  jackson
21003         * XplatUIDriver.cs: Use default colors from the theme
21005 2004-08-09 17:12  pbartok
21007         * ImageList.cs:
21008           - Fixed several bugs Ravindra pointed out
21010 2004-08-09 16:11  pbartok
21012         * Control.cs:
21013           - Added incomplete dock layout code
21014           - Added support for mouse wheel
21016 2004-08-09 16:09  pbartok
21018         * XplatUIX11.cs:
21019           - Added handling for middle and right mousebutton
21020           - Added handling for mouse wheel
21021           - Added handling for key state and mouse state and position
21022           - Now properly generates WM_xBUTTONx messages and WM_MOUSEWHEEL
21023           messages
21025 2004-08-09 15:40  jackson
21027         * StatusBarPanel.cs, StatusBarPanelAutoSize.cs,
21028           StatusBarPanelBorderStyle.cs, StatusBarPanelStyle.cs: Initial
21029           checkin
21031 2004-08-09 15:37  jackson
21033         * StatusBar.cs: Initial implementation of StatusBar
21035 2004-08-09 15:36  jackson
21037         * ITheme.cs: Add support for drawing status bar and getting status
21038           bar item sizes
21040 2004-08-09 15:35  pbartok
21042         * MouseButtons.cs:
21043           - Fixed values
21045 2004-08-09 15:34  jackson
21047         * ThemeWin32Classic.cs: Add support for drawing status bar and get
21048           status bar item sizes
21050 2004-08-09 15:21  jackson
21052         * ThemeWin32Classic.cs: Use known colors for default control
21053           colours
21055 2004-08-09 15:12  jackson
21057         * ThemeWin32Classic.cs: Make the default font static, it is static
21058           in control so this doesn't change functionality and creating fonts
21059           is sloooooow.
21061 2004-08-09 14:56  pbartok
21063         * X11Structs.cs:
21064           - Added GrabMode enum
21066 2004-08-09 14:55  pbartok
21068         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIX11.cs:
21069           - Removed Run method, was only required for initial development
21071 2004-08-09 14:51  pbartok
21073         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIX11.cs:
21074           - Implemented GrabWindow/ReleaseWindow methods to allow pointer
21075           capture
21077 2004-08-09 13:48  pbartok
21079         * XplatUIX11.cs:
21080           - Fixed default sizing for child windows
21082 2004-08-09 12:56  pbartok
21084         * XplatUIX11.cs:
21085           - Added generation of WM_DESTROY message
21086           - Added handling of window manager induced shutdown
21088 2004-08-09 11:31  jackson
21090         * ThemeWin32Classic.cs: New names for control properties
21092 2004-08-09 11:25  jackson
21094         * Control.cs: Use new color names
21096 2004-08-09 11:02  jackson
21098         * XplatUI.cs: Get default window properties from the theme
21100 2004-08-09 11:01  jackson
21102         * ITheme.cs: The theme engine now controls default window
21103           properties
21105 2004-08-09 11:00  jackson
21107         * ThemeWin32Classic.cs: Add default window color properties
21109 2004-08-09 10:17  jackson
21111         * ThemeWin32Classic.cs: Use correct default back color
21113 2004-08-09 10:05  jackson
21115         * XplatUIWin32.cs, XplatUIX11.cs: These properties are handled by
21116           the theme now.
21118 2004-08-09 09:56  jackson
21120         * XplatUI.cs: Remove defaults, these are handled by the theme now.
21122 2004-08-09 09:54  jackson
21124         * Control.cs: Get default properties from the theme.
21126 2004-08-09 09:53  jackson
21128         * ITheme.cs: Themes now handle default control properties
21130 2004-08-09 09:53  jackson
21132         * ThemeWin32Classic.cs: Themes now handle default control
21133           properties so coloring will be consistent
21135 2004-08-08 16:54  jordi
21137         * ITheme.cs, ThemeWin32Classic.cs: Label BorderStyles
21139 2004-08-08 15:08  jordi
21141         * XplatUIX11.cs: fixes keyboard crash
21143 2004-08-08 13:47  jordi
21145         * Label.cs: add cvs header info
21147 2004-08-08 12:09  jackson
21149         * ThemeWin32Classic.cs: Add pen_buttonface
21151 2004-08-08 11:52  jordi
21153         * Label.cs, LinkLabel.cs: [no log message]
21155 2004-08-08 11:34  jordi
21157         * ThemeWin32Classic.cs: Use Windows Standard Colours
21159 2004-08-07 17:32  jordi
21161         * TrackBar.cs: throw exceptions of invalid enums values
21163 2004-08-07 17:31  jordi
21165         * Label.cs, LinkLabel.cs, ThemeWin32Classic.cs: fixes label bug and
21166           draw method name
21168 2004-08-07 16:56  jackson
21170         * HorizontalAlignment.cs: Initial checkin
21172 2004-08-07 13:16  jordi
21174         * Label.cs, LinkLabel.cs: throw exceptions, fixes events, missing
21175           methods
21177 2004-08-07 13:05  jordi
21179         * ITheme.cs, ThemeWin32Classic.cs: Theme colour support and
21180           GetSysColor defines
21182 2004-08-06 18:01  pbartok
21184         * ThemeWin32Classic.cs:
21185           - Fixed some rounding issues with float/int
21187 2004-08-06 18:00  jackson
21189         * DockStyle.cs, AnchorStyles.cs:
21191                   Add flags and serializable attributes.
21193 2004-08-06 17:46  pbartok
21195         * XplatUIX11.cs:
21196           - Implemented GetParent
21198 2004-08-06 17:18  pbartok
21200         * TrackBar.cs:
21201           - Fixed some rounding issues with float/int
21203 2004-08-06 17:17  pbartok
21205         * X11Structs.cs, XplatUIX11.cs:
21206           - Fixed Refresh and Invalidate
21208 2004-08-06 15:30  pbartok
21210         * Control.cs, X11Structs.cs, XplatUIX11.cs:
21211           - Fixed recursive loop when resizing
21212           - Improved/fixed redrawing on expose messages
21214 2004-08-06 09:53  jordi
21216         * Control.cs, X11Structs.cs, XplatUIWin32.cs, XplatUIX11.cs: X11
21217           keyboard navigation
21219 2004-08-06 08:02  pbartok
21221         * X11Structs.cs, XplatUIX11.cs:
21222           - Fixed reparenting
21223           - Fixed window border creation
21225 2004-08-05 15:38  pbartok
21227         * XplatUIX11.cs:
21228           - Attempted fix for reparenting problems
21230 2004-08-04 15:14  pbartok
21232         * Control.cs:
21233           - Fixed Invalidation bug (calculated wrong client area)
21234           - Added ClientSize setter
21236 2004-08-04 15:13  pbartok
21238         * Form.cs:
21239           - Added AutoScale properties
21241 2004-08-04 15:13  pbartok
21243         * SWF.csproj:
21244           - Added latest files
21246 2004-08-04 14:11  pbartok
21248         * Control.cs, XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs,
21249           XplatUIX11.cs:
21250           - Added Invalidate handling
21252 2004-08-03 17:09  jordi
21254         * XplatUIDriver.cs: fixes spelling mistake
21256 2004-07-27 09:53  jordi
21258         * TrackBar.cs: fixes trackbar events, def classname, methods
21259           signature
21261 2004-07-27 09:29  jordi
21263         * ScrollBar.cs: fixes scrollbar events
21265 2004-07-27 04:38  jordi
21267         * Control.cs: changes to be able to run winforms samples
21269 2004-07-26 11:42  jordi
21271         * ControlPaint.cs, ITheme.cs, ProgressBar.cs, ScrollBar.cs,
21272           ThemeEngine.cs, ThemeWin32Classic.cs, TrackBar.cs: Theme support
21274 2004-07-26 05:41  jordi
21276         * MessageBox.cs, MessageBoxButtons.cs, MessageBoxDefaultButton.cs,
21277           MessageBoxIcon.cs, MessageBoxOptions.cs: initial messagebox
21278           implementation
21280 2004-07-22 09:22  jordi
21282         * LinkLabel.cs, LinkLabelLinkClickedEventHandler.cs: link label:
21283           check link overlapping, implement events, and fixes
21285 2004-07-21 10:28  jordi
21287         * DialogResult.cs, IButtonControl.cs: fixes comments filenames
21289 2004-07-21 10:19  jordi
21291         * DialogResult.cs, IButtonControl.cs, Label.cs, LinkArea.cs,
21292           LinkBehavior.cs, LinkClickedEventArgs.cs, LinkLabel.cs,
21293           LinkLabelLinkClickedEventArgs.cs,
21294           LinkLabelLinkClickedEventHandler.cs, LinkState.cs,
21295           XplatUIWin32.cs, LinkClickedEventHandler.cs: LinkLabel control
21296           implementation
21298 2004-07-19 13:09  jordi
21300         * Control.cs, Label.cs: label control re-written: added missing
21301           functionlity, events, and properties
21303 2004-07-19 10:49  jordi
21305         * Control.cs: fixes SetBounds logic
21307 2004-07-19 01:29  jordi
21309         * Control.cs: Call RefreshWindow only if the window has created
21311 2004-07-15 14:05  pbartok
21313         * ColorDepth.cs, ImageList.cs, ImageListStreamer.cs, SWF.csproj:
21314           - Implemented ImageList and ImageList.ImageCollection classes
21315           - Added ColorDepth enumeration
21316           - Updated SWF VS.Net project
21318 2004-07-15 11:06  jordi
21320         * XplatUIStructs.cs: added MsgButons enum
21322 2004-07-15 11:03  jordi
21324         * Control.cs: added basic mouse handeling events
21326 2004-07-15 03:38  jordi
21328         * Orientation.cs, TickStyle.cs, TrackBar.cs: Horizontal and
21329           Vertical TrackBar control implementation
21331 2004-07-13 09:33  jordi
21333         * HScrollBar.cs, VScrollBar.cs: vertical and hort. classes commit
21335 2004-07-13 09:31  jordi
21337         * Control.cs, Form.cs: commit: new properties and fixes form size
21338           problems
21340 2004-07-09 14:13  miguel
21342         * ProgressBar.cs: Spelling
21344 2004-07-09 11:25  pbartok
21346         * ProgressBar.cs:
21347           - Removed usage of Rectangle for drawing. Miguel pointed out it's
21348           faster
21350 2004-07-09 11:17  miguel
21352         * ProgressBar.cs: 2004-07-09  Miguel de Icaza  <miguel@ximian.com>
21354                 * ProgressBar.cs: Fixed spelling for `block'
21356                 drawProgressBar: renamed to `DrawProgressBar' to follow the coding
21357                 style guidelines.
21359                 Avoid using the += on rect.X, that exposed a bug in the compiler.
21361 2004-07-08 23:21  pbartok
21363         * AccessibleObject.cs, AccessibleRole.cs, AccessibleStates.cs,
21364           AnchorStyles.cs, Application.cs, ApplicationContext.cs,
21365           BaseCollection.cs, Binding.cs, BindingContext.cs,
21366           BindingMemberInfo.cs, BindingsCollection.cs,
21367           BindingsManagerBase.cs, Border3DSide.cs, Border3DStyle.cs,
21368           BorderStyle.cs, BoundsSpecified.cs, ButtonBorderStyle.cs,
21369           ButtonState.cs, CaptionButton.cs, CheckBox.cs,
21370           ContainerControl.cs, Control.cs, ControlEventArgs.cs,
21371           ControlEventHandler.cs, ControlPaint.cs, ControlStyles.cs,
21372           ConvertEventArgs.cs, ConvertEventHandler.cs, Copyright,
21373           CreateParams.cs, DockStyle.cs, DragAction.cs, DragDropEffects.cs,
21374           DragEventArgs.cs, DragEventHandler.cs, FlatStyle.cs, Form.cs,
21375           FrameStyle.cs, GiveFeedbackEventArgs.cs,
21376           GiveFeedbackEventHandler.cs, HelpEventArgs.cs,
21377           HelpEventHandler.cs, IContainerControl.cs, IDataObject.cs,
21378           IMessageFilter.cs, IWin32Window.cs, ImeMode.cs, InputLanguage.cs,
21379           InputLanguageChangedEventArgs.cs,
21380           InputLanguageChangedEventHandler.cs,
21381           InputLanguageChangingEventArgs.cs,
21382           InputLanguageChangingEventHandler.cs, InputLanguageCollection.cs,
21383           InvalidateEventArgs.cs, InvalidateEventHandler.cs,
21384           KeyEventArgs.cs, KeyEventHandler.cs, KeyPressEventArgs.cs,
21385           KeyPressEventHandler.cs, Keys.cs, Label.cs, LayoutEventArgs.cs,
21386           LayoutEventHandler.cs, MenuGlyph.cs, Message.cs, MouseButtons.cs,
21387           MouseEventArgs.cs, MouseEventHandler.cs, NativeWindow.cs,
21388           PaintEventArgs.cs, PaintEventHandler.cs, ProgressBar.cs,
21389           QueryAccessibilityHelpEventArgs.cs,
21390           QueryAccessibilityHelpEventHandler.cs,
21391           QueryContinueDragEventArgs.cs, QueryContinueDragEventHandler.cs,
21392           RightToLeft.cs, SWF.csproj, SWF.csproj.user, ScrollBar.cs,
21393           ScrollBars.cs, ScrollButton.cs, ScrollEventArgs.cs,
21394           ScrollEventHandler.cs, ScrollEventType.cs, ScrollableControl.cs,
21395           TODO, TODOAttribute.cs, UICues.cs, UICuesEventArgs.cs,
21396           UICuesEventHandler.cs, X11Structs.cs, XplatUI.cs,
21397           XplatUIDriver.cs, XplatUIStructs.cs, XplatUIWin32.cs,
21398           XplatUIX11.cs, lang.cs:
21399           - Initial check-in