In Test/System.Windows.Forms:
[mono-project.git] / mcs / class / Managed.Windows.Forms / System.Windows.Forms / ChangeLog
blob3cfa386d53bc4cff7cc72a0aba83c9d3a982ecb3
1 2006-12-30  Chris Toshok  <toshok@ximian.com>
3         * Control.cs (SetTopLevel): fix the exception raised by
4         SetTopLevel for child controls.
5         (set_Anchor): call UpdateDistances when setting the anchor type.
6         This fixes bug #80336.
8 2006-12-29  Gert Driesen  <drieseng@users.sourceforge.net>
10         * Theme.cs: For now, revert back to 8pt font.
12 2006-12-29  Everaldo Canuto  <everaldo@simios.org>
14         * MenuAPI.cs: Set popup as active when open a ContextMenu. 
15         Fixes #80395.
17 2006-12-29  Chris Toshok  <toshok@ximian.com>
19         * Control.cs: reorder the code in OnResize to give the same event
20         ordering as MS.
22 2006-12-29  Rolf Bjarne Kvinge  <RKvinge@novell.com>
24         * MdiClient.cs: Implemented MdiLayout for ArrangeIcons,
25         TileHorizontally and TileVertically.
26         
27 2006-12-29  Alexander Olk  <alex.olk@googlemail.com>
29         * ColorDialog.cs, FileDialog.cs, FolderBrowserDialog.cs,
30         FontDialog.cs, Mime.cs, MimeIcon.cs, OpenFileDialog.cs,
31         SaveFileDialog.cs, ThemeClearlooks.cs, ThemeNics.cs:
32         Corrected copyright and email adress.
34 2006-12-29  Gert Driesen  <drieseng@users.sourceforge.net>
36         * TreeNode.cs: On 2.0 profile, throw InvalidOperationException instead
37         of Exception in FullPath property if no TreeView is associated with
38         the TreeNode.
40 2006-12-29  Gert Driesen  <drieseng@users.sourceforge.net>
42         * Theme.cs: Marked default_font as private, and initialize it in ctor
43         with MS Sans Sarif 8.25 on 1.0 profile, and SystemFonts.DefaultFont
44         on 2.0 profile.
45         * ThemeGtk.cs: Removed default_font intialization.
46         * ThemeWin32Classic.cs: Removed default_font initialization.
48 2006-12-28  Chris Toshok  <toshok@ximian.com>
50         * Control.cs: fix a couple of place where we were creating handles
51         more aggressively than we should be.  Fixes ControlRefresh unit
52         tests.
54 2006-12-28  Chris Toshok  <toshok@ximian.com>
56         * Control.cs: contrary to what the comment said, Control.Dock does
57         not supercede Control.Anchor - the last one you assign to decides
58         the layout behavior.  so we need to keep track of which was the
59         last set.  Also, fix some of the affected property arguments in
60         PerformLayout calls, and remove an redundant parent.PerformLayout
61         call in OnResized.
63         Add a VisibleInternal property, which returns is_visible.  We
64         can/should get rid of all the usage of this field elsewhere.
66 2006-12-28  Rolf Bjarne Kvinge  <RKvinge@novell.com>
67         
68         * Control.cs: DoubleBuffered property reflects the OptimizedDoubleBuffer
69         control style, not DoubleBuffer. Added UseDoubleBuffering property
70         that indicates whether doublebuffering is enabled and supported.
71         (comment from and code based on Gert Driesen's patch in #80324).
72         Fixes #80324.
74 2006-12-28  Rolf Bjarne Kvinge  <RKvinge@novell.com>
75         
76         * Control.cs: Fixed a NRE.
78 2006-12-28  Rolf Bjarne Kvinge  <RKvinge@novell.com>
80         * TrackBar.cs: Fix SmallChange and LargeChange exceptions
81         for 2.0.
83 2006-12-28  Rolf Bjarne Kvinge  <RKvinge@novell.com>
85         * Control.cs: Rewrote double buffering, now a seperate
86         class handles all the buffering, no Graphics is disposed of
87         until the painting is finished (earlier implementation 
88         would crash if the control was resized in the OnPaint, 
89         since it would cause the double buffer to be recreated
90         and the old one disposed), a separate Graphics is 
91         created for every paint (MS behaviour and anyways the state
92         of the Graphics would have to be saved and restored otherwise)
93         
94         * XplatUIDriver.cs: 
95         * XplatUIX11.cs:
96         * XplatUI.cs: Added and implemented GetOffscreenGraphics 
97         so that we can get the graphics for the back buffer without
98         having to create a new one and remove the offscreen_dc parameter
99         from CreateOffscreenDrawable and DestroyOffscreenDrawable.
100         
101 2006-12-27  Carlos Alberto Cortez <calberto.cortez@gmail.com>
103         * ListView.cs: Add key-related 2.0 methods for CheckedItemCollection.
104         Also make virtual all the key-related methods.
106         * ListViewItem.cs: Make virtual the key related methods for
107         ListViewSubItemCollection.
109 2006-12-27  Carlos Alberto Cortez <calberto.cortez@gmail.com>
111         * ListView.cs:
112         * ListViewItem.cs:
113         * ThemeWin32Classic.cs:
114         * Theme.cs: Initial support for Tile view in ListView,
115         as well as the implementation of the required bits for it (Item
116         and Subitem).
118 2006-12-27  Gert Driesen  <drieseng@users.sourceforge.net>
120         * MonthCalendar.cs: On 2.0, throw ArgumentOutOfRangeException instead
121         of ArgumentException in MaxSelectionCount, MaxDate and MinDate.
122         Provide useful exception messages.
124 2006-12-27  Rolf Bjarne Kvinge  <RKvinge@novell.com>
126         * TrackBar.cs: Remove a warning.
127         * MonthCalendar.cs: Moved back to using Capture to hide the calendar
128         when used by DateTimePicker, fixes #80287. This also requires that 
129         MonthCalendar implements it's own drawing for the yearly updown control,
130         otherwise the Capture tracking would be too complicated. Removed the Click 
131         and DoubleClick events (according to comments they were hiding the base class
132         event to prevent them from beeing fired - MSDN only says MonthCalendar doesn't
133         raise these events, not that they cannot be raised. It is possible to raise 
134         them by calling OnClick and OnDoubleClick). Added two internal fields in 
135         HitTestInfo in order to track give more tracking info needed by MonthCalendar.
136         * ThemeWin32Classic.cs: Implement drawing of MonthCalendar's updown part.
137         * DateTimePicker.cs: Removed handling of MonthCalendar's LostFocus
138         event, no longer needed.
139         
140 2006-12-27  Gert Driesen  <drieseng@users.sourceforge.net>
142         * ScrollableControl.cs: In AutoScrollMinSize, only set AutoScroll to
143         true if new value differs from current value.
145 2006-12-27  Gert Driesen  <drieseng@users.sourceforge.net>
147         * Control.cs: ControlCollection.Count must be public. Fixed build of
148         unit tests.
150 2006-12-27  Gert Driesen  <drieseng@users.sourceforge.net>
152         * ListView.cs: Redraw when FullRowSelect is changed. Fixes bug #80379.
154 2006-12-27  Gert Driesen  <drieseng@users.sourceforge.net>
156         * ComboBox.cs: Mergable=>MergableProperty. Fixes build.
158 2006-12-26  Everaldo Canuto  <everaldo@simios.org>
160         * Control.cs: Invalidates control including when Width and Height is 
161         equal zero or is not visible, only Paint event must be care about 
162         this. Fixes #79913.
164 2006-12-26  Chris Toshok  <toshok@ximian.com>
166         * CurrencyManager.cs, PropertyManager.cs, BindingManagerBase.cs:
167         more corcompare work.
169         * DataGridView.cs: fix compiler warning.
171         * ColumnHeader.cs: some corcompare work, and also take the
172         opportunity to make the internal fields private.
174         * ListView.cs: fix the fallout from the above field change.
176 2006-12-26  Jonathan Pobst  <monkey@jpobst.com>
178         * ToolStripButton.cs, ToolStripComboBox.cs, ToolStripControlHost.cs,
179         ToolStripItem.cs, ToolStripProgressBar.cs, ToolStripSplitButton.cs,
180         ToolStripTextBox.cs: Fixes to events and corcompare.
182 2006-12-26  Everaldo Canuto  <everaldo@simios.org>
184         * ListView.cs: Call owner.OnMousexx event to propagate events from
185         item to ListView. Fixes #80367.
187 2006-12-26  Gert Driesen  <drieseng@users.sourceforge.net>
189         * ComboBox.cs: On 2.0, DropDownWidth throws ArgumentOutOfRangeException
190         if value is less than one. ItemHeight should not be set to a value
191         less than 1, and throw ArgumentOutOfRangeException on 2.0 profile. 
192         Removed extra tabs.
194 2006-12-26  Jonathan Pobst  <monkey@jpobst.com>
196         * ToolStripMenuItem.cs: Add ShortcutDisplayString for Moma.
197         * ToolStripStatusLabel.cs: Add Spring for Moma.
199 2006-12-26  Gert Driesen  <drieseng@users.sourceforge.net>
201         * DataGridView.cs: Fixed several NullReferenceException in On* methods.
202         Fixed code formatting. Removed debug code.
203         * DataGridViewTextBoxEditingControl.cs: Removed debug code.
205 2006-12-26  Gert Driesen  <drieseng@users.sourceforge.net>
207         * DataGridView.cs: Fixed GridColor, DefaultSize, DefaultCellStyle,
208         RowHeadersDefaultStyle, RowHeadersWidth to match MS. Throw
209         ArgumentOutOfRangeException if ColumnCount is negative. In 
210         ColumnHeadersHeight, throw ArgumentOutOfRangeException if height is
211         less than 4 or higher than 32768.
212         * DataGridViewCellStyle.cs: Fixed default value for NullValue.
213         Fixed FormatProvider to return CurrentCulture unless explicitly set.
214         Fixed IsFormatProviderDefault to return true if FormatProvider has
215         not been explicitly set.
217 2006-12-25  Chris Toshok  <toshok@ximian.com>
219         * Application.cs: add a couple of 2.0 events.
221 2006-12-25  Chris Toshok  <toshok@ximian.com>
223         * Control.cs: fix compiler warning.
225         * AxHost.cs: corcompare fixes.
227         * ApplicationContext.cs: corcompare fixes.
229 2006-12-25  Chris Toshok  <toshok@ximian.com>
231         * Control.cs: only update dist_right/dist_bottom if the
232         width/height is > 0.  this fixes anchored controls being resized
233         smaller until they disappear and then resized larger again.
235 2006-12-25  Chris Toshok  <toshok@ximian.com>
237         * Control.cs: a couple of changes.  Remove dist_left and dist_top,
238         since they're nothing more than X/Left and Y/Top, respectively.
240         Also, move back to a per-control Bitmap/Graphics for
241         DeviceContext, since using the static Hwnd.bmp/bmp_g is bad in the
242         MT case.  Go with a tiny bitmap though, 1x1, instead of Width x
243         Height.
245 2006-12-25  Miguel de Icaza  <miguel@novell.com>
247         * MessageBox.cs: Implemented overload that takes a new "bool
248         displayHelpButton" by adding a new internal field "show_help".
249         When clicked this will raise the HelpRequested on the owner or the
250         main form. 
252         From: 007dbe3ff0ca4729a4f5fcd1d8ab2a2e.txt
253         From: c935e12b95fe4dc1ae670e7f4dc5fd68.txt
255         * ListView.cs: Add support ColumnWidthChanged and
256         ColumnWidthChanging. 
258         Add support for ColumnReordered event.
259         (ReorderColumn): Add NET_2_0 specific support for cancelling the
260         reorder.
262         Very nice codebase!
264         * TextBoxBase.cs (GetLineFromCharIndex): Implement this method.
266         This is used by report f4ae0a88a0a244558aaadf017c9b9efe.
268 2006-12-24  Chris Toshok  <toshok@ximian.com>
270         * GridTablesFactory.cs: 2.0 corcompare work.
272         * ToolStripContainer.cs: add "override" to
273         ContextMenuStripChanged, and remove the local event object.
275         * ToolStripDropDown.cs: same with a couple properties.
277         * ToolStripPanel.cs: same with AutoSizeChanged event.
279         * TextBoxBase.cs: add "override" to AutoSizeChanged.
281         * Form.cs: add the remaining 2.0 events, and do some corcompare
282         attribute work.
284         * DateTimePicker.cs: add "new" to padding.
286         * ButtonBase.cs: use Control's use_compatible_text_rendering.
288         * ToolStripContentPanel.cs: use base.AutoSizeChanged.
290         * DataGridView.cs: PaddingChanged is overridden.
292 2006-12-24  Chris Toshok  <toshok@ximian.com>
294         * Control.cs: corecompare work here too.
296         * DataGridViewElement.cs, DataGridView.cs,
297         DataGridViewButtonCell.cs, DataGridViewRowCollection.cs,
298         DataGridViewImageColumn.cs, DataGridViewComboBoxColumn.cs,
299         DataGridViewImageCell.cs, DataGridViewCheckBoxCell.cs,
300         DataGridViewHeaderCell.cs, DataGridViewCell.cs: more corcompare
301         work.
303 2006-12-24  Miguel de Icaza  <miguel@novell.com>
305         * Control.cs: Switched the error message on the console for a
306         todo.  A review of the code will have to cope with this anyways
307         (since its a large feature, it is in our radar) and it was
308         producing too much output when running PDN.
310         * ToolStripComboBox.cs: Set the text when the SelectedIndex
311         changes.  Applications depend on this (PDN 2.72)
313 2006-12-23  Chris Toshok  <toshok@ximian.com>
315         * TableLayoutSettings.cs: finish up the corcompare work for this
316         class.
318 2006-12-23  Chris Toshok  <toshok@ximian.com>
320         * Control.cs: make SetImplicitBounds internal, do some futzing
321         with LayoutEngine so that it's available in 1.1, and remove the
322         entire duplicated code mess from PerformLayout.  Use
323         System.Windows.Forms.Layout.DefaultLayout instead.
325         * LayoutEngine.cs: make this class internal in 1.1, public in 2.0.
327 2006-12-23  Jonathan Pobst  <monkey@jpobst.com>
329         * Form.cs: Add MainMenuStrip property.
331 2006-12-23  Jonathan Pobst  <monkey@jpobst.com>
333         * Control.cs: Add ContextMenuStrip property and implementation.
334         Fix ContextMenu implementation to show menu centered on control when
335         activated using the keyboard instead of showing at screen (0,0).
337         * ToolStripDropDown.cs: Fix needed overload of Show ().
339 2006-12-23  Everaldo Canuto  <everaldo@simios.org>
341         * Menu.cs: Name property added for 2.0 profile.
342         
343 2006-12-23  Everaldo Canuto  <everaldo@simios.org>
345         * Menu.cs: Update information about FindMenuItem, method to be
346         implemented soon.
348 2006-12-23  Everaldo Canuto  <everaldo@simios.org>
350         * MenuAPI.cs: When deselect items deselect also selected subitems.
351         
352 2006-12-23  Everaldo Canuto  <everaldo@simios.org>
354         * MenuAPI.cs: When hides menu set Wnd to null, it prevents
355         FindSubItemByCoord to found itens that is not active, also an
356         cheking added to FindSubItemByCoord to search for items only 
357         in visible popup windows. Fixes #80274.
359 2006-12-22  Everaldo Canuto  <everaldo@simios.org>
361         * UserControl.cs: Remove MonoTodo and use InternalBorderStyle,
362         internal property, it be care about change ExStyle. 
364 2006-12-22  Andreia Gaita  <avidigal@novell.com>
366         * ContainerControl.cs: set activeControl for parent forms up the 
367         tree when the new activecontrol is a container.
368         When validating the active control, if it is a container, also
369         raise up the validation for it's active control. Fixes #80280
370         
371         * Control.cs: Add internal property flag and check to prevent
372         Focus events from getting raised when Select() is called for
373         a ContainerControl. There are still too many focus events being
374         raised at the moment though.
375         Cleaned up the code a bit.
377 2006-12-22  Rolf Bjarne Kvinge  <RKvinge@novell.com>
379         * Control.cs: Added all missing 2.0 events.and
380         fixed a couple of corcompare issues.
381         * TrackBar.cs: Implemented missing 2.0 bits.
382         * MonthCalendar.cs, 
383         * DateTimePicker.cs, 
384         * MdiClient.cs: Fixed some corcompare issues.
386 2006-12-21  Jonathan Pobst  <monkey@jpobst.com>
388         * ContextMenuStrip.cs, FlowLayoutPanel.cs, SplitContainer.cs,
389         SplitterPanel.cs: corecompare work.
391 2006-12-21  Jonathan Pobst  <monkey@jpobst.com>
393         * ToolStripContainer.cs, ToolStripDropDown.cs, StatusStrip.cs:
394         Clean up warnings for BackgroundImageChanged and PaddingChanged
395         events now that they are implemented in Control.cs.
397 2006-12-21  Jonathan Pobst  <monkey@jpobst.com>
399         * Control.cs: Make sure layout_engine isn't null before using it (2.0).
400         
401         * TableLayoutControlCollection.cs, TableLayoutPanel.cs, TableLayoutCellPosition.cs,
402         TableLayoutSettings.cs, TableLayoutStyleCollection.cs: Initial implementation
403         of TableLayoutPanel and supporting cast.
405 2006-12-21  Rolf Bjarne Kvinge  <RKvinge@novell.com>
407         * XplatUIWin32.cs: 
408         - GrabWindow now confines the mouse pointer to the confine window.
409         - Added Win32ClipCursor and Win32GetClipCursor.
411         * Control.cs: 
412         - Added CaptureWithConfine to be able to capture and confine 
413         mouse pointer.
414         
415         * InternalWindowManager.cs: 
416         - Call CaptureWithConfine instead of Capture if we're an
417         MdiChild (fixes #79982).
419 2006-12-21  Chris Toshok  <toshok@ximian.com>
421         * DataGrid.cs: guard against the initial state of selection, where
422         selection_start == -1.  make sure we only select from index >= 0.
423         Fixes bug #80291.
425 2006-12-21  Chris Toshok  <toshok@ximian.com>
427         * Control.cs: we don't need to be so draconian with
428         UpdateDistances, and we thusly don't need to call it before
429         calling PerformLayout in ResumeLayout.  Fixes bug #80289.
431 2006-12-21  Daniel Nauck  <dna@mono-project.de>
433         * ComboBox.cs,
434         TextBox.cs: Implemented AutoComplete properties.
436 2006-12-20  Chris Toshok  <toshok@ximian.com>
438         * DataGridView*.cs: some corecompare work.
440 2006-12-20  Jackson Harper  <jackson@ximian.com>
442         * XplatUIX11.cs: We need to hide the caret when deleting it,
443         otherwise you get carets left lying around everywhere.
444         * TextBoxBase.cs: Kill then redraw the caret when scrolling.  This
445         prevents getting some weird half drawn caret tracers when
446         scrolling.
447         * TextControl.cs: Attempt to reduce the number of times we need to
448         recreate the caret.
450 2006-12-20  Gert Driesen  <drieseng@users.sourceforge.net>
452         * MonthCalendar.cs: Fixed previous month button. Removed extra tabs.
454 2006-12-19  Rolf Bjarne Kvinge  <RKvinge@novell.com>
456         * DateTimePicker.cs:
457         - Implemented missing 2.0 bits.
458         - Changed some default values to match MS.
459         
460 2006-12-20  Jackson Harper  <jackson@ximian.com>
462         * TextBoxBase.cs: When changing the font across the document we
463         can't recalculate after changing each line, since that will cahnge
464         the line count.
465         - PreferredHeight is a little different than i thought.
466         - When backspacing, move the caret before we do the actual char
467         delete, because when that delete crosses a wrap boundary the
468         positional information will change.
470 2006-12-19  Rolf Bjarne Kvinge  <RKvinge@novell.com>
472         * Control.cs: Added some missing 2.0 bits: 
473         BackgroundImageLayout, BackgroundImageLayoutChanged, 
474         OnPaddingChanged, MouseClick, MouseDoubleClick, PaddingChanged and 
475         add IBindableComponent and IDropTarget implementation.
476         
477         * MonthCalendar.cs: 
478         - Added all missing 2.0 features:
479         BackgroundImageLayout, RightToLeftLayout, 
480         OnHandleDestroyed, RightToLeftLayoutChanged, 
481         BackgroundImageLayoutChanged, MouseClick, MouseDoubleClick,
482         PaddingChanged.
483         - Rewrote all the BoldDate code, it was completely broken.
484         - Fixed all the tests (the tests can now be re-enabled, the
485         problems were not with the tests, but with the control, it was
486         mostly broken).
487         
488         * DateTimePicker.cs: Changed the location where the 
489         MonthCalendar is shown.
490         
491 2006-12-19  Chris Toshok  <toshok@ximian.com>
493         * DataGridView.cs: add IDropTarget implementation.
495         * ToolStripPanel.cs: add IDropTarget implementation.
497 2006-12-19  Jackson Harper  <jackson@ximian.com>
499         * TextControl.cs: soft now means something different than what it
500         used to mean, we want to move the caret regardless of whether or
501         not this break was soft (would we really have wanted the caret
502         to not move with the break in the old context?)
503         * TreeView.cs: Make sure we factor in the vert scrollbar when
504         calculating the horizontal scrollbar's maximum.
506 2006-12-19  Andreia Gaita  <avidigal@novell.org>
508         * SendKeys.cs: Fix Send() behaviour, clear keys after sending,
509         check for keywords in alternate casing, close bug #80049.
511 2006-12-19  Chris Toshok  <toshok@ximian.com>
513         * ToolStripItem.cs: add the implementation of the 4 IDropTarget
514         methods (which all do nothing).
516         * IDropTarget.cs: add the 4 missing methods.
518 2006-12-19  Chris Toshok  <toshok@ximian.com>
520         * TableLayoutRowStyleCollection.cs: corcompare work.
521         
522         * TableLayoutSettings.cs: same.
524         * TableLayoutStyle.cs: same.
526         * TableLayoutColumnStyleCollection.cs: same.
528 2006-12-19  Jonathan Pobst  <monkey@jpobst.com>
530         * ColumnStyle.cs, RowStyle.cs, TableLayoutStyle.cs: Plumbing for
531         TableLayoutPanel I've had in my local tree for way too long.
533 2006-12-19  Miguel de Icaza  <miguel@novell.com>
535         * TableLayoutSettings.cs: Finish the public API (still needs all
536         the logic to update on changes). 
538         * TableLayoutPanelCellPosition.cs: new file.
539         
540         * TableLayoutRowStyleCollection.cs,
541         TableLayoutColumnStyleCollection, TableLayoutStyle.cs,
542         TableLayoutSettings.cs: Track the final 2.0 table api.
544 2006-12-19  Carlos Alberto Cortez <calberto.cortez@gmail.com>
546         * ColumnHeader.cs: Add Tag, Name, ImageKey, ImageIndex,
547         and Image List 2.0 members for ColummnHeader.
548         * ListView.cs: Add key-related 2.0 methods for
549         ColumnHeaderCollection.
551 2006-12-19  Gert Driesen  <drieseng@users.sourceforge.net>
553         * ListViewItem.cs: Changed AddRange overloads to match MS: throw
554         ArgumentNullException if items argument is null. Ignore null item in
555         arrays. Removed extra tabs.
557 2006-12-19  Gert Driesen  <drieseng@users.sourceforge.net>
559         * MonthCalendar.cs: Fixed InvalidCastException.
561 2006-12-19  Jackson Harper  <jackson@ximian.com>
563         * TextControl.cs: Don't increment the position here.
564         - When calculating char positions only add in the line break size
565         for hard line breaks.
567 2006-12-19  Andreia Gaita  <avidigal@novell.org>
569         * SendKeys.cs: Changed some things to match ms.net behaviour
570         when parsing shifted capital letters.
571         
572         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32, XplatUIOSX: 
573         Add window handle as parameter to SendInput. X11 needs the 
574         window handle, and the handle being passed      to it in the keys 
575         queue is the active control handle (which windows needs), not 
576         the window handle.
577         
578         XplatUIX11.cs, XplaUIX11-new.cs, X11Display: Implement SendInput 
579         to support SendKeys on X.       
580         
581         * X11Keyboard: Implement helper method to lookup a linux keycode
582         given the virtual keycode. Added table of keycode-2-virtualkey
583         values to support this.
585 2006-12-19  Carlos Alberto Cortez <calberto.cortez@gmail.com>
587         * ListView.cs: Add support for SelectedIndexCollection
588         and SelectedItemCollection 2.0 methods. Implement support
589         for ImageKey too.
590         * ListViewItem.cs: Add support for ListViewSubItemCollection
591         2.0 methods. Also, fix an incorrect behavior of AddRange method
592         (it shouldn't call Clear).
593         * ThemeWin32Classic.cs: Support for ListView.ImageKey 2.0 property.
595 2006-12-19  Jackson Harper  <jackson@ximian.com>
597         * RichTextBox.cs: 
598         * TextBoxBase.cs: New args for FormatText
599         * TextControl.cs: Rewrote the main drawing method, this version
600         feels a little easier to understand and debug to me.  Hopefully it
601         does to others also
602         - Fix FormatText to OR in the new formating values.  Added
603         FormatSpecified param, basically this works in the same way as
604         BoundsSpecified in Control.
605         - Set the caret properties when the caret is positioned.
606         - When wrapping text make sure that we calculate the width of the
607         last character
608         - when calculating alignments we might have wrapped down to the
609         next line, so don't search for an individual tag, search for the
610         end of the line
611         - We need to invalidate the selection area when we replace the
612         selection.
613         
614 2006-12-19  Daniel Nauck  <dna@mono-project.de>
616         * Application.cs: add Restart () 2.0 support
618 2006-12-18  Everaldo Canuto  <everaldo@simios.org>
620         * MenuItem.cs: Invalidate menu item rectangle after change Enable
621         property. Fixes #80268.
622         
623 2006-12-18  Everaldo Canuto  <everaldo@simios.org>
625         * MenuAPI.cs: Dont trigger select event when closes top menu
626         item. Fixes #80270.
628 2006-12-18  Everaldo Canuto  <everaldo@simios.org>
630         * MenuAPI.cs: When you click on menuitem only trigger onselect
631         event for top menu itens. Fixes #80271.
632         
633 2006-12-18  Rolf Bjarne Kvinge  <RKvinge@novell.com>
635         * MdiWindowManager.cs: Make IconicBounds depend on
636         the bottom of MdiClient, not the top (fixes #80267)
637         
638 2006-12-18  Rolf Bjarne Kvinge  <RKvinge@novell.com>
640         * MdiClient.cs: Added missing 2.0 attribute
642 2006-12-18  Carlos Alberto Cortez <calberto.cortez@gmail.com>
644         * ListViewItem.cs: Add Name and Tag 2.0 properties, as well
645         as IndexOfKey, ContainsKey, RemoveByKey and indexer 2.0.
647 2006-12-18  Everaldo Canuto  <everaldo@simios.org>
649         * MenuAPI.cs: Fix click when menuitem is not popup,
650         this regression was caused by last commit (#80272).
652 2006-12-17  Everaldo Canuto  <everaldo@simios.org>
654         * MenuAPI.cs: When a non-toplevel menuitem is clicked dont
655         fire click event or close menu. Fixes #80272.
657 2006-12-17  Daniel Nauck  <dna@mono-project.de>
659         * ListViewHitTestInfo.cs: add
661 2006-12-17  Daniel Nauck  <dna@mono-project.de>
663         * ButtonBase.cs: Added FlatButtonAppearance 2.0 support.
664         * FlatButtonAppearance.cs: add
665         * DockingAttribute.cs: add
667 2006-12-17  Chris Toshok  <toshok@ximian.com>
669         * DataGrid.cs: hook up MetaDataChanged event on the list manager,
670         and rebind our columns when it does - this way, if you make
671         changes to the DataTable (or set the Table attribute on a DataView
672         after setting it as the DataGrid's DataSource, the changes are
673         made visible.)  Fixes bug #80107.
675 2006-12-17  Daniel Nauck  <dna@mono-project.de>
677         * ListViewGroup.cs: add internal Location property for layouting.
678         * Theme.cs: add abstract ListViewGroupHeight function.
679         * ThemeWin32Classic.cs: implement ListViewGroupHeight function.
681 2006-12-16  Andreia Gaita  <avidigal@novell.com>
683         * TabControl.cs: Fixed checks for NET_2_0-specific exceptions.
684         Added reset of selected index to 0 when adding first tab page.
685         Fixes #80264
686         
687         * NumericUpDown.cs: Fix NET_2_0 check
689 2006-12-16  Daniel Nauck  <dna@mono-project.de>
691         * ListViewGroup.cs: fixed DefaultValueAttribute value
693 2006-12-16  Daniel Nauck  <dna@mono-project.de>
695         * AutoCompleteStringCollection.cs: add new AutoCompleteStringCollection 2.0 class
697 2006-12-15  Miguel de Icaza  <miguel@novell.com>
699         * Button.cs, ComboBox.cs, ScrollBar.cs, UserControl.cs,
700         TextBoxBase.cs, ListView.cs, ContainerControl.cs,
701         ScrollableControl.cs: Add a handful of methods that are
702         overwritten in 2.0 
704 2006-12-15  Chris Toshok  <toshok@ximian.com>
706         * XplatUIWin32.cs: initial implementation of the Reversible
707         drawing functions.  there are some problems.  DrawReversibleFrame
708         doesn't seem to work at all for Dashed FrameStyle, and in the
709         Thick case there are drawing errors at the corners (we probably
710         need to bind Rectangle instead of doing moveto/lineto's.)
712 2006-12-16  Andreia Gaita  <avidigal@novell.com>
713         
714         * SendKeys.cs: Implemented. SendKeys uses a new method in XPlatUI, SendInput, 
715         to send blocks of key messages. Send accumulates keys to send with Flush, 
716         while SendWait sends all keys immediately.
717                 
718         * XplaUI.cs, XplatUIDriver.cs, XplatUIOSX.cs, XplatUIWin32.cs, 
719         XplatUIX11.cs,  XplatUIX11-new.cs:
720         - Define SendInput and stubs for OSX and X11, implements Win32 with a call
721         to Win32 SendInput.
722         - Added INPUT support structures to XplatUIWin32 for Win32SendInput
723         
724         Tests:  It seems ms.net is hooking the keyboard to implement this, so doing unit
725         testing for ms.net on this class is very tricky, as the tests run too fast 
726         to allow the hook to release, essentially freezing the keyboard and the 
727         test. So, barring a win32 miracle, they'll be commited in the ms-notworking     
728         category :p
730 2006-12-16  Daniel Nauck  <dna@mono-project.de>
732         * Padding.cs: fixed serialization compability to MS ("_var" field names),
733                         added missing attributes.
735 2006-12-15  Daniel Nauck  <dna@mono-project.de>
737         * ListViewGroup.cs: Added missing attributes.
738         * ListViewGroupCollection.cs: Added missing attributes.
740 2006-12-15  Daniel Nauck  <dna@mono-project.de>
742         * ListViewItem.cs: fixed ListViewSubItem text property.
744 2006-12-15  Rolf Bjarne Kvinge  <RKvinge@novell.com>
745         
746         * Control.cs: Added missing 2.0 attributes
747         
748 2006-12-15  Rolf Bjarne Kvinge  <RKvinge@novell.com>
749         
750         * MdiClient.cs: Added missing 2.0 attribute.
751         * MonthCalendar.cs: Added some missing 2.0 attributes 
752         and properties.
753         
754 2006-12-15  Daniel Nauck  <dna@mono-project.de>
756         * ListView.cs: implemented ListViewItemCollection Add 2.0 support.
758 2006-12-15  Jonathan Pobst  <monkey@jpobst.com>
760         * MainMenu.cs: Add the new 2.0 constructor to help out people
761         using the MainMenu in VS2005.
763 2006-12-15  Rolf Bjarne Kvinge  <RKvinge@novell.com>
764         
765         * MdiChildContext.cs: Removed it, no longer used.
766         * MdiClient.cs: Added missing 2.0 attributes.
767         
768 2006-12-15  Rolf Bjarne Kvinge  <RKvinge@novell.com>
769         
770         * InternalWindowManager.cs: Fix a NullRef with previous 
771         changes for toolwindows.
772         
773 2006-12-15  Rolf Bjarne Kvinge  <RKvinge@novell.com>
775         * Control.cs: 
776         - Added AfterTopMostControl to allow for certain controls 
777         to always stay on top when normal controls are brought to 
778         front.
779         
780         * XplatUIWin32.cs: 
781         - (DrawInversibleRectangle): Get window rectangle from Win32 
782         in stead of from control, since Win32 doesn't calculate
783         screen coords correctly from control's Location if it 
784         have docked siblings.
785         
786         * MdiWindowManager.cs:
787         - Correct the control menu popup location when clicked on
788         the maximized form icon. (fixes #80223.1)
789         - Don't show moving rectangle if mouse hasn't moved from
790         the original clicked point.
791         - Removed FormGotFocus handler (not used).
792         - Calculate the control buttons location from the main
793         window's size and not client size (fixes #79770).
794         - Form is now closed when the form icon is double-clicked
795         (fixes #79775). 
796         - Correct NCCalcSize numbers a little bit (fixes #80223.2)
797         
798         * InternalWindowManager.cs:
799         - Moved some MDI-only methods to MdiWindowManager.
800         - Removed unused properties and methods.
801         - Unified method naming for methods handling wm messages.
802         - Moved all message handling to seperate methods for
803         each message.
804         
805         * ThemeWin32Classic.cs:
806         - DrawManagedWindowDecorations now draws the title bar 
807         with a gradient brush.
808         - Add a CPDrawButtonInternal that allows us to specify
809         light, normal and dark colors for the buttons (control 
810         buttons for MDI children were drawn with the same light
811         color as the background, therefore loosing the 3D effect).
812         
813         * SizeGrip.cs:
814         - Add a CapturedControl property that is used to 
815         determine the control to resize (defaults to parent). 
816         Needed for MdiClient, since its SizeGrip's parent is
817         MdiClient, but the control to resize is the main form.
818         
819         * MdiClient.cs:
820         - Set SizeGrip's CapturedControl to the main form in order
821         to resize the main form and not the MdiClient.
822         - Override AfterTopMostControl to leave the scrollbars 
823         always on top.
825 2006-12-15  Daniel Nauck  <dna@mono-project.de>
827         * ListView.cs: fixed ListViewItemCollection AddRange and
828                         implemented ListViewItemCollection AddRange 2.0 support.
830 2006-12-15  Daniel Nauck  <dna@mono-project.de>
832         * ListViewGroup.cs: Add.
833         * ListViewGroupCollection.cs: Add
834         * ListView.cs: Add ListViewGroup (Group) and ShowGroups 2.0 support.
835         * ListViewItem.cs: Add ListViewgroup (Group), ListViewGroups constructors and
836                                 stub for ImageKey 2.0 support.
838 2006-12-14  Mike Kestner  <mkestner@novell.com>
840         * ListView.cs: add text padding to the autocalculation for columns
841         of width -2.  Fixes #80207.
843 2006-12-14  Mike Kestner  <mkestner@novell.com>
845         * ListView.cs: add some index guarding for partial row navigation 
846         logic.  Fixes #80250.
848 2006-12-14  Mike Kestner  <mkestner@novell.com>
850         * ListView.cs: throw ArgumentExceptions when parented ListViewItems
851         are added or inserted to the collection.  Fixes #81099.
853 2006-12-13  Everaldo Canuto  <everaldo@simios.org>
855         * MenuAPI.cs: Closes menu when right click out side of popup
856         it fix problem in ContextMenu and MainMenu. Fixes #80252.
858 2006-12-13  Carlos Alberto Cortez <calberto.cortez@gmail.com>
860         * ListViewItem.cs: Fix dumb error.
862         * ListView.cs: Add Find and ContainsKey methods in 
863         ListViewItemCollection, and also return true for IsReadOnly
864         and IsFixedSize (changes for 2.0). 
866 2006-12-13  Gert Driesen  <drieseng@users.sourceforge.net>
868         * Control.cs: Allow Region to be set to null.
870 2006-12-13  Rolf Bjarne Kvinge  <RKvinge@novell.com>
872         * MdiWindowManager.cs: Remove unused (commented out) code.
873         * Form.cs: When the MdiChild is maximized, the form needs 
874         WM_NCMOUSELEAVE, so request it.
875         * InternalWindowManager.cs: 
876         - Added tooltips to control buttons.
877         - Removed duplicated control button handling code.
878         - Removed unused (commented out) code.
879         
880 2006-12-12  Everaldo Canuto  <everaldo@simios.org>
882         * MenuAPI.cs: Set cursor to default in popup menus, a XplatUI.SetCursor 
883         was used because we must set cursor without trigger ChangeCursor event
884         and without change Cursor control property. Fixes #79963.
886 2006-12-12  Andreia Gaita  <avidigal@novell.com>
887         
888         * Control.cs: Check if Region setter value is null, and ignore
890 2006-12-12  Jackson Harper  <jackson@ximian.com>
892         * TextControl.cs: We were almost always drawing one more line then
893         needed, since the GetLineByPixel will return the last line found
894         at that pixel. In most cases though, we were invalidating up to
895         the junction between two lines.
896         - Improve debug code.
898 2006-12-12  Chris Toshok  <toshok@ximian.com>
900         * XplatUI.cs: add static DrawReversibleFrame, DrawReversibleLine,
901         and FillReversibleRectangle.
903         * XplatUIDriver.cs: add abstract DrawReversibleFrame, DrawReversibleLine,
904         and FillReversibleRectangle.
906         * XplatUIWin32.cs: add stubs which do nothing for
907         DrawReversibleFrame, DrawReversibleLine, and
908         FillReversibleRectangle.
910         * XplatUIOSX.cs: add stubs which raise NIE for
911         DrawReversibleFrame, DrawReversibleLine, and
912         FillReversibleRectangle.
914         * XplatUIX11.cs: add working implementation for
915         DrawReversibleFrame, DrawReversibleLine, and
916         FillReversibleRectangle.
917         
918         * ControlPaint.cs: implement DrawReversibleFrame,
919         DrawReversibleLine, and FillReversibleRectangle, by calling into
920         the appropriate XplatUI method.
922 2006-12-11  Rolf Bjarne Kvinge  <RKvinge@novell.com>
924         * Form.cs: Make MdiClient have the focus even if it's
925         not selectable, since it should receive WM_KEY* and WM_MOUSE 
926         messages. Fixes #79907.
927         
928 2006-12-11  Rolf Bjarne Kvinge  <RKvinge@novell.com>
930         * Hwnd.cs: Save the CreateParams.ExStyle so that it can be
931         queried after the window is created.
932         
933         * XplatUIX11.cs: Added SendParentNotify to implement 
934         WM_PARENTNOTIFY logic. Fixes #79965.
935         
936         * Control.cs: Added MakeParam.
937         
938 2006-12-11  Rolf Bjarne Kvinge  <RKvinge@novell.com>
940         * MdiClient.cs: Resume Layout before setting window
941         states (fixes #80201).
943 2006-12-11  Rolf Bjarne Kvinge  <RKvinge@novell.com>
945         * MenuAPI.cs: Deselect a menu item after performing
946         the click (fixes #80197).
948 2006-12-11  Jackson Harper  <jackson@ximian.com>
950         * TextBoxBase.cs: We need to cap this value, since Maximum -
951         ViewPortHeight can be less than zero.
952         - Only do selection with the left mouse button.
953         * TextBox.cs: Don't tell the world that we have a context menu.
954         * Control.cs: New method so that we can control whether or not the
955         context menu is visible outside MWF.
957 2006-12-11  Everaldo Canuto  <everaldo@simios.org>
959         * ToolBarButton.cs: Fix text positon. 
961 2006-12-11  Miguel de Icaza  <miguel@novell.com>
963         * ProgressBar.cs (MarqueeAnimationSpeed): Add stub.
965         * Control.cs (DoubleBuffered): Add implementation.
967         * Application.cs (OpenForms): Add.
969 2006-12-11  Jonathan Pobst  <monkey@jpobst.com>
971         * Form.cs: Use opacity instead of Opactiy to determine if we need
972         to set the WS_EX_LAYERED bit.  [Fixes bug #80185]
974 2006-12-11  Jonathan Pobst  <monkey@jpobst.com>
976         * Control.cs: Fix NRE if Control.Site was set to null.
978 2006-12-11  Chris Toshok  <toshok@ximian.com>
980         * Control.cs: ControlCollection.Remove should return if the arg is
981         null, and ControlCollection.SetChildIndex should raise a ANE.
983 2006-12-11  Gert Driesen  <drieseng@users.sourceforge.net>
985         * Control.cs: Verify value set for Dock property. Code formatting
986         updates.
988 2006-12-11  Jackson Harper  <jackson@ximian.com>
990         * TextControl.cs: Draw the caret and the selection when a flag is
991         set on the owner.
992         * TextBoxBase.cs: We want to draw the caret and the selection for
993         TextBox but not for TextBoxBase.
994         - If the window is resized and scrolling is no longer needed (the
995         whole doc is visible) set the scroll position to zero.
996         - The default SelectWord (the one TextBox uses) should move the
997         caret to the end of the word.
998         - SelectAll moves the caret to the end of the selection.
999         * TextBox.cs: We don't selectall on focus, we just do it when the
1000         control is created.
1001         
1002 2006-12-11  Mike Kestner  <mkestner@novell.com>
1004         * ComboBox.cs: stub in a 2.0 override for ProcessKeyEventArgs.
1006 2006-12-11  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1008         * ListView.cs: Add Insert, IndexOfKey, RemoveByKey and indexer 
1009         2.0 support.
1010         * ListViewItem.cs: Add Name 2.0 property.
1012 2006-12-11  Andreia Gaita  <avidigal@novell.com>
1014         * TabControl.cs: Set visibility on selected or default tab 
1015         when tabcontrol handle is created, so that it's contents
1016         actually show up (duh). Fixes #80193
1017         Don't redraw the control if there is no handle created, as
1018         the selected index might be completely invalid. Added some tests
1019         to check for this.
1021 2006-12-11  Everaldo Canuto  <everaldo@simios.org>
1023         * ToolBar.cs: Uses maximun width and height of all buttons as 
1024         button rectangle when ButtonSize specified, it looks strange but
1025         is what happens in Win32. Fixes #80189.
1027 2006-12-11  Jackson Harper  <jackson@ximian.com>
1029         * TextControl.cs: Need to track undo levels ourself, since
1030         compound actions will mess them up.
1032 2006-12-10  Andreia Gaita  <avidigal@novell.com>
1034         * TabControl.cs: Raise SelectedIndexChanged for 1.1 if the
1035         SelectedIndex value is changed (even if it's not valid).
1036         Reset SelectedIndex to 0 when the handle is created and if
1037         the current index is invalid.
1038         Fixes SelectdeIndex unit tests and #80128
1040 2006-12-08  Chris Toshok  <toshok@ximian.com>
1042         * DataGrid.cs (set_CurrentCell): because EnsureCellVisibility
1043         calls EndEdit, it needs to be called before we set current_cell to
1044         its new value.  Otherwise, we end up committing the value in the
1045         textbox to the new cell as well.  Fixes bug #80160.
1047 2006-12-08  Chris Toshok  <toshok@ximian.com>
1049         * Form.cs (set_CancelButton): if the button's DialogResult is
1050         None, set it to Cancel.  Fixes bug 80180.
1052 2006-12-08  Jackson Harper  <jackson@ximian.com>
1054         * TextBoxBase.cs: Ugh, ClientSize can be 0,0 sometimes, so we need
1055         to watch ourselves when setting the canvas size and setting the
1056         scrollbar values.
1058 2006-12-08  Chris Toshok  <toshok@ximian.com>
1060         * DataGrid.cs: comment out the two MakeTransparent calls for the
1061         time being so people using trunk (and not 1.2.2) on windows can
1062         actually use the datagrid.  This deals with bug #80151.
1064 2006-12-08  Jonathan Pobst  <monkey@jpobst.com>
1066         * ThemeWin32Classic.cs: Change ButtonBase_DrawImage to use the
1067         Graphics.DrawImage (image, int, int, int, int) overload instead
1068         of Graphics.DrawImage (image, int, int).  GDI+ can't figure out
1069         the dpi difference and was blurring images it drew.
1070         [Fixes bug #79960]
1072 2006-12-08  Chris Toshok  <toshok@ximian.com>
1074         * ThemeWin32Classic.cs (DataGridPaintRows): handle case where
1075         rowcnt is 0 (such as with an empty datasource), and make sure we
1076         initialize not_usedarea.Y to cells.Y, so we don't draw over the
1077         other areas (caption, parent row, etc, etc).  Fixes bug #80095.
1079 2006-12-08  Chris Toshok  <toshok@ximian.com>
1081         * DataGridColumnStyle.cs (SetDataGrid): don't try to access a null
1082         grid.
1084 2006-12-08  Chris Toshok  <toshok@ximian.com>
1086         [ Fixes bug #80167 ]
1087         
1088         * ThemeWin32Classic.cs: don't draw the image if the button's flat
1089         style is FlatStyle.System.
1091         * ButtonBase, ThemeClearlooks.cs, ThemeGtk.cs, ThemeNice.cs: make
1092         ButtonBase.flat_style private, and switch uses of it to the public
1093         property.
1094         
1095 2006-12-08  Chris Toshok  <toshok@ximian.com>
1097         [ Fixes bug #80121 ]
1098         
1099         * ThemeWin32Classic.cs: center the caption text in the datagrid
1100         when we draw it.
1102         * DataGrid.cs: lessen the amount we add to the caption height from
1103         6 to 2.  6 was making it huge.
1105 2006-12-08  Andreia Gaita  <avidigal@novell.com>
1107         * UpDownBase: Handle MouseWheel call directly instead of capturing
1108         the inner textbox's OnMouseWheel. Fixes #80166
1110 2006-12-08  Jackson Harper  <jackson@ximian.com>
1112         * TextControl.cs: We need to invalidate the textbox when we empty
1113         it (how had this not been discovered before?)
1115 2006-12-08  Jackson Harper  <jackson@ximian.com>
1117         * TextBoxBase.cs: Reworked the mouse down code so I could get it
1118         to behave like MS, we now ignore the eventargs.Click and just
1119         track state ourself, which we were already doing anyways.
1120         - Constrain the double click handler to the double click size.
1121         
1122 2006-12-08  Chris Toshok  <toshok@ximian.com>
1124         * DataGrid.cs: the mousewheel code shouldn't try to scroll in a
1125         direction if that scrollbar isn't shown.  fixes bug #80158.
1127 2006-12-08  Andreia Gaita  <avidigal@novell.com>
1129         * NumericUpDown.cs: Update value on getter. Fixes #79950
1131 2006-12-08  Chris Toshok  <toshok@ximian.com>
1133         * MenuItem.cs: add back in the event cloning code.  I didn't know
1134         how to do it in the face of the EventHandlerList work i'd done
1135         last week.  Fixes bug #80183.
1137 2006-12-08  Jonathan Pobst  <monkey@jpobst.com>
1139         * Control.cs: Add an invalidate to the BackgroundImage setter.
1140         [Fixes 80184]
1142 2006-12-07  Jonathan Pobst  <monkey@jpobst.com>
1144         * ToolStrip*: Add some small properties reported by MoMA, fix event
1145         firing and default properties based off of unit tests, and add some
1146         attributes based off of the class status page.
1148 2006-12-07  Jackson Harper  <jackson@ximian.com>
1150         * TextBoxBase.cs: Take HideSelection into account when determining
1151         whether or not to show the selection.
1152         * RichTextBox.cs: After inserting the RTF into the document move
1153         the cursor to the beginning of the document.
1155 2006-12-07  Jonathan Pobst  <monkey@jpobst.com>
1157         * Control.cs: Remove static ArrayList "controls" which maintained
1158         a reference to every control created.
1159         * Application.cs: Create a static FormCollection to maintain a reference
1160         to every form created.  Use it in places that formerly enumerated through
1161         the controls one looking for forms.
1162         * Form.cs: Add and remove self from above FormCollection.
1164 2006-12-07  Alexander Olk  <alex.olk@googlemail.com>
1166         * MimeIcon.cs: gdk_pixbuf_save_to_buffer is part of libgdk-pixbuf,
1167           not libgdk (though it makes me wonder why I didn't have any
1168           problems)
1170 2006-12-07  Chris Toshok  <toshok@ximian.com>
1172         [ you had to know this was coming after that last commit...]
1173         
1174         * XplatUIX11.cs: implement the 3 Offscreen functions in terms of
1175         XPixmaps (CreateOffscreenDrawable maps to XCreatePixmap,
1176         DestroyOffscreenDrawable to FreePixmap, and BlitFromOffscreen to
1177         XCopyArea).
1179 2006-12-07  Chris Toshok  <toshok@ximian.com>
1181         * XplatUI.cs: add 3 calls (CreateOffscreenDrawable,
1182         DestroyOffscreenDrawable, and BlitFromOffscreen) that encompass
1183         all the behavior we need for double buffering.
1185         * XplatUIDriver.cs: implement the 3 double buffer methods using a
1186         client side Bitmap, just like the old Control-based double buffer
1187         code did.  The methods are virtual, so each XplatUI driver
1188         subclass can replace the implementation to use a faster, platform
1189         specific approach.
1191         * Control.cs: make use of the 3 Offscreen XplatUI calls in the
1192         double buffer code, and clean things up a bit in the process.
1194 2006-12-06  Chris Toshok  <toshok@ximian.com>
1196         * Control.cs: reindent WndProc.
1198 2006-12-06  Chris Toshok  <toshok@ximian.com>
1200         [ I wanna be like BenM when I grow up ]
1201         
1202         * Hwnd.cs: create a single static Graphics object on the static
1203         Bitmap we create.  use this for our text measurements.
1205         * Control.cs (DeviceContext): stop using the backbuffer's dc_mem.
1206         This was causing us to allocate a backbuffer for every control,
1207         even when it wasn't flagged as double buffered.  Instead use the
1208         single graphics instance.  This might have implications for
1209         multithreaded applications.  If we run into problems we can switch
1210         to creating 1 Graphics per control, on the static Hwnd bitmap.
1212         this change nets us a 7M savings in private dirty mappings when
1213         running FormsTest.exe.
1215 2006-12-06  Chris Toshok  <toshok@ximian.com>
1217         * ListView.cs: the BackgroundImage override is just to set
1218         attributes.  chain up to base.BackgroundImage.
1220         * RichTextBox.cs: same.
1222         * ToolBar.cs: same, but we need to also redraw the toolbar when it
1223         changes, so instead a handler for BackgroundImageChanged.
1224         
1225         * Control.cs: make background_image private.
1227 2006-12-06  Chris Toshok  <toshok@ximian.com>
1229         * ScrollBar.cs: change the assignment of cursor to Cursor.  not
1230         sure we even need this assignment, but roll with it for now.
1232         * Control.cs: make the cursor field private.
1234 2006-12-06  Chris Toshok  <toshok@ximian.com>
1236         * Form.cs: we don't need to explicitly set ImeMode to
1237         ImeMode.NoControl - that's a natural fallout of Control.ImeMode's
1238         behavior in the face of ImeMode.Inherit.
1240         * ButtonBase.cs: change DefaultImeMode to ImeMode.Disable, and
1241         change the ctor's assignment to use ImeMode instead of ime_mode.
1243         * Control.cs (get_ImeMode): don't assume DefaultImeMode ==
1244         ImeModeInherit.  Only check for the parent's imemode (and return
1245         NoControl if there is no parent) if ime_Mode == ImeMode.Inherit.
1246         This fixes the button unit test, which sets both ImeMode and
1247         DefaultImeMode to ImeMode.Disable.
1249         also make the ime_mode field private.
1251 2006-12-06  Chris Toshok  <toshok@ximian.com>
1253         * Control.cs: make control_style private.
1255         * TextBoxBase.cs: fix the HandleClick override.  it was explicitly
1256         setting the styles to true, then setting them to false instead of
1257         reverting to their previous values.
1259         also, call SetStyle on the scrollbars instead of using
1260         control_style directly.
1262 2006-12-06  Jonathan Pobst  <monkey@jpobst.com>
1264         * FormCollection.cs: Implement. [2.0]
1266 2006-12-06  Chris Toshok  <toshok@ximian.com>
1268         * Control.cs: make tab_stop private.
1270         * Label.cs: set TabStop, not tab_stop.  reformat some event
1271         add/remove methods to make them more compact.
1273 2006-12-06  Chris Toshok  <toshok@ximian.com>
1275         * RadioButton.cs: fix TabStop handling.
1277 2006-12-06  Chris Toshok  <toshok@ximian.com>
1279         * TextBox.cs: remove the explicit assignments to has_focus.
1280         Control does that.
1282         * ButtonBase.cs: remove the assignment to has_focus.  Control will
1283         manage that.
1284         
1285 2006-12-06  Chris Toshok  <toshok@ximian.com>
1287         * ButtonBase.cs: remove all uses of is_enabled from this code.
1288         it's always true when any of the code containing the checks is
1289         executed.
1291 2006-12-06  Chris Toshok  <toshok@ximian.com>
1293         * ImageList.cs: reinstate the ShouldSerialize*/Reset* methods,
1294         with different semantics (some are present in both 1.1 and 2.0
1295         profiles) so that we match MS's behavior in our unit tests.
1297 2006-12-06  Jackson Harper  <jackson@ximian.com>
1299         * TextControl.cs: Make this operation undoable.
1300         * TextBoxBase.cs: Factor the border width into the preferred
1301         height.
1302         - implement Modified as per the spec.
1304 2006-12-06  Chris Toshok  <toshok@ximian.com>
1306         * Timer.cs, Control.cs, Menu.cs: make control_tag private.
1308 2006-12-06  Chris Toshok  <toshok@ximian.com>
1310         * Control.cs: make right_to_left and context_menu fields private.
1312 2006-12-06  Chris Toshok  <toshok@ximian.com>
1314         * AccessibleObject.cs, Control.cs, XplatUIX11GTK.cs,
1315         XplatUIX11.cs, Form.cs, RadioButton.cs, ScrollableControl.cs: make
1316         Control.child_controls private.  switch all uses over to
1317         Control.Controls.
1319 2006-12-06  Chris Toshok  <toshok@ximian.com>
1321         * System.Windows.Forms/GroupBox.cs,
1322         System.Windows.Forms/AccessibleObject.cs,
1323         System.Windows.Forms/ErrorProvider.cs,
1324         System.Windows.Forms/Control.cs,
1325         System.Windows.Forms/UpDownBase.cs,
1326         System.Windows.Forms/ScrollBar.cs,
1327         System.Windows.Forms/DateTimePicker.cs,
1328         System.Windows.Forms/Form.cs, System.Windows.Forms/Label.cs,
1329         System.Windows.Forms/ToolTip.cs,
1330         System.Windows.Forms/RadioButton.cs,
1331         System.Windows.Forms/LinkLabel.cs,
1332         System.Windows.Forms/Splitter.cs,
1333         System.Windows.Forms/TextBoxBase.cs,
1334         System.Windows.Forms/ToolStripTextBox.cs,
1335         System.Windows.Forms/ContainerControl.cs,
1336         System.Windows.Forms/ThemeWin32Classic.cs,
1337         System.Windows.Forms/SizeGrip.cs,
1338         System.Windows.Forms/ToolStripDropDown.cs,
1339         System.Windows.Forms/ScrollableControl.cs: Make Control.parent
1340         private.  switch all uses over to Control.Parent.
1342 2006-12-06  Chris Toshok  <toshok@ximian.com>
1344         * RichTextBox.cs: don't assign to has_focus in GotFocus/LostFocus.
1345         Control does this before calling emitting these events.
1347         * TabControl.cs: same.
1349         * ThemeWin32Classic.cs: use Control.ClientRectangle instead of
1350         Control.client_rect.
1352         * ButtonBase.cs: use the ClientSize property instead of the
1353         client_size field.
1355         * ScrollableControl.cs: same.
1357         * Control.cs: another pass at making properties private.  also,
1358         move the initialization of tab_stop to the ctor.
1360 2006-12-05  Andreia Gaita <avidigal@novell.com>
1362         * TabControl.cs: Let the selected index be set freely if the 
1363         control handle is not yet created.
1365 2006-12-05  Jonathan Pobst  <monkey@jpobst.com>
1367         * Control.cs: Revert dist_top, dist_right, and dist_bottom to 
1368         internal until I can rewrite DefaultLayout.
1369         * ToolStrip.cs: Fix build error and some general cleaning.
1370         * ToolStripControlHost.cs, SplitterPanel.cs, DataGridView.cs:
1371         Fix build errors caused by making some of Control's fields private.
1373 2006-12-05  Jackson Harper  <jackson@ximian.com>
1375         * TextControl.cs: Redo Insert a little so that it use IndexOf
1376         instead of Split, this prevents it from messing up on things like
1377         \n\n\n. Also more effecient since the split array doesn't need to
1378         be created.
1379         * TextBoxBase.cs: AppendText doesnt handle multiline and non
1380         multiline text differently, this is the first of many fixes that
1381         will make multiline/non-multiline the same thing as far as the
1382         TextBoxBase is concerned.
1383         - Don't split the text and insert lines, this can lose some line
1384         endings (like is the last line a soft or hard break). Instead use
1385         the new Insert.
1386         - Fix an off by one when combining all the lines in the Text
1387         getter.
1388         - Remove separate multiline handling from the Text getter/setter.
1390 2006-12-05  Chris Toshok  <toshok@ximian.com>
1392         * ButtonBase.cs: a few changes:
1394         - don't reinitialize internal Control fields in the ctor when they
1395         have the same values as Control sets them.
1397         - don't set has_focus in OnGotFocus/OnLostFocus.  Control does
1398         this before calling those methods.
1400         - we don't need to call Refresh for anything.  use Invalidate
1401         instead.
1403         - OnEnabledChanged doesn't need to redraw at all - Control.cs
1404         calls Refresh in its OnEnabledChanged.
1405         
1406         - several of the events we were registered for in the ctor to
1407         redraw ourselves already include calls to Invalidate in the
1408         property setters that raise the events.  remove the extra
1409         invalidation.
1411         - reformat a switch statement that was 83274658 columns wide.
1412         
1413 2006-12-05  Mike Kestner  <mkestner@novell.com>
1415         * ComboBox.cs: fix a unit test regression from a TextBox
1416         SelectionLength return of -1 when there's no selection.  
1418 2006-12-05  Chris Toshok  <toshok@ximian.com>
1420         * Control.cs, Button.cs, ThemeGtk.cs, Form.cs, ListView.cs,
1421         ThemeWin32Classic.cs, SizeGrip.cs, ToolBar.cs: first pass at
1422         cleaning up some of the internal Control fields being used by
1423         subclasses.
1425 2006-12-05  Mike Kestner  <mkestner@novell.com>
1427         * ComboBox.cs: fix some Simple mode regressions.  Set Visible on the
1428         listbox after AddImplicit calls since it defaults to hidden. Add a 
1429         hack to preserve requested heights across DropDownStyle changes.
1431 2006-12-05  Jonathan Pobst  <monkey@jpobst.com>
1433         * PropertyGrid.cs: Hide FindFirstItem method from public API.
1435 2006-12-05  Chris Toshok  <toshok@ximian.com>
1437         * DataGridView.cs: fix compiler warnings.
1439         * PrintControllerWithStatusDialog.cs: same.
1441         * ToolBar.cs: same.
1443         * FolderBrowserDialog.cs: same.
1445         * Splitter.cs: same.
1447         * DataGridViewComboBoxCell.cs: same.
1449         * XplatUIWin32.cs: same.
1451         * PictureBox.cs: same.
1453         * Win32DnD.cs: same.
1455         * PageSetupDialog.cs: same.
1457         * FileDialog.cs: same.
1459         * PrintDialog.cs: same.
1461         * DataGridTextBoxColumn.cs: same.
1463         * DrawTreeNodeEventArgs.cs: same (and fix corcompare)
1465 2006-12-05  Chris Toshok  <toshok@ximian.com>
1467         * TextBox.cs, CheckedListBox.cs, MonthCalendar.cs, Menu.cs,
1468         MainMenu.cs, ListView.cs, LabelEditTextBox.cs, ToolBar.cs: more
1469         System.ComponentModel.EventHandlerList work.
1471 2006-12-05  Jonathan Chambers  <joncham@gmail.com>
1473         * DrawTreeNodeEventArgs.cs: Added.
1475 2006-12-05  Rolf Bjarne Kvinge  <RKvinge@novell.com>
1476         
1477         * InternalWindowManager.cs: Remove an unused field.
1478         
1479 2006-12-05  Rolf Bjarne Kvinge  <RKvinge@novell.com>
1481         * InternalWindowManager.cs:
1482         - Save the point where the title bar is clicked.
1483         
1484         * MdiWindowManager.cs:
1485         - Only allow moving of the window as long as the 
1486         clicked point on the title bar does not get out of
1487         MdiClient's rectangle. Fixes #79982.
1488         
1489         * MdiClient.cs:
1490         - Added Horizontal/VerticalScrollbarVisible.
1491         - Simplified the scrollbar sizing algorithm.
1492         - Cache the difference in scrolled value in
1493         H/VBarValueChanged and move the calculation out
1494         of the for loop.
1496 2006-12-05  Rolf Bjarne Kvinge  <RKvinge@novell.com>
1498         * Control.cs: Make the Console.WriteLine in WndProc 
1499         write more info.
1501 2006-12-05  Chris Toshok  <toshok@ximian.com>
1503         * ToolStripManager.cs, ToolStripButton.cs,
1504         ToolStripContentPanel.cs, ToolStripComboBox.cs, ToolStrip.cs,
1505         ToolStripMenuItem.cs, ToolStripItem.cs, ToolStripControlHost.cs,
1506         ToolStripSplitButton.cs, ToolStripSeparator.cs,
1507         ToolStripRenderer.cs, ToolStripDropDownItem.cs,
1508         ToolStripProgressBar.cs, ToolStripContainer.cs,
1509         ToolStripTextBox.cs, ToolStripPanel.cs, ToolStripDropDown.cs: move
1510         to using System.ComponentModel.EventHandlerList.
1512 2006-12-04  Chris Toshok  <toshok@ximian.com>
1514         * LinkLabel.cs: fix up compiler warnings.
1516         * TableLayoutSettings.cs: same.
1518         * TreeView.cs: same.
1520         * ToolBar.cs: same.
1522         * TabControl.cs: same.
1524         * RichTextBox.cs: same.
1526         * ListViewItem.cs: same.
1528         * PropertyGrid.cs: same.
1530         * DataGridViewRowPostPaintEventArgs.cs: corcompare fix.
1532         * ToolTip.cs same.
1534         * TextRenderer.cs: fix up compiler warnings.
1536         * Label.cs: same.
1538         * Form.cs: corcompare fixes.
1540         * PictureBox.cs: fix up compiler warnings.
1542         * ImageListStreamer.cs: same.
1544         * TrackBar.cs: corcompare fix.
1546         * Control.cs: fix up compiler warnings.
1548         * SplitterPanel.cs: same.
1550         * NumericTextBox.cs: same.
1552         * ImageList.cs: same.
1554         * StatusStrip.cs: same.
1556         * ProgressBar.cs: corcompare fix.
1558         * ToolStripButton.cs: fix up compiler warnings.
1560         * ToolStripStatusLabel.cs: same.
1562         * ToolStripSplitButton.cs: same.
1564         * ToolStripSeparator.cs: same.
1566         * ToolStripProgressBar.cs: same.
1568         * ToolStripDropDownMenu.cs: same
1570         * ToolStripDropDown.cs: same.
1572         * ToolStripDropDownButton.cs: same.
1574         * ToolStrip.cs: same.
1576         * ToolStripControlHost.cs: same.
1578         * ToolStripContentPanel.cs: same.
1580         * ToolStripDropDown.cs: same.
1582         * ToolStripContainer.cs: same.
1584         * ToolStripPanel.cs: same, and add "new" where we need it to work
1585         with the new ArrangedElementCollection.
1587         * ToolStripItemCollection.cs: add "new" where we need it to work
1588         with the new ArrangedElementCollection.
1590 2006-12-04  Andreia Gaita <avidigal@novell.com>
1592         * TabControl.cs: Fix default tab selection to after TabControl
1593         gets focus and not before. Fixes #80128
1595 2006-12-04  Chris Toshok  <toshok@ximian.com>
1597         * DataGridTableStyle.cs: remove the gross calling of
1598         datagrid.Refresh from here.  It's a broken idea and it doesn't
1599         work anyway.
1601         * DataGrid.cs: instead, just register/unregister from the
1602         DataGridTableStyle events in CurrentTableStyle.  we play it
1603         conservatively and EndEdit + CalcAreasAndInvalidate on any event,
1604         even though some would most likely not require it.  Fixes bug
1605         #80115 (and one portion of #80117 as a side effect).
1607 2006-12-04  Chris Toshok  <toshok@ximian.com>
1609         * DataGrid.cs (set_CaptionVisible): EndEdit before doing the work
1610         so the textbox (if any) goes away.  Fixes bug #80117.
1612 2006-12-04  Chris Toshok  <toshok@ximian.com>
1614         * DataGridColumnStyle.cs: set the column's readonly property
1615         initially based on the property descriptor's IsReadOnly.  Fixes
1616         bug #80044.
1618 2006-12-04  Chris Toshok  <toshok@ximian.com>
1620         * ComboBox.cs: wrap the dropdown style changing work in
1621         SuspendLayout/ResumeLayout.  Fixes bug #79968.
1623 2006-12-04  Jackson Harper  <jackson@ximian.com>
1625         * TextBoxBase.cs: Fix off by one, since these are one-based.
1626         * TextBox.cs: Select all the text when we get focus.  The TextBox
1627         does this but the RTB does not.
1629 2006-12-04  Chris Toshok  <toshok@ximian.com>
1631         * DataGridTextBoxColumn.cs: remove some spew.
1633         * DataGridColumnStyle.cs (SetColumnValueAtRow): this seems right
1634         but some part of me is saying "it shouldn't be here.."  At any
1635         rate, it fixes bug #80046.  Call IEditableObject.EndEdit after
1636         setting the value.
1638 2006-12-04  Chris Toshok  <toshok@ximian.com>
1640         * DataGridColumnStyle.cs (SetDataGrid): call CheckValidDataSource
1641         to reassign the propertydescriptor.
1643 2006-12-04  Jackson Harper  <jackson@ximian.com>
1645         * TextBoxBase.cs:
1646         * TextControl.cs: Remove some unused variables.  Maybe this will
1647         patch things up between mike and I.
1648         - don't split lines less then one char wide, if the viewport is
1649         that small text won't be visible anyways.
1650         
1651 2006-12-04  Jackson Harper  <jackson@ximian.com>
1653         * TextBoxBase.cs: Default selection length is -1, need to do some
1654         more testing on windows to see when this is used for the property.
1655         - Redid the Lines [] property to that we properly remove soft line
1656         breaks
1657         - added support for preserving carriage returns
1658         -  CanUndo is not a variable like 'is undo enabled' it just returns
1659         true if there is undo operations available.
1660         - AppendText doesn't need to grab the last tag itself anymore,
1661         this happens automatically when we move the cursor.
1662         * TextControl.cs: Add CompoundActions to the undo class. This
1663         allows combining the other operations into one big option.  ie a
1664         paste will combine { delete old, insert new, move cursor }
1665         - Add InsertString undo operation
1666         - New method for deleting multiline text
1667         - Add carriage returns to lines. So we can preserve carriage
1668         returns when text is 'roundtripped'
1670 2006-12-04  Chris Toshok  <toshok@ximian.com>
1672         * DataGrid.cs (CalcCellsArea): cells_area.Width/Height are at a
1673         minimum 0.  Fixes the scrollbar exception in bug #80136.
1675 2006-12-04  Rolf Bjarne Kvinge  <RKvinge@novell.com>
1677         * MdiClient.cs: 
1678         * MdiWindowManager: Removed unused fields and methods.
1679         
1680 2006-12-04  Rolf Bjarne Kvinge  <RKvinge@novell.com>
1681         
1682         * StatusBar.cs: Update all panels when a AutoSize=Contents
1683         panel needs updating.
1684         
1685         * StatusBarPanel.cs: Remove twidth and only use initialize.
1686         Fixes #80031.
1687                 
1688 2006-12-04  Rolf Bjarne Kvinge  <RKvinge@novell.com>
1690         * Form.cs: When a form's MdiParent is set add it directly
1691         on top of the z-order in stead of relying on MdiClient's
1692         ActivateChild to do it. Fixes #80135.
1693         
1694         * MdiClient.cs: 
1695         - Remove original_order, mdi_child_list is already doing
1696         the same thing.
1697         - Create mdi_child_list on construction in
1698         stead of first use (avoids a few null checks).
1700         * MenuItem.cs: Use an already existing list of mdi children
1701         to get the correct order of children and remove the other
1702         redundant list.
1704 2006-12-04  Chris Toshok  <toshok@ximian.com>
1706         * PropertyGridView.cs: cached_splitter_location is only used in
1707         !DOUBLEBUFFER code.
1709         * PropertyGrid.cs: implement the ComComponentNameChanged event
1710         using Events, hoping that would fix the warning.  Looks like a
1711         compiler bug instead (#80144).
1713         * PropertyManager.cs: remove unused method.
1715 2006-11-04  Everaldo Canuto  <everaldo@simios.org>
1717         * ThemeWin32Classic.cs: Dont draw arrow when menuitem on menubar, 
1718         include parentesis to fix expression evaluation. Fixes #79634.
1720 2006-11-02  Everaldo Canuto  <everaldo@simios.org>
1721         
1722         * MenuAPI.cs:
1723         - Changes to fix behavior in Menu control, some reported in #80097
1724         and other detected during behavior refactory like a select event
1725         problems.
1726         - Remove unneded "if's" conditions.
1727         - Created an internal to flag when popup is active in control, we need 
1728         it because in .NET you can have menu active but without popup active
1729         when you active menu using popup without visible items.
1730         - Mimic win32 behavior for Select and Popup events.  
1731         - Dont open popup menu when you dont have visible subitems.
1732         - Do nothing when click on disabled menu item.
1733         - Some small changes to follow the coding style guidelines.
1734         - Unselect menu only when another control gives focus. Fixes #80097.
1735         - Remove unused code.
1736         
1737         * MenuItem.cs: internal VisibleItems method to check if menu
1738         theres visible subitems, it will be usefull to fix some 
1739         behavior in Menu control.
1740         
1741 2006-11-01  Everaldo Canuto  <everaldo@simios.org>
1742         
1743         * Timer.cs: Tag property for 2.0 profile.
1744         
1745 2006-12-01  Chris Toshok  <toshok@ximian.com>
1747         [ after removing all warning suppressions, this cleans up over 100 warnings. ]
1748         
1749         * Win32DnD.cs: comment out some unused fields.
1751         * XplatUIWin32.cs: comment out some unused pinvokes, and remove
1752         some unused properties/methods.
1754         * XplatUIX11.cs: fix MousePosition so we override the base class's
1755         property instead of conflicting with it.
1757         * PictureBox.cs: comment out some unused fields
1759         * OSXStructs.cs: make some struct fields public.
1761         * XplatUIOSX.cs: comment out some unused pinvokes, and fix
1762         MousePosition so we override the base class's property instead of
1763         conflicting with it.
1765         * X11Dnd.cs: comment out some unused fields
1767         * X11DesktopColors.cs: fix some struct field visibility to quiet
1768         the compiler.
1770         * X11Dnd.cs: remove some debug code.
1772         * ThemeClearlooks.cs: comment out unused field.
1774         * ThemeNice.cs: mark some methods as overriding ThemeWin32Classic as needed.
1776         * ThemeGtk.cs: comment out some unused pinvokes.
1778         * Timer.cs: remove some unused fields.
1780         * ThemeClearlooks.cs: comment out unused field.
1782         * UpDownBase.cs: comment out unused field.
1784         * DataObject.cs: comment out unused field.
1786         * DataGridBoolColumn.cs: reomve unused field.
1788         * DataGrid.cs: remove unused field.
1790         * Cursor.cs: remove old ToBitmap code.
1792         * ControlPaint.cs: remove unused method.
1794         * ScrollBar.cs: remove unused fields.
1796         * ComboBox.cs: remove unused field, and chain up to
1797         AccessibleObject ctor.
1799         * ListBox.cs: remove unused field.
1801         * ButtonBase.cs: wrap a couple fields in NET_2_0.
1803         * GridEntry.cs: remove unused fields.
1805         * Binding.cs: remove unused fields.
1807         * AxHost.cs: remove unused method.
1809         * ContainerControl.cs: remove unused field.
1811         * ScrollableControl.cs: remove unused fields.
1813 2006-12-01  Chris Toshok  <toshok@ximian.com>
1815         * XplatUI.cs, XplatUIWin32.cs, XplatUIGTK.cs: nuke
1816         the Where/WhereString stuff.  it's easy enough to CWL
1817         Environment.StackTrace.
1819         * XplatUIX11.cs: same, but also fix up a lot of mcs warnings about
1820         unused private fields.
1822 2006-12-01  Jackson Harper  <jackson@ximian.com>
1824         * TextControl.cs: Do not update the view while inserting multiline
1825         text. If we update the view we might wrap lines, before entering
1826         the new lines, which causes the new line insertion calculations to
1827         be totally fubared.
1828         - Remove an old TODO
1829         - Make debug output a little nicer
1830         
1831 2006-12-01  Chris Toshok  <toshok@ximian.com>
1833         * ToolBar.cs: revert the ImeMode fix here and add an XXX comment.
1835 2006-12-01  Chris Toshok  <toshok@ximian.com>
1837         [ fix the majority of the CS0108 warnings we've been suppressing ]
1838         
1839         * TreeView.cs: mark BackgroundImageChanged as 'new'.
1841         * ToolBar.cs: ImeMode just passes stuff to Control.  Rename Layout
1842         to "LayoutToolBar" to quiet mcs.
1843         
1844         * TabControl.cs: mark our ControlCollection class as 'new'.
1846         * TextBoxBase.cs: mark some events as 'new'.
1848         * Splitter.cs: TabStop is 'new'.
1850         * ControlBindingsCollection.cs: mark a few methods as new since
1851         they change the visibility from protected to public.
1853         * RadioButton.cs: DoubleClick -> base class, and remove unused
1854         HaveDoubleClick.
1856         * MonthCalendar.cs: ImeMode property -> base class, and mark many
1857         events as new.
1859         * NumericUpDown.cs: TextChanged -> base class.
1861         * CheckedListBox.cs: mark our ObjectCollection class as new to
1862         quiet mcs.
1864         * FolderBrowserDialog.cs: make HelpRequest event new and have it
1865         muck with the base class.
1867         * StatusBar.cs: fix some mcs warnings about Update being the same
1868         name as a base class method.
1870         * RichTextBox.cs: mark some events as new, and make them do things
1871         to the base class impl.
1873         * UserControl.cs: mark TextChanged as new, and have it manipulate
1874         base.TextChanged.
1876         * UpDownBase.cs: mark some things new.
1878         * CheckBox.cs: mark DoubleClick "new", and add some text about
1879         what we need to look at.
1881         * Panel.cs: make the events "new", and manipulate the base
1882         version.  these are just here for attributes.
1884         * AccessibleObject.cs: make owner private.
1886         * Control.cs: deal with AccessibleObject.owner being private.
1887         cache our own copy if we need it.
1889         * Button.cs: add "new" to the DoubleClickEvent.
1891         * ListBox.cs: no need to track our own has_focus here.  let
1892         Control.has_focus do it for us.  Also some other work to clear up
1893         warnings about not overriding base class methods of the same name.
1894         
1895         * ComboBox.cs: clear up some warnings about not override base
1896         class methods of the same name.
1898 2006-12-01  Chris Toshok  <toshok@ximian.com>
1900         * Form.cs: flag a few things as "new" to quiet some of the mcs
1901         warnings.
1903         * AxHost.cs: same.
1905         * PrintPreviewDialog.cs: same.
1907         * DataGridView.cs: fix a ton of corcompare warnings.  not all, but
1908         now DGV isn't so horrible on the class status page.  also, move
1909         all events to using System.ComponentModel.EventHandlerList.  my
1910         wrists hurt.
1912 2006-12-01  Rolf Bjarne Kvinge  <RKvinge@novell.com>
1914         * MdiWindowManager.cs:
1915         - Set form to active mdi child if shown,
1916         and update the active mdi child to the next 
1917         remaining child in the z-order if the form is hidden.
1919         * Form.cs: 
1920         - Track if the form has been visible and if its 
1921         visibility is beeing changed, so that the MdiClient
1922         can properly decide the ActiveMdiChild. The MdiClient 
1923         cannot track this since the form can change visibility 
1924         before MdiClient is created.
1926         * MdiClient.cs:
1927         - Don't activate anything of the parent form is changing
1928         its visibility.
1929         - Rework ActiveMdiChild to only return visible mdi 
1930         children and take into account several other corner 
1931         cases.
1933 2006-12-01  Chris Toshok  <toshok@ximian.com>
1935         * IBindableComponent.cs: new 2.0 interface.
1937 2006-12-01  Gert Driesen  <drieseng@users.sourceforge.net>
1939         * DataGrid.cs: Font for caption area is bold by default.
1941 2006-12-01  Everaldo Canuto  <everaldo@simios.org>
1943         * Menu.cs: Tag property for 2.0.
1944         
1945 2006-11-01  Everaldo Canuto  <everaldo@simios.org>
1947         * ThemeWin32Classic.cs: Adjust menu separator drawing. 
1948         
1949 2006-12-01  Chris Toshok  <toshok@ximian.com>
1951         * TreeView.cs: doh, the Begin* events should be
1952         TreeViewCancelEventHandler.
1954 2006-12-01  Chris Toshok  <toshok@ximian.com>
1956         * Form.cs: Form.ControlCollection already stores off the
1957         form_owner field.  don't access the base class's internal "owner"
1958         field.
1960         * Control.cs: make all the fields in Control.ControlCollection
1961         private.  there's no need for any internal fields here.
1963 2006-12-01  Chris Toshok  <toshok@ximian.com>
1965         * DataGrid.cs: call SetDataSource instead of CalcGridAreas in
1966         OnHandleCreated.  Fixes bug #80109.
1968 2006-12-01  Chris Toshok  <toshok@ximian.com>
1970         * Button.cs, PropertyGridTextBox.cs, ComboBox.cs,
1971         SplitContainer.cs, Control.cs, StatusStrip.cs,
1972         DataGridTableStyle.cs, MenuItem.cs, DomainUpDown.cs, ImageList.cs,
1973         NumericTextBox.cs, NumericUpDown.cs, Panel.cs, CommonDialog.cs,
1974         DataGrid.cs, ScrollBar.cs, TrackBar.cs, PictureBox.cs,
1975         DateTimePicker.cs, StatusBar.cs, Form.cs, PrintPreviewDialog.cs,
1976         Label.cs, UserControl.cs, CheckBox.cs, RadioButton.cs,
1977         LinkLabel.cs, ListControl.cs, PropertyGrid.cs, Splitter.cs,
1978         MenuStrip.cs, FolderBrowserDialog.cs, NotifyIcon.cs,
1979         TextBoxBase.cs, ListView.cs, DataGridBoolColumn.cs,
1980         PrintPreviewControl.cs, RichTextBox.cs, ListBox.cs, TabControl.cs,
1981         DataGridColumnStyle.cs, ContextMenu.cs, TreeView.cs:
1983         do most of the work to convert our code over to use
1984         System.ComponentModel.Component.Events for
1985         adding/removing/dispatching events.
1988 2006-11-30  Jonathan Pobst  <monkey@jpobst.com>
1990         * DataGridView.cs: Fix an ArgumentNullException reported 
1991         twice today in IRC.
1993 2006-11-30  Mike Kestner  <mkestner@novell.com>
1995         * ComboBox.cs: fix the scrollbar mouse event forwarding in the 
1996         grabbed listbox.  Fixes #80036 and #80101.
1998 2006-11-30  Rolf Bjarne Kvinge <RKvinge@novell.com>
2000         * Message.cs: Changed ToString() to match MS.
2001         
2002 2006-11-30  Jackson Harper  <jackson@ximian.com>
2004         * TextBoxBase.cs: You can still change the selected text on a read
2005         only textbox.
2006         * TextControl.cs: Lower magic number for wrap calculations. This
2007         lets text get closer to the right (far) edge.
2009 2006-11-30  Jonathan Pobst  <monkey@jpobst.com>
2011         * Control.cs: Tweak 2.0 layout properties.
2012         * Form.cs: Switch ToolStripMenuTracker hooks to ToolStripManager.
2013         * TextRenderer.cs: Add a new overload.
2014         * ToolStrip*: Huge amount of changes and new features.
2016 2006-11-30  Mike Kestner  <mkestner@novell.com>
2018         * ComboBox.cs: fixes for LargeChange and Maximum to get the 
2019         scroll range correct.  Fixes #79994.
2021 2006-11-30  Rolf Bjarne Kvinge <RKvinge@novell.com>
2023         * MdiWindowManager.cs: Update main form's text when
2024         a form is closed. (fixes #80038)
2025         
2026 2006-11-30  Everaldo Canuto  <everaldo@simios.org>
2028         * ToolBar.cs:
2029         - Fix an regression in ButtonSize.
2030         - Get ImeMode default value change to "Disable".
2031         - Get ShowTooltips default value change to true, default value is 
2032         "false" but after make a test in .NET we get "true" result as default.
2033         
2034 2006-11-29  Jonathan Pobst  <monkey@jpobst.com>
2036         * ToolStripDropDown.cs: Fix for SupportsTransparency change.
2038 2006-11-29  Chris Toshok  <toshok@ximian.com>
2040         * XplatUIWin32.cs (GetWindowTransparency): check return value of
2041         GetLayeredWindowAttributes.  if it's 0, return 1.0, as
2042         SetWindowTransparency hasn't been called.
2044 2006-11-29  Chris Toshok  <toshok@ximian.com>
2046         * Form.cs (set_TransparencyKey): only call SetWindowTransparency
2047         if it's supported.
2048         (set_AllowTransparency): reorder things a little so that the
2049         WS_EX_LAYERED style is removed properly.
2051 2006-11-29  Chris Toshok  <toshok@ximian.com>
2053         [ totally cosmetic eye-candy feature, fixes bug #80089 ]
2054         
2055         * Form.cs: only call the XplatUI transparency method (get/set) if
2056         SupportsTransparency says it's supported. Otherwise fallback to
2057         doing nothing (in the set case) or returning the instance field we
2058         cache (in the get case).
2060         * XplatUIStructs.cs: add TransparencySupport flag enum.
2061         
2062         * XplatUIDriver.cs: add abstract GetWindowTransparency, and track
2063         change to SupportsTransparency.
2065         * XplatUIOSX.cs: stub out GetWindowTransparency, and return
2066         TransparencySupport.None from SupportsTransparency.
2068         * XplatUIX11.cs: Stub out GetWindowTransparency, and return
2069         TransparencySupport.Set from SupportsTransparency.
2071         * XplatUIWin32.cs: implement GetWindowTransparency calling
2072         GetLayeredWindowAttributes, and implement SupportsTransparency by
2073         checking whether or not both
2074         GetWindowTransparency/SetWindowTransparency are available
2075         entrypoints.  We need to do this since SetWindowTransparency is
2076         available as of win2k, but GetWindowTransparency requires winxp.
2077         yay win32 api.
2079         * XplatUI.cs: Add GetWindowTransparency, and change
2080         SupportsTransparency to allow for either/both Get/Set.
2082 2006-11-29  Chris Toshok  <toshok@ximian.com>
2084         * DataGrid.cs: keep from going into an infinite loop redrawing a
2085         datagrid that has no datasource.  Fixes bug #80033.
2087 2006-11-29  Chris Toshok  <toshok@ximian.com>
2089         * MenuItem.cs: fix the NRE when we assign text (and therefore call
2090         Invalidate) before the mainmenu has been assigned to a control.
2092 2006-11-29  Chris Toshok  <toshok@ximian.com>
2094         * DataGrid.cs: detect when we should be double the double click
2095         row/column autosize stuff, although that codepath has yet to be
2096         written.  part of the work for bug #79891.
2098 2006-11-29  Chris Toshok  <toshok@ximian.com>
2100         * Binding.cs (SetControl): fix unit test.
2102 2006-11-29  Carlos Alberto Cortez <calberto.cortez@gmail.com>
2104         * PageSetupDialog.cs: Validate the margins and set them in
2105         PageSettings. 
2106         * NumericTextBox.cs: New class to mimic the behavior of the
2107         textboxes used in the printing dialogs.
2109 2006-11-29  Andreia Gaita  <avidigal@novell.com>
2110         
2111         * Form.cs: Revert previous change (remove call UpdateBounds
2112         from form constructor), because it messes with the handle creation
2113         order, and that one needs lots and lots of love.
2114         * PrintPreviewDialog.cs: Revert change to CreateHandle (add check
2115         for valid printer and throw InvalidPrinterException if document
2116         is set but printer not valid), adding a MonoTODO. Once 
2117         handle creation is done properly, we can put this back in.
2119 2006-11-28  Everaldo Canuto  <everaldo@simios.org>
2121         * MenuItem.cs: Create a invalidate method for menu item, to be
2122         calling from set text, it make text changes to imadiate update
2123         on screen. Fixes #80013. 
2124         
2125 2006-11-28  Everaldo Canuto  <everaldo@simios.org>
2127         * ToolBar.cs: Fixes and simplify toolbar button layout, it 
2128         fixes bug #80070 and some other problem on toolbar buttons
2129         layout.
2131 2006-11-28  Everaldo Canuto  <everaldo@simios.org>
2133         * ThemeWin32Classic.cs: Paint toolbar toggle button background 
2134         with dotted brush.      Fixes #79564
2135         
2136 2006-11-28  Andreia Gaita  <avidigal@novell.com>
2138         * Form.cs: Removed call to UpdateBounds on Form
2139         constructor, it was causing a call to CreateHandle
2140         before it was supposed to.
2141         * PrintControllerWithStatusDialog: Applied patch
2142         by Chris Toshok to hide controller when there are
2143         no printers available.
2144         PrintDialog.cs: initialize printer settings to 
2145         null - correct DefaultValues test #5
2146         * PrintPreviewControl.cs: Move PrintController
2147         initialization to GeneratePreview
2148         * PrintPreviewDialog.cs: 
2149         - Remove Preview generation     from Document_set(). It is 
2150         called on OnPaint
2151         - Throw InvalidPrinterException on CreateHandle if
2152         a Document is set but there are no printers or 
2153         printer is not valid.
2154         * ThemeWin32Classic: don't paint PrintPreviewControl
2155         if there is nothing to paint    
2157 2006-11-28  Miguel de Icaza  <miguel@novell.com>
2159         * Form.cs: Add another popular method.
2161         * TabPage.cs: ditto.
2163 2006-11-28  Rolf Bjarne Kvinge  <RKvinge@novell.com>
2165         * MenuItem.cs: Fixed a warning.
2166         * InternalWindowManager: Fixed a warning.
2168 2006-11-28  Rolf Bjarne Kvinge  <RKvinge@novell.com>
2170         * MenuItem.cs:
2171         - When cloning a menu also clone MdiList and clone the 
2172           window menu items properly (as the forms and menuitems
2173           are kept in an internal hashtable, these need updating 
2174           as well)
2175         - Rewrote the window menu code, menu items are added in the
2176           order the forms were added to their parent, and they are
2177           updated every time the window menu is shown (before the
2178           list was only generated once, in the current order of the
2179           forms, and would never be updated). A checkmark is shown
2180           next to the item corresponding to the active mdi child.
2182 2006-11-28  Rolf Bjarne Kvinge  <RKvinge@novell.com>
2184         * XplatUIStructs.cs: 
2185         - Added WM_NCMOUSEHOVER and WM_NCMOUSELEAVE.
2186         
2187         * XplatUIWin32.cs: 
2188         - Added TME_NONCLIENT to TMEFlags.
2189         - Handles WM_NCMOUSEMOVE in GetMessage to 
2190           generate WM_NCMOUSEHOVER and WM_NCMOUSELEAVE messages.
2192         * MdiWindowManager:
2193         - Now merges mdi child menu to parent menu when maximized.
2194         - Recalculate NC areas of both mdi child and mdi parent. 
2195           Fixes #79757 (4).
2196           on window state and size changes.Fixes #79844 (3).
2197         - Handle WM_NCCALCSIZE to properly calculate borders.
2199         * Form.cs:
2200         - Add/remove to the mdi containers list of mdi children 
2201           in the order they are added.
2202         - Pass on WM_NCLBUTTONUP, WM_NCMOUSEMOVE and WM_NCMOUSELEAVE 
2203           to the maximized mdi child.
2204         
2205         * InternalWindowManager.cs:
2206         - Only execute a click on the control buttons on the mouse up,
2207           not on the mouse down. Show the state of the button 
2208           (was only showing Normal state, never Pressed state). The
2209           pressed button now follows the mouse (if you click the Close 
2210           button and move the mouse over the Maximize button, the 
2211           Maximize button will be shown as pressed). Since Win32 does
2212           not generate WM_NCLBUTTONUP if you release the button outside
2213           of the nc area, we need to handle WM_NCMOUSELEAVE and treat
2214           it as a mouse up.
2215         
2216         * ThemeWin32Classic.cs:
2217         - Draw a missing border around mdi child forms. Fixes #79844 (2).
2219         * MdiClient.cs:
2220         - Added a list of forms which contains the order the forms are
2221           added to the mdi parent.
2222         - Handle WM_NCPAINT to properly draw a 3D border. Fixes #79844 (2).
2223         - Handle WM_NCCALCSIZE to properly calculate the 3D border.
2224         - If the active form changes set the scrollbars to the top
2225           of the Z order, otherwise the form could hide them.
2226         - Scrollbars are now sized according to ClientSize, not 
2227           to Size, and they take into account the other scrollbar
2228           to determine maximum.
2229         
2230 2006-11-28  Rolf Bjarne Kvinge <RKvinge@novell.com>
2231         
2232         * XplatUI.cs:
2233         * XplatUIDriver.cs:
2234         * XplatUIX11.cs:
2235         * XplatUIWin32.cs:
2236         * XplatUIOSX.cs:
2237         - Added RequestAdditionalWM_NCMessages for windows to 
2238           opt in for WM_NCMOUSELEAVE and WM_NCMOUSEHOVER.
2239           Currently only implemented in XplatUIWin32.
2241 2006-11-27  Chris Toshok  <toshok@ximian.com>
2243         * Hwnd.cs: only add the hwnd to the windows hash in
2244         set_WholeWindow and set_ClientWindow if whole_window/client_window
2245         are not IntPtr.Zero.  also, remove the unused SetObjectWindow.
2247 2006-11-27  Mike Kestner  <mkestner@novell.com>
2249         * ComboBox.cs: remove redundant OnDropDown call.  It is called
2250         from the ComboListBox.ShowWindow code. Fixes #79969.
2252 2006-11-27  Chris Toshok  <toshok@ximian.com>
2254         * Hwnd.cs: remove the setters for ExposePending and
2255         NCExposePending - noone uses them.
2257 2006-11-27  Jackson Harper  <jackson@ximian.com>
2259         * TextControl.cs: new param for ReplaceSelection which determines
2260         whether we select the new selection, or set the cursor to the end
2261         of the new selection.
2262         * TextBoxBase.cs: Use new param for ReplaceSelection.  When
2263         pasting, select the new text.
2264         * RichTextBox.cs: Use new param for ReplaceSelection.
2266 2006-11-27  Jackson Harper  <jackson@ximian.com>
2268         * TextBoxBase.cs: Set the selection to the caret after the caret
2269         is moved, otherwise they get out of sync.
2271 2006-11-26  Everaldo Canuto  <everaldo@simios.org>
2273         * ToolBar.cs: Fixe size of ToolBar when AutoSize is false,
2274         it fixes #80015
2276 2006-11-26  Everaldo Canuto  <everaldo@simios.org>
2278         * ThemeWin32Classic.cs: 
2279         - Fix toolbar drop down arrow position.
2280         - Fix drop down appearance when ToolBar.Appearance is normal,
2281         it fixes #80018.
2282         
2283 2006-11-26  Gert Driesen  <drieseng@users.sourceforge.net>
2285         * ProgressBar.cs: GetStyle fixes for 2.0 profile.
2286         * Control.cs: Same.
2287         * UpDownBase.cs: Same.
2288         * ButtonBase.cs: Same.
2289         * ScrollBar.cs: Same.
2290         * TrackBar.cs: Same.
2291         * PictureBox.cs: Same.
2292         * UserControl.cs: Same.
2293         * Label.cs: Same.
2294         * ListControl.cs: Same.
2295         * TextBoxBase.cs: Same.
2296         * ListView.cs: Same.
2297         * RichTextBox.cs: Same.
2298         * TreeView.cs: Same.
2300 2006-11-25  Jordi Mas i Hernandez <jordimash@gmail.com>
2302         * PrintDialog.cs:
2303         - Text label for where 
2304         - Text label comment was not shown
2306 2006-11-23  Everaldo Canuto  <everaldo@simios.org>
2308         * ThemeWin32Classic.cs: Fix toolbar drop down arrow size.
2310 2006-11-23  Rolf Bjarne Kvinge  <RKvinge@novell.com> 
2312         * InternalWindowManager.cs: 
2313         - Handle WM_PARENTNOTIFY to activate the form
2314         if any child control is clicked.
2315         - The form is only sizable if not minimized.
2317         * MdiWindowManager.cs:
2318         - Save the IconicBounds if the form is moved.
2319         - Rework SetWindowState, now the window bounds 
2320         are stored only if the old window state is Normal.
2321         
2322         * MdiClient.cs:
2323         - In SetWindowStates store the old window state if 
2324         the window is maximized and restore window state if
2325         the window looses focus.
2326         - Don't handle any scrollbar value changes if 
2327         initializing the scroll bars. Fixes #79771.
2328         - Reworked ArrangeIconicWindows. Current algorithm
2329         tests bounds agains all other minimized windows, if
2330         any intersections create new bounds (going left to 
2331         right, bottom to top) and then test again. When 
2332         successful the bounds are saved and never computed
2333         again. Fixes #79774.
2335 2006-11-23  Rolf Bjarne Kvinge  <RKvinge@novell.com> 
2337         * InternalWindowManager.cs: Added HandleTitleBarUp.
2339 2006-11-23  Gert Driesen  <drieseng@users.sourceforge.net>
2341         * NumericUpDown.cs: In .NET 1.1, user entered text is still
2342         hexadecimal in ParseUserEdit.
2344         
2345 2006-11-23  Rolf Bjarne Kvinge  <RKvinge@novell.com> 
2347         * MdiWindowManager.cs: 
2348         - Handle a click on the form's icon to show the 
2349         system menu (when maximized). Fixes #79775.
2350         - Change the existing click handler for the form's
2351         icon when not maximized to show on MouseUp.
2352         Fixes #79776.
2354         * Form.cs: In OnResize only layout the mdi child's
2355         parent if it actually has a parent. Might not if
2356         the window is closing.
2359 2006-11-23  Gert Driesen  <drieseng@users.sourceforge.net>
2361         * MdiClient.cs: Ignore active MDI client for text of parent, if
2362         child has no text set.
2364 2006-11-23  Gert Driesen  <drieseng@users.sourceforge.net>
2366         * ToolBar.cs: Fixed ToString to match MS.
2368 2006-11-22  Andreia Gaita  <avidigal@novell.com>
2370         * NumericUpDown: 
2371         - Fix DecimalPlaces, Hexadecimal and ThousandsSeparator to 
2372         update inner values on set. Fixes #79966.
2373         - Override OnLostFocus to update value on NET 2. Fixes #79950.
2374         - Fix hexadecimal parsing.
2375         
2376         * UpDownBase: Override OnGotFocus and OnLostFocus to notify 
2377         parent. Fixes #79957
2379 2006-11-22  Rolf Bjarne Kvinge  <RKvinge@novell.com>
2381         * Control.cs: After calling SetWindowsPos in SetBoundsCore 
2382         the actual size has to be queried, since if height /
2383         width is negative Win32 changes it to 0. 
2384         Fixes #79999 on Windows.
2385         
2386         * XplatUIX11.cs: Set height / width to 0 if negative
2387         in SetWindowPos. Fixes #79999 on Linux.
2388         
2389 2006-11-22  Everaldo Canuto  <everaldo@simios.org>
2391         * ThemeWin32Classic.cs: Fix text redenring when button is
2392         pressed.
2394 2006-11-22  Everaldo Canuto  <everaldo@simios.org>
2396         * MenuAPI.cs: Fixes behavior when menu is opened by kerboard
2397         and later navigate by mouse. Fixes #79528.
2399 2006-11-21  Everaldo Canuto  <everaldo@simios.org>
2401         * ToolBar.cs: Set default value for TabStop to false in
2402         constructor, it fixes remaining behavior of bug #79863.
2404 2006-11-21  Rolf Bjarne Kvinge  <RKvinge@novell.com>
2406         * MdiWindowManager.cs:
2407         * InternalWindowManager.cs:
2408         - Moved a few methods specific to Mdi from 
2409         InternalWindowManager to MdiWindowManager.
2410         Fixes #79996.
2411         
2412 2006-11-21  Chris Toshok  <toshok@ximian.com>
2414         * XplatUIOSX.cs: stub out InvalidateNC.
2416         * XplatUIWin32.cs: implement InvalidateNC using the call I found
2417         at http://www.dotnet247.com/247reference/msgs/58/292037.aspx.
2419         * XplatUIX11.cs: rename InvalidateWholeWindow to InvalidateNC.
2421         * XplatUIDriver.cs: add InvalidateNC abstract method.
2423         * XplatUI.cs: add InvalidateNC.
2425 2006-11-21  Everaldo Canuto  <everaldo@simios.org>
2427         * ToolBar.cs: Invalidate complete button area when pressed status 
2428         was changed.
2429         * ToolButton.cs: Fix InvalidateBorder for DropDown buttons.
2430         * ThemeWin32Classic.cs: Increase vertical and horizontal position 
2431         by 1 when button is pressed.
2433 2006-11-20  Everaldo Canuto  <everaldo@simios.org>
2435         * ToolButton.cs: Invalidate middle of DropDown button when
2436         ToolBar theres DropDownArrows.
2437         * ThemeWin32Classic.cs: Change position of DropDown arrow and
2438         fix DropDown drawing operations.
2440 2006-11-20  Chris Toshok  <toshok@ximian.com>
2442         * NativeWindow.cs: fix the formatting of functions ('{' on the
2443         following line), and enable the thread exception dialog.
2445         * Application.cs: remove the duplicate exception catching from
2446         here.
2448 2006-11-20  Everaldo Canuto  <everaldo@simios.org>
2450         * Toolbar.cs: Triggers button click event when click on icon
2451         of dropdown ToolBarButton. Fixes #79912.
2452         
2453 2006-11-20  Rolf Bjarne Kvinge  <RKvinge@novell.com>
2455         * Theme.cs:
2456         * ThemeWin32Classic.cs:
2457         - Added a property WindowBorderFont to enable themeing
2458           of mdi child windows' Text.
2459           
2460 2006-11-20  Rolf Bjarne Kvinge  <RKvinge@novell.com>
2462         * InternalWindowManager.cs:
2463         * Form.cs:
2464         * MdiClient.cs:
2465         * MdiWindowManager.cs: 
2466         - If mdi child is maximized, set mdi parent's
2467           text to "Parent - [Child]". Fixes #79770.
2468         - If there is any maximized mdi child windows, only the active 
2469           window (and any new windows) is maximized, the rest are normal.
2470         - On a WindowState change only save mdi child's window bounds 
2471           if the old window state was normal. Fixes #79774.
2472         - The scroll bars are now calculated on hopefully all
2473           necessary events. Fixed #79771 / #79844->6 / #79906.
2474         - MdiClient.SizeScrollBars() now takes into account docked 
2475           controls in the parent when calculating available space.
2476         - InternalWindowManager now always repaints the entire title
2477           area. Fixes #79844->1/4/5.
2478         - Added RequestNCRecalc on mdi child windowstate changes.
2479           Fixes #79772.
2481 2006-11-20  Mike Kestner  <mkestner@novell.com>
2483         * ComboBox.cs: setup LargeChange on the scrollbar. Invoke FireMouseUp
2484         in the MouseUp handler of the listbox and move the return handling
2485         code to FireMouseUp to avoid scrolling on ups.  Fixes #79952.
2487 2006-11-20  Everaldo Canuto  <everaldo@simios.org>
2489         * Toolbar.cs: Ignore right mouse clicks in toolbar. Fixes #79855. 
2491 2006-11-17  Alexander Olk  <alex.olk@googlemail.com>
2493         * MimeIcon.cs: Seems that DllImports that were fine in 1.2 are not
2494           working in 1.2.x anymore. So, updated.
2496 2006-11-19  Gert Driesen  <drieseng@users.sourceforge.net>
2498         * NumericUpDown.cs: Use NegativeSign, NumberDecimalSeparator and
2499         NumberGroupSeparator of current culture instead of assuming en-US.
2500         Fixed bug #79967.
2502 2006-11-17  Mike Kestner  <mkestner@novell.com>
2504         * Control.cs: Add the concept of implicit bounds setting so that
2505         dock/undock round trips preserve explicitly set size/locations.
2506         Fixes #79313.
2508 2006-11-17  Alexander Olk  <alex.olk@googlemail.com>
2510         * FileDialog.cs: Trim all filters, otherwise DirInfo.GetFiles
2511           can't handle those filters. (Fixes bug #79961)
2513 2006-11-17  Chris Toshok  <toshok@ximian.com>
2515         [ fixes the exit/crashes associated with #79835.  it's clearly
2516         suboptimal though, we need to figure out a better way to solve
2517         this. ]
2518         
2519         * PrintPreviewControl.cs: deal with the new invalid printer
2520         exceptions.
2522         * PageSetupDialog.cs: if the printer is invalid, pop up a dialog
2523         and return false (so CommonDialog.ShowDialog doesn't actually show
2524         the form.)
2526         * PrintDialog.cs: enable/disable the Ok button depending on
2527         whether or not the printer is valid.
2529         * CommonDialog.cs (ShowDialog): only actually show the form if
2530         RunDialog returns true.
2532 2006-11-17  Jackson Harper  <jackson@ximian.com>
2534         * TextControl.cs: When soft splitting a line, mark it as a soft
2535         split line. Also carry over the current line break to the next
2536         line.
2538 2006-11-17  Chris Toshok  <toshok@ximian.com>
2540         * XplatUIX11.cs: when scrolling a window with an invalid area, we
2541         only want to shift the part of the invalid area that overlaps the
2542         area we're scrolling.  we also don't want to clear the invalid
2543         area unless the invalid area was entirely contained within the
2544         scrolling area.
2546 2006-11-16  Chris Toshok  <toshok@ximian.com>
2548         * XplatUIX11.cs: remove the handling of the TimerEvent stuff, and
2549         also make sure to free the memory returned by XGetWindowProperty
2550         in GetText().
2552         * X11Structs.cs: remove the TimerEvent stuff, it's unused.
2554 2006-11-16  Chris Toshok  <toshok@ximian.com>
2556         * XplatUI.cs: add a new super secret way to get at the totally
2557         unsupported X11 backend.
2559 2006-11-16  Gert Driesen  <drieseng@users.sourceforge.net>
2561         * NumericUpDown.cs: Allow lowercase letters when in hex-mode.
2563 2006-11-16  Jackson Harper  <jackson@ximian.com>
2565         * TreeView.cs: Allow more explicit setting of top node position
2566         for scrollbars. Slower algo, but more accurate.
2567         - CollapseAll should maintain the current top node.
2568         * TextBoxBase.cs: When positioning the caret, use the line, pos
2569         method, since the x, y method does not grab the correct tag, and
2570         the caret height never gets set correctly. (Maybe I should just do
2571         away with the caret having its own height, and always use the
2572         carets current tag for height).
2574 2006-11-16  Jonathan Pobst  <monkey@jpobst.com
2576         [Fixes 79778, 79923]
2578         * XplatUIWin32.cs: Don't allow a parent to be set to IntPtr.Zero.
2579         Parent to the FosterParent instead.
2581 2006-11-16  Jackson Harper  <jackson@ximian.com>
2583         * TreeView.cs: Need to recalc the topnode when we expand or
2584         collapse. The scrolling methods can't handle this on their own,
2585         since they use differences between the last scroll position, and
2586         those difference get completely messed up since we are expanding
2587         nodes.  This problem should probably be fixed in the scrolling
2588         methods, so they can figure out exactly where they are, but this
2589         will slow things down a little.
2590         * ThemeWin32Classic.cs: Special case for groupboxes with empty
2591         strings, makes nunit-gui look a lot nicer.
2593 2006-11-16  Chris Toshok  <toshok@ximian.com>
2595         * XplatUIX11.cs: nasty, nasty, nasty changes required because of
2596         the broken multithreaded event handling we have in here.  File
2597         this entry under "Why we should move to the new X11 backend".
2599         Any thread can make it into UpdateMessageQueue, which gets events
2600         from the X socket - some of which could belong to hwnds being
2601         managed by a different thread.  We can also have multiple threads
2602         in UpdateMessageQueue at the same time, with each one reading from
2603         the X socket.  This leads to many problems, with the following
2604         solutions:
2606         We can't use hwnd.Queue.Enqueue anywhere in here and must use
2607         EnqueueLocked.
2609         The MotionNotify compression we do can't work across threads
2610         (without locking the entire queue, perhaps) since we call
2611         hwnd.Queue.Peek, so we just punt and don't compress motion events
2612         unless the owning thread is the one which got the X event.
2614         ConfigureNotify is another fun one, since it modifies the hwnd's
2615         bounds and then enqueues the event.  We add a lock to Hwnd which
2616         is held when setting configure_pending to true (and enqueuing the
2617         event).
2619         There is a race wrt the wake socket.  we need to make sure that
2620         only 1 thread is waiting on that socket, or else a thread could
2621         sleep waiting for data that never comes.  It's difficult (but not
2622         impossible) to make happen, because it seems to require something
2623         like the following:
2625             1. Thread 1 polls on wake_receive
2626         
2627             2. poll returns saying there's data to be read on
2628                wake_receive.
2629         
2630             3. Thread 2 polls on wake_receive and immediately returns
2631                saying there's data to be read.
2633             4. Thread 2 reads the wakeup byte from wake_receive
2635             5. Thread 1 attempts to read the wakeup byte from
2636                wake_receive.
2638             6. Thread 2 exits (due to a form closing, perhaps).
2640             7. Thread 1 blocks forever.
2641         
2642         Fun, eh?
2644         Fixing the Expose handling isn't done yet, and the races inherent
2645         in that piece of code are responsible for the drawing mistakes you
2646         see when generating expose events in a MT app (like NPlot).  This
2647         one is the likely to be the hardest to bandaid, and it doesn't
2648         appear to cause anything but drawing problems.  The other issues
2649         caused apps to exit or hang.
2651         * XEventQueue.cs: output some spew when Dequeue/Enqueue/Peek are
2652         called from a different thread than the one that should be calling
2653         these functions.
2655         * Hwnd.cs: add some locks to be used by the XplatUIX11 code.
2657 2006-11-15  Chris Toshok  <toshok@ximian.com>
2659         * Application.cs: null out the context's MainForm when we exit
2660         RunLoop.  Fixes a newly checked in unit test as well as the last
2661         ODE from bug #79933.
2663 2006-11-15  Chris Toshok  <toshok@ximian.com>
2665         * Form.cs (set_Owner): allow a null value so we can clear the
2666         form's owner.
2667         (Dispose): set all our owned_form's Owner properties to null, and
2668         clear the owned_forms collection.
2669         (WM_CLOSE): clean up this a little bit.. still not right though.
2671         * ApplicationContext.cs: OnMainFormClosed should only call
2672         ExitThreadCore if the main form isn't recreating.  Fixes unit
2673         test.
2675 2006-11-15  Jonathan Pobst  <monkey@jpobst.com>
2677         [Fixes 78346]
2679         * ComboBox.cs: Set the Hwnd.no_activate flag for the ComboListBox.
2681 2006-11-15  Jonathan Pobst  <monkey@jpobst.com>
2683         [Fixes 79433]
2685         * Hwnd.cs: Add a flag to show a window, but not activate it, to 
2686         keep popup window types from stealing focus from the main form
2687         on Windows.
2689         * XPlatUIWin32.cs: Use SW_SHOWNOACTIVATE if above field is true.
2691         * MenuAPI.cs: Set above flag to true.
2693 2006-11-15  Chris Toshok  <toshok@ximian.com>
2695         * XplatUIX11.cs: mimic win32 behavior on BUTTONUP events, where
2696         the button being released is not in wParam.
2698 2006-11-15  Jonathan Pobst  <monkey@jpobst.com>
2700         * Form.cs: Add the released button to MouseEventArgs.Button
2701         for the OnMouseUp call to the MenuTracker.  Fixes menu clicking
2702         on Win32.
2704 2006-11-15  Chris Toshok  <toshok@ximian.com>
2706         * XplatUIX11.cs: add (untested) a _NET_WM_NAME implementation of
2707         GetText().  untested because it's unused in our implementation.
2708         Control.Text always caches the text, even if
2709         ControlStyles.CacheText is not set.
2711         fixes bug #79939.
2713 2006-11-15  Chris Toshok  <toshok@ximian.com>
2715         [ fixes #79933 ]
2716         
2717         * Form.cs: in Close() don't do anything after we send the WM_CLOSE
2718         message.  no hiding, no disposing.
2720         in the WM_CLOSE handler, hide the form if it's modal.
2722 2006-11-15  Chris Toshok  <toshok@ximian.com>
2724         * XplatUIX11.cs: use AddExpose instead of sending a message.
2725         fixes textbox border drawing.
2727 2006-11-15  Chris Toshok  <toshok@ximian.com>
2729         * PropertyGridView.cs: keep from crashing on mouse move/down when
2730         the property grid is empty.
2732 2006-11-14  Jackson Harper  <jackson@ximian.com>
2734         * TextControl.cs: Make PageUp and PageDown more like the MS
2735         versions.
2736         * TextBoxBase.cs: When we set the text property position the
2737         cursor at the beginning of the document.
2739 2006-11-14  Rolf Bjarne Kvinge  <RKvinge@novell.com>
2741         * Form.cs: if a mdi child's WindowState has changed
2742         before it's creation, it would display wrong control
2743         buttons.
2744         
2745 2006-11-14  Alexander Olk  <alex.olk@googlemail.com>
2747         * TreeView.cs: De-uglify TreeView checkbox checkmarks.
2748           (Fixes bug #79927)
2750 2006-11-14  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2752         * XplatUIX11.cs: send a WM_NCPAINT on WM_NCCALCSIZE so that 
2753         the window gets to paint its borders even if the window is
2754         getting smaller.
2755         
2756         * Form.cs: on a WM_NCPAINT invalidate the entire menu, 
2757         otherwise the old control buttons would still be painted 
2758         if the window gets bigger.
2759         
2760         * PaintEventArgs.cs: add an internal method so that the clip 
2761         rectangle can be changed.
2762         
2763 2006-11-13  Chris Toshok  <toshok@ximian.com>
2765         [ fixes bug #79745 ]
2766         
2767         * NotifyIcon.cs: lots of cleanup.
2769         * X11Structs.cs: add an enum for XEMBED messages.
2771         * XplatUIX11.cs: reindent one of the giant switch statements, it
2772         was taking up an additional tab stop, and this file is already way
2773         too wide for my laptop's screen.
2775         Also, add handling for the XEmbed EMBEDDED_NOTIFY message.  When
2776         we get it, resize the hwnd to the WMNormalHints max_width/height.
2778 2006-11-13  Jackson Harper  <jackson@ximian.com>
2780         * TextBoxBase.cs: Compute the value changes for the mouse wheel
2781         teh simple way.
2783 2006-11-13  Chris Toshok  <toshok@ximian.com>
2785         * XplatUIX11.cs, XplatUIStructs.cs: kind of a gross fix for
2786         #79898.  force a reference to the Region to stick around so the
2787         unmanaged object isn't collected (rendering our handle in the MSG
2788         stale).
2790 2006-11-13  Chris Toshok  <toshok@ximian.com>
2792         * XplatUIX11.cs: fix #79917 for window managers which support
2794         using XStoreName on the raw utf8, and we need to convert to
2795         COMPOUND_TEXT if it's non-latin1.
2797 2006-11-13  Chris Toshok  <toshok@ximian.com>
2799         * Form.cs (set_DialogResult): we need to set closing to false if
2800         we're setting our result to None.  fixes bug #79908.
2802 2006-11-13  Jackson Harper  <jackson@ximian.com>
2804         * TextControl.cs: When formatting text, compute the adjusted tag
2805         lengths correctly, using FindTag for the end tag instead of trying
2806         to figure it out outselves.
2807         * TreeNode.cs: Use ActualItemHeight, which is the actual height of
2808         the item, ItemHeight doesn't work, because trees with large
2809         imagelists use those for their height
2810         * TreeView.cs: ActualItemHeight factors in the image height
2811         - compute left edge of checkboxes correctly
2812         - when expanding/collapsing move the bottom down one pixel, so we
2813         aren't moving part of the node
2815 2006-11-13  Rolf Bjarne Kvinge  <RKvinge@novell.com>
2817         * XplatUIX11.cs: The PaintEventArgs is also added to the drawing
2818         stack in PaintEventStart so that it won't get disposed by the gc
2819         before reaching PaintEventEnd.
2821 2006-11-13  Jackson Harper  <jackson@ximian.com>
2823         * TextBoxBase.cs: Don't select the word if we are on a line with
2824         no text.
2825         - We don't need to position the caret on mouse up, since the mouse
2826         move handler should be doing this
2827         - When double clicking a blank line, the caret is advanced to the
2828         next line.
2830 2006-11-13  Gert Driesen  <drieseng@users.sourceforge.net>
2832         * TreeNodeCollection.cs: Avoid duplicating indexer code.
2834 2006-11-12  Gert Driesen  <drieseng@users.sourceforge.net>
2836         * ColorDialog.cs: Reset size of dialog between calls to ShowDialog.
2837         Fixes part of bug #79910.
2839 2006-11-11  Alexander Olk  <alex.olk@googlemail.com>
2841         * ColorDialog.cs: Fix a NRE when adding a color to custom colors
2842           (bug #79903). Some minor string updates to match ms.
2844 2006-11-10  Alexander Olk  <alex.olk@googlemail.com>
2846         * FileDialog.cs: Don't add an extension if the filename
2847           already ends with that extension.
2849 2006-11-10  Jackson Harper  <jackson@ximian.com>
2851         * TreeView.cs: Use the currently highlighted node for the
2852         BeforeSelect event.
2853         * TextBoxBase.cs: There is no need to expand selection on
2854         MouseMove.
2855         - CanUndo means 'is there any undo operations', not 'is undo
2856         allowed on this textcontrol. Fixed ClearUndo unit test.
2858 2006-11-10  Andreia Gaita  <shana.ufie@gmail.com>
2860         * Button.cs: only perform click when button is Selectable (so as 
2861         not to activate default buttons when they're disabled)
2862         
2863         * Control.cs: Rewrite of the SelectNextControl and related 
2864         methods. HandleClick now selects next control if the current one
2865         is being disabled.
2866         
2867         * Form.cs: OnActivated selects next active control only if Load 
2868         has already occurred. If Load hasn't run, there's no point in 
2869         selecting here, Load might change the state of controls.
2870         
2871         * FocusTest.cs: Tests marked as working again for these fixes
2873 2006-11-10  Chris Toshok  <toshok@ximian.com>
2875         * XplatUIX11.cs: a couple of fixes.
2877         - use XInternAtoms with almost all the atoms we need to register,
2878         instead of many, many calls to XInternAtom.  should help a bit on
2879         startup time, at the expense of making the code look a little
2880         worse.
2882         - fall back to setting TransientFor on TOOLWINDOW's if their hwnd
2883         isn't reparented (which seems to be a clue that we're running fon
2884         compiz) and they have an Owner form.  This fixes the tool windows
2885         in paint.net when running under compiz.
2887         - when setting the opacity of a window, support both the case
2888         where the window has been reparented and also when it hasn't been.
2889         Since compiz/beryl doesn't seem to reparent windows, and these are
2890         the only window managers which support translucency, I'm not sure
2891         why we need the hwnd.reparented case at all.. but leave it in.
2892         now we get translucent windows in paint.net under compiz/beryl.
2894 2006-11-10  Alexander Olk  <alex.olk@googlemail.com>
2896         * FileDialog.cs: Always return the value for FilterIndex that
2897           was set. Internally convert it to values that make sense.
2899 2006-11-10  Everaldo Canuto  <everaldo@simios.org>
2900         
2901         * ThemeWin32Classic.cs: Fix drowp down arrow borders.
2903 2006-11-10  Everaldo Canuto  <everaldo@simios.org>
2905         * Toolbar.cs: Change default value of DropDownArrows to true, the 
2906         signature still using false to make it compatible with MS but the 
2907         initial value is true. Fixes #79855.
2909 2006-11-10  Alexander Olk  <alex.olk@googlemail.com>
2911         * MimeIcon.cs: Don't throw an exception on windows. Mime stuff is
2912           only available on Linux.
2914 2006-11-09  Everaldo Canuto  <everaldo@simios.org>
2916         * Toolbar.cs, ToolBarButton.cs: Fix wrong separator size and
2917         reduce number of calls to redraw method during toolbar creation.
2919 2006-11-09  Mike Kestner  <mkestner@novell.com>
2921         * ListView.cs : raise SelectedIndexChanged when an item is selected
2922         programmatically via the Item.Selected property.  Gert's nice 
2923         ListViewSelectedIndexChanged test fixture now runs clean.
2925 2006-11-09  Mike Kestner  <mkestner@novell.com>
2927         * ListView.cs : raise SelectedIndexChanged when a selected item is
2928         removed from the item collection using Remove or RemoveAt.
2930 2006-11-09  Mike Kestner  <mkestner@novell.com>
2932         * ListView.cs : raise SelectedIndexChanged once per selected item
2933         for compat with MS.  Fixes #79849+.
2935 2006-11-09  Chris Toshok  <toshok@ximian.com>
2937         * TabControl.cs: initialize row_count to 0, and set it to 1 when
2938         we need to (if we have any tab pages).  Fixes unit test.
2940 2006-11-09  Chris Toshok  <toshok@ximian.com>
2942         * Label.cs (CalcPreferredWidth): if Text == "", our preferred
2943         width is 0, not 3.  Fixes a unit test.
2945 2006-11-09  Mike Kestner  <mkestner@novell.com>
2947         * ListView.cs : use Implicit scrollbars so that focus isn't 
2948         stolen from the listview when they are clicked. Fixes #79850.
2950 2006-11-09  Chris Toshok  <toshok@ximian.com>
2952         * PropertyGridView.cs (OnPaint): only call DrawGridItems if we
2953         have a root item.  Fixes #79879.
2955 2006-11-09  Alexander Olk  <alex.olk@googlemail.com>
2957         * FileDialog.cs:
2958           - Fix ToString ()
2959           - An ArgumentException is now thrown if a wrong filter
2960             is applied (matches ms). The previous filter doesn't change
2961             anymore if an exception is thrown.
2962           - Changing the FileName property also affects FileNames
2963         * ColorDialog.cs: The length of the CustomColors array is always
2964           16. It doesn't matter if we use a smaller array or null to update
2965           or change the custom colors property.
2966         * FolderBrowserDialog.cs: Throw an InvalidEnumArgumentException if
2967           for RootFolder if we get a undefined value.
2969 2006-11-09  Rolf Bjarne Kvinge  <RKvinge@novell.com>
2971         * StatusBarPanel.cs: 
2972         - Width is set to MinWidth if Width is smaller than
2973         MinWidth. Fixes #79842.
2974         - MinWidth now always overrides Width (MSDN says MinWidth
2975         is set to Width when AutoSize = None, but they do not 
2976         behave like that).
2977         - Style has now the the correct default value.
2978         
2979 2006-11-09  Rolf Bjarne Kvinge  <RKvinge@novell.com>
2981         * TrackBar.cs: 
2982         - The control is completely invalidated on 
2983         Got/LostFocus to draw the focus rectangle correctly.
2984         - When AutoSize then height is always 45 (width for 
2985         vertical controls).
2986         
2987         * ThemeWin32Classic.cs: The TrackBar thumb is now centered
2988         on the mouse when moved and it doesn't move when grabbed
2989         until the mouse moves as well. Also fixed some wrong 
2990         calculations when clicking on the thumb (control thought
2991         click was outside of thumb and didn't grab it).
2992         Fixes some of the issues in #79718.
2994 2006-11-08  Everaldo Canuto  <everaldo@simios.org>
2996         * Toolbar.cs: Prevent disabled button to highlight. Fixes #79868.
2998 2006-11-08  Chris Toshok  <toshok@ximian.com>
3000         * PropertyGridView.cs: only call ToggleValue if the item is not
3001         readonly.
3003 2006-11-08  Jackson Harper  <jackson@ximian.com>
3005         * TextBoxBase.cs: The RichTextBox and textbox have very different
3006         word selection methods.  Implement the textbox's simple word
3007         selection here, and let the RichTextBox override and provide it's
3008         own.
3009         - Don't do extra selection on mouseup
3010         * RichTextBox.cs: Use the documents word selection algorithm, I
3011         think ideally, this function will be pulled into the
3012         RichTextBox.cs code someday.
3014 2006-11-08  Chris Toshok  <toshok@ximian.com>
3016         * RootGridEntry.cs: new class to represent GridItemType.Root.
3018         * CategoryGridEntry.cs: reformat, and add boilerplate.
3019         
3020         * GridEntry.cs: remove the UIParent stuff - turns out .Parent
3021         returns the UI parent anyway, and we need special handling to
3022         implement the GetTarget method in the face of it.  Also, implement
3023         Select().
3025         * PropertyGrid.cs, PropertyGridView.cs: a number of fixes.  create
3026         a root grid item, and use that instead of PropertyGrid.grid_items.
3027         Also, make use of TypeConverters (and add limitted support for
3028         ICustomTypeDescriptors) when initially populating the grid.
3029         Arrays now show up more or less properly.
3031 2006-11-08  Chris Toshok  <toshok@ximian.com>
3033         * Application.cs: set the modal dialog to non modal after we close
3034         it.  Fixes bug #79866.
3036 2006-11-08  Jackson Harper  <jackson@ximian.com>
3038         * TextControl.cs: When combining lines carry over the line end
3039         style from the end line.
3040         - Invalidate the selected area when setting it, if it is visible.
3041         * TextBoxBase.cs: Only rich text box can do full line selects.
3042         - Make sure to set the cursor position when there is a click,
3043         otherwise two clicks in separate areas could cause a large chunk
3044         to be selected.
3046 2006-11-07  Everaldo Canuto  <everaldo@simios.org>
3048         * Toolbar.cs: Release flat button borders when Toolbar lost focus. 
3049         Fixes #79863.
3051 2006-11-07  Everaldo Canuto  <everaldo@simios.org>
3053         * Toolbar.cs: Prevent toolbar to open more than one tooltip at same
3054         time. Remove tooltips when ToolButton click events.  Fixes #79856.
3056 2006-11-07  Everaldo Canuto  <everaldo@simios.org>
3058         * MenuAPI.cs: Ignore right click for menu actions and fixes
3059         menu border when clicked.  Fixes #79846.
3061 2006-11-07  Everaldo Canuto  <everaldo@simios.org>
3063         * XplatUIX11.cs, XplatUIX11.cs: Fix MouseRelease to only release
3064         MouseState after create wParam for message, this fixes mouse button 
3065         equal none in mouse up events.
3066         
3067 2006-11-07  Andreia Gaita  <shana.ufie@gmail.com>
3069         * Control.cs : Focus() now calls Select to set the Container's
3070         Active Control and to give it focus. To avoid infinite recursion
3071         (because ActiveControl also calls Focus at one point), a check 
3072         is made in Focus with the help of a new internal variable
3073         is_focusing.
3075 2006-11-07  Mike Kestner  <mkestner@novell.com>
3077         * ListView.cs : raise OnSelectedIndexChanged in CreateHandle
3078         if there's a selection.  Fixes #79849.
3080 2006-11-07  Gert Driesen  <drieseng@users.sourceforge.net>
3082         * PropertyGrid.cs: Avoid fixed height of help description label.
3083         Fixes part of bug #79829.
3085 2006-11-07  Chris Toshok  <toshok@ximian.com>
3087         * XplatUIX11.cs: fix #79790 again, by using the
3088         _NET_WM_STATE_SKIP_TASKBAR atom to implement Form.ShowInTaskbar.
3090 2006-11-07  Everaldo Canuto  <everaldo@simios.org>
3092         * ToolBar.cs: Fix left click checking.
3094 2006-11-07  Chris Toshok  <toshok@ximian.com>
3096         * ProgressBar.cs: fix a typo in ToString().  fixes a unit test.
3098 2006-11-07  Chris Toshok  <toshok@ximian.com>
3100         * RelatedPropertyManager.cs: set property_name in our ctor.  fixes
3101         PropertyManager unit tests.
3103         * PropertyManager.cs: make property_name internal.
3105 2006-11-07  Chris Toshok  <toshok@ximian.com>
3107         * ButtonBase.cs: initialize base.ime_mode to ImeMode.Disable to
3108         pass a unit test.  Also, don't set image_index to anything in
3109         response to setting the ImageList property.
3111 2006-11-07  Everaldo Canuto  <everaldo@simios.org>
3113         * ToolBar.cs: Ignore click events when mouse button is not a
3114         left button, only accepts other button for dropdown menus.  
3115         Fixes #79854.
3117 2006-11-07  Chris Toshok  <toshok@ximian.com>
3119         * DataGrid.cs: make the back and parent row buttons a little less
3120         ugly.
3122 2006-11-07  Jackson Harper  <jackson@ximian.com>
3124         * TextBoxBase.cs: When converting to Text don't put line breaks in
3125         for soft line breaks.
3126         * TextControl.cs: There is an initial "fake" line in the document,
3127         this is now a soft break line, so that an extra line feed doesn't
3128         get added to the end of documents.
3130 2006-11-07  Chris Toshok  <toshok@ximian.com>
3132         [ fix bug #79778 ]
3133         
3134         * CurrencyManager.cs: if the list is readonly, don't bother
3135         checking if IBindingList.AllowNew is true.
3137         * ThemeWin32Classic.cs (DataGridPaintParentRow): make this work
3138         for non-DataRowView datasources..  or rather, make it not crash.
3139         (DataGridPaintRelationRow): make sure we limit the row painting to
3140         the area not covered by the row header, and make our cell width at
3141         least large enough to cover the relation area.  This allows grids
3142         that have relations but no rows to render correctly.
3143         (DataGridPaintRowContents): same type of changes here.
3144         (SetDataSource): move back to always calling
3145         CalcAreasAndInvalidate.  this fixes a crash/drawing problem when
3146         navigating back through relations.
3147         (HitTest): handle the case where we have no cells but have
3148         relations.  Right now we generate a hit in cell 0 of whatever the
3149         row is, not sure if this is strictly correct, but it works for our
3150         purposes.
3151         
3152         * DataGrid.cs (EndEdit, CancelEdit): if we have no columns, don't
3153         bother doing anything.
3155 2006-11-07  Jonathan Pobst  <monkey@jpobst.com>
3157         * StatusStrip.cs, ToolStripStatusLabel.cs: By request, an
3158         early version of StatusStrip.  Not responsible for eaten
3159         application or firstborn children.
3161 2006-11-06  Chris Toshok  <toshok@ximian.com>
3163         * TabControl.cs: in OnGotFocusInternal/OnLostFocusInternal don't
3164         call GetTabRect with a -1 index.  Fixes #79847.
3166 2006-11-06  Jackson Harper  <jackson@ximian.com>
3168         * TreeNodeCollection.cs: Update scrollbars after clearing.
3170 2006-11-06  Chris Toshok  <toshok@ximian.com>
3172         * NumericUpDown.cs: fix the ToString method for some unit test
3173         love.
3175 2006-11-06  Chris Toshok  <toshok@ximian.com>
3177         * PropertyGrid.cs:
3178         - set the initial SelectedGridItem if we can.
3180         - Exclude non-mergable properties only if we're merging > 1
3181         object.  Merging 1 object isn't really merging, obviously.
3183         - Handle PropertySort.NoSort just like Alphabetical, which is
3184         wrong of course, but at least gets things on the screen.
3185         
3186         * PropertyGridView.cs:
3187         - Add method "FindFirstItem" which finds the first property grid
3188         item, so we can select it by default.
3190         - make use of GridEntry.CanResetValue.
3192         - Don't call RedrawBelowItemOnExpansion here anymore, the
3193         individual GridEntry's will do that.
3195         - Remove the ITypeDescriptorContextImpl internal class.
3196         
3197         * GridEntry.cs:
3198         - this class needs to implement ITypeDescriptorContext, as it's
3199         what MS's PropertyDescriptorGridEntry does, which means we can
3200         remove the ITypeDescriptorContextImpl internal class from
3201         PropertyGrid.cs.  This fixes the crashing portion of bug #79829.
3203         - keep a reference to our PropertyGridView, and move the call to
3204         RedrawBelowItemOnExpansion here from PGV.  This means
3205         programmaticly setting Expanded actually does something visible.
3207         - add a CanResetValue() function which takes into account our
3208         possibly multiple "selected_objects" in the merged case.  Shifting
3209         PropertyGridView to use this method fixes another unreported
3210         crasher found running the test for #79829.
3212         - when Top or Bounds is updated, make sure the PropertyGridTextBox
3213         is updated to reflect this.
3215         * CategoryGridEntry.cs: the ctor takes the PGV now.
3216         
3217 2006-11-06  Jackson Harper  <jackson@ximian.com>
3219         * TextControl.cs: These are 1 based.
3220         * TextBoxBase.cs: When setting the selected text, don't change the
3221         selected text tags, this is done by ReplaceText, just position the
3222         cursor at the end of the new text.
3224 2006-11-06  Alexander Olk  <alex.olk@googlemail.com>
3226         * ListView.cs: Allow label edit only when, when LabelEdit is
3227           set to true.
3229 2006-11-06  Jackson Harper  <jackson@ximian.com>
3231         * TextControl.cs: If a suitable wrapping position isn't found,
3232         just wrap right in the middle of a word.
3234 2006-11-06  Alexander Olk  <alex.olk@googlemail.com>
3236         * ListView.cs, ListViewItem.cs: Implement LabelEdit. Fixes
3237           bug #79820.
3239 2006-11-06  Jackson Harper  <jackson@ximian.com>
3241         * TreeView.cs: Can't use the VisibleCount property when setting
3242         scrollbar heights, because this doesn't take into account whether
3243         or not the horz scrollbar just came visible.
3245 2006-11-05  Everaldo Canuto  <everaldo@simios.org>
3247         * MenuAPI.cs: Deactivate menu on mouse up when menus it is already
3248         activated.  Fixes #79369, #79832.
3250 2006-11-05  Alexander Olk  <alex.olk@googlemail.com>
3252         * FileDialog.cs: *sigh* Because of recent runtime changes (r67043) I
3253           had to remove support for links that point to a directory. FileInfo
3254           returns no usefull information (means, the directory they point to)
3255           for such links. Replaced some empty string ("") with String.Empty.
3257 2006-11-04  Gert Driesen  <drieseng@users.sourceforge.net>
3259         * TreeNodeCollection.cs: To match MS, in 1.0 profile throw 
3260         NullReferenceException when attempting to remove node that is not in
3261         collection. Throw NullReferenceException when null is passed to 
3262         Remove. Allow first element of the collection to be removed. Fixes
3263         bug #79831.  In GetEnumerator ().Current return null if positioned 
3264         before the first element of the collection. In GetEnumerator ().Reset,
3265         position before first element of the collection.
3267 2006-11-04  Gert Driesen  <drieseng@users.sourceforge.net>
3269         * PropertyGrid.cs: To match MS, remove default title and description
3270         for panel. Fixed tooltips for Categorized and Alphabetic toolbar
3271         buttons.
3273 2006-11-04  Chris Toshok  <toshok@ximian.com>
3275         * Theme.cs: add a Clamp method, just for kicks.
3277         * ThemeWin32Classic.cs: clamp all color components to [0..255].
3279 2006-11-04  Chris Toshok  <toshok@ximian.com>
3281         * Form.cs: if the form isn't visible, Close() does nothing.
3283 2006-11-03  Chris Toshok  <toshok@ximian.com>
3285         * Form.cs (Close): if the form is modal, don't Dispose of it, only
3286         Hide it.
3287         (WndProc): don't Dispose after handling the WM_CLOSE message.
3289         * Application.cs (RunLoop): toplevels is a list of Forms, so treat
3290         them as such, instead of using casts from Control to Form.  Also,
3291         don't Dispose of the modal dialog when we fall out of the loop -
3292         Close() it instead.
3294         fixes bug #79813.
3296 2006-11-03  Chris Toshok  <toshok@ximian.com>
3298         * Control.cs (Dispose): only go through the dispose thing if we're
3299         @disposing, and we haven't already been disposed.  Fixes bug
3300         #79814.
3302         * Form.cs: no reason to call "base.Dispose()" here instead of
3303         "Dispose()".
3305 2006-11-03  Mike Kestner  <mkestner@novell.com>
3307         * ComboBox.cs : use ToString instead of casts in AddItem for
3308         sorting functionality.  Fixes #79812.
3310 2006-11-03  Chris Toshok  <toshok@ximian.com>
3312         * Application.cs: pave the way for actually using the thread
3313         exception dialog.  it's ifdefed out at the moment.
3315 2006-11-03  Chris Toshok  <toshok@ximian.com>
3317         * ThreadExceptionDialog.cs: until we get a better layout, actually
3318         hide the details textbox and label when we shouldn't see them.
3320 2006-11-03  Jackson Harper  <jackson@ximian.com>
3322         * TextBoxBase.cs: Don't bail from the scrollbar calcs for non
3323         multiline textboxes anymore.  This method also determines the
3324         width/height of a textboxes canvas area.
3325         - Sorta a revert of the last patch.  For multiline just position
3326         the controls, then bail.  This way the scrollbar width won't be
3327         altered.
3329 2006-11-03  Everaldo Canuto  <everaldo@simios.org>
3331         * ThemeWin32Classic.cs: Dont paint inner lines of 3D border when
3332         it dont need.  Fixes #79537.
3334 2006-11-02  Jackson Harper  <jackson@ximian.com>
3336         * X11Dnd.cs: We always allow copy, since XDND implies Copy.  Also
3337         send the status after firing the DndOver event.
3339 2006-11-02  Rolf Bjarne Kvinge  <RKvinge@novell.com>
3341         * TrackBar.cs: Now orientation only switches height / width if
3342         the control's handle is created (Win32 does it like this). Also 
3343         fixed a typo in ToString() for a test to pass, changed the 
3344         exception thrown in set_LargeChange and set_SmallChange to 
3345         match Win32 behaviour, and added TrackBar tests to the unit 
3346         tests.
3348 2006-11-02  Chris Toshok  <toshok@ximian.com>
3350         * XplatUIX11.cs: the atom we want is _NET_WM_STATE_SKIP_TASKBAR,
3351         not _NET_WM_STATE_NO_TASKBAR.
3353 2006-11-02  Jackson Harper  <jackson@ximian.com>
3355         * TextControl.cs: Increment count by one, since in the update view
3356         count - 1 is used.
3358 2006-11-02  Jackson Harper  <jackson@ximian.com>
3360         * TextBoxBase.cs: Use client rectangle not bounds for checking if
3361         the mouse is in the client rectangle (duh).
3363 2006-11-02  Rolf Bjarne Kvinge  <RKvinge@novell.com>
3364         
3365         * TrackBar.cs: Fixed trackbar jumping around when clicking
3366         on it - the trackbar was not detecting correctly at which
3367         side of the thumb the click was done. (fixes #79718)
3369 2006-11-02  Everaldo Canuto  <everaldo@simios.org>
3371         * ListBox.cs: scroll visible area when change SelectedIndex to
3372         a non visible area.  Fixes #79481.
3374 2006-11-01  Jackson Harper  <jackson@ximian.com>
3376         * TextControl.cs: When replacing the selection move the selection
3377         start/end/anchor to the end of the new text.
3379 2006-11-01  Jackson Harper  <jackson@ximian.com>
3381         * XplatUIWin32.cs: When setting the parent change the controls
3382         visibility to it's visibility flag, not to it's old parents
3383         visibility (.Visible walks the parent chain).
3385 2006-11-01  Chris Toshok  <toshok@ximian.com>
3387         * XplatUIX11.cs: revert the #79790 fix, as the simple.
3388         XSetTransientForHint fix breaks paint .net's tool windows.  more
3389         work needed for that one.
3391 2006-11-01  Chris Toshok  <toshok@ximian.com>
3393         * ScrollBar.cs: throw ArgumentException instead of Exception in
3394         LargeChange/SmallChange setters.  fixes unit tests.
3396 2006-10-31      Andreia Gaita <shana.ufie@gmail.com>
3398         * ContainerControl.cs: reverted rev.67183 (which was itself
3399         a reversion of rev.66853... eh).
3400         
3401         * Control.cs: Fixes Reflector hang by changing Focus() call
3402         to what it was before rev.66643 (calling Select() here sets 
3403         ActiveControl, which in some situations calls back Focus and 
3404         eventually does a stack overflow). Temp fix.    
3405         Changes to GetNextControl() to not look for children to select when
3406         parent cannot be selectable (so it looks for siblings instead)  
3407         
3408 2006-10-31  Mike Kestner  <mkestner@novell.com>
3410         * CheckedListBox.cs : off by one error in returned index from
3411         ObjectCollection.Add.  Fixes #79758.
3413 2006-10-31  Chris Toshok  <toshok@ximian.com>
3415         * UpDownBase.cs: remove the OnGotFocusInternal/OnLostFocusInternal
3416         calls for the textbox/spinner, to keep from recursing to the point
3417         where we crash.  Fixes #79760.
3419 2006-10-31  Chris Toshok  <toshok@ximian.com>
3421         * ListControl.cs (set_SelectedValue): don't throw exceptions on
3422         null/"" value, just return.  matches ms's behavior and fixes some
3423         failing tests.
3425 2006-10-31  Chris Toshok  <toshok@ximian.com>
3427         * Control.cs (set_Capture): make a logic a little easier to
3428         follow.
3430         * XplatUIX11.cs (CleanupCachedWindows): zero out the Grab window
3431         if it's being destroyed.  A necessary fix surely, but a bandaid
3432         also, to fix the stuck capture problem in bug #78413.
3434 2006-10-31  Chris Toshok  <toshok@ximian.com>
3436         * XplatUIX11.cs: fix a couple of compiler warnings, and follow the
3437         convention of clearing hwnd.ClientRect when we set the
3438         width/height (so it'll be recalculated by Hwnd).
3440 2006-10-31      Andreia Gaita <shana.ufie@gmail.com>
3442         * ContainerControl.cs: reversed Contains check from
3443         ActiveControl due to hanging problems. This fix
3444         partly regresses #79667 (button does not have
3445         initial focus), so this might be a symptom for 
3446         a larger parenting problem (set_ActiveControl
3447         is being called but the child control does
3448         not have the parent set yet?)   
3449         
3450 2006-10-31  Mike Kestner  <mkestner@novell.com>
3452         * MenuAPI.cs : fix keynav when menu is click activated.
3454 2006-10-31  Jonathan Pobst  <monkey@jpobst.com>
3456         * ToolStrip*: Version 0.2.
3458         * MenuStrip.cs: Version 0.1.
3460         * Form.cs: Add a 2.0 MenuStrip tracker like the 1.1 Menu one.
3462 2006-10-30  Chris Toshok  <toshok@ximian.com>
3464         [ fixes the oversized notify icon issue in bug #79745 ]
3465         
3466         * NotifyIcon.cs: scale the icon down to the size we're given by
3467         the XplatUI layer (this would be faster if we did it once instead
3468         of whenever we paint..)  Also, remove the WM_NCPAINT handling,
3469         since it's never invoked.
3471         * XplatUIX11.cs: the gnome and kde systrays use icons that are 24
3472         pixels high by default, so let's hardcode our systray icon to that
3473         size.  The SYSTEM_TRAY protocol should really have a way for
3474         client apps to query for the correct icon size.. but oh well.  A
3475         couple of patches to deal with the screwy client_window ==
3476         whole_window notifyicon stuff (we don't want to PerformNCCalc, for
3477         instance, and also make sure we don't XSelectInput twice).
3479 2006-10-30  Chris Toshok  <toshok@ximian.com>
3481         * Control.cs: ugh, the unit test fix (CH11, yesterday) breaks when
3482         recreating forms.  Control recreation is the bane of my existence.
3483         Fix it in a way that keeps everyone happy.
3485 2006-10-30  Chris Toshok  <toshok@ximian.com>
3487         * XplatUIX11.cs: use StructureNotifyMask on all whole_windows, not
3488         just non-CHILD ones.  otherwise sometimes scrollbars end up with
3489         client_windows not being resized to the proper size (ReportBuilder
3490         shows this extremely well).
3492 2006-10-30  Chris Toshok  <toshok@ximian.com>
3494         * XplatUIX11.cs (SetWMStyles): reinstate the XSetTransientForHint
3495         for non-WS_EX_APPWINDOW windows.  This is what keeps them from
3496         showing up in the gnome taskbar.  Fixes bug #79790.
3498 2006-10-30  Chris Toshok  <toshok@ximian.com>
3500         * ApplicationContext.cs: guard against a NRE.
3502         * Application.cs: null out the old MainForm for the context, so we
3503         don't try to use it again once it's disposed.  Fixes bug #79783.
3505 2006-10-30  Chris Toshok  <toshok@ximian.com>
3507         * DataGrid.cs (set_DataSource, set_DataMember): if we have a
3508         BindingContext, set the data source directly, otherwise do the
3509         lazy approach - the actual ListManager will be created when we get
3510         a BindingContext. Fixes bug #79700.
3512 2006-10-30  Jonathan Pobst  <monkey@jpobst.com>
3514         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIOSX.cs,
3515           XplatUIX11.cs: Remove old 2 parameter SetVisible.
3517         * Control.cs: Use the new 3 parameter SetVisible with activate = true.
3519 2006-10-30  Jonathan Pobst  <monkey@jpobst.com>
3521         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs: Add an overload
3522         of SetVisible that allows a window to be shown, but not activated.
3523         This is needed on Windows for MenuStrip, and can probably be used
3524         with MainMenu and ComboBox to fix the focus stealing issues on
3525         Windows.
3527         * XplatUIOSX.cs, XplatUIX11.cs: Not needed, call existing SetVisible.
3529 2006-10-30  Alexander Olk  <alex.olk@googlemail.com>
3531         * PictureBox.cs: Fix the output of the ToString method.
3533 2006-10-29  Chris Toshok  <toshok@ximian.com>
3535         * Control.cs (get_TopLevelControl): fix bug #79781.
3537 2006-10-29  Chris Toshok  <toshok@ximian.com>
3539         * ListControl.cs (set_DataSource): throw Exception here, not
3540         ArgumentException, to match MS behavior.
3542 2006-10-29  Chris Toshok  <toshok@ximian.com>
3544         * Form.cs: remove the try-catch's around calls to GetWindowState.
3545         We can just check the return value.
3547         * XplatUIX11.cs: don't throw exceptions from GetWindowState.
3548         Instead return -1.
3550         * XplatUI.cs: Add note about additional return value for
3551         GetWindowState.
3553 2006-10-29  Chris Toshok  <toshok@ximian.com>
3555         * Control.cs (CreateHandle): when we create our handle, we also
3556         create the handles of our child controls.  Fixes one of the
3557         Control unit tests (CH11).
3559 2006-10-28  Alexander Olk  <alex.olk@googlemail.com>
3561         * MimeIcon.cs: If a gnome icon doesn't exist add a default icon.
3563 2006-10-28  Alexander Olk  <alex.olk@googlemail.com>
3565         * ThemeClearlooks.cs: A little speedup.
3567 2006-10-27  Chris Toshok  <toshok@ximian.com>
3569         * Control.cs: implement Control.FromChildHandle in a way that
3570         matches the docs (and fixes the failed test.)
3572 2006-10-27  Chris Toshok  <toshok@ximian.com>
3574         * DataGridTableStyle.cs: reproduce buggy MS behavior (with
3575         comments).
3577         * DataGrid.cs: implement ResetForeColor such that the tests
3578         succeed.
3579         
3580 2006-10-27  Chris Toshok  <toshok@ximian.com>
3582         * ToolBarButton.cs: setting text/tooltiptext to null results in it
3583         being set to "".  Fixes bug #79759.
3585 2006-10-27  Jackson Harper  <jackson@ximian.com>
3587         * TextControl.cs: We need to clear the entire selection area when
3588         setting the start, otherwise multiline selections are still
3589         visible.
3591 2006-10-26  Chris Toshok  <toshok@ximian.com>
3593         * PropertyGridView.cs: 
3595         - ifdef all the code specific to the double
3596         buffer case, and provide some alternatives in the non-doublebuffer
3597         code, which makes heavy use of XplatUI.ScrollWindow to move things
3598         around without having to invalidate (and cause flicker).  There
3599         are still some drawing problems in the non-doublebuffered case, so
3600         DOUBLEBUFFER is defined by default.
3602         - Fix the way dropdowns are handled.  now we explicitly watch for
3603         the events which might cause the dropdown to close, and break out
3604         of the nested event loop there.  This gets rid of all Capture
3605         code, at the expense of the Msg special casing.  Seems to work,
3606         though, and fixes bug #79743.
3608 2006-10-27  Rolf Bjarne Kvinge <RKvinge@novell.com>
3609         * Control.cs: SetIsRecreating now recreates implicitly added
3610         child controls as well. Finally fixes #79629. The flag passed to 
3611         SetIsRecreating has also been removed since it wasn't used.
3612         
3613 2006-10-26  Carlos Alberto Cortez <calberto.cortez@gmail.com>
3615         * PageSetupDialog.cs: Clean some code, fix some bits, 
3616         add some checks, and add a printer sub-dialog.
3618 2006-10-26  Chris Toshok  <toshok@ximian.com>
3620         * PropertyGrid.cs: make set_SelectedObject call
3621         set_SelectedObjects, and move the duplicate logic to the
3622         SelectedObjects setter.  Also, raise SelectedObjectsChanged.
3624         * PropertyGridView.cs: hide the textbox when we get a
3625         SelectedObjectsChanged event.
3627         Fixes bug #79748.
3629 2006-10-26  Chris Toshok  <toshok@ximian.com>
3631         * PropertyGridView.cs: deal with the type converter not supporting
3632         GetStandardValues() or GetStandardValues() returning null, which
3633         is does in the default case.  Fixes #79742.
3635 2006-10-25  Andreia Gaita <shana.ufie@gmail.com>
3637         * CheckedListBox.cs: nunit no longer crashes when selecting 
3638         Project/Edit menu option
3639         
3640 2006-10-25  Andreia Gaita <shana.ufie@gmail.com>
3642         * MenuAPI.cs: prevent ExecFocusedItem from blowing up if there
3643         is no menu selected. fixes #79739
3645 2006-10-25  Chris Toshok  <toshok@ximian.com>
3647         * PropertyGridView.cs: factor out the splitter invalidation code
3648         into the SplitterPercent setter, and for kicks implement the
3649         Ctrl-Left/Ctrl-Right handling that moves the splitter by a small
3650         amount in either direction.
3652 2006-10-25  Chris Toshok  <toshok@ximian.com>
3654         * PropertyGridView.cs: do some cleanup of the brush used to draw
3655         text - read only fields should be grayed out.  not sure how to do
3656         this with the textbox, though.  but the textbox's should also be
3657         readonly now at least.  Also, hide/show the textbox when resizing
3658         the control.
3659         
3660         * CursorConverter.cs: use System.Reflection when getting the
3661         properties of Cursors, as TypeDescriptor.GetProperties isn't
3662         returning static properties.
3664 2006-10-25  Chris Toshok  <toshok@ximian.com>
3666         * PropertyGridView.cs: factor out the up/down handling, and reuse
3667         it for page up/down.  also add End/Home support.
3669 2006-10-25  Chris Toshok  <toshok@ximian.com>
3671         * PropertyGridView.cs:
3673         - ensure the selected grid item is visible in the scrolled area,
3674         fixes bug #79572.
3676         - fix Keys.Down handling when you're on the last item in the
3677         propertygrid.
3679 2006-10-25  Mike Kestner  <mkestner@novell.com>
3681         * MenuAPI.cs : set the ActiveTracker for MainMenu non-popup 
3682         clicks too.  Fixes #79725.
3684 2006-10-24  Chris Toshok  <toshok@ximian.com>
3686         * PropertyGrid.cs: use property.Converter instead of
3687         TypeDescriptor.GetConverter(property.PropertyType), so we catch
3688         TypeConverters declared on the property as well as on the
3689         PropertyType.  Fixes bug #79678.
3691 2006-10-24  Alexander Olk  <alex.olk@googlemail.com>
3693         * MimeIcon.cs, Mime.cs:
3694           Fallback to the default platform handler if no shared mime info
3695           stuff exists (fixes #79693).
3697 2006-10-20 Andreia Gaita <shana.ufie@gmail.com>
3698         * ContainerControl.cs: Incorrect contains check in ActiveControl 
3699         from previous fix (duh).
3701 2006-10-20  Chris Toshok  <toshok@ximian.com>
3703         * PropertyGridView.cs: the dropdown should be MIN(number of items
3704         in list, 15).  Fixes #79551.
3706 2006-10-20 Andreia Gaita <shana.ufie@gmail.com>
3707         Fixes #79384, #79394, #79652, #79667
3708         * Application.cs: 
3709         
3710         - Modal windows are now destroyed in the proper order for windows
3711         
3712         * ContainerControl.cs:
3713         
3714         - ActiveControl setter has more conditions on when to return:
3715                 - if we're reselecting the active control, but it actually
3716                 didn't have focus (window hidden or some such), it runs
3717                 - if the active control being selected doesn't actually 
3718                 exist in the container, it returns
3719         
3720         * Form.cs
3721         
3722         - The ShowDialog now gets the current form as the owner when
3723         invoking without parameters, and correctly activates the owner 
3724         when returning
3725         
3726         * MessageBox.cs
3727         
3728         - MessageBox now catches the Escape key to exit
3730 2006-10-20  Chris Toshok  <toshok@ximian.com>
3732         * PropertyGridView.cs: fix a number of issues (bug #78565, and
3733         most of bug #79676):
3735         - you can navigate around the property grid with the arrow keys.
3737         - the dropdown is sized properly when the pg has a vertical
3738         scrollbar.
3740         - fix the indentation for subentries, and properly select the
3741         entire label rect.
3743         - fix the gray bar's drawing (only draw it to the last element,
3744         not for the height of the control.  Also make sure we draw that
3745         last horizontal grid line.
3747         - use the same mechanism the datagrid uses wrt the editing textbox
3748         when scrolling/resizing/etc.  Namely, we hide it first, do the
3749         operation, then show it again (if it's still visible).
3750         
3751         - aggressively remove a lot of unnecessary refreshes (and also
3752         calls to Invalidate(). call more limited variants, and only redraw
3753         what we need.)
3754         
3755         * PropertyGrid.cs:
3757         - when we're populating the merged collection, fill in the UI
3758         parent with either the passed in item, or the category item we
3759         create.
3761         - remove the Refresh call from the BorderHelpControl.OnSizeChanged.
3763         * GridItem.cs: drop some fully qualified names.
3764         
3765         * GridEntry.cs: add a "UIParent", which is basically the parent
3766         treenode.
3768         * GridItemCollection.cs: add an IndexOf method.
3770 2006-10-20  Mike Kestner  <mkestner@novell.com>
3772         * MainMenu.cs : go back to Draw in OnMenuChanged.  Until we get
3773         a working win32 NC invalidation mechanism, we can't invalidate
3774         menus.  [Fixes #79705]
3776 2006-10-20  Mike Kestner  <mkestner@novell.com>
3778         * ListBox.cs : don't update the VScrollbar if the list is empty,
3779         just hide it.  [Fixes #79692]
3781 2006-10-20  Jackson Harper  <jackson@ximian.com>
3783         * RichTextBox.cs: Handle some special chars better, and don't skip
3784         the entire group when we encounter a special char that we don't
3785         handle correctly.
3787 2006-10-18  Chris Toshok  <toshok@ximian.com>
3789         * PropertyGridView.cs: address a number of issues from bug #79676,
3790         mostly of the cosmetic variety.
3792         - The highlight rectangle for indented items not extends all the
3793         way to the left.
3795         - Indented items aren't indented so much.
3797         - the dropdown is properly sized width-wise if the pg has a
3798         vertical scrollbar.
3800 2006-10-18  Chris Toshok  <toshok@ximian.com>
3802         * XplatUIX11.cs (SystrayAdd): a rather convoluted change, but the
3803         systray stuff is rather convoluted to begin with.
3805         systray icons are a single window for some reason (that I haven't
3806         figured out yet), and for them, client_window == whole_window.
3807         Given the way the tests are structured elsewhere to determine
3808         which paints are pending (client vs. nc), that situation will
3809         always yield PAINT, not NCPAINT.  So, if we have a pending
3810         nc_expose and no pending expose, remove the hwnd from the paint
3811         queue, and also set nc_expose_pending to false, to keep us from
3812         blocking further expose's adding the hwnd to the paint queue.
3814         phew.  like i said, a rather convoluted change.  Fixes the
3815         notifyicon repaint issues in bug #79645.
3817 2006-10-18  Chris Toshok  <toshok@ximian.com>
3819         * Form.cs: when getting the backcolor of the form, don't get
3820         base.BackColor, as this allows parents to influence the background
3821         color.  This breaks mdi forms.  Instead, if the background_color
3822         is empty, return the default.
3824 2006-10-18  Chris Toshok  <toshok@ximian.com>
3826         * XplatUIX11.cs: change some debug ifdefs, and return XGetParent
3827         to being private instead of internal static.
3829         * Control.cs: remove all the stupid ParentWaitingOnRecreation
3830         crap, it wasn't working for more deeply nested controls anyway,
3831         and we already have the is_recreating flag - use that instead.
3832         Before calling DestroyHandle in RecreateHandle, recurse through
3833         the control tree setting it to true.  this returns the recreate
3834         code to much of its original simplicity, while now guaranteeing we
3835         actually recreate everything we're supposed to.  This change gets
3836         fyireporting actually showing mdi children.
3838 2006-10-17  Chris Toshok  <toshok@ximian.com>
3840         * Form.cs: remove some debug spew, and collapse some duplicate
3841         code at the end of SetClientSizeCore.
3843         * XplatUIX11.cs: 
3844         - add some more debug spew here too wrt Destroy handling.
3845         - don't call hwnd.Dispose in DestroyWindow, it's effectively done
3846         in Control's handling of WM_DESTROY.
3847         - Remove the handling of zombie window DestroyNotifies from the
3848         event loop - we don't need it.  Now the only DestroyNotifies we
3849         actually handle are ones generated by X.
3850         - When sending _NET_ACTIVE_WINDOW, the first param should be 1, to
3851         match gtk's (functioning) handling of this. This keep metacity
3852         from leaving droppings in the form of wm borders with no window
3853         contents all over the place.
3855         * Control.cs:
3856         - add a bunch of debug spew wrt control recreation.
3857         - fix a bug where we weren't tracking Visible properly on
3858         recreated hwnds.
3859         - fixed the WM_PAINT double buffer handling to support re-entrant
3860         calls (yes, i know it's gross, but it's happening to us).
3862 2006-10-17  Rolf Bjarne Kvinge  <rolfkvinge@ya.com>
3863         * ThemeWin32Classic.cs: changed drawing of selected days
3864         to make them look better.
3866 2006-10-16  Chris Toshok  <toshok@ximian.com>
3868         * Hwnd.cs: replace the user_data/client_dc/non_client_dc with
3869         drawing_stack.  Nuke the ClientDC/NonClientDC properties.
3871         * XplatUIX11.cs: move away from using hwnd.client_dc and
3872         hwnd.non_client_dc and on to a stack of dc's (and in window's
3873         case, PAINTSTRUCT's), so we can deal with nested Paint calls
3874         without puking or not disposing of Graphics objects.
3876         * XplatUIOSX.cs: same.
3878         * XplatUIWin32.cs: same.
3880 2006-10-03  Alexander Olk  <alex.olk@googlemail.com>
3882         * FileDialog.cs: Don't call on_directory_changed inside
3883           OnSelectedIndexChanged (it changes the SelectedIndex too).
3884           Instead move it to OnSelectionChangeCommitted.
3886 2006-10-13  Chris Toshok  <toshok@ximian.com>
3888         * XplatUIX11.cs: more Destroy work.  the current code does the
3889         following things, in order:
3891         1. Enumerates all handles of all controls at or below the one
3892         being destroyed, in pre-order.  As it is doing this, it marks the
3893         handles as zombie and clears all references to them.
3894         
3895         2. calls XDestroyWindow on the window passed in.
3897         3. SendMessage's WM_DESTROY to all he handles in the accumulated
3898         list.
3900 2006-10-13  Chris Toshok  <toshok@ximian.com>
3902         * XplatUIX11.cs: set hwnd.zombie to true before calling
3903         SendMessage (WM_DESTROY).  this keeps us from marking the new
3904         window a zombie, and also keeps us from calling sendmessage at
3905         all.
3907 2006-10-13  Jackson Harper  <jackson@ximian.com>
3909         * TextControl.cs: Do not show the caret and selection at the same
3910         time.  Reduces ugliness by 35%.
3912 2006-10-13  Chris Toshok  <toshok@ximian.com>
3914         * XplatUIX11.cs (SendWMDestroyMessages): set the hwnd to be a
3915         zombie after we do the recursive call, so we actually do call
3916         SendMessage on the children controls.
3917         (GetMessage): if we find a pending paint event for a zombie hwnd,
3918         remove the hwnd from the paint queue, or else it will always be
3919         there (and we'll effectively loop infinitely)
3921 2006-10-13  Mike Kestner  <mkestner@novell.com>
3923         * MenuItem.cs : add Selected format under keynav too.
3924         Fixes #79528.
3926 2006-10-13  Gert Driesen  <drieseng@users.sourceforge.net>
3928         * PropertyGrid.cs: Fixed some NRE's and small difference between our
3929         implementation and that of MS.
3931 2006-10-13  Chris Toshok  <toshok@ximian.com>
3933         * Control.cs (OnInvalidated) only futz with the invalid_region if
3934         the control is double buffered.  this fixes the apparent hang in
3935         the ListView unit tests.  Someone needs to make the
3936         BeginEndUpdateTest not call OnInvalidated 15004 times, though..
3938 2006-10-13  Chris Toshok  <toshok@ximian.com>
3940         * PropertyGridView.cs:
3942         - do a little refactoring so that only one place calls
3943         dropdown_form.Hide, and that is CloseDropDown.  make everywhere
3944         else call that.  Also make it Refresh, since there are redraw bugs
3945         otherwise (we should take a look at that...)
3947         - do a little more refactoring work to share the body of code
3948         involved with the drop down.  it was duplicated in the code
3949         dealing with the listbox handling and in the code dealing with the
3950         UITypeEditors.
3952         - add a Capture to the dropdown form's control once it's
3953         displayed, and add a MouseDown handler that checks to make sure
3954         the position is inside the control.  If it's not, close the
3955         dropdown.  This fixes #78190.
3957         - in SetPropertyValueFromUITypeEditor, only call SetPropertyValue
3958         if the value is different than the initial value.
3959         
3960 2006-10-13  Andreia Gaita  <shana.ufie@gmail.com>
3962         * Control.cs: see #78650
3963         - Fixed GetNextControl for several cases:
3964                 - Changed FindFlatForward to return 
3965                 correct sibling control when more than one
3966                 control has same TabIndex as the currently 
3967                 focused one.
3968                 - Changed FindFlatBackward to loop children
3969                 from last to first and apply same logic as in
3970                 FindFlatForward
3971                 - Changed FindControlForward to search for
3972                 children when control is not a container
3973                 but has children, or search for siblings if
3974                 control is a container...
3975                 - Changed FindControlBackward   to continue
3976                 searching for child controls when hitting 
3977                 Panel-like parents
3978                 
3979         - Fixed Focus method to update ActiveControl
3980         (FocusTest.FocusSetsActive failure)
3981         
3982         * TabControl.cs:
3983         - Focus rectangle now refreshes when gaining
3984         or losing focus
3985         - Removed grab for Tab key on IsInputKey that 
3986         was keeping tab navigation from working (#78650)
3988 2006-10-13  Chris Toshok  <toshok@ximian.com>
3990         * PropertyGridView.cs:
3991         - Rewrite SetPropertyValue to loop over SelectedGridItem's
3992         SelectedObjects.
3994         - Deal with GridItem.Value == null a few places.
3996         * PropertyGrid.cs: 
3997         - replace the PopulateGridItemCollection with a pair of methods
3998         which compute the intersection of all the properties in the
3999         SelectedObjects array.  Fixes #79615.
4001         - Throw ArgumentException from set_SelectedObjects if there's a
4002         null in the array.
4004         - Add GetTarget method which can be used to traverse up the
4005         GridItem.Parent chain.  It depends on the assumption that
4006         selected_objects for different GridEntries are always in the same
4007         order (a safe assumption).  Use this method and loop over all the
4008         selected objects in the entry when calling RemoveValueChanged and
4009         AddValueChanged.
4010         
4011         * GridEntry.cs: Make this handle multiple selected objects.
4012         .Value returns null if not all the selected objects share the same
4013         value.
4015 2006-10-12  Jonathan Pobst  <monkey@jpobst.com>
4016         * ToolStrip.cs, ToolStripButton.cs, ToolStripComboBox.cs,
4017           ToolStripControlHost.cs, ToolStripItem.cs, ToolStripLabel.cs,
4018           ToolStripProfessionalRenderer.cs, ToolStripProgressBar.cs,
4019           ToolStripSeparator.cs, ToolStripSplitStackLayout.cs,
4020           ToolStripTextBox.cs: Add accessibility, fix attributes/API and
4021         add additional functionality.
4023 2006-10-12  Mike Kestner  <mkestner@novell.com>
4025         * ErrorProvider.cs : new ToolTipWindow ctor sig.
4026         * HelpProvider.cs : new ToolTipWindow ctor sig.
4027         * ToolTip.cs : remove ToolTip param from Window sig since it is
4028         not used.
4029         * ToolBar.cs : add tooltip support.  Fixes #79565.
4031 2006-10-12  Rolf Bjarne Kvinge  <rolfkvinge@ya.com>
4033         * ComboBox.cs: move the events in set_SelectedIndex to 
4034         after the call to HighlightIndex in order to avoid 
4035         possible recursion and subsequent problems with the call
4036         to HighlightIndex and include a range check in 
4037         set_HighlightIndex. Fixes #79588
4038         
4039 2006-10-12  Rolf Bjarne Kvinge  <rolfkvinge@ya.com>
4041         * MonthCalendar.cs: When FirstDayOfWeek is default set firstday 
4042         to ui thread's settings instead of sunday. 
4043         * ThemeWin32Classic.cs: Localize the day string. Fixes #79563
4045 2006-10-12  Rolf Bjarne Kvinge  <rolfkvinge@ya.com>
4047         * DateTimePicker.cs
4048         * MonthCalendar.cs
4049         * ThemeWin32Classic.cs: rewrote DateTimePicker to fix bug #78364
4050         and implement missing functionality (selecting different parts 
4051         of the date and edit them individually with the keyboard).
4052         
4053 2006-10-11  Chris Toshok  <toshok@ximian.com>
4055         * Control.cs (OnInvalidated): fix NRE relating to last change.
4057 2006-10-11  Chris Toshok  <toshok@ximian.com>
4059         * XplatUIX11.cs (SetWMStyles): make sure we include the MAXIMIZED
4060         atoms in _NET_WM_STATE here if the window is maximized.  We need
4061         to do this because we're *replacing* the existing _NET_WM_STATE
4062         property, so those atoms will be lost otherwise, and any further
4063         call to GetWindowState will return Normal for a window which is
4064         actually maximized.  Fixes #79338.
4066 2006-10-11  Jackson Harper  <jackson@ximian.com>
4068         * TextControl.cs: Special case for setting selection end to
4069         selection start, we basically kill the anchor.
4070         - some todo comments.
4072 2006-10-11  Chris Toshok  <toshok@ximian.com>
4074         * Control.cs: switch to using an "invalid_region" to track which
4075         parts of the image buffer need updating.  This is more code than
4076         the simple fix from r66532.  That version just attempted to always
4077         fill the entire buffer on redraw, which turns out to be
4078         inefficient when invalidating small rectangles.  This version
4079         simply adds the invalid rectangle to the invalid region.  When we
4080         get any WM_PAINT message we see if it can be filled using the
4081         image buffer, and if it can't (if the paint event's clip rectangle
4082         is visible in the invalid region) we first fill the image buffer.
4083         So, the image buffer is still a cache, we just fill it lazily.
4085         * PaintEventArgs.cs: remove the SetClipRectangle method, we don't
4086         need it any longer.
4088 2006-10-11  Chris Toshok  <toshok@ximian.com>
4090         * XplatUIX11.cs (SetWindowPos): we need to update both position as
4091         well as size after calling XMoveResizeWindow.  This keeps us from
4092         ignoring future SetWindowPos calls.  Fixes the disappearing
4093         DateTimePicker in the ToolBarDockExample from bug #72499.
4095 2006-10-11  Chris Toshok  <toshok@ximian.com>
4097         * TextBoxBase.cs: reorder things a bit when it comes to
4098         resizing-causing-recalculation.  we were recalculating the
4099         document when our position was changed, which shouldn't happen.
4100         We only care about size changes.  Clear up some more redundant
4101         recalculation calls while I'm at it.  This makes the toolbar dock
4102         example snappy when you're just dragging toolbars around (since it
4103         causes a relayout whenever you move one.)
4105 2006-10-11  Chris Toshok  <toshok@ximian.com>
4107         * ToolBarButton.cs (get_Rectangle): this only returns
4108         Rectangle.Empty if Visible == false, or Parent == null.
4109         Parent.Visible doesn't matter.
4111 2006-10-10  Chris Toshok  <toshok@ximian.com>
4113         * Control.cs, PaintEventArgs.cs: "internal set { .. }" isn't loved
4114         by .net 1.1, so switch to an internal method instead.
4116 2006-10-10  Chris Toshok  <toshok@ximian.com>
4118         * Control.cs (WM_PAINT): when a control is double buffered we draw
4119         initially to the ImageBuffer and then copy from there.  But when a
4120         parent control which has child controls is double buffered, the
4121         initial drawing doesn't encompass the entire ClientRectangle of
4122         the parent control, so we end up with uninitialized bits (this is
4123         easily seen by dragging the top toolbar in
4124         wf-apps/ToolBarDockExample to the right, quickly).  The fix is to
4125         manually set the ClipRectangle of the paint_event (only the one we
4126         use to populate the ImageBuffer) to ClientRectangle.  Fixes more
4127         of the nastiness in bug #72499.
4129         * PaintEventArgs.cs: Add an internal setter for ClipRectangle,
4130         which we use in Control.cs's WM_PAINT handling.
4132 2006-10-10  Jackson Harper  <jackson@ximian.com>
4134         * TextBoxBase.cs: Finish off the autoscrolling stuff.
4136 2006-10-10  Chris Toshok  <toshok@ximian.com>
4138         * Cursor.cs: Apply a slightly different patch to the one suggested
4139         in #79609.
4141 2006-10-10  Jackson Harper  <jackson@ximian.com>
4143         * MenuItem.cs: Make sure to put the mdi child in the hashtable,
4144         not the parent form.
4145         * TextControl.cs: use difference in old line count vs new count to
4146         calculate how many lines were added, this takes into account soft
4147         line breaks properly.
4149 2006-10-10  Chris Toshok  <toshok@ximian.com>
4151         * LinkLabel.cs: don't call MeasureCharacterRanges against a
4152         rectangle located at 0,0 and the size of the text.  Use
4153         ClientRectangle instead.  This fixes rendering of non-left aligned
4154         link labels.
4156 2006-10-10  Jackson Harper  <jackson@ximian.com>
4158         * TextBoxBase.cs: When we set the selection start position the
4159         caret.
4160         * TextControl.cs: Need to update the caret when we decrement it to
4161         zero.
4162         - Make sure that the selection_visible flag gets reset to false if
4163         the selection isn't visible.  Before this you could get it set to
4164         visible by changing the selection start, then changing the end to
4165         equal the start.
4167 2006-10-09  Jackson Harper  <jackson@ximian.com>
4169         * TreeView.cs: Don't update scrollbars when we aren't visible.
4170         * TreeNodeCollection.cs: Only need to update scrollbars if being
4171         added to an expanded visible node or the root node.
4173 2006-10-09  Chris Toshok  <toshok@ximian.com>
4175         * XplatUIX11.cs (SendMessage): fix NRE.
4177 2006-10-09  Jackson Harper  <jackson@ximian.com>
4179         * TextBoxBase.cs: Implement horizontal autoscrolling.
4180         * TextControl.cs: Add a movement types that allows moving forward
4181         and backwards without wrapping.
4183 2006-10-09  Mike Kestner  <mkestner@novell.com>
4185         * ListViewItem.cs : layout changes for wrapped LargeIcon labels
4186         with focus "expansion" of labels.  Fixes #79532 and then some.
4187         * ThemeWin32Classic.cs : add LineLimit to ListView label format
4188         when wrapping.
4190 2006-10-09  Jackson Harper  <jackson@ximian.com>
4192         * TextBoxBase.cs: Set the default max values to MaxValue since
4193         we use the scrollbar for autoscrolling and the default value is
4194         100.  If we don't do this the caret won't keep up with typing
4195         after about 18 characters.
4196         * TextControl.cs: Make sure the selection is offset by the
4197         viewport x.  This fixes selection when using auto scrolling.
4199 2006-10-07  Andreia Gaita <shana.ufie@gmail.com>
4200         
4201         * Form.cs: The active control should be selected after the 
4202         OnLoad so that any child control initialization that affects
4203         the selection is done. Fixes #79406
4205 2006-10-06  Chris Toshok  <toshok@ximian.com>
4207         * XplatUIX11.cs: This is perhaps a dangerous change, but it seems
4208         to have no evil effects.
4210         - Stop selecting StructureNotifyMask on non-toplevel windows.
4212           The only way children should be resized is by using the SWF api,
4213           and we already send WM_WINDOWPOSCHANGED messages in those cases.
4214           Toplevel windows can be interacted with via the window manager,
4215           and so we keep the input mask there.
4217           The other event StructureNotifyMask gives us (that we care
4218           about) is DestroyNotify.  The code is already structured such
4219           that it assumes we won't be getting a DestroyNotify event for
4220           the window we pass to XDestroyWindow (which is what
4221           StructureNotifyMask is supposed to guarantee.)  So, that code
4222           shouldn't be affected by this either.
4224         - Stop selecting VisibilityChangeMask altogether.
4226           We weren't doing anything with the resulting events anyway.
4227         
4228         This vastly reduces the number of X requests and events we see
4229         when resizing/laying out a large ui.
4231 2006-10-06  Chris Toshok  <toshok@ximian.com>
4233         * ScrollableControl.cs (DisplayRectangle): we need to take into
4234         account the DockPadding regardless of whether or not auto_scroll
4235         == true.  rework this slightly to this effect, and fix bug #79606,
4236         and part of #72499 (you can now see the drag handles and drag
4237         toolbars around).
4239 2006-10-06  Gert Driesen  <drieseng@users.souceforge.net>
4241         * ListViewItem.cs: Collections of selected and checked items are now
4242         dynamically rebuilt. Whenever an item is (un)checked or (de)selected
4243         we mark the collection "dirty".
4244         * ListView.cs: Marked collections readonly. Modified UpdateSelection
4245         to only clear SelectedItems when a new item is selected and MultiSelect
4246         is enabled. CheckedItems and SelectedItems now subscribe to Changed
4247         event of ListViewItemCollection, and mark its list dirty whenever
4248         that event is fire. This allows us to return selected/checked items 
4249         in the same order as they are in the Items collection. This matches
4250         the MS behavior.
4252 2006-10-06  Chris Toshok  <toshok@ximian.com>
4254         * NotifyIcon.cs (HandleMouseUp): only show the context menu on
4255         right mouse clicks.  Fixes bug #79593.
4257 2006-10-06  Chris Toshok  <toshok@ximian.com>
4259         * Splitter.cs: doh, fix splitters that don't want to cancel the
4260         movement when you drag them.  Also, impose the limits on the
4261         values we send to the SplitterMovingEvent.  Fixes #79598.
4263 2006-10-06  Jackson Harper  <jackson@ximian.com>
4265         * TextBoxBase.cs: Ignore whether or not the scrollbar is enabled,
4266         since we use this for auto scrolling also.
4268 2006-10-05  Chris Toshok  <toshok@ximian.com>
4270         * DataGridBoolColumn.cs: Nuke the code from ConcedeFocus.  I'm
4271         beginning to think that most datagrid column types don't need this
4272         method.  Fixes bug #79392.
4274 2006-10-05  Chris Toshok  <toshok@ximian.com>
4276         * DataGrid.cs: move back to a more lazy scheme for creating the
4277         CurrencyManager, so we aren't updating it every time you set
4278         either DataSource or DataMember.  Also, don't call
4279         RecreateDataGridRows if the currency manager hasn't changed.
4281 2006-10-05  Chris Toshok  <toshok@ximian.com>
4283         * ComboBox.cs: by the time the OnSelectionChangeCommitted event is
4284         emitted, SelectedIndex should already be updated.  Fixes bug
4285         #78929.
4287 2006-10-05  Jonathan Pobst  <monkey@jpobst.com>
4289         * ToolStripComboBox.cs, ToolStripControlHost.cs, ToolStripProgressBar,
4290           ToolStripTextBox.cs: Initial commit.
4291         * ToolStripItem.cs: Fixes for OnLayout, BackColor, Parent.
4293 2006-10-05  Jackson Harper  <jackson@ximian.com>
4295         * TabControl.cs: We need to invalidate the tab control area when
4296         new ones are added (duh).
4298 2006-10-03  Chris Toshok  <toshok@ximian.com>
4300         * Form.cs (ProcessDialogKey): if the focused control is in this
4301         form and is a button, call its PerformClick method here.  Fixes
4302         #79534.
4304 2006-10-04  Jackson Harper  <jackson@ximian.com>
4306         * TabPage.cs: Ignore setting of Visible, and add an internal
4307         method for setting the controls visibility.  TabPage's Visible
4308         property is a little strange on MS, this seems to make us
4309         compatible, and fixes cases where people set all the tab pages to
4310         visible.
4311         * TabControl.cs: Use the new internal setting on tab pages
4312         visibility.
4314 2006-10-03  Mike Kestner  <mkestner@novell.com>
4316         * ComboBox.cs : raise Click on ComboTextBox clicks. Fixes #79555.
4318 2006-10-03  Mike Kestner  <mkestner@novell.com>
4320         * ListView.cs : use is_visible instead of Visible to check if 
4321         scrollbars should be placed/sized.  Also some max_wrap_width
4322         love for LargeIcon view.  [Fixes #79533]
4324 2006-10-03  Atsushi Enomoto  <atsushi@ximian.com>
4326         * TextControl.cs :
4327           Make set_TextAlign() do actually update the align. Fixed #78403.
4329 2006-10-03  Chris Toshok  <toshok@ximian.com>
4331         * DataGrid.cs: fix a crash when switching datasources if the
4332         vertical scrollbar is at someplace other than Value = 0.  Also,
4333         reduce the number of recalculation passes we do in SetDataSource
4334         from 2 to 1.
4336 2006-10-03  Jackson Harper  <jackson@ximian.com>
4338         * TextBoxBase.cs: Move the if value the same bail check up, we
4339         don't want to empty the document if it is already empty, this
4340         seems to severly mess up the caret.  TODO: I should probably fix
4341         the empty statement to update teh caret somehow.
4343 2006-10-03  Chris Toshok  <toshok@ximian.com>
4345         * ThemeWin32Classic.cs, DataGrid.cs: some changes so that the
4346         incredibly hacky Windows.Forms FAQ autosize rows entry (it uses
4347         reflection, an internal row type, properties on said type, etc.)
4348         will work with our datagrid.  Fixes #79531.
4350 2006-10-03  Alexander Olk  <alex.olk@googlemail.com>
4352         * FileDialog.cs: Don't crash if a path is not accessible
4353           (System.UnauthorizedAccessException). Fixes #79569.
4354         * MimeIcon.cs: Workaround for a Uri bug. Unix paths/files can have
4355           a ':' too. Return unknown icon for those paths/files.
4357 2006-10-03  Sebastien Pouliot  <sebastien@ximian.com>
4359         * ToolTip.cs: Fix rare, but possible, NRE on MouseEnter when 
4360         GetContainerControl returns null.
4362 2006-10-02  Chris Toshok  <toshok@ximian.com>
4364         * XplatUIX11.cs (GetWindowState): use hwnd.client_window in the
4365         call to XGetWindowAttributes instead of "handle".  fixes an X
4366         error using notifyicon after the NotifyIconWindow to Form base
4367         class switch.
4369 2006-10-02  Chris Toshok  <toshok@ximian.com>
4371         * XplatUIX11.cs (QueryPointer): new function, encapsulating the
4372         server grab and looping we need to do to get down to the most
4373         deeply nested child window.
4374         (SetCursorPos): use QueryPointer instead of GetCursorPos, and call
4375         QueryPointer again after the WarpPointer so we can generate a
4376         proper (fake) MotionNotify event to be enqueued in the destination
4377         window's queue.
4378         (GetCursorPos): call QueryPointer.
4380         Fixes #79556.
4382 2006-10-02  Jackson Harper  <jackson@ximian.com>
4384         * NotifyIcon.cs: Derive the notify icon from a form, so things
4385         like FindForm work on it.
4386         - Swallow the WM_CONTEXTMENU message, since that is generated on
4387         mouse down, and context menu is a mouse up kinda guy.  I believe
4388         the correct fix here is probably to make the notify icon entirely
4389         NC area, but this seems to work fine for anyone not manipulating
4390         WndProc.
4392 2006-10-02  Jonathan Pobst  <monkey@jpobst.com>
4394         * ToolStrip.cs, ToolStripButton.cs, ToolStripItem.cs,
4395           ToolStripItemCollection.cs, ToolStripLabel.cs,
4396           ToolStripProfessionalRenderer.cs, ToolStripRenderer.cs,
4397           ToolStripSeparator.cs, ToolStripSplitStackLayout.cs:
4398           Initial implementation.
4399         * TextRenderer.cs: Provide padding to MeasureText.
4401 2006-10-02  Sebastien Pouliot  <sebastien@ximian.com>
4403         * ButtonBase.cs: Fix CreateAccessibilityInstance to return an instance
4404         of ButtonBaseAccessibleObject. Fix bug #79552.
4406 2006-10-02  Jackson Harper  <jackson@ximian.com>
4408         * MdiWindowManager.cs: When maximizing use the containers client
4409         rect, not it's bounds, so nc area is accounted correctly.
4410         - Use the parent form's size for the menu position, since the
4411         client isn't always the full form size.
4413 2006-10-01  Chris Toshok  <toshok@ximian.com>
4415         * ScrollableControl.cs: make sure neither right_edge or
4416         bottom_edge are < 0, since they're used as LargeChange for the
4417         horiz/vert scrollbars respectively.  Fixes #79539.
4419 2006-10-01  Chris Toshok  <toshok@ximian.com>
4421         * NotifyIcon.cs: add NotifyIconWindow.InternalRecreateHandle, so
4422         the xplatuix11 code can cause us to destroy/recreate our handle.
4424         * XplatUIX11.cs
4425         (SystrayAdd):
4426         - this code can be invoked many times for the same Hwnd.  Make
4427           sure we only destroy the client window once (the first time this
4428           method is called).  This fixes bug #79544.
4429         - Remove the call to the improperly bound XSync.  why we had two
4430           bindings to this, I will never know, but this call resulted in
4431           events being discarded from the queue(!).
4432         - correct a misunderstanding of _XEMBED_INFO - the second atom is
4433           not our current state but the state we wish to be in.  So, 0 if
4434           we don't want to be mapped.  Change it to 1.
4435         (SystrayRemove): The XEMBED spec makes mention of the fact that
4436         gtk doesn't support the reparent of client windows away from the
4437         embedder.  Looking at gtksocket-x11.c seems to agree with this.
4438         The only avenue we have for removing systray icons is to destroy
4439         them.  We don't want the handle to go away for good, though, so
4440         call InternalRecreateHandle on the NotifyIconWindow.  Fixes
4441         #79545.
4442         
4443 2006-10-01  Chris Toshok  <toshok@ximian.com>
4445         * Form.cs (WndProc): inline the native_enabled variable usage into
4446         the cases in which it's used.  Fixes #79536.
4448 2006-09-29  Mike Kestner  <mkestner@novell.com>
4450         * ListView.cs : toggle the selection state for ctrl clicks in 
4451         multiselect mode. [Fixes #79417]
4453 2006-09-29  Mike Kestner  <mkestner@novell.com>
4455         * ListView.cs : kill CanMultiSelect and refactor the selection
4456         code to support multiselection in the absence of mod keys. Steal
4457         arrow/home/end keys by overriding InternalPreProcessMessage to
4458         restore regressed keynav behavior.
4459         [Fixes #79416]
4461 2006-09-29  Jackson Harper  <jackson@ximian.com>
4463         * MdiClient.cs: Repaint the titlebars when the active window is
4464         changed.
4466 2006-09-29  Chris Toshok  <toshok@ximian.com>
4468         * Application.cs: when entering a runloop with a modal, make sure
4469         the hwnd is enabled.  Fixes #79480.
4471 2006-09-29  Chris Toshok  <toshok@ximian.com>
4473         * DataGrid.cs (CurrentCell): if we try to navigate to the add row
4474         when ListManager.CanAddRows == false, bump us back one.
4476         * DataGridColumnStyle.cs (ParentReadOnly): remove the
4477         listmanager.CanAddRows check.  This makes ArrayLists uneditable
4478         using a datagrid, which is not right.
4479         (SetColumnValueAtRow): call IEditable.BeginEdit if source[rowNum]
4480         is an IEditable, but call property_descriptor.SetValue regardless.
4481         fixes #79435.
4483 2006-09-29  Chris Toshok  <toshok@ximian.com>
4485         * DataGridBoolColumn.cs: we need to test equality in the face of
4486         possible null values (as is the case with the default NullValue).
4487         This patch keeps us from crashing in that case.
4489 2006-09-29  Jackson Harper  <jackson@ximian.com>
4491         * TreeNodeCollection.cs: Don't do a recalculate/updatescrollbars
4492         here, since it will get called for every node collection in the
4493         tree. This is now done in the treeview once the sorting is
4494         finished.
4495         * TreeView.cs: Recalculate the visible order, and update the
4496         scrollbars after sorting, set the top nope to the root so that the
4497         recalc actually works.
4499 2006-09-29  Chris Toshok  <toshok@ximian.com>
4501         * LinkLabel.cs: more handling of the default link collection in
4502         the face of LinkArea manipulation.  The default link collection
4503         contains 1 element (start=0,length=-1).  If the user sets LinkArea
4504         to anything and the links collection is the default, clear it.
4505         Then only add the link if its nonempty.  Fixes #79518.
4507 2006-09-29  Chris Toshok  <toshok@ximian.com>
4509         * LinkLabel.cs (CreatePiecesFromText): calculate the length of a
4510         piece correctly when we hit a '\n'.  Fixes #79517.
4512 2006-09-29  Chris Toshok  <toshok@ximian.com>
4514         * MimeIcon.cs, ThemeGtk.cs, X11DesktopColors.cs, XplatUIX11GTK.cs:
4515         change the binding of gdk_init_check to take two IntPtr's, and
4516         pass IntPtr.Zero for both of them.  Fixes #79520.
4518 2006-09-29  Mike Kestner  <mkestner@novell.com>
4520         * ComboBox.cs : raise TextChanged on ComboTextBox.TextChanged.
4521         [Fixes #78779]
4523 2006-09-28  Jackson Harper  <jackson@ximian.com>
4525         * XplatUIX11.cs: When translating NC messages make sure we go from
4526         whole window to screen, not client window to screen.
4527         * MdiClient.cs: Remove the calls to PaintWindowDecorations, this
4528         method doesn't exist
4529         - Skip over controls that aren't forms when arranging.
4531 2006-09-28  Jackson Harper  <jackson@ximian.com>
4533         * XplatUIWin32.cs: Clip the rect to the parent window.
4534         * XplatUIStructs.cs: Add clipping modes struct.
4535         * InternalWindowManager.cs: New private method that factors title
4536         bar heights in when calculating the pos of an NC mouse message.
4537         - Use SendMessage to force a paint when the form's size is changed
4538         instead of painting the decorations immediately.
4539         - Don't let the NC button click messages get to DefWndProc,
4540         because they will attempt to handle windowing themself, and this
4541         messes up z-order (it will put them in front of the scrollbars).
4542         * XplatUIX11.cs: Make sure that we don't reset window managers if
4543         we already have one (ie the window is an MDI window).
4545 2006-09-28  Chris Toshok  <toshok@ximian.com>
4547         * MainMenu.cs: fix #79405 by way of a disgusting hack.  all the
4548         menu code really needs going over.
4550 2006-09-27  Chris Toshok  <toshok@ximian.com>
4552         * XplatUIX11.cs (SetWMStyles): more metacity wonderment.  turns
4553         out metacity ignores the MAXIMIZE_HORZ/VERT messages unless the
4554         window is maximizable.  So, we need to make sure that even if we
4555         clear the border/wm frame of those functions, they're still
4556         available (basically, we remove the decoration without removing
4557         the function).  Half the fix for #79338.
4559 2006-09-27  Chris Toshok  <toshok@ximian.com>
4561         * DataGrid.cs (ProcessGridKey): implement Shift-Tab handling.
4562         Fixes bug #79515.
4564 2006-09-27  Chris Toshok  <toshok@ximian.com>
4566         * Splitter.cs: reorder things a bit so that we don't actually
4567         draw/move the splitter until after calling OnSplitterMoving.  This
4568         lets users cancel/disallow the movement by explicitly setting
4569         event.SplitX/SplitY.  Fixes #79372.
4571 2006-09-27  Jackson Harper  <jackson@ximian.com>
4573         * XplatUIX11.cs: Don't hide the caret when it is being destroyed,
4574         because it is most likely on a window being destroyed, and that
4575         will give us an X11 error.
4577 2006-09-27  Chris Toshok  <toshok@ximian.com>
4579         * PropertyGridView.cs: half of the fix for #78190.  Clicking on
4580         the dropdown button now toggles between showing and hiding the
4581         dropdown.  Also, get rid of dropdown_form_showing and just use
4582         dropdown_form.Visible.  We still don't do a grab, but I'll leave
4583         that part to someone who has handled Capture-fu before.
4585 2006-09-27  Chris Toshok  <toshok@ximian.com>
4587         * DataGrid.cs: return false if alt isn't pressed when '0' is
4588         pressed.  this keeps the '0' key from being swallowed, and fixes
4589         bug #79350.
4591 2006-09-27  Chris Toshok  <toshok@ximian.com>
4593         * ComboBox.cs: use Invalidate when scrolling the dropdown list.
4594         Calling Refresh (in response to a scrollbar event) screws up the
4595         scrollbar painting.  Fixes bug #78923.
4597 2006-09-27  Chris Toshok  <toshok@ximian.com>
4599         * Theme.cs (SystemResPool): make the "if hashtable[key] == null
4600         then insert into hashtable" blocks threadsafe.
4602 2006-09-27  Chris Toshok  <toshok@ximian.com>
4604         * MessageBox.cs (CreateParams): the styles should be |'ed with our
4605         baseclass's, since otherwise the
4606         ControlBox/MinimizeBox/MaximizeBox assignments above have no
4607         effect.  This gets the close button back in messageboxes.
4609 2006-09-27  Chris Toshok  <toshok@ximian.com>
4611         * XplatUIX11.cs: make StyleSet and ExStyleSet check == with the
4612         flag, not just != 0.  this makes flags that are actually multiple
4613         bits (like WS_CAPTION) work.  fixes bug #79508.
4615 2006-09-27  Jordi Mas i Hernandez <jordimash@gmail.com>
4617         * PageSetupDialog.cs: add support for getting and settings the 
4618         paper size, source and orientation.
4620 2006-09-26  Chris Toshok  <toshok@ximian.com>
4622         * XplatUIX11.cs (SetWMStyles): turns out when SYSMENU is not set
4623         and caption == "", we need to remove the resize handles as well as
4624         the title bar.
4626         * Control.cs (set_Text): turns out that setting Text on a form
4627         should change the WM styles on the window, since if ControlBox ==
4628         false, the only way to get a window border is to have a non-""
4629         Text property.  check winforms/forms/text.cs for an example.  so,
4630         call both XplatUI.SetWindowStyle and XplatUI.Text here to properly
4631         update both window styles and title.  This fixes a lot of dialogs
4632         (including the preferences dialog in MonoCalendar.)
4634 2006-09-26  Chris Toshok  <toshok@ximian.com>
4636         * XplatUIWin32.cs (SetParent): if parent == IntPtr.Zero (and the
4637         control isn't a Form), call Win32ShowWindow to hide the window,
4638         but don't update the control Visible property.  When we reparent
4639         back to a parent control, call SetVisible in order for the
4640         window's visibility to be reinstated.
4642         * XplatUIX11.cs (SetParent): if hwnd.parent == null, reparent to
4643         the FosterParent.
4645         * Control.cs (ControlCollection.Remove): remove that value.Hide()
4646         call for good, since it breaks MonoCalendar (and other things I'm
4647         sure.) Also, set all_controls to null *after* the owner calls,
4648         which end up regenerating it.
4649         (ChangeParent): allow new_parent to be == null, passing
4650         IntPtr.Zero down to XplatUI.
4652         this fixes #79294 the right way.
4654 2006-09-26  Mike Kestner  <mkestner@novell.com>
4656         * GridEntry.cs : internal SetParent method.
4657         * PropertyGrid.cs : attach to property changed on the proper
4658         target if we have a hierarchical grid with subobjects. Setup
4659         GridItem.Parent for hierarchical items.
4660         * PropertyGridView.cs : Set value on the correct target for
4661         hierarchical grids. [Fixes #78903]
4663 2006-09-26  Chris Toshok  <toshok@ximian.com>
4665         * Control.cs (ChildNeedsRecreating): this should return true if
4666         either we're being recreated and the child is in our list, or our
4667         parent is waiting for our recreation.
4669 2006-09-26  Chris Toshok  <toshok@ximian.com>
4671         * Control.cs (ControlCollection.Remove): reinstate the
4672         value.Hide() call as suggested in bug #79294.
4674 2006-09-26  Sebastien Pouliot  <sebastien@ximian.com>
4676         * XplatUIX11.cs: Fixed SetCursorPos to move the cursor to screen
4677         coordinates (versus a relative move).
4679 2006-09-26  Chris Toshok  <toshok@ximian.com>
4681         * Control.cs: rework child recreation a little bit.  It turns out
4682         that we race between the DestroyNotify the WM_DESTROY message.  If
4683         the parent gets its DestroyNotify before the child gets the
4684         WM_DESTROY message, the child ends up not recreating (since the
4685         parent finishes its recreation on DestroyNotify, and the child
4686         checks ParentIsRecreating.)
4688         So, instead we store off a list of all the child controls which
4689         need to be recreated when the parent control starts to recreate
4690         itself.  Then, when child controls get their WM_DESTROY message we
4691         check to see if they're in the parent's pending recreation list,
4692         and if so, we recreate.  This removes all dependency on ordering
4693         from the code and fixes the initial MonoCalendar upgrade dialog.
4694         
4695 2006-09-26  Jackson Harper  <jackson@ximian.com>
4697         * TextControl.cs: Use the Line to get the length of the line,
4698         since soft line breaks can change the end line.
4700 2006-09-26  Chris Toshok  <toshok@ximian.com>
4702         * Control.cs (ControlCollection.AddImplicit): don't add the
4703         control again if it's already in one of our lists.  This keeps us
4704         from adding controls over and over again for comboboxes when their
4705         handle gets recreated (as the combobox adds implicit controls in
4706         OnHandleCreated).  Fixes the X11 errors in bug #79480.
4708 2006-09-26  Jackson Harper  <jackson@ximian.com>
4710         * TextControl.cs: When deleting characters make sure that any
4711         orphaned zero lengthed tags get deleted.
4712         - Fix ToString for zero lengthed tags.
4714 2006-09-25  Jackson Harper  <jackson@ximian.com>
4716         * TextControl.cs: When getting a tag at the location there can be
4717         multiple tags at the same spot, these are 0-lengthed tags that
4718         appear when extra formatting has been stuck in a location.  We
4719         need to pull out the last of these 0 lengthed tags.
4721 2006-09-25  Jackson Harper  <jackson@ximian.com>
4723         * TextControl.cs: Fix print out in debug method.
4724         * TextBoxBase.cs: When text is set bail if we are setting to the
4725         previous value.
4726         
4727 2006-09-24  Alexander Olk  <alex.olk@googlemail.com>
4729         * FontDialog.cs: Fixed the up/down arrow keys issue from bug #79478.
4730           It is now possible to change the selected index in a FontXXXListBox
4731           with the up and down arrow keys from the FontXXXTextBoxes.
4732           Also, send the FontXXXTextBox mouse wheel event to the corresponding
4733           FontXXXListBoxes to match ms.
4735 2006-09-22  Sebastien Pouliot  <sebastien@ximian.com>
4737         * SystemInformation.cs: Return a clone of the theme's MenuFont because
4738         anyone can dispose it, anytime. All other properties returns enums, 
4739         structs or basic types so they don't need such tricks.
4741 2006-09-22  Jackson Harper  <jackson@ximian.com>
4743         * XplatUI.cs:
4744         * XplatUIWin32.cs:
4745         * Clipboard.cs:
4746         * DataFormats.cs:
4747         * XplatUIOSX.cs:
4748         * XplatUIDriver.cs: Update interface to add a primary selection
4749         flag, so the driver can use the primary selection buffer if
4750         needed.
4751         * XplatUIX11.cs: Allow the clipboard to retrieve from PRIMARY.
4753         * RichTextBox.cs: We need to supply the data object to paste now
4754         (so we can choose to supply CLIPBOARD or PRIMARY).
4755         * TextBoxBase.cs: Supply data object to paste (see above).
4756         - Middle click uses the primary selection data object.
4757         
4758 2006-09-21  Chris Toshok  <toshok@ximian.com>
4760         * XplatUIX11.cs: first little cleanup of the StyleSet (...) block
4761         of SetWMStyles.  It's still a rat's nest and is largely
4762         order-dependent which I dislike immensely.  This also fixes the X
4763         button disappearing from toplevel forms.
4765 2006-09-21  Mike Kestner <mkestner@novell.com>
4767         * ListBox.cs: move Jordi's click/dblclick raising code to the
4768         mouse up handler.
4770 2006-09-21  Jordi Mas i Hernandez <jordimash@gmail.com>
4772         * ListBox.cs: Fixes 79450
4774 2006-09-21  Mike Kestner <mkestner@novell.com>
4776         * TreeView.cs: guard against disposed conditions in UpdateScrollbars
4777         to deal with people updating the TreeNodeCollection after the tree
4778         is disposed.  "Fixes" 79330.
4780 2006-09-20  Jackson Harper <jackson@ximian.com>
4782         * TextControl.cs: Push the cursor record onto the undo stack
4783         before the delete action. This fixes 78651.
4785 2006-09-20  Jonathan Chambers  <joncham@gmail.com>
4787         * PropertyGridView.cs: Remove WindowStyles.WS_VISIBLE from
4788         CreateParams. Fixes 79329.
4790 2006-09-19  Chris Toshok  <toshok@ximian.com>
4792         * XplatUIX11.cs: a couple of blanket code massage passes to clean
4793         things up a bit.  First, get rid of the NetAtoms array (and the NA
4794         enum), and just embed the atoms as static fields.  Also, add a
4795         couple of functions (StyleSet and ExStyleSet) to clean up all the
4796         bitmask testing of styles.
4798         * X11Structs.cs: remove the NA enum, not needed anymore.
4799         
4800 2006-09-19  Chris Toshok  <toshok@ximian.com>
4802         * XplatUIX11.cs: apply Alexander's tool window fix for bug #79245
4803         (mapping them to _NET_WM_WINDOW_TYPE_UTILITY).  and add a little
4804         added cleanup to get MessageBox titles appearing again, which were
4805         broken by my earlier fix for caption-less/ControlBox-less windows.
4807 2006-09-18  Jonathan Pobst <monkey@jpobst.com>
4809         * ToolStripArrowRenderEventArgs.cs, ToolStripArrowRenderEventHandler.cs,
4810           ToolStripContentPanelRenderEventArgs.cs, ToolStripContentPanelRenderEventHandler.cs,
4811           ToolStripGripRenderEventArgs.cs, ToolStripGripRenderEventHandler.cs,
4812           ToolStripItemClickedEventArgs.cs, ToolStripItemClickedEventHandler.cs,
4813           ToolStripItemEventArgs.cs, ToolStripItemEventHandler.cs,
4814           ToolStripItemImageRenderEventArgs.cs, ToolStripItemImageRenderEventHandler.cs,
4815           ToolStripItemRenderEventArgs.cs, ToolStripItemRenderEventHandler.cs,
4816           ToolStripItemTextRenderEventArgs.cs, ToolStripItemTextRenderEventHandler.cs,
4817           ToolStripPanelRenderEventArgs.cs, ToolStripPanelRenderEventHandler.cs,
4818           ToolStripRenderEventArgs.cs, ToolStripRenderEventHandler.cs,
4819           ToolStripSeparatorRenderEventArgs.cs, ToolStripSeparatorRenderEventHandler.cs:
4820             Inital import.
4821         * ToolStripPanel.cs, ToolStripContentPanel.cs, ToolStripSeparator.cs,
4822           ToolStripButton.cs: Stubs needed for above.
4823         * ToolStrip.cs, ToolStripItem.cs: Stub a few variables/properties for above.
4825 2006-09-15  Chris Toshok  <toshok@ximian.com>
4827         * XplatUIX11.cs:
4828         - make the MessageQueues hashtable Synchronized.
4829         
4830         - SendMessage: if the Hwnd is owned by a different thread, use the
4831         AsyncMethod stuff to dispatch the SendMessage on the hwnd's
4832         thread.  Fixes bug #79201.
4834 2006-09-15  Chris Toshok  <toshok@ximian.com>
4836         * XplatUIX11.cs (SetWMStyles): rework the #79368 fix slightly.  If
4837         ControlBox == false, we disallow maximize/minimize/close.  If the
4838         form Caption is "" we also disallow move (and get rid of the Title
4839         decoration).  Unfortunately, regardless of how things are set,
4840         we're stuck with the Title and WM menu.
4842 2006-09-15  Chris Toshok  <toshok@ximian.com>
4844         * Application.cs: add locking around the static message_filters
4845         ArrayList, part of #79196.
4847 2006-09-15  Chris Toshok  <toshok@ximian.com>
4849         * XplatUIX11.cs (SetWMStyles): if Form.Text == "" and
4850         Form.ControlBox == false, the window has no titlebar nor resize
4851         handles.  fixes bug #79368.
4853 2006-09-15  Chris Toshok  <toshok@ximian.com>
4855         * TextBoxBase.cs: in CalculateScrollBars make sure LargeChange is
4856         >= 0.  Fixes bug #79370.
4858 2006-09-15  Jonathan Pobst <monkey@jpobst.com>
4859         * FlowLayoutPanel.cs, FlowLayoutSettings.cs: Initial commit.
4860         * Control.cs:
4861             Add properties: LayoutEngine, Margin, DefaultMargin.
4862             Add method: GetPreferredSize.
4863             Move layout logic from PerformLayout to layout engines. 
4865 2006-09-13  Chris Toshok  <toshok@ximian.com>
4867         * XplatUIX11.cs: more destroy work.  Jackson pointed out that my
4868         fix for #79326 broke #78718, so this change addresses that.
4870         - in SendWMDestroyMessages remove the call to
4871         CleanupCachedWindows, since we might be recreating the control and
4872         need to maintain the references to right Hwnd handles.  Also, set
4873         the zombie flag to true for each of the children in the hierarchy
4874         instead of calling hwnd.Dispose.  This will cause GetMessage to
4875         ignore all events for the window except for DestroyNotify.
4877         - In GetMessage, ignore messages except for DestroyNotify for
4878         zombie hwnds.
4879         
4880         * Control.cs: revert the is_recreating fix from the last
4881         ChangeLog.  It's definitely "right", but it breaks switching from
4882         an MDI form to a non-MDI form.  Will need to revisit that.
4884         * Hwnd.cs: add a zombie flag, which means "the
4885         client_window/whole_window handles are invalid, but we're waiting
4886         for the DestroyNotify event to come in for them".  Set the flag to
4887         false explicitly if setting WholeWindow/ClientWindow, and also
4888         when Disposing.
4889         
4890 2006-09-13  Chris Toshok  <toshok@ximian.com>
4892         * XplatUIX11.cs: rework window destruction slightly.
4894         - when destroying the windows associated with a control, we don't
4895         need 2 separate XDestroyWindow calls.  Just the one for the
4896         whole_window (or for client_window if whole_window is somehow
4897         IntPtr.Zero -- can this happen?) is enough.
4899         - reworked SendWMDestroyMessages slightly, so we always dispose
4900         the child control hwnd's after sending the messages.
4901         
4902         - refactored out the ActiveWindow/FocusWindow/Caret clearing from
4903         the two places it was used (one was even using hwnd.Handle and the
4904         other hwnd.client_window.  ugh), adding another call in
4905         SendWMDestroyMessages.  We need this new call because now the
4906         DestroyNotify events in the queue will be ignored for the child
4907         controls (as their hwnd's were disposed, and the window id's
4908         removed from the hashtable in SendWMDestroyMessages.) fun, eh?
4910         - this fixes bug #79326.
4912 2006-09-13  Chris Toshok  <toshok@ximian.com>
4914         * Control.cs: don't always set is_recreating to false at the end
4915         of RecreateHandle, since sometimes we're not done (and won't be
4916         until WndProc handles the WM_DESTROY message).  Also, set
4917         is_recreating to false in the WM_DESTROY handling code.  Part of
4918         the fix for bug #79326.
4920 2006-09-13  Miguel de Icaza  <miguel@novell.com>
4922         * X11DesktopColors.cs: Start the droppage of debugging messages.
4924         * FileDialog.cs: Store the configuration file in ~/.mono/mwf_config
4926 2006-09-13  Jonathan Pobst <monkey@jpobst.com>
4928         * SplitContainer.cs, SplitterPanel.cs: Initial implementation [2.0].
4930 2006-09-12  Chris Toshok  <toshok@ximian.com>
4932         * DataGrid.cs (get_ListManager): if the list_manager is null, try
4933         to create it using SetDataSource.  Fixes bug #79151.
4935 2006-09-11  Chris Toshok  <toshok@ximian.com>
4937         * XEventQueue.cs: add a DispatchIdle property.
4939         * XplatUIX11.cs (UpdateMessageQueue): only emit the Idle event if
4940         either the queue is null, or the queue has DispatchIdle set to
4941         true.
4942         (DoEvents): set queue.DispatchIdle to false around the
4943         peek/translate/dispatch message loop in this method.  This keeps
4944         Application.Doevents from emitting idle events.  Part of the fix
4945         for #78823.
4947 2006-09-11  Chris Toshok  <toshok@ximian.com>
4949         * DataGrid.cs (set_DataSource): make this work for both the
4950         winforms/datagrid test and ReportBuilder.  It seems as though when
4951         we've created a ListManager (or maybe it's if we have a
4952         BindingContext?), when we set the DataSource it clears the
4953         DataMember to "".  otherwise we reuse the datamember.  Fixes bug
4954         #79333.
4956 2006-09-11  Chris Toshok  <toshok@ximian.com>
4958         * XplatUIX11.cs: deal with queue being null, which happens in all
4959         the Clipboard functions.  Fixes one of the two problems mentioned
4960         in #78612.
4962 2006-09-11  Chris Toshok  <toshok@ximian.com>
4964         * MenuAPI.cs: rework OnMouseUp a bit so that releasing the mouse
4965         button on various spots (including outside the menu) works closer
4966         to MS, and doesn't crash.  Fixes #79343.
4968 2006-09-11  Gert Driesen  <drieseng@users.sourceforge.net>
4970         * ListView.cs: Do not initialize item_sorter in init. To match MS,
4971         return null for ListViewItemSorter if View is SmallIcon or LargeIcon
4972         and the internal comparer is set. When a new ListViewItemSorter is set,
4973         sort the items. Use Enum.IsDefined to verify whether a valid SortOrder
4974         was specified. No further processing is necessary if SortOrder is set
4975         to it's current value. If Sorting is modified to None, and View is
4976         neither SmallIcon nor LargeIcon then: on 2.0 profile set item_sorter
4977         (either custom or our internal ItemComparer) to null, on 1.0 profile
4978         only set item_sorter to null if its our internal IComparer. If Sorting
4979         is modified to Ascending or Descending, then use our internal IComparer
4980         if none is set, and if the current IComparer is our internal one then:
4981         on 2.0 profile always replace it with one for new Sorting, and on 1.0
4982         profile only use new Sorting if view is not SmallIcon or LargeIcon. Use
4983         Enum.IsDefined to verify whether a valid View value is specified in
4984         its setter. Automatically sort listview items when listview is
4985         created. In Sort, do nothing if ListView is not yet created, or if
4986         no item_sorter is set (no Sorting was set, Sorting was explicitly set
4987         to None or ListViewItemSorter was set to null). Added Sort overload
4988         taking a bool to indicate whether the ListView should be redrawn when
4989         items are sorted (we use this in ListViewItemCollection to avoid double
4990         redraws). Modified our internal IComparer to take the sort order into
4991         account. In Add and AddRange methods of ListViewItemCollection, also
4992         call Sort if Sorting is None (necessary for SmallIcon and LargeIcon
4993         view), but use overload with noredraw option to avoid double redraw.
4994         On 2.0 profile, throw NotSupportedException when setting CheckBoxes to
4995         true when View is Tile, and do the same when attempting to set View to
4996         Tile when CheckBoxes is true. Avoid maintaining separate ArrayLists
4997         for selected/checked indices, as it involves overhead when sorting is
4998         done while these collections are not used all that often. Instead
4999         we'll build the indices on demand. Modified IList implementation of
5000         CheckedIndexCollection to use public methods if object is int.
5001         Modified CheckedListViewItemCollection to hide checked items if
5002         ListView.CheckBoxes is false. Removed LAMESPEC remark in 
5003         ListViewItemCollection as the .NET SDK docs have been fixed. Modified
5004         IList implementation in SelectedIndexCollection to use public methods
5005         if object is int. Modified SelectedListViewItemCollection to hide
5006         selected items if listview is not yet created.
5007         * ListViewItem.cs: CheckedIndices list no longer needs to be
5008         maintained separately (see ListView changes). Also clone font, fixes
5009         test failure.
5011 2006-09-11  Mike Kestner  <mkestner@novell.com>
5013         * ComboBox.cs: if we are updating the contents of the currently
5014         selected index, refresh the control or the textbox selection.
5015         [Fixes #79066]
5017 2006-09-11  Mike Kestner  <mkestner@novell.com>
5019         * ComboBox.cs (UpdateBounds): use SetBounds not SetBoundsCore since 
5020         the 'specified' logic has been moved there.  This seems like a bug 
5021         in Control.cs, since our current SetBoundsCore completely ignores 
5022         the specified parameter.  Peter's commit seems to indicate that is 
5023         the way the MS control implementation works.  [Fixes #79325]
5025 2006-09-10  Jonathan Chambers  <joncham@gmail.com>
5027         * XplatUI.cs: Set default_class_name to be composed
5028         of current domain id. This allows MWF to be loaded in multiple
5029         domains on Win32.
5031 2006-09-09  Miguel de Icaza  <miguel@novell.com>
5033         * X11Keyboard.cs: If we are unable to obtain the input method, do
5034         not call CreateXic to create the input context.   Should fix
5035         #78944/79276.
5037 2006-09-08  Alexander Olk  <alex.olk@googlemail.com>
5039         * MimeIcon.cs: Rewrote major parts. Dropped KDE support for now.
5040           Simplified gnome support by adding more pinvokes to get the
5041           icon for a file or mime type.
5043 2006-09-08  Jackson Harper  <jackson@ximian.com>
5045         * MenuAPI.cs: Deslect popup context menu items before closing the
5046         window, so that you don't see the previously selected item
5047         selected when you reopen the menu.
5048         * TextControl.cs: Update the cursor position even if we don't have
5049         focus.  This fixes typing in things like the ComboBox.  I'm not
5050         totally sure we should always set the visibility if we don't have
5051         focus, but couldn't find any corner cases where the cursor showed
5052         up when it shouldn't.
5054 2006-09-08  Chris Toshok  <toshok@ximian.com>
5056         * X11Keyboard.cs: In UpdateKeyState vkey can be any integer, but
5057         our arrays are length 256.  & 0xff before indexing.  Fixes the
5058         crash in bug #78077.
5059         
5060 2006-09-08  Carlos Alberto Cortez <calberto.cortez@gmail.com>
5062         * ThemeWin32Classic.cs: 
5063         * DateTimePicker.cs: Draw check box if DateTimePicker.ShowCheckBox
5064         is true. Handle that check box too.
5066 2006-09-07  Chris Toshok  <toshok@ximian.com>
5068         * MenuAPI.cs: move the PerformClick call to OnMouseUp.  Fixes bug
5069         79244.
5071 2006-09-07  Chris Toshok  <toshok@ximian.com>
5073         * Control.cs: in set_BackColor only do the work if
5074         background_color != value.
5076         * XplatUIX11.cs: move the clearing of invalid areas (both client
5077         and nc) to the same block of code where we set (nc_)expose_pending
5078         to false.  That is, move it from PaintEventEnd to PaintEventStart,
5079         so things that cause invalidates from within OnPaint will trigger
5080         another call to OnPaint.  Fixes bug #79262.
5082 2006-09-07  Alexander Olk  <alex.olk@googlemail.com>
5084         * Theme.cs: Use correct icon for UIIcon.PlacesPersonal
5085         * FileDialog.cs: Fix typo
5087 2006-09-07  Jackson Harper  <jackson@ximian.com>
5089         * ThemeWin32Classic.cs:  oops, forgot to commit.  Draw the images
5090         for tab pages if they have any.
5092 2006-09-06  Mike Kestner  <mkestner@novell.com>
5094         * Splitter.cs: use the "current" rect when finishing drag handle
5095         to avoid an artifact demonstrated by resedit.exe.  [Fixes #79251]
5097 2006-09-06  Mike Kestner  <mkestner@novell.com>
5099         * Splitter.cs: draw the drag handle at X or Y instead of 0 to deal
5100         support offset splitters. [Fixes #79298]
5102 2006-09-06  Alexander Olk  <alex.olk@googlemail.com>
5104         * Mime.cs: Fixed a bug that could override the global mime type
5105           result.
5107 2006-09-05  Jackson Harper  <jackson@ximian.com>
5109         * TabControl.cs: Better calculation method for setting the slider
5110         pos. Prevents crashes on really wide tabs.
5111         - Draw Image on tab pages if an image list is used.
5113 2006-09-02  Carlos Alberto Cortez <calberto.cortez@gmail.com>
5115         * MonthCalendar.cs: When Font changes, the Size should be
5116         updated to fit the new font's space requirements.
5118 2006-09-02  Alexander Olk  <alex.olk@googlemail.com>
5120         * ListBox.cs: If the items are cleared with Items.Clear set
5121           top_index to 0.
5123 2006-09-01  Carlos Alberto Cortez <calberto.cortez@gmail.com>
5125         * MonthCalendar.cs: Handle arrow keys as input keys. Also
5126         fire DateChanged event instead of DateSelected event when
5127         the date was changed by keyboard interaction.
5129 2006-09-01  Carlos Alberto Cortez <calberto.cortez@gmail.com>
5131         * DateTimePicker.cs: Handle DateChanged for the associated
5132         month_calendar control, and set month_calendar.Font from 
5133         OnFontChanged method, as well as resize the height of the
5134         control when needed. Make PreferredHeight proportional.
5136 2006-09-01  Chris Toshok  <toshok@ximian.com>
5138         * DataGrid.cs: grr, stop overthinking the DataMember/DataSource
5139         properties.
5141         * BindingContext.cs (HashKey.GetHashCode): use ^ instead of +.
5143 2006-09-01  Peter Dennis Bartok  <pbartok@novell.com> 
5145         * FileDialog.cs: Set ClientSize instead of window size, to allow space
5146           for decorations (Fixes #79219)
5148 2006-09-01  Mike Kestner  <mkestner@novell.com>
5150         * ComboBox.cs: first stab at sorting plus some selection handling
5151         fixes to bring us more in line with MS behavior.  Also switches back
5152         to index based selection.  Alternative patches for index-based 
5153         selection were provided by Jackson Harper, Carlos Alberto Cortez, 
5154         and latency@gmx.de on bug 78848.  I assume they were similar to this
5155         code I've had simmering in my tree forever.
5156         [Fixes #78848]
5158 2006-09-01  Chris Toshok  <toshok@ximian.com>
5160         * CurrencyManager.cs (ListChangedHandler): in the ItemAdded case,
5161         when setting list position guard against ending up with a -1 index
5162         (the other part of the fix for #78812).  Should probably make sure
5163         we don't need the analogous fix in the ItemDeleted case.
5165         * DataGrid.cs:
5166         - in SetDataSource, work around the fact that the way
5167         OnBindingContextChanged is invoked will cause us to re-enter this
5168         method.  I'll remove the hack once I investigate
5169         OnBindingContextChanged.
5171         - fix the logic in set_DataSource and set_DataMember (basically
5172         what to do if the other of the two is null.)
5173         
5174         - in OnListManagerItemChanged, we need to take into account the
5175         edit row when deciding whether or not to call RecreateDataGridRows
5176         (part of the fix for #78812).
5178 2006-09-01  Jackson Harper  <jackson@ximian.com>
5180         * Splitter.cs: Don't do anything if there is no control to affect
5181         (prevents us from crashing in weird tet cases).
5182         * TreeView.cs: Bounding box for the mouse movement reverting
5183         focus/selection back to previously selected node.  This matches
5184         MS, and makes the tree a lot more useable.
5185         * GroupBox.cs: Instead of drawing over the lines of the groupbox,
5186         use clipping so they are not drawn.  This fixes when the control
5187         is set to have a transparent background, or if it was over an
5188         image.
5190 2006-09-01  Alexander Olk  <alex.olk@googlemail.com>
5192         * MimeIcon.cs: Improved handling for reading default icons when
5193           using gnome (2.16 made it necessary). Check and read svg icons
5194           first, then 48x48 and then 32x32 icons.
5196 2006-08-31  Chris Toshok  <toshok@ximian.com>
5198         * DataGridTextBoxColumn.cs: only hide the textbox if it's still
5199         visible.
5201         * DataGridTextBox.cs: Pass Tab's up to the datagrid by calling
5202         ProcessKeyPreview.  Fixes part of #77806.
5204         * DataGrid.cs: big patch.
5206         - revert the queueing up of DataSource/DataMember if inside
5207         BeginInit/EndInit calls.  That's not the way the datagrid achieves
5208         its delayed databinding.  Instead, call SetDataSource in
5209         OnBindingContextChanged.  This mimic's MS's behavior, and fixes
5210         #78811.
5212         - Also, it wasn't mentioned in #78811, but the test case exhibits
5213         behavior that was lacking in our datagrid implementation - Columns
5214         that have mapping names that don't exist in the datasource's
5215         properties aren't shown.  Yuck.  To fix this I added the bound
5216         field to the column style, and basically any calculation to figure
5217         out anything about columns uses a loop to find the bound columns.
5218         still need to investigate if I can cache an array of the bound
5219         columns or if the indices must be the same.
5221         - When setting CurrentCell, we no longer abort if the cell being
5222         edited was in the add row.  This fixes the other part of #77806.
5224         - The new code also fixes #78807.
5225         
5226         * ThemeWin32Classic.cs: perpetrate the same disgusting
5227         column.bound field hack, and only render bound fields.
5229 2006-08-31  Chris Toshok  <toshok@ximian.com>
5231         * DataGridColumnStyle.cs: add bound field.  this field is true if
5232         the datasource has a property corresponding to the mapping name.
5234         * DataGridTableStyle.cs: set the bound field on the column styles
5235         depending on whether or not we have a column for that property.
5237 2006-08-31  Peter Dennis Bartok  <pbartok@novell.com> 
5239         * Splitter.cs (SetBoundsCore): Don't ignore width/height of the 
5240           splitter control (fixes #79228)
5242 2006-08-31  Chris Toshok  <toshok@ximian.com>
5244         * DataGridColumnStyle.cs: we need to delay the assignment of
5245         property descriptor until the last possible moment due to the lazy
5246         databinding stuff in the datagrid.  Also, fix the exceptions
5247         thrown by CheckValidDataSource to match MS.
5249 2006-08-31  Jackson Harper  <jackson@ximian.com>
5251         * Form.cs: When activated select the active control, if there is
5252         no active control, we select the first control.
5253         * XplatUIX11.cs: If there is no focus control when we get a
5254         FocusIn event, find the toplevel form and activate it.  This
5255         occurs when you popup a window, it becomes the focus window, then
5256         you close that window, giving focus back to the main window.
5258 2006-08-21  Carlos Alberto Cortez <calberto.cortez@gmail.com>
5260         * MonthCalendar.cs: 
5261         * ThemeWin32Classic.cs: Cache Font in bold style, as well
5262         as StringFormat with Center alignments in MonthCalendar,
5263         instead of creating new ones when drawing the control. 
5264         Also, draw the month name in bold style.
5266 2006-08-30  Peter Dennis Bartok  <pbartok@novell.com> 
5268         * Control.cs:
5269           - PerformLayout(): It would seem MS performs the fill even if the 
5270             control is not visible (part of #79218 fix)
5271           - ResetBackColor(): Use the setter to reset the color, to allow
5272             overriders to catch the change.
5273         * Form.cs:
5274           - .ctor: Call UpdateBounds to adjust client rectangle (part of #79218 fix)
5275           - CreateHandle(): dito (part of $79218 fix)
5276           - Don't set an icon if we have a dialog
5277         * ScrollableControl.cs:
5278           - set_AutoScrollMinSize: Setting the property enables AutoScroll (#79218)
5279           - ScrollIntoView(): No need to scroll if control is already visible
5280             (resolves fixme and fixes #79218)
5282 2006-08-30  Carlos Alberto Cortez <calberto.cortez@gmail.com>
5284         * MonthCalendar.cs: Change proportions in SingleMonthSize
5285         to match the aspect of the original control.
5287 2006-08-29  Alexander Olk  <alex.olk@googlemail.com>
5289         * XplatUIX11.cs: Fix for a metacity/X problem where windows don't
5290           get updated when they get maximized.
5292 2006-08-29  Peter Dennis Bartok  <pbartok@novell.com> 
5294         * XplatUIX11.cs: Handle windows with no border (Fixes part of #79160)
5296 2006-08-29  Chris Toshok  <toshok@ximian.com>
5298         * XplatUIX11.cs: when destroying the FocusWindow, send KILLFOCUS.
5300 2006-08-29  Jackson Harper  <jackson@ximian.com>
5302         * TreeView.cs: Need to track selected node and highlighted node,
5303         they aren't always the same thing, when the mouse is down on a
5304         node it is hilighted, but not selected yet.
5305         - Do the HideSelection stuff right
5306         - Need to focus on rbutton mouse down. And redraw selection when
5307         right click is mouse upped.
5309 2006-08-29  Mike Kestner  <mkestner@novell.com>
5311         * ThemeWin32Classic.cs: draw selections for columns in FullRowSelect
5312         when SubItems.Count < Columns.Count.  [Fixes #79167]
5314 2006-08-28  Peter Dennis Bartok  <pbartok@novell.com> 
5316         * TextControl.cs (FindCursor): Fix math error (Fixes #78402)
5318 2006-08-28  Peter Dennis Bartok  <pbartok@novell.com>
5320         * XplatUIX11.cs: Preempt the roundtrip for getting the location back
5321           from X. Only send based on ConfigureNotify if we don't have the
5322           correct location in hwnd (if the window manager moved us)
5324 2006-08-28  Mike Kestner  <mkestner@novell.com>
5326         * ListView.cs: remove a TODO. 
5327         * ThemeWin32Classic.cs: implement HideSelection support for ListView.
5328         [Fixes ListView part of #79166]
5330 2006-08-28  Mike Kestner  <mkestner@novell.com>
5332         * ListView.cs: move wheel handler to parent since it is focused
5333         instead of the item_control now.  [Fixes #79177]
5335 2006-08-28  Mike Kestner  <mkestner@novell.com>
5337         * ThemeWin32Classic.cs: only highlight subitems in fullrowselect
5338         when the control is focused. [Fixes #79171]
5340 2006-08-28  Mike Kestner  <mkestner@novell.com>
5342         * ListView.cs: size the item and header controls for empty and
5343         unscrollable views.
5344         * ThemeWin32Classic.cs: draw disabled backgrounds.
5345         [Fixes #79187]
5347 2006-08-28  Chris Toshok  <toshok@ximian.com>
5349         * Form.cs: remove unused "active_form" static field.
5351         * Hwnd.cs: lock around accesses to static windows collection.
5353         * Application.cs: lock threads in Exit ().
5355 2006-08-28  Chris Toshok  <toshok@ximian.com>
5357         * NativeWindow.cs: lock around accesses to window_collection.
5358         
5359 2006-08-28  Chris Toshok  <toshok@ximian.com>
5361         * Control.cs: err, fix this the right way, by locking on controls
5362         when using it.  not by making it synchronized.
5364 2006-08-28  Chris Toshok  <toshok@ximian.com>
5366         * Control.cs: make the static "controls" field synchronized, as it
5367         gets updated from multiple threads.
5369 2006-08-27  Peter Dennis Bartok  <pbartok@novell.com>
5371         * XplatUIX11.cs: PostQuitMessage is thread-specific not app-specific.
5372           Prevent other threads from exiting when calling thread sets quit state.
5373         * XEventQueue.cs: Added PostQuitState property
5375 2006-08-27  Chris Toshok  <toshok@ximian.com>
5377         * AsyncMethodData.cs: add a slot for the window handle.
5379         * XplatUIX11.cs (SendAsyncMethod): send the event to the right
5380         window (the destination control's window, not the foster window).
5382         * Control.cs (BeginInvokeInternal): store the window's handle in
5383         the AsyncMethodData.
5384         
5386 2006-08-27  Peter Dennis Bartok  <pbartok@novell.com>
5388         * XplatUIX11.cs:
5389           - PostQuitMessage: Removed resetting S.D display handle, we might have
5390             another loop started after calling PostQuitMessage (Fixes #79119)
5391           - Created destructor to reset S.D handle
5393 2006-08-27  Peter Dennis Bartok  <pbartok@novell.com> 
5395         * XplatUIX11.cs (SetCursor): Issue flush after setting the cursor (#79168)
5397 2006-08-23  Peter Dennis Bartok  <pbartok@novell.com>
5399         * TextControl.cs (Insert): Update the caret position even if we don't
5400           have a handle yet, just don't call the driver in that case.
5401         * TextBoxBase.cs (set_SelectedText): Set the Start and End selection
5402           to the end of the new selection text (Fixes #79184)
5404 2006-08-23  Peter Dennis Bartok  <pbartok@novell.com> 
5406         * Form.cs (Activate): Only activate if the handle is created)
5407         * Control.c:
5408           - Mark window as invisible when it's disposed
5409           - Check if window handle is created when setting window visible, 
5410             instead of relying just on the is_created variable
5411           - Check if object is disposed when creating the control (Fixes #79155)
5413 2006-08-23  Peter Dennis Bartok  <pbartok@novell.com>
5415         * ScrollableWindow.cs (ScrollWindow): Don't actually perform layouting
5416           when allowing layout again. Otherwise we re-generate the anchoring 
5417           distance to the border again and actually alter what the user wanted
5418           This is ugly, it'd be better if we used DisplayRectangle instead of
5419           ClientRectangle for Control.UpdateDistances, but that causes us to
5420           have other problems (initial anchoring positons would be wrong)
5421           (Fixes #78835)
5423 2006-08-23  Peter Dennis Bartok  <pbartok@novell.com> 
5425         * Control.cs:
5426           - The size and location setters shouldn't go directly to 
5427             SetBoundsCore, but to SetBounds, which triggers layout on the
5428             parent, then calls SetBoundsCore. (Related to fix for #78835)
5429           - SetBounds: Moved actual location update code into this function
5430             from SetBoundsCore, to match MS. Added call to PerformLayout if
5431             we have a parent (to trigger resizing of anchored parents if the 
5432             child size has changed (see testcase for #78835) 
5433         * ListBox.cs, Form.cs: Call SetBounds instead of SetBoundsCore to match 
5434           new control code
5435         * ScrollableControl.cs (CalculateCanvasSize): Use shortcut variable
5437 2006-08-23  Peter Dennis Bartok  <pbartok@novell.com>
5439         * XplatUIX11.cs: Don't reset the DisplayHandle that's stored in
5440           System.Drawing when a toplevel window gets closed; there might
5441           be other toplevel windows belonging to the same app (Fixes #78052)
5443 2006-08-26  Alexander Olk  <alex.olk@googlemail.com>
5445         * FileDialog.cs: After reading FileDialog settings from mwf_config
5446           use Desktop prefix only if a real folder doesn't exist anymore.
5447         * FontDialog.cs: Added char sets.
5448           It is now possible to select the font, size or style with the
5449           textboxes.
5451 2006-08-25  Kornél Pál  <kornelpal@gmail.com>
5453         * PrintPreviewDialog.cs: Use assembly name constants.
5455 2006-08-23  Peter Dennis Bartok  <pbartok@novell.com>
5457         * XplatUIWin32.cs (ScrollWindow): Use clipping rectangle arg (prevents
5458           scrollbar from whacking it's buttons)
5460 2006-08-24  Chris Toshok  <toshok@ximian.com>
5462         * ScrollableControl.cs: fix #78271.  There's a lot of misc stuff
5463         in this patch (aggregating setting Left/Top/Width/Height to
5464         setting Bounds on the scrollbars), but the crux of the fix is in
5465         Recalculate, where we scroll by the remaining scroll_position if
5466         we're hiding a scrollbar.  The 2*$5 reward in the comment is
5467         serious.
5469 2006-08-24  Jackson Harper  <jackson@ximian.com>
5471         * MdiClient.cs:
5472         * MdiWindowManager.cs: If the form is made a non-mdi window we
5473         need to remove the form closed event so that closing forms works
5474         correctly.
5476 2006-08-24  Jackson Harper  <jackson@ximian.com>
5478         * Control.cs: Make IsRecreating internal so that the driver can
5479         check it
5480         - Temporarily remove the Hide when controls are removed, its
5481         making a whole bunch of things not work because visibility isn't
5482         getting reset elsewhere correctly
5483         * Form.cs: Need to do a full handle recreation when the mdi parent
5484         is set.
5485         * XplatUIX11.cs: If we are recreating handles don't dispose the
5486         HWNDs.  What was happening is the handles were being recreated in
5487         SendWMDestroyMessages, but then flow continued on in that method
5488         and destroyed the new handles.
5490 2006-08-23  Jackson Harper  <jackson@ximian.com>
5492         * Form.cs: MdiClient is always at the back of the bus
5493         * Control.cs: When the order of items in the collection is changed
5494         we need to reset the all_controls array
5495         - do the same sorta setup thats done when adding a control when a
5496         control is set on the collection.
5498 2006-08-23  Peter Dennis Bartok  <pbartok@novell.com>
5500         * TextBoxBase.cs (get_Text): Return an empty array if our document
5501           is empty (fixes #79052)
5503 2006-08-23  Peter Dennis Bartok  <pbartok@novell.com> 
5505         * Control.cs: We should call IsInputChar on only on WM_CHAR but not
5506           on WM_SYSCHAR messages (fixes #79053)
5508 2006-08-23  Chris Toshok  <toshok@ximian.com>
5510         * DataGrid.cs: fix flickering when scrolling vertically.
5512 2006-08-23  Chris Toshok  <toshok@ximian.com>
5514         * DataGrid.cs (EndEdit): only invalidate the row header when we
5515         need to.
5517 2006-08-23  Chris Toshok  <toshok@ximian.com>
5519         * ThemeWin32Classic.cs: fix the clip munging of the datagrid paint
5520         methods.  fixes the flicker when scrolling around.
5522 2006-08-23  Peter Dennis Bartok  <pbartok@novell.com> 
5524         * FileDialog.cs: Making sure the control is created before we get a 
5525           chance to use it with BeginInvoke (Fixes #79096)
5527 2006-08-23  Chris Toshok  <toshok@ximian.com>
5529         * ThemeWin32Classic.cs (DataGridPaintRows): calculate the proper
5530         width to use when painting the rows.
5532 2006-08-23  Peter Dennis Bartok  <pbartok@novell.com> 
5534         * TextBoxBase.cs:
5535           - Throw ArgumentException if a negative value is passed to SelectionLength
5536           - Update the selection end if start is moved. end needs to be always
5537             after start. (Fixes #79095)
5538           - Track selection length; MS keeps the selection length even if start
5539             is changed; reset on all other operations affection selection
5541 2006-08-22  Jackson Harper  <jackson@ximian.com>
5543         * TreeView.cs: Make sure both scrollbars get displayed and sized
5544         correctly when the other bar is visible.
5545         - Use the original clip rectangle for checking if the area between
5546         the two scrollbars is visible, not the viewport adjusted clipping
5547         rectangle.
5549 2006-08-22  Jackson Harper  <jackson@ximian.com>
5551         * Binding.cs: We don't use IsBinding because it requires the
5552         control to be created, which really shouldn't be necessary just to
5553         set a property on the control.
5555 2006-08-21  Carlos Alberto Cortez <calberto.cortez@gmail.com>
5557         * ComboBox.cs: Some CB.ObjectCollection methods must throw
5558         ArgumentNullReferenceException when the argument is null.
5560 2006-08-21  Jackson Harper  <jackson@ximian.com>
5562         * Timer.cs: Track the thread that the timer is started in (NOT
5563         CREATED), this way messages for it will only be triggered on its
5564         queue.
5565         * XEventQueue.cs: Track the timers here, this makes timers per
5566         thread, like MS.
5567         * XplatUIX11.cs: The timers are moved to the XEventQueue.
5569 2006-08-19  Chris Toshok  <toshok@ximian.com>
5571         * XplatUIX11.cs: after further communication with pdb, we get the
5572         best of both worlds.  SetZOrder working for un-Mapped windows, and
5573         no X errors for un-mapped windows.
5575 2006-08-19  Chris Toshok  <toshok@ximian.com>
5577         * XplatUIX11.cs (SetZOrder): remove the if (!hwnd.mapped) check,
5578         as it was causing pdn toolbars to not have the correct stacking.
5580 2006-08-18  Mike Kestner  <mkestner@novell.com> 
5582         * ListView.cs : guard against negative ClientArea.Width in scrollbar
5583         calculation.  Not sure why control should ever be setting a negative
5584         width though.  Fixes #78931.
5586 2006-08-18  Carlos Alberto Cortez <calberto.cortez@gmail.com>
5588         * ComboBox.cs: Throw ArgumentNullException when adding/modifyng
5589         null items in ObjectCollection class.
5590         * ListBox.cs.: Likewise.
5592 2006-08-18  Atsushi Enomoto  <atsushi@ximian.com>
5594         * ThemeNice.cs, ThemeClearlooks.cs : remove RadioButton_DrawFocus()
5595           as the base method in ThemeWin32Classic should work fine.
5596           Fixed bug #78607.
5598 2006-08-18  Jackson Harper  <jackson@ximian.com>
5600         * Binding.cs: When validating if the value entered doesn't convert
5601         properly reset to the old value.
5602         * RadioButton.cs: Don't fire click when we get focus.
5604 2006-08-18  Jackson Harper  <jackson@ximian.com>
5606         * FileDialog.cs: Paint the selection on the directory combobox the
5607         same way as on MS. 
5609 2006-08-17  Jackson Harper  <jackson@ximian.com>
5611         * ErrorProvider.cs: Don't allow the error control to be selected.
5612         * Control.cs: Don't send the SetFocus messages, the control
5613         activation will do this, and if we do it blindly here validation
5614         does not work.
5616 2006-08-17  Jackson Harper  <jackson@ximian.com>
5618         * Control.cs:
5619         * ContainerControl.cs: Make validation events fire in the correct
5620         order.  TODO: For some reason the first validation event is not
5621         getting fired.
5623 2006-08-17  Mike Kestner  <mkestner@novell.com> 
5625         * ComboBox.cs : some null guarding for ComboListBox.Scroll.
5627 2006-08-17  Mike Kestner  <mkestner@novell.com> 
5629         * ComboBox.cs : implement scroll wheel support for popped-down
5630         state. Fixes #78945. 
5632 2006-08-17  Jackson Harper  <jackson@ximian.com>
5634         * TreeView.cs: Specify treeview actions (old patch that didn't get
5635         committed for some reason).
5636         - Don't let the mouse wheel scroll us too far.  Just want to make
5637         the bottom node visible, not scroll it all the ways to the top.
5639 2006-08-17  Jackson Harper  <jackson@ximian.com>
5641         * XplatUIX11.cs: Mouse wheel events go to the focused window.
5643 2006-08-17  Mike Kestner  <mkestner@novell.com> 
5645         * ComboBox.cs : don't do mouseover selection in simple mode.
5647 2006-08-16  Jackson Harper  <jackson@ximian.com>
5649         * Form.cs: Fire the closing events for all the mdi child windows
5650         when a window is closed.  If the cancel args are set to true, the
5651         main window still gets the event fired, but it doesn't not close.
5652         * MdiWindowManager.cs: Do this closing cleanup in a Closed
5653         handler, instead of when the button is clicked, so cancelling the
5654         close works correctly.
5655         * ComboBox.cs: Send the mouse down to the scrollbar.
5657 2006-08-16  Carlos Alberto Cortez <calberto.cortez@gmail.com>
5659         * ListBox.cs: When passing 'null' to SelectedItem,
5660         set SelectedIndex to -1, to unselect items. This is the
5661         observed behaviour in .Net.
5663 2006-08-16  Peter Dennis Bartok  <pbartok@novell.com> 
5665         * TextBoxBase.cs: Overriding HandleClick to get clicks in spite of
5666           MS flags saying there won't be any. (fixes #78800)
5667         * Control.cs (HandleClick): Made virtual
5669 2006-08-16  Atsushi Enomoto  <atsushi@ximian.com>
5671         * PageSetupDialog.cs : use Yard-Pound units only in en-GB and en-US
5672           cultures. Fixed bug #78399.
5674 2006-08-16  Jackson Harper  <jackson@ximian.com>
5676         * Form.cs: Use the MdiClients MdiChildren property to access
5677         MdiChildren instead of creating the array from the child controls.
5678         * MdiClient.cs: Maintain a separate array of the mdi children, so
5679         that insertion order is maintained when the Z-order is changed.
5681 2006-08-16  Mike Kestner  <mkestner@novell.com> 
5683         * ListView.cs : add an ItemComparer and default to it for sorting.
5684         Fixes #79076, but sorting needs a complete overhaul to be compat with
5685         MS.
5687 2006-08-15  Peter Dennis Bartok  <pbartok@novell.com> 
5689         * XplatUIX11.cs (SetZOrder): Fix debugging leftover (fixes #79080)
5691 2006-08-15  Peter Dennis Bartok  <pbartok@novell.com>
5693         * Hwnd.cs (Mapped): Properly traverse the tree
5695 2006-08-15  Chris Toshok  <toshok@ximian.com>
5697         * Binding.cs: fix PullData/SetPropertyValue.  We don't want to
5698         pass manager.Current.GetType() to ParseData.  It has to be the
5699         property type.  So, hold off doing the ParseData until we're in
5700         SetPropertyValue where we know the type.  This fixes the crash in
5701         #78821 but the textbox is still empty.
5703 2006-08-15  Chris Toshok  <toshok@ximian.com>
5705         * DataGrid.cs:
5706         - when we're scrolling, only call Edit() again if the
5707         current cell is still unobscured. Fixes bug #78927.
5708         - when handling mousedown on a cell, ensure the cell is visible
5709         before calling Edit.
5710         - remove the properties from DataGridRow, and remove the
5711         DataGridParentRow class altogether.
5712         
5714 2006-08-15  Peter Dennis Bartok  <pbartok@novell.com>
5716         * TextBoxBase.cs (set_Text): Don't use base.Text, instead just
5717           fire OnTextChanged by ourselves. There's no point calling base,
5718           we don't set the base value anywhere else. Fixes #78773.
5720 2006-08-15  Carlos Alberto Cortez <calberto.cortez@gmail.com>
5722         * ListBox.cs: Call CollectionChanged when modifying
5723         an item from Items indexer, to update the actual items
5724         in the list box.
5726 2006-08-15  Carlos Alberto Cortez <calberto.cortez@gmail.com>
5728         * PrintDialog.cs: Small fixes for focus and a pair of checks,
5729         to match .Net behaviour.
5731 2006-08-15  Peter Dennis Bartok  <pbartok@novell.com>
5733         * XplatUIX11.cs (SetZOrder): Handle raising toplevel windows
5735 2006-08-15  Peter Dennis Bartok  <pbartok@novell.com> 
5737         * Control.cs: Handle BringToFront for toplevel windows (Fixes #78737)
5739 2006-08-15  Peter Dennis Bartok  <pbartok@novell.com>
5741         * MessageBox.cs: Prevent potential NRE exception.
5742         * TextBoxBase.cs: AutoSize only applies if MultiLine is false. Fixes #78889
5744 2006-08-14  Peter Dennis Bartok  <pbartok@novell.com>
5746         * MessageBox.cs: Calculate the owner of a messagebox, also make
5747           it topmost. Fixes #78753
5749 2006-08-14  Chris Toshok  <toshok@ximian.com>
5751         * XplatUIX11.cs: A couple of fixes so that metacity will let us
5752         programmatically move windows.  first, set the PPosition hint as
5753         well as the USPosition hint.  Second include some code from pdb
5754         that sets the window type to NORMAL when we set the transient for
5755         hint.  This is because, in the absence of a window type, metacity
5756         thinks any window with TransientFor set is a dialog, and refuses
5757         to let us move it programmatically.  fascists.
5759 2006-08-14  Peter Dennis Bartok  <pbartok@novell.com>
5761         * XplatUIX11.cs: When setting normal hints, take into consideration
5762           an different hints previously set so we don't delete them (fixes #78866)
5764 2006-08-12  Chris Toshok  <toshok@ximian.com>
5766         * ToolBarButton.cs: make Layout return a boolean, if something to
5767         do with the button's layout changed.
5769         * ToolBar.cs:
5770         - add another parameter to Redraw, @force, which all existing
5771           calls set to true.
5772         - make the Layout function return a boolean which is true if the
5773           layout has actually changed.  Redraw now uses this (and @force)
5774           to determine when to invalidate.  At present the only place
5775           where @force can be false is the call from OnResize, when
5776           background_image == null.  So, resizing a toolbar when the
5777           layout doesn't change results in no drawing.
5779 2006-08-12  Chris Toshok  <toshok@ximian.com>
5781         * ThemeWin32Classic.cs: fix the bottom right corner painting.  had
5782         the VScrollBar and HScrollbar reversed.  oops.
5784         * DataGrid.cs: fix the logic that assigns sizes to the implicit
5785         scrollbars.  we were assigning them twice (once in
5786         Calc{Horiz,Vertical}Scrollbar, and once in CalcGridAreas),
5787         therefore causing two scrollbar resizes (and redraws?) to happen
5788         per grid resize.
5790 2006-08-12  Chris Toshok  <toshok@ximian.com>
5792         * ToolBarButton.cs: redraw the entire button if the theme tells us
5793         to.
5795         * Theme.cs: add ToolBarInvalidateEntireButton.
5797         * ThemeWin32Classic.cs: we don't need to redraw the entire toolbar
5798         buttons, just the border.
5800         * ThemeNice.cs: redraw the entire toolbar button since we need to
5801         draw the highlight image.
5803         * ThemeClearlooks.cs: the rounded corners of toolbar buttons mean
5804         we need to redraw the entire button (not just the border).
5806 2006-08-11  Peter Dennis Bartok  <pbartok@novell.com>
5808         * TextBoxBase.cs (CalculateScrollbars): Set the proper thumb size
5809           for vertical bars. Fixes the mismatches shown by #78513
5811 2006-08-11  Alexander Olk  <alex.olk@googlemail.com>
5813         * FileDialog.cs: If a saved/remembered path doesn't exist
5814           anymore, fall back to "Desktop".
5816 2006-08-11  Peter Dennis Bartok  <pbartok@novell.com>
5818         * Form.cs (CreateParams): Don't use Parent.Handle unless we have a
5819           parent. It's apparently legal to not have one
5820         * XplatUIX11.cs:
5821           - SetZOrder: Don't try to set Z-Order on an unmapped window
5822           - CreateWindow: 0,0 are legal coordinates for a window. don't move
5823             it unless the coordinates are negative
5825 2006-08-10  Mike Kestner  <mkestner@novell.com>
5827         * ListControl.cs: allow null for DataSource.  Clear DisplayMember
5828         when setting to null per msdn docs.  Fixes #78854.
5830 2006-08-10  Chris Toshok  <toshok@ximian.com>
5832         * Menu.cs, MainMenu.cs, MenuAPI.cs: get rid of most of the
5833         flickering by setting a clip rectangle on the Graphics when we
5834         need to redraw just a particular menuitem.  Also, rename "OnClick"
5835         to "OnMouseDown" to reflect what it actually is.
5836         
5837         * Form.cs: track the OnMouseDown change.
5839 2006-08-10  Peter Dennis Bartok  <pbartok@novell.com>
5841         * CommonDialog.cs: Properly inherit the CreateParams from the form
5842           and only change what we need. Fixes #78865
5844 2006-08-10  Chris Toshok  <toshok@ximian.com>
5846         * ToolBar.cs, ToolBarButton.cs: fix the redraw-on-highlight
5847         flickering in flat mode (and most of the flickering in general) by
5848         only invalidating the button border (and not the entire rectangle)
5849         when the state changes.  A couple of cases still flicker:
5850         ToggleButtons, and the dropdown arrow case when the user mouse
5851         ups.
5853 2006-08-10  Alexander Olk  <alex.olk@googlemail.com>
5855         * X11Keyboard.cs: Fixed handling of the Del key on the cursorblock
5856           for german keyboards. Numlock state shouldn't affect the behaviour
5857           of the Del key. Fixes bug #78291.
5859 2006-08-10  Chris Toshok  <toshok@ximian.com>
5861         * ListControl.cs: remove the items.Clear line from BindDataItems,
5862         as this is the first thing done by both subclasses in their
5863         SetItemsCore overrides.  Also, add a ItemChanged handler, and when
5864         passed -1, refresh the list.  This gets databinding working when
5865         the datasource is set on the list before the datasource is
5866         populated (as in wf-apps/ReportBuilder.)
5868         * ComboBox.cs: remove the argument to BindDataItems.  This call
5869         should really go away, and be initiated by the ListControl code.
5871         * ListBox.cs: same.
5873 2006-08-09  Peter Dennis Bartok  <pbartok@novell.com>
5875         * TextControl.cs (Document.ctor): Initialize caret so we don't crash
5876           if no data is in the document when the control is displayed
5878 2006-08-09  Peter Dennis Bartok  <pbartok@novell.com> 
5880         * TextBoxBase.cs: Don't try moving the caret if we don't have a window
5881           yes (fixes #78806)
5882         * TextControl.cs: 
5883           - PositionCaret: Allow positioning of caret but don't call methods 
5884             requiring a handle if the window isn't created yet
5885           - CharIndexToLineTag: Fix ending loop early error. Lines is 1 based
5886           - owner_HandleCreated: Don't position the caret, just update it's 
5887             location. User might have already set a different position
5889 2006-08-09  Peter Dennis Bartok  <pbartok@novell.com>
5891         * XplatUIWin32.cs: Don't use the desktop as basis for foster-parented
5892           windows. Screws up the returned coordinates for child windows. 
5893           Fixes #78825. I'm hoping this doesn't break something, since the
5894           code was explicitly put in 8 months ago, but no bug was attached.
5895           Menus still seem to work properly.
5897 2006-08-08  Chris Toshok  <toshok@ximian.com>
5899         * DataGrid.cs: make BeginInit/EndInit actually do what they're
5900         supposed to do - delay data binding until the EndInit call.  Also,
5901         make the table style collection's CollectionChangeAction.Refresh
5902         work properly.
5904         * GridTableStylesCollection.cs: raise a CollectionChangeEvent
5905         (with action = Refresh) when a consituent table's MappingName is
5906         changed.
5908 2006-08-08  Chris Toshok  <toshok@ximian.com>
5910         * ToolBarButton.cs: in set_Text, call Parent.Redraw, not
5911         Invalidate, since changing the text can change the size of the all
5912         toolbar buttons.
5914 2006-08-08  Peter Dennis Bartok  <pbartok@novell.com>
5916         * Form.cs (AddOwnedForm): Still need to add the form to our listif
5917           we don't have it yet
5919 2006-08-08  Chris Toshok  <toshok@ximian.com>
5921         * PrintControllerWithStatusDialog.cs: don't .Close() the status
5922         dialog, as this causes X errors later on, since we actually
5923         destroy the window.  Instead, .Hide() it.
5925 2006-08-08  Peter Dennis Bartok  <pbartok@novell.com>
5927         * ComboBox.cs: Added focus reflection for popup window
5928         * XplatUIX11.cs: 
5929           - Removed transient setting for non-app windows for now, not sure it
5930             was needed
5931           - Fixed logic checking if we have captions when deciding 
5932             override_redirect, WS_CAPTION is two bits and a 0 check was not
5933             sufficient
5934           - Removed the WINDOW_TYPE stuff, it was unneeded and making things
5935             complicated
5936         * Form.cs: 
5937           - AddOwnedForm: Don't just add the form to the list, call the property
5938             to ensure the driver is informed about the ownership as well
5939           - CreateHandle: Set the TopMost status in the driver if we have an owner
5940         * XplatUI.cs: Fixed debug statement
5942 2006-08-08  Jonathan Pobst <monkey@jpobst.com>
5943         * ButtonRenderer.cs, CheckBoxRenderer.cs, ComboBoxRenderer.cs
5944           GroupBoxRenderer.cs, ProgressBarRenderer.cs, RadioButtonRenderer.cs,
5945           ScrollBarRenderer.cs, TabRenderer.cs, TextBoxRenderer.cs, 
5946           TrackBarRenderer.cs: Make constructor private.
5947         * ProfessionalColors.cs, ProfessionalColorTable.cs: Fix misnamed properties.
5948         * ProfessionalColorTable.cs: Make properties virtual.
5950 2006-08-06  Duncan Mak  <duncan@novell.com>
5952         * NumericUpDown.cs (Value): Don't call OnValueChanged if the value
5953         is not changing.
5955 2006-08-04  Jonathan Pobst <monkey@jpobst.com>
5956         * ButtonRenderer.cs, CheckBoxRenderer.cs, ComboBoxRenderer.cs
5957           GroupBoxRenderer.cs, ProfessionalColors.cs, ProfessionalColorTable.cs,
5958           ProgressBarRenderer.cs, RadioButtonRenderer.cs, ScrollBarRenderer.cs,
5959           TabRenderer.cs, TextBoxRenderer.cs, TextRenderer.cs, TrackBarRenderer.cs:
5960           Initial import of new 2.0 classes.
5962 2006-08-04  Jonathan Pobst <monkey@jpobst.com>
5963         * Application.cs: Add 2.0 VisualStyles properties.
5965 2006-08-04  Jonathan Pobst <monkey@jpobst.com>
5966         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs, XplatUIWin32.cs,
5967           XplatUIX11.cs: Create property to allow access to existing private
5968           variable "themes_enabled"
5970 2006-08-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
5972         * ImageListStreamer.cs: generate the MemoryStreams with the exact BMP
5973         file size, as otherwise our class libraries fail using windows. Fixes
5974         bug #78759.
5976 2006-08-04  Jackson Harper  <jackson@ximian.com>
5978         * Form.cs:
5979         * XplatUIX11.cs: Move the toolwindow window manager creation into
5980         the X11 driver, this way on win32 we can let windows create/handle
5981         the toolwindows.
5983 2006-08-04  Carlos Alberto Cortez <calberto.cortez@gmail.com>
5985         * PrintDialog.cs: Remove some redundant checks, add some others,
5986         clean some code, and move the focus to the text boxes when the
5987         values are incorrect.
5989 2006-08-04  Alexander Olk  <alex.olk@googlemail.com>
5991         * FontDialog.cs: Remove Form.MinimumSize. It's not needed.
5993 2006-08-03  Alexander Olk  <alex.olk@googlemail.com>
5995         * NumericUpDown.cs: Setting the Minimum and Maximum is now
5996           handled correctly. Fixes bug #79001.
5998 2006-08-03  Carlos Alberto Cortez <calberto.cortez@gmail.com>
6000         * PrintDialog.cs: The "Copies" numeric up down must have
6001         set the Minimum property to 1; only if the value is bigger
6002         than 1, activate "Collate" check box. This is the behaviour of .Net.
6003         Also modify the Document elements only if it is not null.
6005 2006-08-03  Jackson Harper  <jackson@ximian.com>
6007         * TreeNodeCollection.cs: Fix copyto to use the correct nodes
6008         length. (We have a larger array then actual node count).
6009                 
6010 2006-08-03  Jackson Harper  <jackson@ximian.com>
6012         * ComboBox.cs: Don't show selection by default.
6013         - The SelectAll isn't needed here, since the focus code should do
6014         that
6015         - DDL style lists to manual selection drawing, so when they
6016         get/lose focus they have to invalidate.
6018 2006-08-03  Peter Dennis Bartok  <pbartok@novell.com>
6020         * TextBoxBase.cs: Don't always show all selections by default.
6022 2006-08-03  Jonathan Pobst  <monkey@jpobst.com>
6023         * ControlUpdateMode.cs, DataSourceUpdateMode.cs,
6024           HelpNavigator.cs, WebBrowserEncryptionLevel.cs:
6025           Fixed various typos.
6027 2006-08-03  Alexander Olk  <alex.olk@googlemail.com>
6029         * Control.cs: Removing the controls in a ControlCollection with
6030           Clear now hides the controls as expected. Fixes bug #78804. 
6032 2006-08-03  Jackson Harper  <jackson@ximian.com>
6034         * Control.cs: Revert previous focus patch, it breaks reflector.
6036 2006-08-03  Jackson Harper  <jackson@ximian.com>
6038         * ComboBox.cs: Cleanup selection and focus with the combobox.
6039         This also eliminates some duplicated keyboard code, since now
6040         everything is handled by the main class.
6041         - Make list selection work on mouse up instead of down, to match
6042         MS.
6044 2006-08-02  Jackson Harper  <jackson@ximian.com>
6046         * Control.cs: Setting focus needs to go through the whole
6047         selection mechanism.
6049 2006-08-02  Chris Toshok  <toshok@ximian.com>
6051         * PrintPreviewDialog.cs: change MinimumSize to use
6052         base.MinimumSize so it works.
6054 2006-08-02  Peter Dennis Bartok  <pbartok@novell.com>
6056         * TextControl.cs:
6057           - UpdateCaret: Added sanity check in case caret isn't defined yet
6058           - Line.Delete: Now updating selection and caret markers if we're
6059             transfering a node (Properly fixes #78323)
6060           - SetSelectionEnd: Added sanity check
6061         * TextBoxBase.cs: Removed broken attempt to fix #78323
6063 2006-08-01  Chris Toshok  <toshok@ximian.com>
6065         * PrintPreviewDialog.cs: the CancelEventArgs stuff surrounding the
6066         Close() call is handled in Form, not here.
6068 2006-08-01  Chris Toshok  <toshok@ximian.com>
6070         * Theme.cs, ThemeWin32Classic.cs: fix the PrintPreviewControl
6071         layout/rendering.
6073         * PrintPreviewDialog.cs: add scrollbars, and add an image cache
6074         for sizes < 100% zoom.  The code now aggressively attempts to keep
6075         from calling document.Print (), and tries not to use the scaling
6076         g.DrawImage whenever possible (it still does if you scale to >
6077         100%, since usually that involves huge images).
6079         * PrintPreviewControl.cs: hook up the close button.
6081 2006-08-01  Jonathan Pobst  <monkey@jpobst.com>
6082         * ColumnClickEventHandler.cs, DrawItemEventHandler.cs,
6083           ItemChangedEventHandler.cs, ItemCheckEventHandler.cs,
6084           ItemDragEventHandler.cs, LabelEditEventHandler.cs,
6085           LinkClickedEventHandler.cs, LinkLabelLinkClickedEventHandler.cs,
6086           MeasureItemEventHandler.cs, MethodInvoker.cs, PaintEventHandler.cs,
6087           PropertyTabChangedEventHandler.cs, PropertyValueChangedEventHandler.cs,
6088           SelectedGridItemChangedEventHandler.cs, ToolBarButtonClickEventHandler.cs:
6089           Removed [Serializable] for 2.0 Event Handlers.
6091 2006-07-31  Jackson Harper  <jackson@ximian.com>
6093         * TextBoxBase.cs: Make ShowSelection invalidate when changed.
6094         * TextControl.cs: Uncomment out the body of this method.
6096 2006-07-31  Alexander Olk  <alex.olk@googlemail.com>
6098         * XplatUIX11.cs: Use the correct cursor shapes for arrow and default
6099           standard cursors.
6101 2006-07-31  Peter Dennis Bartok  <pbartok@novell.com>
6103         * TextBoxBase.cs: Added internal property ShowSelection to allow controls
6104           that embed TextBox and need selections visible even if textbox is not
6105           focused to enforce that behaviour.
6106         * TextControl.cs (Draw): Use ShowSelection instead of has_focus to determine
6107           selection drawing
6109 2006-07-31  Peter Dennis Bartok  <pbartok@novell.com>
6111         * TextControl.cs:
6112           - Added new SetSelectionStart/SetSelectionEnd overloads
6113           - Fixed viewport width assignment to be accurate
6114           - Adjusted alignment line shift calculations to allow cursor on right
6115             aligned lines to be always visible at the right border (like MS)
6116         * TextBoxBase.cs:
6117           - SetBoundsCore: Re-adjust caret location after resize (Fixes #78323)
6118           - TextBoxBase_SizeChanged: recalculating canvas on size changes
6119           - CalculateScrollBars: Use ViewPort size instead of window size, to
6120             properly consider space occupied by the border and scrollbars 
6121             (Fixes #78661)
6122           - hscroll_ValueChanged, vscroll_ValueChanged: Fixed scroll 
6123             calculations; no longer leaves artifacts
6124           - CaretMoved: Adjusted window scrolling to match MS and fixed several
6125             calculation bugs (Still missing right/center align calculations)
6127 2006-07-31  Peter Dennis Bartok  <pbartok@novell.com> 
6129         * XPlatUIWin32.cs: Made ScrollRectEx a bit more flexible, and removed
6130           use of both scroll rect and clip rect, as they do the same.
6132 2006-07-31  Peter Dennis Bartok  <pbartok@novell.com>
6134         * Control.cs (WM_CHAR WndProc): 2.0 profile allows changing the key 
6135           in the event handler (fixes #78912)
6137 2006-07-31  Chris Toshok  <toshok@ximian.com>
6139         * ThemeWin32Classic.cs: use grid.RowsCount here instead of
6140         grid.ListManager.Count, since grid.ListManager might be null.
6141         This of course begs the question "why are we drawing rows for a
6142         grid with no list manager (and therefor no rows)?"  Fixes the
6143         crash in bug #78929.
6145 2006-07-31  Chris Toshok  <toshok@ximian.com>
6147         * RelatedPropertyManager.cs: Don't always chain up to the parent
6148         ctor.  instead, call SetDataSource if the parent's position is !=
6149         -1.  Fixes the crash in #78822.
6151 2006-07-31  Chris Toshok  <toshok@ximian.com>
6153         * DataGrid.cs (get_ListManager): use field instead of property
6154         accessors for datasource and datamember.
6155         (RowsCount): make internal again.
6156         (OnMouseDown): end edits before resizing columns/rows.
6157         (OnMouseUp): restart edits after resizing columns/rows.
6159 2006-07-30  Peter Dennis Bartok  <pbartok@novell.com>
6161         * XplatUIX11.cs: Default cursor cannot be 0 or it will not get set.
6162           This fixes the situation where the last set cursor is displayed
6163           whenever the mouse is over scrollbars.
6165 2006-07-30  Carlos Alberto Cortez <calberto.cortez@gmail.com>
6167         * PrintDialog.cs: Fix the behaviour of PrinterSettings and
6168         Document properties, as well as initial values.
6170 2006-07-29  Peter Dennis Bartok  <pbartok@novell.com>
6172         * XplatUIWin32.cs (SetBorderStyle): Setting both border
6173           and ClientEdge results in a 3-pixel border, which is
6174           wrong.
6176 2006-07-28  Jackson Harper  <jackson@ximian.com>
6178         * TreeNodeCollection.cs: Fix the clear method.
6179         - Fix the Shrink also
6181 2006-07-27  Jackson Harper  <jackson@ximian.com>
6183         * TreeView.cs: Make sure the visible order is computed when we
6184         attempt to size the scrollbars (for trees that mess with the
6185         scrolling when they shouldn't.
6186         - Make sure to give the scrollbars valid values.
6188 2006-07-26  Peter Dennis Bartok  <pbartok@novell.com> 
6190         * XplatUIX11.cs: Move motion compression code to where it
6191           has less performance impact
6193 2006-07-26  Jackson Harper  <jackson@ximian.com>
6195         * UpDownBase.cs: When the control is selected make the child
6196         controls non selectable, so that a click on them won't do a
6197         focus/unfocus cycle.
6198         - Don't give focus to the text box when the spinner is selected.
6199         * XEventQueue.cs: Peek on both the x11 queue and the lock queue.
6201 2006-07-26  Chris Toshok  <toshok@ximian.com>
6203         * ThemeWin32Classic.cs: add print preview rendering.  I'm not
6204         satisfied with this solution.  If the bitmaps are small, we should
6205         just cache them in the PrintPreviewDialog and draw them here.
6206         Also, the layout is broken for the 2-up and 3-up cases.
6208         * Theme.cs: add PrintPReviewControlPaint.
6210         * PrintPreviewDialog.cs: first pass implementation.
6212         * PrintPreviewControl.cs: first pass implementation.  No
6213         scrollbars yet.
6215         * PrintDialog.cs: only validate fields if that particular portion
6216         of the UI is enabled.  Also, set the document's controller to a
6217         PrintControllerWithStatusDialog wrapping the document's print
6218         controller.
6220         * PrintControllerWithStatusDialog.cs: if we're printing to a file,
6221         bring up a SaveFileDialog (i hope we don't want to match the
6222         behavior of the crappy windows file entry) and set the
6223         PrinterSettings.PrintFileName accordingly.
6225 2006-07-26  Jackson Harper  <jackson@ximian.com>
6227         * ContainerControl.cs: Add a field that disables auto selecting
6228         the next control in a container when the container is activated.
6229         * UpDownBase.cs: Don't select the text box when the up down is
6230         selected.
6232 2006-07-26  Peter Dennis Bartok  <pbartok@novell.com> 
6234         * XEventQueue.cs: Added methods for peeking (used for compression
6235           of successive events)
6236         * XplatUIX11.cs (GetMessage): We're now compressing consecutive
6237           mouse move events (fixes #78732)
6239 2006-07-25  Jackson Harper  <jackson@ximian.com>
6241         * UpDownBase.cs: Use an internal class for the textbox so that we
6242         can control focus.  the updown control should always have focus,
6243         if either the text area or the buttons are clicked.
6244         - Send the key messages to the textbox, since it never actually
6245         has focus
6246         - Activate and decativate the textbox caret.
6248 2006-07-24  Jackson Harper  <jackson@ximian.com>
6250         * Control.cs: Use the directed select when selecting a control,
6251         this way the container controls override will get called and the
6252         whole ActiveControl chain will get triggered.  TODO: probably need
6253         to make sure this gets done everywhere instead of the old
6254         Select(Control).
6255         * ContainerControl.cs: Implement the directed Select method to
6256         find and activate the correct child control.    
6257         
6258 2006-07-22  Mike Kestner  <mkestner@novell.com>
6260         * Form.cs: use Control.MousePosition for NCLBUTTONDOWN in the menu
6261         menu handling code so that clicks without a grab work too.
6262         [Fixes #78914]
6264 2006-07-22  Alexander Olk  <alex.olk@googlemail.com>
6266         * FileDialog.cs: Enable the BackButton when dirstack has one element.
6267           Added some small optimizations.
6269 2006-07-21  Matt Hargett  <matt@use.net>
6271         * Control.cs: Implemented 2.0 MinimumSize/MaximumSize properties
6273 2006-07-21  Peter Dennis Bartok  <pbartok@novell.com> 
6275         * Control.cs (GetNextControl): Fixes to make all of Jackson's unit 
6276           tests pass and match MS in some strange border cases.
6278 2006-07-21  Chris Toshok  <toshok@ximian.com>
6280         * ThemeWin32Classic.cs: handle drawing of the relation links and
6281         parent row buttons.
6283         * Theme.cs: change args to DataGridPaintParentRow.
6285         * DataGrid.cs: Don't use controls for the relation links and
6286         parent buttons, so we have to handle all their interactions in
6287         MouseMove, MouseDown, MouseUp, etc.  Also, store a lot more stuff
6288         when we're navigating through child tables, so we can reinstate
6289         selection, expanded state, current cell, etc.
6291 2006-07-20  Chris Toshok  <toshok@ximian.com>
6293         * ToolBar.cs: When we redraw a button, for whatever reason,
6294         there's no reason to redraw the entire toolbar.  Also, don't call
6295         Control.Refresh from within Redraw, as it's much heavier than
6296         Invalidate (which is really what we want).
6298 2006-07-20  Chris Toshok  <toshok@ximian.com>
6300         * DataGrid.cs, CurrencyManager.cs, DataGridColumnStyle.cs,
6301         DataGridTextBoxColumn.cs, DataGridTextBox.cs,
6302         ThemeWin32Classic.cs, ListControl.cs: After staring at stack
6303         traces from within a debug IBindingList datasource
6304         (in mono/winforms/datagrid) for *days*, I've finally gotten things
6305         to work in a similar fashion.
6307 2006-07-20  Carlos Alberto Cortez <calberto.cortez@gmail.com>
6309         * ListBox.cs: Don't call Sort () when setting 
6310         the Sorted property to false (avoid an unnecessary sort).
6312 2006-07-20  Carlos Alberto Cortez <calberto.cortez@gmail.com>
6314         * ListControl.cs: DataSource should throw an ArgumentException
6315         instead of a normal exception when the argument is not of the 
6316         correct type.
6318 2006-07-20  Mike Kestner  <mkestner@novell.com>
6320         * Control.cs: add InternalPreProcessMessage to allow us to steal
6321         key events before MWF gets its paws on them.  Adapted from a
6322         suggestion by eno.
6323         * ToolBar.cs: add GotLostFocus handing for flat toolbars, with 
6324         up/down/left/right navigation. Override the new internal control
6325         method to steal the events since they never make it to WndProc.
6326         * ToolBarButton.cs: don't worry about pushed when setting hilight
6327         since the drawing code prefers pushed to hilight. Invalidate on 
6328         Hilight changes. Fixes #78547 and #78525.
6330 2006-07-20  Peter Dennis Bartok  <pbartok@novell.com> 
6332         * ScrollableControl.cs: Consider AutoScrollMinSize when calculating
6333           the canvas size. Fixes #78868
6335 2006-07-20  Peter Dennis Bartok  <pbartok@novell.com>
6337         * Splitter.cs: Track requested split position until first layout
6338           is performed. Fixes #78871
6340 2006-07-20  Peter Dennis Bartok  <pbartok@novell.com> 
6342         * Application.cs: Removed code that forces 1.x for the version
6343           number if the version started with 0. Not sure why that code was
6344           there and I couldn't find any bugs that indicated we needed it.
6345           Fixes #78869
6347 2006-07-20  Alexander Olk  <alex.olk@googlemail.com>
6349         * ThemeWin32Classic.cs: Don't throw a NotImplementedException in
6350           ResetDefaults(), just write some output to the console until it's
6351           implemented. Fixes bug #78907 for now. Eliminated two warnings.
6353 2006-07-19  Jonathan Chambers  <joncham@gmail.com>
6355         * PropertyGridView.cs: set StartPosition of drop down forms
6356         so they appear in correct initial spot.  Fixes #78190.
6358 2006-07-19  Mike Kestner  <mkestner@novell.com>
6360         * ThemeWin32Classic.cs: use parent background color when drawing
6361         flat toolbars.  Restructure the conditionals to make sure non-flat
6362         non-Divider toolbars are filled too.  Fixes #78837.
6364 2006-07-19  Mike Kestner  <mkestner@novell.com>
6366         * ListBox.cs: Sort on collection changes even if the handle
6367         isn't created yet.  Fixes #78813.
6369 2006-07-18  Carlos Alberto Cortez <calberto.cortez@gmail.com>
6371         * ListControl.cs: DisplayMember should never be null,
6372         and now we assign String.Empty when null is passed to it (this
6373         is the .Net way).
6375 2006-07-17  Mike Kestner  <mkestner@novell.com>
6377         * ListViewItem.cs: restructure Font and subitem Font handling 
6378         to hold a specific font and refer back to owner on null.
6379         Fixes #78761.
6381 2006-07-17  Mike Kestner  <mkestner@novell.com>
6383         * ToolBar.cs: bandaid for side-effect of previous patch which was
6384         discarding explicit heights for non-AutoSize toolbars.  Need to
6385         extend my format tester to deal with AutoSize=false. Fixes #78864.
6387 2006-07-15  Jackson Harper  <jackson@ximian.com>
6389         * LabelEditTextBox.cs:
6390         * TreeView.cs: Use a new LabelEdit class for node editing, this
6391         class automatically 'closes' itself when it gets the enter key or
6392         loses focus.
6393         - Use the client rectangle when setting the trees scrollbars, so
6394         border style is taken into account.
6395         
6396 2006-07-14  Jackson Harper  <jackson@ximian.com>
6398         * TreeNode.cs:
6399         * TreeView.cs: Make the editing work similar to MSs, firing the
6400         events correctly and ending edits correctly.
6402 2006-07-14  Mike Kestner  <mkestner@novell.com>
6404         * ToolBarButton.cs:
6405         * ToolBar.cs: layout restructuring and redraw enhancements to support
6406         formatting changes gracefully, like setting TextAlign, ImageList, 
6407         ButtonSize, and Appearance.  Handles explicit button sizing quirks
6408         of the MS controls.  Things like flat toolbars ignoring button size
6409         but becoming constant sized at the largest button's size.  Normal
6410         toolbars with an image set cannot be shrunk smaller than the image,
6411         but text can be clipped/ignored.
6412         * ThemeWin32Classic.cs: don't draw text if text_rect height or width
6413         is zero.  Seems like DrawString should be smart enough to not put
6414         anything on screen though. Also trim labels and ellipsize at the char
6415         boundary, not word.
6416         Fixes #78711 and #78483.
6418 2006-07-14  Alexander Olk  <alex.olk@googlemail.com>
6420         * FolderBrowserDialog.cs: Disable "New Folder" button and
6421           "New Folder" contextmenu menuitem if a folder like "My Computer"
6422           is selected.
6424 2006-07-14  Alexander Olk  <alex.olk@googlemail.com>
6426         * FileDialog.cs: Don't create a new folder in "MyComputer" folder.
6427         * FolderBrowserDialog.cs:
6428           - Use MWFConfig to store and read size and position settings
6429           - Added code to create a new folder (button or context menu).
6430             Use TreeView labeledit to change the name of the new folder.
6432 2006-07-14  Jackson Harper  <jackson@ximian.com>
6434         * TreeView.cs: Raise the OnAfterLabelEdit event correctly.  Also,
6435         when the tree is scrolled we end editing.
6437 2006-07-14  Alexander Olk  <alex.olk@googlemail.com>
6439         * ThemeWin32Classic.cs: Fixed position of CPDrawScrollButton Up and
6440           Down arrows
6442 2006-07-14  Jonathan Pobst  <monkey@ipobst.com> 
6444         WebBrowserProgressChangedEventHandler.cs, BindingCompleteEventArgs.cs,
6445         BindingCompleteEventHandler.cs, BindingManagerDataErrorEventArgs.cs,
6446         BindingManagerDataErrorEventHandler.cs, CacheVirtualItemsEventArgs.cs,
6447         CacheVirtualItemsEventHandler.cs, ColumnReorderedEventArgs.cs,
6448         ColumnReorderedEventHandler.cs, ColumnWidthChangedEventArgs.cs,
6449         ColumnWidthChangedEventHandler.cs, ColumnWidthChangingEventArgs.cs,
6450         ColumnWidthChangingEventHandler.cs, FormClosedEventArgs.cs,
6451         FormClosedEventHandler.cs, FormClosingEventArgs.cs,
6452         FormClosingEventHandler.cs, ItemCheckedEventArgs.cs,
6453         ItemCheckedEventHandler.cs, ListControlConvertEventArgs.cs,
6454         ListControlConvertEventHandler.cs, ListViewItemMouseHoverEventArgs.cs,
6455         ListViewItemMouseHoverEventHandler.cs, ListViewItemSelectionChangedEventArgs.cs,
6456         ListViewItemSelectionChangedEventHandler.cs,
6457         ListViewVirtualItemsSelectionRangeChangedEventArgs.cs,
6458         ListViewVirtualItemsSelectionRangeChangedEventHandler.cs,
6459         MaskInputRejectedEventArgs.cs, MaskInputRejectedEventHandler.cs,
6460         PopupEventArgs.cs, PopupEventHandler.cs, PreviewKeyDownEventArgs.cs,
6461         PreviewKeyDownEventHandler.cs, RetrieveVirtualItemEventArgs.cs,
6462         RetrieveVirtualItemEventHandler.cs, SearchForVirtualItemEventArgs.cs,
6463         SearchForVirtualItemEventHandler.cs, SplitterCancelEventArgs.cs,
6464         SplitterCancelEventHandler.cs, TabControlCancelEventArgs.cs, 
6465         TabControlCancelEventHandler.cs, TabControlEventArgs.cs, 
6466         TabControlEventHandler.cs, TableLayoutCellPaintEventArgs.cs,
6467         TableLayoutCellPaintEventHandler.cs, ToolStripDropDownClosedEventArgs.cs,
6468         ToolStripDropDownClosedEventHandler.cs, ToolStripDropDownClosingEventArgs.cs,
6469         ToolStripDropDownClosingEventHandler.cs, TreeNodeMouseClickEventArgs.cs,
6470         TreeNodeMouseClickEventHandler.cs, TreeNodeMouseHoverEventArgs.cs,
6471         TreeNodeMouseHoverEventHandler.cs, TypeValidationEventArgs.cs,
6472         TypeValidationEventHandler.cs, WebBrowserDocumentCompletedEventArgs.cs,
6473         WebBrowserDocumentCompletedEventHandler.cs, WebBrowserNavigatedEventArgs.cs,
6474         WebBrowserNavigatedEventHandler.cs, WebBrowserNavigatingEventArgs.cs,
6475         WebBrowserNavigatingEventHandler.cs, 
6476         WebBrowserProgressChangedEventArgs.cs: New 2.0 Event Handlers
6478 2006-07-14  Jonathan Pobst  <monkey@ipobst.com>
6480         MergeAction.cs, PowerLineStatus.cs, PowerState.cs, PreProcessControlState.cs,
6481         RichTextBoxLanguageOptions.cs, ScreenOrientation.cs, ScrollOrientation.cs,
6482         SearchDirectionHint.cs, SystemParameter.cs, TabControlAction.cs,
6483         TableLayoutPanelCellBorderStyle.cs, TextDataFormat.cs, TextImageRelation.cs,
6484         ToolStripDropDownCloseReason.cs, ToolStripDropDownDirection.cs,
6485         ToolStripGripDisplayStyle.cs, ToolStripGripStyle.cs,
6486         ToolStripItemAlignment.cs, ToolStripItemDisplayStyle.cs,
6487         ToolStripItemImageScaling.cs, ToolStripItemOverflow.cs,
6488         ToolStripItemPlacement.cs, ToolStripLayoutStyle.cs,
6489         ToolStripManagerRenderMode.cs, ToolStripRenderMode.cs,
6490         ToolStripStatusLabelBorderSides.cs, ToolStripTextDirection.cs,
6491         ToolTipIcon.cs, TreeNodeStates.cs, TreeViewDrawMode.cs,
6492         TreeViewHitTestLocations.cs, UnhandledExceptionMode.cs, ValidationConstraints.cs,
6493         WebBrowserEncryptionLevel.cs, WebBrowserReadyState.cs, WebBrowserRefreshOption.cs,
6494         ArrowDirection.cs, AutoCompleteMode.cs, AutoCompleteSource.cs, AutoSizeMode.cs,
6495         AutoValidate.cs, BatteryChargeStatus.cs, BindingCompleteContext.cs,
6496         BindingCompleteState.cs, CloseReason.cs, ColumnHeaderAutoResizeStyle.cs,
6497         ControlUpdateMode.cs, DataSourceUpdateMode.cs, DockingBehavior.cs,
6498         FixedPanel.cs, FlowDirection.cs, GetChildAtPointSkip.cs,
6499         HtmlElementInsertionOrientation.cs, InsertKeyMode.cs, ListViewHitTestLocations.cs,
6500         ListViewItemStates.cs, MaskFormat.cs: Added
6502 2006-07-13  Jonathan Chambers  <joncham@gmail.com>
6504         * PropertyGridView.cs: Fix keyboard navigation of drop down.
6505         Patch from eno for bug 78558.
6506         
6507 2006-07-13  Jackson Harper  <jackson@ximian.com>
6509         * TreeView.cs: When an edit is finished make sure that the
6510         selected node is visible.
6511         - When setting the top/bottom use the scrollbars is_visible, so
6512         everything will be set correctly even if the tree isn't visible
6513         yet.
6515 2006-07-13  Jackson Harper  <jackson@ximian.com>
6517         * ComboBox.cs: Revert the item->index part of my previous patch.
6518         * TreeView.cs: Use LostFocus instead of Leave for detecting when
6519         the edit box has lost focus (duh).
6520         - Just make the edit box not visible when we get return, that will
6521         take the focus, which will call EndEdit
6522         * TreeNode.cs When we start editing, notify the treeview.
6524 2006-07-12  Jackson Harper  <jackson@ximian.com>
6526         * ComboBox.cs: Clear out old items before setting the item list.
6527         This prevents databound controls from having their items added
6528         twice.
6529         - Switch the combobox to use indices whereever possible instead of
6530         using Item's.  This allows usto navigate through lists that have
6531         more then one item with the same string value (ie a, b, b, a).
6532         - Scroll the listboxes scrollbar when a non visible item is
6533         highlighted
6534         - Allow keypress to cycle through all the possible values. For
6535         example if you have b1, b2, b3 and hold down the B key all the
6536         values will be cycled through.
6537         
6538 2006-07-12  Jackson Harper  <jackson@ximian.com>
6540         * TextBoxBase.cs:
6541         * ListView.cs: Don't need to override SETFOCUS anymore, we can do
6542         this using the internal methods.
6543         * Control.cs: Add OnGotFocusInternal.  A new method that allows
6544         controls to "override" OnGotFocus and change focus behavior if
6545         needed.
6546         - Same thing for LostFocus
6547         * ComboBox.cs: Pass off focus to the text control properly.
6549 2006-07-12  Alexander Olk  <alex.olk@googlemail.com>
6551         * FileDialog.cs: Added GetFoldersOnly to MWFVFS
6552         * FolderBrowserDialog.cs: Almost a complete rewrite.
6553           - Better support for Environment.Specialfolders
6554           - Added support for MWFVFS
6555           - Made setting SelectedPath work
6557 2006-07-12  Jackson Harper  <jackson@ximian.com>
6559         * Control.cs: Optimze getting all the controls.
6561 2006-07-11  Jackson Harper  <jackson@ximian.com>
6563         * ContainerControl.cs: Override SETFOCUS in the container control,
6564         so that it is not selected on mouse click.
6566 2006-07-11  Peter Dennis Bartok  <pbartok@novell.com> 
6568         * LinkLabel.cs: Hack to handle Shift-Tabbing to the linklabel. 
6569           Hopefully we will have a better way once all of focus is complete.
6571 2006-07-11  Peter Dennis Bartok  <pbartok@novell.com>
6573         * ThemeWin32Classic.cs: Commented out some debug code and fixed
6574           a compile error with csc.
6576 2006-07-11  Jackson Harper  <jackson@ximian.com>
6578         * Control.cs: When hiding a control only select the next control
6579         if the current control was focused.
6580         - Don't handle enter/leave when setting/killing focus, this is
6581         done by the container control.
6582         - Remove is_selected, it's not needed anymore.
6583         - Add utility methods for selecting a child control, and for
6584         firing the Enter/Leave events.
6585         * ContainerControl.cs: When a control is activated fire the
6586         enter/leave events.
6587         - Don't wrap when processing the tab key, so that focus can be
6588         moved outside of the container.
6589         - Use the correct active control
6591 2006-07-11  Jackson Harper  <jackson@ximian.com>
6593         * ComboBox.cs: Remove some debug code that was blinding me.
6594         * UpDownBase.cs: These controls actually aren't implicit, they are
6595         visible to the user.
6597 2006-07-10  Chris Toshok  <toshok@ximian.com>
6599         * DataGrid.cs: move back to the is_adding boolean field.  god i
6600         hate this is_editing/is_adding/is_changing stuff.
6602 2006-07-10  Chris Toshok  <toshok@ximian.com>
6604         * DataGridTableStyle.cs: just check if the property type is bool.
6605         if it is, use DataGridBoolColumn, otherwise DataGridTextBoxColumn.
6606         Don't use CanRenderType.
6608         * DataGridTextBoxColumn.cs: set the value to DBNull.Value, not "",
6609         if our text == NullText.  Remove CanRenderType.
6611         * DataGridBoolColumn.cs: nuke CanRenderType.
6613         * DataGrid.cs: reenable some code to end the current edit inside
6614         of set_CurrentCell.  This fixes the other 1.1.16 regression.
6615         Also, remove rowhdrs_maxheight and just use rowhdrs_area.Height.
6616         Also, remove the visible_row_count arg from CalcRowHeaders, since
6617         we don't need to worry about the actual height of the area.
6619 2006-07-10  Chris Toshok  <toshok@ximian.com>
6621         * DataGridTextBoxColumn.cs: if when we Commit we're in navigate
6622         mode, just return.
6624         * DataGridTextBox.cs: change "isedit" to "isnavigating" to reflect
6625         the real sense of the IsInEditOrNavigateMode property (true =
6626         navigate, false = edit).  Also, update OnKeyPress to reflect this.
6628         * DataGridTableStyle.cs (CreateColumnsForTable): even if the
6629         column style exists, we still need to set its property descriptor
6630         to match up with our list manager.
6632 2006-07-10  Chris Toshok  <toshok@ximian.com>
6634         * ThemeWin32Classic.cs: implement the new row/header painting
6635         approach.  The parent row painting will likely go away and
6636         replaced with label controls, but the rest seems to work ok (and
6637         efficiently).
6639         * Theme.cs: change the way we draw datagrid rows.  we don't draw
6640         the row headers as a block now.  Instead we draw them in the
6641         normal draw-row loop.  Add some calls for drawing parent rows and
6642         relation rows.
6644         * DataGridTableStyle.cs: add tons of ArgumentExceptions if this is
6645         a default table style.  Set the defaults from ThemeEngine.Current,
6646         not SystemColors.  Fix lots of misc issues with property setters.
6648         * DataGrid.cs: move loads of style information out of this class
6649         as it's being duplicated with DataGridTableStyle.  keep track of a
6650         special DataGridTableStyle for the properties we used to mirror
6651         here.  Switch all the style properties to access this table style
6652         instead of instance fields of this class.  Also add a internal
6653         class to represent parent rows (more needs to be stored here, like
6654         the selection state from the parent table, as well as the
6655         expansion state.)  Also, for datasources with relations, do the
6656         right thing for collapse/expand, and add support for the
6657         navigation/parent row buttons.
6659         Lastly, fix the crash in the 1.1.16 build.
6661         * GridTableStylesCollection.cs: make the explicit interface
6662         implementations call the class's methods as opposed to duplicating
6663         them.
6665         * DataGridTextBoxColumn.cs: set the x/y offset of the textfield to
6666         0 so the text doesn't jump around when we move the cursor.
6668 2006-07-10  Jackson Harper  <jackson@ximian.com>
6670         * TextBoxBase.cs:
6671         * ListBox.cs: Match MS's ToString (this makes debugging focus
6672         stuff infinitely easier).
6674 2006-07-10  Jackson Harper  <jackson@ximian.com>
6676         * Control.cs (SelectNextControl): When checking the control's
6677         parent use this instead of ctrl.parent so that null can be passed
6678         to SelectNextControl. (I have unit tests for this).
6679         - Remove unused var.
6681 2006-07-10  Chris Toshok  <toshok@ximian.com>
6683         * CurrencyManager.cs: correct one regression, the removal of the
6684         finalType field.  Also, add a MonoTODO on CanAddRows, implement
6685         Refresh() correctly, and fix some event emission in
6686         ListChangedHandler.
6688 2006-07-07  Alexander Olk  <alex.olk@googlemail.com>
6690         * FileDialog.cs: Don't use brackets for new folders if they exist
6691           under *nix. Instead use -(number of existing folders +1).
6693 2006-07-07  Alexander Olk  <alex.olk@googlemail.com>
6695         * FileDialog.cs:
6696           - Fixed really nasty bug #78771
6697           - Don't block the whole GUI when reading directories with a lot of
6698             entries. Use an other thread instead and call BeginInvoke to
6699             update the ListView in MWFFileView
6701 2006-07-07  Chris Toshok  <toshok@ximian.com>
6703         * Control.cs (Dispose): release any Capture when disposing.
6705 2006-07-07  Chris Toshok  <toshok@ximian.com>
6707         * LinkLabel.cs (Select): if we chain up to the parent, set
6708         focused_index to -1 so we'll search for the first available link
6709         the next time the user tabs into us.  Also, if the direction is
6710         backward and focused_index == -1, start the search from the last
6711         element.
6713 2006-07-07  Chris Toshok  <toshok@ximian.com>
6715         * LinkLabel.cs (CreatePiecesFromText): if the link's range piece
6716         is beyond the end of the text, don't do anything.
6717         (CreateLinkPieces): set our ControlStyles.Selectable based on
6718         whether or not we have any links.
6719         (Link.Invalidate): use a loop instead of foreach.
6720         (Link.set_Start): null out owner.sorted_links so it'll be
6721         recreated by CreateLinkPieces.
6723 2006-07-06  Chris Toshok  <toshok@ximian.com>
6725         * LinkLabel.cs: revert the SetStyle change.
6727 2006-07-06  Chris Toshok  <toshok@ximian.com>
6729         * LinkLabel.cs (.ctor): SetStyle Selectable to true.
6730         (OnEnableChanged): s/Refresh/Invalidate
6731         (OnGotFocus): if we have a focused index already, refocus it (so
6732         if we mouse out/in to the window it'll focus the right link).
6733         (OnKeyDown): move the tab handling out of here.
6734         (OnLostFocus): don't set focused_index to -1, so we can refocus it
6735         when we lose focus.
6736         (OnMouseDown): don't Capture here - Control handles it.  Also,
6737         focus the active link.
6738         (OnMouseUp): don't deal with Capture.
6739         (OnPaintBackgroundInternal): remove.
6740         (OnTextAlignChanged): CreateLinkPieces before calling the
6741         superclass's method.
6742         (OnTextChanged): call CreateLinkPieces before calling superclass's
6743         method.
6744         (ProcessDialogKey): handle Tab here, and call Select(bool,bool) to
6745         move around.
6746         (Select): implement this, moving the selection between different
6747         links, and call parent.SelectNextControl if we don't have another
6748         link to focus in the given direction.
6749         (CreateLinkPieces): call Invalidate instead of Refresh.
6750         
6751 2006-07-06  Chris Toshok  <toshok@ximian.com>
6753         * ThemeWin32Classic.cs: DrawLinkLabel changes to accomodate the
6754         new LinkLabel internals.
6756         * LinkLabel.cs: fairly major rewrite.  get rid of all the loops
6757         over pieces looking for active/focused/etc links.  also, deal with
6758         runs of text (and links) with embedded \n's in them, and use
6759         MeasureCharacterRanges instead of MeasureString to figure out the
6760         regions text occupies.  Lastly, do the usual s/Refresh/Invalidate
6761         two-step.
6763 2006-07-04  Jackson Harper  <jackson@ximian.com>
6765         * XplatUIX11.cs: Enable key auto repeat. If the user doesn't have
6766         XKB or key auto repeat, do it manually.  Without key auto repeat,
6767         when a key is held down we get key press, key release, key press,
6768         key release, ... with auto repeat we get key press, key press, key
6769         press ..., and then a release when the key is actually released.
6771 2006-07-03  Jackson Harper  <jackson@ximian.com>
6773         * TabControl.cs:
6774         * ThemeWin32Classic.cs: Tabs do not obey normal background color
6775         rules, they are always control color regardless of the background
6776         color.
6778 2006-07-02  Alexander Olk  <alex.olk@googlemail.com>
6780         * FileDialog.cs: Added internal class MWFConfig.
6781           Removed Registry support and replaced it with support for the new
6782           MWFConfig class. See MWFConfig comments for more information.
6784 2006-06-30  Alexander Olk  <alex.olk@googlemail.com>
6786         * ThemeWin32Classic.cs: Added RadioButton and CheckBox focus
6787           rectangle. Added some patches from eno from bug #78490 and fixed
6788           the arrow position for small up and down CPDrawScrollButtons.
6790 2006-06-30  Jackson Harper  <jackson@ximian.com>
6792         * InternalWindowManager.cs: Remove some debug code.
6793         * Form.cs: When an MdiParent is set to null, the window is
6794         "detatched" and becomes a normal window.
6795         * MdiClient.cs: Don't bring the new child form to the front until
6796         it is activated (setting it as active does this), this makes the
6797         previously active forms titlebar get redrawn as inactive.
6799 2006-06-29  Peter Dennis Bartok  <pbartok@novell.com>
6801         * PrintDialog.cs: Labels need a tab index too, otherwise they overlap
6802           with later controls
6804 2006-06-29  Mike Kestner  <mkestner@novell.com>
6806         * MenuAPI.cs: handle arrow keys in keynav state. Go active on down
6807         arrow in keynav state.  Fixes #78682.
6809 2006-06-28  Atsushi Enomoto  <atsushi@ximian.com>
6811         * PrintDialog.cs: Reorder, relayout, remove extra code, set tab 
6812           order (fixes #78393)
6814 2006-06-28  Jonathan Pobst  <monkey@ipobst.com>
6816         * AccessibleRole.cs, AccessibleStates.cs, AnchorStyles.cs, 
6817           ArrangeDirection.cs, ArrangeStartingPosition.cs, ColorDepth.cs,
6818           ControlStyles.cs, DataGridViewImageCellLayout.cs, DrawMode.cs,
6819           FormBorderStyle.cs, FormStartPosition.cs, FormWindowState.cs,
6820           GridItemType.cs, HelpNavigator.cs, ImeMode.cs, ItemActivation.cs,
6821           ItemBoundsPortion.cs, Keys.cs, ListViewAlignment.cs, 
6822           PictureBoxSizeMode.cs, PropertySort.cs, SelectionMode.cs,
6823           Shortcut.cs, SizeGripStyle.cs, SortOrder.cs, StructFormat.cs,
6824           TextFormatFlags.cs, ToolBarAppearance.cs, ToolBarButtonStyle.cs,
6825           ToolBarTextAlign.cs, View.cs: 2.0 Changes to existing 1.x
6826           enumerations (FlagsAttribute, SerializableAttribute, added/removed
6827           values)
6829 2006-06-28  Mike Kestner  <mkestner@novell.com>
6831         * ComboBox.cs: implement scroll wheel support. Fixes #78360.
6833 2006-06-28  Atsushi Enomoto  <atsushi@ximian.com>
6835         * PropertyGrid.cs,
6836           PropertyGridTextBox.cs : explicitly set BackColor to differentiate
6837           item lines from other area (It also makes BackColor consistent and
6838           compatible with .NET). Fixed bug #78564.
6840 2006-06-28  Jonathan Chambers  <jonathan.chambers@ansys.com>
6842         * PropertyGrid.cs: refresh toolbar when PropertySort is set.
6843         Patch from Eno for #78555.
6845 2006-06-27  Chris Toshok  <toshok@ximian.com>
6847         * ThemeWin32Classic.cs: s/grid.grid_drawing/grid
6849         * DataGridColumnStyle.cs: same.
6851         * DataGrid.cs: Roll DataGridDrawingLogic.cs into this file.
6852         
6853         * DataGridDrawingLogic.cs: nuke.
6855 2006-06-27  Chris Toshok  <toshok@ximian.com>
6857         * DataGridTableStyle.cs: clean up the constructors, and build the
6858         list of child relations for this table.  I have no idea if this is
6859         where we should be doing it (it probably isn't), but since we're
6860         already iterating over the properties..
6862         * DataGrid.cs: add row resizing.  for now we add a DataGridRow
6863         struct and array for keeping track of row information, similar to
6864         what's shown in a hack on
6865         http://www.syncfusion.com/FAQ/WindowsForms/FAQ_c44c.aspx.
6867         * Theme.cs: be consistent about the naming of DataGrid methods,
6868         prefering ColumnWidths and RowHeights over columnsWidths and
6869         RowsHeights.
6871         * ThemeWin32Classic.cs: same, and also add support for variable
6872         sized rows (and the +/- expansion icons for related rows).
6874 2006-06-27  Peter Dennis Bartok  <pbartok@novell.com>
6876         * TextBoxBase.cs: Applied Eno's patch from #78660
6878 2006-06-27  Peter Dennis Bartok  <pbartok@novell.com> 
6880         * Form.cs (ScaleCore): We don't want to scale our form if it's
6881           state is minimized or maximized, but we still need to scale our
6882           child windows. Also, added try/finally block to ensure layout
6883           gets reset (Fixes #78697)
6885 2006-06-27  Peter Dennis Bartok  <pbartok@novell.com>
6887         * Control.cs: Added 2.0 Scale(SizeF) method (Fixes 78700)
6889 2006-06-27  Peter Dennis Bartok  <pbartok@novell.com> 
6891         * Form.cs: Fixed c+p error and added check to resize form if minimum
6892           size is bigger than current size (Fixes #78709)
6894 2006-06-26  Peter Dennis Bartok  <pbartok@novell.com> 
6896         * ThemeEngine.cs (..ctor): Properly use ToLower() (Fixes #78704)
6898 2006-06-26  Mike Kestner  <mkestner@novell.com>
6900         * ComboBox.cs: only do Keypress handling in the combo when there  
6901         are items in the collection. Fixes #78710.
6903 2006-06-26  Chris Toshok  <toshok@ximian.com>
6905         * Binding.cs: make this work bi-directionally.  also, clear up
6906         other mixups between Push/Pull Data (e.g. we're supposed to pull
6907         data when validating).
6909         * BindingManagerBase.cs: trim some fully qualified collection
6910         types.
6912         * PropertyManager.cs (get_IsSuspended): oops, fix this check.
6914 2006-06-23  Chris Toshok  <toshok@ximian.com>
6916         * PropertyManager.cs: It appears (according to the unit tests)
6917         that PropertyManager doesn't use
6918         PropertyDescriptor.AddValueChanged to track propery value changes
6919         in its datasource, but uses the same scheme as Binding, where it
6920         looks for a <Property>Changed event and binds to it.
6922         Also, according to the docs, IsSuspended always returns false for
6923         a property manager with a non-null datasource.
6925 2006-06-22  Peter Dennis Bartok  <pbartok@novell.com> 
6927         * Form.cs: (ShowDialog): If we're returning a forced cancel we still
6928           need to update the actual DialogResult. (Fixes #78613)
6930 2006-06-22  Peter Dennis Bartok  <pbartok@novell.com>
6932         * Form.cs (ShowDialog): Release any captures before running the
6933           new message pump (fixes #78680)
6935 2006-06-22  Mike Kestner  <mkestner@novell.com>
6937         * ListView.cs: Layout column widths properly in details mode even 
6938         if HeaderStyle.None is set.  Fixes #78691.
6940 2006-06-21  Peter Dennis Bartok  <pbartok@novell.com>
6942         * FileDialog.cs: Fixed taborder to match MS. Fixes #77873 partially.
6944 2006-06-21  Peter Dennis Bartok  <pbartok@novell.com> 
6946         * Control.cs (ContainsFocus): Using new driver method to get focused
6947           window, instead of trying to use internal tracking var, which can
6948           recursion issues (Fixes #78685)
6949         * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs, XplatUIOSX.cs, 
6950           XplatUIWin32.cs: Added GetFocus method to return focused window
6952 2006-06-21 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6954         * ColorDialog.cs: when the mouse button is pressed inside the color
6955         matrix, don't let the cursor move out of it until the button is
6956         released, which is the behavior on windows. Changed 'colours' by
6957         'colors' to use the same word consistently.
6959 2006-06-21  Chris Toshok  <toshok@ximian.com>
6961         * DataGrid.cs: add in some basic navigation stuff (navigating to a
6962         child relation and back, using a stack).  Also, remove
6963         GetDataSource and the code that calls it - it's not needed.  Also,
6964         track CurrencyManager.ListName's removal.
6966 2006-06-21  Chris Toshok  <toshok@ximian.com>
6968         * CurrencyManager.cs: push some of the original type checking from
6969         BindingContext.CreateBindingManager to here, and remove some of
6970         the finalType stuff.  Need more tests to make sure I've got the
6971         ListName part right, and we might need more in SetDataSource.
6973         * PropertyManager.cs: add a ctor that takes just the datasource,
6974         and no property name.  Make SetDataSource work with a null
6975         property_name, and make Current return the data_source if the
6976         property descriptor is null.  this makes 'string foo = "hi";
6977         BindingContext[foo].Current' return "hi" as it should.
6979         * RelatedCurrencyManager.cs: make this code more generic - there's
6980         no reason the parent manager has to be CurrencyManager, and
6981         there's no reason to pass the DataRelation.  It suffices to use a
6982         BindingManagerBase and PropetyDescriptor.
6984         * RelatedPropertyManager.cs: make a similar change here.
6985         
6986         * BindingContext.cs: make CreateBindingManager the beautiful, tiny
6987         flower I knew it could be.
6989 2006-06-20  Chris Toshok  <toshok@ximian.com>
6991         * PropertyManager.cs: the PropertyChangedHandler is invoked when
6992         data in the source has changed and we need to update the control,
6993         so s/PullData/PushData.
6995         * CurrencyManager.cs: Refresh is meant to update the control from
6996         data in the datasource.  So, s/PullData/PushData.
6998         * BindingContext.cs: add more ugliness (we weren't handling the
6999         case where data_source = DataTable and data_member = column_name).
7001         * Binding.cs: fix PushData/PullData mixup.  Both are interpreted
7002         from the perspective of the datasource.  PullData pulls from the
7003         control, PushData pushes to the control.
7005 2006-06-20  Chris Toshok  <toshok@ximian.com>
7007         * BindingContext.cs: rewrite the CreateBindingManager code to
7008         handle navigation paths more or less properly.  This could
7009         definitely stand some more work, in particular to push the
7010         recursion up to the toplevel.  But that relies on fixes in other
7011         places (System.Data comes to mind).
7013         Also, move to a flat hashtable (and encode the twolevel nature of
7014         the dictionary into the hash key).  This lets us implement the
7015         IEnumerable.GetEnumerator method.
7017         * RelatedCurrencyManager.cs: new class.  Update our view based on
7018         our relation and our parent CurrencyManager's position.
7020         * CurrencyManager.cs: split out some logic from the ctor into
7021         SetView, so it can be called from the new RelatedCurrencyManager
7022         subclass.
7024         * RelatedPropertyManager.cs: new class.  Update our datasource
7025         based on the position of our parent CurrencyManager.
7027         * PropertyManager.cs: split out some logic from the ctor into
7028         SetDataSource, so it can be called from the new RelatedDataSource
7029         subclass.  Also, make the Current getter return the value
7030         of the PropertyDescriptor, not the data_source.
7032         * Binding.cs: no need to duplicate the string splitting code here.
7034 2006-06-19  Peter Dennis Bartok  <pbartok@novell.com> 
7036         * Control.cs:
7037           - set_Enabled: OnEnabledChanged is not called if the inherited state 
7038             of the control is not altered, even though  we might be changing the
7039             internal state of the control (#78458)
7040           - set_Enabled: (Re)Moved the enabling/disabling of the window to 
7041             OnEnabledChanged, to allow easy altering of any child window state
7042           - OnEnabledChanged: Added code to enable/disable driver window state
7043           - OnParentEnabledChanged: Instead of firing the event, call 
7044             OnEnabledChanged, which will fire the event and also a) set driver
7045             window state and pass the enabled state to any grandchildren (#78458)
7047 2006-06-19  Jackson Harper  <jackson@ximian.com>
7049         * InternalWindowManager.cs: We don't set the cursor explicitly
7050         thats done via the response to NCHITTESTs.
7051         - Don't need to adjust for titlebar heights anymore, the
7052         coordinates are coming in the correct coordinates now (see peters
7053         last patch).
7056 2006-06-19  Peter Dennis Bartok  <pbartok@novell.com> 
7058         * XplatUIX11.cs (GetMessage): WM_NCxBUTTONx messages were wrongly
7059           being translated relative to whole window, instead of client window.
7060           That caused broken offsets on mouseclick (and caused gas for our
7061           InternalWindowManager)
7063 2006-06-15  Peter Dennis Bartok  <pbartok@novell.com> 
7065         * TextControl.cs:
7066           - MoveCaret: Implemented PgUp, PgDown, CtrlPgUp and CtrlPgDown
7067           - Undo(): Added replay of cursor move on DeleteChars action; added
7068             calling Undo() again if a recorded cursor move is invalid (to
7069             ensure that some action is performed on Undo)
7070         * TextBoxBase.cs (ProcessKey): Added handling of PgUp and PgDown (#78482)
7072 2006-06-16  Jackson Harper  <jackson@ximian.com>
7074         * MdiClient.cs: Instead of just sizing maximized windows when
7075         there is a resize we also have to adjust the Y of minimized
7076         windows, so they stay pinned to the bottom of the mdi container.
7077         - Eliminate separate tracking of the active control, we can just
7078         get this from the controls collection.
7079         - Paint the decorations for the newly activated titlebar so we get
7080         a pretty blue bar.
7081         * InternalWindowManager.cs:
7082         * ThemeWin32Classic.cs: Minimized windows get all three buttons
7083         even if they are a tool window.
7084         
7085 2006-06-15  Peter Dennis Bartok  <pbartok@novell.com> 
7087         * TextControl.cs (Undo): Handle non-existent cursor locations in the
7088           undo buffer, these can happen when text was deleted and the cursor
7089           was recorded first. Since we will also have a recorded cursor
7090           after the delete this is not an issue. (Fixes #78651)
7092 2006-06-14  Peter Dennis Bartok  <pbartok@novell.com> 
7094         * AccessibleObject.cs: Remove dependence on Control.is_selected;
7095           instead properly track control states internally (allows us to
7096           remove is_selected from Control)
7098 2006-06-14 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7100         * ImageListStreamer.cs: correctly generate the 1bpp mask for images
7101         whose width is not a multiple of 8.
7103 2006-06-13  Jackson Harper  <jackson@ximian.com>
7105         * MdiClient.cs:  Only maximize the next child if the current one
7106         is maximized.
7108 2006-06-13  Chris Toshok  <toshok@ximian.com>
7110         * DataGridColumnStyle.cs: Invalidate the column when HeaderText is
7111         modified.  Also, guard against grid or grid_drawing being null in
7112         Invalidate.
7114         * DataGrid.cs: Reformat tons of getters/setters.  In the
7115         DataMember setter, just call SetNewDataSource instead of
7116         duplicating some of its functionality.  In SetNewDataSource, don't
7117         check ListManager for null, since the property getter creates the
7118         object if needed.
7120         * DataGridTableStyle.cs: don't set TableStyle or call
7121         SetDataGridInternal on the column here, it's done in
7122         GridColumnStylesCollection.Add.
7124         * GridColumnStylesCollection.cs: fix all the explicit interface
7125         implementations to just call our methods.  Nuke AddInternal() and
7126         move the body of it to Add().  Also, add a call to
7127         column.SetDataGridInternal to Add().
7129         * DataGridTextBoxColumn.cs (.ctors): call this() instead of
7130         base()+duplicate code.  Also, use the Format property instead of
7131         format to generate an Invalidate ala MS.  Lastly, create the
7132         textbox here, unconditionally.
7133         (set_Format): call Invalidate.
7134         (get_TextBox): no need to call EnsureTextBox.
7135         (Commit): remove the message box.
7136         (Edit) remove the call to EnsureTextBox.
7137         (EndEdit): call HideEditBox instead of ReleaseHostedControl.
7138         (EnterNullValue): no need to check textbox for null.
7139         (HideEditBox): no need to check textbox for null.
7140         (SetDataGridInColumn): add the textbox to the grid's controls.
7141         (EnsureTextBox): nuke.
7142         
7143 2006-06-13  Jackson Harper  <jackson@ximian.com>
7145         * MdiWindowManager.cs: Hook up to the maximized menus paint event
7146         and redraw the buttons when needed. Unhook when the window is
7147         unmaximized.
7148         * MainMenu.cs: Add an internal Paint event, the mdi window manager
7149         needs this so that it can redraw its buttons when the menu is
7150         repainted.
7151         * InternalWindowManager.cs:
7152         * Form.cs: The method order has changed for DrawMaximizedButtons,
7153         so that it can be a PaintEventHandler.
7154         
7155 2006-06-13  Jackson Harper  <jackson@ximian.com>
7157         * MdiClient.cs: When we close a maximized mdi window, the next mdi
7158         window is activated and maximized, even if it wasn't before.
7159         - When  a new window is activated repaint the decorations of the
7160         old one, so that it no longer has the Active "look" (the blue
7161         titlebar).
7162         * InternalWindowManager.cs: Open up CreateButtons to base classes
7163         so they can recreate the buttons on state changes.
7164         - If a window is maximized give it all three buttons
7165         * MdiWindowManager.cs: Create the titlebar buttons when the state
7166         is changed, this is needed because a toolwindow will not have all
7167         three buttons until it is maximized.
7169 2006-06-13  Atsushi Enomoto  <atsushi@ximian.com>
7171         * ProgressBar.cs : PerformStep() shouldn't exceed Maximum.
7172           Fixed bug #78609.
7174 2006-06-12  Jackson Harper  <jackson@ximian.com>
7176         * KeysConverter.cs: Make sure we handle the Ctrl special case
7177         if its the only key.
7178         
7179 2006-06-12  Jackson Harper  <jackson@ximian.com>
7181         * Theme.cs: Add a method to get the size of a managed window
7182         toolbar button.
7183         * InternalWindowManager.cs: Remove the ButtonSize property, this
7184         should be retrieved from the theme.
7185         * MdiWindowManager.cs: Get the button size from the theme
7186         * ThemeWin32Classic.cs: Make the method to get the managed window
7187         titlebar button size public.
7188         - Handle the different button sizes of maximized toolwindows
7189         (should match any maximized window).
7190         - Get the titlebar height from the theme, not the WM (which gets
7191         it from the theme).
7193 2006-06-12  Jackson Harper  <jackson@ximian.com>
7195         * InternalWindowManager.cs: Handle NC Double Clicks, passing the
7196         event down to the mdi window manager.
7197         - Expose some extra stuff to base classes
7198         - Make sure to end the Capture on an NC Mouse up, so that we can
7199         get double clicks properly, and the sizing doens't stick.
7200         - When doing PointToClient contain it in the workable desktop
7201         area, this prevents windows from changing size when the cursor is
7202         pulled outside of the working area while sizing.
7203         * MdiWindowManager.cs: When we get a double click maximize the
7204         window.
7205         - Reset the cursor after handling mode changes.
7207 2006-06-12  Peter Dennis Bartok  <pbartok@novell.com> 
7209         * XplatUIX11.cs (WorkingArea): Read the actual workarea for the 
7210           current desktop, instead of just assuming a 0, 0 origin. This
7211           is needed for our internal window manager, to know the top
7212           margin of the desktop
7214 2006-06-12  Chris Toshok  <toshok@ximian.com>
7216         * DataGrid.cs (set_CurrentCell): concede focus as we move around.
7217         we need this to get rid of the selected background in the bool
7218         column.
7219         (CancelEditing): move the ConcedeFocus call to above the Abort
7220         call.  Also, set is_changing to false and invalidate the row
7221         header if we were changing before.
7222         (ProcessKeyPreviewInternal): remove, since noone outside this
7223         class calls it anymore.  Roll the code into ProcessKeyPreview.
7224         (EndEdit): remove the internal version.
7225         (InvalidateCurrentRowHeader): make private.
7227         * DataGridBoolColumn.cs: simplify this class a bunch.  remove the
7228         Keys.Escape handling (and with it the last call to
7229         DataGrid.EndEdit from outside the class.)
7232 2006-06-12  Chris Toshok  <toshok@ximian.com>
7234         * DataGridTextBox.cs (.ctor): isedit defaults to false.
7235         (OnKeyPress): set isedit to true.
7236         (ProcessKeyMessage): remove Keys.Enter handling from here.  it's
7237         already handled by the grid.
7239         * DataGrid.cs (set_CurrentCell): more work here.  it's still not
7240         right.  ugh.
7241         (set_DataSource): SetDataSource always returns true, so stop
7242         putting it in an if statement.
7243         (EndEdit): get rid of some {}'s
7244         (ProcessGridKey): return true in case Keys.Escape.
7245         (ProcessKeyPreviewInternal): only handle KEYDOWN messages.
7246         (ConnectListManagerEvents,DisconnectListManagerEvents): connect to
7247         PositionChanged, stopped connecting to CurrentChanged.
7248         (GetDataSource): simplify this a bunch.
7249         (SetDataSource): change return type from bool to void.
7250         (OnListManagerPositionChanged): rename OnListManagerCurrentChanged
7251         to this, and make sure we don't set ListManager.Position inside
7252         set_CurrentCell.
7253         (OnListManagerItemChanged): if we're passed an actual index,
7254         redraw that row.
7256         * CurrencyManager.cs (set_Position): don't call PullData here.
7258 2006-06-09  Jackson Harper  <jackson@ximian.com>
7260         * TreeNode.cs:  Recalculate the visible order before doing the
7261         Expand/Collapse Below calls, because those calls generate an
7262         expose.
7263         - Reduce calls to the TreeView property, which is mildly expensive
7264         by using a local var.
7265         * Form.cs: Layout the MDI child windows when creating the parent
7266         form.
7267         - Don't use the internal constructor anymore
7268         * MdiClient.cs: use the parent form width/height (if available)
7269         when laying out the child windows, we do this because the
7270         mdiclient isn't docked yet when the initial layout is done.
7271         - Don't need an internal constructor anymore.
7273 2006-06-08 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7275         * FileDialog.cs: handle access errors when trying to create a folder
7276         or changing to a directory. No need to initialize out parameters.
7278 2006-06-08  Alexander Olk  <alex.olk@googlemail.com>
7280         * FileDialog.cs: Append a number when creating a new folder if the
7281           folder already exists (use parenthesis instead of square brackets)
7283 2006-06-08  Alexander Olk  <alex.olk@googlemail.com>
7285         * FileDialog.cs:
7286           - Disabled registry support for windows and added better registry
7287             error checking for other systems (need to investigate why it
7288             works perfectly on my system)
7289           - If a folder already exist show an error MessageBox instead of
7290             trying to create an indexed name.
7291           - Fixed a non intentional typo.
7293 2006-06-08 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7295         * FileDialog.cs: (SetFileName) don't crash if CurrentRealFolder is null.
7297 2006-06-08  Alexander Olk  <alex.olk@googlemail.com>
7299         * FileDialog.cs: When creating a new folder don't crash if the
7300           folder already exists.
7302 2006-06-08  Alexander Olk  <alex.olk@googlemail.com>
7304         * FileDialog.cs: Allmost a complete rewrite.
7305           - added a "virtual" file system that handles the differences
7306             between unix and windows file systems (especially the directory
7307             structure). Moved most of the directory and file handling code
7308             into the vfs.
7309             Added vfs classes: MWFVFS, FileSystem, WinFileSystem,
7310             UnixFileSystem and FSEntry.
7311           - Recently used folder/directory, size, location and used file names
7312             (file name ComboBox) are now stored in the registry and get read
7313             before the dialog shows up (fixes part 6 of bug #78446).
7314           - Creation of new folders/directories is now possible (context menu
7315             or ToolBar). Added TextEntryDialog for this that fills in the gap
7316             until ListView.LabelEdit works.
7317           - Fixed cursor handling (bug #78527) and focus handling for
7318             PopupButtonPanel
7319           - Various "Search in" ComboBox enhancements. The content of the
7320             dropdown listbox now almost matches ms.
7321           - Changed the behaviour when the user switches to SpecialFolder
7322             Recent to show the ListView in View.Details.
7323           - Beside using the ToolBar to change the View property of the
7324             file ListView it is now possible to use the context menu too.
7326 2006-06-08  Alexander Olk  <alex.olk@googlemail.com>
7328         * ComboBox.cs: Don't create a new ObjectCollection when an item
7329           gets inserted. Just insert the item in the existing object_items
7330           ArrayList.
7332 2006-06-08  Jackson Harper  <jackson@ximian.com>
7334         * OpenTreeNodeEnumerator.cs: Fix to use the Parent property, so
7335         that the treeview and root node checks are done also, this fixes a
7336         regression i caused in the unit tests.
7338 2006-06-07  Wade Berrier <wberrier@novell.com> 
7340         * RichTextBox.cs: More ISO8859-1 -> unicode
7342 2006-06-07  Mike Kestner  <mkestner@novell.com>
7344         * ComboBox.cs : use items to hold highlight/selection so that
7345         collection insertions don't require synchronization.
7347 2006-06-07  Jackson Harper  <jackson@ximian.com>
7349         * InternalWindowManager.cs: Simplify (and FIX) the window sizing
7350         routine.  We now always keep the sized edge at the cursor instead
7351         of computing movement and adjusting rects.  There is one buglet
7352         with this method though when the cursor is moved over area that
7353         the window can not expand too (such as the toolbars on the desktop).
7355 2006-06-07 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7357         * XplatUIX11.cs: (IsEnabled,IsVisible) the window handler can be null
7358         here. Fixes crash on startup in AlbumSurfer.
7360 2006-06-07  Peter Dennis Bartok  <pbartok@novell.com> 
7362         * RichTextBox.cs: Replaced embedded ISO8859-1 chars with proper unicode
7363           values
7365 2006-06-07 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7367         * XplatUIX11.cs: call XPending and XNextEvent inside the same lock()
7368         statement to avoid calling XNextEvent which will block if another thread
7369         took the event that we were expecting. Fixes bug #78605.
7371 2006-06-07  Mike Kestner  <mkestner@novell.com>
7373         * ListView.cs : isolated checkbox clicking from the selection logic.
7374         Toggle check state on item doubleclicks.  Really fixes #78454 part2.
7376 2006-06-06  Carlos Alberto Cortez <calberto.cortez@gmail.com>
7378         * Form.cs: Check that the value passed to Form.DialogResult
7379         is a valid enum value.
7381 2006-06-06 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7383         * FileDialog.cs: disable the up button when in 'Recently Used' or 'My
7384         Computer'. Clicking it in the network view goes to 'My Computer'.
7385         Added CIFS filesystem type. Display the mount point of filesystems.
7386         Avoid duplicate mount points (happens for me with CIFS);
7388 2006-06-06  Jackson Harper  <jackson@ximian.com>
7390         * InternalWindowManager.cs: Draw the maximized windows buttons
7391         when resizing.
7393 2006-06-06 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7395         * Form.cs: when running a modal dialog, ignore WM_CLOSE requests for
7396         all other dialogs. Fixes bug #78585.
7398 2006-06-06  Mike Kestner  <mkestner@novell.com>
7400         * CheckedListBox.cs : apply CheckOnClick behavior to unchecking too.
7401         Only invalidate checkbox on checkstate changes to avoid flicker.
7402         * ListBox.cs : avoid unselect/select when clicking selected item.
7403         avoid reselection flicker for already multiselected items.
7404         Fixes #78382.
7406 2006-06-06  Jackson Harper  <jackson@ximian.com>
7408         * MdiWindowManager.cs: When the window is closed do an NCRecalc on
7409         the parent form so that the menu is removed if needed.
7411 2006-06-06  Mike Kestner  <mkestner@novell.com>
7413         * ListBox.cs : add ScrollWindow call to UpdateTopItem.  fix
7414         Prev/Next/PrevPage/NextPage/Home/End index calculation.  Fixes #78559.
7416 2006-06-06  Mike Kestner  <mkestner@novell.com>
7418         * CheckedListBox.cs : rebuild check collection on Add.  Fixes #78426.
7421 2006-06-06  Jackson Harper  <jackson@ximian.com>
7423         * Control.cs: Use the property (instead of the field) to get the
7424         default cursor so it is instantiated correctly.
7425         * InternalWindowManager.cs: The OS doesn't give us an NCPAINT with
7426         resizes so we need to manually repaint the window decorations here.
7427         - Set the titlebar button locations as soon as they are created,
7428         otherwise they are not set correctly on win32.
7429         
7430 2006-06-06  Chris Toshok  <toshok@ximian.com>
7432         * CurrencyManager.cs (set_Position): call PullData before
7433         OnCurrentChanged.
7434         (AddNew): after calling IBindingList.AddNew, update our
7435         listposition, and call OnCurrentChanged/OnPositionChanged (without
7436         calling PullData).
7437         (OnCurrentChanged): remove the call to PullData from here.
7438         (OnItemChanged): remove the call to PushData from here.
7439         (OnPositionChanged): change the test from == null to != null to
7440         match the other methods.
7441         (ListChangedHandler): the grossest part of the patch.  Implement
7442         this such that it passes the unit tests in CurrencyManagerTest and
7443         the output more or less matches that of MS's implementation.
7445 2006-06-06  Mike Kestner  <mkestner@novell.com>
7447         * ListView.cs : only update check state on single click.
7448         * ThemeWin32Classic.cs : fix focus drawing for details view without
7449         fullrowselect.  Fixes #78454.
7450         * XplatUIX11.cs : fix for double click emission.
7452 2006-06-05  Jonathan Chambers  <jonathan.chambers@ansys.com>
7454         * PropertyGridView.cs : Applied Atsushi's patch to fix
7455         font dialog bug  (#78197).
7457 2006-06-05  Jackson Harper  <jackson@ximian.com>
7459         * TreeNode.cs: Compute the next node for expanding/collapsing
7460         correctly. We now factor in nodes without a NextNode
7461         correctly. (Fixes somes cases in nunit-gui).
7462         * InternalWindowManager.cs: Set the bounds when updating the
7463         virtual position of a tool window.
7464         
7465 2006-06-05  Chris Toshok  <toshok@ximian.com>
7467         * DataGrid.cs: rename cached_currencymgr to list_manager.
7468         (set_CurrentCell): move SetCurrentCell code here, and clean it up
7469         some.
7470         (CurrentRow, CurrentColumn): single accessors so we can make the
7471         cursor movement code a lot easier to understand.
7472         (CurrentRowIndex): implement this in terms of CurrentRow.
7473         (BeginEdit): clean this up a bit.
7474         (CancelEditing): sort out the is_editing/is_changing/is_adding
7475         stuff a little.
7476         (EndEdit): minor changes.
7477         (OnKeyDown): add a comment about a (most likely) unnecessary
7478         check.
7479         (OnMouseDown): cancel editing when we click on a row header.  And
7480         use the CurrentRow setter, not CurrentCell.
7481         (ProcessDialogKey): directly call ProcessGridKey.
7482         (UpdateSelectionAfterCursorMove): factor out this common block of
7483         code (it's used everywhere that we move the cursor by updating row
7484         or column).
7485         (ProcessGridKey): pretty substantial overhaul.  Use the
7486         CurrentRow/CurrentColumn properties to make the code a lot more
7487         readable.  Only use the CurrentCell property when we have to
7488         modify both row and column at once.  Tab behavior is still broken,
7489         and Delete is untested.
7490         (Select): if we have no selected rows, set selection_start to
7491         @row.
7492         (EditCurrentCell): rename EditCell this.  It was only ever invoked
7493         with CurrentCell as the arg, so drop the arg and rename it.
7495         * DataGridColumnStyle.cs: clean up the constructors a little, and
7496         drop CommonConstructor().
7498         * DataGridTextBox.cs (.ctor): set accepts_return to true so we
7499         actually get notified when the user hits it.
7500         (ProcessKeyMessage): *substantially* simplify this method.
7501         There's no reason (that I can see) for the textbox to be making
7502         calls into the datagrid at all.  Remove all of them but the ones
7503         for Enter handling.  those will take some more work.
7505         * DataGridTextBoxColumn.cs (ConcedeFocus): implement this by
7506         calling HideEditBox.
7507         (HideEditBox): if we have an active textbox, render it invisible
7508         without causing a re-layout of the datagrid.
7510 2006-06-05  Mike Kestner  <mkestner@novell.com>
7512         * ListView.cs : fix NRE crasher when focuseditem is cleared by
7513         collection changes by resetting it to Items[0].  Fixes #78587.
7515 2006-06-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7517         * MessageBox.cs: if the height of the text is larger than the icon_size,
7518         use that. Fixes bug #78575.
7520 2006-06-05  Jackson Harper  <jackson@ximian.com>
7522         * TreeView.cs: Fix line drawing when scrolling.  To do this each
7523         node is basically responsible for drawing its entire horizontal
7524         area.  When drawing a node it draws its parent node lines if
7525         needed.
7526         - Adjust the clip area to the viewport rectangle
7527         - Fix Left/Right key handling to match MS. (It expand/collapses
7528         and moves to parents/first child but does not move selection to
7529         sibling nodes).
7530         - Fix SetTop to work with new bound calculation code
7531         - When scrollbars are no longer needed we need to reset scrolling
7532         vars and recalculate the visible order so the redraw is correct
7533         * TreeNode.cs: We can't expand/collapse nodes with no children.
7535 2006-06-03  John Luke  <john.luke@gmail.com> 
7537         * X11DesktopColors.cs: dllimport the exact gtk and gdk versions
7538         so the colors work without dev packages
7539         
7540 2006-06-02  Peter Dennis Bartok  <pbartok@novell.com> 
7542         * Control.cs 
7543           - Select: Implemented to just use activate. Seems to match MS 
7544             behaviour closest. Documented to only do actual control walking 
7545             based on it's parameters if in a container control so I moved 
7546             the code there.
7547           - Removed selection check logic from our internal Select() method
7548         * ContainerControl.cs:
7549           - Select: Moved selection logic from Control here, since MS documents
7550             that containers obey the bool arguments. No longer calling base
7552 2006-06-02  Jackson Harper  <jackson@ximian.com>
7554         * TreeView.cs: If the selected node isn't changed when we get
7555         focus update the previously selected node so that we see the
7556         selection box.
7558 2006-06-02  Mike Kestner  <mkestner@novell.com>
7560         * ComboBox.cs: restructure grab and general mouse event handling.
7561         Make the composite control raise mouse events like it was a single
7562         control for leaves/enters/motion/up/down events.  fix dropdown list
7563         coordinate mangling and refactor it into the scrollbar subclass to
7564         reduce code duplication.  Fixes #78282 #78361 and #78457.
7566 2006-06-02  Mike Kestner  <mkestner@novell.com>
7568         * ScrollBar.cs: remove Capture setting/clearing, as it happens
7569         automatically in the Control.WndProc.
7571 2006-06-01 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7573         * FileDialog.cs: fix crash when running SharpChess, which sets the
7574         FilterIndex to 2 with only one Filter.
7576 2006-06-01 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7578         * ToolBar.cs: add SizeSpecified property.
7579         * ToolBarButton.cs: when the ButtonSize is calculated by the container,
7580         try to figure out our real size, otherwise fallback to what the
7581         container says.
7583 2006-06-01  Peter Dennis Bartok  <pbartok@novell.com> 
7585         * XplatUIX11.cs (DefWndProc): WM_MOUSEWHEEL needs to be passed up
7586         * Control.cs (WndProc): MS always calls the DefWndProc to pass
7587           up the event
7589 2006-06-01  Mike Kestner  <mkestner@novell.com>
7591         * ListView.cs: revamp the focus management in ListView.  It still
7592         causes churn of LostFocus/GotFocus emissions on clicks, but it's
7593         better than not handling focus at all.  Will revisit when pdb feels
7594         the general focus handling is solid.  Fixes #78526.
7596 2006-06-01  Jackson Harper  <jackson@ximian.com>
7598         * TreeView.cs: Set the default border style in the constructor.
7599         - Move painting to use OnPaintInternal instead of capturing
7600         WM_PAINT, this is the correct way of doing things
7601         - UpdateBelow shouldn't invalidate the scrollbar area
7602         - Cap the top on update below in case the node was above the top
7603         of the viewport rectangle.
7604         - ExpandBelow and Collapse below need to obey Begin/End Update.
7605         * TreeNode.cs: Make is_expanded internal so the treenode
7606         collection can change it without firing the whole event chain.
7607         * TreeNodeCollection.cs: When clearing all the child nodes make
7608         sure to recalc the visible order.
7609         - Improve algo for remove the top node
7611 2006-06-01  Peter Dennis Bartok  <pbartok@novell.com> 
7613         * XplatUIX11.cs (SetFocus): Make sure we can handle re-entrancy due to
7614           SendMessage directly calling window procedures, which in turn might
7615           call SetFocus()
7617 2006-06-01  Peter Dennis Bartok  <pbartok@novell.com>
7619         * Control.cs: Don't handle WM_SETFOCUS if the same window already
7620           has focus (works around X11 sending a FocusIn after our SetFocus)
7621         * XplatUIX11.cs: Send KILLFOCUS before setting SETFOCUS on new window
7623 2006-06-01  Alexander Olk  <alex.olk@googlemail.com>
7625         * Mime.cs: Fix for the NET_2_0 build.
7626           NameValueCollection needs StringComparer now.
7628 2006-05-31  Chris Toshok  <toshok@ximian.com>
7630         * DataGridDrawingLogic.cs (FromPixelToColumn): modify this to also
7631         return (via an out parameter) the starting X of the column.
7632         (UpdateVisibleColumn): track change to FromPixelToColumn.
7633         (HitTest): add a ColumnResize case here.
7634         (DrawResizeLine): new function, probably poorly named.
7636         * DataGrid.cs (.ctor): get rid of cached_currencymgr_events.  We
7637         only need to keep one reference.
7638         (set_ListManager): same.
7639         (OnMouseDown): call HitTest instead of grid_drawing.HitTest.
7640         Also, add support for HitTestType.ColumnResize.
7641         (OnMouseMove): add column resize behavior here, and change the
7642         cursor to the correct one as we move around the datagrid.
7643         (OnMouseUp): terminate the column resize if we're resizing.
7644         (ProcessGridKey): from the MS docs, Alt-0 enters the null value
7645         for the current cell.
7646         (ConnectListManagerEvents): use cached_currencymgr.
7647         (DisconnectListManagerEvents): fill this in, using
7648         cached_currencymgr.
7649         (SetCurrentCell): remove cached_currencymgr_events handling.
7650         (SetDataMember): only call DisconnectListManagerEvents if
7651         cached_currencymgr is != null.
7652         (SetDataSource): same.
7653         (OnListManagerCurrentChanged): cached_currencymgr_events ->
7654         cached_currencymgr.
7656 2006-05-31  Jackson Harper  <jackson@ximian.com>
7658         * BindingManagerBase.cs: Remove somedebug code that creeped into
7659         SVN.
7660         * TreeNode.cs: We get the indent level dynamically right now, so
7661         don't track it as a member.
7662         * TreeNodeCollection.cs: Make sure all nodes added to the list
7663         have parents, treeviews/topnodes setup properly.
7664         - Don't attempt to track indent level.
7666 2006-05-30  Jackson Harper  <jackson@ximian.com>
7668         * BindingContext.cs: Create the currency manager tables here.
7669         This allows us to more easily create null tables (when bad data
7670         members are used), and more easily create related currency
7671         managers.
7672         * CurrencyManager.cs: All the table creation stuff is done by the
7673         binding context now.
7674         - Current should throw an exception if listposition is -1.
7675         - CancelCurrentEdit/EndCurrentEdit, do nothing if the list hasn't
7676         been bound yet.
7678 2006-05-30  Mike Kestner  <mkestner@novell.com>
7680         * ListView.cs: allow reexpansion of zero-width column headers.
7681         Fixes #78528.
7683 2006-05-28  Chris Toshok  <toshok@ximian.com>
7685         * CurrencyManager.cs (get_Current): after the late binding
7686         listposition = -1 fix, we need to guard against it here and return
7687         null, otherwise we raise an exception (which is swallowed
7688         elsewhere, and breaks datagrid databinding.)
7690 2006-05-26  Peter Dennis Bartok  <pbartok@novell.com>
7692         * MenuAPI.cs (ProcessMenuKey): We can legally get msg types other
7693           than WM_SYSKEY, don't throw if get something unexpected (#78507)
7695 2006-05-26  Jackson Harper  <jackson@ximian.com>
7697         * ControlPaint.cs:
7698         * ThemeWin32Classic.cs: For color comparisons just use the ARGB
7699         values, it's faster and it's all we care about (we don't care if
7700         the names aren't equal).
7701         * KeyboardLayouts.cs: Eliminate some dead code.
7702         - Lazy init things
7703         * X11Keyboard.cs: Lazy init keyboard detection.
7704         - Cleanup access modifiers a little.
7706 2006-05-26  Peter Dennis Bartok  <pbartok@novell.com>
7708         * XplatUIX11.cs: Once again, attempting to get layout just right.
7710 2006-05-26  Peter Dennis Bartok  <pbartok@novell.com> 
7712         * LinkLabel.cs (CreateLinkPieces): Use MeasureString to calculate
7713           the sizes of each link section, that will result in sizes that
7714           match DrawString's layout (Fixes #78391)
7716 2006-05-27  Alexander Olk  <alex.olk@googlemail.com>
7718         * FileDialog.cs: If AddExtension property is true autocomplete the
7719           extensions in SaveFileDialog correctly. Fixes bug #78453.
7720           Set MyNetwork and MyComputer to "C:\" for windows. This should
7721           fix part 8 of bug #78446 for now.
7723 2006-05-26  Chris Toshok  <toshok@ximian.com>
7725         * DataGrid.cs (ColumnStartedEditing): fill these in.  for now just
7726         invalidate the current row header if we need to, but presumably
7727         we'll invalidate the row corrsponding to the bounds or
7728         editingControl.
7729         (GridHScrolled): switch back to this method, as it's part of the
7730         public api.  *sigh*.
7731         (GridVScrolled): same.
7732         (OnMouseWheel): hack up something that more or less works.  Call
7733         GridHScrolled/GridVScrolled directly, instead of duplicating much
7734         of their code here.
7735         (EnsureCellVisibility): reinstate a bunch of this code, since we
7736         can't just set the scrollbar Value and expect to do all the work
7737         in the ValueChanged handler.  Also, Call Update() after scrolling
7738         in one direction so the other XplatX11.ScrollWindow call has the
7739         proper stuff in the proper places.
7740         (EditCell): set is_editing to true before calling .Edit.
7742         * DataGridTextBox.cs (set_IsInEditOrNavigateMode): just set it,
7743         don't bother comparing first.
7744         (OnKeyPress): call grid.ColumnStartedEditing before calling
7745         base.OnKeyPress.  this will set is_changing and invalidate the row
7746         header if necessary.
7747         (ProcessKeyMessage): for WM_CHAR messages, call
7748         ProcessKeyEventArgs directly.  swallow anything other than WM_CHAR
7749         and WM_KEYDOWN.
7750         
7751         * DataGridBoolColumn.cs (Edit): don't set is_editing to true here.
7752         it's done in the DataGrid.
7753         (NextState): call grid.ColumnStartedEditing, which takes care of
7754         invalidating the row header (and setting is_changing).
7756         * DataGridTextBoxColumn.cs (Edit): don't set is_editing to true
7757         here.  it's done in the DataGrid.
7759 2006-05-25 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7761         * Control.cs: allow changing the cursor when the mouse position is
7762         out of bounds but Capture is set.
7763         * LinkLabel.cs: handle the case when the mouse button is pressed on the
7764         linklabel but released somewhere else.
7766 2006-05-25  Jackson Harper  <jackson@ximian.com>
7768         * TreeView.cs: When we get focus if there is no selected node make
7769         it the top node
7770         - Remove some uneeded setup code from Draw.
7771         * TreeNodeCollection.cs: If the tree doesn't have a top node when
7772         a new node is inserted make the new node the top.
7773         * XplatUIX11.cs:
7774         * Timer.cs: Use Utc time so that no local time zone stuff needs to
7775         be used (should be faster).
7776         
7777 2006-05-25  Chris Toshok  <toshok@ximian.com>
7779         * DataGrid.cs (EnsureCellVisibility): remove some code to fix a
7780         problem with the last commit.
7782 2006-05-25  Chris Toshok  <toshok@ximian.com>
7784         * DataGridTextBoxColumn.cs (ReleaseHostedControl): turns out we do
7785         need the invalidate call here, while scrolling right-to-left via
7786         the left arrow key (i.e. moving the editing cell while scrolling).
7788         * DataGrid.cs (.ctor): remove the initialization of
7789         ctrl_pressed/shift_pressed.  We no longer track them using key
7790         up/down handlers, but by using Control.ModifierKeys.  Also, switch
7791         to using ValueChanged handlers on the scrollbars instead of
7792         Scrolled event handlers.  This simplifies a bunch of the scrolling
7793         code.
7794         (GridHValueChanged): rename from GridHScrolled, and change it to
7795         work with the new event args.
7796         (GridVValueChanged): same.
7797         (OnMouseDown): initialize ctrl_pressed/shift_pressed here.
7798         (OnMouseWheel): actually scroll the datagrid.  Don't change the
7799         selected cell.
7800         (ProcessGridKey): correct all the keyboard navigation stuff I
7801         could find.  Ctrl up/down/left/right/home/end work now.
7802         (EnsureCellVisibility): correct method name spelling.  Also,
7803         simplify this a touch by not explicitly calling the
7804         ScrollToRow/ScrollToColumnInPixels methods.  We just set the
7805         scrollbar value.
7806         (OnKeyUpDG): no need for this method now.
7807         
7808 2006-05-25 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7810         * LinkLabel.cs: display the OverrideCursor when hovering the label.
7811         Fixes bug #78392.
7813 2006-05-25  Chris Toshok  <toshok@ximian.com>
7815         * ThemeWin32Classic.cs: fix datagrid clipping problems caused by
7816         r61019.
7818 2006-05-25  Peter Dennis Bartok  <pbartok@novell.com> 
7820         * Application.cs: Moved setting of is_modal and closing to before
7821           we create the control, to allow the event handlers called as a
7822           result of creation affect closing. Also removed Gonzalo's previous
7823           change to setting DialogResult, the behaviour has been moved to 
7824           Form.ShowDialog()
7825         * Form.cs: 
7826           - ShowDialog(): Removed explicit creation of the form, let RunLoop
7827             handle it instead
7828           - ShowDialog(): If no dialog result is set, we need to return Cancel
7829           - WM_CLOSE: Fire Closing/Closed events, and reset dialog result if
7830             the close is cancelled
7832 2006-05-25  Jackson Harper  <jackson@ximian.com>
7834         * StatusBar.cs: We only need to update the sizes of the other
7835         panels when we have auto size contents.  Also we are only updating
7836         the contents of the panel, not the borders, so compensate for the
7837         border width (TODO: get this width from the theme somehow).
7838         * TreeView.cs: Scrollable is true by default
7839         - Use invalidate instead of refresh where needed
7840         - Factor the scrollable value into scrollbar updating
7841         - Update the scrollbars if the Scrollable property is altered
7842         - Update the selected node if its ImageIndex is changed
7843         - Handle null nodes in UpdateNode (mainly so we don't have to
7844         check if selected is null when updating it
7845         - Fix VisibleCount to use the ViewportRectangle so that scrollbars
7846         are factored into the visible count
7847         - Use VisibleCount for clarity in the code
7848         - When the font is changed we need to recurse through all the
7849         nodes and invalidate their sizes
7850         
7851 2006-05-25 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7853         * Application.cs: set the DialogResult to fixed when the main form is
7854         hidden or destroyed while being modal.
7856 2006-05-25  Miguel de Icaza  <miguel@novell.com>
7858         * Theme.cs: Use Tangoified messagebox icons. 
7860         (GetSizedResourceImage): Also cope with width = 0 and do not
7861         trigger a warning in that case (0 means "give me your icon from
7862         the resouce, no special size needed).
7864 2006-05-25  Peter Dennis Bartok  <pbartok@novell.com> 
7866         * Application.cs: Leave runloop if the the main modal form is 
7867           hidden (fixes #78484)
7869 2006-05-25  Atsushi Enomoto  <atsushi@ximian.com>
7871         * BindingContext.cs : reject null datasource in Contains() and
7872           Item[].
7873         * CurrencyManager.cs : check data_member validity when data_source
7874           is dataset. When it is late binding, the initial position is -1.
7876 2006-05-24  Jackson Harper  <jackson@ximian.com>
7878         * TreeNodeCollection.cs: Dont't recalculate the visible order on
7879         inserted nodes that aren't visible.  This changes the
7880         max_visible_order which confuses scrollbar settings.
7881         - Use the enumerator to get the prev node instead of duplicating
7882         code.
7883         * TreeView.cs: Use new method for setting scrollbar values
7884         - Don't set the bounds every time the scrollbar is updated
7885         - When updating below the root node use an invalidate instead of a
7886         refresh to prevent the child controls (scrollbars) from being
7887         refreshed. (UpdateBelow still needs to be reworked anyways).
7888         - Reenable SetBottom now that visible orders are set correctly,
7889         added some debug code incase we ever get bad values there again.
7890         - Set the scrollbar max to 2 less then the max value, this
7891         compensates for the max value being one above the node count, and
7892         for scrollbars adding one extra "notch".
7893         - When drawing image nodes if there is an imagelist we draw the
7894         first image in the list if the supplied image index is out of the
7895         image list's bounds.
7896         
7897 2006-05-24  Peter Dennis Bartok  <pbartok@novell.com> 
7899         * XplatUIX11.cs: Don't blindly cache hwnd.ClientRect, reset it when 
7900           we receive a size change from the WM (Fixes #78503)
7902 2006-05-24  Peter Dennis Bartok  <pbartok@novell.com>
7904         * XplatUIWin32.cs, XplatUIX11.cs: Refresh when setting the Clip 
7905           rectangle (Fixes #78501)
7907 2006-05-24  Peter Dennis Bartok  <pbartok@novell.com> 
7909         * ButtonBase.cs: 
7910           - Fixed MouseUp, MouseDown and MouseMove to treat mouseevent.Button 
7911             as a bitfield.
7912           - Fixed MouseMove to no longer switch pressed state unless the left
7913             mouse button is pressed. Atsushi provided the original patch (#78485)
7914           
7915 2006-05-24  Jackson Harper  <jackson@ximian.com>
7917         * ScrollBar.cs: New internal methods that allow us to change a
7918         couple values on the scrollbar (the most common case is maximum
7919         and large change) without getting multiple invalidates.
7921 2006-05-24  Chris Toshok  <toshok@ximian.com>
7923         * DataGridBoolColumn.cs (Abort): revert back to the saved setting.
7924         (Edit): save off the original state in oldState, and set
7925         grid.is_editing to true.
7926         (OnKeyDown): abort editing if escape is pressed.  also, call
7927         NextState if space is pressed.
7928         (OnMouseDown): call NextState.
7929         (NextState): factor out shared code from OnKeyDown and OnMouseDown
7930         here.  Also, only invalidate the row header once (on the initial
7931         is_changing switch) to save on redraws.
7933 2006-05-24  Chris Toshok  <toshok@ximian.com>
7935         * DataGridTextBoxColumn.cs (Commit): only call SetColumnValueAtRow
7936         if the value in the cell is different than it was before.  This
7937         keeps us from triggering a layout when we move around a datarid
7938         with a highlighted cell.
7939         (Edit): suspend layout when creating/positining the text box, and
7940         resume passing false so we don't ever actually re-layout.
7941         (ReleaseHostedControl): same.
7942         (EnsureTextBox): reformat slightly, and set WordWrap to false.
7944         * DataGridTextBox.cs (ProcessKeyMessage): it's not true that all
7945         control-key sequences should go to the datagrid - remove that
7946         lock.  Also, modify the conditions under which we move between
7947         cells when moving the cursor within a cell, and remove the "this"
7948         and "base" from field accesses.  We weren't even consistent, given
7949         they all were in the base class.
7951 2006-05-24  Atsushi Enomoto  <atsushi@ximian.com>
7953         * Binding.cs : (.ctor)
7954           An obvious NRE fix for BindingTest.CtorNullTest().
7956 2006-05-23  Chris Toshok  <toshok@ximian.com>
7958         * TextBoxBase.cs (get_Text): don't add a trailing newline, add
7959         them between lines.  This fixes some quirks editing cells in the
7960         datagrid.
7962 2006-05-23  Jackson Harper  <jackson@ximian.com>
7964         * TreeView.cs: Use begin/end update when doing expand/collapse all
7965         so that we don't get flicker on the scrollbar.
7967 2006-05-23  Jackson Harper  <jackson@ximian.com>
7969         * TreeNode.cs: Bounds are computed 'on the fly' now.  This allows
7970         treenode calculations to be independant of the painting code. To
7971         do this nodes track a visible order which is calculated by the
7972         treeview.
7973         - Call new methods for expanding/collapsing nodes.  These methods
7974         use scrollwindow so we don't have to update everything below the
7975         node.
7976         * TreeView.cs: Refactored drawing and scrolling code.  We don't
7977         need to update nodes when drawing anymore or calculate scrollbar
7978         stuff.
7979         - Added new methods for expanding/collapsing nodes. These methods
7980         use ScrollWindow so as to not have to redraw all the nodes below.
7981         * TreeNodeCollection.cs: Recalc visible order and scrollbars when
7982         we add/remove nodes or sort.
7983         - Handle removing the selected and the top node properly.
7985 2006-05-23  Chris Toshok  <toshok@ximian.com>
7987         * DataGridTextBoxColumn.cs (Edit): set grid.is_editing to true.
7988         maybe this should actually happen in the datagrid code?
7989         (EndEdit): no need to invalidate anything, given that
7990         ReleaseHostedControl causes the datagrid to relayout, which
7991         invalidates everything anyway.
7993         * DataGrid.cs (set_CurrentCell): remove duplicate check (it's also
7994         in SetCurrentCell).
7995         (set_SelectionBackColor): call InvalidateSelection instead of
7996         Refresh.
7997         (set_SelectionForeColor): same.
7998         (BeginEdit): Flesh this out a bit.
7999         (CancelEditing): only do any of this if we're editing/adding.
8000         (EndEdit): same.
8001         (OnMouseDown): there's no need to cancel editing here, it's done
8002         in SetCurrentCell.
8003         (SetCurrentCell): only invalidate the current row header if it's a
8004         different row than the new one.
8005         (ShiftSelection): fix this to work like MS does.
8006         (ResetSelection): factor out the invalidation of selected_rows to
8007         InvalidateSelection.
8008         (SetDataSource): cancel any editing that's going on.
8010         * DataGridColumnStyle.cs
8011         (IDataGridColumnStyleEditingNotificationService.ColumnStartedEditing):
8012         call the non-interface version.
8014         * ThemeWin32Classic.cs (DataGridPaintColumsHdrs): intersect the
8015         header rectangle with the clip rectangle so we don't redraw the
8016         entire header for just a small area.  Gets rid of the last flicker
8017         when horizontally scrolling.
8018         (DataGridPaintRow): same.
8020 2006-05-23  Mike Kestner  <mkestner@novell.com>
8022         * ListViewItem.cs: remove size for line hack from LargeIcon layout.
8023         * ThemeWin32Classic.cs: don't draw line.  it's really the top of a
8024         poorly placed checkbox on the MS control.  Fixes Alex's unfiled
8025         Critical bug report.
8027 2006-05-23  Peter Dennis Bartok  <pbartok@novell.com> 
8029         * PictureBox.cs: Fixed broken ControlStyles. Unit test no longer fails,
8030           and this fixes #78493
8032 2006-05-23  Miguel de Icaza  <miguel@novell.com>
8034         * Theme.cs (GetSizedResourceImage): Scale images if the proper
8035         size is not found.  
8036         
8037         * FileDialog.cs: Do not change the background for the side bar as
8038         it wont work nicely with the theme, and also reduces the artifacts
8039         in rendering the icons (which I want to fix too).
8041         * MimeIcon.cs (ResourceImageLoader): Load images from assembly
8042         resources, not resgen resources. 
8044         (PlatformDefaultHandler): Pull images using the new API.
8046 2006-05-23  Peter Dennis Bartok  <pbartok@novell.com> 
8048         * Hwnd.cs (Dispose): Remove any pending exposures. XEventQueue holds
8049           a reference to the hwnd and will not remove it unless there are
8050           no pending exposures (fixes #78341)
8051         * XplatUI.cs: Improved debug
8053 2006-05-23  Atsushi Enomoto  <atsushi@ximian.com>
8055         * MenuAPI.cs : don't handle OnClick event when it was not the left
8056           button. Fixed bug #78487.
8058 2006-05-23  Mike Kestner  <mkestner@novell.com>
8060         * MenuAPI.cs: fix placement of submenus for multi-row menu bars, and
8061         prefer submenus to the top menu for item lookup, to avoid popping down
8062         top-row items.
8064 2006-05-23  Alexander Olk  <alex.olk@googlemail.com>
8066         * ThemeWin32Classic.cs: Rewrote CPCPDrawScrollButton to drop
8067           Graphics.FillRectangle as the visual results are really bad (even
8068           on win). We now draw perfect arrows (and perfect shadows when the
8069           scrollbar is disabled). Simplified CPDrawGrid. CPDrawGrid now uses
8070           Pen.DashPattern to draw the dots of each line.
8072 2006-05-22  Alexander Olk  <alex.olk@googlemail.com>
8074         * FileDialog.cs: Update the filename combobox when navigating through
8075           the ListView with the cursor keys. Fixes part 7 of bug #78446.
8077 2006-05-22  Mike Kestner  <mkestner@novell.com>
8079         * ListView.cs: raise SelectedIndexChanged on keyboard selection.
8080         Fixes #78463.
8082 2006-05-22  Mike Kestner  <mkestner@novell.com>
8084         * ComboBox.cs: Refresh in EndUpdate to pick up all the dropped Paint
8085         requests. Fix a misspelled parameter and a copy paste exception error
8086         in Select.
8088 2006-05-22  Peter Dennis Bartok  <pbartok@novell.com> 
8090         * ThemeWin32Classic.cs: Changed DefaultFont emSize from 8.25 to 8
8091           to get the same width/height (5/13) on X11 as the default font has on
8092           win32. This means that our DefaultFont emSize is smaller than the 
8093           the MS SWF equivalent (even thought the width/height stays the same)
8095 2006-05-20  Jackson Harper  <jackson@ximian.com>
8097         * MdiClient.cs:
8098         * MdiWindowManager.cs:
8099         * InternalWindowManager.cs: Make sure to use the border width from
8100         the theme.
8102 2006-05-20  Jordi Mas i Hernandez <jordimash@gmail.com>
8104         * PrintDialog.cs: Implements printer details
8106 2006-05-19  Alexander Olk  <alex.olk@googlemail.com>
8108         * FileDialog.cs: Added focus handling for PopupButtonPanel.
8109           Fixes part 1 and 2 of bug #78446
8111 2006-05-19  Peter Dennis Bartok  <pbartok@novell.com> 
8113         * XplatUIX11.cs (SetWindowPos): Recalculate client area size on resizes
8114           instead of sticking to the first ever calculated value
8116 2006-05-19  Mike Kestner  <mkestner@novell.com>
8118         * ComboBox.cs: fix mouse motion selection to use MousePosition and
8119         PointToClient, since Capture is set. Fixes #78344.
8121 2006-05-19  Mike Kestner  <mkestner@novell.com>
8123         * ListView.cs: match MS behavior in Details view where items are not
8124         drawn if Columns.Count == 0. 
8125         * ThemeWin32Classic.cs: only highlight ListView selection if focused.
8126         Use a separate pen to draw the check, since changing the width affects
8127         the box as well.  Fixes #78454.
8129 2006-05-18  Miguel de Icaza  <miguel@novell.com>
8131         * ListView.cs: ArgumentOutOfRangeException, single versions of the
8132         exception should throw the name of the invalid argument.
8134         * FileDialog.cs (OnClickOpenSaveButton): Avoid crash in open if
8135         there are no files listed. 
8137 2006-05-18  Jackson Harper  <jackson@ximian.com>
8139         * ThemeWin32Classic.cs: Don't use endcaps, they mess the drawing
8140         up.
8142 2006-05-18  Peter Dennis Bartok  <pbartok@novell.com> 
8144         * Control.cs: Brought back our old UpdateZOrder method as a private
8145           function and switched our calls from UpdateZOrder to the new one.
8146           This fixes the Paint.Net canvas disappearing bug.
8148 2006-05-18  Jackson Harper  <jackson@ximian.com>
8150         * Theme.cs:
8151         * ThemeWin32Classic.cs:
8152         * InternalWindowManager.cs: Move the drawing into the theme,
8153         expose everything the theme should need from the window manager.
8155 2006-05-18  Peter Dennis Bartok  <pbartok@novell.com>
8157         * XplatUIX11.cs (DefWndProc): WM_SETCURSOR: Assign the return value 
8158           from the call to NativeWindow to avoid walking up the parent chain
8159           further than needed (speeds up setting cursors and avoids setting
8160           the wrong cursor if a parent has another cursor defined)
8161         * Cursor.cs: When loading an icon as cursor, MS uses the center of
8162           the icon as hotspot, not what's contained as hotspot in the icon
8163           file. This fixes the perceived drawing offset seen with Paint.Net
8164         
8165 2006-05-18  Peter Dennis Bartok  <pbartok@novell.com> 
8167         * XplatUIX11.cs: 
8168           - Store the calculated rectangle in Hwnd object and use it when 
8169             setting the client size
8170           - Force Toolwindows to always be type Dock, to ensure they're on top
8172 2006-05-18  Mike Kestner  <mkestner@novell.com>
8174         * ComboBox.cs: first pass at ComboBox rework.  Layout is more
8175         consistent with MS positioning.  IntegralHeight, ItemHeight, Sizing.
8176         Correctly initialize textcontrol and ListBox on DropDownStyle changes. 
8177         Substantial refactoring to remove confusing nested classes. Coding
8178         standard and Get+Set->property refactorings.  Shift to index based
8179         highlighting in ComboListBox instead of constantly using IndexOf and
8180         Items[]. Add invalidations on resize for DropDownList to fix ugliness
8181         in FileDialog growth.  Draw borders manually since Simple mode needs
8182         to look like two independent controls.  Make listbox border
8183         conditional to DropDownStyle.  Improved OwnerDraw support.
8185 2006-05-18  Sebastien Pouliot  <sebastien@ximian.com>
8187         * PaintEventArgs.cs: For 2.0, check for a null Graphics in the .ctor. 
8188         Don't set the disposed graphics to null, so we can throw the "right"
8189         exception if the graphics is reused later (added a flag to avoid 
8190         double disposing). Some behaviours are different under 2.0 and are
8191         filled under bug #78448.
8193 2006-05-18  Peter Dennis Bartok  <pbartok@novell.com>
8195         * Control.cs: When double-buffering is enabled, we need to reset
8196           our graphics context between paint calls. Otherwise, any 
8197           transformations and other alterations on the context will 
8198           become cumulative (#77734)
8200 2006-05-18  Mike Kestner  <mkestner@novell.com>
8202         * ListView.cs: do focused item selection like MS on clicks. 
8203         Rework focus handling for ItemControl so LostFocus invalidates as
8204         well.
8205         * ThemeWin32Classic.cs: only draw focus rectangle for ListViewItems if
8206         the ListView ItemControl has focus.
8208 2006-05-17  Peter Dennis Bartok  <pbartok@novell.com>
8210         * XplatUIX11.cs: If client_window ends up being width or height zero
8211           due to border settings, move it off window inside whole_window (#78433)
8213 2006-05-17  Alexander Olk  <alex.olk@googlemail.com>
8215         * Mime.cs: Shrink the mime file cache correctly.
8217 2006-05-17  Alexander Olk  <alex.olk@googlemail.com>
8219         * ThemeWin32Classic.cs: Readded button focus drawing code. (#78429)
8221 2006-05-16  Peter Dennis Bartok  <pbartok@novell.com>
8223         * XplatUIX11.cs (AddExpose): More sanity checks
8225 2006-05-16  Peter Dennis Bartok  <pbartok@novell.com> 
8227         * XplatUIX11.cs:
8228           - AddExpose: Don't add expose ranges outside the size of our
8229             window
8230           - Cast opacity values to Int32 to avoid crashes with certain
8231             values
8232           - Added disabled code paths that protect against illegal cross-
8233             thread painting (Developers.exe)
8235 2006-05-16  Peter Dennis Bartok  <pbartok@novell.com>
8237         * ProgressBar.cs: Invalidate the control when it's resized
8238           since block size is based on control size. (#78388)
8240 2006-05-16  Miguel de Icaza  <miguel@novell.com>
8242         * DataGrid.cs (SetDataBinding): per the discussion on irc, instead
8243         of setting the incoming argument to the "reset" value, we set the
8244         this.datamember to string.empty (before we were invalidating the
8245         incoming data).   
8247         Fixes 78420
8249 2006-05-16  Peter Dennis Bartok  <pbartok@novell.com> 
8251         * Form.cs: Only apply transparency settings after the form
8252           is created. (Fixes #77800)
8254 2006-05-16  Peter Dennis Bartok  <pbartok@novell.com>
8256         * ApplicationContext.cs: Grab the HandleDestroyed event so
8257           we know when to fire OnMainFormClosed 
8259 2006-05-16  Peter Dennis Bartok  <pbartok@novell.com> 
8261         * Application.cs: Introduced sub-class to allow tracking of
8262           threads and centralized triggering of the event mess for
8263           ThreadExit, AppExit, etc..  (#76156)
8265 2006-05-16  Alexander Olk  <alex.olk@googlemail.com>
8267         * MimeIcon.cs:
8268           - Do not return a null icon index value for a mime subclass.
8269             Instead try the main mime type class too.
8270           - Seems that some newer distributions don't have a link to some
8271             gnome default icons anymore. So check the default gnome dir too.
8272           
8274 2006-05-16  Jackson Harper  <jackson@ximian.com>
8276         * MdiClient.cs: Don't paint the parent background image if we have
8277         our own background image.
8279 2006-05-16  Peter Dennis Bartok  <pbartok@novell.com> 
8281         * Control.cs:
8282           - PerformLayout: Do not shrink space filled by DockStyle.Fill
8283             controls, all filled controls are supposed to overlap (#78080)
8284           - UpdateZOrder is supposed to update the control's z-order in the
8285             parent's z-order chain. Fixed to behave like that
8286           - BringToFront: Removed obsolete code
8287           - SendToBack: Simplyfied
8288           - SetChildIndex: Trigger layout calculations when Z-order changes
8289             since layout is done by z-order
8291 2006-05-16  Chris Toshok  <toshok@ximian.com>
8293         [ fixes bug #78410 ]
8294         * DataGrid.cs (set_AlternatingBackColor): use
8295         grid_drawing.InvalidateCells instead of Refresh().
8296         (set_BackColor): call grid_drawing.InvalidateCells.
8297         (set_BackgroundColor): use Invalidate instead of Refresh.
8299         * DataGridDrawingLogic.cs (InvalidateCells): new function, just
8300         invalidate the cell area.
8302 2006-05-15  Chris Toshok  <toshok@ximian.com>
8304         [ fixes bug #78011 ]
8305         * ThemeWin32Classic.cs (DataGridPaintRows): pass the clip argument
8306         on to DataGridPaintRow.
8307         (DataGridPaintRow): take a clip argument, and only draw the cells
8308         which intersect it.  same with the not_usedarea.
8310         * Theme.cs (DataGridPaintRow) add @clip parameter.
8312         * DataGrid.cs (ScrollToColumnInPixels): simplify, use
8313         XplatUI.ScrollWindow.
8314         (ScrollToRow): same.
8316         * DataGridDrawingLogic.cs (UpdateVisibleColumn): fix corner case
8317         with last column which was causing a gray swath to appear with the
8318         XplatUI.ScrollWindow code.
8320 2006-05-15  Chris Toshok  <toshok@ximian.com>
8322         * ListBox.cs (HorizontalScrollEvent): in the non-multicolumn case,
8323         use XplatUI.ScrollWindow.
8324         (VerticalScrollEvent): use XplatUI.ScrollWindow.
8326 2006-05-15  Peter Dennis Bartok  <pbartok@novell.com> 
8328         * TextBoxBase.cs: Added handling of middle-button paste for X11. (#78375)
8330 2006-05-15  Peter Dennis Bartok  <pbartok@novell.com>
8332         * Cursors.cs: For X11, read NWSE and NESW cursors from our resource
8333           file since there are no equivalent X11 cursors
8335 2006-05-15  Atsushi Enomoto  <atsushi@ximian.com>
8337         * MonthCalendar.cs : DateTimePicker should reflect selected date
8338           on mouse*up*, not mouse*down*. Fixed originally reported part of
8339           bug #76474.
8341 2006-05-15  Atsushi Enomoto  <atsushi@ximian.com>
8343         * TabControl.cs : When argument index is equal or more than tab
8344           count, just ignore. Fixed bug #78395.
8346 2006-05-15  Peter Dennis Bartok  <pbartok@novell.com>
8348         * Control.cs: Dispose all child controls when control is diposed (#78394)
8350 2006-05-14  Alexander Olk  <alex.olk@googlemail.com>
8352         * ColorDialog.cs: Finally it is possible to select the color with
8353           the text boxes
8355 2006-05-14  Alexander Olk  <alex.olk@googlemail.com>
8357         * PrintDialog.cs: Fix typo
8359 2006-05-14  Alexander Olk  <alex.olk@googlemail.com>
8361         * PrintDialog.cs: PrintDialog is not resizable
8362         * ThemeWin32Classic.cs: Draw non links in LinkLabel with the correct
8363           color. Made some ToolBar drawing methods protected virtual.
8365 2006-05-13  Jordi Mas i Hernandez <jordimash@gmail.com>
8367         * PrintDialog.cs: Implementation of the PrintDialog
8369 2006-05-12  Chris Toshok  <toshok@ximian.com>
8371         * ScrollBar.cs (set_Value): don't use Dirty/Invalidate to move the
8372         thumb, instead use MoveThumb.  This has the side effect of making
8373         most of the other thumb moving machinery use MoveThumb as well.
8374         (OnHandleCreated): pass false for @dirty to UpdateThumbPos, as we
8375         need to actually invalidate the rectangle where the new thumb will
8376         go.
8377         (MoveThumb): use XplatUI.ScrollWindow to move the thumb around.
8378         We force an Update() after, so it's not as fast as it could be,
8379         but at least there's zero flicker and no droppings.
8380         (OnMouseMoveSB): in the thumb dragging case, use MoveThumb.
8381         (UpdateThumbPos): add another argument (dirty), which says whether
8382         or not to calculate/add dirty regions which we later invalidate.
8383         For cases where we know we're going to use MoveThumb, we pass
8384         false for this.  Otherwise, pass true.
8386 2006-05-12  Jackson Harper  <jackson@ximian.com>
8388         * ThemeWin32Class.cs: Fixes for alignment and icon rendering in
8389         the status bar.
8390         
8391 2006-05-12  Peter Dennis Bartok  <pbartok@novell.com>
8393         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs: Added new SetClipRegion
8394           and GetClipRegion methods and UserClipWontExposeParent property.
8395         * XplatUIWin32.cs: Implemented SetClipRegion/GetClipRegion methods,
8396           overriding UserClipWontExposeParent property, setting to false, since
8397           Win32 handles the required expose messages to draw our clipped parent
8398           areas internally
8399         * XplatUIX11.cs: Implemented SetClipRegion and GetClipRegion; updated
8400           PaintEventStart to set the user clip region if set.
8401         * Control.cs: 
8402           - Now internally tracking the Region for the control since we need to
8403             store it if the handle is not yet created and only set it when it
8404             becomes created. Before setting the region forced handle creation
8405           - Added code to draw the parents underneath a user-clipped region
8406         * Hwnd.cs: Added UserClip property
8408 2006-05-12  Chris Toshok  <toshok@ximian.com>
8410         * ScrollBar.cs (set_LargeChange): Refresh() -> InvalidateDirty()
8411         (set_Maximum): same.
8412         (set_Minimum): same.
8413         (set_SmallChange): same.
8414         (OnMouseUpSB): remove the call to refresh when releasing the
8415         thumb.  We shouldn't need it.
8416         
8417 2006-05-12  Miguel de Icaza  <miguel@novell.com>
8419         * StatusBar.cs (UpdatePanel): If the panel being refreshes has the
8420         AutoSize set to None, we do not need to relayout everything, we
8421         just need to invalidate the current region.
8423         (Draw): Do not draw the entire ClientArea, just redraw the
8424         clip area being passed.
8426         * MdiClient.cs: Make MdiClient constructor with the Form argument
8427         internal. 
8429 2006-05-12  Jackson Harper  <jackson@ximian.com>
8431         * ThemeWin32Classic.cs (DrawToolBar): Flat toolbars get their
8432         parents background image,  but strangely not their own.
8433         - (DrawStatusBarPanel): Take into account horizontal alignment
8434         when drawing the strings and icons.
8436 2006-05-12  Mike Kestner  <mkestner@novell.com>
8438         * ListBox.cs: avoid invalidations for focus when the collection is
8439         empty. 
8441 2006-05-12  Chris Toshok  <toshok@ximian.com>
8443         * ScrollBar.cs (OnMouseMoveSB): when dragging the thumb, don't
8444         invalidate the entire thumb area.  Call InvalidateDirty which
8445         limits the redraw to the thumb itself and surrounding pixels.
8447         * XplatUIX11.cs (ScrollWindow): optimize copying.
8448         
8449 2006-05-12  Chris Toshok  <toshok@ximian.com>
8451         * DataGridDrawingLogic.cs: make CalcGridAreas non-reentrant.
8452         Figure out the positioning/layout in a single pass instead of
8453         multiple recursive invocations.  Speeds up the initial display of
8454         the data grid.  Also, make many things private that were
8455         originally public but unused outside this class.
8457 2006-05-11  Jackson Harper  <jackson@ximian.com>
8459         * MdiClient.cs: Improved layout code.
8461 2006-05-11  Jonathan Chambers  <jonathan.chambers@ansys.com>
8463         * PropertyGrid.cs : Only check GetPropertiesSupported for properties,
8464           not SelectedObject.
8466 2006-05-11  Chris Toshok  <toshok@ximian.com>
8468         * Hwnd.cs (Invalid): don't start off with Rectangle.Empty, as
8469         union of that will always be {0,0,width,height}.
8471 2006-05-11  Jackson Harper  <jackson@ximian.com>
8473         * Form.cs: Match MS's DefaultSize for forms (they must have
8474         changed the size in sp2).
8476 2006-05-11  Atsushi Enomoto  <atsushi@ximian.com>
8478         * TextBoxBase.cs : implement CTRL+A (select all). Fixed bug #78368.
8480 2006-05-11  Atsushi Enomoto  <atsushi@ximian.com>
8482         * TextControl.cs : Fixed bug #78109. This incorrect position
8483           comparison caused crash on automatic line split.
8484         * TextBoxBase.cs : reduce duplicate code.
8486 2006-05-10  Jackson Harper  <jackson@ximian.com>
8488         * MdiClient.cs: Active form is only sent to the back when using
8489         the Next form functionality, when a form is clicked the current
8490         active shouldn't be sent to the back.
8491         - Layout the mdi windows when the container is first made visible.
8492         * Form.cs: Give the MdiClient a ref to the containing form when we
8493         create it.
8494         
8495 2006-05-10  Atsushi Enomoto  <atsushi@ximian.com>
8497         * LinkLabel.cs : link_font could be uninitialized, so populate one
8498           before actual use. Fixed bug #78340.
8500 2006-05-10  Atsushi Enomoto  <atsushi@ximian.com>
8502         * XplatUIX11.cs : clipboard format native value is IntPtr.
8503           Fixed bug #78283.
8505 2006-05-10  Peter Dennis Bartok  <pbartok@novell.com>
8507         * Control.cs: 
8508           - Instead of showing context menus directly we send WM_CONTEXTMENU, 
8509             which is passed up the parent chain by DefWndProc
8510           - We now handle WM_CONTEXTMENU to display any menu, or pass it 
8511             to DefWndProc (#77956)
8512         * XplatUIX11.cs: Added handling of WM_CONTEXTMENU (pass up) to DefWndProc
8514 2006-05-10  Jackson Harper  <jackson@ximian.com>
8516         * MdiClient.cs: We need to remove the controls from the mdi
8517         collection, when we close the window.
8518         * MdiWindowManager.cs: Special handling of closing mdi windows.
8519         * InternalWindowManager.cs: Make the close method virtual so the
8520         mdi window manager can handle it specially.
8522 2006-05-10  Jordi Mas i Hernandez <jordimash@gmail.com>
8524         * DataGrid.cs:
8525           - Recalculate grid when the data source has changed
8526           - Matches styles provided by user from all data sources types
8527         * DataGridTableStyle.cs: For columns that provided by the user set the
8528         with the preferred value is there was unassigned.
8529         * CurrencyManager.cs: throw OnItemChanged event
8531 2006-05-10  Peter Dennis Bartok  <pbartok@novell.com> 
8533         * PictureBox.cs: Don't animate until handle is created. Start animation
8534           when handle is created.
8536 2006-05-10  Peter Dennis Bartok  <pbartok@novell.com>
8538         * XplatUIX11.cs, Hwnd.cs: Adopted Mike's patch from #77979 to match
8539           current codebase.
8540         * XEventQueue.cs: We don't need to provide the extra info
8542 2006-05-10  Jackson Harper  <jackson@ximian.com>
8544         * MdiClient.cs: If the mdi clients parent form has a background
8545         image set, we draw that background image for the mdi area's
8546         background.
8548 2006-05-10  Peter Dennis Bartok  <pbartok@novell.com>
8550         * TextBoxBase.cs: Set IBeam cursor (#78347)
8552 2006-05-10  Mike Kestner  <mkestner@novell.com>
8554         * ToolBar.cs: fix some text padding issues with ButtonSize
8555         calculation. Update the default size to match MS documentation.
8556         * ToolBarButton.cs: use ToolBar.ButtonSize for layout of unspecified
8557         button size. Fixes #78296.
8559 2006-05-10  Mike Kestner  <mkestner@novell.com>
8561         * ListBox.cs: use is_visible for scrollbar positioning in case the
8562         control isn't on screen yet.  Fix off by one with Right vs Width
8563         usage.  Update Scrollbars in SetBoundsCore. Fixes #78188 and #78258.
8564         
8565 2006-05-10  Jackson Harper  <jackson@ximian.com>
8567         * X11Dnd.cs: Drop to a control with another control on top of it.
8568         * ToolBar.cs: Work on a copy of the buttons list, so that it can
8569         be modified in click handlers. TODO: Look for similar problems in
8570         other controls.
8572 2006-05-09  Jackson Harper  <jackson@ximian.com>
8574         * Form.cs: Window managers need the old window state when setting
8575         window state now.
8576         * InternalWindowManager.cs: Allow the base mdi window manager to
8577         handle more of the MDI only stuff (like maximize buttons).
8578         * MdiWindowManager.cs: Fix some snafus in changing the window
8579         state.  Add all the menu functionality, for both popup and
8580         maximized menus.
8581         * MdiClient.cs: When a new form is selected the currently
8582         activated form is sent to the back, this matches MS.
8583         - Implement a new method to activate the next mdi child window.
8585 2006-05-08  Peter Dennis Bartok  <pbartok@novell.com>
8587         * Control.cs: 
8588           - Added new InternalCapture method to allow controls to prevent
8589             the capture behaviour on the click handlers
8590           - Switched to use InternalCapture
8591         * ComboBox.cs:
8592           - Using InternalCapture to prevent mouse captures from being released
8593             on mouse button release (Fixes #78100)
8594         * XplatUIX11.cs (DeriveStyles): Now checks caption state and only
8595           returns Form borders if a caption is present. (Fixes #78310)
8597 2006-05-08  Peter Dennis Bartok  <pbartok@novell.com> 
8599         * TreeNode.cs: Changed serialization .ctor to not require every field
8600           to be present. (#78265)
8601         * OwnerDrawPropertyBag.cs: Added serialization .ctor
8603 2006-05-05  Alexander Olk  <alex.olk@googlemail.com>
8605         * MimeIcon.cs: for is faster than foreach for strings.
8607 2006-05-05  Mike Kestner  <mkestner@novell.com>
8609         * CheckedListBox.cs: update check handling code to not use selected.
8610         * ListBox.cs: rewrite of mouse selection handling to correspond to MS
8611         behavior for visual feedback, motion response, shift/ctrl handling,
8612         and properly deal with all 4 selection modes. Updates to bounds
8613         handling logic.  Add scroll wheel support. [Fixes #77842]
8615 2006-05-05  Peter Dennis Bartok  <pbartok@novell.com> 
8617         * ListView.cs:
8618           - Moved adding of Implicit controls into .ctor. That way, subsequent
8619             creation of the controls will not cause them to think they are 
8620             toplevel windows (fixes #78200 header problem)
8621           - Added 2.0 ShowGroups and UseCompatibleStateImageBehaviour
8622           - Switched visibility setting of header control to use internal field
8623             to avoid triggering handle creation
8624           - Now checking if handle is created before causing a refresh when items
8625             are added (This makes us now match handle creation time with MS)
8626         * Splitter.cs: Removed loading of private splitter cursor, switched to
8627           Cursors version now that that is loading the right ones
8628         * Cursors.cs: Load proper splitter cursors from resources
8629         * Cursor.cs: Added second method of loading resource cursors for the 
8630           VS.Net users amongst us
8632 2006-05-05  Mike Kestner  <mkestner@novell.com>
8634         * ListView.cs: give header_control a minimum size based on the
8635         ListView size.
8637 2006-05-05  Peter Dennis Bartok  <pbartok@novell.com> 
8639         * XplatUIX11.cs: WS_EX_TOPMOST requires window to be on top. A dock
8640           window seems to do that with metacity, so set that type. (#78120)
8642 2006-05-05  Mike Kestner  <mkestner@novell.com>
8644         * ListViewItem.cs: fix Details mode checkbox layout bug.
8645         * ThemeWin32Classic.cs: draw a ListView column header for unused space
8646         at the end of the header, if it exists. [Fixes for #78200]
8648 2006-05-04  Jackson Harper  <jackson@ximian.com>
8650         * MdiClient.cs: Add a helper property to get the container form.
8651         * MdiWindowManager.cs: We have to make sure to use the menu origin
8652         when drawing the icons and buttons, this fixes maximized window
8653         icons/buttons on win32.
8654         * InternalWindowManager.cs: Reset the restore captions when a
8655         window goes from Maximized to Minimized and vice versa. Move the
8656         DrawMaximizedButtons into the MdiWindowManager source, tool
8657         windows can't be maximized. NOTE: This could use a little
8658         refactoring if time ever permits.
8659         
8660 2006-05-03  Jonathan Chambers  <jonathan.chambers@ansys.com>
8662         * TextBox.cs: Add MWFCategoryAttributes
8663         * TextBoxBase.cs: Add MWFCategoryAttributes
8664         * Form.cs: Add MWFCategoryAttributes
8666 2006-05-03  Jonathan Chambers  <jonathan.chambers@ansys.com>
8668         * Control.cs: Add MWFCategoryAttributes
8669         * ScrollableControl.cs: Add MWFCategoryAttributes
8671 2006-05-03  Alexander Olk  <alex.olk@googlemail.com>
8673         * ThemeWin32Classic.cs: Draw the ToolBar top border only if
8674           Divider is true. Fix a little glitch in PropertyToolBar
8675           drawing code
8677 2006-05-02  Peter Dennis Bartok  <pbartok@novell.com> 
8679         * Control.cs:
8680           - Dispose: Call base.Dispose, this causes the disposed event
8681             to be fired (and probably other, more important stuff)
8682           - SetVisibleCore: Set is_visible to true after creating the
8683             window so that the window still gets created invisible (if
8684             WM_VISIBLE isn't set). That will cause the ShowWindow afterwards
8685             to generate a WM_ACTIVE message
8686         * Form.cs: Call Dispose when we want to destroy the window, instead of
8687           just destroying the handle (Dispose will do that for us)
8688         * XplatUIX11.cs:
8689           - RootWindow also needs a queue, so we can properly process the
8690             property change events from RootWindow (like Activate)
8691           - Generatic synthetic WM_ACTIVE message when the active window is
8692             being destroyed
8694 2006-05-01  Peter Dennis Bartok  <pbartok@novell.com> 
8696         * LinkLabel.cs: Trigger a recalc of our label dimensions when
8697           bounds are changed
8699 2006-05-01  Peter Dennis Bartok  <pbartok@novell.com>
8701         * ThemeWin32Classic.cs (ButtonBase_DrawImage): Use the proper image
8702           for determining width and height (image might not be assigned if
8703           we're drawing an imagelist)
8705 2006-05-01  Peter Dennis Bartok  <pbartok@novell.com> 
8707         * XplatUI.cs, XplatUIDriver.cs: Added MenuHeight property
8708         * XplatUIWin32.cs: Overriding new MenuHeight property, retrieving
8709           height from system
8710         * Theme.cs: No longer returns hardcoded menu height, instead calls
8711           new driver method
8712         * Form.cs (OnLoad): Scaling happens before triggering Load events 
8713           on MS (# 78257)
8715 2006-05-01  Mike Kestner  <mkestner@novell.com>
8717         * MenuItem.cs: fix NRE for text == null.  Fixes #78250.
8719 2006-04-30  Peter Dennis Bartok  <pbartok@novell.com> 
8721         * TextBoxBase.cs: Removed Fixme
8722         * RichTextBox.cs (set_RTF): Invalidate document after update (#78247)
8724 2006-04-30  Peter Dennis Bartok  <pbartok@novell.com>
8726         * XplatUIX11.cs:
8727           - ScrollWindow: We were passing hwnd.ClientRectangle which returns
8728             the rectangle relative to the parent, considering borders. We
8729             don't really want that.
8730           - ScrollWindow: Fixed warning to be more understandable
8731         * TextBoxBase.cs: Fixed ScrollWindow calculations to consider our
8732           scrollbars and scroll only the visible area
8733         * RichTextBox.cs: Removed debug output
8735 2006-04-29  Peter Dennis Bartok  <pbartok@novell.com>
8737         * NumericUpDown.cs (Text): Just use base
8738         * UpDownBase.cs: Ensure txtView is created before using it
8740 2006-04-29  Peter Dennis Bartok  <pbartok@novell.com> 
8742         * XplatUIX11.cs (SetWindowTransparency): Casting opacity to int before
8743           casting to IntPtr to avoid 64bit overflow errors
8745 2006-04-29  Peter Dennis Bartok  <pbartok@novell.com>
8747         * Control.cs:
8748           - AllowDrop: Don't force handle creation.
8749           - CreateHandle: Added call to tell driver if we're allowed to drop
8751 2006-04-27  Alexander Olk  <alex.olk@googlemail.com>
8753         * FileDialog.cs: Remember the last directory not only for the
8754           current instance but also for new FileDialog instances.
8756 2006-04-29  Peter Dennis Bartok  <pbartok@novell.com> 
8757         
8758         * XplatUIX11.cs: Forgot to set the queue on the foster parent. That
8759           broke sending async messages
8761 2006-04-29  Peter Dennis Bartok  <pbartok@novell.com>
8763         * XplatUIX11.cs:
8764           - ScrollWindow: Fixed method. We finally generate expose events again
8765             for scrolled areas. This was causing 'garbage' when scrolling
8766             textbox and other controls that used ScrollWindow
8767           - Switched from using the regular queue for paint events to the MS 
8768             model of 'generating' paint events when the queue is empty.
8769             We use the new XQueueEvent.Paint subclass to store which windows
8770             need painting.
8771           - AddExpose now takes the x/y/width/height of the exposed area
8772             and inserts the window into the paint queue if not already there
8773           - InvalidateWholeWindow: Switched to use new AddExpose method
8774           - UpdateMessageQueue: Added which queue to monitor for paint events
8775           - DefWndProc: Added default handler for WM_PAINT and WM_NCPAINT in
8776             the unlikely case nothing above handles it. We reset the expose
8777             pending states to get them off the queue.
8778           - GetMessage: Now pulls a paint event if no other events are in the
8779             queue
8780           - Invalidate: Switched to new AddExpose method
8781           - PeekMessage: Updated to understand pending paint events
8782           - UpdateWindow: Fixed logic bug. We were only updating if the window
8783             didn't need updating. Also switched to sending WM_PAINT directly,
8784             like MS does.
8785         * XEventQueue.cs: Added Paint queue support. Allows enqueue/dequeue
8786           and random access Remove(). The random access is needed to handle
8787           UpdateWindow() where a WM_PAINT is sent directly without accessing
8788           the queue.
8789         * ScrollBar.cs: Added Update() calls to cause immediate updates to
8790           allow for better feedback when scrolling. Scrollbars are small and
8791           the immediate update should make it 'feel' more responsive without
8792           slowing things down. ScrollBar still needs it's invaliate logic
8793           updated to not always invalidate the whole bar on certain changes.
8795 2006-04-28 Gonzalo Paniagua Javier <gonzalo@ximian.com>
8797         * Control.cs:
8798         (BackColor): if the control does not support a transparent background,
8799         return the default backcolor when the parent backcolor is transparent.
8801 2006-04-28  Peter Dennis Bartok  <pbartok@novell.com>
8803         * Application.cs: Updated to new StartLoop/GetMessage API
8804         * RichTextBox.cs: Provide some output on RTF parsing errors
8805         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs, XplatUIWin32.cs: Added
8806           new queue_id argument to GetMessage and PeekMessage to allow faster
8807           handling of per-thread queues in drivers.
8808         * Hwnd.cs: Added Queue tracking and property
8809         * MenuAPI.cs: Updated to new StartLoop/GetMessage API
8810         * XEventQueue.cs: Added thread trackingA
8811         * PropertyGridView.cs: Updated to new StartLoop/GetMessage API
8812         * XplatUIX11.cs:
8813           - Implemented new per-thread queue
8814           - GetMessage: Fixed return/break behaviour on several cases. We were
8815             returning stale messages in some cases, instead of just processing
8816             the next message
8818 2006-04-27  Jonathan Chambers  <jonathan.chambers@ansys.com>
8820         * PropertyGrid.cs: Call GetPropertiesSupported on TypeConverter.
8822 2006-04-27  Peter Dennis Bartok  <pbartok@novell.com>
8824         * ThemeWin32Classic.cs (DrawToolBar): Refactored, simplified the logic,
8825           fixed off-by-one comparisons between Width/Height and Right/Bottom.
8827 2006-04-27  Jonathan Chambers  <jonathan.chambers@ansys.com>
8829         * PropertyGridView.cs: Fix drop down width.
8831 2006-04-27  Alexander Olk  <alex.olk@googlemail.com>
8833         * ThemeWin32Classic.cs: Peter thinks that three additional lines are
8834           a mess in DrawToolBar, so I removed one of them.
8836 2006-04-27  Alexander Olk  <alex.olk@googlemail.com>
8838         * ThemeWin32Classic.cs: Draw the ToolBar border lines only if
8839           needed (clip). Otherwise we get artifacts.
8841 2006-04-26  Peter Dennis Bartok  <pbartok@novell.com>
8843         * FixedSizeTextBox.cs: Added constructor to allow specifying which
8844           dimension is fixed
8845         * UpDownBase.cs: Set the spinner control to be fixed height vertical,
8846           and switched FixedSizeTextBox to only be fixed vertical (#78116)
8847         * Form.cs: Not applying the 'MS 0.08 fudge factor' for a given dimension
8848           if it matches the scale base font (avoids unneeded scaling)
8850 2006-04-26  Alexander Olk  <alex.olk@googlemail.com>
8852         * X11DesktopColors.cs: One gtk_init_check should be enough
8854 2006-04-26  Peter Dennis Bartok  <pbartok@novell.com> 
8856         * TextBoxBase.cs: Moved Backspace handling into WM_CHAR block to
8857           match MS behaviour
8859 2006-04-26  Peter Dennis Bartok  <pbartok@novell.com>
8861         * TextBoxBase.cs: 
8862           - Generate OnTextChanged for Backspace even if we're only deleting
8863             the current selection
8864           - When setting the Text property, only select all text if the
8865             control does not have focus when it is being set. Otherwise
8866             just place the cursor at the beginning of the control
8868 2006-04-26  Alexander Olk  <alex.olk@googlemail.com>
8870         * ThemeWin32Classic.cs: ToolBars get drawn with two lines at the top.
8871           Added a little helper to draw PropertyGrid ToolBar with a different
8872           border and a different BackColor.
8873         * PropertyGrid.cs: Some background parts didn't get painted with the
8874           correct background color. Added a class that helps us to draw the
8875           correct border for PropertyGridView and a class that helps us to
8876           draw ToolBars with a different backcolor
8877         * PropertyGridView.cs: Draw PlusMinus with the correct colors.
8879 2006-04-25  Jonathan Chambers  <jonathan.chambers@ansys.com>
8881         * PropertyGrid.cs: Bug 78196, font size, and splitter location.
8882         * PropertyGridView.cs: Bug 78196, font size, and splitter location.
8884 2006-04-25  Peter Dennis Bartok  <pbartok@novell.com> 
8886         * XplatUIWin32.cs (DIBtoImage): ORing instead of ANDing the alpha
8887           into the palette entries. Also, since we're working on a copy
8888           we needed to copy the palette back onto the bitmap.
8889         * Cursor.cs: Same fix as XplatUIWin32.cs.
8891 2006-04-25  Peter Dennis Bartok  <pbartok@novell.com>
8893         * ImageListStreamer.cs: Need to read the var (or we're off)
8895 2006-04-25  Peter Dennis Bartok  <pbartok@novell.com> 
8897         * TextControl.cs, ComboBox.cs, CommonDialog.cs, Theme.cs, 
8898           XplatUIWin32.cs, RichTextBox.cs, ImageListStreamer.cs,
8899           TextBoxBase.cs: Unused var fixes
8900         * AxHost.cs: Small 2.0 fix
8901         * XplatUIX11.cs: Switched to IntPtr from int for XA_CARDINAL atoms 
8902           as it seems that is what at least Metacity expects. This will make
8903           icons show up on 64bit platforms. We still have some 64bit size
8904           issues, though, since the startup app window size still won't match.
8906 2006-04-25  Mike Kestner  <mkestner@novell.com>
8908         * *.cs: cleanup newly reported exception var unused warnings.
8910 2006-04-25  Alexander Olk  <alex.olk@googlemail.com>
8912         * ThemeWin32Classic.cs: Button image alignment now matches exactly
8913           ms
8915 2006-04-25  Alexander Olk  <alex.olk@googlemail.com>
8917         * ThemeWin32Classic.cs: Fixed drawing code for buttons with an
8918           image. The image position is always the same, no matter if the
8919           button is pressed or not.
8921 2006-04-25  Alexander Olk  <alex.olk@googlemail.com>
8923         * FileDialog.cs: SaveFileDialog shouldn't rely on a MWFFileView
8924           selection and set the correct filename for SaveFileDialog.
8925           Patch by Emery Conrad.
8927 2006-04-24  Mike Kestner  <mkestner@novell.com>
8929         * ListView.cs (LastVisibleIndex): when in List mode of Alignment.Left,
8930         check for item.X outside the ClientRect instead of item.Y. Fixes
8931         #78151.
8933 2006-04-21 Gonzalo Paniagua Javier <gonzalo@ximian.com>
8935         * ImageListStreamer.cs: some images store a wrong grow factor, so don't
8936         trust that value blindly and do some sanity check. Fixes bug #77814.
8938 2006-04-21 Gonzalo Paniagua Javier <gonzalo@ximian.com>
8940         * ImageListStreamer.cs: save the mask as a 1bpp image.
8942 2006-04-21  Mike Kestner  <mkestner@novell.com>
8944         * CheckedListBox.cs: maintain CheckStatus here. Use DrawItemState to
8945         pass Checked and Indeterminate to the Theme Engine. Improve
8946         encapsulation with ListBox.
8947         * ListBox.cs: Keep a StringFormat instead of calculating it every item
8948         draw. Kill ListBoxItem. Refactor away the ListBoxInfo and ListBoxItem
8949         nested types.  Move all CheckState functionality to CheckedListBox.
8950         Make IntegralHeight work like MS.  Rewrite of Layout engine.  Fix
8951         OwnerDrawVariable layout/rendering.  Fix multicolumn rendering.  Fix
8952         ScrollAlwaysVisible handling. Refactor "selected" collections to use a
8953         single base list. Fix scrollbar sizing and placement to mirror MS.
8954         * Theme.cs: remove CheckedListBoxCheckRectangle. It wasn't really
8955         used.
8956         * ThemeWin32Classic.cs: implement Indeterminate CheckState rendering
8957         for CheckedListBox by using new DrawItemState info.  Center the
8958         checkboxes on the items. Use new StringFormat property.
8960 2006-04-18  Jackson Harper  <jackson@ximian.com>
8962         * Form.cs: MdiChildren don't do default locations the same way as
8963         regular forms.  This prevents a crash when trying to position the
8964         mdi windows.
8966 2006-04-17  Jonathan Chambers  <jonathan.chambers@ansys.com>
8968         * PropertyGridTextBox.cs: Formatting, copyright
8969         * PropertiesTab.cs: Formatting
8970         * PropertyGrid.cs: Formatting
8971         * PropertyGridView.cs: Formatting, fix drop down, enabled double 
8972           click toggling of values
8973           
8974 2006-04-17  Peter Dennis Bartok  <pbartok@novell.com> 
8976         * KeyPressEventArgs: Added 2.0 only setter for KeyChar
8977         * Control.cs (.ctor): verify_thread_handle is static, don't reset
8978           every time a control is created
8979         * Application.cs: Removed obsolete EnableRTLMirroring method
8981 2006-04-18  Gert Driesen  <drieseng@users.sourceforge.net>
8983         * TabControl.cs: Avoid ArgumentOutOfRangeException when setting
8984         SelectedIndex to -1. Fixes bug #78121.
8986 2006-04-17  Jackson Harper  <jackson@ximian.com>
8988         * Binding.cs: Handle null values for Current and BindingContext.
8989         This occurs when binding is a little delayed.
8990         * CurrencyManager.cs: return null for Current when there are no
8991         items in the list.
8992         - Hookup to the listchanged event on the DataView and update
8993         bindings when the list is changed.  This fixes late binding of
8994         controls.
8996 2006-04-17  Jackson Harper  <jackson@ximian.com>
8998         * X11Dnd.cs:
8999         * XplatUIX11.cs: Drops should not create a mousedown. Patch by Tim
9000         Ringenbach.
9002 2006-04-15  Alexander Olk  <alex.olk@googlemail.com>
9004         * ThemeWin32Classic.cs: Draw disabled combo button in the correct
9005           place
9006         * ComboBox.cs: If the combobox is disabled call CPDrawComboButton
9007           with the correct ButtonState
9009 2006-04-14  Peter Dennis Bartok  <pbartok@novell.com>
9011         * XplatUIX11.cs: Improved distinguishing between window types to
9012           tell the WM a type closer to what the app wants (Fixes #78107)
9014 2006-04-14  Alexander Olk  <alex.olk@googlemail.com>
9016         * ThemeWin32Classic.cs: Fixed drawing of ContainerGrabHandle and
9017           GrabHandle
9019 2006-04-14  Alexander Olk  <alex.olk@googlemail.com>
9021         * ThemeWin32Classic.cs: Fixed size grip drawing and updated StatusBar
9022           drawing code to reflect the size grip changes
9024 2006-04-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
9026         * ImageListStreamer.cs: fix handling of the mask that follows the main
9027         bitmap when deserializing and serialize it properly. The generated mask
9028         should better be a 1bpp image, but I'll do that later.
9030 2006-04-13  Alexander Olk  <alex.olk@googlemail.com>
9032         * FileDialog.cs: Show something in the DirComboBox on *nix if the
9033           path doesn't fit into some of our Current.Places
9035 2006-04-13  Jackson Harper  <jackson@ximian.com>
9037         * ComboBox.cs: Use borders instead of drawing our own decorations,
9038         try to obey correct rules for heights.
9039         * Theme.cs:
9040         * ThemeNice.cs:
9041         * ThemeClearLooks.cs:
9042         * ThemeWin32Classic.cs: Remove combobox decoration drawing code,
9043         this is now handled by borders.
9044         - Remove unused DrawListBoxDecorationSize method.
9045         
9046 2006-04-13  Mike Kestner  <mkestner@novell.com>
9048         * MenuAPI.cs: null guarding for the disbled click check fixes crash
9049         reported by Alex.
9051 2006-04-13  Alexander Olk  <alex.olk@googlemail.com>
9053         * ThemeWin32Classic.cs: 
9054           - Fixed CPDrawStringDisabled
9055           - Corrected drawing of disabled menu items
9056           - Fixed drawing of disabled radio buttons (bug #78095)
9057           - Draw check in a disabled CheckBox with color ControlDark 
9059 2006-04-12  Peter Dennis Bartok  <pbartok@novell.com>
9061         * Form.cs: Use the provided width when calculating the menu size;
9062           when being maximized we get WM_NCCALCSIZE before WM_WINDOWPOSCHANGED
9063           and ClientSize.Width won't be updated yet
9064         * Application.cs: Use Visible instead of Show() to make form visible,
9065           this way we create the handle later and menusize is considered
9067 2006-04-12  Mike Kestner  <mkestner@novell.com>
9069         * MenuAPI.cs: ignore clicks on disabled menu items. Thanks to Alex for
9070         reporting.
9072 2006-04-12  Peter Dennis Bartok  <pbartok@novell.com>
9074         * TextBox.cs: Implemented context menu
9076 2006-04-12  Mike Kestner  <mkestner@novell.com>
9078         * ListView.cs: implement box selection. fixes #77838.
9079         * ThemeWin32Classic.cs: draw box select rect, remove a ResetClip.
9081 2006-04-12  Peter Dennis Bartok  <pbartok@novell.com> 
9083         * XplatUIX11.cs: Added setting of window type when transient window
9084           is created (metacity would move it otherwise)
9085         * X11Structs.cs: Added WINDOW_TYPE atoms
9086         * LinkLabel.cs: Override OnPaintBackgroundInternal and draw the
9087           background (the control is Opaque but still wants transparent
9088           backgrounds)
9090 2006-04-12  Peter Dennis Bartok  <pbartok@novell.com>
9092         * Control.cs: Added OnPaintBackgroundInternal to allow controls
9093           that set Opaque but don't mean it (like all ButtonBase-derived
9094           controls) to still draw their background
9095         * ButtonBase.cs: Override OnPaintBackgroundInternal and draw
9096           the background
9098 2006-04-12  Peter Dennis Bartok  <pbartok@novell.com> 
9100         * Control.cs (PaintControlBackground): Set the graphics object
9101           on our PaintEvent to null to prevent it from being disposed
9102           when the PaintEvent gets disposed
9104 2006-04-12  Alexander Olk  <alex.olk@googlemail.com>
9106         * ThemeWin32Classic.cs: Use even more SystemBrushes and SystemPens
9107         * ThemeNice.cs, ThemeClearlooks.cs: fix typo
9109 2006-04-12  Peter Dennis Bartok  <pbartok@novell.com>
9111         * Control.cs: 
9112           - Added transparency check to BackColor property. Transparent
9113             backgrounds are only allowed if the control styles permit it
9114           - Added recursive painting of parent control background and
9115             foreground if a control with a transparent backcolor is drawn
9116             (Thanks to Tim Ringenback for providing his 'hack' as a base
9117              for this patch) Fixes #77985 and #78026.
9118           - Added Opaque style check before calling OnPaintBackground, no
9119             need to draw the background if the control is opaque
9120           - Removed ControlAccessibleObject owner variable (inherited from
9121             base, no need to define again)
9122           - Added some documentation links explaining the drawing events
9123             and styles
9125 2006-04-11  Peter Dennis Bartok  <pbartok@novell.com> 
9127         * Splitter.cs (CalculateSplitPosition): Corrected the bad assumption
9128           that the affected control is the located at the left border of our
9129           parent (Fixes #77936)
9131 2006-04-11  Peter Dennis Bartok  <pbartok@novell.com>
9133         * TextBoxBase.cs: When rendering disabled or readonly controls,
9134           draw the background with 'Control' instead of 'Window' color as
9135           long as the user hasn't specifically set a color
9137 2006-04-11  Peter Dennis Bartok  <pbartok@novell.com> 
9139         * TextBoxBase.cs: Don't try to shortcut by checking against base.Text
9140           since that won't be updated if the user types text (only if it's
9141           programatically set)
9143 2006-04-11  Peter Dennis Bartok  <pbartok@novell.com>
9145         * ScrollableControl.cs: Calculate DisplayRect dynamically, so that
9146           layout changes do to app-triggered resizes will have the proper
9147           display rectangle for layout
9149 2006-04-11  Alexander Olk  <alex.olk@googlemail.com>
9151         * ThemeWin32Classic.cs:
9152           - Make use of the SystemBrushes and SystemPens wherever possible
9153           - Corrected some highlight colors
9154           - Corrected RadioButton and CheckBox FlatStyle.Flat and Popup
9155             drawing
9156         * Theme.cs: Added Empty field to CPColor struct
9158 2006-04-11  Peter Dennis Bartok  <pbartok@novell.com>
9160         * ScrollabeControl.cs: We need to consider whether or not a scrollbar
9161           is displayed when calculating the display rectangle. Thanks to Mike
9162           for teaching me the err of my ways.
9164 2006-04-10  Peter Dennis Bartok  <pbartok@novell.com>
9166         * ScrollableControl.cs:
9167           - Rewrote DisplayRectangle code, now returning the proper x/y coords 
9168             (instead of 0,0) and we now return the real width/height instead of
9169             just the clientrectangle, adjusted for padding. The rectangle is
9170             now cached and created by the new CalculateDisplayRectangle method.
9171           - Created new CalculateDisplayRectange method, which basically does
9172             what get_DisplayRectangle() did originally, but now using the 
9173             right edge instead of DisplayRectangle to determine the size of
9174             our scrollbars
9175           - get_Canvas(): Fixed it to properly calculate canvas for 
9176             right/bottom controls which seem to be placed to the right/bottom
9177             of any controls that have a fixed location
9178           - Removed TODO that's taken care of
9179           - Removed NotImplementeds and attempted to implement AdjustFormScrollBars
9180             and SetDisplayRectLocation according to new MSDN2 docs
9181           - Added call to PerformLayout in OnVisibleChanged, MS causes a layout
9182             event when that is called, this is added for compatibility
9183           - ScrollControlIntoView(): Implemented.
9184           - Switched scrollbars to be implicit, they shouldn't be selectable
9185         * ContainerControl: Now that ScrollControlIntoView is implemented, we 
9186           call it when the active control is set/changed
9187         * ScrollBar.cs: Added support for generating Win32 scrollbar messages
9188         * ImplicitHScrollBar.cs, ImplicitVScrollBar.cs: Now setting new base
9189           implicit_control variable (used for native Win32 message generation)
9190         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs: Added new 
9191           HorizontalScrollBarHeight and VerticalScrollBarWidth properties
9192         * ThemeWin32Classic.cs: Now calling the driver for the scrollbar sizes
9193         * XplatUIStructs.cs: Added ScrollBarCommands enum
9195 2006-04-10  Jackson Harper  <jackson@ximian.com>
9197         * ButtonBase.cs:
9198         * CheckedListBox.cs:
9199         * ComboBox.cs:
9200         * DataGrid.cs:
9201         * DataGridView.cs:
9202         * Form.cs:
9203         * GroupBox.cs:
9204         * ListBox.cs:
9205         * PrintPreviewControl.cs:
9206         * ProgressBar.cs:
9207         * PropertyGrid.cs:
9208         * Splitter.cs:
9209         * StatusBar.cs:
9210         * TrackBar.cs:
9211         * UpDownBase.cs: Fixup base event overrides.
9212         
9213 2006-04-06  Mike Kestner  <mkestner@novell.com>
9215         * ScrollBar.cs: fix "new event" declarations (#76509) and bounds check
9216         all user-initiated value changes to min <= value <= max-thumbsz+1.
9217         (set_Value): check for vert/horiz when calculating new thumb position.
9218         (LargeIncrement): bounds check to stop pos at max - thumb_size + 1
9219         like MS does.
9220         (OnMouseMoveSB): refactor the thumb dragging code and refine
9221         invalidation logic to reduce flicker.
9222         (SetEndPosition): bounds check to stop pos at max - thumb_size + 1
9223         (SmallIncrement): bounds check to stop pos at max - thumb_size + 1
9224         (UpdateThumbPosition): small code readability cleanup
9226 2006-04-10  Alexander Olk  <alex.olk@googlemail.com>
9228         * ThemeNice.cs: Small UI polishing. Draw borders a little bit
9229           different
9231 2006-04-08  Alexander Olk  <alex.olk@googlemail.com>
9233         * ThemeNice.cs: Use a better graphics effect when a button is pressed
9235 2006-04-08  Alexander Olk  <alex.olk@googlemail.com>
9237         * Theme.cs: Added GetDashPen and GetSizedPen to SystemResPool
9238         * ThemeWin32Classic.cs: Make use of the new SystemResPool methods.
9239           This dramatically reduces the number of Pen.Dispose calls. 
9240           Where possible call ResPool methods only once instead of calling it
9241           over and over again (for example for the same color).
9243 2006-04-06  Mike Kestner  <mkestner@novell.com>
9245         * TabControl.cs: fix for SelectedIndex updating on TabPage removals.
9246         Also remove an unused private field on the collection. Fixes #77972.
9248 2006-04-06  Alexander Olk  <alex.olk@googlemail.com>
9250         * ThemeNice.cs: Added ToolBar drawing code
9252 2006-04-06  Mike Kestner  <mkestner@novell.com>
9254         * Form.cs (ShowDialog): MS allows IWin32Window param to be a non-form.
9255         I'm assuming that means we need to look up the toplevel for the
9256         provided control. Fixes the crash trace in #77911 but exposes another
9257         crash in some strange reflection usage in NDocGui.
9259 2006-04-06  Alexander Olk  <alex.olk@googlemail.com>
9261         * ThemeNice.cs: Gave it a little silver touch and added Images
9262           method
9263         * FontDialog.cs: FontDialog is not resizable
9264         * FileDialg.cs: Added SizeGripStyle.Show
9266 2006-04-05  Jackson Harper  <jackson@ximian.com>
9268         * KeyboardLayouts.cs: Remove warning.
9270 2006-04-05  Jackson Harper  <jackson@ximian.com>
9272         * Control.cs: Enable OnPaintInternal so we can use it for drawing
9273         all of our controls instead of Paint +=.
9274         * ListBox.cs:
9275         * ListView.cs:
9276         * MenuAPI.cs:
9277         * MessageBox.cs:
9278         * NotifyIcon.cs:
9279         * ProgressBar.cs:
9280         * ScrollBar.cs:
9281         * Splitter.cs:
9282         * StatusBar.cs:
9283         * TabControl.cs:
9284         * TextBoxBase.cs:
9285         * ToolBar.cs:
9286         * TrackBar.cs:
9287         * UpDownBase.cs:
9288         * ComboBox.cs: Remove handling of WM_PAINT and WM_ERASEBKGND and
9289         use OnPaintInternal. Remove Width/Height and Visible checks in
9290         paint handler, this is done at a higher level now.
9291         * GroupBox.cs: Don't need to handle WM_ERASEBKGND anymore.
9292         * PaintEventArgs.cs: Add a handled flag so controls that don't
9293         want anymore painting after OnPaintInternal can make sure OnPaint
9294         isn't called.
9296 2006-04-05  Mike Kestner  <mkestner@novell.com>
9298         * Form.cs: fix the menu WndProc hacks to respect the native enabled
9299         state of the form, so that we don't process events when Modal dialogs
9300         are up. Fixes #77922.
9302 2006-04-05  Alexander Olk  <alex.olk@googlemail.com>
9304         * Mime.cs: Default for range length is 1 not 0. If set to 0 no match
9305           checking is done.
9307 2006-04-05  Mike Kestner  <mkestner@novell.com>
9309         * XplatUIX11.cs: fix typo in the EX_APPWINDOW transient patch.
9311 2006-04-05  Mike Kestner  <mkestner@novell.com>
9313         * ListView.cs (HeaderMouseMove): null guarding for the over column
9314         when setting up the drag_to_index.  Fixes #78015.
9316 2006-04-04  Peter Dennis Bartok  <pbartok@novell.com>
9318         * XplatUIX11.cs: If WS_EX_APPWINDOW isn't set we don't want to show up
9319           in the taskbar. Transient windows seem to accomplish that.
9321 2006-04-04  Peter Dennis Bartok  <pbartok@novell.com> 
9323         * Form.cs:
9324           - Re-enabled CreateParams.X/Y code for FormStartPosition
9325           - Added code for manual placement when creating the Control
9326           - Incomplete patch to treat MDI forms differently when
9327             setting the ClientSizeCore. (Still need to figure out handling
9328             x/y coords there)
9329         * XplatUIX11.cs:
9330           - When we're explicitly setting the X/Y position of a non-Child
9331             window, let the WM know. Metacity really wants this.
9333 2006-04-04  Alexander Olk  <alex.olk@googlemail.com>
9335         * ThemeNice.cs: Added CPDrawButton
9337 2006-04-04  Alexander Olk  <alex.olk@googlemail.com>
9339         * ThemeNice.cs: Changed the color for focused buttons and activated
9340           the arrows for small scroll buttons.
9342 2006-04-04  Alexander Olk  <alex.olk@googlemail.com>
9344         * ThemeWin32Classic.cs: Removed DrawFlatStyleButton, not needed
9345           anymore. Changed some method modifiers to protected (virtual)
9346         * ThemeClearlooks.cs: Updated to reflect the ThemeWin32Classic
9347           changes
9348         * ThemeNice.cs: Updated to reflect the ThemeWin32Classic changes.
9349           Updated drawing of menus, buttons and progressbars; added
9350           CPDrawBorder3D 
9352 2006-04-03 Gonzalo Paniagua Javier <gonzalo@ximian.com>
9354         * ImageListStreamer.cs: implemented serialization/deserialization
9355         of the images.
9357 2006-04-03  Alexander Olk  <alex.olk@googlemail.com>
9359         * ThemeWin32Classic.cs:
9360           - Removed all the DrawFrameControl stuff; CPDrawButton,
9361             CPDrawCheckBox and CPDrawRadioButton are now handled directly
9362             inside the methods
9363           - Updated and corrected the drawing code of CPDrawButton,
9364             CPDrawCheckBox and CPDrawRadioButton to better match ms
9365           - Updated theme checkbox and radiobutton code to use the CP*
9366             methods
9368 2006-03-31  Peter Dennis Bartok  <pbartok@novell.com> 
9370         * XplatUIX11.cs: Enable clipping again now that the libgdiplus
9371           bug is fixed
9373 2006-03-31  Jackson Harper  <jackson@ximian.com>
9375         * XplatUIX11.cs: Somehow we get SETCURSORS for bad windows
9376         sometimes.
9377         * UpDownBase.cs: Don't CreateGraphics manually, use a
9378         Refresh. Ideally we would invalidate the correct areas here.
9380 2006-03-31  Peter Dennis Bartok  <pbartok@novell.com> 
9382         * XplatUIX11.cs: 
9383           - We now track the mapping state of windows. If a window (or 
9384             one of it's parents) is not mapped we no longer permit
9385             WM_PAINT messages to be generated since we'd otherwise get 
9386             lots of BadMatch X errors. Jackson did all the work figuring
9387             out the problem.
9388           - Destroying the caret if the window it's contained in is 
9389             destroyed. Can't use regular DestroyCaret method since it
9390             might fall into a drawing function (trying to remove the
9391             caret) and with that generate new BadMatch errors. Again,
9392             Jackson tracked this down.
9393           - Changed DestroyChildWindows to SendWMDestroyMessages, we now
9394             make sure we send the messages to all windows. (The old code
9395             would send the WM_DESTROY to the window, and then all child
9396             windows would be 'gone' because the WM_DESTROY handle lookup
9397             would no longer find the destroyed window)
9398         * Hwnd.cs: Added Mapping property to track mapping state of hwnd
9399         * X11Structs.cs: Added WindowType enum for MapWindow/UnmapWindow
9401 2006-03-31  Jackson Harper  <jackson@ximian.com>
9403         * ScrollableControl.cs: Dont recalc if we are not visible.
9405 2006-03-31  Mike Kestner  <mkestner@novell.com>
9407         * Control.cs (SetVisibleCore): move the CreateControl call up ahead of
9408         the visibility branch.
9410 2006-03-31  Jackson Harper  <jackson@ximian.com>
9412         * ScrollBar.cs: Cap values when incrementing/decrementing.
9414 2006-03-31  Mike Kestner  <mkestner@novell.com>
9416         * MenuAPI.cs: setup menu.tracker for popup/context menus.
9417         * ToolTip.cs: guard against timer expirations with no active control.
9418         Not sure why it happened.
9420 2006-03-31  Mike Kestner  <mkestner@novell.com>
9422         * ThemeWin32Classic.cs: add some horizontal padding space for the tip
9423         text.
9424         * ToolTip.cs: Position the tooltip based on where the cursor is at
9425         popup time, not at MouseEnter time.  Add a Down state so that we don't
9426         redisplay tips without a Leave. Use faked XplatUI.GetCursorInfo for
9427         positioning offset. Lookup DisplaySize at positioning time, since it
9428         can theoretically change during invocation.
9429         * XplatUIWin32.cs: fake GetCursorInfo until pdb can do it properly.
9430         * XplatUIX11.cs: fake GetCursorInfo until pdb can do it properly.
9432 2006-03-31  Alexander Olk  <alex.olk@googlemail.com>
9434         * ThemeWin32Classic.cs: Use CPDrawBorder3D to draw a GroupBox.
9435           Fixes behaviour when the Text property of the box is String.Empty
9437 2006-03-31  Peter Dennis Bartok  <pbartok@novell.com>
9439         * XplatUIX11.cs: Only send mouseleave for our client windows, not
9440           for the whole window (otherwise we get WM_MOUSE_LEAVE twice for
9441           a window)
9443 2006-03-31  Alexander Olk  <alex.olk@googlemail.com>
9445         * FileDialog.cs: Visual enhancement for the popup buttons in 
9446           PopupButtonPanel
9448 2006-03-31  Alexander Olk  <alex.olk@googlemail.com>
9450         * ColorDialog.cs, FontDialog.cs: Make use of the updated 3D border
9451           code
9453 2006-03-30  Alexander Olk  <alex.olk@googlemail.com>
9455         * ThemeWin32Classic.cs: Updated MainMenu drawing of selected and
9456           highlighted menu items to match ms
9458 2006-03-30  Peter Dennis Bartok  <pbartok@novell.com> 
9460         * XplatUIX11.cs: Don't set a clip rectangle unless it's not empty
9462 2006-03-30  Mike Kestner  <mkestner@novell.com>
9464         * Menu.cs (SelectedItem): use new MenuItem.Selected prop.
9465         * MenuAPI.cs: use new MenuItem.Selected prop. redraw MainMenu when we
9466         go active to account for HotLight to Selected transition.
9467         * MenuItem.cs: add internal Selected prop. Fill out the Status
9468         property by calculating it from item info. Add HotLight,
9469         NoAccelerator, Checked, Grayed, and Disabled flags where appropriate.
9471 2006-03-30  Mike Kestner  <mkestner@novell.com>
9473         * MenuItem.cs: only emit DrawItem and MeasureItem for OwnerDraw.
9475 2006-03-29  Jackson Harper  <jackson@ximian.com>
9477         * Form.cs: Implement TODO.
9479 2006-03-29  Peter Dennis Bartok  <pbartok@novell.com> 
9481         * PrintPreviewDialog.cs: Implemented missing methods and events; still
9482           missing proper dialog setup in the constructor
9484 2006-03-29  Peter Dennis Bartok  <pbartok@novell.com>
9486         * ProgressBar.cs: Added 2.0 Style property that apps seem to use
9487         * Control.cs:
9488           - Implemented CheckForIllegalCrossThreadCalls, removed TODO
9489           - Fixed ResetBindings and removed TODO
9490           - Added check for cross-thread calls to get_Handle()
9491           - Added Marshaller attribute for set_Font to satisfy class status
9492         * FontDialog.cs: Removed TODOs that seemed implemented
9493         * UpDownBase.cs: Removed unneeded TODO and Fixme
9494         * MessageBox.cs: Implemented support for Default button and removed TODO
9495         * FileDialog.cs: Removed obsolete TODO
9496         * DomainUpDown.cs: Removed obsolete TODO
9497         * ButtonBase.cs: Removed obsolete TODO
9498         * XplatUIWin32.cs: Removed obsolete TODO
9499         * Form.cs:
9500           - Removed obsolete TODO
9501           - Calling CheckAcceptButton when the acceptbutton is changed to allow
9502             internal status updates
9503           - Making sure the active control is selected when the control is created
9504         * CurrencyManager.cs: Removed obsolete TODO
9506 2006-03-29  Mike Kestner  <mkestner@novell.com>
9508         * *.cs: fix remaining corcompare issues for 1.1 API with the exception
9509         of PrintPreviewDialog and RichTextBox.
9511 2006-03-29  Alexander Olk  <alex.olk@googlemail.com>
9513         * Theme.cs: Added a little helper to SystemResPool to get the Dark,
9514           DarkDark, Light and LightLight colors for a specific color
9515         * ThemeWin32Classic.cs:
9516           - Use Button drawing code to draw RadioButtons and CheckBoxes with
9517             Appearance = Button 
9518           - Make use of the new ResPool helper CPColor
9519           - Draw ProgressBar and StatusBar with correct 3D borders
9521 2006-03-29  Alexander Olk  <alex.olk@googlemail.com>
9523         * ColorDialog.cs: Return selected color. Fixes bug #77940.
9525 2006-03-28  Mike Kestner  <mkestner@novell.com>
9527         * ListView.cs: fix Icon layout to plan for scrollbar widths when
9528         calculating col/row counts.
9530 2006-03-28  Mike Kestner  <mkestner@novell.com>
9532         * ColumnHeader.cs:
9533         * ListView.cs:
9534         * ListViewItem.cs:
9535         * Menu.cs: 
9536         switch to explicit interface method implementation for some methods
9537         corcompare identifies as inconsistent with MS.
9539 2006-03-28  Mike Kestner  <mkestner@novell.com>
9541         * MainMenu.cs: 
9542         * Menu.cs:
9543         add a few missing methods from the class status output.
9545 2006-03-28  Alexander Olk  <alex.olk@googlemail.com>
9547         * ControlPaint.cs: Fixed ControlPaint.Light method. Results are now
9548           correct.
9550 2006-03-28  Mike Kestner  <mkestner@novell.com>
9552         * MenuAPI.cs: Deactivate on MainMenu item click. Fixes #77917.
9554 2006-03-27  Mike Kestner  <mkestner@novell.com>
9556         * ThemeWin32Classic.cs: Switch flat toolbars to use RaisedInner for
9557         the Hilight state to adapt to Alex's CPDrawBorder3D changes.
9559 2006-03-27  Alexander Olk  <alex.olk@googlemail.com>
9561         * ThemeWin32Classic.cs: Rewrote Button drawing code to match ms.
9563 2006-03-25  Alexander Olk  <alex.olk@googlemail.com>
9565         * ThemeWin32Classic.cs:
9566           - GroupBox: Inserted a little gap between the text and the lines
9567             on the right side
9568           - Made the code in CPDrawBorder3D more readable
9569           - Corrected the drawing location of the up and down arrows in 
9570             CPDrawScrollButton
9572 2006-03-25  Alexander Olk  <alex.olk@googlemail.com>
9574         * ControlPaint.cs: Corrected line widths in DrawBorder for
9575           ButtonBorderStyle Inset and Outset
9577 2006-03-25  Alexander Olk  <alex.olk@googlemail.com>
9579         * ThemeWin32Classic.cs:
9580           - Rewrote the totally broken CPDrawBorder3D method. That was
9581             one of the main problems for the terrific ThemeWin32Classic
9582             look
9583           - Updated and corrected Button drawing
9584           - Correct the dimensions of the SizeGrip to match ms ones
9585           - Removed a small drawing glitch in DrawComboBoxEditDecorations
9586         * XplatUIX11.cs: Draw borders with BorderStyle = Fixed3D with
9587           Border3DStyle.Sunken to match ms.
9589 2006-03-25  Alexander Olk  <alex.olk@googlemail.com>
9591         * ThemeWin32Classic.cs: First small part of the "de-uglify
9592           ThemeWin32Classic" effort, SizeGrip
9594 2006-03-24  Jackson Harper  <jackson@ximian.com>
9596         * XplatUIX11.cs: Give a max idle time of one second, this matches
9597         MS and forces an Idle event every second when there are no other
9598         events in the queue.
9600 2006-03-24  Mike Kestner  <mkestner@novell.com>
9602         * ListView.cs: Handle (Large|Small)ImageList == null more robustly.
9603         * ListView.Item.cs: fix layout issues with null image lists and images
9604         smaller than checkbox size.
9605         * ThemeWin32Classic.cs: Draw a 12 pixel line in ListView LargeIcon
9606         mode like MS does.  It's weird, but consistent.  ;-)
9607         Fixes #77890.
9609 2006-03-24  Mike Kestner  <mkestner@novell.com>
9611         * ListView.cs: Scroll wheel support for the item control.  Fixes
9612         #77839.
9614 2006-03-23  Jackson Harper  <jackson@ximian.com>
9616         * ScrollableControl.cs: Special case negative sized areas, not
9617         zero.
9618         * MonthCalendar.cs: Save the rect of the clicked date so we can
9619         use it for invalidation.
9620         - Try to cut down on the number of invalidates
9621         - Invalidate the rect the mouse is over and was over when moving
9622         the mouse, so we get the focus box following the cursor.
9624 2006-03-23  Mike Kestner  <mkestner@novell.com>
9626         * ThemeWin32Classic.cs: fix FullRowSelect selection background and
9627         focus rectangle drawing. Fixes #77835.
9629 2006-03-23  Mike Kestner  <mkestner@novell.com>
9631         * XplatUIX11.cs: rework the fix for #77828 by changing the order of
9632         the if and else if and reverting back to the original == check on the
9633         None conditional.
9635 2006-03-23  Alexander Olk  <alex.olk@googlemail.com>
9637         * FontDialog.cs: Update the example panel if the selected index of
9638           the fontListBox changes.
9640 2006-03-23  Alexander Olk  <alex.olk@googlemail.com>
9642         * FileDialog.cs: Make FileDialog remember which directory it was in
9643           last in the same execution.
9645 2006-03-22  Mike Kestner  <mkestner@novell.com>
9647         * FileDialog.cs: make the DropDownMenu on the toolbar display
9648         RadioChecks since they are mutually exclusive and that's what MS does.
9650 2006-03-22  Mike Kestner  <mkestner@novell.com>
9652         * Theme.cs: add Color param to CPDrawMenuGlyph.
9653         * ThemeWin32Classic.cs: do color specific menu glyph rendering so that
9654         checks and radio marks and arrows are visible on highlighted items.
9655         * ControlPaint.cs: update to use new Theme signature.
9657 2006-03-22  Mike Kestner  <mkestner@novell.com>
9659         * MenuAPI.cs: only process Enter and arrow keypresses if the tracker
9660         is active. Fixes #77870.
9662 2006-03-22  Alexander Olk  <alex.olk@googlemail.com>
9664         * FileDialog.cs: Corrected TabIndex order and set fileNameComboBox
9665           to be focused/selected after startup
9667 2006-03-22  Alexander Olk  <alex.olk@googlemail.com>
9669         * ColorDialog.cs: 
9670           - Corrected behaviour of Color, AllowFullOpen, FullOpen,
9671             CustomColors and ShowHelp properties
9672           - Some internal rewrites to get better results when using the
9673             ColorMatrix
9675 2006-03-22  Mike Kestner  <mkestner@novell.com>
9677         * ListView.cs: hook into Peter's new ResetMouseHover capability to fix
9678         HoverSelection.  Fixes #77836.
9680 2006-03-22  Mike Kestner  <mkestner@novell.com>
9682         * FileDialog.cs: bugfixes for the toolbar.  Use PushButtons instead of
9683         ToggleButtons.  (De)Sensitize the Back button around a stack count of
9684         1, not 0.  Update ButtonSize based on a pixel count of the win32
9685         control.  Adjust the toolbar size/location for new button size.
9687 2006-03-22  Jackson Harper  <jackson@ximian.com>
9689         * XplatUIX11.cs: Don't handle configurenotifys if PostQuitState is
9690         true.
9691         * ScrollBar.cs: When doing increments and decrements we need to
9692         set the Value property so that ValueChanged gets raised. A
9693         possible optimization here would be to make an internal SetValue
9694         that doesn't invalidate immediately.
9695         * ToolTip.cs: Tooltips get added to their container (when
9696         supplied) so they get disposed when the container is disposed.
9697         - Don't create tooltips for String.Empty. This prevents all these
9698         little 2-3 pixel windows from showing up when running nunit-gui
9699         and driving me mad.
9700         * Form.cs: Don't set topmost when setting the owner if the handles
9701         haven't been created yet.  The topmost set will happen when the
9702         handles are created.
9704 2006-03-22  Peter Dennis Bartok  <pbartok@novell.com> 
9706         * XplatUIX11.cs:
9707           - DeriveWindowStyles: Fixed typo in borderstyle generation (#77828)
9708           - SetVisible: Sending WINDOWPOSCHANGED for all controls when made 
9709             visible (to allow them to recalculate their sizes)
9711 2006-03-21  Mike Kestner  <mkestner@novell.com>
9713         * ThemeWin32Classic.cs: major refactoring of the ToolBar rendering
9714         methods. Removed a ton of redundant code.  Still not really happy with
9715         the border rendering, but I think that's mainly because of the
9716         ControlDarkDark being black instead of a dark grey. Depending on how 
9717         close we want to be, we might want to revisit those color choices.
9718         Among the new features added during the refactor were DropDownArrow
9719         pressed rendering, Disabled image rendering.  Proper flat appearance
9720         boundary rendering.  Removed the Divider and Wrapping dividers since I
9721         can't figure out any combination of themes and conditions to make the
9722         MS control draw a horizontal line on a toolbar despite what the
9723         Divider property docs indicate.
9724         * ToolBar.cs: rewrite the layout engine. Fixes numerous flicker
9725         conditions and incorrect layout.  Updated to coding standard.
9726         * ToolBarButton.cs: refactored layout and positioning code from
9727         ToolBar to here.  Invalidate wherever possible instead of forcing
9728         redraws of the whole toolbar. 
9729         (Known remaining issues: explicit ButtonSize smaller than provided
9730         images.)
9732 2006-03-21  Mike Kestner  <mkestner@novell.com>
9734         * ContextMenu.cs (Show): use the position parameter instead of just
9735         showing at the MousePosition.
9737 2006-03-21  Jackson Harper  <jackson@ximian.com>
9739         * TabControl.cs: Remove the call to ProcessKeyEventArgs and let
9740         control handle this.
9741         * TreeNodeCollection.cs: If we are clearing the root node we need
9742         to reset top_node so calcs can still happen.
9743         * ThemeWin32Classic.cs: This is a Flags so we need to check
9744         properly.
9745         
9746 2006-03-21  Jackson Harper  <jackson@ximian.com>
9748         * DataGrid.cs: Create columns when the binding context has been
9749         changed.
9750         * X11Structs.cs: Keysyms are uints.
9751         - Add size to fix build.
9753 2006-03-21  Peter Dennis Bartok  <pbartok@novell.com> 
9755         * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs, XplatUIWin32.cs, 
9756           XplatUIOSX.cs: 
9757           - Added ResetMouseHover method to allow controls to retrigger
9758             hovering if they need it more than once
9759           - Implemented MouseHoverTime and MouseHoverSize properties
9760         * Timer.cs: Start() must reset the interval
9761         * SystemInformation.cs: Added 2.0 MouseHoverTime and MouseHoverSize
9762           properties
9764 2006-03-21  Jackson Harper  <jackson@ximian.com>
9766         * X11Keyboard.cs: improved layout detection. Move the nonchar
9767         tables into this file.
9768         * KeyboardLayouts.cs: Move the tables into resource files.
9770 2006-03-21  Mike Kestner  <mkestner@novell.com>
9772         * ListView.cs: use OnItemActivated to raise events. Fixes #77834.
9774 2006-03-21  Alexander Olk  <alex.olk@googlemail.com>
9776         * Mime.cs: Various speed optimizations. Looking up mime types
9777           is now 2 times faster than before
9779 2006-03-17  Peter Dennis Bartok  <pbartok@novell.com> 
9781         * CreateParams.cs: Added internal menu field
9782         * Control.cs: 
9783           - Switched call order for UpdateBounds; now we always call
9784             the one that also takes ClientSize, and we're calculating the 
9785             client size via driver method in the others. The previous
9786             method of tracking client size by difference wasn't working
9787             for forms where even the starting client size wouldn't match
9788             the overall form size (due to borders) (Part of fix for #77729)
9789           - CreateParams(): Do not use parent.Handle unless the handle is
9790             already created. Causes havoc with Nexxia and throws off our
9791             creation of controls
9792         * XplatUIX11.cs:
9793           - Created new PerformNCCalc method to trigger WM_NCCALCSIZE message
9794           - Switched handling of ConfigureNotify over to new PerformNCCalc 
9795             method (consolidates code)
9796           - Changed RequestNCRecalc to use new PerformNCCalc method
9797           - Added calls to RequestNCRecalc when menus and borders are changed
9798             to allow app to set NC size. (Part of fix for #77729) This matches
9799             when MS send a WM_NCRECALC on Win32 windows.
9800           - Now sending WM_WINDOWPOSCHANGED when toplevel for is made visible
9801             (Part of fix for #77729). This matches what MS does, they also
9802             send that message when the form is made visible.
9803           - XException.GetMessage: Improved usability of X errors by including
9804             a translation of the window into Hwnd and Control class
9805           - Improved debug info for window creation, reparenting and destruction
9806           - Created helper method WindowIsMapped() [Currently not used]
9807         * XplatUIWin32.cs: Added ToString() debug helper to RECT structure
9808         * Form.cs:
9809           - CreateParams: Now setting our menu on the new internal menu field
9810           - SetClientSizeCore: Now passing cp.menu instead of ActiveMenu to
9811             avoid calculating the same property twice
9812         * Hwnd.cs:
9813           - Improved usability of ToString() for debugging purposes
9814           - GetWindowRectangle(): Now uses proper CalcMenuBarSize method to
9815             determine the height of the menu, instead of just the font. This
9816             required to also create a graphics context and to keep a bmp 
9817             around (for performance reasons)
9819 2006-03-17  Peter Dennis Bartok  <pbartok@novell.com>
9821         * MenuAPI.cs: Added OnMouseUp method
9822         * Form.cs:
9823           - Now remembering the requested client size, avoids size errors
9824           - WndProc: Now handling WM_xBUTTONUP and passing it to MenuTracker
9825             instead of base if the menu is active. This is required due to
9826             control now capturing and releasing on down/up and it would
9827             prematurely release our menu capture
9829 2006-03-17  Jackson Harper  <jackson@ximian.com>
9831         * KeyboardLayouts.cs: Add the czech layouts.
9833 2006-03-16  Jackson Harper  <jackson@ximian.com>
9835         * Control.cs: Use the viewport space when sizing not the controls
9836         client size, so things like ScrollableControl that effect the
9837         viewport size (when scrollbars are added) are computed correctly.
9838         * BindingContext.cs: Cleanup to use the DataSourceEntrys instead
9839         of ManagerEntrys.
9840         - Handle creating BindingManagers for null data sources.
9841         * DataGrid.cs: Bind the cached_currencymgr_events to the real data
9842         source, otherwise when rows are added they are added to the 'fake'
9843         datasource and we will crash when trying to set the position in
9844         those rows.
9845         - Use Implicit scrollbars on the datagrid so they arent
9846         selectable.
9847         
9848 2006-03-16  Jackson Harper  <jackson@ximian.com>
9850         * Binding.cs:
9851         * InternalWindowManager.cs:
9852         * MdiWindowManager.cs:
9853         * X11Keyboard.cs: I really want Mike to love me again (fix
9854         compiler warnings).
9856 2006-03-16  Peter Dennis Bartok  <pbartok@novell.com>
9858         * DataGrid.cs:
9859           - OnMouseDown: Switch to editing mode when clicking on the cell
9860                          even if we're clicking on the cell that's currently 
9861                          selected
9862           - ProcessGridKey: Left/Right now wrap like MS.Net does
9863           - ProcessGridKey: Tab now knows to add a new row when tab is
9864                             pressed in the cell of the last column of the 
9865                             last row
9866           - ProcessGridKey: Enter now adds another row  if pressed in the last
9867                             row and selectes the new row, same column cell
9868           - ProcessGridKey: Home/End navigate columns, not rows, like 
9869                             originally implemented
9870           - Broke ProcessKeyPreview code out into an extra Internal method
9871             so it can be called from the edit code
9872         * DataGridTextBox.cs (ProcessKeyMessage):
9873           - Switched to accept Tab keypresses
9874           - Added F2 handling to allow jumping to the end of the edited cell
9875           - Added logic to allow moving caret left/right inside edited cell
9876             and making the edited cell jump when the caret hits cell borders
9877           - Tab and Enter are now passed to the datagrid after being handled
9878         * TextBoxBase.cs:
9879           - Removed capture code now that Control handles it
9880           - set_SelectionStart now ensures caret is visible
9882 2006-03-16  Jackson Harper  <jackson@ximian.com>
9884         * TrackBar.cs: Debackwards the increment/decrement for handling
9885         mouse clicks on the bar with vertical trackbars.
9886         * ThemeWin32Classic.cs: Draw vertical trackbars with 0 at the
9887         bottom to match MS.
9889 2006-03-16  Mike Kestner  <mkestner@novell.com>
9891         * ListView.cs: make shift/ctrl keyboard and mouse selection 
9892         consistent with the MS control. Fix a bug in
9893         SelectedListViewItemCollection.Clear that was pissing me off for the
9894         better part of a day because the collection was being altered
9895         underneath us as we walked the list.
9897 2006-03-16  Peter Dennis Bartok  <pbartok@novell.com> 
9899         * Control.cs: Not sure how we could miss this so long, but it seems
9900           that MS.Net has Capture set all the way from before calling 
9901           OnMouseDown through sending the mouse events until after
9902           OnMouseUp. This will fix DataGrid's selection being set to end
9903           at the location of the MouseUp.
9905 2006-03-15  Jackson Harper  <jackson@ximian.com>
9907         * BindingContext.cs: Check the binding after its added so that it
9908           can initialize the binding managers and hookup to events.
9909         * Binding.cs: Data members seem to sometimes include rows/cols in
9910           the format Row.Column we now take this into account.
9911           - Hookup to the position changed event so we can update the
9912           control when the position has changed in the data set.
9913         * CurrencyManager.cs: Take into account the row/col naming
9914           convention when creating dataset tables.
9915         * BindingContext.cs: Using a newer better way of storing
9916           datasource/datamember pairs.  Hopefully this better matches MS for
9917           looking up binding managers.
9920 2006-03-15  Jackson Harper  <jackson@ximian.com>
9922         * BindingContext.cs: The currency manager needs the data member
9923         name, if the member is a data set we use the name to find the
9924         correct table.
9925         * CurrencyManager.cs: When creating the list prefer an IList over
9926         an IListSource.
9927         - Attempt to create a DataTable from a DataSet (TODO: might need
9928         some better error checking here, although MS doesn't seem to have much)
9929         - If we have a DataTable create a view and use it as our list.
9931 2006-03-15  Mike Kestner  <mkestner@novell.com>
9933         * ListView.cs: keep a matrix of the icon mode layout to facilitate
9934         keyboard navigation. Support Up/Down/Left/Right selection correctly
9935         for all 4 View modes.
9936         * ListViewItem.cs: add internal row/col fields for icon layouts.
9938 2006-03-15  Jackson Harper  <jackson@ximian.com>
9940         * TabControl.cs: Redraw the tabs when we resize so their newly
9941         calculated sizes are drawn on screen.
9942         * X11Keyboard.cs: Begginnings of XIM support.  We also now support
9943         composite characters.
9944         * XplatUIX11.cs: Keyboard driver needs to know about focus changes
9945         - filter events so that composite characters can be created
9946         patches by peter
9947         * X11Structs.cs: Add XIMProperties enum.
9949 2006-03-14  Peter Dennis Bartok  <pbartok@novell.com> 
9951         * Control.cs (BringToFront, SendToBack): Don't use window or handle
9952           unless it's created
9954 2006-03-14  Peter Dennis Bartok  <pbartok@novell.com>
9956         * Control.cs (PerformLayout): We don't need to consider visiblity
9957           for anchoring, only for docking. This fixes 'whacky' alignment
9958           in listbox and other controls that use implicit scrollbars after
9959           the previous PerformLayout patch
9960         * ListBox.cs: Switched to use implicit scrollbars
9961           
9962 2006-03-14  Mike Kestner  <mkestner@novell.com>
9964         * ToolBar.cs: 
9965         * VScrollBar.cs:
9966         - chain up the "new event" overrides to base and use
9967         OnEvent to raise them.  Part of fix for bug #76509.
9969 2006-03-14  Alexander Olk  <alex.olk@googlemail.com>
9971         * FileDialog.cs: Do not select an item in the parent directory
9972           on backspace
9974 2006-03-14  Peter Dennis Bartok  <pbartok@novell.com> 
9976         * Control.cs (PerformLayout): It would seem that we considered
9977           invisible windows for our layout. Not quite the right thing
9978           to do. Now we don't any longer, thereby fixing bug #76889.
9980 2006-03-14  Peter Dennis Bartok  <pbartok@novell.com>
9982         * Control.cs (CanFocus): I goofed. A control can have focus 
9983           even though it's not selectable. Made it match MS docs.
9985 2006-03-13  Peter Dennis Bartok  <pbartok@novell.com>
9987         * ControlPaint.cs (DrawBorder3D): DrawBorder3D does not fill the
9988           center by default (fixes #76895)
9989         * ThemeWin32Classic.cs, ThemeNice.cs, ThemeClearlooks.cs: Replaced 
9990           all uses of Border3DSides.All with the explicit ORd together
9991           Left|Right|Top|Bottom because I assume that nobody was aware 
9992           that All also implies a center fill. Most places I checked had
9993           a fill right above.
9994         * ProgressBarStyle.cs: Added
9996 2006-03-13  Mike Kestner  <mkestner@novell.com>
9998         * ListView.cs: fix breakage in drag shadow header positioning 
9999         from Peter's csc compilation fix.
10001 2006-03-13  Mike Kestner  <mkestner@novell.com>
10003         * ListView.cs: fix NRE produced by backspacing twice in a focused
10004         FileDialog.
10006 2006-03-13  Mike Kestner  <mkestner@novell.com>
10008         * ListView.cs: proxy Key(Down|Up) from ItemControl to ListView.
10010 2006-03-13  Peter Dennis Bartok  <pbartok@novell.com>
10012         * Hwnd.cs: Added fixed_size field to track windows whose size cannot
10013           be changed
10014         * XplatUIX11.cs: Now setting fixed_size on hwnd and if set, re-setting
10015           the allowed size before making programmatic size changes
10017 2006-03-13  Peter Dennis Bartok  <pbartok@novell.com> 
10019         * XplatUIX11.cs: Don't call XSetWMNormalHints if no flags are 
10020           set, metacity is broken and will still use the emty sizes in 
10021           the struct. (Fix for #77089)
10023 2006-03-13  Peter Dennis Bartok  <pbartok@novell.com>
10025         * XplatUIStructs.cs: Split WindowStyles into WindowStyles and 
10026           WindowExStyles and marked both enums as Flags
10027         * Form.cs, ComboBox.cs, ToolTip.cs, Control.cs, PropertyGridView.cs,
10028           NotifyIcon.cs, MenuAPI.cs, XplatUIOSX.cs, MonthCalendar.cs: Updated
10029           to match WindowStyles split
10030         * XplatUIX11.cs:
10031           - SetWMStyles: Added cehck to not apply WM attributes to Child windows
10032           - Updated to match WindowStyles split
10033         * XplatUIWin32.cs:
10034           - Fixed FosterParent creation, was using ExStyle on the Style field
10035             (This should help with Popup focus issues)
10036           - Updated to match WindowStyles split
10038 2006-03-13  Jackson Harper  <jackson@ximian.com>
10040         * MdiWindowManager.cs: Use the system menu height. Fixes some
10041         strange sizing issues.
10043 2006-03-12  Peter Dennis Bartok  <pbartok@novell.com>
10045         * RichTextBox.cs: Need to scroll to caret after text is inserted (#77672)
10046         * TextBoxBase.cs:
10047           - Scroll to caret after inserting text (#77672)
10048           - Make scroll range one pixel higher, fixes off-by-one error (and
10049             makes underlines visible on the last line)
10051 2006-03-12  Peter Dennis Bartok  <pbartok@novell.com> 
10053         * XplatUIX11.cs: Added call to new Keyboard.ResetKeyState to prevent
10054           the keyboard state from being stuck with keys in 'pressed' state when
10055           focus is switched away via keyboard
10056         * X11Keyboard.cs: Added new ResetKeyState method to allow drivers to
10057           reset the keyboard if no X11 KeyUp events are expected to come
10058         * X11Structs.cs: Switched type of Visible to bool to match driver
10060 2006-03-12  Peter Dennis Bartok  <pbartok@novell.com>
10062         * TextControl.cs:
10063           - Switched caret to be just 1 pixel wide, matches MS and looks less
10064             clunky
10065           - Moved caret display 1 pixel down from the top of the control
10066             to improve view
10067           - InsertCharAtCharet: Update the selection start if moving the caret
10068             (fixes bug #77696; based on patch suggested by kazuki@panicode.com)
10069           - No longer always creating the caret when the caret methods are
10070             called. Only the actual ShowCaret/HideCaret will do that now
10071           - Only setting caret visible if the owner control has focus
10072           - UpdateView: Added invalidation-shortcut logic for center and right 
10073             aligned text. Previously we'd update all according to the left
10074             logic which caused drawing errors. Also fixed height of invalidated
10075             areas, now properly invalidating the whole area (was off-by-one)
10076           - owner_HandleCreated: Always generate the document when the
10077             handle is created; this ensures that 
10078         * TextBoxBase.cs:
10079           - Fixed situation where caret would disappear under the right
10080             window border, also improved scrolling behaviour on left-
10081             aligned textboxes
10082           - Fixed right-aligned textboxes to have a border to the
10083             right instead of the caret being under the right border
10084         * XplatUIX11.cs:
10085           - Switched from 'nested' to simple visible/not visible tracking 
10086             for caret (part of fix for #77671)
10087           - No longer passing through translated FocusIn/FocusOut messages
10088             since we were notifying too often and the wrong windows. Instead
10089             we just notify our focussed window of receiving or loosing focus
10090         * XplatUIWin32.cs: Switched from 'nested' show/hide 
10091           counting for caret to simple visible yes/no behaviour (part of 
10092           fix for #77671)
10094 2006-03-11  Alexander Olk  <alex.olk@googlemail.com>
10096         * Mime.cs: Remove debug code...
10098 2006-03-11  Alexander Olk  <alex.olk@googlemail.com>
10100         * MimeGenerated.cs: Removed
10101         * Mime.cs: Mime now reads the mime data (magic, globs, aliases
10102           and subclasses) from /usr/(local/)share/mime and
10103           $HOME/.local/share/mime.
10105 2006-03-10  Jackson Harper  <jackson@ximian.com>
10107         * MdiWindowManager.cs: Recalc the NC area when a window is
10108         maximized/restored so that the menu area is drawn on forms that
10109         don't have a menu.
10111 2006-03-10  Peter Dennis Bartok  <pbartok@novell.com>
10113         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs, XplatUIWin32.cs,
10114           XplatUIX11.cs: Added RequestNCRecalc method to driver to allow
10115           us to force a WM_NCCALCRESIZE message being sent. This is needed
10116           for MDI maximizing.
10118 2006-03-10  Jackson Harper  <jackson@ximian.com>
10120         * Form.cs: We need to use the ActiveMenu when calculating menu
10121         height.
10122         - Fix nullref when the window manager hasn't been created yet.
10123         * Control.cs: Fix nullref when we try to bring a control to the
10124         front that has no parent.
10125         * MdiWindowManager.cs: Use the MaximizedMenu for calculating
10126         height.
10127         - Add a dummy item to the maximized menu so it always has the
10128         correct height. Otherwise when there are no menus we don't get our
10129         icon and buttons.
10130         
10132 2006-03-10  Jackson Harper  <jackson@ximian.com>
10134         * MenuAPI.cs: Make this available elsewhere. I need it in some MDI
10135         stuff.
10136         * Form.cs: Make the window_state internal so the window managers
10137         can track it.
10138         - When an MDI child is maximized let its window manager create the
10139         main menu (so it can add its icon).
10140         - Notify the window managers of state changes
10141         - Let the window manager paint its buttons and handle button
10142         clicks on the menu when it is maximized.
10143         * InternalWindowManager.cs: Move the prev_bounds into the mdi
10144         window manager, since tool windows don't use it, only mdi windows.
10145         - Tell the main form that we don't want it to handle NCPAINT
10146         itself to avoid extra painting.
10147         - Handle clicks on a maximized windows menu.
10148         - Handle window state changes
10149         - Handle minimize/maximize clicks correctly by setting the window state.
10150         * MdiWindowManager.cs: Add an icon menu that (the menu you get
10151         when clicking on the forms icon).
10152         - New method to create a forms maximized menu. This is its normal
10153         menu + an icon.
10154         - Handle window state changes.
10155         - Handle sizing of maximized windows.  Maximized windows are just
10156         drawn bigger then the parent visible area. All controls are still
10157         there, they are just outside the visible area (this matches windows).
10158         * MdiClient.cs: No scrollbars when a child window is maximized.
10159         - Let the children windows figure out how big they should be when
10160         sizing maximized windows.
10161         - Implement a version of ArrangeIconicWindows somewhat similar to
10162         Windows version.  There are some little differences, but I don't
10163         think any app will rely on the layout of minimized mdi windows.
10165 2006-03-10  Peter Dennis Bartok  <pbartok@novell.com>
10167         * Padding.cs: Several fixes to allow compiling with csc 2.0
10169 2006-03-09  Jackson Harper  <jackson@ximian.com>
10171         * Menu.cs:
10172         * MenuItem.cs: Cheap hack so we can add items to the list without
10173         the events being raised.  This allows adding mdi items during
10174         drawing. TODO: Should probably find a better time to add the items.
10176 2006-03-10  Peter Dennis Bartok  <pbartok@novell.com>
10178         * ThemeWin32Classic.cs:
10179           - CheckBox_DrawText: Added logic to not wrap if not enough space
10180             is available (Fix for bug #77727)
10181           - RadioButton_DrawText: Added logic not to wrap if not enough
10182             space is available (Fix for bug #77727). Also removed some
10183             duplicate code, DrawString always drawing the regular text
10184             before hitting the if statement.
10186 2006-03-10  Peter Dennis Bartok  <pbartok@novell.com> 
10188         * XplatUIX11.cs: Handle an unmapped window state in SetWindowState
10190 2006-03-10  Peter Dennis Bartok  <pbartok@novell.com>
10192         * PictureBox.cs: Implemented ISupportInitialize interface (fixes #77726)
10193         * ContainerControl.cs: Partial implementation of some 2.0 scaling
10194           methods. Moved the new 2.0 properties into alphabetical order with
10195           other properties and added MonoTODO tags
10197 2006-03-09  Peter Dennis Bartok  <pbartok@novell.com> 
10199         * AutoScaleMode.cs: Added. Fix build.
10201 2006-03-09  Peter Dennis Bartok  <pbartok@novell.com>
10203         * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs, XplatUIWin32.cs, 
10204           XplatUIOSX.cs: Removed HWnd argument from CalcuateClientRect, not used
10205           and was requiring premature handle creation for calls from above
10206         * Form.cs, Control.cs: Removed handle arguments from calls to
10207           CalculateClientRect()
10209 2006-03-09  Peter Dennis Bartok  <pbartok@novell.com> 
10211         * ListView.cs (HeaderMouseMove): Fix csc compilation. 
10212           drag_column.column_rect is MarshalByRef and can't be used that way
10214 2006-03-09  Peter Dennis Bartok  <pbartok@novell.com>
10216         * AxHost.cs: Added deserialization constructor for 
10217           AxHost+State (fixes 77743)
10219 2006-03-09  Mike Kestner  <mkestner@novell.com>
10221         * ListView.cs: 
10222         - Added column drag reordering for details view.
10223         - fixed behavior when mouse is dragged off column and
10224         AllowColumnReorder is false.
10225         * ColumnHeader.cs: clone the format too in Clone.
10226         * Theme.cs: add DrawListViewHeaderDragDetails method.
10227         * ThemeWin32Classic.cs:
10228         - impl new method for drawing drag column shadows and targets.
10229         - support column offset for details mode in DrawListViewItem.
10231 2006-03-09  Peter Dennis Bartok  <pbartok@novell.com>
10233         * TextControl.cs: Reset the char_count when the document is cleared
10234           (Fixes bug reported on mono-winforms mailing list)
10236 2006-03-09  Peter Dennis Bartok  <pbartok@novell.com> 
10238         * TextBoxBase.cs: Honor the Handled state of KeyPress events. Instead
10239           of calling base we simply process the key ourselves, since both
10240           DefWindowProc and the handled method would set m.Result. 
10241           (Fixes #77732)
10243 2006-03-09  Peter Dennis Bartok  <pbartok@novell.com>
10245         * Form.cs(ScaleCore): No longer calling base.ScaleCore since that
10246           method also moves the window; instead implemented a copy of
10247           Control.ScaleCore (Part of fix for #77456)
10248         * TextBoxBase.cs: 
10249           - Created new CreateGraphicsInternal method to allow providing
10250             a graphics context when no handle is created without triggering
10251             handle creation. (Part of fix for #77456)
10252           - Replaced use of Control.CreateGraphics with CreateGraphicsInternal
10253         * TextControl.cs: 
10254           - Switched Constructor to require TextBoxBase instead of Control (to
10255             allow uncast access to CreateGraphicsInternal)
10256           - Safeguarded use of owner.Handle property. No longer accessing it
10257             unless the handle is already created.
10258           - Replaced use of Control.CreateGraphics with CreateGraphicsInternal
10259           - Now triggering a recalc when owning control becomes visible
10260         * TextBox.cs, RichTextBox.cs: Switched to use new internal 
10261           TextBoxBase.CreateGraphicsInternal() method to avoid triggering
10262           premature handle creation (Part of fix for #77456)
10263         * Control.cs:
10264           - We now only destroy our double-buffering buffers when the
10265             control is resized or disposed, but not when visibility
10266             changes. (The code even re-created them twice every time)
10267           - Now requiring a redraw of the buffer on visibility changes
10268             (fixes bug 77654 part 2)
10269           - Not passing OnParentVisibleChanged up unless the control
10270             is visible
10271           - CanFocus: Fixed to match MS documentation
10272           - Focus: Fixed to return actual focus state and to check if
10273             setting focus is legal before setting it
10275 2006-03-08  Peter Dennis Bartok  <pbartok@novell.com>
10277         * ThemeWin32Classic.cs: TabPages cannot have focus. Determine
10278           when to draw focus rectangle by looking at parent focus and
10279           selected state instead. This fixes TabPages on Linux sometimes
10280           having none or multiple focus rectangles.
10281         * XplatUIX11.cs (SetFocus): 
10282           - Don't set the focus if the same window already has focus
10283           - Use SendMessage instead of PostMessage (like it's Win32
10284             equivalent) and send the WM_SETFOCUS before the WM_KILLFOCUS
10285             to match MS behaviour
10286         * TabControl.cs(SelectedIndex): Don't set Focus on TabPage, TabPages
10287           are not selectable.
10289 2006-03-07  Jackson Harper  <jackson@ximian.com>
10291         * PictureBox.cs: Revert line I accidently committed last week.
10293 2006-03-07  Peter Dennis Bartok  <pbartok@novell.com>
10295         * Control.cs: 
10296           - Added new IsRecreating and ParentIsRecreating properties to
10297             allow testing if RecreateHandle has been called on ourselves
10298             or one of our parents
10299           - WndProc(WM_DESTROY): If our control handle is being recreated
10300             we immediately need to create the handle when receiving the
10301             destroy, that way our child windows find a valid parent handle
10302             when they themselves are being recreated upon WM_DESTROY receipt
10303             (fix for bug #77654 part 1)
10304         * XplatUIX11.cs:
10305           - DestroyWindow: WM_DESTROY must be sent to our own window before
10306             notifying any child windows. MS documents that child windows
10307             are still valid when WM_DESTROY is received. (Control now relies on
10308             this behaviour)
10309           - Added some fine-grain debug options
10311 2006-03-06  Jackson Harper  <jackson@ximian.com>
10313         * MdiClient.cs: Redid scrolling logic a bit to create a virtual
10314         box and base calculations off this.
10315         * MdiChildContext.cs:
10316         * MdiWindowManager.cs: Don't need to ensure scrollbars here
10317         anymore.
10318         
10319 2006-03-06  Peter Dennis Bartok  <pbartok@novell.com>
10321         * Splitter.cs: In situations where the affected control is added
10322           to the parent's control list after the splitter, we would not
10323           populate affected. Now we try populating it on mousedown, if
10324           it's not already set, and force it to be re-set whenever our
10325           parent changes.
10327 2006-03-03  Matt Hargett  <matt@use.net>
10329         * Control.cs: implement Control.Padding
10330         * Padding.cs: -Padding.All returns -1 when constructing with the
10331         implicit default ctor
10332         -Padding.ToString() matches MS.NET
10333         * ContainerControl.cs: implement
10334         ContainerControl.AutoScaleDimensions
10335         * ListControl.cs: implement ListControl.FormattingEnabled
10336         * TextBox.cs: Implemented TextBox.UseSystemPasswordChar.
10337         * ButtonBase.cs:
10338         * TabPage.cs: Implement UseVisualStyleBackColor.
10339         * PictureBox.cs: Implement PictureBox.InitialImage.
10341 2006-03-03  Mike Kestner  <mkestner@novell.com>
10343         * ListView.cs: Refactor into HeaderControl and ItemControl. Fix new
10344         event declarations to proxy to base event.
10345         * ListViewItem.cs: update to use ItemControl.
10346         * Theme.cs: make DrawListViewHeader. s/DrawListView/DrawListViewItems.
10347         * ThemeWin32Classic.cs: update to new ListView theme API and fix
10348         column header label rendering for 0 width columns.
10350 2006-03-03  Peter Dennis Bartok  <pbartok@novell.com>
10352         * Control.cs (ControlCollection.SetChildIndex): Avoid using a call
10353           that causes the control to be created. Fixes #77476.
10355 2006-03-02  Jackson Harper  <jackson@ximian.com>
10357         * Hwnd.cs: Clear the nc pending when clearing the NC area, not the
10358         expose_pending.
10360 2006-03-02  Peter Dennis Bartok  <pbartok@novell.com>
10362         * Control.cs: Implemented 2.0 feature where OnClick has MouseEventArgs
10363           passed in for the EventArgs (fixes #77690)
10365 2006-03-01  Jackson Harper  <jackson@ximian.com>
10367         * ScrollBar.cs: Refresh afterbeing resized.
10369 2006-02-28  Mike Kestner  <mkestner@novell.com>
10371         * MenuAPI.cs: Call PerformPopup internal method to emit Popup.
10372         Clean up a tracker compile warning.
10373         * MenuItem.cs: add internal PerformPopup method.
10374         [Fixes #77457]
10376 2006-02-28  Peter Dennis Bartok  <pbartok@novell.com> 
10378         * TextBoxBase.cs (set_Text): Recalculate the document (causing an
10379           implicit expose) when the text is set to null
10381 2006-02-28  Peter Dennis Bartok  <pbartok@novell.com>
10383         * RichTextBox.cs (FlushText): When newline is true, we always
10384           need to split the line, even if no text is on it and we may
10385           never eat newlines. (Fixes #77669)
10387 2006-02-28  Mike Kestner  <mkestner@novell.com>
10389         * ListView.cs: Add UpdateSelection internal method. Remove SelectItem 
10390         and set Selected instead.
10391         * ListViewItem.cs: Call owner.UpdateSelection to manipulate the 
10392         collections.
10394 2006-02-28  Peter Dennis Bartok  <pbartok@novell.com> 
10396         * ComboBox.cs: Allow setting SelectedIndex to -1. Fixes #77665
10398 2006-02-28  Alexander Olk  <alex.olk@googlemail.com>
10400         * FontDialog.cs:
10401           - Got rid of the panel. All controls are now directly added to
10402             the dialog form
10403           - It is now possible to set a font with the Font property
10404           - MinSize and MaxSize property do now what they should
10405           - ShowApply, ShowHelp, ShowColor, ShowEffects likewise
10406           - Searching and selecting a font with the font textbox works now,
10407             the same applies to the style and size textbox
10408           - Draw the correct 3D border in the example panel
10409           - Fixed a little mem leak (unused fonts didn't get disposed)
10410           - Many other internal updates/rewrites...
10411           - Fix typo
10413 2006-02-27  Peter Dennis Bartok  <pbartok@novell.com> 
10415         * TextControl.cs: 
10416           - InsertRTFFromStream: Added 'number of characters inserted' argument
10417           - set_SelectedRTF: Now using the number of characters to calculate
10418             the new location for the selection and cursor (x/y cannot be used
10419             due to potentially already wrapped text)
10421 2006-02-27  Peter Dennis Bartok  <pbartok@novell.com>
10423         * TextControl.cs: Added property and implemented means to allow 
10424           disabling recalculation of a document (can be used to speed up
10425           multiple inserts and is needed to make RTF inserts predictable, see
10426           bug #77659)
10427         * RichTextBox.cs: Using the new NoRecalc property of Document to
10428           keep x/y insert locations predictable. Also makes it faster inserting
10429           large chunks of RTF
10431 2006-02-27  Peter Dennis Bartok  <pbartok@novell.com> 
10433         * Control.cs: Separated special WM_SYSKEYUP keyboard handling. That way
10434           it's easier for a child control to handle the other messages without
10435           having to duplicate the special functionality
10436         * TextBoxBase.cs
10437           - WndProc: Removed calling base handler for WM_KEYDOWN and added 
10438             code to handle processing the key ourselves, in order to get 
10439             access to the result of KeyEventArgs.Handled. We now only call 
10440             ProcessKey if they key hasn't been handled already. Fixes #77526.
10441           - set_Text: If null or empty string is given, just clear the 
10442             document. Fixes part of #77526
10444 2006-02-27  Jackson Harper  <jackson@ximian.com>
10446         * SizeGrip.cs: Paint the background color before painting the grip
10447         so things look right.
10448         * MdiClient.cs: Add the sizegrip when both scrollbars are used.
10450 2006-02-27  Mike Kestner  <mkestner@novell.com>
10452         * ListView.cs:
10453           - Restructure layout and invalidation model to remove a ton of
10454           flicker from the control and speed up performance in general.
10455           - Add manual column resize, flickers like crazy, but I already have
10456           some ideas on how I'll fix that. (#76822)
10457           - Merge the three Icon-based views into a single layout method.
10458           - Move item selection interaction logic from the item since 
10459           interaction with the collections is more appropriate to the view.
10460           - Deselection on non-item clicks.
10461         * ListViewItem.cs:
10462           - Encapsulate most of the layout. Add some internal props to trigger
10463           layout.  Move to a model where Items invalidate themselves instead
10464           of just invalidating the whole control every time something changes.
10465           - Invalidate on Text/Caption changes.
10466           - switch to an offset based layout model to avoid having to absolute
10467           position every element on item moves.
10468           - correct checkbox layout to conform to MS layout.
10469         * ThemeWin32Classic.cs:
10470           - refactor some column header drawing code.
10471           - fix string justification for column headers (#76821)
10472           - make SmallIcon labels top justified for compat with MS impl.
10473         * ThemeClearlooks.cs:
10474           - adjust to new ListViewItem internal checkbox bounds api.
10476 2006-02-27  Jackson Harper  <jackson@ximian.com>
10478         * Control.cs:  Change where implicit controls fall in the zorder.
10479         They are now on top of all children.
10480         - Synced AddImplicit code with Add
10481         - Removed unused enumerator.
10482         * SizeGrip.cs: Remove the TODO as its been TODONE.
10484 2006-02-26  Peter Dennis Bartok  <pbartok@novell.com> 
10486         * TextControl.cs(Insert): Combine the last lines unless the insertion
10487           string ends with \n\n, otherwise we leave one line too many (Fixes
10488           something I noticed with the testapp for #77526; the bug itself was
10489           already fixed in the previous checkin)
10491 2006-02-26  Peter Dennis Bartok  <pbartok@novell.com>
10493         * RichTextBox.cs:
10494           - SelectionColor and SelectionFont methods no longer set absolute
10495             styles. Instead, the keep font or color respectively (This 
10496             resolves a long-standing FIXME in the code)
10497           - When flushing RTF text, the insert code now considers text trailing
10498             behind the insertion point (Fixes the bug where when replacing
10499             the selected text via SelectedRTF the remainder of the line behind 
10500             the selection would stay on the first insertion line)
10501         * TextBoxBase.cs:
10502           - AppendText now updates the selection points after inserting text
10503           - AppendText now ensures that the last tag (sometimes 0-length) of
10504             the document is used for the style information (Fixes part of 
10505             bug #77220)
10506         * TextControl.cs:
10507           - Created new FontDefiniton class to allow describing partial style
10508             changes
10509           - StreamLine() now takes a lines argument, to allow it to decide
10510             whether an encountered zero-length tag is the last in the document
10511             (which must be kept to not loose the font/color contained in it,
10512             for later appends)
10513           - Created Combine() and Split() methods for Marker structs, to 
10514             support marker updates due to reformatted documents (soft line
10515             wraps)
10516           - Implemented Document.CaretTag setter
10517           - Fixed MoveCaret(CtrlEnd) handling, now moves to the last character
10518             of the last line (Not the cause, but also exposed by bug #77220)
10519           - Added LineTag argument to InsertString method, to allow callers
10520             to force a certain tag to be used (required to force use of the
10521             trailing zero-length tag of a document)
10522           - Now updating markers in Combine(), to avoid stale tag markers
10523           - Added some method descriptions to aid maintenance
10524           - Implemented new FormatText concept, allowing additive/subtractive
10525             formatting by only specifying the components that are to be 
10526             changed. This was needed for resolving the RTB.SelectedColor/
10527             RTB.SelectedFont fixmes
10528           - Added Break() support method to allow breaking up linetags (used
10529             for partial formatting)
10530           - Added GenerateTextFormat() method. It is used for partial 
10531             formatting and allows to generate a full font/color from given
10532             attributes and an existing tag.
10534 2006-02-26  Jackson Harper  <jackson@ximian.com>
10536         * XplatUIX11.cs:  Use the correct caption height.
10537         - Translate hittest coordinates to screen coords to match MS.
10538         * XplatUIWin32.cs: When we create MDI windows we need to reset
10539         some of the style flags, so we get a nice blank window, and can
10540         draw all the decorations ourselves.
10541         - Set a clipping rectangle on the non client paint event, the
10542         window manager drawing code needs one.
10543         * Form.cs: The window manager needs to know when the window state
10544         has been updated.
10545         * Hwnd.cs: The window manager stuff now does a proper NCCALC so we
10546         don't need to factor in border and title sizes in these
10547         methods. TODO: Remove the args and fix the call points.
10548         * InternalWindowManager.cs: Handle NCHITTEST and NCCALCAREA
10549         properly.
10550         - Let the driver set the cursors.
10551         - Improve active window handling
10552         - Correct sizes for title bars and buttons.
10553         - Match MS drawing better
10554         * MdiWindowManager.cs: We don't need to handle border style
10555         updates specially anymore.
10556         - Check for scrollbars when windows are done moving
10557         - Handle Active properly.
10558         * MimeIcon.cs: Don't crash when we can't load the GNOME stuff
10559         correctly. I am spewing the exception though, so we don't hide the
10560         bugs.
10561         
10562 2006-02-26  Pedro Martinez Julia  <pedromj@gmail.com>
10564         * DataGridViewRowPostPaintEventArgs.cs,
10565           DataGridViewCellPaintingEventArgs.cs,
10566           DataGridViewRowCollection.cs,
10567           DataGridViewRowPrePaintEventArgs.cs,
10568           DataGridViewCell.cs: Clear a few warnings and implement a few
10569           exceptions that should be thrown.
10571 2006-02-22  Peter Dennis Bartok  <pbartok@novell.com>
10573         * ScrollBar.cs (ctor): Explicitly set a cursor to avoid
10574           'inheriting' our parent's (non-default) cursor. (Part of
10575            the fix for #77479)
10577 2006-02-22  Peter Dennis Bartok  <pbartok@novell.com> 
10579         * XplatUIX11.cs: Fixed cast to make csc happy
10581 2006-02-22  Peter Dennis Bartok  <pbartok@novell.com>
10583         * Control.cs (WndProc): Only handle WM_SETCURSOR messages if
10584           it's for the client area (part of fix for #77479 and needed
10585           for MDI window cursor handling)
10586         * XplatUIX11.cs
10587           - DefWindowProc: Now handles the WM_SETCURSOR messages, setting
10588             the appropriate default cursors and also passing the message
10589             up the parent chain 
10590           - GetMessage: Now generating WM_NCHITTEST and WM_SETCURSOR even
10591             for non-client areas
10593 2006-02-15  Jackson Harper  <jackson@ximian.com>
10595         * XplatUIWin32.cs: Since we fake MDI dont tell Windows that this
10596         is a real MDI window
10598 2006-02-14  Alexander Olk  <alex.olk@googlemail.com>
10600         * X11DesktopColors.cs: Instead of checking the desktop session
10601           string for "KDE" check if it starts with "KDE"
10603 2006-02-10  Jackson Harper  <jackson@ximian.com>
10605         * XplatUIX11.cs: These should be unsigned (fixes crash on 32 bit
10606         systems).
10608 2006-02-10  Alexander Olk  <alex.olk@googlemail.com>
10610         * FileDialog.cs: Added Refresh to RunDialog to fix some drawing
10611           errors
10612         * ColorDialog.cs:
10613           - Got rid of the panel. All controls are now directly added to
10614             the dialog form
10615           - Changed to mono coding style
10617 2006-02-10  Jackson Harper  <jackson@ximian.com>
10619         * InternalWindowManager.cs: We don't need the set visibility to
10620         false hack anymore now that peter has written beautiful shutdown
10621         code.
10623 2006-02-10  Peter Dennis Bartok  <pbartok@novell.com>
10625         * XplatUIX11.cs: Ignore DestroyNotify messages for windows that
10626           where already explicitly destroyed
10628 2006-02-10  Jackson Harper  <jackson@ximian.com>
10630         * MdiClient.cs: Handle the case where windows are too high or to
10631         the left and we need scrollbars.
10633 2006-02-10  Alexander Olk  <alex.olk@googlemail.com>
10635         * MimeIcon.cs: Added some icons
10636         * FileDialog.cs:
10637           - Fixed bug #77477
10638           - Got rid of the panel. All controls are now directly added to
10639             the dialog form
10640           - Changed to mono coding style
10641           - On Linux "My Computer" and "My Network" will now show some
10642             more usefull information. A new class, MasterMount, gathers
10643             this information from /proc/mount. Updated MWFFileView to make
10644             use of this information
10645           - Fixed a bug that caused FileDialog to crash when
10646             ".recently_used" file had a zero size
10647           - FilterIndex does now what it should
10648           - Some Refactoring
10649         * OpenFileDialog.cs, SaveFileDialog.cs: Updated to reflect latest
10650             FileDialog changes
10652 2006-02-09  Jackson Harper  <jackson@ximian.com>
10654         * ComboBox.cs: Don't touch if null.
10656 2006-02-09  Peter Dennis Bartok  <pbartok@novell.com>
10658         * Cursor.cs: 64bit safeness fix
10659         * XplatUIX11.cs: Removed several unneeded and one moronic cast.
10661 2006-02-09  Jackson Harper  <jackson@ximian.com>
10663         * Form.cs: If a form is made into an MDI form update the styles so
10664         all the props can get set correctly.
10665         - Kill the mdi_container when we dont need it anymore.
10666         * InternalWindowManager.cs: Add missing NOT
10668 2006-02-08  Jackson Harper  <jackson@ximian.com>
10670         * InternalWindowManager.cs: Respek clipping when drawing MDi
10671         decorations.
10673 2006-02-08  Jackson Harper  <jackson@ximian.com>
10675         * Hwnd.cs: Add bits to track non client expose events.
10676         * XplatUIX11.cs: Track non client expose events on the hwnd. This
10677         gives us a proper invalid rect and will allow for some nice
10678         optimizations with NC client drawing
10679         - MDI windows are children windows, so move their style handling
10680         into the child window block.
10681         * InternalWindowManager.cs: Remove a state reset that was
10682         getting invoked at the wrong time. Fixes managed windows getting
10683         into a 'stuck' captured state.
10685 2006-02-07  Peter Dennis Bartok  <pbartok@novell.com>
10687         * TextControl.cs (Document.ctor): Now initializing 
10688           selection_anchor. Fixes #77493
10690 2006-02-07  Jackson Harper  <jackson@ximian.com>
10692         * TrackBar.cs: The increment/decrements were backwards.
10694 2006-02-07  Mike Kestner  <mkestner@novell.com>
10696         * Theme*.cs : remove ThemeEngine.Current usage as it just points back
10697         to the instance itself.
10699 2006-02-07  Peter Dennis Bartok  <pbartok@novell.com>
10701         * X11DesktopColors.cs, ThemeGtk.cs: The GObject structure is based
10702           on ulongs and pointers, the size differs between 32bit and 64bit
10703           systems. 
10705 2006-02-07  Mike Kestner  <mkestner@novell.com>
10707         * XplatUIX11.cs : force the WorkingArea away from XGetWindowProperty
10708         for 64 bit platforms to work around a metacity bug. 
10710 2006-02-07  Jackson Harper  <jackson@ximian.com>
10712         * TrackBar.cs: Process the input keys we need, and hookup to
10713         KeyDown instead of using WndProc, so we get key messages.
10715 2006-02-06  Peter Dennis Bartok  <pbartok@novell.com>
10717         * XplatUIX11.cs: Atoms are only 32bit on the wire, no matter what
10718           machine we're on. 
10719         * X11Dnd.cs(SetAllowDrop): Since atoms are always 32bit on the wire
10720           we need to translate the XdndVersion atoms array before sending it
10722 2006-02-06  Peter Dennis Bartok  <pbartok@novell.com> 
10724         * XplatUIX11.cs: 
10725           - The preceeding 64bit fixes had a bug: ChangeProperty expects the
10726             number of bits for the property, not the number of bytes. The
10727             change to provide IntPtr.Size broke 32bit. (64bit was also wrong
10728             but would not crash since it specified 8 bits instead of 4 bits)
10729           - More 64bit fixes: Switched all atoms from int to IntPtr (they are
10730             defined as XID -> long in the C headers)
10731           - Removed 'new IntPtr((int))' and '(IntPtr)' casts from all NetAtoms 
10732             references since those are now IntPtr to begin with
10733           - Switched all Atom.XXX 'int' casts to IntPtr casts
10734           - Fixed XGrabPointer DllImport signature to work for 64bit (cursor arg)
10735           - Fixed XInternAtom signature for 64bit, now returns an IntPtr
10736           - Added XChangeActivePointerGrab DllImport (for X11DnD)
10737         * X11Structs.cs:
10738           - Changed 'int' type for Atoms in XEvent structures to IntPtr
10739           - Changed atom in HoverStruct to be IntPtr
10740         * X11DnD.cs:
10741           - Removed local DllImports, switched code to use those from XplatUIX11
10742           - Removed/fixed casts related to the switch of Atom to be a IntPtr
10744 2006-02-06  Mike Kestner  <mkestner@novell.com>
10746         * XplatUIX11.cs : many more 64 bit pinvoke changes.  I've audited all the 
10747         method signatures in the import region.  There may still be some
10748         lingering struct marshaling issues, as I didn't drill down into those.
10749         Yet.
10751 2006-02-06  Jackson Harper  <jackson@ximian.com>
10753         * ComboBox.cs: Dont manually set the top_item, this is computed
10754         when the scrollbar position is set.
10756 2006-02-06  Mike Kestner  <mkestner@novell.com>
10758         * XplatUIX11.cs : 64 bit changes to XGetWindowProperty usage. Fixes
10759         startup crashes on amd64.  There's other fixes needed.  All pinvoke
10760         usage of Atom needs to be mapped to IntPtr for example.  And there are
10761         likely other int/long issues to be addressed.
10763 2006-02-04  Alexander Olk  <alex.olk@googlemail.com>
10765         * FileDialog.cs: One more...
10767 2006-02-03  Alexander Olk  <alex.olk@googlemail.com>
10769         * FileDialog.cs: Next try
10771 2006-02-03  Alexander Olk  <alex.olk@googlemail.com>
10773         * FileDialog.cs: First part of fix for #77464
10775 2006-02-03  Alexander Olk  <alex.olk@googlemail.com>
10777         * ButtonBase.cs, ContainerControl.cs, Forms.cs,
10778           ThemeWin32Classic.cs: Fix for #77458. Correct handling of
10779           AcceptButton border drawing.
10781 2006-02-03  Peter Dennis Bartok  <pbartok@novell.com> 
10783         * Form.cs: Moved positioning of form after auto scaling is applied,
10784           otherwise it would possibly use wrong form size.
10786 2006-02-03  Peter Dennis Bartok  <pbartok@novell.com>
10788         * Control.cs (RecreateHandle): No need to re-create any child
10789           controls, the child windows will get destroyed automatically by
10790           the windowing system or driver, and re-created when the handle
10791           is being accessed the first time. Fixes #77456
10792         * Form.cs: No longer setting the form to closing if the handle is 
10793           being recreated. This seems like the right thing to do, don't
10794           have a bug or testcase for this, though.
10796 2006-02-02  Peter Dennis Bartok  <pbartok@novell.com>
10798         * FileDialog.cs: Suspend/Resume layouting when changing sizes of
10799           controls to avoid unwanted side effects
10801 2006-02-02  Peter Dennis Bartok  <pbartok@novell.com> 
10803         * Control.cs: 
10804           - ScaleCore needs to scale the bounds, not the ClientSize of the 
10805             control. Fixes #77416.
10806           - DefaultSize is 0,0 for control
10807         * TextBoxBase.cs: 
10808           - DefaultSize is 100, 20
10809           - SetBoundsCore: Now enforcing the height, no matter if the provided
10810             height is more or less than the preferred one, as long as AutoSize
10811             is on
10812         * Form.cs: Apply documented fudge factor. Part of item 3 fix for #77416
10814 2006-02-02  Peter Dennis Bartok  <pbartok@novell.com>
10816         * Control.cs:
10817           - ResumeLayout: Fixed logic when to call PerformLayout, we may not
10818             call unless both performLayout is true *and* we have a pending
10819             layout change
10820           - ResumeLayout: MS does not completely nest Suspend and Resume,
10821             they bottom out at 0, fixed our code to match that.
10822           - UpdateBounds/SetBoundsCore: Moved calling of UpdateDistances() to
10823             SetBoundsCore, we were updating even when we shouldn't. This fixes
10824             swf-anchors mis-anchoring when resizing the app fast and lots.
10825           - UpdateDistances: Now only setting the left and top distance if 
10826             we have a parent and are not suspended, this is based on
10827             a suggestion by Don Edvaldson in bug #77355.
10828           - OnVisibleChanged: Fixed logic when to create the control. We may
10829             not create the control if we have no parent or if it's not visible;
10830             switched to using Visible property instead of is_visible field 
10831             since the property also considers parent states. This fixes a bug
10832             when starting Paint.Net
10834 2006-02-02  Jackson Harper  <jackson@ximian.com>
10836         * Form.cs: If the forms handle hasn't been created yet don't call
10837         into xplatui to make it top most, just set the topmost flag on the
10838         form in CreateParams
10839         * XplatUIX11.cs: Handle WS_EX_TOPMOST.
10841 2006-02-01  Jackson Harper  <jackson@ximian.com>
10843         * ScrollableControl.cs: Refactored the Recalculate method a
10844         little, this wasn't handling all the variants of bottom and right
10845         bars needed to be added and added/removed based on their
10846         counterparts being added/removed (which changes the drawable
10847         size). Also we special case client widths and heights of 0 and
10848         don't add the scrollbar for those.
10850 2006-02-01  Peter Dennis Bartok  <pbartok@novell.com>
10852         * XplatUIX11.cs: 
10853           - Added method to get AbsoluteGeometry(); currently unused, but might
10854             be used in the future, if we try again to figure out toplevel
10855             coordinates with some more crappy window managers
10856           - Added FrameExtents() method to retrieve the WM set decoration size
10857           - Tried to fix up AddConfigureNotify and handling of ReparentNotify 
10858             to deal with at least KDE, FVWM and metacity (Fixes #77092)
10859         * Hwnd.cs: 
10860           - Added whacky_wm tracking var for metacity
10861           - Added logic to have default menu height if the actual menu height
10862             has not yet been calculated (part of fix for #77426)
10863         * Form.cs: Keep track whether client size has been set and re-set 
10864           it if a menu is added/removed afterwards (Fixes #77426)
10866 2006-01-31  Jackson Harper  <jackson@ximian.com>
10868         * Control.cs: When a new Site is set on the component attempt to
10869         pull the AmbientProperties from it.
10871 2006-01-31  Peter Dennis Bartok  <pbartok@novell.com>
10873         * ThemeWin32Classic.cs: Menu background is drawn in ColorMenu, not
10874           in the background of the owning form. Fixes #77332
10876 2006-01-31  Alexander Olk  <alex.olk@googlemail.com>
10878         * MimeIcon.cs: Fix for #77409
10880 2006-01-31  Alexander Olk  <alex.olk@googlemail.com>
10882         * XplatUIX11GTK.cs: Initial import
10884 2006-01-31  Jordi Mas i Hernandez <jordimash@gmail.com>
10886         * FixedSizeTextBox: fixes class signature
10888 2006-01-30  Jackson Harper  <jackson@ximian.com>
10890         * FixedSizeTextBox.cs: New internal class that represents a
10891         textBox that will not be scaled.
10892         * TreeView.cs:
10893         * ComboBox.cs:
10894         * UpDownBase.cs: Use the new FixedSizeTextBox instead of a
10895         standard TextBox.
10896                 
10897 2006-01-30  Peter Dennis Bartok  <pbartok@novell.com> 
10899         * XplatUIX11.cs: Retrieve default screen number instead of
10900           assuming 0. Attempted fix for #77318
10902 2006-01-30  Peter Dennis Bartok  <pbartok@novell.com>
10904         * XplatUIWin32.cs: 
10905           - GetWindowPos: When a window is parented by FosterParent, use 
10906             the desktop instead of FosterParent as the base to get coordinates
10907           - CreateWindow: Don't make FosterParent the parent window for Popups
10908             if we don't want a taskbar entry, Popups automatically don't get one
10909         * Hwnd.cs: Need to call remove to actually remove the key from the
10910           hash table
10912 2006-01-30  Mike Kestner  <mkestner@novell.com>
10914         * MenuAPI.cs: adjust MainMenu item popup location to y=0.
10916 2006-01-30  Jackson Harper  <jackson@ximian.com>
10918         * TreeView.cs:
10919         * TreeNode.cs: Raise events no matter how the treenode is
10920         checked. Patch by Don Edvalson.
10922 2006-01-30  Jackson Harper  <jackson@ximian.com>
10924         * TreeNode.cs: Signature fix.
10926 2006-01-29  Alexander Olk  <alex.olk@googlemail.com>
10928         * ThemeClearlooks.cs: Fixed a crash in ProgressBar drawing.
10930 2006-01-20  Mike Kestner  <mkestner@novell.com>
10932         * Form.cs: Add ActiveTracker property to do Captures and perform mouse
10933         event forwarding when menus are active.
10934         * MenuAPI.cs: kill the GrabControl hack.  Use Form.ActiveTracker.
10935         Most of the patch is pdb's with a little rework.
10937 2006-01-26  Peter Dennis Bartok  <pbartok@novell.com> 
10939         * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs, XplatUIOSX.cs: 
10940           Removed GetMenuDC and ReleaseMenuDC methods; replaced
10941           by PaintEventStart(handle, false) and PaintEventEnd(handle, false)
10942         * Form.cs: Changed WM_NCPAINT handler to use PaintEventStart and End
10943         * InternalWindowManager.cs: Added use of PaintEventStart/End to
10944           handling of WM_NCPAINT message, now passing the PaintEventArgs to
10945           the PaintWindowDecorations method
10946         * MainMenu.cs: Switched logic from GetMenuDC to PaintEventStart
10947         * MdiChildContext.cs: Switched logic from GetMenuDC to PaintEventStart
10948         * MenuAPI.cs: Made tracker window invisible
10949         * XplatUIWin32.cs:
10950           - Removed GetMenuDC and ReleaseMenuDC methods
10951           - Implemented the client=false path for PaintEventStart and
10952             PaintEventEnd
10954 2006-01-26  Peter Dennis Bartok  <pbartok@novell.com>
10956         * XplatUIWin32.cs(SetBorderStyle): Fixed3D needs a border
10957         * XplatUIX11.cs(DeriveWindowStyles): Updated to match fixed Form
10958           styles
10959         * Form.cs: 
10960           - MaximizeBox, MinimizeBox: Recreate the handle when setting
10961             the style
10962           - CreateParams: Reworked the styles to match MS look'n'feel,
10963             removed automatic setting of MinimizeBox, MaximizeBox, etc. via
10964             the WS_OVERLAPPEDWINDOW style. This fixes #76823.
10966 2006-01-26  Peter Dennis Bartok  <pbartok@novell.com> 
10968         * XplatUIX11.cs(GetWindowState): Now throwing an exception when the 
10969           window is not mapped, since otherwise every form that's being 
10970           created is considered minimized, which is wrong.
10971         * Form.cs: Catching the exception and returning our internal value
10972           instead
10974 2006-01-26  Peter Dennis Bartok  <pbartok@novell.com>
10976         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs: Added new driver method
10977           SetWindowMinMax() to have means to tell the driver about the minimum,
10978           maximum and maximized state window sizes. (Part of the fix for #76485)
10979         * Form.cs:
10980           - Implemented tracking of minimum and maximum window size, now calling
10981             new SetWindowMinMax() driver method to tell the driver (Part of the
10982             fix for #76485)
10983           - Finished handling of WM_GETMINMAXINFO method, now setting all values
10984             (Completes fix for #76485)
10985           - Calling new SetWindowMinMax driver method when the handle for a 
10986             form is created, to make sure the driver knows about it even if
10987             the values have been set before the window was created
10988           - Now eating the WM_WINDOWPOSCHANGED message if the form is minimized
10989             to avoid messing up our anchoring calculations (partial fix
10990             for #77355)
10991         * XplatUIStructs.cs: Added MINMAXINFO struct (moved from Win32 driver)
10992         * XplatUIX11.cs:
10993           - Added _NET_WM_STATE_HIDDEN property for detecting minimized state
10994           - Improved GetWindowState() to detect 'Minimized' state on Metacity 
10995             (and presumably other freedesktop.org compliant WMs). Left the
10996             assumption unmapped=minimized, needed for SetVisible to work.
10997           - Now setting the window state when creating windows
10998           - Fixed SetVisible to consider/set the window state when mapping
10999             a Form. We cannot set the state before it's mapped, and we cannot
11000             use Form.WindowState once it's mapped (since it would ask the
11001             driver and get 'normal'. Therefore, we grab the state before
11002             mapping, map, and then set state.
11003           - Implmemented SetWindowMinMax method; Metacity does not seem to
11004             honor the ZoomHints, though.
11005         * XplatUIWin32.cs:
11006           - Removed MINMAXINFO (moved to XplatUIStructs)
11007           - Added SetWindowMinMax stub (on Win32 the only way to set that
11008             information is in response to the WM_GETMINMAXINFO message, which
11009             is handled in Form.cs)
11010           - Added logic to SetVisible to set the proper window state when a 
11011             form is made visible (fixes #75720)
11013 2006-01-26  Jackson Harper  <jackson@ximian.com>
11015         * Control.cs (BeginInvoke): Automagically handle EventHandlers the
11016         same way we handle them with Invoke.
11018 2006-01-25  Peter Dennis Bartok  <pbartok@novell.com> 
11020         * Form.cs:
11021           - Added tracking of window state so CreateParams can return
11022             the appropriate style
11023           - Moved setting of WS_CAPTION style in CreateParams to allow
11024             styles without caption
11025         * DataGridTextBoxColumn.cs: We are now also creating the TextBox 
11026           control if the TextBox property is accessed. Fixes #77345
11027         * Control.cs:
11028           - get_Created: now uses is_disposed and is_created to determine
11029             return value (suggested by Jackson)
11030           - CreateHandle: No longer exits if the handle is being recreated
11031           - RecreateHandle: If the handle is not yet created call the 
11032             appropriate method to create either control or handle. If the
11033             control is already created CreateHandle will simply exit instead
11034             of just creating the handle
11035         * Hwnd.cs: Removed expose_pending tracking, no longer needed since we
11036           now SendMessage WM_DESTROY directly to the control when DestroyWindow
11037           is called.
11038         * XplatUIX11.cs: 
11039           - When DestroyWindow is called, instead of waiting for the 
11040             DestroyNotification from X11, we directly post it to the WndProc
11041             and immediately dispose the hwnd object.
11042             Same applies to DestroyChildWindows, and this obsoletes the
11043             expose_pending tracking. Contrary to Win32 behaviour we destroy our
11044             child windows before our own, to avoid X11 errors.
11045           - Removed the direct sending of WM_PAINT on UpdateWindow
11046         * XplatUIWin32.cs:
11047           - Reworked DoEvents and GetMessage to allow access to internal queue
11048             even when trying non-blocking access to the queue.  Fixes #77335. 
11049             Based on a patch suggestion by Don Edvalson. The new private
11050             GetMessage can now also be used as a backend for a PeekMessage
11051             frontend version.
11052         * XplatUI.cs: Improved debug output for CreateWindow
11054 2006-01-25  Jackson Harper  <jackson@ximian.com>
11056         * Help.cs: Allow param to be null. Patch by Don Edvalson.
11058 2006-01-24  Jackson Harper  <jackson@ximian.com>
11060         * ComboBox.cs: Clamp the max value set for the vertical scrollbar
11061         when we have a MaxDropItems lower then the selected index.
11063 2006-01-24  Jackson Harper  <jackson@ximian.com>
11065         * Control.cs: Don't allow selection of non visible controls, allow
11066         selection of controls without parents.
11068 2006-01-24  Jordi Mas i Hernandez <jordimash@gmail.com>
11070         * ThemeWin32Classic.cs: Fixes Datagrid drawing issues
11071         * DataGridDrawingLogic.cs: Add editing row only when is necessary
11073 2006-01-23  Jackson Harper  <jackson@ximian.com>
11075         * UpDownBase.cs: Make the textbox handle all the selection and
11076         tabbing. This fixes tabing to updown controls.
11078 2006-01-24  Jordi Mas i Hernandez <jordimash@gmail.com>
11080         * TextBoxBase.cs: fixes exception thown the object was null
11082 2006-01-23  Jackson Harper  <jackson@ximian.com>
11084         * ButtonBase.cs: Just use the base CreateParams. They set
11085         visibility and enabled correctly.
11086         * ComboBox.cs:
11087         * TrackBar.cs:
11088         * MonthCalendar.cs: Lets let the base set as much of the
11089         createparams as possible so we don't have duplicate code all over
11090         the place.
11092 2006-01-22  Alexander Olk  <alex.olk@googlemail.com>
11094         * ThemeGtk.cs: Added TrackBar and some experimental code to
11095           get double buffering back
11097 2006-01-21  Jordi Mas i Hernandez <jordimash@gmail.com>
11099         * DataGrid.cs: Allows row number set internally higher than the last
11100         when creating a new row. Restores the editing functionality.
11102 2006-01-20  Mike Kestner  <mkestner@novell.com>
11104         * MimeIcon.cs: delay Image creation until the icons are accessed
11105         instead of creating 190 scaled images on GnomeHandler startup.
11107 2006-01-19  Peter Dennis Bartok  <pbartok@novell.com> 
11109         * TextBoxBase.cs (WndProc): When handling WM_KEYDOWN we need to
11110           first call base before processing the event. Fixes #77279
11112 2006-01-19  Peter Dennis Bartok  <pbartok@novell.com>
11114         * XplatUIWin32.cs, Cursor.cs: Fixed code that wrongly assumed
11115           that the stride for the GDI bitmap would match the stride of
11116           a DIB or a Cursor.
11118 2006-01-19  Alexander Olk  <alex.olk@googlemail.com>
11120         * ThemeGtk.cs: Added ProgressBar, RadioButton, CheckBox
11122 2006-01-19  Jackson Harper  <jackson@ximian.com>
11124         * ComboBox.cs: Hookup the text controls keydown event so we get
11125         those when the text control has the focus.
11127 2006-01-18  Peter Dennis Bartok  <pbartok@novell.com> 
11129         * Label.cs: Now using the base events instead of defining new ones;
11130           this allows us to just call the base properties without having to
11131           duplicate all base property logic 
11133 2006-01-18  Peter Dennis Bartok  <pbartok@novell.com>
11135         * Label.cs: A label by default is not a tabstop (Fixes one of our
11136           failing nunit tests)
11138 2006-01-18  Peter Dennis Bartok  <pbartok@novell.com> 
11140         * XplatUIWin32.cs: Fixed wrong DoEvents logic. Fixes #77282
11141         * XplatUIX11.cs: Removed WM_PAINT check from DoEvents. Fixes #77282
11143 2006-01-18  Peter Dennis Bartok  <pbartok@novell.com>
11145         * Cursor.cs: Reimplemented creating cursor bitmaps without using
11146           the Bitmap(Stream) constructor which is semi-broken on MS GDI+.
11147           This fixes #77218
11148         * XplatUIWin32.cs: 
11149           - Reimplemented creating Bitmaps from DIBs since the Bitmap(Stream) 
11150             constructor creates images that can't be saved. Part of the fix
11151             for #76103
11152           - Added handling of CF_BITMAP as CF_DIB to clipboard code (Fixes #76103)
11153           - SetWindowState: Switched ShowWindow flags (part of an upcoming 
11154             bug fix for handling window state in forms properly)
11156 2006-01-18  Alexander Olk  <alex.olk@googlemail.com>
11158         * ThemeGtk.cs: Simplify ScrollBar drawing
11160 2006-01-18  Jackson Harper  <jackson@ximian.com>
11162         * Splitter.cs: Set the default dock style for the splitter control
11163         in the constructor.
11165 2006-01-18  Alexander Olk  <alex.olk@googlemail.com>
11167         * ThemeGtk.cs: Corrected StateType and ShadowType for
11168           gtk_paint_box
11170 2006-01-18  Alexander Olk  <alex.olk@googlemail.com>
11172         * Control.cs: Make use of Theme.DoubleBufferingSupported
11173         * ThemeGtk.cs:
11174           - Added drawing for flat style buttons
11175           - Added ScrollBar drawing
11177 2006-01-18  Alexander Olk  <alex.olk@googlemail.com>
11179         * ThemeClearlooks.cs: Removed some unneeded code.
11180         * ThemeGtk.cs: First part of ThemeGtk enhancements.
11182 2006-01-17  Peter Dennis Bartok  <pbartok@novell.com>
11184         * LinkLabel.cs: We need to update the hover drawing when
11185           leaving the control as well.
11187 2006-01-18  Jordi Mas i Hernandez <jordimash@gmail.com>
11189         * DataGrid.cs: Clicking on non empty areas in the columns
11190            area was giving an exception
11192 2006-01-17  Jackson Harper  <jackson@ximian.com>
11194         * ThemeWin32Classic.cs:
11195         * ListView.cs: Do not draw/clip the headers when the header style
11196         is None.
11198 2006-01-17  Jordi Mas i Hernandez <jordimash@gmail.com>
11200         * DataGrid.cs: Fixes 77260
11201         
11202 2006-01-17  Jordi Mas i Hernandez <jordimash@gmail.com>
11204         * DataGrid.cs: Clicking on a column on a empty grid was giving
11205           an exception
11207 2006-01-17  Peter Dennis Bartok  <pbartok@novell.com>
11209         * DataGrid.cs (OnKeyDown): Don't use the array if it's empty
11210           or any keypress will crash the grid.
11212 2006-01-17  Mike Kestner  <mkestner@novell.com>
11214         * MainMenu.cs (OnMenuChanged): set Height=0 to cause relayout.
11215         * ThemeWin32Classic.cs (CalcItemSize): clear Height/Width for 
11216         invisible/previously-visible items.
11217         [Fixes #76909]
11219 2006-01-17  Alexander Olk  <alex.olk@googlemail.com>
11221         * ThemeClearlooks.cs:
11222         - Added CL_Draw_Button method; now other theme controls that are 
11223           not derived from button or do not have a button can draw buttons
11224           too
11225         - Updated ComboBox drawing
11226         - Beautified RadioButton drawing
11227         - Corrected drawing of bottom and left tabs
11228         - Beautified DateTimePicker and MonthCalendar
11229         - Added CPDrawButton and CPDrawRadioButton
11231 2006-01-16  Jackson Harper  <jackson@ximian.com>
11233         * ComboBox.cs: Set the initial value of the scrollbar to the
11234         current index. Reduce the numbers of refreshs and IndexOfs called.
11236 2006-01-14  Alexander Olk  <alex.olk@googlemail.com>
11238         * FileDialog.cs: When the file listview is focused hitting the
11239           backspace key moves the fileview to the parent directory
11241 2006-01-13  Peter Dennis Bartok  <pbartok@novell.com>
11243         * Form.cs: 
11244           - Added RecreateHandle call when changing taskbar visibility to 
11245             trigger reparenting in Win32 driver (Fixes #75719)
11246           - If a window has minimize or maximize buttons, it cannot have
11247             a help button
11248         * XplatUIWin32.cs:
11249           - CreateWindow: When no WS_EX_APPWINDOW style is found we parent
11250             the toplevel form with FosterParent (A toolwindow not on the
11251             taskbar) (Fixes #75719)
11252           - Made FosterParent a toolwindow
11254 2006-01-13  Alexander Olk  <alex.olk@googlemail.com>
11256         * FileDialog.cs: Don't crash if InitialDirectory doesn't exist
11258 2006-01-13  Alexander Olk  <alex.olk@googlemail.com>
11260         * ToolTip.cs: If SetToolTip is called from a control and the mouse
11261           is currently over that control, make sure that tooltip_window.Text
11262           gets updated
11264 2006-01-13  Mike Kestner  <mkestner@novell.com>
11266         * MimeIcon.cs: size_t on lp64 fix for gdk_pixbuf_save_to_file extern.
11268 2006-01-13  Jackson Harper  <jackson@ximian.com>
11270         * TreeView.cs: On MS GetNodeAt never actually factors in the X
11271         value passed.  Also redraw the selected node when we recieve
11272         focus, so tabbing between trees works correctly.
11274 2006-01-13  Alexander Olk  <alex.olk@googlemail.com>
11276         * MimeIcon.cs: GnomeHandler: older gnome versions don't have
11277           ~/.gconf/%gconf-tree.xml, so use
11278           .gconf/desktop/gnome/interface/%gconf.xml
11280 2006-01-13  Peter Dennis Bartok  <pbartok@novell.com> 
11282         * TextControl.cs: Draw text in gray if control is disabled
11284 2006-01-13  Peter Dennis Bartok  <pbartok@novell.com> 
11286         * TreeView.cs: Draw the focus rectangle outside the highlight, to
11287           make sure it's always visible. Fixes #76680.
11289 2006-01-13  Peter Dennis Bartok  <pbartok@novell.com>
11291         * TreeView.cs: Implemented Wheel scrolling. Fixes #76531
11293 2006-01-13  Jonathan Chambers  <jonathan.chambers@ansys.com>
11295         * PageSetupDialog.cs: Added.
11296         * PrintDialog.cs: Attributes.
11297         * PrintPreviewControl.cs: Updates.
11298         * PrintPreviewDialog.cs: Updates.
11299         
11300 2006-01-12  Peter Dennis Bartok  <pbartok@novell.com>
11302         * Control.cs: Undid my selection check fix, since it's not needed
11303         * TextBoxBase.cs:
11304           - Now considering the presence of hscroll/vscroll when sizing
11305             vscroll/hscroll respectively. Fixed bug #77077
11306           - Added Left/Up/Down/Right to IsInputKey list to prevent
11307             ContainerControl from stealing them. This fixes what I broke
11308             with my last checkin.
11310 2006-01-12  Peter Dennis Bartok  <pbartok@novell.com> 
11312         * ScrollableControl.cs: Implemented dockpadding. Fixes #77166. And
11313           I finally understand how the property can be set without a setter :-)
11315 2006-01-12  Peter Dennis Bartok  <pbartok@novell.com>
11317         * Application.cs:
11318           - Switched RunLoop to use static Message.Create to create a 
11319             Message object
11320           - Added PreProcessMessage call in runloop for keyboard events; this
11321             is part of the fix for #77219, I overlooked this originally in the
11322             MSDN doc for PreProcessMessage
11323         * Control.cs:
11324           - Removed call to PreProcessMessage from handling of keyboard 
11325             messages; it's supposed to be done in the message pump
11326           - Moved call to ProcessKeyEventArgs inside ProcessKeyMessage as
11327             per MSDN documentation.
11328           - IsInputChar: All chars are input chars by default; removed the 
11329             parent calling chain, MS does not document that
11330           - PreProcessMessage: If IsInputChar is true, we want to return false
11331             to allow dispatching of the message
11332           - When selecting the next control, now also check that we're not
11333             selecting ourselves again and therefore return a false positive.
11334         * TextBoxBase.cs:
11335           - Tried to match return values for IsInputKey and ProcessDialogKey
11336             to what MS returns; moved processing of our special keys outside
11337             ProcessDialogKey since MS does not seem to return true on those.
11338           - Moved code that previously was in ProcessDialogKey into new private
11339             ProcessKey method, which gets called upon receipt of WM_KEYDOWN
11340           - Reworked handling of WM_CHAR to not have to duplicate code from
11341             Control.cs anymore, instead we simply call down to base.
11342            
11343 2006-01-12  Jackson Harper  <jackson@ximian.com>
11345         * ComboBox.cs: We always need to refresh the text area when
11346         EndUpdate is called. Fixes the combobox in the file dialog.
11347         * Control.cs: Don't create the creator_thread until the controls
11348         handle is created.  Also in InvokeRequired we check if the
11349         creator_thread is null. This gives the effect of InvokeRequired
11350         returning true if the controls handle is not created yet, and
11351         matches MS.
11353 2006-01-12  Peter Dennis Bartok  <pbartok@novell.com>
11355         * XplatUI.cs:
11356           - Added StartLoop() driver method. This is used to allow drivers to
11357             prepare for an upcoming GetMessage/TranslateMessage/DispatchMessage
11358             loop for a particular thread
11359           - Added EndLoop() driver method. This is called once the message
11360             pump for the thread is shut down
11361           - Added SupportsTransparency method to allow the driver to indicate
11362             opacity support for windows
11363         * Form.cs:
11364           - Removed TODO attribute, completed AllowTransparency property
11365           - Added documented logic to Opacity
11366         * GroupBox.cs, Label.cs, LinkLabel.cs, PropertyGrid.cs, Control.cs,
11367           ButtonBase.cs, CheckedListBox.cs: Combined Jackson's and Miguel's
11368           versions of CompatibleTextRendering
11369         * X11Structs.cs: Added opacity atom to our atom enumeration
11370         * Hwnd.cs: Added opacity tracking (we need to track since the opacity
11371           of a form might be set before it's reparented by the WM, and we need
11372           the opacity value without calling up to Form)
11373         * XplatUIDriver.cs: Added StartLoop(), EndLoop() and 
11374           SupportsTransparency() driver methods
11375         * Application.cs: Now calling StartLoop and EndLoop driver methods
11376         * XplatUIX11.cs:
11377           - Added opacity atom registration
11378           - Added StartLoop()/EndLoop() methods. They're empty right now but
11379             will need to get implemented when we switch to a per-thread queue
11380           - Implemented SupportsTransparency() method
11381           - Implemented SetWindowTransparency() method
11382           - Added support for setting the opacity value when a window is
11383             reparented (since the opacity needs to be set on the WM frame)
11384         * XplatUIOSX.cs, XplatUIWin32.cs:
11385           - Added SupportsTransparency(), StartLoop() and EndLoop() methods
11387 2006-01-12  Alexander Olk  <alex.olk@googlemail.com>
11389         * ThemeClearlooks.cs: Don't crash if TabControl.Parent is null.
11391 2006-01-12  Alexander Olk  <alex.olk@googlemail.com>
11393         * FileDialog.cs: Added ToolTip for MWFFileView
11394         * MimeIcon.cs: Rewrote GnomeHandler.
11395           - Get currently used gnome icon theme from
11396             ($HOME)/.gconf/%gconf-tree.xml
11397           - Make use of inherited icon themes
11398           - Support SVG icon themes like Tango via librsvg
11400 2006-01-12  Miguel de Icaza  <miguel@novell.com>
11402         Revert's Jackson's revert which broke 2.0 builds.   Fix both
11403         builds. 
11404         
11405         * Application.cs: Move the use_compatible_text_rendering outside
11406         the NET_2_0 define.  If we ever need to use the
11407         use_compatible_text_rendering on the individual controls they will
11408         access the variable from the common shared code paths.
11410 2006-01-12  Peter Dennis Bartok  <pbartok@novell.com>
11412         * XplatUI.cs:
11413           - Added more granular debug options
11414           - Added method to print both window text and id
11415           - Switched debug output to use new Window() debug method
11416           - Added IsEnabled() driver method
11417           - Added EnableWindow() driver method
11418         * Form.cs:
11419           - Removed end_modal; no longer needed, new loop handles termination
11420             via 'closing' variable
11421           - If form is modal, setting DialogResult will now initiate loop
11422             termination via 'closing' variable
11423           - Added support for is_enabled/WS_DISABLED to CreateParams
11424           - Close() now just send the WM_CLOSE message; the WM_CLOSE handler
11425             does all the work
11426           - Removed code that's now in RunLoop from ShowDialog()
11427           - Added various documented sanity checks to ShowDialog()
11428           - Added handling of WM_DESTROY message; we set 'closing' on getting
11429             the message to indicate the message pump to terminate
11430           - Added handling of new internal WM_CLOSE_INTERNAL message - it's
11431             send by the Application.ExitThread method. (We send the message
11432             to destroy the window after all other events have been
11433             processed through the queue, instead of destroying the handle 
11434             directly)
11435           - Moved code from Close() method to WM_CLOSE handler; added logic
11436             to only send close-related events if the form is not displayed
11437             modal
11438         * Splitter.cs (..ctor): Fixed typo in resource name
11439         * Control.cs:
11440           - DrawBackgroundImage: Explicitly selecting the wrap mode for the
11441             brush now
11442           - set_Cursor: Now only setting calling into XplatUI if the handle for
11443             the control is already created; this avoids implict handle creation
11444             or crashes if it's not created
11445           - set_Enabled: Now setting the enabled state via the new driver method
11446             instead of just tracking it
11447           - CreateParams: Added logic to set WS_DISABLED based on enabled state
11448           - CreateControl: Reordered event firing and method calls to more
11449             closely fire events in the order MS does. Now setting the
11450             enabled state in the driver when creating the control.
11451           - SetVisibleCore: Moved when the OnVisibleChanged event is fired to
11452             match MS order
11453         * FolderBrowserDialog.cs, MessageBox.cs, ButtonBase.cs, TrackBar.cs,
11454           MonthCalendar.cs: get_CreateParams: Added setting of WS_DISABLED 
11455         * XplatUIStructs.cs: Added internal WM_CLOSE_INTERNAL mesage id
11456         * Hwnd.cs:
11457           - Added tracking of window enabled state (get_Enabled/set_Enabled)
11458           - Added EnabledHwnd property to easily allow a driver to find the
11459             handle of the first enabled window in the parent chain (this is
11460             used by drivers to pass up input events of disabled windows)
11461         * XplatUIDriver.cs: Added IsEnabled() method
11462         * Application.cs:
11463           - Removed crude and obsolete exiting tracking variable
11464           - Removed internal ModalRun(); replaced by RunLoop()
11465           - Implemented private CloseForms() method to allow closing all 
11466             windows owned by a particular (or all) threads
11467           - Exit() now properly closes all windows without forcing the message
11468             pump to quit
11469           - Removed obsolete InternalExit() method
11470           - Changed Run() methods to use new RunLoop() message pump
11471           - Implemented new RunLoop() method for both modal and non-modal forms
11472         * CommonDialog.cs:
11473           - get_CreateParams: Added setting of WS_DISABLED
11474           - Simplified ShowDialog(); now all the work is done in RunLoop(),
11475             invoked via Form.ShowDialog()
11476         * NativeWindow.cs: We don't remove the window from the collection when
11477           the handle is destroyed; there might still be messages for it in the
11478           queue (mainly the resulting WM_DESTROY); instead it will be removed
11479           when Control calls InvalidateHandle in the WM_DESTROY handler
11480         * XplatUIX11.cs:
11481           - CreateWindow: Added logic to handle the WS_DISABLED window style
11482           - EnableWindow: Implemented based on Hwnd.Enabled
11483           - GetMessage: Reset PostQuitState so the method can be called again
11484           - Implemented support for disabled windows (passing messages to the
11485             first enabled parent) in handling all input messages
11486           - Added optimizations for handling Expose events
11487           - Implemeted new driver method IsEnabled()
11488           - Now always resetting paint pending tracking vars when we start paint
11489           - Re-implemented UpdateWindow via just sending a WM_PAINT message
11490         * XplatUIOSX.cs: Added IsEnabled method stub
11491         * XplatUIWin32.cs: Implemented new IsEnabled() method
11493 2006-01-11  Jackson Harper  <jackson@ximian.com>
11495         * ButtonBase.cs, CheckedListBox.cs, GroupBox.cs, Label.cs,
11496         LinkLabel.cs, PropertyGrid.cs: Unbreak 1.1 build. Consolidate the
11497         variables a little.
11498         * ColorDialog.cs: Clear out the old form before adding the new
11499         panel.  
11501 2006-01-11  Jackson Harper  <jackson@ximian.com>
11503         * X11Dnd.cs: Make sure to add all the text formats when adding
11504         strings to the data object.
11505         * TreeNodeCollection.cs: When adding to a sorted tree we need to
11506         do some redrawing too.  Also change the UpdateNode to an
11507         UpdateBelow so the newly added node gets painted.
11508         
11509 2006-01-11  Miguel de Icaza  <miguel@novell.com>
11511         * ButtonBase.cs, CheckedListBox.cs, GroupBox.cs, Label.cs,
11512         LinkLabel.cs, PropertyGrid.cs: Implement the
11513         UseCompatibleTextRendering property for 2.x
11515         * Application.cs (SetCompatibleTextRenderingDefault): Add. 
11517 2006-01-11  Jackson Harper  <jackson@ximian.com>
11519         * TreeView.cs: Use the property for setting the selected node so
11520         the correct events get raised.
11521         * TreeNode.cs: Update the tree when the fore/back colours of a
11522         node are set.
11524 2006-01-10  Jackson Harper  <jackson@ximian.com>
11526         * TreeView.cs: Allow setting SelectedNode to null.
11528 2006-01-9  Jonathan Chambers  <jonathan.chambers@ansys.com>
11530         * Form.cs: Fix support for Form TransparencyKey and Opacity on Windows.
11532 2006-01-9  Jonathan Chambers  <jonathan.chambers@ansys.com>
11534         * PrintControllerWithStatusDialog.cs: Update page number in dialog.
11536 2006-01-9  Jonathan Chambers  <jonathan.chambers@ansys.com>
11538         * PrintDialog.cs: Added attributes and set default property values.
11540 2006-01-9  Jonathan Chambers  <jonathan.chambers@ansys.com>
11542         * PrintControllerWithStatusDialog.cs: 
11543         Added PrintControllerWithStatusDialog.
11545 2006-01-9  Jonathan Chambers  <jonathan.chambers@ansys.com>
11547         * XplatUI.cs, Form.cs, XplatUIDriver.cs, XplatUIX11.cs, XplatUIOSX.cs, 
11548         XplatUIWin32.cs: Added support for Form TransparencyKey and Opacity on Windows.
11550 2006-01-9  Jonathan Chambers  <jonathan.chambers@ansys.com>
11552         * ComboBox.cs: Fix crash when there is no selected item (due to last commit)
11554 2006-01-09  Jonathan Chambers  <jonathan.chambers@ansys.com>
11556         * ComboBox.cs: Added KeyDown event handler for processing arrow keys
11557         and PgUp/PgDown. Also, scroll to selected item upon dropdown. Bugs 76857 and 76788.
11559 2006-01-08  Alexander Olk  <alex.olk@googlemail.com>
11561         * MimeIcon.cs: Added internal class SVGUtil.
11563 2006-01-08  Alexander Olk  <alex.olk@googlemail.com>
11565         * FileDialog.cs: Don't crash if there are two files with the
11566           same name but different locations.
11568 2006-01-08  John BouAntoun  <jba-mono@optusnet.com.au>
11570         * MonthCalendar.cs: Fixed annoying rendering bug when selecting
11571         dates across multiple month grids. Used to not highlight entire 
11572         month, but does now.
11573         
11574 2006-01-06  Jackson Harper  <jackson@ximian.com>
11576         * MonthCalendar.cs: Removed DoEvents call to prevent a running
11577         message loop. Change timer intervals to numbers that seem more
11578         natural.
11580 2006-01-06  John BouAntoun  <jba-mono@optusnet.com.au>
11582         * DateTimePicker.cs: Modified CalculateDropDownLocation to use the screen
11583           object for location info since screen object is now implemented.
11585 2006-01-05  Jackson Harper  <jackson@ximian.com>
11587         * AsyncMethodData.cs: Check if the call is complete before doing a WaitOne
11588         * AsyncMethodResult.cs: We no longer use a WeakReference for the
11589         AsyncMethodResult, this is because we ALWAYS want the
11590         ManualResetEvent to get set.
11591         * Control.cs: When disposing use an async invoke to call shutdown
11592         code, so that thigns don't block on the finalizer thread.  Also
11593         check if we even have a message loop before trying to send
11594         messages, if we don't then don't bother sending messages.
11595         - No more weak references for async methods
11596         * XplatUIDriver.cs: No more weak references for async methods.
11598 2006-01-04  Alexander Olk  <alex.olk@googlemail.com>
11600         * FontDialog.cs: Fix, don't throw an exception if FontFamily.Families
11601           returns two FontFamily with the same name
11603 2006-01-04  Peter Dennis Bartok  <pbartok@novell.com>
11605         * ThemeWin32Classic.cs, ThemeClearlooks.cs: Dropped stupid scheme of 
11606           drawing disabled text. Instead using the ColorGrayText color
11608 2006-01-04  Jackson Harper  <jackson@ximian.com>
11610         * TreeNode.cs: redraw the node when its image index is changed.
11612 2006-01-04  Peter Dennis Bartok  <pbartok@novell.com>
11614         * RichTextBox.cs: Same fix as last, just for SelectionColor. This
11615           time I checked there are no others like it.
11617 2006-01-04  Jackson Harper  <jackson@ximian.com>
11619         * AsyncMethodResult.cs: Use a ManualResetEvent instead of a mutex,
11620         this gives the behavoir I was looking for.
11621         * Control.cs: Special case Invoking EventHandlers, this matches MS
11622         and fixes part of bug #76326.
11624 2006-01-04  Alexander Olk  <alex.olk@googlemail.com>
11626         * ThemeClearlooks.cs, FileDialog.cs:
11627           - Reflect the latest Theme class changes
11628           - Remove Mono.Unix.Syscall.time in FileDialg and replace it 
11629             with DateTime
11630             
11631 2006-01-04  Alexander Olk  <alex.olk@googlemail.com>
11633         * Theme.cs: Cache UI resource images and resize them if needed
11635 2006-01-03  Peter Dennis Bartok  <pbartok@novell.com>
11637         * RichTextBox.cs: FormatText is 1-based, make it so when SelectionFont
11638           is called. This fixes the crash in Nexxia when setting the font
11639           attributes in the chat. [However, RTF needs a look-over to make sure
11640           that all SelectionXXX methods handle the special case that selection
11641           is empty and therefore the change must be applied to all text starting
11642           at the cursor/selection start]
11644 2006-01-03  Peter Dennis Bartok  <pbartok@novell.com> 
11646         * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs, XplatUIWin32.cs,
11647           XplatUIOSX.cs: Added SendMessage and PostMessage methods
11648         * X11Keyboard.cs: Switched to new way of calling PostMessage
11650 2006-01-03  Peter Dennis Bartok  <pbartok@novell.com>
11652         * Theme.cs: Added theme interface for images to allow the theme to
11653           control what images are used for things like FileDialog, MessageBox
11654           icons, etc.
11655         * MessageBox.cs: Now uses the new Theme icon/image interfaces
11657 2006-01-03  Alexander Olk  <alex.olk@googlemail.com>
11659         * FileDialog.cs:
11660           - Removed some dead code
11661           - Opening a recently used file does work now
11662           - Small UI enhancements
11663           - Refactoring
11665 2006-01-02  Alexander Olk  <alex.olk@googlemail.com>
11667         * FileDialog.cs: Forgot too add __MonoCS__
11669 2006-01-02  Alexander Olk  <alex.olk@googlemail.com>
11671         * FileDialog.cs: We are able to read recently used files now let's
11672           go on and write them.
11674 2006-01-01  Alexander Olk  <alex.olk@googlemail.com>
11676         * FileDialog.cs: Breathe some life into "last open"/"recently used"
11677           button
11678         * MimeIcon.cs: Do a check for the top level media type also
11680 2005-12-31  Alexander Olk  <alex.olk@googlemail.com>
11682         * ThemeClearlooks.cs:
11683           - Added CPDrawStringDisabled
11684           - ButtonBase_DrawText: Workaround for a DrawString bug; cut off
11685             some chars if the text doesn't fit into text_rect
11686           - DrawListViewItem: If View = View.LargeIcon center the image;
11687             rewrote the drawing of ListViewItem.Text if View = 
11688             View.LargeIcon
11690 2005-12-31  Alexander Olk  <alex.olk@googlemail.com>
11692         * MimeIcon.cs: Use default KDE icon theme if there is no
11693           "48x48" directory for the current icon theme, fixes #77114
11694         * Mime.cs: Disable not working and actually not used code. 
11695         * ThemeWin32Classic.cs:
11696           - Replace "new SolidBrush" in GetControlBackBrush and
11697             GetControlForeBrush with ResPool.GetSolidBrush
11698           - Changed DrawListViewItem from private to protected virtual
11699         * FileDialog.cs:
11700           - Added form.MaximizeBox = true
11701           - Don't throw an exception if there is a broken symbolic link
11703 2005-12-23  Jackson Harper  <jackson@ximian.com>
11705         * TabControl.cs: Give the panels focus, keyboard navigation is
11706         fixed so this works correctly now.
11707         - We need these key events also.
11708         * ToolBar.cs: Remove some of the poor mans double buffering.
11709         
11710 2005-12-24  Alexander Olk  <alex.olk@googlemail.com>
11712         * ComboBox.cs: The internal TextBox now returns the focus.
11714 2005-12-23  Jackson Harper  <jackson@ximian.com>
11716         * ThemeWin32Classic.cs:  Draw the text for all tab appearances.
11718 2005-12-23  Peter Dennis Bartok  <pbartok@novell.com>
11720         * Control.cs: Removed debug code
11721         * XplatUIX11.cs: Changed DestroyChildWindows to also consider
11722           implicit children
11724 2005-12-23  Peter Dennis Bartok  <pbartok@novell.com> 
11726         * Control.cs: When creating the control, update the Z-order after
11727           all it's children are created, too. (Fixes nexxia not showing
11728           picturebox bug)
11730 2005-12-23  Peter Dennis Bartok  <pbartok@novell.com>
11732         * Control.cs: Do not update the anchoring distances if layout is
11733           suspended, instead do it once layout is resumed
11735 2005-12-22  Peter Dennis Bartok  <pbartok@novell.com> 
11737         * Control.cs: 
11738           - After many hours of debugging, for both Jackson and
11739             myself, it turns out that it helps to set the parent of a control
11740             if you want to actually see it onscreen. In the spirit of that
11741             discovery, we're now setting the parent of the control and
11742             it's children when the control's handle is created. This fix
11743             will make Lutz Roeder's Reflector run happily. 
11744           - now just creating the handle instead of the whole control when
11745             getting a graphics context for the control.
11747 2005-12-22  Peter Dennis Bartok  <pbartok@novell.com>
11749         * ScrollableControl.cs: When calculating the canvas, don't consider
11750           the scrollbar widths. Instead, predict if horizontal scrollbar
11751           will affect canvas when deciding on vertical display and vice versa.
11753 2005-12-22  Peter Dennis Bartok  <pbartok@novell.com>
11755         * RichTextBox.cs: Set default RTF font for documents that don't
11756           have a font table (Fixes #77076)
11758 2005-12-22  Jackson Harper  <jackson@ximian.com>
11760         * TextBoxBase.cs: It's difficult to do, but you can have an empty
11761         clipboard. This prevents a NullRef in that case.
11762         * XplatUIX11.cs: Use CLIPBOARD not PRIMARY for our
11763         clipboard. PRIMARY is for the currently selected text only. (We
11764         should implement PRIMARY at some point.
11766 2005-12-21  Peter Dennis Bartok  <pbartok@novell.com>
11768         * XplatUIWin32.cs: Fixed the TEXTMETRIC structure, we were calling
11769           a Unicode function with a structure that was defined in Ansi way.
11770           This fixes #76942.
11772 2005-12-21  Jackson Harper  <jackson@ximian.com>
11774         * StatusBar.cs: Statusbar handles its fore/back colours on it's
11775         on. Because thats how it rolls. (and this avoids it using ambient
11776         colours).
11777         * ThemeWin32Classic.cs: Use the proper back color for filling.
11778         * Menu.cs: Use the system menu bar color for drawing menu
11779         bars. Using the window back color will bring ambient colours into
11780         the picture.
11782 2005-12-21  Alexander Olk  <alex.olk@googlemail.com>
11784         * ColorDialog.cs: Fixed a memory leak that caused a SIGSEV. A lot of
11785           Bitmaps were created and not disposed.
11787 2005-12-21  Peter Dennis Bartok  <pbartok@novell.com>
11789         * Control.cs (CreateControl): Don't do anything if the control is
11790           already created, otherwise we'd fire the OnCreated event more than
11791           once
11793 2005-12-21  Peter Dennis Bartok  <pbartok@novell.com> 
11795         * ComboBox.cs (FindStringCaseInsensitive): Don't search for emtpy strings,
11796           will always match. Instead return -1. Fixes #76464.
11798 2005-12-21  Peter Dennis Bartok  <pbartok@novell.com>
11800         * TextControl.cs (RecalculateLine): Only wrap if the wrap point is
11801           neither the beginning nor the end of the line (Fixes bug #76479)
11803 2005-12-21  Peter Dennis Bartok  <pbartok@novell.com> 
11805         * Control.cs:
11806           - ControlNativeWindow.ControlFromHandle(): Now handling situation
11807             where handle is invalid
11808           - FromHandle(): Now using hashtable-based ControlFromHandle() lookup
11809             instead of slower linear search
11810         * NativeWindow.cs: Don't remove the window from the hashtable until
11811           after the driver has destroyed it (since the driver might use
11812           Control.FromHandle to lookup the control object
11813         * Hwnd.cs: Added DestroyPending property to track if a window is 
11814           already destroyed as far as the driver is concerned and only hasn't
11815           yet notified the control
11816         * XplatUIX11.cs:
11817           - Activate(): Check if the window is still valid before using the 
11818             handle
11819           - Implemented DestroyChildWindow() method to mark child windows as
11820             destroyed when a window is destroyed. This prevents situations 
11821             where we might call an X method based on queued events for a
11822             window that already has been destroyed but we haven't yet pulled
11823             the destroy method from the queue.
11824           - Added a call to the new DestroyChildWindow() method to the drivers
11825             DestroyWindow code. Also now marking the destroyed window itself
11826             as pending
11828 2005-12-20  Jackson Harper  <jackson@ximian.com>
11830         * StatusBar.cs:
11831         * StatusBarPanel.cs: Don't calculate panel sizes on draw
11832         anymore. Just do them when needed, also track the rects of panels
11833         so that we can optimize refreshing more in the future.
11835 2005-12-20  Alexander Olk  <alex.olk@googlemail.com>
11837         * ColorDialog.cs: Fixed focus drawing in small color controls
11839 2005-12-19  Jackson Harper  <jackson@ximian.com>
11841         * InternalWindowManager.cs:
11842         * MdiWindowManager.cs: Cleanup some coordinate system changes so
11843         moving windows works properly.
11845 2005-12-19  Peter Dennis Bartok  <pbartok@novell.com> 
11847         * Control.cs: 
11848           - Removed call to InitLayout() from SetBoundsCore(); doc says
11849             it's only called when a control is added to a container
11850           - Split InitLayout logic, moved to separate UpdateDistances() method
11851             since we need to perform those calculations more often than just
11852             when adding the control to a container. (Needed to fix #77022)
11853           - Now calling UpdateDistances() from UpdateBounds() (fixes #77022)
11854           - Reduced the OnBindingContextChanged events count, don't send them
11855             unless the control is created, we still aren't totally matching
11856             MS, but I can't quite figure out some of their rules
11858 2005-12-18  Alexander Olk  <alex.olk@googlemail.com>
11860         * ThemeClearlooks.cs: Corrected distance between ProgressBar
11861           stripes
11863 2005-12-18  Alexander Olk  <alex.olk@googlemail.com>
11865         * ThemeClearlooks.cs:
11866           - Updated ProgressBar drawing
11867           - Corrected drawing of ScrollBars and scroll buttons
11868           - Some temporary fixes for minor pixel artefacts
11870 2005-12-18  Peter Dennis Bartok  <pbartok@novell.com> 
11872         * Control.cs:
11873           - Reworked Controls.Add(), Controls.Remove() and set_Parent() to
11874             cause events to be sent in the same order as MS does.
11875           - Added ChangeParent() method to trigger various OnXXXChanged events
11876             that need to be fired when a parent changes (This is a reworking
11877             of the patch from r54254, with the X11 errors fixed)
11878           - Removed SuspendLayout()/ResumeLayout() calls from Controls.Clear()
11879             since on MS we get OnLayoutChanged events when calling Clear()
11880           - Changed Enabled property to consider parent state as well, if a
11881             parent is not enabled, the control will not be either
11882           - Changed Parent property to simply call Controls.Add() since that
11883             now does all the work required, this way we avoid code duplication
11884           - Threw in a few OnBindingsContextChanged calls to try and match
11885             when MS sends them. We seem to send a few too many, though.
11886           - Added call to CreateControl when adding the control to a parent.
11887             We were never calling CreateControl. Still needs some work, in
11888             some places we treat HandleCreated and ControlCreated as equal, 
11889             which is wrong
11890           - Removed obsolete commented out code from UpdateZOrder()
11892 2005-12-18  Alexander Olk  <alex.olk@googlemail.com>
11894         * ThemeClearlooks.cs: Updated TrackBar drawing.
11896 2005-12-17  Alexander Olk  <alex.olk@googlemail.com>
11898         * FileDialog.cs: Patch for #76901 by Atsushi Enomoto
11900 2005-12-17  Alexander Olk  <alex.olk@googlemail.com>
11902         * FileDialog.cs: Add the Help button and the open readonly
11903           checkbox only if needed
11905 2005-12-16  Jackson Harper  <jackson@ximian.com>
11907         * Control.cs: Make sure we have an active menu before trying to
11908         process commands on it. Prevents menu-less forms from crashing
11909         when Alt is pressed.
11910         * TreeNodeCollection.cs: Some fixes to prevent null refs. Patch by
11911         Dieter Bremes.
11912         * RichTextBox.cs: Expand statement to help out gmcs and fix the
11913         2.0 build.
11915 2005-12-16  Jackson Harper  <jackson@ximian.com>
11917         * InternalWindowManager.cs: Don't translate tool windows screen
11918         coordinates. This fixes windows 'bouncing' around when being moved.
11920 2005-12-15  Peter Dennis Bartok  <pbartok@novell.com> 
11922         * TextBoxBase.cs:
11923           - MaxLength now treats 2^31-1 equal to unlimited length (this is
11924             not quite MS compatible, MS uses that number only for single line
11925             and 2^32-1 for multi-line, but I figure it won't hurt keeping
11926             the limit at 2GB)
11927           - Now enforcing the MaxLength limit when entering characters
11928           - Added argument to internal Paste() method to track if it's called
11929             from programatically or via keyboard, since keyboard driven pastes
11930             need to enforce max-length
11931           - Added logic to Paste to only paste as many chars as MaxLength 
11932             allows
11933         * RichTextBox.cs: Updated to use new obey argument for internal Paste()
11934         * TextControl.cs:
11935           - Added Length property to return number of characters in document
11936           - Added private CharCount property which only tracks actual chars
11937             in the document (no linefeeds) and fires event when CharCount
11938             changes
11939           - Added tracking of character count to all methods that alter it
11940           - Added LengthChanged event to allow applications to subscribe
11941             to any changes to the document
11943 2005-12-15  Peter Dennis Bartok  <pbartok@novell.com> 
11945         * TextBox.cs: 
11946           - Removed local password_char field (moved to TextBoxBase)
11947           - Now setting the document's password var when password is
11948             set
11949         * TextBoxBase.cs:
11950           - Added password_char field (needed here so MultiLine can
11951             access it)
11952           - Added logic to MultiLine property setter to set the document's
11953             variable when password display is allowed
11954           - Removed debug code and made some debug code conditional
11955         * TextControl.cs:
11956           - Added RecalculatePasswordLine() method to handle special password
11957             char only lines
11958           - Added PasswordChar property, also added related tracking vars
11959           - Draw() method now uses local text var for grabbing text to draw,
11960             this var is set to line.text unless we're doing password display,
11961             then it is set to the pre-generated all-password-chars line
11962           - Added calling RecalculatePasswordLine() method for password lines
11964 2005-12-14  Peter Dennis Bartok  <pbartok@novell.com> 
11966         * Hwnd.cs: 
11967           - Added Reparented property to allow tracking of Window Manager
11968             reparenting actions (which affect X/Y calculations of toplevel 
11969             windows)
11970           - Made ToString() print window handles in hex
11971         * XplatUIX11.cs:
11972           - AddConfigureNotify(): Now uses reparented state off Hwnd to
11973             determine if X/Y needs offsetting
11974           - AddConfigureNotify(): Fixed offset calculations
11975           - Now adds ReparentNotify messages into the queue
11976           - Now processes ReparentNotify messages and causes a 
11977             WM_WINDOWPOSCHANGED message to be sent upstream if a window
11978             is reparented (as most likely it's X/Y coordinates are changed
11979             due to that)
11981 2005-12-14  Jackson Harper  <jackson@ximian.com>
11983         * XplatUIX11.cs: Tool windows still need to respek focus.
11985 2005-12-14  Peter Dennis Bartok  <pbartok@novell.com> 
11987         * Control.cs: Undid 54254 (causing XConfigure errors) so we can
11988           have a working release
11990 2005-12-13  Jackson Harper  <jackson@ximian.com>
11992         * Form.cs: Update styles after setting the border style regardless
11993         of whether or not the window is using a window manager.
11995 2005-12-13  Jackson Harper  <jackson@ximian.com>
11997         * Form.cs: We now hook into an internal window manager instead of just an
11998         MDI subsystem, this is so we can have properly behaving tool windows.
11999         * MdiClient.cs: Naming change, MdiChildContext is now WindowManager
12000         * InternalWindowManager.cs: New internal class that acts as a
12001         window manager for tool windows and as a base for mdi windows.
12002         * MdiWindowManager.cs: New class that acts as a window manager for
12003         mdi windows.
12005 2005-12-12  Jackson Harper  <jackson@ximian.com>
12007         * Control.cs: Updates so we match behavoir for for implicit
12008         controls. Fixes explosions in MDI.
12010 2005-12-12  Jackson Harper  <jackson@ximian.com>
12012         * Control.cs: Implement Invalidate (Region).
12014 2005-12-12  Peter Dennis Bartok  <pbartok@novell.com> 
12016         * Control.cs: 
12017           - Changed handling of Controls.Add/Controls.Remove to fire (almost) 
12018             the same events as MS does. MS fires events for each property 
12019             except, for unknown reasons, Cursor, when the control is reparented. 
12020             I can't seem to totally match add/remove since MS also fires some 
12021             VisibleChanged events, which makes no sense. Consolidated the
12022             parenting code into a separate method so it can be called from
12023             both Add and Remove. set_Parent no longer needs any special logic
12024             as it calls the parent's add method which implicitly fires
12025             all events
12026           - Removed some obsolete code and debug output
12027           - Enabled state is inherited from parents, if this is enabled
12029 2005-12-08  Peter Dennis Bartok  <pbartok@novell.com> 
12031         * Form.cs: Removed commented out code
12033 2005-12-08  Peter Dennis Bartok  <pbartok@novell.com>
12035         * Control.cs:
12036           - Added internal version of Invoke, with additional argument 
12037             indicating if we're calling it from a Dispose() handler. That
12038             way we can avoid BeginInvoke throwing an exception if we're
12039             calling for an already destroyed window.
12040           - Added a dispose argument to BeginInvokeInternal, and made the
12041             check if a valid window handle chain exists conditional on
12042             it not being a dispose call
12043           - Removed code in DestroyHandle to destroy our children. Since we
12044             now handle the WM_DESTROY message we will catch all our children
12045             being destroyed.
12046           - Now calling OnHandleDestroyed from our new WM_DESTROY handler
12047         * Form.cs:
12048           - Added a field to track the application context of the form.
12049           - No need to set closing variable as response to WM_CLOSE, instead
12050             we destroy the window. We also call PostQuitMessage if the form
12051             has an application context (which makes it the main app form,
12052             which, when closed terminates the app)
12053         * XplatUI.cs:
12054           - Dropped Exit() method, it's naming was confusing
12055           - Added PostQuitMessage() which causes GetMessage to return false
12056             once the message queue is empty
12057         * XplatUIDriver.cs, XplatUIWin32.cs: Dropped Exit(), added 
12058           PostQuitMessage()
12059         * XplatUIOSX.cs: Switched signature for Exit method since Exit() is
12060           no longer a valid XplatUI method, but left it in since it's used
12061           internally. Added empty PostQuitMessage() method.
12062         * MenuAPI.cs: Replaced call to Exit() with call to
12063           PostQuitMessage, even though this is probably no longer needed.
12064         * Hwnd.cs: Added 'pretty' ToString() to support debugging.
12065         * X11Structs.cs: Added pretty XEvent.ToString() to support debugging.
12066         * Application.cs:
12067           - Replaced call to XplatUI.Exit() with PostQuitMessage()
12068           - Removed old debug code that would call XplatUI for exception
12069             display, enabled standard exception handling (Still not enabled
12070             though, until NativeWindow's ExternalExceptionHandler define
12071             is removed
12072         * NativeWindow.cs:
12073           - Added internal method to allow control to update NativeWindow
12074             after a window has been destroyed
12075           - Added handling of already destroyed windows when calling i
12076             DestroyWindow
12077           - Added removal of handle from list on ReleaseHandle
12078         * XplatUIX11.cs:
12079           - Dropped GetMessageResult var and related code
12080           - Added PostQuitState to field to track if PostQuitMessage has been
12081             called
12082           - Dropped Exit() method
12083           - Added PostQuitMessage() method
12084           - GetMessage now will return false if PostQuitState is set and no
12085             more messages are in the queue.
12086           - Expose handler will no longer generate WM_PAINT messages if we are
12087             in PostQuitState since it's very likely any windows have already
12088             been destroyed, and since Hwnd won't get updated until we have
12089             processed the DestroyNotify we'd be causing X errors.
12090         
12091 2005-12-07  Peter Dennis Bartok  <pbartok@novell.com>
12093         * Control.cs(WndProc): Apparently I'm suffering from brain cloud.
12094           Thanks to Mike for pointing out the err of my ways.
12096 2005-12-07  Peter Dennis Bartok  <pbartok@novell.com>
12098         * Control.cs(PreProcessMessage): Moved menu handling back, but
12099           after all other key handling, to match MS (who handles Menu in
12100           DefWndProc)
12101         * Menu.cs (WndProc): Removed my brainfart
12103 2005-12-07  Peter Dennis Bartok  <pbartok@novell.com>
12105         * Control.cs(PreProcessMessage): Removed special menu handling 
12106         * Menu.cs (WndProc): Added handling of WM_SYSKEYUP for menu purposes.
12108 2005-12-07  Mike Kestner  <mkestner@novell.com>
12110         * Control.cs : special case SYSKEYUP so that we can adjust keynav
12111         state according in tracker.
12112         * Menu.cs : promote tracker field to base class and provide a tracker
12113         lookup capability.  Add/Remove shortcuts dynamically if the top menu
12114         has a tracker. Unparent items that are removed from the collection.
12115         * MenuAPI.cs : implement mnemonic, shortcut, and arrow-based keynav.
12116         * Theme*.cs: add always_show_hotkeys field to support configurability
12117         of mnemonic display.  win32 doesn't show mnemonics until Alt is
12118         pressed.
12120 2005-12-07  Jackson Harper  <jackson@ximian.com>
12122         * MdiChildContext.cs: Use Control.ResetCursor.
12123         * Control.cs: ResetCursor needs to set the property so that the
12124         correct XplatUI call gets made.
12126 2005-12-07  Peter Dennis Bartok  <pbartok@novell.com>
12128         * Control.cs: More fixes to make our key events match MS. We
12129           were not setting the modifier state on KeyData, and we were
12130           not generating any events when Alt was pressed with a key
12131           since handling of WM_SYSxxx was missing for the OnKey methods.
12133 2005-12-07  Jackson Harper  <jackson@ximian.com>
12135         * MdiChildContext.cs: reenable the sizing code.
12136         - When the mouse leaves a window reset its cursor.
12138 2005-12-07  Alexander Olk  <alex.olk@googlemail.com>
12140         * ThemeClearlooks.cs: Reflect latest Hwnd changes
12142 2005-12-07  Peter Dennis Bartok  <pbartok@novell.com>
12144         * Hwnd.cs: Now using the theme 3d bordersize to calculate
12145           widths of Fixed3D borders
12147 2005-12-07  Jackson Harper  <jackson@ximian.com>
12149         * MdiClient.cs: Fix warnings. Earn Mike's love.
12151 2005-12-07  Alexander Olk  <alex.olk@googlemail.com>
12153         * ThemeClearlooks.cs:
12154           - Adjusted mouse over button color
12155           - Added first parts of CheckBox drawing
12156           - Added correct color for selected text background
12157           - Fixed ComboBox drawing
12158           - Added CPDrawBorder3D and CPDrawBorder
12160 2005-12-06  Peter Dennis Bartok  <pbartok@novell.com>
12162         * XplatUIX11.cs: Added call to XBell for AudibleAlert
12164 2005-12-06  Peter Dennis Bartok  <pbartok@novell.com> 
12166         * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs, XplatUIWin32.cs,
12167           XplatUIOSX.cs: Added AudibleAlert() method to have a means to
12168           alert users via sound. We could add an enum arg with different
12169           types of alerts in the future
12171 2005-12-06  Peter Dennis Bartok  <pbartok@novell.com>
12173         * Control.cs: Fix behaviour problems pointed out by Mike
12175 2005-12-05  Mike Kestner  <mkestner@novell.com>
12177         * StatusBarPanel.cs: add Invalidate method and hook it into all the
12178         prop setters.  Calls parent.Refresh for now, but could be maybe be
12179         optimized with an internal method on StatusBar at some point.
12180         [Fixes #76513]
12182 2005-12-05  Peter Dennis Bartok  <pbartok@novell.com> 
12184         * RichTextBox.cs: Implemented get_SelectionColor
12186 2005-12-05  Alexander Olk  <alex.olk@googlemail.com>
12188         * ThemeClearlooks.cs:
12189           - Removed dead code
12190           - Draw black button border only if button is Form.AcceptButton
12191           - Draw correct button color for pressed RadioButton if the mouse 
12192             has entered the button
12193           - Updated ProgressBar drawing!
12194           - Updated CPDrawSizeGrip drawing
12195           - Updated StatusBarPanel drawing
12197 2005-12-05  Mike Kestner  <mkestner@novell.com>
12199         * Control.cs (PreProcessMessage): add Keys.Alt based on LParam value.
12200         * X11Keyboard.cs (SendKeyboardInput): formal lParam for alt mod.
12202 2005-12-04  Alexander Olk  <alex.olk@googlemail.com>
12204         * ThemeClearlooks.cs: Initial check-in, activate with
12205           export MONO_THEME=clearlooks
12206         * ThemeEngine.cs: Added ThemeClearlooks
12208 2005-12-03  Mike Kestner  <mkestner@novell.com>
12210         * MenuAPI.cs: deactivate menus prior to calling item.PerformClick.
12211         [Fixes #76897]
12213 2005-12-02  Jackson Harper  <jackson@ximian.com>
12215         * Form.cs: If the child form has no menu the default main menu is
12216         used as the active menu.
12218 2005-12-02  Peter Dennis Bartok  <pbartok@novell.com> 
12220         * ListBox.cs: Check if any items exist before trying to resolve 
12221           coordinates into items
12223 2005-12-02  Peter Dennis Bartok  <pbartok@novell.com>
12225         * ThemeWin32Classic.cs: Hatchbrush on Win32 seems to always use white
12226           as the second color for the background hatch
12228 2005-12-02  Peter Dennis Bartok  <pbartok@novell.com>
12230         * TextBoxBase.cs: Now uses Jackson's new and improved ImplicitScrollbar
12231         * RichTextBox.cs: FormatText position arguments are 1-based, now making
12232           sure that what we pass to FormatText is always 1-based. Fixes #76885
12234 2005-11-29  Miguel de Icaza  <miguel@novell.com>
12236         * NumericUpDown.cs (EndInit): When we are done initializing,
12237         reflect any updates on the UI.
12239 2005-12-02  Jackson Harper  <jackson@ximian.com>
12241         * ImplicitHScrollBar.cs:
12242         * ImplicitVScrollBar.cs: New scrollbars that don't take focus from
12243         their container controls.
12244         * TreeView.cs: Use the new implicit scrollbars.
12246 2005-12-02  Jackson Harper  <jackson@ximian.com>
12248         * TreeView.cs: Make top_node internal so the TreeNodeCollections
12249         can play with it.
12250         * TreeNodeCollection.cs: If we remove the topnode we need to
12251         update topnode to the next node in line.
12252         - When clearing nodes go through the same process as removing
12253         them, so they get depareneted and checked if they are top node.
12255 2005-12-01  Jackson Harper  <jackson@ximian.com>
12257         * TreeView.cs: When imagelists are used the image area is
12258         selectable as well as the text.
12259         - If there are no selected nodes select the first one.
12260         * TreeNodeCollection.cs: Getting the TreeView is mildly expensive,
12261         so don't do it more then we need to.
12263 2005-12-01  Jackson Harper  <jackson@ximian.com>
12265         * ThemeWin32Classic.cs: Reimplement the scroll arrow drawing so
12266         that arrows can be scaled.
12268 2005-12-01  Jackson Harper  <jackson@ximian.com>
12270         * TreeNode.cs : Fixed bugs that caused FullPathTest + Traverse to
12271         fail. Patch by Dieter Bremes
12273 2005-11-30  Jackson Harper  <jackson@ximian.com>
12275         * Form.cs: Property is 2.0 only
12276         * PrintDialog.cs: Signature fix.
12278 2005-11-30  Peter Dennis Bartok  <pbartok@novell.com>
12280         * TextControl.cs: 
12281           - No longer artificially moves text 2 pixels down (now that we have
12282             borders this is no longer needed)
12283           - Added calcs for left, hanging and right indent
12285 2005-11-23  Mike Kestner  <mkestner@novell.com>
12287         * Menu.cs: mark MenuChanged internal, since it's not exposed by MS.
12289 2005-11-30  Jackson Harper  <jackson@ximian.com>
12291         * MdiChildContext.cs: Set the cloned menus forms, as these don't
12292         get cloned as part of CloneMenu ().
12293         * Menu.cs: Make sure the parent of the items get set correctly
12294         when they are added.  And the owners are notified of the changes.
12295         * Form.cs: Create an ActiveMenu property, so that when MDI is used
12296         we can change the menu being displayed/handled by the form without
12297         changing the menu assosciated with the form.
12298         - Don't let Mdi children draw/handle menus.
12299         
12300 2005-11-30  Jackson Harper  <jackson@ximian.com>
12302         * Menu.cs: Switch the MenuChanged method to OnMenuChanged and add
12303         a MenuChanged event. Just to make the API a little more
12304         consistent.
12305         * MainMenu.cs:
12306         * MenuItem.cs: Use the new OnMenuChanged
12307         * MdiChildContext.cs: Handle menu merging.
12308         * Form.cs: Implement MergedMenu.
12309         
12310 2005-11-30  Jackson Harper  <jackson@ximian.com>
12312         * Menu.cs: We were misusing Add. Add goes behind the specified
12313         index according to the docs, and does not replace the specified
12314         index. So I added an Insert method.
12316 2005-11-30  Peter Dennis Bartok  <pbartok@novell.com>
12318         * TextBoxBase.cs:  Implemented Ctrl-Ins (Copy), Shift-Ins (Paste) and
12319           Shift-Del (Cut), apparently Emacs uses these old Win 2.x keys. This
12320           is for Jackson
12321         * RichTextBox.cs: Added calls to base for DnD events
12323 2005-11-28  Peter Dennis Bartok  <pbartok@novell.com>
12325         * TextControl.cs:
12326           - Fixed drag-selection related crash; style fixes
12327           - Implemented undo class
12328             o Implemented method to capture document state for specified
12329               range in document tree
12330             o Implemented method to restore captured document state
12331             o Implemented cursor tracking
12332             o Implemented basic undo stack
12333           - Added undo cursor tracking to methods altering cursor location
12334           - Added undo tracking to selection deletion (still missing
12335             other text-altering hookups)
12336         * RichTextBox.cs:
12337           - Added SelectionLength property
12338           - Implemented CanPaste()
12339           - Implemented Paste()
12340           - Added missing protected methods
12341           - Fixed RTF->Document conversion; now uses font index 0 and color 
12342             index 0 as the default font for the parsed text
12343           - Fixed RTF<->Document font size translation
12344           - Fixed RTF generation, now properly handles cross-tag boundaries
12345             for single line selection
12346           - No longer always appends blank line to generated RTF
12347           - Removed TODOs
12348           - Added missing attributes
12349           - Hooked up undo-related methods
12350         * TextBoxBase.cs:
12351           - Implemented Copy()
12352           - Implemented Paste()
12353           - Implemented Cut()
12354           - Fixed caret mis-behaviour on backspace across line-boundaries
12356 2005-11-29  Jackson Harper  <jackson@ximian.com>
12358         * MdiClient.cs: Add a method for activating mdi children. Very
12359         basic right now. I imagine someday it might need more girth.
12360         * MenuItem.cs: Implement MDI lists. When mdilist is true the mdi
12361         children windows names are added to the menu item.
12362         * ThemeWin32Classic.cs: Draw the arrow if the item is an
12363         mdilist. This happens regardless of whether or not there are any
12364         mdi windows to see in the list, and according to my tests happens
12365         before the items are even added. Also happens if there isn't even
12366         an mdi client to get windows from.
12368 2005-11-29  Alexander Olk  <alex.olk@googlemail.com>
12370         * ThemeWin32Classic.cs: Make DrawFlatStyleRadioButton protected
12371         * ThemeNice.cs: Fix drawing of flatstyle radiobuttons
12373 2005-11-29  Jordi Mas i Hernandez <jordimash@gmail.com>
12375         * DataGridTableStyle.cs:
12376           - Create always the styles for the missing columns even if they are
12377             provided by the user (not default table style)
12378         * DataGrid.cs:
12379           - Fixes bug 76770
12380           - Fixes SetDataBinding (always re-attach source)
12381           - Fixes SetNewDataSource (only clear styles if they are not for 
12382             this source)
12383          -  Expands OnTableStylesCollectionChanged to handle style refresh 
12384             and remove properly
12386 2005-11-29  Jackson Harper  <jackson@ximian.com>
12388         * FileDialog.cs: Implement missing bits, remove some dead
12389         code.
12390         * FontDialog.cs: Implement missing Apply stuff, and ToString. Move
12391         creation of the panel so that the options set on the dialog are
12392         seen when the panel is created.
12393         * TreeView.cs: raise a click when items are clicked.
12394         
12395 2005-11-29  Jackson Harper  <jackson@ximian.com>
12397         * MdiClient.cs: Pass some signature methods through to base.
12399 2005-11-28  Jackson Harper  <jackson@ximian.com>
12401         * ListView.cs: Raise the click event when items are clicked.
12403 2005-11-28  Jackson Harper  <jackson@ximian.com>
12405         * MdiClient.cs: Make this algorithm even more beautiful.  And fix
12406         a nullref.
12408 2005-11-27  Alexander Olk  <alex.olk@googlemail.com>
12410         * ThemeNice.cs: - Removed 1 pixel bitmaps
12411           - Use SmoothingMode.AntiAlias where it makes sense
12412             (ScrollButton arrow for example)
12413           - Enhanced Button focus drawing
12414           - Fixed ComboBox drawing (no artefacts anymore, focus
12415             rectangle is back again, reduced size of ComboButton, etc.)
12416           - Fixed RadioButton focus drawing for Appearence.Button
12417           - Slight ScrollButton redesign
12418           - Some LinearGradientBrush size fixes
12419           - GroupBoxes have now rounded edges
12420           - Fixed StatusBar drawing
12422 2005-11-25  Alexander Olk  <alex.olk@googlemail.com>
12424         * ThemeNice.cs: - Remove dead code
12425           - use correct background colors for menus, etc.
12426           - Fake pixel drawing with 1 pixel bitmaps
12428 2005-11-24  Jackson Harper  <jackson@ximian.com>
12430         * MdiClient.cs: Size the scrollbars when resizing the window.
12431         - Resize the maximized windows when the client is resized
12432         * Form.cs: Make the child context available
12433         
12434 2005-11-23  Jackson Harper  <jackson@ximian.com>
12436         * MdiChildContext.cs: Don't size windows if they are maximized.
12438 2005-11-23  Mike Kestner  <mkestner@novell.com>
12440         * ContextMenu.cs: use MenuTracker.
12441         * Control.cs: remove menu handle usage.
12442         * Form.cs: remove menu handle usage.
12443         * Hwnd.cs: remove menu handle usage.
12444         * MainMenu.cs: Draw method moved here from MenuAPI.DrawMenuBar. Proxy
12445         motion and clicks to the new Tracker handlers.
12446         * Menu.cs: add sizing accessors, SelectedItem prop, kill CreateItems
12447         and handle usage.
12448         * MenuAPI.cs: refactored to combine popup and menubar event handling.
12449         Killed the MENU and MENUITEM data types and associated collections
12450         since we now keep the info on Menu and MenuItem. Expanded TRACKER into
12451         MenuTracker class that exposes the leftovers from the old MenuAPI
12452         static methods. Restructured Capture handling so that only one grab is
12453         done for the entire menu hierarchy instead of handing off grabs to
12454         submenus. Tracker now has an invisible control to Capture when active.
12455         * MenuItem.cs: add sizing accessors, kill Create
12456         and handle usage.
12457         * Theme.cs: remove menu handle and MENU(ITEM) usage.
12458         * ThemeWin32Classic.cs: use Menu/MenuItem sizing props instead of
12459         MENU(ITEM). remove menu handle usage, use Menu directly.
12460         * XplatUIDriver.cs: remove menu handle usage.
12461         * XplatUIOSX.cs: remove menu handle usage.
12462         * XplatUIWin32.cs: remove menu handle usage.
12463         * XplatUIX11.cs: remove menu handle usage.
12465 2005-11-22  Jackson Harper  <jackson@ximian.com>
12467         * Hwnd.cs: Don't compute the menu size for
12468         DefaultClientRectangle.
12469         - Reenable menu sizes being computed for GetClienRectangle.
12470         * Form.cs: Remove comment of trechery
12471         
12472 2005-11-22  Jackson Harper  <jackson@ximian.com>
12474         * Hwnd.cs: The adjustments for the menu bar are made when it is
12475         attached to the form.
12477 2005-11-19  Jackson Harper  <jackson@ximian.com>
12479         * XplatUIX11.cs: Create an HGRN of the invalid area for WM_NCPAINT
12480         (just like on windows).
12482 2005-11-19  Jackson Harper  <jackson@ximian.com>
12484         * MdiChildContext.cs: Handle all the buttons ourselves. We can't
12485         use real buttons anymore because they are in non client area. The
12486         one TODO here is that I need to somehow invalidate a section of
12487         the non client area.
12489 2005-11-18  Jackson Harper  <jackson@ximian.com>
12491         * Control.cs: Put the enum check back in now that MDI doesnt have
12492         to use this to set border styles.
12493         * Form.cs: Only set mdi child windows borders if the handle has
12494         been created.
12495         * MdiChildContext.cs: Don't set the InternalBorderStyle, just pass
12496         this directly on to the driver.
12497         - Get the move start position before adjusting for the titlebar
12498         height, this fixes the windows "skipping" when they are first
12499         moved.
12501 2005-11-18  Jackson Harper  <jackson@ximian.com>
12503         * XplatUIX11.cs: Just compute the mdi borders separately as they
12504         don't totally match up with normal form borders.
12506 2005-11-18  Jackson Harper  <jackson@ximian.com>
12508         * Control.cs: Set WS_ styles for borders, so that the driver does
12509         not have to retrieve the control instance to figure out what kind
12510         of borders it should have.
12511         * Form.cs: Set the WS_EX_MDICHILD flag on mdi children, so the
12512         driver can know its an mdi child easily.
12513         * XplatUIX11.cs: Get the border styles and whether the window is
12514         MDI from the Styles and ExStyles params instead of having to get a
12515         control. This prevents a chicken and egg problem.       
12517 2005-11-18  Jackson Harper  <jackson@ximian.com>
12519         * MdiClient.cs: Fix typo so scrollbars show up correctly.
12521 2005-11-18  Jackson Harper  <jackson@ximian.com>
12523         * MdiClient.cs: Calculate when to add and remove scrollbars
12524         correctly.
12525         * MdiChildContext.cs: Adjust the y position to take the titlebar
12526         into account.
12527         - No height for FormBorderStyle.None
12529 2005-11-18  Jackson Harper  <jackson@ximian.com>
12531         * Control.cs: Allow non enum values to be used for
12532         InternalBorderStyle.  MDI does this to set a special border style.
12533         - New utility methods for converting points to/from client coords
12534         - Add the newly created control to the Controls collection before
12535         updating its style. This way UpdateStyle can walk the control
12536         heirarchy to find the control if needed.
12537         so I don't need to create a new Point object all the time.
12538         * Form.cs: Let MDI windows handle their border styles.
12539         - Set styles on MDI windows so the correct title style is derived.
12540         * MdiChildContext.cs: Move all the painting and window handling
12541         into the non client area.
12542         - Use correct sizing and put correct buttons on frames based on
12543         the FormBorderStyle.
12544         - Notify the mdi client about scrolling
12545         - Need to handle the buttons ourselves now, because they are all
12546         in non client areas and we can't add controls there.
12547         * MdiClient.cs: Halfway to scrolling, this implementation is
12548         somewhat broken though, we need to check to make sure other
12549         windows aren't causing scrolling before removing the bars. Also
12550         the bars need to be drawn on top, maybe I can switch implicit
12551         controls to be on top.
12552         * Hwnd.cs: caption_height and tool_caption_height are now
12553         properties of an hwnd, this way they can be set by the driver
12554         based on the type of window they are.  In X11 the window manager
12555         handles the decorations so caption_height is zero unless its an
12556         MDI window.
12557         - Add 3 pixel borders for MDI windows (0xFFFF).
12558         - Get rid of some code duplication, have DefaultClientRectanle
12559         just call GetClientRectangle.
12560         * XplatUIX11.cs: Pass caption_height and tool_caption_height to
12561         Hwnd now.
12562         - Set border styles differently for mdi windows.
12563         * XplatUIOSX.cs: Pass caption_height and tool_caption_height to
12564         Hwnd now.
12565         
12566 2005-11-15  Mike Kestner  <mkestner@novell.com>
12568         * Menu.cs: when adding an item to the collection, if item is already 
12569         parented, remove it from the parent.
12571 2005-11-13  Alexander Olk  <alex.olk@googlemail.com>
12573         * X11DesktopColors.cs: Added KDE support
12575 2005-11-11  Peter Dennis Bartok  <pbartok@novell.com>
12577         * XplatUIWin32.cs: 
12578           - Clipboard methods now can translate Rtf format
12579           - No longer removes clipboard contents whenever a new format is added
12580             to allow placing multiple formats on the clipboard
12581         * Clipboard.cs: Clipboard now supports getting a IDataObject and
12582           will place all formats contained in it onto the clipboard. Also
12583           now cleans the clipboard before placing a new object onto it
12584         * RichTextBox.cs:
12585           - Implemented set_Rtf
12586           - Implemented set_SelectedRtf
12587           - Created InsertRTFFromStream() method to allow single code base
12588             for all properties and methods that insert RTF into document
12589           - Removed debug output
12590         * TextControl.cs:
12591           - Fixed Delete(int) to fix up line numbers
12592           - Fixed ReplaceSelection to combine start and end line
12593           - Fixed serious DeleteChars bug that would leave the document tree
12594             broken
12595           - Improved DumpTree with several logic checks to detect broken
12596             document trees
12597           - Removed debug lines
12598           - Fixed Caret.WordForward/WordBack moving code, now always also 
12599             updates caret.tag (fixes crash when word-selecting across tag
12600             boundaries via keyboard)
12601           - Added Insert() method for inserting multiline text into documents
12602           - Fixed DeleteChars() calculation errors that would cause a broken
12603             tag chain with multiple tag lines
12604           - DeleteChars() no longer crashes on multi-tag lines if not all tags
12605           - Split() no longer moves caret if split is at caret location
12606           - ReplaceSelection() now updates the cursor and re-displays it
12607           - ReplaceSelection() now uses new Insert() method to avoid code
12608             duplication
12609           - FormatText() can now handle formatting partial lines
12610         * TextBoxBase.cs:
12611           - Append now uses new TextControl.Insert() method (this avoids 
12612             duplicate code)
12613           - Implemented Ctrl-X (Cut) (
12614           - Implemented Ctrl-C (Copy)
12615           - Implemented Ctrl-V (Paste) (Still some bugs related to screen 
12616             regeneration when pasting text; roundtripping Copy&Paste within
12617             edit control still fails due to some calculation bugs in GenerateRTF)
12618           - The Delete key will now remove the current selection if it is visible
12619         * TextBox.cs: Removed debug lines
12620         * XplatUI.cs: Trigger initialization of DataFormats (which requires the
12621           driver to be initialized and can't therefore be done via a static ctor)
12623 2005-11-10  Peter Dennis Bartok  <pbartok@novell.com>
12625         * TextControl.cs: Added backend code for finding char arrays and strings
12626         * TextBoxBase.cs:
12627           - Added mouse wheel scroll support
12628           - Added support for VScroll and HScroll events
12629         * RichTextBox.cs:
12630           - Implemented all seven Find() variants
12631           - Implemented GetCharFromPosition()
12632           - Implemented GetCharIndexFromPosition()
12633           - Implemented GetLineFromIndex()
12634           - Implemented GetPositionFromCharIndex();
12635           - Implemented SaveFile for PlainText and UnicodeText
12636           - Fixed set_Font, now setting a new font applies that font to
12637             the whole document
12638           - Implemented generic Document to RTF converter
12639           - Implemented SaveFile for RichText format (still missing unicode
12640             conversion for non-ansi chars)
12641           - Implemented get_Rtf
12642           - Implemented get_SelectedRtf
12644 2005-11-09  Peter Dennis Bartok  <pbartok@novell.com>
12646         * Control.cs (WndProc): Call HandleClick after having sent OnMouseUp
12647           to allow any captures to be released before triggering OnClick. This
12648           way a click handler may capture the mouse without interference.
12649         * XplatUIX11.cs: Always send mouse messages to grab window if one exists.
12650           This way we send them even though X may not allow a grab (if the window
12651           isn't visible, for example)
12653 2005-11-08  Pedro Martinez Julia <pedromj@gmail.com>
12655         * DataGridViewRowEventArgs.cs: DataGridView implementation
12656         * DataGridViewElement.cs: DataGridView implementation
12657         * DataGridViewComboBoxCell.cs: DataGridView implementation
12658         * DataGridViewDataErrorContexts.cs: DataGridView implementation
12659         * DataGridViewCellErrorTextNeededEventArgs.cs: DataGridView implementation
12660         * DataGridViewColumnHeadersHeightSizeMode.cs: DataGridView implementation
12661         * ImageLayout.cs: DataGridView implementation
12662         * DataGridViewComboBoxColumn.cs: DataGridView implementation
12663         * DataGridViewCellMouseEventHandler.cs: DataGridView implementation
12664         * DataGridViewSelectionMode.cs: DataGridView implementation
12665         * IDataGridViewEditingControl.cs: DataGridView implementation
12666         * DataGridViewSortCompareEventHandler.cs: DataGridView implementation
12667         * DataGridViewCellStyleContentChangedEventHandler.cs: DataGridView implementation
12668         * DataGridViewAutoSizeModeEventHandler.cs: DataGridView implementation
12669         * DataGridViewColumnStateChangedEventHandler.cs: DataGridView implementation
12670         * DataGridViewColumnSortMode.cs: DataGridView implementation
12671         * DataGridView.cs: DataGridView implementation
12672         * DataGridViewRowStateChangedEventHandler.cs: DataGridView implementation
12673         * DataGridViewRowPostPaintEventArgs.cs: DataGridView implementation
12674         * DataGridViewDataErrorEventArgs.cs: DataGridView implementation
12675         * Padding.cs: DataGridView implementation
12676         * DataGridViewCellParsingEventArgs.cs: DataGridView implementation
12677         * DataGridViewCellStateChangedEventHandler.cs: DataGridView implementation
12678         * DataGridViewRowEventHandler.cs: DataGridView implementation
12679         * DataGridViewCellPaintingEventHandler.cs: DataGridView implementation
12680         * DataGridViewCellFormattingEventHandler.cs: DataGridView implementation
12681         * DataGridViewButtonCell.cs: DataGridView implementation
12682         * DataGridViewCellStyleContentChangedEventArgs.cs: DataGridView implementation
12683         * DataGridViewEditMode.cs: DataGridView implementation
12684         * DataGridViewCellValueEventArgs.cs: DataGridView implementation
12685         * DataGridViewRowCancelEventArgs.cs: DataGridView implementation
12686         * DataGridViewRowHeadersWidthSizeMode.cs: DataGridView implementation
12687         * DataGridViewCheckBoxColumn.cs: DataGridView implementation
12688         * DataGridViewCellToolTipTextNeededEventHandler.cs: DataGridView implementation
12689         * DataGridViewAutoSizeColumnsMode.cs: DataGridView implementation
12690         * DataGridViewCellEventHandler.cs: DataGridView implementation
12691         * DataGridViewEditingControlShowingEventHandler.cs: DataGridView implementation
12692         * DataGridViewCellStyleConverter.cs: DataGridView implementation
12693         * DataGridViewSelectedRowCollection.cs: DataGridView implementation
12694         * DataGridViewBindingCompleteEventHandler.cs: DataGridView implementation
12695         * DataGridViewColumnEventArgs.cs: DataGridView implementation
12696         * DataGridViewRowHeightInfoPushedEventHandler.cs: DataGridView implementation
12697         * DataGridViewRowContextMenuStripNeededEventHandler.cs: DataGridView implementation
12698         * QuestionEventArgs.cs: DataGridView implementation
12699         * IDataGridViewEditingCell.cs: DataGridView implementation
12700         * DataGridViewTriState.cs: DataGridView implementation
12701         * DataGridViewColumnDesignTimeVisibleAttribute.cs: DataGridView implementation
12702         * DataGridViewCellStateChangedEventArgs.cs: DataGridView implementation
12703         * DataGridViewColumnCollection.cs: DataGridView implementation
12704         * DataGridViewCellValueEventHandler.cs: DataGridView implementation
12705         * DataGridViewRowDividerDoubleClickEventHandler.cs: DataGridView implementation
12706         * DataGridViewCellFormattingEventArgs.cs: DataGridView implementation
12707         * DataGridViewColumn.cs: DataGridView implementation
12708         * DataGridViewCellBorderStyle.cs: DataGridView implementation
12709         * DataGridViewCellContextMenuStripNeededEventHandler.cs: DataGridView implementation
12710         * DataGridViewCellValidatingEventArgs.cs: DataGridView implementation
12711         * DataGridViewRow.cs: DataGridView implementation
12712         * DataGridViewImageCellLayout.cs: DataGridView implementation
12713         * DataGridViewImageCell.cs: DataGridView implementation
12714         * DataGridViewTopLeftHeaderCell.cs: DataGridView implementation
12715         * DataGridViewCheckBoxCell.cs: DataGridView implementation
12716         * DataGridViewHeaderCell.cs: DataGridView implementation
12717         * DataGridViewCellErrorTextNeededEventHandler.cs: DataGridView implementation
12718         * DataGridViewRowHeightInfoPushedEventArgs.cs: DataGridView implementation
12719         * DataGridViewAutoSizeColumnsModeEventHandler.cs: DataGridView implementation
12720         * DataGridViewTextBoxColumn.cs: DataGridView implementation
12721         * QuestionEventHandler.cs: DataGridView implementation
12722         * DataGridViewCellStyleScopes.cs: DataGridView implementation
12723         * DataGridViewSortCompareEventArgs.cs: DataGridView implementation
12724         * DataGridViewCellContextMenuStripNeededEventArgs.cs: DataGridView implementation
12725         * DataGridViewCell.cs: DataGridView implementation
12726         * DataGridViewCellEventArgs.cs: DataGridView implementation
12727         * DataGridViewClipboardCopyMode.cs: DataGridView implementation
12728         * DataGridViewCellStyle.cs: DataGridView implementation
12729         * DataGridViewColumnHeaderCell.cs: DataGridView implementation
12730         * DataGridViewRowPrePaintEventHandler.cs: DataGridView implementation
12731         * DataGridViewRowCancelEventHandler.cs: DataGridView implementation
12732         * TextFormatFlags.cs: DataGridView implementation
12733         * DataGridViewCellToolTipTextNeededEventArgs.cs: DataGridView implementation
12734         * DataGridViewDataErrorEventHandler.cs: DataGridView implementation
12735         * DataGridViewAdvancedCellBorderStyle.cs: DataGridView implementation
12736         * DataGridViewCellPaintingEventArgs.cs: DataGridView implementation
12737         * DataGridViewButtonColumn.cs: DataGridView implementation
12738         * DataGridViewRowsRemovedEventArgs.cs: DataGridView implementation
12739         * HandledMouseEventArgs.cs: DataGridView implementation
12740         * DataGridViewCellParsingEventHandler.cs: DataGridView implementation
12741         * DataGridViewColumnDividerDoubleClickEventHandler.cs: DataGridView implementation
12742         * DataGridViewCellMouseEventArgs.cs: DataGridView implementation
12743         * DataGridViewAutoSizeRowsMode.cs: DataGridView implementation
12744         * DataGridViewRowCollection.cs: DataGridView implementation
12745         * DataGridViewAdvancedBorderStyle.cs: DataGridView implementation
12746         * DataGridViewCellCancelEventHandler.cs: DataGridView implementation
12747         * DataGridViewHitTestType.cs: DataGridView implementation
12748         * DataGridViewAutoSizeModeEventArgs.cs: DataGridView implementation
12749         * DataGridViewColumnStateChangedEventArgs.cs: DataGridView implementation
12750         * DataGridViewColumnEventHandler.cs: DataGridView implementation
12751         * DataGridViewRowDividerDoubleClickEventArgs.cs: DataGridView implementation
12752         * DataGridViewAutoSizeRowMode.cs: DataGridView implementation
12753         * DataGridViewRowHeightInfoNeededEventArgs.cs: DataGridView implementation
12754         * DataGridViewRowsDeletedEventArgs.cs: DataGridView implementation
12755         * DataGridViewTextBoxEditingControl.cs: DataGridView implementation
12756         * DataGridViewContentAlignment.cs: DataGridView implementation
12757         * DataGridViewRowPostPaintEventHandler.cs: DataGridView implementation
12758         * DataGridViewComboBoxEditingControl.cs: DataGridView implementation
12759         * DataGridViewCellValidatingEventHandler.cs: DataGridView implementation
12760         * DataGridViewSelectedColumnCollection.cs: DataGridView implementation
12761         * DataGridViewPaintParts.cs: DataGridView implementation
12762         * DataGridViewCellCollection.cs: DataGridView implementation
12763         * DataGridViewRowsAddedEventArgs.cs: DataGridView implementation
12764         * DataGridViewImageColumn.cs: DataGridView implementation
12765         * DataGridViewRowsRemovedEventHandler.cs: DataGridView implementation
12766         * DataGridViewElementStates.cs: DataGridView implementation
12767         * DataGridViewRowHeightInfoNeededEventHandler.cs: DataGridView implementation
12768         * DataGridViewColumnDividerDoubleClickEventArgs.cs: DataGridView implementation
12769         * DataGridViewRowPrePaintEventArgs.cs: DataGridView implementation
12770         * DataGridViewRowStateChangedEventArgs.cs: DataGridView implementation
12771         * DataGridViewEditingControlShowingEventArgs.cs: DataGridView implementation
12772         * DataGridViewCellCancelEventArgs.cs: DataGridView implementation
12773         * DataGridViewRowHeaderCell.cs: DataGridView implementation
12774         * DataGridViewBindingCompleteEventArgs.cs: DataGridView implementation
12775         * DataGridViewTextBoxCell.cs: DataGridView implementation
12776         * DataGridViewBand.cs: DataGridView implementation
12777         * DataGridViewAutoSizeColumnModeEventArgs.cs: DataGridView implementation
12778         * DataGridViewHeaderBorderStyle.cs: DataGridView implementation
12779         * DataGridViewRowsAddedEventHandler.cs: DataGridView implementation
12780         * DataGridViewAutoSizeColumnMode.cs: DataGridView implementation
12781         * DataGridViewAutoSizeColumnModeEventHandler.cs: DataGridView implementation
12782         * DataGridViewAutoSizeColumnsModeEventArgs.cs: DataGridView implementation
12783         * DataGridViewRowErrorTextNeededEventHandler.cs: DataGridView implementation
12784         * DataGridViewSelectedCellCollection.cs: DataGridView implementation
12785         * DataGridViewRowContextMenuStripNeededEventArgs.cs: DataGridView implementation
12786         * DataGridViewRowErrorTextNeededEventArgs.cs: DataGridView implementation
12787         * DataGridViewComboBoxDisplayStyle.cs: DataGridView implementation
12789 2005-11-08  Peter Dennis Bartok  <pbartok@novell.com>
12791         * ThemeWin32Classic.cs: 
12792           - Draw the outside focus rectangle around buttons
12793           - Use CPDrawFocusRectangle to draw focus rectangles until Cairo
12794             doesn't use end caps for every dash of a line anymore. This
12795             workaround ignores the forecolor.
12797 2005-11-08  Kornél Pál  <kornelpal@hotmail.com>
12799         * ImageList.cs: Don't use ArgbColor with LayoutKind.Explicit as it isn't
12800           endian safe.
12802 2005-11-07  Jackson Harper  <jackson@ximian.com>
12804         * X11Dnd.cs: Set the X/Y positions on the DragEventArgs correctly.
12806 2005-11-07  Jackson Harper  <jackson@ximian.com>
12808         * ScrollableControl.cs: Calculate the maximum and change vars
12809         (more) correctly so that scrollbars appear as a sensible size.
12811 2005-11-04  Jackson Harper  <jackson@ximian.com>
12813         * TreeNodeCollection.cs: Refresh when nodes are cleared from the
12814         collection.
12815         * TreeView.cs: When the tree is sorted null out the top_node so
12816         that it is recalculated.
12817         - Use dotted lines instead of dashed lines to match MS better.
12819 2005-11-04  Jordi Mas i Hernandez <jordimash@gmail.com>
12821         * ListView.cs: 
12822           - Implements key search for items. Useful when browsing files with FileDialog
12823           - When changing view mode or when clear the items reset scrollbar positions
12825 2005-11-04  Jackson Harper  <jackson@ximian.com>
12827         * CurrencyManager.cs: Implement the MetaDataChanged event, the
12828         Reset method, and the CheckEmpty. CheckEmpty is just a total guess
12829         as to what the method may do as there is no real way of creating a
12830         derived CurrencyManager and calling the method. 
12832 2005-11-03  Jackson Harper  <jackson@ximian.com>
12834         * ThemeWin32Classic.cs: Implement ownerdrawing in the tab control
12835         * TabControl.cs: Add Ownerdrawing bits, add the UpdateTabSelection
12836         method which seems to just be used internally to refresh the tabs.
12838 2005-11-03  Jackson Harper  <jackson@ximian.com>
12840         * TabControl.cs: Implement the remove method. Fix some broken
12841         comments.
12843 2005-11-03  Peter Dennis Bartok  <pbartok@novell.com>
12845         * DateTimePicker.cs:
12846           - Added missing DateTimePickerAccessibleObject class
12847           - Added missing events
12848           - Added OnFontChanged method
12849         * Form.cs: Added missing attributes
12850         * TreeView.cs: Added missing attributes
12852 2005-11-03  Peter Dennis Bartok  <pbartok@novell.com> 
12854         * GridItemCollection.cs: Fix signatures
12856 2005-11-03  Peter Dennis Bartok  <pbartok@novell.com>
12858         * XplatUI.cs: Updated build rev/date
12859         * ComboBox.cs, DataGridTextBoxColumn.cs Control.cs, 
12860           DataGridTableStyle.cs, DataGrid.cs, DateTimePicker.cs: Signature fixes
12861         * Application.cs: Trigger context-specific ExitThread events
12863 2005-11-03  Jackson Harper  <jackson@ximian.com>
12865         * Menu.cs:
12866         * MainMenu.cs:
12867         * GridTableStylesCollection.cs:
12868         * Timer.cs:
12869         * TabPage.cs:
12870         * HelpProvider.cs:
12871         * StatusBar.cs:
12872         * MonthCalendar.cs: Signature fixes
12874 2005-11-03  Jackson Harper  <jackson@ximian.com>
12876         * TreeNodeCollection.cs: Remove should not be virtual.
12877         * TreeView.cs: Implement the last of the missing methods.
12879 2005-11-03  Jackson Harper  <jackson@ximian.com>
12881         * TreeNodeConverter.cs: Implement to get off my class-status back.
12883 2005-11-03  Jackson Harper  <jackson@ximian.com>
12885         * TreeView.cs: Hookup the bits for drag and drop.
12886         * TreeNode.cs: Don't cache the tree_view or index anymore, now
12887         that nodes can be moved from tree to tree easily this just causes
12888         all sorts of problems.
12889         * TreeNodeCollection: Don't need to give treenodes an index and
12890         treeview anymore when they are added, these are computed on the
12891         fly. Also make sure to remove a node before its added.
12893 2005-11-03  Peter Dennis Bartok  <pbartok@novell.com>
12895         * TextControl.cs:
12896           - Added CaretSelection enum
12897           - Added comparison methods to Marker struct, makes selection code
12898             more readable
12899           - Added SelectionStart and SelectionEnd as 'moveable' location for
12900             the CaretDirection enum and handler
12901           - Added selection_prev variable to track optimized invalidation for
12902             word and line selection
12903           - Added SelectionVisible property (returns true if there is a valid 
12904             selection)
12905           - Switched CaretHasFocus to only display the caret if there is no
12906             visible selection
12907           - Avoiding StringBuilder.ToString to retrieve a single char, instead
12908             using the direct character index; should be much faster
12909           - Added various conditional debug statements
12910           - Fixed invalidation calculation for selection ranges
12911           - Added ExpandSelection() method to support word and line selection
12912           - Switched SetSelectionToCaret to use new Marker compare overloads
12913           - Added central IsWordSeparator() method to determine word 
12914             separators/whitespace and FindWordSeparator() to streamline common
12915             usage of IsWordSeparator()
12916         * TextBoxBase.cs:
12917           - Removed unneeded grabbed variable, it was just mirroring
12918             Control.Capture
12919           - No longer firing OnTextChanged event when Text setter is called,
12920             since the base will fire the event for us
12921           - Added handling of Ctrl-Up/Down selection
12922           - Added handling of Shift-Cursorkey selection
12923           - Added handling for Ctrl-Delete and Ctrl-Backspace to remove
12924             words
12925           - Added handling of Shift and Ctrl-Shift-Home/End selection
12926           - Removed some debug output
12927           - Added handling for single/double/tripple-click to place caret/
12928             select word/select line respectively (Fixes bug #76031)
12929           - Added support for drag expansion of word/line selection
12930         * RichTextBox.cs: Handle GotFocus event to trigger redrawing of
12931           current selection
12933 2005-11-02  Jackson Harper  <jackson@ximian.com>
12935         * X11Dnd.cs: If the drag is going to and from a MWF window just
12936         copy the data instead of sending it out through the X Selection
12937         mechanism.
12939 2005-11-02  Jackson Harper  <jackson@ximian.com>
12941         * X11Dnd.cs:
12942         * XplatUIX11.cs: When in a drag we don't want motion notify
12943         messages to get passed on to the other controls. This prevents
12944         mouse move messages from showing up in the drag source.
12946 2005-11-02  Jackson Harper  <jackson@ximian.com>
12948         * X11Dnd.cs: Remove unneeded call to XAllowEvents.  Make sure that
12949         the correct button is release to end a drag.
12950         * XplatUIX11.cs: Make the button state internal so the drag system
12951         can access it.  Dragging needs to know about all button releases,
12952         not just left button.
12954 2005-11-02  Miguel de Icaza  <miguel@novell.com>
12956         * Form.cs (Icon): If the icon is null, reset the icon to the
12957         default value. 
12959         * Cursor.cs: When writing the AND-mask bitmap do not include the
12960         number of colors, but hardcode those to two (black and white),
12961         fixes the loading of color cursors (Paint Dot Net).
12963         * Form.cs: To debug, allow MONO_MWF_SCALING=disable variable to
12964         turn off autoscaling.
12966         * Cursor.cs: Allow resource type to be 1 or 2 (from ImageMagic).
12968 2005-11-02  Jackson Harper  <jackson@ximian.com>
12970         * X11Dnd.cs: Make sure to send a status message if the pointer
12971         enters a control that can not accept a drop, otherwise the cursor
12972         isn't updated correctly. Also tried to compress the lines of code
12973         a bit.
12975 2005-11-02  Jackson Harper  <jackson@ximian.com>
12977         * X11Dnd.cs: Change cursors based on drag action. Also attempt to
12978         set actions correctly.  This isn't perfect as XDND and win32 have
12979         some differences on how you allow actions. I'll clear this up by
12980         adding a path for drag from MWF to MWF windows.
12981         * XplatUIX11.cs: Hook into the dnd system.
12983 2005-11-02  Jordi Mas i Hernandez <jmas@softcatala.org>
12985         * ListView.cs: Fixes scroll bar visibility. Hide them if they were
12986         previously shown but they are no longer need it. Very obvious when 
12987         browsing files with FileDialog.
12989 2005-11-01  Peter Dennis Bartok  <pbartok@novell.com>
12991         * Control.cs: We always need to call OnPaintBackground. We pretty much
12992           ignore AllPaintingInWmPaint and always do the painting there, whether 
12993           it's set or not, since we always ignore the WM_ERASEBKGND message 
12994           (which we don't generate on X11). This fixes #76616.
12995         * Panel.cs: Removed unneeded background painting. This happens properly
12996           in Control.cs already
12998 2005-10-31  Mike Kestner  <mkestner@novell.com>
13000         * Menu.cs: Add items to collection before setting their index.
13001         * MenuItem.cs : add range checking with ArgumentException like MS.
13002         [Fixes #76510]
13004 2005-10-31  Jackson Harper  <jackson@ximian.com>
13006         * ListBox.cs: Invalidate if the area is visible at all not just
13007         contained in the visible rect. Fixes unselection of semi visible
13008         items.
13010 2005-10-31  Jackson Harper  <jackson@ximian.com>
13012         * Control.cs: Consistently name the dnd methods. Make them
13013         internal so we can override them to match some MS behavoir
13014         internally.
13015         * Win32DnD.cs: Use the new consistent names.
13017 2005-10-31  Jackson Harper  <jackson@ximian.com>
13019         * TreeView.cs: Don't draw the selected node when we lose focus.
13021 2005-10-31  Jackson Harper  <jackson@ximian.com>
13023         * X11Dnd.cs: We still need to reset the state even though a full
13024         reset isn't being done, otherwise status's still get sent all over
13025         the place.
13027 2005-10-31  Jackson Harper  <jackson@ximian.com>
13029         * Control.cs: Make the dnd_aware flag internal so the dnd
13030         subsystem can check it. Catch exceptions thrown in dnd handlers to
13031         match MS behavoir.
13032         * Hwnd.cs: Add a flag for whether or not a window is dnd aware.
13033         * X11Dnd.cs: Handle null data in the converters. Set the XDND
13034         version when sending a XdndEnter. Use the control/hwnd dnd_aware
13035         flags to reduce the number of dnd enters/status's sent.
13037 2005-10-31  Jackson Harper  <jackson@ximian.com>
13039         * X11Dnd.cs: Don't need the sizeof here. Patch by Jordi Mas.
13041 2005-10-31  Jordi Mas i Hernandez <jordi@ximian.com>
13043         * PictureBox.cs: Fixes 76512
13045 2005-10-28  Jackson Harper  <jackson@ximian.com>
13047         * X11Dnd.cs: Early implementation to support winforms being a drag
13048         source for data on X11. Also restructured the converters so they
13049         can go both ways now.
13050         * XplatUIX11.cs: Tie ins to the the Dnd stuff.
13051         
13052 2005-10-27  Peter Dennis Bartok  <pbartok@novell.com>
13054         * XplatUIX11.cs: Fixed FIXME - implemented ASCII encoding for XA_STRING
13055           clipboard requests
13057 2005-10-27  Jackson Harper  <jackson@ximian.com>
13059         * TreeNode.cs: Implement serialization so my DnD examples will work.
13061 2005-10-24  Kornél Pál  <kornelpal@hotmail.com>
13063         * ButtonBase.cs, ListView.cs, NotifyIcon.cs, PictureBox.cs, ToolBar.cs,
13064           TreeView.cs: Don't dispose objects that are not owned.
13065           
13066 2005-10-24  Peter Dennis Bartok  <pbartok@novell.com>
13068         * Cursor.cs: Defaulting the Current cursor to Cursors.Default. We
13069           should retrieve the current cursor and report that, but XplatUI
13070           doesn't (yet) have an interface for that (and I'm not sure I even
13071           can, on X11)
13072         * XplatUIWin32.cs: Fixed override behaviour. The override is temporary,
13073           until any message loop processing is done (and the WM_SETCURSOR
13074           replaces the cursor to the proper one)
13075         * XplatUIX11.cs: 
13076           - Fixed override behaviour, we can't set the cursor globally on X11, 
13077             just for our windows.
13078           - Invalidating the System.Drawing X11 display handle when we are
13079             shutting down
13080         * Control.cs: Fix to make csc happy
13082 2005-10-23  Peter Dennis Bartok  <pbartok@novell.com>
13084         * TextBoxBase.cs: 
13085           - get_Text: Add last line (without trailing newline) to returned
13086             value (Fixes 76212)
13087           - get_TextLength: Count last line in returned length
13088           - ToString: Call Text property instead of duplicating code
13090 2005-10-23  Kornél Pál  <kornelpal@hotmail.com>
13092         * ImageList.cs: Dispose ImageAttributes objects.
13094 2005-10-22  Kornél Pál  <kornelpal@hotmail.com>
13096         * ImageList.cs: Use attribute constructors with less arguments where
13097           possible.
13099 2005-10-22  Kornél Pál  <kornelpal@hotmail.com>
13101         * ImageList.cs: Added lastKeyIndex field and use in IndexOfKey.
13102           Use typeof instead of strings when assembly is referenced. Added
13103           some more comments.
13105 2005-10-21  Jackson Harper  <jackson@ximian.com>
13107         * ListView.cs: Raise a double click event. Also tried to somewhat
13108         fix when the selectedindexchanged event is raised. Its still
13109         broken though.
13111 2005-10-21  Jackson Harper  <jackson@ximian.com>
13113         * TreeView.cs: New method to invalidate the plus minus area of a
13114         node without invalidating the whole node (maybe this can be used
13115         in some more places).
13116         * TreeNodeCollection.cs: When adding to an empty node we need to
13117         invalidate its plus minus area so the little block shows up.
13118         
13119 2005-10-21  Jackson Harper  <jackson@ximian.com>
13121         * TreeView.cs: Make sure that when we invalidate a node the bounds
13122         are big enough to cover the selected box and the focus
13123         rectangle. Use a different colour for the lines connecting nodes
13124         so they show up with all themes.
13126 2005-10-21  Peter Dennis Bartok  <pbartok@novell.com>
13128         * NativeWindow.cs: Don't call anything that could call into the driver,
13129           we might be on a different thread.
13131 2005-10-21  Peter Dennis Bartok  <pbartok@novell.com> 
13133         * Control.cs(Dispose): Since Dispose might run on a different thread,
13134           make sure that we call methods that could call into the driver via
13135           invoke, to avoid thread issues
13137 2005-10-21  Peter Dennis Bartok  <pbartok@novell.com>
13139         * XplatUI.cs: Removed finalizer
13140         * XplatUIX11.cs: Removed Destructor, was causing crashes due to X11
13141           not allowing to be called on the finalizer thread.
13143 2005-10-21  Kornél Pál  <kornelpal@hotmail.com>
13145         * ImageList.cs:
13146           - Reverted r51889 and r51891.
13147           - Added ImageListItem class that stores unmodified image items and image
13148             properties required to create list images until handle is created.
13149           - Added AddItem and moved image creation logic to AddItemInternal.
13150           - Added CreateHandle method that creates images based on unmodified items.
13151           - Added DestroyHandle that changes state to store unmodified items.
13152           - Add and AddStrip methods no more create handle.
13153           - ReduceColorDepth has no return value.
13154           - Dispose destroys handle.
13155           - Modified other methods to reflect the above changes.
13156           - Implemented key support.
13157           - Added profile 2.0 members and attributes.
13158           - Added private Reset and ShouldSerialize methods that provide the same
13159             behavior as MS.NET but the Visual Studio .NET designer seems to ignore
13160             them as they are private.
13161           - Added some more comments about implementation details.
13163 2005-10-21  Jordi Mas i Hernandez <jordi@ximian.com>
13165         * DataGrid.cs: Adds support for vertical scrolling using the mousewheel
13167 2005-10-21  Jordi Mas i Hernandez <jordi@ximian.com>
13169         * Binding.cs: No PushData/PullData if there is no binding (fixes crash)
13171 2005-10-21  Jordi Mas i Hernandez <jordi@ximian.com>
13173         * DataGridDrawingLogic.cs: Fixes column hit calcultation
13174         * DataGridColumnStyle.cs: Remove debug message
13176 2005-10-20  Jackson Harper  <jackson@ximian.com>
13178         * TreeView.cs: We can always get input keys regardless of whether
13179         or not editing is enabled. They are used for navigation.
13181 2005-10-20  Jackson Harper  <jackson@ximian.com>
13183         * TreeNode.cs: Use the viewport rect for determining if a node
13184         needs to be moved for visibility. Don't use Begin/End edit. This
13185         calls a full refresh when its done.
13186         * TreeView.cs: New SetBottom works correctly.  Make the viewport
13187         rect property internal so the treenodes can see it. When clicking
13188         on a node we need to ensure that its visible because it might just
13189         be partly visible when clicked.
13191 2005-10-20  Jackson Harper  <jackson@ximian.com>
13193         * TreeNodeCollection.cs: Remove debug code.
13195 2005-10-20  Jordi Mas i Hernandez <jordi@ximian.com>
13197         * Datagrid.cs: Implements column sorting in Datagrid
13198         * DataGridColumnStyle.cs: Implements column sorting in Datagrid
13200 2005-10-20  Jackson Harper  <jackson@ximian.com>
13202         * TreeNodeCollection.cs: Remove items properly. Update the correct
13203         area after removing them.
13205 2005-10-20  Jordi Mas i Hernandez <jordi@ximian.com>
13207         * Datagrid.cs: Should not call base.OnPaintBackground
13209 2005-10-20  Peter Dennis Bartok  <pbartok@novell.com>
13211         * XplatUIX11.cs (GetMessage):
13212           - Now properly calculates NC_xBUTTONDOWN coordinates off the whole
13213             window instead of client window
13214           - Now properly calculates NC_xBUTTONUP message coordinates
13215           - ScreenToMenu now properly calculates it's coordinates of whole 
13216             window, since menus are in the whole window, not in the client
13217             window
13218           - Added WholeToScreen coordinate translation method
13220 2005-10-20  Peter Dennis Bartok  <pbartok@novell.com> 
13222         * XplatUIX11.cs (GetMessage): Don't return in situations where we don't
13223           want to return a message, loop back to the beginning of the function
13224           and grab the next real message to process instead.
13226 2005-10-20  Peter Dennis Bartok  <pbartok@novell.com>
13228         * Splitter.cs: Properly set limits if no filler control is used
13230 2005-10-19  Jackson Harper  <jackson@ximian.com>
13232         * ColorDialog.cs: Don't show the help button if it is not enabled
13233         instead of disabling it (this is what MS does). Don't create the
13234         panel until the dialog is run, otherwise the vars (such as
13235         ShowHelp) are not set yet.
13237 2005-10-19  Jackson Harper  <jackson@ximian.com>
13239         * TreeView.cs: Implement Begin/EndEdit more correctly so refreshes
13240         are reduced when adding nodes.
13241         * TreeNode.cs:
13242         * TreeNodeCollection.cs: Use UpdateNode instead of refreshing the
13243         tree.
13244         
13245 2005-10-19  Jackson Harper  <jackson@ximian.com>
13247         * FolderBrowserDialog.cs: End editing our treeview so the window
13248         actually gets refreshed.
13250 2005-10-18  Peter Dennis Bartok  <pbartok@novell.com>
13252         * Control.cs: Fixed logic flip on when to call OnPaintBackground. 
13253           Obsoleted handling of WM_ERASEBKGND, now always draws our background
13254           inside of WM_PAINT
13256 2005-10-18  Jordi Mas i Hernandez <jordi@ximian.com>
13258         * MenuAPI.cs: Returns after Hidding window
13259         * XplatUIX11.cs: Added TODO found while debugging menu issues
13261 2005-10-18  Peter Dennis Bartok  <pbartok@novell.com>
13263         * XplatUIX11.cs: Do not re-map the whole window when it's size
13264           becomes non-zero unless it's supposed to be actually visible
13266 2005-10-18  Jackson Harper  <jackson@ximian.com>
13268         * TreeView.cs: We don't need to keep a count anymore.
13269         * TreeNodeCollection.cs: Fix off by one in RemoveAt, Insert can
13270         use the Grow method.
13272 2005-10-18  Jackson Harper  <jackson@ximian.com>
13274         * TreeNodeCollection.cs: Insert is not supported on arrays, so
13275         implement it manually here.
13277 2005-10-18  Jackson Harper  <jackson@ximian.com>
13279         * ImageList.cs: Dont kill the list when the colour depth is
13280         changed, just change the colour depth of all the images.
13281         - Same goes for setting the image size. Just resize them all
13282         instead of killing the list softly.
13284 2005-10-18  Jackson Harper  <jackson@ximian.com>
13286         * Control.cs: Don't invalidate empty rectangles.
13288 2005-10-18  Jordi Mas i Hernandez <jordi@ximian.com>
13290         * ListViewItem.cs:
13291           - Adds checked item to the Checked/Item lists (where empty before)
13292           - Do not add items to the Selected lists if they are already present
13293         * ListView.cs:
13294           - Fixes IsFixedSize, SyncRoot, IsReadOnly in many collections
13295           - When deleting items make sure that we delete them for the Selected
13296           and Checked list also.
13298 2005-10-18  Jordi Mas i Hernandez <jordi@ximian.com>
13300         * Label.cs: Dispose objects no longer used
13301         * ThemeWin32Classic.cs: Dispose objects no longer used
13303 2005-10-18  Jackson Harper  <jackson@ximian.com>
13305         * TabControl.cs: Don't refresh the whole control when the tabs are
13306         scrolled, we just need to refresh the tab area.
13308 2005-10-17  Jackson Harper  <jackson@ximian.com>
13310         * XplatUIX11.cs: Compress code a little bit. Only calculate the
13311         after handle when we need it.
13313 2005-10-17  Peter Dennis Bartok  <pbartok@novell.com>
13315         * Control.cs: When the parent size changes, recalculate anchor 
13316           positions. Partial fix for #76462
13318 2005-10-17  Peter Dennis Bartok  <pbartok@novell.com>
13320         * ThemeWin32Classic.cs: Make sure the picturebox has it's background 
13321           drawn. Fixes #76462
13323 2005-10-17  Jackson Harper  <jackson@ximian.com>
13325         * MonthCalendar.cs: Don't create the numeric up down until our
13326         handle is created. Otherwise our handle is created in the
13327         constructor and we don't know if we are a WS_CHILD or WS_POPUP
13328         yet.
13330 2005-10-17  Jackson Harper  <jackson@ximian.com>
13332         * TreeView.cs: Merge in patch by Rafael Teixeira to align strings
13333         correctly.
13335 2005-10-17  Rafael Teixeira <rafaelteixeirabr@hotmail.com> 
13336         * TreeNode.cs : small logical fix (was using local var instead of field)
13337         
13338 2005-10-17  Jordi Mas i Hernandez <jordi@ximian.com>
13340         * ThemeWin32Classic.cs: Fixes vert/horz scrollbar colours
13342 2005-10-17  Jordi Mas i Hernandez <jordi@ximian.com>
13344         * ThemeWin32Classic.cs: Fixes focus drawing in for non-flat/popup buttons
13346 2005-10-16  Peter Dennis Bartok  <pbartok@novell.com> 
13348         * Control.cs: 
13349           - Re-implemented anchoring code. My first version was really broken.
13350             This fixes bug #76033. Unlike the previous implementation we will
13351             no longer have round errors since all numbers are calculated from
13352             scratch every time. Removed various anchor-related obsolete vars.
13353           - InitLayout no longer causes layout event firing and layout to be 
13354             performed
13356 2005-10-16  Jackson Harper  <jackson@ximian.com>
13358         * Hwnd.cs: Compute invalid area correctly (fixes my last commit
13359         which was broken).
13361 2005-10-16  Jackson Harper  <jackson@ximian.com>
13363         * TabControl.cs: Remove debug code.
13365 2005-10-16  Jackson Harper  <jackson@ximian.com>
13367         * XEventQueue.cs: Increase the default queue size (very simple
13368         apps needed to grow the queue).
13369         * Hwnd.cs: No finalizer so we don't need to suppress
13370         finalization. Compute the invalid area manually so a new rectangle
13371         does not newto be created.
13372         * ScrollableControl.cs: Don't set any params (otherwise visibility
13373         isn't set correctly).
13374         * MdiChildContext.cs: New constructor takes the mdi parent so it
13375         doesn't have to be computed and avoids a crash on windows. Draw
13376         the window icon properly, and allow the text to be seen.
13377         * Form.cs: Use new MdiChildContext constructor. Make sure the
13378         child context isn't null in wndproc.
13379         * TabControl.cs: Don't set focus, this is muddling keyboard
13380         behavoir. Expand the tab rows when a window size increase will
13381         allow extra tabs to be seen. Don't allow tabs smaller than the
13382         width of a window to be scrolled out of view.
13383         * TreeNode.cs:
13384         * TreeView.cs: Use measure string to calculate a nodes width, the
13385         width is cached and only updated when the text or the font is
13386         changed. Don't check for expand/collapse clicks on the first level
13387         nodes if root lines are disabled.
13388         
13389 2005-10-16  Ritvik Mayank  <mritvik@novell.com>
13391         * TextBoxBase.cs: Fixes #76352 (passing tab key in a multiline textbox)
13393 2005-10-16  Jordi Mas i Hernandez <jordi@ximian.com>
13395         * DataGridBoolColumn.cs: fixes warning
13397 2005-10-16  Jordi Mas i Hernandez <jordi@ximian.com>
13399         * ControlPaint.cs: Fixes methods Dark, DarkDark, Light, LightLight
13400         to match more to match more precisely the MS Net behavior
13402 2005-10-13  Peter Dennis Bartok  <pbartok@novell.com> 
13404         * Hwnd.cs: Added field to track if window is mapped
13405         * XplatUIX11.cs: 
13406           - Unmap windows if they become 0-size, re-map when 
13407             they are >0 again; fixes #76035
13408           - Re-set our error handler after initializing X11Desktop
13409             to override any error handlers Gtk or whatever was called
13410             may have set.
13412 2005-10-13  Peter Dennis Bartok  <pbartok@novell.com> 
13414         * CheckedListBox.cs: Removed unused vars
13415         * ListView.cs: Fixed signatures
13416         * RichTextBox.cs: Removed unused vars
13417         * TextBoxBase.cs: Removed unused vars
13418         * XplatUIWin32.cs: Removed unused vars
13419         * XplatUIX11.cs: Removed unused vars
13420         * XplatUI.cs: Updated version and date to latest published
13422 2005-10-13  Peter Dennis Bartok  <pbartok@novell.com>
13424         * Cursor.cs: Added private .ctor to work around a bug in
13425           resourceset (Thanks to Geoff Norton for the help on this)
13426         * SplitterEventArgs.cs: Made fields accessible so we don't
13427           waste boatloads of objects and can reuse the same one
13428           in Splitter
13429         * XplatUIWin32.cs(DrawReversibleLine): Now also considers
13430           any captions and borders when generating screen coordinates
13431         * Splitter.cs: Reimplemented control, now fully complete, uses
13432           rubberband drawing, supports and obeys all properties, has
13433           proper cursors
13435 2005-10-13  Miguel de Icaza  <miguel@novell.com>
13437         * Form.cs (Form): Setup default values for autoscale and
13438         autoscale_base_size;  Make these instance variables, not static
13439         variables. 
13441         (OnLoad): on the first load, adjust the size of the form.
13443 2005-10-13  Peter Dennis Bartok  <pbartok@novell.com>
13445         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs: Added 
13446           width argument to DrawReversibleRectangle()
13447         * XplatUIWin32.cs, XplatUIX11.cs: 
13448           - Implemented width for DrawReversibleRectangle()
13449           - Added logic to DrawReversibleRectangle that recognizes a zero
13450             width or height and only draws a line in that situation
13451         
13452 2005-10-12  Peter Dennis Bartok  <pbartok@novell.com> 
13454         * XplatUI.cs, XplatUIDriver.cs: Added GetAutoScaleSize()
13455         * XplatUIOSX.cs: Stubbed GetAutoScaleSize() method
13456         * XplatUIWin32.cs, XplatUIX11.cs: Implemented GetAutoScaleSize()
13457           method (it uses our FosterParent window to get a graphics context)
13459 2005-10-12  Peter Dennis Bartok  <pbartok@novell.com>
13461         * XplatUI.cs, XplatUIDriver.cs: Removed EraseWindowBackground 
13462           and SetWindowBackground methods
13463         * Control.cs:
13464           - Setting proper ControlStyles
13465           - We no longer call XplatUI.SetWindowBackground and XplatUI.
13466             EraseWindowBackground, instead we draw the window background
13467             ourselves in PaintControlBackground. This behaviour is
13468             required to match MS, where, when OnPaintBackground is not
13469             called, the background is not drawn.
13470           - Removed unneeded Refresh() in set_Text
13471         * Hwnd.cs: Dropped the ErasePending support. No longer needed
13472         * XplatUIX11.cs:
13473           - Created DeriveStyles method to translate from CreateParams to
13474             FormBorderStyle and TitleStyle, also handles BorderStyle (which
13475             matches FormBorderStyle enum values)
13476           - Consolidated SetHwndStyles and CalculateWindowRect border/title
13477             style calculations into single DeriveStyles method
13478           - Fixed CreateWindow to (finally) use Gravity. This prevents X11
13479             from redrawing the whole window on any resize or expose.
13480           - Fixed CreateWindow usage of SetWindowValuemask. Before not
13481             all styles were applied to our whole/client window appropriately
13482           - Removed EraseWindowBackground() and SetWindowBackground() methods
13483           - Removed handling of WM_ERASEBKGND message from DefWndProc, we
13484             no longer clear/redraw the background through X
13485           - Removed handling of erase_pending bit, we have no use for it (or
13486             so it seems)
13487         * XplatUIOSX.cs:
13488           - Removed generation and handling of WM_ERASEBKGND message
13489           - Removed EraseWindowBackground() and SetWindowBackground() methods
13490           - Removed handling of hwnd.ErasePending flag
13491         * XplatUIWin32.cs:
13492           - Removed EraseWindowBackground() and SetWindowBackground() methods
13493           - We no longer call EraseWindowBackground on PaintEventStart, we 
13494             ignore the fErase flag, erasing is handled in Control in the
13495             background handler
13496         * Button.cs, GroupBox.cs, Label.cs, CheckBox.cs, ProgressBar.cs,
13497           LinkLabel.cs, ListControl.cs, TabPage.cs, UpDownBase.cs,
13498           TextBoxBase.cs, TextBox.cs, ListView.cs, ButtonBase.cs, 
13499           CheckedListBox.cs, MdiClient.cs, Panel.cs, DataGrid.cs, 
13500           DataGridTextBox.cs, ScrollBar.cs, ListBox.cs, TrackBar.cs, 
13501           TabControl.cs, ScrollableControl.cs, ToolBar.cs, PictureBox.cs,
13502           DateTimePicker.cs, StatusBar.cs, MonthCalendar.cs: Setting proper ControlStyles
13504 2005-10-12  Jonathan Chambers <jonathan.chambers@ansys.com>
13506         * PropertyGrids.cs: Get sub properties
13507         * PropertyGridView.cs: Fix drawing code
13509 2005-10-11  Jordi Mas i Hernandez <jordi@ximian.com>
13511         * ListBox.cs: Fixes 76383
13513 2005-10-11  Jordi Mas i Hernandez <jordi@ximian.com>
13515         * DataGridTextBoxColumn.cs: Sets location and size before attachment
13516         * ThemeWin32Classic.cs: Fixes border drawing and calculations
13517         * DataGridDrawingLogic.cs: Fixes border drawing and calculations
13520 2005-10-11  Jordi Mas i Hernandez <jordi@ximian.com>
13522         * ComboBox.cs: Fixes border drawing
13524 2005-10-10  Miguel de Icaza  <miguel@novell.com>
13526         * MimeIcon.cs: Ignore errors if the file can not be read.
13528 2005-10-11  Jordi Mas i Hernandez <jordi@ximian.com>
13530         * Theme.cs, ThemeWin32Classic.cs, ListBox.cs:
13531          - Fixed border calculations
13532          - Fixed horizontal scrolling in single column listboxes
13533          - Fixed drawing issues
13535 2005-10-10  Peter Dennis Bartok  <pbartok@novell.com>
13537         * XplatUI.cs, XplatUIOSX.cs, XplatUIWin32.cs: Switched from BorderStyle to 
13538           FormBorderStyle enum
13539         * XplatUIX11.cs: Switched BorderStyle to FormBorderStyle, added 
13540           code to determine FormBorderStyles from CreateParams
13541         * Form.cs:
13542           - Fixed bug where we'd set the wrong window styles if we were
13543             not creating an MDI window
13544           - Added call to XplatUI.SetBorderStyle when form borders are set
13545         * Control.cs: Casting BorderStyles to accommodate changed XplatUI APIs
13546         * Hwnd.cs:
13547           - Removed obsolete edge style
13548           - Switched from BorderStyle to FormBorderStyle
13549         
13550 2005-10-10  Jackson Harper  <jackson@ximian.com>
13552         * Form.cs: Use the property to get the window handle instead of
13553         accessing it directly. Prevents a null reference exception.
13555 2005-10-10  Jackson Harper  <jackson@ximian.com>
13557         * TreeView.cs: Don't adjust the rect given to DrawString now that
13558         our libgdiplus draws correctly.
13560 2005-10-08  Jackson Harper  <jackson@ximian.com>
13562         * TreeView.cs: Don't try to find the clicked on node if there are
13563         no nodes in the tree.
13565 2005-10-08  Alexander Olk  <alex.olk@googlemail.com>
13567         * RichTextBox.cs:
13569           restore
13571 2005-10-08  Alexander Olk  <alex.olk@googlemail.com>
13573         * ImageListStreamer.cs, TreeView.cs, UpDownBase.cs, RichTextBox.cs,
13574           ColorDialog.cs, TextControl.cs, Panel.cs, MdiChildContext.cs,
13575           ErrorProvider.cs:
13576           Use ResPool for brushes and dispose System.Drawing objects that
13577           are not used anymore.
13579 2005-10-07  Jackson Harper  <jackson@ximian.com>
13581         * MdiChildContext.cs: Use the new borders instead of drawing them
13582         ourselves.
13584 2005-10-06  Jordi Mas i Hernandez <jordi@ximian.com>
13586         * Calling UpdateBounds after changing the window's BorderStyle 
13587         since the style can change the ClientSize
13589 2005-10-06  Peter Dennis Bartok  <pbartok@novell.com>
13591         * Control.cs: Made PaintControlBackground virtual
13592         * Panel.cs: Overriding PaintControlBackground instead of using paint
13593           event; paint event method was interfering with 'real' users of the
13594           event.
13596 2005-10-06  Jordi Mas i Hernandez <jordi@ximian.com>
13598         * ThemeWin32Classic.cs: remove border drawing since it is handled
13599         by the base control class now and was causing double border drawing.
13601 2005-10-06  Peter Dennis Bartok  <pbartok@novell.com>
13603         * Panel.cs: Redraw our background on paint. Not a pretty solution,
13604           but it does seem to match MS behaviour. This fixes bug #75324
13606 2005-10-06  Peter Dennis Bartok  <pbartok@novell.com>
13608         * XplatUIX11.cs: A better DrawReversibleRectangle version, however
13609           somewhat hackish looking
13611 2005-10-06  Peter Dennis Bartok  <pbartok@novell.com> 
13613         * TextBoxBase.cs:
13614           - We now accept Enter even if AcceptEnter is false, if the containing
13615             form does not have an AcceptButton configured (fixes bug #76355)
13616           - Calculations are now fixed to no longer use Width/Height, but
13617             ClientSize.Width/Height, since we now support borders (this was
13618             a result of fixing borders and therefore bug #76166)
13619           - We no longer show the horizontal scrollbar if TextBox.WordWrap is 
13620             true (fixes bug #76354)
13621         
13622 2005-10-06  Peter Dennis Bartok  <pbartok@novell.com>
13624         * Control.cs: 
13625           - Defaulting BorderStyle and setting it in XplatUI when our window 
13626             is created
13627           - Added enum check to InternalBorderStyle setter
13628         * XplatUIX11.cs: 
13629           - Added drawing of window borders
13630           - Now properly calculates WM decorations offset for toplevel 
13631             windows (fixes bug #74763)
13632         * XplatUIWin32.cs: 
13633           - Implemented BorderStyles for windows (we're letting win32 draw 
13634             the border for us)
13635           - Fixed the signature for SetWindowLong
13636         * PictureBox.cs, DataGrid.cs, TextBoxBase.cs, ToolBar.cs, Panel.cs,
13637           ListBox.cs, Label.cs: Now uses Control.InternalBorderStyle for 
13638           setting borders
13639         * UpDownBase.cs: Remove drawing of borders, this is handled by
13640           the driver, outside the client area
13641         * ListView.cs: Removed bogus border calculations. The control should
13642           be oblivious to borders, since those are not part of the client
13643           area. 
13644         * X11DesktopColors.cs: Commented out (currently) unneeded variables
13645         * ThemeWin32Classic.cs: Removed border calculations from ListView 
13646           drawing code
13648 2005-10-06  Jackson Harper  <jackson@ximian.com>
13650         * MdiChildContext.cs: Clear out the old virtual position remove
13651         all the unneeded calls to CreateGraphics.
13653 2005-10-06  Peter Dennis Bartok  <pbartok@novell.com> 
13655         * TextControl.cs: Use proper color for highlighted text; fixes #76350
13657 2005-10-06  Peter Dennis Bartok  <pbartok@novell.com> 
13659         * Form.cs: 
13660           - Added loading and setting of our new default icon
13661           - Only set icon if window is already created
13663 2005-10-06  Peter Dennis Bartok  <pbartok@novell.com>
13665         * Label.cs:
13666           - Do not explicitly set the foreground and background colors, to
13667             allow inheriting from parents (fixes #76302)
13668           - Use Control's InternalBorderStyle property to deal with borders
13670 2005-10-06  Jackson Harper  <jackson@ximian.com>
13672         * MdiChildContext.cs: Use the new xplatui function to draw a
13673         reversible rect.
13675 2005-10-06  Jackson Harper  <jackson@ximian.com>
13677         * Form.cs: Add the parent before creating the child context cause
13678         we need the parent when setting up the child.
13680 2005-10-06  Jackson Harper  <jackson@ximian.com>
13682         * FolderBrowserDialog.cs: redo the tree population code so a
13683         second thread isn't used. Should be a lot faster and more stable
13684         now.
13686 2005-10-05  Jackson Harper  <jackson@ximian.com>
13688         * TreeView.cs: There are no expand/collapse boxes if the node has
13689         no children.
13691 2005-10-05  Jackson Harper  <jackson@ximian.com>
13693         * X11DesktopColors.cs: Get menu colours for the gtk theme.
13695 2005-10-05  Alexander Olk  <alex.olk@googlemail.com>
13697         * FileDialog.cs: Fix InitialDirectory
13699 2005-10-05  Jordi Mas i Hernandez <jordi@ximian.com>
13701         * ComboBox.cs:
13702                 - Fixes changing between styles
13703                 - Fixes simple mode
13704                 - Fixes last item crashing when navigating with keyboard
13706 2005-10-05  Jordi Mas i Hernandez <jordi@ximian.com>
13708         * LinkLabel.cs: Related to 76045. Stops the LinkLabel been drawn as a Label
13710 2005-10-05  Jackson Harper  <jackson@ximian.com>
13712         * TreeView.cs: If updating the root node do a full refresh.
13713         * TreeNode.cs: The root node should be expanded by default. Also
13714         added a utility prop to tell if we are the root node.
13715         * TreeNodeCollection.cs: Only refresh if the node we are being
13716         added to is expanded. Also added a comment on a potential
13717         optimization.
13718         
13719 2005-10-04  Peter Dennis Bartok  <pbartok@novell.com>
13721         * Cursor.cs, Hwnd.cs: Added call to GC.SuppressFinalize() 
13722           in dispose method. Fixes #76330
13724 2005-10-04  Jordi Mas i Hernandez <jordi@ximian.com>
13726         * ListView.cs, ThemeWin32Classic.cs, ListViewItem.cs:
13728                 - Implements vertical and horizontal scrolling using XplatUI
13729                 - Fixes keyboard navagation
13730                 - Fixes EnsureVisible
13731                 - Drawing fixes
13732                 - Handles and draws focus properly
13735 2005-10-04  Kornél Pál  <kornelpal@hotmail.com>
13737         * ImageList.cs: Use upper case initials for internal fields. ImageStream:
13738           Create handle. NET_2_0: Destroy handle when value is null.
13740 2005-10-03  Jackson Harper  <jackson@ximian.com>
13742         * ScrollBar.cs: My last scrollbar patch was broken. This is a
13743         revert and a new patch to prevent the thumb from refreshing so
13744         much.
13746 2005-10-02  Jackson Harper  <jackson@ximian.com>
13748         * ScrollBar.cs: Don't update position if it hasn't actually
13749         changed. This occurs when you hold down the increment/decrement
13750         buttons and the thumb gets to the max/min.
13752 2005-10-01  Jackson Harper  <jackson@ximian.com>
13754         * Form.cs:
13755         * MdiChildContext.cs:
13756         * MdiClient.cs: Implement ActiveMdiChild in Form.
13758 2005-10-01  Jordi Mas i Hernandez <jordi@ximian.com>
13760         * ComboBox.cs: Include ComboBoxEdit flag for the edit item
13762 2005-10-01  Peter Dennis Bartok  <pbartok@novell.com>
13764         * X11DesktopColors.cs: Bow out gracefully if the Gtk libs cannot
13765           be found
13767 2005-09-30  Jackson Harper  <jackson@ximian.com>
13769         * ListBox.cs: Don't do a full refresh unless some data has
13770         actually changed.
13772 2005-09-30  Jackson Harper  <jackson@ximian.com>
13774         * TreeView.cs: Make sure that the checkboxes size is factored in
13775         even when not visible.
13777 2005-09-30  Peter Dennis Bartok  <pbartok@novell.com> 
13779         * FileDialog.cs: Fix Jordi's build break
13781 2005-09-30  Jordi Mas i Hernandez <jordi@ximian.com>
13783         * FileDialog.cs: 
13784                 - Use standard the Windows colours for the combobox as espected
13785                 - Dispose objects that use resouces when no longer need them
13787 2005-09-30  Peter Dennis Bartok  <pbartok@novell.com> 
13789         * X11DesktopColors.cs: Initial incomplete implementation
13790         * XplatUIX11.cs: Added call to initialize X11DesktopColors
13792 2005-09-30  Peter Dennis Bartok  <pbartok@novell.com>
13794         * Theme.cs: 
13795           - Switched Theme color names to match the names defined in 
13796             System.Drawing.KnownColors. Life's hard enough, no need to make 
13797             it harder.
13798           - Added setters to all theme color properties so themes can set
13799             their color schemes. The setters also propagate the color changes
13800             to System.Drawing.KnownColors via reflection
13801         * ControlPaint.cs,  Label.cs, TextControl.cs, ToolTip.cs, ThemeNice.cs,
13802           ComboBox.cs, MdiChildContext.cs, TextBoxBase.cs, DateTimePicker.cs
13803           DataGridColumnStyle.cs, MonthCalendar.cs, TreeView.cs: Updated to
13804           use the new, more logical theme color names
13805         * XplatUIWin32.cs: Updated the GetSysColorIndex enum to include new
13806           post-NT colors
13807         * ThemeWin32Classic.cs:
13808           - Removed code to set the old classic Windows colors. Instead it
13809             now relies on the colors returned by System.Drawing.KnownColors
13810             which will be either modern static colors (Unix) or colors
13811             read from the user's configuration (Win32)
13812           - Updated to use the new, more logical theme color names
13813           - Switched DataGrid drawing code to use only Theme colors instead of
13814             a mix of System.Drawing.KnownColors and Theme colors
13815           - DrawFrameControl(): Removed code that fills the button area, the
13816             fill would overwrite any previous fill done by a control. This
13817             fixes bug #75338 
13818           - Added DrawReversibleRectangle() stub
13819         * ScrollableControl.cs: Set visible state to false when scrollbars
13820           are removed (pdn fix)
13821         * XplatUI.cs, XplatUIOSX.cs, XplatUIDriver.cs: Added 
13822           DrawReversibleRectangle() method to allow drawing primitive 
13823           'rubber bands'
13824         * XplatUIX11.cs: Implemented DrawReversibleRectangle()
13826 2005-09-30  Kornél Pál  <kornelpal@hotmail.com>
13828         * ImageList.cs: Add(Icon): Create handle.
13830 2005-09-30  Jordi Mas i Hernandez <jordi@ximian.com>
13832         * ListView.cs:
13833         * ThemeWin32Classic.cs:
13834                 - Fixes detail mode
13835                 - Sets clippings
13836                 - Issues with drawing
13838 2005-09-30  Kornél Pál  <kornelpal@hotmail.com>
13840         * ImageList.cs: Moved RecreateHandle back to ImageList as event
13841           source has to be the ImageList.
13843 2005-09-30  Kornél Pál  <kornelpal@hotmail.com>
13845         * ImageList.cs: Add(Icon): Use Graphics.DrawIcon instead of Icon.ToBitmap.
13847 2005-09-30  Kornél Pál  <kornelpal@hotmail.com>
13849         * ImageList.cs: ReduceColorDepth: Clean up pointer operations.
13851 2005-09-30  Kornél Pál  <kornelpal@hotmail.com>
13853         * ImageList.cs: ImageCollection: Removed owner field as it is no more used.
13855 2005-09-29  Jonathan Chambers <jonathan.chambers@ansys.com>
13856         * GridItem.cs: Fixed TODOs
13857         * GridItemCollection.cs: Added ICollection interface
13859 2005-09-30  Kornél Pál  <kornelpal@hotmail.com>
13861         * ImageList.cs: Resize icons when needed.
13863 2005-09-29  Jordi Mas i Hernandez <jordi@ximian.com>
13865         * ListViewItem.cs
13866                 - Fixes GetBounds and returns on screen rects
13867         * ListView.cs:
13868                 - Fixes vertical and horzintal scrolling of items
13869         * ThemeWin32Classic.cs:
13870                 - Fixes drawing
13871                 
13872 2005-09-29  Raja R Harinath  <harinath@gmail.com>
13874         * ImageList.cs (ImageStream) [NET_2_0]: Reflect re-factoring.
13876 2005-09-29  Kornél Pál  <kornelpal@hotmail.com>
13878         * ImageList.cs: Added comments about handle creation. Moved Handle,
13879           HandleCreated and OnRecreateHandle implementations to ImageCollection.
13880           Handle is created in Add methods.
13882 2005-09-28  Jordi Mas i Hernandez <jordi@ximian.com>
13883          
13884         * DataGridDrawingLogic.cs: 
13885                 - Takes rows into account on Colum calculations
13886                 - Returns the column when clickig
13887         * DataGrid.cs:
13888                 - Fixes default HitTestInfo values
13889                 - Fixes HitTestInfo.ToString
13890                 - Fixes ResetBackColor          
13891         
13892 2005-09-28  Jackson Harper  <jackson@ximian.com>
13894         * MdiChildContext.cs: Obey rules for fixed sized windows (no
13895         sizing or cursor changes). Also added some temp code to draw the
13896         titlebars text (Makes dev a little easier).
13898 2005-09-28  Kornél Pál  <kornelpal@hotmail.com>
13900         * ImageList.cs: AddStrip: Throw ArgumentException when Image is not a Bitmap.
13902 2005-09-28  Jordi Mas i Hernandez <jordi@ximian.com>
13903          
13904         * ListBox.cs: Fixes bug 76253
13906 2005-09-28  Kornél Pál  <kornelpal@hotmail.com>
13908         * ImageList.cs: Added comments about the current implementation. Added
13909           ReduceColorDepth, IndexedColorDepths and GetNearestColor to can use
13910           Format32bppArgb to preserve transparency and can use Graphics.FromImage
13911           while using the specified ColorDepth. ReduceColorDepth uses unsafe code
13912           with Bitmap.LockBits for better performance. Revised the whole file to
13913           match MS.NET behaviour and provide better performance. Non-public
13914           interface members are calling public members even when they throw
13915           NotSupportedException for better maintainability. Moved ColorDepth,
13916           ImageSize, ImageStream and TransparentColor implementations to
13917           ImageCollection for better performance as these properties are not used
13918           by ImageList.
13919         * ImageListStreamer.cs: Added a new internal constructor that takes an
13920           ImageList.ImageCollection and serializes Images based on
13921           ImageCollection.ToArray(). Renamed ImageColorDepth to ColorDepth to
13922           match ImageList property name.
13924 2005-09-28  Kazuki Oikawa <kazuki@panicode.com>
13926         * ListBox.cs: Fixes IndexFromPoint for last item
13928 2005-09-27  Jackson Harper  <jackson@ximian.com>
13930         * Form.cs: Set the position of new mdi children correctly.
13932 2005-09-27  Jackson Harper  <jackson@ximian.com>
13934         * MdiClient.cs: New mdi children need to be added to the back of
13935         the controls collection so the zorder is set correctly. Also add a
13936         count of all the child windows that have been created.
13938 2005-09-27  Jackson Harper  <jackson@ximian.com>
13940         * Form.cs (CreateParams): Setup MDI forms correctly.
13942 2005-09-27  Jackson Harper  <jackson@ximian.com>
13944         * MdiChildContext.cs:
13945         * MonthCalendar.cs:
13946         * UpDownBase.cs:
13947         * ListBox.cs:
13948         * ListView.cs:
13949         * TextBoxBase.cs:
13950         * TreeView.cs:
13951         * ScrollableControl.cs:
13952         * ComboBox.cs: Add implicit controls using the new implict control
13953         functionality in ControlCollection. Also try to block multiple
13954         control add in a suspend/resume layout to save some cycles.
13955         
13956 2005-09-27  Jackson Harper  <jackson@ximian.com>
13958         * Control.cs: Add functionality to the controls collection to add
13959         'implicit controls' these are controls that are created by the
13960         containing control but should not be exposed to the user. Such as
13961         scrollbars in the treeview.
13962         * Form.cs: The list var of the ControlsCollection is no longer
13963         available because of the potential of implicit controls getting
13964         ignored by someone accessing the list directly.
13966 2005-09-26  Peter Dennis Bartok  <pbartok@novell.com>
13968         * Control.cs: Fixed SetChildIndex; it no longer causes a child to
13969           loose it's parent. (Fixed bug introduced in r49103 when we added
13970           setting the child parent to null on Remove)
13972 2005-09-26  Gert Driesen  <drieseng@users.sourceforge.net>
13974         * DataGridBoolColumn.cs: Marked CheckState private to fix public API.
13975         * Splitter.cs: Added missing attributes for BorderStyle property.
13976         * TextBoxBase.cs: Marked Calculate* methods internal.
13977         * TextBox.cs: Fixed DefaultValue for PasswordChar property to match
13978         MS.NET.
13980 2005-09-26  Jordi Mas i Hernandez <jordi@ximian.com>
13981          
13982         * ListBox.cs: Fixes navigation to the last item in multicolumn lists
13984 2005-09-25  Jackson Harper  <jackson@ximian.com>
13986         * TreeView.cs: Update the node bounds correctly regardless of
13987         whether the node is visible.
13989 2005-09-25  Jackson Harper  <jackson@ximian.com>
13991         * ImageList.cs: Don't dispose the image after it is added to the
13992         image list. Only reformat images that need to be resized.
13994 2005-09-25  Jackson Harper  <jackson@ximian.com>
13996         * ImageList.cs: Don't set the format when changing the image.
13998 2005-09-25  Jackson Harper  <jackson@ximian.com>
14000         * TreeView.cs: We can't just assume the node has a font. Use the
14001         treeviews font if no node font is available.
14003 2005-09-25  Jackson Harper  <jackson@ximian.com>
14005         * TreeView.cs: Allow the scrollbars to be reset with negative
14006         values.
14007         - Don't add scrollbars to negative sized windows.
14009 2005-09-23  Jackson Harper  <jackson@ximian.com>
14011         * XplatUIX11.cs: Update to use Mono.Posix.Native instead of plain
14012         old Mono.Posix. Also remove some stray code that shouldn't have
14013         been committed.
14015 2005-09-23  Jackson Harper  <jackson@ximian.com>
14017         * TreeView.cs: Attempt at proper sizing of the horizontal
14018         scrollbar. Also don't resize the scrollbars unless they are
14019         visible.
14021 2005-09-23  Jackson Harper  <jackson@ximian.com>
14023         * TreeView.cs: We don't need to expand the invalid area when the
14024         selection changes, as this is all drawn in the node's bounding
14025         box. The area needs to be expanded (previous typo was contracting
14026         it) when the focus rect moves.
14028 2005-09-23  Jackson Harper  <jackson@ximian.com>
14030         * TreeView.cs: Display the selection box under the correct
14031         circumstances. We were rendering white text with no selection box
14032         before.
14034 2005-09-23  Peter Dennis Bartok  <pbartok@novell.com>
14036         * TextControl.cs(Split): Now updates selection start/end if it points 
14037           into a line that's being split. Fixes a FIXME and bug #75258
14039 2005-09-23  Jackson Harper  <jackson@ximian.com>
14041         * Binding.cs:
14042         * ListControl.cs: Don't use the path when retrieving binding
14043         managers from the binding context. My bat sense tells me that the
14044         path is only used on insertion.
14046 2005-09-22  Jackson Harper  <jackson@ximian.com>
14048         * Splitter.cs: Set the cursor an easier way. (Thanks peter).
14050 2005-09-22  Jackson Harper  <jackson@ximian.com>
14052         * Splitter.cs: There are special cursors used for splitting.
14053         * XplatUIX11.cs: The VSplit and HSplit cursors were backwards.
14055 2005-09-22  Jackson Harper  <jackson@ximian.com>
14057         * Splitter.cs: Change the cursor appropriately when the splitter
14058         is moused over, so the user actually knows there is a splitter
14059         there.
14061 2005-09-22 Hisham Mardam Bey <hisham.mardambey@gmail.com>
14063        * Label.cs : Fix ToString method to give same output as MS.NET
14065 2005-09-22  Jackson Harper  <jackson@ximian.com>
14067         * TreeView.cs: Create the scrollbars when the handle is created
14068         and add them right away, just make them invisble. Also account for
14069         the window being shrunk vertically to the point that the vert
14070         scrollbar needs to be added.
14071         - Remove some 0.5 adjustments to get around anti aliasing issues.
14072         
14073 2005-09-22  Jordi Mas i Hernandez <jordi@ximian.com>
14074          
14075         * MainMenu.cs: Fixes default value
14076         * MenuItem.cs: Fixes default value
14078 2005-09-22  Kazuki Oikawa  <kazuki@panicode.com>
14080         * AsyncMethodResult.cs: Fixes Control.Invoke is blocked infinitely.
14082 2005-09-21  Jackson Harper  <jackson@ximian.com>
14084         * Control.cs: Don't try to set the border style on the window if
14085         it hasn't been created. When the window is created the border
14086         style will be used.
14088 2005-09-21  Peter Dennis Bartok  <pbartok@novell.com>
14090         * Control.cs (Update): Don't call XplatUI if we don't have a
14091           window handle yet
14093 2005-09-21  Peter Dennis Bartok  <pbartok@novell.com> 
14095         * ContainerControl.cs: Instead of throwing an exception, print
14096           a one-time warning about Validate not being implemented
14097         * XplatUIWin32.cs: Removed debug output
14099 2005-09-21  Peter Dennis Bartok  <pbartok@novell.com> 
14101         * Control.cs: Only set XplatUI background if we expect the windowing
14102           system to handle the background. This stops controls that draw their
14103           own background from flickering
14105         * XplatUIX11.cs: Support custom visuals and colormaps for window 
14106           creation. This allows, amongst other things, using MWF X11 windows 
14107           with OpenGL.
14109 2005-09-21  Peter Dennis Bartok  <pbartok@novell.com>
14111         * OpenFileDialog.cs, ContentsResizedEventArgs.cs, LibSupport.cs, GridItem.cs,
14112           CursorConverter.cs, SplitterEventHandler.cs, PropertyGridTextBox.cs,
14113           GridTablesFactory.cs, MethodInvoker.cs, AccessibleEvents.cs,
14114           SplitterEventArgs.cs, XplatUI.cs, Mime.cs, PropertySort.cs,
14115           TreeViewCancelEventHandler.cs, Form.cs, PropertyGridCommands.cs,
14116           IDataGridEditingService.cs, DateBoldEventHandler.cs, Label.cs,
14117           KeyboardLayouts.cs, TextControl.cs, ProgressBar.cs, ToolTip.cs,
14118           RadioButton.cs, OSFeature.cs, LinkLabel.cs, ColorDialog.cs,
14119           ThemeNice.cs, ErrorIconAlignment.cs, TreeNode.cs, MimeGenerated.cs,
14120           ComboBox.cs, DataGridTextBoxColumn.cs, ArrangeStartingPosition.cs,
14121           GridColumnStylesCollection.cs, 
14122           IDataGridColumnStyleEditingNotificationService.cs,
14123           PropertyGrid.cs, IFeatureSupport.cs, ICommandExecutor.cs,
14124           MdiLayout.cs, GridEntry.cs, ControlBindingsCollection.cs,
14125           GridTableStylesCollection.cs, TreeViewCancelEventArgs.cs, 
14126           TreeNodeCollection.cs, AmbientProperties.cs, 
14127           RichTextBoxSelectionAttribute.cs, RichTextBoxSelectionTypes.cs,
14128           DataObject.cs, ErrorProvider.cs, Splitter.cs,
14129           DataGridLineStyle.cs, Shortcut.cs, Control.cs,
14130           FontDialog.cs, SecurityIDType.cs, GridItemType.cs,
14131           BindingMemberInfo.cs, DataGridCell.cs, MdiChildContext.cs,
14132           IRootGridEntry.cs, PropertyGridView.cs, DataGridParentRowsLabelStyle.cs,
14133           FolderBrowserDialog.cs, OpacityConverter.cs, HelpProvider.cs,
14134           IComponentEditorPageSite.cs, DataGridTableStyle.cs, NavigateEventArgs.cs,
14135           NotifyIcon.cs, ContentsResizedEventHandler.cs, MenuItem.cs,
14136           PropertyTabChangedEventHandler.cs, TextBoxBase.cs, OpenTreeNodeEnumerator.cs,
14137           SelectionMode.cs, TextBox.cs, ListBindingConverter.cs,
14138           FileDialog.cs, KeysConverter.cs, DomainUpDown.cs,
14139           DataFormats.cs, SaveFileDialog.cs, GridItemCollection.cs,
14140           ArrangeDirection.cs, FeatureSupport.cs, SelectionRangeConverter.cs,
14141           RichTextBoxScrollBars.cs, NodeLabelEditEventHandler.cs, TreeNodeConverter.cs,
14142           MimeIcon.cs, X11Structs.cs, PropertyGridEntry.cs,
14143           ImageList.cs, ThemeWin32Classic.cs, X11Keyboard.cs,
14144           CheckedListBox.cs, HelpNavigator.cs, DateTimePickerFormat.cs,
14145           MdiClient.cs, DataGridDrawingLogic.cs, DataGridBoolColumn.cs,
14146           NodeLabelEditEventArgs.cs, Screen.cs, PropertyManager.cs,
14147           ComponentModel.cs, PropertiesTab.cs, CurrencyManager.cs,
14148           SizeGrip.cs, DateBoldEventArgs.cs, X11Dnd.cs, Panel.cs,
14149           Hwnd.cs, OSXStructs.cs, DrawMode.cs, XplatUIDriver.cs,
14150           RichTextBox.cs, PropertyTabChangedEventArgs.cs, CommonDialog.cs,
14151           DataGrid.cs, XplatUIX11.cs, RichTextBoxStreamType.cs, Win32DnD.cs,
14152           ErrorBlinkStyle.cs, TreeViewEventHandler.cs,
14153           PropertyValueChangedEventHandler.cs, IFileReaderService.cs,
14154           DataGridTextBox.cs, SelectedGridItemChangedEventArgs.cs, ScrollBar.cs,
14155           ListBox.cs, TreeViewAction.cs, Help.cs, TrackBar.cs,
14156           AxHost.cs, PropertyValueChangedEventArgs.cs, XplatUIOSX.cs,
14157           RichTextBoxFinds.cs, UpDownEventArgs.cs, Cursors.cs,
14158           CategoryGridEntry.cs, RichTextBoxWordPunctuations.cs, DataGridColumnStyle.cs,
14159           SelectedGridItemChangedEventHandler.cs, DateTimePicker.cs, NavigateEventHandler.cs,
14160           Clipboard.cs, UpDownEventHandler.cs, MonthCalendar.cs,
14161           SendKeys.cs, DataGridPreferredColumnWidthTypeConverter.cs, TreeView.cs,
14162           ThreadExceptionDialog.cs, ImageListConverter.cs, XplatUIWin32.cs,
14163           TreeViewEventArgs.cs: Fixed whitespace and set eol-style:native attribute
14165 2005-09-21  Jackson Harper  <jackson@ximian.com>
14167         * TreeNode.cs: Call Before/After Expand not Collapse when
14168         expanding.
14170 2005-09-20  Jackson Harper  <jackson@ximian.com>
14171         
14172         * XplatUIX11.cs: Use the more hand looking hand (in most themes).
14174 2005-09-16  Jordi Mas i Hernandez <jordi@ximian.com>
14175          
14176         * ListViewItem.cs:
14177                 - Fixes bug 76120
14178                 - Fixes proper storing of subitems
14179                 - Fixes not updated items
14181 2005-09-20  Peter Dennis Bartok  <pbartok@novell.com>
14183         * Control.cs, TextBoxBase.cs, TextControl.cs: Don't do certain
14184           things if our window handle isn't created yet. Also disabled 
14185           debug for TextBoxBase
14187 2005-09-20  Peter Dennis Bartok  <pbartok@novell.com> 
14189         * MenuAPI.cs: Remove filtering of events to allow menu usage
14191 2005-09-20  Miguel de Icaza  <miguel@novell.com>
14193         * Cursor.cs: Allow null to be passed to Cursor.Current.
14195 2005-09-20  Alexander Olk  <alex.olk@googlemail.com>
14197         * ThemeWin32Classic.cs:
14198           - Change some private methods/fields to protected virtual so that 
14199             they can be accessed and overriden in derived classes
14200           - First refactoring of some methods. Derived themes now don't 
14201             need to duplicate the complete code from ThemeWin32Classic
14202         * ThemeNice.cs:
14203           - Added nice StatusBar
14204           - Derive from ThemeWin32Classic and not Theme
14205           - Removed duplicate ThemeWin32Classic code
14207 2005-09-20  Miguel de Icaza  <miguel@novell.com>
14209         * Control.cs (ControlCollection.Add): If the value null is passed
14210         the control is ignored. 
14212         Optimize this loop.
14214 2005-09-19  Peter Dennis Bartok  <pbartok@novell.com> 
14216         * MenuAPI.cs: Replaced Application.Run() with a loop that tracks
14217           PostQuitMessage state.
14218         * XplatUIWin32.cs: Removed bogus PostQuitMessage P/Invoke with HWND arg
14220 2005-09-19  Peter Dennis Bartok  <pbartok@novell.com>
14222         * Application.cs: Our constructor will never get called, move 
14223           initialization to fields; fixes bug #75933
14225 2005-09-19 Hisham Mardam Bey <hisham.mardambey@gmail.com>
14227         * FileDialog.cs :
14228                 - Allow files to be selected properly using file name
14229                 combo box.
14230                 - Add ability to change diretory (absolute / relative)
14231                 using file name combo box.
14233 2005-09-16  Jordi Mas i Hernandez <jordi@ximian.com>
14234          
14235         * ListBox.cs: 
14236                 - Fixes Multicolumn listboxes item wrong calculations
14237                 - Allows to click when only one item is in the listbox
14238                 - Fixes crash when no items using keyboard navigation
14240 2005-09-16  Alexander Olk  <alex.olk@googlemail.com>
14242         * ComboBox.cs: Reverted almost everything from the latest patch which
14243           broke ComboBox
14245 2005-09-16  Kazuki Oikawa <kazuki@panicode.com>
14246         
14247         * ToolTip.cs:
14248                 - Fixed #Mtd2 of ToolTipTest.RemoveToolTipTest.
14249         * ComboBox.cs:
14250                 - When DropDownStyle is Simple, it does not show scrollbar 
14251                 to the last item of the list.
14252                 - When DropDownStyle is Simple, it crashed when the list was 
14253                 scrolled down with the down cursor key.
14254                 - Fixed a bug that when DropDownStyle is DropDownList, the 
14255                 selected item was not shown.
14256                 - The position of the selected item was not preserved when 
14257                 the next dropdown happened.
14258         * ThemeWin32Classic.cs:
14259                 - Items were wrapped at the right end.
14260         * CheckedListBox.cs:
14261                 - Fixed Add method
14262         * ListBox.cs:
14263                 - Items should be fully shown.
14264                 - When resizing and vertical scrollbar disappeared, the item 
14265                 of index 0 should be on the top of the list.
14266                 - GetItemRectangle should consider the size of ver. scrollbar
14267         * StatusBar.cs:
14268                 - SizingGrip area should not be allocated when it is not 
14269                 displayed.
14270                 - Now it reflects MinWidth of the containing panel and 
14271                 fixed a crash that happens when its width becomes so small.
14273 2005-09-13  Jordi Mas i Hernandez <jordi@ximian.com>
14275         * CheckedListBox.cs: Fixes bug 76028
14276         * ListBox.cs: Fixes bug 76028
14278 2005-09-13  Jordi Mas i Hernandez <jordi@ximian.com>
14280         * ThemeWin32Classic.cs: Sets clipping on DataGridPaintRowsHeaders
14281         * DataGridDrawingLogic.cs: fixes issues with Datagrid drawing
14283 2005-09-12  Jordi Mas i Hernandez <jordi@ximian.com>
14285         * XplatUIX11.cs: fixes System.NullReferenceException in some situations
14287 2005-09-09  Jonathan Chambers  <jonathan.chambers@ansys.com>
14289         * IRootGridEntry.cs: Changed namespace to PropertyGridInternal 
14291 2005-09-09  Jonathan Chambers  <jonathan.chambers@ansys.com>
14293         * IRootGridEntry.cs: Added
14294         * PropertyGridCommands.cs: Added
14295         * PropertiesTab.cs: Added missing methods and property
14296         * PropertyGridView.cs: Made class internal
14297         * PropertyGridTextBox.cs: Made class internal
14299 2005-09-09  Alexander Olk  <alex.olk@googlemail.com>
14301         * MimeIcon.cs: Try to check some other environment variables
14302           if "DESKTOP_SESSION" returns "default"
14304 2005-09-09  Alexander Olk  <alex.olk@googlemail.com>
14306         * ThemeNice.cs: Corrected background colors (e.g. menus)
14307         * ColorDialog.cs: Use correct background colors for controls
14309 2005-09-09  Alexander Olk  <alex.olk@googlemail.com>
14311         * ThemeNice.cs: Merged r49535 from ThemeWin32Classic
14313 2005-09-08  Peter Dennis Bartok  <pbartok@novell.com>
14315         * RichTextBox.cs: Added initial implementation
14316         * lang.cs: Removed. Was accidentally checked in long time ago
14317         * TODO: Removed. Contents were obsolete
14319 2005-09-06  Jonathan Chambers  <jonathan.chambers@ansys.com>
14320                                                                                 
14321         * PropertiesTab.cs : Added
14323 2005-09-06  Jonathan Chambers  <jonathan.chambers@ansys.com>
14324                                                                                 
14325         * PropertyGrid.cs : Update
14326         * PropertyGridView.cs : Update
14327         * System.Windows.Forms.resx : Added images and strings
14329 2005-09-06  Peter Dennis Bartok  <pbartok@novell.com> 
14331         * ThemeNice.cs: Do not dispose Pens retrieved from ResPool
14333 2005-09-06  Peter Dennis Bartok  <pbartok@novell.com>
14335         * XplatUIX11.cs: Force a flush after Ungrab; if case the app enters
14336           a busy loop right after the Ungrab the X11 display is otherwise 
14337           blocked
14339 2005-09-06  Jordi Mas i Hernandez <jordi@ximian.com>
14341         * ThemeWin32Classic.cs: Optimise the use of clipping
14343 2005-09-05  Jordi Mas i Hernandez <jordi@ximian.com>
14345         * DataGrid.cs: fixes recursion bug
14347 2005-09-03  Alexander Olk  <alex.olk@googlemail.com>
14349         * ThemeNice.cs: 
14350           - Draw RadioButton and CheckBox Buttons with DrawButtonBase
14351           - Cleanup
14353 2005-09-02  Alexander Olk  <alex.olk@googlemail.com>
14355         * ThemeNice.cs: Draw nice ProgressBars
14357 2005-09-01  Miguel de Icaza  <miguel@novell.com>
14359         * VScrollBar.cs: Another buglet found by Aaron's tool. 
14361         * ProgressBar.cs: Fix three recursive bugs found by Aaron Tomb's
14362         bug finder.
14364 2005-08-30  Alexander Olk  <alex.olk@googlemail.com>
14366         * ThemeNice.cs:
14367           - Added nicer menu drawing
14368           - Updated DrawTab
14369           - some refactoring
14371 2005-08-30  Peter Dennis Bartok  <pbartok@novell.com>
14373         * CreateParams.cs (ToString): Made output match MS
14374         * Control.cs (Text): Don't set Text or Focus via XplatUI unless 
14375             handle is already created (to avoid forcing window creation)
14376         * XplatUIX11.cs: Set window text to caption after creating window,
14377           in case Text was set before window was created
14378         * Form.cs: Use this.Text instead of a static string as caption
14380 2005-08-30  Peter Dennis Bartok  <pbartok@novell.com> 
14382         * NotifyIcon.cs: Don't set the window to visible; this screws
14383           up Win32 (causes WM_NCPAINT to be sent on Win32, which calls
14384           OnPaint without a bitmap)
14385         * XplatUIX11.cs: Removed Visible optimization in AddExpose; doesn't 
14386           happen very often anyway; we could add the check to the WM_PAINT 
14387           event generation code
14389 2005-08-30  Peter Dennis Bartok  <pbartok@novell.com>
14391         * NotifyIcon.cs: Fill the icon area with a background color, to 
14392           avoid 'residue' when transparent icons are drawn
14393         * XplatUIX11.cs:
14394           - Handle whole_window == client_window when destroying windows
14395           - SystrayAdd(): Set client_window to whole_window value to
14396             get mouse and other events passed to NotifyIcon
14398 2005-08-30  Peter Dennis Bartok  <pbartok@novell.com> 
14400         * Form.cs: Set proper default for Opacity property
14401         * NotifyIcon.cs:
14402           - ShowSystray(): Don't bother creating telling the OS
14403             about the systray item if no icon is provided
14404           - Now handles WM_NCPAINT message to deal with whole/client window
14405             split
14406           - Create window as visible to not get caught by Expose optimization
14407         * Hwnd.cs: Removed debug message
14408         * ComboBox.cs, ScrollBar.cs, ListBox.cs, TrackBar.cs, TabControl.cs,
14409           StatusBar.cs, TreeView.cs, XplatUIOSX.cs, XplatUIWin32.cs: Switched 
14410             PaintEventStart/End to use new client argument
14411         * TextBoxBase.cs:
14412           - Commented out debug messages
14413           - Switched PaintEventStart/End to use new client argument
14414         * XplatUI.cs: Added client window bool to PaintEventStart()/
14415           PaintEventEnd() calls, to support drawing in non-client areas
14416         * XplatUIDriver.cs: 
14417           - Added client window bool to PaintEventStart()/PaintEventEnd() 
14418             calls, to support drawing in non-client areas
14419           - Added conditional compile to allow using MWF BeginInvoke 
14420             on MS runtime
14421         * XplatUIX11.cs:
14422           - Added some conditional debug output
14423           - Fixed SystrayAdd() method to support new (for SystrayAdd, anyway)
14424             whole/client window split
14425           - Implemented handling of client argument to PaintEventStart()/End()
14426         * Control.cs:
14427           - Throw exception if BeginInvoke() is called and the window handle
14428             or one of the window's parent handles is not created
14429           - Added conditional compile to allow using MWF BeginInvoke on
14430             MS runtime
14431           - get_Parent(): Only sets parent if handle is created. This avoids
14432             forcing window handle creation when parent is set.
14433           - Now fires Layout and Parent changed events in proper order
14434           - Switched to use Handle instead of window.Handle for Z-Order setting,
14435             the get_Parent() patch above causes us to possibly get null for 'window'
14436           - Implemented handling of client argument to PaintEventStart()/End()
14437           - Now reports back to windows that WM_SETCURSOR was handled (to avoid
14438             default handling)
14439           - Now sends a Refresh() to all child windows when Refresh() is called
14441 2005-08-29  Peter Dennis Bartok  <pbartok@novell.com> 
14443         * Form.cs: Added (non-functional) Opacity property
14444         * XplatUIWin32.cs (SystrayAdd): Removed bogus line of code
14446 2005-08-29  Alexander Olk  <xenomorph2@onlinehome.de>
14447         * ThemeNice.cs: New theme for MWF, based on ThemWin32Classic
14448           use export MONO_THEME=nice to activate it.
14449           Currently supported controls:
14450           - Button
14451           - ComboBox
14452           - ScrollBar
14453           - TabControl (TabAlignment.Top only, other will follow)
14454         * ThemeEngine.cs: Add theme nice
14455         * ButtonBase.cs: Redraw button on MouseEnter and MouseLeave everytime,
14456           if enabled
14458 2005-08-25  Jonathan Chambers  <jonathan.chambers@ansys.com> 
14460         * Splitter.cs: Resize docked control and its neighbor.
14462 2005-08-24  Rafael Teixeira <rafaelteixeirabr@hotmail.com> 
14463         -- Making Windows with Menus layout correctly --
14464         * Form.cs : The first leg of the fix
14465                 Menu setter - adjust Client Size as needed to make space for the menu
14466                 SetClientSizeCore - doesn't call base version to be able to pass the 
14467                         menu handle to XplatUI.CalculateWindowRect
14468         * Hwnd.cs: Fix for menu_height, now gets from MenuAPI.MENU
14469         * XplatUIX11.cs: The critical second leg of the fix
14470                 GetWindowPos needs to use a recalculated client_rect
14471                 so that resizing the window doesn't break layout of child controls. 
14472                 Also a more complete rule to avoid X Server roundtrips in SetWindowPos
14473                 Lots of \t\n killed
14475 2005-08-23  Peter Dennis Bartok  <pbartok@novell.com> 
14477         * Label.cs: Now properly recalculates width and height on Font and Text
14478           changes if AutoSize is set
14480 2005-08-19  Rafael Teixeira <rafaelteixeirabr@hotmail.com> 
14481         * TreeView.cs : Revamped drawing logic, and support for FullRowSelect
14483 2005-08-19  Jordi Mas i Hernandez <jordi@ximian.com>
14485         * ImageList.cs: Makes ToString method compatible with MS
14487 2005-08-18  Jordi Mas i Hernandez <jordi@ximian.com>
14489         * MenuAPI.cs: fixes bug 75716
14491 2005-08-11 Umadevi S <sumadevi@novell.com>
14492         * Control.cs: Fixed Remove & RemoveAt to make the parent of the control null.
14494 2005-08-11 Umadevi S <sumadevi@novell.com>
14495         * Contorl.cs: Fixed ResetRightToLeft and ResetImeMode to work correctly
14497 2005-08-10  Umadevi S <sumadevi@novell.com>
14498         * CheckedListBox.cs: Fixed event firing on Adding to the CheckedListBox
14500 2005-08-07  Jordi Mas i Hernandez <jordi@ximian.com>
14502         * Menu.cs: fixes bug 75700
14503         * MenuAPI.cs: fixes navigation issues
14505 2005-08-09  Umadevi S <sumadevi@novell.com>
14506         * CheckedListBox.cs - simple fix for GetItemChecked.
14508 2005-08-08  Jordi Mas i Hernandez <jordi@ximian.com>
14510         * ComboBox.cs: Serveral fixes
14511         * ListBox.cs: Serveral fixes
14513 2005-08-05  Jordi Mas i Hernandez <jordi@ximian.com>
14515         * ComboBox.cs: Fixes FindString methods and GetItemHeight
14516         * ListBox.cs: Fixes FindString methods
14518 2005-08-05  Jordi Mas i Hernandez <jordi@ximian.com>
14520         * DataGrid.cs: fixes bugs exposed by new tests
14522 2005-08-04  Peter Dennis Bartok  <pbartok@novell.com> 
14524         * Mime.cs: Compile Mono assembly references only if compiling
14525           with Mono (Allows to build with VS.Net again)
14527 2005-07-28  Marek Safar  <marek.safar@seznam.cz>
14529         * Control.cs (PaintControlBackground): Draw background image
14530         corrrectly.
14531         (CheckForIllegalCrossThreadCalls): Stubbed.
14532         
14533         * Form.cs (OnCreateControl): Center when should be centered.
14534         
14535         * ThemeWin32Classic.cs (DrawPictureBox): Pass size.
14537 2005-07-19  Jordi Mas i Hernandez <jordi@ximian.com>
14539         * Binding.cs: Binding to properties should be case unsensitive
14541 2005-07-18 vlindos@nucleusys.com
14543         * DataGrid.cs: fixes setmember order
14545 2005-07-07  Alexander Olk  <xenomorph2@onlinehome.de>
14547         * MimeIcon.cs: added MimeIcon stuff (MimeIconEngine)
14548         * FileDialog.cs: FileDialog is now resizable and uses the new
14549           MimeIconEngine
14551 2005-07-06  Jordi Mas i Hernandez <jordi@ximian.com>
14553         * DataGridTextBoxColumn.cs: default value
14554         * GridColumnStylesCollection.cs: fixes event firing, checking MappingName
14555         * GridTableStylesCollection.cs: fixes checking MappingName
14556         * DataGridDrawingLogic.cs: fixes drawing logic issues
14557         * DataSourceHelper.cs: rewritten to make compatible with more data sources
14558         * DataGrid.cs: fixes    
14560 2005-07-06  Alexander Olk  <xenomorph2@onlinehome.de>
14562         * MimeGenerated.cs: Use case sensitive comparer for
14563           NameValueCollections
14565 2005-07-01  Jordi Mas i Hernandez <jordi@ximian.com>
14567         * DataGridTextBoxColumn.cs: bug fixes, code refactoring 
14568         * ThemeWin32Classic.cs: bug fixes, code refactoring
14569         * DataGridDrawingLogic.cs:  bug fixes, code refactoring
14570         * DataGrid.cs: bug fixes, code refactoring
14571         * DataGridTextBox.cs: bug fixes, code refactoring
14572         * DataGridColumnStyle.cs:  bug fixes, code refactoring
14573         * Theme.cs:  bug fixes, code refactoring
14575 2005-07-01  Peter Bartok  <pbartok@novell.com> 
14577         * TextControl.cs: Quick fix for the reported crash on ColorDialog
14578           and other text box usage
14580 2005-07-01  Jackson Harper  <jackson@ximian.com>
14582         * TabControl.cs: Make sure the bottom of the tab covers the pages
14583         border.
14585 2005-06-30  Peter Bartok  <pbartok@novell.com> 
14587         * Form.cs (ShowDialog): Assign owner of the dialog
14588         * TextBoxBase.cs: Always refresh caret size when deleting, caret
14589           might have been moved to a tag with different height
14591 2005-06-30  Jackson Harper  <jackson@ximian.com>
14593         * Form.cs: Don't create an infinite loop when setting focus
14594         * MenuItem.cs: Don't dirty the parents if we don't have any
14596 2005-06-29  Ben Maurer  <bmaurer@ximian.com>
14598         * LibSupport.cs: Rename
14600 2005-06-29  Peter Bartok  <pbartok@novell.com>
14602         * TextBoxBase.cs: Re-align caret after deleting a character
14603         * TextControl.cs:
14604           - DeleteChars(): Ensure that tag covers the provided position
14605           - StreamLine(): Drop reference for dropped tag
14607 2005-06-29  Peter Bartok  <pbartok@novell.com> 
14609         * TextControl.cs: 
14610           - Selections now work properly, anchoring at the initial location
14611             and properly extending in either direction (SetSelectionToCaret(),
14612             SetSelectionStart() and SetSelectionEnd())
14613           - No longer redraws the whole control on selection change, now
14614             calculates delta between previous and new selection and only
14615             invalidates/redraws that area
14616           - Fixed FindPos() math off-by-one errors
14617           - Changed DeleteChars() to verify the provided tag covers the
14618             provided position, selections may have a tag that doesn't cover
14619             the position if the selection is at a tag border
14620           - Fixed off-by-one errors in DeleteChars()
14621           - Added missing streamlining check in DeleteChars() to remove
14622             zero-length tags
14623           - Implemented Invalidate() method, now properly calculates exposures
14624             between two given lines/positions
14625           - Implemented SetSelection()
14626           - Obsoleted and removed FixupSelection()
14627           - Improved RecalculateDocument() logic, removing code duplication
14629 2005-06-29 Gonzalo Paniagua Javier <gonzalo@ximian.com>
14631         * LibSupport.cs: changes to match different input/output arguments.
14633 2005-06-29 Gonzalo Paniagua Javier <gonzalo@ximian.com>
14635         * LibSupport.cs: added libsupport.so init routine.
14637 2005-06-29  Jordi Mas i Hernandez <jordi@ximian.com>
14638         
14639         * ControlBindingsCollection.cs
14640                 - Throws an exception on null datasource when adding
14641                 - Checks for duplicated bindings when adding
14643 2005-06-28  Jackson Harper  <jackson@ximian.com>
14645         * TreeView.cs (OnKeyDown): Support left and right properly
14646         (navigates as well as expanding and collapsing.
14647         - Add support for Multiply, this expands all the selected nodes
14648         children.
14649         - Fix some tabbing.
14651 2005-06-28  Jackson Harper  <jackson@ximian.com>
14653         * TreeView.cs: Implement keyboard navigation, currently supports,
14654         LEFT, RIGHT, UP, DOWN, PGUP, PGDOWN, HOME, END, ADD, SUBTRACT. Add
14655         support for toggling checkboxes with the space bar.
14657 2005-06-28  Jackson Harper  <jackson@ximian.com>
14659         * OpenTreeNodeEnumerator.cs: Don't move past the begining of the
14660         tree.
14662 2005-06-28  Jackson Harper  <jackson@ximian.com>
14664         * TreeView.cs: Add missing event.
14666 2005-06-27  Peter Bartok  <pbartok@novell.com> 
14668         * TextControl.cs:
14669           - Made line ending size configurable (now allows for counting 
14670             lineendings as \n or \r\n)
14671           - Added margin to viewport to keep caret visible on right side
14672           - Fixed translation routines for line/pos to documentpos to consider
14673             cr/lf when counting (Fixes RichTextBox.SelectionFont issues)
14674           - Fixed some line-endings to be unix style
14675           - Fixed Document.FormatText to perform it's calculations 1-based
14676           - Added descriptions for a few methods that might otherwise get 
14677             used wrong
14678           - Added NOTE section with some basic conventions to remember at 
14679             the top of the file
14680           - Major fixup for RichTextBox selection drawing:
14681             * Fixed crashes when multiple tags on a single line were selected
14682             * fixed selection box drawing not overlaying text
14683             * fixed bogus offset calculation for tags not starting at index 1
14684             * Switched behaviour from using multiple Substrings of a 
14685               StringBuilder.ToString() to using multiple 
14686               StringBuilder.ToString(start, length) statements, hoping this is
14687               faster (kept original version commented out in the code, in case
14688               original version was faster)
14689         * TextBox.cs (set_TextAlignment): TextBox always needs to wrap if 
14690           alignment != Left
14691         * TextBoxBase.cs (CalculateDocument): Made protected so RichTextBox can
14692           call it as well
14694 2005-06-27  Jackson Harper  <jackson@ximian.com>
14696         * TabControl.cs: Move to the left and right with the arrow
14697         keys. These keys don't cycle beyond first and last like
14698         tab. Refresh all the tabs when scrolling them to the left or
14699         right.
14701 2005-06-27  Jackson Harper  <jackson@ximian.com>
14703         * TabControl.cs:
14704           - ToString: Added method
14705           - CreateParams: Remove TODO and comment
14706           - OnKeyDown: Cycle through bounds properly.
14707           - SelectedIndex: Scroll to the right or left if we need to
14708           display the newly selected tab.
14710 2005-06-23  Jackson Harper  <jackson@ximian.com>
14712         * TabControl.cs: Stay in bounds when cycling. Make sure Handled is
14713         set.
14715 2005-06-23  Jackson Harper  <jackson@ximian.com>
14717         * TabControl.cs: Keyboard handling. We now support CTRL-TAB,
14718         CTRL-SHIFT-TAB, and HOME, END are there any others?
14720 2005-06-23  Jackson Harper  <jackson@ximian.com>
14722         * XplatUIX11.cs: Get the modifier keys from the keyboard driver.
14724 2005-06-22  Jordi Mas i Hernandez <jordi@ximian.com>
14725         
14726         * DataGridTextBoxColumn.cs: fixes and enhancements
14727         * ThemeWin32Classic.cs: fixes and enhancements
14728         * DataGridBoolColumn.cs:  fixes and enhancements
14729         * DataGridDrawingLogic.cs:  fixes and enhancements
14730         * CurrencyManager.cs: fixes and enhancements
14731         * DataGrid.cs: fixes and enhancements
14732         * DataGridColumnStyle.cs:  fixes and enhancements
14734 2005-06-22  Jackson Harper  <jackson@ximian.com>
14736         * TabControl.cs: Add some missing methods that just call into the
14737         base. Make the TabPageCollection's IList interface behave in the
14738         same manner as the MS implementation.
14740 2005-06-22  Peter Bartok  <pbartok@novell.com> 
14742         * TextControl.cs: Added sanity check
14743         * TextBoxBase.cs: 
14744           - Fixed wrapping behaviour, don't set wrap on single line controls
14745             (this fixes the breakage of colordialog introduced in an earlier
14746              checkin)
14747           - Added rudimentary support for autoscrolling right-aligned controls
14748             (still needs fixing, also, center alignment scroll is missing)
14750 2005-06-22  Jordi Mas i Hernandez <jordi@ximian.com>
14751         
14752         * ScrollBar.cs: Fixes thumbpos on Maximum values
14754 2005-06-21  Jonathan Chambers <jonathan.chambers@ansys.com>
14755         
14756         * PropertyGridView.cs: Pass context information to UITypeEditors 
14758 2005-06-21  Peter Bartok  <pbartok@novell.com> 
14760         * TextBoxBase.cs:
14761           - Now calling PositionCaret with absolute space coordinates
14762           - Enabled vertical scrolling
14763           - Better tracking of scrollbar changes, tied into WidthChange
14764             event
14765           - Improved cursor tracking
14766           - Removed debug output
14767         * TextControl.cs:
14768           - PositionCaret coordinates are now works in absolute space, not 
14769             the canvas
14770           - Improved tracking of document size
14771           - Added events for width and height changes
14773 2005-06-21  Peter Bartok  <pbartok@novell.com>
14775         * Form.cs: Set focus to active control when form is activated
14776         * TextControl.cs: 
14777           - Added word-wrap functionality to RecalculateLine() 
14778           - Added some short function descriptions for VS.Net to aid in
14779             writing dependent controls
14780           - Added Caret property, returning the current coords of the caret
14781           - Added ViewPortWidth and ViewPortHeight properties
14782           - Added Wrap property
14783           - Added CaretMoved event
14784           - Removed some old debug code
14785           - Split() can now create soft splits
14786           - Added PreviousTag()/NextTag() to allow walking "tag-lists"
14787           - Added method to format existing text
14788           - Fixed size/alignment calculations to use viewport
14789           - RecalculateDocument now can handle changing line-numbers while
14790             calculating lines
14792         * TextBox.cs:
14793           - Added some wrap logic, we don't wrap if alignment is not left
14794           - Added casts for scrollbar var, base class switched types to
14795             also support RichTextBoxA
14796           - Implemented handling of scrollbar visibility flags
14798         * TextBoxBase.cs:
14799           - Switched scrollbars type to RichTextBoxScrollBars to support
14800             RichTextBox
14801           - Added tracking of canvas width/height
14802           - Switched scrollbars to be not selectable (to keep focus on text)
14803           - Added central CalculateDocument() method to handle all redraw
14804             requirements
14805           - Added ReadOnly support
14806           - Added WordWrap support
14807           - Fixed handling of Enter key (we now treat it as a DialogKey)
14808           - Fixed caret positioning when h or v scroll is not zero
14809           - Fixed placing/generation of vertical scrollbar
14810           - Added CalculateScrollBars() method to allow updating scrollbar
14811             limits and visibility
14812           - Fixed handling of horizontal scroll
14813           - Added handling of vertical scroll
14814           - Implemented auto-'jump' when caret moves to close to a left or
14815             right border and there is text to be scrolled into view (currently
14816             there's the potential for a stack overflow, until a bug in
14817             scrollbar is fixed)
14819 2005-06-21  Geoff Norton  <gnorton@customerdna.com>
14820         
14821         * XplatUIOSX.cs: Initial implementation of WM_ERASEBKGND
14823 2005-06-19  Alexander Olk  <xenomorph2@onlinehome.de>
14825         * Mime.cs:
14826         - added inodes.
14827         - return application/x-zerosize for files with size zero
14828           (if no extension pattern matches).
14829         - check matches collection for strings too.
14830         - return only the first mime type if the name value
14831           collection has more than one mime type.
14833 2005-06-18  Jonathan Chambers <jonathan.chambers@ansys.com>
14834         
14835         * PropertyGrid.cs: Cleaned up some TODOs
14836         * PropertyGridView.cs: Added support for UITypeEditors
14838 2005-06-17  Jordi Mas i Hernandez <jordi@ximian.com>
14839         
14840         * DataGrid.cs: clears cached value
14842 2005-06-17  Jordi Mas i Hernandez <jordi@ximian.com>
14844         * DataGridTextBoxColumn.cs: new rows, speed improvements, fixes, readonly prop.
14845         * DataGridDrawingLogic.cs: new rows, speed improvements, fixes, readonly prop.
14846         * DataGrid.cs: new rows, speed improvements, fixes, readonly prop.
14847         * DataGridColumnStyle.cs: new rows, speed improvements, fixes, readonly prop.
14848         
14849 2005-06-16  Jordi Mas i Hernandez <jordi@ximian.com>
14851         * ThemeWin32Classic.cs: fixes colour
14853 2005-06-15  Peter Bartok  <pbartok@novell.com>
14855         * MWFCategoryAttribute.cs: Added (Needed for PropertyGrid designer support)
14856         * MWFDescriptionAttribute.cs: Added (Needed for PropertyGrid designer support)
14857         * ButtonBase.cs: Added MWFCategory and MWFDescription attributes
14858         * Control.cs: Added some MWFCategory and MWFDescription attributes
14859         * ScrollBar.cs: Added some MWFCategory and MWFDescription attributes
14861 2005-06-15  Alexander Olk  <xenomorph2@onlinehome.de>
14863         * Mime.cs, MimeGenerated.cs: First draft of MWF mime stuff, see Mime.cs for
14864         usage
14866 2005-06-14  Jordi Mas i Hernandez <jordi@ximian.com>
14868         * DataGridTextBoxColumn.cs: default datagrid settings for Default Styles, fixes
14869         * DataGridTableStyle.cs: default datagrid settings for Default Styles, fixes
14870         * DataGridDrawingLogic.cs: default datagrid settings for Default Styles, fixes
14871         * DataGridBoolColumn.cs: default datagrid settings for Default Styles, fixes
14872         * DataGrid.cs: default datagrid settings for Default Styles, fixes
14873         * DataGridColumnStyle.cs: default datagrid settings for Default Styles, fixes
14875 2005-06-13  Jackson Harper  <jackson@ximian.com>
14877         * XplatUIX11.cs: Override SetAllowDrop on X11 so an error message
14878         isn't printed when the user enables dropping. (X11 does accept
14879         drops).
14880         
14881 2005-06-13  Jackson Harper  <jackson@ximian.com>
14883         * TreeView.cs: Remove some TODOS.
14885 2005-06-13  Jackson Harper  <jackson@ximian.com>
14887         * Form.cs: Hook into the mdi framework.
14888         * MdiClient.cs: Use the base control collections add method so
14889         parents get setup correctly. Set the default back colour and dock
14890         style.
14891         * MdiChildContext.cs: New class, this bad actor handles an
14892         instance of an MDI window. Right now there is only basic
14893         support. You can drag, close, and resize windows. Minimize and
14894         Maximize are partially implemented.
14896 2005-06-13  Jackson Harper  <jackson@ximian.com>
14898         * XplatUIX11.cs: Mash numbers together properly, otherwise we get
14899         freaky when both vals are negative. NOTE: There are probably other
14900         places in XplatUIX11 that this needs to be done.
14902 2005-06-13  Jordi Mas i Hernandez <jordi@ximian.com>
14904         * DataGrid.cs: implement missing methods, move KeyboardNavigation
14905         * DataGridColumnStyle.cs: fixes signature
14907 2005-06-12  Jackson Harper  <jackson@ximian.com>
14909         * XplatUIX11.cs: Use sizing cursors similar to the ones on
14910         windows.
14912 2005-06-11  Jackson Harper  <jackson@ximian.com>
14914         * StatusBarPanel.cs: Signature cleanups. Implement
14915         BeginInit/EndInit.
14917 2005-06-10  Jordi Mas i Hernandez <jordi@ximian.com>
14919         * DataGridTextBoxColumn.cs: Honors aligment
14920         * GridColumnStylesCollection.cs: Contains is case unsensitive
14921         * GridTableStylesCollection.cs: several fixes
14922         * DataGridTableStyle.cs: default column creation
14923         * DataGridDrawingLogic.cs: fixes
14924         * CurrencyManager.cs: ListName property
14925         * DataGrid.cs: multiple styles support
14926         * DataGridColumnStyle.cs: fixes
14927         
14929 2005-06-10  Peter Bartok  <pbartok@novell.com>
14931         * Control.cs(Select): Moved SetFocus call to avoid potential
14932           loops if controls change the active control when getting focus
14933         * UpDownBase.cs: Fixes to allow proper keyboard focus after clicking
14934           the up/down buttons
14936 2005-06-10  Matthias Felgner  <matthiasf@voelcker.ocm>
14938         * ImageListConverter.cs: Implemented
14940 2005-06-10  John BouAntoun <jba-mono@optusnet.com.au>
14942         * MonthCalendar.cs: Wired in NumericUpDown control for year
14944 2005-06-10  John BouAntoun <jba-mono@optusnet.com.au>
14946         * MonthCalendar.cs: Removed MonoTodo attributes on Click and
14947           DoubleClick events, since they are not meant to be fired.
14949 2005-06-09  Peter Bartok  <pbartok@novell.com>
14951         * UpDownBase.cs, NumericUpDown.cs, DomainUpDown.cs: Integrated
14952           Jonathan's standalone controls into MWF, implemented missing
14953           events, attributes and methods; added xxxAccessible classes
14954         * AccessibleObject.cs: Made fields internal so other classes
14955           can change them if needed
14957 2005-06-09  Jonathan Gilbert  <2a5gjx302@sneakemail.com>
14959         * UpDownBase.cs: Complete implementation
14960         * NumericUpDown.cs: Complete implementation
14961         * DomainUpDown.cs: Complete implementation
14963 2005-06-09  Jordi Mas i Hernandez <jordi@ximian.com>
14965         * DataGridTextBoxColumn.cs: drawing fixes
14966         * DataGridCell.cs: fixes ToString method to match MSNet
14967         * DataGridTableStyle.cs: fixes
14968         * DataGridBoolColumn.cs: fixes, drawing
14969         * DataGridDrawingLogic.cs: fixes, new methods
14970         * DataGridTextBox.cs: Keyboard and fixes
14971         * DataGrid.cs:
14972                 - Keyboard navigation
14973                 - Scrolling fixes
14974                 - Row selection (single, multiple, deletion, etc)
14975                 - Lots of fixes
14976         
14977 2005-06-07  Jackson Harper  <jackson@ximian.com>
14979         * ThemeWin32Classic.cs: Clear the background area when drawing
14980         buttons.
14982 2005-06-06  Peter Bartok  <pbartok@novell.com>
14984         * ImageListStreamer.cs: Fixed signature for GetData
14985         * CheckBox.cs: Fixed base class for CheckBoxAccessibleObject
14986         * ComboBox.cs:
14987           - Added missing ChildAccessibleObject class
14988           - Added missing OnXXXFocus overrides, switched to using those
14989             instead of the event handler
14990         * Control.cs:
14991           - Added Parent property for ControlAccessibleObject
14992           - Fixed signatures
14993           - Fixed attributes
14994           - Added ResetBindings()
14995         * ListBindingConverter.cs: Implemented some methods
14996         * ButtonBase.cs: Added missing ButtonBaseAccessibleObject class
14997         * ImageList.cs: Implemented basic handle scheme, removed TODOs
14998         * ContainerControl.cs: Fixed signature, now subscribing to the
14999           ControlRemoved event instead of overriding the handler, LAMESPEC
15000         * CurrencyManager.cs: Added missing attribute
15001         * MonthCalendar.cs: Added missing properties
15003 2005-06-06  Jordi Mas i Hernandez <jordi@ximian.com>
15005         * DataGridColumnStyle.cs: fixes for DataGridColumnStyle
15006         
15007 2005-06-06  Gaurav Vaish and Ankit Jain
15009         * DataSourceHelper.cs: Gaurav Vaish and Ankit Jain patch for databinding
15010         * DataGrid.cs: Gaurav Vaish and Ankit Jain patch for databinding
15011         
15012 2005-06-06  Jordi Mas i Hernandez <jordi@ximian.com>
15014         * Control.cs: fixes CreateParams Width / Height.
15016 2005-06-05  Peter Bartok  <pbartok@novell.com>
15018         * Win32DnD.cs: Removed compilation warnings
15020 2005-06-05  Peter Bartok  <pbartok@novell.com>
15022         * Control.cs (CreateParams): Since we don't know if one of the
15023           properties we use is overridden, lets make sure if we fail accessing
15024           we continue with a backup plan
15026 2005-06-05  Peter Bartok  <pbartok@novell.com>
15028         * Win32DnD.cs:
15029           - Removed debug output
15030           - Added MarshalAs attribute to ensure proper marshalling of FORMATETC
15031             struct
15032           - Plugged resource leak
15033         * XplatUIStructs.cs: Changed ClipboardFormats size to ushort, to match
15034           MS size
15036 2005-06-05  Peter Bartok  <pbartok@novell.com>
15038         * XplatUIWin32.cs: Removed DnD code
15039         * Win32DnD.cs: Implemented drop source and drop target functionality
15041 2005-06-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
15043         * UpDownBase.cs: remove duplicate addition of event, enable some code
15044         that was commented out.
15045         * NumericUpDown.cs: added missing attributes and Hexadecimal property.
15046         Validate input when a key is pressed. It works fine now for every
15047         combination of Hexadecimal. Only missing some drawing love when sharing
15048         space with other controls.
15050 2005-06-04  Peter Bartok  <pbartok@novell.com>
15052         * Control.cs:
15053           - We need to pass a window for DragDrop, so enable callback events
15054           - Added DnD callback events when being a DragSource
15055         * XplatUI.cs (StartDrag): Added window handle argument
15056         * XplatUIDriver.cs (StartDrag): Added window handle argument
15057         * QueryContinueDragEventArgs: Made fields internally accessible so
15058           drivers can set them
15059         * GiveFeedbackEventArgs: Made fields internally accessible so drivers
15060           can set them
15062 2005-06-03  Jordi Mas i Hernandez <jordi@ximian.com>
15064         * DataGridTextBoxColumn.cs: column text editing
15065         * DataGridTableStyle.cs: Respect columns styles created by the user
15066         * DataGridDrawingLogic.cs: lots of drawing fixes and enhanments
15067         * DataGridBoolColumn.cs: bool column editing
15068         * DataGrid.cs: fixes to scrolling, properties, etc
15069         * DataGridTextBox.cs: handle keyboard
15070         * DataGridColumnStyle.cs: fixes
15072 2005-06-02  Jackson Harper  <jackson@ximian.com>
15074         * ImageListStreamer.cs: Somewhat broken implementation of
15075         GetObjectData. The RLE needs some work to match MS properly.
15077 2005-06-02  Jackson Harper  <jackson@ximian.com>
15079         * X11Dnd.cs: Attempting to keep at least one file in MWF
15080         monostyled.
15082 2005-06-02  Peter Bartok  <pbartok@novell.com>
15084         * X11DnD.cs: Use Marshal.SizeOf instead of sizeof, no /unsafe required
15085           that way
15087 2005-06-02  Peter Bartok  <pbartok@novell.com>
15089         * Control.cs: Removed MonoTODO from DoDragDrop and added call to Xplat
15090         * XplatUI.cs: Added DoDragDrop() method
15091         * XplatUIDriver.cs: Added DoDragDrop() method
15093 2005-06-02  Jackson Harper  <jackson@ximian.com>
15095         * Splitter.cs: Implement BorderStyle.
15097 2005-06-02  Jackson Harper  <jackson@ximian.com>
15099         * XplatUIX11.cs: Tie into the X11Dnd subsystem.
15100         * X11Dnd.cs: New file. A subsystem that handles drag and drop on
15101         X11 using XDND.
15103 2005-06-02  Peter Bartok  <pbartok@novell.com>
15105         * DataObject.cs:
15106           - Added Data setter
15107           - Fixed broken insertion code for SetData, now also
15108             overwrites any existing entry of the same format name
15109         * Hwnd.cs: Added list of pointers that automatically gets
15110           freed when the window is disposed
15111         * XplatUI.cs: Call driver initialization method when loading
15112           a driver
15113         * Control.cs:
15114           - OnDragLeave takes EventArgs, not DragEventArgs
15115           - Added setting of WS_EX_ACCEPTFILES style when dropping is
15116             supported
15117           - Forces style update when drop state changes
15118         * XplatUIWin32.cs: Implemented Drag'n'Drop (as good as possible,
15119           not perfect since we cannot (yet) call the IDataObject.GetData()
15120           method, we keep getting 0x80004005 error, dunno why)
15122 2005-06-02  Peter Bartok  <pbartok@novell.com>
15124         * DragEventArgs.cs: Make fields internal so we can cache the
15125           object and re-set the fields from XplatUI
15127 2005-06-02  Jackson Harper  <jackson@ximian.com>
15129         * Control.cs: Add some internal methods so the DnD subsystem can
15130         raise DnD events. Also call into the driver when AllowDrop is set.
15131         * XplatUI.cs:
15132         * XplatUIDriver.cs: New method for setting whether or not a window
15133         is allowed to accept drag and drop messages.
15134                 
15135 2005-06-01  Jordi Mas i Hernandez <jordi@ximian.com>
15136         
15137         * ScrollBar.cs: Make sure that values sent in Scroll events
15138         are always between Maximum and Minimum.
15140 2005-06-01  Marek Safar  <marek.safar@seznam.cz>
15142         * Menu.cs: Call MenuChanged when menuitem visibility has been
15143         changed.
15144         * MenuItem.cs: Rebuild menu when item is (not) visible.
15145         * MainMenu.cs: MainMenu has special MenuChanged.
15146         * Theme.cs: Caption and FrameBorderSize are not fixed.
15147         * XplatUI.cs: Added CaptionHeight,FrameBorderSize.
15148         * XplatUIDriver.cs: Introduced Caption and FrameBorderSize.
15149         * XplatUIX11.cs,
15150         * XplatUIOSX: Caption and FrameBorderSize not implemented yet.
15151         * XplatUIWin32.cs: Get Caption and FrameBorderSize from system.
15153 2005-05-30  Jackson Harper  <jackson@ximian.com>
15155         * DataFormat.cs: We can't statically initialize this stuff because
15156         it calls into the xplatui and could create a loop. So we lazy init
15157         it.
15159 2005-05-28  Jackson Harper  <jackson@ximian.com>
15161         * Control.cs: Proper implementation of Product(Name/Version).
15163 2005-05-27  Jackson Harper  <jackson@ximian.com>
15165         * DataObject.cs: Dont crash if no data is found.
15167 2005-05-26  Rafael Teixeira  <rafaelteixeirabr@hotmail.com>
15168         * MdiClient.cs: Add missing Localizable attribute to BackgroundImage property
15169                 as per status page, guessing it should be set to true
15171 2005-05-26  Jordi Mas i Hernandez <jordi@ximian.com>
15173         * DataGridTextBoxColumn.cs: Draws text and basic text formatting
15174         * DataGridTableStyle.cs: set proper formatting text, def header text
15175         * ThemeWin32Classic.cs: new themable paramaters
15176         * DataGridBoolColumn.cs: paint check box, get data, fixes
15177         * DataGridDrawingLogic.cs: huge improvements in painting, fixes, new methods
15178         * DataGrid.cs: fixes properties, implements vertical and horizontal scrolling
15179         * DataGridColumnStyle.cs: fixes
15180         * Theme.cs: new themable paramaters
15181                 
15182 2005-05-26  Peter Bartok  <pbartok@novell.com>
15184         * ContainerControl.cs: Pass AdjustFormScrollbars() call on to base
15186 2005-05-24 Jonathan S. Chambers <jonathan.chambers@ansys.com>
15187         * Control.cs: Fixed LowOrder and HighOrder to preserve sign.
15189 2005-05-24  Peter Bartok  <pbartok@novell.com>
15191         * OpenFileDialog.cs, Form.cs, Menu.cs, GroupBox.cs, UserControl.cs,
15192           Label.cs, DataGridTextBoxColumn.cs, PropertyGrid.cs, ErrorProvider.cs
15193           Splitter.cs, Control.cs, FontDialog.cs, TabPage.cs,
15194           FolderBrowserDialog.cs, HelpProvider.cs, DataGridTableStyle.cs,
15195           NotifyIcon.cs, FileDialog.cs, ListView.cs, SaveFileDialog.cs,
15196           ToolBarButton.cs, ImageList.cs, DataGridBoolColumn.cs, Panel.cs,
15197           DataGrid.cs, DataGridTextBox.cs, ListBox.cs, TrackBar.cs,
15198           AxHost.cs, TabControl.cs, ScrollableControl.cs, ToolBar.cs,
15199           DataGridColumnStyle.cs, PictureBox.cs, DateTimePicker.cs,
15200           StatusBar.cs, MonthCalendar.cs, TreeView.cs: Added
15201           missing attributes, etc
15202         * DataGridPreferredColumnWidthTypeConverter.cs: Added
15204 2005-05-24  Peter Bartok  <pbartok@novell.com>
15206         * Help.cs: Added, implemented trivial functions, throws up MessageBox
15207           when user tries to get help
15208         * DataObject.cs, DataFormats.cs, LinkArea.cs,
15209           SelectionRangeConverter.cs, Clipboard.cs : Removed unused variables
15210           to suppress warnings
15211         * XplatUIWin32.cs, XplatUIOSX.cs, XplatUIX11.cs: Removed unused code to
15212           avoid unreachable code warning
15214 2005-05-20  Peter Bartok  <pbartok@novell.com>
15216         * CursorConverter.cs (ConvertTo): Switched to use Cursor.GetObjectData
15218 2005-05-20  Jordi Mas i Hernandez <jordi@ximian.com>
15220         * DataGridTextBoxColumn.cs: Basic painting methods
15221         * DataGridTableStyle.cs: Set table style in the column
15222         * ThemeWin32Classic.cs: Use Theme for colors
15223         * DataGridDrawingLogic.cs: Implement more drawing
15224         * DataGrid.cs: drawing, theming, enhacements, fixes
15225         * DataGridColumnStyle.cs: fixes, drawing
15226         * Theme.cs: theming for Datagrid
15228 2005-05-20  Peter Bartok  <pbartok@novell.com>
15230         * Cursor.cs: Implemented GetObjectData() method
15232 2005-05-20  Peter Bartok  <pbartok@novell.com>
15234         * Cursors.cs: Added setting of cursor name
15235         * Cursor.cs:
15236           - Implemented constructors
15237           - Implemented Draw and DrawStretched
15238           - Implemented Current property
15239           - Implemented == and != operators
15240           - Implemented Dispose()
15241           - Implemented ToString
15242           - Added missing attributes
15243         * XplatUIX11.cs:
15244           - Added missing reset for OverrideCursor when DoEvents is called
15245           - Fixed creation of cursor, logic was wrong
15246         * XplatUIWin32.cs:
15247           - Added missing reset for OverrideCursor when DoEvents is called
15248           - Fixed creation of cursor, bit arrays were swapped
15249         * Clipboard.cs: Removed obsolete MonoTODO attribute
15251 2005-05-20  Jordi Mas i Hernandez <jordi@ximian.com>
15253         * ComboBox.cs: fixes OnSelectedItemChanged
15254         * ControlBindingsCollection.cs: fixes item range check
15256 2005-05-20  Jordi Mas i Hernandez <jordi@ximian.com>
15258         * UpDownBase.cs:
15259                 - Calc preferred height properly
15260                 - Implement missing properties
15261                 
15262         * NumericUpDown.cs: Implement missing events
15264 2005-05-19  Jackson Harper  <jackson@ximian.com>
15266         * TabControl.cs: New method that resizes the tab pages before
15267         redrawing them. This as needed as the control is double buffered
15268         and sizing will not be recalculated unless ResizeTabPages is
15269         called.
15270         * TabPage.cs: Set base.Text instead of Text in the constructor so
15271         that UpdateOwner does not get called. Use the new Redraw method of
15272         TabControl instead of Refresh so the sizing is recalculated.
15273         * ThemeWin32Classic.cs: Draw the text for button tabs.
15275 2005-05-19  Jackson Harper  <jackson@ximian.com>
15277         * Control.cs: Paint control background images. Fix typo where
15278         PaintControlBackground was not getting called correctly.
15280 2005-05-19  Peter Bartok  <pbartok@novell.com>
15282         * ScrollableControl.cs (DisplayRectangle): Undid my last change until
15283           I can investigate, apparently I broke FileDialog
15285 2005-05-19  Marek Safar  <marek.safar@seznam.cz>
15287         * AxHost.cs: Some simple properties.
15288         * Control.cs: window must be accessible after ctor.
15289         * Form.cs: Added TransparencyKey property.
15290         * TextBoxBase.cs: Implemented Clear. Text property can be null.
15291         * XplatUIWin32.cs: SetBorderStyle implemented.
15293 2005-05-18  Peter Bartok  <pbartok@novell.com>
15295         * DataObject.cs: Entries are not global but particular to the
15296           DataObject, now it behaves that way
15297         * XplatUIWin32.cs: Implemented Clipboard methods
15298         * Clipboard.cs: Implemented
15299         * ScrollableControl.cs (DisplayRectangle): Fixed calculation
15300         * XplatUIOSX.cs: Updated to final clipboard prototypes
15301         * XplatUIX11.cs: Implemented Clipboard methods
15302         * XplatUIDriver.cs: Updated to final clipboard prototypes
15303         * XplatUIStructs.cs:
15304           - Added BITMAPINFOHEADER struct
15305           - Added ClipboardFormats enum
15306         * X11Structs.cs:
15307           - Added ClipboardStruct
15308           - Added Atom enum items for clipboard types
15309           - Fixed atom types for Selection event structures
15310         * DataFormats.cs:
15311           - Added internal properties and methods for drivers to enumerate
15312             all known formats
15313           - Switched initialization method to allow drivers to assign their
15314             own IDs even for the MS predefined clipboard IDs
15315         * XplatUI.cs: Updated to final clipboard interface
15317 2005-05-18 Jonathan S. Chambers <jonathan.chambers@ansys.com>
15318         * PropertyGridView.cs: Fixed compiler warnings.
15320 2005-05-18 Jonathan S. Chambers <jonathan.chambers@ansys.com>
15321         * PropertyGrid.cs: Added some event calls
15322         * PropertyGridView.cs: Change drawing code to use double buffering
15323         * PropertyGridTextBox.cs: Changed Text property name
15324         * GridItem.cs: Added Bounds property.
15325         * GridEntry.cs: Added Bounds property.
15327 2005-05-17  Lluis Sanchez Gual  <lluis@novell.com>
15329         * Binding.cs: Use IsInstanceOfType instead of IsAssignableFrom
15330         since GetType() may not return the correct type if the object is
15331         a remoting proxy.
15333 2005-05-17  Jordi Mas i Hernandez <jordi@ximian.com>
15335         * TreeNodeCollection.cs: fixes get/set item ranges
15336         
15337 2005-05-15  Jordi Mas i Hernandez <jordi@ximian.com>
15339         * ListBox.cs: Kazuki Oikawa's PreferredHeight and ItemHeight fixes
15340                 
15341 2005-05-15  Jordi Mas i Hernandez <jordi@ximian.com>
15343         * ComboBox.cs: Fix item range comparation
15344         * ListView.cs: Fix item range comparation
15346 2005-05-03  Alexander Olk  <xenomorph2@onlinehome.de>
15348         * FontDialog.cs:
15349           - Clear example panel when OnPaint is called
15350           - Better solution for displaying the example panel text
15351           - Select default indexes in the ListBoxes
15353 2005-05-11  Geoff Norton  <gnorton@customerdna.com>
15355         * XplatUIOSX.cs: Avoid painting into invisible views.  Fixes #74926
15357 2005-05-11  Peter Bartok  <pbartok@novell.com>
15359         * LinkArea.cs: Added and implemented LinkAreaTypeConverter class
15360         * SelectionRangeConverter.cs: Implemented
15361         * PropertyGrid.cs: Fixed attribute value
15362         * Control.cs:
15363           - Invoke(): Don't call Begin/EndInvoke if it is not neccessary
15364           - Added Sebastien Pouliot's CAS Stack Propagation fixes
15365         * XplatUIDriver.cs: Added new XplatUIDriverSupport class, for code
15366           that's common to all drivers. First methods to go there are
15367           Sebastien Pouliot's CAS Stack Propagation helper methods
15368         * XplatUIWin32.cs, XplatUIX11.cs, AsyncMethodData.cs: Fixes by
15369           Sebastien Pouliot for CAS Stack Propagation
15371 2005-05-11  Geoff Norton  <gnorton@customerdna.com>
15373         * OSXStructs.cs:
15374           XplatUIOSX.cs: More cosmetic cleanup courtesy of Artyom Tyazhelov (Artyom.Tyazhelov@helmes.ee)
15376 2005-05-12  Jordi Mas i Hernandez <jordi@ximian.com>
15378         * DataGridTextBoxColumn.cs: fixed some members
15379         * GridColumnStylesCollection.cs: indexed column is case insensitive
15380         * DataGridTableStyle.cs: fixes
15381         * ThemeWin32Classic.cs: add new theme parameter
15382         * Theme.cs: add new theme parameter
15383         * DataGridDrawingLogic.cs: Datagrid's drawing logic
15384         * DataGrid.cs: fixes, new internal properties, etc.
15385         * DataGridColumnStyle.cs: allows to set grid value
15386         *
15388 2005-05-10  Peter Bartok  <pbartok@novell.com>
15390         * AccessibleObject.cs:
15391           - Removed MonoTODO attribute on help, method is correct
15392           - Fixed Bounds property
15393         * AxHost.cs: Moved MonoTODO
15394         * ButtonBase.cs: Now setting AccessibleObject properties
15395         * RadioButton.cs: Setting proper AccessibleObject role
15396         * CheckBox.cs: Setting proper AccessibleObject role
15397         * ControlBindingsCollection.cs: Added properties, methods and attributes
15398         * DataFormats.cs: Fixed awkward internal API, and changed to enable
15399           userdefined DataFormats.Format items as well
15400         * ListControl.cs: Removed data_member from the public eye
15401         * OpenFileDialog.cs:
15402           - Made class sealed
15403           - Added missing attributes
15404         * SaveFileDialog.cs: Added missing attributes
15405         * ImageListStreamer.cs: Fixed code that caused warnings
15406         * LinkLabel.cs: Removed unreachable code
15407         * TreeView.cs: Fixed code that caused warnings
15408         * PropertyGridView.cs: Fixed code that caused warnings
15409         * GridColumnStylesCollection.cs: Added missing attributes
15410         * GridTableStylesCollection: Added missing attribute
15411         * PropertyManager: Added .ctor
15412         * SecurityIDType: Added
15413         * DataObject.cs: Implemented class
15414         * LinkArea.cs: Added missing attribute
15416 2005-05-11  Jordi Mas i Hernandez <jordi@ximian.com>
15418         * RadioButton.cs: call base method to allow to fire OnClick event
15419         * UpDownBase.cs: OnMouseUp call base method
15420         * CheckedListBox.cs: call base method before returning
15421         * TrackBar.cs: call base method before returning
15422         
15424 2005-05-10  Peter Bartok  <pbartok@novell.com>
15426         * XplatUIX11.cs: Fix for #74902, check pending timers when peeking
15427           for messages
15429 2005-05-10  Peter Bartok  <pbartok@novell.com>
15431         * DataFormats.cs: Implemented
15432         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs,
15433           XplatUIX11.cs: Added Clipboard APIs
15434         * XplatUIWin32.cs: Implemented Clipboard APIs
15435         * FolderBrowserDialog.cs: Added missing event, attributes
15437 2005-05-10  Jordi Mas i Hernandez <jordi@ximian.com>
15439         * CheckBox.cs: call base method to allow to fire OnClick event
15441 2005-05-09  Sebastien Pouliot  <sebastien@ximian.com>
15443         * XplatUI.cs: Use PlatformID.Unix under NET_2_0.
15445 2005-05-06  Peter Bartok  <pbartok@novell.com>
15447         * XplatUIX11.cs: Redid Jackson's fix, it was causing a busy loop
15448         * Screen.cs: Implemented
15449         * HelpNavigator.cs: Added
15450         * XplatUIWin32.cs: Added SystemParametersInfo call, fixed WorkArea
15451           property
15452         * HelpProvider.cs: Implemented all we can do until we have a CHM
15453           help library (which means that "What's This" does work now)
15455 2005-05-06  Jackson Harper  <jackson@ximian.com>
15457         * XplatUIX11.cs: Fix waking up the main loop.
15458                 
15459 2005-05-05  Peter Bartok  <pbartok@novell.com>
15461         * XplatUI.cs: Updated revision
15462         * Form.cs: Removed enless loop
15463         * GroupBox.cs (OnPaint): Added call to base.OnPaint()
15464         * Label.cs (OnPaint): Added call to base.OnPaint()
15465         * ToolTip.cs: Made ToolTipWindow reusable for other controls
15466         * LinkLabel.cs (OnPaint): Added call to base.OnPaint()
15467         * UpDownBase.cs (OnPaint): Moved base.OnPaint() call to end of method
15468         * AxHost.cs: Added
15469         * ButtonBase.cs: Moved base.OnPaint() call to end of method
15470         * ThemeWin32Classic.cs: Replaced references to ToolTip with references
15471           to ToolTip.ToolTipWindow for drawing and size methods; this allows
15472           reuse of ToolTipWindow by other controls
15473         * SizeGrip.cs: Moved base.OnPaint() call to end of method
15474         * XplatUIX11.cs: Now clipping drawing area (experimental)
15475         * PictureBox.cs: Moved base.OnPaint() call to end of method
15476         * Theme.cs: Fixed ToolTip abstracts to match new format
15477         * ErrorProvider.cs: Implemented
15479 2005-05-05  Jordi Mas i Hernandez <jordi@ximian.com>
15481         * Label.cs: fire events using OnAutoSizeChanged and OnTextAlignChanged
15482         * LinkLabel.cs:
15483                 - Adds cursors
15484                 - Handles focus
15485                 - Implements LinkBehavior
15486                 - Fixes many issues
15488 2005-05-03  Jackson Harper  <jackson@ximian.com>
15490         * ListView.cs: Calculate the scrollbar positioning on resize and
15491         paint, so they get put in the correct place.
15493 2005-05-03  Alexander Olk  <xenomorph2@onlinehome.de>
15495         * ColorDialogs.cs: The small color panels are now handled by
15496           SmallColorControl. This fixes drawing of the focus rectangle
15497           and adds a 3D border.
15499 2005-05-03  Peter Bartok  <pbartok@novell.com>
15501         * Control.cs: Modified version of Jonathan Chamber's fix for
15502           double-buffering
15504 2005-05-03  Jackson Harper  <jackson@ximian.com>
15506         * ListView.cs: Remove redraw variable. Control now handles whether
15507         or not a redraw needs to be done, and will only raise the paint
15508         event if redrawing is needed.
15510 2005-05-03  Jackson Harper  <jackson@ximian.com>
15512         * Splitter.cs: No decorations for the splitter form. Cache the
15513         hatch brush.
15515 2005-05-03  Jackson Harper  <jackson@ximian.com>
15517         * TreeView.cs: Use dashed lines to connect nodes. Use the
15518         ControlPaint method for drawing the focus rect instead of doing
15519         that in treeview.
15521 2005-05-02  Peter Bartok  <pbartok@novell.com>
15523         * LinkLabel.cs: Fixed the fixes from r43566 and 43521
15525 2005-04-29  Jackson Harper  <jackson@ximian.com>
15527         * ThemeWin32Classic.cs: Don't clear the GC that will clear the
15528         entire image buffer. Just clear the clipping rectangle.
15530 2005-04-29  Jackson Harper  <jackson@ximian.com>
15532         * ThemeWin32Classic.cs: Don't draw list view items that are
15533         outside the clipping rectangle.
15535 2005-04-29  Jordi Mas i Hernandez <jordi@ximian.com>
15537         * ListBox.cs: added horizontal item scroll
15539 2005-04-29  Jackson Harper  <jackson@ximian.com>
15541         * ThemeWin32Classic.cs: Remove some old debug code that was
15542         causing flicker with the new double buffering code.
15544 2005-04-29  John BouAntoun  <jba-mono@optusnet.com.au>
15546         * MonthCalendar.cs, DateTimePicker.cs: Made monthcalendar dropdwon
15547         behave like combobox and comboboxlist (still not sure if this is
15548         correct though).
15550 2005-04-28  Jackson Harper  <jackson@ximian.com>
15552         * ThemeWin32Classic.cs: Don't fill the middle of progress
15553         bars. This fills areas outside of the clip bounds that don't need
15554         to be filled.
15556 2005-04-28  Jackson Harper  <jackson@ximian.com>
15558         * Control.cs: Don't expose functionality to touch the image buffers.
15559         * ProgressBar.cs:
15560         * ListView.cs: We do not need to (and no longer can) manipulate
15561         the image buffers directly. All of this is handled by Control.
15563 2005-04-28  Peter Bartok  <pbartok@novell.com>
15565         * RichTextBoxSelectionAttribute.cs, RichTextBoxSelectionTypes.cs,
15566           RichTextBoxScrollBars.cs, RichTextBoxStreamType.cs,
15567           RichTextBoxFinds.cs, RichTextBoxWordPunctuations.cs: Added
15569 2005-04-28  Jordi Mas i Hernandez <jordi@ximian.com>
15571         * Combobox:
15572                 - Adjust control's height for non-simple comboboxes (bug fix)
15573                 - Remove dead code
15574         * MenuAPI.cs: remove unused var
15575         * ScrollBar.cs: remove unsed var
15576                  
15577         * ListBox.cs: unselect items when clearing
15579 2005-04-28  Jordi Mas i Hernandez <jordi@ximian.com>
15581         * ListControl.cs: honors OnPositionChanged and default Selected Item
15582         * ListBox.cs: unselect items when clearing
15584 2005-04-27  Jackson Harper  <jackson@ximian.com>
15586         * X11Keyboard.cs: Initialize a default keyboard and give a warning
15587         if a "correct" keyboard is not found. This will make us not crash,
15588         but might give some users bad keyboard layouts...seems to be the
15589         same thing rewind does.
15591 2005-04-27  Jackson Harper  <jackson@ximian.com>
15593         * BindingManagerBase.cs: Attach the current/position changed
15594         handlers to their respective events.
15596 2005-04-27  Jackson Harper  <jackson@ximian.com>
15598         * Control.cs: Make sure that the first WM_PAINT does a full draw,
15599         not just a blit.
15600         * ThemeWin32Classic.cs: Don't fill the background for picture
15601         boxes. This could overright user drawing.
15602         * ComboBox.cs: Just fill the clipping rect not the entire client
15603         rect when drawing the background. This prevents pieces of the
15604         image buffer from getting overwritten and is theoretically faster.
15606 2005-04-26  Jordi Mas i Hernandez <jordi@ximian.com>
15608         * ComboBox.cs: Databinding support fixes, fire missing events
15609         * ListControl.cs: implement missing methods and properties, fixes
15610         * ThemeWin32Classic.cs: Databiding support on Drawing
15611         * CheckedListBox.cs: Databinding support fixes, fire missing events
15612         * ListBox.cs: Databinding support fixes, fire missing events
15613         
15614 2005-04-25  Peter Bartok  <pbartok@novell.com>
15616         * LinkLabel.cs: Length of LinkArea is not allowed to be negative
15618 2005-04-25  Jackson Harper  <jackson@ximian.com>
15620         * TreeView.cs: Use the horizontal scrollbars height not width when
15621         determining how much of the client area is available.
15623 2005-04-25  Jackson Harper  <jackson@ximian.com>
15625         * Control.cs: Double buffering is handled differently now. As per
15626         the spec, the extra buffer is created in the WM_PAINT message and
15627         passed down to the control's drawing code.
15628         * GroupBox.cs:
15629         * Label.cs:
15630         * CheckBox.cs:
15631         * ProgressBar.cs:
15632         * RadioButton.cs:
15633         * ColorDialog.cs:
15634         * ComboBox.cs:
15635         * PropertyGridView.cs:
15636         * UpDownBase.cs:
15637         * MessageBox.cs:
15638         * MenuAPI.cs:
15639         * ListView.cs:
15640         * ButtonBase.cs:
15641         * SizeGrip.cs:
15642         * ScrollBar.cs:
15643         * ListBox.cs:
15644         * TrackBar.cs:
15645         * ToolBar.cs:
15646         * PictureBox.cs:
15647         * DateTimePicker.cs:
15648         * StatusBar.cs:
15649         * TreeView.cs: Update to new double buffering system.
15650         * MonthCalendar.cs: Uncomment block, as Capture is now
15651         working. Update to new double buffering
15652         * LinkLabel.cs: Lazy init the link collection. Update to new double buffering
15653         * PaintEventArgs.cs: New internal method allows us to set the
15654         graphics object. This is used for double buffering.
15655         * ThemeWin32Classic.cs: Give the picture box drawing code a clip
15656         rectangle. The internal paint_area var has been removed from
15657         StatusBar. The clipping rect should be used instead.
15658         * Theme.cs: Give the PictureBox drawing method a clipping rect.
15659         * TabPage.cs: The RefreshTabs method was removed, so just call the
15660         tab controls Refresh method now.
15661         * TabControl.cs: Update to new double buffering. Make sure the
15662         handle is created before sizing the tab pages, otherwise we will
15663         get stuck in a loop.
15665 2005-04-24  Borja Sanchez Zamorano <borsanza@gmail.com>
15667         * LinkLabel.cs: Fix typo, bug #74719; patch
15668           from Borja Sanchez Zamorano
15670 2005-04-22  Jackson Harper  <jackson@ximian.com>
15672         * TreeNode.cs: Implement Handle stuff.
15673         * TreeView.cs: Utility methods so nodes can get/lookup by handle.
15675 2005-04-22  Jordi Mas i Hernandez <jordi@ximian.com>
15677         * DataGridTextBoxColumn.cs: call base constructors, fixes
15678         * GridColumnStylesCollection.cs: missing events, methods, and functionality
15679         * GridTableStylesCollection.cs: fixes, check duplicate mapping names
15680         * DataGridTableStyle.cs: implements create default column styles
15681         * DataGridBoolColumn.cs: which types can handle
15682         * DataGrid.cs: missing methods, fixes, new functionality
15683         * DataGridColumnStyle.cs: fixes
15685 2005-04-20  Alexander Olk  <xenomorph2@onlinehome.de>
15686         * FolderBrowserDialog.cs:
15687         - Use a thread to fill the TreeView
15688         - Adjusted some sizes
15690 2005-04-19  Peter Bartok  <pbartok@novell.com>
15692         * LinkLabel.cs: (Re-)create the pieces when setting the Text
15693           property. Fixes #74360.
15695 2005-04-19  Jackson Harper  <jackson@ximian.com>
15697         * XEventQueue.cs: Lock when getting the lockqueue size.
15698         * PictureBox.cs: Call base OnPaint
15699         
15700 2005-04-19  Peter Bartok  <pbartok@novell.com>
15702         * XplatUIX11.cs: Fixed bug introduced with the HWND rewrite, Async
15703           messages were no longer being processed (this broke BeginInvoke)
15705           
15706 2005-04-18  Jackson Harper  <jackson@ximian.com>
15708         * TreeView.cs: buglet that caused node images to get drawn
15709         regardless of whether or not they were in the clipping rectangle.
15711 2005-04-18  Jackson Harper  <jackson@ximian.com>
15713         * CurrencyManager.cs: There are four rules for GetItemProperties:
15714         - If the type is an array use the element type of the array
15715         - If the type is a typed list, use the type
15716         - If the list contains an Item property that is not an object, use
15717         that property
15718         - use the first element of the list if there are any elements in
15719         the list.
15720         
15721 2005-04-17  Jackson Harper  <jackson@ximian.oom>
15723         * TreeView.cs: Calculate plus minus and checkbox bounds when there is a
15724         click. This handles offsets for scrolling properly and reduces
15725         memory. Also fixed GetNode to not offset now that TopNode works
15726         properly.
15727         * TreeNode.cs: No longer need to track the plus minus or checkbox bounds.
15728         
15729 2005-04-17  Jackson Harper  <jackson@ximian.com>
15731         * CursorConverter.cs: Initial implementation.
15733 2005-04-15  Jordi Mas i Hernandez <jordi@ximian.com>
15735         * ListControl.cs: work towards complex data binding support on ListControl
15736         * CurrencyManager.cs: work towards complex data binding support on ListControl
15737         * ListBox.cs: work towards complex data binding support on ListControl
15740 2005-04-15  Jordi Mas i Hernandez <jordi@ximian.com>
15742         * GridTableStylesCollection.cs: fixes name and constructor
15743         * DataGridTableStyle.cs: fixes
15744         * DataGridBoolColumn.cs: fixes names and constructors
15745         * DataGrid.cs: define methods and properties. Some init implementations
15746         * DataGridCell.cs: define methods and properties. Some init implementations
15747         * GridTablesFactory.cs: Define methods and properties
15749 2005-04-15  Geoff Norton  <gnorton@customerdna.com>
15751         * XplatUIOSX.cs:  Handle proper mouse tracking even if the current
15752         graphics port changes.  We still want the coordinates in global screen
15753         coordinates.
15755 2005-04-14  Jackson Harper  <jackson@ximian.com>
15757         * TreeView.cs: Handle clicks when plus minus is disabled. Don't
15758         check plus minus or checkbox clicks unless those features are enabled.
15760 2005-04-14  Jackson Harper  <jackson@ximian.com>
15762         * TreeView.cs: Add methods for setting the top and bottom visible
15763         nodes. TreeNode::EnsureVisible uses these methods.
15764         * TreeNode.cs: Implement EnsureVisible
15766 2005-04-13  Jordi Mas i Hernandez <jordi@ximian.com>
15768         * Form.cs: Pospone menu assignation if the window has not been created yet
15769         * XplatUIWin32.cs: Fixes Win32SetWindowPos, then does not change window
15770         size and position
15772 2005-04-12  Jackson Harper  <jackson@ximian.com>
15774         * TreeView.cs: Set the TopNode properly when scrolling
15775         occurs. This has the added benifit of reducing the amount of
15776         walking that needs to be done when drawing. Also removed an old
15777         misleading TODO.
15778         * OpenTreeNodeEnumerator.cs: Fix moving backwards.
15779         
15780 2005-04-11  Jordi Mas i Hernandez <jordi@ximian.com>
15782         * Timer.cs: fixes interval setting when the timer is already enabled
15783         
15784 2005-04-10  Alexander Olk  <xenomorph2@onlinehome.de>
15786         * FolderBrowserDialog.cs: First approach
15788 2005-04-09  Peter Bartok  <pbartok@novell.com>
15790         * FolderBrowserDialog: Added
15792 2005-04-07  Jordi Mas i Hernandez <jordi@ximian.com>
15794         * LinkLabel.cs: move drawing code into the theme
15795         * ThemeWin32Classic.cs: drawing code and painting background bugfix
15796         * Theme.cs: define DrawLinkLabel method
15798 2005-04-05  Jackson Harper  <jackson@ximian.com>
15800         * BindingContext.cs: Use weak references so these bad actors don't
15801         stay alive longer then they need to.
15803 2005-04-05  Jackson Harper  <jackson@ximian.com>
15805         * ListControl.cs: Basic implementation of complex databinding.
15806         * ComboBox.cs:
15807         * ListBox.cs: Add calls to ListControl databinding methods.
15809 2005-04-05  Alexander Olk  <xenomorph2@onlinehome.de>
15811         * FileDialog.cs:
15812           - Don't change PopupButtonState to Normal when the
15813             PopupButton gets pressed several times.
15814           - Renamed ButtonPanel to PopupButtonPanel
15816 2005-04-05  Jordi Mas i Hernandez <jordi@ximian.com>
15818         * ColorDialog.cs: Use cached objects instead of creating them
15819         * LinkLabel.cs: Use cached objects instead of creating them
15820         * Splitter.cs: Use cached objects instead of creating them
15821         * FontDialog.cs: Use cached objects instead of creating them
15822         * PropertyGridView.cs: Use cached objects instead of creating them
15823         * MessageBox.cs: Use cached objects instead of creating them
15824         * FileDialog.cs: Use cached objects instead of creating them
15825         * ThemeWin32Classic.cs: Use cached objects instead of creating them
15826         * TreeView.cs: Use cached objects instead of creating them
15827         
15828 2005-04-04  Jordi Mas i Hernandez <jordi@ximian.com>
15830         * Control.cs: use Equals to compare the font since no == op
15831         * ScrollBar.cs: use Equals to compare the font since no == op
15833 2005-04-04  Alexander Olk  <xenomorph2@onlinehome.de>
15835         * SaveFileDialog.cs: Open stream in OpenFile with FileMode Create
15837 2005-04-01  Jackson Harper  <jackson@ximian.com>
15839         * Binding.cs: Implement IsBinding.
15840         * BindingManagerBase.cs:
15841         * PropertyManager.cs:
15842         * CurrencyManager.cs: Add IsSuspended property.
15844 2005-04-01  Jackson Harper  <jackson@ximian.com>
15846         * Binding.cs: Had some IsAssignableFrom calls backwards.
15848 2005-04-01  Jackson Harper  <jackson@ximian.com>
15850         * Binding.cs: Handle null data members when pulling data.
15851         * PropertyManager.cs: Handle the data member being a property that
15852         does not exist.
15854 2005-04-01  Jordi Mas i Hernandez <jordi@ximian.com>
15856         * DataGridTextBoxColumn.cs: fixes signature
15857         * DataGrid.cs: calls right constructor
15859 2005-04-01  Jordi Mas i Hernandez <jordi@ximian.com>
15861         * DataGridTextBoxColumn.cs: implements DataGridTextBoxColumn class
15862         * GridColumnStylesCollection.cs: implements GridColumnStylesCollection
15863         * GridTableStylesCollection.cs: implements GridTableStylesCollection
15864         * DataGridTableStyle.cs: implements DataGridTableStyle
15865         * DataGridBoolColumn.cs: implements DataGridBoolColumn
15866         * DataGridTextBox.cs: implements DataGridTextBox
15867         * DataGridColumnStyle.cs: implements DataGridColumnStyle
15869 2005-03-31  Alexander Olk  <xenomorph2@onlinehome.de>
15871         * FileDialog.cs: Added simple PopupButton class for ButtonPanel
15873 2005-03-29  Peter Bartok  <pbartok@novell.com>
15875         * Application.cs:
15876           - Properly implemented CompanyName property
15877           - Fixed LocalUserAppDataPath and UserAppDataPath, now properly
15878             returns a path that includes CompanyName, ProductName and
15879             Version (fixes bug #70330)
15881 2005-03-29  Stefan Buehler  <sbuehler@gmx.ch>
15883         * TabPage.cs: Don't use Owner.DisplayRectangle unless owner is valid,
15884           fixes bug #72588.
15886 2005-03-28  Alexander Olk  <xenomorph2@onlinehome.de>
15888         * FileDialog.cs, SaveFileDialog.cs OpenFileDialog.cs:
15889         
15890           - Added ReadOnly CheckBox
15891           - Further refactoring: moved some code from Open-/SaveFileDialog
15892             to FileDialog
15894 2005-03-28  Alexander Olk  <xenomorph2@onlinehome.de>
15896         * OpenFileDialog.cs: Fixed CheckFileExists
15897         * FileDialog.cs:
15898           Moved FileView and DirComboBox outside FileDialog class.
15899           They can now be used outside FileDialog
15901 2005-03-27  Alexander Olk  <xenomorph2@onlinehome.de>
15903         * FileDialog.cs: Added a contextmenu to change ShowHiddenFiles
15904         * SaveDialog.cs, OpenFileDialog.cs: Fixes for Reset() method
15906 2005-03-27  Alexander Olk  <xenomorph2@onlinehome.de>
15908         * FileDialog.cs, OpenFileDialog.cs, SaveFileDialog.cs:
15909           - Added missing CreatePrompt property in SaveDialog
15910           - Overall SaveDialog handling should be better now
15911           - Added non standard ShowHiddenFiles property
15912           - Added extension, CreatePrompt and OverwritePrompt support in SaveDialog
15913           - Added InitialDirectory and RestoreDirectory support
15915 2005-03-26  Alexander Olk  <xenomorph2@onlinehome.de>
15917         * FileDialog.cs: Made dirComboBox usable
15919 2005-03-24  Alexander Olk  <xenomorph2@onlinehome.de>
15921         * FileDialog.cs: Added Filter support (case sensitiv)
15923 2005-03-24  Jackson Harper  <jackson@ximian.com>
15925         * TabControl.cs: Need a couple more pixels for the lines.
15927 2005-03-23  Jackson Harper  <jackson@ximian.com>
15929         * TabControl.cs: Give the tab page focus when it is selected.
15931 2005-03-23  Jackson Harper  <jackson@ximian.com>
15933         * TabControl.cs: Account for the drawing of tabs borders when
15934         invalidating. If the slider was clicked dont do click detection on
15935         the tabs.
15937 2005-03-23  Jackson Harper  <jackson@ximian.com>
15939         * TabControl.cs: Fix typo, emilinates an unneeded expose event.
15941 2005-03-22  Jonathan Chambers  <jonathan.chambers@ansys.com>
15943         * CategoryGridEntry.cs: Added
15944         * GridItem.cs: Added helper properties
15945         * PropertyGridTextBox.cs: Custom textbox control for PropertyGrid.
15946         * GridEntry.cs: Updated code for collection
15947         * PropertyGrid.cs: Cleaned up some formatting
15948         * PropertyGridView.cs: Added drop down functionality for enums.
15949         * GridItemCollection.cs: Added enumerator logic
15950         * PropertyGridEntry.cs: Added
15952 2005-03-19  Alexander Olk  <xenomorph2@onlinehome.de>
15954         * FileDialog.cs:
15955           - Removed unnecessary commented code
15956           - Fixed handling for entering the filename manually in the combobox
15958 2005-03-19  Alexander Olk  <xenomorph2@onlinehome.de>
15960         * FileDialog.cs, OpenFileDialog.cs: OpenFileDialog Multiselect now works
15962 2005-03-18  Peter Bartok  <pbartok@novell.com>
15964         * ThemeWin32Classic.cs: Moved listview column headers a bit, to avoid
15965           them being touching the border
15967 2005-03-18  Peter Bartok  <pbartok@novell.com>
15969         * TextControl.cs: Quick hack to center text better
15971 2005-03-18  Peter Bartok  <pbartok@novell.com>
15973         * ControlPaint.cs:
15974           - Don't throw NotImplemented exceptions, just print a notice once
15975             instead (requested by Miguel). This makes running existing SWF
15976             apps a bit easier
15977         * Control.cs:
15978           - Commented out Drag'N'Drop XplatUI call (no driver support yet)
15979           - Added context menu trigger on right click
15980         * Panel.cs: Trigger invalidate on resize
15981         * StatusBar.cs:
15982           - Removed old double-buffer drawing
15983           - Added ResizeRedraw style to force proper update of statusbar
15984         * ListView.cs:
15985           - Removed debug output
15986         * ThemeWin32Classic.cs:
15987           - Fixed drawing of status bar, now draws Text property if there
15988             are no defined panels
15990 2005-03-18  Jackson Harper  <jackson@ximian.com>
15992         * ImageList.cs: When the image stream is set pull all the images
15993         from it.
15994         * ImageListStreamer.cs: Implement reading image list streams.
15996 2005-03-18  Peter Bartok  <pbartok@novell.com>
15998         * ThemeWin32Classic.cs (DrawPictureBox):
15999           - Fixed calculations for centered drawing
16000           - Fixed drawing for normal mode, not scaling the image on normal
16002 2005-03-18  Peter Bartok  <pbartok@novell.com>
16004         * ComboBox.cs: Now also firing the OnKeyPress events for the embedded
16005           textbox
16006         * FileDialog.cs:
16007           - Made Open/Save button the accept button for FileDialog
16008           - Tied the cancel button to the IButtonControl cancel button
16009           - Save/Open now properly builds the pathname
16010           - Now handles user-entered text
16011           - Preventing crash on right-click if no item is selected
16012           - Fixed Text property, now uses contents of textbox
16013           - Fixed SelectedText property, now just returns the text part that
16014             is selected in the text box
16016 2005-03-18  Jackson Harper  <jackson@ximian.com>
16018         * ThemeWin32Classic.cs: Use the proper func for drawing the focus
16019         rect, make sure to de-adjust the interior rect after drawing the
16020         tab text.
16022 2005-03-18  Peter Bartok  <pbartok@novell.com>
16024         * MenuAPI.cs: Remove menu *before* executing selected action to
16025           prevent the menu from 'hanging around'
16026           
16027 2005-03-17  Geoff Norton  <gnorton@customerdna.com>
16029         * XplatUIOSX.cs: Implemented WorkingArea property
16031 2005-03-17  Peter Bartok  <pbartok@novell.com>
16033         * XplatUIX11.cs: Fixed menu coord calculations
16034         * MenuAPI.cs: Now using new ScreenToMenu()/MenuToScreen() methods
16035           for calculating offsets
16037 2005-03-17  Peter Bartok  <pbartok@novell.com>
16039         * Hwnd.cs: Do not consider menu presence for default client
16040           rectangle location/size
16041         * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs, XplatUIOSX.cs,
16042           XplatUIWin32.cs: Added MenuToScreen() and ScreenToMenu() coord
16043           translation functions
16044         * FileDialog.cs: Fixed (what I presume is a) typo
16046 2005-03-17  Jonathan Gilbert  <logic@deltaq.org>
16048         * XplatUIX11.cs: Added call to XInitThreads() to allow multi-threaded
16049           X access (avoids X-Async errors)
16051 2005-03-16  Jackson Harper  <jackson@ximian.com>
16053         * TabControl.cs: Raise the SelectedIndexChanged event.
16055 2005-03-16  Alexander Olk  <xenomorph2@onlinehome.de>
16057         * FileDialog.cs, OpenFileDialog.cs, SaveFileDialog.cs:
16058           - Removed vertical ToolBar and replaced it with a custom panel
16059             (desktop and home button already work)
16060           - Added Help button (some controls get resized or relocated then)
16061           - Draw correct text depending on Open or Save.
16062           - Fixed some typos...
16064 2005-03-16  Jordi Mas i Hernandez <jordi@ximian.com>
16066         * ScrollBar.cs:
16067           - Only change Maximum and Minimum when need it (bug fix)
16069 2005-03-15  Peter Bartok  <pbartok@novell.com>
16071         * Form.cs: Use Handle for icon, to trigger creation if
16072           the window does not yet exist
16073         * Control.cs:
16074           - CanSelect: Slight performance improvement
16075           - Focus(): Preventing possible recursion
16076           - Invalidate(): Removed ControlStyle based clear flag setting
16077           - WM_PAINT: fixed logic for calling OnPaintBackground
16078           - WM_ERASEBKGND: Fixed logic, added call to new driver method
16079             EraseWindowBackground if the control doesn't paint background
16080         * XplatUIWin32.cs:
16081           - Moved EraseWindowBackground() method to internal methods
16082           - Removed unused WM_ERASEBKGND handling in GetMessage; msg never comes;
16083             is sent via SendMessage on BeginPaint call on Win32
16084         * XplatUIX11.cs:
16085           - Added EraseWindowBackground() method
16086           - No longer sends WM_ERASEBKGND on .Expose, but on call to
16087             PaintEventStart, which more closely matches Win32 behaviour
16088           - Fixed Invalidate() call, now updates new ErasePending Hwnd property
16089           - Fixed SetFocus() to properly deal with client and whole windows
16090         * Hwnd.cs: Added ErasePending property
16091         * XplatUIOSX.cs: Stubbed EraseWindowBackground() method
16092         * XplatUI.cs, XplatUIDriver.cs: Added EraseWindowBackground() method
16094 2005-03-12  Geoff Norton  <gnorton@customerdna.com>
16096         * XplatUIOSX.cs:
16097           - Fix hard loop when timers exist.
16098           - Fix bugs with middle and right click for 3 button mice.
16100 2005-03-11  Peter Bartok  <pbartok@novell.com>
16102         * XplatUIX11.cs:
16103           - get_WorkingArea: Need to call X directly, GetWindowPos only
16104             returns cached data now
16105           - Added sanity check to GetWindowPos hwnd usage
16107 2005-03-11  Jackson Harper  <jackson@ximian.com>
16109         * BindingManagerBase.cs: This method isn't used anymore as
16110         PullData now updates the data in the control.
16112 2005-03-11  Jordi Mas i Hernandez <jordi@ximian.com>
16114         * Form.cs: fixes menu drawing on X11
16115         * MenuAPI.cs:  fixes menu drawing on X11
16117 2005-03-11  Peter Bartok  <pbartok@novell.com>
16119         * Control.cs: Changed OnCreateControl behaviour based on a suggestion
16120           from Jonathan Gilbert; should fix bug #73606
16121         * XplatUIX11.cs: Fixed NC Mouse message coordinates, they need to be
16122           in Screen coordinates. Thanks, Jordi.
16123         * Form.cs: Added missing attribute
16125 2005-03-11  Peter Bartok  <pbartok@novell.com>
16127         * Form.cs:
16128           - Rudimentary Mdi support
16129           - Removed outdated FormParent code
16130           - Implemented lots of missing properties and methods, still missing
16131             transparency support
16132           - Added missing attributes
16133           - Implemented support for MaximumBounds
16134           - Added firing of various events
16135         * XplatUI.cs: Added SetIcon() method
16136         * XplatUIDriver.cs: Added SetIcon() abstract
16137         * XplatUIOSX.cs: Stubbed out SetIcon() method
16138         * XplatUIX11.cs:
16139           - Implemented SetIcon() support
16140           - Moved SetMenu() and SetBorderStyle() to proper alphabetical pos
16141           - Switched to unix line endings
16142         * XplatUIWin32.cs:
16143           - Made POINT internal so for can access it as part of MINMAX
16144           - Implemented SetIcon() support
16145           - Implemented support for CLIENTCREATESTRUCT (but might have to drop
16146             native Mdi support again, might have to go managed)
16147         * Control.cs: Now fires the StyleChanged event
16148         * MdiClient.cs: Added; still mostly empty
16150 2005-03-10  Peter Bartok  <pbartok@novell.com>
16152         * SaveFileDialog.cs: Added emtpy file
16154 2005-03-08  Peter Bartok  <pbartok@novell.com>
16156         * Control.cs: Fixed bug #73190; now invokes CreateControl (which
16157           in turn triggers OnCreateContro) when creating a handle for the
16158           first time.
16159         * TextControl.cs: Fixed endless loop in certain cases when
16160           replacing the current selection
16162 2005-03-08  Jordi Mas i Hernandez <jordi@ximian.com>
16164         * ScrollBar.cs:
16165           - Honors NewValue changes in Scroll events allowing apps to change it
16166           - Adds First and Last Scroll events
16167           - Fixes Thumb events
16169 2005-03-07  Peter Bartok  <pbartok@novell.com>
16171         * Hwnd.cs: Added DefaultClientRectangle property
16172         * XplatUI.cs: Now using the X11 driver Where() method, which provides
16173           more detailed debug information
16174         * XplatUIX11.cs:
16175           - Fixed size-change feedback loop, where we would pull an old size
16176             off the queue and mistakenly change our window's size to an
16177             earlier value
16178           - Now compressing ConfigureNotify events, to reduce looping and
16179             redraw issues
16180         * TextBoxBase.cs: Preventing crash when no text is set and ToString()
16181           is called
16183 2005-03-07  Jackson Harper  <jackson@ximian.com>
16185         * Binding.cs: Push data pushes from data -> property. Check if the
16186         property is readonly when attempting to set it.
16188 2005-03-07  Jackson Harper  <jackson@ximian.com>
16190         * Binding.cs: Format and parse data correctly. Use ASsignableFrom
16191         instead of IsSubclassOf. Pulling data now sets the value on the
16192         control.
16193         * PropertyManager.cs:
16194         * CurrencyManager.cs: Just need to pull data when updating now,
16195         because PullData will set the value on the control.
16197 2005-03-04  Jackson Harper  <jackson@ximian.com>
16199         * Binding.cs: Implement data type parsing and converting on pulled
16200         data. TODO: Are there more ways the data can be converted?
16202 2005-03-04  Jackson Harper  <jackson@ximian.com>
16204         * Binding.cs: Support <Property>IsNull checks. Also bind to the
16205         controls Validating method so we can repull the data when the
16206         control loses focus.
16208 2005-03-03  Jordi Mas i Hernandez <jordi@ximian.com>
16210         * ColumnHeader.cs:
16211           - Fixes null string format
16212           
16213         * ListView.cs:
16214           - Adds enum type checks
16215           - Fixes redrawing and recalc need after changing some properties
16216           - Fixes on focus_item set after the event
16217           - Fixes adding columns after the control has been created
16218           
16219         * ThemeWin32Classic.cs:
16220           - Fixes CheckBox focus rectangle
16221           - Fixes ColumnHeader drawing
16224 2005-03-03  Jackson Harper  <jackson@ximian.com>
16226         * Binding.cs: Bind to <Property>Changed events so we can detect
16227         when properties are changed and update the data.
16229 2005-03-02  Jordi Mas i Hernandez <jordi@ximian.com>
16231         * ImageList.cs:
16232           - Changes 32-bit pixel format to Format32bppArgb to allow transparency
16233           - Fixes ImageList constructor with ImageList container
16234           - Fixes image scaling (wrong parameters at DrawImage)
16236 2005-02-02  Jackson Harper  <jackson@ximian.com>
16238         * Binding.cs: Make property searches case-insensitive. Eliminate
16239         some duplicated code.
16241 2005-03-01  Jordi Mas i Hernandez <jordi@ximian.com>
16243         * ComboBox.cs:
16244                 - Handle focus event
16245                 - Fix scrollbar events
16246                 - Discard highlighted item if remove it
16247                 - Fixes SelectedItem with strings
16249 2005-03-01  Peter Bartok  <pbartok@novell.com>
16251         * Control.cs:
16252           - Fixed Visible property, now follows (once again) parent chain
16253             to return false if any control in the chain is visible=false
16254           - Fixed OnParentVisibleChanged, now just calls OnVisibleChanged event
16255           - Fixed several places where is_visible instead of Visible was used
16256           - Implemented FIXME related to focus selection when setting focused
16257             control to be invisible
16259         * XplatUIWin32.cs: Now using proper method to find out if window is
16260           visible. Thanks to Jordi for pointing it out
16262 2005-02-28  Jordi Mas i Hernandez <jordi@ximian.com>
16264         * ComboBox.cs: show/hide scrollbar instead of creating it
16266 2005-02-27  Jackson Harper  <jackson@ximian.com>
16268         * CurrencyManager.cs: Add PositionChanged stuff.
16270 2005-02-27  Peter Bartok  <pbartok@novell.com>
16272         * XplatUI.cs, XplatUIDriver.cs: Added new GetMenuOrigin() method
16273         * XplatUIOSX.cs: Added GetMenuOrigin() stub
16274         * XplatUIWin32.cs: Implemented GetMenuOrigin()
16275         * XplatUIX11.cs:
16276           - Implemented GetMenuDC()
16277           - Implemented GetMenuOrigin()
16278           - Implemented ReleaseMenuDC()
16279           - Implemented generation of WM_NCPAINT message
16280           - Implemented generation and handling of WM_NCCALCSIZE message
16281         * Form.cs: Added debug helper message for Jordi's menu work
16282         * Hwnd.cs:
16283           - Modified ClientRect property; added setter, fixed getter to handle
16284             setting of ClientRect
16285           - Added MenuOrigin property
16287 2005-02-26  Peter Bartok  <pbartok@novell.com>
16289         * XplatUIX11.cs:
16290           - Destroys the caret if a window that's being destroyed contains it
16291           - Ignores expose events coming from the X11 queue for windows that
16292             already are destroyed
16293           - Now uses the proper variable for handling DestroyNotify, before we
16294             marked the wrong window as destroyed
16295           - Improved/added some debug output
16297 2005-02-26  Peter Bartok  <pbartok@novell.com>
16299         * X11Keyboard.cs: Fixes to work on 64bit systems
16301 2005-02-26  Peter Bartok  <pbartok@novell.com>
16303         * Control.cs:
16304           - Now calling OnHandleDestroyed from DestroyHandle()
16305             instead of Dispose()
16306           - Removed bogus call to controls.Remove() from DestroyHandle()
16308 2005-02-26  Peter Bartok  <pbartok@novell.com>
16310         * Control.cs: Properly destroy child windows when our handle is
16311           destroyed
16313 2005-02-25  Peter Bartok  <pbartok@novell.com>
16315         * XplatUI.cs:
16316           - Added 'DriverDebug' define to allow tracing XplatUI API calls
16317           - Alphabetized Static Methods and Subclasses
16319         * XplatUIX11.cs:
16320           - Added XException class to allow custom handling of X11 exceptions
16321           - Created custom X11 error handler, tied into XException class
16322           - Added support for MONO_XEXCEPTIONS env var to allow the user
16323             to either throw an exception on X errors or continue running
16324             after displaying the error
16325           - Added handling of DestroyNotify message
16326           - Added handler for CreateNotify message (still disabled)
16327           - Improved (tried to at least) Where method to provide file and lineno
16328         * X11Structs.cs:
16329           - Added XErrorHandler delegate
16330           - Added XRequest enumeration (to suppor translation of errors)
16332 2005-02-25  Jackson Harper  <jackson@ximian.com>
16334         * PropertyManager.cs: Implement editing features
16335         * CurrencyManager.cs:
16336         * Binding.cs: First attempt at UpdateIsBinding
16337         * BindingManagerBase.cs: Call UpdateIsBinding before
16338         pushing/pulling data.
16340 2005-02-25  Jordi Mas i Hernandez <jordi@ximian.com>
16342         * MenuAPI.cs: Respect disabled items
16343         * ThemeWin32Classic.cs
16344                 - Caches ImageAttributes creation for DrawImageDisabled
16345                 - Fixes vertical menu line drawing
16346                 - Draws disabled arrows in disable menu items
16348 2005-02-24  Peter Bartok  <pbartok@novell.com>
16350         * Hwnd.cs:
16351           - Added UserData property to allow associating arbitrary objects
16352             with the handle
16353           - Fixed leak; now removing Hwnd references from static windows array
16354         * XplatUIWin32.cs:
16355           - Fixed Graphics leak in PaintEventEnd
16356           - Removed usage of HandleData, switched over to Hwnd class
16357         * HandleData.cs: Removed, obsoleted by Hwnd.cs
16359 2005-02-24  Jordi Mas i Hernandez <jordi@ximian.com>
16361         * ThemeWin32Classic.cs: Adds Cliping to TrackBar drawing
16362         * ScrollBar.cs: Fixes bug
16363         * TrackBar.cs: removes death code, clipping, mimize refreshes,
16364          keyboard navigation enhancements
16366 2005-02-24  Jordi Mas i Hernandez <jordi@ximian.com>
16368         * Control.cs: Call DefWndProc at WM_PAINT only if UserPaint not defined
16369         * GroupBox.cs: Add control styles
16370         * Label.cs: Add control styles
16371         * UpDownBase.cs: Add control styles
16372         * ListBox.cs: Add control styles
16373         * XplatUIWin32.cs: Fixes wrong parameter order
16376 2005-02-23  Chris Bacon  <chris.bacon@docobo.co.uk>
16378         * ListView.cs: Assign owner for ColumnHeader. Patch by Chris Bacon
16380 2005-02-23  Jackson Harper  <jackson@ximian.com>
16382         * PropertyManager.cs: Implement property binding. This doesn't
16383         seem to work yet though as (I think) there are some bugs in
16384         System.ComponentModel.PropertyDescriptor.
16385         * BindingContext.cs: Use new PropertyManager constructor.
16387 2005-02-23  Jordi Mas i Hernandez <jordi@ximian.com>
16389         * ProgressBar.cs: use clip region in ProgressBar
16390         * ThemeWin32Classic.cs: use clip region in ProgressBar
16392 2004-02-22  Jackson Harper  <jackson@ximian.com>
16394         * BindingsCollection.cs: Remove some debug code.
16396 2005-02-22  Jackson Harper  <jackson@ximian.com>
16398         * BindingContext.cs:
16399         * ControlBindingsCollection.cs:
16400         * CurrencyManager.cs:
16401         * Binding.cs:
16402         * BindingManagerBase.cs: Initial implementation
16403         * BindingsCollection.cs: Add an internal contains method that the
16404         BindingManagerBase uses to ensure bindings aren't added twice to
16405         the collection.
16406         * PropertyManager.cs: Stubbed out.
16407         * Control.cs:
16408         * ContainerControl.cs: Hook up databinding
16409         
16410 2005-02-22  Geoff Norton  <gnorton@customerdna.com>
16412         * XplatUIOSX.cs:
16413           OSXStructs.cs: Refactored to handle the new Hwnd NC logic area.
16414           Fixed Invalidate/Update chain.
16415           Fixed tons of other minor bugs (this is almost a complete rewrite).
16417 2005-02-22  Jordi Mas i Hernandez <jordi@ximian.com>
16419         * ComboBox.cs: do subcontrol creation when the control is created
16421 2005-02-19  Jordi Mas i Hernandez <jordi@ximian.com>
16423         * Label.cs: fixes image drawing (image and imagelist)
16424         * ThemeWin32Classic.cs: cache brushes
16425         
16426 2005-02-19  Jordi Mas i Hernandez <jordi@ximian.com>
16428         * Form.cs: Move menu drawing code to Theme class
16429         * ComboBox.cs: Move ComboBox drawing code to Theme class
16430         * MenuItem.cs: Move menu drawing code to Theme class
16431         * MenuAPI.cs: Move menu drawing code to Theme class
16432         * ThemeWin32Classic.cs: New methods
16433         * CheckedListBox.cs: Move CheckedListbox drawing code to Theme class
16434         * ListBox.cs: Move Listbox drawing code to Theme class
16435         * Theme.cs: New methods
16437 2005-02-20  Peter Bartok  <pbartok@novell.com>
16439         * Control.cs:
16440           - Fixed ProcessKeyEventArgs to also handle WM_SYSKEY messages (and
16441             only process mnemonics on those)
16442           - Fixed event sequence for key handling; first calling
16443             ProcessKeyEventArgs now
16444         * TextBoxBase.cs:
16445           - Removed WM_KEYDOWN hook, instead we now use ProcessDialogKey()
16446             for processing non-character keys
16447           - Fixed WM_CHAR to generate proper event sequence before processing
16448         * XplatUIWin32.cs: Added ALT key state to ModifierKeys property
16449           generation
16451 2005-02-19  Peter Bartok  <pbartok@novell.com>
16453         * UserControl.cs: Added TextChanged event; added attributes
16454         * SizeGrip.cs: Implemented resizing and optional display of grip
16455         * Form.cs: Fixed attribute
16456         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs, XplatUIWin32.cs:
16457           Changed meaning of ScrollWindow bool argument; instead of the
16458           clear attribute (which will be true usually anyway), it gives the
16459           option of moving child controls as well.
16460         * XplatUIX11.cs:
16461           - Changed to match new ScrollWindow argument
16462           - Fixed GetWindowPos/SetWindowPos behaviour for toplevel controls,
16463             now handles the implicit parent window a WM puts around us
16464         * ScrollableControl.cs: Implemented (not the prettiest, but it seems
16465           to work)
16466         * TextBoxBase.cs: Adjusted to new ScrollWindow arguments
16467         * TreeView.cs: Adjusted to new ScrollWindow arguments
16469 2005-02-19  Jordi Mas i Hernandez <jordi@ximian.com>
16471         * Form.cs: Menu integration with non-client area
16472         * MenuItem.cs: Menu integration with non-client area
16473         * MenuAPI.cs: Menu integration with non-client area
16475 2005-02-18  Peter Bartok  <pbartok@novell.com>
16477         * MethodInvoker.cs: Added
16478         * MdiLayout.cs: Added
16479         * SendKeys.cs: Started implementation
16480         * ErrorIconAlignment.cs: Added
16482 2005-02-18  Peter Bartok  <pbartok@novell.com>
16484         * XplatUIWin32.cs: Implemented SetMenu(); fixed GetMenuDC()
16485         * Form.cs: Added handling for Menu-related Non-client messages
16487 2005-02-17  Peter Bartok  <pbartok@novell.com>
16489         * UpDownBase.cs: Fixed typo, compilation errors
16490         * DomainUpDown.cs: Fixed attribute value
16492 2005-02-16  Miguel de Icaza  <miguel@novell.com>
16494         * UpDownBase.cs: Attach entry events.
16495         Propagate events.
16496         Add ForeColor property, Focused, InterceptArrowKeys (interception
16497         does not work yet).
16499 2005-02-17  Jordi Mas i Hernandez <jordi@ximian.com>
16501         * Form.cs:
16502                 - Redraw non client are on Setmenu
16503                 - Calc proper menu starting point
16505 2005-02-17  Peter Bartok  <pbartok@novell.com>
16507         * Application.cs: Fixed message_filter check
16509 2005-02-17  Peter Bartok  <pbartok@novell.com>
16511         * Application.cs: Now calls registered message filters
16512         * DockStyle.cs: Fixed attribute
16513         * Form.cs: Fixed attribute
16514         * Menu.cs: Fixed attribute
16515         * ToolTip.cs: Fixed attribute
16516         * TreeNode.cs: Added missing attributes and arranged in regions
16517         * PropertyGrid.cs: Fixed signatures
16518         * TreeNodeCollection.cs: Added attributes
16519         * Splitter.cs: Added missing attributes; arranged into regions
16520         * TabPage.cs: Added missing attributes; arranged into regions
16521         * TextBoxBase.cs: Added missing attributes
16522         * TextBox.cs: Added missing attributes
16523         * ArrangeDirection.cs: Added missing attributes
16524         * TreeNodeConverter.cs: Added stub (needed for TreeNode)
16525         * ToolBarButton.cs: Fixed attributes
16526         * AnchorStyles.cs: Fixed attribute
16527         * TrackBar.cs: Fixed attributes
16528         * TabControl.cs: Added missing attributes and arranged into regions
16529         * ToolBar.cs: Fixed attribute
16530         * StatusBar.cs: Fixed signature, organized into regions and added
16531           attributes
16532         * StatusBarPanel.cs: Fixed attributes
16533         * ContentsResizedEventArgs.cs: Implemented
16534         * ContentsResizedEventHandler.cs: Implemented
16535         * DateBoldEventArgs.cs: Implemented
16536         * DateBoldEventHandler.cs: Implemented
16537         * UpDownEventArgs.cs: Implemented
16538         * UpDownEventHandler.cs: Implemented
16539         
16540 2005-02-16  Jordi Mas i Hernandez <jordi@ximian.com>
16542         * Form.cs: first Menu NC refactoring
16543         * MenuAPI.cs: first Menu NC refactoring
16544         
16545 2005-02-16  Peter Bartok  <pbartok@novell.com>
16547         * ImeMode.cs: Added missing attributes
16548         * Menu.cs: Fixed attribute
16549         * GroupBox.cs: Fixed attribute
16550         * Label.cs: Fixed attribute
16551         * ColorDialog.cs (RunDialog): Removed TODO attribute
16552         * ComboBox.cs: Fixed attributes
16553         * ListControl.cs: Added missing attributes
16554         * PropertyGrid.cs: Fixed attributes
16555         * Control.cs: Fixed attributes
16556         * ListViewItem.cs: Added TypeConverter attribute
16557         * NotifyIcon.cs: Fixed attributes
16558         * ListView.cs: Fixed attributes
16559         * ButtonBase.cs: Fixed attribute
16560         * ImageList.cs: Added missing attributes
16561         * ContainerControl.cs: Fixed signature
16562         * CheckedListBox.cs: Fixed attribute; added missing attributes
16563         * Panel.cs: Fixed attributes
16564         * PropertyTabChangedEventArgs.cs: Added missing attribute
16565         * PropertyValueChangedEventArgs.cs: Added missing attribute
16566         * Binding.cs: Fixed attribute
16567         * ListViewItemConverter: Implemented ListViewSubItemConverter class
16568         * ListBox.cs: Fixed attribute; added missing attributes;
16569         * ScrollableControl.cs: Added missing attributes
16570         * PictureBox.cs: Added missing attributes; implemented missing property
16571         * DateTimePicker.cs: Added missing attributes
16572         * Theme.cs (ToolWindowCaptionHeight): Fixed type
16573         * MonthCalendar.cs: Fixed attributes
16574         * StatusBarPanel.cs: Added missing attributes
16575         * SystemInformation.cs (ToolWindowCaptionHeight): Fixed type
16577 2005-02-16  Peter Bartok  <pbartok@novell.com>
16579         * TextBoxBase.cs: The previous method to enforce height yet remember
16580           the requested high was less than ideal, this is an attempt to do
16581           it better.
16582         * Control.cs: Added comment about possible problem
16583         * Copyright: Updated format
16584         * GridItemType.cs: Fixed swapped values
16586 2005-02-15  Jackson Harper  <jackson@ximian.com>
16588         * BaseCollection.cs: Use property so we never access an
16589         uninitialized list. Also initialize the list in the property.
16591 2005-02-15  Peter Bartok  <pbartok@novell.com>
16593         * GroupBox.cs (ProcessMnemonic): Implemented
16594         * Label.cs (ProcessMnemonic): Implemented
16595         * ThemeWin32Classic.cs (DrawGroupBox): Added stringformat to show
16596           hotkeys
16598 2005-02-15  Peter Bartok  <pbartok@novell.com>
16600         * RadioButton.cs (ProcessMnemonic): Implemented
16601         * CheckBox.cs (ProcessMnemonic): Implemented
16602         * Control.cs:
16603           - Added handling of WM_SYSxxx keyboard messages to support mnemonic
16604             handling
16605           - Added internal method to allow calling ProcessMnemonic from other
16606             controls
16607         * ContainerControl.cs:
16608           - Started support for handling validation chain handling
16609           - Implemented ProcessMnemonic support
16610           - Added Select() call to Active, to make sure the active control
16611             receives focus
16612         * Form.cs: Setting toplevel flag for Forms (this was lost in the
16613           FormParent rewrite)
16614         * ThemeWin32Classic.cs:
16615           - DrawCheckBox(): Fixed stringformat to show hotkeys
16616           - DrawRadioButton(): Fixed stringformat to show hotkeys
16617         * CommonDialog.cs: Removed WndProc override, not needed
16619 2005-02-14  Peter Bartok  <pbartok@novell.com>
16621         * XplatUIX11.cs: Fixed NotImplemented exceptions for properties,
16622           missed those in the rewrite
16624 2005-02-14  Miguel de Icaza  <miguel@novell.com>
16626         * NumericUpDown.cs (Increment, ToString): Add.
16627         (DecimalPlaces): implement.
16628         
16629         Add attributes.
16630         
16631         * UpDownBase.cs: Add the designer attributes.
16633 2005-02-13  Peter Bartok  <pbartok@novell.com>
16635         * Panel.cs: Removed border_style, now in Control
16636         * XplatUIDriver.cs: Added SetBorderStyle, SetMenu, GetMenuDC and
16637           ReleaseMenuDC Methods; renmaed ReleaseWindow to UngrabWindow
16639 2005-02-13  Peter Bartok  <pbartok@novell.com>
16641         * MouseButtons.cs: Added missing attributes
16642         * XplatUIStructs.cs: Added enumeration for title styles
16643         * LeftRightAlignment.cs: Added missing attributes
16644         * Hwnd.cs: Switched to use client_window as handle (slower, but makes
16645           it compatible with Graphics.FromHwnd()
16646         * SelectedGridItemChangedEventArgs.cs: Fixed property type
16647         * Keys.cs: Added missing attributes
16648         * SelectionRange.cs: Added missing attributes
16649         * SelectionRangeConverter.cs: Added
16650         * XplatUI.cs:
16651           - Introduced SetBorderStyle, SetMenu, GetMenuDC and
16652             ReleaseMenuDC methods
16653           - Renamed ReleaseWindow to UngrabWindow
16654           - Added proper startup notice to allow version identification
16655         * Form.cs:
16656           - Added missing attributes
16657           - Removed FormParent concept
16658         * Label.cs: Removed border_style field, now in Control
16659         * RadioButton.cs: Now properly selects RadioButton when focus is
16660           received
16661         * ThemeGtk.cs: Fixed SetDisplay call to match new X11 behaviour
16662         * Control.cs:
16663           - Added missing attributes
16664           - Added borderstyle handling
16665           - Removed FormParent concept support
16666           - Fixed calls to XplatUI to match changed APIs
16667           - Fixed bug that would case us to use disposed Graphics objects
16668           - Removed unneeded internal methods
16669           - PerformLayout(): Fixed to handle DockStyle.Fill properly
16670           - SelectNextControl(): Fixed to properly check common parents
16671         * TextBoxBase.cs: Removed border_style field (now in Control)
16672         * MessageBox.cs:
16673           - Patch by Robert Thompson (rmt@corporatism.org): Added icon support,
16674             fixed calculations for form size
16675           - Added support for localized strings and icons
16676           - Improved form size calculations, added border
16677         * ListView.cs: Removed border_style field (now in Control)
16678         * X11Structs.cs: Moved several structs from X11 driver here
16679         * X11Keyboard.cs: Changed debug message
16680         * Application.cs: Removed FormParent concept support
16681         * CommonDialog.cs:
16682           - Resetting end_modal flag
16683           - Removed FormParent concept support
16684         * NativeWindow.cs: Removed FormParent concept support
16685         * XplatUIX11.cs: Rewritten, now using the new Hwnd class, implementing
16686           Client area and Non-Client whole window to allow support for WM_NC
16687           messages
16688         * XplatUIOSX.cs: Updated to match latest driver spec; added exception
16689           prevent using it until it supports Hwnd as per Geoff Norton's request
16690         * ToolBar.cs: Fixed drawing, was not doing proper drawing
16691         * PictureBox.cs: Removed border_style field, now in Control
16692         * XplatUIWin32.cs: Added new driver methods
16694 2005-02-12  Peter Bartok  <pbartok@novell.com>
16696         * OpacityConverter.cs: Implemented
16697         * Hwnd.cs: Internal class to support drivers that need to emulate
16698           client area/non-client area window behaviour
16700 2005-02-11  Peter Bartok  <pbartok@novell.com>
16702         * KeysConverter.cs: Implemented
16704 2005-02-11  Jordi Mas i Hernandez <jordi@ximian.com>
16706         * Menu.cs: fixes methods GetContextMenu, GetMainMenu, ToString
16707         * LinkLabel: Added missing attributes
16708         * MainMenu.cs: fixes ToString
16709         * MenuItem.cs: fixes methods GetContextMenu, GetMainMenu
16710         * ListBox.cs: fixes event position
16711         * TrackBar.cs: adds missing attributes and events
16712         
16713 2005-02-10  Jordi Mas i Hernandez <jordi@ximian.com>
16715         * MenuItem.cs: Use SystemInformation and bug fixes
16716         * MenuAPI.cs: Use SystemInformation and bug fixes
16718 2005-02-09  Jackson Harper  <jackson@ximian.com>
16720         * X11Keyboard.cs: We ignore some keys, but still need to set/reset
16721         their keystate otherwise things like VK_MENU get stuck "on".
16723 2005-02-09  Kazuki Oikawa <kazuki@panicode.com>
16725         * ListBox.cs: Fixes AddRange bug
16726         
16727 2005-02-09  Jordi Mas i Hernandez <jordi@ximian.com>
16729         * ProgressBar.cs
16730                 - Add missing attributes
16731                 - Add missing method
16732                 
16733         * CheckedListBox.cs: Added missing attributes
16734                 - Add missing attributes
16735                 - Remove extra method
16736         
16737         * ComboBox.cs: Added missing attributes
16738         * VScrollBar.cs: Added missing attributes
16739         * ScrollBar.cs:  Added missing attributes
16740         * ListBox.cs: Fixes signature, add missing consts
16741         * LinkArea.cs:   Added missing attributes
16742         
16744 2005-02-08  Peter Bartok  <pbartok@novell.com>
16746         * Menu.cs: Added missing attributes
16747         * MainMenu.cs: Added missing attributes
16748         * GroupBox.cs: Added missing attributes
16749         * Label.cs: Added missing attributes
16750         * CheckBox.cs: Implemented CheckBoxAccessibleObject class
16751         * ColorDialog.cs:
16752           - Added Instance and Options properties
16753           - Added missing attributes
16754         * Cursor.cs: Made Serializable
16755         * NotifyIcon: Added missing attributes
16756         * MenuItem.cs: Added missing attributes
16757         * TextBoxBase.cs: Implemented AppendText() and Select() methods
16758         * Panel.cs: Added Missing attributes
16759         * MonthCalendar.cs: Fixed CreateParams
16761 2005-02-08  Jordi Mas i Hernandez <jordi@ximian.com>
16762         
16763         * LinkLabel.cs:
16764                 - Fixes signature
16765                 - Fixes issues with links
16766                 - Adds the class attributes
16768 2005-02-08  Jordi Mas i Hernandez <jordi@ximian.com>
16769         
16770         * ComboBox.cs:
16771                 - Fixes button when no items available in dropdown
16772                 - Fixes repainting problems
16773                 - Adds the class attributes
16774                 
16775 2005-02-07  Geoff Norton  <gnorton@customerdna.com>
16777         * XplatUIOSX.cs: Detect the menu bar and title bar height from
16778         the current theme.  Cache these on startup.
16780 2005-02-07  Jackson Harper  <jackson@ximian.com>
16782         * ScrollBar.cs: Give the correct clipping rect to the theme. Dirty
16783         the scrollbar buttons when they are depressed.
16785 2005-02-07  Geoff Norton  <gnorton@customerdna.com>
16787         * XplatUIOSX.cs: Really fix working at resolutions not 1024x768.
16788         Get the display size from the main displayid.  We currently dont
16789         support multiple display configurations.
16791 2005-02-07  Geoff Norton  <gnorton@customerdna.com>
16793         * XplatUIOSX.cs: Ensure the window doesn't get stuck behind the statusbar.
16795 2005-02-07  Miguel de Icaza  <miguel@novell.com>
16797         * UpDownBase.cs: Add ReadOnly and UpDownAlign properties.
16799 2005-02-05  Jonathan Chambers  <jonathan.chambers@ansys.com>
16801         * PropertyGrid.cs: Updated. Patch by Jonathan Chambers
16803 2005-02-04  Jackson Harper  <jackson@ximian.com>
16805         * ThemeWin32Classic.cs: Respect the clipping rect when
16806         drawing. Only fill the intersection of clips and rects so there
16807         isn't a lot of large fills.
16808         * ScrollBar.cs: Pass the correct clipping rect to the theme
16809         engine. Remove some debug code.
16811 2005-02-05  John BouAntoun  <jba-mono@optusnet.com.au>
16812         
16813         * DateTimePicker.cs:
16814                 - Fixed crash on DateTime.Parse, use Constructor instead
16816 2005-02-04  Jordi Mas i Hernandez <jordi@ximian.com>
16817         
16818         * MenuItem.cs:
16819         * MenuAPI.cs:
16820                 - Owner draw support (MeasureItem and DrawItem)
16822 2005-02-04  Jordi Mas i Hernandez <jordi@ximian.com>
16823         
16824         *  Menu.cs:
16825                 - Implements FindMergePosition and MergeMenu functions (very poor documented)
16826                 - Fixes MenuItems.Add range
16827         * MenuItem.cs:
16828                 - MergeMenu and Clone and CloneMenu functions
16830 2005-02-03  Jackson Harper  <jackson@ximian.com>
16832         * ScrollBar.cs: Make abstract
16833         * ScrollableControl.cs: Create H/V scrollbars now that scrollbar
16834         is abstract.
16836 2005-02-03  Jackson Harper  <jackson@ximian.com>
16838         * ScrollBar.cs: First part of my scrollbar fixups. This removes
16839         all the unneeded refreshes and uses invalidates with properly
16840         computed rects.
16842 2005-02-03  Peter Bartok  <pbartok@novell.com>
16844         * ComponentModel.cs: Added
16845         * IDataGridEditingService.cs: Added
16846         * Timer.cs: Added missing attributes
16847         * ToolTip.cs: Added missing attributes
16849 2005-02-03  Jonathan Chambers  <jonathan.chambers@ansys.com>
16851         * PropertyGridView.cs: Added. Patch by Jonathan Chambers
16853 2005-02-03  Peter Bartok  <pbartok@novell.com>
16855         * ListBox.cs: Added missing attributes
16857 2005-02-03  Jordi Mas i Hernandez <jordi@ximian.com>
16858         
16859         * ListBox.cs:
16860                 - Fixes font height after font change
16861                 - Avoid generating unnecesary OnSelectedIndexChanged on clearing
16862                 
16863 2005-02-02  Peter Bartok  <pbartok@novell.com>
16865         * HandleData.cs: Introduced static methods to allow class
16866           to be more self-contained and track it's own HandleData objects
16867         * XplatUIOSX.cs, XplatUIWin32.cs, XplatUIX11.cs: Fixed usage of
16868           HandleData to use new static methods
16870 2005-02-02  Jordi Mas i Hernandez <jordi@ximian.com>
16872         * Combobox.cs:
16873                 - Fixes default size and PreferredHeight
16874                 - Missing events
16875                 - ObjectCollection.Insert implementation
16876                 
16877         * ListControl.cs
16878                 - Fixes signature
16879         * ListBox.cs:
16880                 - Several fixes
16881                 - ObjectCollection.Insert implementation
16882                 - No selection after clean
16883                 - Small fixes
16885 2005-01-31      John BouAntoun  <jba-mono@optusnet.com.au>
16887         * ThemeWin32Classic.cs: quick fix to comboboxbutton pushed painting
16889 2005-02-01  Jordi Mas i Hernandez <jordi@ximian.com>
16891         * Combobox.cs:
16892                 - Caches ItemHeight calculation for OwnerDrawVariable
16893                 - Handles dropdown properly
16894                 - Fixes several minor bugs
16896 2005-01-31  Jordi Mas i Hernandez <jordi@ximian.com>
16898         * ListBox.cs:
16899                 - Fixes 71946 and 71950
16900                 - Fixes changing Multicolumn on the fly
16901                 - Fixes keyboard navigation on Multicolumn listboxes
16903 2005-01-31  Geoff Norton  <gnorton@customerdna.com>
16904         
16905         * XplatUIOSX.cs: Call ExitToShell in our teardown to avoid a
16906         crash reporter log.
16908 2005-01-31  Geoff Norton  <gnorton@customerdna.com>
16910         * XplatUIOSX.cs: Allow applications to actually exit.
16912 2005-01-31  Geoff Norton  <gnorton@customerdna.com>
16914         * XplatUIOSX.cs: SetWindowStyle implemented.  Reposition views in
16915         their parent at creation time rather than lazily later.  Fixes a major
16916         regression we were experiencing.
16918 2005-01-31      John BouAntoun  <jba-mono@optusnet.com.au>
16920         * ThemeWin32Classic.cs: more date time picker painting fixes
16921         * DateTimePicker.cs: more monthcalendar drop down fixes
16922         * MonthCalendar.cs: more CreateParams fixes to ensure correct drop down
16924 2005-01-31  Jordi Mas i Hernandez <jordi@ximian.com>
16926         * ScrollBar.cs:
16927                 - When moving the thumb going outside the control should stop the moving
16928                 - Adds the firing of missing events
16929                 - Fixes no button show if Size is not specified
16930                 - End / Home keys for keyboard navigation
16932 2005-01-30  Peter Bartok  <pbartok@novell.com>
16934         * NotifyIcon.cs (CalculateIconRect): Removed debug output and added
16935           sanity check to prevent theoretical loop
16936         * XplatUIWin32.cs (SetVisible): Removed debug output
16937         * XplatUIX11.cs (SystrayChange): Added sanity check
16938         * ScrollableControl.cs (OnVisibleChanged): Now calls base method
16939         * Control.cs (OnVisibleChanged): Added workaround for ParentForm
16940           behaviour, valid until the X11 client window rewrite is done
16941         * TextBox.cs (ctor): Setting proper default foreground and background
16942           colors
16944 2005-01-30      John BouAntoun  <jba-mono@optusnet.com.au>
16946         * Theme: Added DrawDateTimePicker to interface
16947         * ThemeWin32Classic.cs: Added DrawDateTimePicker (incomplete)
16948         * DateTimePicker.cs: Created (still needs keys and painting code)
16949         * DateTimePickerFormat.cs: added
16950         * MonthCalendar.cs: fixed CreateParams for popup window mode
16951           
16952 2005-01-29  Peter Bartok  <pbartok@novell.com>
16954         * ControlPaint.cs: Fixed luminace value returned on achromatic colors,
16955           this should also the calculations for ligher/darker
16956         * Theme.cs: Fixed defaults for ScrollBar widths/heights
16958 2005-01-29  Peter Bartok  <pbartok@novell.com>
16960         * ArrangeDirection.cs: Added
16961         * ArrangeStartingPositon.cs: Added
16962         * SystemInformation.cs: Implemented
16963         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs, XplatUIWin32.cs,
16964           XplatUIX11.cs, Theme.cs: Added/implemented new static properties
16965           used by SystemInformation class
16966         * X11Strucs.cs: Added XSizeHints structure
16967         * MenuAPI.cs:
16968           - Fixed CreateParams to make sure the menu window is always visible
16969           - TrackPopupMenu: Added check to make sure we don't draw the
16970             menu offscreen
16972 2005-01-29  Peter Bartok  <pbartok@novell.com>
16974         * HandleData.cs: Added method for altering invalid area
16975         * TextBoxBase.cs: Implemented TextLength
16977 2005-01-28  Peter Bartok  <pbartok@novell.com>
16979         * XplatUIX11.cs: Improvement over last patch, not sending
16980           the WM_PAINT directly anymore, instead we scroll any pending
16981           exposed areas and let the system pick out the WM_PAINT later
16983 2005-01-28  Peter Bartok  <pbartok@novell.com>
16985         * SWF.csproj: Deleted, no longer used. Instead,
16986           Managed.Windows.Forms/SWF.csproj should be used
16987         * XplatUIX11.cs: Instead of posting the WM_PAINT, we send it
16988           directly, to avoid a potential race condition with the next
16989           scroll
16991 2005-01-28  Peter Bartok  <pbartok@novell.com>
16993         * XplatUI.cs: Made class internal
16995 2005-01-28  Jordi Mas i Hernandez <jordi@ximian.com>
16997         * CheckedListBox.cs:
16998                 - Draw focus
16999                 - Fixed Drawing
17000                 - Missing methods and events
17002 2005-01-27  Peter Bartok  <pbartok@novell.com>
17004         * Application.cs (Run): Don't use form if we don't have one
17006 2005-01-27  Peter Bartok  <pbartok@novell.com>
17008         * TextBoxBase.cs (get_Lines): Fixed index off by one error
17010 2005-01-27  Peter Bartok  <pbartok@novell.com>
17012         * GridEntry.cs: Added; Patch by Jonathan S. Chambers
17013         * GridItem.cs: Added; Patch by Jonathan S. Chambers
17014         * GridItemCollection.cs: Added; Patch by Jonathan S. Chambers
17015         * GridItemType.cs: Added; Patch by Jonathan S. Chambers
17016         * PropertyGrid.cs: Added; Patch by Jonathan S. Chambers
17017         * PropertySort.cs: Added; Patch by Jonathan S. Chambers
17018         * PropertyTabChangedEventArgs.cs: Added; Patch by Jonathan S. Chambers
17019         * PropertyTabChangedEventHandler.cs: Added; Patch by Jonathan S. Chambers
17020         * PropertyValueChangedEventArgs.cs: Added; Patch by Jonathan S. Chambers
17021         * PropertyValueChangedEventArgs.cs: Added; Patch by Jonathan S. Chambers
17022         * SelectedGridItemChangedEventArgs.cs: Added; Patch by Jonathan S. Chambers
17023         * SelectedGridItemChangedEventHandler.cs: Added; Patch by Jonathan S. Chambers
17025 2005-01-27  Jordi Mas i Hernandez <jordi@ximian.com>
17027         * Combobox.cs:
17028                 - Draw focus on Simple Combobox
17029                 - Fixes drawing issues
17030                 - fixes 71834
17032 2005-01-27  Peter Bartok  <pbartok@novell.com>
17034         * Form.cs:
17035           - Place window in default location, instead of hardcoded 0/0
17036           - Send initial LocationChanged event
17037         * Control.cs:
17038           - UpdateBounds after creation to find out where the WM placed us
17039           - Make sure that if the ParentForm changes location the Form
17040             is notified
17041         * XplatUIX11.cs: XGetGeometry will not return the coords relative
17042             to the root, but to whatever the WM placed around us.
17043             Translate to root coordinates before returning toplevel
17044             coordinates
17045         * XplatUIWin32.cs: Removed debug output
17046         * XplatUIOSX.cs, XplatUI.cs, XplatUIDriver.cs: Added toplevel
17047           flag to GetWindowPos, to allow translation of coordinates on X11
17049 2005-01-27  Jordi Mas i Hernandez <jordi@ximian.com>
17051         * ListBox.cs: connect LostFocus Event
17053 2005-01-27  Peter Bartok  <pbartok@novell.com>
17055         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIOSX.cs,
17056           XplatUIX11.cs: Extended the Systray API
17057         * Form.cs: Removed debug output
17058         * Application.cs: Fixed focus assignment, always need to call
17059           XplatUI.Activate() since Form.Activate() has rules that may
17060           prevent activation
17061         * NotifyIcon.cs: Should be complete now
17062         * ToolTip.cs: Worked around possible timer bug
17064 2005-01-27  Jackson Harper  <jackson@ximian.com>
17066         * TabControl.cs:
17067         - Only invalidate the effected tabs when the
17068         selected index changes. This reduces drawing and gets rid of some
17069         flicker.
17070         - Only refresh if the tabs need to be shifted, otherwise only
17071         invalidate the slider button.
17072         - On windows the tabs are not filled to right if the slider is
17073         visible.
17074         
17075 2005-01-27  Jackson Harper  <jackson@ximian.com>
17077         * TabControl.cs: Only refresh on mouseup if we are showing the
17078         slider. Also only invalidate the button whose state has changed.
17080 2005-01-26  Peter Bartok  <pbartok@novell.com>
17082         * XplatUI.cs, XplatUIDriver.cs: Added Systray methods
17083         * XplatUIWin32.cs: Implemented SystrayAdd(), SystrayChange()
17084           and SystrayRemove() methods
17085         * XplatUIOSX.cs: Stubbed Systray methods
17086         * XplatUIX11.cs:
17087           - Implemented SystrayAdd(), SystrayChange() and SystrayRemove()
17088             methods
17089           - Fixed broken XChangeProperty calls (marshalling messed up things)
17090         * X11Structs.cs: Added enums and structs required for Size hinting
17091         * NotifyIcon.cs: Added & implemented
17093 2005-01-26  Jackson Harper  <jackson@ximian.com>
17095         * TabControl.cs: Space vertically layed out tabs properly.
17097 2005-01-26  Peter Bartok  <pbartok@novell.com>
17099         * Form.cs (CreateClientParams): Always set the location to 0,0
17100           since we're a child window.
17102         * Control.cs (SetVisibleCore): Always explicitly setting the location
17103           of a toplevel window, apparently X11 doesn't like to move windows
17104           while they're not mapped.
17106 2005-01-26  Jackson Harper  <jackson@ximian.com>
17108         * TabControl.cs: Implement FillToRight size mode with vertically
17109         rendered tabs.
17111 2005-01-26  Jordi Mas i Hernandez <jordi@ximian.com>
17113         * ControlPaint.cs, ThemeWin32Classic.cs
17114                 - Fixes DrawFocusRectangle
17116 2005-01-26  Jordi Mas i Hernandez <jordi@ximian.com>
17118         * MenuAPI.cs:
17119                 - MenuBar tracking only starts when item is first clicked
17120                 - Fixes menu hidding for multiple subitems
17121                 - Unselect item in MenuBar when item Executed
17122                 - Fixes bug 71495
17124 2005-01-25  Jordi Mas i Hernandez <jordi@ximian.com>
17126         * ListControl.cs:
17127                 - IsInputKey for ListBox
17128         * ListBox.cs:
17129                 - Focus item
17130                 - Shift and Control item selection
17131                 - Implement SelectionMode.MultiExtended
17132                 - Fixes RightToLeft
17133         * ComboBox.cs:
17134                 - IsInputKey implemented
17135                 - Do not generate OnTextChangedEdit on internal txt changes
17136                 
17137 2005-01-23  Peter Bartok  <pbartok@novell.com>
17139         * AccessibleObject.cs: Partially implemented Select()
17140         * MonthCalendar.cs: Added missing attributes and events
17141         * Form.cs: Fixed CreateParams behaviour, now controls derived from
17142           form can properly override CreateParams.
17143         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs, XplatUIWin32.cs,
17144           XplatUIX11.cs: Dropped RefreshWindow method, not needed if
17145           Control performs Invalidate & Update
17146         * NativeWindow (CreateHandle): Added special handling for Form
17147           and Form.FormParent classes to allow overriding of From.CreateParams
17148         * Control.cs:
17149           - ControlNativeWindow: Renamed 'control' variable to more intuitive
17150             name 'owner'
17151           - ControlNativeWindow: Added Owner property
17152           - Removed usage of Refresh() on property changes, changed into
17153             Invalidate(), we need to wait until the queue is processed for
17154             updates, direct calls might cause problems if not all vars for
17155             Paint are initialized
17156           - Added call to UpdateStyles() when creating the window, to set any
17157             styles that CreateWindow might have ignored.
17158           - Added support for Form CreateParent overrides to UpdateStyles()
17159         * MessageBox.cs: Removed no longer needed FormParent override stuff,
17160           CreateParams are now properly overridable
17161         * CommonDialog.cs: Removed no longer needed FormParent override stuff,
17162           CreateParams are now properly overridable
17164 2005-01-23  Miguel de Icaza  <miguel@ximian.com>
17166         * UpDownBase.cs (ctor): Connect TextChanged in the entry to the
17167         OnTextBoxChanged.
17169         Capture LostFocus and OnTextBoxChanged.  The later introduces a
17170         recursive invocation that I have not figured out yet.
17172         Reset the timer when not using (it was accumulating).
17175         (OnTextBoxChanged): Set UserEdit to true here to track whether the
17176         user has made changes that require validation.
17178         Reset changing to avoid loops.
17180 2005-01-22  Miguel de Icaza  <miguel@ximian.com>
17182         * NumericUpDown.cs: Display value at startup.
17184         * UpDownBase.cs (Text): Do not call UpdateEditText here, only call
17185         ValidateEditText.
17187         * NumericUpDown.cs: Minimum, Maximum, Text, Value properties
17188         filled in.  Added some basic parsing of text.
17190         Still missing the OnXXX method overrides, and figuring out the
17191         events that must be emitted.
17193         * UpDownBase.cs: Handle UserEdit on the Text property.
17194         
17195 2005-01-22  Jordi Mas i Hernandez <jordi@ximian.com>
17197         * ComboBox.cs:
17198           - Fixes IntegralHeight
17199           - ToString method
17201 2005-01-21  Jackson Harper  <jackson@ximian.com>
17203         * TabControl.cs: Set the SelectedIndex property when SelectedTab
17204         is set so that the page visibility is updated and the tabs are
17205         sized correctly.
17207 2005-01-21  Jackson Harper  <jackson@ximian.com>
17209         * TabControl.cs: Use cliping rectangle for blitting. Give the
17210         theme the clipping rect so we can do clipping while
17211         drawing. Remove some debug code.
17213 2005-01-21  Jackson Harper  <jackson@ximian.com>
17215         * TabPage.cs: Add a new method so tab pages can force the tab
17216         control to recalculate the tab page sizes.
17217         * TabControl.cs: UpdateOwner needs to make the tab control recalc
17218         sizes.
17220 2005-01-20  Jackson Harper  <jackson@ximian.com>
17222         * ThemeWin32Classic.cs: Clip text to the staus bar panels rects.
17224 2005-01-20  Jackson Harper  <jackson@ximian.com>
17226         * TreeView.cs: Set the bounds for nodes properly. They were
17227         getting screwed up when checkboxes were not enabled, but images
17228         were.
17230 2005-01-20  Jordi Mas i Hernandez <jordi@ximian.com>
17232         * ListBox.cs:
17233                 - Owner draw support
17234                 - Fixes
17235                 
17236 2005-01-20  Jackson Harper  <jackson@ximian.com>
17238         * XplatUIStructs.cs: More misc keys
17239         * X11Keyboard.cs: Ignore some control keys.
17241 2005-01-20  Jackson Harper  <jackson@ximian.com>
17243         * X11Structs.cs: Add the modmaps to the keymask struct and tabify.
17244         * X11Keyboard.cs: Set the AltGr mask when we get a key event.
17246 2005-01-19  Peter Bartok  <pbartok@novell.com>
17248         * Control.cs: Un-selecting the control when it is loosing focus
17250 2005-01-19  Jackson Harper  <jackson@ximian.com>
17252         * TreeView.cs: Hook up to the text controls leave event so we can
17253         end editing when the users clicks outside the text box.
17254         
17255 2005-01-19  Jackson Harper  <jackson@ximian.com>
17257         * X11Keyboard.cs: Fix typo that was causing the wrong keycodes to
17258         get set in the conversion array.
17260 2005-01-19  Peter Bartok  <pbartok@novell.com>
17262         * Application.cs (ModalRun): Added a call to CreateControl to ensure
17263           focus is properly set
17264         * Button.cs:
17265           - Added missing attributes
17266           - removed styles, those are already set in the base class
17267         * ButtonBase.cs:
17268           - Added missing attributes
17269           - Added clip window styles
17270         * CheckBox.cs: Added missing attributes
17271         * CommonDialog.cs:
17272           - FormParentWindow.CreateParams: Added required clip styles
17273         * Form.cs (ProcessDialogKey): Fixed handling of Escape key, now
17274           also filters modifier keys
17275         * MessageBox.cs:
17276           - Added assignment of Accept and Cancel button to enable Enter
17277             and Esc keys in MessageBox dialogs
17278           - FormParentWindow.CreateParams: Added required clip styles
17279         * RadioButton.cs: Added missing attributes
17280         * TextControl.cs: No longer draws selection if control does not
17281           have focus
17282         * TextBoxBase.cs:
17283           - Now draws simple rectangle around test area to make it obvious
17284             there's a control. This is a hack until we properly support borders
17285           - A few simple fixes to support selections better, now erases selected
17286             text when typing, and resets selection when using movement keys
17288 2005-01-19  Miguel de Icaza  <miguel@ximian.com>
17290         * UpDownBase.cs: Added some new properties.
17292         * DomainUpDown.cs: Implement a lot to get my test working.
17294 2005-01-19  Geoff Norton  <gnorton@customerdna.com>
17296         * XplatUIOSX.cs: Fix a minor bug to bring the close box back
17298 2005-01-19  Geoff Norton  <gnorton@customerdna.com>
17300         * OSXStructs (WindowAttributes): Fixed csc complaints
17302 2005-01-19  Geoff Norton  <gnorton@customerdna.com>
17304         * XplayUIOSX.cs:
17305           OSXStructs.cs: Initial refactor to move enums and consts into
17306           OSXStructs and use them in the driver for greater readability.
17308 2005-01-19  Geoff Norton  <gnorton@customerdna.com>
17310         * XplatUIOSX.cs: Initial support for Standard Cursors.
17311         * OSXStructs.cs: Move our structs here; added ThemeCursor enum
17313 2005-01-19  Jordi Mas i Hernandez <jordi@ximian.com>
17315         * ComboBox.cs: ability to change style when the ctrl is already
17316         created, missing methods and events, bug fixes, signature fixes
17318 2005-01-19  Peter Bartok  <pbartok@novell.com>
17320         * Cursors.cs (ctor): Added ctor to fix signature
17322 2005-01-18  Peter Bartok  <pbartok@novell.com>
17324         * Button.cs: Implemented DoubleClick event
17325         * ButtonBase.cs:
17326           - Fixed keyboard handling to behave like MS, where the press of
17327             Spacebar is equivalent to a mousedown, and the key release is
17328             equivalent to mouseup. Now a spacebar push will give the same
17329             visual feedback like a mouse click.
17330           - Added missing attributes
17331           - Added ImeModeChanged event
17332           - Added support for generating DoubleClick event for derived classes
17333         * CheckBox.cs:
17334           - Implemented DoubleClick event
17335           - Added missing attributes
17336         * CommonDialog.cs: Added missing attribute
17337         * ContextMenu.cs: Added missing attributes
17338         * RadioButton.cs:
17339           - AutoChecked buttons do not allow to be unselected when clicked
17340             (otherwise we might end up with no selected buttons in a group)
17341           - Added missing attributes
17342           - Implemented DoubleClickEvent
17343         * ThreadExceptionDialog.cs: Enabled TextBox code
17345 2005-01-18  Peter Bartok  <pbartok@novell.com>
17347         * Form.cs: Removed debug output
17348         * Button.cs: Added support for DoubleClick method
17350 2005-01-18  Peter Bartok  <pbartok@novell.com>
17352         * Form.cs:
17353           - Added method to parent window that allows triggering size
17354             calculations when a menu is added/removed
17355           - set_Menu: Cleaned up mess from early days of Form and Control,
17356             now properly triggers a recalc when a menu is added/removed
17357           - Added case to select form itself as focused form if no child
17358             controls exist
17359           - Added PerformLayout call when showing dialog, to ensure properly
17360             placed controls
17361         * Control.cs:
17362           - Select(): Made internal so Form can access it
17363           - Focus(): Only call Xplat layer if required (avoids loop), and sets
17364             status
17365         * Application.cs (Run): Removed hack and calls PerformLayout instead
17366           to trigger calculation when Form becomes visible
17368 2005-01-18  Jordi Mas i Hernandez <jordi@ximian.com>
17370         * ComboBox.cs: fixes for ownerdraw
17372 2005-01-18  Peter Bartok  <pbartok@novell.com>
17374         * TextControl.cs:
17375           - Sentinel is no longer static, each Document gets it's own, this
17376             avoids locking or alternatively overwrite problems when more
17377             than one text control is used simultaneously.
17378           - Switched to use Hilight and HilightText brushes for text selection
17380         * TextBoxBase.cs (PaintControl): Disabled AntiAliasing to improve looks
17382 2005-01-18  Peter Bartok  <pbartok@novell.com>
17384         * Control.cs:
17385           - Hooked up the following events:
17386                 o ControlAdded
17387                 o ControlRemoved
17388                 o HandleDestroyed
17389                 o ImeModeChanged
17390                 o ParentChanged
17391                 o TabStopChanged
17392                 o Invalidated
17393                 o SystemColorsChanged
17394                 o ParentFontChanged
17395                 o Move
17396           - Removed debug output
17397           - Added a call to the current theme's ResetDefaults when a color change
17398             is detected
17399         * Form.cs: Now setting the proper ImeMode
17400         * Theme.cs: Defined a method to force recreation of cached resources
17401           and rereading of system defaults (ResetDefaults())
17402         * ThemeWin32Classic.cs: Added ResetDefaults() stub
17404 2005-01-17  Peter Bartok  <pbartok@novell.com>
17406         * Control.cs: Added missing attributes
17408 2005-01-17  Jackson Harper  <jackson@ximian.com>
17410         * TreeNode.cs: Implement editing. Add missing properties selected
17411         and visible.
17412         * TreeView.cs: Implement node editing. Also some fixes to use
17413         Invalidate (invalid area) instead of Refresh when selecting.
17415 2005-01-17  Peter Bartok  <pbartok@novell.com>
17417         * Control.cs:
17418           - Implemented InvokeGotFocus() method
17419           - Implemented InvokeLostFocus() method
17420           - Implemented InvokePaint() method
17421           - Implemented InvokePaintBackground() method
17422           - Implemented InvokeClick() method
17423           - Implemented FindForm() method
17424           - Implemented RectangleToClient() method
17425           - Implemented ClientToRectangle() method
17426           - Implemented ResetBackColor() method
17427           - Implemented ResetCursor() method
17428           - Implemented ResetFont() method
17429           - Implemented ResteForeColor() method
17430           - Implemented ResetImeMode() method
17431           - Implemented ResetLeftToRight() method
17432           - Implemented ResetText() method
17433           - Implemented Scale() methods
17434           - Implemented ScaleCore() method
17435           - Implemented Update() method
17436           - Removed unused variables
17437           - Stubbed AccessibilityNotifyClients and
17438             ControlAccessibleObject.NotifyClients() methods (dunno what to do
17439             with those yet)
17440           - Now setting proper default for RightToLeft property
17441           - Fixed bug in SetClientSizeCore that would cause windows to get
17442             really big
17443           - Now sending Click/DoubleClick events
17444           - Now selecting controls when left mouse button is clicked on
17445             selectable control
17446         * AccessibleEvents.cs: Added
17447         * XplatUI.cs, XplatUIDriver.cs: Added UpdateWindow() method
17448         * XplatUIOSX.cs: Stubbed UpdateWindow() method
17449         * XplatUIWin32.cs: Implemented UpdateWindow() method
17450         * XplatUIX11.cs: Implemented UpdateWindow() method
17451         * Form.cs: Removed stray semicolon causing CS0162 warning
17452         * ThemeWin32Classic.cs: Fixed unused variable warnings
17453         * ScrollableControl.cs: Now calls base method for ScaleCore
17454         * ButtonBase.cs: Now disabling StandardClick and StandardDoubleClick
17455           style to avoid interference with internal click handler (which is
17456           different than standard Control click handling)
17457         * RadioButton.cs:
17458           - Now unchecks all sibling radio buttons when control is
17459             selected (Fixes #68756)
17460           - Removed internal tabstop variable, using the one inherited from
17461             Control
17463 2005-01-17  Jackson Harper  <jackson@ximian.com>
17465         * NavigateEventArgs.cs: Fix base type.
17466         * LinkLabel.cs: Sig fix
17467         
17468 2005-01-17  Jackson Harper  <jackson@ximian.com>
17470         * TreeView.cs: Only invalidate the effected nodes bounds when
17471         selecting nodes.
17473 2005-01-13  Jordi Mas i Hernandez <jordi@ximian.com>
17475         * XplatUIWin32.cs: fixes Win32 marshaling
17476         * XplatUIX11.cs: fixes method signature
17478 2005-01-17  Peter Bartok  <pbartok@novell.com>
17480         * XplatUIX11.cs: Clean up resources when we no longer need them
17482 2005-01-17  Peter Bartok  <pbartok@novell.com>
17484         * XplatUI.cs, XplatUIDriver.cs: Added SetCursor(), ShowCursor(),
17485           OverrideCursor(), DefineCursor(), DefineStdCursor(), GetCursorInfo()
17486           and DestroyCursor() methods.
17487         * Cursor.cs: Partially implemented, now supports standard cursors;
17488           still contains some debug code
17489         * Cursors.cs: Implemented class
17490         * Control.cs:
17491           - WndProc(): Added handling of WM_SETCURSOR message, setting the
17492             appropriate cursor
17493           - Implemented Cursor property
17494           - Replaced break; with return; more straightforwar and possibly
17495             faster
17496           - Now properly setting the result for WM_HELP
17497         * X11Structs.cs: Added CursorFontShape enum
17498         * XplatUIStructs.cs:
17499           - Added StdCursor enum (to support DefineStdCursor() method)
17500           - Added HitTest enum (to support sending WM_SETCURSOR message)
17501         * XplatUIX11.cs:
17502           - Now sends the WM_SETCURSOR message
17503           - Implemented new cursor methods
17504         * XplatUIOSX.cs: Stubbed new cursor methods
17505         * XplatUIWin32.cs:
17506           - Implemented new cursor methods
17507           - Added GetSystemMetrics function and associated enumeration
17509 2005-01-15  Peter Bartok  <pbartok@novell.com>
17511         * Control.cs:
17512           - WndProc(): Now handles EnableNotifyMessage
17513           - SelectNextControl(): Fixed bug where if no child or sibling
17514             controls exist we looped endlessly
17516 2005-01-14  Jackson Harper  <jackson@ximian.com>
17518         * TreeView.cs: Recalculate the tab pages when a new one is added
17519         so that the proper bounding rects are created.
17521 2005-01-14  Jackson Harper  <jackson@ximian.com>
17523         * TreeView.cs: Draw a gray box instead of a grip in the lower
17524         right hand corner when there are both horizontal and vertical
17525         scroll bars.
17527 2005-01-14  Jackson Harper  <jackson@ximian.com>
17529         * Control.cs: When erasing backgrounds use FromHwnd instead of
17530         FromHdc when there is a NULL wparam. This occurs on the X driver.
17531         * XplatUIX11.cs: Set the wparam to NULL.
17533 2005-01-13  Jackson Harper  <jackson@ximian.com>
17535         * PictureBox.cs: Implement missing methods (except ToString, need
17536         to test that on windows) and events. When visibility is changed we
17537         need to redraw the image because the buffers are killed. When size
17538         is changed refresh if the sizemode needs it.
17540 2005-01-13  Peter Bartok  <pbartok@novell.com>
17542         * Control.cs (SelectNextControl): Was using wrong method to select
17543           a control
17545 2005-01-13  Jordi Mas i Hernandez <jordi@ximian.com>
17547         * ComboBox.cs: fixes dropstyle
17549 2005-01-13  Peter Bartok  <pbartok@novell.com>
17551         * Form.cs:
17552           - Implemented Select() override
17553           - Now handles WM_SETFOCUS/WM_KILLFOCUS messages
17554           - Now sets keyboard focus on startup
17555         * Control.cs (SelectNextControl): Now properly handles directed=true
17556         * TextBoxBase.cs:
17557           - WndProc: Now passes tab key on to base if AcceptTabChar=false
17558           - Added (really bad) focus rectangle (mostly for testing)
17559         * TextBox.cs: Added code to handle getting/loosing focus and invalidating
17560           to enforce redraw on focus changes
17561         * ContainerControl.cs:
17562           - Fixed detection of Shift-Tab key presses
17563           - Fixed traversal with arrow keys
17564         * XplatUIX11.cs: Implemented simulated keyboard focus; not sure if we're
17565           gonna keep this or if it's complete yet
17566         
17567 2005-01-13  Jordi Mas i Hernandez <jordi@ximian.com>
17569         * ComboBox.cs: missing properties, fixes
17571 2005-01-13  Peter Bartok  <pbartok@novell.com>
17573         * Panel.cs (ctor): Setting Selectable window style to off
17574         * Splitter.cs (ctor): Setting Selectable window style to off
17575         * GroupBox.cs (ctor): Setting Selectable window style to off
17576         * Label.cs (ctor): Setting Selectable window style to off
17578 2005-01-12  Miguel de Icaza  <miguel@ximian.com>
17580         * UpDownBase.cs (InitTimer): If the timer has been already
17581         created, enable it.
17583         Use a TextBox instead of a Label.
17585 2005-01-12  Jackson Harper  <jackson@ximian.com>
17587         * TreeView.cs: Refresh the tree after sorting the nodes. Always
17588         draw the connecting node lines (when ShowLines is true).
17589         * TreeNode.cs: The nodes index can now be updated. This is used
17590         when a node collection is sorted.
17591         * TreeNodeCollection.cs: Implement sorting. Nodes can be sorted on
17592         insert or an existing unsorted node collection can be sorted.
17593         
17594 2005-01-12  Peter Bartok  <pbartok@novell.com>
17596         * ContainerControl.cs: Implemented ProcessDialogKeys()
17598 2005-01-12  Peter Bartok  <pbartok@novell.com>
17600         * Control.cs:
17601           - Implemented SelectNextControl() method
17602           - Several focus related bug fixes
17603           - Fixed Docking calculations to match MS documentation and
17604             behaviour
17606 2005-01-12  Jordi Mas i Hernandez <jordi@ximian.com>
17608         * ContainerControl.cs, ListControl.cs, ListBox.cs: keyboard navigation and
17609         bug fixes
17611 2005-01-12  Peter Bartok  <pbartok@novell.com>
17613         * Control.cs:
17614           - Fixed broken Contains() method
17615           - Implemented GetNextControl() method. Finally. This is the pre-
17616             requisite for focus handling.
17618 2005-01-12  Peter Bartok  <pbartok@novell.com>
17620         * OSXStrucs.cs: Added
17622 2005-01-12  Peter Bartok  <pbartok@novell.com>
17624         * XplatUIWin32.cs:
17625           - Removed PeekMessageFlags
17626           - Implemented SetWindowStyle() method
17627         * XplatUIStructs.cs: Added PeekMessageFlags
17628         * X11Structs: Added missing border_width field to XWindowChanges struct
17629         * XplatUIX11.cs:
17630           - PeekMessage: Now throws exception if flags which are not yet
17631             supported are passed
17632           - Implemented SetWindowStyle() method
17633           - Fixed SetZOrder to handle AfterHwnd properly
17634         * XplatUI.cs: Added SetWindowStyle() method
17635         * XplatUIDriver.cs: Added SetWindowStyle() abstract
17636         * Control.cs:
17637           - Implemented UpdateStyles() method
17638           - Implemented UpdateZOrder() method
17639         * XplatUIOSX.cs: Added SetWindowStyle() stub
17641 2005-01-12  Geoff Norton  <gnorton@customerdna.com>
17643         * XplatUIOSX.cs: Fix SetZOrder (this needs more testing with a 3
17644         button mouse).
17647 2005-01-11  Jackson Harper  <jackson@ximian.com>
17649         * TreeView.cs: Still need to draw lines to siblings even if out of
17650         the current node is out of the clip.
17652 2005-01-11  Jackson Harper  <jackson@ximian.com>
17654         * TreeView.cs: When setting the hbar/vbar/grip position use
17655         SetBounds so that perform layout is only called once. Also suspend
17656         and resume layout so layout is only done once for all controls.
17657         - Removed some debug fluff
17658         * SizeGrip.cs: Call base implmentation in overriding methods.
17659         - When visibility is changed the drawing buffers are killed so we
17660         need to redraw.
17662 2005-01-11  Jackson Harper  <jackson@ximian.com>
17664         * TreeView.cs: Calculate the open node count while drawing. This
17665         saves us an entire tree traversal for every paint operation. Use
17666         a member var for the open node count so less vars are passed around.
17668 2005-01-11  John BouAntoun  <jba-mono@optusnet.com.au>
17670         * MonthCalendar.cs:
17671         - fixed selection to use mousemove, not mouse polling on timer
17672         * ThemeWin32Classic.cs
17673         - removed redundant unused variable "no_more_content"
17674         
17675 2005-01-11  Peter Bartok  <pbartok@novell.com>
17677         * XplatUIX11.cs (DoEvents): Needs to return when no more events
17678           are pending, so it now calls PeekMessage instead of GetMessage;
17679           implemented a incomplete version of PeekMessage
17680         
17681 2005-01-11  Peter Bartok  <pbartok@novell.com>
17683         * XplatUIWin32.cs: Switched P/Invokes to unicode charset to avoid
17684           I18n issues
17685         * TextBoxBase.cs: Added sending of TextChanged event
17687 2005-01-10  Jackson Harper  <jackson@ximian.com>
17689         * TreeView.cs: Try not to draw outside the clipping rectangle on
17690         each node element.
17692 2005-01-10  Jordi Mas i Hernandez <jordi@ximian.com>
17694         * ComboBox.cs: keyboard navigation, item navigation, bug fixes
17696 2005-01-10  Jackson Harper  <jackson@ximian.com>
17698         * TreeView.cs:
17699         - Implement fast scrolling. Now only the newly
17700         exposed nodes are drawn and the old image is moved using the
17701         XplatUI::ScrollWindow method.
17702         - Factor in height of nodes when calculating whether or not the
17703         node is in the clipping rect.
17705 2005-01-10  Jackson Harper  <jackson@ximian.com>
17707         * TreeNodeCollection.cs: Refresh the tree when a new node is added.
17709 2005-01-10  Peter Bartok  <pbartok@novell.com>
17711         * Application.cs: Added temporary hack to resolve all our resize
17712           required issues on startup. This will get fixed properly at
17713           some point in the future
17715 2005-01-10  Jackson Harper  <jackson@ximian.com>
17717         * SizeGrip.cs: New internal class that is used as a sizing
17718         grip control...hence the name.
17720 2005-01-10  Peter Bartok  <pbartok@novell.com>
17722         * Control.cs: Implemented proper TabIndex handling, now assigning
17723           a tabindex when a control is added to a container
17724         * GroupBox.cs (ctor): Now sets the Container style bit, required
17725           for Control.GetNextControl()
17727 2005-01-09  Jackson Harper  <jackson@ximian.com>
17729         * TextBoxBase.cs: Clear window when scrolling (fixes build).
17731 2005-01-09  Peter Bartok <pbartok@novell.com>
17733         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIOSX.cs,
17734           XplatUIX11.cs: Added ability to control ScrollWindow expose and
17735           an overload for ScrollWindow to allow only scrolling a rectangle
17737 2005-01-09  Peter Bartok <pbartok@novell.com>
17739         * Form.cs:
17740           - Implemented SetDesktopBounds method
17741           - Implemented SetDesktopLocation method
17743 2005-01-08  Jackson Harper  <jackson@ximian.com>
17745         * TreeView.cs: Only set the vbar's Maximum and LargeChange when
17746         the node count has changed, this removes to VScroll::Refresh calls
17747         when drawing.
17749 2005-01-08  Geoff Norton  <gnorton@customerdna.com>
17751         * XplatUIOSX.cs: Fix GetWindowState & SetWindowState
17753 2005-01-07  Jackson Harper  <jackson@ximian.com>
17755         * TreeNode.cs: Just update the single node when it is
17756         checked. Don't refresh after toggling, the Expand/Collapse already
17757         handles this.
17758         * TreeView.cs: Respect clipping a little more when drawing. Try
17759         not to redraw things that don't need to be redrawn. Just hide the
17760         scrollbars when they are no longer needed instead of removing
17761         them, so they don't have to be created again and again.
17762         
17763 2005-01-07  Geoff Norton  <gnorton@customerdna.com>
17765         * XplatUIOSX.cs (SetCaretPos):  We need to translate the view
17766         coordinates to window space to place the caret properly, FIXED.
17767         Implement GetWindowState & SetWindowState
17769 2005-01-06  Peter Bartok <pbartok@novell.com>
17771         * Form.cs:
17772           - Implemented ClientSize property
17773           - Implemented DesktopBounds property
17774           - Implemented DesktopLocation property
17775           - Implemented IsRestrictedWindow property
17776           - Implemented Size property
17777           - Implemented TopLevel property
17778           - Implemented FormWindowState property
17779         * Control.cs:
17780           - Implemented GetTopLevel() method
17781           - Implemented SetTopLevel() method
17782         * X11Structs.cs (Atom):
17783           - Added AnyPropertyType definition
17784           - Added MapState definiton and updated XWindowAttribute struct
17785         * XplatUI.cs: Added GetWindowState() and SetWindowState() methods
17786         * XplatUIDriver.cs: Added GetWindowState() and SetWindowState() methods
17787         * XplatUIOSX.cs: Stubbed GetWindowState() and SetWindowState() methods
17788         * XplatUIWin32.cs:
17789           - Implemented GetWindowState() and SetWindowState() methods
17790           - Fixed Win32GetWindowLong return type
17791         * XplatUIX11.cs:
17792           - Introduced central function for sending NET_WM messages
17793           - Implemented GetWindowState() and SetWindowState() methods
17794         * TextBoxBase.cs (set_Lines):
17795           - Now uses Foreground color for text added via Text property (Duh!)
17796           - Added code to remember programmatically requested size (fixes
17797             behaviour when Multiline is set after Size)
17798           - Added AutoSize logic
17800 2005-01-06  Jackson Harper  <jackson@ximian.com>
17802         * TreeView.cs: Draw the image after the checkbox if checkboxes are enabled.
17804 2005-01-06  Jackson Harper  <jackson@ximian.com>
17806         * ListBox.cs: Don't allow the horizontal scrollbars maximum to be
17807         set to less then 0.
17809 2005-01-06  Jackson Harper  <jackson@ximian.com>
17811         * ScrollableControl.cs: Lazy init the scrollbars.
17812         
17813 2005-01-06  Jackson Harper  <jackson@ximian.com>
17815         * Theme.cs: Speed up getting pens and solid brushes, by using
17816         their ARGB as a hash instead of tostring and not calling Contains.
17818 2005-01-06  Peter Bartok <pbartok@novell.com>
17820         * Form.cs:
17821           - Implemented OnActivated and OnDeactivate event trigger
17822           - Implemented Activate() method
17823           - Fixed ShowDialog() to activate the form that was active before
17824             the dialog was shown
17825         * XplatUIX11.cs:
17826           - Added global active_window var that tracks the currently active
17827             X11 window
17828           - Now always grabs Property changes from the root window to always
17829             catch changes on the active window property
17830           - Added code to PropertyNotify handler to send Active/Inactive
17831             messages when state changes. This puts X11 and Win32 en par on
17832             WM_ACTIVATE notifications (except for double notifications when
17833             the user clicks away from our modal window to another one of our
17834             windows)
17836 2005-01-05  Jackson Harper  <jackson@ximian.com>
17838         * ImageList.cs: Implment ctor
17840 2005-01-05  Geoff Norton  <gnorton@customerdna.com>
17842         * XplatUIOSX.cs: Implement Activate/SetTopmost
17844 2005-01-05  Geoff Norton  <gnorton@customerdna.com>
17846         * XplatUIOSX.cs: Implement SetZOrder, minor cleanup
17848 2005-01-05  Geoff Norton  <gnorton@customerdna.com>
17850         * XplatUIOSX.cs: Implement GetActive/SetFocus.
17852 2005-01-05  Peter Bartok <pbartok@novell.com>
17854         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIX11.cs,
17855           XplatUIOSX.cs: Added GetActive method to return the currently
17856           active window for the application (or null, if none is active)
17857         * Form.cs:
17858           - Implemented ActiveForm
17859           - Commented out owner assignment for modal dialogs (causes problems
17860             on Win32, since the owner will be disabled)
17861           - Reworked some Active/Focus handling (still incomplete)
17862         * CommonDialog.cs: Commented out owner assignment for modal dialogs
17863           (causes problems on Win32, since the owner will be disabled)
17864         * IWin32Window: Added ComVisible attribute
17866 2005-01-05  Peter Bartok <pbartok@novell.com>
17868         * ToolTip.cs (WndProc): Enable setting focus now that we have the
17869           required XplatUI functions.
17871 2005-01-05  Peter Bartok <pbartok@novell.com>
17873         * XplatUI.cs, XplatUIOSX.cs, XplatUIWin32.cs, XplatUIDriver.cs,
17874           XplatUIX11.cs, X11Structs.cs, Form.cs: Framework code required
17875           to implement focus and activation handling; still incomplete and
17876           with debug output
17878 2005-01-04  Peter Bartok <pbartok@novell.com>
17880         * TextBoxBase.cs: Changed access level for Document property to
17881           match switch to internal for TextControl
17883 2005-01-04  Peter Bartok <pbartok@novell.com>
17885         * AccessibleObject: Added ComVisible attribute
17887 2005-01-04  Jackson Harper  <jackson@ximian.com>
17889         * X11Keyboard.cs: Remove unneeded var.
17891 2005-01-04  Jackson Harper  <jackson@ximian.com>
17893         * XplatUIX11.cs (DoEvents): Implement, Just cast aside all events
17894         but PAINT.
17895         * XplatUIX11.cs (GetMessage): Call Exit when we get an unknown
17896         ClientMessage. This makes apps exit cleanly (more often).
17897         
17898 2005-01-04  Jackson Harper  <jackson@ximian.com>
17900         * TreeNode.cs: Patches by Kazuki Oikawa (kazuki@panicode.com) for
17901         handling focus, return correct colors and fonts,
17902         * TreeView.cs: Patches by Kazuki Oikawa (kazuki@panicode.com) to
17903         handle selection, horizontal scrolling, and mouse interaction.
17905 2005-01-04  Peter Bartok <pbartok@novell.com>
17907         * ICommandExecutor.cs: Added
17908         * IDataGridColumnStyleEditingNotificationService.cs: Added
17909         * IFeatureSupport.cs: Added
17910         * IFileReaderService.cs: Added
17911         * IDataObject.cs: Added ComVisible attribute
17912         * AmbientProperties.cs: Added
17913         * BaseCollection.cs: Added missing attributes
17914         * ListBindingConverter.cs: Added (stubbed, required for certain attributes)
17915         * BaseCollection.cs: Added missing attributes
17916         * Binding.cs: Added TypeConverter attribute
17917         * BindingContext.cs: Added DefaultEvent attribute
17918         * BindingsCollection.cs: Added DefaultEvent attribute
17919         * Button.cs: Added DefaultValue attribute
17920         * DragEventArgs.cs: Added ComVisible attribute
17921         * GiveFeedbackEventArgs.cs: Added ComVisible attribute
17922         * KeyEventArgs.cs: Added ComVisible attribute
17923         * KeyPressEventArgs.cs: Added ComVisible attribute
17924         * MouseEventArgs.cs: Added ComVisible attribute
17925         * NavigateEventArgs.cs: Added
17926         * NavigateEventHandler.cs: Added
17927         * FeatureSupport.cs: Added
17928         * OSFeature.cs: Added
17929         * Theme.cs: Added abstract Version property to support OSFeature
17930         * ThemeWin32Classic.cs: Added Version property to
17931           support OSFeature.Themes
17932         * ProgressBar.cs: Removed OnPaintBackground override, not required since
17933           the proper styles to avoid background drawing are set, also doesn't
17934           match MS signature
17935         * QueryAccessibilityHelpEventArgs.cs: Added ComVisible attribute
17936         * QueryContinueDragEventArgs.cs: Added ComVisible attribute
17937         * ScrollEventArgs.cs: Added ComVisible attribute
17938         * SplitterEventArgs.cs: Added ComVisible attribute
17939         * AccessibleSelection.cs: Added Flags attribute
17940         * Appearance.cs: Added ComVisible attribute
17941         * Border3DSide.cs: Added ComVisible attribute
17942         * Border3DStyle.cs: Added ComVisible attribute
17943         * BorderStyle.cs: Added ComVisible attribute
17944         * DragAction.cs: Added ComVisible attribute
17945         * ErrorBlinkStyle.cs: Added
17946         * ScrollEventType.cs: Added ComVisible attribute
17947         * AnchorStyles.cs: Added Editor attribute
17948         * DockStyle.cs: Added Editor attribute
17949         * HorizontalAlignment.cs: Added ComVisible attribute
17950         * HelpEventArgs.cs: Added ComVisible attribute
17951         * PaintEventArgs.cs: Added IDisposable
17953 2005-01-04  Peter Bartok <pbartok@novell.com>
17955         * TextControl.cs: Switched Line, LineTag and Document classes to
17956           internal
17958 2005-01-04  Jordi Mas i Hernandez <jordi@ximian.com>
17960         * ComboBox.cs, ThemeWin32Classic.cs, ListBox.cs, Theme.cs:
17961         Simple mode, fixes, IntegralHeight, etc.
17963 2005-01-04  Peter Bartok <pbartok@novell.com>
17965         * TextBoxBase.cs: Using proper font variable now
17967 2005-01-04  Peter Bartok <pbartok@novell.com>
17969         * Form.cs (ShowDialog): Set parent to owner, if provided
17970         * GroupBox.cs: Removed unused vars
17971         * TextControl.cs:
17972           - Added GetHashCode() for Document and LineTag classes
17973           - Removed unused variables
17974           - Added CharIndexToLineTag() and LineTagToCharIndex() methods
17975             to allow translation between continuous char position and line/pos
17976         * CheckBox.cs: Removed vars that are provided by base class
17977         * RadioButton.cs: Removed vars that are provided by base class, added
17978           new keyword where required
17979         * LinkLabel.cs: Added new keyword where required
17980         * Control.cs (WndProc): Removed unused variable
17981         * TextBoxBase.cs:
17982           - Finished SelectionLength property
17983           - Implemented SelectionStart property
17984           - Implemented Text property
17985           - Removed unused vars
17986         * MessageBox.cs: Added new keyword where required
17987         * TextBox.cs: Removed Text property code (now in TextBoxBase), fixed
17988           WndProc signature
17989         * MenuAPI.cs: Added new keyword where required
17990         * ButtonBase.cs: Removed vars that are provided by base class, added
17991           new keyword where required
17992         * ThemeWin32Classic.cs (DrawMonthCalendarDate): Now cast Math.Floor
17993           argument to double, to allow compiling with csc 2.0 (Atsushi ran
17994           into this)
17995         * Application.cs (Run): Now triggers the ThreadExit event
17996         * CommonDialog.cs: Added new keyword where required; now properly sets
17997           parent (owner) for dialog
17998         * XplatUIX11.cs: Commented out unused vars
17999         * StatusBar.cs: Fixed signature for Text property
18000         * TabPage.cs: Undid Jordi's removal of unused var, now using the var
18002 2005-01-04  Jordi Mas i Hernandez <jordi@ximian.com>
18004         * ComboBox.cs, TabPage.cs, MenuAPI.cs, ThemeWin32Classic.cs,
18005         TrackBar.cs, MonthCalendar.cs: remove unused vars
18007 2005-01-03  Jackson Harper  <jackson@ximian.com>
18009         * ThemeWin32Classic.cs:
18010         * X11Keyboard.cs: Remove unused vars.
18012 2005-01-03  Peter Bartok  <pbartok@novell.com>
18014         * TextBox.cs:
18015           - set_Text: Tied into TextControl
18016           - set_TextAlignment: Tied into TextControl
18017         * TextControl.cs:
18018           - Added alignment properties and implemented alignment handling
18019             and drawing (still has a bug, not generating proper expose events)
18020           - Added new Line() constructor to allow passing the line alignment
18021           - Fixed selection setting, properly handling end<start now
18022           - Added aligment considerations to RecalculateDocument()
18023         * TextBoxBase.cs:
18024           - Now properly enforces control height for single line controls
18025           - Added support for CharacterCasing
18026           - Added IsInputKey override
18027           - Fixed Keys.Enter logic
18028           - Added SetBoundsCore override
18029           - Fixed mouse selection handling
18031 2005-01-03  Jackson Harper  <jackson@ximian.com>
18033         * TreeView.cs:
18034           - Collapse and uncheck all nodes when CheckBoxes is disabled.
18035           - Checkboxes are always aligned to the bottom of the node,
18036           regardless of item height.
18037           - Use the node bounds to draw the text so we can center it when
18038           the item height is greater then the font height.
18039           - Node::Bounds are only the text part of the node.
18040         * TreeNode.cs: New method to combine collapsing and unchecking all
18041           nodes recursively.
18043 2005-01-02  Jackson Harper  <jackson@ximian.com>
18045         * TreeView.cs: Draw checkmarks, handle detecting check mark clicks
18046         * TreeNode.cs: Add a bounding box for the checkbox, refresh the
18047         tree when a check is changed. TODO: Only refresh the checked node.
18049 2004-12-30  Jackson Harper  <jackson@ximian.com>
18051         * TreeView.cs: Draw checkbox boxes when checkboxes are enabled.
18052         * TreeNode.cs: When collapsing make sure to never collapse the
18053         root node.
18055 2004-12-29  Jackson Harper  <jackson@ximian.com>
18057         * TreeView.cs: Align lines to the bottom of plus minus boxes properly.
18058         
18059 2004-12-28  Zoltan Varga  <vargaz@freemail.hu>
18061         * X11Structs.cs X11Keyboard.cs XplatUIX11.cs: Fix 64 bit issues.
18063 2004-12-28  Peter Bartok  <pbartok@novell.com>
18065         * MessageBox.cs (get_CreateParams): Don't use owner var if it's
18066           not yet assigned
18068 2004-12-28  Peter Bartok  <pbartok@novell.com>
18070         * Control.cs (WndProc): Added WM_HELP handler, now generates
18071           HelpRequested event
18072         * Form.cs: Added HelpButton property and required support code
18073         * XplatUIStructs.cs: Added HELPINFO structure for WM_HELP handling
18075 2004-12-28  Peter Bartok  <pbartok@novell.com>
18077         * CommonDialog.cs:
18078           - Made DialogForm.owner variable internal
18079           - Added check to ensure owner form is set before setting
18080             owner properties in CreateParams
18082 2004-12-28  Geoff Norton  <gnorton@customerdna.com>
18084         * XplatUIOSX.cs: Implement mouse hovering.  Fix QDPoint struct to avoid
18085           swizzling.  Implement ClientToScreen and ScreenToClient.  Implement
18086           GetCursorPos.  Fix major visibility issues.  Rework the windowing
18087           system to support borderless/titleless windows (implements menus).
18088           Fix GetWindowPos.  Implement initial background color support for
18089           views.
18091 2004-12-28  Peter Bartok  <pbartok@novell.com>
18093         * Form.cs (get_CreateParams): Make sure we have an owner before using
18094           the owner variable. Implement proper default if no owner exists
18096 2004-12-28  Peter Bartok  <pbartok@novell.com>
18098         * In preparation for making Managed.Windows.Forms the default build target
18099           for System.Windows.Forms, the following stubbed files were added.
18100           Dialogs are currently being implemented by contributors and are only
18101           short-term place holders.
18102         * ColorDialog.cs: Initial check-in (minmal stub)
18103         * DataGrid.cs: Initial check-in (minimal stub)
18104         * DataGridLineStyle.cs: Initial check-in (minimal stub)
18105         * DataGridParentRowsLabelStyle.cs: Initial check-in (minimal stub)
18106         * DataGridTableStyle.cs: Initial check-in (minimal stub)
18107         * FontDialog.cs: Initial check-in (minimal stub)
18108         * FileDialog.cs: Initial check-in (minimal stub)
18109         * GridColumnStylesCollection.cs: Initial check-in (minimal stub)
18110         * GridTableStylesCollection.cs: Initial check-in (minimal stub)
18111         * OpenFileDialog: Initial check-in (minimal stub)
18112         * IComponentEditorPageSite.cs: Initial check-in
18113         * Splitter.cs: Initial check-in (for Jackson)
18114         * SplitterEventArgs.cs: Initial check-in (for Jackson)
18115         * SplitterEventHandler.cs: Initial check-in (for Jackson)
18116         * TextBox.cs: Initial check-in; still needs some wiring to
18117           TextControl backend
18118         * Form.cs: Implemented ControlBox property
18119         * MessageBox.cs: Added proper coding for Minimize/Maximize/ControlBox
18120         * CommonDialog.cs: Added proper coding for Minimize/Maximize/ControlBox
18121         * TextControl.cs: Added selection functionality; added todo header
18122         * TextBoxBase.cs:
18123           - Implemented Lines property
18124           - Implemented TextHeight property
18125           - Implemented SelectedText property
18126           - Implemented SelectionLength property
18127           - Implemented SelectAll method
18128           - Implemented ToString method
18129           - Removed and cleaned up some debug code
18130           - Implemented (still buggy) mouse text selection
18132 2004-12-27  Jordi Mas i Hernandez <jordi@ximian.com>
18134         * ComboBox.cs: Complete DropDownList implementation, fixes.
18136 2004-12-26  Jordi Mas i Hernandez <jordi@ximian.com>
18138         * ThemeWin32Classic, Theme.cs: ComboBox drawing methods
18139         * ComboBoxStyle.cs: ComboBoxStyle enum
18140         * ComboBox.cs: Initial work on ComboBox control
18142 2004-12-21  Peter Bartok  <pbartok@novell.com>
18144         * Control.cs (ctor, CreateParams): Moved setting of is_visible
18145           forward so that anything that creates a window gets the default,
18146           also no longer uses Visible property in CreateParams to avoid
18147           walking up the parent chain and possibly get the wrong visible
18148           status. Fixed IsVisible to no longer walk up to the parent.
18150 2004-12-21  Peter Bartok  <pbartok@novell.com>
18152         * Form.cs (ShowDialog): Unset modality for the proper window
18154 2004-12-20  Peter Bartok  <pbartok@novell.com>
18156         * CommonDialog.cs: Initial check-in
18158 2004-12-20  Peter Bartok  <pbartok@novell.com>
18160         * Control.cs (Visible): Now uses the parent window instead of the
18161           client area window for the property
18163         * Form.cs
18164           - ShowDialog(): Now uses the proper window for modality
18165           - The default visibility state for the form parent is now false. This
18166             will prevent the user from seeing all the changes to the form and
18167             its controls before the application hits Application.Run()
18168           - Removed some stale commented out code
18170         * NativeWindow.cs:
18171           - Added FindWindow() method to have a method to check for existence
18172             of a window handle
18173           - Added ability to override default exception handling (for example
18174             when debugging with VS.Net; to do this the ExternalExceptionHandler
18175             define must be set
18176           - Removed some useless debug output
18178         * XplatUIX11.cs:
18179           - Removed r37929 (SetModal patch from Ashwin Bharambe), was
18180             not working as expected
18181           - Implemented modal_window stack and checking for _WM_ACTIVE_WINDOW
18182             property to allow switching back to the modal window if focus is
18183             given to another one of our windows (Application Modal)
18184           - Now only sets override_redirect if we create a window
18185             without WS_CAPTION
18186           - Moved EventMask selection before mapping of newly created window
18187             so we can catch the map event as well
18188           - Implemented Activate() method via the _WM_ACTIVE_WINDOW property
18189           - Added various Atom related DllImports
18190           - Implemented Exit() method
18191           - .ctor() : No longer shows window if WS_VISIBLE is not defined
18192             in the CreateParams
18194         * MessageBox.cs: Now properly deals with the FormParent window by
18195           providing an override the FormParent CreateParams property to
18196           set as POPUP instead of OVERLAPPED window.
18198 2004-12-19  Geoff Norton  <gnorton@customerdna.com>
18200         * XplatUIOSX.cs: Implement DestroyWindow.  Implement ScrollWindow
18201         Minor code cleanup.
18203 2004-12-19  Geoff Norton  <gnorton@customerdna.com>
18204         
18205         * XplatUIOSX.cs (SetModal): Implement this method on OSX.
18207 2004-12-18  Peter Bartok  <pbartok@novell.com>
18209         * XplatUIX11.cs (SetModal): Applied patch from Ashwin Bharambe,
18210           implementing SetModal() method
18212 2004-12-18  Peter Bartok  <pbartok@novell.com>
18214         * X11Structs.cs (XGCValues): Fixed type of function element
18215         * XplatUI.cs: Added ScrollWindow() method
18216         * XplatUIDriver.cs: Added ScrollWindow() abstract
18217         * XplatUIWin32.cs: Implemented ScrollWindow() method
18218         * XplatUIX11.cs: Implemented ScrollWindow() method
18219         * XplatUIOSX.cs: Stubbed out ScrollWindow() method
18221 2004-12-17  Geoff Norton  <gnorton@customerdna.com>
18223         * XplatUIOSX.cs:  Fix cursor to use an Invert instead of drawing it
18224         Some more keyboard support (INCOMPLETE)
18226 2004-12-17  Peter Bartok  <pbartok@novell.com>
18228         * TextControl.cs:
18229         - Added color attribute to line tags.
18230         - Added color argument to all functions dealing with tags
18231         - Added color argument support to various functions
18232         - Fixed miss-calculation of baseline/shift in certain circumstances
18234         * TextBoxBase.cs: Added new color option to test code
18236 2004-12-17  Jackson Harper  <jackson@ximian.com>
18238         * TreeNode.cs:
18239         * MonthCalendar.cs: Signature fixes
18241 2004-12-17  Geoff Norton  <gnorton@customerdna.com>
18243         * XplatUIOSX.cs: Find the missing caret; caret was dissappearing after a
18244         keyboard event moved it.  Create a new graphics context for each paint resolves this
18246 2004-12-17  Geoff Norton  <gnorton@customerdna.com>
18248         * XplatUIOSX.cs: Fix hard cpu eat on loop with existing timers,
18249         Make caret exist and go blink blink.  Initial keyboard support.
18250         Fix exception handler, Add Invalidate support.  Change way RefreshWindow
18251         works.
18253 2004-12-17  Jackson Harper  <jackson@ximian.com>
18255         * XplatUIStructs.cs: Updated set of virtual keycodes.
18256         * KeyboardLayouts.cs: SCROLL_LOCK is now SCROLL
18258 2004-12-17  Jackson Harper  <jackson@ximian.com>
18260         * XplatUIX11.cs: Prune old keyboard code.
18262 2004-12-17  Jackson Harper  <jackson@ximian.com>
18264         * XplatUIX11.cs: When generating mouse wparams get the modifier
18265         keys from the ModifierKeys property.
18267 2004-12-17  Jackson Harper  <jackson@ximian.com>
18269         * X11Keyboard.cs: Send up/down input when generating
18270         messages. Remove some unused vars.
18272 2004-12-17  Jackson Harper  <jackson@ximian.com>
18274         * TabControl.cs:
18275         * TreeView.cs: get rid of warnings.
18277 2004-12-17  Jackson Harper  <jackson@ximian.com>
18279         * XplatUIStructs.cs: Fix a couple wrong virtual keycodes.
18281 2004-12-17  Jordi Mas i Hernandez <jordi@ximian.com>
18283         * ListBox.cs: bug fixes, changes for CheckedListBox.cs
18284           CheckedListBox.cs: Implementation
18286 2004-12-17  Peter Bartok  <pbartok@novell.com>
18288         * TextControl.cs (RecalculateLine): Fixed baseline aligning calcs
18290 2004-12-16  Peter Bartok  <pbartok@novell.com>
18292         * TextControl.cs:
18293           - InsertCharAtCaret(): Fixed start pos fixup
18294           - CaretLine_get: No longer derives the line from the tag, the tag
18295             could be stale if lines in the document have been added or deleted
18296           - RebalanceAfterDelete(): Fixed bug in balancing code
18297           - RebalanceAfterAdd(): Fixed really stupid bug in balancing code
18298           - Line.Streamline(): Now can also elminate leading empty tags
18299           - DumpTree(): Added a few more tests and prevented exception on
18300             uninitialized data
18301           - Added Debug section for Combining lines
18302           - Delete(): Now copies all remaining properties of a line
18303           
18304         * TextBoxBase.cs:
18305           - Left mousebutton now sets the caret (and middle button still acts
18306             as formatting tester, which must go away soon)
18307           - Added Debug section for Deleting/Combining lines
18308           - Fixed calculations for UpdateView after Combining lines
18310 2004-12-16  Peter Bartok  <pbartok@novell.com>
18312         * TextControl.cs: Now properly aligns text on a baseline, using the
18313           new XplatUI.GetFontMetrics() method. Simplified several calculations
18314         * TextBoxBase.cs: Moved #endif to allow compiling if Debug is not
18315           defined
18317 2004-12-16  Peter Bartok  <pbartok@novell.com>
18319         * XplatUI.cs: Added GetFontMetrics() method
18320         * XplatUIDriver.cs: Added GetFontMetrics() abstract
18321         * XplatUIX11.cs: Implemented GetFontMetrics() method, now calls
18322           into libgdiplus, our private GetFontMetrics function
18323         * XplatUIOSX.cs: Implemented GetFontMetrics() method, same as X11
18324         * XplatUIWin32.cs: Implemented GetFontMetrics() method
18326 2004-12-16  Jackson Harper  <jackson@ximain.com>
18328         * XplatUIStruct.cs: Add enum for dead keys
18329         * X11Keyboard.cs: Map and unmap dead keys.
18331 2004-12-16  Jackson Harper  <jackson@ximian.com>
18333         * X11Keyboard.cs: Detect and use the num lock mask.
18335 2004-12-16  Peter Bartok  <pbartok@novell.com>
18337         * Control.cs (CreateGraphics): Added check to make sure the
18338           handle of the window exists before calling Graphics.FromHwnd()
18340 2004-12-16  Peter Bartok  <pbartok@novell.com>
18342         * TextBoxBase.cs: Initial check-in. DO NOT TRY TO USE THIS YET. It
18343           contains a lot of code that's not supposed to be there for the
18344           real thing, but required for developing/testing the textbox
18345           backend.
18347 2004-12-16  Peter Bartok  <pbartok@novell.com>
18349         * TextControl.cs:
18350         - Fixed Streamline method
18351         - Added FindTag method to Line
18352         - Added DumpTree method for debugging
18353         - Added DecrementLines() method for deleting lines
18354         - Fixed UpdateView to update the cursor to end-of-line on single-line
18355           updates
18356         - Added PositionCaret() method
18357         - Fixed MoveCaret(LineDown) to move into the last line, too
18358         - Added InsertChar overload
18359         - Fixed InsertChar tag offset calculations
18360         - Added DeleteChar() method
18361         - Added Combine() method for folding lines
18362         - Fixed Delete() method, no longer allocates wasted Line object and
18363           now copies all properties when swapping nodes
18364         - Delete() method now updates document line counter
18366 2004-12-15  Jackson Harper  <jackson@ximian.com>
18368         * XplatUIX11.cs: Get the modifier keys from the keyboard driver
18369         * X11Keyboard.cs: Expose the currently selected modifier keys
18370         through a property.
18372 2004-12-15  Peter Bartok  <pbartok@novell.com>
18374         * TextControl.cs: Initial check-in. Still incomplete
18376 2004-12-15  Jackson Harper  <jackson@ximian.com>
18378         * TreeNode.cs:
18379         * TreeView.cs: Fix build on csc (second time today ;-))
18381 2004-12-15  Jackson Harper  <jackson@ximian.com>
18383         * TreeView.cs: Store the treenodes plus/minus box bounds when it
18384         is calculated and use this for click testing.
18385         * TreeNode.cs: Add functionality to store the nodes plus minus box bounds.
18387 2004-12-15  Jackson Harper  <jackson@ximian.com>
18389         * TreeView.cs: Pass the nodes image index to the image list when
18390         drawing that image.
18392 2004-12-15  Jackson Harper  <jackson@ximian.com>
18394         * X11Keyboard.cs: Set messages hwnd.
18395         * XplatUIX11.cs: Pass proper hwnd wot keyboard driver. Set hwnd on
18396         post_message calls.
18398 2004-12-15  Jackson Harper  <jackson@ximian.com>
18400         * X11Keyboard.cs: Fix to compile with csc.
18401         
18402 2004-12-15  Jackson Harper  <jackson@ximian.com>
18404         * X11Structs.cs: Add key mask values
18405         * XplatUIStruct.cs: Add keyboard event flags, and keyboard definitions
18406         * X11Keyboard.cs: New file - Extrapolates and interpolates key
18407         down/up foo into WM_CHAR foo
18408         * KeyboardLayouts.cs: Common keyboard layouts
18409         * XplatUIX11.cs: Add the keyboard driver. Add functionality to
18410         post messages into the main queue.
18412 2004-12-13  Jordi Mas i Hernandez <jordi@ximian.com>
18414         * Button.cs: implement ProcessMnemonic
18415         * ThemeWin32Classic.cs: use ResPool (caching) instead of creating
18416           brushes everytime
18417         * Control.cs: fixes IsMnemonic (support for &&, case insensitive, etc)
18418         * ButtonBase.cs: Show HotkeyPrefix (not the &)
18420 2004-12-12  John BouAntoun  <jba-mon@optusnet.com.au>
18421         
18422         * MonthCalendar.cs: Implemented click-hold for next/previous month
18423           and date selection
18424           
18425 2004-12-11  Peter Bartok  <pbartok@novell.com>
18427         * X11Structs.cs:
18428           - Added XKeyboardState (moved from XplatUIX11.cs)
18429           - Added XCreateGC related enums and structures
18430           - Added GXFunction for XSetFunction
18432         * XplatUIStructs.cs: Added missing WS_EX_xxx definitions
18434         * XplatUI.cs: Added CreateCaret(), DestroyCaret(), SetCaretPos() and
18435           CaretVisible() calls
18437         * ToolTip.cs: Added code to prevent stealing focus from app windows
18439         * XplatUIDriver.cs: Added abstracts for caret functions (CreateCaret,
18440           DestroyCaret, SetCaretPos and CaretVisible)
18442         * XplatUIX11.cs:
18443           - Added implementation for caret functions
18444           - Moved hover variables into a struct, to make it a bit easier
18445             on the eyes and to debug
18446           - Removed XKeyboardState (moved to XplatUIX11.cs)
18447           - Moved Keyboard properties into the properties region
18449         * Control.cs (get_Region): Control.CreateGraphics is the appropriate
18450           call to get a graphics context for our control
18452         * XplatUIOSX.cs: Added empty overrides for the new caret functions
18454         * TreeView.cs: Fixed bug. No matter what color was set it would always
18455           return SystemColors.Window
18457         * XplatUIWin32.cs: Implemented caret overrides
18459 2004-12-10  Jordi Mas i Hernandez <jordi@ximian.com>
18461         * ListBox.cs: fire events, implement missing methods and properties,
18462         sorting.
18464 2004-12-10  John BouAntoun <jba-mono@optusnet.com.au>
18466         * MonthCalendar.cs: invalidation bug fixing
18467         * ThemeWin32Classic.cs: paint fixing
18469 2004-12-09  Geoff Norton  <gnorton@customerdna.com>
18471         * XplatUIOSX.cs: Refactor to pass the real hwnd into Graphics.FromHwnd, we
18472         prepare the CGContextRef there now.
18474 2004-12-09  John BouAntoun <jba-mono@optusnet.com.au>
18476         * MonthCalendar.cs:
18477           - optimisationL only invalidate areas that have changed
18478         * ThemeWin32Classic.cs:
18479           - only paint parts that intersect with clip_area
18481 2004-12-09  Peter Bartok  <pbartok@novell.com>
18483         * Application.cs: Undid changes from r37004 which cause problems
18484         on X11
18486 2004-12-09  Ravindra  <rkumar@novell.com>
18488         * ToolBar.cs: Added support for displaying ContextMenu
18489         attached to a button on ToolBar.
18490         * ToolBarButton.cs: Uncomment/fixed the DropDownMenu
18491         property.
18493 2004-12-09  Jordi Mas i Hernandez <jordi@ximian.com>
18495         * Label.cs: autosize works in text change and removes unnecessary
18496         invalidate
18498 2004-12-09  Jordi Mas i Hernandez <jordi@ximian.com>
18500         * ThemeWin32Classic.cs, XplatUIOSX.cs, XplatUIWin32.cs:
18501         remove warnings
18503 2004-12-08  Geoff Norton  <gnorton@customerdna.com>
18505         * XplatUIOSX.cs: Added mouse move/click/grab support
18506         Remove some debugging WriteLines not needed anymore.
18507         Add window resizing/positioning.
18508         Fix visibility on reparenting.
18510 2004-12-08  Peter Bartok  <pbartok@novell.com>
18512         * XplatUIOSX.cs: Added Idle event, now compiles on VS.Net
18514 2004-12-07  Geoff Norton  <gnorton@customerdna.com>
18516         * XplatUIOSX.cs: Initial checkin
18517         * XplatUI.cs: Use the Quartz driver if the environment is set to use it
18519 2004-12-03  Ravindra <rkumar@novell.com>
18521         * ListView.cs: Added some keybindings and fixed scrolling.
18522         ScrollBars listen to ValueChanged event instead of Scroll
18523         Event. This would let us take care of all changes being
18524         done in the scrollbars' values programmatically or manually.
18525         * ListView.cs (CanMultiselect): Added a check for shift key.
18526         * ListView.cs (EnsureVisible): Fixed. Do proper scrolling.
18527         * ListViewItem.cs (Clone): Fixed. We need to make a copy
18528         of ListViewSubItemCollection as well.
18530 2004-12-06  Peter Bartok <pbartok@novell.com>
18532         * Control.cs (Parent): Added check and exception to prevent
18533         circular parenting
18535 2004-12-03  Jordi Mas i Hernandez <jordi@ximian.com>
18537         * ListBox.cs: implemented clipping, selection single and multiple,
18538         bug fixing
18540 2004-12-03  Ravindra <rkumar@novell.com>
18542         * ListView.cs (ListView_KeyDown):
18543         * ListView.cs (ListView_KeyUp): Fixed multiple selection handling
18544         when CTRL key is pressed.
18545         * ListViewItem.cs (Selected): Fixed setting the property.
18547 2004-12-03  Marek Safar  <marek.safar@seznam.cz>
18549         * Application.cs (OnThreadException): Use ThreadExceptionDialog.
18551         * Form.cs: Add ActiveForm, FormBorderStyle, MaximizeBox,
18552         MinimizeBox, ShowInTaskbar, TopMost properties.
18554         * ThreadExceptionDialog.cs: Implemented (disabled TextBox until
18555         will be implemented).
18557 2004-12-03  Marek Safar  <marek.safar@seznam.cz>
18559         * OwnerDrawPropertyBag.cs: New internal parameterless ctor.
18561         * TreeNode.cs: Implemented ICloneable, Fixed to pass my simple
18562         tests.
18563         
18564         * TreeNodeCollection.cs: Add exception throwing for Add,AddRange.
18565         
18566         * TreeView.cs: BackColor is Colors.Window.
18568 2004-12-01  Jackson Harper  <jackson@ximian.com>
18570         * TreeView.cs: When resizing the tree if the user is making it
18571         smaller we don't get expose events, so we need to handle adding
18572         the horizontal scrollbar in the size changed handler as well as
18573         the expose handler.
18575 2004-12-02  Jordi Mas i Hernandez <jordi@ximian.com>
18577         * DrawItemState.cs: fixes wrong enum values
18579 2004-12-01  Jackson Harper  <jackson@ximian.com>
18581         * TreeView.cs: Resize the hbar as well as the vbar on resize.
18583 2004-12-01  Jackson Harper  <jackson@ximian.com>
18585         * NodeLabelEditEventArgs.cs:
18586         * NodeLabelEditEventHandler.cs:
18587         * OpenTreeNodeEnumerator.cs:
18588         * TreeNode.cs:
18589         * TreeNodeCollection.cs:
18590         * TreeView.cs:
18591         * TreeViewAction.cs:
18592         * TreeViewCancelEventArgs.cs:
18593         * TreeViewCancelEventHandler.cs:
18594         * TreeViewEventArgs.cs:
18595         * TreeViewEventHandler.cs: Initial implementation.
18597 2004-12-01  Ravindra <rkumar@novell.com>
18599         * ListView.cs (CalculateListView): Fixed scrolling related
18600         calculations. Also, removed some debug statements from other
18601         places.
18602         * ListViewItem.cs: Changed access to 'selected' instance variable
18603         from private to internal.
18604         * ThemeWin32Classic.cs (DrawListViewItem): Fixed SubItem drawing.
18606 2004-12-01  Jordi Mas i Hernandez <jordi@ximian.com>
18608         * ThemeWin32Classic.cs: remove cache of brush and pens for
18609         specific controls and use the global system, fixes scrollbutton
18610         bugs (for small sizes, disabled, etc)
18611         
18612         * ScrollBar.cs: does not show the thumb for very small controls
18613         (as MS) and allow smaller buttons that the regular size
18615 2004-12-01  Miguel de Icaza  <miguel@ximian.com>
18617         * UpDownBase.cs: Add abstract methods for the interface.
18618         Add new virtual methods (need to be hooked up to TextEntry when it
18619         exists).
18620         Add override methods for most features.
18621         Computes the size, forces the height of the text entry.
18623         * NumericUpDown.cs: Put here the current testing code.
18625         * Set eol-style property on all files that do not have mixed line
18626         endings, to minimize the future problems.  There are still a few
18627         files with mixed endings, and someone should choose whether they
18628         want to move it or not.
18630 2004-11-30  Jordi Mas i Hernandez <jordi@ximian.com>
18632         * MonthCalendar.cs, ListView.cs: use Theme colours instead of
18633         System.Colors
18634         
18635 2004-11-30  Ravindra <rkumar@novell.com>
18637         * ThemeWin32Classic.cs (DrawListViewItem): Fixed selected item
18638         drawing and replaced use of SystemColors by theme colors.
18639         * ListView.cs (ListView_Paint): Fixed painting done during scrolling.
18640         * ListView.cs (ListViewItemCollection.Add): Throw exception when
18641         same ListViewItem is being added more than once.
18643 2004-11-30  John BouAntoun <jba-mono@optusnet.com.au>
18645         * MonthCalendar.cs:
18646           - ControlStyles love to make the control not flicker
18647           
18648 2004-11-30  Peter Bartok  <pbartok@novell.com>
18650         * CharacterCasing.cs: Added
18652 2004-11-29  Peter Bartok  <pbartok@novell.com>
18654         * TreeNode.cs, TreeNodeCollection.cs, TreeView.cs,
18655           TreeViewAction.cs, TreeViewEventArgs.cs: Removed new files.
18656           I am removing these files as they conflict with already completed
18657           work. While it is fantastic to get contributions to MWF, I
18658           respectfully ask that everyone please coordinate their contributions
18659           through mono-winforms-list or #mono-winforms at this time. We're
18660           explicitly avoiding stubbing and don't want controls that don't have
18661           their basic functionality implemented in svn. Please also see
18662           http://www.mono-project.com/contributing/winforms.html
18665 2004-11-29  Marek Safar  <marek.safar@seznam.cz>
18667         * Application.cs (ModalRun): Don't hang after exit.
18669         * Theme.cs: New TreeViewDefaultSize property.
18671         * ThemeWin32Classic.cs: Replaced hardcoded defaultWindowBackColor
18672         with less hardcoded SystemColors constant.
18673         Implemented TreeViewDefaultSize.
18675         * TreeNode.cs, TreeNodeCollection.cs, TreeView.cs,
18676         TreeViewAction.cs, TreeViewEventArgs.cs: New files.
18679 2004-11-29  John BouAntoun <jba-mono@optusnet.com.au>
18681         * MonthCalendar.cs:
18682           - Fix NextMonthDate and PrevMonthDate click moving calendar
18684 2004-11-26  John BouAntoun <jba-mono@optusnet.com.au>
18686         * MonthCalendar.cs:
18687           - Fix usage of ScrollChange Property when scrolling months
18689 2004-11-26  Jordi Mas i Hernandez <jordi@ximian.com>
18691         * Menu.cs, MainMenu.cs, MenuItem.cs, MenuAPI.cs
18692          - Fixes menu destroying
18693          - Support adding and removing items on already created menus
18695 2004-11-26  John BouAntoun <jba-mono@optusnet.com.au>
18697         * MonthCalendar.cs:
18698           - Re-worked all bolded dates handling to match win32
18699         * ThemeWin32Classic.cs:
18700           - Fixed rendering with bolded dates
18702 2004-11-25  Jordi Mas i Hernandez <jordi@ximian.com>
18704         * ListBox.cs, Theme.cs, ThemeWin32Classic.cs:
18705         - Horizontal scroolbar
18706         - Multicolumn
18707         - Fixes
18710 2004-11-25  John BouAntoun <jba-mono@optusnet.com.au>
18712         * MonthCalendar.cs:
18713           - Fix Usage of MaxSelectionCount from SelectionRange
18714           - Fixed Shift + Cursor Selection
18715           - Fixed Shift + (Pg up/Pg dn, Home/End) selection
18716           - Fixed normal cursor selection to be compat with win32
18717           - Fixed Shift + Mouse Click selection
18719 2004-11-24  Peter Bartok <pbartok@novell.com>
18721         * XplatUI.cs (DispatchMessage): Switched to return IntPtr
18722         * XplatUIDriver.cs (DispatchMessage): Switched to return IntPtr
18723         * XplatUIX11.cs:
18724           - CreatedKeyBoardMsg now updates keystate with Alt key
18725           - Added workaround for timer crash to CheckTimers, Jackson will
18726             develop a proper fix and check in later
18727           - Implemented DispatchMessage
18728           - Removed calling the native window proc from GetMessage (call
18729             now moved to DispatchMessage)
18731         * KeyEventArgs.cs (Constructor): Now combines modifierkeys into
18732           the keydata (Fixes bug #69831)
18734         * XplatUIWin32.cs:
18735           - (DispatchMessage): Switched to return IntPtr
18736           - Added DllImport for SetFocus
18738 2004-11-24  Ravindra <rkumar@novell.com>
18740         * ThemeWin32Classic.cs: Fixed ListView border and checkbox
18741         background drawing.
18742         * ListViewItem.cs: Fixed various properties, calculations
18743         and Clone() method. Fixed ListViewSubItemCollection.Clear() method.
18744         * ListView.cs: Fixed calculations, BackColor, ForeColor properties
18745         and some internal properties. Fixed MouseDown handler and Paint
18746         method.
18748 2004-11-24  John BouAntoun <jba-mono@optusnet.com.au>
18750         * MonthCalendar.cs: Add TitleMonth ContextMenu handling
18752 2004-11-24  John BouAntoun <jba-mono@optusnet.com.au>
18754         * ContainerControl.cs: correct accidental check in of local changes
18756 2004-11-24  John BouAntoun <jba-mono@optusnet.com.au>
18758         * ThemeWin32Classic.cs:
18759                 - Fixed Drawing Last month in grid (sometimes not showing)
18760         * MonthCalendar.cs:
18761                 - Fixed title width calculation bug (makeing title small)
18763 2004-11-23  Peter Bartok <pbartok@novell.com>
18765         * XplatUIX11.cs:
18766           - Added generation of WM_MOUSEHOVER event
18767           - Added missing assignment of async_method atom
18768           - Fixed WM_ERASEBKGND; now only redraws the exposed area
18770 2004-11-23  John BouAntoun <jba-mono@optusnet.com.au>
18772         * ThemeWin32Classic.cs:
18773                 - Fixed Drawing of today circle when showtodaycircle not set
18774                 - fixed drawing of first and last month in the grid (gay dates)
18775         * MonthCalendar.cs:
18776                 - Fixed Drawing of today circle
18777                 - Fixed drawing of grady dates
18778                 - Fixed HitTest for today link when ShowToday set to false
18779                 - Fixed DefaultSize to obey ShowToday
18781 2004-11-23  John BouAntoun <jba-mono@optusnet.com.au>
18783         * ThemeWin32Classic.cs: Fixed DrawMonthCalendar and private support methods
18784         * System.Windows.Forms/Theme.cs
18785         * MonthCalendar.cs: added for MonthCalendar
18786         * SelectionRange.cs: added for MonthCalendar
18787         * Day.cs: added for MonthCalendar: added for MonthCalendar
18788         * DateRangeEventArgs.cs: added for MonthCalendar
18789         * DateRangeEventHandler.cs: added for MonthCalendar
18791 2004-11-22  Ravindra <rkumar@novell.com>
18793         * ThemeWin32Classic.cs: Fixed ListViewDrawing with 'UseItemStyleForSubItems'
18794         property.
18796 2004-11-22  Miguel de Icaza  <miguel@ximian.com>
18798         * UpDownBase.cs (InitTimer): Use prehistoric C# 1.0 notation for
18799         event handler.
18800         
18801         * NumericUpDown.cs: Added new implementation.
18802         * UpDownBase.cs: Added new implementation.
18804         * XplatUIWin32.cs (KeyboardSpeed, KeyboardDelay): added default
18805         implementations.
18806         
18807         * XplatUIX11.cs (KeyboardSpeed, KeyboardDelay): added default
18808         implementations.
18810         * XplatUIDriver.cs ((KeyboardSpeed, KeyboardDelay): added new
18811         methods.
18813 2004-11-21  Miguel de Icaza  <miguel@ximian.com>
18815         * Timer.cs  (Dispose): Should call the base dispose when
18816         overriding.
18818 2004-11-19  Jordi Mas i Hernandez <jordi@ximian.com>
18820         * ScrollBar.cs: updates thumb position when max, min or increment
18821         is changed
18823 2004-11-21  Ravindra <rkumar@novell.com>
18825         * ListView.cs: Implemented item selection, activation and
18826         column header style. Fixed properties to do a redraw, if
18827         required. Added support for MouseHover, DoubleClick, KeyDown
18828         and KeyUp event handling and some minor fixes.
18829         * ListViewItem.cs: Fixed constructor.
18830         * ThemeWin32Classic.cs: Improved drawing for ListView.
18832 2004-11-19  Jordi Mas i Hernandez <jordi@ximian.com>
18834         * ThemeWin32Classic.cs: initial listbox drawing code
18835         * DrawMode.cs: new enumerator
18836         * ListControl.cs: stubbed class
18837         * ListBox.cs: initial implementation
18838         * Theme.cs: new methods definitions
18839         * SelectionMode.cs: new enumerator
18841 2004-11-17  Peter Bartok  <pbartok@novell.com>
18843         * XplatUIWin32.cs: Added double-click events to the class style
18844         * Control.cs (WndProc):
18845           - Added handling of click-count to MouseDown/ MouseUp events.
18846           - Added handling of middle and right mouse buttons
18847           - Removed old debug code
18849 2004-11-17  Jackson Harper  <jackson@ximian.com>
18851         * XplatUIX11.cs: Use the new Mono.Unix namespace.
18853 2004-11-17  Ravindra <rkumar@novell.com>
18855         * ListView.cs: Added event handling for MouseMove/Up/Down.
18856         * ColumnHeader.cs: Added a read-only internal property 'Pressed'.
18857         * ThemeWin32Classic.cs: We need to clear the graphics context and
18858         draw column header in a proper state.
18861 2004-11-17  Jordi Mas i Hernandez <jordi@ximian.com>
18863         *  Menu.cs: fixes signature
18865 2004-11-16  Peter Bartok  <pbartok@novell.com>
18867         * XplatUIX11.cs (GetMessage): Implemented generation of
18868           double click mouse messages
18870 2004-11-12  Jordi Mas i Hernandez <jordi@ximian.com>
18872         *  Form.cs, MainMenu.cs, MenuAPI.cs: tracker should be for tracking session
18873         not by menu
18875 2004-11-11  Peter Bartok  <pbartok@novell.com>
18877         * HandleData.cs: Added Visible property
18878         * XplatUIX11.cs (IsVisible): Now uses Visible property from
18879           HandleData
18880         * XplatUIX11.cs: Removed old debug leftovers
18881         * XplatUIX11.cs (DefWndProc): Added WM_ERASEBKGND handler
18882         * Control.cs (WndProc): Removed old debug leftovers,
18883           streamlined handling of WM_WINDOWPOSCHANGED, removed un-
18884           needed WM_SIZE handling
18886 2004-11-11  Jackson Harper  <jackson@ximian.com>
18888         * OwnerDrawPropertyBag.cs:
18889         * TreeViewImageIndexConverter.cs: Initial implementation
18891 2004-11-10  Jackson Harper  <jackson@ximian.com>
18893         * ThemeWin32Classic.cs:
18894         * TabControl.cs: instead of moving tabs by the slider pos just
18895         start drawing at the tab that is offset by the slider. This way
18896         scrolling always moves by exactly one tab.
18898 2004-11-10  Jackson Harper  <jackson@ximian.com>
18900         * TabControl.cs: You can only scroll left when the slider has
18901         already ben moved right.
18902         
18903 2004-11-10  Jackson Harper  <jackson@ximian.com>
18905         * ThemeWin32Classic.cs: Do not draw the selected tab if its not in
18906         the clip area.
18907         
18908 2004-11-10  Jackson Harper  <jackson@ximian.com>
18910         * ThemeWin32Classic.cs: Don't bother drawing tabs outside of the
18911         clip area.
18912         
18913 2004-11-09  Jackson Harper  <jackson@ximian.com>
18915         * TabControl.cs (CalcXPos): New helper method so we can determine
18916         the proper place to start drawing vertical tabs.
18917         * ThemeWin32Classic.cs (DrawTab): Draw right aligned tabs.
18918         
18919 2004-11-09  Jackson Harper  <jackson@ximian.com>
18921         * TabControl.cs: Calculate sizing and rects for left aligned tabs.
18922         * ThemeWin32Classic.cs (GetTabControl*ScrollRect): Only handle Top
18923         and Bottom, left and right are illegal values for this and
18924         multiline is enabled when the alignment is set to left or right.
18925         (DrawTab): Each alignment block should draw the text itself now
18926         because Left requires special love. Also add rendering for Left
18927         aligned tabs.
18928         
18929 2004-11-09  Jordi Mas i Hernandez <jordi@ximian.com>
18931         *  Form.cs, MainMenu.cs, MenuAPI.cs: fixes menu navigation, fixes popups,
18932         does not destroy the windows, removes debugging messages
18934 2004-11-09  jba  <jba-mono@optusnet.com.au>
18936         * ThemeWin32Classic.cs
18937         (DrawButtonBase): Fix verticle text rect clipping in windows
18938         (DrawCheckBox): Fix CheckAlign.TopCenter and CheckAlign.BottomCenter
18939         rendering and incorrect text rect clipping
18940         (DrawRadioButton): Fix CheckAlign.TopCenter and CheckAlign.BottomCenter
18941         rendering and incorrect text rect clipping
18942         
18943 2004-11-08  Jackson Harper  <jackson@ximian.com>
18945         * ThemeWin32Classic.cs (DrawTabControl): Render tabs from top to
18946         bottom when they are bottom aligned so the bottoms of the tabs get
18947         displayed.
18948         * TabControl.cs (DropRow): Move rows up instead of down when the
18949         tab control is bottom aligned.
18951 2004-11-08 13:59  pbartok
18953         * XplatUIX11.cs:
18954           - Added handling for various window styles
18955           - Added handling for popup windows
18956           - Added SetTopmost handling
18958 2004-11-08 13:55  pbartok
18960         * XplatUIWin32.cs:
18961           - Added argument to SetTopmost method
18962           - Fixed broken ClientToScreen function
18964 2004-11-08 13:53  pbartok
18966         * XplatUIStructs.cs:
18967           - Added missing WS_EX styles
18969 2004-11-08 13:53  pbartok
18971         * XplatUI.cs, XplatUIDriver.cs:
18972           - Added argument to SetTopmost
18974 2004-11-08 13:52  pbartok
18976         * X11Structs.cs:
18977           - Added XSetWindowAttributes structure
18978           - Improved XWindowAttributes structure
18979           - Added SetWindowValuemask enum
18980           - Added window creation arguments enum
18981           - Added gravity enum
18982           - Added Motif hints structure
18983           - Added various Motif flags and enums
18984           - Added PropertyMode enum for property functions
18986 2004-11-08 13:50  pbartok
18988         * Form.cs:
18989           - Fixed arguments for updated SetTopmost method
18991 2004-11-08 13:49  pbartok
18993         * ToolTip.cs:
18994           - Fixed arguments for updated SetTopmost function
18995           - Fixed usage of PointToClient
18997 2004-11-08 13:44  pbartok
18999         * MenuAPI.cs:
19000           - Added Clipping of children and siblings
19002 2004-11-08 13:41  pbartok
19004         * MainMenu.cs:
19005           - Removed SetMenuBarWindow call. We do this in Form.cs
19007 2004-11-08 13:40  jackson
19009         * TabControl.cs, Theme.cs, ThemeWin32Classic.cs: Render the little
19010           scrolling jimmi in the correct location with bottom aligned tabs
19012 2004-11-08 13:36  pbartok
19014         * ContainerControl.cs:
19015           - Implemented BindingContext
19016           - Implemented ParentForm
19018 2004-11-08 12:46  jackson
19020         * TabControl.cs: Put bottom rendered tabs in the right location
19022 2004-11-08 07:15  jordi
19024         * ScrollBar.cs, ThemeWin32Classic.cs: fixes vertical scrollbar and
19025           removes dead code
19027 2004-11-05 17:30  jackson
19029         * TabControl.cs: When selected tabs are expanded make sure they
19030           don't go beyond the edges of the tab control
19032 2004-11-05 14:57  jackson
19034         * TabControl.cs: Reset show_slider so if the control is resized to
19035           a size where it is no longer needed it's not displayed anymore
19037 2004-11-05 13:16  jackson
19039         * TabControl.cs: Make tab pages non visible when added to the
19040           control
19042 2004-11-05 12:42  jackson
19044         * TabControl.cs: Implement SizeMode.FillToRight
19046 2004-11-05 12:16  jackson
19048         * Control.cs: Do not call CreateHandle if the handle is already
19049           created
19051 2004-11-05 11:46  jackson
19053         * TabControl.cs: Remove superflous call to CalcTabRows
19055 2004-11-05 09:07  jackson
19057         * XplatUIX11.cs: Update for Mono.Posix changes
19059 2004-11-05 07:00  ravindra
19061         * ListView.cs, ListViewItem.cs: Implemented some methods and fixed
19062           scrolling.
19064 2004-11-04 22:47  jba
19066         * ThemeWin32Classic.cs:
19067           - Fix Button rendering for FlatStyle = Flat or Popup
19068           - Fix RadioButton and CheckBox rendering when Appearance = Button
19069             (normal and flatstyle).
19070           - Correct outer rectangle color when drawing focus rectangle
19071           - Adjust button bounds to be 1 px smaller when focused
19072           - Make button not draw sunken 3d border when pushed (windows compat)
19073           - Fix CPDrawBorder3D to not make bottom right hand corner rounded
19074           - Offset the text in RadioButton and Checkbox when being rendered as
19075           a button.
19076           - Hover and Click behaviour for Colored FlatStyle.Flat and Popup
19077           radiobuttons
19078           - Fixed disabled rendering for colored flatstyle radiobuttons (both)
19079           - Fixed disabled text rendering for normally rendered radiobuttons
19081 2004-11-04 10:26  jackson
19083         * TabControl.cs: Recalculate tab rows when resizing
19085 2004-11-04 07:47  jordi
19087         * Form.cs, MainMenu.cs, Menu.cs, MenuAPI.cs, MenuItem.cs:
19088           collection completion, drawing issues, missing features
19090 2004-11-04 05:03  ravindra
19092         * ScrollBar.cs:
19093                 - We need to recalculate the Thumb area when
19094                 LargeChange/maximum/minimum values are changed.
19095           - We set the 'pos' in UpdatePos() method to minimum, if it's less
19096                 than minimum. This is required to handle the case if large_change is
19097                 more than max, and use LargeChange property instead of large_change
19098                 variable.
19099           - We return max+1 when large_change is more than max, like MS does.
19101 2004-11-04 04:29  ravindra
19103         * ColumnHeader.cs, ListView.cs, ListViewItem.cs:
19104                 - Changed default value signatures (prefixed all with ListView).
19105                 - Fixed/implemented layout LargeIcon, SmallIcon and List views for
19106                 ListView.
19107           - Fixed calculations for ListViewItem and implemented Clone()
19108           method.
19110 2004-11-04 04:26  ravindra
19112         * Theme.cs, ThemeWin32Classic.cs:
19113                 - Changed default ListView values signatures (prefixed all with
19114                 ListView).
19115           - Fixed default size values for VScrollBar and HScrollBar.
19116                 - Fixed DrawListViewItem method.
19118 2004-11-04 04:05  ravindra
19120         * ColumnHeaderStyle.cs: Typo. It should be Nonclickable.
19122 2004-11-04 04:04  ravindra
19124         * ImageList.cs: Implemented the missing overload for Draw method.
19126 2004-11-03 19:29  jackson
19128         * TabControl.cs: Handle dropping rows on selection properly
19130 2004-11-03 11:59  jackson
19132         * TabControl.cs: remove debug code
19134 2004-11-03 11:52  jackson
19136         * TabControl.cs, ThemeWin32Classic.cs: Initial implementation of
19137           the scrolly widgerywoo
19139 2004-11-02 13:52  jackson
19141         * TabControl.cs: Resize the tab pages and tabs when the tab control
19142           is resized
19144 2004-11-02 13:40  jackson
19146         * TabControl.cs, ThemeWin32Classic.cs: Move the row with the
19147           selected tab to the bottom
19149 2004-11-02 13:39  jackson
19151         * TabPage.cs: Store the tab pages row
19153 2004-11-02 12:33  jordi
19155         * MenuItem.cs: fixes handle creation
19157 2004-11-02 11:42  jackson
19159         * TabControl.cs: signature fix
19161 2004-11-02 08:56  jackson
19163         * TabControl.cs: Calculate whether the tab is on an edge properly.
19164           Remove top secret debugging code
19166 2004-11-01 19:57  jackson
19168         * TabControl.cs: Add click handling, and proper sizing
19170 2004-11-01 19:47  jackson
19172         * Theme.cs, ThemeWin32Classic.cs: New rendering and sizing code for
19173           tab controls
19175 2004-11-01 19:39  jackson
19177         * TabPage.cs: add internal property to store the bounds of a tab
19178           page
19180 2004-10-30 04:23  ravindra
19182         * Theme.cs, ThemeWin32Classic.cs: Drawing ListView and some default
19183           values.
19185 2004-10-30 04:21  ravindra
19187         * ListView.cs, ListViewItem.cs: Added support for scrolling and
19188           fixed calculations.
19190 2004-10-30 03:06  pbartok
19192         * XplatUIX11.cs:
19193           - Removed extension of DllImported libs
19195 2004-10-29 09:55  jordi
19197         * Form.cs, MainMenu.cs, Menu.cs, MenuAPI.cs, MenuItem.cs: Menu key
19198           navigation, itemcollection completion, menu fixes
19200 2004-10-27 22:58  pbartok
19202         * XplatUIX11.cs:
19203           - Now throws a nice error message when no X display could be opened
19205 2004-10-26 13:51  jordi
19207         * ListView.cs: removes warning
19209 2004-10-26 03:55  ravindra
19211         * ColumnHeader.cs, ListView.cs, ListViewItem.cs,
19212           ThemeWin32Classic.cs: Some formatting for my last checkins.
19214 2004-10-26 03:36  ravindra
19216         * ThemeWin32Classic.cs: Implemented DetailView drawing for ListView
19217           control and default values.
19219 2004-10-26 03:35  ravindra
19221         * Theme.cs: Added some default values for ListView control.
19223 2004-10-26 03:33  ravindra
19225         * ToolBar.cs: ToolBar should use the user specified button size, if
19226           there is any. Added a size_specified flag for the same.
19228 2004-10-26 03:33  ravindra
19230         * ColumnHeader.cs: Added some internal members and calculations for
19231           ColumnHeader.
19233 2004-10-26 03:32  ravindra
19235         * ListViewItem.cs: Calculations for ListViewItem.
19237 2004-10-26 03:31  ravindra
19239         * ListView.cs: Added some internal members and calculations for
19240           ListView.
19242 2004-10-22 13:31  jordi
19244         * MenuAPI.cs: speedup menus drawing
19246 2004-10-22 13:16  jackson
19248         * XplatUIX11.cs: Make sure to update exposed regions when adding an
19249           expose event
19251 2004-10-22 11:49  jackson
19253         * Control.cs: oops
19255 2004-10-22 11:41  jackson
19257         * Control.cs: Check to see if the window should have its background
19258           repainted by X when drawing.
19260 2004-10-22 11:31  jackson
19262         * XplatUIX11.cs: When invalidating areas only use XClearArea if
19263           clear is true, this way we do not get flicker from X repainting the
19264           background
19266 2004-10-22 11:28  jackson
19268         * XEventQueue.cs: Queue properly
19270 2004-10-21 09:38  jackson
19272         * XEventQueue.cs: Fix access modifier
19274 2004-10-21 09:36  jackson
19276         * XEventQueue.cs: Don't loose messages
19278 2004-10-21 09:22  jackson
19280         * XEventQueue.cs: Don't loose messages
19282 2004-10-20 04:15  jordi
19284         * BootMode.cs: enum need it by SystemInfo
19286 2004-10-19 21:58  pbartok
19288         * XplatUIWin32.cs:
19289           - Small sanity check
19291 2004-10-19 21:56  pbartok
19293         * Form.cs:
19294           - Added private FormParentWindow class which acts as the container
19295             for our form and as the non-client area where menus are drawn
19296           - Added/Moved required tie-ins to Jordi's menus
19297           - Fixed/Implemented the FormStartPosition functionality
19299 2004-10-19 21:52  pbartok
19301         * Control.cs:
19302           - Removed unneeded locals
19303           - Added code to all size and location properties to understand and
19304             deal with the parent container of Form
19306 2004-10-19 21:33  pbartok
19308         * Application.cs:
19309           - Fixed to deal with new Form subclasses for menus
19311 2004-10-19 17:48  jackson
19313         * XEventQueue.cs: commit correct version of file
19315 2004-10-19 16:50  jackson
19317         * XEventQueue.cs, XplatUIX11.cs: New optimized event queue
19319 2004-10-19 16:15  jordi
19321         * MenuAPI.cs: MenuBarCalcSize returns the height
19323 2004-10-19 08:31  pbartok
19325         * Control.cs:
19326           - Added missing call to PreProcessMessage before calling OnXXXKey
19327           methods
19329 2004-10-19 00:04  ravindra
19331         * ToolTip.cs: Fixed constructor.
19333 2004-10-18 09:31  jordi
19335         * MenuAPI.cs: menuitems in menubars do not have shortcuts
19337 2004-10-18 09:26  jordi
19339         * MenuItem.cs: fixes MenuItem class signature
19341 2004-10-18 08:56  jordi
19343         * MenuAPI.cs: prevents windows from showing in the taskbar
19345 2004-10-18 00:28  ravindra
19347         * ToolTip.cs: Suppressed a warning message.
19349 2004-10-18 00:27  ravindra
19351         * Control.cs: Default value of visible property must be true.
19353 2004-10-17 23:19  pbartok
19355         * ToolTip.cs:
19356           - Complete implementation
19358 2004-10-17 23:19  pbartok
19360         * XplatUIX11.cs:
19361           - Added EnableWindow method
19362           - Added SetModal stub
19363           - Added generation of WM_ACTIVATE message (still needs testing)
19364           - Added SetTopMost stub
19365           - Changes to deal with VirtualKeys being moved to XplatUIStructs.cs
19367 2004-10-17 23:17  pbartok
19369         * XplatUIWin32.cs:
19370           - Removed VirtualKeys to XplatUIStructs
19371           - Implemented SetTopMost method
19372           - Implemented EnableWindow method
19373           - Bugfix in ScreenToClient()
19374           - Bugfixes in ClientToScreen()
19376 2004-10-17 22:51  pbartok
19378         * XplatUIStructs.cs:
19379           - Added WS_EX styles to WindowStyles enumeration
19381 2004-10-17 22:50  pbartok
19383         * XplatUI.cs, XplatUIDriver.cs:
19384           - Added method for enabling/disabling windows
19385           - Added method for setting window modality
19386           - Added method for setting topmost window
19388 2004-10-17 22:49  pbartok
19390         * ThemeWin32Classic.cs:
19391           - Added ToolTip drawing code
19393 2004-10-17 22:49  pbartok
19395         * Theme.cs:
19396           - Added ToolTip abstracts
19398 2004-10-17 22:47  pbartok
19400         * Form.cs:
19401           - Fixed Form.ControlCollection to handle owner relations
19402           - Added Owner/OwnedForms handling
19403           - Implemented Z-Ordering for owned forms
19404           - Removed unneeded private overload of ShowDialog
19405           - Fixed ShowDialog, added the X11 incarnation of modal handling (or
19406             so I hope)
19407           - Fixed Close(), had wrong default
19408           - Added firing of OnLoad event
19409           - Added some commented out debug code for Ownership handling
19411 2004-10-17 22:16  pbartok
19413         * Control.cs:
19414           - Fixed/implemented flat list of controls
19416 2004-10-17 22:14  pbartok
19418         * Application.cs:
19419           - Added code to simulate modal dialogs on Win32
19421 2004-10-17 16:11  jordi
19423         * ScrollBar.cs: disabled scrollbar should not honor any keyboard or
19424           mouse event
19426 2004-10-17 13:39  jordi
19428         * MenuAPI.cs: menu drawing fixes
19430 2004-10-15 09:10  ravindra
19432         * StructFormat.cs: General Enum.
19434 2004-10-15 09:09  ravindra
19436         * SizeGripStyle.cs: Enum for Form.
19438 2004-10-15 09:08  ravindra
19440         * Theme.cs, ThemeWin32Classic.cs: Added ColumnHeaderHeight property
19441           in Theme for ListView.
19443 2004-10-15 09:06  ravindra
19445         * ColumnHeader.cs: Flushing some formatting changes.
19447 2004-10-15 09:05  ravindra
19449         * ListViewItem.cs: Implemented GetBounds method and fixed coding
19450           style.
19452 2004-10-15 09:03  ravindra
19454         * ListView.cs: Implemented Paint method and fixed coding style.
19456 2004-10-15 07:34  jordi
19458         * MenuAPI.cs: fix for X11
19460 2004-10-15 07:32  ravindra
19462         * ButtonBase.cs, CheckBox.cs, RadioButton.cs:
19463                 - Renamed Paint() method to Draw() for clarity. Also, moved
19464                 DrawImage() to OnPaint().
19466 2004-10-15 07:25  ravindra
19468         * CheckBox.cs, RadioButton.cs:
19469                 - Removed Redraw (), we get it from ButtonBase.
19470                 - Implemented Paint (), to do class specific painting.
19472 2004-10-15 07:16  ravindra
19474         * ButtonBase.cs:
19475                 - Redraw () is not virtual now.
19476                 - Added an internal virtual method Paint (), so that
19477                 derived classes can do their painting on their own.
19478                 - Modified OnPaint () to call Paint ().
19480 2004-10-15 06:43  jordi
19482         * ContextMenu.cs, DrawItemEventHandler.cs, Form.cs, MainMenu.cs,
19483           MenuAPI.cs, MenuItem.cs: menu work, mainmenu, subitems, etc
19485 2004-10-15 00:30  ravindra
19487         * MessageBox.cs:
19488                 - MessageBox on windows does not have min/max buttons.
19489                 This change in CreateParams fixes this on Windows. We
19490                 still need to implement this windowstyle behavior in
19491                 our X11 driver.
19493 2004-10-14 05:14  ravindra
19495         * ToolBar.cs:
19496                 - Changed Redraw () to do a Refresh () always.
19497                 - Fixed the MouseMove event handling when mouse is pressed,
19498                 ie drag event handling.
19499                 - Replaced the usage of ToolBarButton.Pressed property to
19500                 ToolBarButton.pressed internal variable.
19502 2004-10-14 05:10  ravindra
19504         * ToolBarButton.cs:
19505                 - Added an internal member 'inside' to handle mouse move
19506                 with mouse pressed ie mouse drag event.
19507                 - Changed 'Pressed' property to return true only when
19508                 'inside' and 'pressed' are both true.
19509                 - Some coding style love.
19511 2004-10-14 00:17  ravindra
19513         * Form.cs: Fixed class signature. ShowDialog (Control) is not a
19514           public method.
19516 2004-10-14 00:15  ravindra
19518         * ButtonBase.cs: Redraw () related improvements.
19520 2004-10-14 00:14  ravindra
19522         * MessageBox.cs: Moved InitFormSize () out of Paint method and
19523           removed unnecessary calls to Button.Show () method.
19525 2004-10-13 17:50  pbartok
19527         * XplatUIX11.cs:
19528           - Formatting fix
19529           - Removed destroying of window until we solve the problem of X
19530             destroying the window before us on shutdown
19532 2004-10-13 16:32  pbartok
19534         * ButtonBase.cs:
19535           - Now Redraws on MouseUp for FlatStyle Flat and Popup
19537 2004-10-13 14:18  pbartok
19539         * XplatUIX11.cs:
19540           - Added code to destroy the X window
19542 2004-10-13 14:18  pbartok
19544         * XplatUIWin32.cs:
19545           - Added code to destroy a window
19547 2004-10-13 14:12  pbartok
19549         * ButtonBase.cs:
19550           - Added the Redraw on Resize that got dropped in the last rev
19552 2004-10-13 09:06  pbartok
19554         * ThemeWin32Classic.cs:
19555           - Path from John BouAntoun:
19556             * Fix check rendering (centre correctly for normal style, offset
19557               correctly for FlatStyle).
19558             * Fix border color usage (use backcolor) for FlatStyle.Popup
19559             * Use checkbox.Capture instead of checkbox.is_pressed when
19560               rendering flatstyle states.
19562 2004-10-12 21:48  pbartok
19564         * ThemeWin32Classic.cs:
19565           - Removed all occurences of SystemColors and replaced them with the
19566             matching theme color
19568 2004-10-12 21:41  pbartok
19570         * ThemeWin32Classic.cs:
19571           - From John BouAntoun: Added an overload to CPDrawBorder3D to allow
19572             him using the function for flatstyle drawing
19573           - Changed functions to use the new version of CPDrawBorder3D
19575 2004-10-12 21:15  pbartok
19577         * ControlPaint.cs:
19578           - Fixed Dark(), DarkDark(), Light() and LightLight() methods to
19579             match MS documentation. They need to return defined colors if the
19580             passed color matches the configured control color. Thanks to John
19581             BouAntoun for pointing this out.
19583 2004-10-12 20:57  pbartok
19585         * Control.cs:
19586           - Fix from John BouAntoun: Raise ForeColorChanged event when text
19587             color is changed
19589 2004-10-12 20:46  pbartok
19591         * CheckBox.cs:
19592           - Fix from John BouAntoun: Now properly sets the Appearance property
19594 2004-10-12 20:45  pbartok
19596         * ThemeWin32Classic.cs:
19597           - Fixes from John BouAntoun: now handles forecolors and backcolors
19598             for flatstyle rendered controls much better; It also fixes normal
19599             checkbox rendering when pushed or disabled.
19601 2004-10-08 02:50  jordi
19603         * Form.cs, MainMenu.cs, Menu.cs, MenuAPI.cs, MenuItem.cs: more menu
19604           work
19606 2004-10-07 08:56  jordi
19608         * ThemeWin32Classic.cs: Removes deletion of cached brushes
19610 2004-10-06 03:59  jordi
19612         * Control.cs, StatusBar.cs, ThemeWin32Classic.cs, ToolBar.cs,
19613           XplatUIWin32.cs: removes warnings from compilation
19615 2004-10-05 12:23  jackson
19617         * RadioButton.cs: Fix ctor
19619 2004-10-05 11:10  pbartok
19621         * MessageBox.cs:
19622           - Partial implementation by Benjamin Dasnois
19624 2004-10-05 10:15  jackson
19626         * ThemeWin32Classic.cs: Improve rendering of the radio button patch
19627           by John BouAntoun
19629 2004-10-05 03:07  ravindra
19631         * ToolBar.cs:
19632                 - Removed a private method, Draw ().
19633                 - Fixed the ButtonDropDown event handling.
19634                 - Fixed MouseMove event handling.
19636 2004-10-05 03:04  ravindra
19638         * ThemeWin32Classic.cs:
19639                 - Added DrawListView method and ListViewDefaultSize property.
19640                 - Changed ControlPaint method calls to CPDrawXXX wherever possible.
19641                 - Changed DOS style CRLF to Unix format (dos2unix).
19643 2004-10-05 03:03  ravindra
19645         * Theme.cs:
19646                 - Added DrawListView method and ListViewDefaultSize property.
19648 2004-10-05 02:42  ravindra
19650         * ToolBarButton.cs: Added an internal member dd_pressed to handle
19651           clicks on DropDown arrow.
19653 2004-10-04 22:56  jackson
19655         * ButtonBase.cs, Label.cs, MenuAPI.cs, ProgressBar.cs,
19656           ScrollBar.cs, StatusBar.cs, ToolBar.cs, TrackBar.cs: Let the base
19657           Control handle the buffers, derived classes should not have to
19658           CreateBuffers themselves.
19660 2004-10-04 21:20  jackson
19662         * StatusBar.cs: The control handles resizing the buffers now.
19664 2004-10-04 21:18  jackson
19666         * Control.cs: When resizing the buffers should be invalidated. This
19667           should be handled in Control not in derived classes.
19669 2004-10-04 14:45  jackson
19671         * TabPage.cs: oops
19673 2004-10-04 02:14  pbartok
19675         * LeftRightAlignment.cs:
19676           - Initial check-in
19678 2004-10-04 01:09  jordi
19680         * ThemeWin32Classic.cs: fixes right button position causing right
19681           button not showing on horizontal scrollbars
19683 2004-10-02 13:12  pbartok
19685         * XplatUIX11.cs:
19686           - Simplified the Invalidate method by using an X call instead of
19687             generating the expose ourselves
19688           - Added an expose when the window background is changed
19689           - Implemented ClientToScreen method
19691 2004-10-02 13:08  pbartok
19693         * XplatUIWin32.cs:
19694           - Added Win32EnableWindow method (test for implementing modal
19695           dialogs)
19696           - Added ClientToScreen method and imports
19698 2004-10-02 13:07  pbartok
19700         * XplatUI.cs, XplatUIDriver.cs:
19701           - Added ClientToScreen coordinate translation method
19703 2004-10-02 13:06  pbartok
19705         * KeyPressEventArgs.cs:
19706           - Fixed access level for constructor
19708 2004-10-02 13:06  pbartok
19710         * NativeWindow.cs:
19711           - Changed access level for the window_collection hash table
19713 2004-10-02 13:05  pbartok
19715         * Form.cs:
19716           - Added KeyPreview property
19717           - Added Menu property (still incomplete, pending Jordi's menu work)
19718           - Implemented ProcessCmdKey
19719           - Implemented ProcessDialogKey
19720           - Implemented ProcessKeyPreview
19722 2004-10-02 13:02  pbartok
19724         * Control.cs:
19725           - Added private method to get the Control object from the window
19726           handle
19727           - Implemented ContextMenu property
19728           - Implemented PointToScreen
19729           - Implemented PreProcessMessage
19730           - Implemented IsInputChar
19731           - Implemented IsInputKey
19732           - Implemented ProcessCmdKey
19733           - Completed ProcessKeyEventArgs
19734           - Fixed message loop to call the proper chain of functions on key
19735           events
19736           - Implemented ProcessDialogChar
19737           - Implemented ProcessDialogKey
19738           - Implemented ProcessKeyMessage
19739           - Implemented ProcessKeyPreview
19740           - Added RaiseDragEvent stub (MS internal method)
19741           - Added RaiseKeyEvent stub (MS internal method)
19742           - Added RaiseMouseEvent stub (MS Internal method)
19743           - Added RaisePaintEvent stub (MS Internal method)
19744           - Added ResetMouseEventArgs stub (MS Internal method)
19745           - Implemented RtlTranslateAlignment
19746           - Implemented RtlTranslateContent
19747           - Implemented RtlTranslateHorizontal
19748           - Implemented RtlTranslateLeftRight
19749           - Added generation of KeyPress event
19751 2004-10-02 05:57  ravindra
19753         * ListViewItem.cs: Added attributes.
19755 2004-10-02 05:32  ravindra
19757         * ListView.cs: Added attributes.
19759 2004-10-01 11:53  jackson
19761         * Form.cs: Implement the Close method so work on MessageBox can
19762           continue.
19764 2004-09-30 14:06  pbartok
19766         * XplatUIX11.cs:
19767           - Bug fixes
19769 2004-09-30 11:34  jackson
19771         * RadioButton.cs: Fix typo. Patch by John BouAntoun.
19773 2004-09-30 07:26  ravindra
19775         * ListViewItemConverter.cs: Converter for ListViewItem.
19777 2004-09-30 07:26  ravindra
19779         * SortOrder.cs: Enum for ListView control.
19781 2004-09-30 07:25  ravindra
19783         * ColumnHeader.cs: Supporting class for ListView control.
19785 2004-09-30 07:24  ravindra
19787         * ListView.cs, ListViewItem.cs: Initial implementation.
19789 2004-09-30 07:20  ravindra
19791         * ItemActivation.cs: Enum for ListView Control.
19793 2004-09-29 20:29  pbartok
19795         * XplatUIX11.cs:
19796           - Added lookup of pixel value for background color; tries to get a
19797             color 'close' to the requested color, it avoids having to create a
19798             colormap.  Depending on the display this could mean the used color
19799             is slightly off the desired color. Might have to change it to a more
19800             resource intensive colormap approach, but it will work as a
19801           workaround to avoid red screens.
19803 2004-09-29 14:27  jackson
19805         * XplatUIX11.cs: Set the X DisplayHandle in System.Drawing
19807 2004-09-28 12:44  pbartok
19809         * ButtonBase.cs, CheckBox.cs, ControlPaint.cs, GroupBox.cs,
19810           HScrollBar.cs, Label.cs, LinkLabel.cs, Panel.cs, PictureBox.cs,
19811           ProgressBar.cs, RadioButton.cs, ScrollBar.cs, StatusBar.cs,
19812           Theme.cs, ThemeGtk.cs, ThemeWin32Classic.cs, ToolBar.cs,
19813           TrackBar.cs, VScrollBar.cs:
19814           - Streamlined Theme interfaces:
19815             * Each DrawXXX method for a control now is passed the object for
19816               the control to be drawn in order to allow accessing any state the
19817               theme might require
19819             * ControlPaint methods for the theme now have a CP prefix to avoid
19820               name clashes with the Draw methods for controls
19822             * Every control now retrieves it's DefaultSize from the current
19823             theme
19825 2004-09-28 12:17  jackson
19827         * Button.cs: Do not redraw OnClick MouseUp/Down will handle the
19828           drawing
19830 2004-09-24 14:57  jackson
19832         * XplatUIX11.cs: Don't lock/enqueue/dequeue for unhandled messages.
19833           Gives us a nice little performance boost.
19835 2004-09-24 12:02  jackson
19837         * TabAlignment.cs, TabAppearance.cs, TabControl.cs, TabDrawMode.cs,
19838           TabPage.cs, TabSizeMode.cs: Partial implementation of the Tab
19839           Control and supporting classes. Initial checkin
19841 2004-09-23 13:08  jackson
19843         * Form.cs: Temp build fixage
19845 2004-09-23 01:39  ravindra
19847         * ItemChangedEventArgs.cs, ItemChangedEventHandler.cs,
19848           ItemCheckEventArgs.cs, ItemCheckEventHandler.cs,
19849           ItemDragEventArgs.cs, ItemDragEventHandler.cs,
19850           LabelEditEventArgs.cs, LabelEditEventHandler.cs: EventArgs and
19851           EventHandlers needed by ListView Control.
19853 2004-09-22 14:12  pbartok
19855         * ScrollableControl.cs:
19856           - Implemented DockPadding property
19857           - Implemented AutoScroll property
19858           - Implemented AutoScrollMargin property
19859           - Implemented AutoScrollMinSize property
19860           - Implemented AutoScrollPosition property
19861           - Implemented DisplayRectangle property (still incomplete)
19862           - Implemented CreateParams property
19863           - Implemented HScroll property
19864           - Implemented VScroll property
19865           - Implemented OnVisibleChanged property
19867 2004-09-22 14:09  pbartok
19869         * Form.cs:
19870           - Added Form.ControllCollection class
19871           - Added handling for Form owners: Owner, OwnedForms, AddOwnedForm,
19872             RemoveOwnedForm (still incomplete, missing on-top and common
19873             minimize/maximize behaviour)
19874           - Added StartPosition property (still incomplete, does not use when
19875             creating the form)
19876           - Added ShowDialog() methods (still incomplete, missing forcing the
19877             dialog modal)
19879 2004-09-22 14:05  pbartok
19881         * Application.cs:
19882           - Added message loop for modal dialogs
19884 2004-09-22 14:02  pbartok
19886         * GroupBox.cs:
19887           - Fixed wrong types for events
19889 2004-09-22 14:00  pbartok
19891         * Shortcut.cs, FormWindowState.cs:
19892           - Fixed wrong values
19894 2004-09-22 12:01  jackson
19896         * Control.cs: Text is never null
19898 2004-09-20 22:14  pbartok
19900         * XplatUIWin32.cs:
19901           - Fixed accessibility level for Idle handler
19903 2004-09-20 18:54  jackson
19905         * Application.cs, XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs,
19906           XplatUIX11.cs: New message loop that uses poll so we don't get a
19907           busy loop
19909 2004-09-17 10:43  pbartok
19911         * ScrollBar.cs:
19912           - Fixed behaviour of arrow buttons. Now properly behaves like
19913             Buttons (and like Microsoft's scrollbar arrow buttons)
19915 2004-09-17 10:14  pbartok
19917         * ScrollBar.cs:
19918           - Added missing release of keyboard/mouse capture
19920 2004-09-17 06:18  jordi
19922         * ContextMenu.cs, MainMenu.cs, Menu.cs, MenuAPI.cs, MenuItem.cs,
19923           Theme.cs: Very early menu support
19925 2004-09-16 17:45  pbartok
19927         * XplatUIWin32.cs:
19928           - Fixed sending a window to the front
19929           - Added overload for SetWindowPos to avoid casting
19931 2004-09-16 17:44  pbartok
19933         * Control.cs:
19934           - Added SendToBack and BringToFront methods
19936 2004-09-16 07:00  ravindra
19938         * Copyright: Added Novell URL.
19940 2004-09-16 07:00  ravindra
19942         * ToolBar.cs: Invalidate should be done before redrawing.
19944 2004-09-15 21:19  ravindra
19946         * ColumnHeaderStyle.cs: Enum for ListView Control.
19948 2004-09-15 21:18  ravindra
19950         * ColumnClickEventArgs.cs, ColumnClickEventHandler.cs: Event for
19951           ListView Control.
19953 2004-09-13 18:26  jackson
19955         * Timer.cs, XplatUIX11.cs: Remove test code so timers are updated
19956           properly
19958 2004-09-13 18:13  jackson
19960         * Timer.cs, X11Structs.cs, XplatUIX11.cs: Timers are now handled in
19961           a second thread and post messages into the main threads message
19962           queue. This makes timing much more consistent. Both win2K and XP
19963           have a minimum timer value of 15 milliseconds, so we now do this
19964           too.
19966 2004-09-13 15:18  pbartok
19968         * X11Structs.cs, XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs,
19969           XplatUIX11.cs:
19970           - Added Z-Ordering methods
19972 2004-09-13 10:56  pbartok
19974         * Form.cs:
19975           - Fixed #region names
19976           - Moved properties and methods into their proper #regions
19978 2004-09-13 10:51  pbartok
19980         * Form.cs:
19981           - Added Accept and CancelButton properties
19982           - Added ProcessDialogKey() method
19984 2004-09-13 08:18  pbartok
19986         * IWindowTarget.cs:
19987           - Initial check-in
19989 2004-09-10 21:50  pbartok
19991         * Control.cs:
19992           - Added DoDragDrop() [incomplete]
19993           - Properly implemented 'Visible' handling
19994           - Added SetVisibleCore()
19995           - Implemented FindChildAtPoint()
19996           - Implemented GetContainerControl()
19997           - Implemented Hide()
19999 2004-09-10 19:28  pbartok
20001         * Control.cs:
20002           - Moved methods into their appropriate #regions
20003           - Reordered methods within regions alphabetically
20005 2004-09-10 18:57  pbartok
20007         * XplatUIX11.cs, XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs:
20008           - Added method to retrieve text from window
20010 2004-09-10 18:56  pbartok
20012         * Control.cs:
20013           - Moved some internal functions into the internal region
20014           - Implemented FontHeight
20015           - Implemented RenderRightToLeft
20016           - Implemented ResizeRedraw
20017           - Implemented ShowFocusCues
20018           - Implemented ShowKeyboardCues
20019           - Implemented FromChildHandle
20020           - Implemented FromHandle
20021           - Implemented IsMnemonic
20022           - Implemented ReflectMessage
20023           - All public and protected Static Methods are now complete
20025 2004-09-10 16:54  pbartok
20027         * Control.cs:
20028           - Implemented remaining missing public instance properties
20029           - Alphabetized some out of order properties
20031 2004-09-10 05:51  ravindra
20033         * PictureBox.cs: Added a check for null image.
20035 2004-09-10 00:59  jordi
20037         * GroupBox.cs: remove cvs tag
20039 2004-09-09 05:25  ravindra
20041         * ToolBar.cs: Make redraw accessible from ToolBarButton.
20043 2004-09-09 05:23  ravindra
20045         * ToolBarButton.cs: Changes in ToolBarButton need to make it's
20046           parent redraw.
20048 2004-09-09 02:28  pbartok
20050         * ThemeWin32Classic.cs:
20051           - Improve disabled string look
20053 2004-09-09 01:15  jordi
20055         * MeasureItemEventArgs.cs, MeasureItemEventHandler.cs: measureitem
20056           args and handler
20058 2004-09-08 23:56  ravindra
20060         * ItemBoundsPortion.cs: It's enum, not a class!
20062 2004-09-08 23:47  ravindra
20064         * FormBorderStyle.cs, FormStartPosition.cs, FormWindowState.cs:
20065           Enums for Form.
20067 2004-09-08 21:13  ravindra
20069         * ItemBoundsPortion.cs, ListViewAlignment.cs, View.cs: Enums for
20070           ListView control.
20072 2004-09-08 21:03  ravindra
20074         * ThemeWin32Classic.cs: PictureBox would not draw a null image to
20075           avoid crash.
20077 2004-09-08 21:01  ravindra
20079         * ScrollableControl.cs: Removed unreachable code.
20081 2004-09-08 06:45  jordi
20083         * MenuMerge.cs, Shortcut.cs: enumerations need it by menus
20085 2004-09-08 01:00  jackson
20087         * XplatUIX11.cs: Only run the timers when updating the message
20088           queue. This effectively gives X messages a higher priority then
20089           timer messages. Timers still need love though
20091 2004-09-07 14:01  jackson
20093         * XplatUIX11.cs: Do not call XDestroyWindow, X has already done
20094           this for us and the handle is no longer valid.
20096 2004-09-07 13:59  jackson
20098         * HandleData.cs, XplatUIX11.cs: First steps towards a new X event
20099           loop that manages to not crash. TODO: Add poll and cleanup timers
20101 2004-09-07 11:12  jordi
20103         * GroupBox.cs, Theme.cs, ThemeWin32Classic.cs: GroupBox control
20105 2004-09-07 03:40  jordi
20107         * Label.cs, LinkLabel.cs, Theme.cs, ThemeWin32Classic.cs: LinkLabel
20108           fixes, methods, multiple links
20110 2004-09-06 06:55  jordi
20112         * Control.cs: Caches ClientRectangle rectangle value
20114 2004-09-05 02:03  jordi
20116         * ScrollBar.cs, ThemeWin32Classic.cs: fixes bugs, adds flashing on
20117           certain situations
20119 2004-09-04 11:10  jordi
20121         * Label.cs: Refresh when font changed
20123 2004-09-02 16:24  pbartok
20125         * Control.cs:
20126           - Added sanity check to creation of double buffer bitmap
20128 2004-09-02 16:24  pbartok
20130         * ButtonBase.cs:
20131           - Fixed selection of text color
20132           - Fixed handling of resize event; now properly recreates double
20133             buffering bitmap
20134           - Added missing assignment of TextAlignment
20135           - Added proper default for TextAlignment
20137 2004-09-02 14:26  pbartok
20139         * RadioButton.cs:
20140           - Added missing RadioButton.RadioButtonAccessibleObject class
20142 2004-09-02 14:26  pbartok
20144         * Control.cs:
20145           - Added missing Control.ControlAccessibleObject class
20146           - Started to implement Select()ion mechanisms, still very incomplete
20148 2004-09-02 14:25  pbartok
20150         * AccessibleObject.cs:
20151           - Added missing methods
20153 2004-09-02 14:23  pbartok
20155         * AccessibleNavigation.cs, AccessibleSelection.cs:
20156           - Initial check-in
20158 2004-09-02 10:32  jordi
20160         * Theme.cs, ThemeGtk.cs, ThemeWin32Classic.cs: implements resource
20161           pool for pens, brushes, and hatchbruses
20163 2004-09-01 15:30  jackson
20165         * StatusBar.cs: Fix typo
20167 2004-09-01 14:44  pbartok
20169         * RadioButton.cs:
20170           - Fixed state
20172 2004-09-01 14:39  pbartok
20174         * Button.cs, RadioButton.cs:
20175           - Functional initial check-in
20177 2004-09-01 14:01  pbartok
20179         * CheckBox.cs:
20180           - Added missing default
20181           - Added missing region mark
20183 2004-09-01 09:10  jordi
20185         * Label.cs: fixes method signatures, new methods, events, fixes
20186           autosize
20188 2004-09-01 07:19  jordi
20190         * Control.cs: Init string variables with an empty object
20192 2004-09-01 04:20  jordi
20194         * Control.cs: fires OnFontChanged event
20196 2004-08-31 20:07  pbartok
20198         * ButtonBase.cs:
20199           - Enabled display of strings
20201 2004-08-31 20:05  pbartok
20203         * Form.cs:
20204           - Added (partial) implementation of DialogResult; rest needs to be
20205             implemented when the modal loop code is done
20207 2004-08-31 19:55  pbartok
20209         * CheckBox.cs:
20210           - Fixed to match the removal of the needs_redraw concept
20212 2004-08-31 19:55  pbartok
20214         * ButtonBase.cs:
20215           - Removed the rather odd split between 'needs redraw' and redrawing
20216           - Now handles the events that require regeneration (ambient
20217             properties and size)
20219 2004-08-31 19:41  pbartok
20221         * Control.cs:
20222           - Added firing of BackColorChanged event
20223           - Added TopLevelControl property
20224           - Fixed handling of WM_ERASEBKGRND message
20226 2004-08-31 12:49  pbartok
20228         * ButtonBase.cs:
20229           - Removed debug
20230           - Minor fixes
20232 2004-08-31 12:48  pbartok
20234         * CheckBox.cs:
20235           - Finished (famous last words)
20237 2004-08-31 04:35  jordi
20239         * ScrollBar.cs: adds autorepeat timer, uses a single timer, fixes
20240           scrolling bugs, adds new methods
20242 2004-08-30 14:42  pbartok
20244         * CheckBox.cs:
20245           - Implemented CheckBox drawing code
20247 2004-08-30 14:42  pbartok
20249         * ButtonBase.cs:
20250           - Made Redraw() and CheckRedraw() virtual
20251           - Improved mouse up/down/move logic to properly track buttons
20253 2004-08-30 09:44  pbartok
20255         * CheckBox.cs:
20256           - Updated to fix broken build. Not complete yet.
20258 2004-08-30 09:28  pbartok
20260         * CheckState.cs:
20261           - Initial checkin
20263 2004-08-30 09:17  pbartok
20265         * Appearance.cs:
20266           - Initial check-in
20268 2004-08-27 16:12  ravindra
20270         * ToolBarButton.cs: Added TypeConverter attribute.
20272 2004-08-27 16:07  ravindra
20274         * ImageIndexConverter.cs: Implemented.
20276 2004-08-27 14:17  pbartok
20278         * Control.cs:
20279           - Removed unneeded stack vars
20280           - First attempt to fix sizing issues when layout is suspended
20282 2004-08-25 15:35  jordi
20284         * ScrollBar.cs: more fixes to scrollbar
20286 2004-08-25 14:04  ravindra
20288         * Theme.cs, ThemeWin32Classic.cs, ToolBar.cs, ToolBarButton.cs:
20289           Added the missing divider code and grip for ToolBar Control.
20291 2004-08-25 13:20  pbartok
20293         * Control.cs:
20294           - Control now properly passes the ambient background color to child
20295             controls
20297 2004-08-25 13:20  jordi
20299         * ScrollBar.cs: small bug fix regarding bar position
20301 2004-08-25 12:33  pbartok
20303         * Timer.cs:
20304           - Now only calls SetTimer or KillTimer if the enabled state has
20305           changed
20307 2004-08-25 12:33  pbartok
20309         * XplatUIWin32.cs:
20310           - Fixed timer handling, now seems to work
20311           - Improved error message for window creation
20313 2004-08-25 12:32  pbartok
20315         * Control.cs:
20316           - Fixed generation of MouseUp message
20318 2004-08-25 12:29  jordi
20320         * ProgressBar.cs, ThemeWin32Classic.cs: new methods, properties,
20321           and fixes for progressbar
20323 2004-08-24 18:43  ravindra
20325         * ThemeWin32Classic.cs, ToolBar.cs: Fixed wrapping related issues
20326           in ToolBar control.
20328 2004-08-24 17:15  pbartok
20330         * Panel.cs:
20331           - Added #region
20332           - Added missing events
20333           - Alphabetized
20335 2004-08-24 17:14  pbartok
20337         * StatusBar.cs, PictureBox.cs:
20338           - Now uses Control's CreateParams
20340 2004-08-24 16:36  pbartok
20342         * XplatUIX11.cs:
20343           - Fixed background color handling
20344           - Fixed sending of enter/leave events on a grab
20346 2004-08-24 16:35  pbartok
20348         * X11Structs.cs:
20349           - Refined definitions for CrossingEvent
20351 2004-08-24 12:37  jordi
20353         * ScrollBar.cs, Theme.cs, ThemeGtk.cs, ThemeWin32Classic.cs: fixes
20354           formmating, methods signature, and adds missing events
20356 2004-08-24 12:24  jordi
20358         * Control.cs: fire OnEnabledChanged event
20360 2004-08-24 11:17  pbartok
20362         * XplatUIWin32.cs:
20363           - Implemented SetTimer() and KillTimer()
20365 2004-08-24 11:16  pbartok
20367         * XplatUIX11.cs:
20368           - Now uses Remove instead of Add to kill the timer
20370 2004-08-24 10:16  jackson
20372         * PictureBox.cs, Theme.cs, ThemeWin32Classic.cs: Handle drawing
20373           picture boxes in the theme now. Draw picture box borders and obey
20374           sizing modes
20376 2004-08-24 05:49  jackson
20378         * Timer.cs: Remove top secret debugging code
20380 2004-08-24 05:34  jackson
20382         * PictureBox.cs: Temp hack to make picture boxes draw their full
20383           image
20385 2004-08-24 05:29  jackson
20387         * Timer.cs, XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs,
20388           XplatUIX11.cs: Move timers to the driver level. On X they are
20389           queued by the driver and checked on idle.
20391 2004-08-24 01:07  jackson
20393         * XplatUIX11.cs: Use a queue for async messages instead of passing
20394           them as ClientMessages since that was totally broken. Also simply
20395           check for events and return an idle message if none are found. This
20396           gives us an idle handler, and prevents deadlocking when no messages
20397           are in the queue.
20399 2004-08-23 18:19  ravindra
20401         * XplatUIWin32.cs: Removed the unwanted destructor.
20403 2004-08-23 17:27  pbartok
20405         * ButtonBase.cs:
20406           - Finishing touches. Works now, just needs some optimizations.
20408 2004-08-23 16:53  jordi
20410         * ScrollBar.cs: small fix
20412 2004-08-23 16:45  pbartok
20414         * Application.cs:
20415           - Removed debug output
20416           - Simplifications
20418 2004-08-23 16:43  jordi
20420         * ScrollBar.cs: [no log message]
20422 2004-08-23 16:10  pbartok
20424         * Form.cs:
20425           - Fixed handling of WM_CLOSE message
20426           - Removed debug output
20428 2004-08-23 16:09  pbartok
20430         * Application.cs:
20431           - Added handling of Idle event
20432           - Added handling of form closing
20433           - Fixed reporting of MessageLoop property
20434           - Removed some unneeded code, should provide a bit of a speedup
20436 2004-08-23 15:22  pbartok
20438         * Control.cs:
20439           - Added InitLayout() method
20440           - Added code to properly perform layout when Anchor or Dock property
20441             is changed
20442           - Changed 'interpretation' of ResumeLayout. MS seems to have a
20443             LAMESPEC, tried to do it in a way that makes sense
20445 2004-08-23 14:10  jordi
20447         * HScrollBar.cs, ScrollBar.cs, TrackBar.cs, VScrollBar.cs: fixes
20448           properties and methods
20450 2004-08-23 13:55  pbartok
20452         * Control.cs:
20453           - Properly fixed Jordi's last fix
20454           - Now uses Cursor's Position property instead of calling XplatUI
20455           directly
20457 2004-08-23 13:44  jordi
20459         * PaintEventHandler.cs: Adding missing attribute
20461 2004-08-23 13:39  pbartok
20463         * Cursor.cs:
20464           - Implemented Position property
20466 2004-08-23 13:39  pbartok
20468         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs:
20469           - Added method to move mouse cursor
20471 2004-08-23 13:39  pbartok
20473         * XplatUIX11.cs:
20474           - Fixed setting of background color
20475           - Added method to move mouse cursor
20477 2004-08-23 13:16  jordi
20479         * Control.cs: avoids null exception
20481 2004-08-22 17:46  jackson
20483         * PictureBox.cs, PictureBoxSizeMode.cs: Initial implementation of
20484           PictureBox
20486 2004-08-22 17:40  jackson
20488         * XplatUIX11.cs: Add some missing locks
20490 2004-08-22 15:10  pbartok
20492         * Control.cs, Form.cs:
20493           - Removed OverlappedWindow style from Control, instead it's default
20494             now is child
20495           - Made form windows OverlappedWindow by default
20497 2004-08-22 13:34  jackson
20499         * ScrollBar.cs: Update the position through the Value property so
20500           the OnValueChanged event is raised.
20502 2004-08-22 12:04  pbartok
20504         * SWF.csproj:
20505           - Added Cursor.cs and UserControl.cs
20507 2004-08-22 12:03  pbartok
20509         * Cursor.cs:
20510           - Started implementation, not usable yet
20512 2004-08-22 12:00  pbartok
20514         * UserControl.cs:
20515           - Implemented UserControl (complete)
20517 2004-08-21 19:20  ravindra
20519         * ToolBar.cs: Correcting the formatting mess of VS.NET.
20521 2004-08-21 18:49  ravindra
20523         * ToolBar.cs: Probably this completes the missing attributes in
20524           toolbar control.
20526 2004-08-21 18:03  ravindra
20528         * ToolBar.cs, ToolBarButton.cs, ToolBarButtonClickEventArgs.cs:
20529           Fixed toolbar control signatures.
20531 2004-08-21 16:32  pbartok
20533         * LinkLabel.cs:
20534           - Signature Fixes
20536 2004-08-21 16:30  pbartok
20538         * Label.cs:
20539           - Signature fixes
20541 2004-08-21 16:19  pbartok
20543         * Control.cs, Label.cs:
20544           - Signature fixes
20546 2004-08-21 15:57  pbartok
20548         * ButtonBase.cs:
20549           - Added loads of debug output for development
20550           - Fixed typo in method name
20552 2004-08-21 15:52  pbartok
20554         * ToolBarButtonClickEventArgs.cs:
20555           - Added missing base class
20557 2004-08-21 14:53  pbartok
20559         * Control.cs:
20560           - Updated to match new GrabWindow signature
20562 2004-08-21 14:51  pbartok
20564         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIX11.cs:
20565           - Added method to get default display size
20567 2004-08-21 14:23  pbartok
20569         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIX11.cs:
20570           - Added method to query current grab state
20571           - Added argument to allow confining a grab to a window
20573 2004-08-21 14:22  pbartok
20575         * Keys.cs:
20576           - Added [Flags] attribute so that modifiers can be used in bitwise
20577           ops
20579 2004-08-21 14:21  pbartok
20581         * TrackBar.cs, ScrollBar.cs:
20582           - Replaced direct XplatUI calls with their Control counterpart
20584 2004-08-21 13:32  pbartok
20586         * Control.cs:
20587           - Implemented Created property
20589 2004-08-21 13:28  pbartok
20591         * Control.cs:
20592           - Implemented ContainsFocus
20594 2004-08-21 13:26  pbartok
20596         * Control.cs:
20597           - Implemented CausesValidation
20599 2004-08-21 13:21  pbartok
20601         * Control.cs:
20602           - Implemented CanFocus
20603           - Implemented CanSelect
20604           - Implemented Capture
20606 2004-08-21 12:35  pbartok
20608         * XplatUIWin32.cs:
20609           - Fixed bug with Async message handling
20610           - Implemented getting the ModifierKeys
20612 2004-08-21 12:32  jackson
20614         * AsyncMethodResult.cs: Make sure we have the mutex before we
20615           release it. Fixes BeginInvoke on windows
20617 2004-08-21 11:31  pbartok
20619         * XplatUIWin32.cs, XplatUIX11.cs:
20620           - Drivers now return proper mouse state
20622 2004-08-21 10:54  jackson
20624         * Control.cs: Implement EndInvoke
20626 2004-08-21 10:48  jackson
20628         * Timer.cs: Remove unneeded finalizer
20630 2004-08-20 19:52  ravindra
20632         * ThemeWin32Classic.cs, ToolBar.cs, ToolBarButton.cs: Improvments
20633           in mouse event handling in the ToolBar control.
20635 2004-08-20 19:50  ravindra
20637         * ImageList.cs: Changed draw method to use the arguments passed in
20638           to draw the image.
20640 2004-08-20 18:58  pbartok
20642         * XplatUIStructs.cs:
20643           - Added private message for async communication
20645 2004-08-20 17:38  ravindra
20647         * Control.cs: Made RightToLeft property virtual and removed a
20648           Console.WriteLine.
20650 2004-08-20 14:39  jordi
20652         * ThemeGtk.cs: use style_attach
20654 2004-08-20 14:39  pbartok
20656         * XplatUIWin32.cs:
20657           - Added jackson's Async code from X11 to Win32
20659 2004-08-20 14:09  pbartok
20661         * SWF.csproj:
20662           - Added all new files
20664 2004-08-20 14:09  pbartok
20666         * Control.cs:
20667           - Added call to set window background color
20669 2004-08-20 14:03  pbartok
20671         * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs:
20672           - Added method for setting the window background
20674 2004-08-20 14:02  pbartok
20676         * XplatUIWin32.cs:
20677           - Added method for setting the background color
20678           - Added handling for erasing the window background
20680 2004-08-20 13:45  jordi
20682         * TrackBar.cs: fixes timer, new properties and methods
20684 2004-08-20 13:34  jackson
20686         * ScrollBar.cs: Use the SWF timer so callbacks are run in the
20687           correct thread
20689 2004-08-20 13:22  jackson
20691         * Timer.cs: Timer Tick events are now handed through Controls Async
20692           mechanism so the callbacks are executed in the same thread as X
20694 2004-08-20 13:19  jackson
20696         * XplatUIDriver.cs: Expose functionality to send async messages
20697           through the driver
20699 2004-08-20 13:18  jackson
20701         * Control.cs: Implement Begininvoke
20703 2004-08-20 13:14  jackson
20705         * XplatUI.cs, XplatUIWin32.cs: Expose functionality to send async
20706           messages through the driver
20708 2004-08-20 13:12  jackson
20710         * XplatUIX11.cs: Lock before all X operations. Also added Async
20711           method functionality through XSendEvent
20713 2004-08-20 13:11  jackson
20715         * X11Structs.cs: Use IntPtrs for ClientMessage extra data (TODO:
20716           This will screw up on 64 bit systems)
20718 2004-08-20 13:10  jackson
20720         * AsyncMethodData.cs, AsyncMethodResult.cs: Classes for sending
20721           Async messages through X/Win32
20723 2004-08-19 19:39  pbartok
20725         * XplatUIX11.cs:
20726           - Updated code to match new HandleData.DeviceContext type
20728 2004-08-19 19:38  pbartok
20730         * HandleData.cs:
20731           - Made DeviceContext a generic object to allow usage from various
20732           drivers
20733           - Added support for queueing Windows messages
20735 2004-08-19 19:37  pbartok
20737         * XplatUIWin32.cs:
20738           - Added generation of MouseEnter, MouseLeave and MouseHover events
20739           - Added cleanup on EndPaint
20741 2004-08-19 19:17  pbartok
20743         * Control.cs:
20744           - Added handling of WM_MOUSEHOVER
20745           - Worked around 'bug' in Win32 WM_MOUSE_ENTER/WM_MOUSE_LEAVE driver
20746           code
20748 2004-08-19 18:55  jordi
20750         * ThemeGtk.cs: fixes button order
20752 2004-08-19 18:12  jordi
20754         * Theme.cs, ThemeWin32Classic.cs: fixes methods signature
20756 2004-08-19 17:09  pbartok
20758         * Control.cs:
20759           - Added Right property
20760           - Added RightToLeft property
20762 2004-08-19 16:27  jordi
20764         * ThemeGtk.cs: experimental GTK theme support
20766 2004-08-19 16:26  jordi
20768         * ITheme.cs, Theme.cs: move themes from an interface to a class
20770 2004-08-19 16:25  jordi
20772         * Control.cs, ScrollBar.cs, ThemeEngine.cs, ThemeWin32Classic.cs:
20773           theme enhancaments
20775 2004-08-19 16:04  pbartok
20777         * XplatUIX11.cs:
20778           - Added colormap basics
20779           - Added a way to re-initialize with a different display handle
20780           - Fixed setting of the window background color
20781           - Added various X11 imports related to colors and colormaps
20783 2004-08-19 15:51  pbartok
20785         * X11Structs.cs:
20786           - Removed packing hints (Paolo suggested this a while back)
20787           - fixed colormap type
20788           - Added default Atom types
20789           - Added Screen and color structs and enums
20791 2004-08-19 15:39  pbartok
20793         * ImageList.cs:
20794           - Added missing Draw() method
20795           - Added missing RecreateHandle event
20797 2004-08-19 15:30  pbartok
20799         * Form.cs:
20800           - Added handling of WM_CLOSE
20802 2004-08-18 13:16  jordi
20804         * ITheme.cs, ThemeWin32Classic.cs, XplatUIWin32.cs: Move colors to
20805           a table
20807 2004-08-18 09:56  jordi
20809         * ScrollBar.cs: fixes to scrollbar: steps and multiple timers
20811 2004-08-17 15:31  ravindra
20813         * SWF.csproj: Updated project.
20815 2004-08-17 15:25  pbartok
20817         * Control.cs:
20818           - Drawing improvement; don't call UpdateBounds if we are not visible
20819             (or have been minimized)
20821 2004-08-17 15:24  pbartok
20823         * XplatUIWin32.cs:
20824           - Finished IsVisible
20825           - Added Win32GetWindowPlacement
20827 2004-08-17 15:08  jackson
20829         * Panel.cs: Initial checkin of the Panel
20831 2004-08-17 14:25  pbartok
20833         * Control.cs:
20834           - Fixed broken handling of default window sizes
20836 2004-08-17 13:29  jackson
20838         * ThemeWin32Classic.cs: Don't use KnownColor to create colours. It
20839           has a large startup time.
20841 2004-08-17 10:25  jackson
20843         * HandleData.cs: union areas properly
20845 2004-08-17 10:12  jackson
20847         * HandleData.cs: union areas properly
20849 2004-08-16 20:00  ravindra
20851         * ToolBar.cs, ToolBarButton.cs: Added attributes.
20853 2004-08-16 18:48  ravindra
20855         * ToolBar.cs: Added attributes.
20857 2004-08-16 17:17  ravindra
20859         * SWF.csproj: Updated project.
20861 2004-08-16 17:16  jackson
20863         * XplatUIX11.cs: Check for more expose events before sending a
20864           WM_PAINT so they can all be grouped together. This makes dragging a
20865           window across another window redraw in a sane way.
20867 2004-08-16 15:47  pbartok
20869         * Control.cs:
20870           - Added handling of WM_MOUSE_ENTER & WM_MOUSE_LEAVE to
20871             support OnMouseEnter/Leave()
20872           - Added WS_CLIPSIBLINGS and WS_CLIPCHILDREN window styles to improve
20873             exposure handling
20875 2004-08-16 15:46  pbartok
20877         * XplatUIStructs.cs, XplatUIX11.cs:
20878           - Added WM_MOUSE_ENTER & WM_MOUSE_LEAVE to support
20879           OnMouseEnter/Leave()
20881 2004-08-16 15:34  jackson
20883         * XplatUIX11.cs: Group multiple expose events in HandleData, make
20884           sure messages get the message field set to WM_NULL if they are not
20885           handled.
20887 2004-08-16 15:24  jackson
20889         * HandleData.cs: HandleData is used for storing message information
20890           for window handles
20892 2004-08-15 17:23  ravindra
20894         * ColorDepth.cs: Added attribute.
20896 2004-08-15 17:23  ravindra
20898         * SWF.csproj: Updated project for ToolBar Control.
20900 2004-08-15 17:20  ravindra
20902         * ITheme.cs, ThemeWin32Classic.cs: Changes to Theme for ToolBar
20903           control and also dos2unix format.
20905 2004-08-15 17:13  ravindra
20907         * ToolBar.cs, ToolBarAppearance.cs, ToolBarButton.cs,
20908           ToolBarButtonClickEventArgs.cs,
20909           ToolBarButtonClickEventHandler.cs, ToolBarButtonStyle.cs,
20910           ToolBarTextAlign.cs: First Implementation of ToolBar control.
20912 2004-08-15 15:31  pbartok
20914         * ButtonBase.cs:
20915           - First (mostly) working version
20917 2004-08-13 16:15  pbartok
20919         * Control.cs:
20920           - Fixed Anchor default
20922 2004-08-13 15:43  pbartok
20924         * Control.cs:
20925           - Changed GetCursorPos signature
20927 2004-08-13 15:42  pbartok
20929         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs:
20930           - Changed signature for GetCursorPos
20932 2004-08-13 15:25  pbartok
20934         * XplatUIX11.cs:
20935           - Cleanup
20936           - Fixed resizing/exposure handling
20938 2004-08-13 15:22  jordi
20940         * ThemeWin32Classic.cs: removes redundant code and fixes issues
20941           with tickposition
20943 2004-08-13 14:55  jordi
20945         * TrackBar.cs: change from wndproc to events
20947 2004-08-13 13:00  jordi
20949         * Control.cs, XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs,
20950           XplatUIX11.cs: implements PointToClient (ScreenToClient)
20952 2004-08-13 12:53  pbartok
20954         * XplatUIWin32.cs:
20955           - Changed GetWindowPos to also provide client area size
20956           - Fixed broken prototypes for several win32 functions
20958 2004-08-13 12:53  pbartok
20960         * XplatUI.cs, XplatUIDriver.cs:
20961           - Changed GetWindowPos to also provide client area size
20963 2004-08-13 12:52  pbartok
20965         * XplatUIX11.cs:
20966           - Added generation of WM_POSCHANGED
20967           - Changed GetWindowPos to also provide client area size
20969 2004-08-13 12:52  pbartok
20971         * Control.cs:
20972           - Added Dispose() and destructor
20973           - Fixed resizing and bounds calculation
20974           - Fixed Layout
20975           - Added memory savings for invisible windows
20977 2004-08-13 12:46  jordi
20979         * TrackBar.cs: adds timer and grap window
20981 2004-08-13 10:25  jackson
20983         * Timer.cs: SWF Timer
20985 2004-08-12 16:59  pbartok
20987         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIX11.cs:
20988           - Implemented method to get current mouse position
20990 2004-08-12 14:29  jordi
20992         * ITheme.cs, ThemeWin32Classic.cs, TrackBar.cs: Trackbar
20993           enhancement, fix mouse problems, highli thumb, etc
20995 2004-08-12 13:31  pbartok
20997         * Control.cs:
20998           - Fixed Anchoring bugs
21000 2004-08-12 13:01  jackson
21002         * StatusBar.cs: Don't forget things
21004 2004-08-12 12:54  jackson
21006         * ThemeWin32Classic.cs: Handle owner draw status bars
21008 2004-08-12 12:54  jackson
21010         * StatusBar.cs: Implement missing properties, events, and methods.
21011           Handle mouse clicking
21013 2004-08-12 10:19  jackson
21015         * StatusBarPanelClickEventArgs.cs,
21016           StatusBarPanelClickEventHandler.cs: Classes for handling status
21017           bar panel click events
21019 2004-08-12 10:10  jackson
21021         * Control.cs: Add missing properties
21023 2004-08-12 09:46  pbartok
21025         * BindingsManagerBase.cs:
21026           - Name changed to BindingManagerBase.cs
21028 2004-08-12 09:25  jordi
21030         * ScrollableControl.cs: calls ctrlbase instead of exeception
21032 2004-08-11 16:28  pbartok
21034         * InputLanguageChangingEventArgs.cs:
21035           - Never check in before compiling. Fixes the last check-in
21037 2004-08-11 16:26  pbartok
21039         * InputLanguageChangingEventArgs.cs:
21040           - More signature fixes
21042 2004-08-11 16:20  pbartok
21044         * BindingManagerBase.cs, BindingMemberInfo.cs, ContainerControl.cs,
21045           Control.cs, ControlEventArgs.cs, ControlPaint.cs, Form.cs,
21046           ImageListStreamer.cs, InputLanguage.cs,
21047           InputLanguageChangedEventArgs.cs,
21048           InputLanguageChangingEventArgs.cs, Keys.cs, LayoutEventArgs.cs,
21049           LinkArea.cs, Message.cs, MouseEventArgs.cs, NativeWindow.cs,
21050           ScrollEventArgs.cs, ScrollableControl.cs, XplatUI.cs,
21051           XplatUIDriver.cs, XplatUIWin32.cs, XplatUIX11.cs:
21052           - Signature fixes
21054 2004-08-11 16:16  pbartok
21056         * Application.cs:
21057           - Fixed Signature
21058           - Added .Net 1.1 method
21060 2004-08-11 15:25  pbartok
21062         * SWF.csproj:
21063           - Fixed BindingManagerBase.cs filename
21065 2004-08-11 15:22  pbartok
21067         * BindingManagerBase.cs:
21068           - Was checked in with wrong filename
21070 2004-08-11 14:50  pbartok
21072         * SWF.csproj:
21073           - Updated
21075 2004-08-11 13:41  jordi
21077         * XplatUIWin32.cs: Fixes ClientRect
21079 2004-08-11 13:19  pbartok
21081         * Control.cs, XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs,
21082           XplatUIX11.cs:
21083           - We had SetWindowPos and MoveWindow to set window positions and
21084             size, removed MoveWindow. We have GetWindowPos, so it made sense to
21085             keep SetWindowPos as matching counterpart
21086           - Added some X11 sanity checking
21088 2004-08-11 12:59  pbartok
21090         * Control.cs:
21091           - Major cleanup of my SetBounds/SetBoundsCore/UpdateBounds mess
21092             (It seems that SetBounds is just a front for SetBoundsCore and
21093              SetBoundsCore updates the underlying window system and
21094              UpdateBounds is responsible for updating the variables associated
21095              with the Control and sending the events)
21096           - Major cleanup of Size handling; we now have two sizes, client_size
21097             and bounds. Bounds defines the window with decorations, client_size
21098             without them.
21100 2004-08-11 12:55  pbartok
21102         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIX11.cs:
21103           - Added method to calculate difference between decorated window and
21104             raw client area
21106 2004-08-11 12:54  pbartok
21108         * Label.cs:
21109           - Forcing redraw on resize
21111 2004-08-11 11:43  pbartok
21113         * ImageList.cs:
21114           - Removed disposing of the actual images when the list is disposed
21116 2004-08-11 09:13  pbartok
21118         * Control.cs:
21119           - Now properly reparents windows
21121 2004-08-11 08:37  pbartok
21123         * Control.cs:
21124           - Duh!
21126 2004-08-11 07:47  pbartok
21128         * Control.cs:
21129           - Rewrote the collection stuff. Might not be as fast now, not
21130             keeping the number of children around and accessible directly, but
21131             it's more straightforward
21133 2004-08-11 07:44  pbartok
21135         * AccessibleObject.cs:
21136           - Fixed to match ControlCollection rewrite
21138 2004-08-11 07:43  pbartok
21140         * ImageList.cs:
21141           - Added missing creation of the collection list
21143 2004-08-10 20:08  jackson
21145         * StatusBar.cs: Get the paint message from WndProc
21147 2004-08-10 19:31  jackson
21149         * ThemeWin32Classic.cs: Create Brushes as little as possible
21151 2004-08-10 19:20  jackson
21153         * UICues.cs: Add Flags attribute
21155 2004-08-10 19:19  jackson
21157         * StatusBarPanel.cs: Signature cleanup
21159 2004-08-10 19:10  jackson
21161         * StatusBarDrawItemEventArgs.cs, StatusBarDrawItemEventHandler.cs:
21162           Initial implementation of status bar item drawing
21164 2004-08-10 17:27  jordi
21166         * TrackBar.cs: add missing methods, properties, and restructure to
21167           hide extra ones
21169 2004-08-10 16:24  jackson
21171         * AccessibleStates.cs, Border3DSide.cs, Border3DStyle.cs,
21172           ButtonState.cs, ControlStyles.cs, DragDropEffects.cs: Add flags
21173           attribute
21175 2004-08-10 13:21  jordi
21177         * ITheme.cs, ScrollBar.cs, ThemeWin32Classic.cs: scrollbar
21178           enhancements and standarize on win colors defaults
21180 2004-08-10 12:52  jackson
21182         * DrawItemEventArgs.cs, DrawItemState.cs, ITheme.cs,
21183           ThemeWin32Classic.cs: Implement DrawItem functionality
21185 2004-08-10 12:47  jordi
21187         * XplatUIWin32.cs: Calls InvalidateRect before UpdateWindow
21189 2004-08-10 12:32  jordi
21191         * Control.cs: throw ontextchange event
21193 2004-08-10 11:43  pbartok
21195         * Control.cs:
21196           - Added more to the still unfinished Dock/Anchor layout code
21198 2004-08-10 11:39  pbartok
21200         * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs:
21201           - Added GetWindowPos method
21203 2004-08-10 11:36  pbartok
21205         * XplatUIWin32.cs:
21206           - Implemented several methods
21208 2004-08-10 09:47  jackson
21210         * TrackBar.cs: Allow control to handle buffering
21212 2004-08-10 09:41  jackson
21214         * ProgressBar.cs, ScrollBar.cs: Allow control to handle buffering
21216 2004-08-10 09:24  jackson
21218         * Label.cs, LinkLabel.cs: Let Control handle buffering.
21220 2004-08-10 09:09  jackson
21222         * StatusBar.cs: Let Control handle all the buffering.
21224 2004-08-10 09:08  jackson
21226         * Control.cs: Control will now handle the buffering code, so each
21227           control does not have to implement this.
21229 2004-08-10 08:34  jackson
21231         * XplatUIDriver.cs: Use default colors from the theme
21233 2004-08-09 17:12  pbartok
21235         * ImageList.cs:
21236           - Fixed several bugs Ravindra pointed out
21238 2004-08-09 16:11  pbartok
21240         * Control.cs:
21241           - Added incomplete dock layout code
21242           - Added support for mouse wheel
21244 2004-08-09 16:09  pbartok
21246         * XplatUIX11.cs:
21247           - Added handling for middle and right mousebutton
21248           - Added handling for mouse wheel
21249           - Added handling for key state and mouse state and position
21250           - Now properly generates WM_xBUTTONx messages and WM_MOUSEWHEEL
21251           messages
21253 2004-08-09 15:40  jackson
21255         * StatusBarPanel.cs, StatusBarPanelAutoSize.cs,
21256           StatusBarPanelBorderStyle.cs, StatusBarPanelStyle.cs: Initial
21257           checkin
21259 2004-08-09 15:37  jackson
21261         * StatusBar.cs: Initial implementation of StatusBar
21263 2004-08-09 15:36  jackson
21265         * ITheme.cs: Add support for drawing status bar and getting status
21266           bar item sizes
21268 2004-08-09 15:35  pbartok
21270         * MouseButtons.cs:
21271           - Fixed values
21273 2004-08-09 15:34  jackson
21275         * ThemeWin32Classic.cs: Add support for drawing status bar and get
21276           status bar item sizes
21278 2004-08-09 15:21  jackson
21280         * ThemeWin32Classic.cs: Use known colors for default control
21281           colours
21283 2004-08-09 15:12  jackson
21285         * ThemeWin32Classic.cs: Make the default font static, it is static
21286           in control so this doesn't change functionality and creating fonts
21287           is sloooooow.
21289 2004-08-09 14:56  pbartok
21291         * X11Structs.cs:
21292           - Added GrabMode enum
21294 2004-08-09 14:55  pbartok
21296         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIX11.cs:
21297           - Removed Run method, was only required for initial development
21299 2004-08-09 14:51  pbartok
21301         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIX11.cs:
21302           - Implemented GrabWindow/ReleaseWindow methods to allow pointer
21303           capture
21305 2004-08-09 13:48  pbartok
21307         * XplatUIX11.cs:
21308           - Fixed default sizing for child windows
21310 2004-08-09 12:56  pbartok
21312         * XplatUIX11.cs:
21313           - Added generation of WM_DESTROY message
21314           - Added handling of window manager induced shutdown
21316 2004-08-09 11:31  jackson
21318         * ThemeWin32Classic.cs: New names for control properties
21320 2004-08-09 11:25  jackson
21322         * Control.cs: Use new color names
21324 2004-08-09 11:02  jackson
21326         * XplatUI.cs: Get default window properties from the theme
21328 2004-08-09 11:01  jackson
21330         * ITheme.cs: The theme engine now controls default window
21331           properties
21333 2004-08-09 11:00  jackson
21335         * ThemeWin32Classic.cs: Add default window color properties
21337 2004-08-09 10:17  jackson
21339         * ThemeWin32Classic.cs: Use correct default back color
21341 2004-08-09 10:05  jackson
21343         * XplatUIWin32.cs, XplatUIX11.cs: These properties are handled by
21344           the theme now.
21346 2004-08-09 09:56  jackson
21348         * XplatUI.cs: Remove defaults, these are handled by the theme now.
21350 2004-08-09 09:54  jackson
21352         * Control.cs: Get default properties from the theme.
21354 2004-08-09 09:53  jackson
21356         * ITheme.cs: Themes now handle default control properties
21358 2004-08-09 09:53  jackson
21360         * ThemeWin32Classic.cs: Themes now handle default control
21361           properties so coloring will be consistent
21363 2004-08-08 16:54  jordi
21365         * ITheme.cs, ThemeWin32Classic.cs: Label BorderStyles
21367 2004-08-08 15:08  jordi
21369         * XplatUIX11.cs: fixes keyboard crash
21371 2004-08-08 13:47  jordi
21373         * Label.cs: add cvs header info
21375 2004-08-08 12:09  jackson
21377         * ThemeWin32Classic.cs: Add pen_buttonface
21379 2004-08-08 11:52  jordi
21381         * Label.cs, LinkLabel.cs: [no log message]
21383 2004-08-08 11:34  jordi
21385         * ThemeWin32Classic.cs: Use Windows Standard Colours
21387 2004-08-07 17:32  jordi
21389         * TrackBar.cs: throw exceptions of invalid enums values
21391 2004-08-07 17:31  jordi
21393         * Label.cs, LinkLabel.cs, ThemeWin32Classic.cs: fixes label bug and
21394           draw method name
21396 2004-08-07 16:56  jackson
21398         * HorizontalAlignment.cs: Initial checkin
21400 2004-08-07 13:16  jordi
21402         * Label.cs, LinkLabel.cs: throw exceptions, fixes events, missing
21403           methods
21405 2004-08-07 13:05  jordi
21407         * ITheme.cs, ThemeWin32Classic.cs: Theme colour support and
21408           GetSysColor defines
21410 2004-08-06 18:01  pbartok
21412         * ThemeWin32Classic.cs:
21413           - Fixed some rounding issues with float/int
21415 2004-08-06 18:00  jackson
21417         * DockStyle.cs, AnchorStyles.cs:
21419                   Add flags and serializable attributes.
21421 2004-08-06 17:46  pbartok
21423         * XplatUIX11.cs:
21424           - Implemented GetParent
21426 2004-08-06 17:18  pbartok
21428         * TrackBar.cs:
21429           - Fixed some rounding issues with float/int
21431 2004-08-06 17:17  pbartok
21433         * X11Structs.cs, XplatUIX11.cs:
21434           - Fixed Refresh and Invalidate
21436 2004-08-06 15:30  pbartok
21438         * Control.cs, X11Structs.cs, XplatUIX11.cs:
21439           - Fixed recursive loop when resizing
21440           - Improved/fixed redrawing on expose messages
21442 2004-08-06 09:53  jordi
21444         * Control.cs, X11Structs.cs, XplatUIWin32.cs, XplatUIX11.cs: X11
21445           keyboard navigation
21447 2004-08-06 08:02  pbartok
21449         * X11Structs.cs, XplatUIX11.cs:
21450           - Fixed reparenting
21451           - Fixed window border creation
21453 2004-08-05 15:38  pbartok
21455         * XplatUIX11.cs:
21456           - Attempted fix for reparenting problems
21458 2004-08-04 15:14  pbartok
21460         * Control.cs:
21461           - Fixed Invalidation bug (calculated wrong client area)
21462           - Added ClientSize setter
21464 2004-08-04 15:13  pbartok
21466         * Form.cs:
21467           - Added AutoScale properties
21469 2004-08-04 15:13  pbartok
21471         * SWF.csproj:
21472           - Added latest files
21474 2004-08-04 14:11  pbartok
21476         * Control.cs, XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs,
21477           XplatUIX11.cs:
21478           - Added Invalidate handling
21480 2004-08-03 17:09  jordi
21482         * XplatUIDriver.cs: fixes spelling mistake
21484 2004-07-27 09:53  jordi
21486         * TrackBar.cs: fixes trackbar events, def classname, methods
21487           signature
21489 2004-07-27 09:29  jordi
21491         * ScrollBar.cs: fixes scrollbar events
21493 2004-07-27 04:38  jordi
21495         * Control.cs: changes to be able to run winforms samples
21497 2004-07-26 11:42  jordi
21499         * ControlPaint.cs, ITheme.cs, ProgressBar.cs, ScrollBar.cs,
21500           ThemeEngine.cs, ThemeWin32Classic.cs, TrackBar.cs: Theme support
21502 2004-07-26 05:41  jordi
21504         * MessageBox.cs, MessageBoxButtons.cs, MessageBoxDefaultButton.cs,
21505           MessageBoxIcon.cs, MessageBoxOptions.cs: initial messagebox
21506           implementation
21508 2004-07-22 09:22  jordi
21510         * LinkLabel.cs, LinkLabelLinkClickedEventHandler.cs: link label:
21511           check link overlapping, implement events, and fixes
21513 2004-07-21 10:28  jordi
21515         * DialogResult.cs, IButtonControl.cs: fixes comments filenames
21517 2004-07-21 10:19  jordi
21519         * DialogResult.cs, IButtonControl.cs, Label.cs, LinkArea.cs,
21520           LinkBehavior.cs, LinkClickedEventArgs.cs, LinkLabel.cs,
21521           LinkLabelLinkClickedEventArgs.cs,
21522           LinkLabelLinkClickedEventHandler.cs, LinkState.cs,
21523           XplatUIWin32.cs, LinkClickedEventHandler.cs: LinkLabel control
21524           implementation
21526 2004-07-19 13:09  jordi
21528         * Control.cs, Label.cs: label control re-written: added missing
21529           functionlity, events, and properties
21531 2004-07-19 10:49  jordi
21533         * Control.cs: fixes SetBounds logic
21535 2004-07-19 01:29  jordi
21537         * Control.cs: Call RefreshWindow only if the window has created
21539 2004-07-15 14:05  pbartok
21541         * ColorDepth.cs, ImageList.cs, ImageListStreamer.cs, SWF.csproj:
21542           - Implemented ImageList and ImageList.ImageCollection classes
21543           - Added ColorDepth enumeration
21544           - Updated SWF VS.Net project
21546 2004-07-15 11:06  jordi
21548         * XplatUIStructs.cs: added MsgButons enum
21550 2004-07-15 11:03  jordi
21552         * Control.cs: added basic mouse handeling events
21554 2004-07-15 03:38  jordi
21556         * Orientation.cs, TickStyle.cs, TrackBar.cs: Horizontal and
21557           Vertical TrackBar control implementation
21559 2004-07-13 09:33  jordi
21561         * HScrollBar.cs, VScrollBar.cs: vertical and hort. classes commit
21563 2004-07-13 09:31  jordi
21565         * Control.cs, Form.cs: commit: new properties and fixes form size
21566           problems
21568 2004-07-09 14:13  miguel
21570         * ProgressBar.cs: Spelling
21572 2004-07-09 11:25  pbartok
21574         * ProgressBar.cs:
21575           - Removed usage of Rectangle for drawing. Miguel pointed out it's
21576           faster
21578 2004-07-09 11:17  miguel
21580         * ProgressBar.cs: 2004-07-09  Miguel de Icaza  <miguel@ximian.com>
21582                 * ProgressBar.cs: Fixed spelling for `block'
21584                 drawProgressBar: renamed to `DrawProgressBar' to follow the coding
21585                 style guidelines.
21587                 Avoid using the += on rect.X, that exposed a bug in the compiler.
21589 2004-07-08 23:21  pbartok
21591         * AccessibleObject.cs, AccessibleRole.cs, AccessibleStates.cs,
21592           AnchorStyles.cs, Application.cs, ApplicationContext.cs,
21593           BaseCollection.cs, Binding.cs, BindingContext.cs,
21594           BindingMemberInfo.cs, BindingsCollection.cs,
21595           BindingsManagerBase.cs, Border3DSide.cs, Border3DStyle.cs,
21596           BorderStyle.cs, BoundsSpecified.cs, ButtonBorderStyle.cs,
21597           ButtonState.cs, CaptionButton.cs, CheckBox.cs,
21598           ContainerControl.cs, Control.cs, ControlEventArgs.cs,
21599           ControlEventHandler.cs, ControlPaint.cs, ControlStyles.cs,
21600           ConvertEventArgs.cs, ConvertEventHandler.cs, Copyright,
21601           CreateParams.cs, DockStyle.cs, DragAction.cs, DragDropEffects.cs,
21602           DragEventArgs.cs, DragEventHandler.cs, FlatStyle.cs, Form.cs,
21603           FrameStyle.cs, GiveFeedbackEventArgs.cs,
21604           GiveFeedbackEventHandler.cs, HelpEventArgs.cs,
21605           HelpEventHandler.cs, IContainerControl.cs, IDataObject.cs,
21606           IMessageFilter.cs, IWin32Window.cs, ImeMode.cs, InputLanguage.cs,
21607           InputLanguageChangedEventArgs.cs,
21608           InputLanguageChangedEventHandler.cs,
21609           InputLanguageChangingEventArgs.cs,
21610           InputLanguageChangingEventHandler.cs, InputLanguageCollection.cs,
21611           InvalidateEventArgs.cs, InvalidateEventHandler.cs,
21612           KeyEventArgs.cs, KeyEventHandler.cs, KeyPressEventArgs.cs,
21613           KeyPressEventHandler.cs, Keys.cs, Label.cs, LayoutEventArgs.cs,
21614           LayoutEventHandler.cs, MenuGlyph.cs, Message.cs, MouseButtons.cs,
21615           MouseEventArgs.cs, MouseEventHandler.cs, NativeWindow.cs,
21616           PaintEventArgs.cs, PaintEventHandler.cs, ProgressBar.cs,
21617           QueryAccessibilityHelpEventArgs.cs,
21618           QueryAccessibilityHelpEventHandler.cs,
21619           QueryContinueDragEventArgs.cs, QueryContinueDragEventHandler.cs,
21620           RightToLeft.cs, SWF.csproj, SWF.csproj.user, ScrollBar.cs,
21621           ScrollBars.cs, ScrollButton.cs, ScrollEventArgs.cs,
21622           ScrollEventHandler.cs, ScrollEventType.cs, ScrollableControl.cs,
21623           TODO, TODOAttribute.cs, UICues.cs, UICuesEventArgs.cs,
21624           UICuesEventHandler.cs, X11Structs.cs, XplatUI.cs,
21625           XplatUIDriver.cs, XplatUIStructs.cs, XplatUIWin32.cs,
21626           XplatUIX11.cs, lang.cs:
21627           - Initial check-in