* TextBoxBase.cs: Use the new SuspendRecalc/ResumeRecalc methods
[mono-project.git] / mcs / class / Managed.Windows.Forms / System.Windows.Forms / ChangeLog
blobed551674573c5793318f5a697da73b3d234c302f
1 2007-01-16  Jackson Harper  <jackson@ximian.com>
3         * TextBoxBase.cs: Use the new SuspendRecalc/ResumeRecalc methods
4         that allow us to have nested recalc = false blocks.
5         - Add paste support for images in the RichTextBox
6         * RichTextBox.cs: flush the text after the color is changed, so
7         the change takes effect.
8         - Use SuspendRecalc
9         - Some extra debugging info
10         * TextControl.cs: Tags no longer track their length, it is just
11         computed from the next tags length, this makes things a little
12         simpler and reduces places that we have to track length changes.
13         - Refactored the linetag class a little so we could make it
14         a base class for different kinds of tags
15         - Created a image tag, a tag that can have a single image inserted
16         into it
17         - Replace the norecalc flag with a Suspend/Resume Recalc pair, so
18         that we can call suspend multiple times.
19         - Add some debugging methods
21 2007-01-16  Rolf Bjarne Kvinge  <RKvinge@novell.com>
23         * MdiClient.cs: Add ActivatePreviousChild for 
24         mdi child window navigation.
25         * Form.cs: Use MdiClient.ActivateNextChild/
26         ActivatePreviousChild instead of Form.SelectNextControl
27         to select the next/previous child since 
28         SelectNextControl doesn't do it in the same order
29         as mdi children should do it.
31 2007-01-16  Chris Toshok  <toshok@ximian.com>
33         * Control.cs: remove container_selected field.
35 2007-01-16  Rolf Bjarne Kvinge  <RKvinge@novell.com>
37         * MdiClient.cs: Update main form's ActiveChild when
38         updating keyboard focus for the mdi child.
40 2007-01-16  Jonathan Pobst  <jpobst@novell.com>
42         * Control.cs: PreferredSize fix.
44         * Form.cs: Add several 2.0 events, properties, and methods.
46 2007-01-16  Gert Driesen  <drieseng@users.sourceforge.net>
48         * Form.cs: Provide meaningful message when MdiParent is assigned a
49         Form that is not an MdiContainer.
51 2007-01-16  Rolf Bjarne Kvinge  <RKvinge@novell.com>
53         * MdiClient.cs: Update main form's ActiveChild when
54         activating a mdi child.
56 2007-01-16  Rolf Bjarne Kvinge  <RKvinge@novell.com>
58         * MdiWindowManager.cs: Fix NRE when merging menus and main form
59         doesn't have a menu.
61         * Form.cs: Request NCRecalc after creating a mdi child window.
62         Implement mdi key handling (Ctrl+F4, Ctrl+Shift+F4, Ctrl+Tab, 
63         Ctrl+Shift+Tab, Ctrl+F6 and Ctrl+Shift+F6).
64         
65         * MdiClient.cs: Add new method SendFocusToActiveChild that either
66         sends keyboard focus to the active child, or to the MdiClient
67         if there are no child forms.
68         
69 2007-01-15  Chris Toshok  <toshok@ximian.com>
71         * ListView.cs: drop the *Internal overrides, just do our work in
72         ItemControl's WndProc instead.
74         * UpDownBase.cs: a few large changes.  Fix up the Selectable state
75         of the various controls, and forward the events properly (in the
76         same manner as MS) from the textbox to the UpDown.  Also the
77         ActiveControl of the UpDownBase gets set properly now.  Finally,
78         we don't call UpdateEditText from the ctor.  Fixes bug #79957.
80         * NumericUpDown.cs: set Text in the ctor.
82         * DomainUpDown.cs: call UpdateEditText in the ctor.
83         
84         * TextBox.cs: on ms.net, WM_LBUTTONDOWN sets focus on the textbox,
85         so even a Selectable = false textbox can be focused if you click
86         in it.  Go figure.
88         * Control.cs: remove On{Got,Lost}FocusInternal.  Subclasses can
89         just add their handling in their respective WndProc's.  Also add
90         an explicit FocusInternal method that doesn't consult CanFocus
91         before calling Select(this).
93         * TextBoxBase.cs: deal with removal of the FocusInternal calls -
94         do our work in WndProc instead.
96         * TabControl.cs: same.
98         * ComboBox.cs: same.
100 2007-01-15  Everaldo Canuto  <everaldo@simios.org>
102         * Menu.cs: implement MergeItems and Replace for MenuMerge method.
103         Fixes #80006.
105 2007-01-15 Carlos Alberto Cortez <calberto.cortez@gmail.com>
107         * ListViewItem.cs:
108         * ThemeWin32Classic.cs: Don't draw the item text outside
109         item bounds in Details view, as well as use trimming.
110         Fixes bug #80376.
112 2007-01-15  Jonathan Pobst  <jpobst@novell.com>
114         * Form.cs: Implement Form.ShowIcon.
115         
116         * XplatUIWin32.cs: Allow the SetIcon win32 call to set the icon to
117         null, which when combined with the DlgModalFrame window style removes
118         the icon from the title bar.
120 2007-01-15  Jonathan Pobst  <jpobst@novell.com>
122         * Control.cs: Call OnMouseClick after OnClick. (2.0)
124 2007-01-15  Everaldo Canuto  <everaldo@simios.org>
126         * MdiWindowManager.cs: In CreateMaximizedMenu fix a position of icon
127         menu when mdi child windows theres a menu, uses insert to get icon
128         at first position. Partially fix #80006.
130 2007-01-15  Jonathan Pobst  <jpobst@novell.com>
132         * Clipboard.cs: Implement 2.0 methods.
134 2007-01-15  Everaldo Canuto  <everaldo@simios.org>
136         * Menu.cs: Implement Insert method of MenuItemCollection class
137         to fix MenuMerge.
139 2007-01-14  Carlos Alberto Cortez <calberto.cortez@gmail.com>
141         * ListView.cs: Implement 2.0 FindItemWithText method.
143 2007-01-11  Everaldo Canuto  <everaldo@simios.org>
145         * Form.cs: When process WM_NCCALCSIZE message use ClienSize.Width
146         to calculate menu bar size. Fixes #80290.
148 2007-01-11  Everaldo Canuto  <everaldo@simios.org>
150         * ThemeWin32Classic.cs: Fix position of menuitem check mark.
152 2007-01-11  Chris Toshok  <toshok@ximian.com>
154         * XplatUIX11.cs: don't send duplicate WM_ACTIVATE messages to the
155         initial form.
157 2007-01-11  Chris Toshok  <toshok@ximian.com>
159         * LinkLabel.cs: make sure to call base.Select in our Select method
160         if it turns out we're going to be selected (i.e. if we have a link
161         that is going to receive focus).  That way our container's
162         ActiveControl is updated properly.
164 2007-01-11  Chris Toshok  <toshok@ximian.com>
166         * LinkLabel.cs: turns out that LinkLabels are only Selectable if
167         they have 1 or more links.  this fixes the crash gert reported.
169 2007-01-11  Andreia Gaita  <avidigal@novell.com>
171         * ContainerControl.cs: Remove ContainerSelected flag, not needed
172         anymore.
174         * Control.cs (Controls.Add): Check if control to be added to the collection
175         is a top level control, and throw an ArgumentException if it is.
176         Remove ContainerSelectedFlag, not needed anymore.
178         * XplaUIWin32.cs (SetTopMost): Add flag SWP_NOACTIVATE so that setting the
179         top most control doesn't activate the form. This fixes a problem in the
180         MessageBox, where the default button wouldn't get focus because the form
181         was activated before being Loaded - when the Owner is set, SetTopMost is
182         called, and it would activate it.
184 2007-01-11  Jonathan Pobst  <jpobst@novell.com>
186         * Button.cs: When clicked and setting the parent form's DialogResult,
187         use FindForm instead of Parent, since parent could be a container
188         control and not the Form.  Fixes bug #80495.
190 2007-01-10  Chris Toshok  <toshok@ximian.com>
192         * Form.cs: move the call to SendControlFocus into the same
193         is_loaded check.
195 2007-01-10  Chris Toshok  <toshok@ximian.com>
197         * UpDownBase.cs (.ctor): remove the ActiveControl assignment here.
198         It breaks in the face of the new ActiveControl stuff, and should
199         be unnecessary.
201         * Form.cs (WndProc): in the WM_ACTIVATE case, we need to set the
202         activecontrol's focus if it's not already set, after we set
203         ActiveControl, but before we call OnActivated.  Re-fixes #79667
204         after the previous focus/active control fixes regressed it.
206         * Control.cs: reindent some code.
207         
208 2007-01-10  Chris Toshok  <toshok@ximian.com>
210         * Splitter.cs: clearing some outstanding changes from my tree.
211         Replace all accesses (not writes) to the internal dock_style field
212         with the Dock property.
214 2007-01-10  Chris Toshok  <toshok@ximian.com>
216         * Control.cs: make FireEnter, FireLeave, FireValidating, and
217         FireValidated virtual.
219         * Form.cs: override and don't chain up calls to FireEnter and
220         FireLeave.
222 2007-01-10  Carlos Alberto Cortez <calberto.cortez@gmail.com>
224         * ListView.cs: Add more text padding space when using
225         auto resize for columns (the previous value didn't work fine).
227         * ThemeWin32Classic.cs: Update text position inside columns,
228         to match the appeareance of .Net.
230         * ColumnHeader.cs: When using auto resize, only the Width should
231         depend on the sub items, not the Height. Also, set width after
232         auto resizing (the value of Width should never remain as -1 or -2).
234 2007-01-10  Chris Toshok  <toshok@ximian.com>
236         * Application.cs: fix compilation errors when debug is enabled.
238 2007-01-10  Chris Toshok  <toshok@ximian.com>
240         * ContainerControl.cs (set_ActiveControl): rework this a bit (and
241         add some nice ascii art pictures and explanation of the process).
242         (GetMostDeeplyNestedActiveControl): new utility function we need
243         because our ActiveControl can refer to a child container with its
244         own ActiveControl.
246         * Form.cs (OnActivated): remove the call to SelectActiveControl
247         from here, since you can override this method and not chain up,
248         and winforms still sets the active control.
249         (OnCreateControl): also remove the unnecessary SelectActiveControl
250         call from here.
251         (WndProc): it's actually called from the WM_ACTIVATE block, just
252         before calling OnActivated.
254         * Control.cs (Select (Control)): move the call to XplatUI.SetFocus
255         inside the else.  the ActiveControl setter will end up setting
256         focus on @control.  This keeps us from setting it again (and
257         generating an extra LostFocus/GotFocus pair).
258         (Select (bool, bool)): reindent.
260 2007-01-10  Jonathan Pobst  <jpobst@novell.com>
262         * FlowLayoutPanel.cs, MenuStrip.cs, SplitContainer.cs, SplitterPanel.cs,
263         StatusStrip.cs, TableLayoutPanel.cs, TableLayoutStyleCollection.cs,
264         ToolStrip.cs, ToolStripComboBox.cs, ToolStripContainer.cs,
265         ToolStripContentPanel.cs, ToolStripControlHost.cs, ToolStripDropDown.cs,
266         ToolStripDropDownButton.cs, ToolStripDropDownItem.cs, ToolStripDropDownMenu.cs,
267         ToolStripItem.cs, ToolStripMenuItem.cs, ToolStripPanel.cs, ToolStripPanelRow.cs,
268         ToolStripSeparator.cs, ToolStripSplitButton.cs, ToolStripStatusLabel.cs
269         ToolStripTextBox.cs: Another wave of corcompare work.
271 2007-01-09  Carlos Alberto Cortez <calberto.cortez@gmail.com>
273         * ColumnHeader.cs: Implement 2.0 AutoResize method using
274         the Width property.
276         * ListView.cs: Implement 2.0 AutoResizeColumn and AutoResizeColumns
277         methods by callling Column.AutoResize method on columns.
279 2007-01-09  Jonathan Pobst  <monkey@jpobst.com>
281         * Control.cs: Provide proper implementations of PreferredSize
282         and GetPreferredSize (2.0).
284 2007-01-09  Jonathan Pobst  <monkey@jpobst.com>
286         * Form.cs: Remove one character (!) to make my previous OnClosing
287         stuff work for modal windows like MessageBox.
289 2007-01-09  Carlos Alberto Cortez <calberto.cortez@gmail.com>
291         * ListView.cs:
292         * ThemeWin32Classic.cs: Use ListView.GetReorderedColumn instead of
293         ListView.Columns to get the last displayed column. Fixes #80452.
295 2007-01-09  Everaldo Canuto  <everaldo@simios.org>
297         * Label.cs, LinkLabel.cs: Source code identation fixes.
299 2007-01-08  Everaldo Canuto  <everaldo@simios.org>
301         * ToolBarButton.cs: Remove InvalidateBorder and use Invalidate instead,
302         we dont need to invalidate only borders because when we invalidate four
303         border lines the invalidate's generates a complete redraw of button, 
304         because it now invalidate a complete rect some other redraws operations
305         are fixed. Fixes #80196.
306         
307         * Theme.cs, ThemeNice.cs, ThemeClearLooks.cs, ThemeWin32Classic.cs:
308         Remove ToolBarInvalidateEntireButton as it is not used.
310 2007-01-08  Jonathan Pobst  <monkey@jpobst.com>
311         
312         * Form.cs: Make sure that both OnClosing and OnFormClosing are
313         called for 2.0 profile.
314         * CloseReason.cs: Make class internal for 1.1.
316 2007-01-08  Jonathan Pobst  <monkey@jpobst.com>
318         * ToolStripManager.cs: Implement FindToolStrip functionality.
319         * ToolStrip.cs: Register and unregister with ToolStripManager.
321 2007-01-07  Jonathan Pobst  <monkey@jpobst.com>
323         * Control.cs: This was messy.  2.0 moves much of ControlCollection
324         to ArrangedElementCollection.  Implemented this with as few #if's as 
325         possible (which is still too many).
327 2007-01-07  Jonathan Pobst  <monkey@jpobst.com>
329         * Control.cs: Implement SizeFromClientSize() [2.0].
331 2007-01-07  Everaldo Canuto  <everaldo@simios.org>
333         * Hwnd.cs: On GetClientRectangle add a new parameter border_static,
334         use Theme.BorderSize to calculate area instead of static value 1, 
335         by the way use new BorderStaticSize instead     Border3DSize when 
336         border_static is true. Fixes #79537.
337         
338         * XplatUIOSX.cs: Fix call to GetClientRectangle. 
339         
340         * ThemeWin32Classic.cs: On CPDrawBorder3D dont draw inner border when
341         it is not needed.
343 2007-01-06  Everaldo Canuto  <everaldo@simios.org>
345         * Hwnd.cs: Gives more code legibility to GetWindowRectangle.
347 2007-01-06  Everaldo Canuto  <everaldo@simios.org>
349         * Label.cs: Override CreateParams to use WS_EX_STATICEDGE instead of
350         WS_EX_CLIENTEDGE in ExStyles when BorderStyle is Fixed3D, it is
351         
352         * Hwnd.cs: 
353         - border_static field added, it will used to define when a control 
354         theres 3D border but it must be static (thin).
355         - In GetWindowRectangle use Theme.BorderSize to calculate area 
356         instead of static value 1, by the way use new BorderStaticSize instead
357         Border3DSize when border_static is true.
359         * XplatUIX11.cs, XplatUIOSX.cs: 
360         - When WS_EX_STATICEDGE ExStyle is set define border_static as true.
361         
362         * Theme.cs: BorderStaticSize field added.
364 2007-01-05  Everaldo Canuto  <everaldo@simios.org>
366         * XplatUIX11.cs: Removed unused hwnd var in SetBorderStyle.
368 2007-01-05  Everaldo Canuto  <everaldo@simios.org>
370         * Control.cs: Under InternalBorderStyle call RecreateHangle to 
371         mimic same behavior than win32 that set border only in CreateParams,
372         it fix problems under CreateParams overrides. Fix #79442 and partial
373         fix #79537.
374         
375         * XplatUIX11.cs: Dont set hwnd.border_style in SetBorderStyle instead
376         of thi control you must call recreate handle. 
377         
378         * XplatUIWin32.cs: Remove all SetBorderStyle code, for win32 we dont
379         need to do anything as RecreateHangle will take care about borders.
381 2007-01-05  Mike Kestner  <mkestner@novell.com>
383         * ListView.cs: hack to eliminate Lost/Got focus notifications on
384         cycles between the ItemControl and parent.  Fixes #80388.
386 2007-01-05  Gert Driesen  <drieseng@users.sourceforge.net>
388         * Control.cs: Lazy init layout engine. Do not directly use 
389         layout_engine since LayoutEngine may be overridden (on 2.0 profile).
391 2007-01-05  Chris Toshok  <toshok@ximian.com>
393         * DataGrid.cs: don't forceably rebind columns in SetDataSource
394         unless our list manager has changed (i.e. unless we have reason to
395         believe our columns have changed).  Fixes #80422.
396         
397         also, disable the call do BindColumns in
398         OnListManagerMetaDataChanged.  this breaks this test in 2.0 (in
399         1.1 the event isn't raised in response to a column addition on a
400         table.)
402 2007-01-05  Jonathan Pobst  <monkey@jpobst.com>
404         * Control.cs: Move LayoutEngine.Layout to the OnLayout method, so
405         that inheritors can not call it if they choose.  Fixes bug #80456.
407 2007-01-05  Andreia Gaita  <avidigal@novell.com>
409         * XplatUIWin32.cs: Initialize MSG.refobject at 0 so it 
410         doesn't blow up with a null exception on marshalling.
411         
412 2007-01-05  Jonathan Pobst  <monkey@jpobst.com>
414         * Control.cs: Implement several 2.0 protected properties and methods.
415         Ensure that all necessary events are being called when properties
416         are set.
418 2007-01-05  Mike Kestner  <mkestner@novell.com>
420         * ListView.cs: implement PgUp/PgDn for Details view.  Also
421         fixes First/LastVisibleIndex to use the item_control.ClientRect 
422         instead of the parent control.  Fixes #80378.
424 2006-01-05  Atsushi Enomoto  <atsushi@ximian.com>
426         * PageSetupDialog.cs : cosmetic refactoring; use RegionInfo to
427           determine whether to use yard-pound or not (bug #78399).
429 2006-01-04  Alexander Olk  <alex.olk@googlemail.com>
431         * FileDialog.cs: Sebastien fixed the libgdiplus png alpha
432         problems. So it is time to bring back the old popupbutton colors.
434 2006-01-04  Carlos Alberto Cortez <calberto.cortez@gmail.com>
436         * ColumnHeader.cs:
437         * ListView.cs: Implement 2.0 ColumnHeader.DisplayIndex
438         property by using the internal information of the
439         columns order in ListView.
441 2007-01-04  Jonathan Pobst  <monkey@jpobst.com>
443         * CommonDialog.cs, Cursor.cs, ErrorProvider.cs, HelpProvider.cs:
444         Add 2.0 Tag properties.
446         * LinkArea.cs: Add 2.0 ToString method.
448 2007-01-03  Chris Toshok  <toshok@ximian.com>
450         * DataGrid.cs: the Alt+0 handling was wrong, it should have been
451         Ctrl+0.  Fixes bug #80367.  Also, don't eat the Delete keypress
452         when we're editing, which fixes #80047.
454 2007-01-03  Chris Toshok  <toshok@ximian.com>
456         * Form.cs: apply patch contributed by Dominik Seichter.  fixes
457         #80404.
459 2007-01-03  Jonathan Pobst  <monkey@jpobst.com>
461         * MenuStrip.cs, ToolStripMenuItem.cs: Add MdiWindowListItem
462         property and implementation.
464         * Form.cs, MdiClient.cs, MdiWindowManager.cs: Add needed hooks
465         for MdiWindowListItem property.
467         * ToolStripDropDown.cs: Don't consider hidden menu items while
468         laying out the menu.
470 2007-01-03  Andreia Gaita  <avidigal@novell.com>
472         * SendKeys.cs: window handle is not needed in win32, so just
473         get the active window for X after parsing keys and don't use
474         it when building the message; it is passed by parameter to the 
475         Xplat method and used there to build the message instead. Also,
476         wait for events to be processed on SendWait, as opposed to Send,
477         which doesn't wait :) Playing with threads and Send() completely 
478         hangs on ms.net, only SendWait() works.
479         
480         XplatUIX11.cs
481         X11Display.cs: Check for valid window handle.
483 2007-01-03  Jackson Harper  <jackson@ximian.com>
485         * TextControl.cs: Need to prevent wrap calculations when replacing
486         text (this was there before i removed it accidently).
487         - Don't update the cursor during the positioning, just set it to
488         selection_start at the end of the operaion.
490 2007-01-03  Rolf Bjarne Kvinge  <RKvinge@novell.com>
492         * Control.cs:
493         * NotifyIcon.cs: corcompare work, no more X's in 1.1 class status.
494         
495 2007-01-03  Rolf Bjarne Kvinge  <RKvinge@novell.com>
497         * MonthCalendar.cs: Added Click and DoubleClick events again,
498         but this time they only hide Control's Click and DoubleClick.
499         
500 2007-01-03  Gert Driesen  <drieseng@users.sourceforge.net>
502         * Theme.cs: Re-enabled DefaultFont change. Use const to refer to
503         System.Drawing assembly. Spaces to tabs. Removed extra tabs.
505 2007-01-02  Jackson Harper  <jackson@ximian.com>
507         * TextBoxBase.cs: We move the caret with the split now, so we
508         don't need to explicitly move the caret after splitting.  This
509         fixes the caret bumping down an extra line on Enter.
511 2007-01-02  Miguel de Icaza  <miguel@novell.com>
513         * ContainerControl.cs: Add AutoValidateChanged event (for PDN
514         2.72). 
516         * ScrollableControl.cs: Add Scroll event.
518 2007-01-02  Mike Kestner  <mkestner@novell.com>
520         * ListView.cs: one more try with help from georgegiolfan@yahoo.com 
521         to fix all hdr height padding codepaths.  Fixes #80207.
523 2007-01-02  Chris Toshok  <toshok@ximian.com>
525         * StatusBar.cs (.ctor): remove the Anchor setting, as it's just
526         setting it to the Control defaults anyway, and it being after the
527         Dock set was screwing up layout.
528         (set_Dock): don't short circuit out of setting base.Dock.  Also,
529         no need to call UpdateStatusBar here, as it'll be re-layed out if
530         it needs to be.
532 2007-01-02  Mike Kestner  <mkestner@novell.com>
534         * ListView.cs: patch from georgegiolfan@yahoo.com to add padding
535         to header height for width == -1. Fixes the rest of #80207.
537 2007-01-02  Mike Kestner  <mkestner@novell.com>
539         * ListView.cs: rework the mouse event forwarding everaldo added
540         to translate the coordinates to the parent control not
541         raise the parent events until after we've done our work. Hover
542         needs more work, in the case where HoverSelection is on, because
543         the item control receives more than one MouseHover per Enter
544         event, so we need to ensure only the "first" hover gets forwarded.
545         Opening a minor bug for that.
547 2007-01-02  Gert Driesen  <drieseng@users.sourceforge.net>
549         * CheckedListBox.cs: Fixed SelectionMode to match MS.
550         * ListControl.cs: Implemented AllowSelection property. Removed extra
551         tabs.
552         * ListBox.cs: Implemented AllowSelection property.
554 2007-01-02  Everaldo Canuto  <everaldo@simios.org>
556         * MenuItem.cs: In MdiWindowClickHandler uses sender instead of
557         SelectedItem, it prevent for errors when you must disable item
558         before perform click. Fixes #80409.
560 2007-01-02  Everaldo Canuto  <everaldo@simios.org>
562         * MenuAPI.cs: Prevent second level and beyond submenus to close
563         until first level when move out side of popup.
564         
565 2007-01-02  Everaldo Canuto  <everaldo@simios.org>
567         * MenuAPI.cs:
568         - Down submenu positin in three pixels.
569         - Closes sub menu when mouse leaves from menu. Fixes #80402.
571 2007-01-02  Everaldo Canuto  <everaldo@simios.org>
573         * ThemeWin32Classic.cs:
574         - Fix popup menu size adding one pixel on the top.
575         - Down menu item border from two to one to mimic Win32.
576         - Some source identation fixes. 
578 2007-01-01  Everaldo Canuto  <everaldo@simios.org>
580         * ThemeWin32Classic.cs: Use float numbers to calculate size and
581         position of menu arrows, it fix wrong arrow size.
583 2007-01-01  Everaldo Canuto  <everaldo@simios.org>
585         * ThemeWin32Classic.cs: Uses CPDrawBorder3D to draw menu borders
586         instead of line, it simplify draw operation and fix it using 3D
587         borders to mimic Win32.
589 2007-01-01  Jonathan Pobst  <monkey@jpobst.com>
591         * StatusStrip.cs: Add implementation of the sizing grip.
593         * ToolStripRenderer.cs, ToolStripProfessionalRenderer.cs: Add
594         StatusStrip rendering.
596 2006-12-31  Chris Toshok  <toshok@ximian.com>
598         * ToolBar.cs: don't assign to dock_style in the .ctor.  it doesn't
599         override the layout style (anchor/dock) of the control.  assign to
600         Dock instead.  Fixes bug #80416.
602         * ToolStrip.cs: same.
604 2006-12-31  Andreia Gaita  <avidigal@novell.com>
606         * ContainerControl.cs: Use ContainerSelected flag to check if 
607         a Container is directly selected, or if Select is called on a 
608         non-container. If a container is directly selected, focus events 
609         should not be raised.
610         Apply #80411 patch to throw exception on set_ActiveControl if 
611         control is the same as the current one.
612         
613         * Control.cs: Use ContainerSelected flag (see above).
614         Add invalidation check to raise event but not invalidate if 
615         dimensions are 0.       
616         Apply #80411 patch.
617         
619 2006-12-31  Everaldo Canuto  <everaldo@simios.org>
621         * MenuAPI.cs: After click, dont close popup menu when menu is
622         ContextMenu. Fixes #80399.
624 2006-12-30  Chris Toshok  <toshok@ximian.com>
626         * ContainerControl.cs: make sure we throw the exception if the
627         container control doesn't contain the control we're setting
628         ActiveControl to.
630 2006-12-30  Chris Toshok  <toshok@ximian.com>
632         * Control.cs (SetTopLevel): fix the exception raised by
633         SetTopLevel for child controls.
634         (set_Anchor): call UpdateDistances when setting the anchor type.
635         This fixes bug #80336.
637 2006-12-29  Gert Driesen  <drieseng@users.sourceforge.net>
639         * Theme.cs: For now, revert back to 8pt font.
641 2006-12-29  Everaldo Canuto  <everaldo@simios.org>
643         * MenuAPI.cs: Set popup as active when open a ContextMenu. 
644         Fixes #80395.
646 2006-12-29  Chris Toshok  <toshok@ximian.com>
648         * Control.cs: reorder the code in OnResize to give the same event
649         ordering as MS.
651 2006-12-29  Rolf Bjarne Kvinge  <RKvinge@novell.com>
653         * MdiClient.cs: Implemented MdiLayout for ArrangeIcons,
654         TileHorizontally and TileVertically.
655         
656 2006-12-29  Alexander Olk  <alex.olk@googlemail.com>
658         * ColorDialog.cs, FileDialog.cs, FolderBrowserDialog.cs,
659         FontDialog.cs, Mime.cs, MimeIcon.cs, OpenFileDialog.cs,
660         SaveFileDialog.cs, ThemeClearlooks.cs, ThemeNics.cs:
661         Corrected copyright and email adress.
663 2006-12-29  Gert Driesen  <drieseng@users.sourceforge.net>
665         * TreeNode.cs: On 2.0 profile, throw InvalidOperationException instead
666         of Exception in FullPath property if no TreeView is associated with
667         the TreeNode.
669 2006-12-29  Gert Driesen  <drieseng@users.sourceforge.net>
671         * Theme.cs: Marked default_font as private, and initialize it in ctor
672         with MS Sans Sarif 8.25 on 1.0 profile, and SystemFonts.DefaultFont
673         on 2.0 profile.
674         * ThemeGtk.cs: Removed default_font intialization.
675         * ThemeWin32Classic.cs: Removed default_font initialization.
677 2006-12-28  Chris Toshok  <toshok@ximian.com>
679         * Control.cs: fix a couple of place where we were creating handles
680         more aggressively than we should be.  Fixes ControlRefresh unit
681         tests.
683 2006-12-28  Chris Toshok  <toshok@ximian.com>
685         * Control.cs: contrary to what the comment said, Control.Dock does
686         not supercede Control.Anchor - the last one you assign to decides
687         the layout behavior.  so we need to keep track of which was the
688         last set.  Also, fix some of the affected property arguments in
689         PerformLayout calls, and remove an redundant parent.PerformLayout
690         call in OnResized.
692         Add a VisibleInternal property, which returns is_visible.  We
693         can/should get rid of all the usage of this field elsewhere.
695 2006-12-28  Rolf Bjarne Kvinge  <RKvinge@novell.com>
696         
697         * Control.cs: DoubleBuffered property reflects the OptimizedDoubleBuffer
698         control style, not DoubleBuffer. Added UseDoubleBuffering property
699         that indicates whether doublebuffering is enabled and supported.
700         (comment from and code based on Gert Driesen's patch in #80324).
701         Fixes #80324.
703 2006-12-28  Rolf Bjarne Kvinge  <RKvinge@novell.com>
704         
705         * Control.cs: Fixed a NRE.
707 2006-12-28  Rolf Bjarne Kvinge  <RKvinge@novell.com>
709         * TrackBar.cs: Fix SmallChange and LargeChange exceptions
710         for 2.0.
712 2006-12-28  Rolf Bjarne Kvinge  <RKvinge@novell.com>
714         * Control.cs: Rewrote double buffering, now a seperate
715         class handles all the buffering, no Graphics is disposed of
716         until the painting is finished (earlier implementation 
717         would crash if the control was resized in the OnPaint, 
718         since it would cause the double buffer to be recreated
719         and the old one disposed), a separate Graphics is 
720         created for every paint (MS behaviour and anyways the state
721         of the Graphics would have to be saved and restored otherwise)
722         
723         * XplatUIDriver.cs: 
724         * XplatUIX11.cs:
725         * XplatUI.cs: Added and implemented GetOffscreenGraphics 
726         so that we can get the graphics for the back buffer without
727         having to create a new one and remove the offscreen_dc parameter
728         from CreateOffscreenDrawable and DestroyOffscreenDrawable.
729         
730 2006-12-27  Carlos Alberto Cortez <calberto.cortez@gmail.com>
732         * ListView.cs: Add key-related 2.0 methods for CheckedItemCollection.
733         Also make virtual all the key-related methods.
735         * ListViewItem.cs: Make virtual the key related methods for
736         ListViewSubItemCollection.
738 2006-12-27  Carlos Alberto Cortez <calberto.cortez@gmail.com>
740         * ListView.cs:
741         * ListViewItem.cs:
742         * ThemeWin32Classic.cs:
743         * Theme.cs: Initial support for Tile view in ListView,
744         as well as the implementation of the required bits for it (Item
745         and Subitem).
747 2006-12-27  Gert Driesen  <drieseng@users.sourceforge.net>
749         * MonthCalendar.cs: On 2.0, throw ArgumentOutOfRangeException instead
750         of ArgumentException in MaxSelectionCount, MaxDate and MinDate.
751         Provide useful exception messages.
753 2006-12-27  Rolf Bjarne Kvinge  <RKvinge@novell.com>
755         * TrackBar.cs: Remove a warning.
756         * MonthCalendar.cs: Moved back to using Capture to hide the calendar
757         when used by DateTimePicker, fixes #80287. This also requires that 
758         MonthCalendar implements it's own drawing for the yearly updown control,
759         otherwise the Capture tracking would be too complicated. Removed the Click 
760         and DoubleClick events (according to comments they were hiding the base class
761         event to prevent them from beeing fired - MSDN only says MonthCalendar doesn't
762         raise these events, not that they cannot be raised. It is possible to raise 
763         them by calling OnClick and OnDoubleClick). Added two internal fields in 
764         HitTestInfo in order to track give more tracking info needed by MonthCalendar.
765         * ThemeWin32Classic.cs: Implement drawing of MonthCalendar's updown part.
766         * DateTimePicker.cs: Removed handling of MonthCalendar's LostFocus
767         event, no longer needed.
768         
769 2006-12-27  Gert Driesen  <drieseng@users.sourceforge.net>
771         * ScrollableControl.cs: In AutoScrollMinSize, only set AutoScroll to
772         true if new value differs from current value.
774 2006-12-27  Gert Driesen  <drieseng@users.sourceforge.net>
776         * Control.cs: ControlCollection.Count must be public. Fixed build of
777         unit tests.
779 2006-12-27  Gert Driesen  <drieseng@users.sourceforge.net>
781         * ListView.cs: Redraw when FullRowSelect is changed. Fixes bug #80379.
783 2006-12-27  Gert Driesen  <drieseng@users.sourceforge.net>
785         * ComboBox.cs: Mergable=>MergableProperty. Fixes build.
787 2006-12-26  Everaldo Canuto  <everaldo@simios.org>
789         * Control.cs: Invalidates control including when Width and Height is 
790         equal zero or is not visible, only Paint event must be care about 
791         this. Fixes #79913.
793 2006-12-26  Chris Toshok  <toshok@ximian.com>
795         * CurrencyManager.cs, PropertyManager.cs, BindingManagerBase.cs:
796         more corcompare work.
798         * DataGridView.cs: fix compiler warning.
800         * ColumnHeader.cs: some corcompare work, and also take the
801         opportunity to make the internal fields private.
803         * ListView.cs: fix the fallout from the above field change.
805 2006-12-26  Jonathan Pobst  <monkey@jpobst.com>
807         * ToolStripButton.cs, ToolStripComboBox.cs, ToolStripControlHost.cs,
808         ToolStripItem.cs, ToolStripProgressBar.cs, ToolStripSplitButton.cs,
809         ToolStripTextBox.cs: Fixes to events and corcompare.
811 2006-12-26  Everaldo Canuto  <everaldo@simios.org>
813         * ListView.cs: Call owner.OnMousexx event to propagate events from
814         item to ListView. Fixes #80367.
816 2006-12-26  Gert Driesen  <drieseng@users.sourceforge.net>
818         * ComboBox.cs: On 2.0, DropDownWidth throws ArgumentOutOfRangeException
819         if value is less than one. ItemHeight should not be set to a value
820         less than 1, and throw ArgumentOutOfRangeException on 2.0 profile. 
821         Removed extra tabs.
823 2006-12-26  Jonathan Pobst  <monkey@jpobst.com>
825         * ToolStripMenuItem.cs: Add ShortcutDisplayString for Moma.
826         * ToolStripStatusLabel.cs: Add Spring for Moma.
828 2006-12-26  Gert Driesen  <drieseng@users.sourceforge.net>
830         * DataGridView.cs: Fixed several NullReferenceException in On* methods.
831         Fixed code formatting. Removed debug code.
832         * DataGridViewTextBoxEditingControl.cs: Removed debug code.
834 2006-12-26  Gert Driesen  <drieseng@users.sourceforge.net>
836         * DataGridView.cs: Fixed GridColor, DefaultSize, DefaultCellStyle,
837         RowHeadersDefaultStyle, RowHeadersWidth to match MS. Throw
838         ArgumentOutOfRangeException if ColumnCount is negative. In 
839         ColumnHeadersHeight, throw ArgumentOutOfRangeException if height is
840         less than 4 or higher than 32768.
841         * DataGridViewCellStyle.cs: Fixed default value for NullValue.
842         Fixed FormatProvider to return CurrentCulture unless explicitly set.
843         Fixed IsFormatProviderDefault to return true if FormatProvider has
844         not been explicitly set.
846 2006-12-25  Chris Toshok  <toshok@ximian.com>
848         * Application.cs: add a couple of 2.0 events.
850 2006-12-25  Chris Toshok  <toshok@ximian.com>
852         * Control.cs: fix compiler warning.
854         * AxHost.cs: corcompare fixes.
856         * ApplicationContext.cs: corcompare fixes.
858 2006-12-25  Chris Toshok  <toshok@ximian.com>
860         * Control.cs: only update dist_right/dist_bottom if the
861         width/height is > 0.  this fixes anchored controls being resized
862         smaller until they disappear and then resized larger again.
864 2006-12-25  Chris Toshok  <toshok@ximian.com>
866         * Control.cs: a couple of changes.  Remove dist_left and dist_top,
867         since they're nothing more than X/Left and Y/Top, respectively.
869         Also, move back to a per-control Bitmap/Graphics for
870         DeviceContext, since using the static Hwnd.bmp/bmp_g is bad in the
871         MT case.  Go with a tiny bitmap though, 1x1, instead of Width x
872         Height.
874 2006-12-25  Miguel de Icaza  <miguel@novell.com>
876         * MessageBox.cs: Implemented overload that takes a new "bool
877         displayHelpButton" by adding a new internal field "show_help".
878         When clicked this will raise the HelpRequested on the owner or the
879         main form. 
881         From: 007dbe3ff0ca4729a4f5fcd1d8ab2a2e.txt
882         From: c935e12b95fe4dc1ae670e7f4dc5fd68.txt
884         * ListView.cs: Add support ColumnWidthChanged and
885         ColumnWidthChanging. 
887         Add support for ColumnReordered event.
888         (ReorderColumn): Add NET_2_0 specific support for cancelling the
889         reorder.
891         Very nice codebase!
893         * TextBoxBase.cs (GetLineFromCharIndex): Implement this method.
895         This is used by report f4ae0a88a0a244558aaadf017c9b9efe.
897 2006-12-24  Chris Toshok  <toshok@ximian.com>
899         * GridTablesFactory.cs: 2.0 corcompare work.
901         * ToolStripContainer.cs: add "override" to
902         ContextMenuStripChanged, and remove the local event object.
904         * ToolStripDropDown.cs: same with a couple properties.
906         * ToolStripPanel.cs: same with AutoSizeChanged event.
908         * TextBoxBase.cs: add "override" to AutoSizeChanged.
910         * Form.cs: add the remaining 2.0 events, and do some corcompare
911         attribute work.
913         * DateTimePicker.cs: add "new" to padding.
915         * ButtonBase.cs: use Control's use_compatible_text_rendering.
917         * ToolStripContentPanel.cs: use base.AutoSizeChanged.
919         * DataGridView.cs: PaddingChanged is overridden.
921 2006-12-24  Chris Toshok  <toshok@ximian.com>
923         * Control.cs: corecompare work here too.
925         * DataGridViewElement.cs, DataGridView.cs,
926         DataGridViewButtonCell.cs, DataGridViewRowCollection.cs,
927         DataGridViewImageColumn.cs, DataGridViewComboBoxColumn.cs,
928         DataGridViewImageCell.cs, DataGridViewCheckBoxCell.cs,
929         DataGridViewHeaderCell.cs, DataGridViewCell.cs: more corcompare
930         work.
932 2006-12-24  Miguel de Icaza  <miguel@novell.com>
934         * Control.cs: Switched the error message on the console for a
935         todo.  A review of the code will have to cope with this anyways
936         (since its a large feature, it is in our radar) and it was
937         producing too much output when running PDN.
939         * ToolStripComboBox.cs: Set the text when the SelectedIndex
940         changes.  Applications depend on this (PDN 2.72)
942 2006-12-23  Chris Toshok  <toshok@ximian.com>
944         * TableLayoutSettings.cs: finish up the corcompare work for this
945         class.
947 2006-12-23  Chris Toshok  <toshok@ximian.com>
949         * Control.cs: make SetImplicitBounds internal, do some futzing
950         with LayoutEngine so that it's available in 1.1, and remove the
951         entire duplicated code mess from PerformLayout.  Use
952         System.Windows.Forms.Layout.DefaultLayout instead.
954         * LayoutEngine.cs: make this class internal in 1.1, public in 2.0.
956 2006-12-23  Jonathan Pobst  <monkey@jpobst.com>
958         * Form.cs: Add MainMenuStrip property.
960 2006-12-23  Jonathan Pobst  <monkey@jpobst.com>
962         * Control.cs: Add ContextMenuStrip property and implementation.
963         Fix ContextMenu implementation to show menu centered on control when
964         activated using the keyboard instead of showing at screen (0,0).
966         * ToolStripDropDown.cs: Fix needed overload of Show ().
968 2006-12-23  Everaldo Canuto  <everaldo@simios.org>
970         * Menu.cs: Name property added for 2.0 profile.
971         
972 2006-12-23  Everaldo Canuto  <everaldo@simios.org>
974         * Menu.cs: Update information about FindMenuItem, method to be
975         implemented soon.
977 2006-12-23  Everaldo Canuto  <everaldo@simios.org>
979         * MenuAPI.cs: When deselect items deselect also selected subitems.
980         
981 2006-12-23  Everaldo Canuto  <everaldo@simios.org>
983         * MenuAPI.cs: When hides menu set Wnd to null, it prevents
984         FindSubItemByCoord to found itens that is not active, also an
985         cheking added to FindSubItemByCoord to search for items only 
986         in visible popup windows. Fixes #80274.
988 2006-12-22  Everaldo Canuto  <everaldo@simios.org>
990         * UserControl.cs: Remove MonoTodo and use InternalBorderStyle,
991         internal property, it be care about change ExStyle. 
993 2006-12-22  Andreia Gaita  <avidigal@novell.com>
995         * ContainerControl.cs: set activeControl for parent forms up the 
996         tree when the new activecontrol is a container.
997         When validating the active control, if it is a container, also
998         raise up the validation for it's active control. Fixes #80280
999         
1000         * Control.cs: Add internal property flag and check to prevent
1001         Focus events from getting raised when Select() is called for
1002         a ContainerControl. There are still too many focus events being
1003         raised at the moment though.
1004         Cleaned up the code a bit.
1006 2006-12-22  Rolf Bjarne Kvinge  <RKvinge@novell.com>
1008         * Control.cs: Added all missing 2.0 events.and
1009         fixed a couple of corcompare issues.
1010         * TrackBar.cs: Implemented missing 2.0 bits.
1011         * MonthCalendar.cs, 
1012         * DateTimePicker.cs, 
1013         * MdiClient.cs: Fixed some corcompare issues.
1015 2006-12-21  Jonathan Pobst  <monkey@jpobst.com>
1017         * ContextMenuStrip.cs, FlowLayoutPanel.cs, SplitContainer.cs,
1018         SplitterPanel.cs: corecompare work.
1020 2006-12-21  Jonathan Pobst  <monkey@jpobst.com>
1022         * ToolStripContainer.cs, ToolStripDropDown.cs, StatusStrip.cs:
1023         Clean up warnings for BackgroundImageChanged and PaddingChanged
1024         events now that they are implemented in Control.cs.
1026 2006-12-21  Jonathan Pobst  <monkey@jpobst.com>
1028         * Control.cs: Make sure layout_engine isn't null before using it (2.0).
1029         
1030         * TableLayoutControlCollection.cs, TableLayoutPanel.cs, TableLayoutCellPosition.cs,
1031         TableLayoutSettings.cs, TableLayoutStyleCollection.cs: Initial implementation
1032         of TableLayoutPanel and supporting cast.
1034 2006-12-21  Rolf Bjarne Kvinge  <RKvinge@novell.com>
1036         * XplatUIWin32.cs: 
1037         - GrabWindow now confines the mouse pointer to the confine window.
1038         - Added Win32ClipCursor and Win32GetClipCursor.
1040         * Control.cs: 
1041         - Added CaptureWithConfine to be able to capture and confine 
1042         mouse pointer.
1043         
1044         * InternalWindowManager.cs: 
1045         - Call CaptureWithConfine instead of Capture if we're an
1046         MdiChild (fixes #79982).
1048 2006-12-21  Chris Toshok  <toshok@ximian.com>
1050         * DataGrid.cs: guard against the initial state of selection, where
1051         selection_start == -1.  make sure we only select from index >= 0.
1052         Fixes bug #80291.
1054 2006-12-21  Chris Toshok  <toshok@ximian.com>
1056         * Control.cs: we don't need to be so draconian with
1057         UpdateDistances, and we thusly don't need to call it before
1058         calling PerformLayout in ResumeLayout.  Fixes bug #80289.
1060 2006-12-21  Daniel Nauck  <dna@mono-project.de>
1062         * ComboBox.cs,
1063         TextBox.cs: Implemented AutoComplete properties.
1065 2006-12-20  Chris Toshok  <toshok@ximian.com>
1067         * DataGridView*.cs: some corecompare work.
1069 2006-12-20  Jackson Harper  <jackson@ximian.com>
1071         * XplatUIX11.cs: We need to hide the caret when deleting it,
1072         otherwise you get carets left lying around everywhere.
1073         * TextBoxBase.cs: Kill then redraw the caret when scrolling.  This
1074         prevents getting some weird half drawn caret tracers when
1075         scrolling.
1076         * TextControl.cs: Attempt to reduce the number of times we need to
1077         recreate the caret.
1079 2006-12-20  Gert Driesen  <drieseng@users.sourceforge.net>
1081         * MonthCalendar.cs: Fixed previous month button. Removed extra tabs.
1083 2006-12-19  Rolf Bjarne Kvinge  <RKvinge@novell.com>
1085         * DateTimePicker.cs:
1086         - Implemented missing 2.0 bits.
1087         - Changed some default values to match MS.
1088         
1089 2006-12-20  Jackson Harper  <jackson@ximian.com>
1091         * TextBoxBase.cs: When changing the font across the document we
1092         can't recalculate after changing each line, since that will cahnge
1093         the line count.
1094         - PreferredHeight is a little different than i thought.
1095         - When backspacing, move the caret before we do the actual char
1096         delete, because when that delete crosses a wrap boundary the
1097         positional information will change.
1099 2006-12-19  Rolf Bjarne Kvinge  <RKvinge@novell.com>
1101         * Control.cs: Added some missing 2.0 bits: 
1102         BackgroundImageLayout, BackgroundImageLayoutChanged, 
1103         OnPaddingChanged, MouseClick, MouseDoubleClick, PaddingChanged and 
1104         add IBindableComponent and IDropTarget implementation.
1105         
1106         * MonthCalendar.cs: 
1107         - Added all missing 2.0 features:
1108         BackgroundImageLayout, RightToLeftLayout, 
1109         OnHandleDestroyed, RightToLeftLayoutChanged, 
1110         BackgroundImageLayoutChanged, MouseClick, MouseDoubleClick,
1111         PaddingChanged.
1112         - Rewrote all the BoldDate code, it was completely broken.
1113         - Fixed all the tests (the tests can now be re-enabled, the
1114         problems were not with the tests, but with the control, it was
1115         mostly broken).
1116         
1117         * DateTimePicker.cs: Changed the location where the 
1118         MonthCalendar is shown.
1119         
1120 2006-12-19  Chris Toshok  <toshok@ximian.com>
1122         * DataGridView.cs: add IDropTarget implementation.
1124         * ToolStripPanel.cs: add IDropTarget implementation.
1126 2006-12-19  Jackson Harper  <jackson@ximian.com>
1128         * TextControl.cs: soft now means something different than what it
1129         used to mean, we want to move the caret regardless of whether or
1130         not this break was soft (would we really have wanted the caret
1131         to not move with the break in the old context?)
1132         * TreeView.cs: Make sure we factor in the vert scrollbar when
1133         calculating the horizontal scrollbar's maximum.
1135 2006-12-19  Andreia Gaita  <avidigal@novell.org>
1137         * SendKeys.cs: Fix Send() behaviour, clear keys after sending,
1138         check for keywords in alternate casing, close bug #80049.
1140 2006-12-19  Chris Toshok  <toshok@ximian.com>
1142         * ToolStripItem.cs: add the implementation of the 4 IDropTarget
1143         methods (which all do nothing).
1145         * IDropTarget.cs: add the 4 missing methods.
1147 2006-12-19  Chris Toshok  <toshok@ximian.com>
1149         * TableLayoutRowStyleCollection.cs: corcompare work.
1150         
1151         * TableLayoutSettings.cs: same.
1153         * TableLayoutStyle.cs: same.
1155         * TableLayoutColumnStyleCollection.cs: same.
1157 2006-12-19  Jonathan Pobst  <monkey@jpobst.com>
1159         * ColumnStyle.cs, RowStyle.cs, TableLayoutStyle.cs: Plumbing for
1160         TableLayoutPanel I've had in my local tree for way too long.
1162 2006-12-19  Miguel de Icaza  <miguel@novell.com>
1164         * TableLayoutSettings.cs: Finish the public API (still needs all
1165         the logic to update on changes). 
1167         * TableLayoutPanelCellPosition.cs: new file.
1168         
1169         * TableLayoutRowStyleCollection.cs,
1170         TableLayoutColumnStyleCollection, TableLayoutStyle.cs,
1171         TableLayoutSettings.cs: Track the final 2.0 table api.
1173 2006-12-19  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1175         * ColumnHeader.cs: Add Tag, Name, ImageKey, ImageIndex,
1176         and Image List 2.0 members for ColummnHeader.
1177         * ListView.cs: Add key-related 2.0 methods for
1178         ColumnHeaderCollection.
1180 2006-12-19  Gert Driesen  <drieseng@users.sourceforge.net>
1182         * ListViewItem.cs: Changed AddRange overloads to match MS: throw
1183         ArgumentNullException if items argument is null. Ignore null item in
1184         arrays. Removed extra tabs.
1186 2006-12-19  Gert Driesen  <drieseng@users.sourceforge.net>
1188         * MonthCalendar.cs: Fixed InvalidCastException.
1190 2006-12-19  Jackson Harper  <jackson@ximian.com>
1192         * TextControl.cs: Don't increment the position here.
1193         - When calculating char positions only add in the line break size
1194         for hard line breaks.
1196 2006-12-19  Andreia Gaita  <avidigal@novell.org>
1198         * SendKeys.cs: Changed some things to match ms.net behaviour
1199         when parsing shifted capital letters.
1200         
1201         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32, XplatUIOSX: 
1202         Add window handle as parameter to SendInput. X11 needs the 
1203         window handle, and the handle being passed      to it in the keys 
1204         queue is the active control handle (which windows needs), not 
1205         the window handle.
1206         
1207         XplatUIX11.cs, XplaUIX11-new.cs, X11Display: Implement SendInput 
1208         to support SendKeys on X.       
1209         
1210         * X11Keyboard: Implement helper method to lookup a linux keycode
1211         given the virtual keycode. Added table of keycode-2-virtualkey
1212         values to support this.
1214 2006-12-19  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1216         * ListView.cs: Add support for SelectedIndexCollection
1217         and SelectedItemCollection 2.0 methods. Implement support
1218         for ImageKey too.
1219         * ListViewItem.cs: Add support for ListViewSubItemCollection
1220         2.0 methods. Also, fix an incorrect behavior of AddRange method
1221         (it shouldn't call Clear).
1222         * ThemeWin32Classic.cs: Support for ListView.ImageKey 2.0 property.
1224 2006-12-19  Jackson Harper  <jackson@ximian.com>
1226         * RichTextBox.cs: 
1227         * TextBoxBase.cs: New args for FormatText
1228         * TextControl.cs: Rewrote the main drawing method, this version
1229         feels a little easier to understand and debug to me.  Hopefully it
1230         does to others also
1231         - Fix FormatText to OR in the new formating values.  Added
1232         FormatSpecified param, basically this works in the same way as
1233         BoundsSpecified in Control.
1234         - Set the caret properties when the caret is positioned.
1235         - When wrapping text make sure that we calculate the width of the
1236         last character
1237         - when calculating alignments we might have wrapped down to the
1238         next line, so don't search for an individual tag, search for the
1239         end of the line
1240         - We need to invalidate the selection area when we replace the
1241         selection.
1242         
1243 2006-12-19  Daniel Nauck  <dna@mono-project.de>
1245         * Application.cs: add Restart () 2.0 support
1247 2006-12-18  Everaldo Canuto  <everaldo@simios.org>
1249         * MenuItem.cs: Invalidate menu item rectangle after change Enable
1250         property. Fixes #80268.
1251         
1252 2006-12-18  Everaldo Canuto  <everaldo@simios.org>
1254         * MenuAPI.cs: Dont trigger select event when closes top menu
1255         item. Fixes #80270.
1257 2006-12-18  Everaldo Canuto  <everaldo@simios.org>
1259         * MenuAPI.cs: When you click on menuitem only trigger onselect
1260         event for top menu itens. Fixes #80271.
1261         
1262 2006-12-18  Rolf Bjarne Kvinge  <RKvinge@novell.com>
1264         * MdiWindowManager.cs: Make IconicBounds depend on
1265         the bottom of MdiClient, not the top (fixes #80267)
1266         
1267 2006-12-18  Rolf Bjarne Kvinge  <RKvinge@novell.com>
1269         * MdiClient.cs: Added missing 2.0 attribute
1271 2006-12-18  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1273         * ListViewItem.cs: Add Name and Tag 2.0 properties, as well
1274         as IndexOfKey, ContainsKey, RemoveByKey and indexer 2.0.
1276 2006-12-18  Everaldo Canuto  <everaldo@simios.org>
1278         * MenuAPI.cs: Fix click when menuitem is not popup,
1279         this regression was caused by last commit (#80272).
1281 2006-12-17  Everaldo Canuto  <everaldo@simios.org>
1283         * MenuAPI.cs: When a non-toplevel menuitem is clicked dont
1284         fire click event or close menu. Fixes #80272.
1286 2006-12-17  Daniel Nauck  <dna@mono-project.de>
1288         * ListViewHitTestInfo.cs: add
1290 2006-12-17  Daniel Nauck  <dna@mono-project.de>
1292         * ButtonBase.cs: Added FlatButtonAppearance 2.0 support.
1293         * FlatButtonAppearance.cs: add
1294         * DockingAttribute.cs: add
1296 2006-12-17  Chris Toshok  <toshok@ximian.com>
1298         * DataGrid.cs: hook up MetaDataChanged event on the list manager,
1299         and rebind our columns when it does - this way, if you make
1300         changes to the DataTable (or set the Table attribute on a DataView
1301         after setting it as the DataGrid's DataSource, the changes are
1302         made visible.)  Fixes bug #80107.
1304 2006-12-17  Daniel Nauck  <dna@mono-project.de>
1306         * ListViewGroup.cs: add internal Location property for layouting.
1307         * Theme.cs: add abstract ListViewGroupHeight function.
1308         * ThemeWin32Classic.cs: implement ListViewGroupHeight function.
1310 2006-12-16  Andreia Gaita  <avidigal@novell.com>
1312         * TabControl.cs: Fixed checks for NET_2_0-specific exceptions.
1313         Added reset of selected index to 0 when adding first tab page.
1314         Fixes #80264
1315         
1316         * NumericUpDown.cs: Fix NET_2_0 check
1318 2006-12-16  Daniel Nauck  <dna@mono-project.de>
1320         * ListViewGroup.cs: fixed DefaultValueAttribute value
1322 2006-12-16  Daniel Nauck  <dna@mono-project.de>
1324         * AutoCompleteStringCollection.cs: add new AutoCompleteStringCollection 2.0 class
1326 2006-12-15  Miguel de Icaza  <miguel@novell.com>
1328         * Button.cs, ComboBox.cs, ScrollBar.cs, UserControl.cs,
1329         TextBoxBase.cs, ListView.cs, ContainerControl.cs,
1330         ScrollableControl.cs: Add a handful of methods that are
1331         overwritten in 2.0 
1333 2006-12-15  Chris Toshok  <toshok@ximian.com>
1335         * XplatUIWin32.cs: initial implementation of the Reversible
1336         drawing functions.  there are some problems.  DrawReversibleFrame
1337         doesn't seem to work at all for Dashed FrameStyle, and in the
1338         Thick case there are drawing errors at the corners (we probably
1339         need to bind Rectangle instead of doing moveto/lineto's.)
1341 2006-12-16  Andreia Gaita  <avidigal@novell.com>
1342         
1343         * SendKeys.cs: Implemented. SendKeys uses a new method in XPlatUI, SendInput, 
1344         to send blocks of key messages. Send accumulates keys to send with Flush, 
1345         while SendWait sends all keys immediately.
1346                 
1347         * XplaUI.cs, XplatUIDriver.cs, XplatUIOSX.cs, XplatUIWin32.cs, 
1348         XplatUIX11.cs,  XplatUIX11-new.cs:
1349         - Define SendInput and stubs for OSX and X11, implements Win32 with a call
1350         to Win32 SendInput.
1351         - Added INPUT support structures to XplatUIWin32 for Win32SendInput
1352         
1353         Tests:  It seems ms.net is hooking the keyboard to implement this, so doing unit
1354         testing for ms.net on this class is very tricky, as the tests run too fast 
1355         to allow the hook to release, essentially freezing the keyboard and the 
1356         test. So, barring a win32 miracle, they'll be commited in the ms-notworking     
1357         category :p
1359 2006-12-16  Daniel Nauck  <dna@mono-project.de>
1361         * Padding.cs: fixed serialization compability to MS ("_var" field names),
1362                         added missing attributes.
1364 2006-12-15  Daniel Nauck  <dna@mono-project.de>
1366         * ListViewGroup.cs: Added missing attributes.
1367         * ListViewGroupCollection.cs: Added missing attributes.
1369 2006-12-15  Daniel Nauck  <dna@mono-project.de>
1371         * ListViewItem.cs: fixed ListViewSubItem text property.
1373 2006-12-15  Rolf Bjarne Kvinge  <RKvinge@novell.com>
1374         
1375         * Control.cs: Added missing 2.0 attributes
1376         
1377 2006-12-15  Rolf Bjarne Kvinge  <RKvinge@novell.com>
1378         
1379         * MdiClient.cs: Added missing 2.0 attribute.
1380         * MonthCalendar.cs: Added some missing 2.0 attributes 
1381         and properties.
1382         
1383 2006-12-15  Daniel Nauck  <dna@mono-project.de>
1385         * ListView.cs: implemented ListViewItemCollection Add 2.0 support.
1387 2006-12-15  Jonathan Pobst  <monkey@jpobst.com>
1389         * MainMenu.cs: Add the new 2.0 constructor to help out people
1390         using the MainMenu in VS2005.
1392 2006-12-15  Rolf Bjarne Kvinge  <RKvinge@novell.com>
1393         
1394         * MdiChildContext.cs: Removed it, no longer used.
1395         * MdiClient.cs: Added missing 2.0 attributes.
1396         
1397 2006-12-15  Rolf Bjarne Kvinge  <RKvinge@novell.com>
1398         
1399         * InternalWindowManager.cs: Fix a NullRef with previous 
1400         changes for toolwindows.
1401         
1402 2006-12-15  Rolf Bjarne Kvinge  <RKvinge@novell.com>
1404         * Control.cs: 
1405         - Added AfterTopMostControl to allow for certain controls 
1406         to always stay on top when normal controls are brought to 
1407         front.
1408         
1409         * XplatUIWin32.cs: 
1410         - (DrawInversibleRectangle): Get window rectangle from Win32 
1411         in stead of from control, since Win32 doesn't calculate
1412         screen coords correctly from control's Location if it 
1413         have docked siblings.
1414         
1415         * MdiWindowManager.cs:
1416         - Correct the control menu popup location when clicked on
1417         the maximized form icon. (fixes #80223.1)
1418         - Don't show moving rectangle if mouse hasn't moved from
1419         the original clicked point.
1420         - Removed FormGotFocus handler (not used).
1421         - Calculate the control buttons location from the main
1422         window's size and not client size (fixes #79770).
1423         - Form is now closed when the form icon is double-clicked
1424         (fixes #79775). 
1425         - Correct NCCalcSize numbers a little bit (fixes #80223.2)
1426         
1427         * InternalWindowManager.cs:
1428         - Moved some MDI-only methods to MdiWindowManager.
1429         - Removed unused properties and methods.
1430         - Unified method naming for methods handling wm messages.
1431         - Moved all message handling to seperate methods for
1432         each message.
1433         
1434         * ThemeWin32Classic.cs:
1435         - DrawManagedWindowDecorations now draws the title bar 
1436         with a gradient brush.
1437         - Add a CPDrawButtonInternal that allows us to specify
1438         light, normal and dark colors for the buttons (control 
1439         buttons for MDI children were drawn with the same light
1440         color as the background, therefore loosing the 3D effect).
1441         
1442         * SizeGrip.cs:
1443         - Add a CapturedControl property that is used to 
1444         determine the control to resize (defaults to parent). 
1445         Needed for MdiClient, since its SizeGrip's parent is
1446         MdiClient, but the control to resize is the main form.
1447         
1448         * MdiClient.cs:
1449         - Set SizeGrip's CapturedControl to the main form in order
1450         to resize the main form and not the MdiClient.
1451         - Override AfterTopMostControl to leave the scrollbars 
1452         always on top.
1454 2006-12-15  Daniel Nauck  <dna@mono-project.de>
1456         * ListView.cs: fixed ListViewItemCollection AddRange and
1457                         implemented ListViewItemCollection AddRange 2.0 support.
1459 2006-12-15  Daniel Nauck  <dna@mono-project.de>
1461         * ListViewGroup.cs: Add.
1462         * ListViewGroupCollection.cs: Add
1463         * ListView.cs: Add ListViewGroup (Group) and ShowGroups 2.0 support.
1464         * ListViewItem.cs: Add ListViewgroup (Group), ListViewGroups constructors and
1465                                 stub for ImageKey 2.0 support.
1467 2006-12-14  Mike Kestner  <mkestner@novell.com>
1469         * ListView.cs: add text padding to the autocalculation for columns
1470         of width -2.  Fixes #80207.
1472 2006-12-14  Mike Kestner  <mkestner@novell.com>
1474         * ListView.cs: add some index guarding for partial row navigation 
1475         logic.  Fixes #80250.
1477 2006-12-14  Mike Kestner  <mkestner@novell.com>
1479         * ListView.cs: throw ArgumentExceptions when parented ListViewItems
1480         are added or inserted to the collection.  Fixes #81099.
1482 2006-12-13  Everaldo Canuto  <everaldo@simios.org>
1484         * MenuAPI.cs: Closes menu when right click out side of popup
1485         it fix problem in ContextMenu and MainMenu. Fixes #80252.
1487 2006-12-13  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1489         * ListViewItem.cs: Fix dumb error.
1491         * ListView.cs: Add Find and ContainsKey methods in 
1492         ListViewItemCollection, and also return true for IsReadOnly
1493         and IsFixedSize (changes for 2.0). 
1495 2006-12-13  Gert Driesen  <drieseng@users.sourceforge.net>
1497         * Control.cs: Allow Region to be set to null.
1499 2006-12-13  Rolf Bjarne Kvinge  <RKvinge@novell.com>
1501         * MdiWindowManager.cs: Remove unused (commented out) code.
1502         * Form.cs: When the MdiChild is maximized, the form needs 
1503         WM_NCMOUSELEAVE, so request it.
1504         * InternalWindowManager.cs: 
1505         - Added tooltips to control buttons.
1506         - Removed duplicated control button handling code.
1507         - Removed unused (commented out) code.
1508         
1509 2006-12-12  Everaldo Canuto  <everaldo@simios.org>
1511         * MenuAPI.cs: Set cursor to default in popup menus, a XplatUI.SetCursor 
1512         was used because we must set cursor without trigger ChangeCursor event
1513         and without change Cursor control property. Fixes #79963.
1515 2006-12-12  Andreia Gaita  <avidigal@novell.com>
1516         
1517         * Control.cs: Check if Region setter value is null, and ignore
1519 2006-12-12  Jackson Harper  <jackson@ximian.com>
1521         * TextControl.cs: We were almost always drawing one more line then
1522         needed, since the GetLineByPixel will return the last line found
1523         at that pixel. In most cases though, we were invalidating up to
1524         the junction between two lines.
1525         - Improve debug code.
1527 2006-12-12  Chris Toshok  <toshok@ximian.com>
1529         * XplatUI.cs: add static DrawReversibleFrame, DrawReversibleLine,
1530         and FillReversibleRectangle.
1532         * XplatUIDriver.cs: add abstract DrawReversibleFrame, DrawReversibleLine,
1533         and FillReversibleRectangle.
1535         * XplatUIWin32.cs: add stubs which do nothing for
1536         DrawReversibleFrame, DrawReversibleLine, and
1537         FillReversibleRectangle.
1539         * XplatUIOSX.cs: add stubs which raise NIE for
1540         DrawReversibleFrame, DrawReversibleLine, and
1541         FillReversibleRectangle.
1543         * XplatUIX11.cs: add working implementation for
1544         DrawReversibleFrame, DrawReversibleLine, and
1545         FillReversibleRectangle.
1546         
1547         * ControlPaint.cs: implement DrawReversibleFrame,
1548         DrawReversibleLine, and FillReversibleRectangle, by calling into
1549         the appropriate XplatUI method.
1551 2006-12-11  Rolf Bjarne Kvinge  <RKvinge@novell.com>
1553         * Form.cs: Make MdiClient have the focus even if it's
1554         not selectable, since it should receive WM_KEY* and WM_MOUSE 
1555         messages. Fixes #79907.
1556         
1557 2006-12-11  Rolf Bjarne Kvinge  <RKvinge@novell.com>
1559         * Hwnd.cs: Save the CreateParams.ExStyle so that it can be
1560         queried after the window is created.
1561         
1562         * XplatUIX11.cs: Added SendParentNotify to implement 
1563         WM_PARENTNOTIFY logic. Fixes #79965.
1564         
1565         * Control.cs: Added MakeParam.
1566         
1567 2006-12-11  Rolf Bjarne Kvinge  <RKvinge@novell.com>
1569         * MdiClient.cs: Resume Layout before setting window
1570         states (fixes #80201).
1572 2006-12-11  Rolf Bjarne Kvinge  <RKvinge@novell.com>
1574         * MenuAPI.cs: Deselect a menu item after performing
1575         the click (fixes #80197).
1577 2006-12-11  Jackson Harper  <jackson@ximian.com>
1579         * TextBoxBase.cs: We need to cap this value, since Maximum -
1580         ViewPortHeight can be less than zero.
1581         - Only do selection with the left mouse button.
1582         * TextBox.cs: Don't tell the world that we have a context menu.
1583         * Control.cs: New method so that we can control whether or not the
1584         context menu is visible outside MWF.
1586 2006-12-11  Everaldo Canuto  <everaldo@simios.org>
1588         * ToolBarButton.cs: Fix text positon. 
1590 2006-12-11  Miguel de Icaza  <miguel@novell.com>
1592         * ProgressBar.cs (MarqueeAnimationSpeed): Add stub.
1594         * Control.cs (DoubleBuffered): Add implementation.
1596         * Application.cs (OpenForms): Add.
1598 2006-12-11  Jonathan Pobst  <monkey@jpobst.com>
1600         * Form.cs: Use opacity instead of Opactiy to determine if we need
1601         to set the WS_EX_LAYERED bit.  [Fixes bug #80185]
1603 2006-12-11  Jonathan Pobst  <monkey@jpobst.com>
1605         * Control.cs: Fix NRE if Control.Site was set to null.
1607 2006-12-11  Chris Toshok  <toshok@ximian.com>
1609         * Control.cs: ControlCollection.Remove should return if the arg is
1610         null, and ControlCollection.SetChildIndex should raise a ANE.
1612 2006-12-11  Gert Driesen  <drieseng@users.sourceforge.net>
1614         * Control.cs: Verify value set for Dock property. Code formatting
1615         updates.
1617 2006-12-11  Jackson Harper  <jackson@ximian.com>
1619         * TextControl.cs: Draw the caret and the selection when a flag is
1620         set on the owner.
1621         * TextBoxBase.cs: We want to draw the caret and the selection for
1622         TextBox but not for TextBoxBase.
1623         - If the window is resized and scrolling is no longer needed (the
1624         whole doc is visible) set the scroll position to zero.
1625         - The default SelectWord (the one TextBox uses) should move the
1626         caret to the end of the word.
1627         - SelectAll moves the caret to the end of the selection.
1628         * TextBox.cs: We don't selectall on focus, we just do it when the
1629         control is created.
1630         
1631 2006-12-11  Mike Kestner  <mkestner@novell.com>
1633         * ComboBox.cs: stub in a 2.0 override for ProcessKeyEventArgs.
1635 2006-12-11  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1637         * ListView.cs: Add Insert, IndexOfKey, RemoveByKey and indexer 
1638         2.0 support.
1639         * ListViewItem.cs: Add Name 2.0 property.
1641 2006-12-11  Andreia Gaita  <avidigal@novell.com>
1643         * TabControl.cs: Set visibility on selected or default tab 
1644         when tabcontrol handle is created, so that it's contents
1645         actually show up (duh). Fixes #80193
1646         Don't redraw the control if there is no handle created, as
1647         the selected index might be completely invalid. Added some tests
1648         to check for this.
1650 2006-12-11  Everaldo Canuto  <everaldo@simios.org>
1652         * ToolBar.cs: Uses maximun width and height of all buttons as 
1653         button rectangle when ButtonSize specified, it looks strange but
1654         is what happens in Win32. Fixes #80189.
1656 2006-12-11  Jackson Harper  <jackson@ximian.com>
1658         * TextControl.cs: Need to track undo levels ourself, since
1659         compound actions will mess them up.
1661 2006-12-10  Andreia Gaita  <avidigal@novell.com>
1663         * TabControl.cs: Raise SelectedIndexChanged for 1.1 if the
1664         SelectedIndex value is changed (even if it's not valid).
1665         Reset SelectedIndex to 0 when the handle is created and if
1666         the current index is invalid.
1667         Fixes SelectdeIndex unit tests and #80128
1669 2006-12-08  Chris Toshok  <toshok@ximian.com>
1671         * DataGrid.cs (set_CurrentCell): because EnsureCellVisibility
1672         calls EndEdit, it needs to be called before we set current_cell to
1673         its new value.  Otherwise, we end up committing the value in the
1674         textbox to the new cell as well.  Fixes bug #80160.
1676 2006-12-08  Chris Toshok  <toshok@ximian.com>
1678         * Form.cs (set_CancelButton): if the button's DialogResult is
1679         None, set it to Cancel.  Fixes bug 80180.
1681 2006-12-08  Jackson Harper  <jackson@ximian.com>
1683         * TextBoxBase.cs: Ugh, ClientSize can be 0,0 sometimes, so we need
1684         to watch ourselves when setting the canvas size and setting the
1685         scrollbar values.
1687 2006-12-08  Chris Toshok  <toshok@ximian.com>
1689         * DataGrid.cs: comment out the two MakeTransparent calls for the
1690         time being so people using trunk (and not 1.2.2) on windows can
1691         actually use the datagrid.  This deals with bug #80151.
1693 2006-12-08  Jonathan Pobst  <monkey@jpobst.com>
1695         * ThemeWin32Classic.cs: Change ButtonBase_DrawImage to use the
1696         Graphics.DrawImage (image, int, int, int, int) overload instead
1697         of Graphics.DrawImage (image, int, int).  GDI+ can't figure out
1698         the dpi difference and was blurring images it drew.
1699         [Fixes bug #79960]
1701 2006-12-08  Chris Toshok  <toshok@ximian.com>
1703         * ThemeWin32Classic.cs (DataGridPaintRows): handle case where
1704         rowcnt is 0 (such as with an empty datasource), and make sure we
1705         initialize not_usedarea.Y to cells.Y, so we don't draw over the
1706         other areas (caption, parent row, etc, etc).  Fixes bug #80095.
1708 2006-12-08  Chris Toshok  <toshok@ximian.com>
1710         * DataGridColumnStyle.cs (SetDataGrid): don't try to access a null
1711         grid.
1713 2006-12-08  Chris Toshok  <toshok@ximian.com>
1715         [ Fixes bug #80167 ]
1716         
1717         * ThemeWin32Classic.cs: don't draw the image if the button's flat
1718         style is FlatStyle.System.
1720         * ButtonBase, ThemeClearlooks.cs, ThemeGtk.cs, ThemeNice.cs: make
1721         ButtonBase.flat_style private, and switch uses of it to the public
1722         property.
1723         
1724 2006-12-08  Chris Toshok  <toshok@ximian.com>
1726         [ Fixes bug #80121 ]
1727         
1728         * ThemeWin32Classic.cs: center the caption text in the datagrid
1729         when we draw it.
1731         * DataGrid.cs: lessen the amount we add to the caption height from
1732         6 to 2.  6 was making it huge.
1734 2006-12-08  Andreia Gaita  <avidigal@novell.com>
1736         * UpDownBase: Handle MouseWheel call directly instead of capturing
1737         the inner textbox's OnMouseWheel. Fixes #80166
1739 2006-12-08  Jackson Harper  <jackson@ximian.com>
1741         * TextControl.cs: We need to invalidate the textbox when we empty
1742         it (how had this not been discovered before?)
1744 2006-12-08  Jackson Harper  <jackson@ximian.com>
1746         * TextBoxBase.cs: Reworked the mouse down code so I could get it
1747         to behave like MS, we now ignore the eventargs.Click and just
1748         track state ourself, which we were already doing anyways.
1749         - Constrain the double click handler to the double click size.
1750         
1751 2006-12-08  Chris Toshok  <toshok@ximian.com>
1753         * DataGrid.cs: the mousewheel code shouldn't try to scroll in a
1754         direction if that scrollbar isn't shown.  fixes bug #80158.
1756 2006-12-08  Andreia Gaita  <avidigal@novell.com>
1758         * NumericUpDown.cs: Update value on getter. Fixes #79950
1760 2006-12-08  Chris Toshok  <toshok@ximian.com>
1762         * MenuItem.cs: add back in the event cloning code.  I didn't know
1763         how to do it in the face of the EventHandlerList work i'd done
1764         last week.  Fixes bug #80183.
1766 2006-12-08  Jonathan Pobst  <monkey@jpobst.com>
1768         * Control.cs: Add an invalidate to the BackgroundImage setter.
1769         [Fixes 80184]
1771 2006-12-07  Jonathan Pobst  <monkey@jpobst.com>
1773         * ToolStrip*: Add some small properties reported by MoMA, fix event
1774         firing and default properties based off of unit tests, and add some
1775         attributes based off of the class status page.
1777 2006-12-07  Jackson Harper  <jackson@ximian.com>
1779         * TextBoxBase.cs: Take HideSelection into account when determining
1780         whether or not to show the selection.
1781         * RichTextBox.cs: After inserting the RTF into the document move
1782         the cursor to the beginning of the document.
1784 2006-12-07  Jonathan Pobst  <monkey@jpobst.com>
1786         * Control.cs: Remove static ArrayList "controls" which maintained
1787         a reference to every control created.
1788         * Application.cs: Create a static FormCollection to maintain a reference
1789         to every form created.  Use it in places that formerly enumerated through
1790         the controls one looking for forms.
1791         * Form.cs: Add and remove self from above FormCollection.
1793 2006-12-07  Alexander Olk  <alex.olk@googlemail.com>
1795         * MimeIcon.cs: gdk_pixbuf_save_to_buffer is part of libgdk-pixbuf,
1796           not libgdk (though it makes me wonder why I didn't have any
1797           problems)
1799 2006-12-07  Chris Toshok  <toshok@ximian.com>
1801         [ you had to know this was coming after that last commit...]
1802         
1803         * XplatUIX11.cs: implement the 3 Offscreen functions in terms of
1804         XPixmaps (CreateOffscreenDrawable maps to XCreatePixmap,
1805         DestroyOffscreenDrawable to FreePixmap, and BlitFromOffscreen to
1806         XCopyArea).
1808 2006-12-07  Chris Toshok  <toshok@ximian.com>
1810         * XplatUI.cs: add 3 calls (CreateOffscreenDrawable,
1811         DestroyOffscreenDrawable, and BlitFromOffscreen) that encompass
1812         all the behavior we need for double buffering.
1814         * XplatUIDriver.cs: implement the 3 double buffer methods using a
1815         client side Bitmap, just like the old Control-based double buffer
1816         code did.  The methods are virtual, so each XplatUI driver
1817         subclass can replace the implementation to use a faster, platform
1818         specific approach.
1820         * Control.cs: make use of the 3 Offscreen XplatUI calls in the
1821         double buffer code, and clean things up a bit in the process.
1823 2006-12-06  Chris Toshok  <toshok@ximian.com>
1825         * Control.cs: reindent WndProc.
1827 2006-12-06  Chris Toshok  <toshok@ximian.com>
1829         [ I wanna be like BenM when I grow up ]
1830         
1831         * Hwnd.cs: create a single static Graphics object on the static
1832         Bitmap we create.  use this for our text measurements.
1834         * Control.cs (DeviceContext): stop using the backbuffer's dc_mem.
1835         This was causing us to allocate a backbuffer for every control,
1836         even when it wasn't flagged as double buffered.  Instead use the
1837         single graphics instance.  This might have implications for
1838         multithreaded applications.  If we run into problems we can switch
1839         to creating 1 Graphics per control, on the static Hwnd bitmap.
1841         this change nets us a 7M savings in private dirty mappings when
1842         running FormsTest.exe.
1844 2006-12-06  Chris Toshok  <toshok@ximian.com>
1846         * ListView.cs: the BackgroundImage override is just to set
1847         attributes.  chain up to base.BackgroundImage.
1849         * RichTextBox.cs: same.
1851         * ToolBar.cs: same, but we need to also redraw the toolbar when it
1852         changes, so instead a handler for BackgroundImageChanged.
1853         
1854         * Control.cs: make background_image private.
1856 2006-12-06  Chris Toshok  <toshok@ximian.com>
1858         * ScrollBar.cs: change the assignment of cursor to Cursor.  not
1859         sure we even need this assignment, but roll with it for now.
1861         * Control.cs: make the cursor field private.
1863 2006-12-06  Chris Toshok  <toshok@ximian.com>
1865         * Form.cs: we don't need to explicitly set ImeMode to
1866         ImeMode.NoControl - that's a natural fallout of Control.ImeMode's
1867         behavior in the face of ImeMode.Inherit.
1869         * ButtonBase.cs: change DefaultImeMode to ImeMode.Disable, and
1870         change the ctor's assignment to use ImeMode instead of ime_mode.
1872         * Control.cs (get_ImeMode): don't assume DefaultImeMode ==
1873         ImeModeInherit.  Only check for the parent's imemode (and return
1874         NoControl if there is no parent) if ime_Mode == ImeMode.Inherit.
1875         This fixes the button unit test, which sets both ImeMode and
1876         DefaultImeMode to ImeMode.Disable.
1878         also make the ime_mode field private.
1880 2006-12-06  Chris Toshok  <toshok@ximian.com>
1882         * Control.cs: make control_style private.
1884         * TextBoxBase.cs: fix the HandleClick override.  it was explicitly
1885         setting the styles to true, then setting them to false instead of
1886         reverting to their previous values.
1888         also, call SetStyle on the scrollbars instead of using
1889         control_style directly.
1891 2006-12-06  Jonathan Pobst  <monkey@jpobst.com>
1893         * FormCollection.cs: Implement. [2.0]
1895 2006-12-06  Chris Toshok  <toshok@ximian.com>
1897         * Control.cs: make tab_stop private.
1899         * Label.cs: set TabStop, not tab_stop.  reformat some event
1900         add/remove methods to make them more compact.
1902 2006-12-06  Chris Toshok  <toshok@ximian.com>
1904         * RadioButton.cs: fix TabStop handling.
1906 2006-12-06  Chris Toshok  <toshok@ximian.com>
1908         * TextBox.cs: remove the explicit assignments to has_focus.
1909         Control does that.
1911         * ButtonBase.cs: remove the assignment to has_focus.  Control will
1912         manage that.
1913         
1914 2006-12-06  Chris Toshok  <toshok@ximian.com>
1916         * ButtonBase.cs: remove all uses of is_enabled from this code.
1917         it's always true when any of the code containing the checks is
1918         executed.
1920 2006-12-06  Chris Toshok  <toshok@ximian.com>
1922         * ImageList.cs: reinstate the ShouldSerialize*/Reset* methods,
1923         with different semantics (some are present in both 1.1 and 2.0
1924         profiles) so that we match MS's behavior in our unit tests.
1926 2006-12-06  Jackson Harper  <jackson@ximian.com>
1928         * TextControl.cs: Make this operation undoable.
1929         * TextBoxBase.cs: Factor the border width into the preferred
1930         height.
1931         - implement Modified as per the spec.
1933 2006-12-06  Chris Toshok  <toshok@ximian.com>
1935         * Timer.cs, Control.cs, Menu.cs: make control_tag private.
1937 2006-12-06  Chris Toshok  <toshok@ximian.com>
1939         * Control.cs: make right_to_left and context_menu fields private.
1941 2006-12-06  Chris Toshok  <toshok@ximian.com>
1943         * AccessibleObject.cs, Control.cs, XplatUIX11GTK.cs,
1944         XplatUIX11.cs, Form.cs, RadioButton.cs, ScrollableControl.cs: make
1945         Control.child_controls private.  switch all uses over to
1946         Control.Controls.
1948 2006-12-06  Chris Toshok  <toshok@ximian.com>
1950         * System.Windows.Forms/GroupBox.cs,
1951         System.Windows.Forms/AccessibleObject.cs,
1952         System.Windows.Forms/ErrorProvider.cs,
1953         System.Windows.Forms/Control.cs,
1954         System.Windows.Forms/UpDownBase.cs,
1955         System.Windows.Forms/ScrollBar.cs,
1956         System.Windows.Forms/DateTimePicker.cs,
1957         System.Windows.Forms/Form.cs, System.Windows.Forms/Label.cs,
1958         System.Windows.Forms/ToolTip.cs,
1959         System.Windows.Forms/RadioButton.cs,
1960         System.Windows.Forms/LinkLabel.cs,
1961         System.Windows.Forms/Splitter.cs,
1962         System.Windows.Forms/TextBoxBase.cs,
1963         System.Windows.Forms/ToolStripTextBox.cs,
1964         System.Windows.Forms/ContainerControl.cs,
1965         System.Windows.Forms/ThemeWin32Classic.cs,
1966         System.Windows.Forms/SizeGrip.cs,
1967         System.Windows.Forms/ToolStripDropDown.cs,
1968         System.Windows.Forms/ScrollableControl.cs: Make Control.parent
1969         private.  switch all uses over to Control.Parent.
1971 2006-12-06  Chris Toshok  <toshok@ximian.com>
1973         * RichTextBox.cs: don't assign to has_focus in GotFocus/LostFocus.
1974         Control does this before calling emitting these events.
1976         * TabControl.cs: same.
1978         * ThemeWin32Classic.cs: use Control.ClientRectangle instead of
1979         Control.client_rect.
1981         * ButtonBase.cs: use the ClientSize property instead of the
1982         client_size field.
1984         * ScrollableControl.cs: same.
1986         * Control.cs: another pass at making properties private.  also,
1987         move the initialization of tab_stop to the ctor.
1989 2006-12-05  Andreia Gaita <avidigal@novell.com>
1991         * TabControl.cs: Let the selected index be set freely if the 
1992         control handle is not yet created.
1994 2006-12-05  Jonathan Pobst  <monkey@jpobst.com>
1996         * Control.cs: Revert dist_top, dist_right, and dist_bottom to 
1997         internal until I can rewrite DefaultLayout.
1998         * ToolStrip.cs: Fix build error and some general cleaning.
1999         * ToolStripControlHost.cs, SplitterPanel.cs, DataGridView.cs:
2000         Fix build errors caused by making some of Control's fields private.
2002 2006-12-05  Jackson Harper  <jackson@ximian.com>
2004         * TextControl.cs: Redo Insert a little so that it use IndexOf
2005         instead of Split, this prevents it from messing up on things like
2006         \n\n\n. Also more effecient since the split array doesn't need to
2007         be created.
2008         * TextBoxBase.cs: AppendText doesnt handle multiline and non
2009         multiline text differently, this is the first of many fixes that
2010         will make multiline/non-multiline the same thing as far as the
2011         TextBoxBase is concerned.
2012         - Don't split the text and insert lines, this can lose some line
2013         endings (like is the last line a soft or hard break). Instead use
2014         the new Insert.
2015         - Fix an off by one when combining all the lines in the Text
2016         getter.
2017         - Remove separate multiline handling from the Text getter/setter.
2019 2006-12-05  Chris Toshok  <toshok@ximian.com>
2021         * ButtonBase.cs: a few changes:
2023         - don't reinitialize internal Control fields in the ctor when they
2024         have the same values as Control sets them.
2026         - don't set has_focus in OnGotFocus/OnLostFocus.  Control does
2027         this before calling those methods.
2029         - we don't need to call Refresh for anything.  use Invalidate
2030         instead.
2032         - OnEnabledChanged doesn't need to redraw at all - Control.cs
2033         calls Refresh in its OnEnabledChanged.
2034         
2035         - several of the events we were registered for in the ctor to
2036         redraw ourselves already include calls to Invalidate in the
2037         property setters that raise the events.  remove the extra
2038         invalidation.
2040         - reformat a switch statement that was 83274658 columns wide.
2041         
2042 2006-12-05  Mike Kestner  <mkestner@novell.com>
2044         * ComboBox.cs: fix a unit test regression from a TextBox
2045         SelectionLength return of -1 when there's no selection.  
2047 2006-12-05  Chris Toshok  <toshok@ximian.com>
2049         * Control.cs, Button.cs, ThemeGtk.cs, Form.cs, ListView.cs,
2050         ThemeWin32Classic.cs, SizeGrip.cs, ToolBar.cs: first pass at
2051         cleaning up some of the internal Control fields being used by
2052         subclasses.
2054 2006-12-05  Mike Kestner  <mkestner@novell.com>
2056         * ComboBox.cs: fix some Simple mode regressions.  Set Visible on the
2057         listbox after AddImplicit calls since it defaults to hidden. Add a 
2058         hack to preserve requested heights across DropDownStyle changes.
2060 2006-12-05  Jonathan Pobst  <monkey@jpobst.com>
2062         * PropertyGrid.cs: Hide FindFirstItem method from public API.
2064 2006-12-05  Chris Toshok  <toshok@ximian.com>
2066         * DataGridView.cs: fix compiler warnings.
2068         * PrintControllerWithStatusDialog.cs: same.
2070         * ToolBar.cs: same.
2072         * FolderBrowserDialog.cs: same.
2074         * Splitter.cs: same.
2076         * DataGridViewComboBoxCell.cs: same.
2078         * XplatUIWin32.cs: same.
2080         * PictureBox.cs: same.
2082         * Win32DnD.cs: same.
2084         * PageSetupDialog.cs: same.
2086         * FileDialog.cs: same.
2088         * PrintDialog.cs: same.
2090         * DataGridTextBoxColumn.cs: same.
2092         * DrawTreeNodeEventArgs.cs: same (and fix corcompare)
2094 2006-12-05  Chris Toshok  <toshok@ximian.com>
2096         * TextBox.cs, CheckedListBox.cs, MonthCalendar.cs, Menu.cs,
2097         MainMenu.cs, ListView.cs, LabelEditTextBox.cs, ToolBar.cs: more
2098         System.ComponentModel.EventHandlerList work.
2100 2006-12-05  Jonathan Chambers  <joncham@gmail.com>
2102         * DrawTreeNodeEventArgs.cs: Added.
2104 2006-12-05  Rolf Bjarne Kvinge  <RKvinge@novell.com>
2105         
2106         * InternalWindowManager.cs: Remove an unused field.
2107         
2108 2006-12-05  Rolf Bjarne Kvinge  <RKvinge@novell.com>
2110         * InternalWindowManager.cs:
2111         - Save the point where the title bar is clicked.
2112         
2113         * MdiWindowManager.cs:
2114         - Only allow moving of the window as long as the 
2115         clicked point on the title bar does not get out of
2116         MdiClient's rectangle. Fixes #79982.
2117         
2118         * MdiClient.cs:
2119         - Added Horizontal/VerticalScrollbarVisible.
2120         - Simplified the scrollbar sizing algorithm.
2121         - Cache the difference in scrolled value in
2122         H/VBarValueChanged and move the calculation out
2123         of the for loop.
2125 2006-12-05  Rolf Bjarne Kvinge  <RKvinge@novell.com>
2127         * Control.cs: Make the Console.WriteLine in WndProc 
2128         write more info.
2130 2006-12-05  Chris Toshok  <toshok@ximian.com>
2132         * ToolStripManager.cs, ToolStripButton.cs,
2133         ToolStripContentPanel.cs, ToolStripComboBox.cs, ToolStrip.cs,
2134         ToolStripMenuItem.cs, ToolStripItem.cs, ToolStripControlHost.cs,
2135         ToolStripSplitButton.cs, ToolStripSeparator.cs,
2136         ToolStripRenderer.cs, ToolStripDropDownItem.cs,
2137         ToolStripProgressBar.cs, ToolStripContainer.cs,
2138         ToolStripTextBox.cs, ToolStripPanel.cs, ToolStripDropDown.cs: move
2139         to using System.ComponentModel.EventHandlerList.
2141 2006-12-04  Chris Toshok  <toshok@ximian.com>
2143         * LinkLabel.cs: fix up compiler warnings.
2145         * TableLayoutSettings.cs: same.
2147         * TreeView.cs: same.
2149         * ToolBar.cs: same.
2151         * TabControl.cs: same.
2153         * RichTextBox.cs: same.
2155         * ListViewItem.cs: same.
2157         * PropertyGrid.cs: same.
2159         * DataGridViewRowPostPaintEventArgs.cs: corcompare fix.
2161         * ToolTip.cs same.
2163         * TextRenderer.cs: fix up compiler warnings.
2165         * Label.cs: same.
2167         * Form.cs: corcompare fixes.
2169         * PictureBox.cs: fix up compiler warnings.
2171         * ImageListStreamer.cs: same.
2173         * TrackBar.cs: corcompare fix.
2175         * Control.cs: fix up compiler warnings.
2177         * SplitterPanel.cs: same.
2179         * NumericTextBox.cs: same.
2181         * ImageList.cs: same.
2183         * StatusStrip.cs: same.
2185         * ProgressBar.cs: corcompare fix.
2187         * ToolStripButton.cs: fix up compiler warnings.
2189         * ToolStripStatusLabel.cs: same.
2191         * ToolStripSplitButton.cs: same.
2193         * ToolStripSeparator.cs: same.
2195         * ToolStripProgressBar.cs: same.
2197         * ToolStripDropDownMenu.cs: same
2199         * ToolStripDropDown.cs: same.
2201         * ToolStripDropDownButton.cs: same.
2203         * ToolStrip.cs: same.
2205         * ToolStripControlHost.cs: same.
2207         * ToolStripContentPanel.cs: same.
2209         * ToolStripDropDown.cs: same.
2211         * ToolStripContainer.cs: same.
2213         * ToolStripPanel.cs: same, and add "new" where we need it to work
2214         with the new ArrangedElementCollection.
2216         * ToolStripItemCollection.cs: add "new" where we need it to work
2217         with the new ArrangedElementCollection.
2219 2006-12-04  Andreia Gaita <avidigal@novell.com>
2221         * TabControl.cs: Fix default tab selection to after TabControl
2222         gets focus and not before. Fixes #80128
2224 2006-12-04  Chris Toshok  <toshok@ximian.com>
2226         * DataGridTableStyle.cs: remove the gross calling of
2227         datagrid.Refresh from here.  It's a broken idea and it doesn't
2228         work anyway.
2230         * DataGrid.cs: instead, just register/unregister from the
2231         DataGridTableStyle events in CurrentTableStyle.  we play it
2232         conservatively and EndEdit + CalcAreasAndInvalidate on any event,
2233         even though some would most likely not require it.  Fixes bug
2234         #80115 (and one portion of #80117 as a side effect).
2236 2006-12-04  Chris Toshok  <toshok@ximian.com>
2238         * DataGrid.cs (set_CaptionVisible): EndEdit before doing the work
2239         so the textbox (if any) goes away.  Fixes bug #80117.
2241 2006-12-04  Chris Toshok  <toshok@ximian.com>
2243         * DataGridColumnStyle.cs: set the column's readonly property
2244         initially based on the property descriptor's IsReadOnly.  Fixes
2245         bug #80044.
2247 2006-12-04  Chris Toshok  <toshok@ximian.com>
2249         * ComboBox.cs: wrap the dropdown style changing work in
2250         SuspendLayout/ResumeLayout.  Fixes bug #79968.
2252 2006-12-04  Jackson Harper  <jackson@ximian.com>
2254         * TextBoxBase.cs: Fix off by one, since these are one-based.
2255         * TextBox.cs: Select all the text when we get focus.  The TextBox
2256         does this but the RTB does not.
2258 2006-12-04  Chris Toshok  <toshok@ximian.com>
2260         * DataGridTextBoxColumn.cs: remove some spew.
2262         * DataGridColumnStyle.cs (SetColumnValueAtRow): this seems right
2263         but some part of me is saying "it shouldn't be here.."  At any
2264         rate, it fixes bug #80046.  Call IEditableObject.EndEdit after
2265         setting the value.
2267 2006-12-04  Chris Toshok  <toshok@ximian.com>
2269         * DataGridColumnStyle.cs (SetDataGrid): call CheckValidDataSource
2270         to reassign the propertydescriptor.
2272 2006-12-04  Jackson Harper  <jackson@ximian.com>
2274         * TextBoxBase.cs:
2275         * TextControl.cs: Remove some unused variables.  Maybe this will
2276         patch things up between mike and I.
2277         - don't split lines less then one char wide, if the viewport is
2278         that small text won't be visible anyways.
2279         
2280 2006-12-04  Jackson Harper  <jackson@ximian.com>
2282         * TextBoxBase.cs: Default selection length is -1, need to do some
2283         more testing on windows to see when this is used for the property.
2284         - Redid the Lines [] property to that we properly remove soft line
2285         breaks
2286         - added support for preserving carriage returns
2287         -  CanUndo is not a variable like 'is undo enabled' it just returns
2288         true if there is undo operations available.
2289         - AppendText doesn't need to grab the last tag itself anymore,
2290         this happens automatically when we move the cursor.
2291         * TextControl.cs: Add CompoundActions to the undo class. This
2292         allows combining the other operations into one big option.  ie a
2293         paste will combine { delete old, insert new, move cursor }
2294         - Add InsertString undo operation
2295         - New method for deleting multiline text
2296         - Add carriage returns to lines. So we can preserve carriage
2297         returns when text is 'roundtripped'
2299 2006-12-04  Chris Toshok  <toshok@ximian.com>
2301         * DataGrid.cs (CalcCellsArea): cells_area.Width/Height are at a
2302         minimum 0.  Fixes the scrollbar exception in bug #80136.
2304 2006-12-04  Rolf Bjarne Kvinge  <RKvinge@novell.com>
2306         * MdiClient.cs: 
2307         * MdiWindowManager: Removed unused fields and methods.
2308         
2309 2006-12-04  Rolf Bjarne Kvinge  <RKvinge@novell.com>
2310         
2311         * StatusBar.cs: Update all panels when a AutoSize=Contents
2312         panel needs updating.
2313         
2314         * StatusBarPanel.cs: Remove twidth and only use initialize.
2315         Fixes #80031.
2316                 
2317 2006-12-04  Rolf Bjarne Kvinge  <RKvinge@novell.com>
2319         * Form.cs: When a form's MdiParent is set add it directly
2320         on top of the z-order in stead of relying on MdiClient's
2321         ActivateChild to do it. Fixes #80135.
2322         
2323         * MdiClient.cs: 
2324         - Remove original_order, mdi_child_list is already doing
2325         the same thing.
2326         - Create mdi_child_list on construction in
2327         stead of first use (avoids a few null checks).
2329         * MenuItem.cs: Use an already existing list of mdi children
2330         to get the correct order of children and remove the other
2331         redundant list.
2333 2006-12-04  Chris Toshok  <toshok@ximian.com>
2335         * PropertyGridView.cs: cached_splitter_location is only used in
2336         !DOUBLEBUFFER code.
2338         * PropertyGrid.cs: implement the ComComponentNameChanged event
2339         using Events, hoping that would fix the warning.  Looks like a
2340         compiler bug instead (#80144).
2342         * PropertyManager.cs: remove unused method.
2344 2006-11-04  Everaldo Canuto  <everaldo@simios.org>
2346         * ThemeWin32Classic.cs: Dont draw arrow when menuitem on menubar, 
2347         include parentesis to fix expression evaluation. Fixes #79634.
2349 2006-11-02  Everaldo Canuto  <everaldo@simios.org>
2350         
2351         * MenuAPI.cs:
2352         - Changes to fix behavior in Menu control, some reported in #80097
2353         and other detected during behavior refactory like a select event
2354         problems.
2355         - Remove unneded "if's" conditions.
2356         - Created an internal to flag when popup is active in control, we need 
2357         it because in .NET you can have menu active but without popup active
2358         when you active menu using popup without visible items.
2359         - Mimic win32 behavior for Select and Popup events.  
2360         - Dont open popup menu when you dont have visible subitems.
2361         - Do nothing when click on disabled menu item.
2362         - Some small changes to follow the coding style guidelines.
2363         - Unselect menu only when another control gives focus. Fixes #80097.
2364         - Remove unused code.
2365         
2366         * MenuItem.cs: internal VisibleItems method to check if menu
2367         theres visible subitems, it will be usefull to fix some 
2368         behavior in Menu control.
2369         
2370 2006-11-01  Everaldo Canuto  <everaldo@simios.org>
2371         
2372         * Timer.cs: Tag property for 2.0 profile.
2373         
2374 2006-12-01  Chris Toshok  <toshok@ximian.com>
2376         [ after removing all warning suppressions, this cleans up over 100 warnings. ]
2377         
2378         * Win32DnD.cs: comment out some unused fields.
2380         * XplatUIWin32.cs: comment out some unused pinvokes, and remove
2381         some unused properties/methods.
2383         * XplatUIX11.cs: fix MousePosition so we override the base class's
2384         property instead of conflicting with it.
2386         * PictureBox.cs: comment out some unused fields
2388         * OSXStructs.cs: make some struct fields public.
2390         * XplatUIOSX.cs: comment out some unused pinvokes, and fix
2391         MousePosition so we override the base class's property instead of
2392         conflicting with it.
2394         * X11Dnd.cs: comment out some unused fields
2396         * X11DesktopColors.cs: fix some struct field visibility to quiet
2397         the compiler.
2399         * X11Dnd.cs: remove some debug code.
2401         * ThemeClearlooks.cs: comment out unused field.
2403         * ThemeNice.cs: mark some methods as overriding ThemeWin32Classic as needed.
2405         * ThemeGtk.cs: comment out some unused pinvokes.
2407         * Timer.cs: remove some unused fields.
2409         * ThemeClearlooks.cs: comment out unused field.
2411         * UpDownBase.cs: comment out unused field.
2413         * DataObject.cs: comment out unused field.
2415         * DataGridBoolColumn.cs: reomve unused field.
2417         * DataGrid.cs: remove unused field.
2419         * Cursor.cs: remove old ToBitmap code.
2421         * ControlPaint.cs: remove unused method.
2423         * ScrollBar.cs: remove unused fields.
2425         * ComboBox.cs: remove unused field, and chain up to
2426         AccessibleObject ctor.
2428         * ListBox.cs: remove unused field.
2430         * ButtonBase.cs: wrap a couple fields in NET_2_0.
2432         * GridEntry.cs: remove unused fields.
2434         * Binding.cs: remove unused fields.
2436         * AxHost.cs: remove unused method.
2438         * ContainerControl.cs: remove unused field.
2440         * ScrollableControl.cs: remove unused fields.
2442 2006-12-01  Chris Toshok  <toshok@ximian.com>
2444         * XplatUI.cs, XplatUIWin32.cs, XplatUIGTK.cs: nuke
2445         the Where/WhereString stuff.  it's easy enough to CWL
2446         Environment.StackTrace.
2448         * XplatUIX11.cs: same, but also fix up a lot of mcs warnings about
2449         unused private fields.
2451 2006-12-01  Jackson Harper  <jackson@ximian.com>
2453         * TextControl.cs: Do not update the view while inserting multiline
2454         text. If we update the view we might wrap lines, before entering
2455         the new lines, which causes the new line insertion calculations to
2456         be totally fubared.
2457         - Remove an old TODO
2458         - Make debug output a little nicer
2459         
2460 2006-12-01  Chris Toshok  <toshok@ximian.com>
2462         * ToolBar.cs: revert the ImeMode fix here and add an XXX comment.
2464 2006-12-01  Chris Toshok  <toshok@ximian.com>
2466         [ fix the majority of the CS0108 warnings we've been suppressing ]
2467         
2468         * TreeView.cs: mark BackgroundImageChanged as 'new'.
2470         * ToolBar.cs: ImeMode just passes stuff to Control.  Rename Layout
2471         to "LayoutToolBar" to quiet mcs.
2472         
2473         * TabControl.cs: mark our ControlCollection class as 'new'.
2475         * TextBoxBase.cs: mark some events as 'new'.
2477         * Splitter.cs: TabStop is 'new'.
2479         * ControlBindingsCollection.cs: mark a few methods as new since
2480         they change the visibility from protected to public.
2482         * RadioButton.cs: DoubleClick -> base class, and remove unused
2483         HaveDoubleClick.
2485         * MonthCalendar.cs: ImeMode property -> base class, and mark many
2486         events as new.
2488         * NumericUpDown.cs: TextChanged -> base class.
2490         * CheckedListBox.cs: mark our ObjectCollection class as new to
2491         quiet mcs.
2493         * FolderBrowserDialog.cs: make HelpRequest event new and have it
2494         muck with the base class.
2496         * StatusBar.cs: fix some mcs warnings about Update being the same
2497         name as a base class method.
2499         * RichTextBox.cs: mark some events as new, and make them do things
2500         to the base class impl.
2502         * UserControl.cs: mark TextChanged as new, and have it manipulate
2503         base.TextChanged.
2505         * UpDownBase.cs: mark some things new.
2507         * CheckBox.cs: mark DoubleClick "new", and add some text about
2508         what we need to look at.
2510         * Panel.cs: make the events "new", and manipulate the base
2511         version.  these are just here for attributes.
2513         * AccessibleObject.cs: make owner private.
2515         * Control.cs: deal with AccessibleObject.owner being private.
2516         cache our own copy if we need it.
2518         * Button.cs: add "new" to the DoubleClickEvent.
2520         * ListBox.cs: no need to track our own has_focus here.  let
2521         Control.has_focus do it for us.  Also some other work to clear up
2522         warnings about not overriding base class methods of the same name.
2523         
2524         * ComboBox.cs: clear up some warnings about not override base
2525         class methods of the same name.
2527 2006-12-01  Chris Toshok  <toshok@ximian.com>
2529         * Form.cs: flag a few things as "new" to quiet some of the mcs
2530         warnings.
2532         * AxHost.cs: same.
2534         * PrintPreviewDialog.cs: same.
2536         * DataGridView.cs: fix a ton of corcompare warnings.  not all, but
2537         now DGV isn't so horrible on the class status page.  also, move
2538         all events to using System.ComponentModel.EventHandlerList.  my
2539         wrists hurt.
2541 2006-12-01  Rolf Bjarne Kvinge  <RKvinge@novell.com>
2543         * MdiWindowManager.cs:
2544         - Set form to active mdi child if shown,
2545         and update the active mdi child to the next 
2546         remaining child in the z-order if the form is hidden.
2548         * Form.cs: 
2549         - Track if the form has been visible and if its 
2550         visibility is beeing changed, so that the MdiClient
2551         can properly decide the ActiveMdiChild. The MdiClient 
2552         cannot track this since the form can change visibility 
2553         before MdiClient is created.
2555         * MdiClient.cs:
2556         - Don't activate anything of the parent form is changing
2557         its visibility.
2558         - Rework ActiveMdiChild to only return visible mdi 
2559         children and take into account several other corner 
2560         cases.
2562 2006-12-01  Chris Toshok  <toshok@ximian.com>
2564         * IBindableComponent.cs: new 2.0 interface.
2566 2006-12-01  Gert Driesen  <drieseng@users.sourceforge.net>
2568         * DataGrid.cs: Font for caption area is bold by default.
2570 2006-12-01  Everaldo Canuto  <everaldo@simios.org>
2572         * Menu.cs: Tag property for 2.0.
2573         
2574 2006-11-01  Everaldo Canuto  <everaldo@simios.org>
2576         * ThemeWin32Classic.cs: Adjust menu separator drawing. 
2577         
2578 2006-12-01  Chris Toshok  <toshok@ximian.com>
2580         * TreeView.cs: doh, the Begin* events should be
2581         TreeViewCancelEventHandler.
2583 2006-12-01  Chris Toshok  <toshok@ximian.com>
2585         * Form.cs: Form.ControlCollection already stores off the
2586         form_owner field.  don't access the base class's internal "owner"
2587         field.
2589         * Control.cs: make all the fields in Control.ControlCollection
2590         private.  there's no need for any internal fields here.
2592 2006-12-01  Chris Toshok  <toshok@ximian.com>
2594         * DataGrid.cs: call SetDataSource instead of CalcGridAreas in
2595         OnHandleCreated.  Fixes bug #80109.
2597 2006-12-01  Chris Toshok  <toshok@ximian.com>
2599         * Button.cs, PropertyGridTextBox.cs, ComboBox.cs,
2600         SplitContainer.cs, Control.cs, StatusStrip.cs,
2601         DataGridTableStyle.cs, MenuItem.cs, DomainUpDown.cs, ImageList.cs,
2602         NumericTextBox.cs, NumericUpDown.cs, Panel.cs, CommonDialog.cs,
2603         DataGrid.cs, ScrollBar.cs, TrackBar.cs, PictureBox.cs,
2604         DateTimePicker.cs, StatusBar.cs, Form.cs, PrintPreviewDialog.cs,
2605         Label.cs, UserControl.cs, CheckBox.cs, RadioButton.cs,
2606         LinkLabel.cs, ListControl.cs, PropertyGrid.cs, Splitter.cs,
2607         MenuStrip.cs, FolderBrowserDialog.cs, NotifyIcon.cs,
2608         TextBoxBase.cs, ListView.cs, DataGridBoolColumn.cs,
2609         PrintPreviewControl.cs, RichTextBox.cs, ListBox.cs, TabControl.cs,
2610         DataGridColumnStyle.cs, ContextMenu.cs, TreeView.cs:
2612         do most of the work to convert our code over to use
2613         System.ComponentModel.Component.Events for
2614         adding/removing/dispatching events.
2617 2006-11-30  Jonathan Pobst  <monkey@jpobst.com>
2619         * DataGridView.cs: Fix an ArgumentNullException reported 
2620         twice today in IRC.
2622 2006-11-30  Mike Kestner  <mkestner@novell.com>
2624         * ComboBox.cs: fix the scrollbar mouse event forwarding in the 
2625         grabbed listbox.  Fixes #80036 and #80101.
2627 2006-11-30  Rolf Bjarne Kvinge <RKvinge@novell.com>
2629         * Message.cs: Changed ToString() to match MS.
2630         
2631 2006-11-30  Jackson Harper  <jackson@ximian.com>
2633         * TextBoxBase.cs: You can still change the selected text on a read
2634         only textbox.
2635         * TextControl.cs: Lower magic number for wrap calculations. This
2636         lets text get closer to the right (far) edge.
2638 2006-11-30  Jonathan Pobst  <monkey@jpobst.com>
2640         * Control.cs: Tweak 2.0 layout properties.
2641         * Form.cs: Switch ToolStripMenuTracker hooks to ToolStripManager.
2642         * TextRenderer.cs: Add a new overload.
2643         * ToolStrip*: Huge amount of changes and new features.
2645 2006-11-30  Mike Kestner  <mkestner@novell.com>
2647         * ComboBox.cs: fixes for LargeChange and Maximum to get the 
2648         scroll range correct.  Fixes #79994.
2650 2006-11-30  Rolf Bjarne Kvinge <RKvinge@novell.com>
2652         * MdiWindowManager.cs: Update main form's text when
2653         a form is closed. (fixes #80038)
2654         
2655 2006-11-30  Everaldo Canuto  <everaldo@simios.org>
2657         * ToolBar.cs:
2658         - Fix an regression in ButtonSize.
2659         - Get ImeMode default value change to "Disable".
2660         - Get ShowTooltips default value change to true, default value is 
2661         "false" but after make a test in .NET we get "true" result as default.
2662         
2663 2006-11-29  Jonathan Pobst  <monkey@jpobst.com>
2665         * ToolStripDropDown.cs: Fix for SupportsTransparency change.
2667 2006-11-29  Chris Toshok  <toshok@ximian.com>
2669         * XplatUIWin32.cs (GetWindowTransparency): check return value of
2670         GetLayeredWindowAttributes.  if it's 0, return 1.0, as
2671         SetWindowTransparency hasn't been called.
2673 2006-11-29  Chris Toshok  <toshok@ximian.com>
2675         * Form.cs (set_TransparencyKey): only call SetWindowTransparency
2676         if it's supported.
2677         (set_AllowTransparency): reorder things a little so that the
2678         WS_EX_LAYERED style is removed properly.
2680 2006-11-29  Chris Toshok  <toshok@ximian.com>
2682         [ totally cosmetic eye-candy feature, fixes bug #80089 ]
2683         
2684         * Form.cs: only call the XplatUI transparency method (get/set) if
2685         SupportsTransparency says it's supported. Otherwise fallback to
2686         doing nothing (in the set case) or returning the instance field we
2687         cache (in the get case).
2689         * XplatUIStructs.cs: add TransparencySupport flag enum.
2690         
2691         * XplatUIDriver.cs: add abstract GetWindowTransparency, and track
2692         change to SupportsTransparency.
2694         * XplatUIOSX.cs: stub out GetWindowTransparency, and return
2695         TransparencySupport.None from SupportsTransparency.
2697         * XplatUIX11.cs: Stub out GetWindowTransparency, and return
2698         TransparencySupport.Set from SupportsTransparency.
2700         * XplatUIWin32.cs: implement GetWindowTransparency calling
2701         GetLayeredWindowAttributes, and implement SupportsTransparency by
2702         checking whether or not both
2703         GetWindowTransparency/SetWindowTransparency are available
2704         entrypoints.  We need to do this since SetWindowTransparency is
2705         available as of win2k, but GetWindowTransparency requires winxp.
2706         yay win32 api.
2708         * XplatUI.cs: Add GetWindowTransparency, and change
2709         SupportsTransparency to allow for either/both Get/Set.
2711 2006-11-29  Chris Toshok  <toshok@ximian.com>
2713         * DataGrid.cs: keep from going into an infinite loop redrawing a
2714         datagrid that has no datasource.  Fixes bug #80033.
2716 2006-11-29  Chris Toshok  <toshok@ximian.com>
2718         * MenuItem.cs: fix the NRE when we assign text (and therefore call
2719         Invalidate) before the mainmenu has been assigned to a control.
2721 2006-11-29  Chris Toshok  <toshok@ximian.com>
2723         * DataGrid.cs: detect when we should be double the double click
2724         row/column autosize stuff, although that codepath has yet to be
2725         written.  part of the work for bug #79891.
2727 2006-11-29  Chris Toshok  <toshok@ximian.com>
2729         * Binding.cs (SetControl): fix unit test.
2731 2006-11-29  Carlos Alberto Cortez <calberto.cortez@gmail.com>
2733         * PageSetupDialog.cs: Validate the margins and set them in
2734         PageSettings. 
2735         * NumericTextBox.cs: New class to mimic the behavior of the
2736         textboxes used in the printing dialogs.
2738 2006-11-29  Andreia Gaita  <avidigal@novell.com>
2739         
2740         * Form.cs: Revert previous change (remove call UpdateBounds
2741         from form constructor), because it messes with the handle creation
2742         order, and that one needs lots and lots of love.
2743         * PrintPreviewDialog.cs: Revert change to CreateHandle (add check
2744         for valid printer and throw InvalidPrinterException if document
2745         is set but printer not valid), adding a MonoTODO. Once 
2746         handle creation is done properly, we can put this back in.
2748 2006-11-28  Everaldo Canuto  <everaldo@simios.org>
2750         * MenuItem.cs: Create a invalidate method for menu item, to be
2751         calling from set text, it make text changes to imadiate update
2752         on screen. Fixes #80013. 
2753         
2754 2006-11-28  Everaldo Canuto  <everaldo@simios.org>
2756         * ToolBar.cs: Fixes and simplify toolbar button layout, it 
2757         fixes bug #80070 and some other problem on toolbar buttons
2758         layout.
2760 2006-11-28  Everaldo Canuto  <everaldo@simios.org>
2762         * ThemeWin32Classic.cs: Paint toolbar toggle button background 
2763         with dotted brush.      Fixes #79564
2764         
2765 2006-11-28  Andreia Gaita  <avidigal@novell.com>
2767         * Form.cs: Removed call to UpdateBounds on Form
2768         constructor, it was causing a call to CreateHandle
2769         before it was supposed to.
2770         * PrintControllerWithStatusDialog: Applied patch
2771         by Chris Toshok to hide controller when there are
2772         no printers available.
2773         PrintDialog.cs: initialize printer settings to 
2774         null - correct DefaultValues test #5
2775         * PrintPreviewControl.cs: Move PrintController
2776         initialization to GeneratePreview
2777         * PrintPreviewDialog.cs: 
2778         - Remove Preview generation     from Document_set(). It is 
2779         called on OnPaint
2780         - Throw InvalidPrinterException on CreateHandle if
2781         a Document is set but there are no printers or 
2782         printer is not valid.
2783         * ThemeWin32Classic: don't paint PrintPreviewControl
2784         if there is nothing to paint    
2786 2006-11-28  Miguel de Icaza  <miguel@novell.com>
2788         * Form.cs: Add another popular method.
2790         * TabPage.cs: ditto.
2792 2006-11-28  Rolf Bjarne Kvinge  <RKvinge@novell.com>
2794         * MenuItem.cs: Fixed a warning.
2795         * InternalWindowManager: Fixed a warning.
2797 2006-11-28  Rolf Bjarne Kvinge  <RKvinge@novell.com>
2799         * MenuItem.cs:
2800         - When cloning a menu also clone MdiList and clone the 
2801           window menu items properly (as the forms and menuitems
2802           are kept in an internal hashtable, these need updating 
2803           as well)
2804         - Rewrote the window menu code, menu items are added in the
2805           order the forms were added to their parent, and they are
2806           updated every time the window menu is shown (before the
2807           list was only generated once, in the current order of the
2808           forms, and would never be updated). A checkmark is shown
2809           next to the item corresponding to the active mdi child.
2811 2006-11-28  Rolf Bjarne Kvinge  <RKvinge@novell.com>
2813         * XplatUIStructs.cs: 
2814         - Added WM_NCMOUSEHOVER and WM_NCMOUSELEAVE.
2815         
2816         * XplatUIWin32.cs: 
2817         - Added TME_NONCLIENT to TMEFlags.
2818         - Handles WM_NCMOUSEMOVE in GetMessage to 
2819           generate WM_NCMOUSEHOVER and WM_NCMOUSELEAVE messages.
2821         * MdiWindowManager:
2822         - Now merges mdi child menu to parent menu when maximized.
2823         - Recalculate NC areas of both mdi child and mdi parent. 
2824           Fixes #79757 (4).
2825           on window state and size changes.Fixes #79844 (3).
2826         - Handle WM_NCCALCSIZE to properly calculate borders.
2828         * Form.cs:
2829         - Add/remove to the mdi containers list of mdi children 
2830           in the order they are added.
2831         - Pass on WM_NCLBUTTONUP, WM_NCMOUSEMOVE and WM_NCMOUSELEAVE 
2832           to the maximized mdi child.
2833         
2834         * InternalWindowManager.cs:
2835         - Only execute a click on the control buttons on the mouse up,
2836           not on the mouse down. Show the state of the button 
2837           (was only showing Normal state, never Pressed state). The
2838           pressed button now follows the mouse (if you click the Close 
2839           button and move the mouse over the Maximize button, the 
2840           Maximize button will be shown as pressed). Since Win32 does
2841           not generate WM_NCLBUTTONUP if you release the button outside
2842           of the nc area, we need to handle WM_NCMOUSELEAVE and treat
2843           it as a mouse up.
2844         
2845         * ThemeWin32Classic.cs:
2846         - Draw a missing border around mdi child forms. Fixes #79844 (2).
2848         * MdiClient.cs:
2849         - Added a list of forms which contains the order the forms are
2850           added to the mdi parent.
2851         - Handle WM_NCPAINT to properly draw a 3D border. Fixes #79844 (2).
2852         - Handle WM_NCCALCSIZE to properly calculate the 3D border.
2853         - If the active form changes set the scrollbars to the top
2854           of the Z order, otherwise the form could hide them.
2855         - Scrollbars are now sized according to ClientSize, not 
2856           to Size, and they take into account the other scrollbar
2857           to determine maximum.
2858         
2859 2006-11-28  Rolf Bjarne Kvinge <RKvinge@novell.com>
2860         
2861         * XplatUI.cs:
2862         * XplatUIDriver.cs:
2863         * XplatUIX11.cs:
2864         * XplatUIWin32.cs:
2865         * XplatUIOSX.cs:
2866         - Added RequestAdditionalWM_NCMessages for windows to 
2867           opt in for WM_NCMOUSELEAVE and WM_NCMOUSEHOVER.
2868           Currently only implemented in XplatUIWin32.
2870 2006-11-27  Chris Toshok  <toshok@ximian.com>
2872         * Hwnd.cs: only add the hwnd to the windows hash in
2873         set_WholeWindow and set_ClientWindow if whole_window/client_window
2874         are not IntPtr.Zero.  also, remove the unused SetObjectWindow.
2876 2006-11-27  Mike Kestner  <mkestner@novell.com>
2878         * ComboBox.cs: remove redundant OnDropDown call.  It is called
2879         from the ComboListBox.ShowWindow code. Fixes #79969.
2881 2006-11-27  Chris Toshok  <toshok@ximian.com>
2883         * Hwnd.cs: remove the setters for ExposePending and
2884         NCExposePending - noone uses them.
2886 2006-11-27  Jackson Harper  <jackson@ximian.com>
2888         * TextControl.cs: new param for ReplaceSelection which determines
2889         whether we select the new selection, or set the cursor to the end
2890         of the new selection.
2891         * TextBoxBase.cs: Use new param for ReplaceSelection.  When
2892         pasting, select the new text.
2893         * RichTextBox.cs: Use new param for ReplaceSelection.
2895 2006-11-27  Jackson Harper  <jackson@ximian.com>
2897         * TextBoxBase.cs: Set the selection to the caret after the caret
2898         is moved, otherwise they get out of sync.
2900 2006-11-26  Everaldo Canuto  <everaldo@simios.org>
2902         * ToolBar.cs: Fixe size of ToolBar when AutoSize is false,
2903         it fixes #80015
2905 2006-11-26  Everaldo Canuto  <everaldo@simios.org>
2907         * ThemeWin32Classic.cs: 
2908         - Fix toolbar drop down arrow position.
2909         - Fix drop down appearance when ToolBar.Appearance is normal,
2910         it fixes #80018.
2911         
2912 2006-11-26  Gert Driesen  <drieseng@users.sourceforge.net>
2914         * ProgressBar.cs: GetStyle fixes for 2.0 profile.
2915         * Control.cs: Same.
2916         * UpDownBase.cs: Same.
2917         * ButtonBase.cs: Same.
2918         * ScrollBar.cs: Same.
2919         * TrackBar.cs: Same.
2920         * PictureBox.cs: Same.
2921         * UserControl.cs: Same.
2922         * Label.cs: Same.
2923         * ListControl.cs: Same.
2924         * TextBoxBase.cs: Same.
2925         * ListView.cs: Same.
2926         * RichTextBox.cs: Same.
2927         * TreeView.cs: Same.
2929 2006-11-25  Jordi Mas i Hernandez <jordimash@gmail.com>
2931         * PrintDialog.cs:
2932         - Text label for where 
2933         - Text label comment was not shown
2935 2006-11-23  Everaldo Canuto  <everaldo@simios.org>
2937         * ThemeWin32Classic.cs: Fix toolbar drop down arrow size.
2939 2006-11-23  Rolf Bjarne Kvinge  <RKvinge@novell.com> 
2941         * InternalWindowManager.cs: 
2942         - Handle WM_PARENTNOTIFY to activate the form
2943         if any child control is clicked.
2944         - The form is only sizable if not minimized.
2946         * MdiWindowManager.cs:
2947         - Save the IconicBounds if the form is moved.
2948         - Rework SetWindowState, now the window bounds 
2949         are stored only if the old window state is Normal.
2950         
2951         * MdiClient.cs:
2952         - In SetWindowStates store the old window state if 
2953         the window is maximized and restore window state if
2954         the window looses focus.
2955         - Don't handle any scrollbar value changes if 
2956         initializing the scroll bars. Fixes #79771.
2957         - Reworked ArrangeIconicWindows. Current algorithm
2958         tests bounds agains all other minimized windows, if
2959         any intersections create new bounds (going left to 
2960         right, bottom to top) and then test again. When 
2961         successful the bounds are saved and never computed
2962         again. Fixes #79774.
2964 2006-11-23  Rolf Bjarne Kvinge  <RKvinge@novell.com> 
2966         * InternalWindowManager.cs: Added HandleTitleBarUp.
2968 2006-11-23  Gert Driesen  <drieseng@users.sourceforge.net>
2970         * NumericUpDown.cs: In .NET 1.1, user entered text is still
2971         hexadecimal in ParseUserEdit.
2973         
2974 2006-11-23  Rolf Bjarne Kvinge  <RKvinge@novell.com> 
2976         * MdiWindowManager.cs: 
2977         - Handle a click on the form's icon to show the 
2978         system menu (when maximized). Fixes #79775.
2979         - Change the existing click handler for the form's
2980         icon when not maximized to show on MouseUp.
2981         Fixes #79776.
2983         * Form.cs: In OnResize only layout the mdi child's
2984         parent if it actually has a parent. Might not if
2985         the window is closing.
2988 2006-11-23  Gert Driesen  <drieseng@users.sourceforge.net>
2990         * MdiClient.cs: Ignore active MDI client for text of parent, if
2991         child has no text set.
2993 2006-11-23  Gert Driesen  <drieseng@users.sourceforge.net>
2995         * ToolBar.cs: Fixed ToString to match MS.
2997 2006-11-22  Andreia Gaita  <avidigal@novell.com>
2999         * NumericUpDown: 
3000         - Fix DecimalPlaces, Hexadecimal and ThousandsSeparator to 
3001         update inner values on set. Fixes #79966.
3002         - Override OnLostFocus to update value on NET 2. Fixes #79950.
3003         - Fix hexadecimal parsing.
3004         
3005         * UpDownBase: Override OnGotFocus and OnLostFocus to notify 
3006         parent. Fixes #79957
3008 2006-11-22  Rolf Bjarne Kvinge  <RKvinge@novell.com>
3010         * Control.cs: After calling SetWindowsPos in SetBoundsCore 
3011         the actual size has to be queried, since if height /
3012         width is negative Win32 changes it to 0. 
3013         Fixes #79999 on Windows.
3014         
3015         * XplatUIX11.cs: Set height / width to 0 if negative
3016         in SetWindowPos. Fixes #79999 on Linux.
3017         
3018 2006-11-22  Everaldo Canuto  <everaldo@simios.org>
3020         * ThemeWin32Classic.cs: Fix text redenring when button is
3021         pressed.
3023 2006-11-22  Everaldo Canuto  <everaldo@simios.org>
3025         * MenuAPI.cs: Fixes behavior when menu is opened by kerboard
3026         and later navigate by mouse. Fixes #79528.
3028 2006-11-21  Everaldo Canuto  <everaldo@simios.org>
3030         * ToolBar.cs: Set default value for TabStop to false in
3031         constructor, it fixes remaining behavior of bug #79863.
3033 2006-11-21  Rolf Bjarne Kvinge  <RKvinge@novell.com>
3035         * MdiWindowManager.cs:
3036         * InternalWindowManager.cs:
3037         - Moved a few methods specific to Mdi from 
3038         InternalWindowManager to MdiWindowManager.
3039         Fixes #79996.
3040         
3041 2006-11-21  Chris Toshok  <toshok@ximian.com>
3043         * XplatUIOSX.cs: stub out InvalidateNC.
3045         * XplatUIWin32.cs: implement InvalidateNC using the call I found
3046         at http://www.dotnet247.com/247reference/msgs/58/292037.aspx.
3048         * XplatUIX11.cs: rename InvalidateWholeWindow to InvalidateNC.
3050         * XplatUIDriver.cs: add InvalidateNC abstract method.
3052         * XplatUI.cs: add InvalidateNC.
3054 2006-11-21  Everaldo Canuto  <everaldo@simios.org>
3056         * ToolBar.cs: Invalidate complete button area when pressed status 
3057         was changed.
3058         * ToolButton.cs: Fix InvalidateBorder for DropDown buttons.
3059         * ThemeWin32Classic.cs: Increase vertical and horizontal position 
3060         by 1 when button is pressed.
3062 2006-11-20  Everaldo Canuto  <everaldo@simios.org>
3064         * ToolButton.cs: Invalidate middle of DropDown button when
3065         ToolBar theres DropDownArrows.
3066         * ThemeWin32Classic.cs: Change position of DropDown arrow and
3067         fix DropDown drawing operations.
3069 2006-11-20  Chris Toshok  <toshok@ximian.com>
3071         * NativeWindow.cs: fix the formatting of functions ('{' on the
3072         following line), and enable the thread exception dialog.
3074         * Application.cs: remove the duplicate exception catching from
3075         here.
3077 2006-11-20  Everaldo Canuto  <everaldo@simios.org>
3079         * Toolbar.cs: Triggers button click event when click on icon
3080         of dropdown ToolBarButton. Fixes #79912.
3081         
3082 2006-11-20  Rolf Bjarne Kvinge  <RKvinge@novell.com>
3084         * Theme.cs:
3085         * ThemeWin32Classic.cs:
3086         - Added a property WindowBorderFont to enable themeing
3087           of mdi child windows' Text.
3088           
3089 2006-11-20  Rolf Bjarne Kvinge  <RKvinge@novell.com>
3091         * InternalWindowManager.cs:
3092         * Form.cs:
3093         * MdiClient.cs:
3094         * MdiWindowManager.cs: 
3095         - If mdi child is maximized, set mdi parent's
3096           text to "Parent - [Child]". Fixes #79770.
3097         - If there is any maximized mdi child windows, only the active 
3098           window (and any new windows) is maximized, the rest are normal.
3099         - On a WindowState change only save mdi child's window bounds 
3100           if the old window state was normal. Fixes #79774.
3101         - The scroll bars are now calculated on hopefully all
3102           necessary events. Fixed #79771 / #79844->6 / #79906.
3103         - MdiClient.SizeScrollBars() now takes into account docked 
3104           controls in the parent when calculating available space.
3105         - InternalWindowManager now always repaints the entire title
3106           area. Fixes #79844->1/4/5.
3107         - Added RequestNCRecalc on mdi child windowstate changes.
3108           Fixes #79772.
3110 2006-11-20  Mike Kestner  <mkestner@novell.com>
3112         * ComboBox.cs: setup LargeChange on the scrollbar. Invoke FireMouseUp
3113         in the MouseUp handler of the listbox and move the return handling
3114         code to FireMouseUp to avoid scrolling on ups.  Fixes #79952.
3116 2006-11-20  Everaldo Canuto  <everaldo@simios.org>
3118         * Toolbar.cs: Ignore right mouse clicks in toolbar. Fixes #79855. 
3120 2006-11-17  Alexander Olk  <alex.olk@googlemail.com>
3122         * MimeIcon.cs: Seems that DllImports that were fine in 1.2 are not
3123           working in 1.2.x anymore. So, updated.
3125 2006-11-19  Gert Driesen  <drieseng@users.sourceforge.net>
3127         * NumericUpDown.cs: Use NegativeSign, NumberDecimalSeparator and
3128         NumberGroupSeparator of current culture instead of assuming en-US.
3129         Fixed bug #79967.
3131 2006-11-17  Mike Kestner  <mkestner@novell.com>
3133         * Control.cs: Add the concept of implicit bounds setting so that
3134         dock/undock round trips preserve explicitly set size/locations.
3135         Fixes #79313.
3137 2006-11-17  Alexander Olk  <alex.olk@googlemail.com>
3139         * FileDialog.cs: Trim all filters, otherwise DirInfo.GetFiles
3140           can't handle those filters. (Fixes bug #79961)
3142 2006-11-17  Chris Toshok  <toshok@ximian.com>
3144         [ fixes the exit/crashes associated with #79835.  it's clearly
3145         suboptimal though, we need to figure out a better way to solve
3146         this. ]
3147         
3148         * PrintPreviewControl.cs: deal with the new invalid printer
3149         exceptions.
3151         * PageSetupDialog.cs: if the printer is invalid, pop up a dialog
3152         and return false (so CommonDialog.ShowDialog doesn't actually show
3153         the form.)
3155         * PrintDialog.cs: enable/disable the Ok button depending on
3156         whether or not the printer is valid.
3158         * CommonDialog.cs (ShowDialog): only actually show the form if
3159         RunDialog returns true.
3161 2006-11-17  Jackson Harper  <jackson@ximian.com>
3163         * TextControl.cs: When soft splitting a line, mark it as a soft
3164         split line. Also carry over the current line break to the next
3165         line.
3167 2006-11-17  Chris Toshok  <toshok@ximian.com>
3169         * XplatUIX11.cs: when scrolling a window with an invalid area, we
3170         only want to shift the part of the invalid area that overlaps the
3171         area we're scrolling.  we also don't want to clear the invalid
3172         area unless the invalid area was entirely contained within the
3173         scrolling area.
3175 2006-11-16  Chris Toshok  <toshok@ximian.com>
3177         * XplatUIX11.cs: remove the handling of the TimerEvent stuff, and
3178         also make sure to free the memory returned by XGetWindowProperty
3179         in GetText().
3181         * X11Structs.cs: remove the TimerEvent stuff, it's unused.
3183 2006-11-16  Chris Toshok  <toshok@ximian.com>
3185         * XplatUI.cs: add a new super secret way to get at the totally
3186         unsupported X11 backend.
3188 2006-11-16  Gert Driesen  <drieseng@users.sourceforge.net>
3190         * NumericUpDown.cs: Allow lowercase letters when in hex-mode.
3192 2006-11-16  Jackson Harper  <jackson@ximian.com>
3194         * TreeView.cs: Allow more explicit setting of top node position
3195         for scrollbars. Slower algo, but more accurate.
3196         - CollapseAll should maintain the current top node.
3197         * TextBoxBase.cs: When positioning the caret, use the line, pos
3198         method, since the x, y method does not grab the correct tag, and
3199         the caret height never gets set correctly. (Maybe I should just do
3200         away with the caret having its own height, and always use the
3201         carets current tag for height).
3203 2006-11-16  Jonathan Pobst  <monkey@jpobst.com
3205         [Fixes 79778, 79923]
3207         * XplatUIWin32.cs: Don't allow a parent to be set to IntPtr.Zero.
3208         Parent to the FosterParent instead.
3210 2006-11-16  Jackson Harper  <jackson@ximian.com>
3212         * TreeView.cs: Need to recalc the topnode when we expand or
3213         collapse. The scrolling methods can't handle this on their own,
3214         since they use differences between the last scroll position, and
3215         those difference get completely messed up since we are expanding
3216         nodes.  This problem should probably be fixed in the scrolling
3217         methods, so they can figure out exactly where they are, but this
3218         will slow things down a little.
3219         * ThemeWin32Classic.cs: Special case for groupboxes with empty
3220         strings, makes nunit-gui look a lot nicer.
3222 2006-11-16  Chris Toshok  <toshok@ximian.com>
3224         * XplatUIX11.cs: nasty, nasty, nasty changes required because of
3225         the broken multithreaded event handling we have in here.  File
3226         this entry under "Why we should move to the new X11 backend".
3228         Any thread can make it into UpdateMessageQueue, which gets events
3229         from the X socket - some of which could belong to hwnds being
3230         managed by a different thread.  We can also have multiple threads
3231         in UpdateMessageQueue at the same time, with each one reading from
3232         the X socket.  This leads to many problems, with the following
3233         solutions:
3235         We can't use hwnd.Queue.Enqueue anywhere in here and must use
3236         EnqueueLocked.
3238         The MotionNotify compression we do can't work across threads
3239         (without locking the entire queue, perhaps) since we call
3240         hwnd.Queue.Peek, so we just punt and don't compress motion events
3241         unless the owning thread is the one which got the X event.
3243         ConfigureNotify is another fun one, since it modifies the hwnd's
3244         bounds and then enqueues the event.  We add a lock to Hwnd which
3245         is held when setting configure_pending to true (and enqueuing the
3246         event).
3248         There is a race wrt the wake socket.  we need to make sure that
3249         only 1 thread is waiting on that socket, or else a thread could
3250         sleep waiting for data that never comes.  It's difficult (but not
3251         impossible) to make happen, because it seems to require something
3252         like the following:
3254             1. Thread 1 polls on wake_receive
3255         
3256             2. poll returns saying there's data to be read on
3257                wake_receive.
3258         
3259             3. Thread 2 polls on wake_receive and immediately returns
3260                saying there's data to be read.
3262             4. Thread 2 reads the wakeup byte from wake_receive
3264             5. Thread 1 attempts to read the wakeup byte from
3265                wake_receive.
3267             6. Thread 2 exits (due to a form closing, perhaps).
3269             7. Thread 1 blocks forever.
3270         
3271         Fun, eh?
3273         Fixing the Expose handling isn't done yet, and the races inherent
3274         in that piece of code are responsible for the drawing mistakes you
3275         see when generating expose events in a MT app (like NPlot).  This
3276         one is the likely to be the hardest to bandaid, and it doesn't
3277         appear to cause anything but drawing problems.  The other issues
3278         caused apps to exit or hang.
3280         * XEventQueue.cs: output some spew when Dequeue/Enqueue/Peek are
3281         called from a different thread than the one that should be calling
3282         these functions.
3284         * Hwnd.cs: add some locks to be used by the XplatUIX11 code.
3286 2006-11-15  Chris Toshok  <toshok@ximian.com>
3288         * Application.cs: null out the context's MainForm when we exit
3289         RunLoop.  Fixes a newly checked in unit test as well as the last
3290         ODE from bug #79933.
3292 2006-11-15  Chris Toshok  <toshok@ximian.com>
3294         * Form.cs (set_Owner): allow a null value so we can clear the
3295         form's owner.
3296         (Dispose): set all our owned_form's Owner properties to null, and
3297         clear the owned_forms collection.
3298         (WM_CLOSE): clean up this a little bit.. still not right though.
3300         * ApplicationContext.cs: OnMainFormClosed should only call
3301         ExitThreadCore if the main form isn't recreating.  Fixes unit
3302         test.
3304 2006-11-15  Jonathan Pobst  <monkey@jpobst.com>
3306         [Fixes 78346]
3308         * ComboBox.cs: Set the Hwnd.no_activate flag for the ComboListBox.
3310 2006-11-15  Jonathan Pobst  <monkey@jpobst.com>
3312         [Fixes 79433]
3314         * Hwnd.cs: Add a flag to show a window, but not activate it, to 
3315         keep popup window types from stealing focus from the main form
3316         on Windows.
3318         * XPlatUIWin32.cs: Use SW_SHOWNOACTIVATE if above field is true.
3320         * MenuAPI.cs: Set above flag to true.
3322 2006-11-15  Chris Toshok  <toshok@ximian.com>
3324         * XplatUIX11.cs: mimic win32 behavior on BUTTONUP events, where
3325         the button being released is not in wParam.
3327 2006-11-15  Jonathan Pobst  <monkey@jpobst.com>
3329         * Form.cs: Add the released button to MouseEventArgs.Button
3330         for the OnMouseUp call to the MenuTracker.  Fixes menu clicking
3331         on Win32.
3333 2006-11-15  Chris Toshok  <toshok@ximian.com>
3335         * XplatUIX11.cs: add (untested) a _NET_WM_NAME implementation of
3336         GetText().  untested because it's unused in our implementation.
3337         Control.Text always caches the text, even if
3338         ControlStyles.CacheText is not set.
3340         fixes bug #79939.
3342 2006-11-15  Chris Toshok  <toshok@ximian.com>
3344         [ fixes #79933 ]
3345         
3346         * Form.cs: in Close() don't do anything after we send the WM_CLOSE
3347         message.  no hiding, no disposing.
3349         in the WM_CLOSE handler, hide the form if it's modal.
3351 2006-11-15  Chris Toshok  <toshok@ximian.com>
3353         * XplatUIX11.cs: use AddExpose instead of sending a message.
3354         fixes textbox border drawing.
3356 2006-11-15  Chris Toshok  <toshok@ximian.com>
3358         * PropertyGridView.cs: keep from crashing on mouse move/down when
3359         the property grid is empty.
3361 2006-11-14  Jackson Harper  <jackson@ximian.com>
3363         * TextControl.cs: Make PageUp and PageDown more like the MS
3364         versions.
3365         * TextBoxBase.cs: When we set the text property position the
3366         cursor at the beginning of the document.
3368 2006-11-14  Rolf Bjarne Kvinge  <RKvinge@novell.com>
3370         * Form.cs: if a mdi child's WindowState has changed
3371         before it's creation, it would display wrong control
3372         buttons.
3373         
3374 2006-11-14  Alexander Olk  <alex.olk@googlemail.com>
3376         * TreeView.cs: De-uglify TreeView checkbox checkmarks.
3377           (Fixes bug #79927)
3379 2006-11-14  Rolf Bjarne Kvinge <RKvinge@novell.com> 
3381         * XplatUIX11.cs: send a WM_NCPAINT on WM_NCCALCSIZE so that 
3382         the window gets to paint its borders even if the window is
3383         getting smaller.
3384         
3385         * Form.cs: on a WM_NCPAINT invalidate the entire menu, 
3386         otherwise the old control buttons would still be painted 
3387         if the window gets bigger.
3388         
3389         * PaintEventArgs.cs: add an internal method so that the clip 
3390         rectangle can be changed.
3391         
3392 2006-11-13  Chris Toshok  <toshok@ximian.com>
3394         [ fixes bug #79745 ]
3395         
3396         * NotifyIcon.cs: lots of cleanup.
3398         * X11Structs.cs: add an enum for XEMBED messages.
3400         * XplatUIX11.cs: reindent one of the giant switch statements, it
3401         was taking up an additional tab stop, and this file is already way
3402         too wide for my laptop's screen.
3404         Also, add handling for the XEmbed EMBEDDED_NOTIFY message.  When
3405         we get it, resize the hwnd to the WMNormalHints max_width/height.
3407 2006-11-13  Jackson Harper  <jackson@ximian.com>
3409         * TextBoxBase.cs: Compute the value changes for the mouse wheel
3410         teh simple way.
3412 2006-11-13  Chris Toshok  <toshok@ximian.com>
3414         * XplatUIX11.cs, XplatUIStructs.cs: kind of a gross fix for
3415         #79898.  force a reference to the Region to stick around so the
3416         unmanaged object isn't collected (rendering our handle in the MSG
3417         stale).
3419 2006-11-13  Chris Toshok  <toshok@ximian.com>
3421         * XplatUIX11.cs: fix #79917 for window managers which support
3423         using XStoreName on the raw utf8, and we need to convert to
3424         COMPOUND_TEXT if it's non-latin1.
3426 2006-11-13  Chris Toshok  <toshok@ximian.com>
3428         * Form.cs (set_DialogResult): we need to set closing to false if
3429         we're setting our result to None.  fixes bug #79908.
3431 2006-11-13  Jackson Harper  <jackson@ximian.com>
3433         * TextControl.cs: When formatting text, compute the adjusted tag
3434         lengths correctly, using FindTag for the end tag instead of trying
3435         to figure it out outselves.
3436         * TreeNode.cs: Use ActualItemHeight, which is the actual height of
3437         the item, ItemHeight doesn't work, because trees with large
3438         imagelists use those for their height
3439         * TreeView.cs: ActualItemHeight factors in the image height
3440         - compute left edge of checkboxes correctly
3441         - when expanding/collapsing move the bottom down one pixel, so we
3442         aren't moving part of the node
3444 2006-11-13  Rolf Bjarne Kvinge  <RKvinge@novell.com>
3446         * XplatUIX11.cs: The PaintEventArgs is also added to the drawing
3447         stack in PaintEventStart so that it won't get disposed by the gc
3448         before reaching PaintEventEnd.
3450 2006-11-13  Jackson Harper  <jackson@ximian.com>
3452         * TextBoxBase.cs: Don't select the word if we are on a line with
3453         no text.
3454         - We don't need to position the caret on mouse up, since the mouse
3455         move handler should be doing this
3456         - When double clicking a blank line, the caret is advanced to the
3457         next line.
3459 2006-11-13  Gert Driesen  <drieseng@users.sourceforge.net>
3461         * TreeNodeCollection.cs: Avoid duplicating indexer code.
3463 2006-11-12  Gert Driesen  <drieseng@users.sourceforge.net>
3465         * ColorDialog.cs: Reset size of dialog between calls to ShowDialog.
3466         Fixes part of bug #79910.
3468 2006-11-11  Alexander Olk  <alex.olk@googlemail.com>
3470         * ColorDialog.cs: Fix a NRE when adding a color to custom colors
3471           (bug #79903). Some minor string updates to match ms.
3473 2006-11-10  Alexander Olk  <alex.olk@googlemail.com>
3475         * FileDialog.cs: Don't add an extension if the filename
3476           already ends with that extension.
3478 2006-11-10  Jackson Harper  <jackson@ximian.com>
3480         * TreeView.cs: Use the currently highlighted node for the
3481         BeforeSelect event.
3482         * TextBoxBase.cs: There is no need to expand selection on
3483         MouseMove.
3484         - CanUndo means 'is there any undo operations', not 'is undo
3485         allowed on this textcontrol. Fixed ClearUndo unit test.
3487 2006-11-10  Andreia Gaita  <shana.ufie@gmail.com>
3489         * Button.cs: only perform click when button is Selectable (so as 
3490         not to activate default buttons when they're disabled)
3491         
3492         * Control.cs: Rewrite of the SelectNextControl and related 
3493         methods. HandleClick now selects next control if the current one
3494         is being disabled.
3495         
3496         * Form.cs: OnActivated selects next active control only if Load 
3497         has already occurred. If Load hasn't run, there's no point in 
3498         selecting here, Load might change the state of controls.
3499         
3500         * FocusTest.cs: Tests marked as working again for these fixes
3502 2006-11-10  Chris Toshok  <toshok@ximian.com>
3504         * XplatUIX11.cs: a couple of fixes.
3506         - use XInternAtoms with almost all the atoms we need to register,
3507         instead of many, many calls to XInternAtom.  should help a bit on
3508         startup time, at the expense of making the code look a little
3509         worse.
3511         - fall back to setting TransientFor on TOOLWINDOW's if their hwnd
3512         isn't reparented (which seems to be a clue that we're running fon
3513         compiz) and they have an Owner form.  This fixes the tool windows
3514         in paint.net when running under compiz.
3516         - when setting the opacity of a window, support both the case
3517         where the window has been reparented and also when it hasn't been.
3518         Since compiz/beryl doesn't seem to reparent windows, and these are
3519         the only window managers which support translucency, I'm not sure
3520         why we need the hwnd.reparented case at all.. but leave it in.
3521         now we get translucent windows in paint.net under compiz/beryl.
3523 2006-11-10  Alexander Olk  <alex.olk@googlemail.com>
3525         * FileDialog.cs: Always return the value for FilterIndex that
3526           was set. Internally convert it to values that make sense.
3528 2006-11-10  Everaldo Canuto  <everaldo@simios.org>
3529         
3530         * ThemeWin32Classic.cs: Fix drowp down arrow borders.
3532 2006-11-10  Everaldo Canuto  <everaldo@simios.org>
3534         * Toolbar.cs: Change default value of DropDownArrows to true, the 
3535         signature still using false to make it compatible with MS but the 
3536         initial value is true. Fixes #79855.
3538 2006-11-10  Alexander Olk  <alex.olk@googlemail.com>
3540         * MimeIcon.cs: Don't throw an exception on windows. Mime stuff is
3541           only available on Linux.
3543 2006-11-09  Everaldo Canuto  <everaldo@simios.org>
3545         * Toolbar.cs, ToolBarButton.cs: Fix wrong separator size and
3546         reduce number of calls to redraw method during toolbar creation.
3548 2006-11-09  Mike Kestner  <mkestner@novell.com>
3550         * ListView.cs : raise SelectedIndexChanged when an item is selected
3551         programmatically via the Item.Selected property.  Gert's nice 
3552         ListViewSelectedIndexChanged test fixture now runs clean.
3554 2006-11-09  Mike Kestner  <mkestner@novell.com>
3556         * ListView.cs : raise SelectedIndexChanged when a selected item is
3557         removed from the item collection using Remove or RemoveAt.
3559 2006-11-09  Mike Kestner  <mkestner@novell.com>
3561         * ListView.cs : raise SelectedIndexChanged once per selected item
3562         for compat with MS.  Fixes #79849+.
3564 2006-11-09  Chris Toshok  <toshok@ximian.com>
3566         * TabControl.cs: initialize row_count to 0, and set it to 1 when
3567         we need to (if we have any tab pages).  Fixes unit test.
3569 2006-11-09  Chris Toshok  <toshok@ximian.com>
3571         * Label.cs (CalcPreferredWidth): if Text == "", our preferred
3572         width is 0, not 3.  Fixes a unit test.
3574 2006-11-09  Mike Kestner  <mkestner@novell.com>
3576         * ListView.cs : use Implicit scrollbars so that focus isn't 
3577         stolen from the listview when they are clicked. Fixes #79850.
3579 2006-11-09  Chris Toshok  <toshok@ximian.com>
3581         * PropertyGridView.cs (OnPaint): only call DrawGridItems if we
3582         have a root item.  Fixes #79879.
3584 2006-11-09  Alexander Olk  <alex.olk@googlemail.com>
3586         * FileDialog.cs:
3587           - Fix ToString ()
3588           - An ArgumentException is now thrown if a wrong filter
3589             is applied (matches ms). The previous filter doesn't change
3590             anymore if an exception is thrown.
3591           - Changing the FileName property also affects FileNames
3592         * ColorDialog.cs: The length of the CustomColors array is always
3593           16. It doesn't matter if we use a smaller array or null to update
3594           or change the custom colors property.
3595         * FolderBrowserDialog.cs: Throw an InvalidEnumArgumentException if
3596           for RootFolder if we get a undefined value.
3598 2006-11-09  Rolf Bjarne Kvinge  <RKvinge@novell.com>
3600         * StatusBarPanel.cs: 
3601         - Width is set to MinWidth if Width is smaller than
3602         MinWidth. Fixes #79842.
3603         - MinWidth now always overrides Width (MSDN says MinWidth
3604         is set to Width when AutoSize = None, but they do not 
3605         behave like that).
3606         - Style has now the the correct default value.
3607         
3608 2006-11-09  Rolf Bjarne Kvinge  <RKvinge@novell.com>
3610         * TrackBar.cs: 
3611         - The control is completely invalidated on 
3612         Got/LostFocus to draw the focus rectangle correctly.
3613         - When AutoSize then height is always 45 (width for 
3614         vertical controls).
3615         
3616         * ThemeWin32Classic.cs: The TrackBar thumb is now centered
3617         on the mouse when moved and it doesn't move when grabbed
3618         until the mouse moves as well. Also fixed some wrong 
3619         calculations when clicking on the thumb (control thought
3620         click was outside of thumb and didn't grab it).
3621         Fixes some of the issues in #79718.
3623 2006-11-08  Everaldo Canuto  <everaldo@simios.org>
3625         * Toolbar.cs: Prevent disabled button to highlight. Fixes #79868.
3627 2006-11-08  Chris Toshok  <toshok@ximian.com>
3629         * PropertyGridView.cs: only call ToggleValue if the item is not
3630         readonly.
3632 2006-11-08  Jackson Harper  <jackson@ximian.com>
3634         * TextBoxBase.cs: The RichTextBox and textbox have very different
3635         word selection methods.  Implement the textbox's simple word
3636         selection here, and let the RichTextBox override and provide it's
3637         own.
3638         - Don't do extra selection on mouseup
3639         * RichTextBox.cs: Use the documents word selection algorithm, I
3640         think ideally, this function will be pulled into the
3641         RichTextBox.cs code someday.
3643 2006-11-08  Chris Toshok  <toshok@ximian.com>
3645         * RootGridEntry.cs: new class to represent GridItemType.Root.
3647         * CategoryGridEntry.cs: reformat, and add boilerplate.
3648         
3649         * GridEntry.cs: remove the UIParent stuff - turns out .Parent
3650         returns the UI parent anyway, and we need special handling to
3651         implement the GetTarget method in the face of it.  Also, implement
3652         Select().
3654         * PropertyGrid.cs, PropertyGridView.cs: a number of fixes.  create
3655         a root grid item, and use that instead of PropertyGrid.grid_items.
3656         Also, make use of TypeConverters (and add limitted support for
3657         ICustomTypeDescriptors) when initially populating the grid.
3658         Arrays now show up more or less properly.
3660 2006-11-08  Chris Toshok  <toshok@ximian.com>
3662         * Application.cs: set the modal dialog to non modal after we close
3663         it.  Fixes bug #79866.
3665 2006-11-08  Jackson Harper  <jackson@ximian.com>
3667         * TextControl.cs: When combining lines carry over the line end
3668         style from the end line.
3669         - Invalidate the selected area when setting it, if it is visible.
3670         * TextBoxBase.cs: Only rich text box can do full line selects.
3671         - Make sure to set the cursor position when there is a click,
3672         otherwise two clicks in separate areas could cause a large chunk
3673         to be selected.
3675 2006-11-07  Everaldo Canuto  <everaldo@simios.org>
3677         * Toolbar.cs: Release flat button borders when Toolbar lost focus. 
3678         Fixes #79863.
3680 2006-11-07  Everaldo Canuto  <everaldo@simios.org>
3682         * Toolbar.cs: Prevent toolbar to open more than one tooltip at same
3683         time. Remove tooltips when ToolButton click events.  Fixes #79856.
3685 2006-11-07  Everaldo Canuto  <everaldo@simios.org>
3687         * MenuAPI.cs: Ignore right click for menu actions and fixes
3688         menu border when clicked.  Fixes #79846.
3690 2006-11-07  Everaldo Canuto  <everaldo@simios.org>
3692         * XplatUIX11.cs, XplatUIX11.cs: Fix MouseRelease to only release
3693         MouseState after create wParam for message, this fixes mouse button 
3694         equal none in mouse up events.
3695         
3696 2006-11-07  Andreia Gaita  <shana.ufie@gmail.com>
3698         * Control.cs : Focus() now calls Select to set the Container's
3699         Active Control and to give it focus. To avoid infinite recursion
3700         (because ActiveControl also calls Focus at one point), a check 
3701         is made in Focus with the help of a new internal variable
3702         is_focusing.
3704 2006-11-07  Mike Kestner  <mkestner@novell.com>
3706         * ListView.cs : raise OnSelectedIndexChanged in CreateHandle
3707         if there's a selection.  Fixes #79849.
3709 2006-11-07  Gert Driesen  <drieseng@users.sourceforge.net>
3711         * PropertyGrid.cs: Avoid fixed height of help description label.
3712         Fixes part of bug #79829.
3714 2006-11-07  Chris Toshok  <toshok@ximian.com>
3716         * XplatUIX11.cs: fix #79790 again, by using the
3717         _NET_WM_STATE_SKIP_TASKBAR atom to implement Form.ShowInTaskbar.
3719 2006-11-07  Everaldo Canuto  <everaldo@simios.org>
3721         * ToolBar.cs: Fix left click checking.
3723 2006-11-07  Chris Toshok  <toshok@ximian.com>
3725         * ProgressBar.cs: fix a typo in ToString().  fixes a unit test.
3727 2006-11-07  Chris Toshok  <toshok@ximian.com>
3729         * RelatedPropertyManager.cs: set property_name in our ctor.  fixes
3730         PropertyManager unit tests.
3732         * PropertyManager.cs: make property_name internal.
3734 2006-11-07  Chris Toshok  <toshok@ximian.com>
3736         * ButtonBase.cs: initialize base.ime_mode to ImeMode.Disable to
3737         pass a unit test.  Also, don't set image_index to anything in
3738         response to setting the ImageList property.
3740 2006-11-07  Everaldo Canuto  <everaldo@simios.org>
3742         * ToolBar.cs: Ignore click events when mouse button is not a
3743         left button, only accepts other button for dropdown menus.  
3744         Fixes #79854.
3746 2006-11-07  Chris Toshok  <toshok@ximian.com>
3748         * DataGrid.cs: make the back and parent row buttons a little less
3749         ugly.
3751 2006-11-07  Jackson Harper  <jackson@ximian.com>
3753         * TextBoxBase.cs: When converting to Text don't put line breaks in
3754         for soft line breaks.
3755         * TextControl.cs: There is an initial "fake" line in the document,
3756         this is now a soft break line, so that an extra line feed doesn't
3757         get added to the end of documents.
3759 2006-11-07  Chris Toshok  <toshok@ximian.com>
3761         [ fix bug #79778 ]
3762         
3763         * CurrencyManager.cs: if the list is readonly, don't bother
3764         checking if IBindingList.AllowNew is true.
3766         * ThemeWin32Classic.cs (DataGridPaintParentRow): make this work
3767         for non-DataRowView datasources..  or rather, make it not crash.
3768         (DataGridPaintRelationRow): make sure we limit the row painting to
3769         the area not covered by the row header, and make our cell width at
3770         least large enough to cover the relation area.  This allows grids
3771         that have relations but no rows to render correctly.
3772         (DataGridPaintRowContents): same type of changes here.
3773         (SetDataSource): move back to always calling
3774         CalcAreasAndInvalidate.  this fixes a crash/drawing problem when
3775         navigating back through relations.
3776         (HitTest): handle the case where we have no cells but have
3777         relations.  Right now we generate a hit in cell 0 of whatever the
3778         row is, not sure if this is strictly correct, but it works for our
3779         purposes.
3780         
3781         * DataGrid.cs (EndEdit, CancelEdit): if we have no columns, don't
3782         bother doing anything.
3784 2006-11-07  Jonathan Pobst  <monkey@jpobst.com>
3786         * StatusStrip.cs, ToolStripStatusLabel.cs: By request, an
3787         early version of StatusStrip.  Not responsible for eaten
3788         application or firstborn children.
3790 2006-11-06  Chris Toshok  <toshok@ximian.com>
3792         * TabControl.cs: in OnGotFocusInternal/OnLostFocusInternal don't
3793         call GetTabRect with a -1 index.  Fixes #79847.
3795 2006-11-06  Jackson Harper  <jackson@ximian.com>
3797         * TreeNodeCollection.cs: Update scrollbars after clearing.
3799 2006-11-06  Chris Toshok  <toshok@ximian.com>
3801         * NumericUpDown.cs: fix the ToString method for some unit test
3802         love.
3804 2006-11-06  Chris Toshok  <toshok@ximian.com>
3806         * PropertyGrid.cs:
3807         - set the initial SelectedGridItem if we can.
3809         - Exclude non-mergable properties only if we're merging > 1
3810         object.  Merging 1 object isn't really merging, obviously.
3812         - Handle PropertySort.NoSort just like Alphabetical, which is
3813         wrong of course, but at least gets things on the screen.
3814         
3815         * PropertyGridView.cs:
3816         - Add method "FindFirstItem" which finds the first property grid
3817         item, so we can select it by default.
3819         - make use of GridEntry.CanResetValue.
3821         - Don't call RedrawBelowItemOnExpansion here anymore, the
3822         individual GridEntry's will do that.
3824         - Remove the ITypeDescriptorContextImpl internal class.
3825         
3826         * GridEntry.cs:
3827         - this class needs to implement ITypeDescriptorContext, as it's
3828         what MS's PropertyDescriptorGridEntry does, which means we can
3829         remove the ITypeDescriptorContextImpl internal class from
3830         PropertyGrid.cs.  This fixes the crashing portion of bug #79829.
3832         - keep a reference to our PropertyGridView, and move the call to
3833         RedrawBelowItemOnExpansion here from PGV.  This means
3834         programmaticly setting Expanded actually does something visible.
3836         - add a CanResetValue() function which takes into account our
3837         possibly multiple "selected_objects" in the merged case.  Shifting
3838         PropertyGridView to use this method fixes another unreported
3839         crasher found running the test for #79829.
3841         - when Top or Bounds is updated, make sure the PropertyGridTextBox
3842         is updated to reflect this.
3844         * CategoryGridEntry.cs: the ctor takes the PGV now.
3845         
3846 2006-11-06  Jackson Harper  <jackson@ximian.com>
3848         * TextControl.cs: These are 1 based.
3849         * TextBoxBase.cs: When setting the selected text, don't change the
3850         selected text tags, this is done by ReplaceText, just position the
3851         cursor at the end of the new text.
3853 2006-11-06  Alexander Olk  <alex.olk@googlemail.com>
3855         * ListView.cs: Allow label edit only when, when LabelEdit is
3856           set to true.
3858 2006-11-06  Jackson Harper  <jackson@ximian.com>
3860         * TextControl.cs: If a suitable wrapping position isn't found,
3861         just wrap right in the middle of a word.
3863 2006-11-06  Alexander Olk  <alex.olk@googlemail.com>
3865         * ListView.cs, ListViewItem.cs: Implement LabelEdit. Fixes
3866           bug #79820.
3868 2006-11-06  Jackson Harper  <jackson@ximian.com>
3870         * TreeView.cs: Can't use the VisibleCount property when setting
3871         scrollbar heights, because this doesn't take into account whether
3872         or not the horz scrollbar just came visible.
3874 2006-11-05  Everaldo Canuto  <everaldo@simios.org>
3876         * MenuAPI.cs: Deactivate menu on mouse up when menus it is already
3877         activated.  Fixes #79369, #79832.
3879 2006-11-05  Alexander Olk  <alex.olk@googlemail.com>
3881         * FileDialog.cs: *sigh* Because of recent runtime changes (r67043) I
3882           had to remove support for links that point to a directory. FileInfo
3883           returns no usefull information (means, the directory they point to)
3884           for such links. Replaced some empty string ("") with String.Empty.
3886 2006-11-04  Gert Driesen  <drieseng@users.sourceforge.net>
3888         * TreeNodeCollection.cs: To match MS, in 1.0 profile throw 
3889         NullReferenceException when attempting to remove node that is not in
3890         collection. Throw NullReferenceException when null is passed to 
3891         Remove. Allow first element of the collection to be removed. Fixes
3892         bug #79831.  In GetEnumerator ().Current return null if positioned 
3893         before the first element of the collection. In GetEnumerator ().Reset,
3894         position before first element of the collection.
3896 2006-11-04  Gert Driesen  <drieseng@users.sourceforge.net>
3898         * PropertyGrid.cs: To match MS, remove default title and description
3899         for panel. Fixed tooltips for Categorized and Alphabetic toolbar
3900         buttons.
3902 2006-11-04  Chris Toshok  <toshok@ximian.com>
3904         * Theme.cs: add a Clamp method, just for kicks.
3906         * ThemeWin32Classic.cs: clamp all color components to [0..255].
3908 2006-11-04  Chris Toshok  <toshok@ximian.com>
3910         * Form.cs: if the form isn't visible, Close() does nothing.
3912 2006-11-03  Chris Toshok  <toshok@ximian.com>
3914         * Form.cs (Close): if the form is modal, don't Dispose of it, only
3915         Hide it.
3916         (WndProc): don't Dispose after handling the WM_CLOSE message.
3918         * Application.cs (RunLoop): toplevels is a list of Forms, so treat
3919         them as such, instead of using casts from Control to Form.  Also,
3920         don't Dispose of the modal dialog when we fall out of the loop -
3921         Close() it instead.
3923         fixes bug #79813.
3925 2006-11-03  Chris Toshok  <toshok@ximian.com>
3927         * Control.cs (Dispose): only go through the dispose thing if we're
3928         @disposing, and we haven't already been disposed.  Fixes bug
3929         #79814.
3931         * Form.cs: no reason to call "base.Dispose()" here instead of
3932         "Dispose()".
3934 2006-11-03  Mike Kestner  <mkestner@novell.com>
3936         * ComboBox.cs : use ToString instead of casts in AddItem for
3937         sorting functionality.  Fixes #79812.
3939 2006-11-03  Chris Toshok  <toshok@ximian.com>
3941         * Application.cs: pave the way for actually using the thread
3942         exception dialog.  it's ifdefed out at the moment.
3944 2006-11-03  Chris Toshok  <toshok@ximian.com>
3946         * ThreadExceptionDialog.cs: until we get a better layout, actually
3947         hide the details textbox and label when we shouldn't see them.
3949 2006-11-03  Jackson Harper  <jackson@ximian.com>
3951         * TextBoxBase.cs: Don't bail from the scrollbar calcs for non
3952         multiline textboxes anymore.  This method also determines the
3953         width/height of a textboxes canvas area.
3954         - Sorta a revert of the last patch.  For multiline just position
3955         the controls, then bail.  This way the scrollbar width won't be
3956         altered.
3958 2006-11-03  Everaldo Canuto  <everaldo@simios.org>
3960         * ThemeWin32Classic.cs: Dont paint inner lines of 3D border when
3961         it dont need.  Fixes #79537.
3963 2006-11-02  Jackson Harper  <jackson@ximian.com>
3965         * X11Dnd.cs: We always allow copy, since XDND implies Copy.  Also
3966         send the status after firing the DndOver event.
3968 2006-11-02  Rolf Bjarne Kvinge  <RKvinge@novell.com>
3970         * TrackBar.cs: Now orientation only switches height / width if
3971         the control's handle is created (Win32 does it like this). Also 
3972         fixed a typo in ToString() for a test to pass, changed the 
3973         exception thrown in set_LargeChange and set_SmallChange to 
3974         match Win32 behaviour, and added TrackBar tests to the unit 
3975         tests.
3977 2006-11-02  Chris Toshok  <toshok@ximian.com>
3979         * XplatUIX11.cs: the atom we want is _NET_WM_STATE_SKIP_TASKBAR,
3980         not _NET_WM_STATE_NO_TASKBAR.
3982 2006-11-02  Jackson Harper  <jackson@ximian.com>
3984         * TextControl.cs: Increment count by one, since in the update view
3985         count - 1 is used.
3987 2006-11-02  Jackson Harper  <jackson@ximian.com>
3989         * TextBoxBase.cs: Use client rectangle not bounds for checking if
3990         the mouse is in the client rectangle (duh).
3992 2006-11-02  Rolf Bjarne Kvinge  <RKvinge@novell.com>
3993         
3994         * TrackBar.cs: Fixed trackbar jumping around when clicking
3995         on it - the trackbar was not detecting correctly at which
3996         side of the thumb the click was done. (fixes #79718)
3998 2006-11-02  Everaldo Canuto  <everaldo@simios.org>
4000         * ListBox.cs: scroll visible area when change SelectedIndex to
4001         a non visible area.  Fixes #79481.
4003 2006-11-01  Jackson Harper  <jackson@ximian.com>
4005         * TextControl.cs: When replacing the selection move the selection
4006         start/end/anchor to the end of the new text.
4008 2006-11-01  Jackson Harper  <jackson@ximian.com>
4010         * XplatUIWin32.cs: When setting the parent change the controls
4011         visibility to it's visibility flag, not to it's old parents
4012         visibility (.Visible walks the parent chain).
4014 2006-11-01  Chris Toshok  <toshok@ximian.com>
4016         * XplatUIX11.cs: revert the #79790 fix, as the simple.
4017         XSetTransientForHint fix breaks paint .net's tool windows.  more
4018         work needed for that one.
4020 2006-11-01  Chris Toshok  <toshok@ximian.com>
4022         * ScrollBar.cs: throw ArgumentException instead of Exception in
4023         LargeChange/SmallChange setters.  fixes unit tests.
4025 2006-10-31      Andreia Gaita <shana.ufie@gmail.com>
4027         * ContainerControl.cs: reverted rev.67183 (which was itself
4028         a reversion of rev.66853... eh).
4029         
4030         * Control.cs: Fixes Reflector hang by changing Focus() call
4031         to what it was before rev.66643 (calling Select() here sets 
4032         ActiveControl, which in some situations calls back Focus and 
4033         eventually does a stack overflow). Temp fix.    
4034         Changes to GetNextControl() to not look for children to select when
4035         parent cannot be selectable (so it looks for siblings instead)  
4036         
4037 2006-10-31  Mike Kestner  <mkestner@novell.com>
4039         * CheckedListBox.cs : off by one error in returned index from
4040         ObjectCollection.Add.  Fixes #79758.
4042 2006-10-31  Chris Toshok  <toshok@ximian.com>
4044         * UpDownBase.cs: remove the OnGotFocusInternal/OnLostFocusInternal
4045         calls for the textbox/spinner, to keep from recursing to the point
4046         where we crash.  Fixes #79760.
4048 2006-10-31  Chris Toshok  <toshok@ximian.com>
4050         * ListControl.cs (set_SelectedValue): don't throw exceptions on
4051         null/"" value, just return.  matches ms's behavior and fixes some
4052         failing tests.
4054 2006-10-31  Chris Toshok  <toshok@ximian.com>
4056         * Control.cs (set_Capture): make a logic a little easier to
4057         follow.
4059         * XplatUIX11.cs (CleanupCachedWindows): zero out the Grab window
4060         if it's being destroyed.  A necessary fix surely, but a bandaid
4061         also, to fix the stuck capture problem in bug #78413.
4063 2006-10-31  Chris Toshok  <toshok@ximian.com>
4065         * XplatUIX11.cs: fix a couple of compiler warnings, and follow the
4066         convention of clearing hwnd.ClientRect when we set the
4067         width/height (so it'll be recalculated by Hwnd).
4069 2006-10-31      Andreia Gaita <shana.ufie@gmail.com>
4071         * ContainerControl.cs: reversed Contains check from
4072         ActiveControl due to hanging problems. This fix
4073         partly regresses #79667 (button does not have
4074         initial focus), so this might be a symptom for 
4075         a larger parenting problem (set_ActiveControl
4076         is being called but the child control does
4077         not have the parent set yet?)   
4078         
4079 2006-10-31  Mike Kestner  <mkestner@novell.com>
4081         * MenuAPI.cs : fix keynav when menu is click activated.
4083 2006-10-31  Jonathan Pobst  <monkey@jpobst.com>
4085         * ToolStrip*: Version 0.2.
4087         * MenuStrip.cs: Version 0.1.
4089         * Form.cs: Add a 2.0 MenuStrip tracker like the 1.1 Menu one.
4091 2006-10-30  Chris Toshok  <toshok@ximian.com>
4093         [ fixes the oversized notify icon issue in bug #79745 ]
4094         
4095         * NotifyIcon.cs: scale the icon down to the size we're given by
4096         the XplatUI layer (this would be faster if we did it once instead
4097         of whenever we paint..)  Also, remove the WM_NCPAINT handling,
4098         since it's never invoked.
4100         * XplatUIX11.cs: the gnome and kde systrays use icons that are 24
4101         pixels high by default, so let's hardcode our systray icon to that
4102         size.  The SYSTEM_TRAY protocol should really have a way for
4103         client apps to query for the correct icon size.. but oh well.  A
4104         couple of patches to deal with the screwy client_window ==
4105         whole_window notifyicon stuff (we don't want to PerformNCCalc, for
4106         instance, and also make sure we don't XSelectInput twice).
4108 2006-10-30  Chris Toshok  <toshok@ximian.com>
4110         * Control.cs: ugh, the unit test fix (CH11, yesterday) breaks when
4111         recreating forms.  Control recreation is the bane of my existence.
4112         Fix it in a way that keeps everyone happy.
4114 2006-10-30  Chris Toshok  <toshok@ximian.com>
4116         * XplatUIX11.cs: use StructureNotifyMask on all whole_windows, not
4117         just non-CHILD ones.  otherwise sometimes scrollbars end up with
4118         client_windows not being resized to the proper size (ReportBuilder
4119         shows this extremely well).
4121 2006-10-30  Chris Toshok  <toshok@ximian.com>
4123         * XplatUIX11.cs (SetWMStyles): reinstate the XSetTransientForHint
4124         for non-WS_EX_APPWINDOW windows.  This is what keeps them from
4125         showing up in the gnome taskbar.  Fixes bug #79790.
4127 2006-10-30  Chris Toshok  <toshok@ximian.com>
4129         * ApplicationContext.cs: guard against a NRE.
4131         * Application.cs: null out the old MainForm for the context, so we
4132         don't try to use it again once it's disposed.  Fixes bug #79783.
4134 2006-10-30  Chris Toshok  <toshok@ximian.com>
4136         * DataGrid.cs (set_DataSource, set_DataMember): if we have a
4137         BindingContext, set the data source directly, otherwise do the
4138         lazy approach - the actual ListManager will be created when we get
4139         a BindingContext. Fixes bug #79700.
4141 2006-10-30  Jonathan Pobst  <monkey@jpobst.com>
4143         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIOSX.cs,
4144           XplatUIX11.cs: Remove old 2 parameter SetVisible.
4146         * Control.cs: Use the new 3 parameter SetVisible with activate = true.
4148 2006-10-30  Jonathan Pobst  <monkey@jpobst.com>
4150         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs: Add an overload
4151         of SetVisible that allows a window to be shown, but not activated.
4152         This is needed on Windows for MenuStrip, and can probably be used
4153         with MainMenu and ComboBox to fix the focus stealing issues on
4154         Windows.
4156         * XplatUIOSX.cs, XplatUIX11.cs: Not needed, call existing SetVisible.
4158 2006-10-30  Alexander Olk  <alex.olk@googlemail.com>
4160         * PictureBox.cs: Fix the output of the ToString method.
4162 2006-10-29  Chris Toshok  <toshok@ximian.com>
4164         * Control.cs (get_TopLevelControl): fix bug #79781.
4166 2006-10-29  Chris Toshok  <toshok@ximian.com>
4168         * ListControl.cs (set_DataSource): throw Exception here, not
4169         ArgumentException, to match MS behavior.
4171 2006-10-29  Chris Toshok  <toshok@ximian.com>
4173         * Form.cs: remove the try-catch's around calls to GetWindowState.
4174         We can just check the return value.
4176         * XplatUIX11.cs: don't throw exceptions from GetWindowState.
4177         Instead return -1.
4179         * XplatUI.cs: Add note about additional return value for
4180         GetWindowState.
4182 2006-10-29  Chris Toshok  <toshok@ximian.com>
4184         * Control.cs (CreateHandle): when we create our handle, we also
4185         create the handles of our child controls.  Fixes one of the
4186         Control unit tests (CH11).
4188 2006-10-28  Alexander Olk  <alex.olk@googlemail.com>
4190         * MimeIcon.cs: If a gnome icon doesn't exist add a default icon.
4192 2006-10-28  Alexander Olk  <alex.olk@googlemail.com>
4194         * ThemeClearlooks.cs: A little speedup.
4196 2006-10-27  Chris Toshok  <toshok@ximian.com>
4198         * Control.cs: implement Control.FromChildHandle in a way that
4199         matches the docs (and fixes the failed test.)
4201 2006-10-27  Chris Toshok  <toshok@ximian.com>
4203         * DataGridTableStyle.cs: reproduce buggy MS behavior (with
4204         comments).
4206         * DataGrid.cs: implement ResetForeColor such that the tests
4207         succeed.
4208         
4209 2006-10-27  Chris Toshok  <toshok@ximian.com>
4211         * ToolBarButton.cs: setting text/tooltiptext to null results in it
4212         being set to "".  Fixes bug #79759.
4214 2006-10-27  Jackson Harper  <jackson@ximian.com>
4216         * TextControl.cs: We need to clear the entire selection area when
4217         setting the start, otherwise multiline selections are still
4218         visible.
4220 2006-10-26  Chris Toshok  <toshok@ximian.com>
4222         * PropertyGridView.cs: 
4224         - ifdef all the code specific to the double
4225         buffer case, and provide some alternatives in the non-doublebuffer
4226         code, which makes heavy use of XplatUI.ScrollWindow to move things
4227         around without having to invalidate (and cause flicker).  There
4228         are still some drawing problems in the non-doublebuffered case, so
4229         DOUBLEBUFFER is defined by default.
4231         - Fix the way dropdowns are handled.  now we explicitly watch for
4232         the events which might cause the dropdown to close, and break out
4233         of the nested event loop there.  This gets rid of all Capture
4234         code, at the expense of the Msg special casing.  Seems to work,
4235         though, and fixes bug #79743.
4237 2006-10-27  Rolf Bjarne Kvinge <RKvinge@novell.com>
4238         * Control.cs: SetIsRecreating now recreates implicitly added
4239         child controls as well. Finally fixes #79629. The flag passed to 
4240         SetIsRecreating has also been removed since it wasn't used.
4241         
4242 2006-10-26  Carlos Alberto Cortez <calberto.cortez@gmail.com>
4244         * PageSetupDialog.cs: Clean some code, fix some bits, 
4245         add some checks, and add a printer sub-dialog.
4247 2006-10-26  Chris Toshok  <toshok@ximian.com>
4249         * PropertyGrid.cs: make set_SelectedObject call
4250         set_SelectedObjects, and move the duplicate logic to the
4251         SelectedObjects setter.  Also, raise SelectedObjectsChanged.
4253         * PropertyGridView.cs: hide the textbox when we get a
4254         SelectedObjectsChanged event.
4256         Fixes bug #79748.
4258 2006-10-26  Chris Toshok  <toshok@ximian.com>
4260         * PropertyGridView.cs: deal with the type converter not supporting
4261         GetStandardValues() or GetStandardValues() returning null, which
4262         is does in the default case.  Fixes #79742.
4264 2006-10-25  Andreia Gaita <shana.ufie@gmail.com>
4266         * CheckedListBox.cs: nunit no longer crashes when selecting 
4267         Project/Edit menu option
4268         
4269 2006-10-25  Andreia Gaita <shana.ufie@gmail.com>
4271         * MenuAPI.cs: prevent ExecFocusedItem from blowing up if there
4272         is no menu selected. fixes #79739
4274 2006-10-25  Chris Toshok  <toshok@ximian.com>
4276         * PropertyGridView.cs: factor out the splitter invalidation code
4277         into the SplitterPercent setter, and for kicks implement the
4278         Ctrl-Left/Ctrl-Right handling that moves the splitter by a small
4279         amount in either direction.
4281 2006-10-25  Chris Toshok  <toshok@ximian.com>
4283         * PropertyGridView.cs: do some cleanup of the brush used to draw
4284         text - read only fields should be grayed out.  not sure how to do
4285         this with the textbox, though.  but the textbox's should also be
4286         readonly now at least.  Also, hide/show the textbox when resizing
4287         the control.
4288         
4289         * CursorConverter.cs: use System.Reflection when getting the
4290         properties of Cursors, as TypeDescriptor.GetProperties isn't
4291         returning static properties.
4293 2006-10-25  Chris Toshok  <toshok@ximian.com>
4295         * PropertyGridView.cs: factor out the up/down handling, and reuse
4296         it for page up/down.  also add End/Home support.
4298 2006-10-25  Chris Toshok  <toshok@ximian.com>
4300         * PropertyGridView.cs:
4302         - ensure the selected grid item is visible in the scrolled area,
4303         fixes bug #79572.
4305         - fix Keys.Down handling when you're on the last item in the
4306         propertygrid.
4308 2006-10-25  Mike Kestner  <mkestner@novell.com>
4310         * MenuAPI.cs : set the ActiveTracker for MainMenu non-popup 
4311         clicks too.  Fixes #79725.
4313 2006-10-24  Chris Toshok  <toshok@ximian.com>
4315         * PropertyGrid.cs: use property.Converter instead of
4316         TypeDescriptor.GetConverter(property.PropertyType), so we catch
4317         TypeConverters declared on the property as well as on the
4318         PropertyType.  Fixes bug #79678.
4320 2006-10-24  Alexander Olk  <alex.olk@googlemail.com>
4322         * MimeIcon.cs, Mime.cs:
4323           Fallback to the default platform handler if no shared mime info
4324           stuff exists (fixes #79693).
4326 2006-10-20 Andreia Gaita <shana.ufie@gmail.com>
4327         * ContainerControl.cs: Incorrect contains check in ActiveControl 
4328         from previous fix (duh).
4330 2006-10-20  Chris Toshok  <toshok@ximian.com>
4332         * PropertyGridView.cs: the dropdown should be MIN(number of items
4333         in list, 15).  Fixes #79551.
4335 2006-10-20 Andreia Gaita <shana.ufie@gmail.com>
4336         Fixes #79384, #79394, #79652, #79667
4337         * Application.cs: 
4338         
4339         - Modal windows are now destroyed in the proper order for windows
4340         
4341         * ContainerControl.cs:
4342         
4343         - ActiveControl setter has more conditions on when to return:
4344                 - if we're reselecting the active control, but it actually
4345                 didn't have focus (window hidden or some such), it runs
4346                 - if the active control being selected doesn't actually 
4347                 exist in the container, it returns
4348         
4349         * Form.cs
4350         
4351         - The ShowDialog now gets the current form as the owner when
4352         invoking without parameters, and correctly activates the owner 
4353         when returning
4354         
4355         * MessageBox.cs
4356         
4357         - MessageBox now catches the Escape key to exit
4359 2006-10-20  Chris Toshok  <toshok@ximian.com>
4361         * PropertyGridView.cs: fix a number of issues (bug #78565, and
4362         most of bug #79676):
4364         - you can navigate around the property grid with the arrow keys.
4366         - the dropdown is sized properly when the pg has a vertical
4367         scrollbar.
4369         - fix the indentation for subentries, and properly select the
4370         entire label rect.
4372         - fix the gray bar's drawing (only draw it to the last element,
4373         not for the height of the control.  Also make sure we draw that
4374         last horizontal grid line.
4376         - use the same mechanism the datagrid uses wrt the editing textbox
4377         when scrolling/resizing/etc.  Namely, we hide it first, do the
4378         operation, then show it again (if it's still visible).
4379         
4380         - aggressively remove a lot of unnecessary refreshes (and also
4381         calls to Invalidate(). call more limited variants, and only redraw
4382         what we need.)
4383         
4384         * PropertyGrid.cs:
4386         - when we're populating the merged collection, fill in the UI
4387         parent with either the passed in item, or the category item we
4388         create.
4390         - remove the Refresh call from the BorderHelpControl.OnSizeChanged.
4392         * GridItem.cs: drop some fully qualified names.
4393         
4394         * GridEntry.cs: add a "UIParent", which is basically the parent
4395         treenode.
4397         * GridItemCollection.cs: add an IndexOf method.
4399 2006-10-20  Mike Kestner  <mkestner@novell.com>
4401         * MainMenu.cs : go back to Draw in OnMenuChanged.  Until we get
4402         a working win32 NC invalidation mechanism, we can't invalidate
4403         menus.  [Fixes #79705]
4405 2006-10-20  Mike Kestner  <mkestner@novell.com>
4407         * ListBox.cs : don't update the VScrollbar if the list is empty,
4408         just hide it.  [Fixes #79692]
4410 2006-10-20  Jackson Harper  <jackson@ximian.com>
4412         * RichTextBox.cs: Handle some special chars better, and don't skip
4413         the entire group when we encounter a special char that we don't
4414         handle correctly.
4416 2006-10-18  Chris Toshok  <toshok@ximian.com>
4418         * PropertyGridView.cs: address a number of issues from bug #79676,
4419         mostly of the cosmetic variety.
4421         - The highlight rectangle for indented items not extends all the
4422         way to the left.
4424         - Indented items aren't indented so much.
4426         - the dropdown is properly sized width-wise if the pg has a
4427         vertical scrollbar.
4429 2006-10-18  Chris Toshok  <toshok@ximian.com>
4431         * XplatUIX11.cs (SystrayAdd): a rather convoluted change, but the
4432         systray stuff is rather convoluted to begin with.
4434         systray icons are a single window for some reason (that I haven't
4435         figured out yet), and for them, client_window == whole_window.
4436         Given the way the tests are structured elsewhere to determine
4437         which paints are pending (client vs. nc), that situation will
4438         always yield PAINT, not NCPAINT.  So, if we have a pending
4439         nc_expose and no pending expose, remove the hwnd from the paint
4440         queue, and also set nc_expose_pending to false, to keep us from
4441         blocking further expose's adding the hwnd to the paint queue.
4443         phew.  like i said, a rather convoluted change.  Fixes the
4444         notifyicon repaint issues in bug #79645.
4446 2006-10-18  Chris Toshok  <toshok@ximian.com>
4448         * Form.cs: when getting the backcolor of the form, don't get
4449         base.BackColor, as this allows parents to influence the background
4450         color.  This breaks mdi forms.  Instead, if the background_color
4451         is empty, return the default.
4453 2006-10-18  Chris Toshok  <toshok@ximian.com>
4455         * XplatUIX11.cs: change some debug ifdefs, and return XGetParent
4456         to being private instead of internal static.
4458         * Control.cs: remove all the stupid ParentWaitingOnRecreation
4459         crap, it wasn't working for more deeply nested controls anyway,
4460         and we already have the is_recreating flag - use that instead.
4461         Before calling DestroyHandle in RecreateHandle, recurse through
4462         the control tree setting it to true.  this returns the recreate
4463         code to much of its original simplicity, while now guaranteeing we
4464         actually recreate everything we're supposed to.  This change gets
4465         fyireporting actually showing mdi children.
4467 2006-10-17  Chris Toshok  <toshok@ximian.com>
4469         * Form.cs: remove some debug spew, and collapse some duplicate
4470         code at the end of SetClientSizeCore.
4472         * XplatUIX11.cs: 
4473         - add some more debug spew here too wrt Destroy handling.
4474         - don't call hwnd.Dispose in DestroyWindow, it's effectively done
4475         in Control's handling of WM_DESTROY.
4476         - Remove the handling of zombie window DestroyNotifies from the
4477         event loop - we don't need it.  Now the only DestroyNotifies we
4478         actually handle are ones generated by X.
4479         - When sending _NET_ACTIVE_WINDOW, the first param should be 1, to
4480         match gtk's (functioning) handling of this. This keep metacity
4481         from leaving droppings in the form of wm borders with no window
4482         contents all over the place.
4484         * Control.cs:
4485         - add a bunch of debug spew wrt control recreation.
4486         - fix a bug where we weren't tracking Visible properly on
4487         recreated hwnds.
4488         - fixed the WM_PAINT double buffer handling to support re-entrant
4489         calls (yes, i know it's gross, but it's happening to us).
4491 2006-10-17  Rolf Bjarne Kvinge  <rolfkvinge@ya.com>
4492         * ThemeWin32Classic.cs: changed drawing of selected days
4493         to make them look better.
4495 2006-10-16  Chris Toshok  <toshok@ximian.com>
4497         * Hwnd.cs: replace the user_data/client_dc/non_client_dc with
4498         drawing_stack.  Nuke the ClientDC/NonClientDC properties.
4500         * XplatUIX11.cs: move away from using hwnd.client_dc and
4501         hwnd.non_client_dc and on to a stack of dc's (and in window's
4502         case, PAINTSTRUCT's), so we can deal with nested Paint calls
4503         without puking or not disposing of Graphics objects.
4505         * XplatUIOSX.cs: same.
4507         * XplatUIWin32.cs: same.
4509 2006-10-03  Alexander Olk  <alex.olk@googlemail.com>
4511         * FileDialog.cs: Don't call on_directory_changed inside
4512           OnSelectedIndexChanged (it changes the SelectedIndex too).
4513           Instead move it to OnSelectionChangeCommitted.
4515 2006-10-13  Chris Toshok  <toshok@ximian.com>
4517         * XplatUIX11.cs: more Destroy work.  the current code does the
4518         following things, in order:
4520         1. Enumerates all handles of all controls at or below the one
4521         being destroyed, in pre-order.  As it is doing this, it marks the
4522         handles as zombie and clears all references to them.
4523         
4524         2. calls XDestroyWindow on the window passed in.
4526         3. SendMessage's WM_DESTROY to all he handles in the accumulated
4527         list.
4529 2006-10-13  Chris Toshok  <toshok@ximian.com>
4531         * XplatUIX11.cs: set hwnd.zombie to true before calling
4532         SendMessage (WM_DESTROY).  this keeps us from marking the new
4533         window a zombie, and also keeps us from calling sendmessage at
4534         all.
4536 2006-10-13  Jackson Harper  <jackson@ximian.com>
4538         * TextControl.cs: Do not show the caret and selection at the same
4539         time.  Reduces ugliness by 35%.
4541 2006-10-13  Chris Toshok  <toshok@ximian.com>
4543         * XplatUIX11.cs (SendWMDestroyMessages): set the hwnd to be a
4544         zombie after we do the recursive call, so we actually do call
4545         SendMessage on the children controls.
4546         (GetMessage): if we find a pending paint event for a zombie hwnd,
4547         remove the hwnd from the paint queue, or else it will always be
4548         there (and we'll effectively loop infinitely)
4550 2006-10-13  Mike Kestner  <mkestner@novell.com>
4552         * MenuItem.cs : add Selected format under keynav too.
4553         Fixes #79528.
4555 2006-10-13  Gert Driesen  <drieseng@users.sourceforge.net>
4557         * PropertyGrid.cs: Fixed some NRE's and small difference between our
4558         implementation and that of MS.
4560 2006-10-13  Chris Toshok  <toshok@ximian.com>
4562         * Control.cs (OnInvalidated) only futz with the invalid_region if
4563         the control is double buffered.  this fixes the apparent hang in
4564         the ListView unit tests.  Someone needs to make the
4565         BeginEndUpdateTest not call OnInvalidated 15004 times, though..
4567 2006-10-13  Chris Toshok  <toshok@ximian.com>
4569         * PropertyGridView.cs:
4571         - do a little refactoring so that only one place calls
4572         dropdown_form.Hide, and that is CloseDropDown.  make everywhere
4573         else call that.  Also make it Refresh, since there are redraw bugs
4574         otherwise (we should take a look at that...)
4576         - do a little more refactoring work to share the body of code
4577         involved with the drop down.  it was duplicated in the code
4578         dealing with the listbox handling and in the code dealing with the
4579         UITypeEditors.
4581         - add a Capture to the dropdown form's control once it's
4582         displayed, and add a MouseDown handler that checks to make sure
4583         the position is inside the control.  If it's not, close the
4584         dropdown.  This fixes #78190.
4586         - in SetPropertyValueFromUITypeEditor, only call SetPropertyValue
4587         if the value is different than the initial value.
4588         
4589 2006-10-13  Andreia Gaita  <shana.ufie@gmail.com>
4591         * Control.cs: see #78650
4592         - Fixed GetNextControl for several cases:
4593                 - Changed FindFlatForward to return 
4594                 correct sibling control when more than one
4595                 control has same TabIndex as the currently 
4596                 focused one.
4597                 - Changed FindFlatBackward to loop children
4598                 from last to first and apply same logic as in
4599                 FindFlatForward
4600                 - Changed FindControlForward to search for
4601                 children when control is not a container
4602                 but has children, or search for siblings if
4603                 control is a container...
4604                 - Changed FindControlBackward   to continue
4605                 searching for child controls when hitting 
4606                 Panel-like parents
4607                 
4608         - Fixed Focus method to update ActiveControl
4609         (FocusTest.FocusSetsActive failure)
4610         
4611         * TabControl.cs:
4612         - Focus rectangle now refreshes when gaining
4613         or losing focus
4614         - Removed grab for Tab key on IsInputKey that 
4615         was keeping tab navigation from working (#78650)
4617 2006-10-13  Chris Toshok  <toshok@ximian.com>
4619         * PropertyGridView.cs:
4620         - Rewrite SetPropertyValue to loop over SelectedGridItem's
4621         SelectedObjects.
4623         - Deal with GridItem.Value == null a few places.
4625         * PropertyGrid.cs: 
4626         - replace the PopulateGridItemCollection with a pair of methods
4627         which compute the intersection of all the properties in the
4628         SelectedObjects array.  Fixes #79615.
4630         - Throw ArgumentException from set_SelectedObjects if there's a
4631         null in the array.
4633         - Add GetTarget method which can be used to traverse up the
4634         GridItem.Parent chain.  It depends on the assumption that
4635         selected_objects for different GridEntries are always in the same
4636         order (a safe assumption).  Use this method and loop over all the
4637         selected objects in the entry when calling RemoveValueChanged and
4638         AddValueChanged.
4639         
4640         * GridEntry.cs: Make this handle multiple selected objects.
4641         .Value returns null if not all the selected objects share the same
4642         value.
4644 2006-10-12  Jonathan Pobst  <monkey@jpobst.com>
4645         * ToolStrip.cs, ToolStripButton.cs, ToolStripComboBox.cs,
4646           ToolStripControlHost.cs, ToolStripItem.cs, ToolStripLabel.cs,
4647           ToolStripProfessionalRenderer.cs, ToolStripProgressBar.cs,
4648           ToolStripSeparator.cs, ToolStripSplitStackLayout.cs,
4649           ToolStripTextBox.cs: Add accessibility, fix attributes/API and
4650         add additional functionality.
4652 2006-10-12  Mike Kestner  <mkestner@novell.com>
4654         * ErrorProvider.cs : new ToolTipWindow ctor sig.
4655         * HelpProvider.cs : new ToolTipWindow ctor sig.
4656         * ToolTip.cs : remove ToolTip param from Window sig since it is
4657         not used.
4658         * ToolBar.cs : add tooltip support.  Fixes #79565.
4660 2006-10-12  Rolf Bjarne Kvinge  <rolfkvinge@ya.com>
4662         * ComboBox.cs: move the events in set_SelectedIndex to 
4663         after the call to HighlightIndex in order to avoid 
4664         possible recursion and subsequent problems with the call
4665         to HighlightIndex and include a range check in 
4666         set_HighlightIndex. Fixes #79588
4667         
4668 2006-10-12  Rolf Bjarne Kvinge  <rolfkvinge@ya.com>
4670         * MonthCalendar.cs: When FirstDayOfWeek is default set firstday 
4671         to ui thread's settings instead of sunday. 
4672         * ThemeWin32Classic.cs: Localize the day string. Fixes #79563
4674 2006-10-12  Rolf Bjarne Kvinge  <rolfkvinge@ya.com>
4676         * DateTimePicker.cs
4677         * MonthCalendar.cs
4678         * ThemeWin32Classic.cs: rewrote DateTimePicker to fix bug #78364
4679         and implement missing functionality (selecting different parts 
4680         of the date and edit them individually with the keyboard).
4681         
4682 2006-10-11  Chris Toshok  <toshok@ximian.com>
4684         * Control.cs (OnInvalidated): fix NRE relating to last change.
4686 2006-10-11  Chris Toshok  <toshok@ximian.com>
4688         * XplatUIX11.cs (SetWMStyles): make sure we include the MAXIMIZED
4689         atoms in _NET_WM_STATE here if the window is maximized.  We need
4690         to do this because we're *replacing* the existing _NET_WM_STATE
4691         property, so those atoms will be lost otherwise, and any further
4692         call to GetWindowState will return Normal for a window which is
4693         actually maximized.  Fixes #79338.
4695 2006-10-11  Jackson Harper  <jackson@ximian.com>
4697         * TextControl.cs: Special case for setting selection end to
4698         selection start, we basically kill the anchor.
4699         - some todo comments.
4701 2006-10-11  Chris Toshok  <toshok@ximian.com>
4703         * Control.cs: switch to using an "invalid_region" to track which
4704         parts of the image buffer need updating.  This is more code than
4705         the simple fix from r66532.  That version just attempted to always
4706         fill the entire buffer on redraw, which turns out to be
4707         inefficient when invalidating small rectangles.  This version
4708         simply adds the invalid rectangle to the invalid region.  When we
4709         get any WM_PAINT message we see if it can be filled using the
4710         image buffer, and if it can't (if the paint event's clip rectangle
4711         is visible in the invalid region) we first fill the image buffer.
4712         So, the image buffer is still a cache, we just fill it lazily.
4714         * PaintEventArgs.cs: remove the SetClipRectangle method, we don't
4715         need it any longer.
4717 2006-10-11  Chris Toshok  <toshok@ximian.com>
4719         * XplatUIX11.cs (SetWindowPos): we need to update both position as
4720         well as size after calling XMoveResizeWindow.  This keeps us from
4721         ignoring future SetWindowPos calls.  Fixes the disappearing
4722         DateTimePicker in the ToolBarDockExample from bug #72499.
4724 2006-10-11  Chris Toshok  <toshok@ximian.com>
4726         * TextBoxBase.cs: reorder things a bit when it comes to
4727         resizing-causing-recalculation.  we were recalculating the
4728         document when our position was changed, which shouldn't happen.
4729         We only care about size changes.  Clear up some more redundant
4730         recalculation calls while I'm at it.  This makes the toolbar dock
4731         example snappy when you're just dragging toolbars around (since it
4732         causes a relayout whenever you move one.)
4734 2006-10-11  Chris Toshok  <toshok@ximian.com>
4736         * ToolBarButton.cs (get_Rectangle): this only returns
4737         Rectangle.Empty if Visible == false, or Parent == null.
4738         Parent.Visible doesn't matter.
4740 2006-10-10  Chris Toshok  <toshok@ximian.com>
4742         * Control.cs, PaintEventArgs.cs: "internal set { .. }" isn't loved
4743         by .net 1.1, so switch to an internal method instead.
4745 2006-10-10  Chris Toshok  <toshok@ximian.com>
4747         * Control.cs (WM_PAINT): when a control is double buffered we draw
4748         initially to the ImageBuffer and then copy from there.  But when a
4749         parent control which has child controls is double buffered, the
4750         initial drawing doesn't encompass the entire ClientRectangle of
4751         the parent control, so we end up with uninitialized bits (this is
4752         easily seen by dragging the top toolbar in
4753         wf-apps/ToolBarDockExample to the right, quickly).  The fix is to
4754         manually set the ClipRectangle of the paint_event (only the one we
4755         use to populate the ImageBuffer) to ClientRectangle.  Fixes more
4756         of the nastiness in bug #72499.
4758         * PaintEventArgs.cs: Add an internal setter for ClipRectangle,
4759         which we use in Control.cs's WM_PAINT handling.
4761 2006-10-10  Jackson Harper  <jackson@ximian.com>
4763         * TextBoxBase.cs: Finish off the autoscrolling stuff.
4765 2006-10-10  Chris Toshok  <toshok@ximian.com>
4767         * Cursor.cs: Apply a slightly different patch to the one suggested
4768         in #79609.
4770 2006-10-10  Jackson Harper  <jackson@ximian.com>
4772         * MenuItem.cs: Make sure to put the mdi child in the hashtable,
4773         not the parent form.
4774         * TextControl.cs: use difference in old line count vs new count to
4775         calculate how many lines were added, this takes into account soft
4776         line breaks properly.
4778 2006-10-10  Chris Toshok  <toshok@ximian.com>
4780         * LinkLabel.cs: don't call MeasureCharacterRanges against a
4781         rectangle located at 0,0 and the size of the text.  Use
4782         ClientRectangle instead.  This fixes rendering of non-left aligned
4783         link labels.
4785 2006-10-10  Jackson Harper  <jackson@ximian.com>
4787         * TextBoxBase.cs: When we set the selection start position the
4788         caret.
4789         * TextControl.cs: Need to update the caret when we decrement it to
4790         zero.
4791         - Make sure that the selection_visible flag gets reset to false if
4792         the selection isn't visible.  Before this you could get it set to
4793         visible by changing the selection start, then changing the end to
4794         equal the start.
4796 2006-10-09  Jackson Harper  <jackson@ximian.com>
4798         * TreeView.cs: Don't update scrollbars when we aren't visible.
4799         * TreeNodeCollection.cs: Only need to update scrollbars if being
4800         added to an expanded visible node or the root node.
4802 2006-10-09  Chris Toshok  <toshok@ximian.com>
4804         * XplatUIX11.cs (SendMessage): fix NRE.
4806 2006-10-09  Jackson Harper  <jackson@ximian.com>
4808         * TextBoxBase.cs: Implement horizontal autoscrolling.
4809         * TextControl.cs: Add a movement types that allows moving forward
4810         and backwards without wrapping.
4812 2006-10-09  Mike Kestner  <mkestner@novell.com>
4814         * ListViewItem.cs : layout changes for wrapped LargeIcon labels
4815         with focus "expansion" of labels.  Fixes #79532 and then some.
4816         * ThemeWin32Classic.cs : add LineLimit to ListView label format
4817         when wrapping.
4819 2006-10-09  Jackson Harper  <jackson@ximian.com>
4821         * TextBoxBase.cs: Set the default max values to MaxValue since
4822         we use the scrollbar for autoscrolling and the default value is
4823         100.  If we don't do this the caret won't keep up with typing
4824         after about 18 characters.
4825         * TextControl.cs: Make sure the selection is offset by the
4826         viewport x.  This fixes selection when using auto scrolling.
4828 2006-10-07  Andreia Gaita <shana.ufie@gmail.com>
4829         
4830         * Form.cs: The active control should be selected after the 
4831         OnLoad so that any child control initialization that affects
4832         the selection is done. Fixes #79406
4834 2006-10-06  Chris Toshok  <toshok@ximian.com>
4836         * XplatUIX11.cs: This is perhaps a dangerous change, but it seems
4837         to have no evil effects.
4839         - Stop selecting StructureNotifyMask on non-toplevel windows.
4841           The only way children should be resized is by using the SWF api,
4842           and we already send WM_WINDOWPOSCHANGED messages in those cases.
4843           Toplevel windows can be interacted with via the window manager,
4844           and so we keep the input mask there.
4846           The other event StructureNotifyMask gives us (that we care
4847           about) is DestroyNotify.  The code is already structured such
4848           that it assumes we won't be getting a DestroyNotify event for
4849           the window we pass to XDestroyWindow (which is what
4850           StructureNotifyMask is supposed to guarantee.)  So, that code
4851           shouldn't be affected by this either.
4853         - Stop selecting VisibilityChangeMask altogether.
4855           We weren't doing anything with the resulting events anyway.
4856         
4857         This vastly reduces the number of X requests and events we see
4858         when resizing/laying out a large ui.
4860 2006-10-06  Chris Toshok  <toshok@ximian.com>
4862         * ScrollableControl.cs (DisplayRectangle): we need to take into
4863         account the DockPadding regardless of whether or not auto_scroll
4864         == true.  rework this slightly to this effect, and fix bug #79606,
4865         and part of #72499 (you can now see the drag handles and drag
4866         toolbars around).
4868 2006-10-06  Gert Driesen  <drieseng@users.souceforge.net>
4870         * ListViewItem.cs: Collections of selected and checked items are now
4871         dynamically rebuilt. Whenever an item is (un)checked or (de)selected
4872         we mark the collection "dirty".
4873         * ListView.cs: Marked collections readonly. Modified UpdateSelection
4874         to only clear SelectedItems when a new item is selected and MultiSelect
4875         is enabled. CheckedItems and SelectedItems now subscribe to Changed
4876         event of ListViewItemCollection, and mark its list dirty whenever
4877         that event is fire. This allows us to return selected/checked items 
4878         in the same order as they are in the Items collection. This matches
4879         the MS behavior.
4881 2006-10-06  Chris Toshok  <toshok@ximian.com>
4883         * NotifyIcon.cs (HandleMouseUp): only show the context menu on
4884         right mouse clicks.  Fixes bug #79593.
4886 2006-10-06  Chris Toshok  <toshok@ximian.com>
4888         * Splitter.cs: doh, fix splitters that don't want to cancel the
4889         movement when you drag them.  Also, impose the limits on the
4890         values we send to the SplitterMovingEvent.  Fixes #79598.
4892 2006-10-06  Jackson Harper  <jackson@ximian.com>
4894         * TextBoxBase.cs: Ignore whether or not the scrollbar is enabled,
4895         since we use this for auto scrolling also.
4897 2006-10-05  Chris Toshok  <toshok@ximian.com>
4899         * DataGridBoolColumn.cs: Nuke the code from ConcedeFocus.  I'm
4900         beginning to think that most datagrid column types don't need this
4901         method.  Fixes bug #79392.
4903 2006-10-05  Chris Toshok  <toshok@ximian.com>
4905         * DataGrid.cs: move back to a more lazy scheme for creating the
4906         CurrencyManager, so we aren't updating it every time you set
4907         either DataSource or DataMember.  Also, don't call
4908         RecreateDataGridRows if the currency manager hasn't changed.
4910 2006-10-05  Chris Toshok  <toshok@ximian.com>
4912         * ComboBox.cs: by the time the OnSelectionChangeCommitted event is
4913         emitted, SelectedIndex should already be updated.  Fixes bug
4914         #78929.
4916 2006-10-05  Jonathan Pobst  <monkey@jpobst.com>
4918         * ToolStripComboBox.cs, ToolStripControlHost.cs, ToolStripProgressBar,
4919           ToolStripTextBox.cs: Initial commit.
4920         * ToolStripItem.cs: Fixes for OnLayout, BackColor, Parent.
4922 2006-10-05  Jackson Harper  <jackson@ximian.com>
4924         * TabControl.cs: We need to invalidate the tab control area when
4925         new ones are added (duh).
4927 2006-10-03  Chris Toshok  <toshok@ximian.com>
4929         * Form.cs (ProcessDialogKey): if the focused control is in this
4930         form and is a button, call its PerformClick method here.  Fixes
4931         #79534.
4933 2006-10-04  Jackson Harper  <jackson@ximian.com>
4935         * TabPage.cs: Ignore setting of Visible, and add an internal
4936         method for setting the controls visibility.  TabPage's Visible
4937         property is a little strange on MS, this seems to make us
4938         compatible, and fixes cases where people set all the tab pages to
4939         visible.
4940         * TabControl.cs: Use the new internal setting on tab pages
4941         visibility.
4943 2006-10-03  Mike Kestner  <mkestner@novell.com>
4945         * ComboBox.cs : raise Click on ComboTextBox clicks. Fixes #79555.
4947 2006-10-03  Mike Kestner  <mkestner@novell.com>
4949         * ListView.cs : use is_visible instead of Visible to check if 
4950         scrollbars should be placed/sized.  Also some max_wrap_width
4951         love for LargeIcon view.  [Fixes #79533]
4953 2006-10-03  Atsushi Enomoto  <atsushi@ximian.com>
4955         * TextControl.cs :
4956           Make set_TextAlign() do actually update the align. Fixed #78403.
4958 2006-10-03  Chris Toshok  <toshok@ximian.com>
4960         * DataGrid.cs: fix a crash when switching datasources if the
4961         vertical scrollbar is at someplace other than Value = 0.  Also,
4962         reduce the number of recalculation passes we do in SetDataSource
4963         from 2 to 1.
4965 2006-10-03  Jackson Harper  <jackson@ximian.com>
4967         * TextBoxBase.cs: Move the if value the same bail check up, we
4968         don't want to empty the document if it is already empty, this
4969         seems to severly mess up the caret.  TODO: I should probably fix
4970         the empty statement to update teh caret somehow.
4972 2006-10-03  Chris Toshok  <toshok@ximian.com>
4974         * ThemeWin32Classic.cs, DataGrid.cs: some changes so that the
4975         incredibly hacky Windows.Forms FAQ autosize rows entry (it uses
4976         reflection, an internal row type, properties on said type, etc.)
4977         will work with our datagrid.  Fixes #79531.
4979 2006-10-03  Alexander Olk  <alex.olk@googlemail.com>
4981         * FileDialog.cs: Don't crash if a path is not accessible
4982           (System.UnauthorizedAccessException). Fixes #79569.
4983         * MimeIcon.cs: Workaround for a Uri bug. Unix paths/files can have
4984           a ':' too. Return unknown icon for those paths/files.
4986 2006-10-03  Sebastien Pouliot  <sebastien@ximian.com>
4988         * ToolTip.cs: Fix rare, but possible, NRE on MouseEnter when 
4989         GetContainerControl returns null.
4991 2006-10-02  Chris Toshok  <toshok@ximian.com>
4993         * XplatUIX11.cs (GetWindowState): use hwnd.client_window in the
4994         call to XGetWindowAttributes instead of "handle".  fixes an X
4995         error using notifyicon after the NotifyIconWindow to Form base
4996         class switch.
4998 2006-10-02  Chris Toshok  <toshok@ximian.com>
5000         * XplatUIX11.cs (QueryPointer): new function, encapsulating the
5001         server grab and looping we need to do to get down to the most
5002         deeply nested child window.
5003         (SetCursorPos): use QueryPointer instead of GetCursorPos, and call
5004         QueryPointer again after the WarpPointer so we can generate a
5005         proper (fake) MotionNotify event to be enqueued in the destination
5006         window's queue.
5007         (GetCursorPos): call QueryPointer.
5009         Fixes #79556.
5011 2006-10-02  Jackson Harper  <jackson@ximian.com>
5013         * NotifyIcon.cs: Derive the notify icon from a form, so things
5014         like FindForm work on it.
5015         - Swallow the WM_CONTEXTMENU message, since that is generated on
5016         mouse down, and context menu is a mouse up kinda guy.  I believe
5017         the correct fix here is probably to make the notify icon entirely
5018         NC area, but this seems to work fine for anyone not manipulating
5019         WndProc.
5021 2006-10-02  Jonathan Pobst  <monkey@jpobst.com>
5023         * ToolStrip.cs, ToolStripButton.cs, ToolStripItem.cs,
5024           ToolStripItemCollection.cs, ToolStripLabel.cs,
5025           ToolStripProfessionalRenderer.cs, ToolStripRenderer.cs,
5026           ToolStripSeparator.cs, ToolStripSplitStackLayout.cs:
5027           Initial implementation.
5028         * TextRenderer.cs: Provide padding to MeasureText.
5030 2006-10-02  Sebastien Pouliot  <sebastien@ximian.com>
5032         * ButtonBase.cs: Fix CreateAccessibilityInstance to return an instance
5033         of ButtonBaseAccessibleObject. Fix bug #79552.
5035 2006-10-02  Jackson Harper  <jackson@ximian.com>
5037         * MdiWindowManager.cs: When maximizing use the containers client
5038         rect, not it's bounds, so nc area is accounted correctly.
5039         - Use the parent form's size for the menu position, since the
5040         client isn't always the full form size.
5042 2006-10-01  Chris Toshok  <toshok@ximian.com>
5044         * ScrollableControl.cs: make sure neither right_edge or
5045         bottom_edge are < 0, since they're used as LargeChange for the
5046         horiz/vert scrollbars respectively.  Fixes #79539.
5048 2006-10-01  Chris Toshok  <toshok@ximian.com>
5050         * NotifyIcon.cs: add NotifyIconWindow.InternalRecreateHandle, so
5051         the xplatuix11 code can cause us to destroy/recreate our handle.
5053         * XplatUIX11.cs
5054         (SystrayAdd):
5055         - this code can be invoked many times for the same Hwnd.  Make
5056           sure we only destroy the client window once (the first time this
5057           method is called).  This fixes bug #79544.
5058         - Remove the call to the improperly bound XSync.  why we had two
5059           bindings to this, I will never know, but this call resulted in
5060           events being discarded from the queue(!).
5061         - correct a misunderstanding of _XEMBED_INFO - the second atom is
5062           not our current state but the state we wish to be in.  So, 0 if
5063           we don't want to be mapped.  Change it to 1.
5064         (SystrayRemove): The XEMBED spec makes mention of the fact that
5065         gtk doesn't support the reparent of client windows away from the
5066         embedder.  Looking at gtksocket-x11.c seems to agree with this.
5067         The only avenue we have for removing systray icons is to destroy
5068         them.  We don't want the handle to go away for good, though, so
5069         call InternalRecreateHandle on the NotifyIconWindow.  Fixes
5070         #79545.
5071         
5072 2006-10-01  Chris Toshok  <toshok@ximian.com>
5074         * Form.cs (WndProc): inline the native_enabled variable usage into
5075         the cases in which it's used.  Fixes #79536.
5077 2006-09-29  Mike Kestner  <mkestner@novell.com>
5079         * ListView.cs : toggle the selection state for ctrl clicks in 
5080         multiselect mode. [Fixes #79417]
5082 2006-09-29  Mike Kestner  <mkestner@novell.com>
5084         * ListView.cs : kill CanMultiSelect and refactor the selection
5085         code to support multiselection in the absence of mod keys. Steal
5086         arrow/home/end keys by overriding InternalPreProcessMessage to
5087         restore regressed keynav behavior.
5088         [Fixes #79416]
5090 2006-09-29  Jackson Harper  <jackson@ximian.com>
5092         * MdiClient.cs: Repaint the titlebars when the active window is
5093         changed.
5095 2006-09-29  Chris Toshok  <toshok@ximian.com>
5097         * Application.cs: when entering a runloop with a modal, make sure
5098         the hwnd is enabled.  Fixes #79480.
5100 2006-09-29  Chris Toshok  <toshok@ximian.com>
5102         * DataGrid.cs (CurrentCell): if we try to navigate to the add row
5103         when ListManager.CanAddRows == false, bump us back one.
5105         * DataGridColumnStyle.cs (ParentReadOnly): remove the
5106         listmanager.CanAddRows check.  This makes ArrayLists uneditable
5107         using a datagrid, which is not right.
5108         (SetColumnValueAtRow): call IEditable.BeginEdit if source[rowNum]
5109         is an IEditable, but call property_descriptor.SetValue regardless.
5110         fixes #79435.
5112 2006-09-29  Chris Toshok  <toshok@ximian.com>
5114         * DataGridBoolColumn.cs: we need to test equality in the face of
5115         possible null values (as is the case with the default NullValue).
5116         This patch keeps us from crashing in that case.
5118 2006-09-29  Jackson Harper  <jackson@ximian.com>
5120         * TreeNodeCollection.cs: Don't do a recalculate/updatescrollbars
5121         here, since it will get called for every node collection in the
5122         tree. This is now done in the treeview once the sorting is
5123         finished.
5124         * TreeView.cs: Recalculate the visible order, and update the
5125         scrollbars after sorting, set the top nope to the root so that the
5126         recalc actually works.
5128 2006-09-29  Chris Toshok  <toshok@ximian.com>
5130         * LinkLabel.cs: more handling of the default link collection in
5131         the face of LinkArea manipulation.  The default link collection
5132         contains 1 element (start=0,length=-1).  If the user sets LinkArea
5133         to anything and the links collection is the default, clear it.
5134         Then only add the link if its nonempty.  Fixes #79518.
5136 2006-09-29  Chris Toshok  <toshok@ximian.com>
5138         * LinkLabel.cs (CreatePiecesFromText): calculate the length of a
5139         piece correctly when we hit a '\n'.  Fixes #79517.
5141 2006-09-29  Chris Toshok  <toshok@ximian.com>
5143         * MimeIcon.cs, ThemeGtk.cs, X11DesktopColors.cs, XplatUIX11GTK.cs:
5144         change the binding of gdk_init_check to take two IntPtr's, and
5145         pass IntPtr.Zero for both of them.  Fixes #79520.
5147 2006-09-29  Mike Kestner  <mkestner@novell.com>
5149         * ComboBox.cs : raise TextChanged on ComboTextBox.TextChanged.
5150         [Fixes #78779]
5152 2006-09-28  Jackson Harper  <jackson@ximian.com>
5154         * XplatUIX11.cs: When translating NC messages make sure we go from
5155         whole window to screen, not client window to screen.
5156         * MdiClient.cs: Remove the calls to PaintWindowDecorations, this
5157         method doesn't exist
5158         - Skip over controls that aren't forms when arranging.
5160 2006-09-28  Jackson Harper  <jackson@ximian.com>
5162         * XplatUIWin32.cs: Clip the rect to the parent window.
5163         * XplatUIStructs.cs: Add clipping modes struct.
5164         * InternalWindowManager.cs: New private method that factors title
5165         bar heights in when calculating the pos of an NC mouse message.
5166         - Use SendMessage to force a paint when the form's size is changed
5167         instead of painting the decorations immediately.
5168         - Don't let the NC button click messages get to DefWndProc,
5169         because they will attempt to handle windowing themself, and this
5170         messes up z-order (it will put them in front of the scrollbars).
5171         * XplatUIX11.cs: Make sure that we don't reset window managers if
5172         we already have one (ie the window is an MDI window).
5174 2006-09-28  Chris Toshok  <toshok@ximian.com>
5176         * MainMenu.cs: fix #79405 by way of a disgusting hack.  all the
5177         menu code really needs going over.
5179 2006-09-27  Chris Toshok  <toshok@ximian.com>
5181         * XplatUIX11.cs (SetWMStyles): more metacity wonderment.  turns
5182         out metacity ignores the MAXIMIZE_HORZ/VERT messages unless the
5183         window is maximizable.  So, we need to make sure that even if we
5184         clear the border/wm frame of those functions, they're still
5185         available (basically, we remove the decoration without removing
5186         the function).  Half the fix for #79338.
5188 2006-09-27  Chris Toshok  <toshok@ximian.com>
5190         * DataGrid.cs (ProcessGridKey): implement Shift-Tab handling.
5191         Fixes bug #79515.
5193 2006-09-27  Chris Toshok  <toshok@ximian.com>
5195         * Splitter.cs: reorder things a bit so that we don't actually
5196         draw/move the splitter until after calling OnSplitterMoving.  This
5197         lets users cancel/disallow the movement by explicitly setting
5198         event.SplitX/SplitY.  Fixes #79372.
5200 2006-09-27  Jackson Harper  <jackson@ximian.com>
5202         * XplatUIX11.cs: Don't hide the caret when it is being destroyed,
5203         because it is most likely on a window being destroyed, and that
5204         will give us an X11 error.
5206 2006-09-27  Chris Toshok  <toshok@ximian.com>
5208         * PropertyGridView.cs: half of the fix for #78190.  Clicking on
5209         the dropdown button now toggles between showing and hiding the
5210         dropdown.  Also, get rid of dropdown_form_showing and just use
5211         dropdown_form.Visible.  We still don't do a grab, but I'll leave
5212         that part to someone who has handled Capture-fu before.
5214 2006-09-27  Chris Toshok  <toshok@ximian.com>
5216         * DataGrid.cs: return false if alt isn't pressed when '0' is
5217         pressed.  this keeps the '0' key from being swallowed, and fixes
5218         bug #79350.
5220 2006-09-27  Chris Toshok  <toshok@ximian.com>
5222         * ComboBox.cs: use Invalidate when scrolling the dropdown list.
5223         Calling Refresh (in response to a scrollbar event) screws up the
5224         scrollbar painting.  Fixes bug #78923.
5226 2006-09-27  Chris Toshok  <toshok@ximian.com>
5228         * Theme.cs (SystemResPool): make the "if hashtable[key] == null
5229         then insert into hashtable" blocks threadsafe.
5231 2006-09-27  Chris Toshok  <toshok@ximian.com>
5233         * MessageBox.cs (CreateParams): the styles should be |'ed with our
5234         baseclass's, since otherwise the
5235         ControlBox/MinimizeBox/MaximizeBox assignments above have no
5236         effect.  This gets the close button back in messageboxes.
5238 2006-09-27  Chris Toshok  <toshok@ximian.com>
5240         * XplatUIX11.cs: make StyleSet and ExStyleSet check == with the
5241         flag, not just != 0.  this makes flags that are actually multiple
5242         bits (like WS_CAPTION) work.  fixes bug #79508.
5244 2006-09-27  Jordi Mas i Hernandez <jordimash@gmail.com>
5246         * PageSetupDialog.cs: add support for getting and settings the 
5247         paper size, source and orientation.
5249 2006-09-26  Chris Toshok  <toshok@ximian.com>
5251         * XplatUIX11.cs (SetWMStyles): turns out when SYSMENU is not set
5252         and caption == "", we need to remove the resize handles as well as
5253         the title bar.
5255         * Control.cs (set_Text): turns out that setting Text on a form
5256         should change the WM styles on the window, since if ControlBox ==
5257         false, the only way to get a window border is to have a non-""
5258         Text property.  check winforms/forms/text.cs for an example.  so,
5259         call both XplatUI.SetWindowStyle and XplatUI.Text here to properly
5260         update both window styles and title.  This fixes a lot of dialogs
5261         (including the preferences dialog in MonoCalendar.)
5263 2006-09-26  Chris Toshok  <toshok@ximian.com>
5265         * XplatUIWin32.cs (SetParent): if parent == IntPtr.Zero (and the
5266         control isn't a Form), call Win32ShowWindow to hide the window,
5267         but don't update the control Visible property.  When we reparent
5268         back to a parent control, call SetVisible in order for the
5269         window's visibility to be reinstated.
5271         * XplatUIX11.cs (SetParent): if hwnd.parent == null, reparent to
5272         the FosterParent.
5274         * Control.cs (ControlCollection.Remove): remove that value.Hide()
5275         call for good, since it breaks MonoCalendar (and other things I'm
5276         sure.) Also, set all_controls to null *after* the owner calls,
5277         which end up regenerating it.
5278         (ChangeParent): allow new_parent to be == null, passing
5279         IntPtr.Zero down to XplatUI.
5281         this fixes #79294 the right way.
5283 2006-09-26  Mike Kestner  <mkestner@novell.com>
5285         * GridEntry.cs : internal SetParent method.
5286         * PropertyGrid.cs : attach to property changed on the proper
5287         target if we have a hierarchical grid with subobjects. Setup
5288         GridItem.Parent for hierarchical items.
5289         * PropertyGridView.cs : Set value on the correct target for
5290         hierarchical grids. [Fixes #78903]
5292 2006-09-26  Chris Toshok  <toshok@ximian.com>
5294         * Control.cs (ChildNeedsRecreating): this should return true if
5295         either we're being recreated and the child is in our list, or our
5296         parent is waiting for our recreation.
5298 2006-09-26  Chris Toshok  <toshok@ximian.com>
5300         * Control.cs (ControlCollection.Remove): reinstate the
5301         value.Hide() call as suggested in bug #79294.
5303 2006-09-26  Sebastien Pouliot  <sebastien@ximian.com>
5305         * XplatUIX11.cs: Fixed SetCursorPos to move the cursor to screen
5306         coordinates (versus a relative move).
5308 2006-09-26  Chris Toshok  <toshok@ximian.com>
5310         * Control.cs: rework child recreation a little bit.  It turns out
5311         that we race between the DestroyNotify the WM_DESTROY message.  If
5312         the parent gets its DestroyNotify before the child gets the
5313         WM_DESTROY message, the child ends up not recreating (since the
5314         parent finishes its recreation on DestroyNotify, and the child
5315         checks ParentIsRecreating.)
5317         So, instead we store off a list of all the child controls which
5318         need to be recreated when the parent control starts to recreate
5319         itself.  Then, when child controls get their WM_DESTROY message we
5320         check to see if they're in the parent's pending recreation list,
5321         and if so, we recreate.  This removes all dependency on ordering
5322         from the code and fixes the initial MonoCalendar upgrade dialog.
5323         
5324 2006-09-26  Jackson Harper  <jackson@ximian.com>
5326         * TextControl.cs: Use the Line to get the length of the line,
5327         since soft line breaks can change the end line.
5329 2006-09-26  Chris Toshok  <toshok@ximian.com>
5331         * Control.cs (ControlCollection.AddImplicit): don't add the
5332         control again if it's already in one of our lists.  This keeps us
5333         from adding controls over and over again for comboboxes when their
5334         handle gets recreated (as the combobox adds implicit controls in
5335         OnHandleCreated).  Fixes the X11 errors in bug #79480.
5337 2006-09-26  Jackson Harper  <jackson@ximian.com>
5339         * TextControl.cs: When deleting characters make sure that any
5340         orphaned zero lengthed tags get deleted.
5341         - Fix ToString for zero lengthed tags.
5343 2006-09-25  Jackson Harper  <jackson@ximian.com>
5345         * TextControl.cs: When getting a tag at the location there can be
5346         multiple tags at the same spot, these are 0-lengthed tags that
5347         appear when extra formatting has been stuck in a location.  We
5348         need to pull out the last of these 0 lengthed tags.
5350 2006-09-25  Jackson Harper  <jackson@ximian.com>
5352         * TextControl.cs: Fix print out in debug method.
5353         * TextBoxBase.cs: When text is set bail if we are setting to the
5354         previous value.
5355         
5356 2006-09-24  Alexander Olk  <alex.olk@googlemail.com>
5358         * FontDialog.cs: Fixed the up/down arrow keys issue from bug #79478.
5359           It is now possible to change the selected index in a FontXXXListBox
5360           with the up and down arrow keys from the FontXXXTextBoxes.
5361           Also, send the FontXXXTextBox mouse wheel event to the corresponding
5362           FontXXXListBoxes to match ms.
5364 2006-09-22  Sebastien Pouliot  <sebastien@ximian.com>
5366         * SystemInformation.cs: Return a clone of the theme's MenuFont because
5367         anyone can dispose it, anytime. All other properties returns enums, 
5368         structs or basic types so they don't need such tricks.
5370 2006-09-22  Jackson Harper  <jackson@ximian.com>
5372         * XplatUI.cs:
5373         * XplatUIWin32.cs:
5374         * Clipboard.cs:
5375         * DataFormats.cs:
5376         * XplatUIOSX.cs:
5377         * XplatUIDriver.cs: Update interface to add a primary selection
5378         flag, so the driver can use the primary selection buffer if
5379         needed.
5380         * XplatUIX11.cs: Allow the clipboard to retrieve from PRIMARY.
5382         * RichTextBox.cs: We need to supply the data object to paste now
5383         (so we can choose to supply CLIPBOARD or PRIMARY).
5384         * TextBoxBase.cs: Supply data object to paste (see above).
5385         - Middle click uses the primary selection data object.
5386         
5387 2006-09-21  Chris Toshok  <toshok@ximian.com>
5389         * XplatUIX11.cs: first little cleanup of the StyleSet (...) block
5390         of SetWMStyles.  It's still a rat's nest and is largely
5391         order-dependent which I dislike immensely.  This also fixes the X
5392         button disappearing from toplevel forms.
5394 2006-09-21  Mike Kestner <mkestner@novell.com>
5396         * ListBox.cs: move Jordi's click/dblclick raising code to the
5397         mouse up handler.
5399 2006-09-21  Jordi Mas i Hernandez <jordimash@gmail.com>
5401         * ListBox.cs: Fixes 79450
5403 2006-09-21  Mike Kestner <mkestner@novell.com>
5405         * TreeView.cs: guard against disposed conditions in UpdateScrollbars
5406         to deal with people updating the TreeNodeCollection after the tree
5407         is disposed.  "Fixes" 79330.
5409 2006-09-20  Jackson Harper <jackson@ximian.com>
5411         * TextControl.cs: Push the cursor record onto the undo stack
5412         before the delete action. This fixes 78651.
5414 2006-09-20  Jonathan Chambers  <joncham@gmail.com>
5416         * PropertyGridView.cs: Remove WindowStyles.WS_VISIBLE from
5417         CreateParams. Fixes 79329.
5419 2006-09-19  Chris Toshok  <toshok@ximian.com>
5421         * XplatUIX11.cs: a couple of blanket code massage passes to clean
5422         things up a bit.  First, get rid of the NetAtoms array (and the NA
5423         enum), and just embed the atoms as static fields.  Also, add a
5424         couple of functions (StyleSet and ExStyleSet) to clean up all the
5425         bitmask testing of styles.
5427         * X11Structs.cs: remove the NA enum, not needed anymore.
5428         
5429 2006-09-19  Chris Toshok  <toshok@ximian.com>
5431         * XplatUIX11.cs: apply Alexander's tool window fix for bug #79245
5432         (mapping them to _NET_WM_WINDOW_TYPE_UTILITY).  and add a little
5433         added cleanup to get MessageBox titles appearing again, which were
5434         broken by my earlier fix for caption-less/ControlBox-less windows.
5436 2006-09-18  Jonathan Pobst <monkey@jpobst.com>
5438         * ToolStripArrowRenderEventArgs.cs, ToolStripArrowRenderEventHandler.cs,
5439           ToolStripContentPanelRenderEventArgs.cs, ToolStripContentPanelRenderEventHandler.cs,
5440           ToolStripGripRenderEventArgs.cs, ToolStripGripRenderEventHandler.cs,
5441           ToolStripItemClickedEventArgs.cs, ToolStripItemClickedEventHandler.cs,
5442           ToolStripItemEventArgs.cs, ToolStripItemEventHandler.cs,
5443           ToolStripItemImageRenderEventArgs.cs, ToolStripItemImageRenderEventHandler.cs,
5444           ToolStripItemRenderEventArgs.cs, ToolStripItemRenderEventHandler.cs,
5445           ToolStripItemTextRenderEventArgs.cs, ToolStripItemTextRenderEventHandler.cs,
5446           ToolStripPanelRenderEventArgs.cs, ToolStripPanelRenderEventHandler.cs,
5447           ToolStripRenderEventArgs.cs, ToolStripRenderEventHandler.cs,
5448           ToolStripSeparatorRenderEventArgs.cs, ToolStripSeparatorRenderEventHandler.cs:
5449             Inital import.
5450         * ToolStripPanel.cs, ToolStripContentPanel.cs, ToolStripSeparator.cs,
5451           ToolStripButton.cs: Stubs needed for above.
5452         * ToolStrip.cs, ToolStripItem.cs: Stub a few variables/properties for above.
5454 2006-09-15  Chris Toshok  <toshok@ximian.com>
5456         * XplatUIX11.cs:
5457         - make the MessageQueues hashtable Synchronized.
5458         
5459         - SendMessage: if the Hwnd is owned by a different thread, use the
5460         AsyncMethod stuff to dispatch the SendMessage on the hwnd's
5461         thread.  Fixes bug #79201.
5463 2006-09-15  Chris Toshok  <toshok@ximian.com>
5465         * XplatUIX11.cs (SetWMStyles): rework the #79368 fix slightly.  If
5466         ControlBox == false, we disallow maximize/minimize/close.  If the
5467         form Caption is "" we also disallow move (and get rid of the Title
5468         decoration).  Unfortunately, regardless of how things are set,
5469         we're stuck with the Title and WM menu.
5471 2006-09-15  Chris Toshok  <toshok@ximian.com>
5473         * Application.cs: add locking around the static message_filters
5474         ArrayList, part of #79196.
5476 2006-09-15  Chris Toshok  <toshok@ximian.com>
5478         * XplatUIX11.cs (SetWMStyles): if Form.Text == "" and
5479         Form.ControlBox == false, the window has no titlebar nor resize
5480         handles.  fixes bug #79368.
5482 2006-09-15  Chris Toshok  <toshok@ximian.com>
5484         * TextBoxBase.cs: in CalculateScrollBars make sure LargeChange is
5485         >= 0.  Fixes bug #79370.
5487 2006-09-15  Jonathan Pobst <monkey@jpobst.com>
5488         * FlowLayoutPanel.cs, FlowLayoutSettings.cs: Initial commit.
5489         * Control.cs:
5490             Add properties: LayoutEngine, Margin, DefaultMargin.
5491             Add method: GetPreferredSize.
5492             Move layout logic from PerformLayout to layout engines. 
5494 2006-09-13  Chris Toshok  <toshok@ximian.com>
5496         * XplatUIX11.cs: more destroy work.  Jackson pointed out that my
5497         fix for #79326 broke #78718, so this change addresses that.
5499         - in SendWMDestroyMessages remove the call to
5500         CleanupCachedWindows, since we might be recreating the control and
5501         need to maintain the references to right Hwnd handles.  Also, set
5502         the zombie flag to true for each of the children in the hierarchy
5503         instead of calling hwnd.Dispose.  This will cause GetMessage to
5504         ignore all events for the window except for DestroyNotify.
5506         - In GetMessage, ignore messages except for DestroyNotify for
5507         zombie hwnds.
5508         
5509         * Control.cs: revert the is_recreating fix from the last
5510         ChangeLog.  It's definitely "right", but it breaks switching from
5511         an MDI form to a non-MDI form.  Will need to revisit that.
5513         * Hwnd.cs: add a zombie flag, which means "the
5514         client_window/whole_window handles are invalid, but we're waiting
5515         for the DestroyNotify event to come in for them".  Set the flag to
5516         false explicitly if setting WholeWindow/ClientWindow, and also
5517         when Disposing.
5518         
5519 2006-09-13  Chris Toshok  <toshok@ximian.com>
5521         * XplatUIX11.cs: rework window destruction slightly.
5523         - when destroying the windows associated with a control, we don't
5524         need 2 separate XDestroyWindow calls.  Just the one for the
5525         whole_window (or for client_window if whole_window is somehow
5526         IntPtr.Zero -- can this happen?) is enough.
5528         - reworked SendWMDestroyMessages slightly, so we always dispose
5529         the child control hwnd's after sending the messages.
5530         
5531         - refactored out the ActiveWindow/FocusWindow/Caret clearing from
5532         the two places it was used (one was even using hwnd.Handle and the
5533         other hwnd.client_window.  ugh), adding another call in
5534         SendWMDestroyMessages.  We need this new call because now the
5535         DestroyNotify events in the queue will be ignored for the child
5536         controls (as their hwnd's were disposed, and the window id's
5537         removed from the hashtable in SendWMDestroyMessages.) fun, eh?
5539         - this fixes bug #79326.
5541 2006-09-13  Chris Toshok  <toshok@ximian.com>
5543         * Control.cs: don't always set is_recreating to false at the end
5544         of RecreateHandle, since sometimes we're not done (and won't be
5545         until WndProc handles the WM_DESTROY message).  Also, set
5546         is_recreating to false in the WM_DESTROY handling code.  Part of
5547         the fix for bug #79326.
5549 2006-09-13  Miguel de Icaza  <miguel@novell.com>
5551         * X11DesktopColors.cs: Start the droppage of debugging messages.
5553         * FileDialog.cs: Store the configuration file in ~/.mono/mwf_config
5555 2006-09-13  Jonathan Pobst <monkey@jpobst.com>
5557         * SplitContainer.cs, SplitterPanel.cs: Initial implementation [2.0].
5559 2006-09-12  Chris Toshok  <toshok@ximian.com>
5561         * DataGrid.cs (get_ListManager): if the list_manager is null, try
5562         to create it using SetDataSource.  Fixes bug #79151.
5564 2006-09-11  Chris Toshok  <toshok@ximian.com>
5566         * XEventQueue.cs: add a DispatchIdle property.
5568         * XplatUIX11.cs (UpdateMessageQueue): only emit the Idle event if
5569         either the queue is null, or the queue has DispatchIdle set to
5570         true.
5571         (DoEvents): set queue.DispatchIdle to false around the
5572         peek/translate/dispatch message loop in this method.  This keeps
5573         Application.Doevents from emitting idle events.  Part of the fix
5574         for #78823.
5576 2006-09-11  Chris Toshok  <toshok@ximian.com>
5578         * DataGrid.cs (set_DataSource): make this work for both the
5579         winforms/datagrid test and ReportBuilder.  It seems as though when
5580         we've created a ListManager (or maybe it's if we have a
5581         BindingContext?), when we set the DataSource it clears the
5582         DataMember to "".  otherwise we reuse the datamember.  Fixes bug
5583         #79333.
5585 2006-09-11  Chris Toshok  <toshok@ximian.com>
5587         * XplatUIX11.cs: deal with queue being null, which happens in all
5588         the Clipboard functions.  Fixes one of the two problems mentioned
5589         in #78612.
5591 2006-09-11  Chris Toshok  <toshok@ximian.com>
5593         * MenuAPI.cs: rework OnMouseUp a bit so that releasing the mouse
5594         button on various spots (including outside the menu) works closer
5595         to MS, and doesn't crash.  Fixes #79343.
5597 2006-09-11  Gert Driesen  <drieseng@users.sourceforge.net>
5599         * ListView.cs: Do not initialize item_sorter in init. To match MS,
5600         return null for ListViewItemSorter if View is SmallIcon or LargeIcon
5601         and the internal comparer is set. When a new ListViewItemSorter is set,
5602         sort the items. Use Enum.IsDefined to verify whether a valid SortOrder
5603         was specified. No further processing is necessary if SortOrder is set
5604         to it's current value. If Sorting is modified to None, and View is
5605         neither SmallIcon nor LargeIcon then: on 2.0 profile set item_sorter
5606         (either custom or our internal ItemComparer) to null, on 1.0 profile
5607         only set item_sorter to null if its our internal IComparer. If Sorting
5608         is modified to Ascending or Descending, then use our internal IComparer
5609         if none is set, and if the current IComparer is our internal one then:
5610         on 2.0 profile always replace it with one for new Sorting, and on 1.0
5611         profile only use new Sorting if view is not SmallIcon or LargeIcon. Use
5612         Enum.IsDefined to verify whether a valid View value is specified in
5613         its setter. Automatically sort listview items when listview is
5614         created. In Sort, do nothing if ListView is not yet created, or if
5615         no item_sorter is set (no Sorting was set, Sorting was explicitly set
5616         to None or ListViewItemSorter was set to null). Added Sort overload
5617         taking a bool to indicate whether the ListView should be redrawn when
5618         items are sorted (we use this in ListViewItemCollection to avoid double
5619         redraws). Modified our internal IComparer to take the sort order into
5620         account. In Add and AddRange methods of ListViewItemCollection, also
5621         call Sort if Sorting is None (necessary for SmallIcon and LargeIcon
5622         view), but use overload with noredraw option to avoid double redraw.
5623         On 2.0 profile, throw NotSupportedException when setting CheckBoxes to
5624         true when View is Tile, and do the same when attempting to set View to
5625         Tile when CheckBoxes is true. Avoid maintaining separate ArrayLists
5626         for selected/checked indices, as it involves overhead when sorting is
5627         done while these collections are not used all that often. Instead
5628         we'll build the indices on demand. Modified IList implementation of
5629         CheckedIndexCollection to use public methods if object is int.
5630         Modified CheckedListViewItemCollection to hide checked items if
5631         ListView.CheckBoxes is false. Removed LAMESPEC remark in 
5632         ListViewItemCollection as the .NET SDK docs have been fixed. Modified
5633         IList implementation in SelectedIndexCollection to use public methods
5634         if object is int. Modified SelectedListViewItemCollection to hide
5635         selected items if listview is not yet created.
5636         * ListViewItem.cs: CheckedIndices list no longer needs to be
5637         maintained separately (see ListView changes). Also clone font, fixes
5638         test failure.
5640 2006-09-11  Mike Kestner  <mkestner@novell.com>
5642         * ComboBox.cs: if we are updating the contents of the currently
5643         selected index, refresh the control or the textbox selection.
5644         [Fixes #79066]
5646 2006-09-11  Mike Kestner  <mkestner@novell.com>
5648         * ComboBox.cs (UpdateBounds): use SetBounds not SetBoundsCore since 
5649         the 'specified' logic has been moved there.  This seems like a bug 
5650         in Control.cs, since our current SetBoundsCore completely ignores 
5651         the specified parameter.  Peter's commit seems to indicate that is 
5652         the way the MS control implementation works.  [Fixes #79325]
5654 2006-09-10  Jonathan Chambers  <joncham@gmail.com>
5656         * XplatUI.cs: Set default_class_name to be composed
5657         of current domain id. This allows MWF to be loaded in multiple
5658         domains on Win32.
5660 2006-09-09  Miguel de Icaza  <miguel@novell.com>
5662         * X11Keyboard.cs: If we are unable to obtain the input method, do
5663         not call CreateXic to create the input context.   Should fix
5664         #78944/79276.
5666 2006-09-08  Alexander Olk  <alex.olk@googlemail.com>
5668         * MimeIcon.cs: Rewrote major parts. Dropped KDE support for now.
5669           Simplified gnome support by adding more pinvokes to get the
5670           icon for a file or mime type.
5672 2006-09-08  Jackson Harper  <jackson@ximian.com>
5674         * MenuAPI.cs: Deslect popup context menu items before closing the
5675         window, so that you don't see the previously selected item
5676         selected when you reopen the menu.
5677         * TextControl.cs: Update the cursor position even if we don't have
5678         focus.  This fixes typing in things like the ComboBox.  I'm not
5679         totally sure we should always set the visibility if we don't have
5680         focus, but couldn't find any corner cases where the cursor showed
5681         up when it shouldn't.
5683 2006-09-08  Chris Toshok  <toshok@ximian.com>
5685         * X11Keyboard.cs: In UpdateKeyState vkey can be any integer, but
5686         our arrays are length 256.  & 0xff before indexing.  Fixes the
5687         crash in bug #78077.
5688         
5689 2006-09-08  Carlos Alberto Cortez <calberto.cortez@gmail.com>
5691         * ThemeWin32Classic.cs: 
5692         * DateTimePicker.cs: Draw check box if DateTimePicker.ShowCheckBox
5693         is true. Handle that check box too.
5695 2006-09-07  Chris Toshok  <toshok@ximian.com>
5697         * MenuAPI.cs: move the PerformClick call to OnMouseUp.  Fixes bug
5698         79244.
5700 2006-09-07  Chris Toshok  <toshok@ximian.com>
5702         * Control.cs: in set_BackColor only do the work if
5703         background_color != value.
5705         * XplatUIX11.cs: move the clearing of invalid areas (both client
5706         and nc) to the same block of code where we set (nc_)expose_pending
5707         to false.  That is, move it from PaintEventEnd to PaintEventStart,
5708         so things that cause invalidates from within OnPaint will trigger
5709         another call to OnPaint.  Fixes bug #79262.
5711 2006-09-07  Alexander Olk  <alex.olk@googlemail.com>
5713         * Theme.cs: Use correct icon for UIIcon.PlacesPersonal
5714         * FileDialog.cs: Fix typo
5716 2006-09-07  Jackson Harper  <jackson@ximian.com>
5718         * ThemeWin32Classic.cs:  oops, forgot to commit.  Draw the images
5719         for tab pages if they have any.
5721 2006-09-06  Mike Kestner  <mkestner@novell.com>
5723         * Splitter.cs: use the "current" rect when finishing drag handle
5724         to avoid an artifact demonstrated by resedit.exe.  [Fixes #79251]
5726 2006-09-06  Mike Kestner  <mkestner@novell.com>
5728         * Splitter.cs: draw the drag handle at X or Y instead of 0 to deal
5729         support offset splitters. [Fixes #79298]
5731 2006-09-06  Alexander Olk  <alex.olk@googlemail.com>
5733         * Mime.cs: Fixed a bug that could override the global mime type
5734           result.
5736 2006-09-05  Jackson Harper  <jackson@ximian.com>
5738         * TabControl.cs: Better calculation method for setting the slider
5739         pos. Prevents crashes on really wide tabs.
5740         - Draw Image on tab pages if an image list is used.
5742 2006-09-02  Carlos Alberto Cortez <calberto.cortez@gmail.com>
5744         * MonthCalendar.cs: When Font changes, the Size should be
5745         updated to fit the new font's space requirements.
5747 2006-09-02  Alexander Olk  <alex.olk@googlemail.com>
5749         * ListBox.cs: If the items are cleared with Items.Clear set
5750           top_index to 0.
5752 2006-09-01  Carlos Alberto Cortez <calberto.cortez@gmail.com>
5754         * MonthCalendar.cs: Handle arrow keys as input keys. Also
5755         fire DateChanged event instead of DateSelected event when
5756         the date was changed by keyboard interaction.
5758 2006-09-01  Carlos Alberto Cortez <calberto.cortez@gmail.com>
5760         * DateTimePicker.cs: Handle DateChanged for the associated
5761         month_calendar control, and set month_calendar.Font from 
5762         OnFontChanged method, as well as resize the height of the
5763         control when needed. Make PreferredHeight proportional.
5765 2006-09-01  Chris Toshok  <toshok@ximian.com>
5767         * DataGrid.cs: grr, stop overthinking the DataMember/DataSource
5768         properties.
5770         * BindingContext.cs (HashKey.GetHashCode): use ^ instead of +.
5772 2006-09-01  Peter Dennis Bartok  <pbartok@novell.com> 
5774         * FileDialog.cs: Set ClientSize instead of window size, to allow space
5775           for decorations (Fixes #79219)
5777 2006-09-01  Mike Kestner  <mkestner@novell.com>
5779         * ComboBox.cs: first stab at sorting plus some selection handling
5780         fixes to bring us more in line with MS behavior.  Also switches back
5781         to index based selection.  Alternative patches for index-based 
5782         selection were provided by Jackson Harper, Carlos Alberto Cortez, 
5783         and latency@gmx.de on bug 78848.  I assume they were similar to this
5784         code I've had simmering in my tree forever.
5785         [Fixes #78848]
5787 2006-09-01  Chris Toshok  <toshok@ximian.com>
5789         * CurrencyManager.cs (ListChangedHandler): in the ItemAdded case,
5790         when setting list position guard against ending up with a -1 index
5791         (the other part of the fix for #78812).  Should probably make sure
5792         we don't need the analogous fix in the ItemDeleted case.
5794         * DataGrid.cs:
5795         - in SetDataSource, work around the fact that the way
5796         OnBindingContextChanged is invoked will cause us to re-enter this
5797         method.  I'll remove the hack once I investigate
5798         OnBindingContextChanged.
5800         - fix the logic in set_DataSource and set_DataMember (basically
5801         what to do if the other of the two is null.)
5802         
5803         - in OnListManagerItemChanged, we need to take into account the
5804         edit row when deciding whether or not to call RecreateDataGridRows
5805         (part of the fix for #78812).
5807 2006-09-01  Jackson Harper  <jackson@ximian.com>
5809         * Splitter.cs: Don't do anything if there is no control to affect
5810         (prevents us from crashing in weird tet cases).
5811         * TreeView.cs: Bounding box for the mouse movement reverting
5812         focus/selection back to previously selected node.  This matches
5813         MS, and makes the tree a lot more useable.
5814         * GroupBox.cs: Instead of drawing over the lines of the groupbox,
5815         use clipping so they are not drawn.  This fixes when the control
5816         is set to have a transparent background, or if it was over an
5817         image.
5819 2006-09-01  Alexander Olk  <alex.olk@googlemail.com>
5821         * MimeIcon.cs: Improved handling for reading default icons when
5822           using gnome (2.16 made it necessary). Check and read svg icons
5823           first, then 48x48 and then 32x32 icons.
5825 2006-08-31  Chris Toshok  <toshok@ximian.com>
5827         * DataGridTextBoxColumn.cs: only hide the textbox if it's still
5828         visible.
5830         * DataGridTextBox.cs: Pass Tab's up to the datagrid by calling
5831         ProcessKeyPreview.  Fixes part of #77806.
5833         * DataGrid.cs: big patch.
5835         - revert the queueing up of DataSource/DataMember if inside
5836         BeginInit/EndInit calls.  That's not the way the datagrid achieves
5837         its delayed databinding.  Instead, call SetDataSource in
5838         OnBindingContextChanged.  This mimic's MS's behavior, and fixes
5839         #78811.
5841         - Also, it wasn't mentioned in #78811, but the test case exhibits
5842         behavior that was lacking in our datagrid implementation - Columns
5843         that have mapping names that don't exist in the datasource's
5844         properties aren't shown.  Yuck.  To fix this I added the bound
5845         field to the column style, and basically any calculation to figure
5846         out anything about columns uses a loop to find the bound columns.
5847         still need to investigate if I can cache an array of the bound
5848         columns or if the indices must be the same.
5850         - When setting CurrentCell, we no longer abort if the cell being
5851         edited was in the add row.  This fixes the other part of #77806.
5853         - The new code also fixes #78807.
5854         
5855         * ThemeWin32Classic.cs: perpetrate the same disgusting
5856         column.bound field hack, and only render bound fields.
5858 2006-08-31  Chris Toshok  <toshok@ximian.com>
5860         * DataGridColumnStyle.cs: add bound field.  this field is true if
5861         the datasource has a property corresponding to the mapping name.
5863         * DataGridTableStyle.cs: set the bound field on the column styles
5864         depending on whether or not we have a column for that property.
5866 2006-08-31  Peter Dennis Bartok  <pbartok@novell.com> 
5868         * Splitter.cs (SetBoundsCore): Don't ignore width/height of the 
5869           splitter control (fixes #79228)
5871 2006-08-31  Chris Toshok  <toshok@ximian.com>
5873         * DataGridColumnStyle.cs: we need to delay the assignment of
5874         property descriptor until the last possible moment due to the lazy
5875         databinding stuff in the datagrid.  Also, fix the exceptions
5876         thrown by CheckValidDataSource to match MS.
5878 2006-08-31  Jackson Harper  <jackson@ximian.com>
5880         * Form.cs: When activated select the active control, if there is
5881         no active control, we select the first control.
5882         * XplatUIX11.cs: If there is no focus control when we get a
5883         FocusIn event, find the toplevel form and activate it.  This
5884         occurs when you popup a window, it becomes the focus window, then
5885         you close that window, giving focus back to the main window.
5887 2006-08-21  Carlos Alberto Cortez <calberto.cortez@gmail.com>
5889         * MonthCalendar.cs: 
5890         * ThemeWin32Classic.cs: Cache Font in bold style, as well
5891         as StringFormat with Center alignments in MonthCalendar,
5892         instead of creating new ones when drawing the control. 
5893         Also, draw the month name in bold style.
5895 2006-08-30  Peter Dennis Bartok  <pbartok@novell.com> 
5897         * Control.cs:
5898           - PerformLayout(): It would seem MS performs the fill even if the 
5899             control is not visible (part of #79218 fix)
5900           - ResetBackColor(): Use the setter to reset the color, to allow
5901             overriders to catch the change.
5902         * Form.cs:
5903           - .ctor: Call UpdateBounds to adjust client rectangle (part of #79218 fix)
5904           - CreateHandle(): dito (part of $79218 fix)
5905           - Don't set an icon if we have a dialog
5906         * ScrollableControl.cs:
5907           - set_AutoScrollMinSize: Setting the property enables AutoScroll (#79218)
5908           - ScrollIntoView(): No need to scroll if control is already visible
5909             (resolves fixme and fixes #79218)
5911 2006-08-30  Carlos Alberto Cortez <calberto.cortez@gmail.com>
5913         * MonthCalendar.cs: Change proportions in SingleMonthSize
5914         to match the aspect of the original control.
5916 2006-08-29  Alexander Olk  <alex.olk@googlemail.com>
5918         * XplatUIX11.cs: Fix for a metacity/X problem where windows don't
5919           get updated when they get maximized.
5921 2006-08-29  Peter Dennis Bartok  <pbartok@novell.com> 
5923         * XplatUIX11.cs: Handle windows with no border (Fixes part of #79160)
5925 2006-08-29  Chris Toshok  <toshok@ximian.com>
5927         * XplatUIX11.cs: when destroying the FocusWindow, send KILLFOCUS.
5929 2006-08-29  Jackson Harper  <jackson@ximian.com>
5931         * TreeView.cs: Need to track selected node and highlighted node,
5932         they aren't always the same thing, when the mouse is down on a
5933         node it is hilighted, but not selected yet.
5934         - Do the HideSelection stuff right
5935         - Need to focus on rbutton mouse down. And redraw selection when
5936         right click is mouse upped.
5938 2006-08-29  Mike Kestner  <mkestner@novell.com>
5940         * ThemeWin32Classic.cs: draw selections for columns in FullRowSelect
5941         when SubItems.Count < Columns.Count.  [Fixes #79167]
5943 2006-08-28  Peter Dennis Bartok  <pbartok@novell.com> 
5945         * TextControl.cs (FindCursor): Fix math error (Fixes #78402)
5947 2006-08-28  Peter Dennis Bartok  <pbartok@novell.com>
5949         * XplatUIX11.cs: Preempt the roundtrip for getting the location back
5950           from X. Only send based on ConfigureNotify if we don't have the
5951           correct location in hwnd (if the window manager moved us)
5953 2006-08-28  Mike Kestner  <mkestner@novell.com>
5955         * ListView.cs: remove a TODO. 
5956         * ThemeWin32Classic.cs: implement HideSelection support for ListView.
5957         [Fixes ListView part of #79166]
5959 2006-08-28  Mike Kestner  <mkestner@novell.com>
5961         * ListView.cs: move wheel handler to parent since it is focused
5962         instead of the item_control now.  [Fixes #79177]
5964 2006-08-28  Mike Kestner  <mkestner@novell.com>
5966         * ThemeWin32Classic.cs: only highlight subitems in fullrowselect
5967         when the control is focused. [Fixes #79171]
5969 2006-08-28  Mike Kestner  <mkestner@novell.com>
5971         * ListView.cs: size the item and header controls for empty and
5972         unscrollable views.
5973         * ThemeWin32Classic.cs: draw disabled backgrounds.
5974         [Fixes #79187]
5976 2006-08-28  Chris Toshok  <toshok@ximian.com>
5978         * Form.cs: remove unused "active_form" static field.
5980         * Hwnd.cs: lock around accesses to static windows collection.
5982         * Application.cs: lock threads in Exit ().
5984 2006-08-28  Chris Toshok  <toshok@ximian.com>
5986         * NativeWindow.cs: lock around accesses to window_collection.
5987         
5988 2006-08-28  Chris Toshok  <toshok@ximian.com>
5990         * Control.cs: err, fix this the right way, by locking on controls
5991         when using it.  not by making it synchronized.
5993 2006-08-28  Chris Toshok  <toshok@ximian.com>
5995         * Control.cs: make the static "controls" field synchronized, as it
5996         gets updated from multiple threads.
5998 2006-08-27  Peter Dennis Bartok  <pbartok@novell.com>
6000         * XplatUIX11.cs: PostQuitMessage is thread-specific not app-specific.
6001           Prevent other threads from exiting when calling thread sets quit state.
6002         * XEventQueue.cs: Added PostQuitState property
6004 2006-08-27  Chris Toshok  <toshok@ximian.com>
6006         * AsyncMethodData.cs: add a slot for the window handle.
6008         * XplatUIX11.cs (SendAsyncMethod): send the event to the right
6009         window (the destination control's window, not the foster window).
6011         * Control.cs (BeginInvokeInternal): store the window's handle in
6012         the AsyncMethodData.
6013         
6015 2006-08-27  Peter Dennis Bartok  <pbartok@novell.com>
6017         * XplatUIX11.cs:
6018           - PostQuitMessage: Removed resetting S.D display handle, we might have
6019             another loop started after calling PostQuitMessage (Fixes #79119)
6020           - Created destructor to reset S.D handle
6022 2006-08-27  Peter Dennis Bartok  <pbartok@novell.com> 
6024         * XplatUIX11.cs (SetCursor): Issue flush after setting the cursor (#79168)
6026 2006-08-23  Peter Dennis Bartok  <pbartok@novell.com>
6028         * TextControl.cs (Insert): Update the caret position even if we don't
6029           have a handle yet, just don't call the driver in that case.
6030         * TextBoxBase.cs (set_SelectedText): Set the Start and End selection
6031           to the end of the new selection text (Fixes #79184)
6033 2006-08-23  Peter Dennis Bartok  <pbartok@novell.com> 
6035         * Form.cs (Activate): Only activate if the handle is created)
6036         * Control.c:
6037           - Mark window as invisible when it's disposed
6038           - Check if window handle is created when setting window visible, 
6039             instead of relying just on the is_created variable
6040           - Check if object is disposed when creating the control (Fixes #79155)
6042 2006-08-23  Peter Dennis Bartok  <pbartok@novell.com>
6044         * ScrollableWindow.cs (ScrollWindow): Don't actually perform layouting
6045           when allowing layout again. Otherwise we re-generate the anchoring 
6046           distance to the border again and actually alter what the user wanted
6047           This is ugly, it'd be better if we used DisplayRectangle instead of
6048           ClientRectangle for Control.UpdateDistances, but that causes us to
6049           have other problems (initial anchoring positons would be wrong)
6050           (Fixes #78835)
6052 2006-08-23  Peter Dennis Bartok  <pbartok@novell.com> 
6054         * Control.cs:
6055           - The size and location setters shouldn't go directly to 
6056             SetBoundsCore, but to SetBounds, which triggers layout on the
6057             parent, then calls SetBoundsCore. (Related to fix for #78835)
6058           - SetBounds: Moved actual location update code into this function
6059             from SetBoundsCore, to match MS. Added call to PerformLayout if
6060             we have a parent (to trigger resizing of anchored parents if the 
6061             child size has changed (see testcase for #78835) 
6062         * ListBox.cs, Form.cs: Call SetBounds instead of SetBoundsCore to match 
6063           new control code
6064         * ScrollableControl.cs (CalculateCanvasSize): Use shortcut variable
6066 2006-08-23  Peter Dennis Bartok  <pbartok@novell.com>
6068         * XplatUIX11.cs: Don't reset the DisplayHandle that's stored in
6069           System.Drawing when a toplevel window gets closed; there might
6070           be other toplevel windows belonging to the same app (Fixes #78052)
6072 2006-08-26  Alexander Olk  <alex.olk@googlemail.com>
6074         * FileDialog.cs: After reading FileDialog settings from mwf_config
6075           use Desktop prefix only if a real folder doesn't exist anymore.
6076         * FontDialog.cs: Added char sets.
6077           It is now possible to select the font, size or style with the
6078           textboxes.
6080 2006-08-25  Kornél Pál  <kornelpal@gmail.com>
6082         * PrintPreviewDialog.cs: Use assembly name constants.
6084 2006-08-23  Peter Dennis Bartok  <pbartok@novell.com>
6086         * XplatUIWin32.cs (ScrollWindow): Use clipping rectangle arg (prevents
6087           scrollbar from whacking it's buttons)
6089 2006-08-24  Chris Toshok  <toshok@ximian.com>
6091         * ScrollableControl.cs: fix #78271.  There's a lot of misc stuff
6092         in this patch (aggregating setting Left/Top/Width/Height to
6093         setting Bounds on the scrollbars), but the crux of the fix is in
6094         Recalculate, where we scroll by the remaining scroll_position if
6095         we're hiding a scrollbar.  The 2*$5 reward in the comment is
6096         serious.
6098 2006-08-24  Jackson Harper  <jackson@ximian.com>
6100         * MdiClient.cs:
6101         * MdiWindowManager.cs: If the form is made a non-mdi window we
6102         need to remove the form closed event so that closing forms works
6103         correctly.
6105 2006-08-24  Jackson Harper  <jackson@ximian.com>
6107         * Control.cs: Make IsRecreating internal so that the driver can
6108         check it
6109         - Temporarily remove the Hide when controls are removed, its
6110         making a whole bunch of things not work because visibility isn't
6111         getting reset elsewhere correctly
6112         * Form.cs: Need to do a full handle recreation when the mdi parent
6113         is set.
6114         * XplatUIX11.cs: If we are recreating handles don't dispose the
6115         HWNDs.  What was happening is the handles were being recreated in
6116         SendWMDestroyMessages, but then flow continued on in that method
6117         and destroyed the new handles.
6119 2006-08-23  Jackson Harper  <jackson@ximian.com>
6121         * Form.cs: MdiClient is always at the back of the bus
6122         * Control.cs: When the order of items in the collection is changed
6123         we need to reset the all_controls array
6124         - do the same sorta setup thats done when adding a control when a
6125         control is set on the collection.
6127 2006-08-23  Peter Dennis Bartok  <pbartok@novell.com>
6129         * TextBoxBase.cs (get_Text): Return an empty array if our document
6130           is empty (fixes #79052)
6132 2006-08-23  Peter Dennis Bartok  <pbartok@novell.com> 
6134         * Control.cs: We should call IsInputChar on only on WM_CHAR but not
6135           on WM_SYSCHAR messages (fixes #79053)
6137 2006-08-23  Chris Toshok  <toshok@ximian.com>
6139         * DataGrid.cs: fix flickering when scrolling vertically.
6141 2006-08-23  Chris Toshok  <toshok@ximian.com>
6143         * DataGrid.cs (EndEdit): only invalidate the row header when we
6144         need to.
6146 2006-08-23  Chris Toshok  <toshok@ximian.com>
6148         * ThemeWin32Classic.cs: fix the clip munging of the datagrid paint
6149         methods.  fixes the flicker when scrolling around.
6151 2006-08-23  Peter Dennis Bartok  <pbartok@novell.com> 
6153         * FileDialog.cs: Making sure the control is created before we get a 
6154           chance to use it with BeginInvoke (Fixes #79096)
6156 2006-08-23  Chris Toshok  <toshok@ximian.com>
6158         * ThemeWin32Classic.cs (DataGridPaintRows): calculate the proper
6159         width to use when painting the rows.
6161 2006-08-23  Peter Dennis Bartok  <pbartok@novell.com> 
6163         * TextBoxBase.cs:
6164           - Throw ArgumentException if a negative value is passed to SelectionLength
6165           - Update the selection end if start is moved. end needs to be always
6166             after start. (Fixes #79095)
6167           - Track selection length; MS keeps the selection length even if start
6168             is changed; reset on all other operations affection selection
6170 2006-08-22  Jackson Harper  <jackson@ximian.com>
6172         * TreeView.cs: Make sure both scrollbars get displayed and sized
6173         correctly when the other bar is visible.
6174         - Use the original clip rectangle for checking if the area between
6175         the two scrollbars is visible, not the viewport adjusted clipping
6176         rectangle.
6178 2006-08-22  Jackson Harper  <jackson@ximian.com>
6180         * Binding.cs: We don't use IsBinding because it requires the
6181         control to be created, which really shouldn't be necessary just to
6182         set a property on the control.
6184 2006-08-21  Carlos Alberto Cortez <calberto.cortez@gmail.com>
6186         * ComboBox.cs: Some CB.ObjectCollection methods must throw
6187         ArgumentNullReferenceException when the argument is null.
6189 2006-08-21  Jackson Harper  <jackson@ximian.com>
6191         * Timer.cs: Track the thread that the timer is started in (NOT
6192         CREATED), this way messages for it will only be triggered on its
6193         queue.
6194         * XEventQueue.cs: Track the timers here, this makes timers per
6195         thread, like MS.
6196         * XplatUIX11.cs: The timers are moved to the XEventQueue.
6198 2006-08-19  Chris Toshok  <toshok@ximian.com>
6200         * XplatUIX11.cs: after further communication with pdb, we get the
6201         best of both worlds.  SetZOrder working for un-Mapped windows, and
6202         no X errors for un-mapped windows.
6204 2006-08-19  Chris Toshok  <toshok@ximian.com>
6206         * XplatUIX11.cs (SetZOrder): remove the if (!hwnd.mapped) check,
6207         as it was causing pdn toolbars to not have the correct stacking.
6209 2006-08-18  Mike Kestner  <mkestner@novell.com> 
6211         * ListView.cs : guard against negative ClientArea.Width in scrollbar
6212         calculation.  Not sure why control should ever be setting a negative
6213         width though.  Fixes #78931.
6215 2006-08-18  Carlos Alberto Cortez <calberto.cortez@gmail.com>
6217         * ComboBox.cs: Throw ArgumentNullException when adding/modifyng
6218         null items in ObjectCollection class.
6219         * ListBox.cs.: Likewise.
6221 2006-08-18  Atsushi Enomoto  <atsushi@ximian.com>
6223         * ThemeNice.cs, ThemeClearlooks.cs : remove RadioButton_DrawFocus()
6224           as the base method in ThemeWin32Classic should work fine.
6225           Fixed bug #78607.
6227 2006-08-18  Jackson Harper  <jackson@ximian.com>
6229         * Binding.cs: When validating if the value entered doesn't convert
6230         properly reset to the old value.
6231         * RadioButton.cs: Don't fire click when we get focus.
6233 2006-08-18  Jackson Harper  <jackson@ximian.com>
6235         * FileDialog.cs: Paint the selection on the directory combobox the
6236         same way as on MS. 
6238 2006-08-17  Jackson Harper  <jackson@ximian.com>
6240         * ErrorProvider.cs: Don't allow the error control to be selected.
6241         * Control.cs: Don't send the SetFocus messages, the control
6242         activation will do this, and if we do it blindly here validation
6243         does not work.
6245 2006-08-17  Jackson Harper  <jackson@ximian.com>
6247         * Control.cs:
6248         * ContainerControl.cs: Make validation events fire in the correct
6249         order.  TODO: For some reason the first validation event is not
6250         getting fired.
6252 2006-08-17  Mike Kestner  <mkestner@novell.com> 
6254         * ComboBox.cs : some null guarding for ComboListBox.Scroll.
6256 2006-08-17  Mike Kestner  <mkestner@novell.com> 
6258         * ComboBox.cs : implement scroll wheel support for popped-down
6259         state. Fixes #78945. 
6261 2006-08-17  Jackson Harper  <jackson@ximian.com>
6263         * TreeView.cs: Specify treeview actions (old patch that didn't get
6264         committed for some reason).
6265         - Don't let the mouse wheel scroll us too far.  Just want to make
6266         the bottom node visible, not scroll it all the ways to the top.
6268 2006-08-17  Jackson Harper  <jackson@ximian.com>
6270         * XplatUIX11.cs: Mouse wheel events go to the focused window.
6272 2006-08-17  Mike Kestner  <mkestner@novell.com> 
6274         * ComboBox.cs : don't do mouseover selection in simple mode.
6276 2006-08-16  Jackson Harper  <jackson@ximian.com>
6278         * Form.cs: Fire the closing events for all the mdi child windows
6279         when a window is closed.  If the cancel args are set to true, the
6280         main window still gets the event fired, but it doesn't not close.
6281         * MdiWindowManager.cs: Do this closing cleanup in a Closed
6282         handler, instead of when the button is clicked, so cancelling the
6283         close works correctly.
6284         * ComboBox.cs: Send the mouse down to the scrollbar.
6286 2006-08-16  Carlos Alberto Cortez <calberto.cortez@gmail.com>
6288         * ListBox.cs: When passing 'null' to SelectedItem,
6289         set SelectedIndex to -1, to unselect items. This is the
6290         observed behaviour in .Net.
6292 2006-08-16  Peter Dennis Bartok  <pbartok@novell.com> 
6294         * TextBoxBase.cs: Overriding HandleClick to get clicks in spite of
6295           MS flags saying there won't be any. (fixes #78800)
6296         * Control.cs (HandleClick): Made virtual
6298 2006-08-16  Atsushi Enomoto  <atsushi@ximian.com>
6300         * PageSetupDialog.cs : use Yard-Pound units only in en-GB and en-US
6301           cultures. Fixed bug #78399.
6303 2006-08-16  Jackson Harper  <jackson@ximian.com>
6305         * Form.cs: Use the MdiClients MdiChildren property to access
6306         MdiChildren instead of creating the array from the child controls.
6307         * MdiClient.cs: Maintain a separate array of the mdi children, so
6308         that insertion order is maintained when the Z-order is changed.
6310 2006-08-16  Mike Kestner  <mkestner@novell.com> 
6312         * ListView.cs : add an ItemComparer and default to it for sorting.
6313         Fixes #79076, but sorting needs a complete overhaul to be compat with
6314         MS.
6316 2006-08-15  Peter Dennis Bartok  <pbartok@novell.com> 
6318         * XplatUIX11.cs (SetZOrder): Fix debugging leftover (fixes #79080)
6320 2006-08-15  Peter Dennis Bartok  <pbartok@novell.com>
6322         * Hwnd.cs (Mapped): Properly traverse the tree
6324 2006-08-15  Chris Toshok  <toshok@ximian.com>
6326         * Binding.cs: fix PullData/SetPropertyValue.  We don't want to
6327         pass manager.Current.GetType() to ParseData.  It has to be the
6328         property type.  So, hold off doing the ParseData until we're in
6329         SetPropertyValue where we know the type.  This fixes the crash in
6330         #78821 but the textbox is still empty.
6332 2006-08-15  Chris Toshok  <toshok@ximian.com>
6334         * DataGrid.cs:
6335         - when we're scrolling, only call Edit() again if the
6336         current cell is still unobscured. Fixes bug #78927.
6337         - when handling mousedown on a cell, ensure the cell is visible
6338         before calling Edit.
6339         - remove the properties from DataGridRow, and remove the
6340         DataGridParentRow class altogether.
6341         
6343 2006-08-15  Peter Dennis Bartok  <pbartok@novell.com>
6345         * TextBoxBase.cs (set_Text): Don't use base.Text, instead just
6346           fire OnTextChanged by ourselves. There's no point calling base,
6347           we don't set the base value anywhere else. Fixes #78773.
6349 2006-08-15  Carlos Alberto Cortez <calberto.cortez@gmail.com>
6351         * ListBox.cs: Call CollectionChanged when modifying
6352         an item from Items indexer, to update the actual items
6353         in the list box.
6355 2006-08-15  Carlos Alberto Cortez <calberto.cortez@gmail.com>
6357         * PrintDialog.cs: Small fixes for focus and a pair of checks,
6358         to match .Net behaviour.
6360 2006-08-15  Peter Dennis Bartok  <pbartok@novell.com>
6362         * XplatUIX11.cs (SetZOrder): Handle raising toplevel windows
6364 2006-08-15  Peter Dennis Bartok  <pbartok@novell.com> 
6366         * Control.cs: Handle BringToFront for toplevel windows (Fixes #78737)
6368 2006-08-15  Peter Dennis Bartok  <pbartok@novell.com>
6370         * MessageBox.cs: Prevent potential NRE exception.
6371         * TextBoxBase.cs: AutoSize only applies if MultiLine is false. Fixes #78889
6373 2006-08-14  Peter Dennis Bartok  <pbartok@novell.com>
6375         * MessageBox.cs: Calculate the owner of a messagebox, also make
6376           it topmost. Fixes #78753
6378 2006-08-14  Chris Toshok  <toshok@ximian.com>
6380         * XplatUIX11.cs: A couple of fixes so that metacity will let us
6381         programmatically move windows.  first, set the PPosition hint as
6382         well as the USPosition hint.  Second include some code from pdb
6383         that sets the window type to NORMAL when we set the transient for
6384         hint.  This is because, in the absence of a window type, metacity
6385         thinks any window with TransientFor set is a dialog, and refuses
6386         to let us move it programmatically.  fascists.
6388 2006-08-14  Peter Dennis Bartok  <pbartok@novell.com>
6390         * XplatUIX11.cs: When setting normal hints, take into consideration
6391           an different hints previously set so we don't delete them (fixes #78866)
6393 2006-08-12  Chris Toshok  <toshok@ximian.com>
6395         * ToolBarButton.cs: make Layout return a boolean, if something to
6396         do with the button's layout changed.
6398         * ToolBar.cs:
6399         - add another parameter to Redraw, @force, which all existing
6400           calls set to true.
6401         - make the Layout function return a boolean which is true if the
6402           layout has actually changed.  Redraw now uses this (and @force)
6403           to determine when to invalidate.  At present the only place
6404           where @force can be false is the call from OnResize, when
6405           background_image == null.  So, resizing a toolbar when the
6406           layout doesn't change results in no drawing.
6408 2006-08-12  Chris Toshok  <toshok@ximian.com>
6410         * ThemeWin32Classic.cs: fix the bottom right corner painting.  had
6411         the VScrollBar and HScrollbar reversed.  oops.
6413         * DataGrid.cs: fix the logic that assigns sizes to the implicit
6414         scrollbars.  we were assigning them twice (once in
6415         Calc{Horiz,Vertical}Scrollbar, and once in CalcGridAreas),
6416         therefore causing two scrollbar resizes (and redraws?) to happen
6417         per grid resize.
6419 2006-08-12  Chris Toshok  <toshok@ximian.com>
6421         * ToolBarButton.cs: redraw the entire button if the theme tells us
6422         to.
6424         * Theme.cs: add ToolBarInvalidateEntireButton.
6426         * ThemeWin32Classic.cs: we don't need to redraw the entire toolbar
6427         buttons, just the border.
6429         * ThemeNice.cs: redraw the entire toolbar button since we need to
6430         draw the highlight image.
6432         * ThemeClearlooks.cs: the rounded corners of toolbar buttons mean
6433         we need to redraw the entire button (not just the border).
6435 2006-08-11  Peter Dennis Bartok  <pbartok@novell.com>
6437         * TextBoxBase.cs (CalculateScrollbars): Set the proper thumb size
6438           for vertical bars. Fixes the mismatches shown by #78513
6440 2006-08-11  Alexander Olk  <alex.olk@googlemail.com>
6442         * FileDialog.cs: If a saved/remembered path doesn't exist
6443           anymore, fall back to "Desktop".
6445 2006-08-11  Peter Dennis Bartok  <pbartok@novell.com>
6447         * Form.cs (CreateParams): Don't use Parent.Handle unless we have a
6448           parent. It's apparently legal to not have one
6449         * XplatUIX11.cs:
6450           - SetZOrder: Don't try to set Z-Order on an unmapped window
6451           - CreateWindow: 0,0 are legal coordinates for a window. don't move
6452             it unless the coordinates are negative
6454 2006-08-10  Mike Kestner  <mkestner@novell.com>
6456         * ListControl.cs: allow null for DataSource.  Clear DisplayMember
6457         when setting to null per msdn docs.  Fixes #78854.
6459 2006-08-10  Chris Toshok  <toshok@ximian.com>
6461         * Menu.cs, MainMenu.cs, MenuAPI.cs: get rid of most of the
6462         flickering by setting a clip rectangle on the Graphics when we
6463         need to redraw just a particular menuitem.  Also, rename "OnClick"
6464         to "OnMouseDown" to reflect what it actually is.
6465         
6466         * Form.cs: track the OnMouseDown change.
6468 2006-08-10  Peter Dennis Bartok  <pbartok@novell.com>
6470         * CommonDialog.cs: Properly inherit the CreateParams from the form
6471           and only change what we need. Fixes #78865
6473 2006-08-10  Chris Toshok  <toshok@ximian.com>
6475         * ToolBar.cs, ToolBarButton.cs: fix the redraw-on-highlight
6476         flickering in flat mode (and most of the flickering in general) by
6477         only invalidating the button border (and not the entire rectangle)
6478         when the state changes.  A couple of cases still flicker:
6479         ToggleButtons, and the dropdown arrow case when the user mouse
6480         ups.
6482 2006-08-10  Alexander Olk  <alex.olk@googlemail.com>
6484         * X11Keyboard.cs: Fixed handling of the Del key on the cursorblock
6485           for german keyboards. Numlock state shouldn't affect the behaviour
6486           of the Del key. Fixes bug #78291.
6488 2006-08-10  Chris Toshok  <toshok@ximian.com>
6490         * ListControl.cs: remove the items.Clear line from BindDataItems,
6491         as this is the first thing done by both subclasses in their
6492         SetItemsCore overrides.  Also, add a ItemChanged handler, and when
6493         passed -1, refresh the list.  This gets databinding working when
6494         the datasource is set on the list before the datasource is
6495         populated (as in wf-apps/ReportBuilder.)
6497         * ComboBox.cs: remove the argument to BindDataItems.  This call
6498         should really go away, and be initiated by the ListControl code.
6500         * ListBox.cs: same.
6502 2006-08-09  Peter Dennis Bartok  <pbartok@novell.com>
6504         * TextControl.cs (Document.ctor): Initialize caret so we don't crash
6505           if no data is in the document when the control is displayed
6507 2006-08-09  Peter Dennis Bartok  <pbartok@novell.com> 
6509         * TextBoxBase.cs: Don't try moving the caret if we don't have a window
6510           yes (fixes #78806)
6511         * TextControl.cs: 
6512           - PositionCaret: Allow positioning of caret but don't call methods 
6513             requiring a handle if the window isn't created yet
6514           - CharIndexToLineTag: Fix ending loop early error. Lines is 1 based
6515           - owner_HandleCreated: Don't position the caret, just update it's 
6516             location. User might have already set a different position
6518 2006-08-09  Peter Dennis Bartok  <pbartok@novell.com>
6520         * XplatUIWin32.cs: Don't use the desktop as basis for foster-parented
6521           windows. Screws up the returned coordinates for child windows. 
6522           Fixes #78825. I'm hoping this doesn't break something, since the
6523           code was explicitly put in 8 months ago, but no bug was attached.
6524           Menus still seem to work properly.
6526 2006-08-08  Chris Toshok  <toshok@ximian.com>
6528         * DataGrid.cs: make BeginInit/EndInit actually do what they're
6529         supposed to do - delay data binding until the EndInit call.  Also,
6530         make the table style collection's CollectionChangeAction.Refresh
6531         work properly.
6533         * GridTableStylesCollection.cs: raise a CollectionChangeEvent
6534         (with action = Refresh) when a consituent table's MappingName is
6535         changed.
6537 2006-08-08  Chris Toshok  <toshok@ximian.com>
6539         * ToolBarButton.cs: in set_Text, call Parent.Redraw, not
6540         Invalidate, since changing the text can change the size of the all
6541         toolbar buttons.
6543 2006-08-08  Peter Dennis Bartok  <pbartok@novell.com>
6545         * Form.cs (AddOwnedForm): Still need to add the form to our listif
6546           we don't have it yet
6548 2006-08-08  Chris Toshok  <toshok@ximian.com>
6550         * PrintControllerWithStatusDialog.cs: don't .Close() the status
6551         dialog, as this causes X errors later on, since we actually
6552         destroy the window.  Instead, .Hide() it.
6554 2006-08-08  Peter Dennis Bartok  <pbartok@novell.com>
6556         * ComboBox.cs: Added focus reflection for popup window
6557         * XplatUIX11.cs: 
6558           - Removed transient setting for non-app windows for now, not sure it
6559             was needed
6560           - Fixed logic checking if we have captions when deciding 
6561             override_redirect, WS_CAPTION is two bits and a 0 check was not
6562             sufficient
6563           - Removed the WINDOW_TYPE stuff, it was unneeded and making things
6564             complicated
6565         * Form.cs: 
6566           - AddOwnedForm: Don't just add the form to the list, call the property
6567             to ensure the driver is informed about the ownership as well
6568           - CreateHandle: Set the TopMost status in the driver if we have an owner
6569         * XplatUI.cs: Fixed debug statement
6571 2006-08-08  Jonathan Pobst <monkey@jpobst.com>
6572         * ButtonRenderer.cs, CheckBoxRenderer.cs, ComboBoxRenderer.cs
6573           GroupBoxRenderer.cs, ProgressBarRenderer.cs, RadioButtonRenderer.cs,
6574           ScrollBarRenderer.cs, TabRenderer.cs, TextBoxRenderer.cs, 
6575           TrackBarRenderer.cs: Make constructor private.
6576         * ProfessionalColors.cs, ProfessionalColorTable.cs: Fix misnamed properties.
6577         * ProfessionalColorTable.cs: Make properties virtual.
6579 2006-08-06  Duncan Mak  <duncan@novell.com>
6581         * NumericUpDown.cs (Value): Don't call OnValueChanged if the value
6582         is not changing.
6584 2006-08-04  Jonathan Pobst <monkey@jpobst.com>
6585         * ButtonRenderer.cs, CheckBoxRenderer.cs, ComboBoxRenderer.cs
6586           GroupBoxRenderer.cs, ProfessionalColors.cs, ProfessionalColorTable.cs,
6587           ProgressBarRenderer.cs, RadioButtonRenderer.cs, ScrollBarRenderer.cs,
6588           TabRenderer.cs, TextBoxRenderer.cs, TextRenderer.cs, TrackBarRenderer.cs:
6589           Initial import of new 2.0 classes.
6591 2006-08-04  Jonathan Pobst <monkey@jpobst.com>
6592         * Application.cs: Add 2.0 VisualStyles properties.
6594 2006-08-04  Jonathan Pobst <monkey@jpobst.com>
6595         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs, XplatUIWin32.cs,
6596           XplatUIX11.cs: Create property to allow access to existing private
6597           variable "themes_enabled"
6599 2006-08-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6601         * ImageListStreamer.cs: generate the MemoryStreams with the exact BMP
6602         file size, as otherwise our class libraries fail using windows. Fixes
6603         bug #78759.
6605 2006-08-04  Jackson Harper  <jackson@ximian.com>
6607         * Form.cs:
6608         * XplatUIX11.cs: Move the toolwindow window manager creation into
6609         the X11 driver, this way on win32 we can let windows create/handle
6610         the toolwindows.
6612 2006-08-04  Carlos Alberto Cortez <calberto.cortez@gmail.com>
6614         * PrintDialog.cs: Remove some redundant checks, add some others,
6615         clean some code, and move the focus to the text boxes when the
6616         values are incorrect.
6618 2006-08-04  Alexander Olk  <alex.olk@googlemail.com>
6620         * FontDialog.cs: Remove Form.MinimumSize. It's not needed.
6622 2006-08-03  Alexander Olk  <alex.olk@googlemail.com>
6624         * NumericUpDown.cs: Setting the Minimum and Maximum is now
6625           handled correctly. Fixes bug #79001.
6627 2006-08-03  Carlos Alberto Cortez <calberto.cortez@gmail.com>
6629         * PrintDialog.cs: The "Copies" numeric up down must have
6630         set the Minimum property to 1; only if the value is bigger
6631         than 1, activate "Collate" check box. This is the behaviour of .Net.
6632         Also modify the Document elements only if it is not null.
6634 2006-08-03  Jackson Harper  <jackson@ximian.com>
6636         * TreeNodeCollection.cs: Fix copyto to use the correct nodes
6637         length. (We have a larger array then actual node count).
6638                 
6639 2006-08-03  Jackson Harper  <jackson@ximian.com>
6641         * ComboBox.cs: Don't show selection by default.
6642         - The SelectAll isn't needed here, since the focus code should do
6643         that
6644         - DDL style lists to manual selection drawing, so when they
6645         get/lose focus they have to invalidate.
6647 2006-08-03  Peter Dennis Bartok  <pbartok@novell.com>
6649         * TextBoxBase.cs: Don't always show all selections by default.
6651 2006-08-03  Jonathan Pobst  <monkey@jpobst.com>
6652         * ControlUpdateMode.cs, DataSourceUpdateMode.cs,
6653           HelpNavigator.cs, WebBrowserEncryptionLevel.cs:
6654           Fixed various typos.
6656 2006-08-03  Alexander Olk  <alex.olk@googlemail.com>
6658         * Control.cs: Removing the controls in a ControlCollection with
6659           Clear now hides the controls as expected. Fixes bug #78804. 
6661 2006-08-03  Jackson Harper  <jackson@ximian.com>
6663         * Control.cs: Revert previous focus patch, it breaks reflector.
6665 2006-08-03  Jackson Harper  <jackson@ximian.com>
6667         * ComboBox.cs: Cleanup selection and focus with the combobox.
6668         This also eliminates some duplicated keyboard code, since now
6669         everything is handled by the main class.
6670         - Make list selection work on mouse up instead of down, to match
6671         MS.
6673 2006-08-02  Jackson Harper  <jackson@ximian.com>
6675         * Control.cs: Setting focus needs to go through the whole
6676         selection mechanism.
6678 2006-08-02  Chris Toshok  <toshok@ximian.com>
6680         * PrintPreviewDialog.cs: change MinimumSize to use
6681         base.MinimumSize so it works.
6683 2006-08-02  Peter Dennis Bartok  <pbartok@novell.com>
6685         * TextControl.cs:
6686           - UpdateCaret: Added sanity check in case caret isn't defined yet
6687           - Line.Delete: Now updating selection and caret markers if we're
6688             transfering a node (Properly fixes #78323)
6689           - SetSelectionEnd: Added sanity check
6690         * TextBoxBase.cs: Removed broken attempt to fix #78323
6692 2006-08-01  Chris Toshok  <toshok@ximian.com>
6694         * PrintPreviewDialog.cs: the CancelEventArgs stuff surrounding the
6695         Close() call is handled in Form, not here.
6697 2006-08-01  Chris Toshok  <toshok@ximian.com>
6699         * Theme.cs, ThemeWin32Classic.cs: fix the PrintPreviewControl
6700         layout/rendering.
6702         * PrintPreviewDialog.cs: add scrollbars, and add an image cache
6703         for sizes < 100% zoom.  The code now aggressively attempts to keep
6704         from calling document.Print (), and tries not to use the scaling
6705         g.DrawImage whenever possible (it still does if you scale to >
6706         100%, since usually that involves huge images).
6708         * PrintPreviewControl.cs: hook up the close button.
6710 2006-08-01  Jonathan Pobst  <monkey@jpobst.com>
6711         * ColumnClickEventHandler.cs, DrawItemEventHandler.cs,
6712           ItemChangedEventHandler.cs, ItemCheckEventHandler.cs,
6713           ItemDragEventHandler.cs, LabelEditEventHandler.cs,
6714           LinkClickedEventHandler.cs, LinkLabelLinkClickedEventHandler.cs,
6715           MeasureItemEventHandler.cs, MethodInvoker.cs, PaintEventHandler.cs,
6716           PropertyTabChangedEventHandler.cs, PropertyValueChangedEventHandler.cs,
6717           SelectedGridItemChangedEventHandler.cs, ToolBarButtonClickEventHandler.cs:
6718           Removed [Serializable] for 2.0 Event Handlers.
6720 2006-07-31  Jackson Harper  <jackson@ximian.com>
6722         * TextBoxBase.cs: Make ShowSelection invalidate when changed.
6723         * TextControl.cs: Uncomment out the body of this method.
6725 2006-07-31  Alexander Olk  <alex.olk@googlemail.com>
6727         * XplatUIX11.cs: Use the correct cursor shapes for arrow and default
6728           standard cursors.
6730 2006-07-31  Peter Dennis Bartok  <pbartok@novell.com>
6732         * TextBoxBase.cs: Added internal property ShowSelection to allow controls
6733           that embed TextBox and need selections visible even if textbox is not
6734           focused to enforce that behaviour.
6735         * TextControl.cs (Draw): Use ShowSelection instead of has_focus to determine
6736           selection drawing
6738 2006-07-31  Peter Dennis Bartok  <pbartok@novell.com>
6740         * TextControl.cs:
6741           - Added new SetSelectionStart/SetSelectionEnd overloads
6742           - Fixed viewport width assignment to be accurate
6743           - Adjusted alignment line shift calculations to allow cursor on right
6744             aligned lines to be always visible at the right border (like MS)
6745         * TextBoxBase.cs:
6746           - SetBoundsCore: Re-adjust caret location after resize (Fixes #78323)
6747           - TextBoxBase_SizeChanged: recalculating canvas on size changes
6748           - CalculateScrollBars: Use ViewPort size instead of window size, to
6749             properly consider space occupied by the border and scrollbars 
6750             (Fixes #78661)
6751           - hscroll_ValueChanged, vscroll_ValueChanged: Fixed scroll 
6752             calculations; no longer leaves artifacts
6753           - CaretMoved: Adjusted window scrolling to match MS and fixed several
6754             calculation bugs (Still missing right/center align calculations)
6756 2006-07-31  Peter Dennis Bartok  <pbartok@novell.com> 
6758         * XPlatUIWin32.cs: Made ScrollRectEx a bit more flexible, and removed
6759           use of both scroll rect and clip rect, as they do the same.
6761 2006-07-31  Peter Dennis Bartok  <pbartok@novell.com>
6763         * Control.cs (WM_CHAR WndProc): 2.0 profile allows changing the key 
6764           in the event handler (fixes #78912)
6766 2006-07-31  Chris Toshok  <toshok@ximian.com>
6768         * ThemeWin32Classic.cs: use grid.RowsCount here instead of
6769         grid.ListManager.Count, since grid.ListManager might be null.
6770         This of course begs the question "why are we drawing rows for a
6771         grid with no list manager (and therefor no rows)?"  Fixes the
6772         crash in bug #78929.
6774 2006-07-31  Chris Toshok  <toshok@ximian.com>
6776         * RelatedPropertyManager.cs: Don't always chain up to the parent
6777         ctor.  instead, call SetDataSource if the parent's position is !=
6778         -1.  Fixes the crash in #78822.
6780 2006-07-31  Chris Toshok  <toshok@ximian.com>
6782         * DataGrid.cs (get_ListManager): use field instead of property
6783         accessors for datasource and datamember.
6784         (RowsCount): make internal again.
6785         (OnMouseDown): end edits before resizing columns/rows.
6786         (OnMouseUp): restart edits after resizing columns/rows.
6788 2006-07-30  Peter Dennis Bartok  <pbartok@novell.com>
6790         * XplatUIX11.cs: Default cursor cannot be 0 or it will not get set.
6791           This fixes the situation where the last set cursor is displayed
6792           whenever the mouse is over scrollbars.
6794 2006-07-30  Carlos Alberto Cortez <calberto.cortez@gmail.com>
6796         * PrintDialog.cs: Fix the behaviour of PrinterSettings and
6797         Document properties, as well as initial values.
6799 2006-07-29  Peter Dennis Bartok  <pbartok@novell.com>
6801         * XplatUIWin32.cs (SetBorderStyle): Setting both border
6802           and ClientEdge results in a 3-pixel border, which is
6803           wrong.
6805 2006-07-28  Jackson Harper  <jackson@ximian.com>
6807         * TreeNodeCollection.cs: Fix the clear method.
6808         - Fix the Shrink also
6810 2006-07-27  Jackson Harper  <jackson@ximian.com>
6812         * TreeView.cs: Make sure the visible order is computed when we
6813         attempt to size the scrollbars (for trees that mess with the
6814         scrolling when they shouldn't.
6815         - Make sure to give the scrollbars valid values.
6817 2006-07-26  Peter Dennis Bartok  <pbartok@novell.com> 
6819         * XplatUIX11.cs: Move motion compression code to where it
6820           has less performance impact
6822 2006-07-26  Jackson Harper  <jackson@ximian.com>
6824         * UpDownBase.cs: When the control is selected make the child
6825         controls non selectable, so that a click on them won't do a
6826         focus/unfocus cycle.
6827         - Don't give focus to the text box when the spinner is selected.
6828         * XEventQueue.cs: Peek on both the x11 queue and the lock queue.
6830 2006-07-26  Chris Toshok  <toshok@ximian.com>
6832         * ThemeWin32Classic.cs: add print preview rendering.  I'm not
6833         satisfied with this solution.  If the bitmaps are small, we should
6834         just cache them in the PrintPreviewDialog and draw them here.
6835         Also, the layout is broken for the 2-up and 3-up cases.
6837         * Theme.cs: add PrintPReviewControlPaint.
6839         * PrintPreviewDialog.cs: first pass implementation.
6841         * PrintPreviewControl.cs: first pass implementation.  No
6842         scrollbars yet.
6844         * PrintDialog.cs: only validate fields if that particular portion
6845         of the UI is enabled.  Also, set the document's controller to a
6846         PrintControllerWithStatusDialog wrapping the document's print
6847         controller.
6849         * PrintControllerWithStatusDialog.cs: if we're printing to a file,
6850         bring up a SaveFileDialog (i hope we don't want to match the
6851         behavior of the crappy windows file entry) and set the
6852         PrinterSettings.PrintFileName accordingly.
6854 2006-07-26  Jackson Harper  <jackson@ximian.com>
6856         * ContainerControl.cs: Add a field that disables auto selecting
6857         the next control in a container when the container is activated.
6858         * UpDownBase.cs: Don't select the text box when the up down is
6859         selected.
6861 2006-07-26  Peter Dennis Bartok  <pbartok@novell.com> 
6863         * XEventQueue.cs: Added methods for peeking (used for compression
6864           of successive events)
6865         * XplatUIX11.cs (GetMessage): We're now compressing consecutive
6866           mouse move events (fixes #78732)
6868 2006-07-25  Jackson Harper  <jackson@ximian.com>
6870         * UpDownBase.cs: Use an internal class for the textbox so that we
6871         can control focus.  the updown control should always have focus,
6872         if either the text area or the buttons are clicked.
6873         - Send the key messages to the textbox, since it never actually
6874         has focus
6875         - Activate and decativate the textbox caret.
6877 2006-07-24  Jackson Harper  <jackson@ximian.com>
6879         * Control.cs: Use the directed select when selecting a control,
6880         this way the container controls override will get called and the
6881         whole ActiveControl chain will get triggered.  TODO: probably need
6882         to make sure this gets done everywhere instead of the old
6883         Select(Control).
6884         * ContainerControl.cs: Implement the directed Select method to
6885         find and activate the correct child control.    
6886         
6887 2006-07-22  Mike Kestner  <mkestner@novell.com>
6889         * Form.cs: use Control.MousePosition for NCLBUTTONDOWN in the menu
6890         menu handling code so that clicks without a grab work too.
6891         [Fixes #78914]
6893 2006-07-22  Alexander Olk  <alex.olk@googlemail.com>
6895         * FileDialog.cs: Enable the BackButton when dirstack has one element.
6896           Added some small optimizations.
6898 2006-07-21  Matt Hargett  <matt@use.net>
6900         * Control.cs: Implemented 2.0 MinimumSize/MaximumSize properties
6902 2006-07-21  Peter Dennis Bartok  <pbartok@novell.com> 
6904         * Control.cs (GetNextControl): Fixes to make all of Jackson's unit 
6905           tests pass and match MS in some strange border cases.
6907 2006-07-21  Chris Toshok  <toshok@ximian.com>
6909         * ThemeWin32Classic.cs: handle drawing of the relation links and
6910         parent row buttons.
6912         * Theme.cs: change args to DataGridPaintParentRow.
6914         * DataGrid.cs: Don't use controls for the relation links and
6915         parent buttons, so we have to handle all their interactions in
6916         MouseMove, MouseDown, MouseUp, etc.  Also, store a lot more stuff
6917         when we're navigating through child tables, so we can reinstate
6918         selection, expanded state, current cell, etc.
6920 2006-07-20  Chris Toshok  <toshok@ximian.com>
6922         * ToolBar.cs: When we redraw a button, for whatever reason,
6923         there's no reason to redraw the entire toolbar.  Also, don't call
6924         Control.Refresh from within Redraw, as it's much heavier than
6925         Invalidate (which is really what we want).
6927 2006-07-20  Chris Toshok  <toshok@ximian.com>
6929         * DataGrid.cs, CurrencyManager.cs, DataGridColumnStyle.cs,
6930         DataGridTextBoxColumn.cs, DataGridTextBox.cs,
6931         ThemeWin32Classic.cs, ListControl.cs: After staring at stack
6932         traces from within a debug IBindingList datasource
6933         (in mono/winforms/datagrid) for *days*, I've finally gotten things
6934         to work in a similar fashion.
6936 2006-07-20  Carlos Alberto Cortez <calberto.cortez@gmail.com>
6938         * ListBox.cs: Don't call Sort () when setting 
6939         the Sorted property to false (avoid an unnecessary sort).
6941 2006-07-20  Carlos Alberto Cortez <calberto.cortez@gmail.com>
6943         * ListControl.cs: DataSource should throw an ArgumentException
6944         instead of a normal exception when the argument is not of the 
6945         correct type.
6947 2006-07-20  Mike Kestner  <mkestner@novell.com>
6949         * Control.cs: add InternalPreProcessMessage to allow us to steal
6950         key events before MWF gets its paws on them.  Adapted from a
6951         suggestion by eno.
6952         * ToolBar.cs: add GotLostFocus handing for flat toolbars, with 
6953         up/down/left/right navigation. Override the new internal control
6954         method to steal the events since they never make it to WndProc.
6955         * ToolBarButton.cs: don't worry about pushed when setting hilight
6956         since the drawing code prefers pushed to hilight. Invalidate on 
6957         Hilight changes. Fixes #78547 and #78525.
6959 2006-07-20  Peter Dennis Bartok  <pbartok@novell.com> 
6961         * ScrollableControl.cs: Consider AutoScrollMinSize when calculating
6962           the canvas size. Fixes #78868
6964 2006-07-20  Peter Dennis Bartok  <pbartok@novell.com>
6966         * Splitter.cs: Track requested split position until first layout
6967           is performed. Fixes #78871
6969 2006-07-20  Peter Dennis Bartok  <pbartok@novell.com> 
6971         * Application.cs: Removed code that forces 1.x for the version
6972           number if the version started with 0. Not sure why that code was
6973           there and I couldn't find any bugs that indicated we needed it.
6974           Fixes #78869
6976 2006-07-20  Alexander Olk  <alex.olk@googlemail.com>
6978         * ThemeWin32Classic.cs: Don't throw a NotImplementedException in
6979           ResetDefaults(), just write some output to the console until it's
6980           implemented. Fixes bug #78907 for now. Eliminated two warnings.
6982 2006-07-19  Jonathan Chambers  <joncham@gmail.com>
6984         * PropertyGridView.cs: set StartPosition of drop down forms
6985         so they appear in correct initial spot.  Fixes #78190.
6987 2006-07-19  Mike Kestner  <mkestner@novell.com>
6989         * ThemeWin32Classic.cs: use parent background color when drawing
6990         flat toolbars.  Restructure the conditionals to make sure non-flat
6991         non-Divider toolbars are filled too.  Fixes #78837.
6993 2006-07-19  Mike Kestner  <mkestner@novell.com>
6995         * ListBox.cs: Sort on collection changes even if the handle
6996         isn't created yet.  Fixes #78813.
6998 2006-07-18  Carlos Alberto Cortez <calberto.cortez@gmail.com>
7000         * ListControl.cs: DisplayMember should never be null,
7001         and now we assign String.Empty when null is passed to it (this
7002         is the .Net way).
7004 2006-07-17  Mike Kestner  <mkestner@novell.com>
7006         * ListViewItem.cs: restructure Font and subitem Font handling 
7007         to hold a specific font and refer back to owner on null.
7008         Fixes #78761.
7010 2006-07-17  Mike Kestner  <mkestner@novell.com>
7012         * ToolBar.cs: bandaid for side-effect of previous patch which was
7013         discarding explicit heights for non-AutoSize toolbars.  Need to
7014         extend my format tester to deal with AutoSize=false. Fixes #78864.
7016 2006-07-15  Jackson Harper  <jackson@ximian.com>
7018         * LabelEditTextBox.cs:
7019         * TreeView.cs: Use a new LabelEdit class for node editing, this
7020         class automatically 'closes' itself when it gets the enter key or
7021         loses focus.
7022         - Use the client rectangle when setting the trees scrollbars, so
7023         border style is taken into account.
7024         
7025 2006-07-14  Jackson Harper  <jackson@ximian.com>
7027         * TreeNode.cs:
7028         * TreeView.cs: Make the editing work similar to MSs, firing the
7029         events correctly and ending edits correctly.
7031 2006-07-14  Mike Kestner  <mkestner@novell.com>
7033         * ToolBarButton.cs:
7034         * ToolBar.cs: layout restructuring and redraw enhancements to support
7035         formatting changes gracefully, like setting TextAlign, ImageList, 
7036         ButtonSize, and Appearance.  Handles explicit button sizing quirks
7037         of the MS controls.  Things like flat toolbars ignoring button size
7038         but becoming constant sized at the largest button's size.  Normal
7039         toolbars with an image set cannot be shrunk smaller than the image,
7040         but text can be clipped/ignored.
7041         * ThemeWin32Classic.cs: don't draw text if text_rect height or width
7042         is zero.  Seems like DrawString should be smart enough to not put
7043         anything on screen though. Also trim labels and ellipsize at the char
7044         boundary, not word.
7045         Fixes #78711 and #78483.
7047 2006-07-14  Alexander Olk  <alex.olk@googlemail.com>
7049         * FolderBrowserDialog.cs: Disable "New Folder" button and
7050           "New Folder" contextmenu menuitem if a folder like "My Computer"
7051           is selected.
7053 2006-07-14  Alexander Olk  <alex.olk@googlemail.com>
7055         * FileDialog.cs: Don't create a new folder in "MyComputer" folder.
7056         * FolderBrowserDialog.cs:
7057           - Use MWFConfig to store and read size and position settings
7058           - Added code to create a new folder (button or context menu).
7059             Use TreeView labeledit to change the name of the new folder.
7061 2006-07-14  Jackson Harper  <jackson@ximian.com>
7063         * TreeView.cs: Raise the OnAfterLabelEdit event correctly.  Also,
7064         when the tree is scrolled we end editing.
7066 2006-07-14  Alexander Olk  <alex.olk@googlemail.com>
7068         * ThemeWin32Classic.cs: Fixed position of CPDrawScrollButton Up and
7069           Down arrows
7071 2006-07-14  Jonathan Pobst  <monkey@ipobst.com> 
7073         WebBrowserProgressChangedEventHandler.cs, BindingCompleteEventArgs.cs,
7074         BindingCompleteEventHandler.cs, BindingManagerDataErrorEventArgs.cs,
7075         BindingManagerDataErrorEventHandler.cs, CacheVirtualItemsEventArgs.cs,
7076         CacheVirtualItemsEventHandler.cs, ColumnReorderedEventArgs.cs,
7077         ColumnReorderedEventHandler.cs, ColumnWidthChangedEventArgs.cs,
7078         ColumnWidthChangedEventHandler.cs, ColumnWidthChangingEventArgs.cs,
7079         ColumnWidthChangingEventHandler.cs, FormClosedEventArgs.cs,
7080         FormClosedEventHandler.cs, FormClosingEventArgs.cs,
7081         FormClosingEventHandler.cs, ItemCheckedEventArgs.cs,
7082         ItemCheckedEventHandler.cs, ListControlConvertEventArgs.cs,
7083         ListControlConvertEventHandler.cs, ListViewItemMouseHoverEventArgs.cs,
7084         ListViewItemMouseHoverEventHandler.cs, ListViewItemSelectionChangedEventArgs.cs,
7085         ListViewItemSelectionChangedEventHandler.cs,
7086         ListViewVirtualItemsSelectionRangeChangedEventArgs.cs,
7087         ListViewVirtualItemsSelectionRangeChangedEventHandler.cs,
7088         MaskInputRejectedEventArgs.cs, MaskInputRejectedEventHandler.cs,
7089         PopupEventArgs.cs, PopupEventHandler.cs, PreviewKeyDownEventArgs.cs,
7090         PreviewKeyDownEventHandler.cs, RetrieveVirtualItemEventArgs.cs,
7091         RetrieveVirtualItemEventHandler.cs, SearchForVirtualItemEventArgs.cs,
7092         SearchForVirtualItemEventHandler.cs, SplitterCancelEventArgs.cs,
7093         SplitterCancelEventHandler.cs, TabControlCancelEventArgs.cs, 
7094         TabControlCancelEventHandler.cs, TabControlEventArgs.cs, 
7095         TabControlEventHandler.cs, TableLayoutCellPaintEventArgs.cs,
7096         TableLayoutCellPaintEventHandler.cs, ToolStripDropDownClosedEventArgs.cs,
7097         ToolStripDropDownClosedEventHandler.cs, ToolStripDropDownClosingEventArgs.cs,
7098         ToolStripDropDownClosingEventHandler.cs, TreeNodeMouseClickEventArgs.cs,
7099         TreeNodeMouseClickEventHandler.cs, TreeNodeMouseHoverEventArgs.cs,
7100         TreeNodeMouseHoverEventHandler.cs, TypeValidationEventArgs.cs,
7101         TypeValidationEventHandler.cs, WebBrowserDocumentCompletedEventArgs.cs,
7102         WebBrowserDocumentCompletedEventHandler.cs, WebBrowserNavigatedEventArgs.cs,
7103         WebBrowserNavigatedEventHandler.cs, WebBrowserNavigatingEventArgs.cs,
7104         WebBrowserNavigatingEventHandler.cs, 
7105         WebBrowserProgressChangedEventArgs.cs: New 2.0 Event Handlers
7107 2006-07-14  Jonathan Pobst  <monkey@ipobst.com>
7109         MergeAction.cs, PowerLineStatus.cs, PowerState.cs, PreProcessControlState.cs,
7110         RichTextBoxLanguageOptions.cs, ScreenOrientation.cs, ScrollOrientation.cs,
7111         SearchDirectionHint.cs, SystemParameter.cs, TabControlAction.cs,
7112         TableLayoutPanelCellBorderStyle.cs, TextDataFormat.cs, TextImageRelation.cs,
7113         ToolStripDropDownCloseReason.cs, ToolStripDropDownDirection.cs,
7114         ToolStripGripDisplayStyle.cs, ToolStripGripStyle.cs,
7115         ToolStripItemAlignment.cs, ToolStripItemDisplayStyle.cs,
7116         ToolStripItemImageScaling.cs, ToolStripItemOverflow.cs,
7117         ToolStripItemPlacement.cs, ToolStripLayoutStyle.cs,
7118         ToolStripManagerRenderMode.cs, ToolStripRenderMode.cs,
7119         ToolStripStatusLabelBorderSides.cs, ToolStripTextDirection.cs,
7120         ToolTipIcon.cs, TreeNodeStates.cs, TreeViewDrawMode.cs,
7121         TreeViewHitTestLocations.cs, UnhandledExceptionMode.cs, ValidationConstraints.cs,
7122         WebBrowserEncryptionLevel.cs, WebBrowserReadyState.cs, WebBrowserRefreshOption.cs,
7123         ArrowDirection.cs, AutoCompleteMode.cs, AutoCompleteSource.cs, AutoSizeMode.cs,
7124         AutoValidate.cs, BatteryChargeStatus.cs, BindingCompleteContext.cs,
7125         BindingCompleteState.cs, CloseReason.cs, ColumnHeaderAutoResizeStyle.cs,
7126         ControlUpdateMode.cs, DataSourceUpdateMode.cs, DockingBehavior.cs,
7127         FixedPanel.cs, FlowDirection.cs, GetChildAtPointSkip.cs,
7128         HtmlElementInsertionOrientation.cs, InsertKeyMode.cs, ListViewHitTestLocations.cs,
7129         ListViewItemStates.cs, MaskFormat.cs: Added
7131 2006-07-13  Jonathan Chambers  <joncham@gmail.com>
7133         * PropertyGridView.cs: Fix keyboard navigation of drop down.
7134         Patch from eno for bug 78558.
7135         
7136 2006-07-13  Jackson Harper  <jackson@ximian.com>
7138         * TreeView.cs: When an edit is finished make sure that the
7139         selected node is visible.
7140         - When setting the top/bottom use the scrollbars is_visible, so
7141         everything will be set correctly even if the tree isn't visible
7142         yet.
7144 2006-07-13  Jackson Harper  <jackson@ximian.com>
7146         * ComboBox.cs: Revert the item->index part of my previous patch.
7147         * TreeView.cs: Use LostFocus instead of Leave for detecting when
7148         the edit box has lost focus (duh).
7149         - Just make the edit box not visible when we get return, that will
7150         take the focus, which will call EndEdit
7151         * TreeNode.cs When we start editing, notify the treeview.
7153 2006-07-12  Jackson Harper  <jackson@ximian.com>
7155         * ComboBox.cs: Clear out old items before setting the item list.
7156         This prevents databound controls from having their items added
7157         twice.
7158         - Switch the combobox to use indices whereever possible instead of
7159         using Item's.  This allows usto navigate through lists that have
7160         more then one item with the same string value (ie a, b, b, a).
7161         - Scroll the listboxes scrollbar when a non visible item is
7162         highlighted
7163         - Allow keypress to cycle through all the possible values. For
7164         example if you have b1, b2, b3 and hold down the B key all the
7165         values will be cycled through.
7166         
7167 2006-07-12  Jackson Harper  <jackson@ximian.com>
7169         * TextBoxBase.cs:
7170         * ListView.cs: Don't need to override SETFOCUS anymore, we can do
7171         this using the internal methods.
7172         * Control.cs: Add OnGotFocusInternal.  A new method that allows
7173         controls to "override" OnGotFocus and change focus behavior if
7174         needed.
7175         - Same thing for LostFocus
7176         * ComboBox.cs: Pass off focus to the text control properly.
7178 2006-07-12  Alexander Olk  <alex.olk@googlemail.com>
7180         * FileDialog.cs: Added GetFoldersOnly to MWFVFS
7181         * FolderBrowserDialog.cs: Almost a complete rewrite.
7182           - Better support for Environment.Specialfolders
7183           - Added support for MWFVFS
7184           - Made setting SelectedPath work
7186 2006-07-12  Jackson Harper  <jackson@ximian.com>
7188         * Control.cs: Optimze getting all the controls.
7190 2006-07-11  Jackson Harper  <jackson@ximian.com>
7192         * ContainerControl.cs: Override SETFOCUS in the container control,
7193         so that it is not selected on mouse click.
7195 2006-07-11  Peter Dennis Bartok  <pbartok@novell.com> 
7197         * LinkLabel.cs: Hack to handle Shift-Tabbing to the linklabel. 
7198           Hopefully we will have a better way once all of focus is complete.
7200 2006-07-11  Peter Dennis Bartok  <pbartok@novell.com>
7202         * ThemeWin32Classic.cs: Commented out some debug code and fixed
7203           a compile error with csc.
7205 2006-07-11  Jackson Harper  <jackson@ximian.com>
7207         * Control.cs: When hiding a control only select the next control
7208         if the current control was focused.
7209         - Don't handle enter/leave when setting/killing focus, this is
7210         done by the container control.
7211         - Remove is_selected, it's not needed anymore.
7212         - Add utility methods for selecting a child control, and for
7213         firing the Enter/Leave events.
7214         * ContainerControl.cs: When a control is activated fire the
7215         enter/leave events.
7216         - Don't wrap when processing the tab key, so that focus can be
7217         moved outside of the container.
7218         - Use the correct active control
7220 2006-07-11  Jackson Harper  <jackson@ximian.com>
7222         * ComboBox.cs: Remove some debug code that was blinding me.
7223         * UpDownBase.cs: These controls actually aren't implicit, they are
7224         visible to the user.
7226 2006-07-10  Chris Toshok  <toshok@ximian.com>
7228         * DataGrid.cs: move back to the is_adding boolean field.  god i
7229         hate this is_editing/is_adding/is_changing stuff.
7231 2006-07-10  Chris Toshok  <toshok@ximian.com>
7233         * DataGridTableStyle.cs: just check if the property type is bool.
7234         if it is, use DataGridBoolColumn, otherwise DataGridTextBoxColumn.
7235         Don't use CanRenderType.
7237         * DataGridTextBoxColumn.cs: set the value to DBNull.Value, not "",
7238         if our text == NullText.  Remove CanRenderType.
7240         * DataGridBoolColumn.cs: nuke CanRenderType.
7242         * DataGrid.cs: reenable some code to end the current edit inside
7243         of set_CurrentCell.  This fixes the other 1.1.16 regression.
7244         Also, remove rowhdrs_maxheight and just use rowhdrs_area.Height.
7245         Also, remove the visible_row_count arg from CalcRowHeaders, since
7246         we don't need to worry about the actual height of the area.
7248 2006-07-10  Chris Toshok  <toshok@ximian.com>
7250         * DataGridTextBoxColumn.cs: if when we Commit we're in navigate
7251         mode, just return.
7253         * DataGridTextBox.cs: change "isedit" to "isnavigating" to reflect
7254         the real sense of the IsInEditOrNavigateMode property (true =
7255         navigate, false = edit).  Also, update OnKeyPress to reflect this.
7257         * DataGridTableStyle.cs (CreateColumnsForTable): even if the
7258         column style exists, we still need to set its property descriptor
7259         to match up with our list manager.
7261 2006-07-10  Chris Toshok  <toshok@ximian.com>
7263         * ThemeWin32Classic.cs: implement the new row/header painting
7264         approach.  The parent row painting will likely go away and
7265         replaced with label controls, but the rest seems to work ok (and
7266         efficiently).
7268         * Theme.cs: change the way we draw datagrid rows.  we don't draw
7269         the row headers as a block now.  Instead we draw them in the
7270         normal draw-row loop.  Add some calls for drawing parent rows and
7271         relation rows.
7273         * DataGridTableStyle.cs: add tons of ArgumentExceptions if this is
7274         a default table style.  Set the defaults from ThemeEngine.Current,
7275         not SystemColors.  Fix lots of misc issues with property setters.
7277         * DataGrid.cs: move loads of style information out of this class
7278         as it's being duplicated with DataGridTableStyle.  keep track of a
7279         special DataGridTableStyle for the properties we used to mirror
7280         here.  Switch all the style properties to access this table style
7281         instead of instance fields of this class.  Also add a internal
7282         class to represent parent rows (more needs to be stored here, like
7283         the selection state from the parent table, as well as the
7284         expansion state.)  Also, for datasources with relations, do the
7285         right thing for collapse/expand, and add support for the
7286         navigation/parent row buttons.
7288         Lastly, fix the crash in the 1.1.16 build.
7290         * GridTableStylesCollection.cs: make the explicit interface
7291         implementations call the class's methods as opposed to duplicating
7292         them.
7294         * DataGridTextBoxColumn.cs: set the x/y offset of the textfield to
7295         0 so the text doesn't jump around when we move the cursor.
7297 2006-07-10  Jackson Harper  <jackson@ximian.com>
7299         * TextBoxBase.cs:
7300         * ListBox.cs: Match MS's ToString (this makes debugging focus
7301         stuff infinitely easier).
7303 2006-07-10  Jackson Harper  <jackson@ximian.com>
7305         * Control.cs (SelectNextControl): When checking the control's
7306         parent use this instead of ctrl.parent so that null can be passed
7307         to SelectNextControl. (I have unit tests for this).
7308         - Remove unused var.
7310 2006-07-10  Chris Toshok  <toshok@ximian.com>
7312         * CurrencyManager.cs: correct one regression, the removal of the
7313         finalType field.  Also, add a MonoTODO on CanAddRows, implement
7314         Refresh() correctly, and fix some event emission in
7315         ListChangedHandler.
7317 2006-07-07  Alexander Olk  <alex.olk@googlemail.com>
7319         * FileDialog.cs: Don't use brackets for new folders if they exist
7320           under *nix. Instead use -(number of existing folders +1).
7322 2006-07-07  Alexander Olk  <alex.olk@googlemail.com>
7324         * FileDialog.cs:
7325           - Fixed really nasty bug #78771
7326           - Don't block the whole GUI when reading directories with a lot of
7327             entries. Use an other thread instead and call BeginInvoke to
7328             update the ListView in MWFFileView
7330 2006-07-07  Chris Toshok  <toshok@ximian.com>
7332         * Control.cs (Dispose): release any Capture when disposing.
7334 2006-07-07  Chris Toshok  <toshok@ximian.com>
7336         * LinkLabel.cs (Select): if we chain up to the parent, set
7337         focused_index to -1 so we'll search for the first available link
7338         the next time the user tabs into us.  Also, if the direction is
7339         backward and focused_index == -1, start the search from the last
7340         element.
7342 2006-07-07  Chris Toshok  <toshok@ximian.com>
7344         * LinkLabel.cs (CreatePiecesFromText): if the link's range piece
7345         is beyond the end of the text, don't do anything.
7346         (CreateLinkPieces): set our ControlStyles.Selectable based on
7347         whether or not we have any links.
7348         (Link.Invalidate): use a loop instead of foreach.
7349         (Link.set_Start): null out owner.sorted_links so it'll be
7350         recreated by CreateLinkPieces.
7352 2006-07-06  Chris Toshok  <toshok@ximian.com>
7354         * LinkLabel.cs: revert the SetStyle change.
7356 2006-07-06  Chris Toshok  <toshok@ximian.com>
7358         * LinkLabel.cs (.ctor): SetStyle Selectable to true.
7359         (OnEnableChanged): s/Refresh/Invalidate
7360         (OnGotFocus): if we have a focused index already, refocus it (so
7361         if we mouse out/in to the window it'll focus the right link).
7362         (OnKeyDown): move the tab handling out of here.
7363         (OnLostFocus): don't set focused_index to -1, so we can refocus it
7364         when we lose focus.
7365         (OnMouseDown): don't Capture here - Control handles it.  Also,
7366         focus the active link.
7367         (OnMouseUp): don't deal with Capture.
7368         (OnPaintBackgroundInternal): remove.
7369         (OnTextAlignChanged): CreateLinkPieces before calling the
7370         superclass's method.
7371         (OnTextChanged): call CreateLinkPieces before calling superclass's
7372         method.
7373         (ProcessDialogKey): handle Tab here, and call Select(bool,bool) to
7374         move around.
7375         (Select): implement this, moving the selection between different
7376         links, and call parent.SelectNextControl if we don't have another
7377         link to focus in the given direction.
7378         (CreateLinkPieces): call Invalidate instead of Refresh.
7379         
7380 2006-07-06  Chris Toshok  <toshok@ximian.com>
7382         * ThemeWin32Classic.cs: DrawLinkLabel changes to accomodate the
7383         new LinkLabel internals.
7385         * LinkLabel.cs: fairly major rewrite.  get rid of all the loops
7386         over pieces looking for active/focused/etc links.  also, deal with
7387         runs of text (and links) with embedded \n's in them, and use
7388         MeasureCharacterRanges instead of MeasureString to figure out the
7389         regions text occupies.  Lastly, do the usual s/Refresh/Invalidate
7390         two-step.
7392 2006-07-04  Jackson Harper  <jackson@ximian.com>
7394         * XplatUIX11.cs: Enable key auto repeat. If the user doesn't have
7395         XKB or key auto repeat, do it manually.  Without key auto repeat,
7396         when a key is held down we get key press, key release, key press,
7397         key release, ... with auto repeat we get key press, key press, key
7398         press ..., and then a release when the key is actually released.
7400 2006-07-03  Jackson Harper  <jackson@ximian.com>
7402         * TabControl.cs:
7403         * ThemeWin32Classic.cs: Tabs do not obey normal background color
7404         rules, they are always control color regardless of the background
7405         color.
7407 2006-07-02  Alexander Olk  <alex.olk@googlemail.com>
7409         * FileDialog.cs: Added internal class MWFConfig.
7410           Removed Registry support and replaced it with support for the new
7411           MWFConfig class. See MWFConfig comments for more information.
7413 2006-06-30  Alexander Olk  <alex.olk@googlemail.com>
7415         * ThemeWin32Classic.cs: Added RadioButton and CheckBox focus
7416           rectangle. Added some patches from eno from bug #78490 and fixed
7417           the arrow position for small up and down CPDrawScrollButtons.
7419 2006-06-30  Jackson Harper  <jackson@ximian.com>
7421         * InternalWindowManager.cs: Remove some debug code.
7422         * Form.cs: When an MdiParent is set to null, the window is
7423         "detatched" and becomes a normal window.
7424         * MdiClient.cs: Don't bring the new child form to the front until
7425         it is activated (setting it as active does this), this makes the
7426         previously active forms titlebar get redrawn as inactive.
7428 2006-06-29  Peter Dennis Bartok  <pbartok@novell.com>
7430         * PrintDialog.cs: Labels need a tab index too, otherwise they overlap
7431           with later controls
7433 2006-06-29  Mike Kestner  <mkestner@novell.com>
7435         * MenuAPI.cs: handle arrow keys in keynav state. Go active on down
7436         arrow in keynav state.  Fixes #78682.
7438 2006-06-28  Atsushi Enomoto  <atsushi@ximian.com>
7440         * PrintDialog.cs: Reorder, relayout, remove extra code, set tab 
7441           order (fixes #78393)
7443 2006-06-28  Jonathan Pobst  <monkey@ipobst.com>
7445         * AccessibleRole.cs, AccessibleStates.cs, AnchorStyles.cs, 
7446           ArrangeDirection.cs, ArrangeStartingPosition.cs, ColorDepth.cs,
7447           ControlStyles.cs, DataGridViewImageCellLayout.cs, DrawMode.cs,
7448           FormBorderStyle.cs, FormStartPosition.cs, FormWindowState.cs,
7449           GridItemType.cs, HelpNavigator.cs, ImeMode.cs, ItemActivation.cs,
7450           ItemBoundsPortion.cs, Keys.cs, ListViewAlignment.cs, 
7451           PictureBoxSizeMode.cs, PropertySort.cs, SelectionMode.cs,
7452           Shortcut.cs, SizeGripStyle.cs, SortOrder.cs, StructFormat.cs,
7453           TextFormatFlags.cs, ToolBarAppearance.cs, ToolBarButtonStyle.cs,
7454           ToolBarTextAlign.cs, View.cs: 2.0 Changes to existing 1.x
7455           enumerations (FlagsAttribute, SerializableAttribute, added/removed
7456           values)
7458 2006-06-28  Mike Kestner  <mkestner@novell.com>
7460         * ComboBox.cs: implement scroll wheel support. Fixes #78360.
7462 2006-06-28  Atsushi Enomoto  <atsushi@ximian.com>
7464         * PropertyGrid.cs,
7465           PropertyGridTextBox.cs : explicitly set BackColor to differentiate
7466           item lines from other area (It also makes BackColor consistent and
7467           compatible with .NET). Fixed bug #78564.
7469 2006-06-28  Jonathan Chambers  <jonathan.chambers@ansys.com>
7471         * PropertyGrid.cs: refresh toolbar when PropertySort is set.
7472         Patch from Eno for #78555.
7474 2006-06-27  Chris Toshok  <toshok@ximian.com>
7476         * ThemeWin32Classic.cs: s/grid.grid_drawing/grid
7478         * DataGridColumnStyle.cs: same.
7480         * DataGrid.cs: Roll DataGridDrawingLogic.cs into this file.
7481         
7482         * DataGridDrawingLogic.cs: nuke.
7484 2006-06-27  Chris Toshok  <toshok@ximian.com>
7486         * DataGridTableStyle.cs: clean up the constructors, and build the
7487         list of child relations for this table.  I have no idea if this is
7488         where we should be doing it (it probably isn't), but since we're
7489         already iterating over the properties..
7491         * DataGrid.cs: add row resizing.  for now we add a DataGridRow
7492         struct and array for keeping track of row information, similar to
7493         what's shown in a hack on
7494         http://www.syncfusion.com/FAQ/WindowsForms/FAQ_c44c.aspx.
7496         * Theme.cs: be consistent about the naming of DataGrid methods,
7497         prefering ColumnWidths and RowHeights over columnsWidths and
7498         RowsHeights.
7500         * ThemeWin32Classic.cs: same, and also add support for variable
7501         sized rows (and the +/- expansion icons for related rows).
7503 2006-06-27  Peter Dennis Bartok  <pbartok@novell.com>
7505         * TextBoxBase.cs: Applied Eno's patch from #78660
7507 2006-06-27  Peter Dennis Bartok  <pbartok@novell.com> 
7509         * Form.cs (ScaleCore): We don't want to scale our form if it's
7510           state is minimized or maximized, but we still need to scale our
7511           child windows. Also, added try/finally block to ensure layout
7512           gets reset (Fixes #78697)
7514 2006-06-27  Peter Dennis Bartok  <pbartok@novell.com>
7516         * Control.cs: Added 2.0 Scale(SizeF) method (Fixes 78700)
7518 2006-06-27  Peter Dennis Bartok  <pbartok@novell.com> 
7520         * Form.cs: Fixed c+p error and added check to resize form if minimum
7521           size is bigger than current size (Fixes #78709)
7523 2006-06-26  Peter Dennis Bartok  <pbartok@novell.com> 
7525         * ThemeEngine.cs (..ctor): Properly use ToLower() (Fixes #78704)
7527 2006-06-26  Mike Kestner  <mkestner@novell.com>
7529         * ComboBox.cs: only do Keypress handling in the combo when there  
7530         are items in the collection. Fixes #78710.
7532 2006-06-26  Chris Toshok  <toshok@ximian.com>
7534         * Binding.cs: make this work bi-directionally.  also, clear up
7535         other mixups between Push/Pull Data (e.g. we're supposed to pull
7536         data when validating).
7538         * BindingManagerBase.cs: trim some fully qualified collection
7539         types.
7541         * PropertyManager.cs (get_IsSuspended): oops, fix this check.
7543 2006-06-23  Chris Toshok  <toshok@ximian.com>
7545         * PropertyManager.cs: It appears (according to the unit tests)
7546         that PropertyManager doesn't use
7547         PropertyDescriptor.AddValueChanged to track propery value changes
7548         in its datasource, but uses the same scheme as Binding, where it
7549         looks for a <Property>Changed event and binds to it.
7551         Also, according to the docs, IsSuspended always returns false for
7552         a property manager with a non-null datasource.
7554 2006-06-22  Peter Dennis Bartok  <pbartok@novell.com> 
7556         * Form.cs: (ShowDialog): If we're returning a forced cancel we still
7557           need to update the actual DialogResult. (Fixes #78613)
7559 2006-06-22  Peter Dennis Bartok  <pbartok@novell.com>
7561         * Form.cs (ShowDialog): Release any captures before running the
7562           new message pump (fixes #78680)
7564 2006-06-22  Mike Kestner  <mkestner@novell.com>
7566         * ListView.cs: Layout column widths properly in details mode even 
7567         if HeaderStyle.None is set.  Fixes #78691.
7569 2006-06-21  Peter Dennis Bartok  <pbartok@novell.com>
7571         * FileDialog.cs: Fixed taborder to match MS. Fixes #77873 partially.
7573 2006-06-21  Peter Dennis Bartok  <pbartok@novell.com> 
7575         * Control.cs (ContainsFocus): Using new driver method to get focused
7576           window, instead of trying to use internal tracking var, which can
7577           recursion issues (Fixes #78685)
7578         * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs, XplatUIOSX.cs, 
7579           XplatUIWin32.cs: Added GetFocus method to return focused window
7581 2006-06-21 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7583         * ColorDialog.cs: when the mouse button is pressed inside the color
7584         matrix, don't let the cursor move out of it until the button is
7585         released, which is the behavior on windows. Changed 'colours' by
7586         'colors' to use the same word consistently.
7588 2006-06-21  Chris Toshok  <toshok@ximian.com>
7590         * DataGrid.cs: add in some basic navigation stuff (navigating to a
7591         child relation and back, using a stack).  Also, remove
7592         GetDataSource and the code that calls it - it's not needed.  Also,
7593         track CurrencyManager.ListName's removal.
7595 2006-06-21  Chris Toshok  <toshok@ximian.com>
7597         * CurrencyManager.cs: push some of the original type checking from
7598         BindingContext.CreateBindingManager to here, and remove some of
7599         the finalType stuff.  Need more tests to make sure I've got the
7600         ListName part right, and we might need more in SetDataSource.
7602         * PropertyManager.cs: add a ctor that takes just the datasource,
7603         and no property name.  Make SetDataSource work with a null
7604         property_name, and make Current return the data_source if the
7605         property descriptor is null.  this makes 'string foo = "hi";
7606         BindingContext[foo].Current' return "hi" as it should.
7608         * RelatedCurrencyManager.cs: make this code more generic - there's
7609         no reason the parent manager has to be CurrencyManager, and
7610         there's no reason to pass the DataRelation.  It suffices to use a
7611         BindingManagerBase and PropetyDescriptor.
7613         * RelatedPropertyManager.cs: make a similar change here.
7614         
7615         * BindingContext.cs: make CreateBindingManager the beautiful, tiny
7616         flower I knew it could be.
7618 2006-06-20  Chris Toshok  <toshok@ximian.com>
7620         * PropertyManager.cs: the PropertyChangedHandler is invoked when
7621         data in the source has changed and we need to update the control,
7622         so s/PullData/PushData.
7624         * CurrencyManager.cs: Refresh is meant to update the control from
7625         data in the datasource.  So, s/PullData/PushData.
7627         * BindingContext.cs: add more ugliness (we weren't handling the
7628         case where data_source = DataTable and data_member = column_name).
7630         * Binding.cs: fix PushData/PullData mixup.  Both are interpreted
7631         from the perspective of the datasource.  PullData pulls from the
7632         control, PushData pushes to the control.
7634 2006-06-20  Chris Toshok  <toshok@ximian.com>
7636         * BindingContext.cs: rewrite the CreateBindingManager code to
7637         handle navigation paths more or less properly.  This could
7638         definitely stand some more work, in particular to push the
7639         recursion up to the toplevel.  But that relies on fixes in other
7640         places (System.Data comes to mind).
7642         Also, move to a flat hashtable (and encode the twolevel nature of
7643         the dictionary into the hash key).  This lets us implement the
7644         IEnumerable.GetEnumerator method.
7646         * RelatedCurrencyManager.cs: new class.  Update our view based on
7647         our relation and our parent CurrencyManager's position.
7649         * CurrencyManager.cs: split out some logic from the ctor into
7650         SetView, so it can be called from the new RelatedCurrencyManager
7651         subclass.
7653         * RelatedPropertyManager.cs: new class.  Update our datasource
7654         based on the position of our parent CurrencyManager.
7656         * PropertyManager.cs: split out some logic from the ctor into
7657         SetDataSource, so it can be called from the new RelatedDataSource
7658         subclass.  Also, make the Current getter return the value
7659         of the PropertyDescriptor, not the data_source.
7661         * Binding.cs: no need to duplicate the string splitting code here.
7663 2006-06-19  Peter Dennis Bartok  <pbartok@novell.com> 
7665         * Control.cs:
7666           - set_Enabled: OnEnabledChanged is not called if the inherited state 
7667             of the control is not altered, even though  we might be changing the
7668             internal state of the control (#78458)
7669           - set_Enabled: (Re)Moved the enabling/disabling of the window to 
7670             OnEnabledChanged, to allow easy altering of any child window state
7671           - OnEnabledChanged: Added code to enable/disable driver window state
7672           - OnParentEnabledChanged: Instead of firing the event, call 
7673             OnEnabledChanged, which will fire the event and also a) set driver
7674             window state and pass the enabled state to any grandchildren (#78458)
7676 2006-06-19  Jackson Harper  <jackson@ximian.com>
7678         * InternalWindowManager.cs: We don't set the cursor explicitly
7679         thats done via the response to NCHITTESTs.
7680         - Don't need to adjust for titlebar heights anymore, the
7681         coordinates are coming in the correct coordinates now (see peters
7682         last patch).
7685 2006-06-19  Peter Dennis Bartok  <pbartok@novell.com> 
7687         * XplatUIX11.cs (GetMessage): WM_NCxBUTTONx messages were wrongly
7688           being translated relative to whole window, instead of client window.
7689           That caused broken offsets on mouseclick (and caused gas for our
7690           InternalWindowManager)
7692 2006-06-15  Peter Dennis Bartok  <pbartok@novell.com> 
7694         * TextControl.cs:
7695           - MoveCaret: Implemented PgUp, PgDown, CtrlPgUp and CtrlPgDown
7696           - Undo(): Added replay of cursor move on DeleteChars action; added
7697             calling Undo() again if a recorded cursor move is invalid (to
7698             ensure that some action is performed on Undo)
7699         * TextBoxBase.cs (ProcessKey): Added handling of PgUp and PgDown (#78482)
7701 2006-06-16  Jackson Harper  <jackson@ximian.com>
7703         * MdiClient.cs: Instead of just sizing maximized windows when
7704         there is a resize we also have to adjust the Y of minimized
7705         windows, so they stay pinned to the bottom of the mdi container.
7706         - Eliminate separate tracking of the active control, we can just
7707         get this from the controls collection.
7708         - Paint the decorations for the newly activated titlebar so we get
7709         a pretty blue bar.
7710         * InternalWindowManager.cs:
7711         * ThemeWin32Classic.cs: Minimized windows get all three buttons
7712         even if they are a tool window.
7713         
7714 2006-06-15  Peter Dennis Bartok  <pbartok@novell.com> 
7716         * TextControl.cs (Undo): Handle non-existent cursor locations in the
7717           undo buffer, these can happen when text was deleted and the cursor
7718           was recorded first. Since we will also have a recorded cursor
7719           after the delete this is not an issue. (Fixes #78651)
7721 2006-06-14  Peter Dennis Bartok  <pbartok@novell.com> 
7723         * AccessibleObject.cs: Remove dependence on Control.is_selected;
7724           instead properly track control states internally (allows us to
7725           remove is_selected from Control)
7727 2006-06-14 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7729         * ImageListStreamer.cs: correctly generate the 1bpp mask for images
7730         whose width is not a multiple of 8.
7732 2006-06-13  Jackson Harper  <jackson@ximian.com>
7734         * MdiClient.cs:  Only maximize the next child if the current one
7735         is maximized.
7737 2006-06-13  Chris Toshok  <toshok@ximian.com>
7739         * DataGridColumnStyle.cs: Invalidate the column when HeaderText is
7740         modified.  Also, guard against grid or grid_drawing being null in
7741         Invalidate.
7743         * DataGrid.cs: Reformat tons of getters/setters.  In the
7744         DataMember setter, just call SetNewDataSource instead of
7745         duplicating some of its functionality.  In SetNewDataSource, don't
7746         check ListManager for null, since the property getter creates the
7747         object if needed.
7749         * DataGridTableStyle.cs: don't set TableStyle or call
7750         SetDataGridInternal on the column here, it's done in
7751         GridColumnStylesCollection.Add.
7753         * GridColumnStylesCollection.cs: fix all the explicit interface
7754         implementations to just call our methods.  Nuke AddInternal() and
7755         move the body of it to Add().  Also, add a call to
7756         column.SetDataGridInternal to Add().
7758         * DataGridTextBoxColumn.cs (.ctors): call this() instead of
7759         base()+duplicate code.  Also, use the Format property instead of
7760         format to generate an Invalidate ala MS.  Lastly, create the
7761         textbox here, unconditionally.
7762         (set_Format): call Invalidate.
7763         (get_TextBox): no need to call EnsureTextBox.
7764         (Commit): remove the message box.
7765         (Edit) remove the call to EnsureTextBox.
7766         (EndEdit): call HideEditBox instead of ReleaseHostedControl.
7767         (EnterNullValue): no need to check textbox for null.
7768         (HideEditBox): no need to check textbox for null.
7769         (SetDataGridInColumn): add the textbox to the grid's controls.
7770         (EnsureTextBox): nuke.
7771         
7772 2006-06-13  Jackson Harper  <jackson@ximian.com>
7774         * MdiWindowManager.cs: Hook up to the maximized menus paint event
7775         and redraw the buttons when needed. Unhook when the window is
7776         unmaximized.
7777         * MainMenu.cs: Add an internal Paint event, the mdi window manager
7778         needs this so that it can redraw its buttons when the menu is
7779         repainted.
7780         * InternalWindowManager.cs:
7781         * Form.cs: The method order has changed for DrawMaximizedButtons,
7782         so that it can be a PaintEventHandler.
7783         
7784 2006-06-13  Jackson Harper  <jackson@ximian.com>
7786         * MdiClient.cs: When we close a maximized mdi window, the next mdi
7787         window is activated and maximized, even if it wasn't before.
7788         - When  a new window is activated repaint the decorations of the
7789         old one, so that it no longer has the Active "look" (the blue
7790         titlebar).
7791         * InternalWindowManager.cs: Open up CreateButtons to base classes
7792         so they can recreate the buttons on state changes.
7793         - If a window is maximized give it all three buttons
7794         * MdiWindowManager.cs: Create the titlebar buttons when the state
7795         is changed, this is needed because a toolwindow will not have all
7796         three buttons until it is maximized.
7798 2006-06-13  Atsushi Enomoto  <atsushi@ximian.com>
7800         * ProgressBar.cs : PerformStep() shouldn't exceed Maximum.
7801           Fixed bug #78609.
7803 2006-06-12  Jackson Harper  <jackson@ximian.com>
7805         * KeysConverter.cs: Make sure we handle the Ctrl special case
7806         if its the only key.
7807         
7808 2006-06-12  Jackson Harper  <jackson@ximian.com>
7810         * Theme.cs: Add a method to get the size of a managed window
7811         toolbar button.
7812         * InternalWindowManager.cs: Remove the ButtonSize property, this
7813         should be retrieved from the theme.
7814         * MdiWindowManager.cs: Get the button size from the theme
7815         * ThemeWin32Classic.cs: Make the method to get the managed window
7816         titlebar button size public.
7817         - Handle the different button sizes of maximized toolwindows
7818         (should match any maximized window).
7819         - Get the titlebar height from the theme, not the WM (which gets
7820         it from the theme).
7822 2006-06-12  Jackson Harper  <jackson@ximian.com>
7824         * InternalWindowManager.cs: Handle NC Double Clicks, passing the
7825         event down to the mdi window manager.
7826         - Expose some extra stuff to base classes
7827         - Make sure to end the Capture on an NC Mouse up, so that we can
7828         get double clicks properly, and the sizing doens't stick.
7829         - When doing PointToClient contain it in the workable desktop
7830         area, this prevents windows from changing size when the cursor is
7831         pulled outside of the working area while sizing.
7832         * MdiWindowManager.cs: When we get a double click maximize the
7833         window.
7834         - Reset the cursor after handling mode changes.
7836 2006-06-12  Peter Dennis Bartok  <pbartok@novell.com> 
7838         * XplatUIX11.cs (WorkingArea): Read the actual workarea for the 
7839           current desktop, instead of just assuming a 0, 0 origin. This
7840           is needed for our internal window manager, to know the top
7841           margin of the desktop
7843 2006-06-12  Chris Toshok  <toshok@ximian.com>
7845         * DataGrid.cs (set_CurrentCell): concede focus as we move around.
7846         we need this to get rid of the selected background in the bool
7847         column.
7848         (CancelEditing): move the ConcedeFocus call to above the Abort
7849         call.  Also, set is_changing to false and invalidate the row
7850         header if we were changing before.
7851         (ProcessKeyPreviewInternal): remove, since noone outside this
7852         class calls it anymore.  Roll the code into ProcessKeyPreview.
7853         (EndEdit): remove the internal version.
7854         (InvalidateCurrentRowHeader): make private.
7856         * DataGridBoolColumn.cs: simplify this class a bunch.  remove the
7857         Keys.Escape handling (and with it the last call to
7858         DataGrid.EndEdit from outside the class.)
7861 2006-06-12  Chris Toshok  <toshok@ximian.com>
7863         * DataGridTextBox.cs (.ctor): isedit defaults to false.
7864         (OnKeyPress): set isedit to true.
7865         (ProcessKeyMessage): remove Keys.Enter handling from here.  it's
7866         already handled by the grid.
7868         * DataGrid.cs (set_CurrentCell): more work here.  it's still not
7869         right.  ugh.
7870         (set_DataSource): SetDataSource always returns true, so stop
7871         putting it in an if statement.
7872         (EndEdit): get rid of some {}'s
7873         (ProcessGridKey): return true in case Keys.Escape.
7874         (ProcessKeyPreviewInternal): only handle KEYDOWN messages.
7875         (ConnectListManagerEvents,DisconnectListManagerEvents): connect to
7876         PositionChanged, stopped connecting to CurrentChanged.
7877         (GetDataSource): simplify this a bunch.
7878         (SetDataSource): change return type from bool to void.
7879         (OnListManagerPositionChanged): rename OnListManagerCurrentChanged
7880         to this, and make sure we don't set ListManager.Position inside
7881         set_CurrentCell.
7882         (OnListManagerItemChanged): if we're passed an actual index,
7883         redraw that row.
7885         * CurrencyManager.cs (set_Position): don't call PullData here.
7887 2006-06-09  Jackson Harper  <jackson@ximian.com>
7889         * TreeNode.cs:  Recalculate the visible order before doing the
7890         Expand/Collapse Below calls, because those calls generate an
7891         expose.
7892         - Reduce calls to the TreeView property, which is mildly expensive
7893         by using a local var.
7894         * Form.cs: Layout the MDI child windows when creating the parent
7895         form.
7896         - Don't use the internal constructor anymore
7897         * MdiClient.cs: use the parent form width/height (if available)
7898         when laying out the child windows, we do this because the
7899         mdiclient isn't docked yet when the initial layout is done.
7900         - Don't need an internal constructor anymore.
7902 2006-06-08 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7904         * FileDialog.cs: handle access errors when trying to create a folder
7905         or changing to a directory. No need to initialize out parameters.
7907 2006-06-08  Alexander Olk  <alex.olk@googlemail.com>
7909         * FileDialog.cs: Append a number when creating a new folder if the
7910           folder already exists (use parenthesis instead of square brackets)
7912 2006-06-08  Alexander Olk  <alex.olk@googlemail.com>
7914         * FileDialog.cs:
7915           - Disabled registry support for windows and added better registry
7916             error checking for other systems (need to investigate why it
7917             works perfectly on my system)
7918           - If a folder already exist show an error MessageBox instead of
7919             trying to create an indexed name.
7920           - Fixed a non intentional typo.
7922 2006-06-08 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7924         * FileDialog.cs: (SetFileName) don't crash if CurrentRealFolder is null.
7926 2006-06-08  Alexander Olk  <alex.olk@googlemail.com>
7928         * FileDialog.cs: When creating a new folder don't crash if the
7929           folder already exists.
7931 2006-06-08  Alexander Olk  <alex.olk@googlemail.com>
7933         * FileDialog.cs: Allmost a complete rewrite.
7934           - added a "virtual" file system that handles the differences
7935             between unix and windows file systems (especially the directory
7936             structure). Moved most of the directory and file handling code
7937             into the vfs.
7938             Added vfs classes: MWFVFS, FileSystem, WinFileSystem,
7939             UnixFileSystem and FSEntry.
7940           - Recently used folder/directory, size, location and used file names
7941             (file name ComboBox) are now stored in the registry and get read
7942             before the dialog shows up (fixes part 6 of bug #78446).
7943           - Creation of new folders/directories is now possible (context menu
7944             or ToolBar). Added TextEntryDialog for this that fills in the gap
7945             until ListView.LabelEdit works.
7946           - Fixed cursor handling (bug #78527) and focus handling for
7947             PopupButtonPanel
7948           - Various "Search in" ComboBox enhancements. The content of the
7949             dropdown listbox now almost matches ms.
7950           - Changed the behaviour when the user switches to SpecialFolder
7951             Recent to show the ListView in View.Details.
7952           - Beside using the ToolBar to change the View property of the
7953             file ListView it is now possible to use the context menu too.
7955 2006-06-08  Alexander Olk  <alex.olk@googlemail.com>
7957         * ComboBox.cs: Don't create a new ObjectCollection when an item
7958           gets inserted. Just insert the item in the existing object_items
7959           ArrayList.
7961 2006-06-08  Jackson Harper  <jackson@ximian.com>
7963         * OpenTreeNodeEnumerator.cs: Fix to use the Parent property, so
7964         that the treeview and root node checks are done also, this fixes a
7965         regression i caused in the unit tests.
7967 2006-06-07  Wade Berrier <wberrier@novell.com> 
7969         * RichTextBox.cs: More ISO8859-1 -> unicode
7971 2006-06-07  Mike Kestner  <mkestner@novell.com>
7973         * ComboBox.cs : use items to hold highlight/selection so that
7974         collection insertions don't require synchronization.
7976 2006-06-07  Jackson Harper  <jackson@ximian.com>
7978         * InternalWindowManager.cs: Simplify (and FIX) the window sizing
7979         routine.  We now always keep the sized edge at the cursor instead
7980         of computing movement and adjusting rects.  There is one buglet
7981         with this method though when the cursor is moved over area that
7982         the window can not expand too (such as the toolbars on the desktop).
7984 2006-06-07 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7986         * XplatUIX11.cs: (IsEnabled,IsVisible) the window handler can be null
7987         here. Fixes crash on startup in AlbumSurfer.
7989 2006-06-07  Peter Dennis Bartok  <pbartok@novell.com> 
7991         * RichTextBox.cs: Replaced embedded ISO8859-1 chars with proper unicode
7992           values
7994 2006-06-07 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7996         * XplatUIX11.cs: call XPending and XNextEvent inside the same lock()
7997         statement to avoid calling XNextEvent which will block if another thread
7998         took the event that we were expecting. Fixes bug #78605.
8000 2006-06-07  Mike Kestner  <mkestner@novell.com>
8002         * ListView.cs : isolated checkbox clicking from the selection logic.
8003         Toggle check state on item doubleclicks.  Really fixes #78454 part2.
8005 2006-06-06  Carlos Alberto Cortez <calberto.cortez@gmail.com>
8007         * Form.cs: Check that the value passed to Form.DialogResult
8008         is a valid enum value.
8010 2006-06-06 Gonzalo Paniagua Javier <gonzalo@ximian.com>
8012         * FileDialog.cs: disable the up button when in 'Recently Used' or 'My
8013         Computer'. Clicking it in the network view goes to 'My Computer'.
8014         Added CIFS filesystem type. Display the mount point of filesystems.
8015         Avoid duplicate mount points (happens for me with CIFS);
8017 2006-06-06  Jackson Harper  <jackson@ximian.com>
8019         * InternalWindowManager.cs: Draw the maximized windows buttons
8020         when resizing.
8022 2006-06-06 Gonzalo Paniagua Javier <gonzalo@ximian.com>
8024         * Form.cs: when running a modal dialog, ignore WM_CLOSE requests for
8025         all other dialogs. Fixes bug #78585.
8027 2006-06-06  Mike Kestner  <mkestner@novell.com>
8029         * CheckedListBox.cs : apply CheckOnClick behavior to unchecking too.
8030         Only invalidate checkbox on checkstate changes to avoid flicker.
8031         * ListBox.cs : avoid unselect/select when clicking selected item.
8032         avoid reselection flicker for already multiselected items.
8033         Fixes #78382.
8035 2006-06-06  Jackson Harper  <jackson@ximian.com>
8037         * MdiWindowManager.cs: When the window is closed do an NCRecalc on
8038         the parent form so that the menu is removed if needed.
8040 2006-06-06  Mike Kestner  <mkestner@novell.com>
8042         * ListBox.cs : add ScrollWindow call to UpdateTopItem.  fix
8043         Prev/Next/PrevPage/NextPage/Home/End index calculation.  Fixes #78559.
8045 2006-06-06  Mike Kestner  <mkestner@novell.com>
8047         * CheckedListBox.cs : rebuild check collection on Add.  Fixes #78426.
8050 2006-06-06  Jackson Harper  <jackson@ximian.com>
8052         * Control.cs: Use the property (instead of the field) to get the
8053         default cursor so it is instantiated correctly.
8054         * InternalWindowManager.cs: The OS doesn't give us an NCPAINT with
8055         resizes so we need to manually repaint the window decorations here.
8056         - Set the titlebar button locations as soon as they are created,
8057         otherwise they are not set correctly on win32.
8058         
8059 2006-06-06  Chris Toshok  <toshok@ximian.com>
8061         * CurrencyManager.cs (set_Position): call PullData before
8062         OnCurrentChanged.
8063         (AddNew): after calling IBindingList.AddNew, update our
8064         listposition, and call OnCurrentChanged/OnPositionChanged (without
8065         calling PullData).
8066         (OnCurrentChanged): remove the call to PullData from here.
8067         (OnItemChanged): remove the call to PushData from here.
8068         (OnPositionChanged): change the test from == null to != null to
8069         match the other methods.
8070         (ListChangedHandler): the grossest part of the patch.  Implement
8071         this such that it passes the unit tests in CurrencyManagerTest and
8072         the output more or less matches that of MS's implementation.
8074 2006-06-06  Mike Kestner  <mkestner@novell.com>
8076         * ListView.cs : only update check state on single click.
8077         * ThemeWin32Classic.cs : fix focus drawing for details view without
8078         fullrowselect.  Fixes #78454.
8079         * XplatUIX11.cs : fix for double click emission.
8081 2006-06-05  Jonathan Chambers  <jonathan.chambers@ansys.com>
8083         * PropertyGridView.cs : Applied Atsushi's patch to fix
8084         font dialog bug  (#78197).
8086 2006-06-05  Jackson Harper  <jackson@ximian.com>
8088         * TreeNode.cs: Compute the next node for expanding/collapsing
8089         correctly. We now factor in nodes without a NextNode
8090         correctly. (Fixes somes cases in nunit-gui).
8091         * InternalWindowManager.cs: Set the bounds when updating the
8092         virtual position of a tool window.
8093         
8094 2006-06-05  Chris Toshok  <toshok@ximian.com>
8096         * DataGrid.cs: rename cached_currencymgr to list_manager.
8097         (set_CurrentCell): move SetCurrentCell code here, and clean it up
8098         some.
8099         (CurrentRow, CurrentColumn): single accessors so we can make the
8100         cursor movement code a lot easier to understand.
8101         (CurrentRowIndex): implement this in terms of CurrentRow.
8102         (BeginEdit): clean this up a bit.
8103         (CancelEditing): sort out the is_editing/is_changing/is_adding
8104         stuff a little.
8105         (EndEdit): minor changes.
8106         (OnKeyDown): add a comment about a (most likely) unnecessary
8107         check.
8108         (OnMouseDown): cancel editing when we click on a row header.  And
8109         use the CurrentRow setter, not CurrentCell.
8110         (ProcessDialogKey): directly call ProcessGridKey.
8111         (UpdateSelectionAfterCursorMove): factor out this common block of
8112         code (it's used everywhere that we move the cursor by updating row
8113         or column).
8114         (ProcessGridKey): pretty substantial overhaul.  Use the
8115         CurrentRow/CurrentColumn properties to make the code a lot more
8116         readable.  Only use the CurrentCell property when we have to
8117         modify both row and column at once.  Tab behavior is still broken,
8118         and Delete is untested.
8119         (Select): if we have no selected rows, set selection_start to
8120         @row.
8121         (EditCurrentCell): rename EditCell this.  It was only ever invoked
8122         with CurrentCell as the arg, so drop the arg and rename it.
8124         * DataGridColumnStyle.cs: clean up the constructors a little, and
8125         drop CommonConstructor().
8127         * DataGridTextBox.cs (.ctor): set accepts_return to true so we
8128         actually get notified when the user hits it.
8129         (ProcessKeyMessage): *substantially* simplify this method.
8130         There's no reason (that I can see) for the textbox to be making
8131         calls into the datagrid at all.  Remove all of them but the ones
8132         for Enter handling.  those will take some more work.
8134         * DataGridTextBoxColumn.cs (ConcedeFocus): implement this by
8135         calling HideEditBox.
8136         (HideEditBox): if we have an active textbox, render it invisible
8137         without causing a re-layout of the datagrid.
8139 2006-06-05  Mike Kestner  <mkestner@novell.com>
8141         * ListView.cs : fix NRE crasher when focuseditem is cleared by
8142         collection changes by resetting it to Items[0].  Fixes #78587.
8144 2006-06-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
8146         * MessageBox.cs: if the height of the text is larger than the icon_size,
8147         use that. Fixes bug #78575.
8149 2006-06-05  Jackson Harper  <jackson@ximian.com>
8151         * TreeView.cs: Fix line drawing when scrolling.  To do this each
8152         node is basically responsible for drawing its entire horizontal
8153         area.  When drawing a node it draws its parent node lines if
8154         needed.
8155         - Adjust the clip area to the viewport rectangle
8156         - Fix Left/Right key handling to match MS. (It expand/collapses
8157         and moves to parents/first child but does not move selection to
8158         sibling nodes).
8159         - Fix SetTop to work with new bound calculation code
8160         - When scrollbars are no longer needed we need to reset scrolling
8161         vars and recalculate the visible order so the redraw is correct
8162         * TreeNode.cs: We can't expand/collapse nodes with no children.
8164 2006-06-03  John Luke  <john.luke@gmail.com> 
8166         * X11DesktopColors.cs: dllimport the exact gtk and gdk versions
8167         so the colors work without dev packages
8168         
8169 2006-06-02  Peter Dennis Bartok  <pbartok@novell.com> 
8171         * Control.cs 
8172           - Select: Implemented to just use activate. Seems to match MS 
8173             behaviour closest. Documented to only do actual control walking 
8174             based on it's parameters if in a container control so I moved 
8175             the code there.
8176           - Removed selection check logic from our internal Select() method
8177         * ContainerControl.cs:
8178           - Select: Moved selection logic from Control here, since MS documents
8179             that containers obey the bool arguments. No longer calling base
8181 2006-06-02  Jackson Harper  <jackson@ximian.com>
8183         * TreeView.cs: If the selected node isn't changed when we get
8184         focus update the previously selected node so that we see the
8185         selection box.
8187 2006-06-02  Mike Kestner  <mkestner@novell.com>
8189         * ComboBox.cs: restructure grab and general mouse event handling.
8190         Make the composite control raise mouse events like it was a single
8191         control for leaves/enters/motion/up/down events.  fix dropdown list
8192         coordinate mangling and refactor it into the scrollbar subclass to
8193         reduce code duplication.  Fixes #78282 #78361 and #78457.
8195 2006-06-02  Mike Kestner  <mkestner@novell.com>
8197         * ScrollBar.cs: remove Capture setting/clearing, as it happens
8198         automatically in the Control.WndProc.
8200 2006-06-01 Gonzalo Paniagua Javier <gonzalo@ximian.com>
8202         * FileDialog.cs: fix crash when running SharpChess, which sets the
8203         FilterIndex to 2 with only one Filter.
8205 2006-06-01 Gonzalo Paniagua Javier <gonzalo@ximian.com>
8207         * ToolBar.cs: add SizeSpecified property.
8208         * ToolBarButton.cs: when the ButtonSize is calculated by the container,
8209         try to figure out our real size, otherwise fallback to what the
8210         container says.
8212 2006-06-01  Peter Dennis Bartok  <pbartok@novell.com> 
8214         * XplatUIX11.cs (DefWndProc): WM_MOUSEWHEEL needs to be passed up
8215         * Control.cs (WndProc): MS always calls the DefWndProc to pass
8216           up the event
8218 2006-06-01  Mike Kestner  <mkestner@novell.com>
8220         * ListView.cs: revamp the focus management in ListView.  It still
8221         causes churn of LostFocus/GotFocus emissions on clicks, but it's
8222         better than not handling focus at all.  Will revisit when pdb feels
8223         the general focus handling is solid.  Fixes #78526.
8225 2006-06-01  Jackson Harper  <jackson@ximian.com>
8227         * TreeView.cs: Set the default border style in the constructor.
8228         - Move painting to use OnPaintInternal instead of capturing
8229         WM_PAINT, this is the correct way of doing things
8230         - UpdateBelow shouldn't invalidate the scrollbar area
8231         - Cap the top on update below in case the node was above the top
8232         of the viewport rectangle.
8233         - ExpandBelow and Collapse below need to obey Begin/End Update.
8234         * TreeNode.cs: Make is_expanded internal so the treenode
8235         collection can change it without firing the whole event chain.
8236         * TreeNodeCollection.cs: When clearing all the child nodes make
8237         sure to recalc the visible order.
8238         - Improve algo for remove the top node
8240 2006-06-01  Peter Dennis Bartok  <pbartok@novell.com> 
8242         * XplatUIX11.cs (SetFocus): Make sure we can handle re-entrancy due to
8243           SendMessage directly calling window procedures, which in turn might
8244           call SetFocus()
8246 2006-06-01  Peter Dennis Bartok  <pbartok@novell.com>
8248         * Control.cs: Don't handle WM_SETFOCUS if the same window already
8249           has focus (works around X11 sending a FocusIn after our SetFocus)
8250         * XplatUIX11.cs: Send KILLFOCUS before setting SETFOCUS on new window
8252 2006-06-01  Alexander Olk  <alex.olk@googlemail.com>
8254         * Mime.cs: Fix for the NET_2_0 build.
8255           NameValueCollection needs StringComparer now.
8257 2006-05-31  Chris Toshok  <toshok@ximian.com>
8259         * DataGridDrawingLogic.cs (FromPixelToColumn): modify this to also
8260         return (via an out parameter) the starting X of the column.
8261         (UpdateVisibleColumn): track change to FromPixelToColumn.
8262         (HitTest): add a ColumnResize case here.
8263         (DrawResizeLine): new function, probably poorly named.
8265         * DataGrid.cs (.ctor): get rid of cached_currencymgr_events.  We
8266         only need to keep one reference.
8267         (set_ListManager): same.
8268         (OnMouseDown): call HitTest instead of grid_drawing.HitTest.
8269         Also, add support for HitTestType.ColumnResize.
8270         (OnMouseMove): add column resize behavior here, and change the
8271         cursor to the correct one as we move around the datagrid.
8272         (OnMouseUp): terminate the column resize if we're resizing.
8273         (ProcessGridKey): from the MS docs, Alt-0 enters the null value
8274         for the current cell.
8275         (ConnectListManagerEvents): use cached_currencymgr.
8276         (DisconnectListManagerEvents): fill this in, using
8277         cached_currencymgr.
8278         (SetCurrentCell): remove cached_currencymgr_events handling.
8279         (SetDataMember): only call DisconnectListManagerEvents if
8280         cached_currencymgr is != null.
8281         (SetDataSource): same.
8282         (OnListManagerCurrentChanged): cached_currencymgr_events ->
8283         cached_currencymgr.
8285 2006-05-31  Jackson Harper  <jackson@ximian.com>
8287         * BindingManagerBase.cs: Remove somedebug code that creeped into
8288         SVN.
8289         * TreeNode.cs: We get the indent level dynamically right now, so
8290         don't track it as a member.
8291         * TreeNodeCollection.cs: Make sure all nodes added to the list
8292         have parents, treeviews/topnodes setup properly.
8293         - Don't attempt to track indent level.
8295 2006-05-30  Jackson Harper  <jackson@ximian.com>
8297         * BindingContext.cs: Create the currency manager tables here.
8298         This allows us to more easily create null tables (when bad data
8299         members are used), and more easily create related currency
8300         managers.
8301         * CurrencyManager.cs: All the table creation stuff is done by the
8302         binding context now.
8303         - Current should throw an exception if listposition is -1.
8304         - CancelCurrentEdit/EndCurrentEdit, do nothing if the list hasn't
8305         been bound yet.
8307 2006-05-30  Mike Kestner  <mkestner@novell.com>
8309         * ListView.cs: allow reexpansion of zero-width column headers.
8310         Fixes #78528.
8312 2006-05-28  Chris Toshok  <toshok@ximian.com>
8314         * CurrencyManager.cs (get_Current): after the late binding
8315         listposition = -1 fix, we need to guard against it here and return
8316         null, otherwise we raise an exception (which is swallowed
8317         elsewhere, and breaks datagrid databinding.)
8319 2006-05-26  Peter Dennis Bartok  <pbartok@novell.com>
8321         * MenuAPI.cs (ProcessMenuKey): We can legally get msg types other
8322           than WM_SYSKEY, don't throw if get something unexpected (#78507)
8324 2006-05-26  Jackson Harper  <jackson@ximian.com>
8326         * ControlPaint.cs:
8327         * ThemeWin32Classic.cs: For color comparisons just use the ARGB
8328         values, it's faster and it's all we care about (we don't care if
8329         the names aren't equal).
8330         * KeyboardLayouts.cs: Eliminate some dead code.
8331         - Lazy init things
8332         * X11Keyboard.cs: Lazy init keyboard detection.
8333         - Cleanup access modifiers a little.
8335 2006-05-26  Peter Dennis Bartok  <pbartok@novell.com>
8337         * XplatUIX11.cs: Once again, attempting to get layout just right.
8339 2006-05-26  Peter Dennis Bartok  <pbartok@novell.com> 
8341         * LinkLabel.cs (CreateLinkPieces): Use MeasureString to calculate
8342           the sizes of each link section, that will result in sizes that
8343           match DrawString's layout (Fixes #78391)
8345 2006-05-27  Alexander Olk  <alex.olk@googlemail.com>
8347         * FileDialog.cs: If AddExtension property is true autocomplete the
8348           extensions in SaveFileDialog correctly. Fixes bug #78453.
8349           Set MyNetwork and MyComputer to "C:\" for windows. This should
8350           fix part 8 of bug #78446 for now.
8352 2006-05-26  Chris Toshok  <toshok@ximian.com>
8354         * DataGrid.cs (ColumnStartedEditing): fill these in.  for now just
8355         invalidate the current row header if we need to, but presumably
8356         we'll invalidate the row corrsponding to the bounds or
8357         editingControl.
8358         (GridHScrolled): switch back to this method, as it's part of the
8359         public api.  *sigh*.
8360         (GridVScrolled): same.
8361         (OnMouseWheel): hack up something that more or less works.  Call
8362         GridHScrolled/GridVScrolled directly, instead of duplicating much
8363         of their code here.
8364         (EnsureCellVisibility): reinstate a bunch of this code, since we
8365         can't just set the scrollbar Value and expect to do all the work
8366         in the ValueChanged handler.  Also, Call Update() after scrolling
8367         in one direction so the other XplatX11.ScrollWindow call has the
8368         proper stuff in the proper places.
8369         (EditCell): set is_editing to true before calling .Edit.
8371         * DataGridTextBox.cs (set_IsInEditOrNavigateMode): just set it,
8372         don't bother comparing first.
8373         (OnKeyPress): call grid.ColumnStartedEditing before calling
8374         base.OnKeyPress.  this will set is_changing and invalidate the row
8375         header if necessary.
8376         (ProcessKeyMessage): for WM_CHAR messages, call
8377         ProcessKeyEventArgs directly.  swallow anything other than WM_CHAR
8378         and WM_KEYDOWN.
8379         
8380         * DataGridBoolColumn.cs (Edit): don't set is_editing to true here.
8381         it's done in the DataGrid.
8382         (NextState): call grid.ColumnStartedEditing, which takes care of
8383         invalidating the row header (and setting is_changing).
8385         * DataGridTextBoxColumn.cs (Edit): don't set is_editing to true
8386         here.  it's done in the DataGrid.
8388 2006-05-25 Gonzalo Paniagua Javier <gonzalo@ximian.com>
8390         * Control.cs: allow changing the cursor when the mouse position is
8391         out of bounds but Capture is set.
8392         * LinkLabel.cs: handle the case when the mouse button is pressed on the
8393         linklabel but released somewhere else.
8395 2006-05-25  Jackson Harper  <jackson@ximian.com>
8397         * TreeView.cs: When we get focus if there is no selected node make
8398         it the top node
8399         - Remove some uneeded setup code from Draw.
8400         * TreeNodeCollection.cs: If the tree doesn't have a top node when
8401         a new node is inserted make the new node the top.
8402         * XplatUIX11.cs:
8403         * Timer.cs: Use Utc time so that no local time zone stuff needs to
8404         be used (should be faster).
8405         
8406 2006-05-25  Chris Toshok  <toshok@ximian.com>
8408         * DataGrid.cs (EnsureCellVisibility): remove some code to fix a
8409         problem with the last commit.
8411 2006-05-25  Chris Toshok  <toshok@ximian.com>
8413         * DataGridTextBoxColumn.cs (ReleaseHostedControl): turns out we do
8414         need the invalidate call here, while scrolling right-to-left via
8415         the left arrow key (i.e. moving the editing cell while scrolling).
8417         * DataGrid.cs (.ctor): remove the initialization of
8418         ctrl_pressed/shift_pressed.  We no longer track them using key
8419         up/down handlers, but by using Control.ModifierKeys.  Also, switch
8420         to using ValueChanged handlers on the scrollbars instead of
8421         Scrolled event handlers.  This simplifies a bunch of the scrolling
8422         code.
8423         (GridHValueChanged): rename from GridHScrolled, and change it to
8424         work with the new event args.
8425         (GridVValueChanged): same.
8426         (OnMouseDown): initialize ctrl_pressed/shift_pressed here.
8427         (OnMouseWheel): actually scroll the datagrid.  Don't change the
8428         selected cell.
8429         (ProcessGridKey): correct all the keyboard navigation stuff I
8430         could find.  Ctrl up/down/left/right/home/end work now.
8431         (EnsureCellVisibility): correct method name spelling.  Also,
8432         simplify this a touch by not explicitly calling the
8433         ScrollToRow/ScrollToColumnInPixels methods.  We just set the
8434         scrollbar value.
8435         (OnKeyUpDG): no need for this method now.
8436         
8437 2006-05-25 Gonzalo Paniagua Javier <gonzalo@ximian.com>
8439         * LinkLabel.cs: display the OverrideCursor when hovering the label.
8440         Fixes bug #78392.
8442 2006-05-25  Chris Toshok  <toshok@ximian.com>
8444         * ThemeWin32Classic.cs: fix datagrid clipping problems caused by
8445         r61019.
8447 2006-05-25  Peter Dennis Bartok  <pbartok@novell.com> 
8449         * Application.cs: Moved setting of is_modal and closing to before
8450           we create the control, to allow the event handlers called as a
8451           result of creation affect closing. Also removed Gonzalo's previous
8452           change to setting DialogResult, the behaviour has been moved to 
8453           Form.ShowDialog()
8454         * Form.cs: 
8455           - ShowDialog(): Removed explicit creation of the form, let RunLoop
8456             handle it instead
8457           - ShowDialog(): If no dialog result is set, we need to return Cancel
8458           - WM_CLOSE: Fire Closing/Closed events, and reset dialog result if
8459             the close is cancelled
8461 2006-05-25  Jackson Harper  <jackson@ximian.com>
8463         * StatusBar.cs: We only need to update the sizes of the other
8464         panels when we have auto size contents.  Also we are only updating
8465         the contents of the panel, not the borders, so compensate for the
8466         border width (TODO: get this width from the theme somehow).
8467         * TreeView.cs: Scrollable is true by default
8468         - Use invalidate instead of refresh where needed
8469         - Factor the scrollable value into scrollbar updating
8470         - Update the scrollbars if the Scrollable property is altered
8471         - Update the selected node if its ImageIndex is changed
8472         - Handle null nodes in UpdateNode (mainly so we don't have to
8473         check if selected is null when updating it
8474         - Fix VisibleCount to use the ViewportRectangle so that scrollbars
8475         are factored into the visible count
8476         - Use VisibleCount for clarity in the code
8477         - When the font is changed we need to recurse through all the
8478         nodes and invalidate their sizes
8479         
8480 2006-05-25 Gonzalo Paniagua Javier <gonzalo@ximian.com>
8482         * Application.cs: set the DialogResult to fixed when the main form is
8483         hidden or destroyed while being modal.
8485 2006-05-25  Miguel de Icaza  <miguel@novell.com>
8487         * Theme.cs: Use Tangoified messagebox icons. 
8489         (GetSizedResourceImage): Also cope with width = 0 and do not
8490         trigger a warning in that case (0 means "give me your icon from
8491         the resouce, no special size needed).
8493 2006-05-25  Peter Dennis Bartok  <pbartok@novell.com> 
8495         * Application.cs: Leave runloop if the the main modal form is 
8496           hidden (fixes #78484)
8498 2006-05-25  Atsushi Enomoto  <atsushi@ximian.com>
8500         * BindingContext.cs : reject null datasource in Contains() and
8501           Item[].
8502         * CurrencyManager.cs : check data_member validity when data_source
8503           is dataset. When it is late binding, the initial position is -1.
8505 2006-05-24  Jackson Harper  <jackson@ximian.com>
8507         * TreeNodeCollection.cs: Dont't recalculate the visible order on
8508         inserted nodes that aren't visible.  This changes the
8509         max_visible_order which confuses scrollbar settings.
8510         - Use the enumerator to get the prev node instead of duplicating
8511         code.
8512         * TreeView.cs: Use new method for setting scrollbar values
8513         - Don't set the bounds every time the scrollbar is updated
8514         - When updating below the root node use an invalidate instead of a
8515         refresh to prevent the child controls (scrollbars) from being
8516         refreshed. (UpdateBelow still needs to be reworked anyways).
8517         - Reenable SetBottom now that visible orders are set correctly,
8518         added some debug code incase we ever get bad values there again.
8519         - Set the scrollbar max to 2 less then the max value, this
8520         compensates for the max value being one above the node count, and
8521         for scrollbars adding one extra "notch".
8522         - When drawing image nodes if there is an imagelist we draw the
8523         first image in the list if the supplied image index is out of the
8524         image list's bounds.
8525         
8526 2006-05-24  Peter Dennis Bartok  <pbartok@novell.com> 
8528         * XplatUIX11.cs: Don't blindly cache hwnd.ClientRect, reset it when 
8529           we receive a size change from the WM (Fixes #78503)
8531 2006-05-24  Peter Dennis Bartok  <pbartok@novell.com>
8533         * XplatUIWin32.cs, XplatUIX11.cs: Refresh when setting the Clip 
8534           rectangle (Fixes #78501)
8536 2006-05-24  Peter Dennis Bartok  <pbartok@novell.com> 
8538         * ButtonBase.cs: 
8539           - Fixed MouseUp, MouseDown and MouseMove to treat mouseevent.Button 
8540             as a bitfield.
8541           - Fixed MouseMove to no longer switch pressed state unless the left
8542             mouse button is pressed. Atsushi provided the original patch (#78485)
8543           
8544 2006-05-24  Jackson Harper  <jackson@ximian.com>
8546         * ScrollBar.cs: New internal methods that allow us to change a
8547         couple values on the scrollbar (the most common case is maximum
8548         and large change) without getting multiple invalidates.
8550 2006-05-24  Chris Toshok  <toshok@ximian.com>
8552         * DataGridBoolColumn.cs (Abort): revert back to the saved setting.
8553         (Edit): save off the original state in oldState, and set
8554         grid.is_editing to true.
8555         (OnKeyDown): abort editing if escape is pressed.  also, call
8556         NextState if space is pressed.
8557         (OnMouseDown): call NextState.
8558         (NextState): factor out shared code from OnKeyDown and OnMouseDown
8559         here.  Also, only invalidate the row header once (on the initial
8560         is_changing switch) to save on redraws.
8562 2006-05-24  Chris Toshok  <toshok@ximian.com>
8564         * DataGridTextBoxColumn.cs (Commit): only call SetColumnValueAtRow
8565         if the value in the cell is different than it was before.  This
8566         keeps us from triggering a layout when we move around a datarid
8567         with a highlighted cell.
8568         (Edit): suspend layout when creating/positining the text box, and
8569         resume passing false so we don't ever actually re-layout.
8570         (ReleaseHostedControl): same.
8571         (EnsureTextBox): reformat slightly, and set WordWrap to false.
8573         * DataGridTextBox.cs (ProcessKeyMessage): it's not true that all
8574         control-key sequences should go to the datagrid - remove that
8575         lock.  Also, modify the conditions under which we move between
8576         cells when moving the cursor within a cell, and remove the "this"
8577         and "base" from field accesses.  We weren't even consistent, given
8578         they all were in the base class.
8580 2006-05-24  Atsushi Enomoto  <atsushi@ximian.com>
8582         * Binding.cs : (.ctor)
8583           An obvious NRE fix for BindingTest.CtorNullTest().
8585 2006-05-23  Chris Toshok  <toshok@ximian.com>
8587         * TextBoxBase.cs (get_Text): don't add a trailing newline, add
8588         them between lines.  This fixes some quirks editing cells in the
8589         datagrid.
8591 2006-05-23  Jackson Harper  <jackson@ximian.com>
8593         * TreeView.cs: Use begin/end update when doing expand/collapse all
8594         so that we don't get flicker on the scrollbar.
8596 2006-05-23  Jackson Harper  <jackson@ximian.com>
8598         * TreeNode.cs: Bounds are computed 'on the fly' now.  This allows
8599         treenode calculations to be independant of the painting code. To
8600         do this nodes track a visible order which is calculated by the
8601         treeview.
8602         - Call new methods for expanding/collapsing nodes.  These methods
8603         use scrollwindow so we don't have to update everything below the
8604         node.
8605         * TreeView.cs: Refactored drawing and scrolling code.  We don't
8606         need to update nodes when drawing anymore or calculate scrollbar
8607         stuff.
8608         - Added new methods for expanding/collapsing nodes. These methods
8609         use ScrollWindow so as to not have to redraw all the nodes below.
8610         * TreeNodeCollection.cs: Recalc visible order and scrollbars when
8611         we add/remove nodes or sort.
8612         - Handle removing the selected and the top node properly.
8614 2006-05-23  Chris Toshok  <toshok@ximian.com>
8616         * DataGridTextBoxColumn.cs (Edit): set grid.is_editing to true.
8617         maybe this should actually happen in the datagrid code?
8618         (EndEdit): no need to invalidate anything, given that
8619         ReleaseHostedControl causes the datagrid to relayout, which
8620         invalidates everything anyway.
8622         * DataGrid.cs (set_CurrentCell): remove duplicate check (it's also
8623         in SetCurrentCell).
8624         (set_SelectionBackColor): call InvalidateSelection instead of
8625         Refresh.
8626         (set_SelectionForeColor): same.
8627         (BeginEdit): Flesh this out a bit.
8628         (CancelEditing): only do any of this if we're editing/adding.
8629         (EndEdit): same.
8630         (OnMouseDown): there's no need to cancel editing here, it's done
8631         in SetCurrentCell.
8632         (SetCurrentCell): only invalidate the current row header if it's a
8633         different row than the new one.
8634         (ShiftSelection): fix this to work like MS does.
8635         (ResetSelection): factor out the invalidation of selected_rows to
8636         InvalidateSelection.
8637         (SetDataSource): cancel any editing that's going on.
8639         * DataGridColumnStyle.cs
8640         (IDataGridColumnStyleEditingNotificationService.ColumnStartedEditing):
8641         call the non-interface version.
8643         * ThemeWin32Classic.cs (DataGridPaintColumsHdrs): intersect the
8644         header rectangle with the clip rectangle so we don't redraw the
8645         entire header for just a small area.  Gets rid of the last flicker
8646         when horizontally scrolling.
8647         (DataGridPaintRow): same.
8649 2006-05-23  Mike Kestner  <mkestner@novell.com>
8651         * ListViewItem.cs: remove size for line hack from LargeIcon layout.
8652         * ThemeWin32Classic.cs: don't draw line.  it's really the top of a
8653         poorly placed checkbox on the MS control.  Fixes Alex's unfiled
8654         Critical bug report.
8656 2006-05-23  Peter Dennis Bartok  <pbartok@novell.com> 
8658         * PictureBox.cs: Fixed broken ControlStyles. Unit test no longer fails,
8659           and this fixes #78493
8661 2006-05-23  Miguel de Icaza  <miguel@novell.com>
8663         * Theme.cs (GetSizedResourceImage): Scale images if the proper
8664         size is not found.  
8665         
8666         * FileDialog.cs: Do not change the background for the side bar as
8667         it wont work nicely with the theme, and also reduces the artifacts
8668         in rendering the icons (which I want to fix too).
8670         * MimeIcon.cs (ResourceImageLoader): Load images from assembly
8671         resources, not resgen resources. 
8673         (PlatformDefaultHandler): Pull images using the new API.
8675 2006-05-23  Peter Dennis Bartok  <pbartok@novell.com> 
8677         * Hwnd.cs (Dispose): Remove any pending exposures. XEventQueue holds
8678           a reference to the hwnd and will not remove it unless there are
8679           no pending exposures (fixes #78341)
8680         * XplatUI.cs: Improved debug
8682 2006-05-23  Atsushi Enomoto  <atsushi@ximian.com>
8684         * MenuAPI.cs : don't handle OnClick event when it was not the left
8685           button. Fixed bug #78487.
8687 2006-05-23  Mike Kestner  <mkestner@novell.com>
8689         * MenuAPI.cs: fix placement of submenus for multi-row menu bars, and
8690         prefer submenus to the top menu for item lookup, to avoid popping down
8691         top-row items.
8693 2006-05-23  Alexander Olk  <alex.olk@googlemail.com>
8695         * ThemeWin32Classic.cs: Rewrote CPCPDrawScrollButton to drop
8696           Graphics.FillRectangle as the visual results are really bad (even
8697           on win). We now draw perfect arrows (and perfect shadows when the
8698           scrollbar is disabled). Simplified CPDrawGrid. CPDrawGrid now uses
8699           Pen.DashPattern to draw the dots of each line.
8701 2006-05-22  Alexander Olk  <alex.olk@googlemail.com>
8703         * FileDialog.cs: Update the filename combobox when navigating through
8704           the ListView with the cursor keys. Fixes part 7 of bug #78446.
8706 2006-05-22  Mike Kestner  <mkestner@novell.com>
8708         * ListView.cs: raise SelectedIndexChanged on keyboard selection.
8709         Fixes #78463.
8711 2006-05-22  Mike Kestner  <mkestner@novell.com>
8713         * ComboBox.cs: Refresh in EndUpdate to pick up all the dropped Paint
8714         requests. Fix a misspelled parameter and a copy paste exception error
8715         in Select.
8717 2006-05-22  Peter Dennis Bartok  <pbartok@novell.com> 
8719         * ThemeWin32Classic.cs: Changed DefaultFont emSize from 8.25 to 8
8720           to get the same width/height (5/13) on X11 as the default font has on
8721           win32. This means that our DefaultFont emSize is smaller than the 
8722           the MS SWF equivalent (even thought the width/height stays the same)
8724 2006-05-20  Jackson Harper  <jackson@ximian.com>
8726         * MdiClient.cs:
8727         * MdiWindowManager.cs:
8728         * InternalWindowManager.cs: Make sure to use the border width from
8729         the theme.
8731 2006-05-20  Jordi Mas i Hernandez <jordimash@gmail.com>
8733         * PrintDialog.cs: Implements printer details
8735 2006-05-19  Alexander Olk  <alex.olk@googlemail.com>
8737         * FileDialog.cs: Added focus handling for PopupButtonPanel.
8738           Fixes part 1 and 2 of bug #78446
8740 2006-05-19  Peter Dennis Bartok  <pbartok@novell.com> 
8742         * XplatUIX11.cs (SetWindowPos): Recalculate client area size on resizes
8743           instead of sticking to the first ever calculated value
8745 2006-05-19  Mike Kestner  <mkestner@novell.com>
8747         * ComboBox.cs: fix mouse motion selection to use MousePosition and
8748         PointToClient, since Capture is set. Fixes #78344.
8750 2006-05-19  Mike Kestner  <mkestner@novell.com>
8752         * ListView.cs: match MS behavior in Details view where items are not
8753         drawn if Columns.Count == 0. 
8754         * ThemeWin32Classic.cs: only highlight ListView selection if focused.
8755         Use a separate pen to draw the check, since changing the width affects
8756         the box as well.  Fixes #78454.
8758 2006-05-18  Miguel de Icaza  <miguel@novell.com>
8760         * ListView.cs: ArgumentOutOfRangeException, single versions of the
8761         exception should throw the name of the invalid argument.
8763         * FileDialog.cs (OnClickOpenSaveButton): Avoid crash in open if
8764         there are no files listed. 
8766 2006-05-18  Jackson Harper  <jackson@ximian.com>
8768         * ThemeWin32Classic.cs: Don't use endcaps, they mess the drawing
8769         up.
8771 2006-05-18  Peter Dennis Bartok  <pbartok@novell.com> 
8773         * Control.cs: Brought back our old UpdateZOrder method as a private
8774           function and switched our calls from UpdateZOrder to the new one.
8775           This fixes the Paint.Net canvas disappearing bug.
8777 2006-05-18  Jackson Harper  <jackson@ximian.com>
8779         * Theme.cs:
8780         * ThemeWin32Classic.cs:
8781         * InternalWindowManager.cs: Move the drawing into the theme,
8782         expose everything the theme should need from the window manager.
8784 2006-05-18  Peter Dennis Bartok  <pbartok@novell.com>
8786         * XplatUIX11.cs (DefWndProc): WM_SETCURSOR: Assign the return value 
8787           from the call to NativeWindow to avoid walking up the parent chain
8788           further than needed (speeds up setting cursors and avoids setting
8789           the wrong cursor if a parent has another cursor defined)
8790         * Cursor.cs: When loading an icon as cursor, MS uses the center of
8791           the icon as hotspot, not what's contained as hotspot in the icon
8792           file. This fixes the perceived drawing offset seen with Paint.Net
8793         
8794 2006-05-18  Peter Dennis Bartok  <pbartok@novell.com> 
8796         * XplatUIX11.cs: 
8797           - Store the calculated rectangle in Hwnd object and use it when 
8798             setting the client size
8799           - Force Toolwindows to always be type Dock, to ensure they're on top
8801 2006-05-18  Mike Kestner  <mkestner@novell.com>
8803         * ComboBox.cs: first pass at ComboBox rework.  Layout is more
8804         consistent with MS positioning.  IntegralHeight, ItemHeight, Sizing.
8805         Correctly initialize textcontrol and ListBox on DropDownStyle changes. 
8806         Substantial refactoring to remove confusing nested classes. Coding
8807         standard and Get+Set->property refactorings.  Shift to index based
8808         highlighting in ComboListBox instead of constantly using IndexOf and
8809         Items[]. Add invalidations on resize for DropDownList to fix ugliness
8810         in FileDialog growth.  Draw borders manually since Simple mode needs
8811         to look like two independent controls.  Make listbox border
8812         conditional to DropDownStyle.  Improved OwnerDraw support.
8814 2006-05-18  Sebastien Pouliot  <sebastien@ximian.com>
8816         * PaintEventArgs.cs: For 2.0, check for a null Graphics in the .ctor. 
8817         Don't set the disposed graphics to null, so we can throw the "right"
8818         exception if the graphics is reused later (added a flag to avoid 
8819         double disposing). Some behaviours are different under 2.0 and are
8820         filled under bug #78448.
8822 2006-05-18  Peter Dennis Bartok  <pbartok@novell.com>
8824         * Control.cs: When double-buffering is enabled, we need to reset
8825           our graphics context between paint calls. Otherwise, any 
8826           transformations and other alterations on the context will 
8827           become cumulative (#77734)
8829 2006-05-18  Mike Kestner  <mkestner@novell.com>
8831         * ListView.cs: do focused item selection like MS on clicks. 
8832         Rework focus handling for ItemControl so LostFocus invalidates as
8833         well.
8834         * ThemeWin32Classic.cs: only draw focus rectangle for ListViewItems if
8835         the ListView ItemControl has focus.
8837 2006-05-17  Peter Dennis Bartok  <pbartok@novell.com>
8839         * XplatUIX11.cs: If client_window ends up being width or height zero
8840           due to border settings, move it off window inside whole_window (#78433)
8842 2006-05-17  Alexander Olk  <alex.olk@googlemail.com>
8844         * Mime.cs: Shrink the mime file cache correctly.
8846 2006-05-17  Alexander Olk  <alex.olk@googlemail.com>
8848         * ThemeWin32Classic.cs: Readded button focus drawing code. (#78429)
8850 2006-05-16  Peter Dennis Bartok  <pbartok@novell.com>
8852         * XplatUIX11.cs (AddExpose): More sanity checks
8854 2006-05-16  Peter Dennis Bartok  <pbartok@novell.com> 
8856         * XplatUIX11.cs:
8857           - AddExpose: Don't add expose ranges outside the size of our
8858             window
8859           - Cast opacity values to Int32 to avoid crashes with certain
8860             values
8861           - Added disabled code paths that protect against illegal cross-
8862             thread painting (Developers.exe)
8864 2006-05-16  Peter Dennis Bartok  <pbartok@novell.com>
8866         * ProgressBar.cs: Invalidate the control when it's resized
8867           since block size is based on control size. (#78388)
8869 2006-05-16  Miguel de Icaza  <miguel@novell.com>
8871         * DataGrid.cs (SetDataBinding): per the discussion on irc, instead
8872         of setting the incoming argument to the "reset" value, we set the
8873         this.datamember to string.empty (before we were invalidating the
8874         incoming data).   
8876         Fixes 78420
8878 2006-05-16  Peter Dennis Bartok  <pbartok@novell.com> 
8880         * Form.cs: Only apply transparency settings after the form
8881           is created. (Fixes #77800)
8883 2006-05-16  Peter Dennis Bartok  <pbartok@novell.com>
8885         * ApplicationContext.cs: Grab the HandleDestroyed event so
8886           we know when to fire OnMainFormClosed 
8888 2006-05-16  Peter Dennis Bartok  <pbartok@novell.com> 
8890         * Application.cs: Introduced sub-class to allow tracking of
8891           threads and centralized triggering of the event mess for
8892           ThreadExit, AppExit, etc..  (#76156)
8894 2006-05-16  Alexander Olk  <alex.olk@googlemail.com>
8896         * MimeIcon.cs:
8897           - Do not return a null icon index value for a mime subclass.
8898             Instead try the main mime type class too.
8899           - Seems that some newer distributions don't have a link to some
8900             gnome default icons anymore. So check the default gnome dir too.
8901           
8903 2006-05-16  Jackson Harper  <jackson@ximian.com>
8905         * MdiClient.cs: Don't paint the parent background image if we have
8906         our own background image.
8908 2006-05-16  Peter Dennis Bartok  <pbartok@novell.com> 
8910         * Control.cs:
8911           - PerformLayout: Do not shrink space filled by DockStyle.Fill
8912             controls, all filled controls are supposed to overlap (#78080)
8913           - UpdateZOrder is supposed to update the control's z-order in the
8914             parent's z-order chain. Fixed to behave like that
8915           - BringToFront: Removed obsolete code
8916           - SendToBack: Simplyfied
8917           - SetChildIndex: Trigger layout calculations when Z-order changes
8918             since layout is done by z-order
8920 2006-05-16  Chris Toshok  <toshok@ximian.com>
8922         [ fixes bug #78410 ]
8923         * DataGrid.cs (set_AlternatingBackColor): use
8924         grid_drawing.InvalidateCells instead of Refresh().
8925         (set_BackColor): call grid_drawing.InvalidateCells.
8926         (set_BackgroundColor): use Invalidate instead of Refresh.
8928         * DataGridDrawingLogic.cs (InvalidateCells): new function, just
8929         invalidate the cell area.
8931 2006-05-15  Chris Toshok  <toshok@ximian.com>
8933         [ fixes bug #78011 ]
8934         * ThemeWin32Classic.cs (DataGridPaintRows): pass the clip argument
8935         on to DataGridPaintRow.
8936         (DataGridPaintRow): take a clip argument, and only draw the cells
8937         which intersect it.  same with the not_usedarea.
8939         * Theme.cs (DataGridPaintRow) add @clip parameter.
8941         * DataGrid.cs (ScrollToColumnInPixels): simplify, use
8942         XplatUI.ScrollWindow.
8943         (ScrollToRow): same.
8945         * DataGridDrawingLogic.cs (UpdateVisibleColumn): fix corner case
8946         with last column which was causing a gray swath to appear with the
8947         XplatUI.ScrollWindow code.
8949 2006-05-15  Chris Toshok  <toshok@ximian.com>
8951         * ListBox.cs (HorizontalScrollEvent): in the non-multicolumn case,
8952         use XplatUI.ScrollWindow.
8953         (VerticalScrollEvent): use XplatUI.ScrollWindow.
8955 2006-05-15  Peter Dennis Bartok  <pbartok@novell.com> 
8957         * TextBoxBase.cs: Added handling of middle-button paste for X11. (#78375)
8959 2006-05-15  Peter Dennis Bartok  <pbartok@novell.com>
8961         * Cursors.cs: For X11, read NWSE and NESW cursors from our resource
8962           file since there are no equivalent X11 cursors
8964 2006-05-15  Atsushi Enomoto  <atsushi@ximian.com>
8966         * MonthCalendar.cs : DateTimePicker should reflect selected date
8967           on mouse*up*, not mouse*down*. Fixed originally reported part of
8968           bug #76474.
8970 2006-05-15  Atsushi Enomoto  <atsushi@ximian.com>
8972         * TabControl.cs : When argument index is equal or more than tab
8973           count, just ignore. Fixed bug #78395.
8975 2006-05-15  Peter Dennis Bartok  <pbartok@novell.com>
8977         * Control.cs: Dispose all child controls when control is diposed (#78394)
8979 2006-05-14  Alexander Olk  <alex.olk@googlemail.com>
8981         * ColorDialog.cs: Finally it is possible to select the color with
8982           the text boxes
8984 2006-05-14  Alexander Olk  <alex.olk@googlemail.com>
8986         * PrintDialog.cs: Fix typo
8988 2006-05-14  Alexander Olk  <alex.olk@googlemail.com>
8990         * PrintDialog.cs: PrintDialog is not resizable
8991         * ThemeWin32Classic.cs: Draw non links in LinkLabel with the correct
8992           color. Made some ToolBar drawing methods protected virtual.
8994 2006-05-13  Jordi Mas i Hernandez <jordimash@gmail.com>
8996         * PrintDialog.cs: Implementation of the PrintDialog
8998 2006-05-12  Chris Toshok  <toshok@ximian.com>
9000         * ScrollBar.cs (set_Value): don't use Dirty/Invalidate to move the
9001         thumb, instead use MoveThumb.  This has the side effect of making
9002         most of the other thumb moving machinery use MoveThumb as well.
9003         (OnHandleCreated): pass false for @dirty to UpdateThumbPos, as we
9004         need to actually invalidate the rectangle where the new thumb will
9005         go.
9006         (MoveThumb): use XplatUI.ScrollWindow to move the thumb around.
9007         We force an Update() after, so it's not as fast as it could be,
9008         but at least there's zero flicker and no droppings.
9009         (OnMouseMoveSB): in the thumb dragging case, use MoveThumb.
9010         (UpdateThumbPos): add another argument (dirty), which says whether
9011         or not to calculate/add dirty regions which we later invalidate.
9012         For cases where we know we're going to use MoveThumb, we pass
9013         false for this.  Otherwise, pass true.
9015 2006-05-12  Jackson Harper  <jackson@ximian.com>
9017         * ThemeWin32Class.cs: Fixes for alignment and icon rendering in
9018         the status bar.
9019         
9020 2006-05-12  Peter Dennis Bartok  <pbartok@novell.com>
9022         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs: Added new SetClipRegion
9023           and GetClipRegion methods and UserClipWontExposeParent property.
9024         * XplatUIWin32.cs: Implemented SetClipRegion/GetClipRegion methods,
9025           overriding UserClipWontExposeParent property, setting to false, since
9026           Win32 handles the required expose messages to draw our clipped parent
9027           areas internally
9028         * XplatUIX11.cs: Implemented SetClipRegion and GetClipRegion; updated
9029           PaintEventStart to set the user clip region if set.
9030         * Control.cs: 
9031           - Now internally tracking the Region for the control since we need to
9032             store it if the handle is not yet created and only set it when it
9033             becomes created. Before setting the region forced handle creation
9034           - Added code to draw the parents underneath a user-clipped region
9035         * Hwnd.cs: Added UserClip property
9037 2006-05-12  Chris Toshok  <toshok@ximian.com>
9039         * ScrollBar.cs (set_LargeChange): Refresh() -> InvalidateDirty()
9040         (set_Maximum): same.
9041         (set_Minimum): same.
9042         (set_SmallChange): same.
9043         (OnMouseUpSB): remove the call to refresh when releasing the
9044         thumb.  We shouldn't need it.
9045         
9046 2006-05-12  Miguel de Icaza  <miguel@novell.com>
9048         * StatusBar.cs (UpdatePanel): If the panel being refreshes has the
9049         AutoSize set to None, we do not need to relayout everything, we
9050         just need to invalidate the current region.
9052         (Draw): Do not draw the entire ClientArea, just redraw the
9053         clip area being passed.
9055         * MdiClient.cs: Make MdiClient constructor with the Form argument
9056         internal. 
9058 2006-05-12  Jackson Harper  <jackson@ximian.com>
9060         * ThemeWin32Classic.cs (DrawToolBar): Flat toolbars get their
9061         parents background image,  but strangely not their own.
9062         - (DrawStatusBarPanel): Take into account horizontal alignment
9063         when drawing the strings and icons.
9065 2006-05-12  Mike Kestner  <mkestner@novell.com>
9067         * ListBox.cs: avoid invalidations for focus when the collection is
9068         empty. 
9070 2006-05-12  Chris Toshok  <toshok@ximian.com>
9072         * ScrollBar.cs (OnMouseMoveSB): when dragging the thumb, don't
9073         invalidate the entire thumb area.  Call InvalidateDirty which
9074         limits the redraw to the thumb itself and surrounding pixels.
9076         * XplatUIX11.cs (ScrollWindow): optimize copying.
9077         
9078 2006-05-12  Chris Toshok  <toshok@ximian.com>
9080         * DataGridDrawingLogic.cs: make CalcGridAreas non-reentrant.
9081         Figure out the positioning/layout in a single pass instead of
9082         multiple recursive invocations.  Speeds up the initial display of
9083         the data grid.  Also, make many things private that were
9084         originally public but unused outside this class.
9086 2006-05-11  Jackson Harper  <jackson@ximian.com>
9088         * MdiClient.cs: Improved layout code.
9090 2006-05-11  Jonathan Chambers  <jonathan.chambers@ansys.com>
9092         * PropertyGrid.cs : Only check GetPropertiesSupported for properties,
9093           not SelectedObject.
9095 2006-05-11  Chris Toshok  <toshok@ximian.com>
9097         * Hwnd.cs (Invalid): don't start off with Rectangle.Empty, as
9098         union of that will always be {0,0,width,height}.
9100 2006-05-11  Jackson Harper  <jackson@ximian.com>
9102         * Form.cs: Match MS's DefaultSize for forms (they must have
9103         changed the size in sp2).
9105 2006-05-11  Atsushi Enomoto  <atsushi@ximian.com>
9107         * TextBoxBase.cs : implement CTRL+A (select all). Fixed bug #78368.
9109 2006-05-11  Atsushi Enomoto  <atsushi@ximian.com>
9111         * TextControl.cs : Fixed bug #78109. This incorrect position
9112           comparison caused crash on automatic line split.
9113         * TextBoxBase.cs : reduce duplicate code.
9115 2006-05-10  Jackson Harper  <jackson@ximian.com>
9117         * MdiClient.cs: Active form is only sent to the back when using
9118         the Next form functionality, when a form is clicked the current
9119         active shouldn't be sent to the back.
9120         - Layout the mdi windows when the container is first made visible.
9121         * Form.cs: Give the MdiClient a ref to the containing form when we
9122         create it.
9123         
9124 2006-05-10  Atsushi Enomoto  <atsushi@ximian.com>
9126         * LinkLabel.cs : link_font could be uninitialized, so populate one
9127           before actual use. Fixed bug #78340.
9129 2006-05-10  Atsushi Enomoto  <atsushi@ximian.com>
9131         * XplatUIX11.cs : clipboard format native value is IntPtr.
9132           Fixed bug #78283.
9134 2006-05-10  Peter Dennis Bartok  <pbartok@novell.com>
9136         * Control.cs: 
9137           - Instead of showing context menus directly we send WM_CONTEXTMENU, 
9138             which is passed up the parent chain by DefWndProc
9139           - We now handle WM_CONTEXTMENU to display any menu, or pass it 
9140             to DefWndProc (#77956)
9141         * XplatUIX11.cs: Added handling of WM_CONTEXTMENU (pass up) to DefWndProc
9143 2006-05-10  Jackson Harper  <jackson@ximian.com>
9145         * MdiClient.cs: We need to remove the controls from the mdi
9146         collection, when we close the window.
9147         * MdiWindowManager.cs: Special handling of closing mdi windows.
9148         * InternalWindowManager.cs: Make the close method virtual so the
9149         mdi window manager can handle it specially.
9151 2006-05-10  Jordi Mas i Hernandez <jordimash@gmail.com>
9153         * DataGrid.cs:
9154           - Recalculate grid when the data source has changed
9155           - Matches styles provided by user from all data sources types
9156         * DataGridTableStyle.cs: For columns that provided by the user set the
9157         with the preferred value is there was unassigned.
9158         * CurrencyManager.cs: throw OnItemChanged event
9160 2006-05-10  Peter Dennis Bartok  <pbartok@novell.com> 
9162         * PictureBox.cs: Don't animate until handle is created. Start animation
9163           when handle is created.
9165 2006-05-10  Peter Dennis Bartok  <pbartok@novell.com>
9167         * XplatUIX11.cs, Hwnd.cs: Adopted Mike's patch from #77979 to match
9168           current codebase.
9169         * XEventQueue.cs: We don't need to provide the extra info
9171 2006-05-10  Jackson Harper  <jackson@ximian.com>
9173         * MdiClient.cs: If the mdi clients parent form has a background
9174         image set, we draw that background image for the mdi area's
9175         background.
9177 2006-05-10  Peter Dennis Bartok  <pbartok@novell.com>
9179         * TextBoxBase.cs: Set IBeam cursor (#78347)
9181 2006-05-10  Mike Kestner  <mkestner@novell.com>
9183         * ToolBar.cs: fix some text padding issues with ButtonSize
9184         calculation. Update the default size to match MS documentation.
9185         * ToolBarButton.cs: use ToolBar.ButtonSize for layout of unspecified
9186         button size. Fixes #78296.
9188 2006-05-10  Mike Kestner  <mkestner@novell.com>
9190         * ListBox.cs: use is_visible for scrollbar positioning in case the
9191         control isn't on screen yet.  Fix off by one with Right vs Width
9192         usage.  Update Scrollbars in SetBoundsCore. Fixes #78188 and #78258.
9193         
9194 2006-05-10  Jackson Harper  <jackson@ximian.com>
9196         * X11Dnd.cs: Drop to a control with another control on top of it.
9197         * ToolBar.cs: Work on a copy of the buttons list, so that it can
9198         be modified in click handlers. TODO: Look for similar problems in
9199         other controls.
9201 2006-05-09  Jackson Harper  <jackson@ximian.com>
9203         * Form.cs: Window managers need the old window state when setting
9204         window state now.
9205         * InternalWindowManager.cs: Allow the base mdi window manager to
9206         handle more of the MDI only stuff (like maximize buttons).
9207         * MdiWindowManager.cs: Fix some snafus in changing the window
9208         state.  Add all the menu functionality, for both popup and
9209         maximized menus.
9210         * MdiClient.cs: When a new form is selected the currently
9211         activated form is sent to the back, this matches MS.
9212         - Implement a new method to activate the next mdi child window.
9214 2006-05-08  Peter Dennis Bartok  <pbartok@novell.com>
9216         * Control.cs: 
9217           - Added new InternalCapture method to allow controls to prevent
9218             the capture behaviour on the click handlers
9219           - Switched to use InternalCapture
9220         * ComboBox.cs:
9221           - Using InternalCapture to prevent mouse captures from being released
9222             on mouse button release (Fixes #78100)
9223         * XplatUIX11.cs (DeriveStyles): Now checks caption state and only
9224           returns Form borders if a caption is present. (Fixes #78310)
9226 2006-05-08  Peter Dennis Bartok  <pbartok@novell.com> 
9228         * TreeNode.cs: Changed serialization .ctor to not require every field
9229           to be present. (#78265)
9230         * OwnerDrawPropertyBag.cs: Added serialization .ctor
9232 2006-05-05  Alexander Olk  <alex.olk@googlemail.com>
9234         * MimeIcon.cs: for is faster than foreach for strings.
9236 2006-05-05  Mike Kestner  <mkestner@novell.com>
9238         * CheckedListBox.cs: update check handling code to not use selected.
9239         * ListBox.cs: rewrite of mouse selection handling to correspond to MS
9240         behavior for visual feedback, motion response, shift/ctrl handling,
9241         and properly deal with all 4 selection modes. Updates to bounds
9242         handling logic.  Add scroll wheel support. [Fixes #77842]
9244 2006-05-05  Peter Dennis Bartok  <pbartok@novell.com> 
9246         * ListView.cs:
9247           - Moved adding of Implicit controls into .ctor. That way, subsequent
9248             creation of the controls will not cause them to think they are 
9249             toplevel windows (fixes #78200 header problem)
9250           - Added 2.0 ShowGroups and UseCompatibleStateImageBehaviour
9251           - Switched visibility setting of header control to use internal field
9252             to avoid triggering handle creation
9253           - Now checking if handle is created before causing a refresh when items
9254             are added (This makes us now match handle creation time with MS)
9255         * Splitter.cs: Removed loading of private splitter cursor, switched to
9256           Cursors version now that that is loading the right ones
9257         * Cursors.cs: Load proper splitter cursors from resources
9258         * Cursor.cs: Added second method of loading resource cursors for the 
9259           VS.Net users amongst us
9261 2006-05-05  Mike Kestner  <mkestner@novell.com>
9263         * ListView.cs: give header_control a minimum size based on the
9264         ListView size.
9266 2006-05-05  Peter Dennis Bartok  <pbartok@novell.com> 
9268         * XplatUIX11.cs: WS_EX_TOPMOST requires window to be on top. A dock
9269           window seems to do that with metacity, so set that type. (#78120)
9271 2006-05-05  Mike Kestner  <mkestner@novell.com>
9273         * ListViewItem.cs: fix Details mode checkbox layout bug.
9274         * ThemeWin32Classic.cs: draw a ListView column header for unused space
9275         at the end of the header, if it exists. [Fixes for #78200]
9277 2006-05-04  Jackson Harper  <jackson@ximian.com>
9279         * MdiClient.cs: Add a helper property to get the container form.
9280         * MdiWindowManager.cs: We have to make sure to use the menu origin
9281         when drawing the icons and buttons, this fixes maximized window
9282         icons/buttons on win32.
9283         * InternalWindowManager.cs: Reset the restore captions when a
9284         window goes from Maximized to Minimized and vice versa. Move the
9285         DrawMaximizedButtons into the MdiWindowManager source, tool
9286         windows can't be maximized. NOTE: This could use a little
9287         refactoring if time ever permits.
9288         
9289 2006-05-03  Jonathan Chambers  <jonathan.chambers@ansys.com>
9291         * TextBox.cs: Add MWFCategoryAttributes
9292         * TextBoxBase.cs: Add MWFCategoryAttributes
9293         * Form.cs: Add MWFCategoryAttributes
9295 2006-05-03  Jonathan Chambers  <jonathan.chambers@ansys.com>
9297         * Control.cs: Add MWFCategoryAttributes
9298         * ScrollableControl.cs: Add MWFCategoryAttributes
9300 2006-05-03  Alexander Olk  <alex.olk@googlemail.com>
9302         * ThemeWin32Classic.cs: Draw the ToolBar top border only if
9303           Divider is true. Fix a little glitch in PropertyToolBar
9304           drawing code
9306 2006-05-02  Peter Dennis Bartok  <pbartok@novell.com> 
9308         * Control.cs:
9309           - Dispose: Call base.Dispose, this causes the disposed event
9310             to be fired (and probably other, more important stuff)
9311           - SetVisibleCore: Set is_visible to true after creating the
9312             window so that the window still gets created invisible (if
9313             WM_VISIBLE isn't set). That will cause the ShowWindow afterwards
9314             to generate a WM_ACTIVE message
9315         * Form.cs: Call Dispose when we want to destroy the window, instead of
9316           just destroying the handle (Dispose will do that for us)
9317         * XplatUIX11.cs:
9318           - RootWindow also needs a queue, so we can properly process the
9319             property change events from RootWindow (like Activate)
9320           - Generatic synthetic WM_ACTIVE message when the active window is
9321             being destroyed
9323 2006-05-01  Peter Dennis Bartok  <pbartok@novell.com> 
9325         * LinkLabel.cs: Trigger a recalc of our label dimensions when
9326           bounds are changed
9328 2006-05-01  Peter Dennis Bartok  <pbartok@novell.com>
9330         * ThemeWin32Classic.cs (ButtonBase_DrawImage): Use the proper image
9331           for determining width and height (image might not be assigned if
9332           we're drawing an imagelist)
9334 2006-05-01  Peter Dennis Bartok  <pbartok@novell.com> 
9336         * XplatUI.cs, XplatUIDriver.cs: Added MenuHeight property
9337         * XplatUIWin32.cs: Overriding new MenuHeight property, retrieving
9338           height from system
9339         * Theme.cs: No longer returns hardcoded menu height, instead calls
9340           new driver method
9341         * Form.cs (OnLoad): Scaling happens before triggering Load events 
9342           on MS (# 78257)
9344 2006-05-01  Mike Kestner  <mkestner@novell.com>
9346         * MenuItem.cs: fix NRE for text == null.  Fixes #78250.
9348 2006-04-30  Peter Dennis Bartok  <pbartok@novell.com> 
9350         * TextBoxBase.cs: Removed Fixme
9351         * RichTextBox.cs (set_RTF): Invalidate document after update (#78247)
9353 2006-04-30  Peter Dennis Bartok  <pbartok@novell.com>
9355         * XplatUIX11.cs:
9356           - ScrollWindow: We were passing hwnd.ClientRectangle which returns
9357             the rectangle relative to the parent, considering borders. We
9358             don't really want that.
9359           - ScrollWindow: Fixed warning to be more understandable
9360         * TextBoxBase.cs: Fixed ScrollWindow calculations to consider our
9361           scrollbars and scroll only the visible area
9362         * RichTextBox.cs: Removed debug output
9364 2006-04-29  Peter Dennis Bartok  <pbartok@novell.com>
9366         * NumericUpDown.cs (Text): Just use base
9367         * UpDownBase.cs: Ensure txtView is created before using it
9369 2006-04-29  Peter Dennis Bartok  <pbartok@novell.com> 
9371         * XplatUIX11.cs (SetWindowTransparency): Casting opacity to int before
9372           casting to IntPtr to avoid 64bit overflow errors
9374 2006-04-29  Peter Dennis Bartok  <pbartok@novell.com>
9376         * Control.cs:
9377           - AllowDrop: Don't force handle creation.
9378           - CreateHandle: Added call to tell driver if we're allowed to drop
9380 2006-04-27  Alexander Olk  <alex.olk@googlemail.com>
9382         * FileDialog.cs: Remember the last directory not only for the
9383           current instance but also for new FileDialog instances.
9385 2006-04-29  Peter Dennis Bartok  <pbartok@novell.com> 
9386         
9387         * XplatUIX11.cs: Forgot to set the queue on the foster parent. That
9388           broke sending async messages
9390 2006-04-29  Peter Dennis Bartok  <pbartok@novell.com>
9392         * XplatUIX11.cs:
9393           - ScrollWindow: Fixed method. We finally generate expose events again
9394             for scrolled areas. This was causing 'garbage' when scrolling
9395             textbox and other controls that used ScrollWindow
9396           - Switched from using the regular queue for paint events to the MS 
9397             model of 'generating' paint events when the queue is empty.
9398             We use the new XQueueEvent.Paint subclass to store which windows
9399             need painting.
9400           - AddExpose now takes the x/y/width/height of the exposed area
9401             and inserts the window into the paint queue if not already there
9402           - InvalidateWholeWindow: Switched to use new AddExpose method
9403           - UpdateMessageQueue: Added which queue to monitor for paint events
9404           - DefWndProc: Added default handler for WM_PAINT and WM_NCPAINT in
9405             the unlikely case nothing above handles it. We reset the expose
9406             pending states to get them off the queue.
9407           - GetMessage: Now pulls a paint event if no other events are in the
9408             queue
9409           - Invalidate: Switched to new AddExpose method
9410           - PeekMessage: Updated to understand pending paint events
9411           - UpdateWindow: Fixed logic bug. We were only updating if the window
9412             didn't need updating. Also switched to sending WM_PAINT directly,
9413             like MS does.
9414         * XEventQueue.cs: Added Paint queue support. Allows enqueue/dequeue
9415           and random access Remove(). The random access is needed to handle
9416           UpdateWindow() where a WM_PAINT is sent directly without accessing
9417           the queue.
9418         * ScrollBar.cs: Added Update() calls to cause immediate updates to
9419           allow for better feedback when scrolling. Scrollbars are small and
9420           the immediate update should make it 'feel' more responsive without
9421           slowing things down. ScrollBar still needs it's invaliate logic
9422           updated to not always invalidate the whole bar on certain changes.
9424 2006-04-28 Gonzalo Paniagua Javier <gonzalo@ximian.com>
9426         * Control.cs:
9427         (BackColor): if the control does not support a transparent background,
9428         return the default backcolor when the parent backcolor is transparent.
9430 2006-04-28  Peter Dennis Bartok  <pbartok@novell.com>
9432         * Application.cs: Updated to new StartLoop/GetMessage API
9433         * RichTextBox.cs: Provide some output on RTF parsing errors
9434         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs, XplatUIWin32.cs: Added
9435           new queue_id argument to GetMessage and PeekMessage to allow faster
9436           handling of per-thread queues in drivers.
9437         * Hwnd.cs: Added Queue tracking and property
9438         * MenuAPI.cs: Updated to new StartLoop/GetMessage API
9439         * XEventQueue.cs: Added thread trackingA
9440         * PropertyGridView.cs: Updated to new StartLoop/GetMessage API
9441         * XplatUIX11.cs:
9442           - Implemented new per-thread queue
9443           - GetMessage: Fixed return/break behaviour on several cases. We were
9444             returning stale messages in some cases, instead of just processing
9445             the next message
9447 2006-04-27  Jonathan Chambers  <jonathan.chambers@ansys.com>
9449         * PropertyGrid.cs: Call GetPropertiesSupported on TypeConverter.
9451 2006-04-27  Peter Dennis Bartok  <pbartok@novell.com>
9453         * ThemeWin32Classic.cs (DrawToolBar): Refactored, simplified the logic,
9454           fixed off-by-one comparisons between Width/Height and Right/Bottom.
9456 2006-04-27  Jonathan Chambers  <jonathan.chambers@ansys.com>
9458         * PropertyGridView.cs: Fix drop down width.
9460 2006-04-27  Alexander Olk  <alex.olk@googlemail.com>
9462         * ThemeWin32Classic.cs: Peter thinks that three additional lines are
9463           a mess in DrawToolBar, so I removed one of them.
9465 2006-04-27  Alexander Olk  <alex.olk@googlemail.com>
9467         * ThemeWin32Classic.cs: Draw the ToolBar border lines only if
9468           needed (clip). Otherwise we get artifacts.
9470 2006-04-26  Peter Dennis Bartok  <pbartok@novell.com>
9472         * FixedSizeTextBox.cs: Added constructor to allow specifying which
9473           dimension is fixed
9474         * UpDownBase.cs: Set the spinner control to be fixed height vertical,
9475           and switched FixedSizeTextBox to only be fixed vertical (#78116)
9476         * Form.cs: Not applying the 'MS 0.08 fudge factor' for a given dimension
9477           if it matches the scale base font (avoids unneeded scaling)
9479 2006-04-26  Alexander Olk  <alex.olk@googlemail.com>
9481         * X11DesktopColors.cs: One gtk_init_check should be enough
9483 2006-04-26  Peter Dennis Bartok  <pbartok@novell.com> 
9485         * TextBoxBase.cs: Moved Backspace handling into WM_CHAR block to
9486           match MS behaviour
9488 2006-04-26  Peter Dennis Bartok  <pbartok@novell.com>
9490         * TextBoxBase.cs: 
9491           - Generate OnTextChanged for Backspace even if we're only deleting
9492             the current selection
9493           - When setting the Text property, only select all text if the
9494             control does not have focus when it is being set. Otherwise
9495             just place the cursor at the beginning of the control
9497 2006-04-26  Alexander Olk  <alex.olk@googlemail.com>
9499         * ThemeWin32Classic.cs: ToolBars get drawn with two lines at the top.
9500           Added a little helper to draw PropertyGrid ToolBar with a different
9501           border and a different BackColor.
9502         * PropertyGrid.cs: Some background parts didn't get painted with the
9503           correct background color. Added a class that helps us to draw the
9504           correct border for PropertyGridView and a class that helps us to
9505           draw ToolBars with a different backcolor
9506         * PropertyGridView.cs: Draw PlusMinus with the correct colors.
9508 2006-04-25  Jonathan Chambers  <jonathan.chambers@ansys.com>
9510         * PropertyGrid.cs: Bug 78196, font size, and splitter location.
9511         * PropertyGridView.cs: Bug 78196, font size, and splitter location.
9513 2006-04-25  Peter Dennis Bartok  <pbartok@novell.com> 
9515         * XplatUIWin32.cs (DIBtoImage): ORing instead of ANDing the alpha
9516           into the palette entries. Also, since we're working on a copy
9517           we needed to copy the palette back onto the bitmap.
9518         * Cursor.cs: Same fix as XplatUIWin32.cs.
9520 2006-04-25  Peter Dennis Bartok  <pbartok@novell.com>
9522         * ImageListStreamer.cs: Need to read the var (or we're off)
9524 2006-04-25  Peter Dennis Bartok  <pbartok@novell.com> 
9526         * TextControl.cs, ComboBox.cs, CommonDialog.cs, Theme.cs, 
9527           XplatUIWin32.cs, RichTextBox.cs, ImageListStreamer.cs,
9528           TextBoxBase.cs: Unused var fixes
9529         * AxHost.cs: Small 2.0 fix
9530         * XplatUIX11.cs: Switched to IntPtr from int for XA_CARDINAL atoms 
9531           as it seems that is what at least Metacity expects. This will make
9532           icons show up on 64bit platforms. We still have some 64bit size
9533           issues, though, since the startup app window size still won't match.
9535 2006-04-25  Mike Kestner  <mkestner@novell.com>
9537         * *.cs: cleanup newly reported exception var unused warnings.
9539 2006-04-25  Alexander Olk  <alex.olk@googlemail.com>
9541         * ThemeWin32Classic.cs: Button image alignment now matches exactly
9542           ms
9544 2006-04-25  Alexander Olk  <alex.olk@googlemail.com>
9546         * ThemeWin32Classic.cs: Fixed drawing code for buttons with an
9547           image. The image position is always the same, no matter if the
9548           button is pressed or not.
9550 2006-04-25  Alexander Olk  <alex.olk@googlemail.com>
9552         * FileDialog.cs: SaveFileDialog shouldn't rely on a MWFFileView
9553           selection and set the correct filename for SaveFileDialog.
9554           Patch by Emery Conrad.
9556 2006-04-24  Mike Kestner  <mkestner@novell.com>
9558         * ListView.cs (LastVisibleIndex): when in List mode of Alignment.Left,
9559         check for item.X outside the ClientRect instead of item.Y. Fixes
9560         #78151.
9562 2006-04-21 Gonzalo Paniagua Javier <gonzalo@ximian.com>
9564         * ImageListStreamer.cs: some images store a wrong grow factor, so don't
9565         trust that value blindly and do some sanity check. Fixes bug #77814.
9567 2006-04-21 Gonzalo Paniagua Javier <gonzalo@ximian.com>
9569         * ImageListStreamer.cs: save the mask as a 1bpp image.
9571 2006-04-21  Mike Kestner  <mkestner@novell.com>
9573         * CheckedListBox.cs: maintain CheckStatus here. Use DrawItemState to
9574         pass Checked and Indeterminate to the Theme Engine. Improve
9575         encapsulation with ListBox.
9576         * ListBox.cs: Keep a StringFormat instead of calculating it every item
9577         draw. Kill ListBoxItem. Refactor away the ListBoxInfo and ListBoxItem
9578         nested types.  Move all CheckState functionality to CheckedListBox.
9579         Make IntegralHeight work like MS.  Rewrite of Layout engine.  Fix
9580         OwnerDrawVariable layout/rendering.  Fix multicolumn rendering.  Fix
9581         ScrollAlwaysVisible handling. Refactor "selected" collections to use a
9582         single base list. Fix scrollbar sizing and placement to mirror MS.
9583         * Theme.cs: remove CheckedListBoxCheckRectangle. It wasn't really
9584         used.
9585         * ThemeWin32Classic.cs: implement Indeterminate CheckState rendering
9586         for CheckedListBox by using new DrawItemState info.  Center the
9587         checkboxes on the items. Use new StringFormat property.
9589 2006-04-18  Jackson Harper  <jackson@ximian.com>
9591         * Form.cs: MdiChildren don't do default locations the same way as
9592         regular forms.  This prevents a crash when trying to position the
9593         mdi windows.
9595 2006-04-17  Jonathan Chambers  <jonathan.chambers@ansys.com>
9597         * PropertyGridTextBox.cs: Formatting, copyright
9598         * PropertiesTab.cs: Formatting
9599         * PropertyGrid.cs: Formatting
9600         * PropertyGridView.cs: Formatting, fix drop down, enabled double 
9601           click toggling of values
9602           
9603 2006-04-17  Peter Dennis Bartok  <pbartok@novell.com> 
9605         * KeyPressEventArgs: Added 2.0 only setter for KeyChar
9606         * Control.cs (.ctor): verify_thread_handle is static, don't reset
9607           every time a control is created
9608         * Application.cs: Removed obsolete EnableRTLMirroring method
9610 2006-04-18  Gert Driesen  <drieseng@users.sourceforge.net>
9612         * TabControl.cs: Avoid ArgumentOutOfRangeException when setting
9613         SelectedIndex to -1. Fixes bug #78121.
9615 2006-04-17  Jackson Harper  <jackson@ximian.com>
9617         * Binding.cs: Handle null values for Current and BindingContext.
9618         This occurs when binding is a little delayed.
9619         * CurrencyManager.cs: return null for Current when there are no
9620         items in the list.
9621         - Hookup to the listchanged event on the DataView and update
9622         bindings when the list is changed.  This fixes late binding of
9623         controls.
9625 2006-04-17  Jackson Harper  <jackson@ximian.com>
9627         * X11Dnd.cs:
9628         * XplatUIX11.cs: Drops should not create a mousedown. Patch by Tim
9629         Ringenbach.
9631 2006-04-15  Alexander Olk  <alex.olk@googlemail.com>
9633         * ThemeWin32Classic.cs: Draw disabled combo button in the correct
9634           place
9635         * ComboBox.cs: If the combobox is disabled call CPDrawComboButton
9636           with the correct ButtonState
9638 2006-04-14  Peter Dennis Bartok  <pbartok@novell.com>
9640         * XplatUIX11.cs: Improved distinguishing between window types to
9641           tell the WM a type closer to what the app wants (Fixes #78107)
9643 2006-04-14  Alexander Olk  <alex.olk@googlemail.com>
9645         * ThemeWin32Classic.cs: Fixed drawing of ContainerGrabHandle and
9646           GrabHandle
9648 2006-04-14  Alexander Olk  <alex.olk@googlemail.com>
9650         * ThemeWin32Classic.cs: Fixed size grip drawing and updated StatusBar
9651           drawing code to reflect the size grip changes
9653 2006-04-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
9655         * ImageListStreamer.cs: fix handling of the mask that follows the main
9656         bitmap when deserializing and serialize it properly. The generated mask
9657         should better be a 1bpp image, but I'll do that later.
9659 2006-04-13  Alexander Olk  <alex.olk@googlemail.com>
9661         * FileDialog.cs: Show something in the DirComboBox on *nix if the
9662           path doesn't fit into some of our Current.Places
9664 2006-04-13  Jackson Harper  <jackson@ximian.com>
9666         * ComboBox.cs: Use borders instead of drawing our own decorations,
9667         try to obey correct rules for heights.
9668         * Theme.cs:
9669         * ThemeNice.cs:
9670         * ThemeClearLooks.cs:
9671         * ThemeWin32Classic.cs: Remove combobox decoration drawing code,
9672         this is now handled by borders.
9673         - Remove unused DrawListBoxDecorationSize method.
9674         
9675 2006-04-13  Mike Kestner  <mkestner@novell.com>
9677         * MenuAPI.cs: null guarding for the disbled click check fixes crash
9678         reported by Alex.
9680 2006-04-13  Alexander Olk  <alex.olk@googlemail.com>
9682         * ThemeWin32Classic.cs: 
9683           - Fixed CPDrawStringDisabled
9684           - Corrected drawing of disabled menu items
9685           - Fixed drawing of disabled radio buttons (bug #78095)
9686           - Draw check in a disabled CheckBox with color ControlDark 
9688 2006-04-12  Peter Dennis Bartok  <pbartok@novell.com>
9690         * Form.cs: Use the provided width when calculating the menu size;
9691           when being maximized we get WM_NCCALCSIZE before WM_WINDOWPOSCHANGED
9692           and ClientSize.Width won't be updated yet
9693         * Application.cs: Use Visible instead of Show() to make form visible,
9694           this way we create the handle later and menusize is considered
9696 2006-04-12  Mike Kestner  <mkestner@novell.com>
9698         * MenuAPI.cs: ignore clicks on disabled menu items. Thanks to Alex for
9699         reporting.
9701 2006-04-12  Peter Dennis Bartok  <pbartok@novell.com>
9703         * TextBox.cs: Implemented context menu
9705 2006-04-12  Mike Kestner  <mkestner@novell.com>
9707         * ListView.cs: implement box selection. fixes #77838.
9708         * ThemeWin32Classic.cs: draw box select rect, remove a ResetClip.
9710 2006-04-12  Peter Dennis Bartok  <pbartok@novell.com> 
9712         * XplatUIX11.cs: Added setting of window type when transient window
9713           is created (metacity would move it otherwise)
9714         * X11Structs.cs: Added WINDOW_TYPE atoms
9715         * LinkLabel.cs: Override OnPaintBackgroundInternal and draw the
9716           background (the control is Opaque but still wants transparent
9717           backgrounds)
9719 2006-04-12  Peter Dennis Bartok  <pbartok@novell.com>
9721         * Control.cs: Added OnPaintBackgroundInternal to allow controls
9722           that set Opaque but don't mean it (like all ButtonBase-derived
9723           controls) to still draw their background
9724         * ButtonBase.cs: Override OnPaintBackgroundInternal and draw
9725           the background
9727 2006-04-12  Peter Dennis Bartok  <pbartok@novell.com> 
9729         * Control.cs (PaintControlBackground): Set the graphics object
9730           on our PaintEvent to null to prevent it from being disposed
9731           when the PaintEvent gets disposed
9733 2006-04-12  Alexander Olk  <alex.olk@googlemail.com>
9735         * ThemeWin32Classic.cs: Use even more SystemBrushes and SystemPens
9736         * ThemeNice.cs, ThemeClearlooks.cs: fix typo
9738 2006-04-12  Peter Dennis Bartok  <pbartok@novell.com>
9740         * Control.cs: 
9741           - Added transparency check to BackColor property. Transparent
9742             backgrounds are only allowed if the control styles permit it
9743           - Added recursive painting of parent control background and
9744             foreground if a control with a transparent backcolor is drawn
9745             (Thanks to Tim Ringenback for providing his 'hack' as a base
9746              for this patch) Fixes #77985 and #78026.
9747           - Added Opaque style check before calling OnPaintBackground, no
9748             need to draw the background if the control is opaque
9749           - Removed ControlAccessibleObject owner variable (inherited from
9750             base, no need to define again)
9751           - Added some documentation links explaining the drawing events
9752             and styles
9754 2006-04-11  Peter Dennis Bartok  <pbartok@novell.com> 
9756         * Splitter.cs (CalculateSplitPosition): Corrected the bad assumption
9757           that the affected control is the located at the left border of our
9758           parent (Fixes #77936)
9760 2006-04-11  Peter Dennis Bartok  <pbartok@novell.com>
9762         * TextBoxBase.cs: When rendering disabled or readonly controls,
9763           draw the background with 'Control' instead of 'Window' color as
9764           long as the user hasn't specifically set a color
9766 2006-04-11  Peter Dennis Bartok  <pbartok@novell.com> 
9768         * TextBoxBase.cs: Don't try to shortcut by checking against base.Text
9769           since that won't be updated if the user types text (only if it's
9770           programatically set)
9772 2006-04-11  Peter Dennis Bartok  <pbartok@novell.com>
9774         * ScrollableControl.cs: Calculate DisplayRect dynamically, so that
9775           layout changes do to app-triggered resizes will have the proper
9776           display rectangle for layout
9778 2006-04-11  Alexander Olk  <alex.olk@googlemail.com>
9780         * ThemeWin32Classic.cs:
9781           - Make use of the SystemBrushes and SystemPens wherever possible
9782           - Corrected some highlight colors
9783           - Corrected RadioButton and CheckBox FlatStyle.Flat and Popup
9784             drawing
9785         * Theme.cs: Added Empty field to CPColor struct
9787 2006-04-11  Peter Dennis Bartok  <pbartok@novell.com>
9789         * ScrollabeControl.cs: We need to consider whether or not a scrollbar
9790           is displayed when calculating the display rectangle. Thanks to Mike
9791           for teaching me the err of my ways.
9793 2006-04-10  Peter Dennis Bartok  <pbartok@novell.com>
9795         * ScrollableControl.cs:
9796           - Rewrote DisplayRectangle code, now returning the proper x/y coords 
9797             (instead of 0,0) and we now return the real width/height instead of
9798             just the clientrectangle, adjusted for padding. The rectangle is
9799             now cached and created by the new CalculateDisplayRectangle method.
9800           - Created new CalculateDisplayRectange method, which basically does
9801             what get_DisplayRectangle() did originally, but now using the 
9802             right edge instead of DisplayRectangle to determine the size of
9803             our scrollbars
9804           - get_Canvas(): Fixed it to properly calculate canvas for 
9805             right/bottom controls which seem to be placed to the right/bottom
9806             of any controls that have a fixed location
9807           - Removed TODO that's taken care of
9808           - Removed NotImplementeds and attempted to implement AdjustFormScrollBars
9809             and SetDisplayRectLocation according to new MSDN2 docs
9810           - Added call to PerformLayout in OnVisibleChanged, MS causes a layout
9811             event when that is called, this is added for compatibility
9812           - ScrollControlIntoView(): Implemented.
9813           - Switched scrollbars to be implicit, they shouldn't be selectable
9814         * ContainerControl: Now that ScrollControlIntoView is implemented, we 
9815           call it when the active control is set/changed
9816         * ScrollBar.cs: Added support for generating Win32 scrollbar messages
9817         * ImplicitHScrollBar.cs, ImplicitVScrollBar.cs: Now setting new base
9818           implicit_control variable (used for native Win32 message generation)
9819         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs: Added new 
9820           HorizontalScrollBarHeight and VerticalScrollBarWidth properties
9821         * ThemeWin32Classic.cs: Now calling the driver for the scrollbar sizes
9822         * XplatUIStructs.cs: Added ScrollBarCommands enum
9824 2006-04-10  Jackson Harper  <jackson@ximian.com>
9826         * ButtonBase.cs:
9827         * CheckedListBox.cs:
9828         * ComboBox.cs:
9829         * DataGrid.cs:
9830         * DataGridView.cs:
9831         * Form.cs:
9832         * GroupBox.cs:
9833         * ListBox.cs:
9834         * PrintPreviewControl.cs:
9835         * ProgressBar.cs:
9836         * PropertyGrid.cs:
9837         * Splitter.cs:
9838         * StatusBar.cs:
9839         * TrackBar.cs:
9840         * UpDownBase.cs: Fixup base event overrides.
9841         
9842 2006-04-06  Mike Kestner  <mkestner@novell.com>
9844         * ScrollBar.cs: fix "new event" declarations (#76509) and bounds check
9845         all user-initiated value changes to min <= value <= max-thumbsz+1.
9846         (set_Value): check for vert/horiz when calculating new thumb position.
9847         (LargeIncrement): bounds check to stop pos at max - thumb_size + 1
9848         like MS does.
9849         (OnMouseMoveSB): refactor the thumb dragging code and refine
9850         invalidation logic to reduce flicker.
9851         (SetEndPosition): bounds check to stop pos at max - thumb_size + 1
9852         (SmallIncrement): bounds check to stop pos at max - thumb_size + 1
9853         (UpdateThumbPosition): small code readability cleanup
9855 2006-04-10  Alexander Olk  <alex.olk@googlemail.com>
9857         * ThemeNice.cs: Small UI polishing. Draw borders a little bit
9858           different
9860 2006-04-08  Alexander Olk  <alex.olk@googlemail.com>
9862         * ThemeNice.cs: Use a better graphics effect when a button is pressed
9864 2006-04-08  Alexander Olk  <alex.olk@googlemail.com>
9866         * Theme.cs: Added GetDashPen and GetSizedPen to SystemResPool
9867         * ThemeWin32Classic.cs: Make use of the new SystemResPool methods.
9868           This dramatically reduces the number of Pen.Dispose calls. 
9869           Where possible call ResPool methods only once instead of calling it
9870           over and over again (for example for the same color).
9872 2006-04-06  Mike Kestner  <mkestner@novell.com>
9874         * TabControl.cs: fix for SelectedIndex updating on TabPage removals.
9875         Also remove an unused private field on the collection. Fixes #77972.
9877 2006-04-06  Alexander Olk  <alex.olk@googlemail.com>
9879         * ThemeNice.cs: Added ToolBar drawing code
9881 2006-04-06  Mike Kestner  <mkestner@novell.com>
9883         * Form.cs (ShowDialog): MS allows IWin32Window param to be a non-form.
9884         I'm assuming that means we need to look up the toplevel for the
9885         provided control. Fixes the crash trace in #77911 but exposes another
9886         crash in some strange reflection usage in NDocGui.
9888 2006-04-06  Alexander Olk  <alex.olk@googlemail.com>
9890         * ThemeNice.cs: Gave it a little silver touch and added Images
9891           method
9892         * FontDialog.cs: FontDialog is not resizable
9893         * FileDialg.cs: Added SizeGripStyle.Show
9895 2006-04-05  Jackson Harper  <jackson@ximian.com>
9897         * KeyboardLayouts.cs: Remove warning.
9899 2006-04-05  Jackson Harper  <jackson@ximian.com>
9901         * Control.cs: Enable OnPaintInternal so we can use it for drawing
9902         all of our controls instead of Paint +=.
9903         * ListBox.cs:
9904         * ListView.cs:
9905         * MenuAPI.cs:
9906         * MessageBox.cs:
9907         * NotifyIcon.cs:
9908         * ProgressBar.cs:
9909         * ScrollBar.cs:
9910         * Splitter.cs:
9911         * StatusBar.cs:
9912         * TabControl.cs:
9913         * TextBoxBase.cs:
9914         * ToolBar.cs:
9915         * TrackBar.cs:
9916         * UpDownBase.cs:
9917         * ComboBox.cs: Remove handling of WM_PAINT and WM_ERASEBKGND and
9918         use OnPaintInternal. Remove Width/Height and Visible checks in
9919         paint handler, this is done at a higher level now.
9920         * GroupBox.cs: Don't need to handle WM_ERASEBKGND anymore.
9921         * PaintEventArgs.cs: Add a handled flag so controls that don't
9922         want anymore painting after OnPaintInternal can make sure OnPaint
9923         isn't called.
9925 2006-04-05  Mike Kestner  <mkestner@novell.com>
9927         * Form.cs: fix the menu WndProc hacks to respect the native enabled
9928         state of the form, so that we don't process events when Modal dialogs
9929         are up. Fixes #77922.
9931 2006-04-05  Alexander Olk  <alex.olk@googlemail.com>
9933         * Mime.cs: Default for range length is 1 not 0. If set to 0 no match
9934           checking is done.
9936 2006-04-05  Mike Kestner  <mkestner@novell.com>
9938         * XplatUIX11.cs: fix typo in the EX_APPWINDOW transient patch.
9940 2006-04-05  Mike Kestner  <mkestner@novell.com>
9942         * ListView.cs (HeaderMouseMove): null guarding for the over column
9943         when setting up the drag_to_index.  Fixes #78015.
9945 2006-04-04  Peter Dennis Bartok  <pbartok@novell.com>
9947         * XplatUIX11.cs: If WS_EX_APPWINDOW isn't set we don't want to show up
9948           in the taskbar. Transient windows seem to accomplish that.
9950 2006-04-04  Peter Dennis Bartok  <pbartok@novell.com> 
9952         * Form.cs:
9953           - Re-enabled CreateParams.X/Y code for FormStartPosition
9954           - Added code for manual placement when creating the Control
9955           - Incomplete patch to treat MDI forms differently when
9956             setting the ClientSizeCore. (Still need to figure out handling
9957             x/y coords there)
9958         * XplatUIX11.cs:
9959           - When we're explicitly setting the X/Y position of a non-Child
9960             window, let the WM know. Metacity really wants this.
9962 2006-04-04  Alexander Olk  <alex.olk@googlemail.com>
9964         * ThemeNice.cs: Added CPDrawButton
9966 2006-04-04  Alexander Olk  <alex.olk@googlemail.com>
9968         * ThemeNice.cs: Changed the color for focused buttons and activated
9969           the arrows for small scroll buttons.
9971 2006-04-04  Alexander Olk  <alex.olk@googlemail.com>
9973         * ThemeWin32Classic.cs: Removed DrawFlatStyleButton, not needed
9974           anymore. Changed some method modifiers to protected (virtual)
9975         * ThemeClearlooks.cs: Updated to reflect the ThemeWin32Classic
9976           changes
9977         * ThemeNice.cs: Updated to reflect the ThemeWin32Classic changes.
9978           Updated drawing of menus, buttons and progressbars; added
9979           CPDrawBorder3D 
9981 2006-04-03 Gonzalo Paniagua Javier <gonzalo@ximian.com>
9983         * ImageListStreamer.cs: implemented serialization/deserialization
9984         of the images.
9986 2006-04-03  Alexander Olk  <alex.olk@googlemail.com>
9988         * ThemeWin32Classic.cs:
9989           - Removed all the DrawFrameControl stuff; CPDrawButton,
9990             CPDrawCheckBox and CPDrawRadioButton are now handled directly
9991             inside the methods
9992           - Updated and corrected the drawing code of CPDrawButton,
9993             CPDrawCheckBox and CPDrawRadioButton to better match ms
9994           - Updated theme checkbox and radiobutton code to use the CP*
9995             methods
9997 2006-03-31  Peter Dennis Bartok  <pbartok@novell.com> 
9999         * XplatUIX11.cs: Enable clipping again now that the libgdiplus
10000           bug is fixed
10002 2006-03-31  Jackson Harper  <jackson@ximian.com>
10004         * XplatUIX11.cs: Somehow we get SETCURSORS for bad windows
10005         sometimes.
10006         * UpDownBase.cs: Don't CreateGraphics manually, use a
10007         Refresh. Ideally we would invalidate the correct areas here.
10009 2006-03-31  Peter Dennis Bartok  <pbartok@novell.com> 
10011         * XplatUIX11.cs: 
10012           - We now track the mapping state of windows. If a window (or 
10013             one of it's parents) is not mapped we no longer permit
10014             WM_PAINT messages to be generated since we'd otherwise get 
10015             lots of BadMatch X errors. Jackson did all the work figuring
10016             out the problem.
10017           - Destroying the caret if the window it's contained in is 
10018             destroyed. Can't use regular DestroyCaret method since it
10019             might fall into a drawing function (trying to remove the
10020             caret) and with that generate new BadMatch errors. Again,
10021             Jackson tracked this down.
10022           - Changed DestroyChildWindows to SendWMDestroyMessages, we now
10023             make sure we send the messages to all windows. (The old code
10024             would send the WM_DESTROY to the window, and then all child
10025             windows would be 'gone' because the WM_DESTROY handle lookup
10026             would no longer find the destroyed window)
10027         * Hwnd.cs: Added Mapping property to track mapping state of hwnd
10028         * X11Structs.cs: Added WindowType enum for MapWindow/UnmapWindow
10030 2006-03-31  Jackson Harper  <jackson@ximian.com>
10032         * ScrollableControl.cs: Dont recalc if we are not visible.
10034 2006-03-31  Mike Kestner  <mkestner@novell.com>
10036         * Control.cs (SetVisibleCore): move the CreateControl call up ahead of
10037         the visibility branch.
10039 2006-03-31  Jackson Harper  <jackson@ximian.com>
10041         * ScrollBar.cs: Cap values when incrementing/decrementing.
10043 2006-03-31  Mike Kestner  <mkestner@novell.com>
10045         * MenuAPI.cs: setup menu.tracker for popup/context menus.
10046         * ToolTip.cs: guard against timer expirations with no active control.
10047         Not sure why it happened.
10049 2006-03-31  Mike Kestner  <mkestner@novell.com>
10051         * ThemeWin32Classic.cs: add some horizontal padding space for the tip
10052         text.
10053         * ToolTip.cs: Position the tooltip based on where the cursor is at
10054         popup time, not at MouseEnter time.  Add a Down state so that we don't
10055         redisplay tips without a Leave. Use faked XplatUI.GetCursorInfo for
10056         positioning offset. Lookup DisplaySize at positioning time, since it
10057         can theoretically change during invocation.
10058         * XplatUIWin32.cs: fake GetCursorInfo until pdb can do it properly.
10059         * XplatUIX11.cs: fake GetCursorInfo until pdb can do it properly.
10061 2006-03-31  Alexander Olk  <alex.olk@googlemail.com>
10063         * ThemeWin32Classic.cs: Use CPDrawBorder3D to draw a GroupBox.
10064           Fixes behaviour when the Text property of the box is String.Empty
10066 2006-03-31  Peter Dennis Bartok  <pbartok@novell.com>
10068         * XplatUIX11.cs: Only send mouseleave for our client windows, not
10069           for the whole window (otherwise we get WM_MOUSE_LEAVE twice for
10070           a window)
10072 2006-03-31  Alexander Olk  <alex.olk@googlemail.com>
10074         * FileDialog.cs: Visual enhancement for the popup buttons in 
10075           PopupButtonPanel
10077 2006-03-31  Alexander Olk  <alex.olk@googlemail.com>
10079         * ColorDialog.cs, FontDialog.cs: Make use of the updated 3D border
10080           code
10082 2006-03-30  Alexander Olk  <alex.olk@googlemail.com>
10084         * ThemeWin32Classic.cs: Updated MainMenu drawing of selected and
10085           highlighted menu items to match ms
10087 2006-03-30  Peter Dennis Bartok  <pbartok@novell.com> 
10089         * XplatUIX11.cs: Don't set a clip rectangle unless it's not empty
10091 2006-03-30  Mike Kestner  <mkestner@novell.com>
10093         * Menu.cs (SelectedItem): use new MenuItem.Selected prop.
10094         * MenuAPI.cs: use new MenuItem.Selected prop. redraw MainMenu when we
10095         go active to account for HotLight to Selected transition.
10096         * MenuItem.cs: add internal Selected prop. Fill out the Status
10097         property by calculating it from item info. Add HotLight,
10098         NoAccelerator, Checked, Grayed, and Disabled flags where appropriate.
10100 2006-03-30  Mike Kestner  <mkestner@novell.com>
10102         * MenuItem.cs: only emit DrawItem and MeasureItem for OwnerDraw.
10104 2006-03-29  Jackson Harper  <jackson@ximian.com>
10106         * Form.cs: Implement TODO.
10108 2006-03-29  Peter Dennis Bartok  <pbartok@novell.com> 
10110         * PrintPreviewDialog.cs: Implemented missing methods and events; still
10111           missing proper dialog setup in the constructor
10113 2006-03-29  Peter Dennis Bartok  <pbartok@novell.com>
10115         * ProgressBar.cs: Added 2.0 Style property that apps seem to use
10116         * Control.cs:
10117           - Implemented CheckForIllegalCrossThreadCalls, removed TODO
10118           - Fixed ResetBindings and removed TODO
10119           - Added check for cross-thread calls to get_Handle()
10120           - Added Marshaller attribute for set_Font to satisfy class status
10121         * FontDialog.cs: Removed TODOs that seemed implemented
10122         * UpDownBase.cs: Removed unneeded TODO and Fixme
10123         * MessageBox.cs: Implemented support for Default button and removed TODO
10124         * FileDialog.cs: Removed obsolete TODO
10125         * DomainUpDown.cs: Removed obsolete TODO
10126         * ButtonBase.cs: Removed obsolete TODO
10127         * XplatUIWin32.cs: Removed obsolete TODO
10128         * Form.cs:
10129           - Removed obsolete TODO
10130           - Calling CheckAcceptButton when the acceptbutton is changed to allow
10131             internal status updates
10132           - Making sure the active control is selected when the control is created
10133         * CurrencyManager.cs: Removed obsolete TODO
10135 2006-03-29  Mike Kestner  <mkestner@novell.com>
10137         * *.cs: fix remaining corcompare issues for 1.1 API with the exception
10138         of PrintPreviewDialog and RichTextBox.
10140 2006-03-29  Alexander Olk  <alex.olk@googlemail.com>
10142         * Theme.cs: Added a little helper to SystemResPool to get the Dark,
10143           DarkDark, Light and LightLight colors for a specific color
10144         * ThemeWin32Classic.cs:
10145           - Use Button drawing code to draw RadioButtons and CheckBoxes with
10146             Appearance = Button 
10147           - Make use of the new ResPool helper CPColor
10148           - Draw ProgressBar and StatusBar with correct 3D borders
10150 2006-03-29  Alexander Olk  <alex.olk@googlemail.com>
10152         * ColorDialog.cs: Return selected color. Fixes bug #77940.
10154 2006-03-28  Mike Kestner  <mkestner@novell.com>
10156         * ListView.cs: fix Icon layout to plan for scrollbar widths when
10157         calculating col/row counts.
10159 2006-03-28  Mike Kestner  <mkestner@novell.com>
10161         * ColumnHeader.cs:
10162         * ListView.cs:
10163         * ListViewItem.cs:
10164         * Menu.cs: 
10165         switch to explicit interface method implementation for some methods
10166         corcompare identifies as inconsistent with MS.
10168 2006-03-28  Mike Kestner  <mkestner@novell.com>
10170         * MainMenu.cs: 
10171         * Menu.cs:
10172         add a few missing methods from the class status output.
10174 2006-03-28  Alexander Olk  <alex.olk@googlemail.com>
10176         * ControlPaint.cs: Fixed ControlPaint.Light method. Results are now
10177           correct.
10179 2006-03-28  Mike Kestner  <mkestner@novell.com>
10181         * MenuAPI.cs: Deactivate on MainMenu item click. Fixes #77917.
10183 2006-03-27  Mike Kestner  <mkestner@novell.com>
10185         * ThemeWin32Classic.cs: Switch flat toolbars to use RaisedInner for
10186         the Hilight state to adapt to Alex's CPDrawBorder3D changes.
10188 2006-03-27  Alexander Olk  <alex.olk@googlemail.com>
10190         * ThemeWin32Classic.cs: Rewrote Button drawing code to match ms.
10192 2006-03-25  Alexander Olk  <alex.olk@googlemail.com>
10194         * ThemeWin32Classic.cs:
10195           - GroupBox: Inserted a little gap between the text and the lines
10196             on the right side
10197           - Made the code in CPDrawBorder3D more readable
10198           - Corrected the drawing location of the up and down arrows in 
10199             CPDrawScrollButton
10201 2006-03-25  Alexander Olk  <alex.olk@googlemail.com>
10203         * ControlPaint.cs: Corrected line widths in DrawBorder for
10204           ButtonBorderStyle Inset and Outset
10206 2006-03-25  Alexander Olk  <alex.olk@googlemail.com>
10208         * ThemeWin32Classic.cs:
10209           - Rewrote the totally broken CPDrawBorder3D method. That was
10210             one of the main problems for the terrific ThemeWin32Classic
10211             look
10212           - Updated and corrected Button drawing
10213           - Correct the dimensions of the SizeGrip to match ms ones
10214           - Removed a small drawing glitch in DrawComboBoxEditDecorations
10215         * XplatUIX11.cs: Draw borders with BorderStyle = Fixed3D with
10216           Border3DStyle.Sunken to match ms.
10218 2006-03-25  Alexander Olk  <alex.olk@googlemail.com>
10220         * ThemeWin32Classic.cs: First small part of the "de-uglify
10221           ThemeWin32Classic" effort, SizeGrip
10223 2006-03-24  Jackson Harper  <jackson@ximian.com>
10225         * XplatUIX11.cs: Give a max idle time of one second, this matches
10226         MS and forces an Idle event every second when there are no other
10227         events in the queue.
10229 2006-03-24  Mike Kestner  <mkestner@novell.com>
10231         * ListView.cs: Handle (Large|Small)ImageList == null more robustly.
10232         * ListView.Item.cs: fix layout issues with null image lists and images
10233         smaller than checkbox size.
10234         * ThemeWin32Classic.cs: Draw a 12 pixel line in ListView LargeIcon
10235         mode like MS does.  It's weird, but consistent.  ;-)
10236         Fixes #77890.
10238 2006-03-24  Mike Kestner  <mkestner@novell.com>
10240         * ListView.cs: Scroll wheel support for the item control.  Fixes
10241         #77839.
10243 2006-03-23  Jackson Harper  <jackson@ximian.com>
10245         * ScrollableControl.cs: Special case negative sized areas, not
10246         zero.
10247         * MonthCalendar.cs: Save the rect of the clicked date so we can
10248         use it for invalidation.
10249         - Try to cut down on the number of invalidates
10250         - Invalidate the rect the mouse is over and was over when moving
10251         the mouse, so we get the focus box following the cursor.
10253 2006-03-23  Mike Kestner  <mkestner@novell.com>
10255         * ThemeWin32Classic.cs: fix FullRowSelect selection background and
10256         focus rectangle drawing. Fixes #77835.
10258 2006-03-23  Mike Kestner  <mkestner@novell.com>
10260         * XplatUIX11.cs: rework the fix for #77828 by changing the order of
10261         the if and else if and reverting back to the original == check on the
10262         None conditional.
10264 2006-03-23  Alexander Olk  <alex.olk@googlemail.com>
10266         * FontDialog.cs: Update the example panel if the selected index of
10267           the fontListBox changes.
10269 2006-03-23  Alexander Olk  <alex.olk@googlemail.com>
10271         * FileDialog.cs: Make FileDialog remember which directory it was in
10272           last in the same execution.
10274 2006-03-22  Mike Kestner  <mkestner@novell.com>
10276         * FileDialog.cs: make the DropDownMenu on the toolbar display
10277         RadioChecks since they are mutually exclusive and that's what MS does.
10279 2006-03-22  Mike Kestner  <mkestner@novell.com>
10281         * Theme.cs: add Color param to CPDrawMenuGlyph.
10282         * ThemeWin32Classic.cs: do color specific menu glyph rendering so that
10283         checks and radio marks and arrows are visible on highlighted items.
10284         * ControlPaint.cs: update to use new Theme signature.
10286 2006-03-22  Mike Kestner  <mkestner@novell.com>
10288         * MenuAPI.cs: only process Enter and arrow keypresses if the tracker
10289         is active. Fixes #77870.
10291 2006-03-22  Alexander Olk  <alex.olk@googlemail.com>
10293         * FileDialog.cs: Corrected TabIndex order and set fileNameComboBox
10294           to be focused/selected after startup
10296 2006-03-22  Alexander Olk  <alex.olk@googlemail.com>
10298         * ColorDialog.cs: 
10299           - Corrected behaviour of Color, AllowFullOpen, FullOpen,
10300             CustomColors and ShowHelp properties
10301           - Some internal rewrites to get better results when using the
10302             ColorMatrix
10304 2006-03-22  Mike Kestner  <mkestner@novell.com>
10306         * ListView.cs: hook into Peter's new ResetMouseHover capability to fix
10307         HoverSelection.  Fixes #77836.
10309 2006-03-22  Mike Kestner  <mkestner@novell.com>
10311         * FileDialog.cs: bugfixes for the toolbar.  Use PushButtons instead of
10312         ToggleButtons.  (De)Sensitize the Back button around a stack count of
10313         1, not 0.  Update ButtonSize based on a pixel count of the win32
10314         control.  Adjust the toolbar size/location for new button size.
10316 2006-03-22  Jackson Harper  <jackson@ximian.com>
10318         * XplatUIX11.cs: Don't handle configurenotifys if PostQuitState is
10319         true.
10320         * ScrollBar.cs: When doing increments and decrements we need to
10321         set the Value property so that ValueChanged gets raised. A
10322         possible optimization here would be to make an internal SetValue
10323         that doesn't invalidate immediately.
10324         * ToolTip.cs: Tooltips get added to their container (when
10325         supplied) so they get disposed when the container is disposed.
10326         - Don't create tooltips for String.Empty. This prevents all these
10327         little 2-3 pixel windows from showing up when running nunit-gui
10328         and driving me mad.
10329         * Form.cs: Don't set topmost when setting the owner if the handles
10330         haven't been created yet.  The topmost set will happen when the
10331         handles are created.
10333 2006-03-22  Peter Dennis Bartok  <pbartok@novell.com> 
10335         * XplatUIX11.cs:
10336           - DeriveWindowStyles: Fixed typo in borderstyle generation (#77828)
10337           - SetVisible: Sending WINDOWPOSCHANGED for all controls when made 
10338             visible (to allow them to recalculate their sizes)
10340 2006-03-21  Mike Kestner  <mkestner@novell.com>
10342         * ThemeWin32Classic.cs: major refactoring of the ToolBar rendering
10343         methods. Removed a ton of redundant code.  Still not really happy with
10344         the border rendering, but I think that's mainly because of the
10345         ControlDarkDark being black instead of a dark grey. Depending on how 
10346         close we want to be, we might want to revisit those color choices.
10347         Among the new features added during the refactor were DropDownArrow
10348         pressed rendering, Disabled image rendering.  Proper flat appearance
10349         boundary rendering.  Removed the Divider and Wrapping dividers since I
10350         can't figure out any combination of themes and conditions to make the
10351         MS control draw a horizontal line on a toolbar despite what the
10352         Divider property docs indicate.
10353         * ToolBar.cs: rewrite the layout engine. Fixes numerous flicker
10354         conditions and incorrect layout.  Updated to coding standard.
10355         * ToolBarButton.cs: refactored layout and positioning code from
10356         ToolBar to here.  Invalidate wherever possible instead of forcing
10357         redraws of the whole toolbar. 
10358         (Known remaining issues: explicit ButtonSize smaller than provided
10359         images.)
10361 2006-03-21  Mike Kestner  <mkestner@novell.com>
10363         * ContextMenu.cs (Show): use the position parameter instead of just
10364         showing at the MousePosition.
10366 2006-03-21  Jackson Harper  <jackson@ximian.com>
10368         * TabControl.cs: Remove the call to ProcessKeyEventArgs and let
10369         control handle this.
10370         * TreeNodeCollection.cs: If we are clearing the root node we need
10371         to reset top_node so calcs can still happen.
10372         * ThemeWin32Classic.cs: This is a Flags so we need to check
10373         properly.
10374         
10375 2006-03-21  Jackson Harper  <jackson@ximian.com>
10377         * DataGrid.cs: Create columns when the binding context has been
10378         changed.
10379         * X11Structs.cs: Keysyms are uints.
10380         - Add size to fix build.
10382 2006-03-21  Peter Dennis Bartok  <pbartok@novell.com> 
10384         * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs, XplatUIWin32.cs, 
10385           XplatUIOSX.cs: 
10386           - Added ResetMouseHover method to allow controls to retrigger
10387             hovering if they need it more than once
10388           - Implemented MouseHoverTime and MouseHoverSize properties
10389         * Timer.cs: Start() must reset the interval
10390         * SystemInformation.cs: Added 2.0 MouseHoverTime and MouseHoverSize
10391           properties
10393 2006-03-21  Jackson Harper  <jackson@ximian.com>
10395         * X11Keyboard.cs: improved layout detection. Move the nonchar
10396         tables into this file.
10397         * KeyboardLayouts.cs: Move the tables into resource files.
10399 2006-03-21  Mike Kestner  <mkestner@novell.com>
10401         * ListView.cs: use OnItemActivated to raise events. Fixes #77834.
10403 2006-03-21  Alexander Olk  <alex.olk@googlemail.com>
10405         * Mime.cs: Various speed optimizations. Looking up mime types
10406           is now 2 times faster than before
10408 2006-03-17  Peter Dennis Bartok  <pbartok@novell.com> 
10410         * CreateParams.cs: Added internal menu field
10411         * Control.cs: 
10412           - Switched call order for UpdateBounds; now we always call
10413             the one that also takes ClientSize, and we're calculating the 
10414             client size via driver method in the others. The previous
10415             method of tracking client size by difference wasn't working
10416             for forms where even the starting client size wouldn't match
10417             the overall form size (due to borders) (Part of fix for #77729)
10418           - CreateParams(): Do not use parent.Handle unless the handle is
10419             already created. Causes havoc with Nexxia and throws off our
10420             creation of controls
10421         * XplatUIX11.cs:
10422           - Created new PerformNCCalc method to trigger WM_NCCALCSIZE message
10423           - Switched handling of ConfigureNotify over to new PerformNCCalc 
10424             method (consolidates code)
10425           - Changed RequestNCRecalc to use new PerformNCCalc method
10426           - Added calls to RequestNCRecalc when menus and borders are changed
10427             to allow app to set NC size. (Part of fix for #77729) This matches
10428             when MS send a WM_NCRECALC on Win32 windows.
10429           - Now sending WM_WINDOWPOSCHANGED when toplevel for is made visible
10430             (Part of fix for #77729). This matches what MS does, they also
10431             send that message when the form is made visible.
10432           - XException.GetMessage: Improved usability of X errors by including
10433             a translation of the window into Hwnd and Control class
10434           - Improved debug info for window creation, reparenting and destruction
10435           - Created helper method WindowIsMapped() [Currently not used]
10436         * XplatUIWin32.cs: Added ToString() debug helper to RECT structure
10437         * Form.cs:
10438           - CreateParams: Now setting our menu on the new internal menu field
10439           - SetClientSizeCore: Now passing cp.menu instead of ActiveMenu to
10440             avoid calculating the same property twice
10441         * Hwnd.cs:
10442           - Improved usability of ToString() for debugging purposes
10443           - GetWindowRectangle(): Now uses proper CalcMenuBarSize method to
10444             determine the height of the menu, instead of just the font. This
10445             required to also create a graphics context and to keep a bmp 
10446             around (for performance reasons)
10448 2006-03-17  Peter Dennis Bartok  <pbartok@novell.com>
10450         * MenuAPI.cs: Added OnMouseUp method
10451         * Form.cs:
10452           - Now remembering the requested client size, avoids size errors
10453           - WndProc: Now handling WM_xBUTTONUP and passing it to MenuTracker
10454             instead of base if the menu is active. This is required due to
10455             control now capturing and releasing on down/up and it would
10456             prematurely release our menu capture
10458 2006-03-17  Jackson Harper  <jackson@ximian.com>
10460         * KeyboardLayouts.cs: Add the czech layouts.
10462 2006-03-16  Jackson Harper  <jackson@ximian.com>
10464         * Control.cs: Use the viewport space when sizing not the controls
10465         client size, so things like ScrollableControl that effect the
10466         viewport size (when scrollbars are added) are computed correctly.
10467         * BindingContext.cs: Cleanup to use the DataSourceEntrys instead
10468         of ManagerEntrys.
10469         - Handle creating BindingManagers for null data sources.
10470         * DataGrid.cs: Bind the cached_currencymgr_events to the real data
10471         source, otherwise when rows are added they are added to the 'fake'
10472         datasource and we will crash when trying to set the position in
10473         those rows.
10474         - Use Implicit scrollbars on the datagrid so they arent
10475         selectable.
10476         
10477 2006-03-16  Jackson Harper  <jackson@ximian.com>
10479         * Binding.cs:
10480         * InternalWindowManager.cs:
10481         * MdiWindowManager.cs:
10482         * X11Keyboard.cs: I really want Mike to love me again (fix
10483         compiler warnings).
10485 2006-03-16  Peter Dennis Bartok  <pbartok@novell.com>
10487         * DataGrid.cs:
10488           - OnMouseDown: Switch to editing mode when clicking on the cell
10489                          even if we're clicking on the cell that's currently 
10490                          selected
10491           - ProcessGridKey: Left/Right now wrap like MS.Net does
10492           - ProcessGridKey: Tab now knows to add a new row when tab is
10493                             pressed in the cell of the last column of the 
10494                             last row
10495           - ProcessGridKey: Enter now adds another row  if pressed in the last
10496                             row and selectes the new row, same column cell
10497           - ProcessGridKey: Home/End navigate columns, not rows, like 
10498                             originally implemented
10499           - Broke ProcessKeyPreview code out into an extra Internal method
10500             so it can be called from the edit code
10501         * DataGridTextBox.cs (ProcessKeyMessage):
10502           - Switched to accept Tab keypresses
10503           - Added F2 handling to allow jumping to the end of the edited cell
10504           - Added logic to allow moving caret left/right inside edited cell
10505             and making the edited cell jump when the caret hits cell borders
10506           - Tab and Enter are now passed to the datagrid after being handled
10507         * TextBoxBase.cs:
10508           - Removed capture code now that Control handles it
10509           - set_SelectionStart now ensures caret is visible
10511 2006-03-16  Jackson Harper  <jackson@ximian.com>
10513         * TrackBar.cs: Debackwards the increment/decrement for handling
10514         mouse clicks on the bar with vertical trackbars.
10515         * ThemeWin32Classic.cs: Draw vertical trackbars with 0 at the
10516         bottom to match MS.
10518 2006-03-16  Mike Kestner  <mkestner@novell.com>
10520         * ListView.cs: make shift/ctrl keyboard and mouse selection 
10521         consistent with the MS control. Fix a bug in
10522         SelectedListViewItemCollection.Clear that was pissing me off for the
10523         better part of a day because the collection was being altered
10524         underneath us as we walked the list.
10526 2006-03-16  Peter Dennis Bartok  <pbartok@novell.com> 
10528         * Control.cs: Not sure how we could miss this so long, but it seems
10529           that MS.Net has Capture set all the way from before calling 
10530           OnMouseDown through sending the mouse events until after
10531           OnMouseUp. This will fix DataGrid's selection being set to end
10532           at the location of the MouseUp.
10534 2006-03-15  Jackson Harper  <jackson@ximian.com>
10536         * BindingContext.cs: Check the binding after its added so that it
10537           can initialize the binding managers and hookup to events.
10538         * Binding.cs: Data members seem to sometimes include rows/cols in
10539           the format Row.Column we now take this into account.
10540           - Hookup to the position changed event so we can update the
10541           control when the position has changed in the data set.
10542         * CurrencyManager.cs: Take into account the row/col naming
10543           convention when creating dataset tables.
10544         * BindingContext.cs: Using a newer better way of storing
10545           datasource/datamember pairs.  Hopefully this better matches MS for
10546           looking up binding managers.
10549 2006-03-15  Jackson Harper  <jackson@ximian.com>
10551         * BindingContext.cs: The currency manager needs the data member
10552         name, if the member is a data set we use the name to find the
10553         correct table.
10554         * CurrencyManager.cs: When creating the list prefer an IList over
10555         an IListSource.
10556         - Attempt to create a DataTable from a DataSet (TODO: might need
10557         some better error checking here, although MS doesn't seem to have much)
10558         - If we have a DataTable create a view and use it as our list.
10560 2006-03-15  Mike Kestner  <mkestner@novell.com>
10562         * ListView.cs: keep a matrix of the icon mode layout to facilitate
10563         keyboard navigation. Support Up/Down/Left/Right selection correctly
10564         for all 4 View modes.
10565         * ListViewItem.cs: add internal row/col fields for icon layouts.
10567 2006-03-15  Jackson Harper  <jackson@ximian.com>
10569         * TabControl.cs: Redraw the tabs when we resize so their newly
10570         calculated sizes are drawn on screen.
10571         * X11Keyboard.cs: Begginnings of XIM support.  We also now support
10572         composite characters.
10573         * XplatUIX11.cs: Keyboard driver needs to know about focus changes
10574         - filter events so that composite characters can be created
10575         patches by peter
10576         * X11Structs.cs: Add XIMProperties enum.
10578 2006-03-14  Peter Dennis Bartok  <pbartok@novell.com> 
10580         * Control.cs (BringToFront, SendToBack): Don't use window or handle
10581           unless it's created
10583 2006-03-14  Peter Dennis Bartok  <pbartok@novell.com>
10585         * Control.cs (PerformLayout): We don't need to consider visiblity
10586           for anchoring, only for docking. This fixes 'whacky' alignment
10587           in listbox and other controls that use implicit scrollbars after
10588           the previous PerformLayout patch
10589         * ListBox.cs: Switched to use implicit scrollbars
10590           
10591 2006-03-14  Mike Kestner  <mkestner@novell.com>
10593         * ToolBar.cs: 
10594         * VScrollBar.cs:
10595         - chain up the "new event" overrides to base and use
10596         OnEvent to raise them.  Part of fix for bug #76509.
10598 2006-03-14  Alexander Olk  <alex.olk@googlemail.com>
10600         * FileDialog.cs: Do not select an item in the parent directory
10601           on backspace
10603 2006-03-14  Peter Dennis Bartok  <pbartok@novell.com> 
10605         * Control.cs (PerformLayout): It would seem that we considered
10606           invisible windows for our layout. Not quite the right thing
10607           to do. Now we don't any longer, thereby fixing bug #76889.
10609 2006-03-14  Peter Dennis Bartok  <pbartok@novell.com>
10611         * Control.cs (CanFocus): I goofed. A control can have focus 
10612           even though it's not selectable. Made it match MS docs.
10614 2006-03-13  Peter Dennis Bartok  <pbartok@novell.com>
10616         * ControlPaint.cs (DrawBorder3D): DrawBorder3D does not fill the
10617           center by default (fixes #76895)
10618         * ThemeWin32Classic.cs, ThemeNice.cs, ThemeClearlooks.cs: Replaced 
10619           all uses of Border3DSides.All with the explicit ORd together
10620           Left|Right|Top|Bottom because I assume that nobody was aware 
10621           that All also implies a center fill. Most places I checked had
10622           a fill right above.
10623         * ProgressBarStyle.cs: Added
10625 2006-03-13  Mike Kestner  <mkestner@novell.com>
10627         * ListView.cs: fix breakage in drag shadow header positioning 
10628         from Peter's csc compilation fix.
10630 2006-03-13  Mike Kestner  <mkestner@novell.com>
10632         * ListView.cs: fix NRE produced by backspacing twice in a focused
10633         FileDialog.
10635 2006-03-13  Mike Kestner  <mkestner@novell.com>
10637         * ListView.cs: proxy Key(Down|Up) from ItemControl to ListView.
10639 2006-03-13  Peter Dennis Bartok  <pbartok@novell.com>
10641         * Hwnd.cs: Added fixed_size field to track windows whose size cannot
10642           be changed
10643         * XplatUIX11.cs: Now setting fixed_size on hwnd and if set, re-setting
10644           the allowed size before making programmatic size changes
10646 2006-03-13  Peter Dennis Bartok  <pbartok@novell.com> 
10648         * XplatUIX11.cs: Don't call XSetWMNormalHints if no flags are 
10649           set, metacity is broken and will still use the emty sizes in 
10650           the struct. (Fix for #77089)
10652 2006-03-13  Peter Dennis Bartok  <pbartok@novell.com>
10654         * XplatUIStructs.cs: Split WindowStyles into WindowStyles and 
10655           WindowExStyles and marked both enums as Flags
10656         * Form.cs, ComboBox.cs, ToolTip.cs, Control.cs, PropertyGridView.cs,
10657           NotifyIcon.cs, MenuAPI.cs, XplatUIOSX.cs, MonthCalendar.cs: Updated
10658           to match WindowStyles split
10659         * XplatUIX11.cs:
10660           - SetWMStyles: Added cehck to not apply WM attributes to Child windows
10661           - Updated to match WindowStyles split
10662         * XplatUIWin32.cs:
10663           - Fixed FosterParent creation, was using ExStyle on the Style field
10664             (This should help with Popup focus issues)
10665           - Updated to match WindowStyles split
10667 2006-03-13  Jackson Harper  <jackson@ximian.com>
10669         * MdiWindowManager.cs: Use the system menu height. Fixes some
10670         strange sizing issues.
10672 2006-03-12  Peter Dennis Bartok  <pbartok@novell.com>
10674         * RichTextBox.cs: Need to scroll to caret after text is inserted (#77672)
10675         * TextBoxBase.cs:
10676           - Scroll to caret after inserting text (#77672)
10677           - Make scroll range one pixel higher, fixes off-by-one error (and
10678             makes underlines visible on the last line)
10680 2006-03-12  Peter Dennis Bartok  <pbartok@novell.com> 
10682         * XplatUIX11.cs: Added call to new Keyboard.ResetKeyState to prevent
10683           the keyboard state from being stuck with keys in 'pressed' state when
10684           focus is switched away via keyboard
10685         * X11Keyboard.cs: Added new ResetKeyState method to allow drivers to
10686           reset the keyboard if no X11 KeyUp events are expected to come
10687         * X11Structs.cs: Switched type of Visible to bool to match driver
10689 2006-03-12  Peter Dennis Bartok  <pbartok@novell.com>
10691         * TextControl.cs:
10692           - Switched caret to be just 1 pixel wide, matches MS and looks less
10693             clunky
10694           - Moved caret display 1 pixel down from the top of the control
10695             to improve view
10696           - InsertCharAtCharet: Update the selection start if moving the caret
10697             (fixes bug #77696; based on patch suggested by kazuki@panicode.com)
10698           - No longer always creating the caret when the caret methods are
10699             called. Only the actual ShowCaret/HideCaret will do that now
10700           - Only setting caret visible if the owner control has focus
10701           - UpdateView: Added invalidation-shortcut logic for center and right 
10702             aligned text. Previously we'd update all according to the left
10703             logic which caused drawing errors. Also fixed height of invalidated
10704             areas, now properly invalidating the whole area (was off-by-one)
10705           - owner_HandleCreated: Always generate the document when the
10706             handle is created; this ensures that 
10707         * TextBoxBase.cs:
10708           - Fixed situation where caret would disappear under the right
10709             window border, also improved scrolling behaviour on left-
10710             aligned textboxes
10711           - Fixed right-aligned textboxes to have a border to the
10712             right instead of the caret being under the right border
10713         * XplatUIX11.cs:
10714           - Switched from 'nested' to simple visible/not visible tracking 
10715             for caret (part of fix for #77671)
10716           - No longer passing through translated FocusIn/FocusOut messages
10717             since we were notifying too often and the wrong windows. Instead
10718             we just notify our focussed window of receiving or loosing focus
10719         * XplatUIWin32.cs: Switched from 'nested' show/hide 
10720           counting for caret to simple visible yes/no behaviour (part of 
10721           fix for #77671)
10723 2006-03-11  Alexander Olk  <alex.olk@googlemail.com>
10725         * Mime.cs: Remove debug code...
10727 2006-03-11  Alexander Olk  <alex.olk@googlemail.com>
10729         * MimeGenerated.cs: Removed
10730         * Mime.cs: Mime now reads the mime data (magic, globs, aliases
10731           and subclasses) from /usr/(local/)share/mime and
10732           $HOME/.local/share/mime.
10734 2006-03-10  Jackson Harper  <jackson@ximian.com>
10736         * MdiWindowManager.cs: Recalc the NC area when a window is
10737         maximized/restored so that the menu area is drawn on forms that
10738         don't have a menu.
10740 2006-03-10  Peter Dennis Bartok  <pbartok@novell.com>
10742         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs, XplatUIWin32.cs,
10743           XplatUIX11.cs: Added RequestNCRecalc method to driver to allow
10744           us to force a WM_NCCALCRESIZE message being sent. This is needed
10745           for MDI maximizing.
10747 2006-03-10  Jackson Harper  <jackson@ximian.com>
10749         * Form.cs: We need to use the ActiveMenu when calculating menu
10750         height.
10751         - Fix nullref when the window manager hasn't been created yet.
10752         * Control.cs: Fix nullref when we try to bring a control to the
10753         front that has no parent.
10754         * MdiWindowManager.cs: Use the MaximizedMenu for calculating
10755         height.
10756         - Add a dummy item to the maximized menu so it always has the
10757         correct height. Otherwise when there are no menus we don't get our
10758         icon and buttons.
10759         
10761 2006-03-10  Jackson Harper  <jackson@ximian.com>
10763         * MenuAPI.cs: Make this available elsewhere. I need it in some MDI
10764         stuff.
10765         * Form.cs: Make the window_state internal so the window managers
10766         can track it.
10767         - When an MDI child is maximized let its window manager create the
10768         main menu (so it can add its icon).
10769         - Notify the window managers of state changes
10770         - Let the window manager paint its buttons and handle button
10771         clicks on the menu when it is maximized.
10772         * InternalWindowManager.cs: Move the prev_bounds into the mdi
10773         window manager, since tool windows don't use it, only mdi windows.
10774         - Tell the main form that we don't want it to handle NCPAINT
10775         itself to avoid extra painting.
10776         - Handle clicks on a maximized windows menu.
10777         - Handle window state changes
10778         - Handle minimize/maximize clicks correctly by setting the window state.
10779         * MdiWindowManager.cs: Add an icon menu that (the menu you get
10780         when clicking on the forms icon).
10781         - New method to create a forms maximized menu. This is its normal
10782         menu + an icon.
10783         - Handle window state changes.
10784         - Handle sizing of maximized windows.  Maximized windows are just
10785         drawn bigger then the parent visible area. All controls are still
10786         there, they are just outside the visible area (this matches windows).
10787         * MdiClient.cs: No scrollbars when a child window is maximized.
10788         - Let the children windows figure out how big they should be when
10789         sizing maximized windows.
10790         - Implement a version of ArrangeIconicWindows somewhat similar to
10791         Windows version.  There are some little differences, but I don't
10792         think any app will rely on the layout of minimized mdi windows.
10794 2006-03-10  Peter Dennis Bartok  <pbartok@novell.com>
10796         * Padding.cs: Several fixes to allow compiling with csc 2.0
10798 2006-03-09  Jackson Harper  <jackson@ximian.com>
10800         * Menu.cs:
10801         * MenuItem.cs: Cheap hack so we can add items to the list without
10802         the events being raised.  This allows adding mdi items during
10803         drawing. TODO: Should probably find a better time to add the items.
10805 2006-03-10  Peter Dennis Bartok  <pbartok@novell.com>
10807         * ThemeWin32Classic.cs:
10808           - CheckBox_DrawText: Added logic to not wrap if not enough space
10809             is available (Fix for bug #77727)
10810           - RadioButton_DrawText: Added logic not to wrap if not enough
10811             space is available (Fix for bug #77727). Also removed some
10812             duplicate code, DrawString always drawing the regular text
10813             before hitting the if statement.
10815 2006-03-10  Peter Dennis Bartok  <pbartok@novell.com> 
10817         * XplatUIX11.cs: Handle an unmapped window state in SetWindowState
10819 2006-03-10  Peter Dennis Bartok  <pbartok@novell.com>
10821         * PictureBox.cs: Implemented ISupportInitialize interface (fixes #77726)
10822         * ContainerControl.cs: Partial implementation of some 2.0 scaling
10823           methods. Moved the new 2.0 properties into alphabetical order with
10824           other properties and added MonoTODO tags
10826 2006-03-09  Peter Dennis Bartok  <pbartok@novell.com> 
10828         * AutoScaleMode.cs: Added. Fix build.
10830 2006-03-09  Peter Dennis Bartok  <pbartok@novell.com>
10832         * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs, XplatUIWin32.cs, 
10833           XplatUIOSX.cs: Removed HWnd argument from CalcuateClientRect, not used
10834           and was requiring premature handle creation for calls from above
10835         * Form.cs, Control.cs: Removed handle arguments from calls to
10836           CalculateClientRect()
10838 2006-03-09  Peter Dennis Bartok  <pbartok@novell.com> 
10840         * ListView.cs (HeaderMouseMove): Fix csc compilation. 
10841           drag_column.column_rect is MarshalByRef and can't be used that way
10843 2006-03-09  Peter Dennis Bartok  <pbartok@novell.com>
10845         * AxHost.cs: Added deserialization constructor for 
10846           AxHost+State (fixes 77743)
10848 2006-03-09  Mike Kestner  <mkestner@novell.com>
10850         * ListView.cs: 
10851         - Added column drag reordering for details view.
10852         - fixed behavior when mouse is dragged off column and
10853         AllowColumnReorder is false.
10854         * ColumnHeader.cs: clone the format too in Clone.
10855         * Theme.cs: add DrawListViewHeaderDragDetails method.
10856         * ThemeWin32Classic.cs:
10857         - impl new method for drawing drag column shadows and targets.
10858         - support column offset for details mode in DrawListViewItem.
10860 2006-03-09  Peter Dennis Bartok  <pbartok@novell.com>
10862         * TextControl.cs: Reset the char_count when the document is cleared
10863           (Fixes bug reported on mono-winforms mailing list)
10865 2006-03-09  Peter Dennis Bartok  <pbartok@novell.com> 
10867         * TextBoxBase.cs: Honor the Handled state of KeyPress events. Instead
10868           of calling base we simply process the key ourselves, since both
10869           DefWindowProc and the handled method would set m.Result. 
10870           (Fixes #77732)
10872 2006-03-09  Peter Dennis Bartok  <pbartok@novell.com>
10874         * Form.cs(ScaleCore): No longer calling base.ScaleCore since that
10875           method also moves the window; instead implemented a copy of
10876           Control.ScaleCore (Part of fix for #77456)
10877         * TextBoxBase.cs: 
10878           - Created new CreateGraphicsInternal method to allow providing
10879             a graphics context when no handle is created without triggering
10880             handle creation. (Part of fix for #77456)
10881           - Replaced use of Control.CreateGraphics with CreateGraphicsInternal
10882         * TextControl.cs: 
10883           - Switched Constructor to require TextBoxBase instead of Control (to
10884             allow uncast access to CreateGraphicsInternal)
10885           - Safeguarded use of owner.Handle property. No longer accessing it
10886             unless the handle is already created.
10887           - Replaced use of Control.CreateGraphics with CreateGraphicsInternal
10888           - Now triggering a recalc when owning control becomes visible
10889         * TextBox.cs, RichTextBox.cs: Switched to use new internal 
10890           TextBoxBase.CreateGraphicsInternal() method to avoid triggering
10891           premature handle creation (Part of fix for #77456)
10892         * Control.cs:
10893           - We now only destroy our double-buffering buffers when the
10894             control is resized or disposed, but not when visibility
10895             changes. (The code even re-created them twice every time)
10896           - Now requiring a redraw of the buffer on visibility changes
10897             (fixes bug 77654 part 2)
10898           - Not passing OnParentVisibleChanged up unless the control
10899             is visible
10900           - CanFocus: Fixed to match MS documentation
10901           - Focus: Fixed to return actual focus state and to check if
10902             setting focus is legal before setting it
10904 2006-03-08  Peter Dennis Bartok  <pbartok@novell.com>
10906         * ThemeWin32Classic.cs: TabPages cannot have focus. Determine
10907           when to draw focus rectangle by looking at parent focus and
10908           selected state instead. This fixes TabPages on Linux sometimes
10909           having none or multiple focus rectangles.
10910         * XplatUIX11.cs (SetFocus): 
10911           - Don't set the focus if the same window already has focus
10912           - Use SendMessage instead of PostMessage (like it's Win32
10913             equivalent) and send the WM_SETFOCUS before the WM_KILLFOCUS
10914             to match MS behaviour
10915         * TabControl.cs(SelectedIndex): Don't set Focus on TabPage, TabPages
10916           are not selectable.
10918 2006-03-07  Jackson Harper  <jackson@ximian.com>
10920         * PictureBox.cs: Revert line I accidently committed last week.
10922 2006-03-07  Peter Dennis Bartok  <pbartok@novell.com>
10924         * Control.cs: 
10925           - Added new IsRecreating and ParentIsRecreating properties to
10926             allow testing if RecreateHandle has been called on ourselves
10927             or one of our parents
10928           - WndProc(WM_DESTROY): If our control handle is being recreated
10929             we immediately need to create the handle when receiving the
10930             destroy, that way our child windows find a valid parent handle
10931             when they themselves are being recreated upon WM_DESTROY receipt
10932             (fix for bug #77654 part 1)
10933         * XplatUIX11.cs:
10934           - DestroyWindow: WM_DESTROY must be sent to our own window before
10935             notifying any child windows. MS documents that child windows
10936             are still valid when WM_DESTROY is received. (Control now relies on
10937             this behaviour)
10938           - Added some fine-grain debug options
10940 2006-03-06  Jackson Harper  <jackson@ximian.com>
10942         * MdiClient.cs: Redid scrolling logic a bit to create a virtual
10943         box and base calculations off this.
10944         * MdiChildContext.cs:
10945         * MdiWindowManager.cs: Don't need to ensure scrollbars here
10946         anymore.
10947         
10948 2006-03-06  Peter Dennis Bartok  <pbartok@novell.com>
10950         * Splitter.cs: In situations where the affected control is added
10951           to the parent's control list after the splitter, we would not
10952           populate affected. Now we try populating it on mousedown, if
10953           it's not already set, and force it to be re-set whenever our
10954           parent changes.
10956 2006-03-03  Matt Hargett  <matt@use.net>
10958         * Control.cs: implement Control.Padding
10959         * Padding.cs: -Padding.All returns -1 when constructing with the
10960         implicit default ctor
10961         -Padding.ToString() matches MS.NET
10962         * ContainerControl.cs: implement
10963         ContainerControl.AutoScaleDimensions
10964         * ListControl.cs: implement ListControl.FormattingEnabled
10965         * TextBox.cs: Implemented TextBox.UseSystemPasswordChar.
10966         * ButtonBase.cs:
10967         * TabPage.cs: Implement UseVisualStyleBackColor.
10968         * PictureBox.cs: Implement PictureBox.InitialImage.
10970 2006-03-03  Mike Kestner  <mkestner@novell.com>
10972         * ListView.cs: Refactor into HeaderControl and ItemControl. Fix new
10973         event declarations to proxy to base event.
10974         * ListViewItem.cs: update to use ItemControl.
10975         * Theme.cs: make DrawListViewHeader. s/DrawListView/DrawListViewItems.
10976         * ThemeWin32Classic.cs: update to new ListView theme API and fix
10977         column header label rendering for 0 width columns.
10979 2006-03-03  Peter Dennis Bartok  <pbartok@novell.com>
10981         * Control.cs (ControlCollection.SetChildIndex): Avoid using a call
10982           that causes the control to be created. Fixes #77476.
10984 2006-03-02  Jackson Harper  <jackson@ximian.com>
10986         * Hwnd.cs: Clear the nc pending when clearing the NC area, not the
10987         expose_pending.
10989 2006-03-02  Peter Dennis Bartok  <pbartok@novell.com>
10991         * Control.cs: Implemented 2.0 feature where OnClick has MouseEventArgs
10992           passed in for the EventArgs (fixes #77690)
10994 2006-03-01  Jackson Harper  <jackson@ximian.com>
10996         * ScrollBar.cs: Refresh afterbeing resized.
10998 2006-02-28  Mike Kestner  <mkestner@novell.com>
11000         * MenuAPI.cs: Call PerformPopup internal method to emit Popup.
11001         Clean up a tracker compile warning.
11002         * MenuItem.cs: add internal PerformPopup method.
11003         [Fixes #77457]
11005 2006-02-28  Peter Dennis Bartok  <pbartok@novell.com> 
11007         * TextBoxBase.cs (set_Text): Recalculate the document (causing an
11008           implicit expose) when the text is set to null
11010 2006-02-28  Peter Dennis Bartok  <pbartok@novell.com>
11012         * RichTextBox.cs (FlushText): When newline is true, we always
11013           need to split the line, even if no text is on it and we may
11014           never eat newlines. (Fixes #77669)
11016 2006-02-28  Mike Kestner  <mkestner@novell.com>
11018         * ListView.cs: Add UpdateSelection internal method. Remove SelectItem 
11019         and set Selected instead.
11020         * ListViewItem.cs: Call owner.UpdateSelection to manipulate the 
11021         collections.
11023 2006-02-28  Peter Dennis Bartok  <pbartok@novell.com> 
11025         * ComboBox.cs: Allow setting SelectedIndex to -1. Fixes #77665
11027 2006-02-28  Alexander Olk  <alex.olk@googlemail.com>
11029         * FontDialog.cs:
11030           - Got rid of the panel. All controls are now directly added to
11031             the dialog form
11032           - It is now possible to set a font with the Font property
11033           - MinSize and MaxSize property do now what they should
11034           - ShowApply, ShowHelp, ShowColor, ShowEffects likewise
11035           - Searching and selecting a font with the font textbox works now,
11036             the same applies to the style and size textbox
11037           - Draw the correct 3D border in the example panel
11038           - Fixed a little mem leak (unused fonts didn't get disposed)
11039           - Many other internal updates/rewrites...
11040           - Fix typo
11042 2006-02-27  Peter Dennis Bartok  <pbartok@novell.com> 
11044         * TextControl.cs: 
11045           - InsertRTFFromStream: Added 'number of characters inserted' argument
11046           - set_SelectedRTF: Now using the number of characters to calculate
11047             the new location for the selection and cursor (x/y cannot be used
11048             due to potentially already wrapped text)
11050 2006-02-27  Peter Dennis Bartok  <pbartok@novell.com>
11052         * TextControl.cs: Added property and implemented means to allow 
11053           disabling recalculation of a document (can be used to speed up
11054           multiple inserts and is needed to make RTF inserts predictable, see
11055           bug #77659)
11056         * RichTextBox.cs: Using the new NoRecalc property of Document to
11057           keep x/y insert locations predictable. Also makes it faster inserting
11058           large chunks of RTF
11060 2006-02-27  Peter Dennis Bartok  <pbartok@novell.com> 
11062         * Control.cs: Separated special WM_SYSKEYUP keyboard handling. That way
11063           it's easier for a child control to handle the other messages without
11064           having to duplicate the special functionality
11065         * TextBoxBase.cs
11066           - WndProc: Removed calling base handler for WM_KEYDOWN and added 
11067             code to handle processing the key ourselves, in order to get 
11068             access to the result of KeyEventArgs.Handled. We now only call 
11069             ProcessKey if they key hasn't been handled already. Fixes #77526.
11070           - set_Text: If null or empty string is given, just clear the 
11071             document. Fixes part of #77526
11073 2006-02-27  Jackson Harper  <jackson@ximian.com>
11075         * SizeGrip.cs: Paint the background color before painting the grip
11076         so things look right.
11077         * MdiClient.cs: Add the sizegrip when both scrollbars are used.
11079 2006-02-27  Mike Kestner  <mkestner@novell.com>
11081         * ListView.cs:
11082           - Restructure layout and invalidation model to remove a ton of
11083           flicker from the control and speed up performance in general.
11084           - Add manual column resize, flickers like crazy, but I already have
11085           some ideas on how I'll fix that. (#76822)
11086           - Merge the three Icon-based views into a single layout method.
11087           - Move item selection interaction logic from the item since 
11088           interaction with the collections is more appropriate to the view.
11089           - Deselection on non-item clicks.
11090         * ListViewItem.cs:
11091           - Encapsulate most of the layout. Add some internal props to trigger
11092           layout.  Move to a model where Items invalidate themselves instead
11093           of just invalidating the whole control every time something changes.
11094           - Invalidate on Text/Caption changes.
11095           - switch to an offset based layout model to avoid having to absolute
11096           position every element on item moves.
11097           - correct checkbox layout to conform to MS layout.
11098         * ThemeWin32Classic.cs:
11099           - refactor some column header drawing code.
11100           - fix string justification for column headers (#76821)
11101           - make SmallIcon labels top justified for compat with MS impl.
11102         * ThemeClearlooks.cs:
11103           - adjust to new ListViewItem internal checkbox bounds api.
11105 2006-02-27  Jackson Harper  <jackson@ximian.com>
11107         * Control.cs:  Change where implicit controls fall in the zorder.
11108         They are now on top of all children.
11109         - Synced AddImplicit code with Add
11110         - Removed unused enumerator.
11111         * SizeGrip.cs: Remove the TODO as its been TODONE.
11113 2006-02-26  Peter Dennis Bartok  <pbartok@novell.com> 
11115         * TextControl.cs(Insert): Combine the last lines unless the insertion
11116           string ends with \n\n, otherwise we leave one line too many (Fixes
11117           something I noticed with the testapp for #77526; the bug itself was
11118           already fixed in the previous checkin)
11120 2006-02-26  Peter Dennis Bartok  <pbartok@novell.com>
11122         * RichTextBox.cs:
11123           - SelectionColor and SelectionFont methods no longer set absolute
11124             styles. Instead, the keep font or color respectively (This 
11125             resolves a long-standing FIXME in the code)
11126           - When flushing RTF text, the insert code now considers text trailing
11127             behind the insertion point (Fixes the bug where when replacing
11128             the selected text via SelectedRTF the remainder of the line behind 
11129             the selection would stay on the first insertion line)
11130         * TextBoxBase.cs:
11131           - AppendText now updates the selection points after inserting text
11132           - AppendText now ensures that the last tag (sometimes 0-length) of
11133             the document is used for the style information (Fixes part of 
11134             bug #77220)
11135         * TextControl.cs:
11136           - Created new FontDefiniton class to allow describing partial style
11137             changes
11138           - StreamLine() now takes a lines argument, to allow it to decide
11139             whether an encountered zero-length tag is the last in the document
11140             (which must be kept to not loose the font/color contained in it,
11141             for later appends)
11142           - Created Combine() and Split() methods for Marker structs, to 
11143             support marker updates due to reformatted documents (soft line
11144             wraps)
11145           - Implemented Document.CaretTag setter
11146           - Fixed MoveCaret(CtrlEnd) handling, now moves to the last character
11147             of the last line (Not the cause, but also exposed by bug #77220)
11148           - Added LineTag argument to InsertString method, to allow callers
11149             to force a certain tag to be used (required to force use of the
11150             trailing zero-length tag of a document)
11151           - Now updating markers in Combine(), to avoid stale tag markers
11152           - Added some method descriptions to aid maintenance
11153           - Implemented new FormatText concept, allowing additive/subtractive
11154             formatting by only specifying the components that are to be 
11155             changed. This was needed for resolving the RTB.SelectedColor/
11156             RTB.SelectedFont fixmes
11157           - Added Break() support method to allow breaking up linetags (used
11158             for partial formatting)
11159           - Added GenerateTextFormat() method. It is used for partial 
11160             formatting and allows to generate a full font/color from given
11161             attributes and an existing tag.
11163 2006-02-26  Jackson Harper  <jackson@ximian.com>
11165         * XplatUIX11.cs:  Use the correct caption height.
11166         - Translate hittest coordinates to screen coords to match MS.
11167         * XplatUIWin32.cs: When we create MDI windows we need to reset
11168         some of the style flags, so we get a nice blank window, and can
11169         draw all the decorations ourselves.
11170         - Set a clipping rectangle on the non client paint event, the
11171         window manager drawing code needs one.
11172         * Form.cs: The window manager needs to know when the window state
11173         has been updated.
11174         * Hwnd.cs: The window manager stuff now does a proper NCCALC so we
11175         don't need to factor in border and title sizes in these
11176         methods. TODO: Remove the args and fix the call points.
11177         * InternalWindowManager.cs: Handle NCHITTEST and NCCALCAREA
11178         properly.
11179         - Let the driver set the cursors.
11180         - Improve active window handling
11181         - Correct sizes for title bars and buttons.
11182         - Match MS drawing better
11183         * MdiWindowManager.cs: We don't need to handle border style
11184         updates specially anymore.
11185         - Check for scrollbars when windows are done moving
11186         - Handle Active properly.
11187         * MimeIcon.cs: Don't crash when we can't load the GNOME stuff
11188         correctly. I am spewing the exception though, so we don't hide the
11189         bugs.
11190         
11191 2006-02-26  Pedro Martinez Julia  <pedromj@gmail.com>
11193         * DataGridViewRowPostPaintEventArgs.cs,
11194           DataGridViewCellPaintingEventArgs.cs,
11195           DataGridViewRowCollection.cs,
11196           DataGridViewRowPrePaintEventArgs.cs,
11197           DataGridViewCell.cs: Clear a few warnings and implement a few
11198           exceptions that should be thrown.
11200 2006-02-22  Peter Dennis Bartok  <pbartok@novell.com>
11202         * ScrollBar.cs (ctor): Explicitly set a cursor to avoid
11203           'inheriting' our parent's (non-default) cursor. (Part of
11204            the fix for #77479)
11206 2006-02-22  Peter Dennis Bartok  <pbartok@novell.com> 
11208         * XplatUIX11.cs: Fixed cast to make csc happy
11210 2006-02-22  Peter Dennis Bartok  <pbartok@novell.com>
11212         * Control.cs (WndProc): Only handle WM_SETCURSOR messages if
11213           it's for the client area (part of fix for #77479 and needed
11214           for MDI window cursor handling)
11215         * XplatUIX11.cs
11216           - DefWindowProc: Now handles the WM_SETCURSOR messages, setting
11217             the appropriate default cursors and also passing the message
11218             up the parent chain 
11219           - GetMessage: Now generating WM_NCHITTEST and WM_SETCURSOR even
11220             for non-client areas
11222 2006-02-15  Jackson Harper  <jackson@ximian.com>
11224         * XplatUIWin32.cs: Since we fake MDI dont tell Windows that this
11225         is a real MDI window
11227 2006-02-14  Alexander Olk  <alex.olk@googlemail.com>
11229         * X11DesktopColors.cs: Instead of checking the desktop session
11230           string for "KDE" check if it starts with "KDE"
11232 2006-02-10  Jackson Harper  <jackson@ximian.com>
11234         * XplatUIX11.cs: These should be unsigned (fixes crash on 32 bit
11235         systems).
11237 2006-02-10  Alexander Olk  <alex.olk@googlemail.com>
11239         * FileDialog.cs: Added Refresh to RunDialog to fix some drawing
11240           errors
11241         * ColorDialog.cs:
11242           - Got rid of the panel. All controls are now directly added to
11243             the dialog form
11244           - Changed to mono coding style
11246 2006-02-10  Jackson Harper  <jackson@ximian.com>
11248         * InternalWindowManager.cs: We don't need the set visibility to
11249         false hack anymore now that peter has written beautiful shutdown
11250         code.
11252 2006-02-10  Peter Dennis Bartok  <pbartok@novell.com>
11254         * XplatUIX11.cs: Ignore DestroyNotify messages for windows that
11255           where already explicitly destroyed
11257 2006-02-10  Jackson Harper  <jackson@ximian.com>
11259         * MdiClient.cs: Handle the case where windows are too high or to
11260         the left and we need scrollbars.
11262 2006-02-10  Alexander Olk  <alex.olk@googlemail.com>
11264         * MimeIcon.cs: Added some icons
11265         * FileDialog.cs:
11266           - Fixed bug #77477
11267           - Got rid of the panel. All controls are now directly added to
11268             the dialog form
11269           - Changed to mono coding style
11270           - On Linux "My Computer" and "My Network" will now show some
11271             more usefull information. A new class, MasterMount, gathers
11272             this information from /proc/mount. Updated MWFFileView to make
11273             use of this information
11274           - Fixed a bug that caused FileDialog to crash when
11275             ".recently_used" file had a zero size
11276           - FilterIndex does now what it should
11277           - Some Refactoring
11278         * OpenFileDialog.cs, SaveFileDialog.cs: Updated to reflect latest
11279             FileDialog changes
11281 2006-02-09  Jackson Harper  <jackson@ximian.com>
11283         * ComboBox.cs: Don't touch if null.
11285 2006-02-09  Peter Dennis Bartok  <pbartok@novell.com>
11287         * Cursor.cs: 64bit safeness fix
11288         * XplatUIX11.cs: Removed several unneeded and one moronic cast.
11290 2006-02-09  Jackson Harper  <jackson@ximian.com>
11292         * Form.cs: If a form is made into an MDI form update the styles so
11293         all the props can get set correctly.
11294         - Kill the mdi_container when we dont need it anymore.
11295         * InternalWindowManager.cs: Add missing NOT
11297 2006-02-08  Jackson Harper  <jackson@ximian.com>
11299         * InternalWindowManager.cs: Respek clipping when drawing MDi
11300         decorations.
11302 2006-02-08  Jackson Harper  <jackson@ximian.com>
11304         * Hwnd.cs: Add bits to track non client expose events.
11305         * XplatUIX11.cs: Track non client expose events on the hwnd. This
11306         gives us a proper invalid rect and will allow for some nice
11307         optimizations with NC client drawing
11308         - MDI windows are children windows, so move their style handling
11309         into the child window block.
11310         * InternalWindowManager.cs: Remove a state reset that was
11311         getting invoked at the wrong time. Fixes managed windows getting
11312         into a 'stuck' captured state.
11314 2006-02-07  Peter Dennis Bartok  <pbartok@novell.com>
11316         * TextControl.cs (Document.ctor): Now initializing 
11317           selection_anchor. Fixes #77493
11319 2006-02-07  Jackson Harper  <jackson@ximian.com>
11321         * TrackBar.cs: The increment/decrements were backwards.
11323 2006-02-07  Mike Kestner  <mkestner@novell.com>
11325         * Theme*.cs : remove ThemeEngine.Current usage as it just points back
11326         to the instance itself.
11328 2006-02-07  Peter Dennis Bartok  <pbartok@novell.com>
11330         * X11DesktopColors.cs, ThemeGtk.cs: The GObject structure is based
11331           on ulongs and pointers, the size differs between 32bit and 64bit
11332           systems. 
11334 2006-02-07  Mike Kestner  <mkestner@novell.com>
11336         * XplatUIX11.cs : force the WorkingArea away from XGetWindowProperty
11337         for 64 bit platforms to work around a metacity bug. 
11339 2006-02-07  Jackson Harper  <jackson@ximian.com>
11341         * TrackBar.cs: Process the input keys we need, and hookup to
11342         KeyDown instead of using WndProc, so we get key messages.
11344 2006-02-06  Peter Dennis Bartok  <pbartok@novell.com>
11346         * XplatUIX11.cs: Atoms are only 32bit on the wire, no matter what
11347           machine we're on. 
11348         * X11Dnd.cs(SetAllowDrop): Since atoms are always 32bit on the wire
11349           we need to translate the XdndVersion atoms array before sending it
11351 2006-02-06  Peter Dennis Bartok  <pbartok@novell.com> 
11353         * XplatUIX11.cs: 
11354           - The preceeding 64bit fixes had a bug: ChangeProperty expects the
11355             number of bits for the property, not the number of bytes. The
11356             change to provide IntPtr.Size broke 32bit. (64bit was also wrong
11357             but would not crash since it specified 8 bits instead of 4 bits)
11358           - More 64bit fixes: Switched all atoms from int to IntPtr (they are
11359             defined as XID -> long in the C headers)
11360           - Removed 'new IntPtr((int))' and '(IntPtr)' casts from all NetAtoms 
11361             references since those are now IntPtr to begin with
11362           - Switched all Atom.XXX 'int' casts to IntPtr casts
11363           - Fixed XGrabPointer DllImport signature to work for 64bit (cursor arg)
11364           - Fixed XInternAtom signature for 64bit, now returns an IntPtr
11365           - Added XChangeActivePointerGrab DllImport (for X11DnD)
11366         * X11Structs.cs:
11367           - Changed 'int' type for Atoms in XEvent structures to IntPtr
11368           - Changed atom in HoverStruct to be IntPtr
11369         * X11DnD.cs:
11370           - Removed local DllImports, switched code to use those from XplatUIX11
11371           - Removed/fixed casts related to the switch of Atom to be a IntPtr
11373 2006-02-06  Mike Kestner  <mkestner@novell.com>
11375         * XplatUIX11.cs : many more 64 bit pinvoke changes.  I've audited all the 
11376         method signatures in the import region.  There may still be some
11377         lingering struct marshaling issues, as I didn't drill down into those.
11378         Yet.
11380 2006-02-06  Jackson Harper  <jackson@ximian.com>
11382         * ComboBox.cs: Dont manually set the top_item, this is computed
11383         when the scrollbar position is set.
11385 2006-02-06  Mike Kestner  <mkestner@novell.com>
11387         * XplatUIX11.cs : 64 bit changes to XGetWindowProperty usage. Fixes
11388         startup crashes on amd64.  There's other fixes needed.  All pinvoke
11389         usage of Atom needs to be mapped to IntPtr for example.  And there are
11390         likely other int/long issues to be addressed.
11392 2006-02-04  Alexander Olk  <alex.olk@googlemail.com>
11394         * FileDialog.cs: One more...
11396 2006-02-03  Alexander Olk  <alex.olk@googlemail.com>
11398         * FileDialog.cs: Next try
11400 2006-02-03  Alexander Olk  <alex.olk@googlemail.com>
11402         * FileDialog.cs: First part of fix for #77464
11404 2006-02-03  Alexander Olk  <alex.olk@googlemail.com>
11406         * ButtonBase.cs, ContainerControl.cs, Forms.cs,
11407           ThemeWin32Classic.cs: Fix for #77458. Correct handling of
11408           AcceptButton border drawing.
11410 2006-02-03  Peter Dennis Bartok  <pbartok@novell.com> 
11412         * Form.cs: Moved positioning of form after auto scaling is applied,
11413           otherwise it would possibly use wrong form size.
11415 2006-02-03  Peter Dennis Bartok  <pbartok@novell.com>
11417         * Control.cs (RecreateHandle): No need to re-create any child
11418           controls, the child windows will get destroyed automatically by
11419           the windowing system or driver, and re-created when the handle
11420           is being accessed the first time. Fixes #77456
11421         * Form.cs: No longer setting the form to closing if the handle is 
11422           being recreated. This seems like the right thing to do, don't
11423           have a bug or testcase for this, though.
11425 2006-02-02  Peter Dennis Bartok  <pbartok@novell.com>
11427         * FileDialog.cs: Suspend/Resume layouting when changing sizes of
11428           controls to avoid unwanted side effects
11430 2006-02-02  Peter Dennis Bartok  <pbartok@novell.com> 
11432         * Control.cs: 
11433           - ScaleCore needs to scale the bounds, not the ClientSize of the 
11434             control. Fixes #77416.
11435           - DefaultSize is 0,0 for control
11436         * TextBoxBase.cs: 
11437           - DefaultSize is 100, 20
11438           - SetBoundsCore: Now enforcing the height, no matter if the provided
11439             height is more or less than the preferred one, as long as AutoSize
11440             is on
11441         * Form.cs: Apply documented fudge factor. Part of item 3 fix for #77416
11443 2006-02-02  Peter Dennis Bartok  <pbartok@novell.com>
11445         * Control.cs:
11446           - ResumeLayout: Fixed logic when to call PerformLayout, we may not
11447             call unless both performLayout is true *and* we have a pending
11448             layout change
11449           - ResumeLayout: MS does not completely nest Suspend and Resume,
11450             they bottom out at 0, fixed our code to match that.
11451           - UpdateBounds/SetBoundsCore: Moved calling of UpdateDistances() to
11452             SetBoundsCore, we were updating even when we shouldn't. This fixes
11453             swf-anchors mis-anchoring when resizing the app fast and lots.
11454           - UpdateDistances: Now only setting the left and top distance if 
11455             we have a parent and are not suspended, this is based on
11456             a suggestion by Don Edvaldson in bug #77355.
11457           - OnVisibleChanged: Fixed logic when to create the control. We may
11458             not create the control if we have no parent or if it's not visible;
11459             switched to using Visible property instead of is_visible field 
11460             since the property also considers parent states. This fixes a bug
11461             when starting Paint.Net
11463 2006-02-02  Jackson Harper  <jackson@ximian.com>
11465         * Form.cs: If the forms handle hasn't been created yet don't call
11466         into xplatui to make it top most, just set the topmost flag on the
11467         form in CreateParams
11468         * XplatUIX11.cs: Handle WS_EX_TOPMOST.
11470 2006-02-01  Jackson Harper  <jackson@ximian.com>
11472         * ScrollableControl.cs: Refactored the Recalculate method a
11473         little, this wasn't handling all the variants of bottom and right
11474         bars needed to be added and added/removed based on their
11475         counterparts being added/removed (which changes the drawable
11476         size). Also we special case client widths and heights of 0 and
11477         don't add the scrollbar for those.
11479 2006-02-01  Peter Dennis Bartok  <pbartok@novell.com>
11481         * XplatUIX11.cs: 
11482           - Added method to get AbsoluteGeometry(); currently unused, but might
11483             be used in the future, if we try again to figure out toplevel
11484             coordinates with some more crappy window managers
11485           - Added FrameExtents() method to retrieve the WM set decoration size
11486           - Tried to fix up AddConfigureNotify and handling of ReparentNotify 
11487             to deal with at least KDE, FVWM and metacity (Fixes #77092)
11488         * Hwnd.cs: 
11489           - Added whacky_wm tracking var for metacity
11490           - Added logic to have default menu height if the actual menu height
11491             has not yet been calculated (part of fix for #77426)
11492         * Form.cs: Keep track whether client size has been set and re-set 
11493           it if a menu is added/removed afterwards (Fixes #77426)
11495 2006-01-31  Jackson Harper  <jackson@ximian.com>
11497         * Control.cs: When a new Site is set on the component attempt to
11498         pull the AmbientProperties from it.
11500 2006-01-31  Peter Dennis Bartok  <pbartok@novell.com>
11502         * ThemeWin32Classic.cs: Menu background is drawn in ColorMenu, not
11503           in the background of the owning form. Fixes #77332
11505 2006-01-31  Alexander Olk  <alex.olk@googlemail.com>
11507         * MimeIcon.cs: Fix for #77409
11509 2006-01-31  Alexander Olk  <alex.olk@googlemail.com>
11511         * XplatUIX11GTK.cs: Initial import
11513 2006-01-31  Jordi Mas i Hernandez <jordimash@gmail.com>
11515         * FixedSizeTextBox: fixes class signature
11517 2006-01-30  Jackson Harper  <jackson@ximian.com>
11519         * FixedSizeTextBox.cs: New internal class that represents a
11520         textBox that will not be scaled.
11521         * TreeView.cs:
11522         * ComboBox.cs:
11523         * UpDownBase.cs: Use the new FixedSizeTextBox instead of a
11524         standard TextBox.
11525                 
11526 2006-01-30  Peter Dennis Bartok  <pbartok@novell.com> 
11528         * XplatUIX11.cs: Retrieve default screen number instead of
11529           assuming 0. Attempted fix for #77318
11531 2006-01-30  Peter Dennis Bartok  <pbartok@novell.com>
11533         * XplatUIWin32.cs: 
11534           - GetWindowPos: When a window is parented by FosterParent, use 
11535             the desktop instead of FosterParent as the base to get coordinates
11536           - CreateWindow: Don't make FosterParent the parent window for Popups
11537             if we don't want a taskbar entry, Popups automatically don't get one
11538         * Hwnd.cs: Need to call remove to actually remove the key from the
11539           hash table
11541 2006-01-30  Mike Kestner  <mkestner@novell.com>
11543         * MenuAPI.cs: adjust MainMenu item popup location to y=0.
11545 2006-01-30  Jackson Harper  <jackson@ximian.com>
11547         * TreeView.cs:
11548         * TreeNode.cs: Raise events no matter how the treenode is
11549         checked. Patch by Don Edvalson.
11551 2006-01-30  Jackson Harper  <jackson@ximian.com>
11553         * TreeNode.cs: Signature fix.
11555 2006-01-29  Alexander Olk  <alex.olk@googlemail.com>
11557         * ThemeClearlooks.cs: Fixed a crash in ProgressBar drawing.
11559 2006-01-20  Mike Kestner  <mkestner@novell.com>
11561         * Form.cs: Add ActiveTracker property to do Captures and perform mouse
11562         event forwarding when menus are active.
11563         * MenuAPI.cs: kill the GrabControl hack.  Use Form.ActiveTracker.
11564         Most of the patch is pdb's with a little rework.
11566 2006-01-26  Peter Dennis Bartok  <pbartok@novell.com> 
11568         * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs, XplatUIOSX.cs: 
11569           Removed GetMenuDC and ReleaseMenuDC methods; replaced
11570           by PaintEventStart(handle, false) and PaintEventEnd(handle, false)
11571         * Form.cs: Changed WM_NCPAINT handler to use PaintEventStart and End
11572         * InternalWindowManager.cs: Added use of PaintEventStart/End to
11573           handling of WM_NCPAINT message, now passing the PaintEventArgs to
11574           the PaintWindowDecorations method
11575         * MainMenu.cs: Switched logic from GetMenuDC to PaintEventStart
11576         * MdiChildContext.cs: Switched logic from GetMenuDC to PaintEventStart
11577         * MenuAPI.cs: Made tracker window invisible
11578         * XplatUIWin32.cs:
11579           - Removed GetMenuDC and ReleaseMenuDC methods
11580           - Implemented the client=false path for PaintEventStart and
11581             PaintEventEnd
11583 2006-01-26  Peter Dennis Bartok  <pbartok@novell.com>
11585         * XplatUIWin32.cs(SetBorderStyle): Fixed3D needs a border
11586         * XplatUIX11.cs(DeriveWindowStyles): Updated to match fixed Form
11587           styles
11588         * Form.cs: 
11589           - MaximizeBox, MinimizeBox: Recreate the handle when setting
11590             the style
11591           - CreateParams: Reworked the styles to match MS look'n'feel,
11592             removed automatic setting of MinimizeBox, MaximizeBox, etc. via
11593             the WS_OVERLAPPEDWINDOW style. This fixes #76823.
11595 2006-01-26  Peter Dennis Bartok  <pbartok@novell.com> 
11597         * XplatUIX11.cs(GetWindowState): Now throwing an exception when the 
11598           window is not mapped, since otherwise every form that's being 
11599           created is considered minimized, which is wrong.
11600         * Form.cs: Catching the exception and returning our internal value
11601           instead
11603 2006-01-26  Peter Dennis Bartok  <pbartok@novell.com>
11605         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs: Added new driver method
11606           SetWindowMinMax() to have means to tell the driver about the minimum,
11607           maximum and maximized state window sizes. (Part of the fix for #76485)
11608         * Form.cs:
11609           - Implemented tracking of minimum and maximum window size, now calling
11610             new SetWindowMinMax() driver method to tell the driver (Part of the
11611             fix for #76485)
11612           - Finished handling of WM_GETMINMAXINFO method, now setting all values
11613             (Completes fix for #76485)
11614           - Calling new SetWindowMinMax driver method when the handle for a 
11615             form is created, to make sure the driver knows about it even if
11616             the values have been set before the window was created
11617           - Now eating the WM_WINDOWPOSCHANGED message if the form is minimized
11618             to avoid messing up our anchoring calculations (partial fix
11619             for #77355)
11620         * XplatUIStructs.cs: Added MINMAXINFO struct (moved from Win32 driver)
11621         * XplatUIX11.cs:
11622           - Added _NET_WM_STATE_HIDDEN property for detecting minimized state
11623           - Improved GetWindowState() to detect 'Minimized' state on Metacity 
11624             (and presumably other freedesktop.org compliant WMs). Left the
11625             assumption unmapped=minimized, needed for SetVisible to work.
11626           - Now setting the window state when creating windows
11627           - Fixed SetVisible to consider/set the window state when mapping
11628             a Form. We cannot set the state before it's mapped, and we cannot
11629             use Form.WindowState once it's mapped (since it would ask the
11630             driver and get 'normal'. Therefore, we grab the state before
11631             mapping, map, and then set state.
11632           - Implmemented SetWindowMinMax method; Metacity does not seem to
11633             honor the ZoomHints, though.
11634         * XplatUIWin32.cs:
11635           - Removed MINMAXINFO (moved to XplatUIStructs)
11636           - Added SetWindowMinMax stub (on Win32 the only way to set that
11637             information is in response to the WM_GETMINMAXINFO message, which
11638             is handled in Form.cs)
11639           - Added logic to SetVisible to set the proper window state when a 
11640             form is made visible (fixes #75720)
11642 2006-01-26  Jackson Harper  <jackson@ximian.com>
11644         * Control.cs (BeginInvoke): Automagically handle EventHandlers the
11645         same way we handle them with Invoke.
11647 2006-01-25  Peter Dennis Bartok  <pbartok@novell.com> 
11649         * Form.cs:
11650           - Added tracking of window state so CreateParams can return
11651             the appropriate style
11652           - Moved setting of WS_CAPTION style in CreateParams to allow
11653             styles without caption
11654         * DataGridTextBoxColumn.cs: We are now also creating the TextBox 
11655           control if the TextBox property is accessed. Fixes #77345
11656         * Control.cs:
11657           - get_Created: now uses is_disposed and is_created to determine
11658             return value (suggested by Jackson)
11659           - CreateHandle: No longer exits if the handle is being recreated
11660           - RecreateHandle: If the handle is not yet created call the 
11661             appropriate method to create either control or handle. If the
11662             control is already created CreateHandle will simply exit instead
11663             of just creating the handle
11664         * Hwnd.cs: Removed expose_pending tracking, no longer needed since we
11665           now SendMessage WM_DESTROY directly to the control when DestroyWindow
11666           is called.
11667         * XplatUIX11.cs: 
11668           - When DestroyWindow is called, instead of waiting for the 
11669             DestroyNotification from X11, we directly post it to the WndProc
11670             and immediately dispose the hwnd object.
11671             Same applies to DestroyChildWindows, and this obsoletes the
11672             expose_pending tracking. Contrary to Win32 behaviour we destroy our
11673             child windows before our own, to avoid X11 errors.
11674           - Removed the direct sending of WM_PAINT on UpdateWindow
11675         * XplatUIWin32.cs:
11676           - Reworked DoEvents and GetMessage to allow access to internal queue
11677             even when trying non-blocking access to the queue.  Fixes #77335. 
11678             Based on a patch suggestion by Don Edvalson. The new private
11679             GetMessage can now also be used as a backend for a PeekMessage
11680             frontend version.
11681         * XplatUI.cs: Improved debug output for CreateWindow
11683 2006-01-25  Jackson Harper  <jackson@ximian.com>
11685         * Help.cs: Allow param to be null. Patch by Don Edvalson.
11687 2006-01-24  Jackson Harper  <jackson@ximian.com>
11689         * ComboBox.cs: Clamp the max value set for the vertical scrollbar
11690         when we have a MaxDropItems lower then the selected index.
11692 2006-01-24  Jackson Harper  <jackson@ximian.com>
11694         * Control.cs: Don't allow selection of non visible controls, allow
11695         selection of controls without parents.
11697 2006-01-24  Jordi Mas i Hernandez <jordimash@gmail.com>
11699         * ThemeWin32Classic.cs: Fixes Datagrid drawing issues
11700         * DataGridDrawingLogic.cs: Add editing row only when is necessary
11702 2006-01-23  Jackson Harper  <jackson@ximian.com>
11704         * UpDownBase.cs: Make the textbox handle all the selection and
11705         tabbing. This fixes tabing to updown controls.
11707 2006-01-24  Jordi Mas i Hernandez <jordimash@gmail.com>
11709         * TextBoxBase.cs: fixes exception thown the object was null
11711 2006-01-23  Jackson Harper  <jackson@ximian.com>
11713         * ButtonBase.cs: Just use the base CreateParams. They set
11714         visibility and enabled correctly.
11715         * ComboBox.cs:
11716         * TrackBar.cs:
11717         * MonthCalendar.cs: Lets let the base set as much of the
11718         createparams as possible so we don't have duplicate code all over
11719         the place.
11721 2006-01-22  Alexander Olk  <alex.olk@googlemail.com>
11723         * ThemeGtk.cs: Added TrackBar and some experimental code to
11724           get double buffering back
11726 2006-01-21  Jordi Mas i Hernandez <jordimash@gmail.com>
11728         * DataGrid.cs: Allows row number set internally higher than the last
11729         when creating a new row. Restores the editing functionality.
11731 2006-01-20  Mike Kestner  <mkestner@novell.com>
11733         * MimeIcon.cs: delay Image creation until the icons are accessed
11734         instead of creating 190 scaled images on GnomeHandler startup.
11736 2006-01-19  Peter Dennis Bartok  <pbartok@novell.com> 
11738         * TextBoxBase.cs (WndProc): When handling WM_KEYDOWN we need to
11739           first call base before processing the event. Fixes #77279
11741 2006-01-19  Peter Dennis Bartok  <pbartok@novell.com>
11743         * XplatUIWin32.cs, Cursor.cs: Fixed code that wrongly assumed
11744           that the stride for the GDI bitmap would match the stride of
11745           a DIB or a Cursor.
11747 2006-01-19  Alexander Olk  <alex.olk@googlemail.com>
11749         * ThemeGtk.cs: Added ProgressBar, RadioButton, CheckBox
11751 2006-01-19  Jackson Harper  <jackson@ximian.com>
11753         * ComboBox.cs: Hookup the text controls keydown event so we get
11754         those when the text control has the focus.
11756 2006-01-18  Peter Dennis Bartok  <pbartok@novell.com> 
11758         * Label.cs: Now using the base events instead of defining new ones;
11759           this allows us to just call the base properties without having to
11760           duplicate all base property logic 
11762 2006-01-18  Peter Dennis Bartok  <pbartok@novell.com>
11764         * Label.cs: A label by default is not a tabstop (Fixes one of our
11765           failing nunit tests)
11767 2006-01-18  Peter Dennis Bartok  <pbartok@novell.com> 
11769         * XplatUIWin32.cs: Fixed wrong DoEvents logic. Fixes #77282
11770         * XplatUIX11.cs: Removed WM_PAINT check from DoEvents. Fixes #77282
11772 2006-01-18  Peter Dennis Bartok  <pbartok@novell.com>
11774         * Cursor.cs: Reimplemented creating cursor bitmaps without using
11775           the Bitmap(Stream) constructor which is semi-broken on MS GDI+.
11776           This fixes #77218
11777         * XplatUIWin32.cs: 
11778           - Reimplemented creating Bitmaps from DIBs since the Bitmap(Stream) 
11779             constructor creates images that can't be saved. Part of the fix
11780             for #76103
11781           - Added handling of CF_BITMAP as CF_DIB to clipboard code (Fixes #76103)
11782           - SetWindowState: Switched ShowWindow flags (part of an upcoming 
11783             bug fix for handling window state in forms properly)
11785 2006-01-18  Alexander Olk  <alex.olk@googlemail.com>
11787         * ThemeGtk.cs: Simplify ScrollBar drawing
11789 2006-01-18  Jackson Harper  <jackson@ximian.com>
11791         * Splitter.cs: Set the default dock style for the splitter control
11792         in the constructor.
11794 2006-01-18  Alexander Olk  <alex.olk@googlemail.com>
11796         * ThemeGtk.cs: Corrected StateType and ShadowType for
11797           gtk_paint_box
11799 2006-01-18  Alexander Olk  <alex.olk@googlemail.com>
11801         * Control.cs: Make use of Theme.DoubleBufferingSupported
11802         * ThemeGtk.cs:
11803           - Added drawing for flat style buttons
11804           - Added ScrollBar drawing
11806 2006-01-18  Alexander Olk  <alex.olk@googlemail.com>
11808         * ThemeClearlooks.cs: Removed some unneeded code.
11809         * ThemeGtk.cs: First part of ThemeGtk enhancements.
11811 2006-01-17  Peter Dennis Bartok  <pbartok@novell.com>
11813         * LinkLabel.cs: We need to update the hover drawing when
11814           leaving the control as well.
11816 2006-01-18  Jordi Mas i Hernandez <jordimash@gmail.com>
11818         * DataGrid.cs: Clicking on non empty areas in the columns
11819            area was giving an exception
11821 2006-01-17  Jackson Harper  <jackson@ximian.com>
11823         * ThemeWin32Classic.cs:
11824         * ListView.cs: Do not draw/clip the headers when the header style
11825         is None.
11827 2006-01-17  Jordi Mas i Hernandez <jordimash@gmail.com>
11829         * DataGrid.cs: Fixes 77260
11830         
11831 2006-01-17  Jordi Mas i Hernandez <jordimash@gmail.com>
11833         * DataGrid.cs: Clicking on a column on a empty grid was giving
11834           an exception
11836 2006-01-17  Peter Dennis Bartok  <pbartok@novell.com>
11838         * DataGrid.cs (OnKeyDown): Don't use the array if it's empty
11839           or any keypress will crash the grid.
11841 2006-01-17  Mike Kestner  <mkestner@novell.com>
11843         * MainMenu.cs (OnMenuChanged): set Height=0 to cause relayout.
11844         * ThemeWin32Classic.cs (CalcItemSize): clear Height/Width for 
11845         invisible/previously-visible items.
11846         [Fixes #76909]
11848 2006-01-17  Alexander Olk  <alex.olk@googlemail.com>
11850         * ThemeClearlooks.cs:
11851         - Added CL_Draw_Button method; now other theme controls that are 
11852           not derived from button or do not have a button can draw buttons
11853           too
11854         - Updated ComboBox drawing
11855         - Beautified RadioButton drawing
11856         - Corrected drawing of bottom and left tabs
11857         - Beautified DateTimePicker and MonthCalendar
11858         - Added CPDrawButton and CPDrawRadioButton
11860 2006-01-16  Jackson Harper  <jackson@ximian.com>
11862         * ComboBox.cs: Set the initial value of the scrollbar to the
11863         current index. Reduce the numbers of refreshs and IndexOfs called.
11865 2006-01-14  Alexander Olk  <alex.olk@googlemail.com>
11867         * FileDialog.cs: When the file listview is focused hitting the
11868           backspace key moves the fileview to the parent directory
11870 2006-01-13  Peter Dennis Bartok  <pbartok@novell.com>
11872         * Form.cs: 
11873           - Added RecreateHandle call when changing taskbar visibility to 
11874             trigger reparenting in Win32 driver (Fixes #75719)
11875           - If a window has minimize or maximize buttons, it cannot have
11876             a help button
11877         * XplatUIWin32.cs:
11878           - CreateWindow: When no WS_EX_APPWINDOW style is found we parent
11879             the toplevel form with FosterParent (A toolwindow not on the
11880             taskbar) (Fixes #75719)
11881           - Made FosterParent a toolwindow
11883 2006-01-13  Alexander Olk  <alex.olk@googlemail.com>
11885         * FileDialog.cs: Don't crash if InitialDirectory doesn't exist
11887 2006-01-13  Alexander Olk  <alex.olk@googlemail.com>
11889         * ToolTip.cs: If SetToolTip is called from a control and the mouse
11890           is currently over that control, make sure that tooltip_window.Text
11891           gets updated
11893 2006-01-13  Mike Kestner  <mkestner@novell.com>
11895         * MimeIcon.cs: size_t on lp64 fix for gdk_pixbuf_save_to_file extern.
11897 2006-01-13  Jackson Harper  <jackson@ximian.com>
11899         * TreeView.cs: On MS GetNodeAt never actually factors in the X
11900         value passed.  Also redraw the selected node when we recieve
11901         focus, so tabbing between trees works correctly.
11903 2006-01-13  Alexander Olk  <alex.olk@googlemail.com>
11905         * MimeIcon.cs: GnomeHandler: older gnome versions don't have
11906           ~/.gconf/%gconf-tree.xml, so use
11907           .gconf/desktop/gnome/interface/%gconf.xml
11909 2006-01-13  Peter Dennis Bartok  <pbartok@novell.com> 
11911         * TextControl.cs: Draw text in gray if control is disabled
11913 2006-01-13  Peter Dennis Bartok  <pbartok@novell.com> 
11915         * TreeView.cs: Draw the focus rectangle outside the highlight, to
11916           make sure it's always visible. Fixes #76680.
11918 2006-01-13  Peter Dennis Bartok  <pbartok@novell.com>
11920         * TreeView.cs: Implemented Wheel scrolling. Fixes #76531
11922 2006-01-13  Jonathan Chambers  <jonathan.chambers@ansys.com>
11924         * PageSetupDialog.cs: Added.
11925         * PrintDialog.cs: Attributes.
11926         * PrintPreviewControl.cs: Updates.
11927         * PrintPreviewDialog.cs: Updates.
11928         
11929 2006-01-12  Peter Dennis Bartok  <pbartok@novell.com>
11931         * Control.cs: Undid my selection check fix, since it's not needed
11932         * TextBoxBase.cs:
11933           - Now considering the presence of hscroll/vscroll when sizing
11934             vscroll/hscroll respectively. Fixed bug #77077
11935           - Added Left/Up/Down/Right to IsInputKey list to prevent
11936             ContainerControl from stealing them. This fixes what I broke
11937             with my last checkin.
11939 2006-01-12  Peter Dennis Bartok  <pbartok@novell.com> 
11941         * ScrollableControl.cs: Implemented dockpadding. Fixes #77166. And
11942           I finally understand how the property can be set without a setter :-)
11944 2006-01-12  Peter Dennis Bartok  <pbartok@novell.com>
11946         * Application.cs:
11947           - Switched RunLoop to use static Message.Create to create a 
11948             Message object
11949           - Added PreProcessMessage call in runloop for keyboard events; this
11950             is part of the fix for #77219, I overlooked this originally in the
11951             MSDN doc for PreProcessMessage
11952         * Control.cs:
11953           - Removed call to PreProcessMessage from handling of keyboard 
11954             messages; it's supposed to be done in the message pump
11955           - Moved call to ProcessKeyEventArgs inside ProcessKeyMessage as
11956             per MSDN documentation.
11957           - IsInputChar: All chars are input chars by default; removed the 
11958             parent calling chain, MS does not document that
11959           - PreProcessMessage: If IsInputChar is true, we want to return false
11960             to allow dispatching of the message
11961           - When selecting the next control, now also check that we're not
11962             selecting ourselves again and therefore return a false positive.
11963         * TextBoxBase.cs:
11964           - Tried to match return values for IsInputKey and ProcessDialogKey
11965             to what MS returns; moved processing of our special keys outside
11966             ProcessDialogKey since MS does not seem to return true on those.
11967           - Moved code that previously was in ProcessDialogKey into new private
11968             ProcessKey method, which gets called upon receipt of WM_KEYDOWN
11969           - Reworked handling of WM_CHAR to not have to duplicate code from
11970             Control.cs anymore, instead we simply call down to base.
11971            
11972 2006-01-12  Jackson Harper  <jackson@ximian.com>
11974         * ComboBox.cs: We always need to refresh the text area when
11975         EndUpdate is called. Fixes the combobox in the file dialog.
11976         * Control.cs: Don't create the creator_thread until the controls
11977         handle is created.  Also in InvokeRequired we check if the
11978         creator_thread is null. This gives the effect of InvokeRequired
11979         returning true if the controls handle is not created yet, and
11980         matches MS.
11982 2006-01-12  Peter Dennis Bartok  <pbartok@novell.com>
11984         * XplatUI.cs:
11985           - Added StartLoop() driver method. This is used to allow drivers to
11986             prepare for an upcoming GetMessage/TranslateMessage/DispatchMessage
11987             loop for a particular thread
11988           - Added EndLoop() driver method. This is called once the message
11989             pump for the thread is shut down
11990           - Added SupportsTransparency method to allow the driver to indicate
11991             opacity support for windows
11992         * Form.cs:
11993           - Removed TODO attribute, completed AllowTransparency property
11994           - Added documented logic to Opacity
11995         * GroupBox.cs, Label.cs, LinkLabel.cs, PropertyGrid.cs, Control.cs,
11996           ButtonBase.cs, CheckedListBox.cs: Combined Jackson's and Miguel's
11997           versions of CompatibleTextRendering
11998         * X11Structs.cs: Added opacity atom to our atom enumeration
11999         * Hwnd.cs: Added opacity tracking (we need to track since the opacity
12000           of a form might be set before it's reparented by the WM, and we need
12001           the opacity value without calling up to Form)
12002         * XplatUIDriver.cs: Added StartLoop(), EndLoop() and 
12003           SupportsTransparency() driver methods
12004         * Application.cs: Now calling StartLoop and EndLoop driver methods
12005         * XplatUIX11.cs:
12006           - Added opacity atom registration
12007           - Added StartLoop()/EndLoop() methods. They're empty right now but
12008             will need to get implemented when we switch to a per-thread queue
12009           - Implemented SupportsTransparency() method
12010           - Implemented SetWindowTransparency() method
12011           - Added support for setting the opacity value when a window is
12012             reparented (since the opacity needs to be set on the WM frame)
12013         * XplatUIOSX.cs, XplatUIWin32.cs:
12014           - Added SupportsTransparency(), StartLoop() and EndLoop() methods
12016 2006-01-12  Alexander Olk  <alex.olk@googlemail.com>
12018         * ThemeClearlooks.cs: Don't crash if TabControl.Parent is null.
12020 2006-01-12  Alexander Olk  <alex.olk@googlemail.com>
12022         * FileDialog.cs: Added ToolTip for MWFFileView
12023         * MimeIcon.cs: Rewrote GnomeHandler.
12024           - Get currently used gnome icon theme from
12025             ($HOME)/.gconf/%gconf-tree.xml
12026           - Make use of inherited icon themes
12027           - Support SVG icon themes like Tango via librsvg
12029 2006-01-12  Miguel de Icaza  <miguel@novell.com>
12031         Revert's Jackson's revert which broke 2.0 builds.   Fix both
12032         builds. 
12033         
12034         * Application.cs: Move the use_compatible_text_rendering outside
12035         the NET_2_0 define.  If we ever need to use the
12036         use_compatible_text_rendering on the individual controls they will
12037         access the variable from the common shared code paths.
12039 2006-01-12  Peter Dennis Bartok  <pbartok@novell.com>
12041         * XplatUI.cs:
12042           - Added more granular debug options
12043           - Added method to print both window text and id
12044           - Switched debug output to use new Window() debug method
12045           - Added IsEnabled() driver method
12046           - Added EnableWindow() driver method
12047         * Form.cs:
12048           - Removed end_modal; no longer needed, new loop handles termination
12049             via 'closing' variable
12050           - If form is modal, setting DialogResult will now initiate loop
12051             termination via 'closing' variable
12052           - Added support for is_enabled/WS_DISABLED to CreateParams
12053           - Close() now just send the WM_CLOSE message; the WM_CLOSE handler
12054             does all the work
12055           - Removed code that's now in RunLoop from ShowDialog()
12056           - Added various documented sanity checks to ShowDialog()
12057           - Added handling of WM_DESTROY message; we set 'closing' on getting
12058             the message to indicate the message pump to terminate
12059           - Added handling of new internal WM_CLOSE_INTERNAL message - it's
12060             send by the Application.ExitThread method. (We send the message
12061             to destroy the window after all other events have been
12062             processed through the queue, instead of destroying the handle 
12063             directly)
12064           - Moved code from Close() method to WM_CLOSE handler; added logic
12065             to only send close-related events if the form is not displayed
12066             modal
12067         * Splitter.cs (..ctor): Fixed typo in resource name
12068         * Control.cs:
12069           - DrawBackgroundImage: Explicitly selecting the wrap mode for the
12070             brush now
12071           - set_Cursor: Now only setting calling into XplatUI if the handle for
12072             the control is already created; this avoids implict handle creation
12073             or crashes if it's not created
12074           - set_Enabled: Now setting the enabled state via the new driver method
12075             instead of just tracking it
12076           - CreateParams: Added logic to set WS_DISABLED based on enabled state
12077           - CreateControl: Reordered event firing and method calls to more
12078             closely fire events in the order MS does. Now setting the
12079             enabled state in the driver when creating the control.
12080           - SetVisibleCore: Moved when the OnVisibleChanged event is fired to
12081             match MS order
12082         * FolderBrowserDialog.cs, MessageBox.cs, ButtonBase.cs, TrackBar.cs,
12083           MonthCalendar.cs: get_CreateParams: Added setting of WS_DISABLED 
12084         * XplatUIStructs.cs: Added internal WM_CLOSE_INTERNAL mesage id
12085         * Hwnd.cs:
12086           - Added tracking of window enabled state (get_Enabled/set_Enabled)
12087           - Added EnabledHwnd property to easily allow a driver to find the
12088             handle of the first enabled window in the parent chain (this is
12089             used by drivers to pass up input events of disabled windows)
12090         * XplatUIDriver.cs: Added IsEnabled() method
12091         * Application.cs:
12092           - Removed crude and obsolete exiting tracking variable
12093           - Removed internal ModalRun(); replaced by RunLoop()
12094           - Implemented private CloseForms() method to allow closing all 
12095             windows owned by a particular (or all) threads
12096           - Exit() now properly closes all windows without forcing the message
12097             pump to quit
12098           - Removed obsolete InternalExit() method
12099           - Changed Run() methods to use new RunLoop() message pump
12100           - Implemented new RunLoop() method for both modal and non-modal forms
12101         * CommonDialog.cs:
12102           - get_CreateParams: Added setting of WS_DISABLED
12103           - Simplified ShowDialog(); now all the work is done in RunLoop(),
12104             invoked via Form.ShowDialog()
12105         * NativeWindow.cs: We don't remove the window from the collection when
12106           the handle is destroyed; there might still be messages for it in the
12107           queue (mainly the resulting WM_DESTROY); instead it will be removed
12108           when Control calls InvalidateHandle in the WM_DESTROY handler
12109         * XplatUIX11.cs:
12110           - CreateWindow: Added logic to handle the WS_DISABLED window style
12111           - EnableWindow: Implemented based on Hwnd.Enabled
12112           - GetMessage: Reset PostQuitState so the method can be called again
12113           - Implemented support for disabled windows (passing messages to the
12114             first enabled parent) in handling all input messages
12115           - Added optimizations for handling Expose events
12116           - Implemeted new driver method IsEnabled()
12117           - Now always resetting paint pending tracking vars when we start paint
12118           - Re-implemented UpdateWindow via just sending a WM_PAINT message
12119         * XplatUIOSX.cs: Added IsEnabled method stub
12120         * XplatUIWin32.cs: Implemented new IsEnabled() method
12122 2006-01-11  Jackson Harper  <jackson@ximian.com>
12124         * ButtonBase.cs, CheckedListBox.cs, GroupBox.cs, Label.cs,
12125         LinkLabel.cs, PropertyGrid.cs: Unbreak 1.1 build. Consolidate the
12126         variables a little.
12127         * ColorDialog.cs: Clear out the old form before adding the new
12128         panel.  
12130 2006-01-11  Jackson Harper  <jackson@ximian.com>
12132         * X11Dnd.cs: Make sure to add all the text formats when adding
12133         strings to the data object.
12134         * TreeNodeCollection.cs: When adding to a sorted tree we need to
12135         do some redrawing too.  Also change the UpdateNode to an
12136         UpdateBelow so the newly added node gets painted.
12137         
12138 2006-01-11  Miguel de Icaza  <miguel@novell.com>
12140         * ButtonBase.cs, CheckedListBox.cs, GroupBox.cs, Label.cs,
12141         LinkLabel.cs, PropertyGrid.cs: Implement the
12142         UseCompatibleTextRendering property for 2.x
12144         * Application.cs (SetCompatibleTextRenderingDefault): Add. 
12146 2006-01-11  Jackson Harper  <jackson@ximian.com>
12148         * TreeView.cs: Use the property for setting the selected node so
12149         the correct events get raised.
12150         * TreeNode.cs: Update the tree when the fore/back colours of a
12151         node are set.
12153 2006-01-10  Jackson Harper  <jackson@ximian.com>
12155         * TreeView.cs: Allow setting SelectedNode to null.
12157 2006-01-9  Jonathan Chambers  <jonathan.chambers@ansys.com>
12159         * Form.cs: Fix support for Form TransparencyKey and Opacity on Windows.
12161 2006-01-9  Jonathan Chambers  <jonathan.chambers@ansys.com>
12163         * PrintControllerWithStatusDialog.cs: Update page number in dialog.
12165 2006-01-9  Jonathan Chambers  <jonathan.chambers@ansys.com>
12167         * PrintDialog.cs: Added attributes and set default property values.
12169 2006-01-9  Jonathan Chambers  <jonathan.chambers@ansys.com>
12171         * PrintControllerWithStatusDialog.cs: 
12172         Added PrintControllerWithStatusDialog.
12174 2006-01-9  Jonathan Chambers  <jonathan.chambers@ansys.com>
12176         * XplatUI.cs, Form.cs, XplatUIDriver.cs, XplatUIX11.cs, XplatUIOSX.cs, 
12177         XplatUIWin32.cs: Added support for Form TransparencyKey and Opacity on Windows.
12179 2006-01-9  Jonathan Chambers  <jonathan.chambers@ansys.com>
12181         * ComboBox.cs: Fix crash when there is no selected item (due to last commit)
12183 2006-01-09  Jonathan Chambers  <jonathan.chambers@ansys.com>
12185         * ComboBox.cs: Added KeyDown event handler for processing arrow keys
12186         and PgUp/PgDown. Also, scroll to selected item upon dropdown. Bugs 76857 and 76788.
12188 2006-01-08  Alexander Olk  <alex.olk@googlemail.com>
12190         * MimeIcon.cs: Added internal class SVGUtil.
12192 2006-01-08  Alexander Olk  <alex.olk@googlemail.com>
12194         * FileDialog.cs: Don't crash if there are two files with the
12195           same name but different locations.
12197 2006-01-08  John BouAntoun  <jba-mono@optusnet.com.au>
12199         * MonthCalendar.cs: Fixed annoying rendering bug when selecting
12200         dates across multiple month grids. Used to not highlight entire 
12201         month, but does now.
12202         
12203 2006-01-06  Jackson Harper  <jackson@ximian.com>
12205         * MonthCalendar.cs: Removed DoEvents call to prevent a running
12206         message loop. Change timer intervals to numbers that seem more
12207         natural.
12209 2006-01-06  John BouAntoun  <jba-mono@optusnet.com.au>
12211         * DateTimePicker.cs: Modified CalculateDropDownLocation to use the screen
12212           object for location info since screen object is now implemented.
12214 2006-01-05  Jackson Harper  <jackson@ximian.com>
12216         * AsyncMethodData.cs: Check if the call is complete before doing a WaitOne
12217         * AsyncMethodResult.cs: We no longer use a WeakReference for the
12218         AsyncMethodResult, this is because we ALWAYS want the
12219         ManualResetEvent to get set.
12220         * Control.cs: When disposing use an async invoke to call shutdown
12221         code, so that thigns don't block on the finalizer thread.  Also
12222         check if we even have a message loop before trying to send
12223         messages, if we don't then don't bother sending messages.
12224         - No more weak references for async methods
12225         * XplatUIDriver.cs: No more weak references for async methods.
12227 2006-01-04  Alexander Olk  <alex.olk@googlemail.com>
12229         * FontDialog.cs: Fix, don't throw an exception if FontFamily.Families
12230           returns two FontFamily with the same name
12232 2006-01-04  Peter Dennis Bartok  <pbartok@novell.com>
12234         * ThemeWin32Classic.cs, ThemeClearlooks.cs: Dropped stupid scheme of 
12235           drawing disabled text. Instead using the ColorGrayText color
12237 2006-01-04  Jackson Harper  <jackson@ximian.com>
12239         * TreeNode.cs: redraw the node when its image index is changed.
12241 2006-01-04  Peter Dennis Bartok  <pbartok@novell.com>
12243         * RichTextBox.cs: Same fix as last, just for SelectionColor. This
12244           time I checked there are no others like it.
12246 2006-01-04  Jackson Harper  <jackson@ximian.com>
12248         * AsyncMethodResult.cs: Use a ManualResetEvent instead of a mutex,
12249         this gives the behavoir I was looking for.
12250         * Control.cs: Special case Invoking EventHandlers, this matches MS
12251         and fixes part of bug #76326.
12253 2006-01-04  Alexander Olk  <alex.olk@googlemail.com>
12255         * ThemeClearlooks.cs, FileDialog.cs:
12256           - Reflect the latest Theme class changes
12257           - Remove Mono.Unix.Syscall.time in FileDialg and replace it 
12258             with DateTime
12259             
12260 2006-01-04  Alexander Olk  <alex.olk@googlemail.com>
12262         * Theme.cs: Cache UI resource images and resize them if needed
12264 2006-01-03  Peter Dennis Bartok  <pbartok@novell.com>
12266         * RichTextBox.cs: FormatText is 1-based, make it so when SelectionFont
12267           is called. This fixes the crash in Nexxia when setting the font
12268           attributes in the chat. [However, RTF needs a look-over to make sure
12269           that all SelectionXXX methods handle the special case that selection
12270           is empty and therefore the change must be applied to all text starting
12271           at the cursor/selection start]
12273 2006-01-03  Peter Dennis Bartok  <pbartok@novell.com> 
12275         * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs, XplatUIWin32.cs,
12276           XplatUIOSX.cs: Added SendMessage and PostMessage methods
12277         * X11Keyboard.cs: Switched to new way of calling PostMessage
12279 2006-01-03  Peter Dennis Bartok  <pbartok@novell.com>
12281         * Theme.cs: Added theme interface for images to allow the theme to
12282           control what images are used for things like FileDialog, MessageBox
12283           icons, etc.
12284         * MessageBox.cs: Now uses the new Theme icon/image interfaces
12286 2006-01-03  Alexander Olk  <alex.olk@googlemail.com>
12288         * FileDialog.cs:
12289           - Removed some dead code
12290           - Opening a recently used file does work now
12291           - Small UI enhancements
12292           - Refactoring
12294 2006-01-02  Alexander Olk  <alex.olk@googlemail.com>
12296         * FileDialog.cs: Forgot too add __MonoCS__
12298 2006-01-02  Alexander Olk  <alex.olk@googlemail.com>
12300         * FileDialog.cs: We are able to read recently used files now let's
12301           go on and write them.
12303 2006-01-01  Alexander Olk  <alex.olk@googlemail.com>
12305         * FileDialog.cs: Breathe some life into "last open"/"recently used"
12306           button
12307         * MimeIcon.cs: Do a check for the top level media type also
12309 2005-12-31  Alexander Olk  <alex.olk@googlemail.com>
12311         * ThemeClearlooks.cs:
12312           - Added CPDrawStringDisabled
12313           - ButtonBase_DrawText: Workaround for a DrawString bug; cut off
12314             some chars if the text doesn't fit into text_rect
12315           - DrawListViewItem: If View = View.LargeIcon center the image;
12316             rewrote the drawing of ListViewItem.Text if View = 
12317             View.LargeIcon
12319 2005-12-31  Alexander Olk  <alex.olk@googlemail.com>
12321         * MimeIcon.cs: Use default KDE icon theme if there is no
12322           "48x48" directory for the current icon theme, fixes #77114
12323         * Mime.cs: Disable not working and actually not used code. 
12324         * ThemeWin32Classic.cs:
12325           - Replace "new SolidBrush" in GetControlBackBrush and
12326             GetControlForeBrush with ResPool.GetSolidBrush
12327           - Changed DrawListViewItem from private to protected virtual
12328         * FileDialog.cs:
12329           - Added form.MaximizeBox = true
12330           - Don't throw an exception if there is a broken symbolic link
12332 2005-12-23  Jackson Harper  <jackson@ximian.com>
12334         * TabControl.cs: Give the panels focus, keyboard navigation is
12335         fixed so this works correctly now.
12336         - We need these key events also.
12337         * ToolBar.cs: Remove some of the poor mans double buffering.
12338         
12339 2005-12-24  Alexander Olk  <alex.olk@googlemail.com>
12341         * ComboBox.cs: The internal TextBox now returns the focus.
12343 2005-12-23  Jackson Harper  <jackson@ximian.com>
12345         * ThemeWin32Classic.cs:  Draw the text for all tab appearances.
12347 2005-12-23  Peter Dennis Bartok  <pbartok@novell.com>
12349         * Control.cs: Removed debug code
12350         * XplatUIX11.cs: Changed DestroyChildWindows to also consider
12351           implicit children
12353 2005-12-23  Peter Dennis Bartok  <pbartok@novell.com> 
12355         * Control.cs: When creating the control, update the Z-order after
12356           all it's children are created, too. (Fixes nexxia not showing
12357           picturebox bug)
12359 2005-12-23  Peter Dennis Bartok  <pbartok@novell.com>
12361         * Control.cs: Do not update the anchoring distances if layout is
12362           suspended, instead do it once layout is resumed
12364 2005-12-22  Peter Dennis Bartok  <pbartok@novell.com> 
12366         * Control.cs: 
12367           - After many hours of debugging, for both Jackson and
12368             myself, it turns out that it helps to set the parent of a control
12369             if you want to actually see it onscreen. In the spirit of that
12370             discovery, we're now setting the parent of the control and
12371             it's children when the control's handle is created. This fix
12372             will make Lutz Roeder's Reflector run happily. 
12373           - now just creating the handle instead of the whole control when
12374             getting a graphics context for the control.
12376 2005-12-22  Peter Dennis Bartok  <pbartok@novell.com>
12378         * ScrollableControl.cs: When calculating the canvas, don't consider
12379           the scrollbar widths. Instead, predict if horizontal scrollbar
12380           will affect canvas when deciding on vertical display and vice versa.
12382 2005-12-22  Peter Dennis Bartok  <pbartok@novell.com>
12384         * RichTextBox.cs: Set default RTF font for documents that don't
12385           have a font table (Fixes #77076)
12387 2005-12-22  Jackson Harper  <jackson@ximian.com>
12389         * TextBoxBase.cs: It's difficult to do, but you can have an empty
12390         clipboard. This prevents a NullRef in that case.
12391         * XplatUIX11.cs: Use CLIPBOARD not PRIMARY for our
12392         clipboard. PRIMARY is for the currently selected text only. (We
12393         should implement PRIMARY at some point.
12395 2005-12-21  Peter Dennis Bartok  <pbartok@novell.com>
12397         * XplatUIWin32.cs: Fixed the TEXTMETRIC structure, we were calling
12398           a Unicode function with a structure that was defined in Ansi way.
12399           This fixes #76942.
12401 2005-12-21  Jackson Harper  <jackson@ximian.com>
12403         * StatusBar.cs: Statusbar handles its fore/back colours on it's
12404         on. Because thats how it rolls. (and this avoids it using ambient
12405         colours).
12406         * ThemeWin32Classic.cs: Use the proper back color for filling.
12407         * Menu.cs: Use the system menu bar color for drawing menu
12408         bars. Using the window back color will bring ambient colours into
12409         the picture.
12411 2005-12-21  Alexander Olk  <alex.olk@googlemail.com>
12413         * ColorDialog.cs: Fixed a memory leak that caused a SIGSEV. A lot of
12414           Bitmaps were created and not disposed.
12416 2005-12-21  Peter Dennis Bartok  <pbartok@novell.com>
12418         * Control.cs (CreateControl): Don't do anything if the control is
12419           already created, otherwise we'd fire the OnCreated event more than
12420           once
12422 2005-12-21  Peter Dennis Bartok  <pbartok@novell.com> 
12424         * ComboBox.cs (FindStringCaseInsensitive): Don't search for emtpy strings,
12425           will always match. Instead return -1. Fixes #76464.
12427 2005-12-21  Peter Dennis Bartok  <pbartok@novell.com>
12429         * TextControl.cs (RecalculateLine): Only wrap if the wrap point is
12430           neither the beginning nor the end of the line (Fixes bug #76479)
12432 2005-12-21  Peter Dennis Bartok  <pbartok@novell.com> 
12434         * Control.cs:
12435           - ControlNativeWindow.ControlFromHandle(): Now handling situation
12436             where handle is invalid
12437           - FromHandle(): Now using hashtable-based ControlFromHandle() lookup
12438             instead of slower linear search
12439         * NativeWindow.cs: Don't remove the window from the hashtable until
12440           after the driver has destroyed it (since the driver might use
12441           Control.FromHandle to lookup the control object
12442         * Hwnd.cs: Added DestroyPending property to track if a window is 
12443           already destroyed as far as the driver is concerned and only hasn't
12444           yet notified the control
12445         * XplatUIX11.cs:
12446           - Activate(): Check if the window is still valid before using the 
12447             handle
12448           - Implemented DestroyChildWindow() method to mark child windows as
12449             destroyed when a window is destroyed. This prevents situations 
12450             where we might call an X method based on queued events for a
12451             window that already has been destroyed but we haven't yet pulled
12452             the destroy method from the queue.
12453           - Added a call to the new DestroyChildWindow() method to the drivers
12454             DestroyWindow code. Also now marking the destroyed window itself
12455             as pending
12457 2005-12-20  Jackson Harper  <jackson@ximian.com>
12459         * StatusBar.cs:
12460         * StatusBarPanel.cs: Don't calculate panel sizes on draw
12461         anymore. Just do them when needed, also track the rects of panels
12462         so that we can optimize refreshing more in the future.
12464 2005-12-20  Alexander Olk  <alex.olk@googlemail.com>
12466         * ColorDialog.cs: Fixed focus drawing in small color controls
12468 2005-12-19  Jackson Harper  <jackson@ximian.com>
12470         * InternalWindowManager.cs:
12471         * MdiWindowManager.cs: Cleanup some coordinate system changes so
12472         moving windows works properly.
12474 2005-12-19  Peter Dennis Bartok  <pbartok@novell.com> 
12476         * Control.cs: 
12477           - Removed call to InitLayout() from SetBoundsCore(); doc says
12478             it's only called when a control is added to a container
12479           - Split InitLayout logic, moved to separate UpdateDistances() method
12480             since we need to perform those calculations more often than just
12481             when adding the control to a container. (Needed to fix #77022)
12482           - Now calling UpdateDistances() from UpdateBounds() (fixes #77022)
12483           - Reduced the OnBindingContextChanged events count, don't send them
12484             unless the control is created, we still aren't totally matching
12485             MS, but I can't quite figure out some of their rules
12487 2005-12-18  Alexander Olk  <alex.olk@googlemail.com>
12489         * ThemeClearlooks.cs: Corrected distance between ProgressBar
12490           stripes
12492 2005-12-18  Alexander Olk  <alex.olk@googlemail.com>
12494         * ThemeClearlooks.cs:
12495           - Updated ProgressBar drawing
12496           - Corrected drawing of ScrollBars and scroll buttons
12497           - Some temporary fixes for minor pixel artefacts
12499 2005-12-18  Peter Dennis Bartok  <pbartok@novell.com> 
12501         * Control.cs:
12502           - Reworked Controls.Add(), Controls.Remove() and set_Parent() to
12503             cause events to be sent in the same order as MS does.
12504           - Added ChangeParent() method to trigger various OnXXXChanged events
12505             that need to be fired when a parent changes (This is a reworking
12506             of the patch from r54254, with the X11 errors fixed)
12507           - Removed SuspendLayout()/ResumeLayout() calls from Controls.Clear()
12508             since on MS we get OnLayoutChanged events when calling Clear()
12509           - Changed Enabled property to consider parent state as well, if a
12510             parent is not enabled, the control will not be either
12511           - Changed Parent property to simply call Controls.Add() since that
12512             now does all the work required, this way we avoid code duplication
12513           - Threw in a few OnBindingsContextChanged calls to try and match
12514             when MS sends them. We seem to send a few too many, though.
12515           - Added call to CreateControl when adding the control to a parent.
12516             We were never calling CreateControl. Still needs some work, in
12517             some places we treat HandleCreated and ControlCreated as equal, 
12518             which is wrong
12519           - Removed obsolete commented out code from UpdateZOrder()
12521 2005-12-18  Alexander Olk  <alex.olk@googlemail.com>
12523         * ThemeClearlooks.cs: Updated TrackBar drawing.
12525 2005-12-17  Alexander Olk  <alex.olk@googlemail.com>
12527         * FileDialog.cs: Patch for #76901 by Atsushi Enomoto
12529 2005-12-17  Alexander Olk  <alex.olk@googlemail.com>
12531         * FileDialog.cs: Add the Help button and the open readonly
12532           checkbox only if needed
12534 2005-12-16  Jackson Harper  <jackson@ximian.com>
12536         * Control.cs: Make sure we have an active menu before trying to
12537         process commands on it. Prevents menu-less forms from crashing
12538         when Alt is pressed.
12539         * TreeNodeCollection.cs: Some fixes to prevent null refs. Patch by
12540         Dieter Bremes.
12541         * RichTextBox.cs: Expand statement to help out gmcs and fix the
12542         2.0 build.
12544 2005-12-16  Jackson Harper  <jackson@ximian.com>
12546         * InternalWindowManager.cs: Don't translate tool windows screen
12547         coordinates. This fixes windows 'bouncing' around when being moved.
12549 2005-12-15  Peter Dennis Bartok  <pbartok@novell.com> 
12551         * TextBoxBase.cs:
12552           - MaxLength now treats 2^31-1 equal to unlimited length (this is
12553             not quite MS compatible, MS uses that number only for single line
12554             and 2^32-1 for multi-line, but I figure it won't hurt keeping
12555             the limit at 2GB)
12556           - Now enforcing the MaxLength limit when entering characters
12557           - Added argument to internal Paste() method to track if it's called
12558             from programatically or via keyboard, since keyboard driven pastes
12559             need to enforce max-length
12560           - Added logic to Paste to only paste as many chars as MaxLength 
12561             allows
12562         * RichTextBox.cs: Updated to use new obey argument for internal Paste()
12563         * TextControl.cs:
12564           - Added Length property to return number of characters in document
12565           - Added private CharCount property which only tracks actual chars
12566             in the document (no linefeeds) and fires event when CharCount
12567             changes
12568           - Added tracking of character count to all methods that alter it
12569           - Added LengthChanged event to allow applications to subscribe
12570             to any changes to the document
12572 2005-12-15  Peter Dennis Bartok  <pbartok@novell.com> 
12574         * TextBox.cs: 
12575           - Removed local password_char field (moved to TextBoxBase)
12576           - Now setting the document's password var when password is
12577             set
12578         * TextBoxBase.cs:
12579           - Added password_char field (needed here so MultiLine can
12580             access it)
12581           - Added logic to MultiLine property setter to set the document's
12582             variable when password display is allowed
12583           - Removed debug code and made some debug code conditional
12584         * TextControl.cs:
12585           - Added RecalculatePasswordLine() method to handle special password
12586             char only lines
12587           - Added PasswordChar property, also added related tracking vars
12588           - Draw() method now uses local text var for grabbing text to draw,
12589             this var is set to line.text unless we're doing password display,
12590             then it is set to the pre-generated all-password-chars line
12591           - Added calling RecalculatePasswordLine() method for password lines
12593 2005-12-14  Peter Dennis Bartok  <pbartok@novell.com> 
12595         * Hwnd.cs: 
12596           - Added Reparented property to allow tracking of Window Manager
12597             reparenting actions (which affect X/Y calculations of toplevel 
12598             windows)
12599           - Made ToString() print window handles in hex
12600         * XplatUIX11.cs:
12601           - AddConfigureNotify(): Now uses reparented state off Hwnd to
12602             determine if X/Y needs offsetting
12603           - AddConfigureNotify(): Fixed offset calculations
12604           - Now adds ReparentNotify messages into the queue
12605           - Now processes ReparentNotify messages and causes a 
12606             WM_WINDOWPOSCHANGED message to be sent upstream if a window
12607             is reparented (as most likely it's X/Y coordinates are changed
12608             due to that)
12610 2005-12-14  Jackson Harper  <jackson@ximian.com>
12612         * XplatUIX11.cs: Tool windows still need to respek focus.
12614 2005-12-14  Peter Dennis Bartok  <pbartok@novell.com> 
12616         * Control.cs: Undid 54254 (causing XConfigure errors) so we can
12617           have a working release
12619 2005-12-13  Jackson Harper  <jackson@ximian.com>
12621         * Form.cs: Update styles after setting the border style regardless
12622         of whether or not the window is using a window manager.
12624 2005-12-13  Jackson Harper  <jackson@ximian.com>
12626         * Form.cs: We now hook into an internal window manager instead of just an
12627         MDI subsystem, this is so we can have properly behaving tool windows.
12628         * MdiClient.cs: Naming change, MdiChildContext is now WindowManager
12629         * InternalWindowManager.cs: New internal class that acts as a
12630         window manager for tool windows and as a base for mdi windows.
12631         * MdiWindowManager.cs: New class that acts as a window manager for
12632         mdi windows.
12634 2005-12-12  Jackson Harper  <jackson@ximian.com>
12636         * Control.cs: Updates so we match behavoir for for implicit
12637         controls. Fixes explosions in MDI.
12639 2005-12-12  Jackson Harper  <jackson@ximian.com>
12641         * Control.cs: Implement Invalidate (Region).
12643 2005-12-12  Peter Dennis Bartok  <pbartok@novell.com> 
12645         * Control.cs: 
12646           - Changed handling of Controls.Add/Controls.Remove to fire (almost) 
12647             the same events as MS does. MS fires events for each property 
12648             except, for unknown reasons, Cursor, when the control is reparented. 
12649             I can't seem to totally match add/remove since MS also fires some 
12650             VisibleChanged events, which makes no sense. Consolidated the
12651             parenting code into a separate method so it can be called from
12652             both Add and Remove. set_Parent no longer needs any special logic
12653             as it calls the parent's add method which implicitly fires
12654             all events
12655           - Removed some obsolete code and debug output
12656           - Enabled state is inherited from parents, if this is enabled
12658 2005-12-08  Peter Dennis Bartok  <pbartok@novell.com> 
12660         * Form.cs: Removed commented out code
12662 2005-12-08  Peter Dennis Bartok  <pbartok@novell.com>
12664         * Control.cs:
12665           - Added internal version of Invoke, with additional argument 
12666             indicating if we're calling it from a Dispose() handler. That
12667             way we can avoid BeginInvoke throwing an exception if we're
12668             calling for an already destroyed window.
12669           - Added a dispose argument to BeginInvokeInternal, and made the
12670             check if a valid window handle chain exists conditional on
12671             it not being a dispose call
12672           - Removed code in DestroyHandle to destroy our children. Since we
12673             now handle the WM_DESTROY message we will catch all our children
12674             being destroyed.
12675           - Now calling OnHandleDestroyed from our new WM_DESTROY handler
12676         * Form.cs:
12677           - Added a field to track the application context of the form.
12678           - No need to set closing variable as response to WM_CLOSE, instead
12679             we destroy the window. We also call PostQuitMessage if the form
12680             has an application context (which makes it the main app form,
12681             which, when closed terminates the app)
12682         * XplatUI.cs:
12683           - Dropped Exit() method, it's naming was confusing
12684           - Added PostQuitMessage() which causes GetMessage to return false
12685             once the message queue is empty
12686         * XplatUIDriver.cs, XplatUIWin32.cs: Dropped Exit(), added 
12687           PostQuitMessage()
12688         * XplatUIOSX.cs: Switched signature for Exit method since Exit() is
12689           no longer a valid XplatUI method, but left it in since it's used
12690           internally. Added empty PostQuitMessage() method.
12691         * MenuAPI.cs: Replaced call to Exit() with call to
12692           PostQuitMessage, even though this is probably no longer needed.
12693         * Hwnd.cs: Added 'pretty' ToString() to support debugging.
12694         * X11Structs.cs: Added pretty XEvent.ToString() to support debugging.
12695         * Application.cs:
12696           - Replaced call to XplatUI.Exit() with PostQuitMessage()
12697           - Removed old debug code that would call XplatUI for exception
12698             display, enabled standard exception handling (Still not enabled
12699             though, until NativeWindow's ExternalExceptionHandler define
12700             is removed
12701         * NativeWindow.cs:
12702           - Added internal method to allow control to update NativeWindow
12703             after a window has been destroyed
12704           - Added handling of already destroyed windows when calling i
12705             DestroyWindow
12706           - Added removal of handle from list on ReleaseHandle
12707         * XplatUIX11.cs:
12708           - Dropped GetMessageResult var and related code
12709           - Added PostQuitState to field to track if PostQuitMessage has been
12710             called
12711           - Dropped Exit() method
12712           - Added PostQuitMessage() method
12713           - GetMessage now will return false if PostQuitState is set and no
12714             more messages are in the queue.
12715           - Expose handler will no longer generate WM_PAINT messages if we are
12716             in PostQuitState since it's very likely any windows have already
12717             been destroyed, and since Hwnd won't get updated until we have
12718             processed the DestroyNotify we'd be causing X errors.
12719         
12720 2005-12-07  Peter Dennis Bartok  <pbartok@novell.com>
12722         * Control.cs(WndProc): Apparently I'm suffering from brain cloud.
12723           Thanks to Mike for pointing out the err of my ways.
12725 2005-12-07  Peter Dennis Bartok  <pbartok@novell.com>
12727         * Control.cs(PreProcessMessage): Moved menu handling back, but
12728           after all other key handling, to match MS (who handles Menu in
12729           DefWndProc)
12730         * Menu.cs (WndProc): Removed my brainfart
12732 2005-12-07  Peter Dennis Bartok  <pbartok@novell.com>
12734         * Control.cs(PreProcessMessage): Removed special menu handling 
12735         * Menu.cs (WndProc): Added handling of WM_SYSKEYUP for menu purposes.
12737 2005-12-07  Mike Kestner  <mkestner@novell.com>
12739         * Control.cs : special case SYSKEYUP so that we can adjust keynav
12740         state according in tracker.
12741         * Menu.cs : promote tracker field to base class and provide a tracker
12742         lookup capability.  Add/Remove shortcuts dynamically if the top menu
12743         has a tracker. Unparent items that are removed from the collection.
12744         * MenuAPI.cs : implement mnemonic, shortcut, and arrow-based keynav.
12745         * Theme*.cs: add always_show_hotkeys field to support configurability
12746         of mnemonic display.  win32 doesn't show mnemonics until Alt is
12747         pressed.
12749 2005-12-07  Jackson Harper  <jackson@ximian.com>
12751         * MdiChildContext.cs: Use Control.ResetCursor.
12752         * Control.cs: ResetCursor needs to set the property so that the
12753         correct XplatUI call gets made.
12755 2005-12-07  Peter Dennis Bartok  <pbartok@novell.com>
12757         * Control.cs: More fixes to make our key events match MS. We
12758           were not setting the modifier state on KeyData, and we were
12759           not generating any events when Alt was pressed with a key
12760           since handling of WM_SYSxxx was missing for the OnKey methods.
12762 2005-12-07  Jackson Harper  <jackson@ximian.com>
12764         * MdiChildContext.cs: reenable the sizing code.
12765         - When the mouse leaves a window reset its cursor.
12767 2005-12-07  Alexander Olk  <alex.olk@googlemail.com>
12769         * ThemeClearlooks.cs: Reflect latest Hwnd changes
12771 2005-12-07  Peter Dennis Bartok  <pbartok@novell.com>
12773         * Hwnd.cs: Now using the theme 3d bordersize to calculate
12774           widths of Fixed3D borders
12776 2005-12-07  Jackson Harper  <jackson@ximian.com>
12778         * MdiClient.cs: Fix warnings. Earn Mike's love.
12780 2005-12-07  Alexander Olk  <alex.olk@googlemail.com>
12782         * ThemeClearlooks.cs:
12783           - Adjusted mouse over button color
12784           - Added first parts of CheckBox drawing
12785           - Added correct color for selected text background
12786           - Fixed ComboBox drawing
12787           - Added CPDrawBorder3D and CPDrawBorder
12789 2005-12-06  Peter Dennis Bartok  <pbartok@novell.com>
12791         * XplatUIX11.cs: Added call to XBell for AudibleAlert
12793 2005-12-06  Peter Dennis Bartok  <pbartok@novell.com> 
12795         * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs, XplatUIWin32.cs,
12796           XplatUIOSX.cs: Added AudibleAlert() method to have a means to
12797           alert users via sound. We could add an enum arg with different
12798           types of alerts in the future
12800 2005-12-06  Peter Dennis Bartok  <pbartok@novell.com>
12802         * Control.cs: Fix behaviour problems pointed out by Mike
12804 2005-12-05  Mike Kestner  <mkestner@novell.com>
12806         * StatusBarPanel.cs: add Invalidate method and hook it into all the
12807         prop setters.  Calls parent.Refresh for now, but could be maybe be
12808         optimized with an internal method on StatusBar at some point.
12809         [Fixes #76513]
12811 2005-12-05  Peter Dennis Bartok  <pbartok@novell.com> 
12813         * RichTextBox.cs: Implemented get_SelectionColor
12815 2005-12-05  Alexander Olk  <alex.olk@googlemail.com>
12817         * ThemeClearlooks.cs:
12818           - Removed dead code
12819           - Draw black button border only if button is Form.AcceptButton
12820           - Draw correct button color for pressed RadioButton if the mouse 
12821             has entered the button
12822           - Updated ProgressBar drawing!
12823           - Updated CPDrawSizeGrip drawing
12824           - Updated StatusBarPanel drawing
12826 2005-12-05  Mike Kestner  <mkestner@novell.com>
12828         * Control.cs (PreProcessMessage): add Keys.Alt based on LParam value.
12829         * X11Keyboard.cs (SendKeyboardInput): formal lParam for alt mod.
12831 2005-12-04  Alexander Olk  <alex.olk@googlemail.com>
12833         * ThemeClearlooks.cs: Initial check-in, activate with
12834           export MONO_THEME=clearlooks
12835         * ThemeEngine.cs: Added ThemeClearlooks
12837 2005-12-03  Mike Kestner  <mkestner@novell.com>
12839         * MenuAPI.cs: deactivate menus prior to calling item.PerformClick.
12840         [Fixes #76897]
12842 2005-12-02  Jackson Harper  <jackson@ximian.com>
12844         * Form.cs: If the child form has no menu the default main menu is
12845         used as the active menu.
12847 2005-12-02  Peter Dennis Bartok  <pbartok@novell.com> 
12849         * ListBox.cs: Check if any items exist before trying to resolve 
12850           coordinates into items
12852 2005-12-02  Peter Dennis Bartok  <pbartok@novell.com>
12854         * ThemeWin32Classic.cs: Hatchbrush on Win32 seems to always use white
12855           as the second color for the background hatch
12857 2005-12-02  Peter Dennis Bartok  <pbartok@novell.com>
12859         * TextBoxBase.cs: Now uses Jackson's new and improved ImplicitScrollbar
12860         * RichTextBox.cs: FormatText position arguments are 1-based, now making
12861           sure that what we pass to FormatText is always 1-based. Fixes #76885
12863 2005-11-29  Miguel de Icaza  <miguel@novell.com>
12865         * NumericUpDown.cs (EndInit): When we are done initializing,
12866         reflect any updates on the UI.
12868 2005-12-02  Jackson Harper  <jackson@ximian.com>
12870         * ImplicitHScrollBar.cs:
12871         * ImplicitVScrollBar.cs: New scrollbars that don't take focus from
12872         their container controls.
12873         * TreeView.cs: Use the new implicit scrollbars.
12875 2005-12-02  Jackson Harper  <jackson@ximian.com>
12877         * TreeView.cs: Make top_node internal so the TreeNodeCollections
12878         can play with it.
12879         * TreeNodeCollection.cs: If we remove the topnode we need to
12880         update topnode to the next node in line.
12881         - When clearing nodes go through the same process as removing
12882         them, so they get depareneted and checked if they are top node.
12884 2005-12-01  Jackson Harper  <jackson@ximian.com>
12886         * TreeView.cs: When imagelists are used the image area is
12887         selectable as well as the text.
12888         - If there are no selected nodes select the first one.
12889         * TreeNodeCollection.cs: Getting the TreeView is mildly expensive,
12890         so don't do it more then we need to.
12892 2005-12-01  Jackson Harper  <jackson@ximian.com>
12894         * ThemeWin32Classic.cs: Reimplement the scroll arrow drawing so
12895         that arrows can be scaled.
12897 2005-12-01  Jackson Harper  <jackson@ximian.com>
12899         * TreeNode.cs : Fixed bugs that caused FullPathTest + Traverse to
12900         fail. Patch by Dieter Bremes
12902 2005-11-30  Jackson Harper  <jackson@ximian.com>
12904         * Form.cs: Property is 2.0 only
12905         * PrintDialog.cs: Signature fix.
12907 2005-11-30  Peter Dennis Bartok  <pbartok@novell.com>
12909         * TextControl.cs: 
12910           - No longer artificially moves text 2 pixels down (now that we have
12911             borders this is no longer needed)
12912           - Added calcs for left, hanging and right indent
12914 2005-11-23  Mike Kestner  <mkestner@novell.com>
12916         * Menu.cs: mark MenuChanged internal, since it's not exposed by MS.
12918 2005-11-30  Jackson Harper  <jackson@ximian.com>
12920         * MdiChildContext.cs: Set the cloned menus forms, as these don't
12921         get cloned as part of CloneMenu ().
12922         * Menu.cs: Make sure the parent of the items get set correctly
12923         when they are added.  And the owners are notified of the changes.
12924         * Form.cs: Create an ActiveMenu property, so that when MDI is used
12925         we can change the menu being displayed/handled by the form without
12926         changing the menu assosciated with the form.
12927         - Don't let Mdi children draw/handle menus.
12928         
12929 2005-11-30  Jackson Harper  <jackson@ximian.com>
12931         * Menu.cs: Switch the MenuChanged method to OnMenuChanged and add
12932         a MenuChanged event. Just to make the API a little more
12933         consistent.
12934         * MainMenu.cs:
12935         * MenuItem.cs: Use the new OnMenuChanged
12936         * MdiChildContext.cs: Handle menu merging.
12937         * Form.cs: Implement MergedMenu.
12938         
12939 2005-11-30  Jackson Harper  <jackson@ximian.com>
12941         * Menu.cs: We were misusing Add. Add goes behind the specified
12942         index according to the docs, and does not replace the specified
12943         index. So I added an Insert method.
12945 2005-11-30  Peter Dennis Bartok  <pbartok@novell.com>
12947         * TextBoxBase.cs:  Implemented Ctrl-Ins (Copy), Shift-Ins (Paste) and
12948           Shift-Del (Cut), apparently Emacs uses these old Win 2.x keys. This
12949           is for Jackson
12950         * RichTextBox.cs: Added calls to base for DnD events
12952 2005-11-28  Peter Dennis Bartok  <pbartok@novell.com>
12954         * TextControl.cs:
12955           - Fixed drag-selection related crash; style fixes
12956           - Implemented undo class
12957             o Implemented method to capture document state for specified
12958               range in document tree
12959             o Implemented method to restore captured document state
12960             o Implemented cursor tracking
12961             o Implemented basic undo stack
12962           - Added undo cursor tracking to methods altering cursor location
12963           - Added undo tracking to selection deletion (still missing
12964             other text-altering hookups)
12965         * RichTextBox.cs:
12966           - Added SelectionLength property
12967           - Implemented CanPaste()
12968           - Implemented Paste()
12969           - Added missing protected methods
12970           - Fixed RTF->Document conversion; now uses font index 0 and color 
12971             index 0 as the default font for the parsed text
12972           - Fixed RTF<->Document font size translation
12973           - Fixed RTF generation, now properly handles cross-tag boundaries
12974             for single line selection
12975           - No longer always appends blank line to generated RTF
12976           - Removed TODOs
12977           - Added missing attributes
12978           - Hooked up undo-related methods
12979         * TextBoxBase.cs:
12980           - Implemented Copy()
12981           - Implemented Paste()
12982           - Implemented Cut()
12983           - Fixed caret mis-behaviour on backspace across line-boundaries
12985 2005-11-29  Jackson Harper  <jackson@ximian.com>
12987         * MdiClient.cs: Add a method for activating mdi children. Very
12988         basic right now. I imagine someday it might need more girth.
12989         * MenuItem.cs: Implement MDI lists. When mdilist is true the mdi
12990         children windows names are added to the menu item.
12991         * ThemeWin32Classic.cs: Draw the arrow if the item is an
12992         mdilist. This happens regardless of whether or not there are any
12993         mdi windows to see in the list, and according to my tests happens
12994         before the items are even added. Also happens if there isn't even
12995         an mdi client to get windows from.
12997 2005-11-29  Alexander Olk  <alex.olk@googlemail.com>
12999         * ThemeWin32Classic.cs: Make DrawFlatStyleRadioButton protected
13000         * ThemeNice.cs: Fix drawing of flatstyle radiobuttons
13002 2005-11-29  Jordi Mas i Hernandez <jordimash@gmail.com>
13004         * DataGridTableStyle.cs:
13005           - Create always the styles for the missing columns even if they are
13006             provided by the user (not default table style)
13007         * DataGrid.cs:
13008           - Fixes bug 76770
13009           - Fixes SetDataBinding (always re-attach source)
13010           - Fixes SetNewDataSource (only clear styles if they are not for 
13011             this source)
13012          -  Expands OnTableStylesCollectionChanged to handle style refresh 
13013             and remove properly
13015 2005-11-29  Jackson Harper  <jackson@ximian.com>
13017         * FileDialog.cs: Implement missing bits, remove some dead
13018         code.
13019         * FontDialog.cs: Implement missing Apply stuff, and ToString. Move
13020         creation of the panel so that the options set on the dialog are
13021         seen when the panel is created.
13022         * TreeView.cs: raise a click when items are clicked.
13023         
13024 2005-11-29  Jackson Harper  <jackson@ximian.com>
13026         * MdiClient.cs: Pass some signature methods through to base.
13028 2005-11-28  Jackson Harper  <jackson@ximian.com>
13030         * ListView.cs: Raise the click event when items are clicked.
13032 2005-11-28  Jackson Harper  <jackson@ximian.com>
13034         * MdiClient.cs: Make this algorithm even more beautiful.  And fix
13035         a nullref.
13037 2005-11-27  Alexander Olk  <alex.olk@googlemail.com>
13039         * ThemeNice.cs: - Removed 1 pixel bitmaps
13040           - Use SmoothingMode.AntiAlias where it makes sense
13041             (ScrollButton arrow for example)
13042           - Enhanced Button focus drawing
13043           - Fixed ComboBox drawing (no artefacts anymore, focus
13044             rectangle is back again, reduced size of ComboButton, etc.)
13045           - Fixed RadioButton focus drawing for Appearence.Button
13046           - Slight ScrollButton redesign
13047           - Some LinearGradientBrush size fixes
13048           - GroupBoxes have now rounded edges
13049           - Fixed StatusBar drawing
13051 2005-11-25  Alexander Olk  <alex.olk@googlemail.com>
13053         * ThemeNice.cs: - Remove dead code
13054           - use correct background colors for menus, etc.
13055           - Fake pixel drawing with 1 pixel bitmaps
13057 2005-11-24  Jackson Harper  <jackson@ximian.com>
13059         * MdiClient.cs: Size the scrollbars when resizing the window.
13060         - Resize the maximized windows when the client is resized
13061         * Form.cs: Make the child context available
13062         
13063 2005-11-23  Jackson Harper  <jackson@ximian.com>
13065         * MdiChildContext.cs: Don't size windows if they are maximized.
13067 2005-11-23  Mike Kestner  <mkestner@novell.com>
13069         * ContextMenu.cs: use MenuTracker.
13070         * Control.cs: remove menu handle usage.
13071         * Form.cs: remove menu handle usage.
13072         * Hwnd.cs: remove menu handle usage.
13073         * MainMenu.cs: Draw method moved here from MenuAPI.DrawMenuBar. Proxy
13074         motion and clicks to the new Tracker handlers.
13075         * Menu.cs: add sizing accessors, SelectedItem prop, kill CreateItems
13076         and handle usage.
13077         * MenuAPI.cs: refactored to combine popup and menubar event handling.
13078         Killed the MENU and MENUITEM data types and associated collections
13079         since we now keep the info on Menu and MenuItem. Expanded TRACKER into
13080         MenuTracker class that exposes the leftovers from the old MenuAPI
13081         static methods. Restructured Capture handling so that only one grab is
13082         done for the entire menu hierarchy instead of handing off grabs to
13083         submenus. Tracker now has an invisible control to Capture when active.
13084         * MenuItem.cs: add sizing accessors, kill Create
13085         and handle usage.
13086         * Theme.cs: remove menu handle and MENU(ITEM) usage.
13087         * ThemeWin32Classic.cs: use Menu/MenuItem sizing props instead of
13088         MENU(ITEM). remove menu handle usage, use Menu directly.
13089         * XplatUIDriver.cs: remove menu handle usage.
13090         * XplatUIOSX.cs: remove menu handle usage.
13091         * XplatUIWin32.cs: remove menu handle usage.
13092         * XplatUIX11.cs: remove menu handle usage.
13094 2005-11-22  Jackson Harper  <jackson@ximian.com>
13096         * Hwnd.cs: Don't compute the menu size for
13097         DefaultClientRectangle.
13098         - Reenable menu sizes being computed for GetClienRectangle.
13099         * Form.cs: Remove comment of trechery
13100         
13101 2005-11-22  Jackson Harper  <jackson@ximian.com>
13103         * Hwnd.cs: The adjustments for the menu bar are made when it is
13104         attached to the form.
13106 2005-11-19  Jackson Harper  <jackson@ximian.com>
13108         * XplatUIX11.cs: Create an HGRN of the invalid area for WM_NCPAINT
13109         (just like on windows).
13111 2005-11-19  Jackson Harper  <jackson@ximian.com>
13113         * MdiChildContext.cs: Handle all the buttons ourselves. We can't
13114         use real buttons anymore because they are in non client area. The
13115         one TODO here is that I need to somehow invalidate a section of
13116         the non client area.
13118 2005-11-18  Jackson Harper  <jackson@ximian.com>
13120         * Control.cs: Put the enum check back in now that MDI doesnt have
13121         to use this to set border styles.
13122         * Form.cs: Only set mdi child windows borders if the handle has
13123         been created.
13124         * MdiChildContext.cs: Don't set the InternalBorderStyle, just pass
13125         this directly on to the driver.
13126         - Get the move start position before adjusting for the titlebar
13127         height, this fixes the windows "skipping" when they are first
13128         moved.
13130 2005-11-18  Jackson Harper  <jackson@ximian.com>
13132         * XplatUIX11.cs: Just compute the mdi borders separately as they
13133         don't totally match up with normal form borders.
13135 2005-11-18  Jackson Harper  <jackson@ximian.com>
13137         * Control.cs: Set WS_ styles for borders, so that the driver does
13138         not have to retrieve the control instance to figure out what kind
13139         of borders it should have.
13140         * Form.cs: Set the WS_EX_MDICHILD flag on mdi children, so the
13141         driver can know its an mdi child easily.
13142         * XplatUIX11.cs: Get the border styles and whether the window is
13143         MDI from the Styles and ExStyles params instead of having to get a
13144         control. This prevents a chicken and egg problem.       
13146 2005-11-18  Jackson Harper  <jackson@ximian.com>
13148         * MdiClient.cs: Fix typo so scrollbars show up correctly.
13150 2005-11-18  Jackson Harper  <jackson@ximian.com>
13152         * MdiClient.cs: Calculate when to add and remove scrollbars
13153         correctly.
13154         * MdiChildContext.cs: Adjust the y position to take the titlebar
13155         into account.
13156         - No height for FormBorderStyle.None
13158 2005-11-18  Jackson Harper  <jackson@ximian.com>
13160         * Control.cs: Allow non enum values to be used for
13161         InternalBorderStyle.  MDI does this to set a special border style.
13162         - New utility methods for converting points to/from client coords
13163         - Add the newly created control to the Controls collection before
13164         updating its style. This way UpdateStyle can walk the control
13165         heirarchy to find the control if needed.
13166         so I don't need to create a new Point object all the time.
13167         * Form.cs: Let MDI windows handle their border styles.
13168         - Set styles on MDI windows so the correct title style is derived.
13169         * MdiChildContext.cs: Move all the painting and window handling
13170         into the non client area.
13171         - Use correct sizing and put correct buttons on frames based on
13172         the FormBorderStyle.
13173         - Notify the mdi client about scrolling
13174         - Need to handle the buttons ourselves now, because they are all
13175         in non client areas and we can't add controls there.
13176         * MdiClient.cs: Halfway to scrolling, this implementation is
13177         somewhat broken though, we need to check to make sure other
13178         windows aren't causing scrolling before removing the bars. Also
13179         the bars need to be drawn on top, maybe I can switch implicit
13180         controls to be on top.
13181         * Hwnd.cs: caption_height and tool_caption_height are now
13182         properties of an hwnd, this way they can be set by the driver
13183         based on the type of window they are.  In X11 the window manager
13184         handles the decorations so caption_height is zero unless its an
13185         MDI window.
13186         - Add 3 pixel borders for MDI windows (0xFFFF).
13187         - Get rid of some code duplication, have DefaultClientRectanle
13188         just call GetClientRectangle.
13189         * XplatUIX11.cs: Pass caption_height and tool_caption_height to
13190         Hwnd now.
13191         - Set border styles differently for mdi windows.
13192         * XplatUIOSX.cs: Pass caption_height and tool_caption_height to
13193         Hwnd now.
13194         
13195 2005-11-15  Mike Kestner  <mkestner@novell.com>
13197         * Menu.cs: when adding an item to the collection, if item is already 
13198         parented, remove it from the parent.
13200 2005-11-13  Alexander Olk  <alex.olk@googlemail.com>
13202         * X11DesktopColors.cs: Added KDE support
13204 2005-11-11  Peter Dennis Bartok  <pbartok@novell.com>
13206         * XplatUIWin32.cs: 
13207           - Clipboard methods now can translate Rtf format
13208           - No longer removes clipboard contents whenever a new format is added
13209             to allow placing multiple formats on the clipboard
13210         * Clipboard.cs: Clipboard now supports getting a IDataObject and
13211           will place all formats contained in it onto the clipboard. Also
13212           now cleans the clipboard before placing a new object onto it
13213         * RichTextBox.cs:
13214           - Implemented set_Rtf
13215           - Implemented set_SelectedRtf
13216           - Created InsertRTFFromStream() method to allow single code base
13217             for all properties and methods that insert RTF into document
13218           - Removed debug output
13219         * TextControl.cs:
13220           - Fixed Delete(int) to fix up line numbers
13221           - Fixed ReplaceSelection to combine start and end line
13222           - Fixed serious DeleteChars bug that would leave the document tree
13223             broken
13224           - Improved DumpTree with several logic checks to detect broken
13225             document trees
13226           - Removed debug lines
13227           - Fixed Caret.WordForward/WordBack moving code, now always also 
13228             updates caret.tag (fixes crash when word-selecting across tag
13229             boundaries via keyboard)
13230           - Added Insert() method for inserting multiline text into documents
13231           - Fixed DeleteChars() calculation errors that would cause a broken
13232             tag chain with multiple tag lines
13233           - DeleteChars() no longer crashes on multi-tag lines if not all tags
13234           - Split() no longer moves caret if split is at caret location
13235           - ReplaceSelection() now updates the cursor and re-displays it
13236           - ReplaceSelection() now uses new Insert() method to avoid code
13237             duplication
13238           - FormatText() can now handle formatting partial lines
13239         * TextBoxBase.cs:
13240           - Append now uses new TextControl.Insert() method (this avoids 
13241             duplicate code)
13242           - Implemented Ctrl-X (Cut) (
13243           - Implemented Ctrl-C (Copy)
13244           - Implemented Ctrl-V (Paste) (Still some bugs related to screen 
13245             regeneration when pasting text; roundtripping Copy&Paste within
13246             edit control still fails due to some calculation bugs in GenerateRTF)
13247           - The Delete key will now remove the current selection if it is visible
13248         * TextBox.cs: Removed debug lines
13249         * XplatUI.cs: Trigger initialization of DataFormats (which requires the
13250           driver to be initialized and can't therefore be done via a static ctor)
13252 2005-11-10  Peter Dennis Bartok  <pbartok@novell.com>
13254         * TextControl.cs: Added backend code for finding char arrays and strings
13255         * TextBoxBase.cs:
13256           - Added mouse wheel scroll support
13257           - Added support for VScroll and HScroll events
13258         * RichTextBox.cs:
13259           - Implemented all seven Find() variants
13260           - Implemented GetCharFromPosition()
13261           - Implemented GetCharIndexFromPosition()
13262           - Implemented GetLineFromIndex()
13263           - Implemented GetPositionFromCharIndex();
13264           - Implemented SaveFile for PlainText and UnicodeText
13265           - Fixed set_Font, now setting a new font applies that font to
13266             the whole document
13267           - Implemented generic Document to RTF converter
13268           - Implemented SaveFile for RichText format (still missing unicode
13269             conversion for non-ansi chars)
13270           - Implemented get_Rtf
13271           - Implemented get_SelectedRtf
13273 2005-11-09  Peter Dennis Bartok  <pbartok@novell.com>
13275         * Control.cs (WndProc): Call HandleClick after having sent OnMouseUp
13276           to allow any captures to be released before triggering OnClick. This
13277           way a click handler may capture the mouse without interference.
13278         * XplatUIX11.cs: Always send mouse messages to grab window if one exists.
13279           This way we send them even though X may not allow a grab (if the window
13280           isn't visible, for example)
13282 2005-11-08  Pedro Martinez Julia <pedromj@gmail.com>
13284         * DataGridViewRowEventArgs.cs: DataGridView implementation
13285         * DataGridViewElement.cs: DataGridView implementation
13286         * DataGridViewComboBoxCell.cs: DataGridView implementation
13287         * DataGridViewDataErrorContexts.cs: DataGridView implementation
13288         * DataGridViewCellErrorTextNeededEventArgs.cs: DataGridView implementation
13289         * DataGridViewColumnHeadersHeightSizeMode.cs: DataGridView implementation
13290         * ImageLayout.cs: DataGridView implementation
13291         * DataGridViewComboBoxColumn.cs: DataGridView implementation
13292         * DataGridViewCellMouseEventHandler.cs: DataGridView implementation
13293         * DataGridViewSelectionMode.cs: DataGridView implementation
13294         * IDataGridViewEditingControl.cs: DataGridView implementation
13295         * DataGridViewSortCompareEventHandler.cs: DataGridView implementation
13296         * DataGridViewCellStyleContentChangedEventHandler.cs: DataGridView implementation
13297         * DataGridViewAutoSizeModeEventHandler.cs: DataGridView implementation
13298         * DataGridViewColumnStateChangedEventHandler.cs: DataGridView implementation
13299         * DataGridViewColumnSortMode.cs: DataGridView implementation
13300         * DataGridView.cs: DataGridView implementation
13301         * DataGridViewRowStateChangedEventHandler.cs: DataGridView implementation
13302         * DataGridViewRowPostPaintEventArgs.cs: DataGridView implementation
13303         * DataGridViewDataErrorEventArgs.cs: DataGridView implementation
13304         * Padding.cs: DataGridView implementation
13305         * DataGridViewCellParsingEventArgs.cs: DataGridView implementation
13306         * DataGridViewCellStateChangedEventHandler.cs: DataGridView implementation
13307         * DataGridViewRowEventHandler.cs: DataGridView implementation
13308         * DataGridViewCellPaintingEventHandler.cs: DataGridView implementation
13309         * DataGridViewCellFormattingEventHandler.cs: DataGridView implementation
13310         * DataGridViewButtonCell.cs: DataGridView implementation
13311         * DataGridViewCellStyleContentChangedEventArgs.cs: DataGridView implementation
13312         * DataGridViewEditMode.cs: DataGridView implementation
13313         * DataGridViewCellValueEventArgs.cs: DataGridView implementation
13314         * DataGridViewRowCancelEventArgs.cs: DataGridView implementation
13315         * DataGridViewRowHeadersWidthSizeMode.cs: DataGridView implementation
13316         * DataGridViewCheckBoxColumn.cs: DataGridView implementation
13317         * DataGridViewCellToolTipTextNeededEventHandler.cs: DataGridView implementation
13318         * DataGridViewAutoSizeColumnsMode.cs: DataGridView implementation
13319         * DataGridViewCellEventHandler.cs: DataGridView implementation
13320         * DataGridViewEditingControlShowingEventHandler.cs: DataGridView implementation
13321         * DataGridViewCellStyleConverter.cs: DataGridView implementation
13322         * DataGridViewSelectedRowCollection.cs: DataGridView implementation
13323         * DataGridViewBindingCompleteEventHandler.cs: DataGridView implementation
13324         * DataGridViewColumnEventArgs.cs: DataGridView implementation
13325         * DataGridViewRowHeightInfoPushedEventHandler.cs: DataGridView implementation
13326         * DataGridViewRowContextMenuStripNeededEventHandler.cs: DataGridView implementation
13327         * QuestionEventArgs.cs: DataGridView implementation
13328         * IDataGridViewEditingCell.cs: DataGridView implementation
13329         * DataGridViewTriState.cs: DataGridView implementation
13330         * DataGridViewColumnDesignTimeVisibleAttribute.cs: DataGridView implementation
13331         * DataGridViewCellStateChangedEventArgs.cs: DataGridView implementation
13332         * DataGridViewColumnCollection.cs: DataGridView implementation
13333         * DataGridViewCellValueEventHandler.cs: DataGridView implementation
13334         * DataGridViewRowDividerDoubleClickEventHandler.cs: DataGridView implementation
13335         * DataGridViewCellFormattingEventArgs.cs: DataGridView implementation
13336         * DataGridViewColumn.cs: DataGridView implementation
13337         * DataGridViewCellBorderStyle.cs: DataGridView implementation
13338         * DataGridViewCellContextMenuStripNeededEventHandler.cs: DataGridView implementation
13339         * DataGridViewCellValidatingEventArgs.cs: DataGridView implementation
13340         * DataGridViewRow.cs: DataGridView implementation
13341         * DataGridViewImageCellLayout.cs: DataGridView implementation
13342         * DataGridViewImageCell.cs: DataGridView implementation
13343         * DataGridViewTopLeftHeaderCell.cs: DataGridView implementation
13344         * DataGridViewCheckBoxCell.cs: DataGridView implementation
13345         * DataGridViewHeaderCell.cs: DataGridView implementation
13346         * DataGridViewCellErrorTextNeededEventHandler.cs: DataGridView implementation
13347         * DataGridViewRowHeightInfoPushedEventArgs.cs: DataGridView implementation
13348         * DataGridViewAutoSizeColumnsModeEventHandler.cs: DataGridView implementation
13349         * DataGridViewTextBoxColumn.cs: DataGridView implementation
13350         * QuestionEventHandler.cs: DataGridView implementation
13351         * DataGridViewCellStyleScopes.cs: DataGridView implementation
13352         * DataGridViewSortCompareEventArgs.cs: DataGridView implementation
13353         * DataGridViewCellContextMenuStripNeededEventArgs.cs: DataGridView implementation
13354         * DataGridViewCell.cs: DataGridView implementation
13355         * DataGridViewCellEventArgs.cs: DataGridView implementation
13356         * DataGridViewClipboardCopyMode.cs: DataGridView implementation
13357         * DataGridViewCellStyle.cs: DataGridView implementation
13358         * DataGridViewColumnHeaderCell.cs: DataGridView implementation
13359         * DataGridViewRowPrePaintEventHandler.cs: DataGridView implementation
13360         * DataGridViewRowCancelEventHandler.cs: DataGridView implementation
13361         * TextFormatFlags.cs: DataGridView implementation
13362         * DataGridViewCellToolTipTextNeededEventArgs.cs: DataGridView implementation
13363         * DataGridViewDataErrorEventHandler.cs: DataGridView implementation
13364         * DataGridViewAdvancedCellBorderStyle.cs: DataGridView implementation
13365         * DataGridViewCellPaintingEventArgs.cs: DataGridView implementation
13366         * DataGridViewButtonColumn.cs: DataGridView implementation
13367         * DataGridViewRowsRemovedEventArgs.cs: DataGridView implementation
13368         * HandledMouseEventArgs.cs: DataGridView implementation
13369         * DataGridViewCellParsingEventHandler.cs: DataGridView implementation
13370         * DataGridViewColumnDividerDoubleClickEventHandler.cs: DataGridView implementation
13371         * DataGridViewCellMouseEventArgs.cs: DataGridView implementation
13372         * DataGridViewAutoSizeRowsMode.cs: DataGridView implementation
13373         * DataGridViewRowCollection.cs: DataGridView implementation
13374         * DataGridViewAdvancedBorderStyle.cs: DataGridView implementation
13375         * DataGridViewCellCancelEventHandler.cs: DataGridView implementation
13376         * DataGridViewHitTestType.cs: DataGridView implementation
13377         * DataGridViewAutoSizeModeEventArgs.cs: DataGridView implementation
13378         * DataGridViewColumnStateChangedEventArgs.cs: DataGridView implementation
13379         * DataGridViewColumnEventHandler.cs: DataGridView implementation
13380         * DataGridViewRowDividerDoubleClickEventArgs.cs: DataGridView implementation
13381         * DataGridViewAutoSizeRowMode.cs: DataGridView implementation
13382         * DataGridViewRowHeightInfoNeededEventArgs.cs: DataGridView implementation
13383         * DataGridViewRowsDeletedEventArgs.cs: DataGridView implementation
13384         * DataGridViewTextBoxEditingControl.cs: DataGridView implementation
13385         * DataGridViewContentAlignment.cs: DataGridView implementation
13386         * DataGridViewRowPostPaintEventHandler.cs: DataGridView implementation
13387         * DataGridViewComboBoxEditingControl.cs: DataGridView implementation
13388         * DataGridViewCellValidatingEventHandler.cs: DataGridView implementation
13389         * DataGridViewSelectedColumnCollection.cs: DataGridView implementation
13390         * DataGridViewPaintParts.cs: DataGridView implementation
13391         * DataGridViewCellCollection.cs: DataGridView implementation
13392         * DataGridViewRowsAddedEventArgs.cs: DataGridView implementation
13393         * DataGridViewImageColumn.cs: DataGridView implementation
13394         * DataGridViewRowsRemovedEventHandler.cs: DataGridView implementation
13395         * DataGridViewElementStates.cs: DataGridView implementation
13396         * DataGridViewRowHeightInfoNeededEventHandler.cs: DataGridView implementation
13397         * DataGridViewColumnDividerDoubleClickEventArgs.cs: DataGridView implementation
13398         * DataGridViewRowPrePaintEventArgs.cs: DataGridView implementation
13399         * DataGridViewRowStateChangedEventArgs.cs: DataGridView implementation
13400         * DataGridViewEditingControlShowingEventArgs.cs: DataGridView implementation
13401         * DataGridViewCellCancelEventArgs.cs: DataGridView implementation
13402         * DataGridViewRowHeaderCell.cs: DataGridView implementation
13403         * DataGridViewBindingCompleteEventArgs.cs: DataGridView implementation
13404         * DataGridViewTextBoxCell.cs: DataGridView implementation
13405         * DataGridViewBand.cs: DataGridView implementation
13406         * DataGridViewAutoSizeColumnModeEventArgs.cs: DataGridView implementation
13407         * DataGridViewHeaderBorderStyle.cs: DataGridView implementation
13408         * DataGridViewRowsAddedEventHandler.cs: DataGridView implementation
13409         * DataGridViewAutoSizeColumnMode.cs: DataGridView implementation
13410         * DataGridViewAutoSizeColumnModeEventHandler.cs: DataGridView implementation
13411         * DataGridViewAutoSizeColumnsModeEventArgs.cs: DataGridView implementation
13412         * DataGridViewRowErrorTextNeededEventHandler.cs: DataGridView implementation
13413         * DataGridViewSelectedCellCollection.cs: DataGridView implementation
13414         * DataGridViewRowContextMenuStripNeededEventArgs.cs: DataGridView implementation
13415         * DataGridViewRowErrorTextNeededEventArgs.cs: DataGridView implementation
13416         * DataGridViewComboBoxDisplayStyle.cs: DataGridView implementation
13418 2005-11-08  Peter Dennis Bartok  <pbartok@novell.com>
13420         * ThemeWin32Classic.cs: 
13421           - Draw the outside focus rectangle around buttons
13422           - Use CPDrawFocusRectangle to draw focus rectangles until Cairo
13423             doesn't use end caps for every dash of a line anymore. This
13424             workaround ignores the forecolor.
13426 2005-11-08  Kornél Pál  <kornelpal@hotmail.com>
13428         * ImageList.cs: Don't use ArgbColor with LayoutKind.Explicit as it isn't
13429           endian safe.
13431 2005-11-07  Jackson Harper  <jackson@ximian.com>
13433         * X11Dnd.cs: Set the X/Y positions on the DragEventArgs correctly.
13435 2005-11-07  Jackson Harper  <jackson@ximian.com>
13437         * ScrollableControl.cs: Calculate the maximum and change vars
13438         (more) correctly so that scrollbars appear as a sensible size.
13440 2005-11-04  Jackson Harper  <jackson@ximian.com>
13442         * TreeNodeCollection.cs: Refresh when nodes are cleared from the
13443         collection.
13444         * TreeView.cs: When the tree is sorted null out the top_node so
13445         that it is recalculated.
13446         - Use dotted lines instead of dashed lines to match MS better.
13448 2005-11-04  Jordi Mas i Hernandez <jordimash@gmail.com>
13450         * ListView.cs: 
13451           - Implements key search for items. Useful when browsing files with FileDialog
13452           - When changing view mode or when clear the items reset scrollbar positions
13454 2005-11-04  Jackson Harper  <jackson@ximian.com>
13456         * CurrencyManager.cs: Implement the MetaDataChanged event, the
13457         Reset method, and the CheckEmpty. CheckEmpty is just a total guess
13458         as to what the method may do as there is no real way of creating a
13459         derived CurrencyManager and calling the method. 
13461 2005-11-03  Jackson Harper  <jackson@ximian.com>
13463         * ThemeWin32Classic.cs: Implement ownerdrawing in the tab control
13464         * TabControl.cs: Add Ownerdrawing bits, add the UpdateTabSelection
13465         method which seems to just be used internally to refresh the tabs.
13467 2005-11-03  Jackson Harper  <jackson@ximian.com>
13469         * TabControl.cs: Implement the remove method. Fix some broken
13470         comments.
13472 2005-11-03  Peter Dennis Bartok  <pbartok@novell.com>
13474         * DateTimePicker.cs:
13475           - Added missing DateTimePickerAccessibleObject class
13476           - Added missing events
13477           - Added OnFontChanged method
13478         * Form.cs: Added missing attributes
13479         * TreeView.cs: Added missing attributes
13481 2005-11-03  Peter Dennis Bartok  <pbartok@novell.com> 
13483         * GridItemCollection.cs: Fix signatures
13485 2005-11-03  Peter Dennis Bartok  <pbartok@novell.com>
13487         * XplatUI.cs: Updated build rev/date
13488         * ComboBox.cs, DataGridTextBoxColumn.cs Control.cs, 
13489           DataGridTableStyle.cs, DataGrid.cs, DateTimePicker.cs: Signature fixes
13490         * Application.cs: Trigger context-specific ExitThread events
13492 2005-11-03  Jackson Harper  <jackson@ximian.com>
13494         * Menu.cs:
13495         * MainMenu.cs:
13496         * GridTableStylesCollection.cs:
13497         * Timer.cs:
13498         * TabPage.cs:
13499         * HelpProvider.cs:
13500         * StatusBar.cs:
13501         * MonthCalendar.cs: Signature fixes
13503 2005-11-03  Jackson Harper  <jackson@ximian.com>
13505         * TreeNodeCollection.cs: Remove should not be virtual.
13506         * TreeView.cs: Implement the last of the missing methods.
13508 2005-11-03  Jackson Harper  <jackson@ximian.com>
13510         * TreeNodeConverter.cs: Implement to get off my class-status back.
13512 2005-11-03  Jackson Harper  <jackson@ximian.com>
13514         * TreeView.cs: Hookup the bits for drag and drop.
13515         * TreeNode.cs: Don't cache the tree_view or index anymore, now
13516         that nodes can be moved from tree to tree easily this just causes
13517         all sorts of problems.
13518         * TreeNodeCollection: Don't need to give treenodes an index and
13519         treeview anymore when they are added, these are computed on the
13520         fly. Also make sure to remove a node before its added.
13522 2005-11-03  Peter Dennis Bartok  <pbartok@novell.com>
13524         * TextControl.cs:
13525           - Added CaretSelection enum
13526           - Added comparison methods to Marker struct, makes selection code
13527             more readable
13528           - Added SelectionStart and SelectionEnd as 'moveable' location for
13529             the CaretDirection enum and handler
13530           - Added selection_prev variable to track optimized invalidation for
13531             word and line selection
13532           - Added SelectionVisible property (returns true if there is a valid 
13533             selection)
13534           - Switched CaretHasFocus to only display the caret if there is no
13535             visible selection
13536           - Avoiding StringBuilder.ToString to retrieve a single char, instead
13537             using the direct character index; should be much faster
13538           - Added various conditional debug statements
13539           - Fixed invalidation calculation for selection ranges
13540           - Added ExpandSelection() method to support word and line selection
13541           - Switched SetSelectionToCaret to use new Marker compare overloads
13542           - Added central IsWordSeparator() method to determine word 
13543             separators/whitespace and FindWordSeparator() to streamline common
13544             usage of IsWordSeparator()
13545         * TextBoxBase.cs:
13546           - Removed unneeded grabbed variable, it was just mirroring
13547             Control.Capture
13548           - No longer firing OnTextChanged event when Text setter is called,
13549             since the base will fire the event for us
13550           - Added handling of Ctrl-Up/Down selection
13551           - Added handling of Shift-Cursorkey selection
13552           - Added handling for Ctrl-Delete and Ctrl-Backspace to remove
13553             words
13554           - Added handling of Shift and Ctrl-Shift-Home/End selection
13555           - Removed some debug output
13556           - Added handling for single/double/tripple-click to place caret/
13557             select word/select line respectively (Fixes bug #76031)
13558           - Added support for drag expansion of word/line selection
13559         * RichTextBox.cs: Handle GotFocus event to trigger redrawing of
13560           current selection
13562 2005-11-02  Jackson Harper  <jackson@ximian.com>
13564         * X11Dnd.cs: If the drag is going to and from a MWF window just
13565         copy the data instead of sending it out through the X Selection
13566         mechanism.
13568 2005-11-02  Jackson Harper  <jackson@ximian.com>
13570         * X11Dnd.cs:
13571         * XplatUIX11.cs: When in a drag we don't want motion notify
13572         messages to get passed on to the other controls. This prevents
13573         mouse move messages from showing up in the drag source.
13575 2005-11-02  Jackson Harper  <jackson@ximian.com>
13577         * X11Dnd.cs: Remove unneeded call to XAllowEvents.  Make sure that
13578         the correct button is release to end a drag.
13579         * XplatUIX11.cs: Make the button state internal so the drag system
13580         can access it.  Dragging needs to know about all button releases,
13581         not just left button.
13583 2005-11-02  Miguel de Icaza  <miguel@novell.com>
13585         * Form.cs (Icon): If the icon is null, reset the icon to the
13586         default value. 
13588         * Cursor.cs: When writing the AND-mask bitmap do not include the
13589         number of colors, but hardcode those to two (black and white),
13590         fixes the loading of color cursors (Paint Dot Net).
13592         * Form.cs: To debug, allow MONO_MWF_SCALING=disable variable to
13593         turn off autoscaling.
13595         * Cursor.cs: Allow resource type to be 1 or 2 (from ImageMagic).
13597 2005-11-02  Jackson Harper  <jackson@ximian.com>
13599         * X11Dnd.cs: Make sure to send a status message if the pointer
13600         enters a control that can not accept a drop, otherwise the cursor
13601         isn't updated correctly. Also tried to compress the lines of code
13602         a bit.
13604 2005-11-02  Jackson Harper  <jackson@ximian.com>
13606         * X11Dnd.cs: Change cursors based on drag action. Also attempt to
13607         set actions correctly.  This isn't perfect as XDND and win32 have
13608         some differences on how you allow actions. I'll clear this up by
13609         adding a path for drag from MWF to MWF windows.
13610         * XplatUIX11.cs: Hook into the dnd system.
13612 2005-11-02  Jordi Mas i Hernandez <jmas@softcatala.org>
13614         * ListView.cs: Fixes scroll bar visibility. Hide them if they were
13615         previously shown but they are no longer need it. Very obvious when 
13616         browsing files with FileDialog.
13618 2005-11-01  Peter Dennis Bartok  <pbartok@novell.com>
13620         * Control.cs: We always need to call OnPaintBackground. We pretty much
13621           ignore AllPaintingInWmPaint and always do the painting there, whether 
13622           it's set or not, since we always ignore the WM_ERASEBKGND message 
13623           (which we don't generate on X11). This fixes #76616.
13624         * Panel.cs: Removed unneeded background painting. This happens properly
13625           in Control.cs already
13627 2005-10-31  Mike Kestner  <mkestner@novell.com>
13629         * Menu.cs: Add items to collection before setting their index.
13630         * MenuItem.cs : add range checking with ArgumentException like MS.
13631         [Fixes #76510]
13633 2005-10-31  Jackson Harper  <jackson@ximian.com>
13635         * ListBox.cs: Invalidate if the area is visible at all not just
13636         contained in the visible rect. Fixes unselection of semi visible
13637         items.
13639 2005-10-31  Jackson Harper  <jackson@ximian.com>
13641         * Control.cs: Consistently name the dnd methods. Make them
13642         internal so we can override them to match some MS behavoir
13643         internally.
13644         * Win32DnD.cs: Use the new consistent names.
13646 2005-10-31  Jackson Harper  <jackson@ximian.com>
13648         * TreeView.cs: Don't draw the selected node when we lose focus.
13650 2005-10-31  Jackson Harper  <jackson@ximian.com>
13652         * X11Dnd.cs: We still need to reset the state even though a full
13653         reset isn't being done, otherwise status's still get sent all over
13654         the place.
13656 2005-10-31  Jackson Harper  <jackson@ximian.com>
13658         * Control.cs: Make the dnd_aware flag internal so the dnd
13659         subsystem can check it. Catch exceptions thrown in dnd handlers to
13660         match MS behavoir.
13661         * Hwnd.cs: Add a flag for whether or not a window is dnd aware.
13662         * X11Dnd.cs: Handle null data in the converters. Set the XDND
13663         version when sending a XdndEnter. Use the control/hwnd dnd_aware
13664         flags to reduce the number of dnd enters/status's sent.
13666 2005-10-31  Jackson Harper  <jackson@ximian.com>
13668         * X11Dnd.cs: Don't need the sizeof here. Patch by Jordi Mas.
13670 2005-10-31  Jordi Mas i Hernandez <jordi@ximian.com>
13672         * PictureBox.cs: Fixes 76512
13674 2005-10-28  Jackson Harper  <jackson@ximian.com>
13676         * X11Dnd.cs: Early implementation to support winforms being a drag
13677         source for data on X11. Also restructured the converters so they
13678         can go both ways now.
13679         * XplatUIX11.cs: Tie ins to the the Dnd stuff.
13680         
13681 2005-10-27  Peter Dennis Bartok  <pbartok@novell.com>
13683         * XplatUIX11.cs: Fixed FIXME - implemented ASCII encoding for XA_STRING
13684           clipboard requests
13686 2005-10-27  Jackson Harper  <jackson@ximian.com>
13688         * TreeNode.cs: Implement serialization so my DnD examples will work.
13690 2005-10-24  Kornél Pál  <kornelpal@hotmail.com>
13692         * ButtonBase.cs, ListView.cs, NotifyIcon.cs, PictureBox.cs, ToolBar.cs,
13693           TreeView.cs: Don't dispose objects that are not owned.
13694           
13695 2005-10-24  Peter Dennis Bartok  <pbartok@novell.com>
13697         * Cursor.cs: Defaulting the Current cursor to Cursors.Default. We
13698           should retrieve the current cursor and report that, but XplatUI
13699           doesn't (yet) have an interface for that (and I'm not sure I even
13700           can, on X11)
13701         * XplatUIWin32.cs: Fixed override behaviour. The override is temporary,
13702           until any message loop processing is done (and the WM_SETCURSOR
13703           replaces the cursor to the proper one)
13704         * XplatUIX11.cs: 
13705           - Fixed override behaviour, we can't set the cursor globally on X11, 
13706             just for our windows.
13707           - Invalidating the System.Drawing X11 display handle when we are
13708             shutting down
13709         * Control.cs: Fix to make csc happy
13711 2005-10-23  Peter Dennis Bartok  <pbartok@novell.com>
13713         * TextBoxBase.cs: 
13714           - get_Text: Add last line (without trailing newline) to returned
13715             value (Fixes 76212)
13716           - get_TextLength: Count last line in returned length
13717           - ToString: Call Text property instead of duplicating code
13719 2005-10-23  Kornél Pál  <kornelpal@hotmail.com>
13721         * ImageList.cs: Dispose ImageAttributes objects.
13723 2005-10-22  Kornél Pál  <kornelpal@hotmail.com>
13725         * ImageList.cs: Use attribute constructors with less arguments where
13726           possible.
13728 2005-10-22  Kornél Pál  <kornelpal@hotmail.com>
13730         * ImageList.cs: Added lastKeyIndex field and use in IndexOfKey.
13731           Use typeof instead of strings when assembly is referenced. Added
13732           some more comments.
13734 2005-10-21  Jackson Harper  <jackson@ximian.com>
13736         * ListView.cs: Raise a double click event. Also tried to somewhat
13737         fix when the selectedindexchanged event is raised. Its still
13738         broken though.
13740 2005-10-21  Jackson Harper  <jackson@ximian.com>
13742         * TreeView.cs: New method to invalidate the plus minus area of a
13743         node without invalidating the whole node (maybe this can be used
13744         in some more places).
13745         * TreeNodeCollection.cs: When adding to an empty node we need to
13746         invalidate its plus minus area so the little block shows up.
13747         
13748 2005-10-21  Jackson Harper  <jackson@ximian.com>
13750         * TreeView.cs: Make sure that when we invalidate a node the bounds
13751         are big enough to cover the selected box and the focus
13752         rectangle. Use a different colour for the lines connecting nodes
13753         so they show up with all themes.
13755 2005-10-21  Peter Dennis Bartok  <pbartok@novell.com>
13757         * NativeWindow.cs: Don't call anything that could call into the driver,
13758           we might be on a different thread.
13760 2005-10-21  Peter Dennis Bartok  <pbartok@novell.com> 
13762         * Control.cs(Dispose): Since Dispose might run on a different thread,
13763           make sure that we call methods that could call into the driver via
13764           invoke, to avoid thread issues
13766 2005-10-21  Peter Dennis Bartok  <pbartok@novell.com>
13768         * XplatUI.cs: Removed finalizer
13769         * XplatUIX11.cs: Removed Destructor, was causing crashes due to X11
13770           not allowing to be called on the finalizer thread.
13772 2005-10-21  Kornél Pál  <kornelpal@hotmail.com>
13774         * ImageList.cs:
13775           - Reverted r51889 and r51891.
13776           - Added ImageListItem class that stores unmodified image items and image
13777             properties required to create list images until handle is created.
13778           - Added AddItem and moved image creation logic to AddItemInternal.
13779           - Added CreateHandle method that creates images based on unmodified items.
13780           - Added DestroyHandle that changes state to store unmodified items.
13781           - Add and AddStrip methods no more create handle.
13782           - ReduceColorDepth has no return value.
13783           - Dispose destroys handle.
13784           - Modified other methods to reflect the above changes.
13785           - Implemented key support.
13786           - Added profile 2.0 members and attributes.
13787           - Added private Reset and ShouldSerialize methods that provide the same
13788             behavior as MS.NET but the Visual Studio .NET designer seems to ignore
13789             them as they are private.
13790           - Added some more comments about implementation details.
13792 2005-10-21  Jordi Mas i Hernandez <jordi@ximian.com>
13794         * DataGrid.cs: Adds support for vertical scrolling using the mousewheel
13796 2005-10-21  Jordi Mas i Hernandez <jordi@ximian.com>
13798         * Binding.cs: No PushData/PullData if there is no binding (fixes crash)
13800 2005-10-21  Jordi Mas i Hernandez <jordi@ximian.com>
13802         * DataGridDrawingLogic.cs: Fixes column hit calcultation
13803         * DataGridColumnStyle.cs: Remove debug message
13805 2005-10-20  Jackson Harper  <jackson@ximian.com>
13807         * TreeView.cs: We can always get input keys regardless of whether
13808         or not editing is enabled. They are used for navigation.
13810 2005-10-20  Jackson Harper  <jackson@ximian.com>
13812         * TreeNode.cs: Use the viewport rect for determining if a node
13813         needs to be moved for visibility. Don't use Begin/End edit. This
13814         calls a full refresh when its done.
13815         * TreeView.cs: New SetBottom works correctly.  Make the viewport
13816         rect property internal so the treenodes can see it. When clicking
13817         on a node we need to ensure that its visible because it might just
13818         be partly visible when clicked.
13820 2005-10-20  Jackson Harper  <jackson@ximian.com>
13822         * TreeNodeCollection.cs: Remove debug code.
13824 2005-10-20  Jordi Mas i Hernandez <jordi@ximian.com>
13826         * Datagrid.cs: Implements column sorting in Datagrid
13827         * DataGridColumnStyle.cs: Implements column sorting in Datagrid
13829 2005-10-20  Jackson Harper  <jackson@ximian.com>
13831         * TreeNodeCollection.cs: Remove items properly. Update the correct
13832         area after removing them.
13834 2005-10-20  Jordi Mas i Hernandez <jordi@ximian.com>
13836         * Datagrid.cs: Should not call base.OnPaintBackground
13838 2005-10-20  Peter Dennis Bartok  <pbartok@novell.com>
13840         * XplatUIX11.cs (GetMessage):
13841           - Now properly calculates NC_xBUTTONDOWN coordinates off the whole
13842             window instead of client window
13843           - Now properly calculates NC_xBUTTONUP message coordinates
13844           - ScreenToMenu now properly calculates it's coordinates of whole 
13845             window, since menus are in the whole window, not in the client
13846             window
13847           - Added WholeToScreen coordinate translation method
13849 2005-10-20  Peter Dennis Bartok  <pbartok@novell.com> 
13851         * XplatUIX11.cs (GetMessage): Don't return in situations where we don't
13852           want to return a message, loop back to the beginning of the function
13853           and grab the next real message to process instead.
13855 2005-10-20  Peter Dennis Bartok  <pbartok@novell.com>
13857         * Splitter.cs: Properly set limits if no filler control is used
13859 2005-10-19  Jackson Harper  <jackson@ximian.com>
13861         * ColorDialog.cs: Don't show the help button if it is not enabled
13862         instead of disabling it (this is what MS does). Don't create the
13863         panel until the dialog is run, otherwise the vars (such as
13864         ShowHelp) are not set yet.
13866 2005-10-19  Jackson Harper  <jackson@ximian.com>
13868         * TreeView.cs: Implement Begin/EndEdit more correctly so refreshes
13869         are reduced when adding nodes.
13870         * TreeNode.cs:
13871         * TreeNodeCollection.cs: Use UpdateNode instead of refreshing the
13872         tree.
13873         
13874 2005-10-19  Jackson Harper  <jackson@ximian.com>
13876         * FolderBrowserDialog.cs: End editing our treeview so the window
13877         actually gets refreshed.
13879 2005-10-18  Peter Dennis Bartok  <pbartok@novell.com>
13881         * Control.cs: Fixed logic flip on when to call OnPaintBackground. 
13882           Obsoleted handling of WM_ERASEBKGND, now always draws our background
13883           inside of WM_PAINT
13885 2005-10-18  Jordi Mas i Hernandez <jordi@ximian.com>
13887         * MenuAPI.cs: Returns after Hidding window
13888         * XplatUIX11.cs: Added TODO found while debugging menu issues
13890 2005-10-18  Peter Dennis Bartok  <pbartok@novell.com>
13892         * XplatUIX11.cs: Do not re-map the whole window when it's size
13893           becomes non-zero unless it's supposed to be actually visible
13895 2005-10-18  Jackson Harper  <jackson@ximian.com>
13897         * TreeView.cs: We don't need to keep a count anymore.
13898         * TreeNodeCollection.cs: Fix off by one in RemoveAt, Insert can
13899         use the Grow method.
13901 2005-10-18  Jackson Harper  <jackson@ximian.com>
13903         * TreeNodeCollection.cs: Insert is not supported on arrays, so
13904         implement it manually here.
13906 2005-10-18  Jackson Harper  <jackson@ximian.com>
13908         * ImageList.cs: Dont kill the list when the colour depth is
13909         changed, just change the colour depth of all the images.
13910         - Same goes for setting the image size. Just resize them all
13911         instead of killing the list softly.
13913 2005-10-18  Jackson Harper  <jackson@ximian.com>
13915         * Control.cs: Don't invalidate empty rectangles.
13917 2005-10-18  Jordi Mas i Hernandez <jordi@ximian.com>
13919         * ListViewItem.cs:
13920           - Adds checked item to the Checked/Item lists (where empty before)
13921           - Do not add items to the Selected lists if they are already present
13922         * ListView.cs:
13923           - Fixes IsFixedSize, SyncRoot, IsReadOnly in many collections
13924           - When deleting items make sure that we delete them for the Selected
13925           and Checked list also.
13927 2005-10-18  Jordi Mas i Hernandez <jordi@ximian.com>
13929         * Label.cs: Dispose objects no longer used
13930         * ThemeWin32Classic.cs: Dispose objects no longer used
13932 2005-10-18  Jackson Harper  <jackson@ximian.com>
13934         * TabControl.cs: Don't refresh the whole control when the tabs are
13935         scrolled, we just need to refresh the tab area.
13937 2005-10-17  Jackson Harper  <jackson@ximian.com>
13939         * XplatUIX11.cs: Compress code a little bit. Only calculate the
13940         after handle when we need it.
13942 2005-10-17  Peter Dennis Bartok  <pbartok@novell.com>
13944         * Control.cs: When the parent size changes, recalculate anchor 
13945           positions. Partial fix for #76462
13947 2005-10-17  Peter Dennis Bartok  <pbartok@novell.com>
13949         * ThemeWin32Classic.cs: Make sure the picturebox has it's background 
13950           drawn. Fixes #76462
13952 2005-10-17  Jackson Harper  <jackson@ximian.com>
13954         * MonthCalendar.cs: Don't create the numeric up down until our
13955         handle is created. Otherwise our handle is created in the
13956         constructor and we don't know if we are a WS_CHILD or WS_POPUP
13957         yet.
13959 2005-10-17  Jackson Harper  <jackson@ximian.com>
13961         * TreeView.cs: Merge in patch by Rafael Teixeira to align strings
13962         correctly.
13964 2005-10-17  Rafael Teixeira <rafaelteixeirabr@hotmail.com> 
13965         * TreeNode.cs : small logical fix (was using local var instead of field)
13966         
13967 2005-10-17  Jordi Mas i Hernandez <jordi@ximian.com>
13969         * ThemeWin32Classic.cs: Fixes vert/horz scrollbar colours
13971 2005-10-17  Jordi Mas i Hernandez <jordi@ximian.com>
13973         * ThemeWin32Classic.cs: Fixes focus drawing in for non-flat/popup buttons
13975 2005-10-16  Peter Dennis Bartok  <pbartok@novell.com> 
13977         * Control.cs: 
13978           - Re-implemented anchoring code. My first version was really broken.
13979             This fixes bug #76033. Unlike the previous implementation we will
13980             no longer have round errors since all numbers are calculated from
13981             scratch every time. Removed various anchor-related obsolete vars.
13982           - InitLayout no longer causes layout event firing and layout to be 
13983             performed
13985 2005-10-16  Jackson Harper  <jackson@ximian.com>
13987         * Hwnd.cs: Compute invalid area correctly (fixes my last commit
13988         which was broken).
13990 2005-10-16  Jackson Harper  <jackson@ximian.com>
13992         * TabControl.cs: Remove debug code.
13994 2005-10-16  Jackson Harper  <jackson@ximian.com>
13996         * XEventQueue.cs: Increase the default queue size (very simple
13997         apps needed to grow the queue).
13998         * Hwnd.cs: No finalizer so we don't need to suppress
13999         finalization. Compute the invalid area manually so a new rectangle
14000         does not newto be created.
14001         * ScrollableControl.cs: Don't set any params (otherwise visibility
14002         isn't set correctly).
14003         * MdiChildContext.cs: New constructor takes the mdi parent so it
14004         doesn't have to be computed and avoids a crash on windows. Draw
14005         the window icon properly, and allow the text to be seen.
14006         * Form.cs: Use new MdiChildContext constructor. Make sure the
14007         child context isn't null in wndproc.
14008         * TabControl.cs: Don't set focus, this is muddling keyboard
14009         behavoir. Expand the tab rows when a window size increase will
14010         allow extra tabs to be seen. Don't allow tabs smaller than the
14011         width of a window to be scrolled out of view.
14012         * TreeNode.cs:
14013         * TreeView.cs: Use measure string to calculate a nodes width, the
14014         width is cached and only updated when the text or the font is
14015         changed. Don't check for expand/collapse clicks on the first level
14016         nodes if root lines are disabled.
14017         
14018 2005-10-16  Ritvik Mayank  <mritvik@novell.com>
14020         * TextBoxBase.cs: Fixes #76352 (passing tab key in a multiline textbox)
14022 2005-10-16  Jordi Mas i Hernandez <jordi@ximian.com>
14024         * DataGridBoolColumn.cs: fixes warning
14026 2005-10-16  Jordi Mas i Hernandez <jordi@ximian.com>
14028         * ControlPaint.cs: Fixes methods Dark, DarkDark, Light, LightLight
14029         to match more to match more precisely the MS Net behavior
14031 2005-10-13  Peter Dennis Bartok  <pbartok@novell.com> 
14033         * Hwnd.cs: Added field to track if window is mapped
14034         * XplatUIX11.cs: 
14035           - Unmap windows if they become 0-size, re-map when 
14036             they are >0 again; fixes #76035
14037           - Re-set our error handler after initializing X11Desktop
14038             to override any error handlers Gtk or whatever was called
14039             may have set.
14041 2005-10-13  Peter Dennis Bartok  <pbartok@novell.com> 
14043         * CheckedListBox.cs: Removed unused vars
14044         * ListView.cs: Fixed signatures
14045         * RichTextBox.cs: Removed unused vars
14046         * TextBoxBase.cs: Removed unused vars
14047         * XplatUIWin32.cs: Removed unused vars
14048         * XplatUIX11.cs: Removed unused vars
14049         * XplatUI.cs: Updated version and date to latest published
14051 2005-10-13  Peter Dennis Bartok  <pbartok@novell.com>
14053         * Cursor.cs: Added private .ctor to work around a bug in
14054           resourceset (Thanks to Geoff Norton for the help on this)
14055         * SplitterEventArgs.cs: Made fields accessible so we don't
14056           waste boatloads of objects and can reuse the same one
14057           in Splitter
14058         * XplatUIWin32.cs(DrawReversibleLine): Now also considers
14059           any captions and borders when generating screen coordinates
14060         * Splitter.cs: Reimplemented control, now fully complete, uses
14061           rubberband drawing, supports and obeys all properties, has
14062           proper cursors
14064 2005-10-13  Miguel de Icaza  <miguel@novell.com>
14066         * Form.cs (Form): Setup default values for autoscale and
14067         autoscale_base_size;  Make these instance variables, not static
14068         variables. 
14070         (OnLoad): on the first load, adjust the size of the form.
14072 2005-10-13  Peter Dennis Bartok  <pbartok@novell.com>
14074         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs: Added 
14075           width argument to DrawReversibleRectangle()
14076         * XplatUIWin32.cs, XplatUIX11.cs: 
14077           - Implemented width for DrawReversibleRectangle()
14078           - Added logic to DrawReversibleRectangle that recognizes a zero
14079             width or height and only draws a line in that situation
14080         
14081 2005-10-12  Peter Dennis Bartok  <pbartok@novell.com> 
14083         * XplatUI.cs, XplatUIDriver.cs: Added GetAutoScaleSize()
14084         * XplatUIOSX.cs: Stubbed GetAutoScaleSize() method
14085         * XplatUIWin32.cs, XplatUIX11.cs: Implemented GetAutoScaleSize()
14086           method (it uses our FosterParent window to get a graphics context)
14088 2005-10-12  Peter Dennis Bartok  <pbartok@novell.com>
14090         * XplatUI.cs, XplatUIDriver.cs: Removed EraseWindowBackground 
14091           and SetWindowBackground methods
14092         * Control.cs:
14093           - Setting proper ControlStyles
14094           - We no longer call XplatUI.SetWindowBackground and XplatUI.
14095             EraseWindowBackground, instead we draw the window background
14096             ourselves in PaintControlBackground. This behaviour is
14097             required to match MS, where, when OnPaintBackground is not
14098             called, the background is not drawn.
14099           - Removed unneeded Refresh() in set_Text
14100         * Hwnd.cs: Dropped the ErasePending support. No longer needed
14101         * XplatUIX11.cs:
14102           - Created DeriveStyles method to translate from CreateParams to
14103             FormBorderStyle and TitleStyle, also handles BorderStyle (which
14104             matches FormBorderStyle enum values)
14105           - Consolidated SetHwndStyles and CalculateWindowRect border/title
14106             style calculations into single DeriveStyles method
14107           - Fixed CreateWindow to (finally) use Gravity. This prevents X11
14108             from redrawing the whole window on any resize or expose.
14109           - Fixed CreateWindow usage of SetWindowValuemask. Before not
14110             all styles were applied to our whole/client window appropriately
14111           - Removed EraseWindowBackground() and SetWindowBackground() methods
14112           - Removed handling of WM_ERASEBKGND message from DefWndProc, we
14113             no longer clear/redraw the background through X
14114           - Removed handling of erase_pending bit, we have no use for it (or
14115             so it seems)
14116         * XplatUIOSX.cs:
14117           - Removed generation and handling of WM_ERASEBKGND message
14118           - Removed EraseWindowBackground() and SetWindowBackground() methods
14119           - Removed handling of hwnd.ErasePending flag
14120         * XplatUIWin32.cs:
14121           - Removed EraseWindowBackground() and SetWindowBackground() methods
14122           - We no longer call EraseWindowBackground on PaintEventStart, we 
14123             ignore the fErase flag, erasing is handled in Control in the
14124             background handler
14125         * Button.cs, GroupBox.cs, Label.cs, CheckBox.cs, ProgressBar.cs,
14126           LinkLabel.cs, ListControl.cs, TabPage.cs, UpDownBase.cs,
14127           TextBoxBase.cs, TextBox.cs, ListView.cs, ButtonBase.cs, 
14128           CheckedListBox.cs, MdiClient.cs, Panel.cs, DataGrid.cs, 
14129           DataGridTextBox.cs, ScrollBar.cs, ListBox.cs, TrackBar.cs, 
14130           TabControl.cs, ScrollableControl.cs, ToolBar.cs, PictureBox.cs,
14131           DateTimePicker.cs, StatusBar.cs, MonthCalendar.cs: Setting proper ControlStyles
14133 2005-10-12  Jonathan Chambers <jonathan.chambers@ansys.com>
14135         * PropertyGrids.cs: Get sub properties
14136         * PropertyGridView.cs: Fix drawing code
14138 2005-10-11  Jordi Mas i Hernandez <jordi@ximian.com>
14140         * ListBox.cs: Fixes 76383
14142 2005-10-11  Jordi Mas i Hernandez <jordi@ximian.com>
14144         * DataGridTextBoxColumn.cs: Sets location and size before attachment
14145         * ThemeWin32Classic.cs: Fixes border drawing and calculations
14146         * DataGridDrawingLogic.cs: Fixes border drawing and calculations
14149 2005-10-11  Jordi Mas i Hernandez <jordi@ximian.com>
14151         * ComboBox.cs: Fixes border drawing
14153 2005-10-10  Miguel de Icaza  <miguel@novell.com>
14155         * MimeIcon.cs: Ignore errors if the file can not be read.
14157 2005-10-11  Jordi Mas i Hernandez <jordi@ximian.com>
14159         * Theme.cs, ThemeWin32Classic.cs, ListBox.cs:
14160          - Fixed border calculations
14161          - Fixed horizontal scrolling in single column listboxes
14162          - Fixed drawing issues
14164 2005-10-10  Peter Dennis Bartok  <pbartok@novell.com>
14166         * XplatUI.cs, XplatUIOSX.cs, XplatUIWin32.cs: Switched from BorderStyle to 
14167           FormBorderStyle enum
14168         * XplatUIX11.cs: Switched BorderStyle to FormBorderStyle, added 
14169           code to determine FormBorderStyles from CreateParams
14170         * Form.cs:
14171           - Fixed bug where we'd set the wrong window styles if we were
14172             not creating an MDI window
14173           - Added call to XplatUI.SetBorderStyle when form borders are set
14174         * Control.cs: Casting BorderStyles to accommodate changed XplatUI APIs
14175         * Hwnd.cs:
14176           - Removed obsolete edge style
14177           - Switched from BorderStyle to FormBorderStyle
14178         
14179 2005-10-10  Jackson Harper  <jackson@ximian.com>
14181         * Form.cs: Use the property to get the window handle instead of
14182         accessing it directly. Prevents a null reference exception.
14184 2005-10-10  Jackson Harper  <jackson@ximian.com>
14186         * TreeView.cs: Don't adjust the rect given to DrawString now that
14187         our libgdiplus draws correctly.
14189 2005-10-08  Jackson Harper  <jackson@ximian.com>
14191         * TreeView.cs: Don't try to find the clicked on node if there are
14192         no nodes in the tree.
14194 2005-10-08  Alexander Olk  <alex.olk@googlemail.com>
14196         * RichTextBox.cs:
14198           restore
14200 2005-10-08  Alexander Olk  <alex.olk@googlemail.com>
14202         * ImageListStreamer.cs, TreeView.cs, UpDownBase.cs, RichTextBox.cs,
14203           ColorDialog.cs, TextControl.cs, Panel.cs, MdiChildContext.cs,
14204           ErrorProvider.cs:
14205           Use ResPool for brushes and dispose System.Drawing objects that
14206           are not used anymore.
14208 2005-10-07  Jackson Harper  <jackson@ximian.com>
14210         * MdiChildContext.cs: Use the new borders instead of drawing them
14211         ourselves.
14213 2005-10-06  Jordi Mas i Hernandez <jordi@ximian.com>
14215         * Calling UpdateBounds after changing the window's BorderStyle 
14216         since the style can change the ClientSize
14218 2005-10-06  Peter Dennis Bartok  <pbartok@novell.com>
14220         * Control.cs: Made PaintControlBackground virtual
14221         * Panel.cs: Overriding PaintControlBackground instead of using paint
14222           event; paint event method was interfering with 'real' users of the
14223           event.
14225 2005-10-06  Jordi Mas i Hernandez <jordi@ximian.com>
14227         * ThemeWin32Classic.cs: remove border drawing since it is handled
14228         by the base control class now and was causing double border drawing.
14230 2005-10-06  Peter Dennis Bartok  <pbartok@novell.com>
14232         * Panel.cs: Redraw our background on paint. Not a pretty solution,
14233           but it does seem to match MS behaviour. This fixes bug #75324
14235 2005-10-06  Peter Dennis Bartok  <pbartok@novell.com>
14237         * XplatUIX11.cs: A better DrawReversibleRectangle version, however
14238           somewhat hackish looking
14240 2005-10-06  Peter Dennis Bartok  <pbartok@novell.com> 
14242         * TextBoxBase.cs:
14243           - We now accept Enter even if AcceptEnter is false, if the containing
14244             form does not have an AcceptButton configured (fixes bug #76355)
14245           - Calculations are now fixed to no longer use Width/Height, but
14246             ClientSize.Width/Height, since we now support borders (this was
14247             a result of fixing borders and therefore bug #76166)
14248           - We no longer show the horizontal scrollbar if TextBox.WordWrap is 
14249             true (fixes bug #76354)
14250         
14251 2005-10-06  Peter Dennis Bartok  <pbartok@novell.com>
14253         * Control.cs: 
14254           - Defaulting BorderStyle and setting it in XplatUI when our window 
14255             is created
14256           - Added enum check to InternalBorderStyle setter
14257         * XplatUIX11.cs: 
14258           - Added drawing of window borders
14259           - Now properly calculates WM decorations offset for toplevel 
14260             windows (fixes bug #74763)
14261         * XplatUIWin32.cs: 
14262           - Implemented BorderStyles for windows (we're letting win32 draw 
14263             the border for us)
14264           - Fixed the signature for SetWindowLong
14265         * PictureBox.cs, DataGrid.cs, TextBoxBase.cs, ToolBar.cs, Panel.cs,
14266           ListBox.cs, Label.cs: Now uses Control.InternalBorderStyle for 
14267           setting borders
14268         * UpDownBase.cs: Remove drawing of borders, this is handled by
14269           the driver, outside the client area
14270         * ListView.cs: Removed bogus border calculations. The control should
14271           be oblivious to borders, since those are not part of the client
14272           area. 
14273         * X11DesktopColors.cs: Commented out (currently) unneeded variables
14274         * ThemeWin32Classic.cs: Removed border calculations from ListView 
14275           drawing code
14277 2005-10-06  Jackson Harper  <jackson@ximian.com>
14279         * MdiChildContext.cs: Clear out the old virtual position remove
14280         all the unneeded calls to CreateGraphics.
14282 2005-10-06  Peter Dennis Bartok  <pbartok@novell.com> 
14284         * TextControl.cs: Use proper color for highlighted text; fixes #76350
14286 2005-10-06  Peter Dennis Bartok  <pbartok@novell.com> 
14288         * Form.cs: 
14289           - Added loading and setting of our new default icon
14290           - Only set icon if window is already created
14292 2005-10-06  Peter Dennis Bartok  <pbartok@novell.com>
14294         * Label.cs:
14295           - Do not explicitly set the foreground and background colors, to
14296             allow inheriting from parents (fixes #76302)
14297           - Use Control's InternalBorderStyle property to deal with borders
14299 2005-10-06  Jackson Harper  <jackson@ximian.com>
14301         * MdiChildContext.cs: Use the new xplatui function to draw a
14302         reversible rect.
14304 2005-10-06  Jackson Harper  <jackson@ximian.com>
14306         * Form.cs: Add the parent before creating the child context cause
14307         we need the parent when setting up the child.
14309 2005-10-06  Jackson Harper  <jackson@ximian.com>
14311         * FolderBrowserDialog.cs: redo the tree population code so a
14312         second thread isn't used. Should be a lot faster and more stable
14313         now.
14315 2005-10-05  Jackson Harper  <jackson@ximian.com>
14317         * TreeView.cs: There are no expand/collapse boxes if the node has
14318         no children.
14320 2005-10-05  Jackson Harper  <jackson@ximian.com>
14322         * X11DesktopColors.cs: Get menu colours for the gtk theme.
14324 2005-10-05  Alexander Olk  <alex.olk@googlemail.com>
14326         * FileDialog.cs: Fix InitialDirectory
14328 2005-10-05  Jordi Mas i Hernandez <jordi@ximian.com>
14330         * ComboBox.cs:
14331                 - Fixes changing between styles
14332                 - Fixes simple mode
14333                 - Fixes last item crashing when navigating with keyboard
14335 2005-10-05  Jordi Mas i Hernandez <jordi@ximian.com>
14337         * LinkLabel.cs: Related to 76045. Stops the LinkLabel been drawn as a Label
14339 2005-10-05  Jackson Harper  <jackson@ximian.com>
14341         * TreeView.cs: If updating the root node do a full refresh.
14342         * TreeNode.cs: The root node should be expanded by default. Also
14343         added a utility prop to tell if we are the root node.
14344         * TreeNodeCollection.cs: Only refresh if the node we are being
14345         added to is expanded. Also added a comment on a potential
14346         optimization.
14347         
14348 2005-10-04  Peter Dennis Bartok  <pbartok@novell.com>
14350         * Cursor.cs, Hwnd.cs: Added call to GC.SuppressFinalize() 
14351           in dispose method. Fixes #76330
14353 2005-10-04  Jordi Mas i Hernandez <jordi@ximian.com>
14355         * ListView.cs, ThemeWin32Classic.cs, ListViewItem.cs:
14357                 - Implements vertical and horizontal scrolling using XplatUI
14358                 - Fixes keyboard navagation
14359                 - Fixes EnsureVisible
14360                 - Drawing fixes
14361                 - Handles and draws focus properly
14364 2005-10-04  Kornél Pál  <kornelpal@hotmail.com>
14366         * ImageList.cs: Use upper case initials for internal fields. ImageStream:
14367           Create handle. NET_2_0: Destroy handle when value is null.
14369 2005-10-03  Jackson Harper  <jackson@ximian.com>
14371         * ScrollBar.cs: My last scrollbar patch was broken. This is a
14372         revert and a new patch to prevent the thumb from refreshing so
14373         much.
14375 2005-10-02  Jackson Harper  <jackson@ximian.com>
14377         * ScrollBar.cs: Don't update position if it hasn't actually
14378         changed. This occurs when you hold down the increment/decrement
14379         buttons and the thumb gets to the max/min.
14381 2005-10-01  Jackson Harper  <jackson@ximian.com>
14383         * Form.cs:
14384         * MdiChildContext.cs:
14385         * MdiClient.cs: Implement ActiveMdiChild in Form.
14387 2005-10-01  Jordi Mas i Hernandez <jordi@ximian.com>
14389         * ComboBox.cs: Include ComboBoxEdit flag for the edit item
14391 2005-10-01  Peter Dennis Bartok  <pbartok@novell.com>
14393         * X11DesktopColors.cs: Bow out gracefully if the Gtk libs cannot
14394           be found
14396 2005-09-30  Jackson Harper  <jackson@ximian.com>
14398         * ListBox.cs: Don't do a full refresh unless some data has
14399         actually changed.
14401 2005-09-30  Jackson Harper  <jackson@ximian.com>
14403         * TreeView.cs: Make sure that the checkboxes size is factored in
14404         even when not visible.
14406 2005-09-30  Peter Dennis Bartok  <pbartok@novell.com> 
14408         * FileDialog.cs: Fix Jordi's build break
14410 2005-09-30  Jordi Mas i Hernandez <jordi@ximian.com>
14412         * FileDialog.cs: 
14413                 - Use standard the Windows colours for the combobox as espected
14414                 - Dispose objects that use resouces when no longer need them
14416 2005-09-30  Peter Dennis Bartok  <pbartok@novell.com> 
14418         * X11DesktopColors.cs: Initial incomplete implementation
14419         * XplatUIX11.cs: Added call to initialize X11DesktopColors
14421 2005-09-30  Peter Dennis Bartok  <pbartok@novell.com>
14423         * Theme.cs: 
14424           - Switched Theme color names to match the names defined in 
14425             System.Drawing.KnownColors. Life's hard enough, no need to make 
14426             it harder.
14427           - Added setters to all theme color properties so themes can set
14428             their color schemes. The setters also propagate the color changes
14429             to System.Drawing.KnownColors via reflection
14430         * ControlPaint.cs,  Label.cs, TextControl.cs, ToolTip.cs, ThemeNice.cs,
14431           ComboBox.cs, MdiChildContext.cs, TextBoxBase.cs, DateTimePicker.cs
14432           DataGridColumnStyle.cs, MonthCalendar.cs, TreeView.cs: Updated to
14433           use the new, more logical theme color names
14434         * XplatUIWin32.cs: Updated the GetSysColorIndex enum to include new
14435           post-NT colors
14436         * ThemeWin32Classic.cs:
14437           - Removed code to set the old classic Windows colors. Instead it
14438             now relies on the colors returned by System.Drawing.KnownColors
14439             which will be either modern static colors (Unix) or colors
14440             read from the user's configuration (Win32)
14441           - Updated to use the new, more logical theme color names
14442           - Switched DataGrid drawing code to use only Theme colors instead of
14443             a mix of System.Drawing.KnownColors and Theme colors
14444           - DrawFrameControl(): Removed code that fills the button area, the
14445             fill would overwrite any previous fill done by a control. This
14446             fixes bug #75338 
14447           - Added DrawReversibleRectangle() stub
14448         * ScrollableControl.cs: Set visible state to false when scrollbars
14449           are removed (pdn fix)
14450         * XplatUI.cs, XplatUIOSX.cs, XplatUIDriver.cs: Added 
14451           DrawReversibleRectangle() method to allow drawing primitive 
14452           'rubber bands'
14453         * XplatUIX11.cs: Implemented DrawReversibleRectangle()
14455 2005-09-30  Kornél Pál  <kornelpal@hotmail.com>
14457         * ImageList.cs: Add(Icon): Create handle.
14459 2005-09-30  Jordi Mas i Hernandez <jordi@ximian.com>
14461         * ListView.cs:
14462         * ThemeWin32Classic.cs:
14463                 - Fixes detail mode
14464                 - Sets clippings
14465                 - Issues with drawing
14467 2005-09-30  Kornél Pál  <kornelpal@hotmail.com>
14469         * ImageList.cs: Moved RecreateHandle back to ImageList as event
14470           source has to be the ImageList.
14472 2005-09-30  Kornél Pál  <kornelpal@hotmail.com>
14474         * ImageList.cs: Add(Icon): Use Graphics.DrawIcon instead of Icon.ToBitmap.
14476 2005-09-30  Kornél Pál  <kornelpal@hotmail.com>
14478         * ImageList.cs: ReduceColorDepth: Clean up pointer operations.
14480 2005-09-30  Kornél Pál  <kornelpal@hotmail.com>
14482         * ImageList.cs: ImageCollection: Removed owner field as it is no more used.
14484 2005-09-29  Jonathan Chambers <jonathan.chambers@ansys.com>
14485         * GridItem.cs: Fixed TODOs
14486         * GridItemCollection.cs: Added ICollection interface
14488 2005-09-30  Kornél Pál  <kornelpal@hotmail.com>
14490         * ImageList.cs: Resize icons when needed.
14492 2005-09-29  Jordi Mas i Hernandez <jordi@ximian.com>
14494         * ListViewItem.cs
14495                 - Fixes GetBounds and returns on screen rects
14496         * ListView.cs:
14497                 - Fixes vertical and horzintal scrolling of items
14498         * ThemeWin32Classic.cs:
14499                 - Fixes drawing
14500                 
14501 2005-09-29  Raja R Harinath  <harinath@gmail.com>
14503         * ImageList.cs (ImageStream) [NET_2_0]: Reflect re-factoring.
14505 2005-09-29  Kornél Pál  <kornelpal@hotmail.com>
14507         * ImageList.cs: Added comments about handle creation. Moved Handle,
14508           HandleCreated and OnRecreateHandle implementations to ImageCollection.
14509           Handle is created in Add methods.
14511 2005-09-28  Jordi Mas i Hernandez <jordi@ximian.com>
14512          
14513         * DataGridDrawingLogic.cs: 
14514                 - Takes rows into account on Colum calculations
14515                 - Returns the column when clickig
14516         * DataGrid.cs:
14517                 - Fixes default HitTestInfo values
14518                 - Fixes HitTestInfo.ToString
14519                 - Fixes ResetBackColor          
14520         
14521 2005-09-28  Jackson Harper  <jackson@ximian.com>
14523         * MdiChildContext.cs: Obey rules for fixed sized windows (no
14524         sizing or cursor changes). Also added some temp code to draw the
14525         titlebars text (Makes dev a little easier).
14527 2005-09-28  Kornél Pál  <kornelpal@hotmail.com>
14529         * ImageList.cs: AddStrip: Throw ArgumentException when Image is not a Bitmap.
14531 2005-09-28  Jordi Mas i Hernandez <jordi@ximian.com>
14532          
14533         * ListBox.cs: Fixes bug 76253
14535 2005-09-28  Kornél Pál  <kornelpal@hotmail.com>
14537         * ImageList.cs: Added comments about the current implementation. Added
14538           ReduceColorDepth, IndexedColorDepths and GetNearestColor to can use
14539           Format32bppArgb to preserve transparency and can use Graphics.FromImage
14540           while using the specified ColorDepth. ReduceColorDepth uses unsafe code
14541           with Bitmap.LockBits for better performance. Revised the whole file to
14542           match MS.NET behaviour and provide better performance. Non-public
14543           interface members are calling public members even when they throw
14544           NotSupportedException for better maintainability. Moved ColorDepth,
14545           ImageSize, ImageStream and TransparentColor implementations to
14546           ImageCollection for better performance as these properties are not used
14547           by ImageList.
14548         * ImageListStreamer.cs: Added a new internal constructor that takes an
14549           ImageList.ImageCollection and serializes Images based on
14550           ImageCollection.ToArray(). Renamed ImageColorDepth to ColorDepth to
14551           match ImageList property name.
14553 2005-09-28  Kazuki Oikawa <kazuki@panicode.com>
14555         * ListBox.cs: Fixes IndexFromPoint for last item
14557 2005-09-27  Jackson Harper  <jackson@ximian.com>
14559         * Form.cs: Set the position of new mdi children correctly.
14561 2005-09-27  Jackson Harper  <jackson@ximian.com>
14563         * MdiClient.cs: New mdi children need to be added to the back of
14564         the controls collection so the zorder is set correctly. Also add a
14565         count of all the child windows that have been created.
14567 2005-09-27  Jackson Harper  <jackson@ximian.com>
14569         * Form.cs (CreateParams): Setup MDI forms correctly.
14571 2005-09-27  Jackson Harper  <jackson@ximian.com>
14573         * MdiChildContext.cs:
14574         * MonthCalendar.cs:
14575         * UpDownBase.cs:
14576         * ListBox.cs:
14577         * ListView.cs:
14578         * TextBoxBase.cs:
14579         * TreeView.cs:
14580         * ScrollableControl.cs:
14581         * ComboBox.cs: Add implicit controls using the new implict control
14582         functionality in ControlCollection. Also try to block multiple
14583         control add in a suspend/resume layout to save some cycles.
14584         
14585 2005-09-27  Jackson Harper  <jackson@ximian.com>
14587         * Control.cs: Add functionality to the controls collection to add
14588         'implicit controls' these are controls that are created by the
14589         containing control but should not be exposed to the user. Such as
14590         scrollbars in the treeview.
14591         * Form.cs: The list var of the ControlsCollection is no longer
14592         available because of the potential of implicit controls getting
14593         ignored by someone accessing the list directly.
14595 2005-09-26  Peter Dennis Bartok  <pbartok@novell.com>
14597         * Control.cs: Fixed SetChildIndex; it no longer causes a child to
14598           loose it's parent. (Fixed bug introduced in r49103 when we added
14599           setting the child parent to null on Remove)
14601 2005-09-26  Gert Driesen  <drieseng@users.sourceforge.net>
14603         * DataGridBoolColumn.cs: Marked CheckState private to fix public API.
14604         * Splitter.cs: Added missing attributes for BorderStyle property.
14605         * TextBoxBase.cs: Marked Calculate* methods internal.
14606         * TextBox.cs: Fixed DefaultValue for PasswordChar property to match
14607         MS.NET.
14609 2005-09-26  Jordi Mas i Hernandez <jordi@ximian.com>
14610          
14611         * ListBox.cs: Fixes navigation to the last item in multicolumn lists
14613 2005-09-25  Jackson Harper  <jackson@ximian.com>
14615         * TreeView.cs: Update the node bounds correctly regardless of
14616         whether the node is visible.
14618 2005-09-25  Jackson Harper  <jackson@ximian.com>
14620         * ImageList.cs: Don't dispose the image after it is added to the
14621         image list. Only reformat images that need to be resized.
14623 2005-09-25  Jackson Harper  <jackson@ximian.com>
14625         * ImageList.cs: Don't set the format when changing the image.
14627 2005-09-25  Jackson Harper  <jackson@ximian.com>
14629         * TreeView.cs: We can't just assume the node has a font. Use the
14630         treeviews font if no node font is available.
14632 2005-09-25  Jackson Harper  <jackson@ximian.com>
14634         * TreeView.cs: Allow the scrollbars to be reset with negative
14635         values.
14636         - Don't add scrollbars to negative sized windows.
14638 2005-09-23  Jackson Harper  <jackson@ximian.com>
14640         * XplatUIX11.cs: Update to use Mono.Posix.Native instead of plain
14641         old Mono.Posix. Also remove some stray code that shouldn't have
14642         been committed.
14644 2005-09-23  Jackson Harper  <jackson@ximian.com>
14646         * TreeView.cs: Attempt at proper sizing of the horizontal
14647         scrollbar. Also don't resize the scrollbars unless they are
14648         visible.
14650 2005-09-23  Jackson Harper  <jackson@ximian.com>
14652         * TreeView.cs: We don't need to expand the invalid area when the
14653         selection changes, as this is all drawn in the node's bounding
14654         box. The area needs to be expanded (previous typo was contracting
14655         it) when the focus rect moves.
14657 2005-09-23  Jackson Harper  <jackson@ximian.com>
14659         * TreeView.cs: Display the selection box under the correct
14660         circumstances. We were rendering white text with no selection box
14661         before.
14663 2005-09-23  Peter Dennis Bartok  <pbartok@novell.com>
14665         * TextControl.cs(Split): Now updates selection start/end if it points 
14666           into a line that's being split. Fixes a FIXME and bug #75258
14668 2005-09-23  Jackson Harper  <jackson@ximian.com>
14670         * Binding.cs:
14671         * ListControl.cs: Don't use the path when retrieving binding
14672         managers from the binding context. My bat sense tells me that the
14673         path is only used on insertion.
14675 2005-09-22  Jackson Harper  <jackson@ximian.com>
14677         * Splitter.cs: Set the cursor an easier way. (Thanks peter).
14679 2005-09-22  Jackson Harper  <jackson@ximian.com>
14681         * Splitter.cs: There are special cursors used for splitting.
14682         * XplatUIX11.cs: The VSplit and HSplit cursors were backwards.
14684 2005-09-22  Jackson Harper  <jackson@ximian.com>
14686         * Splitter.cs: Change the cursor appropriately when the splitter
14687         is moused over, so the user actually knows there is a splitter
14688         there.
14690 2005-09-22 Hisham Mardam Bey <hisham.mardambey@gmail.com>
14692        * Label.cs : Fix ToString method to give same output as MS.NET
14694 2005-09-22  Jackson Harper  <jackson@ximian.com>
14696         * TreeView.cs: Create the scrollbars when the handle is created
14697         and add them right away, just make them invisble. Also account for
14698         the window being shrunk vertically to the point that the vert
14699         scrollbar needs to be added.
14700         - Remove some 0.5 adjustments to get around anti aliasing issues.
14701         
14702 2005-09-22  Jordi Mas i Hernandez <jordi@ximian.com>
14703          
14704         * MainMenu.cs: Fixes default value
14705         * MenuItem.cs: Fixes default value
14707 2005-09-22  Kazuki Oikawa  <kazuki@panicode.com>
14709         * AsyncMethodResult.cs: Fixes Control.Invoke is blocked infinitely.
14711 2005-09-21  Jackson Harper  <jackson@ximian.com>
14713         * Control.cs: Don't try to set the border style on the window if
14714         it hasn't been created. When the window is created the border
14715         style will be used.
14717 2005-09-21  Peter Dennis Bartok  <pbartok@novell.com>
14719         * Control.cs (Update): Don't call XplatUI if we don't have a
14720           window handle yet
14722 2005-09-21  Peter Dennis Bartok  <pbartok@novell.com> 
14724         * ContainerControl.cs: Instead of throwing an exception, print
14725           a one-time warning about Validate not being implemented
14726         * XplatUIWin32.cs: Removed debug output
14728 2005-09-21  Peter Dennis Bartok  <pbartok@novell.com> 
14730         * Control.cs: Only set XplatUI background if we expect the windowing
14731           system to handle the background. This stops controls that draw their
14732           own background from flickering
14734         * XplatUIX11.cs: Support custom visuals and colormaps for window 
14735           creation. This allows, amongst other things, using MWF X11 windows 
14736           with OpenGL.
14738 2005-09-21  Peter Dennis Bartok  <pbartok@novell.com>
14740         * OpenFileDialog.cs, ContentsResizedEventArgs.cs, LibSupport.cs, GridItem.cs,
14741           CursorConverter.cs, SplitterEventHandler.cs, PropertyGridTextBox.cs,
14742           GridTablesFactory.cs, MethodInvoker.cs, AccessibleEvents.cs,
14743           SplitterEventArgs.cs, XplatUI.cs, Mime.cs, PropertySort.cs,
14744           TreeViewCancelEventHandler.cs, Form.cs, PropertyGridCommands.cs,
14745           IDataGridEditingService.cs, DateBoldEventHandler.cs, Label.cs,
14746           KeyboardLayouts.cs, TextControl.cs, ProgressBar.cs, ToolTip.cs,
14747           RadioButton.cs, OSFeature.cs, LinkLabel.cs, ColorDialog.cs,
14748           ThemeNice.cs, ErrorIconAlignment.cs, TreeNode.cs, MimeGenerated.cs,
14749           ComboBox.cs, DataGridTextBoxColumn.cs, ArrangeStartingPosition.cs,
14750           GridColumnStylesCollection.cs, 
14751           IDataGridColumnStyleEditingNotificationService.cs,
14752           PropertyGrid.cs, IFeatureSupport.cs, ICommandExecutor.cs,
14753           MdiLayout.cs, GridEntry.cs, ControlBindingsCollection.cs,
14754           GridTableStylesCollection.cs, TreeViewCancelEventArgs.cs, 
14755           TreeNodeCollection.cs, AmbientProperties.cs, 
14756           RichTextBoxSelectionAttribute.cs, RichTextBoxSelectionTypes.cs,
14757           DataObject.cs, ErrorProvider.cs, Splitter.cs,
14758           DataGridLineStyle.cs, Shortcut.cs, Control.cs,
14759           FontDialog.cs, SecurityIDType.cs, GridItemType.cs,
14760           BindingMemberInfo.cs, DataGridCell.cs, MdiChildContext.cs,
14761           IRootGridEntry.cs, PropertyGridView.cs, DataGridParentRowsLabelStyle.cs,
14762           FolderBrowserDialog.cs, OpacityConverter.cs, HelpProvider.cs,
14763           IComponentEditorPageSite.cs, DataGridTableStyle.cs, NavigateEventArgs.cs,
14764           NotifyIcon.cs, ContentsResizedEventHandler.cs, MenuItem.cs,
14765           PropertyTabChangedEventHandler.cs, TextBoxBase.cs, OpenTreeNodeEnumerator.cs,
14766           SelectionMode.cs, TextBox.cs, ListBindingConverter.cs,
14767           FileDialog.cs, KeysConverter.cs, DomainUpDown.cs,
14768           DataFormats.cs, SaveFileDialog.cs, GridItemCollection.cs,
14769           ArrangeDirection.cs, FeatureSupport.cs, SelectionRangeConverter.cs,
14770           RichTextBoxScrollBars.cs, NodeLabelEditEventHandler.cs, TreeNodeConverter.cs,
14771           MimeIcon.cs, X11Structs.cs, PropertyGridEntry.cs,
14772           ImageList.cs, ThemeWin32Classic.cs, X11Keyboard.cs,
14773           CheckedListBox.cs, HelpNavigator.cs, DateTimePickerFormat.cs,
14774           MdiClient.cs, DataGridDrawingLogic.cs, DataGridBoolColumn.cs,
14775           NodeLabelEditEventArgs.cs, Screen.cs, PropertyManager.cs,
14776           ComponentModel.cs, PropertiesTab.cs, CurrencyManager.cs,
14777           SizeGrip.cs, DateBoldEventArgs.cs, X11Dnd.cs, Panel.cs,
14778           Hwnd.cs, OSXStructs.cs, DrawMode.cs, XplatUIDriver.cs,
14779           RichTextBox.cs, PropertyTabChangedEventArgs.cs, CommonDialog.cs,
14780           DataGrid.cs, XplatUIX11.cs, RichTextBoxStreamType.cs, Win32DnD.cs,
14781           ErrorBlinkStyle.cs, TreeViewEventHandler.cs,
14782           PropertyValueChangedEventHandler.cs, IFileReaderService.cs,
14783           DataGridTextBox.cs, SelectedGridItemChangedEventArgs.cs, ScrollBar.cs,
14784           ListBox.cs, TreeViewAction.cs, Help.cs, TrackBar.cs,
14785           AxHost.cs, PropertyValueChangedEventArgs.cs, XplatUIOSX.cs,
14786           RichTextBoxFinds.cs, UpDownEventArgs.cs, Cursors.cs,
14787           CategoryGridEntry.cs, RichTextBoxWordPunctuations.cs, DataGridColumnStyle.cs,
14788           SelectedGridItemChangedEventHandler.cs, DateTimePicker.cs, NavigateEventHandler.cs,
14789           Clipboard.cs, UpDownEventHandler.cs, MonthCalendar.cs,
14790           SendKeys.cs, DataGridPreferredColumnWidthTypeConverter.cs, TreeView.cs,
14791           ThreadExceptionDialog.cs, ImageListConverter.cs, XplatUIWin32.cs,
14792           TreeViewEventArgs.cs: Fixed whitespace and set eol-style:native attribute
14794 2005-09-21  Jackson Harper  <jackson@ximian.com>
14796         * TreeNode.cs: Call Before/After Expand not Collapse when
14797         expanding.
14799 2005-09-20  Jackson Harper  <jackson@ximian.com>
14800         
14801         * XplatUIX11.cs: Use the more hand looking hand (in most themes).
14803 2005-09-16  Jordi Mas i Hernandez <jordi@ximian.com>
14804          
14805         * ListViewItem.cs:
14806                 - Fixes bug 76120
14807                 - Fixes proper storing of subitems
14808                 - Fixes not updated items
14810 2005-09-20  Peter Dennis Bartok  <pbartok@novell.com>
14812         * Control.cs, TextBoxBase.cs, TextControl.cs: Don't do certain
14813           things if our window handle isn't created yet. Also disabled 
14814           debug for TextBoxBase
14816 2005-09-20  Peter Dennis Bartok  <pbartok@novell.com> 
14818         * MenuAPI.cs: Remove filtering of events to allow menu usage
14820 2005-09-20  Miguel de Icaza  <miguel@novell.com>
14822         * Cursor.cs: Allow null to be passed to Cursor.Current.
14824 2005-09-20  Alexander Olk  <alex.olk@googlemail.com>
14826         * ThemeWin32Classic.cs:
14827           - Change some private methods/fields to protected virtual so that 
14828             they can be accessed and overriden in derived classes
14829           - First refactoring of some methods. Derived themes now don't 
14830             need to duplicate the complete code from ThemeWin32Classic
14831         * ThemeNice.cs:
14832           - Added nice StatusBar
14833           - Derive from ThemeWin32Classic and not Theme
14834           - Removed duplicate ThemeWin32Classic code
14836 2005-09-20  Miguel de Icaza  <miguel@novell.com>
14838         * Control.cs (ControlCollection.Add): If the value null is passed
14839         the control is ignored. 
14841         Optimize this loop.
14843 2005-09-19  Peter Dennis Bartok  <pbartok@novell.com> 
14845         * MenuAPI.cs: Replaced Application.Run() with a loop that tracks
14846           PostQuitMessage state.
14847         * XplatUIWin32.cs: Removed bogus PostQuitMessage P/Invoke with HWND arg
14849 2005-09-19  Peter Dennis Bartok  <pbartok@novell.com>
14851         * Application.cs: Our constructor will never get called, move 
14852           initialization to fields; fixes bug #75933
14854 2005-09-19 Hisham Mardam Bey <hisham.mardambey@gmail.com>
14856         * FileDialog.cs :
14857                 - Allow files to be selected properly using file name
14858                 combo box.
14859                 - Add ability to change diretory (absolute / relative)
14860                 using file name combo box.
14862 2005-09-16  Jordi Mas i Hernandez <jordi@ximian.com>
14863          
14864         * ListBox.cs: 
14865                 - Fixes Multicolumn listboxes item wrong calculations
14866                 - Allows to click when only one item is in the listbox
14867                 - Fixes crash when no items using keyboard navigation
14869 2005-09-16  Alexander Olk  <alex.olk@googlemail.com>
14871         * ComboBox.cs: Reverted almost everything from the latest patch which
14872           broke ComboBox
14874 2005-09-16  Kazuki Oikawa <kazuki@panicode.com>
14875         
14876         * ToolTip.cs:
14877                 - Fixed #Mtd2 of ToolTipTest.RemoveToolTipTest.
14878         * ComboBox.cs:
14879                 - When DropDownStyle is Simple, it does not show scrollbar 
14880                 to the last item of the list.
14881                 - When DropDownStyle is Simple, it crashed when the list was 
14882                 scrolled down with the down cursor key.
14883                 - Fixed a bug that when DropDownStyle is DropDownList, the 
14884                 selected item was not shown.
14885                 - The position of the selected item was not preserved when 
14886                 the next dropdown happened.
14887         * ThemeWin32Classic.cs:
14888                 - Items were wrapped at the right end.
14889         * CheckedListBox.cs:
14890                 - Fixed Add method
14891         * ListBox.cs:
14892                 - Items should be fully shown.
14893                 - When resizing and vertical scrollbar disappeared, the item 
14894                 of index 0 should be on the top of the list.
14895                 - GetItemRectangle should consider the size of ver. scrollbar
14896         * StatusBar.cs:
14897                 - SizingGrip area should not be allocated when it is not 
14898                 displayed.
14899                 - Now it reflects MinWidth of the containing panel and 
14900                 fixed a crash that happens when its width becomes so small.
14902 2005-09-13  Jordi Mas i Hernandez <jordi@ximian.com>
14904         * CheckedListBox.cs: Fixes bug 76028
14905         * ListBox.cs: Fixes bug 76028
14907 2005-09-13  Jordi Mas i Hernandez <jordi@ximian.com>
14909         * ThemeWin32Classic.cs: Sets clipping on DataGridPaintRowsHeaders
14910         * DataGridDrawingLogic.cs: fixes issues with Datagrid drawing
14912 2005-09-12  Jordi Mas i Hernandez <jordi@ximian.com>
14914         * XplatUIX11.cs: fixes System.NullReferenceException in some situations
14916 2005-09-09  Jonathan Chambers  <jonathan.chambers@ansys.com>
14918         * IRootGridEntry.cs: Changed namespace to PropertyGridInternal 
14920 2005-09-09  Jonathan Chambers  <jonathan.chambers@ansys.com>
14922         * IRootGridEntry.cs: Added
14923         * PropertyGridCommands.cs: Added
14924         * PropertiesTab.cs: Added missing methods and property
14925         * PropertyGridView.cs: Made class internal
14926         * PropertyGridTextBox.cs: Made class internal
14928 2005-09-09  Alexander Olk  <alex.olk@googlemail.com>
14930         * MimeIcon.cs: Try to check some other environment variables
14931           if "DESKTOP_SESSION" returns "default"
14933 2005-09-09  Alexander Olk  <alex.olk@googlemail.com>
14935         * ThemeNice.cs: Corrected background colors (e.g. menus)
14936         * ColorDialog.cs: Use correct background colors for controls
14938 2005-09-09  Alexander Olk  <alex.olk@googlemail.com>
14940         * ThemeNice.cs: Merged r49535 from ThemeWin32Classic
14942 2005-09-08  Peter Dennis Bartok  <pbartok@novell.com>
14944         * RichTextBox.cs: Added initial implementation
14945         * lang.cs: Removed. Was accidentally checked in long time ago
14946         * TODO: Removed. Contents were obsolete
14948 2005-09-06  Jonathan Chambers  <jonathan.chambers@ansys.com>
14949                                                                                 
14950         * PropertiesTab.cs : Added
14952 2005-09-06  Jonathan Chambers  <jonathan.chambers@ansys.com>
14953                                                                                 
14954         * PropertyGrid.cs : Update
14955         * PropertyGridView.cs : Update
14956         * System.Windows.Forms.resx : Added images and strings
14958 2005-09-06  Peter Dennis Bartok  <pbartok@novell.com> 
14960         * ThemeNice.cs: Do not dispose Pens retrieved from ResPool
14962 2005-09-06  Peter Dennis Bartok  <pbartok@novell.com>
14964         * XplatUIX11.cs: Force a flush after Ungrab; if case the app enters
14965           a busy loop right after the Ungrab the X11 display is otherwise 
14966           blocked
14968 2005-09-06  Jordi Mas i Hernandez <jordi@ximian.com>
14970         * ThemeWin32Classic.cs: Optimise the use of clipping
14972 2005-09-05  Jordi Mas i Hernandez <jordi@ximian.com>
14974         * DataGrid.cs: fixes recursion bug
14976 2005-09-03  Alexander Olk  <alex.olk@googlemail.com>
14978         * ThemeNice.cs: 
14979           - Draw RadioButton and CheckBox Buttons with DrawButtonBase
14980           - Cleanup
14982 2005-09-02  Alexander Olk  <alex.olk@googlemail.com>
14984         * ThemeNice.cs: Draw nice ProgressBars
14986 2005-09-01  Miguel de Icaza  <miguel@novell.com>
14988         * VScrollBar.cs: Another buglet found by Aaron's tool. 
14990         * ProgressBar.cs: Fix three recursive bugs found by Aaron Tomb's
14991         bug finder.
14993 2005-08-30  Alexander Olk  <alex.olk@googlemail.com>
14995         * ThemeNice.cs:
14996           - Added nicer menu drawing
14997           - Updated DrawTab
14998           - some refactoring
15000 2005-08-30  Peter Dennis Bartok  <pbartok@novell.com>
15002         * CreateParams.cs (ToString): Made output match MS
15003         * Control.cs (Text): Don't set Text or Focus via XplatUI unless 
15004             handle is already created (to avoid forcing window creation)
15005         * XplatUIX11.cs: Set window text to caption after creating window,
15006           in case Text was set before window was created
15007         * Form.cs: Use this.Text instead of a static string as caption
15009 2005-08-30  Peter Dennis Bartok  <pbartok@novell.com> 
15011         * NotifyIcon.cs: Don't set the window to visible; this screws
15012           up Win32 (causes WM_NCPAINT to be sent on Win32, which calls
15013           OnPaint without a bitmap)
15014         * XplatUIX11.cs: Removed Visible optimization in AddExpose; doesn't 
15015           happen very often anyway; we could add the check to the WM_PAINT 
15016           event generation code
15018 2005-08-30  Peter Dennis Bartok  <pbartok@novell.com>
15020         * NotifyIcon.cs: Fill the icon area with a background color, to 
15021           avoid 'residue' when transparent icons are drawn
15022         * XplatUIX11.cs:
15023           - Handle whole_window == client_window when destroying windows
15024           - SystrayAdd(): Set client_window to whole_window value to
15025             get mouse and other events passed to NotifyIcon
15027 2005-08-30  Peter Dennis Bartok  <pbartok@novell.com> 
15029         * Form.cs: Set proper default for Opacity property
15030         * NotifyIcon.cs:
15031           - ShowSystray(): Don't bother creating telling the OS
15032             about the systray item if no icon is provided
15033           - Now handles WM_NCPAINT message to deal with whole/client window
15034             split
15035           - Create window as visible to not get caught by Expose optimization
15036         * Hwnd.cs: Removed debug message
15037         * ComboBox.cs, ScrollBar.cs, ListBox.cs, TrackBar.cs, TabControl.cs,
15038           StatusBar.cs, TreeView.cs, XplatUIOSX.cs, XplatUIWin32.cs: Switched 
15039             PaintEventStart/End to use new client argument
15040         * TextBoxBase.cs:
15041           - Commented out debug messages
15042           - Switched PaintEventStart/End to use new client argument
15043         * XplatUI.cs: Added client window bool to PaintEventStart()/
15044           PaintEventEnd() calls, to support drawing in non-client areas
15045         * XplatUIDriver.cs: 
15046           - Added client window bool to PaintEventStart()/PaintEventEnd() 
15047             calls, to support drawing in non-client areas
15048           - Added conditional compile to allow using MWF BeginInvoke 
15049             on MS runtime
15050         * XplatUIX11.cs:
15051           - Added some conditional debug output
15052           - Fixed SystrayAdd() method to support new (for SystrayAdd, anyway)
15053             whole/client window split
15054           - Implemented handling of client argument to PaintEventStart()/End()
15055         * Control.cs:
15056           - Throw exception if BeginInvoke() is called and the window handle
15057             or one of the window's parent handles is not created
15058           - Added conditional compile to allow using MWF BeginInvoke on
15059             MS runtime
15060           - get_Parent(): Only sets parent if handle is created. This avoids
15061             forcing window handle creation when parent is set.
15062           - Now fires Layout and Parent changed events in proper order
15063           - Switched to use Handle instead of window.Handle for Z-Order setting,
15064             the get_Parent() patch above causes us to possibly get null for 'window'
15065           - Implemented handling of client argument to PaintEventStart()/End()
15066           - Now reports back to windows that WM_SETCURSOR was handled (to avoid
15067             default handling)
15068           - Now sends a Refresh() to all child windows when Refresh() is called
15070 2005-08-29  Peter Dennis Bartok  <pbartok@novell.com> 
15072         * Form.cs: Added (non-functional) Opacity property
15073         * XplatUIWin32.cs (SystrayAdd): Removed bogus line of code
15075 2005-08-29  Alexander Olk  <xenomorph2@onlinehome.de>
15076         * ThemeNice.cs: New theme for MWF, based on ThemWin32Classic
15077           use export MONO_THEME=nice to activate it.
15078           Currently supported controls:
15079           - Button
15080           - ComboBox
15081           - ScrollBar
15082           - TabControl (TabAlignment.Top only, other will follow)
15083         * ThemeEngine.cs: Add theme nice
15084         * ButtonBase.cs: Redraw button on MouseEnter and MouseLeave everytime,
15085           if enabled
15087 2005-08-25  Jonathan Chambers  <jonathan.chambers@ansys.com> 
15089         * Splitter.cs: Resize docked control and its neighbor.
15091 2005-08-24  Rafael Teixeira <rafaelteixeirabr@hotmail.com> 
15092         -- Making Windows with Menus layout correctly --
15093         * Form.cs : The first leg of the fix
15094                 Menu setter - adjust Client Size as needed to make space for the menu
15095                 SetClientSizeCore - doesn't call base version to be able to pass the 
15096                         menu handle to XplatUI.CalculateWindowRect
15097         * Hwnd.cs: Fix for menu_height, now gets from MenuAPI.MENU
15098         * XplatUIX11.cs: The critical second leg of the fix
15099                 GetWindowPos needs to use a recalculated client_rect
15100                 so that resizing the window doesn't break layout of child controls. 
15101                 Also a more complete rule to avoid X Server roundtrips in SetWindowPos
15102                 Lots of \t\n killed
15104 2005-08-23  Peter Dennis Bartok  <pbartok@novell.com> 
15106         * Label.cs: Now properly recalculates width and height on Font and Text
15107           changes if AutoSize is set
15109 2005-08-19  Rafael Teixeira <rafaelteixeirabr@hotmail.com> 
15110         * TreeView.cs : Revamped drawing logic, and support for FullRowSelect
15112 2005-08-19  Jordi Mas i Hernandez <jordi@ximian.com>
15114         * ImageList.cs: Makes ToString method compatible with MS
15116 2005-08-18  Jordi Mas i Hernandez <jordi@ximian.com>
15118         * MenuAPI.cs: fixes bug 75716
15120 2005-08-11 Umadevi S <sumadevi@novell.com>
15121         * Control.cs: Fixed Remove & RemoveAt to make the parent of the control null.
15123 2005-08-11 Umadevi S <sumadevi@novell.com>
15124         * Contorl.cs: Fixed ResetRightToLeft and ResetImeMode to work correctly
15126 2005-08-10  Umadevi S <sumadevi@novell.com>
15127         * CheckedListBox.cs: Fixed event firing on Adding to the CheckedListBox
15129 2005-08-07  Jordi Mas i Hernandez <jordi@ximian.com>
15131         * Menu.cs: fixes bug 75700
15132         * MenuAPI.cs: fixes navigation issues
15134 2005-08-09  Umadevi S <sumadevi@novell.com>
15135         * CheckedListBox.cs - simple fix for GetItemChecked.
15137 2005-08-08  Jordi Mas i Hernandez <jordi@ximian.com>
15139         * ComboBox.cs: Serveral fixes
15140         * ListBox.cs: Serveral fixes
15142 2005-08-05  Jordi Mas i Hernandez <jordi@ximian.com>
15144         * ComboBox.cs: Fixes FindString methods and GetItemHeight
15145         * ListBox.cs: Fixes FindString methods
15147 2005-08-05  Jordi Mas i Hernandez <jordi@ximian.com>
15149         * DataGrid.cs: fixes bugs exposed by new tests
15151 2005-08-04  Peter Dennis Bartok  <pbartok@novell.com> 
15153         * Mime.cs: Compile Mono assembly references only if compiling
15154           with Mono (Allows to build with VS.Net again)
15156 2005-07-28  Marek Safar  <marek.safar@seznam.cz>
15158         * Control.cs (PaintControlBackground): Draw background image
15159         corrrectly.
15160         (CheckForIllegalCrossThreadCalls): Stubbed.
15161         
15162         * Form.cs (OnCreateControl): Center when should be centered.
15163         
15164         * ThemeWin32Classic.cs (DrawPictureBox): Pass size.
15166 2005-07-19  Jordi Mas i Hernandez <jordi@ximian.com>
15168         * Binding.cs: Binding to properties should be case unsensitive
15170 2005-07-18 vlindos@nucleusys.com
15172         * DataGrid.cs: fixes setmember order
15174 2005-07-07  Alexander Olk  <xenomorph2@onlinehome.de>
15176         * MimeIcon.cs: added MimeIcon stuff (MimeIconEngine)
15177         * FileDialog.cs: FileDialog is now resizable and uses the new
15178           MimeIconEngine
15180 2005-07-06  Jordi Mas i Hernandez <jordi@ximian.com>
15182         * DataGridTextBoxColumn.cs: default value
15183         * GridColumnStylesCollection.cs: fixes event firing, checking MappingName
15184         * GridTableStylesCollection.cs: fixes checking MappingName
15185         * DataGridDrawingLogic.cs: fixes drawing logic issues
15186         * DataSourceHelper.cs: rewritten to make compatible with more data sources
15187         * DataGrid.cs: fixes    
15189 2005-07-06  Alexander Olk  <xenomorph2@onlinehome.de>
15191         * MimeGenerated.cs: Use case sensitive comparer for
15192           NameValueCollections
15194 2005-07-01  Jordi Mas i Hernandez <jordi@ximian.com>
15196         * DataGridTextBoxColumn.cs: bug fixes, code refactoring 
15197         * ThemeWin32Classic.cs: bug fixes, code refactoring
15198         * DataGridDrawingLogic.cs:  bug fixes, code refactoring
15199         * DataGrid.cs: bug fixes, code refactoring
15200         * DataGridTextBox.cs: bug fixes, code refactoring
15201         * DataGridColumnStyle.cs:  bug fixes, code refactoring
15202         * Theme.cs:  bug fixes, code refactoring
15204 2005-07-01  Peter Bartok  <pbartok@novell.com> 
15206         * TextControl.cs: Quick fix for the reported crash on ColorDialog
15207           and other text box usage
15209 2005-07-01  Jackson Harper  <jackson@ximian.com>
15211         * TabControl.cs: Make sure the bottom of the tab covers the pages
15212         border.
15214 2005-06-30  Peter Bartok  <pbartok@novell.com> 
15216         * Form.cs (ShowDialog): Assign owner of the dialog
15217         * TextBoxBase.cs: Always refresh caret size when deleting, caret
15218           might have been moved to a tag with different height
15220 2005-06-30  Jackson Harper  <jackson@ximian.com>
15222         * Form.cs: Don't create an infinite loop when setting focus
15223         * MenuItem.cs: Don't dirty the parents if we don't have any
15225 2005-06-29  Ben Maurer  <bmaurer@ximian.com>
15227         * LibSupport.cs: Rename
15229 2005-06-29  Peter Bartok  <pbartok@novell.com>
15231         * TextBoxBase.cs: Re-align caret after deleting a character
15232         * TextControl.cs:
15233           - DeleteChars(): Ensure that tag covers the provided position
15234           - StreamLine(): Drop reference for dropped tag
15236 2005-06-29  Peter Bartok  <pbartok@novell.com> 
15238         * TextControl.cs: 
15239           - Selections now work properly, anchoring at the initial location
15240             and properly extending in either direction (SetSelectionToCaret(),
15241             SetSelectionStart() and SetSelectionEnd())
15242           - No longer redraws the whole control on selection change, now
15243             calculates delta between previous and new selection and only
15244             invalidates/redraws that area
15245           - Fixed FindPos() math off-by-one errors
15246           - Changed DeleteChars() to verify the provided tag covers the
15247             provided position, selections may have a tag that doesn't cover
15248             the position if the selection is at a tag border
15249           - Fixed off-by-one errors in DeleteChars()
15250           - Added missing streamlining check in DeleteChars() to remove
15251             zero-length tags
15252           - Implemented Invalidate() method, now properly calculates exposures
15253             between two given lines/positions
15254           - Implemented SetSelection()
15255           - Obsoleted and removed FixupSelection()
15256           - Improved RecalculateDocument() logic, removing code duplication
15258 2005-06-29 Gonzalo Paniagua Javier <gonzalo@ximian.com>
15260         * LibSupport.cs: changes to match different input/output arguments.
15262 2005-06-29 Gonzalo Paniagua Javier <gonzalo@ximian.com>
15264         * LibSupport.cs: added libsupport.so init routine.
15266 2005-06-29  Jordi Mas i Hernandez <jordi@ximian.com>
15267         
15268         * ControlBindingsCollection.cs
15269                 - Throws an exception on null datasource when adding
15270                 - Checks for duplicated bindings when adding
15272 2005-06-28  Jackson Harper  <jackson@ximian.com>
15274         * TreeView.cs (OnKeyDown): Support left and right properly
15275         (navigates as well as expanding and collapsing.
15276         - Add support for Multiply, this expands all the selected nodes
15277         children.
15278         - Fix some tabbing.
15280 2005-06-28  Jackson Harper  <jackson@ximian.com>
15282         * TreeView.cs: Implement keyboard navigation, currently supports,
15283         LEFT, RIGHT, UP, DOWN, PGUP, PGDOWN, HOME, END, ADD, SUBTRACT. Add
15284         support for toggling checkboxes with the space bar.
15286 2005-06-28  Jackson Harper  <jackson@ximian.com>
15288         * OpenTreeNodeEnumerator.cs: Don't move past the begining of the
15289         tree.
15291 2005-06-28  Jackson Harper  <jackson@ximian.com>
15293         * TreeView.cs: Add missing event.
15295 2005-06-27  Peter Bartok  <pbartok@novell.com> 
15297         * TextControl.cs:
15298           - Made line ending size configurable (now allows for counting 
15299             lineendings as \n or \r\n)
15300           - Added margin to viewport to keep caret visible on right side
15301           - Fixed translation routines for line/pos to documentpos to consider
15302             cr/lf when counting (Fixes RichTextBox.SelectionFont issues)
15303           - Fixed some line-endings to be unix style
15304           - Fixed Document.FormatText to perform it's calculations 1-based
15305           - Added descriptions for a few methods that might otherwise get 
15306             used wrong
15307           - Added NOTE section with some basic conventions to remember at 
15308             the top of the file
15309           - Major fixup for RichTextBox selection drawing:
15310             * Fixed crashes when multiple tags on a single line were selected
15311             * fixed selection box drawing not overlaying text
15312             * fixed bogus offset calculation for tags not starting at index 1
15313             * Switched behaviour from using multiple Substrings of a 
15314               StringBuilder.ToString() to using multiple 
15315               StringBuilder.ToString(start, length) statements, hoping this is
15316               faster (kept original version commented out in the code, in case
15317               original version was faster)
15318         * TextBox.cs (set_TextAlignment): TextBox always needs to wrap if 
15319           alignment != Left
15320         * TextBoxBase.cs (CalculateDocument): Made protected so RichTextBox can
15321           call it as well
15323 2005-06-27  Jackson Harper  <jackson@ximian.com>
15325         * TabControl.cs: Move to the left and right with the arrow
15326         keys. These keys don't cycle beyond first and last like
15327         tab. Refresh all the tabs when scrolling them to the left or
15328         right.
15330 2005-06-27  Jackson Harper  <jackson@ximian.com>
15332         * TabControl.cs:
15333           - ToString: Added method
15334           - CreateParams: Remove TODO and comment
15335           - OnKeyDown: Cycle through bounds properly.
15336           - SelectedIndex: Scroll to the right or left if we need to
15337           display the newly selected tab.
15339 2005-06-23  Jackson Harper  <jackson@ximian.com>
15341         * TabControl.cs: Stay in bounds when cycling. Make sure Handled is
15342         set.
15344 2005-06-23  Jackson Harper  <jackson@ximian.com>
15346         * TabControl.cs: Keyboard handling. We now support CTRL-TAB,
15347         CTRL-SHIFT-TAB, and HOME, END are there any others?
15349 2005-06-23  Jackson Harper  <jackson@ximian.com>
15351         * XplatUIX11.cs: Get the modifier keys from the keyboard driver.
15353 2005-06-22  Jordi Mas i Hernandez <jordi@ximian.com>
15354         
15355         * DataGridTextBoxColumn.cs: fixes and enhancements
15356         * ThemeWin32Classic.cs: fixes and enhancements
15357         * DataGridBoolColumn.cs:  fixes and enhancements
15358         * DataGridDrawingLogic.cs:  fixes and enhancements
15359         * CurrencyManager.cs: fixes and enhancements
15360         * DataGrid.cs: fixes and enhancements
15361         * DataGridColumnStyle.cs:  fixes and enhancements
15363 2005-06-22  Jackson Harper  <jackson@ximian.com>
15365         * TabControl.cs: Add some missing methods that just call into the
15366         base. Make the TabPageCollection's IList interface behave in the
15367         same manner as the MS implementation.
15369 2005-06-22  Peter Bartok  <pbartok@novell.com> 
15371         * TextControl.cs: Added sanity check
15372         * TextBoxBase.cs: 
15373           - Fixed wrapping behaviour, don't set wrap on single line controls
15374             (this fixes the breakage of colordialog introduced in an earlier
15375              checkin)
15376           - Added rudimentary support for autoscrolling right-aligned controls
15377             (still needs fixing, also, center alignment scroll is missing)
15379 2005-06-22  Jordi Mas i Hernandez <jordi@ximian.com>
15380         
15381         * ScrollBar.cs: Fixes thumbpos on Maximum values
15383 2005-06-21  Jonathan Chambers <jonathan.chambers@ansys.com>
15384         
15385         * PropertyGridView.cs: Pass context information to UITypeEditors 
15387 2005-06-21  Peter Bartok  <pbartok@novell.com> 
15389         * TextBoxBase.cs:
15390           - Now calling PositionCaret with absolute space coordinates
15391           - Enabled vertical scrolling
15392           - Better tracking of scrollbar changes, tied into WidthChange
15393             event
15394           - Improved cursor tracking
15395           - Removed debug output
15396         * TextControl.cs:
15397           - PositionCaret coordinates are now works in absolute space, not 
15398             the canvas
15399           - Improved tracking of document size
15400           - Added events for width and height changes
15402 2005-06-21  Peter Bartok  <pbartok@novell.com>
15404         * Form.cs: Set focus to active control when form is activated
15405         * TextControl.cs: 
15406           - Added word-wrap functionality to RecalculateLine() 
15407           - Added some short function descriptions for VS.Net to aid in
15408             writing dependent controls
15409           - Added Caret property, returning the current coords of the caret
15410           - Added ViewPortWidth and ViewPortHeight properties
15411           - Added Wrap property
15412           - Added CaretMoved event
15413           - Removed some old debug code
15414           - Split() can now create soft splits
15415           - Added PreviousTag()/NextTag() to allow walking "tag-lists"
15416           - Added method to format existing text
15417           - Fixed size/alignment calculations to use viewport
15418           - RecalculateDocument now can handle changing line-numbers while
15419             calculating lines
15421         * TextBox.cs:
15422           - Added some wrap logic, we don't wrap if alignment is not left
15423           - Added casts for scrollbar var, base class switched types to
15424             also support RichTextBoxA
15425           - Implemented handling of scrollbar visibility flags
15427         * TextBoxBase.cs:
15428           - Switched scrollbars type to RichTextBoxScrollBars to support
15429             RichTextBox
15430           - Added tracking of canvas width/height
15431           - Switched scrollbars to be not selectable (to keep focus on text)
15432           - Added central CalculateDocument() method to handle all redraw
15433             requirements
15434           - Added ReadOnly support
15435           - Added WordWrap support
15436           - Fixed handling of Enter key (we now treat it as a DialogKey)
15437           - Fixed caret positioning when h or v scroll is not zero
15438           - Fixed placing/generation of vertical scrollbar
15439           - Added CalculateScrollBars() method to allow updating scrollbar
15440             limits and visibility
15441           - Fixed handling of horizontal scroll
15442           - Added handling of vertical scroll
15443           - Implemented auto-'jump' when caret moves to close to a left or
15444             right border and there is text to be scrolled into view (currently
15445             there's the potential for a stack overflow, until a bug in
15446             scrollbar is fixed)
15448 2005-06-21  Geoff Norton  <gnorton@customerdna.com>
15449         
15450         * XplatUIOSX.cs: Initial implementation of WM_ERASEBKGND
15452 2005-06-19  Alexander Olk  <xenomorph2@onlinehome.de>
15454         * Mime.cs:
15455         - added inodes.
15456         - return application/x-zerosize for files with size zero
15457           (if no extension pattern matches).
15458         - check matches collection for strings too.
15459         - return only the first mime type if the name value
15460           collection has more than one mime type.
15462 2005-06-18  Jonathan Chambers <jonathan.chambers@ansys.com>
15463         
15464         * PropertyGrid.cs: Cleaned up some TODOs
15465         * PropertyGridView.cs: Added support for UITypeEditors
15467 2005-06-17  Jordi Mas i Hernandez <jordi@ximian.com>
15468         
15469         * DataGrid.cs: clears cached value
15471 2005-06-17  Jordi Mas i Hernandez <jordi@ximian.com>
15473         * DataGridTextBoxColumn.cs: new rows, speed improvements, fixes, readonly prop.
15474         * DataGridDrawingLogic.cs: new rows, speed improvements, fixes, readonly prop.
15475         * DataGrid.cs: new rows, speed improvements, fixes, readonly prop.
15476         * DataGridColumnStyle.cs: new rows, speed improvements, fixes, readonly prop.
15477         
15478 2005-06-16  Jordi Mas i Hernandez <jordi@ximian.com>
15480         * ThemeWin32Classic.cs: fixes colour
15482 2005-06-15  Peter Bartok  <pbartok@novell.com>
15484         * MWFCategoryAttribute.cs: Added (Needed for PropertyGrid designer support)
15485         * MWFDescriptionAttribute.cs: Added (Needed for PropertyGrid designer support)
15486         * ButtonBase.cs: Added MWFCategory and MWFDescription attributes
15487         * Control.cs: Added some MWFCategory and MWFDescription attributes
15488         * ScrollBar.cs: Added some MWFCategory and MWFDescription attributes
15490 2005-06-15  Alexander Olk  <xenomorph2@onlinehome.de>
15492         * Mime.cs, MimeGenerated.cs: First draft of MWF mime stuff, see Mime.cs for
15493         usage
15495 2005-06-14  Jordi Mas i Hernandez <jordi@ximian.com>
15497         * DataGridTextBoxColumn.cs: default datagrid settings for Default Styles, fixes
15498         * DataGridTableStyle.cs: default datagrid settings for Default Styles, fixes
15499         * DataGridDrawingLogic.cs: default datagrid settings for Default Styles, fixes
15500         * DataGridBoolColumn.cs: default datagrid settings for Default Styles, fixes
15501         * DataGrid.cs: default datagrid settings for Default Styles, fixes
15502         * DataGridColumnStyle.cs: default datagrid settings for Default Styles, fixes
15504 2005-06-13  Jackson Harper  <jackson@ximian.com>
15506         * XplatUIX11.cs: Override SetAllowDrop on X11 so an error message
15507         isn't printed when the user enables dropping. (X11 does accept
15508         drops).
15509         
15510 2005-06-13  Jackson Harper  <jackson@ximian.com>
15512         * TreeView.cs: Remove some TODOS.
15514 2005-06-13  Jackson Harper  <jackson@ximian.com>
15516         * Form.cs: Hook into the mdi framework.
15517         * MdiClient.cs: Use the base control collections add method so
15518         parents get setup correctly. Set the default back colour and dock
15519         style.
15520         * MdiChildContext.cs: New class, this bad actor handles an
15521         instance of an MDI window. Right now there is only basic
15522         support. You can drag, close, and resize windows. Minimize and
15523         Maximize are partially implemented.
15525 2005-06-13  Jackson Harper  <jackson@ximian.com>
15527         * XplatUIX11.cs: Mash numbers together properly, otherwise we get
15528         freaky when both vals are negative. NOTE: There are probably other
15529         places in XplatUIX11 that this needs to be done.
15531 2005-06-13  Jordi Mas i Hernandez <jordi@ximian.com>
15533         * DataGrid.cs: implement missing methods, move KeyboardNavigation
15534         * DataGridColumnStyle.cs: fixes signature
15536 2005-06-12  Jackson Harper  <jackson@ximian.com>
15538         * XplatUIX11.cs: Use sizing cursors similar to the ones on
15539         windows.
15541 2005-06-11  Jackson Harper  <jackson@ximian.com>
15543         * StatusBarPanel.cs: Signature cleanups. Implement
15544         BeginInit/EndInit.
15546 2005-06-10  Jordi Mas i Hernandez <jordi@ximian.com>
15548         * DataGridTextBoxColumn.cs: Honors aligment
15549         * GridColumnStylesCollection.cs: Contains is case unsensitive
15550         * GridTableStylesCollection.cs: several fixes
15551         * DataGridTableStyle.cs: default column creation
15552         * DataGridDrawingLogic.cs: fixes
15553         * CurrencyManager.cs: ListName property
15554         * DataGrid.cs: multiple styles support
15555         * DataGridColumnStyle.cs: fixes
15556         
15558 2005-06-10  Peter Bartok  <pbartok@novell.com>
15560         * Control.cs(Select): Moved SetFocus call to avoid potential
15561           loops if controls change the active control when getting focus
15562         * UpDownBase.cs: Fixes to allow proper keyboard focus after clicking
15563           the up/down buttons
15565 2005-06-10  Matthias Felgner  <matthiasf@voelcker.ocm>
15567         * ImageListConverter.cs: Implemented
15569 2005-06-10  John BouAntoun <jba-mono@optusnet.com.au>
15571         * MonthCalendar.cs: Wired in NumericUpDown control for year
15573 2005-06-10  John BouAntoun <jba-mono@optusnet.com.au>
15575         * MonthCalendar.cs: Removed MonoTodo attributes on Click and
15576           DoubleClick events, since they are not meant to be fired.
15578 2005-06-09  Peter Bartok  <pbartok@novell.com>
15580         * UpDownBase.cs, NumericUpDown.cs, DomainUpDown.cs: Integrated
15581           Jonathan's standalone controls into MWF, implemented missing
15582           events, attributes and methods; added xxxAccessible classes
15583         * AccessibleObject.cs: Made fields internal so other classes
15584           can change them if needed
15586 2005-06-09  Jonathan Gilbert  <2a5gjx302@sneakemail.com>
15588         * UpDownBase.cs: Complete implementation
15589         * NumericUpDown.cs: Complete implementation
15590         * DomainUpDown.cs: Complete implementation
15592 2005-06-09  Jordi Mas i Hernandez <jordi@ximian.com>
15594         * DataGridTextBoxColumn.cs: drawing fixes
15595         * DataGridCell.cs: fixes ToString method to match MSNet
15596         * DataGridTableStyle.cs: fixes
15597         * DataGridBoolColumn.cs: fixes, drawing
15598         * DataGridDrawingLogic.cs: fixes, new methods
15599         * DataGridTextBox.cs: Keyboard and fixes
15600         * DataGrid.cs:
15601                 - Keyboard navigation
15602                 - Scrolling fixes
15603                 - Row selection (single, multiple, deletion, etc)
15604                 - Lots of fixes
15605         
15606 2005-06-07  Jackson Harper  <jackson@ximian.com>
15608         * ThemeWin32Classic.cs: Clear the background area when drawing
15609         buttons.
15611 2005-06-06  Peter Bartok  <pbartok@novell.com>
15613         * ImageListStreamer.cs: Fixed signature for GetData
15614         * CheckBox.cs: Fixed base class for CheckBoxAccessibleObject
15615         * ComboBox.cs:
15616           - Added missing ChildAccessibleObject class
15617           - Added missing OnXXXFocus overrides, switched to using those
15618             instead of the event handler
15619         * Control.cs:
15620           - Added Parent property for ControlAccessibleObject
15621           - Fixed signatures
15622           - Fixed attributes
15623           - Added ResetBindings()
15624         * ListBindingConverter.cs: Implemented some methods
15625         * ButtonBase.cs: Added missing ButtonBaseAccessibleObject class
15626         * ImageList.cs: Implemented basic handle scheme, removed TODOs
15627         * ContainerControl.cs: Fixed signature, now subscribing to the
15628           ControlRemoved event instead of overriding the handler, LAMESPEC
15629         * CurrencyManager.cs: Added missing attribute
15630         * MonthCalendar.cs: Added missing properties
15632 2005-06-06  Jordi Mas i Hernandez <jordi@ximian.com>
15634         * DataGridColumnStyle.cs: fixes for DataGridColumnStyle
15635         
15636 2005-06-06  Gaurav Vaish and Ankit Jain
15638         * DataSourceHelper.cs: Gaurav Vaish and Ankit Jain patch for databinding
15639         * DataGrid.cs: Gaurav Vaish and Ankit Jain patch for databinding
15640         
15641 2005-06-06  Jordi Mas i Hernandez <jordi@ximian.com>
15643         * Control.cs: fixes CreateParams Width / Height.
15645 2005-06-05  Peter Bartok  <pbartok@novell.com>
15647         * Win32DnD.cs: Removed compilation warnings
15649 2005-06-05  Peter Bartok  <pbartok@novell.com>
15651         * Control.cs (CreateParams): Since we don't know if one of the
15652           properties we use is overridden, lets make sure if we fail accessing
15653           we continue with a backup plan
15655 2005-06-05  Peter Bartok  <pbartok@novell.com>
15657         * Win32DnD.cs:
15658           - Removed debug output
15659           - Added MarshalAs attribute to ensure proper marshalling of FORMATETC
15660             struct
15661           - Plugged resource leak
15662         * XplatUIStructs.cs: Changed ClipboardFormats size to ushort, to match
15663           MS size
15665 2005-06-05  Peter Bartok  <pbartok@novell.com>
15667         * XplatUIWin32.cs: Removed DnD code
15668         * Win32DnD.cs: Implemented drop source and drop target functionality
15670 2005-06-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
15672         * UpDownBase.cs: remove duplicate addition of event, enable some code
15673         that was commented out.
15674         * NumericUpDown.cs: added missing attributes and Hexadecimal property.
15675         Validate input when a key is pressed. It works fine now for every
15676         combination of Hexadecimal. Only missing some drawing love when sharing
15677         space with other controls.
15679 2005-06-04  Peter Bartok  <pbartok@novell.com>
15681         * Control.cs:
15682           - We need to pass a window for DragDrop, so enable callback events
15683           - Added DnD callback events when being a DragSource
15684         * XplatUI.cs (StartDrag): Added window handle argument
15685         * XplatUIDriver.cs (StartDrag): Added window handle argument
15686         * QueryContinueDragEventArgs: Made fields internally accessible so
15687           drivers can set them
15688         * GiveFeedbackEventArgs: Made fields internally accessible so drivers
15689           can set them
15691 2005-06-03  Jordi Mas i Hernandez <jordi@ximian.com>
15693         * DataGridTextBoxColumn.cs: column text editing
15694         * DataGridTableStyle.cs: Respect columns styles created by the user
15695         * DataGridDrawingLogic.cs: lots of drawing fixes and enhanments
15696         * DataGridBoolColumn.cs: bool column editing
15697         * DataGrid.cs: fixes to scrolling, properties, etc
15698         * DataGridTextBox.cs: handle keyboard
15699         * DataGridColumnStyle.cs: fixes
15701 2005-06-02  Jackson Harper  <jackson@ximian.com>
15703         * ImageListStreamer.cs: Somewhat broken implementation of
15704         GetObjectData. The RLE needs some work to match MS properly.
15706 2005-06-02  Jackson Harper  <jackson@ximian.com>
15708         * X11Dnd.cs: Attempting to keep at least one file in MWF
15709         monostyled.
15711 2005-06-02  Peter Bartok  <pbartok@novell.com>
15713         * X11DnD.cs: Use Marshal.SizeOf instead of sizeof, no /unsafe required
15714           that way
15716 2005-06-02  Peter Bartok  <pbartok@novell.com>
15718         * Control.cs: Removed MonoTODO from DoDragDrop and added call to Xplat
15719         * XplatUI.cs: Added DoDragDrop() method
15720         * XplatUIDriver.cs: Added DoDragDrop() method
15722 2005-06-02  Jackson Harper  <jackson@ximian.com>
15724         * Splitter.cs: Implement BorderStyle.
15726 2005-06-02  Jackson Harper  <jackson@ximian.com>
15728         * XplatUIX11.cs: Tie into the X11Dnd subsystem.
15729         * X11Dnd.cs: New file. A subsystem that handles drag and drop on
15730         X11 using XDND.
15732 2005-06-02  Peter Bartok  <pbartok@novell.com>
15734         * DataObject.cs:
15735           - Added Data setter
15736           - Fixed broken insertion code for SetData, now also
15737             overwrites any existing entry of the same format name
15738         * Hwnd.cs: Added list of pointers that automatically gets
15739           freed when the window is disposed
15740         * XplatUI.cs: Call driver initialization method when loading
15741           a driver
15742         * Control.cs:
15743           - OnDragLeave takes EventArgs, not DragEventArgs
15744           - Added setting of WS_EX_ACCEPTFILES style when dropping is
15745             supported
15746           - Forces style update when drop state changes
15747         * XplatUIWin32.cs: Implemented Drag'n'Drop (as good as possible,
15748           not perfect since we cannot (yet) call the IDataObject.GetData()
15749           method, we keep getting 0x80004005 error, dunno why)
15751 2005-06-02  Peter Bartok  <pbartok@novell.com>
15753         * DragEventArgs.cs: Make fields internal so we can cache the
15754           object and re-set the fields from XplatUI
15756 2005-06-02  Jackson Harper  <jackson@ximian.com>
15758         * Control.cs: Add some internal methods so the DnD subsystem can
15759         raise DnD events. Also call into the driver when AllowDrop is set.
15760         * XplatUI.cs:
15761         * XplatUIDriver.cs: New method for setting whether or not a window
15762         is allowed to accept drag and drop messages.
15763                 
15764 2005-06-01  Jordi Mas i Hernandez <jordi@ximian.com>
15765         
15766         * ScrollBar.cs: Make sure that values sent in Scroll events
15767         are always between Maximum and Minimum.
15769 2005-06-01  Marek Safar  <marek.safar@seznam.cz>
15771         * Menu.cs: Call MenuChanged when menuitem visibility has been
15772         changed.
15773         * MenuItem.cs: Rebuild menu when item is (not) visible.
15774         * MainMenu.cs: MainMenu has special MenuChanged.
15775         * Theme.cs: Caption and FrameBorderSize are not fixed.
15776         * XplatUI.cs: Added CaptionHeight,FrameBorderSize.
15777         * XplatUIDriver.cs: Introduced Caption and FrameBorderSize.
15778         * XplatUIX11.cs,
15779         * XplatUIOSX: Caption and FrameBorderSize not implemented yet.
15780         * XplatUIWin32.cs: Get Caption and FrameBorderSize from system.
15782 2005-05-30  Jackson Harper  <jackson@ximian.com>
15784         * DataFormat.cs: We can't statically initialize this stuff because
15785         it calls into the xplatui and could create a loop. So we lazy init
15786         it.
15788 2005-05-28  Jackson Harper  <jackson@ximian.com>
15790         * Control.cs: Proper implementation of Product(Name/Version).
15792 2005-05-27  Jackson Harper  <jackson@ximian.com>
15794         * DataObject.cs: Dont crash if no data is found.
15796 2005-05-26  Rafael Teixeira  <rafaelteixeirabr@hotmail.com>
15797         * MdiClient.cs: Add missing Localizable attribute to BackgroundImage property
15798                 as per status page, guessing it should be set to true
15800 2005-05-26  Jordi Mas i Hernandez <jordi@ximian.com>
15802         * DataGridTextBoxColumn.cs: Draws text and basic text formatting
15803         * DataGridTableStyle.cs: set proper formatting text, def header text
15804         * ThemeWin32Classic.cs: new themable paramaters
15805         * DataGridBoolColumn.cs: paint check box, get data, fixes
15806         * DataGridDrawingLogic.cs: huge improvements in painting, fixes, new methods
15807         * DataGrid.cs: fixes properties, implements vertical and horizontal scrolling
15808         * DataGridColumnStyle.cs: fixes
15809         * Theme.cs: new themable paramaters
15810                 
15811 2005-05-26  Peter Bartok  <pbartok@novell.com>
15813         * ContainerControl.cs: Pass AdjustFormScrollbars() call on to base
15815 2005-05-24 Jonathan S. Chambers <jonathan.chambers@ansys.com>
15816         * Control.cs: Fixed LowOrder and HighOrder to preserve sign.
15818 2005-05-24  Peter Bartok  <pbartok@novell.com>
15820         * OpenFileDialog.cs, Form.cs, Menu.cs, GroupBox.cs, UserControl.cs,
15821           Label.cs, DataGridTextBoxColumn.cs, PropertyGrid.cs, ErrorProvider.cs
15822           Splitter.cs, Control.cs, FontDialog.cs, TabPage.cs,
15823           FolderBrowserDialog.cs, HelpProvider.cs, DataGridTableStyle.cs,
15824           NotifyIcon.cs, FileDialog.cs, ListView.cs, SaveFileDialog.cs,
15825           ToolBarButton.cs, ImageList.cs, DataGridBoolColumn.cs, Panel.cs,
15826           DataGrid.cs, DataGridTextBox.cs, ListBox.cs, TrackBar.cs,
15827           AxHost.cs, TabControl.cs, ScrollableControl.cs, ToolBar.cs,
15828           DataGridColumnStyle.cs, PictureBox.cs, DateTimePicker.cs,
15829           StatusBar.cs, MonthCalendar.cs, TreeView.cs: Added
15830           missing attributes, etc
15831         * DataGridPreferredColumnWidthTypeConverter.cs: Added
15833 2005-05-24  Peter Bartok  <pbartok@novell.com>
15835         * Help.cs: Added, implemented trivial functions, throws up MessageBox
15836           when user tries to get help
15837         * DataObject.cs, DataFormats.cs, LinkArea.cs,
15838           SelectionRangeConverter.cs, Clipboard.cs : Removed unused variables
15839           to suppress warnings
15840         * XplatUIWin32.cs, XplatUIOSX.cs, XplatUIX11.cs: Removed unused code to
15841           avoid unreachable code warning
15843 2005-05-20  Peter Bartok  <pbartok@novell.com>
15845         * CursorConverter.cs (ConvertTo): Switched to use Cursor.GetObjectData
15847 2005-05-20  Jordi Mas i Hernandez <jordi@ximian.com>
15849         * DataGridTextBoxColumn.cs: Basic painting methods
15850         * DataGridTableStyle.cs: Set table style in the column
15851         * ThemeWin32Classic.cs: Use Theme for colors
15852         * DataGridDrawingLogic.cs: Implement more drawing
15853         * DataGrid.cs: drawing, theming, enhacements, fixes
15854         * DataGridColumnStyle.cs: fixes, drawing
15855         * Theme.cs: theming for Datagrid
15857 2005-05-20  Peter Bartok  <pbartok@novell.com>
15859         * Cursor.cs: Implemented GetObjectData() method
15861 2005-05-20  Peter Bartok  <pbartok@novell.com>
15863         * Cursors.cs: Added setting of cursor name
15864         * Cursor.cs:
15865           - Implemented constructors
15866           - Implemented Draw and DrawStretched
15867           - Implemented Current property
15868           - Implemented == and != operators
15869           - Implemented Dispose()
15870           - Implemented ToString
15871           - Added missing attributes
15872         * XplatUIX11.cs:
15873           - Added missing reset for OverrideCursor when DoEvents is called
15874           - Fixed creation of cursor, logic was wrong
15875         * XplatUIWin32.cs:
15876           - Added missing reset for OverrideCursor when DoEvents is called
15877           - Fixed creation of cursor, bit arrays were swapped
15878         * Clipboard.cs: Removed obsolete MonoTODO attribute
15880 2005-05-20  Jordi Mas i Hernandez <jordi@ximian.com>
15882         * ComboBox.cs: fixes OnSelectedItemChanged
15883         * ControlBindingsCollection.cs: fixes item range check
15885 2005-05-20  Jordi Mas i Hernandez <jordi@ximian.com>
15887         * UpDownBase.cs:
15888                 - Calc preferred height properly
15889                 - Implement missing properties
15890                 
15891         * NumericUpDown.cs: Implement missing events
15893 2005-05-19  Jackson Harper  <jackson@ximian.com>
15895         * TabControl.cs: New method that resizes the tab pages before
15896         redrawing them. This as needed as the control is double buffered
15897         and sizing will not be recalculated unless ResizeTabPages is
15898         called.
15899         * TabPage.cs: Set base.Text instead of Text in the constructor so
15900         that UpdateOwner does not get called. Use the new Redraw method of
15901         TabControl instead of Refresh so the sizing is recalculated.
15902         * ThemeWin32Classic.cs: Draw the text for button tabs.
15904 2005-05-19  Jackson Harper  <jackson@ximian.com>
15906         * Control.cs: Paint control background images. Fix typo where
15907         PaintControlBackground was not getting called correctly.
15909 2005-05-19  Peter Bartok  <pbartok@novell.com>
15911         * ScrollableControl.cs (DisplayRectangle): Undid my last change until
15912           I can investigate, apparently I broke FileDialog
15914 2005-05-19  Marek Safar  <marek.safar@seznam.cz>
15916         * AxHost.cs: Some simple properties.
15917         * Control.cs: window must be accessible after ctor.
15918         * Form.cs: Added TransparencyKey property.
15919         * TextBoxBase.cs: Implemented Clear. Text property can be null.
15920         * XplatUIWin32.cs: SetBorderStyle implemented.
15922 2005-05-18  Peter Bartok  <pbartok@novell.com>
15924         * DataObject.cs: Entries are not global but particular to the
15925           DataObject, now it behaves that way
15926         * XplatUIWin32.cs: Implemented Clipboard methods
15927         * Clipboard.cs: Implemented
15928         * ScrollableControl.cs (DisplayRectangle): Fixed calculation
15929         * XplatUIOSX.cs: Updated to final clipboard prototypes
15930         * XplatUIX11.cs: Implemented Clipboard methods
15931         * XplatUIDriver.cs: Updated to final clipboard prototypes
15932         * XplatUIStructs.cs:
15933           - Added BITMAPINFOHEADER struct
15934           - Added ClipboardFormats enum
15935         * X11Structs.cs:
15936           - Added ClipboardStruct
15937           - Added Atom enum items for clipboard types
15938           - Fixed atom types for Selection event structures
15939         * DataFormats.cs:
15940           - Added internal properties and methods for drivers to enumerate
15941             all known formats
15942           - Switched initialization method to allow drivers to assign their
15943             own IDs even for the MS predefined clipboard IDs
15944         * XplatUI.cs: Updated to final clipboard interface
15946 2005-05-18 Jonathan S. Chambers <jonathan.chambers@ansys.com>
15947         * PropertyGridView.cs: Fixed compiler warnings.
15949 2005-05-18 Jonathan S. Chambers <jonathan.chambers@ansys.com>
15950         * PropertyGrid.cs: Added some event calls
15951         * PropertyGridView.cs: Change drawing code to use double buffering
15952         * PropertyGridTextBox.cs: Changed Text property name
15953         * GridItem.cs: Added Bounds property.
15954         * GridEntry.cs: Added Bounds property.
15956 2005-05-17  Lluis Sanchez Gual  <lluis@novell.com>
15958         * Binding.cs: Use IsInstanceOfType instead of IsAssignableFrom
15959         since GetType() may not return the correct type if the object is
15960         a remoting proxy.
15962 2005-05-17  Jordi Mas i Hernandez <jordi@ximian.com>
15964         * TreeNodeCollection.cs: fixes get/set item ranges
15965         
15966 2005-05-15  Jordi Mas i Hernandez <jordi@ximian.com>
15968         * ListBox.cs: Kazuki Oikawa's PreferredHeight and ItemHeight fixes
15969                 
15970 2005-05-15  Jordi Mas i Hernandez <jordi@ximian.com>
15972         * ComboBox.cs: Fix item range comparation
15973         * ListView.cs: Fix item range comparation
15975 2005-05-03  Alexander Olk  <xenomorph2@onlinehome.de>
15977         * FontDialog.cs:
15978           - Clear example panel when OnPaint is called
15979           - Better solution for displaying the example panel text
15980           - Select default indexes in the ListBoxes
15982 2005-05-11  Geoff Norton  <gnorton@customerdna.com>
15984         * XplatUIOSX.cs: Avoid painting into invisible views.  Fixes #74926
15986 2005-05-11  Peter Bartok  <pbartok@novell.com>
15988         * LinkArea.cs: Added and implemented LinkAreaTypeConverter class
15989         * SelectionRangeConverter.cs: Implemented
15990         * PropertyGrid.cs: Fixed attribute value
15991         * Control.cs:
15992           - Invoke(): Don't call Begin/EndInvoke if it is not neccessary
15993           - Added Sebastien Pouliot's CAS Stack Propagation fixes
15994         * XplatUIDriver.cs: Added new XplatUIDriverSupport class, for code
15995           that's common to all drivers. First methods to go there are
15996           Sebastien Pouliot's CAS Stack Propagation helper methods
15997         * XplatUIWin32.cs, XplatUIX11.cs, AsyncMethodData.cs: Fixes by
15998           Sebastien Pouliot for CAS Stack Propagation
16000 2005-05-11  Geoff Norton  <gnorton@customerdna.com>
16002         * OSXStructs.cs:
16003           XplatUIOSX.cs: More cosmetic cleanup courtesy of Artyom Tyazhelov (Artyom.Tyazhelov@helmes.ee)
16005 2005-05-12  Jordi Mas i Hernandez <jordi@ximian.com>
16007         * DataGridTextBoxColumn.cs: fixed some members
16008         * GridColumnStylesCollection.cs: indexed column is case insensitive
16009         * DataGridTableStyle.cs: fixes
16010         * ThemeWin32Classic.cs: add new theme parameter
16011         * Theme.cs: add new theme parameter
16012         * DataGridDrawingLogic.cs: Datagrid's drawing logic
16013         * DataGrid.cs: fixes, new internal properties, etc.
16014         * DataGridColumnStyle.cs: allows to set grid value
16015         *
16017 2005-05-10  Peter Bartok  <pbartok@novell.com>
16019         * AccessibleObject.cs:
16020           - Removed MonoTODO attribute on help, method is correct
16021           - Fixed Bounds property
16022         * AxHost.cs: Moved MonoTODO
16023         * ButtonBase.cs: Now setting AccessibleObject properties
16024         * RadioButton.cs: Setting proper AccessibleObject role
16025         * CheckBox.cs: Setting proper AccessibleObject role
16026         * ControlBindingsCollection.cs: Added properties, methods and attributes
16027         * DataFormats.cs: Fixed awkward internal API, and changed to enable
16028           userdefined DataFormats.Format items as well
16029         * ListControl.cs: Removed data_member from the public eye
16030         * OpenFileDialog.cs:
16031           - Made class sealed
16032           - Added missing attributes
16033         * SaveFileDialog.cs: Added missing attributes
16034         * ImageListStreamer.cs: Fixed code that caused warnings
16035         * LinkLabel.cs: Removed unreachable code
16036         * TreeView.cs: Fixed code that caused warnings
16037         * PropertyGridView.cs: Fixed code that caused warnings
16038         * GridColumnStylesCollection.cs: Added missing attributes
16039         * GridTableStylesCollection: Added missing attribute
16040         * PropertyManager: Added .ctor
16041         * SecurityIDType: Added
16042         * DataObject.cs: Implemented class
16043         * LinkArea.cs: Added missing attribute
16045 2005-05-11  Jordi Mas i Hernandez <jordi@ximian.com>
16047         * RadioButton.cs: call base method to allow to fire OnClick event
16048         * UpDownBase.cs: OnMouseUp call base method
16049         * CheckedListBox.cs: call base method before returning
16050         * TrackBar.cs: call base method before returning
16051         
16053 2005-05-10  Peter Bartok  <pbartok@novell.com>
16055         * XplatUIX11.cs: Fix for #74902, check pending timers when peeking
16056           for messages
16058 2005-05-10  Peter Bartok  <pbartok@novell.com>
16060         * DataFormats.cs: Implemented
16061         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs,
16062           XplatUIX11.cs: Added Clipboard APIs
16063         * XplatUIWin32.cs: Implemented Clipboard APIs
16064         * FolderBrowserDialog.cs: Added missing event, attributes
16066 2005-05-10  Jordi Mas i Hernandez <jordi@ximian.com>
16068         * CheckBox.cs: call base method to allow to fire OnClick event
16070 2005-05-09  Sebastien Pouliot  <sebastien@ximian.com>
16072         * XplatUI.cs: Use PlatformID.Unix under NET_2_0.
16074 2005-05-06  Peter Bartok  <pbartok@novell.com>
16076         * XplatUIX11.cs: Redid Jackson's fix, it was causing a busy loop
16077         * Screen.cs: Implemented
16078         * HelpNavigator.cs: Added
16079         * XplatUIWin32.cs: Added SystemParametersInfo call, fixed WorkArea
16080           property
16081         * HelpProvider.cs: Implemented all we can do until we have a CHM
16082           help library (which means that "What's This" does work now)
16084 2005-05-06  Jackson Harper  <jackson@ximian.com>
16086         * XplatUIX11.cs: Fix waking up the main loop.
16087                 
16088 2005-05-05  Peter Bartok  <pbartok@novell.com>
16090         * XplatUI.cs: Updated revision
16091         * Form.cs: Removed enless loop
16092         * GroupBox.cs (OnPaint): Added call to base.OnPaint()
16093         * Label.cs (OnPaint): Added call to base.OnPaint()
16094         * ToolTip.cs: Made ToolTipWindow reusable for other controls
16095         * LinkLabel.cs (OnPaint): Added call to base.OnPaint()
16096         * UpDownBase.cs (OnPaint): Moved base.OnPaint() call to end of method
16097         * AxHost.cs: Added
16098         * ButtonBase.cs: Moved base.OnPaint() call to end of method
16099         * ThemeWin32Classic.cs: Replaced references to ToolTip with references
16100           to ToolTip.ToolTipWindow for drawing and size methods; this allows
16101           reuse of ToolTipWindow by other controls
16102         * SizeGrip.cs: Moved base.OnPaint() call to end of method
16103         * XplatUIX11.cs: Now clipping drawing area (experimental)
16104         * PictureBox.cs: Moved base.OnPaint() call to end of method
16105         * Theme.cs: Fixed ToolTip abstracts to match new format
16106         * ErrorProvider.cs: Implemented
16108 2005-05-05  Jordi Mas i Hernandez <jordi@ximian.com>
16110         * Label.cs: fire events using OnAutoSizeChanged and OnTextAlignChanged
16111         * LinkLabel.cs:
16112                 - Adds cursors
16113                 - Handles focus
16114                 - Implements LinkBehavior
16115                 - Fixes many issues
16117 2005-05-03  Jackson Harper  <jackson@ximian.com>
16119         * ListView.cs: Calculate the scrollbar positioning on resize and
16120         paint, so they get put in the correct place.
16122 2005-05-03  Alexander Olk  <xenomorph2@onlinehome.de>
16124         * ColorDialogs.cs: The small color panels are now handled by
16125           SmallColorControl. This fixes drawing of the focus rectangle
16126           and adds a 3D border.
16128 2005-05-03  Peter Bartok  <pbartok@novell.com>
16130         * Control.cs: Modified version of Jonathan Chamber's fix for
16131           double-buffering
16133 2005-05-03  Jackson Harper  <jackson@ximian.com>
16135         * ListView.cs: Remove redraw variable. Control now handles whether
16136         or not a redraw needs to be done, and will only raise the paint
16137         event if redrawing is needed.
16139 2005-05-03  Jackson Harper  <jackson@ximian.com>
16141         * Splitter.cs: No decorations for the splitter form. Cache the
16142         hatch brush.
16144 2005-05-03  Jackson Harper  <jackson@ximian.com>
16146         * TreeView.cs: Use dashed lines to connect nodes. Use the
16147         ControlPaint method for drawing the focus rect instead of doing
16148         that in treeview.
16150 2005-05-02  Peter Bartok  <pbartok@novell.com>
16152         * LinkLabel.cs: Fixed the fixes from r43566 and 43521
16154 2005-04-29  Jackson Harper  <jackson@ximian.com>
16156         * ThemeWin32Classic.cs: Don't clear the GC that will clear the
16157         entire image buffer. Just clear the clipping rectangle.
16159 2005-04-29  Jackson Harper  <jackson@ximian.com>
16161         * ThemeWin32Classic.cs: Don't draw list view items that are
16162         outside the clipping rectangle.
16164 2005-04-29  Jordi Mas i Hernandez <jordi@ximian.com>
16166         * ListBox.cs: added horizontal item scroll
16168 2005-04-29  Jackson Harper  <jackson@ximian.com>
16170         * ThemeWin32Classic.cs: Remove some old debug code that was
16171         causing flicker with the new double buffering code.
16173 2005-04-29  John BouAntoun  <jba-mono@optusnet.com.au>
16175         * MonthCalendar.cs, DateTimePicker.cs: Made monthcalendar dropdwon
16176         behave like combobox and comboboxlist (still not sure if this is
16177         correct though).
16179 2005-04-28  Jackson Harper  <jackson@ximian.com>
16181         * ThemeWin32Classic.cs: Don't fill the middle of progress
16182         bars. This fills areas outside of the clip bounds that don't need
16183         to be filled.
16185 2005-04-28  Jackson Harper  <jackson@ximian.com>
16187         * Control.cs: Don't expose functionality to touch the image buffers.
16188         * ProgressBar.cs:
16189         * ListView.cs: We do not need to (and no longer can) manipulate
16190         the image buffers directly. All of this is handled by Control.
16192 2005-04-28  Peter Bartok  <pbartok@novell.com>
16194         * RichTextBoxSelectionAttribute.cs, RichTextBoxSelectionTypes.cs,
16195           RichTextBoxScrollBars.cs, RichTextBoxStreamType.cs,
16196           RichTextBoxFinds.cs, RichTextBoxWordPunctuations.cs: Added
16198 2005-04-28  Jordi Mas i Hernandez <jordi@ximian.com>
16200         * Combobox:
16201                 - Adjust control's height for non-simple comboboxes (bug fix)
16202                 - Remove dead code
16203         * MenuAPI.cs: remove unused var
16204         * ScrollBar.cs: remove unsed var
16205                  
16206         * ListBox.cs: unselect items when clearing
16208 2005-04-28  Jordi Mas i Hernandez <jordi@ximian.com>
16210         * ListControl.cs: honors OnPositionChanged and default Selected Item
16211         * ListBox.cs: unselect items when clearing
16213 2005-04-27  Jackson Harper  <jackson@ximian.com>
16215         * X11Keyboard.cs: Initialize a default keyboard and give a warning
16216         if a "correct" keyboard is not found. This will make us not crash,
16217         but might give some users bad keyboard layouts...seems to be the
16218         same thing rewind does.
16220 2005-04-27  Jackson Harper  <jackson@ximian.com>
16222         * BindingManagerBase.cs: Attach the current/position changed
16223         handlers to their respective events.
16225 2005-04-27  Jackson Harper  <jackson@ximian.com>
16227         * Control.cs: Make sure that the first WM_PAINT does a full draw,
16228         not just a blit.
16229         * ThemeWin32Classic.cs: Don't fill the background for picture
16230         boxes. This could overright user drawing.
16231         * ComboBox.cs: Just fill the clipping rect not the entire client
16232         rect when drawing the background. This prevents pieces of the
16233         image buffer from getting overwritten and is theoretically faster.
16235 2005-04-26  Jordi Mas i Hernandez <jordi@ximian.com>
16237         * ComboBox.cs: Databinding support fixes, fire missing events
16238         * ListControl.cs: implement missing methods and properties, fixes
16239         * ThemeWin32Classic.cs: Databiding support on Drawing
16240         * CheckedListBox.cs: Databinding support fixes, fire missing events
16241         * ListBox.cs: Databinding support fixes, fire missing events
16242         
16243 2005-04-25  Peter Bartok  <pbartok@novell.com>
16245         * LinkLabel.cs: Length of LinkArea is not allowed to be negative
16247 2005-04-25  Jackson Harper  <jackson@ximian.com>
16249         * TreeView.cs: Use the horizontal scrollbars height not width when
16250         determining how much of the client area is available.
16252 2005-04-25  Jackson Harper  <jackson@ximian.com>
16254         * Control.cs: Double buffering is handled differently now. As per
16255         the spec, the extra buffer is created in the WM_PAINT message and
16256         passed down to the control's drawing code.
16257         * GroupBox.cs:
16258         * Label.cs:
16259         * CheckBox.cs:
16260         * ProgressBar.cs:
16261         * RadioButton.cs:
16262         * ColorDialog.cs:
16263         * ComboBox.cs:
16264         * PropertyGridView.cs:
16265         * UpDownBase.cs:
16266         * MessageBox.cs:
16267         * MenuAPI.cs:
16268         * ListView.cs:
16269         * ButtonBase.cs:
16270         * SizeGrip.cs:
16271         * ScrollBar.cs:
16272         * ListBox.cs:
16273         * TrackBar.cs:
16274         * ToolBar.cs:
16275         * PictureBox.cs:
16276         * DateTimePicker.cs:
16277         * StatusBar.cs:
16278         * TreeView.cs: Update to new double buffering system.
16279         * MonthCalendar.cs: Uncomment block, as Capture is now
16280         working. Update to new double buffering
16281         * LinkLabel.cs: Lazy init the link collection. Update to new double buffering
16282         * PaintEventArgs.cs: New internal method allows us to set the
16283         graphics object. This is used for double buffering.
16284         * ThemeWin32Classic.cs: Give the picture box drawing code a clip
16285         rectangle. The internal paint_area var has been removed from
16286         StatusBar. The clipping rect should be used instead.
16287         * Theme.cs: Give the PictureBox drawing method a clipping rect.
16288         * TabPage.cs: The RefreshTabs method was removed, so just call the
16289         tab controls Refresh method now.
16290         * TabControl.cs: Update to new double buffering. Make sure the
16291         handle is created before sizing the tab pages, otherwise we will
16292         get stuck in a loop.
16294 2005-04-24  Borja Sanchez Zamorano <borsanza@gmail.com>
16296         * LinkLabel.cs: Fix typo, bug #74719; patch
16297           from Borja Sanchez Zamorano
16299 2005-04-22  Jackson Harper  <jackson@ximian.com>
16301         * TreeNode.cs: Implement Handle stuff.
16302         * TreeView.cs: Utility methods so nodes can get/lookup by handle.
16304 2005-04-22  Jordi Mas i Hernandez <jordi@ximian.com>
16306         * DataGridTextBoxColumn.cs: call base constructors, fixes
16307         * GridColumnStylesCollection.cs: missing events, methods, and functionality
16308         * GridTableStylesCollection.cs: fixes, check duplicate mapping names
16309         * DataGridTableStyle.cs: implements create default column styles
16310         * DataGridBoolColumn.cs: which types can handle
16311         * DataGrid.cs: missing methods, fixes, new functionality
16312         * DataGridColumnStyle.cs: fixes
16314 2005-04-20  Alexander Olk  <xenomorph2@onlinehome.de>
16315         * FolderBrowserDialog.cs:
16316         - Use a thread to fill the TreeView
16317         - Adjusted some sizes
16319 2005-04-19  Peter Bartok  <pbartok@novell.com>
16321         * LinkLabel.cs: (Re-)create the pieces when setting the Text
16322           property. Fixes #74360.
16324 2005-04-19  Jackson Harper  <jackson@ximian.com>
16326         * XEventQueue.cs: Lock when getting the lockqueue size.
16327         * PictureBox.cs: Call base OnPaint
16328         
16329 2005-04-19  Peter Bartok  <pbartok@novell.com>
16331         * XplatUIX11.cs: Fixed bug introduced with the HWND rewrite, Async
16332           messages were no longer being processed (this broke BeginInvoke)
16334           
16335 2005-04-18  Jackson Harper  <jackson@ximian.com>
16337         * TreeView.cs: buglet that caused node images to get drawn
16338         regardless of whether or not they were in the clipping rectangle.
16340 2005-04-18  Jackson Harper  <jackson@ximian.com>
16342         * CurrencyManager.cs: There are four rules for GetItemProperties:
16343         - If the type is an array use the element type of the array
16344         - If the type is a typed list, use the type
16345         - If the list contains an Item property that is not an object, use
16346         that property
16347         - use the first element of the list if there are any elements in
16348         the list.
16349         
16350 2005-04-17  Jackson Harper  <jackson@ximian.oom>
16352         * TreeView.cs: Calculate plus minus and checkbox bounds when there is a
16353         click. This handles offsets for scrolling properly and reduces
16354         memory. Also fixed GetNode to not offset now that TopNode works
16355         properly.
16356         * TreeNode.cs: No longer need to track the plus minus or checkbox bounds.
16357         
16358 2005-04-17  Jackson Harper  <jackson@ximian.com>
16360         * CursorConverter.cs: Initial implementation.
16362 2005-04-15  Jordi Mas i Hernandez <jordi@ximian.com>
16364         * ListControl.cs: work towards complex data binding support on ListControl
16365         * CurrencyManager.cs: work towards complex data binding support on ListControl
16366         * ListBox.cs: work towards complex data binding support on ListControl
16369 2005-04-15  Jordi Mas i Hernandez <jordi@ximian.com>
16371         * GridTableStylesCollection.cs: fixes name and constructor
16372         * DataGridTableStyle.cs: fixes
16373         * DataGridBoolColumn.cs: fixes names and constructors
16374         * DataGrid.cs: define methods and properties. Some init implementations
16375         * DataGridCell.cs: define methods and properties. Some init implementations
16376         * GridTablesFactory.cs: Define methods and properties
16378 2005-04-15  Geoff Norton  <gnorton@customerdna.com>
16380         * XplatUIOSX.cs:  Handle proper mouse tracking even if the current
16381         graphics port changes.  We still want the coordinates in global screen
16382         coordinates.
16384 2005-04-14  Jackson Harper  <jackson@ximian.com>
16386         * TreeView.cs: Handle clicks when plus minus is disabled. Don't
16387         check plus minus or checkbox clicks unless those features are enabled.
16389 2005-04-14  Jackson Harper  <jackson@ximian.com>
16391         * TreeView.cs: Add methods for setting the top and bottom visible
16392         nodes. TreeNode::EnsureVisible uses these methods.
16393         * TreeNode.cs: Implement EnsureVisible
16395 2005-04-13  Jordi Mas i Hernandez <jordi@ximian.com>
16397         * Form.cs: Pospone menu assignation if the window has not been created yet
16398         * XplatUIWin32.cs: Fixes Win32SetWindowPos, then does not change window
16399         size and position
16401 2005-04-12  Jackson Harper  <jackson@ximian.com>
16403         * TreeView.cs: Set the TopNode properly when scrolling
16404         occurs. This has the added benifit of reducing the amount of
16405         walking that needs to be done when drawing. Also removed an old
16406         misleading TODO.
16407         * OpenTreeNodeEnumerator.cs: Fix moving backwards.
16408         
16409 2005-04-11  Jordi Mas i Hernandez <jordi@ximian.com>
16411         * Timer.cs: fixes interval setting when the timer is already enabled
16412         
16413 2005-04-10  Alexander Olk  <xenomorph2@onlinehome.de>
16415         * FolderBrowserDialog.cs: First approach
16417 2005-04-09  Peter Bartok  <pbartok@novell.com>
16419         * FolderBrowserDialog: Added
16421 2005-04-07  Jordi Mas i Hernandez <jordi@ximian.com>
16423         * LinkLabel.cs: move drawing code into the theme
16424         * ThemeWin32Classic.cs: drawing code and painting background bugfix
16425         * Theme.cs: define DrawLinkLabel method
16427 2005-04-05  Jackson Harper  <jackson@ximian.com>
16429         * BindingContext.cs: Use weak references so these bad actors don't
16430         stay alive longer then they need to.
16432 2005-04-05  Jackson Harper  <jackson@ximian.com>
16434         * ListControl.cs: Basic implementation of complex databinding.
16435         * ComboBox.cs:
16436         * ListBox.cs: Add calls to ListControl databinding methods.
16438 2005-04-05  Alexander Olk  <xenomorph2@onlinehome.de>
16440         * FileDialog.cs:
16441           - Don't change PopupButtonState to Normal when the
16442             PopupButton gets pressed several times.
16443           - Renamed ButtonPanel to PopupButtonPanel
16445 2005-04-05  Jordi Mas i Hernandez <jordi@ximian.com>
16447         * ColorDialog.cs: Use cached objects instead of creating them
16448         * LinkLabel.cs: Use cached objects instead of creating them
16449         * Splitter.cs: Use cached objects instead of creating them
16450         * FontDialog.cs: Use cached objects instead of creating them
16451         * PropertyGridView.cs: Use cached objects instead of creating them
16452         * MessageBox.cs: Use cached objects instead of creating them
16453         * FileDialog.cs: Use cached objects instead of creating them
16454         * ThemeWin32Classic.cs: Use cached objects instead of creating them
16455         * TreeView.cs: Use cached objects instead of creating them
16456         
16457 2005-04-04  Jordi Mas i Hernandez <jordi@ximian.com>
16459         * Control.cs: use Equals to compare the font since no == op
16460         * ScrollBar.cs: use Equals to compare the font since no == op
16462 2005-04-04  Alexander Olk  <xenomorph2@onlinehome.de>
16464         * SaveFileDialog.cs: Open stream in OpenFile with FileMode Create
16466 2005-04-01  Jackson Harper  <jackson@ximian.com>
16468         * Binding.cs: Implement IsBinding.
16469         * BindingManagerBase.cs:
16470         * PropertyManager.cs:
16471         * CurrencyManager.cs: Add IsSuspended property.
16473 2005-04-01  Jackson Harper  <jackson@ximian.com>
16475         * Binding.cs: Had some IsAssignableFrom calls backwards.
16477 2005-04-01  Jackson Harper  <jackson@ximian.com>
16479         * Binding.cs: Handle null data members when pulling data.
16480         * PropertyManager.cs: Handle the data member being a property that
16481         does not exist.
16483 2005-04-01  Jordi Mas i Hernandez <jordi@ximian.com>
16485         * DataGridTextBoxColumn.cs: fixes signature
16486         * DataGrid.cs: calls right constructor
16488 2005-04-01  Jordi Mas i Hernandez <jordi@ximian.com>
16490         * DataGridTextBoxColumn.cs: implements DataGridTextBoxColumn class
16491         * GridColumnStylesCollection.cs: implements GridColumnStylesCollection
16492         * GridTableStylesCollection.cs: implements GridTableStylesCollection
16493         * DataGridTableStyle.cs: implements DataGridTableStyle
16494         * DataGridBoolColumn.cs: implements DataGridBoolColumn
16495         * DataGridTextBox.cs: implements DataGridTextBox
16496         * DataGridColumnStyle.cs: implements DataGridColumnStyle
16498 2005-03-31  Alexander Olk  <xenomorph2@onlinehome.de>
16500         * FileDialog.cs: Added simple PopupButton class for ButtonPanel
16502 2005-03-29  Peter Bartok  <pbartok@novell.com>
16504         * Application.cs:
16505           - Properly implemented CompanyName property
16506           - Fixed LocalUserAppDataPath and UserAppDataPath, now properly
16507             returns a path that includes CompanyName, ProductName and
16508             Version (fixes bug #70330)
16510 2005-03-29  Stefan Buehler  <sbuehler@gmx.ch>
16512         * TabPage.cs: Don't use Owner.DisplayRectangle unless owner is valid,
16513           fixes bug #72588.
16515 2005-03-28  Alexander Olk  <xenomorph2@onlinehome.de>
16517         * FileDialog.cs, SaveFileDialog.cs OpenFileDialog.cs:
16518         
16519           - Added ReadOnly CheckBox
16520           - Further refactoring: moved some code from Open-/SaveFileDialog
16521             to FileDialog
16523 2005-03-28  Alexander Olk  <xenomorph2@onlinehome.de>
16525         * OpenFileDialog.cs: Fixed CheckFileExists
16526         * FileDialog.cs:
16527           Moved FileView and DirComboBox outside FileDialog class.
16528           They can now be used outside FileDialog
16530 2005-03-27  Alexander Olk  <xenomorph2@onlinehome.de>
16532         * FileDialog.cs: Added a contextmenu to change ShowHiddenFiles
16533         * SaveDialog.cs, OpenFileDialog.cs: Fixes for Reset() method
16535 2005-03-27  Alexander Olk  <xenomorph2@onlinehome.de>
16537         * FileDialog.cs, OpenFileDialog.cs, SaveFileDialog.cs:
16538           - Added missing CreatePrompt property in SaveDialog
16539           - Overall SaveDialog handling should be better now
16540           - Added non standard ShowHiddenFiles property
16541           - Added extension, CreatePrompt and OverwritePrompt support in SaveDialog
16542           - Added InitialDirectory and RestoreDirectory support
16544 2005-03-26  Alexander Olk  <xenomorph2@onlinehome.de>
16546         * FileDialog.cs: Made dirComboBox usable
16548 2005-03-24  Alexander Olk  <xenomorph2@onlinehome.de>
16550         * FileDialog.cs: Added Filter support (case sensitiv)
16552 2005-03-24  Jackson Harper  <jackson@ximian.com>
16554         * TabControl.cs: Need a couple more pixels for the lines.
16556 2005-03-23  Jackson Harper  <jackson@ximian.com>
16558         * TabControl.cs: Give the tab page focus when it is selected.
16560 2005-03-23  Jackson Harper  <jackson@ximian.com>
16562         * TabControl.cs: Account for the drawing of tabs borders when
16563         invalidating. If the slider was clicked dont do click detection on
16564         the tabs.
16566 2005-03-23  Jackson Harper  <jackson@ximian.com>
16568         * TabControl.cs: Fix typo, emilinates an unneeded expose event.
16570 2005-03-22  Jonathan Chambers  <jonathan.chambers@ansys.com>
16572         * CategoryGridEntry.cs: Added
16573         * GridItem.cs: Added helper properties
16574         * PropertyGridTextBox.cs: Custom textbox control for PropertyGrid.
16575         * GridEntry.cs: Updated code for collection
16576         * PropertyGrid.cs: Cleaned up some formatting
16577         * PropertyGridView.cs: Added drop down functionality for enums.
16578         * GridItemCollection.cs: Added enumerator logic
16579         * PropertyGridEntry.cs: Added
16581 2005-03-19  Alexander Olk  <xenomorph2@onlinehome.de>
16583         * FileDialog.cs:
16584           - Removed unnecessary commented code
16585           - Fixed handling for entering the filename manually in the combobox
16587 2005-03-19  Alexander Olk  <xenomorph2@onlinehome.de>
16589         * FileDialog.cs, OpenFileDialog.cs: OpenFileDialog Multiselect now works
16591 2005-03-18  Peter Bartok  <pbartok@novell.com>
16593         * ThemeWin32Classic.cs: Moved listview column headers a bit, to avoid
16594           them being touching the border
16596 2005-03-18  Peter Bartok  <pbartok@novell.com>
16598         * TextControl.cs: Quick hack to center text better
16600 2005-03-18  Peter Bartok  <pbartok@novell.com>
16602         * ControlPaint.cs:
16603           - Don't throw NotImplemented exceptions, just print a notice once
16604             instead (requested by Miguel). This makes running existing SWF
16605             apps a bit easier
16606         * Control.cs:
16607           - Commented out Drag'N'Drop XplatUI call (no driver support yet)
16608           - Added context menu trigger on right click
16609         * Panel.cs: Trigger invalidate on resize
16610         * StatusBar.cs:
16611           - Removed old double-buffer drawing
16612           - Added ResizeRedraw style to force proper update of statusbar
16613         * ListView.cs:
16614           - Removed debug output
16615         * ThemeWin32Classic.cs:
16616           - Fixed drawing of status bar, now draws Text property if there
16617             are no defined panels
16619 2005-03-18  Jackson Harper  <jackson@ximian.com>
16621         * ImageList.cs: When the image stream is set pull all the images
16622         from it.
16623         * ImageListStreamer.cs: Implement reading image list streams.
16625 2005-03-18  Peter Bartok  <pbartok@novell.com>
16627         * ThemeWin32Classic.cs (DrawPictureBox):
16628           - Fixed calculations for centered drawing
16629           - Fixed drawing for normal mode, not scaling the image on normal
16631 2005-03-18  Peter Bartok  <pbartok@novell.com>
16633         * ComboBox.cs: Now also firing the OnKeyPress events for the embedded
16634           textbox
16635         * FileDialog.cs:
16636           - Made Open/Save button the accept button for FileDialog
16637           - Tied the cancel button to the IButtonControl cancel button
16638           - Save/Open now properly builds the pathname
16639           - Now handles user-entered text
16640           - Preventing crash on right-click if no item is selected
16641           - Fixed Text property, now uses contents of textbox
16642           - Fixed SelectedText property, now just returns the text part that
16643             is selected in the text box
16645 2005-03-18  Jackson Harper  <jackson@ximian.com>
16647         * ThemeWin32Classic.cs: Use the proper func for drawing the focus
16648         rect, make sure to de-adjust the interior rect after drawing the
16649         tab text.
16651 2005-03-18  Peter Bartok  <pbartok@novell.com>
16653         * MenuAPI.cs: Remove menu *before* executing selected action to
16654           prevent the menu from 'hanging around'
16655           
16656 2005-03-17  Geoff Norton  <gnorton@customerdna.com>
16658         * XplatUIOSX.cs: Implemented WorkingArea property
16660 2005-03-17  Peter Bartok  <pbartok@novell.com>
16662         * XplatUIX11.cs: Fixed menu coord calculations
16663         * MenuAPI.cs: Now using new ScreenToMenu()/MenuToScreen() methods
16664           for calculating offsets
16666 2005-03-17  Peter Bartok  <pbartok@novell.com>
16668         * Hwnd.cs: Do not consider menu presence for default client
16669           rectangle location/size
16670         * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs, XplatUIOSX.cs,
16671           XplatUIWin32.cs: Added MenuToScreen() and ScreenToMenu() coord
16672           translation functions
16673         * FileDialog.cs: Fixed (what I presume is a) typo
16675 2005-03-17  Jonathan Gilbert  <logic@deltaq.org>
16677         * XplatUIX11.cs: Added call to XInitThreads() to allow multi-threaded
16678           X access (avoids X-Async errors)
16680 2005-03-16  Jackson Harper  <jackson@ximian.com>
16682         * TabControl.cs: Raise the SelectedIndexChanged event.
16684 2005-03-16  Alexander Olk  <xenomorph2@onlinehome.de>
16686         * FileDialog.cs, OpenFileDialog.cs, SaveFileDialog.cs:
16687           - Removed vertical ToolBar and replaced it with a custom panel
16688             (desktop and home button already work)
16689           - Added Help button (some controls get resized or relocated then)
16690           - Draw correct text depending on Open or Save.
16691           - Fixed some typos...
16693 2005-03-16  Jordi Mas i Hernandez <jordi@ximian.com>
16695         * ScrollBar.cs:
16696           - Only change Maximum and Minimum when need it (bug fix)
16698 2005-03-15  Peter Bartok  <pbartok@novell.com>
16700         * Form.cs: Use Handle for icon, to trigger creation if
16701           the window does not yet exist
16702         * Control.cs:
16703           - CanSelect: Slight performance improvement
16704           - Focus(): Preventing possible recursion
16705           - Invalidate(): Removed ControlStyle based clear flag setting
16706           - WM_PAINT: fixed logic for calling OnPaintBackground
16707           - WM_ERASEBKGND: Fixed logic, added call to new driver method
16708             EraseWindowBackground if the control doesn't paint background
16709         * XplatUIWin32.cs:
16710           - Moved EraseWindowBackground() method to internal methods
16711           - Removed unused WM_ERASEBKGND handling in GetMessage; msg never comes;
16712             is sent via SendMessage on BeginPaint call on Win32
16713         * XplatUIX11.cs:
16714           - Added EraseWindowBackground() method
16715           - No longer sends WM_ERASEBKGND on .Expose, but on call to
16716             PaintEventStart, which more closely matches Win32 behaviour
16717           - Fixed Invalidate() call, now updates new ErasePending Hwnd property
16718           - Fixed SetFocus() to properly deal with client and whole windows
16719         * Hwnd.cs: Added ErasePending property
16720         * XplatUIOSX.cs: Stubbed EraseWindowBackground() method
16721         * XplatUI.cs, XplatUIDriver.cs: Added EraseWindowBackground() method
16723 2005-03-12  Geoff Norton  <gnorton@customerdna.com>
16725         * XplatUIOSX.cs:
16726           - Fix hard loop when timers exist.
16727           - Fix bugs with middle and right click for 3 button mice.
16729 2005-03-11  Peter Bartok  <pbartok@novell.com>
16731         * XplatUIX11.cs:
16732           - get_WorkingArea: Need to call X directly, GetWindowPos only
16733             returns cached data now
16734           - Added sanity check to GetWindowPos hwnd usage
16736 2005-03-11  Jackson Harper  <jackson@ximian.com>
16738         * BindingManagerBase.cs: This method isn't used anymore as
16739         PullData now updates the data in the control.
16741 2005-03-11  Jordi Mas i Hernandez <jordi@ximian.com>
16743         * Form.cs: fixes menu drawing on X11
16744         * MenuAPI.cs:  fixes menu drawing on X11
16746 2005-03-11  Peter Bartok  <pbartok@novell.com>
16748         * Control.cs: Changed OnCreateControl behaviour based on a suggestion
16749           from Jonathan Gilbert; should fix bug #73606
16750         * XplatUIX11.cs: Fixed NC Mouse message coordinates, they need to be
16751           in Screen coordinates. Thanks, Jordi.
16752         * Form.cs: Added missing attribute
16754 2005-03-11  Peter Bartok  <pbartok@novell.com>
16756         * Form.cs:
16757           - Rudimentary Mdi support
16758           - Removed outdated FormParent code
16759           - Implemented lots of missing properties and methods, still missing
16760             transparency support
16761           - Added missing attributes
16762           - Implemented support for MaximumBounds
16763           - Added firing of various events
16764         * XplatUI.cs: Added SetIcon() method
16765         * XplatUIDriver.cs: Added SetIcon() abstract
16766         * XplatUIOSX.cs: Stubbed out SetIcon() method
16767         * XplatUIX11.cs:
16768           - Implemented SetIcon() support
16769           - Moved SetMenu() and SetBorderStyle() to proper alphabetical pos
16770           - Switched to unix line endings
16771         * XplatUIWin32.cs:
16772           - Made POINT internal so for can access it as part of MINMAX
16773           - Implemented SetIcon() support
16774           - Implemented support for CLIENTCREATESTRUCT (but might have to drop
16775             native Mdi support again, might have to go managed)
16776         * Control.cs: Now fires the StyleChanged event
16777         * MdiClient.cs: Added; still mostly empty
16779 2005-03-10  Peter Bartok  <pbartok@novell.com>
16781         * SaveFileDialog.cs: Added emtpy file
16783 2005-03-08  Peter Bartok  <pbartok@novell.com>
16785         * Control.cs: Fixed bug #73190; now invokes CreateControl (which
16786           in turn triggers OnCreateContro) when creating a handle for the
16787           first time.
16788         * TextControl.cs: Fixed endless loop in certain cases when
16789           replacing the current selection
16791 2005-03-08  Jordi Mas i Hernandez <jordi@ximian.com>
16793         * ScrollBar.cs:
16794           - Honors NewValue changes in Scroll events allowing apps to change it
16795           - Adds First and Last Scroll events
16796           - Fixes Thumb events
16798 2005-03-07  Peter Bartok  <pbartok@novell.com>
16800         * Hwnd.cs: Added DefaultClientRectangle property
16801         * XplatUI.cs: Now using the X11 driver Where() method, which provides
16802           more detailed debug information
16803         * XplatUIX11.cs:
16804           - Fixed size-change feedback loop, where we would pull an old size
16805             off the queue and mistakenly change our window's size to an
16806             earlier value
16807           - Now compressing ConfigureNotify events, to reduce looping and
16808             redraw issues
16809         * TextBoxBase.cs: Preventing crash when no text is set and ToString()
16810           is called
16812 2005-03-07  Jackson Harper  <jackson@ximian.com>
16814         * Binding.cs: Push data pushes from data -> property. Check if the
16815         property is readonly when attempting to set it.
16817 2005-03-07  Jackson Harper  <jackson@ximian.com>
16819         * Binding.cs: Format and parse data correctly. Use ASsignableFrom
16820         instead of IsSubclassOf. Pulling data now sets the value on the
16821         control.
16822         * PropertyManager.cs:
16823         * CurrencyManager.cs: Just need to pull data when updating now,
16824         because PullData will set the value on the control.
16826 2005-03-04  Jackson Harper  <jackson@ximian.com>
16828         * Binding.cs: Implement data type parsing and converting on pulled
16829         data. TODO: Are there more ways the data can be converted?
16831 2005-03-04  Jackson Harper  <jackson@ximian.com>
16833         * Binding.cs: Support <Property>IsNull checks. Also bind to the
16834         controls Validating method so we can repull the data when the
16835         control loses focus.
16837 2005-03-03  Jordi Mas i Hernandez <jordi@ximian.com>
16839         * ColumnHeader.cs:
16840           - Fixes null string format
16841           
16842         * ListView.cs:
16843           - Adds enum type checks
16844           - Fixes redrawing and recalc need after changing some properties
16845           - Fixes on focus_item set after the event
16846           - Fixes adding columns after the control has been created
16847           
16848         * ThemeWin32Classic.cs:
16849           - Fixes CheckBox focus rectangle
16850           - Fixes ColumnHeader drawing
16853 2005-03-03  Jackson Harper  <jackson@ximian.com>
16855         * Binding.cs: Bind to <Property>Changed events so we can detect
16856         when properties are changed and update the data.
16858 2005-03-02  Jordi Mas i Hernandez <jordi@ximian.com>
16860         * ImageList.cs:
16861           - Changes 32-bit pixel format to Format32bppArgb to allow transparency
16862           - Fixes ImageList constructor with ImageList container
16863           - Fixes image scaling (wrong parameters at DrawImage)
16865 2005-02-02  Jackson Harper  <jackson@ximian.com>
16867         * Binding.cs: Make property searches case-insensitive. Eliminate
16868         some duplicated code.
16870 2005-03-01  Jordi Mas i Hernandez <jordi@ximian.com>
16872         * ComboBox.cs:
16873                 - Handle focus event
16874                 - Fix scrollbar events
16875                 - Discard highlighted item if remove it
16876                 - Fixes SelectedItem with strings
16878 2005-03-01  Peter Bartok  <pbartok@novell.com>
16880         * Control.cs:
16881           - Fixed Visible property, now follows (once again) parent chain
16882             to return false if any control in the chain is visible=false
16883           - Fixed OnParentVisibleChanged, now just calls OnVisibleChanged event
16884           - Fixed several places where is_visible instead of Visible was used
16885           - Implemented FIXME related to focus selection when setting focused
16886             control to be invisible
16888         * XplatUIWin32.cs: Now using proper method to find out if window is
16889           visible. Thanks to Jordi for pointing it out
16891 2005-02-28  Jordi Mas i Hernandez <jordi@ximian.com>
16893         * ComboBox.cs: show/hide scrollbar instead of creating it
16895 2005-02-27  Jackson Harper  <jackson@ximian.com>
16897         * CurrencyManager.cs: Add PositionChanged stuff.
16899 2005-02-27  Peter Bartok  <pbartok@novell.com>
16901         * XplatUI.cs, XplatUIDriver.cs: Added new GetMenuOrigin() method
16902         * XplatUIOSX.cs: Added GetMenuOrigin() stub
16903         * XplatUIWin32.cs: Implemented GetMenuOrigin()
16904         * XplatUIX11.cs:
16905           - Implemented GetMenuDC()
16906           - Implemented GetMenuOrigin()
16907           - Implemented ReleaseMenuDC()
16908           - Implemented generation of WM_NCPAINT message
16909           - Implemented generation and handling of WM_NCCALCSIZE message
16910         * Form.cs: Added debug helper message for Jordi's menu work
16911         * Hwnd.cs:
16912           - Modified ClientRect property; added setter, fixed getter to handle
16913             setting of ClientRect
16914           - Added MenuOrigin property
16916 2005-02-26  Peter Bartok  <pbartok@novell.com>
16918         * XplatUIX11.cs:
16919           - Destroys the caret if a window that's being destroyed contains it
16920           - Ignores expose events coming from the X11 queue for windows that
16921             already are destroyed
16922           - Now uses the proper variable for handling DestroyNotify, before we
16923             marked the wrong window as destroyed
16924           - Improved/added some debug output
16926 2005-02-26  Peter Bartok  <pbartok@novell.com>
16928         * X11Keyboard.cs: Fixes to work on 64bit systems
16930 2005-02-26  Peter Bartok  <pbartok@novell.com>
16932         * Control.cs:
16933           - Now calling OnHandleDestroyed from DestroyHandle()
16934             instead of Dispose()
16935           - Removed bogus call to controls.Remove() from DestroyHandle()
16937 2005-02-26  Peter Bartok  <pbartok@novell.com>
16939         * Control.cs: Properly destroy child windows when our handle is
16940           destroyed
16942 2005-02-25  Peter Bartok  <pbartok@novell.com>
16944         * XplatUI.cs:
16945           - Added 'DriverDebug' define to allow tracing XplatUI API calls
16946           - Alphabetized Static Methods and Subclasses
16948         * XplatUIX11.cs:
16949           - Added XException class to allow custom handling of X11 exceptions
16950           - Created custom X11 error handler, tied into XException class
16951           - Added support for MONO_XEXCEPTIONS env var to allow the user
16952             to either throw an exception on X errors or continue running
16953             after displaying the error
16954           - Added handling of DestroyNotify message
16955           - Added handler for CreateNotify message (still disabled)
16956           - Improved (tried to at least) Where method to provide file and lineno
16957         * X11Structs.cs:
16958           - Added XErrorHandler delegate
16959           - Added XRequest enumeration (to suppor translation of errors)
16961 2005-02-25  Jackson Harper  <jackson@ximian.com>
16963         * PropertyManager.cs: Implement editing features
16964         * CurrencyManager.cs:
16965         * Binding.cs: First attempt at UpdateIsBinding
16966         * BindingManagerBase.cs: Call UpdateIsBinding before
16967         pushing/pulling data.
16969 2005-02-25  Jordi Mas i Hernandez <jordi@ximian.com>
16971         * MenuAPI.cs: Respect disabled items
16972         * ThemeWin32Classic.cs
16973                 - Caches ImageAttributes creation for DrawImageDisabled
16974                 - Fixes vertical menu line drawing
16975                 - Draws disabled arrows in disable menu items
16977 2005-02-24  Peter Bartok  <pbartok@novell.com>
16979         * Hwnd.cs:
16980           - Added UserData property to allow associating arbitrary objects
16981             with the handle
16982           - Fixed leak; now removing Hwnd references from static windows array
16983         * XplatUIWin32.cs:
16984           - Fixed Graphics leak in PaintEventEnd
16985           - Removed usage of HandleData, switched over to Hwnd class
16986         * HandleData.cs: Removed, obsoleted by Hwnd.cs
16988 2005-02-24  Jordi Mas i Hernandez <jordi@ximian.com>
16990         * ThemeWin32Classic.cs: Adds Cliping to TrackBar drawing
16991         * ScrollBar.cs: Fixes bug
16992         * TrackBar.cs: removes death code, clipping, mimize refreshes,
16993          keyboard navigation enhancements
16995 2005-02-24  Jordi Mas i Hernandez <jordi@ximian.com>
16997         * Control.cs: Call DefWndProc at WM_PAINT only if UserPaint not defined
16998         * GroupBox.cs: Add control styles
16999         * Label.cs: Add control styles
17000         * UpDownBase.cs: Add control styles
17001         * ListBox.cs: Add control styles
17002         * XplatUIWin32.cs: Fixes wrong parameter order
17005 2005-02-23  Chris Bacon  <chris.bacon@docobo.co.uk>
17007         * ListView.cs: Assign owner for ColumnHeader. Patch by Chris Bacon
17009 2005-02-23  Jackson Harper  <jackson@ximian.com>
17011         * PropertyManager.cs: Implement property binding. This doesn't
17012         seem to work yet though as (I think) there are some bugs in
17013         System.ComponentModel.PropertyDescriptor.
17014         * BindingContext.cs: Use new PropertyManager constructor.
17016 2005-02-23  Jordi Mas i Hernandez <jordi@ximian.com>
17018         * ProgressBar.cs: use clip region in ProgressBar
17019         * ThemeWin32Classic.cs: use clip region in ProgressBar
17021 2004-02-22  Jackson Harper  <jackson@ximian.com>
17023         * BindingsCollection.cs: Remove some debug code.
17025 2005-02-22  Jackson Harper  <jackson@ximian.com>
17027         * BindingContext.cs:
17028         * ControlBindingsCollection.cs:
17029         * CurrencyManager.cs:
17030         * Binding.cs:
17031         * BindingManagerBase.cs: Initial implementation
17032         * BindingsCollection.cs: Add an internal contains method that the
17033         BindingManagerBase uses to ensure bindings aren't added twice to
17034         the collection.
17035         * PropertyManager.cs: Stubbed out.
17036         * Control.cs:
17037         * ContainerControl.cs: Hook up databinding
17038         
17039 2005-02-22  Geoff Norton  <gnorton@customerdna.com>
17041         * XplatUIOSX.cs:
17042           OSXStructs.cs: Refactored to handle the new Hwnd NC logic area.
17043           Fixed Invalidate/Update chain.
17044           Fixed tons of other minor bugs (this is almost a complete rewrite).
17046 2005-02-22  Jordi Mas i Hernandez <jordi@ximian.com>
17048         * ComboBox.cs: do subcontrol creation when the control is created
17050 2005-02-19  Jordi Mas i Hernandez <jordi@ximian.com>
17052         * Label.cs: fixes image drawing (image and imagelist)
17053         * ThemeWin32Classic.cs: cache brushes
17054         
17055 2005-02-19  Jordi Mas i Hernandez <jordi@ximian.com>
17057         * Form.cs: Move menu drawing code to Theme class
17058         * ComboBox.cs: Move ComboBox drawing code to Theme class
17059         * MenuItem.cs: Move menu drawing code to Theme class
17060         * MenuAPI.cs: Move menu drawing code to Theme class
17061         * ThemeWin32Classic.cs: New methods
17062         * CheckedListBox.cs: Move CheckedListbox drawing code to Theme class
17063         * ListBox.cs: Move Listbox drawing code to Theme class
17064         * Theme.cs: New methods
17066 2005-02-20  Peter Bartok  <pbartok@novell.com>
17068         * Control.cs:
17069           - Fixed ProcessKeyEventArgs to also handle WM_SYSKEY messages (and
17070             only process mnemonics on those)
17071           - Fixed event sequence for key handling; first calling
17072             ProcessKeyEventArgs now
17073         * TextBoxBase.cs:
17074           - Removed WM_KEYDOWN hook, instead we now use ProcessDialogKey()
17075             for processing non-character keys
17076           - Fixed WM_CHAR to generate proper event sequence before processing
17077         * XplatUIWin32.cs: Added ALT key state to ModifierKeys property
17078           generation
17080 2005-02-19  Peter Bartok  <pbartok@novell.com>
17082         * UserControl.cs: Added TextChanged event; added attributes
17083         * SizeGrip.cs: Implemented resizing and optional display of grip
17084         * Form.cs: Fixed attribute
17085         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs, XplatUIWin32.cs:
17086           Changed meaning of ScrollWindow bool argument; instead of the
17087           clear attribute (which will be true usually anyway), it gives the
17088           option of moving child controls as well.
17089         * XplatUIX11.cs:
17090           - Changed to match new ScrollWindow argument
17091           - Fixed GetWindowPos/SetWindowPos behaviour for toplevel controls,
17092             now handles the implicit parent window a WM puts around us
17093         * ScrollableControl.cs: Implemented (not the prettiest, but it seems
17094           to work)
17095         * TextBoxBase.cs: Adjusted to new ScrollWindow arguments
17096         * TreeView.cs: Adjusted to new ScrollWindow arguments
17098 2005-02-19  Jordi Mas i Hernandez <jordi@ximian.com>
17100         * Form.cs: Menu integration with non-client area
17101         * MenuItem.cs: Menu integration with non-client area
17102         * MenuAPI.cs: Menu integration with non-client area
17104 2005-02-18  Peter Bartok  <pbartok@novell.com>
17106         * MethodInvoker.cs: Added
17107         * MdiLayout.cs: Added
17108         * SendKeys.cs: Started implementation
17109         * ErrorIconAlignment.cs: Added
17111 2005-02-18  Peter Bartok  <pbartok@novell.com>
17113         * XplatUIWin32.cs: Implemented SetMenu(); fixed GetMenuDC()
17114         * Form.cs: Added handling for Menu-related Non-client messages
17116 2005-02-17  Peter Bartok  <pbartok@novell.com>
17118         * UpDownBase.cs: Fixed typo, compilation errors
17119         * DomainUpDown.cs: Fixed attribute value
17121 2005-02-16  Miguel de Icaza  <miguel@novell.com>
17123         * UpDownBase.cs: Attach entry events.
17124         Propagate events.
17125         Add ForeColor property, Focused, InterceptArrowKeys (interception
17126         does not work yet).
17128 2005-02-17  Jordi Mas i Hernandez <jordi@ximian.com>
17130         * Form.cs:
17131                 - Redraw non client are on Setmenu
17132                 - Calc proper menu starting point
17134 2005-02-17  Peter Bartok  <pbartok@novell.com>
17136         * Application.cs: Fixed message_filter check
17138 2005-02-17  Peter Bartok  <pbartok@novell.com>
17140         * Application.cs: Now calls registered message filters
17141         * DockStyle.cs: Fixed attribute
17142         * Form.cs: Fixed attribute
17143         * Menu.cs: Fixed attribute
17144         * ToolTip.cs: Fixed attribute
17145         * TreeNode.cs: Added missing attributes and arranged in regions
17146         * PropertyGrid.cs: Fixed signatures
17147         * TreeNodeCollection.cs: Added attributes
17148         * Splitter.cs: Added missing attributes; arranged into regions
17149         * TabPage.cs: Added missing attributes; arranged into regions
17150         * TextBoxBase.cs: Added missing attributes
17151         * TextBox.cs: Added missing attributes
17152         * ArrangeDirection.cs: Added missing attributes
17153         * TreeNodeConverter.cs: Added stub (needed for TreeNode)
17154         * ToolBarButton.cs: Fixed attributes
17155         * AnchorStyles.cs: Fixed attribute
17156         * TrackBar.cs: Fixed attributes
17157         * TabControl.cs: Added missing attributes and arranged into regions
17158         * ToolBar.cs: Fixed attribute
17159         * StatusBar.cs: Fixed signature, organized into regions and added
17160           attributes
17161         * StatusBarPanel.cs: Fixed attributes
17162         * ContentsResizedEventArgs.cs: Implemented
17163         * ContentsResizedEventHandler.cs: Implemented
17164         * DateBoldEventArgs.cs: Implemented
17165         * DateBoldEventHandler.cs: Implemented
17166         * UpDownEventArgs.cs: Implemented
17167         * UpDownEventHandler.cs: Implemented
17168         
17169 2005-02-16  Jordi Mas i Hernandez <jordi@ximian.com>
17171         * Form.cs: first Menu NC refactoring
17172         * MenuAPI.cs: first Menu NC refactoring
17173         
17174 2005-02-16  Peter Bartok  <pbartok@novell.com>
17176         * ImeMode.cs: Added missing attributes
17177         * Menu.cs: Fixed attribute
17178         * GroupBox.cs: Fixed attribute
17179         * Label.cs: Fixed attribute
17180         * ColorDialog.cs (RunDialog): Removed TODO attribute
17181         * ComboBox.cs: Fixed attributes
17182         * ListControl.cs: Added missing attributes
17183         * PropertyGrid.cs: Fixed attributes
17184         * Control.cs: Fixed attributes
17185         * ListViewItem.cs: Added TypeConverter attribute
17186         * NotifyIcon.cs: Fixed attributes
17187         * ListView.cs: Fixed attributes
17188         * ButtonBase.cs: Fixed attribute
17189         * ImageList.cs: Added missing attributes
17190         * ContainerControl.cs: Fixed signature
17191         * CheckedListBox.cs: Fixed attribute; added missing attributes
17192         * Panel.cs: Fixed attributes
17193         * PropertyTabChangedEventArgs.cs: Added missing attribute
17194         * PropertyValueChangedEventArgs.cs: Added missing attribute
17195         * Binding.cs: Fixed attribute
17196         * ListViewItemConverter: Implemented ListViewSubItemConverter class
17197         * ListBox.cs: Fixed attribute; added missing attributes;
17198         * ScrollableControl.cs: Added missing attributes
17199         * PictureBox.cs: Added missing attributes; implemented missing property
17200         * DateTimePicker.cs: Added missing attributes
17201         * Theme.cs (ToolWindowCaptionHeight): Fixed type
17202         * MonthCalendar.cs: Fixed attributes
17203         * StatusBarPanel.cs: Added missing attributes
17204         * SystemInformation.cs (ToolWindowCaptionHeight): Fixed type
17206 2005-02-16  Peter Bartok  <pbartok@novell.com>
17208         * TextBoxBase.cs: The previous method to enforce height yet remember
17209           the requested high was less than ideal, this is an attempt to do
17210           it better.
17211         * Control.cs: Added comment about possible problem
17212         * Copyright: Updated format
17213         * GridItemType.cs: Fixed swapped values
17215 2005-02-15  Jackson Harper  <jackson@ximian.com>
17217         * BaseCollection.cs: Use property so we never access an
17218         uninitialized list. Also initialize the list in the property.
17220 2005-02-15  Peter Bartok  <pbartok@novell.com>
17222         * GroupBox.cs (ProcessMnemonic): Implemented
17223         * Label.cs (ProcessMnemonic): Implemented
17224         * ThemeWin32Classic.cs (DrawGroupBox): Added stringformat to show
17225           hotkeys
17227 2005-02-15  Peter Bartok  <pbartok@novell.com>
17229         * RadioButton.cs (ProcessMnemonic): Implemented
17230         * CheckBox.cs (ProcessMnemonic): Implemented
17231         * Control.cs:
17232           - Added handling of WM_SYSxxx keyboard messages to support mnemonic
17233             handling
17234           - Added internal method to allow calling ProcessMnemonic from other
17235             controls
17236         * ContainerControl.cs:
17237           - Started support for handling validation chain handling
17238           - Implemented ProcessMnemonic support
17239           - Added Select() call to Active, to make sure the active control
17240             receives focus
17241         * Form.cs: Setting toplevel flag for Forms (this was lost in the
17242           FormParent rewrite)
17243         * ThemeWin32Classic.cs:
17244           - DrawCheckBox(): Fixed stringformat to show hotkeys
17245           - DrawRadioButton(): Fixed stringformat to show hotkeys
17246         * CommonDialog.cs: Removed WndProc override, not needed
17248 2005-02-14  Peter Bartok  <pbartok@novell.com>
17250         * XplatUIX11.cs: Fixed NotImplemented exceptions for properties,
17251           missed those in the rewrite
17253 2005-02-14  Miguel de Icaza  <miguel@novell.com>
17255         * NumericUpDown.cs (Increment, ToString): Add.
17256         (DecimalPlaces): implement.
17257         
17258         Add attributes.
17259         
17260         * UpDownBase.cs: Add the designer attributes.
17262 2005-02-13  Peter Bartok  <pbartok@novell.com>
17264         * Panel.cs: Removed border_style, now in Control
17265         * XplatUIDriver.cs: Added SetBorderStyle, SetMenu, GetMenuDC and
17266           ReleaseMenuDC Methods; renmaed ReleaseWindow to UngrabWindow
17268 2005-02-13  Peter Bartok  <pbartok@novell.com>
17270         * MouseButtons.cs: Added missing attributes
17271         * XplatUIStructs.cs: Added enumeration for title styles
17272         * LeftRightAlignment.cs: Added missing attributes
17273         * Hwnd.cs: Switched to use client_window as handle (slower, but makes
17274           it compatible with Graphics.FromHwnd()
17275         * SelectedGridItemChangedEventArgs.cs: Fixed property type
17276         * Keys.cs: Added missing attributes
17277         * SelectionRange.cs: Added missing attributes
17278         * SelectionRangeConverter.cs: Added
17279         * XplatUI.cs:
17280           - Introduced SetBorderStyle, SetMenu, GetMenuDC and
17281             ReleaseMenuDC methods
17282           - Renamed ReleaseWindow to UngrabWindow
17283           - Added proper startup notice to allow version identification
17284         * Form.cs:
17285           - Added missing attributes
17286           - Removed FormParent concept
17287         * Label.cs: Removed border_style field, now in Control
17288         * RadioButton.cs: Now properly selects RadioButton when focus is
17289           received
17290         * ThemeGtk.cs: Fixed SetDisplay call to match new X11 behaviour
17291         * Control.cs:
17292           - Added missing attributes
17293           - Added borderstyle handling
17294           - Removed FormParent concept support
17295           - Fixed calls to XplatUI to match changed APIs
17296           - Fixed bug that would case us to use disposed Graphics objects
17297           - Removed unneeded internal methods
17298           - PerformLayout(): Fixed to handle DockStyle.Fill properly
17299           - SelectNextControl(): Fixed to properly check common parents
17300         * TextBoxBase.cs: Removed border_style field (now in Control)
17301         * MessageBox.cs:
17302           - Patch by Robert Thompson (rmt@corporatism.org): Added icon support,
17303             fixed calculations for form size
17304           - Added support for localized strings and icons
17305           - Improved form size calculations, added border
17306         * ListView.cs: Removed border_style field (now in Control)
17307         * X11Structs.cs: Moved several structs from X11 driver here
17308         * X11Keyboard.cs: Changed debug message
17309         * Application.cs: Removed FormParent concept support
17310         * CommonDialog.cs:
17311           - Resetting end_modal flag
17312           - Removed FormParent concept support
17313         * NativeWindow.cs: Removed FormParent concept support
17314         * XplatUIX11.cs: Rewritten, now using the new Hwnd class, implementing
17315           Client area and Non-Client whole window to allow support for WM_NC
17316           messages
17317         * XplatUIOSX.cs: Updated to match latest driver spec; added exception
17318           prevent using it until it supports Hwnd as per Geoff Norton's request
17319         * ToolBar.cs: Fixed drawing, was not doing proper drawing
17320         * PictureBox.cs: Removed border_style field, now in Control
17321         * XplatUIWin32.cs: Added new driver methods
17323 2005-02-12  Peter Bartok  <pbartok@novell.com>
17325         * OpacityConverter.cs: Implemented
17326         * Hwnd.cs: Internal class to support drivers that need to emulate
17327           client area/non-client area window behaviour
17329 2005-02-11  Peter Bartok  <pbartok@novell.com>
17331         * KeysConverter.cs: Implemented
17333 2005-02-11  Jordi Mas i Hernandez <jordi@ximian.com>
17335         * Menu.cs: fixes methods GetContextMenu, GetMainMenu, ToString
17336         * LinkLabel: Added missing attributes
17337         * MainMenu.cs: fixes ToString
17338         * MenuItem.cs: fixes methods GetContextMenu, GetMainMenu
17339         * ListBox.cs: fixes event position
17340         * TrackBar.cs: adds missing attributes and events
17341         
17342 2005-02-10  Jordi Mas i Hernandez <jordi@ximian.com>
17344         * MenuItem.cs: Use SystemInformation and bug fixes
17345         * MenuAPI.cs: Use SystemInformation and bug fixes
17347 2005-02-09  Jackson Harper  <jackson@ximian.com>
17349         * X11Keyboard.cs: We ignore some keys, but still need to set/reset
17350         their keystate otherwise things like VK_MENU get stuck "on".
17352 2005-02-09  Kazuki Oikawa <kazuki@panicode.com>
17354         * ListBox.cs: Fixes AddRange bug
17355         
17356 2005-02-09  Jordi Mas i Hernandez <jordi@ximian.com>
17358         * ProgressBar.cs
17359                 - Add missing attributes
17360                 - Add missing method
17361                 
17362         * CheckedListBox.cs: Added missing attributes
17363                 - Add missing attributes
17364                 - Remove extra method
17365         
17366         * ComboBox.cs: Added missing attributes
17367         * VScrollBar.cs: Added missing attributes
17368         * ScrollBar.cs:  Added missing attributes
17369         * ListBox.cs: Fixes signature, add missing consts
17370         * LinkArea.cs:   Added missing attributes
17371         
17373 2005-02-08  Peter Bartok  <pbartok@novell.com>
17375         * Menu.cs: Added missing attributes
17376         * MainMenu.cs: Added missing attributes
17377         * GroupBox.cs: Added missing attributes
17378         * Label.cs: Added missing attributes
17379         * CheckBox.cs: Implemented CheckBoxAccessibleObject class
17380         * ColorDialog.cs:
17381           - Added Instance and Options properties
17382           - Added missing attributes
17383         * Cursor.cs: Made Serializable
17384         * NotifyIcon: Added missing attributes
17385         * MenuItem.cs: Added missing attributes
17386         * TextBoxBase.cs: Implemented AppendText() and Select() methods
17387         * Panel.cs: Added Missing attributes
17388         * MonthCalendar.cs: Fixed CreateParams
17390 2005-02-08  Jordi Mas i Hernandez <jordi@ximian.com>
17391         
17392         * LinkLabel.cs:
17393                 - Fixes signature
17394                 - Fixes issues with links
17395                 - Adds the class attributes
17397 2005-02-08  Jordi Mas i Hernandez <jordi@ximian.com>
17398         
17399         * ComboBox.cs:
17400                 - Fixes button when no items available in dropdown
17401                 - Fixes repainting problems
17402                 - Adds the class attributes
17403                 
17404 2005-02-07  Geoff Norton  <gnorton@customerdna.com>
17406         * XplatUIOSX.cs: Detect the menu bar and title bar height from
17407         the current theme.  Cache these on startup.
17409 2005-02-07  Jackson Harper  <jackson@ximian.com>
17411         * ScrollBar.cs: Give the correct clipping rect to the theme. Dirty
17412         the scrollbar buttons when they are depressed.
17414 2005-02-07  Geoff Norton  <gnorton@customerdna.com>
17416         * XplatUIOSX.cs: Really fix working at resolutions not 1024x768.
17417         Get the display size from the main displayid.  We currently dont
17418         support multiple display configurations.
17420 2005-02-07  Geoff Norton  <gnorton@customerdna.com>
17422         * XplatUIOSX.cs: Ensure the window doesn't get stuck behind the statusbar.
17424 2005-02-07  Miguel de Icaza  <miguel@novell.com>
17426         * UpDownBase.cs: Add ReadOnly and UpDownAlign properties.
17428 2005-02-05  Jonathan Chambers  <jonathan.chambers@ansys.com>
17430         * PropertyGrid.cs: Updated. Patch by Jonathan Chambers
17432 2005-02-04  Jackson Harper  <jackson@ximian.com>
17434         * ThemeWin32Classic.cs: Respect the clipping rect when
17435         drawing. Only fill the intersection of clips and rects so there
17436         isn't a lot of large fills.
17437         * ScrollBar.cs: Pass the correct clipping rect to the theme
17438         engine. Remove some debug code.
17440 2005-02-05  John BouAntoun  <jba-mono@optusnet.com.au>
17441         
17442         * DateTimePicker.cs:
17443                 - Fixed crash on DateTime.Parse, use Constructor instead
17445 2005-02-04  Jordi Mas i Hernandez <jordi@ximian.com>
17446         
17447         * MenuItem.cs:
17448         * MenuAPI.cs:
17449                 - Owner draw support (MeasureItem and DrawItem)
17451 2005-02-04  Jordi Mas i Hernandez <jordi@ximian.com>
17452         
17453         *  Menu.cs:
17454                 - Implements FindMergePosition and MergeMenu functions (very poor documented)
17455                 - Fixes MenuItems.Add range
17456         * MenuItem.cs:
17457                 - MergeMenu and Clone and CloneMenu functions
17459 2005-02-03  Jackson Harper  <jackson@ximian.com>
17461         * ScrollBar.cs: Make abstract
17462         * ScrollableControl.cs: Create H/V scrollbars now that scrollbar
17463         is abstract.
17465 2005-02-03  Jackson Harper  <jackson@ximian.com>
17467         * ScrollBar.cs: First part of my scrollbar fixups. This removes
17468         all the unneeded refreshes and uses invalidates with properly
17469         computed rects.
17471 2005-02-03  Peter Bartok  <pbartok@novell.com>
17473         * ComponentModel.cs: Added
17474         * IDataGridEditingService.cs: Added
17475         * Timer.cs: Added missing attributes
17476         * ToolTip.cs: Added missing attributes
17478 2005-02-03  Jonathan Chambers  <jonathan.chambers@ansys.com>
17480         * PropertyGridView.cs: Added. Patch by Jonathan Chambers
17482 2005-02-03  Peter Bartok  <pbartok@novell.com>
17484         * ListBox.cs: Added missing attributes
17486 2005-02-03  Jordi Mas i Hernandez <jordi@ximian.com>
17487         
17488         * ListBox.cs:
17489                 - Fixes font height after font change
17490                 - Avoid generating unnecesary OnSelectedIndexChanged on clearing
17491                 
17492 2005-02-02  Peter Bartok  <pbartok@novell.com>
17494         * HandleData.cs: Introduced static methods to allow class
17495           to be more self-contained and track it's own HandleData objects
17496         * XplatUIOSX.cs, XplatUIWin32.cs, XplatUIX11.cs: Fixed usage of
17497           HandleData to use new static methods
17499 2005-02-02  Jordi Mas i Hernandez <jordi@ximian.com>
17501         * Combobox.cs:
17502                 - Fixes default size and PreferredHeight
17503                 - Missing events
17504                 - ObjectCollection.Insert implementation
17505                 
17506         * ListControl.cs
17507                 - Fixes signature
17508         * ListBox.cs:
17509                 - Several fixes
17510                 - ObjectCollection.Insert implementation
17511                 - No selection after clean
17512                 - Small fixes
17514 2005-01-31      John BouAntoun  <jba-mono@optusnet.com.au>
17516         * ThemeWin32Classic.cs: quick fix to comboboxbutton pushed painting
17518 2005-02-01  Jordi Mas i Hernandez <jordi@ximian.com>
17520         * Combobox.cs:
17521                 - Caches ItemHeight calculation for OwnerDrawVariable
17522                 - Handles dropdown properly
17523                 - Fixes several minor bugs
17525 2005-01-31  Jordi Mas i Hernandez <jordi@ximian.com>
17527         * ListBox.cs:
17528                 - Fixes 71946 and 71950
17529                 - Fixes changing Multicolumn on the fly
17530                 - Fixes keyboard navigation on Multicolumn listboxes
17532 2005-01-31  Geoff Norton  <gnorton@customerdna.com>
17533         
17534         * XplatUIOSX.cs: Call ExitToShell in our teardown to avoid a
17535         crash reporter log.
17537 2005-01-31  Geoff Norton  <gnorton@customerdna.com>
17539         * XplatUIOSX.cs: Allow applications to actually exit.
17541 2005-01-31  Geoff Norton  <gnorton@customerdna.com>
17543         * XplatUIOSX.cs: SetWindowStyle implemented.  Reposition views in
17544         their parent at creation time rather than lazily later.  Fixes a major
17545         regression we were experiencing.
17547 2005-01-31      John BouAntoun  <jba-mono@optusnet.com.au>
17549         * ThemeWin32Classic.cs: more date time picker painting fixes
17550         * DateTimePicker.cs: more monthcalendar drop down fixes
17551         * MonthCalendar.cs: more CreateParams fixes to ensure correct drop down
17553 2005-01-31  Jordi Mas i Hernandez <jordi@ximian.com>
17555         * ScrollBar.cs:
17556                 - When moving the thumb going outside the control should stop the moving
17557                 - Adds the firing of missing events
17558                 - Fixes no button show if Size is not specified
17559                 - End / Home keys for keyboard navigation
17561 2005-01-30  Peter Bartok  <pbartok@novell.com>
17563         * NotifyIcon.cs (CalculateIconRect): Removed debug output and added
17564           sanity check to prevent theoretical loop
17565         * XplatUIWin32.cs (SetVisible): Removed debug output
17566         * XplatUIX11.cs (SystrayChange): Added sanity check
17567         * ScrollableControl.cs (OnVisibleChanged): Now calls base method
17568         * Control.cs (OnVisibleChanged): Added workaround for ParentForm
17569           behaviour, valid until the X11 client window rewrite is done
17570         * TextBox.cs (ctor): Setting proper default foreground and background
17571           colors
17573 2005-01-30      John BouAntoun  <jba-mono@optusnet.com.au>
17575         * Theme: Added DrawDateTimePicker to interface
17576         * ThemeWin32Classic.cs: Added DrawDateTimePicker (incomplete)
17577         * DateTimePicker.cs: Created (still needs keys and painting code)
17578         * DateTimePickerFormat.cs: added
17579         * MonthCalendar.cs: fixed CreateParams for popup window mode
17580           
17581 2005-01-29  Peter Bartok  <pbartok@novell.com>
17583         * ControlPaint.cs: Fixed luminace value returned on achromatic colors,
17584           this should also the calculations for ligher/darker
17585         * Theme.cs: Fixed defaults for ScrollBar widths/heights
17587 2005-01-29  Peter Bartok  <pbartok@novell.com>
17589         * ArrangeDirection.cs: Added
17590         * ArrangeStartingPositon.cs: Added
17591         * SystemInformation.cs: Implemented
17592         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs, XplatUIWin32.cs,
17593           XplatUIX11.cs, Theme.cs: Added/implemented new static properties
17594           used by SystemInformation class
17595         * X11Strucs.cs: Added XSizeHints structure
17596         * MenuAPI.cs:
17597           - Fixed CreateParams to make sure the menu window is always visible
17598           - TrackPopupMenu: Added check to make sure we don't draw the
17599             menu offscreen
17601 2005-01-29  Peter Bartok  <pbartok@novell.com>
17603         * HandleData.cs: Added method for altering invalid area
17604         * TextBoxBase.cs: Implemented TextLength
17606 2005-01-28  Peter Bartok  <pbartok@novell.com>
17608         * XplatUIX11.cs: Improvement over last patch, not sending
17609           the WM_PAINT directly anymore, instead we scroll any pending
17610           exposed areas and let the system pick out the WM_PAINT later
17612 2005-01-28  Peter Bartok  <pbartok@novell.com>
17614         * SWF.csproj: Deleted, no longer used. Instead,
17615           Managed.Windows.Forms/SWF.csproj should be used
17616         * XplatUIX11.cs: Instead of posting the WM_PAINT, we send it
17617           directly, to avoid a potential race condition with the next
17618           scroll
17620 2005-01-28  Peter Bartok  <pbartok@novell.com>
17622         * XplatUI.cs: Made class internal
17624 2005-01-28  Jordi Mas i Hernandez <jordi@ximian.com>
17626         * CheckedListBox.cs:
17627                 - Draw focus
17628                 - Fixed Drawing
17629                 - Missing methods and events
17631 2005-01-27  Peter Bartok  <pbartok@novell.com>
17633         * Application.cs (Run): Don't use form if we don't have one
17635 2005-01-27  Peter Bartok  <pbartok@novell.com>
17637         * TextBoxBase.cs (get_Lines): Fixed index off by one error
17639 2005-01-27  Peter Bartok  <pbartok@novell.com>
17641         * GridEntry.cs: Added; Patch by Jonathan S. Chambers
17642         * GridItem.cs: Added; Patch by Jonathan S. Chambers
17643         * GridItemCollection.cs: Added; Patch by Jonathan S. Chambers
17644         * GridItemType.cs: Added; Patch by Jonathan S. Chambers
17645         * PropertyGrid.cs: Added; Patch by Jonathan S. Chambers
17646         * PropertySort.cs: Added; Patch by Jonathan S. Chambers
17647         * PropertyTabChangedEventArgs.cs: Added; Patch by Jonathan S. Chambers
17648         * PropertyTabChangedEventHandler.cs: Added; Patch by Jonathan S. Chambers
17649         * PropertyValueChangedEventArgs.cs: Added; Patch by Jonathan S. Chambers
17650         * PropertyValueChangedEventArgs.cs: Added; Patch by Jonathan S. Chambers
17651         * SelectedGridItemChangedEventArgs.cs: Added; Patch by Jonathan S. Chambers
17652         * SelectedGridItemChangedEventHandler.cs: Added; Patch by Jonathan S. Chambers
17654 2005-01-27  Jordi Mas i Hernandez <jordi@ximian.com>
17656         * Combobox.cs:
17657                 - Draw focus on Simple Combobox
17658                 - Fixes drawing issues
17659                 - fixes 71834
17661 2005-01-27  Peter Bartok  <pbartok@novell.com>
17663         * Form.cs:
17664           - Place window in default location, instead of hardcoded 0/0
17665           - Send initial LocationChanged event
17666         * Control.cs:
17667           - UpdateBounds after creation to find out where the WM placed us
17668           - Make sure that if the ParentForm changes location the Form
17669             is notified
17670         * XplatUIX11.cs: XGetGeometry will not return the coords relative
17671             to the root, but to whatever the WM placed around us.
17672             Translate to root coordinates before returning toplevel
17673             coordinates
17674         * XplatUIWin32.cs: Removed debug output
17675         * XplatUIOSX.cs, XplatUI.cs, XplatUIDriver.cs: Added toplevel
17676           flag to GetWindowPos, to allow translation of coordinates on X11
17678 2005-01-27  Jordi Mas i Hernandez <jordi@ximian.com>
17680         * ListBox.cs: connect LostFocus Event
17682 2005-01-27  Peter Bartok  <pbartok@novell.com>
17684         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIOSX.cs,
17685           XplatUIX11.cs: Extended the Systray API
17686         * Form.cs: Removed debug output
17687         * Application.cs: Fixed focus assignment, always need to call
17688           XplatUI.Activate() since Form.Activate() has rules that may
17689           prevent activation
17690         * NotifyIcon.cs: Should be complete now
17691         * ToolTip.cs: Worked around possible timer bug
17693 2005-01-27  Jackson Harper  <jackson@ximian.com>
17695         * TabControl.cs:
17696         - Only invalidate the effected tabs when the
17697         selected index changes. This reduces drawing and gets rid of some
17698         flicker.
17699         - Only refresh if the tabs need to be shifted, otherwise only
17700         invalidate the slider button.
17701         - On windows the tabs are not filled to right if the slider is
17702         visible.
17703         
17704 2005-01-27  Jackson Harper  <jackson@ximian.com>
17706         * TabControl.cs: Only refresh on mouseup if we are showing the
17707         slider. Also only invalidate the button whose state has changed.
17709 2005-01-26  Peter Bartok  <pbartok@novell.com>
17711         * XplatUI.cs, XplatUIDriver.cs: Added Systray methods
17712         * XplatUIWin32.cs: Implemented SystrayAdd(), SystrayChange()
17713           and SystrayRemove() methods
17714         * XplatUIOSX.cs: Stubbed Systray methods
17715         * XplatUIX11.cs:
17716           - Implemented SystrayAdd(), SystrayChange() and SystrayRemove()
17717             methods
17718           - Fixed broken XChangeProperty calls (marshalling messed up things)
17719         * X11Structs.cs: Added enums and structs required for Size hinting
17720         * NotifyIcon.cs: Added & implemented
17722 2005-01-26  Jackson Harper  <jackson@ximian.com>
17724         * TabControl.cs: Space vertically layed out tabs properly.
17726 2005-01-26  Peter Bartok  <pbartok@novell.com>
17728         * Form.cs (CreateClientParams): Always set the location to 0,0
17729           since we're a child window.
17731         * Control.cs (SetVisibleCore): Always explicitly setting the location
17732           of a toplevel window, apparently X11 doesn't like to move windows
17733           while they're not mapped.
17735 2005-01-26  Jackson Harper  <jackson@ximian.com>
17737         * TabControl.cs: Implement FillToRight size mode with vertically
17738         rendered tabs.
17740 2005-01-26  Jordi Mas i Hernandez <jordi@ximian.com>
17742         * ControlPaint.cs, ThemeWin32Classic.cs
17743                 - Fixes DrawFocusRectangle
17745 2005-01-26  Jordi Mas i Hernandez <jordi@ximian.com>
17747         * MenuAPI.cs:
17748                 - MenuBar tracking only starts when item is first clicked
17749                 - Fixes menu hidding for multiple subitems
17750                 - Unselect item in MenuBar when item Executed
17751                 - Fixes bug 71495
17753 2005-01-25  Jordi Mas i Hernandez <jordi@ximian.com>
17755         * ListControl.cs:
17756                 - IsInputKey for ListBox
17757         * ListBox.cs:
17758                 - Focus item
17759                 - Shift and Control item selection
17760                 - Implement SelectionMode.MultiExtended
17761                 - Fixes RightToLeft
17762         * ComboBox.cs:
17763                 - IsInputKey implemented
17764                 - Do not generate OnTextChangedEdit on internal txt changes
17765                 
17766 2005-01-23  Peter Bartok  <pbartok@novell.com>
17768         * AccessibleObject.cs: Partially implemented Select()
17769         * MonthCalendar.cs: Added missing attributes and events
17770         * Form.cs: Fixed CreateParams behaviour, now controls derived from
17771           form can properly override CreateParams.
17772         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs, XplatUIWin32.cs,
17773           XplatUIX11.cs: Dropped RefreshWindow method, not needed if
17774           Control performs Invalidate & Update
17775         * NativeWindow (CreateHandle): Added special handling for Form
17776           and Form.FormParent classes to allow overriding of From.CreateParams
17777         * Control.cs:
17778           - ControlNativeWindow: Renamed 'control' variable to more intuitive
17779             name 'owner'
17780           - ControlNativeWindow: Added Owner property
17781           - Removed usage of Refresh() on property changes, changed into
17782             Invalidate(), we need to wait until the queue is processed for
17783             updates, direct calls might cause problems if not all vars for
17784             Paint are initialized
17785           - Added call to UpdateStyles() when creating the window, to set any
17786             styles that CreateWindow might have ignored.
17787           - Added support for Form CreateParent overrides to UpdateStyles()
17788         * MessageBox.cs: Removed no longer needed FormParent override stuff,
17789           CreateParams are now properly overridable
17790         * CommonDialog.cs: Removed no longer needed FormParent override stuff,
17791           CreateParams are now properly overridable
17793 2005-01-23  Miguel de Icaza  <miguel@ximian.com>
17795         * UpDownBase.cs (ctor): Connect TextChanged in the entry to the
17796         OnTextBoxChanged.
17798         Capture LostFocus and OnTextBoxChanged.  The later introduces a
17799         recursive invocation that I have not figured out yet.
17801         Reset the timer when not using (it was accumulating).
17804         (OnTextBoxChanged): Set UserEdit to true here to track whether the
17805         user has made changes that require validation.
17807         Reset changing to avoid loops.
17809 2005-01-22  Miguel de Icaza  <miguel@ximian.com>
17811         * NumericUpDown.cs: Display value at startup.
17813         * UpDownBase.cs (Text): Do not call UpdateEditText here, only call
17814         ValidateEditText.
17816         * NumericUpDown.cs: Minimum, Maximum, Text, Value properties
17817         filled in.  Added some basic parsing of text.
17819         Still missing the OnXXX method overrides, and figuring out the
17820         events that must be emitted.
17822         * UpDownBase.cs: Handle UserEdit on the Text property.
17823         
17824 2005-01-22  Jordi Mas i Hernandez <jordi@ximian.com>
17826         * ComboBox.cs:
17827           - Fixes IntegralHeight
17828           - ToString method
17830 2005-01-21  Jackson Harper  <jackson@ximian.com>
17832         * TabControl.cs: Set the SelectedIndex property when SelectedTab
17833         is set so that the page visibility is updated and the tabs are
17834         sized correctly.
17836 2005-01-21  Jackson Harper  <jackson@ximian.com>
17838         * TabControl.cs: Use cliping rectangle for blitting. Give the
17839         theme the clipping rect so we can do clipping while
17840         drawing. Remove some debug code.
17842 2005-01-21  Jackson Harper  <jackson@ximian.com>
17844         * TabPage.cs: Add a new method so tab pages can force the tab
17845         control to recalculate the tab page sizes.
17846         * TabControl.cs: UpdateOwner needs to make the tab control recalc
17847         sizes.
17849 2005-01-20  Jackson Harper  <jackson@ximian.com>
17851         * ThemeWin32Classic.cs: Clip text to the staus bar panels rects.
17853 2005-01-20  Jackson Harper  <jackson@ximian.com>
17855         * TreeView.cs: Set the bounds for nodes properly. They were
17856         getting screwed up when checkboxes were not enabled, but images
17857         were.
17859 2005-01-20  Jordi Mas i Hernandez <jordi@ximian.com>
17861         * ListBox.cs:
17862                 - Owner draw support
17863                 - Fixes
17864                 
17865 2005-01-20  Jackson Harper  <jackson@ximian.com>
17867         * XplatUIStructs.cs: More misc keys
17868         * X11Keyboard.cs: Ignore some control keys.
17870 2005-01-20  Jackson Harper  <jackson@ximian.com>
17872         * X11Structs.cs: Add the modmaps to the keymask struct and tabify.
17873         * X11Keyboard.cs: Set the AltGr mask when we get a key event.
17875 2005-01-19  Peter Bartok  <pbartok@novell.com>
17877         * Control.cs: Un-selecting the control when it is loosing focus
17879 2005-01-19  Jackson Harper  <jackson@ximian.com>
17881         * TreeView.cs: Hook up to the text controls leave event so we can
17882         end editing when the users clicks outside the text box.
17883         
17884 2005-01-19  Jackson Harper  <jackson@ximian.com>
17886         * X11Keyboard.cs: Fix typo that was causing the wrong keycodes to
17887         get set in the conversion array.
17889 2005-01-19  Peter Bartok  <pbartok@novell.com>
17891         * Application.cs (ModalRun): Added a call to CreateControl to ensure
17892           focus is properly set
17893         * Button.cs:
17894           - Added missing attributes
17895           - removed styles, those are already set in the base class
17896         * ButtonBase.cs:
17897           - Added missing attributes
17898           - Added clip window styles
17899         * CheckBox.cs: Added missing attributes
17900         * CommonDialog.cs:
17901           - FormParentWindow.CreateParams: Added required clip styles
17902         * Form.cs (ProcessDialogKey): Fixed handling of Escape key, now
17903           also filters modifier keys
17904         * MessageBox.cs:
17905           - Added assignment of Accept and Cancel button to enable Enter
17906             and Esc keys in MessageBox dialogs
17907           - FormParentWindow.CreateParams: Added required clip styles
17908         * RadioButton.cs: Added missing attributes
17909         * TextControl.cs: No longer draws selection if control does not
17910           have focus
17911         * TextBoxBase.cs:
17912           - Now draws simple rectangle around test area to make it obvious
17913             there's a control. This is a hack until we properly support borders
17914           - A few simple fixes to support selections better, now erases selected
17915             text when typing, and resets selection when using movement keys
17917 2005-01-19  Miguel de Icaza  <miguel@ximian.com>
17919         * UpDownBase.cs: Added some new properties.
17921         * DomainUpDown.cs: Implement a lot to get my test working.
17923 2005-01-19  Geoff Norton  <gnorton@customerdna.com>
17925         * XplatUIOSX.cs: Fix a minor bug to bring the close box back
17927 2005-01-19  Geoff Norton  <gnorton@customerdna.com>
17929         * OSXStructs (WindowAttributes): Fixed csc complaints
17931 2005-01-19  Geoff Norton  <gnorton@customerdna.com>
17933         * XplayUIOSX.cs:
17934           OSXStructs.cs: Initial refactor to move enums and consts into
17935           OSXStructs and use them in the driver for greater readability.
17937 2005-01-19  Geoff Norton  <gnorton@customerdna.com>
17939         * XplatUIOSX.cs: Initial support for Standard Cursors.
17940         * OSXStructs.cs: Move our structs here; added ThemeCursor enum
17942 2005-01-19  Jordi Mas i Hernandez <jordi@ximian.com>
17944         * ComboBox.cs: ability to change style when the ctrl is already
17945         created, missing methods and events, bug fixes, signature fixes
17947 2005-01-19  Peter Bartok  <pbartok@novell.com>
17949         * Cursors.cs (ctor): Added ctor to fix signature
17951 2005-01-18  Peter Bartok  <pbartok@novell.com>
17953         * Button.cs: Implemented DoubleClick event
17954         * ButtonBase.cs:
17955           - Fixed keyboard handling to behave like MS, where the press of
17956             Spacebar is equivalent to a mousedown, and the key release is
17957             equivalent to mouseup. Now a spacebar push will give the same
17958             visual feedback like a mouse click.
17959           - Added missing attributes
17960           - Added ImeModeChanged event
17961           - Added support for generating DoubleClick event for derived classes
17962         * CheckBox.cs:
17963           - Implemented DoubleClick event
17964           - Added missing attributes
17965         * CommonDialog.cs: Added missing attribute
17966         * ContextMenu.cs: Added missing attributes
17967         * RadioButton.cs:
17968           - AutoChecked buttons do not allow to be unselected when clicked
17969             (otherwise we might end up with no selected buttons in a group)
17970           - Added missing attributes
17971           - Implemented DoubleClickEvent
17972         * ThreadExceptionDialog.cs: Enabled TextBox code
17974 2005-01-18  Peter Bartok  <pbartok@novell.com>
17976         * Form.cs: Removed debug output
17977         * Button.cs: Added support for DoubleClick method
17979 2005-01-18  Peter Bartok  <pbartok@novell.com>
17981         * Form.cs:
17982           - Added method to parent window that allows triggering size
17983             calculations when a menu is added/removed
17984           - set_Menu: Cleaned up mess from early days of Form and Control,
17985             now properly triggers a recalc when a menu is added/removed
17986           - Added case to select form itself as focused form if no child
17987             controls exist
17988           - Added PerformLayout call when showing dialog, to ensure properly
17989             placed controls
17990         * Control.cs:
17991           - Select(): Made internal so Form can access it
17992           - Focus(): Only call Xplat layer if required (avoids loop), and sets
17993             status
17994         * Application.cs (Run): Removed hack and calls PerformLayout instead
17995           to trigger calculation when Form becomes visible
17997 2005-01-18  Jordi Mas i Hernandez <jordi@ximian.com>
17999         * ComboBox.cs: fixes for ownerdraw
18001 2005-01-18  Peter Bartok  <pbartok@novell.com>
18003         * TextControl.cs:
18004           - Sentinel is no longer static, each Document gets it's own, this
18005             avoids locking or alternatively overwrite problems when more
18006             than one text control is used simultaneously.
18007           - Switched to use Hilight and HilightText brushes for text selection
18009         * TextBoxBase.cs (PaintControl): Disabled AntiAliasing to improve looks
18011 2005-01-18  Peter Bartok  <pbartok@novell.com>
18013         * Control.cs:
18014           - Hooked up the following events:
18015                 o ControlAdded
18016                 o ControlRemoved
18017                 o HandleDestroyed
18018                 o ImeModeChanged
18019                 o ParentChanged
18020                 o TabStopChanged
18021                 o Invalidated
18022                 o SystemColorsChanged
18023                 o ParentFontChanged
18024                 o Move
18025           - Removed debug output
18026           - Added a call to the current theme's ResetDefaults when a color change
18027             is detected
18028         * Form.cs: Now setting the proper ImeMode
18029         * Theme.cs: Defined a method to force recreation of cached resources
18030           and rereading of system defaults (ResetDefaults())
18031         * ThemeWin32Classic.cs: Added ResetDefaults() stub
18033 2005-01-17  Peter Bartok  <pbartok@novell.com>
18035         * Control.cs: Added missing attributes
18037 2005-01-17  Jackson Harper  <jackson@ximian.com>
18039         * TreeNode.cs: Implement editing. Add missing properties selected
18040         and visible.
18041         * TreeView.cs: Implement node editing. Also some fixes to use
18042         Invalidate (invalid area) instead of Refresh when selecting.
18044 2005-01-17  Peter Bartok  <pbartok@novell.com>
18046         * Control.cs:
18047           - Implemented InvokeGotFocus() method
18048           - Implemented InvokeLostFocus() method
18049           - Implemented InvokePaint() method
18050           - Implemented InvokePaintBackground() method
18051           - Implemented InvokeClick() method
18052           - Implemented FindForm() method
18053           - Implemented RectangleToClient() method
18054           - Implemented ClientToRectangle() method
18055           - Implemented ResetBackColor() method
18056           - Implemented ResetCursor() method
18057           - Implemented ResetFont() method
18058           - Implemented ResteForeColor() method
18059           - Implemented ResetImeMode() method
18060           - Implemented ResetLeftToRight() method
18061           - Implemented ResetText() method
18062           - Implemented Scale() methods
18063           - Implemented ScaleCore() method
18064           - Implemented Update() method
18065           - Removed unused variables
18066           - Stubbed AccessibilityNotifyClients and
18067             ControlAccessibleObject.NotifyClients() methods (dunno what to do
18068             with those yet)
18069           - Now setting proper default for RightToLeft property
18070           - Fixed bug in SetClientSizeCore that would cause windows to get
18071             really big
18072           - Now sending Click/DoubleClick events
18073           - Now selecting controls when left mouse button is clicked on
18074             selectable control
18075         * AccessibleEvents.cs: Added
18076         * XplatUI.cs, XplatUIDriver.cs: Added UpdateWindow() method
18077         * XplatUIOSX.cs: Stubbed UpdateWindow() method
18078         * XplatUIWin32.cs: Implemented UpdateWindow() method
18079         * XplatUIX11.cs: Implemented UpdateWindow() method
18080         * Form.cs: Removed stray semicolon causing CS0162 warning
18081         * ThemeWin32Classic.cs: Fixed unused variable warnings
18082         * ScrollableControl.cs: Now calls base method for ScaleCore
18083         * ButtonBase.cs: Now disabling StandardClick and StandardDoubleClick
18084           style to avoid interference with internal click handler (which is
18085           different than standard Control click handling)
18086         * RadioButton.cs:
18087           - Now unchecks all sibling radio buttons when control is
18088             selected (Fixes #68756)
18089           - Removed internal tabstop variable, using the one inherited from
18090             Control
18092 2005-01-17  Jackson Harper  <jackson@ximian.com>
18094         * NavigateEventArgs.cs: Fix base type.
18095         * LinkLabel.cs: Sig fix
18096         
18097 2005-01-17  Jackson Harper  <jackson@ximian.com>
18099         * TreeView.cs: Only invalidate the effected nodes bounds when
18100         selecting nodes.
18102 2005-01-13  Jordi Mas i Hernandez <jordi@ximian.com>
18104         * XplatUIWin32.cs: fixes Win32 marshaling
18105         * XplatUIX11.cs: fixes method signature
18107 2005-01-17  Peter Bartok  <pbartok@novell.com>
18109         * XplatUIX11.cs: Clean up resources when we no longer need them
18111 2005-01-17  Peter Bartok  <pbartok@novell.com>
18113         * XplatUI.cs, XplatUIDriver.cs: Added SetCursor(), ShowCursor(),
18114           OverrideCursor(), DefineCursor(), DefineStdCursor(), GetCursorInfo()
18115           and DestroyCursor() methods.
18116         * Cursor.cs: Partially implemented, now supports standard cursors;
18117           still contains some debug code
18118         * Cursors.cs: Implemented class
18119         * Control.cs:
18120           - WndProc(): Added handling of WM_SETCURSOR message, setting the
18121             appropriate cursor
18122           - Implemented Cursor property
18123           - Replaced break; with return; more straightforwar and possibly
18124             faster
18125           - Now properly setting the result for WM_HELP
18126         * X11Structs.cs: Added CursorFontShape enum
18127         * XplatUIStructs.cs:
18128           - Added StdCursor enum (to support DefineStdCursor() method)
18129           - Added HitTest enum (to support sending WM_SETCURSOR message)
18130         * XplatUIX11.cs:
18131           - Now sends the WM_SETCURSOR message
18132           - Implemented new cursor methods
18133         * XplatUIOSX.cs: Stubbed new cursor methods
18134         * XplatUIWin32.cs:
18135           - Implemented new cursor methods
18136           - Added GetSystemMetrics function and associated enumeration
18138 2005-01-15  Peter Bartok  <pbartok@novell.com>
18140         * Control.cs:
18141           - WndProc(): Now handles EnableNotifyMessage
18142           - SelectNextControl(): Fixed bug where if no child or sibling
18143             controls exist we looped endlessly
18145 2005-01-14  Jackson Harper  <jackson@ximian.com>
18147         * TreeView.cs: Recalculate the tab pages when a new one is added
18148         so that the proper bounding rects are created.
18150 2005-01-14  Jackson Harper  <jackson@ximian.com>
18152         * TreeView.cs: Draw a gray box instead of a grip in the lower
18153         right hand corner when there are both horizontal and vertical
18154         scroll bars.
18156 2005-01-14  Jackson Harper  <jackson@ximian.com>
18158         * Control.cs: When erasing backgrounds use FromHwnd instead of
18159         FromHdc when there is a NULL wparam. This occurs on the X driver.
18160         * XplatUIX11.cs: Set the wparam to NULL.
18162 2005-01-13  Jackson Harper  <jackson@ximian.com>
18164         * PictureBox.cs: Implement missing methods (except ToString, need
18165         to test that on windows) and events. When visibility is changed we
18166         need to redraw the image because the buffers are killed. When size
18167         is changed refresh if the sizemode needs it.
18169 2005-01-13  Peter Bartok  <pbartok@novell.com>
18171         * Control.cs (SelectNextControl): Was using wrong method to select
18172           a control
18174 2005-01-13  Jordi Mas i Hernandez <jordi@ximian.com>
18176         * ComboBox.cs: fixes dropstyle
18178 2005-01-13  Peter Bartok  <pbartok@novell.com>
18180         * Form.cs:
18181           - Implemented Select() override
18182           - Now handles WM_SETFOCUS/WM_KILLFOCUS messages
18183           - Now sets keyboard focus on startup
18184         * Control.cs (SelectNextControl): Now properly handles directed=true
18185         * TextBoxBase.cs:
18186           - WndProc: Now passes tab key on to base if AcceptTabChar=false
18187           - Added (really bad) focus rectangle (mostly for testing)
18188         * TextBox.cs: Added code to handle getting/loosing focus and invalidating
18189           to enforce redraw on focus changes
18190         * ContainerControl.cs:
18191           - Fixed detection of Shift-Tab key presses
18192           - Fixed traversal with arrow keys
18193         * XplatUIX11.cs: Implemented simulated keyboard focus; not sure if we're
18194           gonna keep this or if it's complete yet
18195         
18196 2005-01-13  Jordi Mas i Hernandez <jordi@ximian.com>
18198         * ComboBox.cs: missing properties, fixes
18200 2005-01-13  Peter Bartok  <pbartok@novell.com>
18202         * Panel.cs (ctor): Setting Selectable window style to off
18203         * Splitter.cs (ctor): Setting Selectable window style to off
18204         * GroupBox.cs (ctor): Setting Selectable window style to off
18205         * Label.cs (ctor): Setting Selectable window style to off
18207 2005-01-12  Miguel de Icaza  <miguel@ximian.com>
18209         * UpDownBase.cs (InitTimer): If the timer has been already
18210         created, enable it.
18212         Use a TextBox instead of a Label.
18214 2005-01-12  Jackson Harper  <jackson@ximian.com>
18216         * TreeView.cs: Refresh the tree after sorting the nodes. Always
18217         draw the connecting node lines (when ShowLines is true).
18218         * TreeNode.cs: The nodes index can now be updated. This is used
18219         when a node collection is sorted.
18220         * TreeNodeCollection.cs: Implement sorting. Nodes can be sorted on
18221         insert or an existing unsorted node collection can be sorted.
18222         
18223 2005-01-12  Peter Bartok  <pbartok@novell.com>
18225         * ContainerControl.cs: Implemented ProcessDialogKeys()
18227 2005-01-12  Peter Bartok  <pbartok@novell.com>
18229         * Control.cs:
18230           - Implemented SelectNextControl() method
18231           - Several focus related bug fixes
18232           - Fixed Docking calculations to match MS documentation and
18233             behaviour
18235 2005-01-12  Jordi Mas i Hernandez <jordi@ximian.com>
18237         * ContainerControl.cs, ListControl.cs, ListBox.cs: keyboard navigation and
18238         bug fixes
18240 2005-01-12  Peter Bartok  <pbartok@novell.com>
18242         * Control.cs:
18243           - Fixed broken Contains() method
18244           - Implemented GetNextControl() method. Finally. This is the pre-
18245             requisite for focus handling.
18247 2005-01-12  Peter Bartok  <pbartok@novell.com>
18249         * OSXStrucs.cs: Added
18251 2005-01-12  Peter Bartok  <pbartok@novell.com>
18253         * XplatUIWin32.cs:
18254           - Removed PeekMessageFlags
18255           - Implemented SetWindowStyle() method
18256         * XplatUIStructs.cs: Added PeekMessageFlags
18257         * X11Structs: Added missing border_width field to XWindowChanges struct
18258         * XplatUIX11.cs:
18259           - PeekMessage: Now throws exception if flags which are not yet
18260             supported are passed
18261           - Implemented SetWindowStyle() method
18262           - Fixed SetZOrder to handle AfterHwnd properly
18263         * XplatUI.cs: Added SetWindowStyle() method
18264         * XplatUIDriver.cs: Added SetWindowStyle() abstract
18265         * Control.cs:
18266           - Implemented UpdateStyles() method
18267           - Implemented UpdateZOrder() method
18268         * XplatUIOSX.cs: Added SetWindowStyle() stub
18270 2005-01-12  Geoff Norton  <gnorton@customerdna.com>
18272         * XplatUIOSX.cs: Fix SetZOrder (this needs more testing with a 3
18273         button mouse).
18276 2005-01-11  Jackson Harper  <jackson@ximian.com>
18278         * TreeView.cs: Still need to draw lines to siblings even if out of
18279         the current node is out of the clip.
18281 2005-01-11  Jackson Harper  <jackson@ximian.com>
18283         * TreeView.cs: When setting the hbar/vbar/grip position use
18284         SetBounds so that perform layout is only called once. Also suspend
18285         and resume layout so layout is only done once for all controls.
18286         - Removed some debug fluff
18287         * SizeGrip.cs: Call base implmentation in overriding methods.
18288         - When visibility is changed the drawing buffers are killed so we
18289         need to redraw.
18291 2005-01-11  Jackson Harper  <jackson@ximian.com>
18293         * TreeView.cs: Calculate the open node count while drawing. This
18294         saves us an entire tree traversal for every paint operation. Use
18295         a member var for the open node count so less vars are passed around.
18297 2005-01-11  John BouAntoun  <jba-mono@optusnet.com.au>
18299         * MonthCalendar.cs:
18300         - fixed selection to use mousemove, not mouse polling on timer
18301         * ThemeWin32Classic.cs
18302         - removed redundant unused variable "no_more_content"
18303         
18304 2005-01-11  Peter Bartok  <pbartok@novell.com>
18306         * XplatUIX11.cs (DoEvents): Needs to return when no more events
18307           are pending, so it now calls PeekMessage instead of GetMessage;
18308           implemented a incomplete version of PeekMessage
18309         
18310 2005-01-11  Peter Bartok  <pbartok@novell.com>
18312         * XplatUIWin32.cs: Switched P/Invokes to unicode charset to avoid
18313           I18n issues
18314         * TextBoxBase.cs: Added sending of TextChanged event
18316 2005-01-10  Jackson Harper  <jackson@ximian.com>
18318         * TreeView.cs: Try not to draw outside the clipping rectangle on
18319         each node element.
18321 2005-01-10  Jordi Mas i Hernandez <jordi@ximian.com>
18323         * ComboBox.cs: keyboard navigation, item navigation, bug fixes
18325 2005-01-10  Jackson Harper  <jackson@ximian.com>
18327         * TreeView.cs:
18328         - Implement fast scrolling. Now only the newly
18329         exposed nodes are drawn and the old image is moved using the
18330         XplatUI::ScrollWindow method.
18331         - Factor in height of nodes when calculating whether or not the
18332         node is in the clipping rect.
18334 2005-01-10  Jackson Harper  <jackson@ximian.com>
18336         * TreeNodeCollection.cs: Refresh the tree when a new node is added.
18338 2005-01-10  Peter Bartok  <pbartok@novell.com>
18340         * Application.cs: Added temporary hack to resolve all our resize
18341           required issues on startup. This will get fixed properly at
18342           some point in the future
18344 2005-01-10  Jackson Harper  <jackson@ximian.com>
18346         * SizeGrip.cs: New internal class that is used as a sizing
18347         grip control...hence the name.
18349 2005-01-10  Peter Bartok  <pbartok@novell.com>
18351         * Control.cs: Implemented proper TabIndex handling, now assigning
18352           a tabindex when a control is added to a container
18353         * GroupBox.cs (ctor): Now sets the Container style bit, required
18354           for Control.GetNextControl()
18356 2005-01-09  Jackson Harper  <jackson@ximian.com>
18358         * TextBoxBase.cs: Clear window when scrolling (fixes build).
18360 2005-01-09  Peter Bartok <pbartok@novell.com>
18362         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIOSX.cs,
18363           XplatUIX11.cs: Added ability to control ScrollWindow expose and
18364           an overload for ScrollWindow to allow only scrolling a rectangle
18366 2005-01-09  Peter Bartok <pbartok@novell.com>
18368         * Form.cs:
18369           - Implemented SetDesktopBounds method
18370           - Implemented SetDesktopLocation method
18372 2005-01-08  Jackson Harper  <jackson@ximian.com>
18374         * TreeView.cs: Only set the vbar's Maximum and LargeChange when
18375         the node count has changed, this removes to VScroll::Refresh calls
18376         when drawing.
18378 2005-01-08  Geoff Norton  <gnorton@customerdna.com>
18380         * XplatUIOSX.cs: Fix GetWindowState & SetWindowState
18382 2005-01-07  Jackson Harper  <jackson@ximian.com>
18384         * TreeNode.cs: Just update the single node when it is
18385         checked. Don't refresh after toggling, the Expand/Collapse already
18386         handles this.
18387         * TreeView.cs: Respect clipping a little more when drawing. Try
18388         not to redraw things that don't need to be redrawn. Just hide the
18389         scrollbars when they are no longer needed instead of removing
18390         them, so they don't have to be created again and again.
18391         
18392 2005-01-07  Geoff Norton  <gnorton@customerdna.com>
18394         * XplatUIOSX.cs (SetCaretPos):  We need to translate the view
18395         coordinates to window space to place the caret properly, FIXED.
18396         Implement GetWindowState & SetWindowState
18398 2005-01-06  Peter Bartok <pbartok@novell.com>
18400         * Form.cs:
18401           - Implemented ClientSize property
18402           - Implemented DesktopBounds property
18403           - Implemented DesktopLocation property
18404           - Implemented IsRestrictedWindow property
18405           - Implemented Size property
18406           - Implemented TopLevel property
18407           - Implemented FormWindowState property
18408         * Control.cs:
18409           - Implemented GetTopLevel() method
18410           - Implemented SetTopLevel() method
18411         * X11Structs.cs (Atom):
18412           - Added AnyPropertyType definition
18413           - Added MapState definiton and updated XWindowAttribute struct
18414         * XplatUI.cs: Added GetWindowState() and SetWindowState() methods
18415         * XplatUIDriver.cs: Added GetWindowState() and SetWindowState() methods
18416         * XplatUIOSX.cs: Stubbed GetWindowState() and SetWindowState() methods
18417         * XplatUIWin32.cs:
18418           - Implemented GetWindowState() and SetWindowState() methods
18419           - Fixed Win32GetWindowLong return type
18420         * XplatUIX11.cs:
18421           - Introduced central function for sending NET_WM messages
18422           - Implemented GetWindowState() and SetWindowState() methods
18423         * TextBoxBase.cs (set_Lines):
18424           - Now uses Foreground color for text added via Text property (Duh!)
18425           - Added code to remember programmatically requested size (fixes
18426             behaviour when Multiline is set after Size)
18427           - Added AutoSize logic
18429 2005-01-06  Jackson Harper  <jackson@ximian.com>
18431         * TreeView.cs: Draw the image after the checkbox if checkboxes are enabled.
18433 2005-01-06  Jackson Harper  <jackson@ximian.com>
18435         * ListBox.cs: Don't allow the horizontal scrollbars maximum to be
18436         set to less then 0.
18438 2005-01-06  Jackson Harper  <jackson@ximian.com>
18440         * ScrollableControl.cs: Lazy init the scrollbars.
18441         
18442 2005-01-06  Jackson Harper  <jackson@ximian.com>
18444         * Theme.cs: Speed up getting pens and solid brushes, by using
18445         their ARGB as a hash instead of tostring and not calling Contains.
18447 2005-01-06  Peter Bartok <pbartok@novell.com>
18449         * Form.cs:
18450           - Implemented OnActivated and OnDeactivate event trigger
18451           - Implemented Activate() method
18452           - Fixed ShowDialog() to activate the form that was active before
18453             the dialog was shown
18454         * XplatUIX11.cs:
18455           - Added global active_window var that tracks the currently active
18456             X11 window
18457           - Now always grabs Property changes from the root window to always
18458             catch changes on the active window property
18459           - Added code to PropertyNotify handler to send Active/Inactive
18460             messages when state changes. This puts X11 and Win32 en par on
18461             WM_ACTIVATE notifications (except for double notifications when
18462             the user clicks away from our modal window to another one of our
18463             windows)
18465 2005-01-05  Jackson Harper  <jackson@ximian.com>
18467         * ImageList.cs: Implment ctor
18469 2005-01-05  Geoff Norton  <gnorton@customerdna.com>
18471         * XplatUIOSX.cs: Implement Activate/SetTopmost
18473 2005-01-05  Geoff Norton  <gnorton@customerdna.com>
18475         * XplatUIOSX.cs: Implement SetZOrder, minor cleanup
18477 2005-01-05  Geoff Norton  <gnorton@customerdna.com>
18479         * XplatUIOSX.cs: Implement GetActive/SetFocus.
18481 2005-01-05  Peter Bartok <pbartok@novell.com>
18483         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIX11.cs,
18484           XplatUIOSX.cs: Added GetActive method to return the currently
18485           active window for the application (or null, if none is active)
18486         * Form.cs:
18487           - Implemented ActiveForm
18488           - Commented out owner assignment for modal dialogs (causes problems
18489             on Win32, since the owner will be disabled)
18490           - Reworked some Active/Focus handling (still incomplete)
18491         * CommonDialog.cs: Commented out owner assignment for modal dialogs
18492           (causes problems on Win32, since the owner will be disabled)
18493         * IWin32Window: Added ComVisible attribute
18495 2005-01-05  Peter Bartok <pbartok@novell.com>
18497         * ToolTip.cs (WndProc): Enable setting focus now that we have the
18498           required XplatUI functions.
18500 2005-01-05  Peter Bartok <pbartok@novell.com>
18502         * XplatUI.cs, XplatUIOSX.cs, XplatUIWin32.cs, XplatUIDriver.cs,
18503           XplatUIX11.cs, X11Structs.cs, Form.cs: Framework code required
18504           to implement focus and activation handling; still incomplete and
18505           with debug output
18507 2005-01-04  Peter Bartok <pbartok@novell.com>
18509         * TextBoxBase.cs: Changed access level for Document property to
18510           match switch to internal for TextControl
18512 2005-01-04  Peter Bartok <pbartok@novell.com>
18514         * AccessibleObject: Added ComVisible attribute
18516 2005-01-04  Jackson Harper  <jackson@ximian.com>
18518         * X11Keyboard.cs: Remove unneeded var.
18520 2005-01-04  Jackson Harper  <jackson@ximian.com>
18522         * XplatUIX11.cs (DoEvents): Implement, Just cast aside all events
18523         but PAINT.
18524         * XplatUIX11.cs (GetMessage): Call Exit when we get an unknown
18525         ClientMessage. This makes apps exit cleanly (more often).
18526         
18527 2005-01-04  Jackson Harper  <jackson@ximian.com>
18529         * TreeNode.cs: Patches by Kazuki Oikawa (kazuki@panicode.com) for
18530         handling focus, return correct colors and fonts,
18531         * TreeView.cs: Patches by Kazuki Oikawa (kazuki@panicode.com) to
18532         handle selection, horizontal scrolling, and mouse interaction.
18534 2005-01-04  Peter Bartok <pbartok@novell.com>
18536         * ICommandExecutor.cs: Added
18537         * IDataGridColumnStyleEditingNotificationService.cs: Added
18538         * IFeatureSupport.cs: Added
18539         * IFileReaderService.cs: Added
18540         * IDataObject.cs: Added ComVisible attribute
18541         * AmbientProperties.cs: Added
18542         * BaseCollection.cs: Added missing attributes
18543         * ListBindingConverter.cs: Added (stubbed, required for certain attributes)
18544         * BaseCollection.cs: Added missing attributes
18545         * Binding.cs: Added TypeConverter attribute
18546         * BindingContext.cs: Added DefaultEvent attribute
18547         * BindingsCollection.cs: Added DefaultEvent attribute
18548         * Button.cs: Added DefaultValue attribute
18549         * DragEventArgs.cs: Added ComVisible attribute
18550         * GiveFeedbackEventArgs.cs: Added ComVisible attribute
18551         * KeyEventArgs.cs: Added ComVisible attribute
18552         * KeyPressEventArgs.cs: Added ComVisible attribute
18553         * MouseEventArgs.cs: Added ComVisible attribute
18554         * NavigateEventArgs.cs: Added
18555         * NavigateEventHandler.cs: Added
18556         * FeatureSupport.cs: Added
18557         * OSFeature.cs: Added
18558         * Theme.cs: Added abstract Version property to support OSFeature
18559         * ThemeWin32Classic.cs: Added Version property to
18560           support OSFeature.Themes
18561         * ProgressBar.cs: Removed OnPaintBackground override, not required since
18562           the proper styles to avoid background drawing are set, also doesn't
18563           match MS signature
18564         * QueryAccessibilityHelpEventArgs.cs: Added ComVisible attribute
18565         * QueryContinueDragEventArgs.cs: Added ComVisible attribute
18566         * ScrollEventArgs.cs: Added ComVisible attribute
18567         * SplitterEventArgs.cs: Added ComVisible attribute
18568         * AccessibleSelection.cs: Added Flags attribute
18569         * Appearance.cs: Added ComVisible attribute
18570         * Border3DSide.cs: Added ComVisible attribute
18571         * Border3DStyle.cs: Added ComVisible attribute
18572         * BorderStyle.cs: Added ComVisible attribute
18573         * DragAction.cs: Added ComVisible attribute
18574         * ErrorBlinkStyle.cs: Added
18575         * ScrollEventType.cs: Added ComVisible attribute
18576         * AnchorStyles.cs: Added Editor attribute
18577         * DockStyle.cs: Added Editor attribute
18578         * HorizontalAlignment.cs: Added ComVisible attribute
18579         * HelpEventArgs.cs: Added ComVisible attribute
18580         * PaintEventArgs.cs: Added IDisposable
18582 2005-01-04  Peter Bartok <pbartok@novell.com>
18584         * TextControl.cs: Switched Line, LineTag and Document classes to
18585           internal
18587 2005-01-04  Jordi Mas i Hernandez <jordi@ximian.com>
18589         * ComboBox.cs, ThemeWin32Classic.cs, ListBox.cs, Theme.cs:
18590         Simple mode, fixes, IntegralHeight, etc.
18592 2005-01-04  Peter Bartok <pbartok@novell.com>
18594         * TextBoxBase.cs: Using proper font variable now
18596 2005-01-04  Peter Bartok <pbartok@novell.com>
18598         * Form.cs (ShowDialog): Set parent to owner, if provided
18599         * GroupBox.cs: Removed unused vars
18600         * TextControl.cs:
18601           - Added GetHashCode() for Document and LineTag classes
18602           - Removed unused variables
18603           - Added CharIndexToLineTag() and LineTagToCharIndex() methods
18604             to allow translation between continuous char position and line/pos
18605         * CheckBox.cs: Removed vars that are provided by base class
18606         * RadioButton.cs: Removed vars that are provided by base class, added
18607           new keyword where required
18608         * LinkLabel.cs: Added new keyword where required
18609         * Control.cs (WndProc): Removed unused variable
18610         * TextBoxBase.cs:
18611           - Finished SelectionLength property
18612           - Implemented SelectionStart property
18613           - Implemented Text property
18614           - Removed unused vars
18615         * MessageBox.cs: Added new keyword where required
18616         * TextBox.cs: Removed Text property code (now in TextBoxBase), fixed
18617           WndProc signature
18618         * MenuAPI.cs: Added new keyword where required
18619         * ButtonBase.cs: Removed vars that are provided by base class, added
18620           new keyword where required
18621         * ThemeWin32Classic.cs (DrawMonthCalendarDate): Now cast Math.Floor
18622           argument to double, to allow compiling with csc 2.0 (Atsushi ran
18623           into this)
18624         * Application.cs (Run): Now triggers the ThreadExit event
18625         * CommonDialog.cs: Added new keyword where required; now properly sets
18626           parent (owner) for dialog
18627         * XplatUIX11.cs: Commented out unused vars
18628         * StatusBar.cs: Fixed signature for Text property
18629         * TabPage.cs: Undid Jordi's removal of unused var, now using the var
18631 2005-01-04  Jordi Mas i Hernandez <jordi@ximian.com>
18633         * ComboBox.cs, TabPage.cs, MenuAPI.cs, ThemeWin32Classic.cs,
18634         TrackBar.cs, MonthCalendar.cs: remove unused vars
18636 2005-01-03  Jackson Harper  <jackson@ximian.com>
18638         * ThemeWin32Classic.cs:
18639         * X11Keyboard.cs: Remove unused vars.
18641 2005-01-03  Peter Bartok  <pbartok@novell.com>
18643         * TextBox.cs:
18644           - set_Text: Tied into TextControl
18645           - set_TextAlignment: Tied into TextControl
18646         * TextControl.cs:
18647           - Added alignment properties and implemented alignment handling
18648             and drawing (still has a bug, not generating proper expose events)
18649           - Added new Line() constructor to allow passing the line alignment
18650           - Fixed selection setting, properly handling end<start now
18651           - Added aligment considerations to RecalculateDocument()
18652         * TextBoxBase.cs:
18653           - Now properly enforces control height for single line controls
18654           - Added support for CharacterCasing
18655           - Added IsInputKey override
18656           - Fixed Keys.Enter logic
18657           - Added SetBoundsCore override
18658           - Fixed mouse selection handling
18660 2005-01-03  Jackson Harper  <jackson@ximian.com>
18662         * TreeView.cs:
18663           - Collapse and uncheck all nodes when CheckBoxes is disabled.
18664           - Checkboxes are always aligned to the bottom of the node,
18665           regardless of item height.
18666           - Use the node bounds to draw the text so we can center it when
18667           the item height is greater then the font height.
18668           - Node::Bounds are only the text part of the node.
18669         * TreeNode.cs: New method to combine collapsing and unchecking all
18670           nodes recursively.
18672 2005-01-02  Jackson Harper  <jackson@ximian.com>
18674         * TreeView.cs: Draw checkmarks, handle detecting check mark clicks
18675         * TreeNode.cs: Add a bounding box for the checkbox, refresh the
18676         tree when a check is changed. TODO: Only refresh the checked node.
18678 2004-12-30  Jackson Harper  <jackson@ximian.com>
18680         * TreeView.cs: Draw checkbox boxes when checkboxes are enabled.
18681         * TreeNode.cs: When collapsing make sure to never collapse the
18682         root node.
18684 2004-12-29  Jackson Harper  <jackson@ximian.com>
18686         * TreeView.cs: Align lines to the bottom of plus minus boxes properly.
18687         
18688 2004-12-28  Zoltan Varga  <vargaz@freemail.hu>
18690         * X11Structs.cs X11Keyboard.cs XplatUIX11.cs: Fix 64 bit issues.
18692 2004-12-28  Peter Bartok  <pbartok@novell.com>
18694         * MessageBox.cs (get_CreateParams): Don't use owner var if it's
18695           not yet assigned
18697 2004-12-28  Peter Bartok  <pbartok@novell.com>
18699         * Control.cs (WndProc): Added WM_HELP handler, now generates
18700           HelpRequested event
18701         * Form.cs: Added HelpButton property and required support code
18702         * XplatUIStructs.cs: Added HELPINFO structure for WM_HELP handling
18704 2004-12-28  Peter Bartok  <pbartok@novell.com>
18706         * CommonDialog.cs:
18707           - Made DialogForm.owner variable internal
18708           - Added check to ensure owner form is set before setting
18709             owner properties in CreateParams
18711 2004-12-28  Geoff Norton  <gnorton@customerdna.com>
18713         * XplatUIOSX.cs: Implement mouse hovering.  Fix QDPoint struct to avoid
18714           swizzling.  Implement ClientToScreen and ScreenToClient.  Implement
18715           GetCursorPos.  Fix major visibility issues.  Rework the windowing
18716           system to support borderless/titleless windows (implements menus).
18717           Fix GetWindowPos.  Implement initial background color support for
18718           views.
18720 2004-12-28  Peter Bartok  <pbartok@novell.com>
18722         * Form.cs (get_CreateParams): Make sure we have an owner before using
18723           the owner variable. Implement proper default if no owner exists
18725 2004-12-28  Peter Bartok  <pbartok@novell.com>
18727         * In preparation for making Managed.Windows.Forms the default build target
18728           for System.Windows.Forms, the following stubbed files were added.
18729           Dialogs are currently being implemented by contributors and are only
18730           short-term place holders.
18731         * ColorDialog.cs: Initial check-in (minmal stub)
18732         * DataGrid.cs: Initial check-in (minimal stub)
18733         * DataGridLineStyle.cs: Initial check-in (minimal stub)
18734         * DataGridParentRowsLabelStyle.cs: Initial check-in (minimal stub)
18735         * DataGridTableStyle.cs: Initial check-in (minimal stub)
18736         * FontDialog.cs: Initial check-in (minimal stub)
18737         * FileDialog.cs: Initial check-in (minimal stub)
18738         * GridColumnStylesCollection.cs: Initial check-in (minimal stub)
18739         * GridTableStylesCollection.cs: Initial check-in (minimal stub)
18740         * OpenFileDialog: Initial check-in (minimal stub)
18741         * IComponentEditorPageSite.cs: Initial check-in
18742         * Splitter.cs: Initial check-in (for Jackson)
18743         * SplitterEventArgs.cs: Initial check-in (for Jackson)
18744         * SplitterEventHandler.cs: Initial check-in (for Jackson)
18745         * TextBox.cs: Initial check-in; still needs some wiring to
18746           TextControl backend
18747         * Form.cs: Implemented ControlBox property
18748         * MessageBox.cs: Added proper coding for Minimize/Maximize/ControlBox
18749         * CommonDialog.cs: Added proper coding for Minimize/Maximize/ControlBox
18750         * TextControl.cs: Added selection functionality; added todo header
18751         * TextBoxBase.cs:
18752           - Implemented Lines property
18753           - Implemented TextHeight property
18754           - Implemented SelectedText property
18755           - Implemented SelectionLength property
18756           - Implemented SelectAll method
18757           - Implemented ToString method
18758           - Removed and cleaned up some debug code
18759           - Implemented (still buggy) mouse text selection
18761 2004-12-27  Jordi Mas i Hernandez <jordi@ximian.com>
18763         * ComboBox.cs: Complete DropDownList implementation, fixes.
18765 2004-12-26  Jordi Mas i Hernandez <jordi@ximian.com>
18767         * ThemeWin32Classic, Theme.cs: ComboBox drawing methods
18768         * ComboBoxStyle.cs: ComboBoxStyle enum
18769         * ComboBox.cs: Initial work on ComboBox control
18771 2004-12-21  Peter Bartok  <pbartok@novell.com>
18773         * Control.cs (ctor, CreateParams): Moved setting of is_visible
18774           forward so that anything that creates a window gets the default,
18775           also no longer uses Visible property in CreateParams to avoid
18776           walking up the parent chain and possibly get the wrong visible
18777           status. Fixed IsVisible to no longer walk up to the parent.
18779 2004-12-21  Peter Bartok  <pbartok@novell.com>
18781         * Form.cs (ShowDialog): Unset modality for the proper window
18783 2004-12-20  Peter Bartok  <pbartok@novell.com>
18785         * CommonDialog.cs: Initial check-in
18787 2004-12-20  Peter Bartok  <pbartok@novell.com>
18789         * Control.cs (Visible): Now uses the parent window instead of the
18790           client area window for the property
18792         * Form.cs
18793           - ShowDialog(): Now uses the proper window for modality
18794           - The default visibility state for the form parent is now false. This
18795             will prevent the user from seeing all the changes to the form and
18796             its controls before the application hits Application.Run()
18797           - Removed some stale commented out code
18799         * NativeWindow.cs:
18800           - Added FindWindow() method to have a method to check for existence
18801             of a window handle
18802           - Added ability to override default exception handling (for example
18803             when debugging with VS.Net; to do this the ExternalExceptionHandler
18804             define must be set
18805           - Removed some useless debug output
18807         * XplatUIX11.cs:
18808           - Removed r37929 (SetModal patch from Ashwin Bharambe), was
18809             not working as expected
18810           - Implemented modal_window stack and checking for _WM_ACTIVE_WINDOW
18811             property to allow switching back to the modal window if focus is
18812             given to another one of our windows (Application Modal)
18813           - Now only sets override_redirect if we create a window
18814             without WS_CAPTION
18815           - Moved EventMask selection before mapping of newly created window
18816             so we can catch the map event as well
18817           - Implemented Activate() method via the _WM_ACTIVE_WINDOW property
18818           - Added various Atom related DllImports
18819           - Implemented Exit() method
18820           - .ctor() : No longer shows window if WS_VISIBLE is not defined
18821             in the CreateParams
18823         * MessageBox.cs: Now properly deals with the FormParent window by
18824           providing an override the FormParent CreateParams property to
18825           set as POPUP instead of OVERLAPPED window.
18827 2004-12-19  Geoff Norton  <gnorton@customerdna.com>
18829         * XplatUIOSX.cs: Implement DestroyWindow.  Implement ScrollWindow
18830         Minor code cleanup.
18832 2004-12-19  Geoff Norton  <gnorton@customerdna.com>
18833         
18834         * XplatUIOSX.cs (SetModal): Implement this method on OSX.
18836 2004-12-18  Peter Bartok  <pbartok@novell.com>
18838         * XplatUIX11.cs (SetModal): Applied patch from Ashwin Bharambe,
18839           implementing SetModal() method
18841 2004-12-18  Peter Bartok  <pbartok@novell.com>
18843         * X11Structs.cs (XGCValues): Fixed type of function element
18844         * XplatUI.cs: Added ScrollWindow() method
18845         * XplatUIDriver.cs: Added ScrollWindow() abstract
18846         * XplatUIWin32.cs: Implemented ScrollWindow() method
18847         * XplatUIX11.cs: Implemented ScrollWindow() method
18848         * XplatUIOSX.cs: Stubbed out ScrollWindow() method
18850 2004-12-17  Geoff Norton  <gnorton@customerdna.com>
18852         * XplatUIOSX.cs:  Fix cursor to use an Invert instead of drawing it
18853         Some more keyboard support (INCOMPLETE)
18855 2004-12-17  Peter Bartok  <pbartok@novell.com>
18857         * TextControl.cs:
18858         - Added color attribute to line tags.
18859         - Added color argument to all functions dealing with tags
18860         - Added color argument support to various functions
18861         - Fixed miss-calculation of baseline/shift in certain circumstances
18863         * TextBoxBase.cs: Added new color option to test code
18865 2004-12-17  Jackson Harper  <jackson@ximian.com>
18867         * TreeNode.cs:
18868         * MonthCalendar.cs: Signature fixes
18870 2004-12-17  Geoff Norton  <gnorton@customerdna.com>
18872         * XplatUIOSX.cs: Find the missing caret; caret was dissappearing after a
18873         keyboard event moved it.  Create a new graphics context for each paint resolves this
18875 2004-12-17  Geoff Norton  <gnorton@customerdna.com>
18877         * XplatUIOSX.cs: Fix hard cpu eat on loop with existing timers,
18878         Make caret exist and go blink blink.  Initial keyboard support.
18879         Fix exception handler, Add Invalidate support.  Change way RefreshWindow
18880         works.
18882 2004-12-17  Jackson Harper  <jackson@ximian.com>
18884         * XplatUIStructs.cs: Updated set of virtual keycodes.
18885         * KeyboardLayouts.cs: SCROLL_LOCK is now SCROLL
18887 2004-12-17  Jackson Harper  <jackson@ximian.com>
18889         * XplatUIX11.cs: Prune old keyboard code.
18891 2004-12-17  Jackson Harper  <jackson@ximian.com>
18893         * XplatUIX11.cs: When generating mouse wparams get the modifier
18894         keys from the ModifierKeys property.
18896 2004-12-17  Jackson Harper  <jackson@ximian.com>
18898         * X11Keyboard.cs: Send up/down input when generating
18899         messages. Remove some unused vars.
18901 2004-12-17  Jackson Harper  <jackson@ximian.com>
18903         * TabControl.cs:
18904         * TreeView.cs: get rid of warnings.
18906 2004-12-17  Jackson Harper  <jackson@ximian.com>
18908         * XplatUIStructs.cs: Fix a couple wrong virtual keycodes.
18910 2004-12-17  Jordi Mas i Hernandez <jordi@ximian.com>
18912         * ListBox.cs: bug fixes, changes for CheckedListBox.cs
18913           CheckedListBox.cs: Implementation
18915 2004-12-17  Peter Bartok  <pbartok@novell.com>
18917         * TextControl.cs (RecalculateLine): Fixed baseline aligning calcs
18919 2004-12-16  Peter Bartok  <pbartok@novell.com>
18921         * TextControl.cs:
18922           - InsertCharAtCaret(): Fixed start pos fixup
18923           - CaretLine_get: No longer derives the line from the tag, the tag
18924             could be stale if lines in the document have been added or deleted
18925           - RebalanceAfterDelete(): Fixed bug in balancing code
18926           - RebalanceAfterAdd(): Fixed really stupid bug in balancing code
18927           - Line.Streamline(): Now can also elminate leading empty tags
18928           - DumpTree(): Added a few more tests and prevented exception on
18929             uninitialized data
18930           - Added Debug section for Combining lines
18931           - Delete(): Now copies all remaining properties of a line
18932           
18933         * TextBoxBase.cs:
18934           - Left mousebutton now sets the caret (and middle button still acts
18935             as formatting tester, which must go away soon)
18936           - Added Debug section for Deleting/Combining lines
18937           - Fixed calculations for UpdateView after Combining lines
18939 2004-12-16  Peter Bartok  <pbartok@novell.com>
18941         * TextControl.cs: Now properly aligns text on a baseline, using the
18942           new XplatUI.GetFontMetrics() method. Simplified several calculations
18943         * TextBoxBase.cs: Moved #endif to allow compiling if Debug is not
18944           defined
18946 2004-12-16  Peter Bartok  <pbartok@novell.com>
18948         * XplatUI.cs: Added GetFontMetrics() method
18949         * XplatUIDriver.cs: Added GetFontMetrics() abstract
18950         * XplatUIX11.cs: Implemented GetFontMetrics() method, now calls
18951           into libgdiplus, our private GetFontMetrics function
18952         * XplatUIOSX.cs: Implemented GetFontMetrics() method, same as X11
18953         * XplatUIWin32.cs: Implemented GetFontMetrics() method
18955 2004-12-16  Jackson Harper  <jackson@ximain.com>
18957         * XplatUIStruct.cs: Add enum for dead keys
18958         * X11Keyboard.cs: Map and unmap dead keys.
18960 2004-12-16  Jackson Harper  <jackson@ximian.com>
18962         * X11Keyboard.cs: Detect and use the num lock mask.
18964 2004-12-16  Peter Bartok  <pbartok@novell.com>
18966         * Control.cs (CreateGraphics): Added check to make sure the
18967           handle of the window exists before calling Graphics.FromHwnd()
18969 2004-12-16  Peter Bartok  <pbartok@novell.com>
18971         * TextBoxBase.cs: Initial check-in. DO NOT TRY TO USE THIS YET. It
18972           contains a lot of code that's not supposed to be there for the
18973           real thing, but required for developing/testing the textbox
18974           backend.
18976 2004-12-16  Peter Bartok  <pbartok@novell.com>
18978         * TextControl.cs:
18979         - Fixed Streamline method
18980         - Added FindTag method to Line
18981         - Added DumpTree method for debugging
18982         - Added DecrementLines() method for deleting lines
18983         - Fixed UpdateView to update the cursor to end-of-line on single-line
18984           updates
18985         - Added PositionCaret() method
18986         - Fixed MoveCaret(LineDown) to move into the last line, too
18987         - Added InsertChar overload
18988         - Fixed InsertChar tag offset calculations
18989         - Added DeleteChar() method
18990         - Added Combine() method for folding lines
18991         - Fixed Delete() method, no longer allocates wasted Line object and
18992           now copies all properties when swapping nodes
18993         - Delete() method now updates document line counter
18995 2004-12-15  Jackson Harper  <jackson@ximian.com>
18997         * XplatUIX11.cs: Get the modifier keys from the keyboard driver
18998         * X11Keyboard.cs: Expose the currently selected modifier keys
18999         through a property.
19001 2004-12-15  Peter Bartok  <pbartok@novell.com>
19003         * TextControl.cs: Initial check-in. Still incomplete
19005 2004-12-15  Jackson Harper  <jackson@ximian.com>
19007         * TreeNode.cs:
19008         * TreeView.cs: Fix build on csc (second time today ;-))
19010 2004-12-15  Jackson Harper  <jackson@ximian.com>
19012         * TreeView.cs: Store the treenodes plus/minus box bounds when it
19013         is calculated and use this for click testing.
19014         * TreeNode.cs: Add functionality to store the nodes plus minus box bounds.
19016 2004-12-15  Jackson Harper  <jackson@ximian.com>
19018         * TreeView.cs: Pass the nodes image index to the image list when
19019         drawing that image.
19021 2004-12-15  Jackson Harper  <jackson@ximian.com>
19023         * X11Keyboard.cs: Set messages hwnd.
19024         * XplatUIX11.cs: Pass proper hwnd wot keyboard driver. Set hwnd on
19025         post_message calls.
19027 2004-12-15  Jackson Harper  <jackson@ximian.com>
19029         * X11Keyboard.cs: Fix to compile with csc.
19030         
19031 2004-12-15  Jackson Harper  <jackson@ximian.com>
19033         * X11Structs.cs: Add key mask values
19034         * XplatUIStruct.cs: Add keyboard event flags, and keyboard definitions
19035         * X11Keyboard.cs: New file - Extrapolates and interpolates key
19036         down/up foo into WM_CHAR foo
19037         * KeyboardLayouts.cs: Common keyboard layouts
19038         * XplatUIX11.cs: Add the keyboard driver. Add functionality to
19039         post messages into the main queue.
19041 2004-12-13  Jordi Mas i Hernandez <jordi@ximian.com>
19043         * Button.cs: implement ProcessMnemonic
19044         * ThemeWin32Classic.cs: use ResPool (caching) instead of creating
19045           brushes everytime
19046         * Control.cs: fixes IsMnemonic (support for &&, case insensitive, etc)
19047         * ButtonBase.cs: Show HotkeyPrefix (not the &)
19049 2004-12-12  John BouAntoun  <jba-mon@optusnet.com.au>
19050         
19051         * MonthCalendar.cs: Implemented click-hold for next/previous month
19052           and date selection
19053           
19054 2004-12-11  Peter Bartok  <pbartok@novell.com>
19056         * X11Structs.cs:
19057           - Added XKeyboardState (moved from XplatUIX11.cs)
19058           - Added XCreateGC related enums and structures
19059           - Added GXFunction for XSetFunction
19061         * XplatUIStructs.cs: Added missing WS_EX_xxx definitions
19063         * XplatUI.cs: Added CreateCaret(), DestroyCaret(), SetCaretPos() and
19064           CaretVisible() calls
19066         * ToolTip.cs: Added code to prevent stealing focus from app windows
19068         * XplatUIDriver.cs: Added abstracts for caret functions (CreateCaret,
19069           DestroyCaret, SetCaretPos and CaretVisible)
19071         * XplatUIX11.cs:
19072           - Added implementation for caret functions
19073           - Moved hover variables into a struct, to make it a bit easier
19074             on the eyes and to debug
19075           - Removed XKeyboardState (moved to XplatUIX11.cs)
19076           - Moved Keyboard properties into the properties region
19078         * Control.cs (get_Region): Control.CreateGraphics is the appropriate
19079           call to get a graphics context for our control
19081         * XplatUIOSX.cs: Added empty overrides for the new caret functions
19083         * TreeView.cs: Fixed bug. No matter what color was set it would always
19084           return SystemColors.Window
19086         * XplatUIWin32.cs: Implemented caret overrides
19088 2004-12-10  Jordi Mas i Hernandez <jordi@ximian.com>
19090         * ListBox.cs: fire events, implement missing methods and properties,
19091         sorting.
19093 2004-12-10  John BouAntoun <jba-mono@optusnet.com.au>
19095         * MonthCalendar.cs: invalidation bug fixing
19096         * ThemeWin32Classic.cs: paint fixing
19098 2004-12-09  Geoff Norton  <gnorton@customerdna.com>
19100         * XplatUIOSX.cs: Refactor to pass the real hwnd into Graphics.FromHwnd, we
19101         prepare the CGContextRef there now.
19103 2004-12-09  John BouAntoun <jba-mono@optusnet.com.au>
19105         * MonthCalendar.cs:
19106           - optimisationL only invalidate areas that have changed
19107         * ThemeWin32Classic.cs:
19108           - only paint parts that intersect with clip_area
19110 2004-12-09  Peter Bartok  <pbartok@novell.com>
19112         * Application.cs: Undid changes from r37004 which cause problems
19113         on X11
19115 2004-12-09  Ravindra  <rkumar@novell.com>
19117         * ToolBar.cs: Added support for displaying ContextMenu
19118         attached to a button on ToolBar.
19119         * ToolBarButton.cs: Uncomment/fixed the DropDownMenu
19120         property.
19122 2004-12-09  Jordi Mas i Hernandez <jordi@ximian.com>
19124         * Label.cs: autosize works in text change and removes unnecessary
19125         invalidate
19127 2004-12-09  Jordi Mas i Hernandez <jordi@ximian.com>
19129         * ThemeWin32Classic.cs, XplatUIOSX.cs, XplatUIWin32.cs:
19130         remove warnings
19132 2004-12-08  Geoff Norton  <gnorton@customerdna.com>
19134         * XplatUIOSX.cs: Added mouse move/click/grab support
19135         Remove some debugging WriteLines not needed anymore.
19136         Add window resizing/positioning.
19137         Fix visibility on reparenting.
19139 2004-12-08  Peter Bartok  <pbartok@novell.com>
19141         * XplatUIOSX.cs: Added Idle event, now compiles on VS.Net
19143 2004-12-07  Geoff Norton  <gnorton@customerdna.com>
19145         * XplatUIOSX.cs: Initial checkin
19146         * XplatUI.cs: Use the Quartz driver if the environment is set to use it
19148 2004-12-03  Ravindra <rkumar@novell.com>
19150         * ListView.cs: Added some keybindings and fixed scrolling.
19151         ScrollBars listen to ValueChanged event instead of Scroll
19152         Event. This would let us take care of all changes being
19153         done in the scrollbars' values programmatically or manually.
19154         * ListView.cs (CanMultiselect): Added a check for shift key.
19155         * ListView.cs (EnsureVisible): Fixed. Do proper scrolling.
19156         * ListViewItem.cs (Clone): Fixed. We need to make a copy
19157         of ListViewSubItemCollection as well.
19159 2004-12-06  Peter Bartok <pbartok@novell.com>
19161         * Control.cs (Parent): Added check and exception to prevent
19162         circular parenting
19164 2004-12-03  Jordi Mas i Hernandez <jordi@ximian.com>
19166         * ListBox.cs: implemented clipping, selection single and multiple,
19167         bug fixing
19169 2004-12-03  Ravindra <rkumar@novell.com>
19171         * ListView.cs (ListView_KeyDown):
19172         * ListView.cs (ListView_KeyUp): Fixed multiple selection handling
19173         when CTRL key is pressed.
19174         * ListViewItem.cs (Selected): Fixed setting the property.
19176 2004-12-03  Marek Safar  <marek.safar@seznam.cz>
19178         * Application.cs (OnThreadException): Use ThreadExceptionDialog.
19180         * Form.cs: Add ActiveForm, FormBorderStyle, MaximizeBox,
19181         MinimizeBox, ShowInTaskbar, TopMost properties.
19183         * ThreadExceptionDialog.cs: Implemented (disabled TextBox until
19184         will be implemented).
19186 2004-12-03  Marek Safar  <marek.safar@seznam.cz>
19188         * OwnerDrawPropertyBag.cs: New internal parameterless ctor.
19190         * TreeNode.cs: Implemented ICloneable, Fixed to pass my simple
19191         tests.
19192         
19193         * TreeNodeCollection.cs: Add exception throwing for Add,AddRange.
19194         
19195         * TreeView.cs: BackColor is Colors.Window.
19197 2004-12-01  Jackson Harper  <jackson@ximian.com>
19199         * TreeView.cs: When resizing the tree if the user is making it
19200         smaller we don't get expose events, so we need to handle adding
19201         the horizontal scrollbar in the size changed handler as well as
19202         the expose handler.
19204 2004-12-02  Jordi Mas i Hernandez <jordi@ximian.com>
19206         * DrawItemState.cs: fixes wrong enum values
19208 2004-12-01  Jackson Harper  <jackson@ximian.com>
19210         * TreeView.cs: Resize the hbar as well as the vbar on resize.
19212 2004-12-01  Jackson Harper  <jackson@ximian.com>
19214         * NodeLabelEditEventArgs.cs:
19215         * NodeLabelEditEventHandler.cs:
19216         * OpenTreeNodeEnumerator.cs:
19217         * TreeNode.cs:
19218         * TreeNodeCollection.cs:
19219         * TreeView.cs:
19220         * TreeViewAction.cs:
19221         * TreeViewCancelEventArgs.cs:
19222         * TreeViewCancelEventHandler.cs:
19223         * TreeViewEventArgs.cs:
19224         * TreeViewEventHandler.cs: Initial implementation.
19226 2004-12-01  Ravindra <rkumar@novell.com>
19228         * ListView.cs (CalculateListView): Fixed scrolling related
19229         calculations. Also, removed some debug statements from other
19230         places.
19231         * ListViewItem.cs: Changed access to 'selected' instance variable
19232         from private to internal.
19233         * ThemeWin32Classic.cs (DrawListViewItem): Fixed SubItem drawing.
19235 2004-12-01  Jordi Mas i Hernandez <jordi@ximian.com>
19237         * ThemeWin32Classic.cs: remove cache of brush and pens for
19238         specific controls and use the global system, fixes scrollbutton
19239         bugs (for small sizes, disabled, etc)
19240         
19241         * ScrollBar.cs: does not show the thumb for very small controls
19242         (as MS) and allow smaller buttons that the regular size
19244 2004-12-01  Miguel de Icaza  <miguel@ximian.com>
19246         * UpDownBase.cs: Add abstract methods for the interface.
19247         Add new virtual methods (need to be hooked up to TextEntry when it
19248         exists).
19249         Add override methods for most features.
19250         Computes the size, forces the height of the text entry.
19252         * NumericUpDown.cs: Put here the current testing code.
19254         * Set eol-style property on all files that do not have mixed line
19255         endings, to minimize the future problems.  There are still a few
19256         files with mixed endings, and someone should choose whether they
19257         want to move it or not.
19259 2004-11-30  Jordi Mas i Hernandez <jordi@ximian.com>
19261         * MonthCalendar.cs, ListView.cs: use Theme colours instead of
19262         System.Colors
19263         
19264 2004-11-30  Ravindra <rkumar@novell.com>
19266         * ThemeWin32Classic.cs (DrawListViewItem): Fixed selected item
19267         drawing and replaced use of SystemColors by theme colors.
19268         * ListView.cs (ListView_Paint): Fixed painting done during scrolling.
19269         * ListView.cs (ListViewItemCollection.Add): Throw exception when
19270         same ListViewItem is being added more than once.
19272 2004-11-30  John BouAntoun <jba-mono@optusnet.com.au>
19274         * MonthCalendar.cs:
19275           - ControlStyles love to make the control not flicker
19276           
19277 2004-11-30  Peter Bartok  <pbartok@novell.com>
19279         * CharacterCasing.cs: Added
19281 2004-11-29  Peter Bartok  <pbartok@novell.com>
19283         * TreeNode.cs, TreeNodeCollection.cs, TreeView.cs,
19284           TreeViewAction.cs, TreeViewEventArgs.cs: Removed new files.
19285           I am removing these files as they conflict with already completed
19286           work. While it is fantastic to get contributions to MWF, I
19287           respectfully ask that everyone please coordinate their contributions
19288           through mono-winforms-list or #mono-winforms at this time. We're
19289           explicitly avoiding stubbing and don't want controls that don't have
19290           their basic functionality implemented in svn. Please also see
19291           http://www.mono-project.com/contributing/winforms.html
19294 2004-11-29  Marek Safar  <marek.safar@seznam.cz>
19296         * Application.cs (ModalRun): Don't hang after exit.
19298         * Theme.cs: New TreeViewDefaultSize property.
19300         * ThemeWin32Classic.cs: Replaced hardcoded defaultWindowBackColor
19301         with less hardcoded SystemColors constant.
19302         Implemented TreeViewDefaultSize.
19304         * TreeNode.cs, TreeNodeCollection.cs, TreeView.cs,
19305         TreeViewAction.cs, TreeViewEventArgs.cs: New files.
19308 2004-11-29  John BouAntoun <jba-mono@optusnet.com.au>
19310         * MonthCalendar.cs:
19311           - Fix NextMonthDate and PrevMonthDate click moving calendar
19313 2004-11-26  John BouAntoun <jba-mono@optusnet.com.au>
19315         * MonthCalendar.cs:
19316           - Fix usage of ScrollChange Property when scrolling months
19318 2004-11-26  Jordi Mas i Hernandez <jordi@ximian.com>
19320         * Menu.cs, MainMenu.cs, MenuItem.cs, MenuAPI.cs
19321          - Fixes menu destroying
19322          - Support adding and removing items on already created menus
19324 2004-11-26  John BouAntoun <jba-mono@optusnet.com.au>
19326         * MonthCalendar.cs:
19327           - Re-worked all bolded dates handling to match win32
19328         * ThemeWin32Classic.cs:
19329           - Fixed rendering with bolded dates
19331 2004-11-25  Jordi Mas i Hernandez <jordi@ximian.com>
19333         * ListBox.cs, Theme.cs, ThemeWin32Classic.cs:
19334         - Horizontal scroolbar
19335         - Multicolumn
19336         - Fixes
19339 2004-11-25  John BouAntoun <jba-mono@optusnet.com.au>
19341         * MonthCalendar.cs:
19342           - Fix Usage of MaxSelectionCount from SelectionRange
19343           - Fixed Shift + Cursor Selection
19344           - Fixed Shift + (Pg up/Pg dn, Home/End) selection
19345           - Fixed normal cursor selection to be compat with win32
19346           - Fixed Shift + Mouse Click selection
19348 2004-11-24  Peter Bartok <pbartok@novell.com>
19350         * XplatUI.cs (DispatchMessage): Switched to return IntPtr
19351         * XplatUIDriver.cs (DispatchMessage): Switched to return IntPtr
19352         * XplatUIX11.cs:
19353           - CreatedKeyBoardMsg now updates keystate with Alt key
19354           - Added workaround for timer crash to CheckTimers, Jackson will
19355             develop a proper fix and check in later
19356           - Implemented DispatchMessage
19357           - Removed calling the native window proc from GetMessage (call
19358             now moved to DispatchMessage)
19360         * KeyEventArgs.cs (Constructor): Now combines modifierkeys into
19361           the keydata (Fixes bug #69831)
19363         * XplatUIWin32.cs:
19364           - (DispatchMessage): Switched to return IntPtr
19365           - Added DllImport for SetFocus
19367 2004-11-24  Ravindra <rkumar@novell.com>
19369         * ThemeWin32Classic.cs: Fixed ListView border and checkbox
19370         background drawing.
19371         * ListViewItem.cs: Fixed various properties, calculations
19372         and Clone() method. Fixed ListViewSubItemCollection.Clear() method.
19373         * ListView.cs: Fixed calculations, BackColor, ForeColor properties
19374         and some internal properties. Fixed MouseDown handler and Paint
19375         method.
19377 2004-11-24  John BouAntoun <jba-mono@optusnet.com.au>
19379         * MonthCalendar.cs: Add TitleMonth ContextMenu handling
19381 2004-11-24  John BouAntoun <jba-mono@optusnet.com.au>
19383         * ContainerControl.cs: correct accidental check in of local changes
19385 2004-11-24  John BouAntoun <jba-mono@optusnet.com.au>
19387         * ThemeWin32Classic.cs:
19388                 - Fixed Drawing Last month in grid (sometimes not showing)
19389         * MonthCalendar.cs:
19390                 - Fixed title width calculation bug (makeing title small)
19392 2004-11-23  Peter Bartok <pbartok@novell.com>
19394         * XplatUIX11.cs:
19395           - Added generation of WM_MOUSEHOVER event
19396           - Added missing assignment of async_method atom
19397           - Fixed WM_ERASEBKGND; now only redraws the exposed area
19399 2004-11-23  John BouAntoun <jba-mono@optusnet.com.au>
19401         * ThemeWin32Classic.cs:
19402                 - Fixed Drawing of today circle when showtodaycircle not set
19403                 - fixed drawing of first and last month in the grid (gay dates)
19404         * MonthCalendar.cs:
19405                 - Fixed Drawing of today circle
19406                 - Fixed drawing of grady dates
19407                 - Fixed HitTest for today link when ShowToday set to false
19408                 - Fixed DefaultSize to obey ShowToday
19410 2004-11-23  John BouAntoun <jba-mono@optusnet.com.au>
19412         * ThemeWin32Classic.cs: Fixed DrawMonthCalendar and private support methods
19413         * System.Windows.Forms/Theme.cs
19414         * MonthCalendar.cs: added for MonthCalendar
19415         * SelectionRange.cs: added for MonthCalendar
19416         * Day.cs: added for MonthCalendar: added for MonthCalendar
19417         * DateRangeEventArgs.cs: added for MonthCalendar
19418         * DateRangeEventHandler.cs: added for MonthCalendar
19420 2004-11-22  Ravindra <rkumar@novell.com>
19422         * ThemeWin32Classic.cs: Fixed ListViewDrawing with 'UseItemStyleForSubItems'
19423         property.
19425 2004-11-22  Miguel de Icaza  <miguel@ximian.com>
19427         * UpDownBase.cs (InitTimer): Use prehistoric C# 1.0 notation for
19428         event handler.
19429         
19430         * NumericUpDown.cs: Added new implementation.
19431         * UpDownBase.cs: Added new implementation.
19433         * XplatUIWin32.cs (KeyboardSpeed, KeyboardDelay): added default
19434         implementations.
19435         
19436         * XplatUIX11.cs (KeyboardSpeed, KeyboardDelay): added default
19437         implementations.
19439         * XplatUIDriver.cs ((KeyboardSpeed, KeyboardDelay): added new
19440         methods.
19442 2004-11-21  Miguel de Icaza  <miguel@ximian.com>
19444         * Timer.cs  (Dispose): Should call the base dispose when
19445         overriding.
19447 2004-11-19  Jordi Mas i Hernandez <jordi@ximian.com>
19449         * ScrollBar.cs: updates thumb position when max, min or increment
19450         is changed
19452 2004-11-21  Ravindra <rkumar@novell.com>
19454         * ListView.cs: Implemented item selection, activation and
19455         column header style. Fixed properties to do a redraw, if
19456         required. Added support for MouseHover, DoubleClick, KeyDown
19457         and KeyUp event handling and some minor fixes.
19458         * ListViewItem.cs: Fixed constructor.
19459         * ThemeWin32Classic.cs: Improved drawing for ListView.
19461 2004-11-19  Jordi Mas i Hernandez <jordi@ximian.com>
19463         * ThemeWin32Classic.cs: initial listbox drawing code
19464         * DrawMode.cs: new enumerator
19465         * ListControl.cs: stubbed class
19466         * ListBox.cs: initial implementation
19467         * Theme.cs: new methods definitions
19468         * SelectionMode.cs: new enumerator
19470 2004-11-17  Peter Bartok  <pbartok@novell.com>
19472         * XplatUIWin32.cs: Added double-click events to the class style
19473         * Control.cs (WndProc):
19474           - Added handling of click-count to MouseDown/ MouseUp events.
19475           - Added handling of middle and right mouse buttons
19476           - Removed old debug code
19478 2004-11-17  Jackson Harper  <jackson@ximian.com>
19480         * XplatUIX11.cs: Use the new Mono.Unix namespace.
19482 2004-11-17  Ravindra <rkumar@novell.com>
19484         * ListView.cs: Added event handling for MouseMove/Up/Down.
19485         * ColumnHeader.cs: Added a read-only internal property 'Pressed'.
19486         * ThemeWin32Classic.cs: We need to clear the graphics context and
19487         draw column header in a proper state.
19490 2004-11-17  Jordi Mas i Hernandez <jordi@ximian.com>
19492         *  Menu.cs: fixes signature
19494 2004-11-16  Peter Bartok  <pbartok@novell.com>
19496         * XplatUIX11.cs (GetMessage): Implemented generation of
19497           double click mouse messages
19499 2004-11-12  Jordi Mas i Hernandez <jordi@ximian.com>
19501         *  Form.cs, MainMenu.cs, MenuAPI.cs: tracker should be for tracking session
19502         not by menu
19504 2004-11-11  Peter Bartok  <pbartok@novell.com>
19506         * HandleData.cs: Added Visible property
19507         * XplatUIX11.cs (IsVisible): Now uses Visible property from
19508           HandleData
19509         * XplatUIX11.cs: Removed old debug leftovers
19510         * XplatUIX11.cs (DefWndProc): Added WM_ERASEBKGND handler
19511         * Control.cs (WndProc): Removed old debug leftovers,
19512           streamlined handling of WM_WINDOWPOSCHANGED, removed un-
19513           needed WM_SIZE handling
19515 2004-11-11  Jackson Harper  <jackson@ximian.com>
19517         * OwnerDrawPropertyBag.cs:
19518         * TreeViewImageIndexConverter.cs: Initial implementation
19520 2004-11-10  Jackson Harper  <jackson@ximian.com>
19522         * ThemeWin32Classic.cs:
19523         * TabControl.cs: instead of moving tabs by the slider pos just
19524         start drawing at the tab that is offset by the slider. This way
19525         scrolling always moves by exactly one tab.
19527 2004-11-10  Jackson Harper  <jackson@ximian.com>
19529         * TabControl.cs: You can only scroll left when the slider has
19530         already ben moved right.
19531         
19532 2004-11-10  Jackson Harper  <jackson@ximian.com>
19534         * ThemeWin32Classic.cs: Do not draw the selected tab if its not in
19535         the clip area.
19536         
19537 2004-11-10  Jackson Harper  <jackson@ximian.com>
19539         * ThemeWin32Classic.cs: Don't bother drawing tabs outside of the
19540         clip area.
19541         
19542 2004-11-09  Jackson Harper  <jackson@ximian.com>
19544         * TabControl.cs (CalcXPos): New helper method so we can determine
19545         the proper place to start drawing vertical tabs.
19546         * ThemeWin32Classic.cs (DrawTab): Draw right aligned tabs.
19547         
19548 2004-11-09  Jackson Harper  <jackson@ximian.com>
19550         * TabControl.cs: Calculate sizing and rects for left aligned tabs.
19551         * ThemeWin32Classic.cs (GetTabControl*ScrollRect): Only handle Top
19552         and Bottom, left and right are illegal values for this and
19553         multiline is enabled when the alignment is set to left or right.
19554         (DrawTab): Each alignment block should draw the text itself now
19555         because Left requires special love. Also add rendering for Left
19556         aligned tabs.
19557         
19558 2004-11-09  Jordi Mas i Hernandez <jordi@ximian.com>
19560         *  Form.cs, MainMenu.cs, MenuAPI.cs: fixes menu navigation, fixes popups,
19561         does not destroy the windows, removes debugging messages
19563 2004-11-09  jba  <jba-mono@optusnet.com.au>
19565         * ThemeWin32Classic.cs
19566         (DrawButtonBase): Fix verticle text rect clipping in windows
19567         (DrawCheckBox): Fix CheckAlign.TopCenter and CheckAlign.BottomCenter
19568         rendering and incorrect text rect clipping
19569         (DrawRadioButton): Fix CheckAlign.TopCenter and CheckAlign.BottomCenter
19570         rendering and incorrect text rect clipping
19571         
19572 2004-11-08  Jackson Harper  <jackson@ximian.com>
19574         * ThemeWin32Classic.cs (DrawTabControl): Render tabs from top to
19575         bottom when they are bottom aligned so the bottoms of the tabs get
19576         displayed.
19577         * TabControl.cs (DropRow): Move rows up instead of down when the
19578         tab control is bottom aligned.
19580 2004-11-08 13:59  pbartok
19582         * XplatUIX11.cs:
19583           - Added handling for various window styles
19584           - Added handling for popup windows
19585           - Added SetTopmost handling
19587 2004-11-08 13:55  pbartok
19589         * XplatUIWin32.cs:
19590           - Added argument to SetTopmost method
19591           - Fixed broken ClientToScreen function
19593 2004-11-08 13:53  pbartok
19595         * XplatUIStructs.cs:
19596           - Added missing WS_EX styles
19598 2004-11-08 13:53  pbartok
19600         * XplatUI.cs, XplatUIDriver.cs:
19601           - Added argument to SetTopmost
19603 2004-11-08 13:52  pbartok
19605         * X11Structs.cs:
19606           - Added XSetWindowAttributes structure
19607           - Improved XWindowAttributes structure
19608           - Added SetWindowValuemask enum
19609           - Added window creation arguments enum
19610           - Added gravity enum
19611           - Added Motif hints structure
19612           - Added various Motif flags and enums
19613           - Added PropertyMode enum for property functions
19615 2004-11-08 13:50  pbartok
19617         * Form.cs:
19618           - Fixed arguments for updated SetTopmost method
19620 2004-11-08 13:49  pbartok
19622         * ToolTip.cs:
19623           - Fixed arguments for updated SetTopmost function
19624           - Fixed usage of PointToClient
19626 2004-11-08 13:44  pbartok
19628         * MenuAPI.cs:
19629           - Added Clipping of children and siblings
19631 2004-11-08 13:41  pbartok
19633         * MainMenu.cs:
19634           - Removed SetMenuBarWindow call. We do this in Form.cs
19636 2004-11-08 13:40  jackson
19638         * TabControl.cs, Theme.cs, ThemeWin32Classic.cs: Render the little
19639           scrolling jimmi in the correct location with bottom aligned tabs
19641 2004-11-08 13:36  pbartok
19643         * ContainerControl.cs:
19644           - Implemented BindingContext
19645           - Implemented ParentForm
19647 2004-11-08 12:46  jackson
19649         * TabControl.cs: Put bottom rendered tabs in the right location
19651 2004-11-08 07:15  jordi
19653         * ScrollBar.cs, ThemeWin32Classic.cs: fixes vertical scrollbar and
19654           removes dead code
19656 2004-11-05 17:30  jackson
19658         * TabControl.cs: When selected tabs are expanded make sure they
19659           don't go beyond the edges of the tab control
19661 2004-11-05 14:57  jackson
19663         * TabControl.cs: Reset show_slider so if the control is resized to
19664           a size where it is no longer needed it's not displayed anymore
19666 2004-11-05 13:16  jackson
19668         * TabControl.cs: Make tab pages non visible when added to the
19669           control
19671 2004-11-05 12:42  jackson
19673         * TabControl.cs: Implement SizeMode.FillToRight
19675 2004-11-05 12:16  jackson
19677         * Control.cs: Do not call CreateHandle if the handle is already
19678           created
19680 2004-11-05 11:46  jackson
19682         * TabControl.cs: Remove superflous call to CalcTabRows
19684 2004-11-05 09:07  jackson
19686         * XplatUIX11.cs: Update for Mono.Posix changes
19688 2004-11-05 07:00  ravindra
19690         * ListView.cs, ListViewItem.cs: Implemented some methods and fixed
19691           scrolling.
19693 2004-11-04 22:47  jba
19695         * ThemeWin32Classic.cs:
19696           - Fix Button rendering for FlatStyle = Flat or Popup
19697           - Fix RadioButton and CheckBox rendering when Appearance = Button
19698             (normal and flatstyle).
19699           - Correct outer rectangle color when drawing focus rectangle
19700           - Adjust button bounds to be 1 px smaller when focused
19701           - Make button not draw sunken 3d border when pushed (windows compat)
19702           - Fix CPDrawBorder3D to not make bottom right hand corner rounded
19703           - Offset the text in RadioButton and Checkbox when being rendered as
19704           a button.
19705           - Hover and Click behaviour for Colored FlatStyle.Flat and Popup
19706           radiobuttons
19707           - Fixed disabled rendering for colored flatstyle radiobuttons (both)
19708           - Fixed disabled text rendering for normally rendered radiobuttons
19710 2004-11-04 10:26  jackson
19712         * TabControl.cs: Recalculate tab rows when resizing
19714 2004-11-04 07:47  jordi
19716         * Form.cs, MainMenu.cs, Menu.cs, MenuAPI.cs, MenuItem.cs:
19717           collection completion, drawing issues, missing features
19719 2004-11-04 05:03  ravindra
19721         * ScrollBar.cs:
19722                 - We need to recalculate the Thumb area when
19723                 LargeChange/maximum/minimum values are changed.
19724           - We set the 'pos' in UpdatePos() method to minimum, if it's less
19725                 than minimum. This is required to handle the case if large_change is
19726                 more than max, and use LargeChange property instead of large_change
19727                 variable.
19728           - We return max+1 when large_change is more than max, like MS does.
19730 2004-11-04 04:29  ravindra
19732         * ColumnHeader.cs, ListView.cs, ListViewItem.cs:
19733                 - Changed default value signatures (prefixed all with ListView).
19734                 - Fixed/implemented layout LargeIcon, SmallIcon and List views for
19735                 ListView.
19736           - Fixed calculations for ListViewItem and implemented Clone()
19737           method.
19739 2004-11-04 04:26  ravindra
19741         * Theme.cs, ThemeWin32Classic.cs:
19742                 - Changed default ListView values signatures (prefixed all with
19743                 ListView).
19744           - Fixed default size values for VScrollBar and HScrollBar.
19745                 - Fixed DrawListViewItem method.
19747 2004-11-04 04:05  ravindra
19749         * ColumnHeaderStyle.cs: Typo. It should be Nonclickable.
19751 2004-11-04 04:04  ravindra
19753         * ImageList.cs: Implemented the missing overload for Draw method.
19755 2004-11-03 19:29  jackson
19757         * TabControl.cs: Handle dropping rows on selection properly
19759 2004-11-03 11:59  jackson
19761         * TabControl.cs: remove debug code
19763 2004-11-03 11:52  jackson
19765         * TabControl.cs, ThemeWin32Classic.cs: Initial implementation of
19766           the scrolly widgerywoo
19768 2004-11-02 13:52  jackson
19770         * TabControl.cs: Resize the tab pages and tabs when the tab control
19771           is resized
19773 2004-11-02 13:40  jackson
19775         * TabControl.cs, ThemeWin32Classic.cs: Move the row with the
19776           selected tab to the bottom
19778 2004-11-02 13:39  jackson
19780         * TabPage.cs: Store the tab pages row
19782 2004-11-02 12:33  jordi
19784         * MenuItem.cs: fixes handle creation
19786 2004-11-02 11:42  jackson
19788         * TabControl.cs: signature fix
19790 2004-11-02 08:56  jackson
19792         * TabControl.cs: Calculate whether the tab is on an edge properly.
19793           Remove top secret debugging code
19795 2004-11-01 19:57  jackson
19797         * TabControl.cs: Add click handling, and proper sizing
19799 2004-11-01 19:47  jackson
19801         * Theme.cs, ThemeWin32Classic.cs: New rendering and sizing code for
19802           tab controls
19804 2004-11-01 19:39  jackson
19806         * TabPage.cs: add internal property to store the bounds of a tab
19807           page
19809 2004-10-30 04:23  ravindra
19811         * Theme.cs, ThemeWin32Classic.cs: Drawing ListView and some default
19812           values.
19814 2004-10-30 04:21  ravindra
19816         * ListView.cs, ListViewItem.cs: Added support for scrolling and
19817           fixed calculations.
19819 2004-10-30 03:06  pbartok
19821         * XplatUIX11.cs:
19822           - Removed extension of DllImported libs
19824 2004-10-29 09:55  jordi
19826         * Form.cs, MainMenu.cs, Menu.cs, MenuAPI.cs, MenuItem.cs: Menu key
19827           navigation, itemcollection completion, menu fixes
19829 2004-10-27 22:58  pbartok
19831         * XplatUIX11.cs:
19832           - Now throws a nice error message when no X display could be opened
19834 2004-10-26 13:51  jordi
19836         * ListView.cs: removes warning
19838 2004-10-26 03:55  ravindra
19840         * ColumnHeader.cs, ListView.cs, ListViewItem.cs,
19841           ThemeWin32Classic.cs: Some formatting for my last checkins.
19843 2004-10-26 03:36  ravindra
19845         * ThemeWin32Classic.cs: Implemented DetailView drawing for ListView
19846           control and default values.
19848 2004-10-26 03:35  ravindra
19850         * Theme.cs: Added some default values for ListView control.
19852 2004-10-26 03:33  ravindra
19854         * ToolBar.cs: ToolBar should use the user specified button size, if
19855           there is any. Added a size_specified flag for the same.
19857 2004-10-26 03:33  ravindra
19859         * ColumnHeader.cs: Added some internal members and calculations for
19860           ColumnHeader.
19862 2004-10-26 03:32  ravindra
19864         * ListViewItem.cs: Calculations for ListViewItem.
19866 2004-10-26 03:31  ravindra
19868         * ListView.cs: Added some internal members and calculations for
19869           ListView.
19871 2004-10-22 13:31  jordi
19873         * MenuAPI.cs: speedup menus drawing
19875 2004-10-22 13:16  jackson
19877         * XplatUIX11.cs: Make sure to update exposed regions when adding an
19878           expose event
19880 2004-10-22 11:49  jackson
19882         * Control.cs: oops
19884 2004-10-22 11:41  jackson
19886         * Control.cs: Check to see if the window should have its background
19887           repainted by X when drawing.
19889 2004-10-22 11:31  jackson
19891         * XplatUIX11.cs: When invalidating areas only use XClearArea if
19892           clear is true, this way we do not get flicker from X repainting the
19893           background
19895 2004-10-22 11:28  jackson
19897         * XEventQueue.cs: Queue properly
19899 2004-10-21 09:38  jackson
19901         * XEventQueue.cs: Fix access modifier
19903 2004-10-21 09:36  jackson
19905         * XEventQueue.cs: Don't loose messages
19907 2004-10-21 09:22  jackson
19909         * XEventQueue.cs: Don't loose messages
19911 2004-10-20 04:15  jordi
19913         * BootMode.cs: enum need it by SystemInfo
19915 2004-10-19 21:58  pbartok
19917         * XplatUIWin32.cs:
19918           - Small sanity check
19920 2004-10-19 21:56  pbartok
19922         * Form.cs:
19923           - Added private FormParentWindow class which acts as the container
19924             for our form and as the non-client area where menus are drawn
19925           - Added/Moved required tie-ins to Jordi's menus
19926           - Fixed/Implemented the FormStartPosition functionality
19928 2004-10-19 21:52  pbartok
19930         * Control.cs:
19931           - Removed unneeded locals
19932           - Added code to all size and location properties to understand and
19933             deal with the parent container of Form
19935 2004-10-19 21:33  pbartok
19937         * Application.cs:
19938           - Fixed to deal with new Form subclasses for menus
19940 2004-10-19 17:48  jackson
19942         * XEventQueue.cs: commit correct version of file
19944 2004-10-19 16:50  jackson
19946         * XEventQueue.cs, XplatUIX11.cs: New optimized event queue
19948 2004-10-19 16:15  jordi
19950         * MenuAPI.cs: MenuBarCalcSize returns the height
19952 2004-10-19 08:31  pbartok
19954         * Control.cs:
19955           - Added missing call to PreProcessMessage before calling OnXXXKey
19956           methods
19958 2004-10-19 00:04  ravindra
19960         * ToolTip.cs: Fixed constructor.
19962 2004-10-18 09:31  jordi
19964         * MenuAPI.cs: menuitems in menubars do not have shortcuts
19966 2004-10-18 09:26  jordi
19968         * MenuItem.cs: fixes MenuItem class signature
19970 2004-10-18 08:56  jordi
19972         * MenuAPI.cs: prevents windows from showing in the taskbar
19974 2004-10-18 00:28  ravindra
19976         * ToolTip.cs: Suppressed a warning message.
19978 2004-10-18 00:27  ravindra
19980         * Control.cs: Default value of visible property must be true.
19982 2004-10-17 23:19  pbartok
19984         * ToolTip.cs:
19985           - Complete implementation
19987 2004-10-17 23:19  pbartok
19989         * XplatUIX11.cs:
19990           - Added EnableWindow method
19991           - Added SetModal stub
19992           - Added generation of WM_ACTIVATE message (still needs testing)
19993           - Added SetTopMost stub
19994           - Changes to deal with VirtualKeys being moved to XplatUIStructs.cs
19996 2004-10-17 23:17  pbartok
19998         * XplatUIWin32.cs:
19999           - Removed VirtualKeys to XplatUIStructs
20000           - Implemented SetTopMost method
20001           - Implemented EnableWindow method
20002           - Bugfix in ScreenToClient()
20003           - Bugfixes in ClientToScreen()
20005 2004-10-17 22:51  pbartok
20007         * XplatUIStructs.cs:
20008           - Added WS_EX styles to WindowStyles enumeration
20010 2004-10-17 22:50  pbartok
20012         * XplatUI.cs, XplatUIDriver.cs:
20013           - Added method for enabling/disabling windows
20014           - Added method for setting window modality
20015           - Added method for setting topmost window
20017 2004-10-17 22:49  pbartok
20019         * ThemeWin32Classic.cs:
20020           - Added ToolTip drawing code
20022 2004-10-17 22:49  pbartok
20024         * Theme.cs:
20025           - Added ToolTip abstracts
20027 2004-10-17 22:47  pbartok
20029         * Form.cs:
20030           - Fixed Form.ControlCollection to handle owner relations
20031           - Added Owner/OwnedForms handling
20032           - Implemented Z-Ordering for owned forms
20033           - Removed unneeded private overload of ShowDialog
20034           - Fixed ShowDialog, added the X11 incarnation of modal handling (or
20035             so I hope)
20036           - Fixed Close(), had wrong default
20037           - Added firing of OnLoad event
20038           - Added some commented out debug code for Ownership handling
20040 2004-10-17 22:16  pbartok
20042         * Control.cs:
20043           - Fixed/implemented flat list of controls
20045 2004-10-17 22:14  pbartok
20047         * Application.cs:
20048           - Added code to simulate modal dialogs on Win32
20050 2004-10-17 16:11  jordi
20052         * ScrollBar.cs: disabled scrollbar should not honor any keyboard or
20053           mouse event
20055 2004-10-17 13:39  jordi
20057         * MenuAPI.cs: menu drawing fixes
20059 2004-10-15 09:10  ravindra
20061         * StructFormat.cs: General Enum.
20063 2004-10-15 09:09  ravindra
20065         * SizeGripStyle.cs: Enum for Form.
20067 2004-10-15 09:08  ravindra
20069         * Theme.cs, ThemeWin32Classic.cs: Added ColumnHeaderHeight property
20070           in Theme for ListView.
20072 2004-10-15 09:06  ravindra
20074         * ColumnHeader.cs: Flushing some formatting changes.
20076 2004-10-15 09:05  ravindra
20078         * ListViewItem.cs: Implemented GetBounds method and fixed coding
20079           style.
20081 2004-10-15 09:03  ravindra
20083         * ListView.cs: Implemented Paint method and fixed coding style.
20085 2004-10-15 07:34  jordi
20087         * MenuAPI.cs: fix for X11
20089 2004-10-15 07:32  ravindra
20091         * ButtonBase.cs, CheckBox.cs, RadioButton.cs:
20092                 - Renamed Paint() method to Draw() for clarity. Also, moved
20093                 DrawImage() to OnPaint().
20095 2004-10-15 07:25  ravindra
20097         * CheckBox.cs, RadioButton.cs:
20098                 - Removed Redraw (), we get it from ButtonBase.
20099                 - Implemented Paint (), to do class specific painting.
20101 2004-10-15 07:16  ravindra
20103         * ButtonBase.cs:
20104                 - Redraw () is not virtual now.
20105                 - Added an internal virtual method Paint (), so that
20106                 derived classes can do their painting on their own.
20107                 - Modified OnPaint () to call Paint ().
20109 2004-10-15 06:43  jordi
20111         * ContextMenu.cs, DrawItemEventHandler.cs, Form.cs, MainMenu.cs,
20112           MenuAPI.cs, MenuItem.cs: menu work, mainmenu, subitems, etc
20114 2004-10-15 00:30  ravindra
20116         * MessageBox.cs:
20117                 - MessageBox on windows does not have min/max buttons.
20118                 This change in CreateParams fixes this on Windows. We
20119                 still need to implement this windowstyle behavior in
20120                 our X11 driver.
20122 2004-10-14 05:14  ravindra
20124         * ToolBar.cs:
20125                 - Changed Redraw () to do a Refresh () always.
20126                 - Fixed the MouseMove event handling when mouse is pressed,
20127                 ie drag event handling.
20128                 - Replaced the usage of ToolBarButton.Pressed property to
20129                 ToolBarButton.pressed internal variable.
20131 2004-10-14 05:10  ravindra
20133         * ToolBarButton.cs:
20134                 - Added an internal member 'inside' to handle mouse move
20135                 with mouse pressed ie mouse drag event.
20136                 - Changed 'Pressed' property to return true only when
20137                 'inside' and 'pressed' are both true.
20138                 - Some coding style love.
20140 2004-10-14 00:17  ravindra
20142         * Form.cs: Fixed class signature. ShowDialog (Control) is not a
20143           public method.
20145 2004-10-14 00:15  ravindra
20147         * ButtonBase.cs: Redraw () related improvements.
20149 2004-10-14 00:14  ravindra
20151         * MessageBox.cs: Moved InitFormSize () out of Paint method and
20152           removed unnecessary calls to Button.Show () method.
20154 2004-10-13 17:50  pbartok
20156         * XplatUIX11.cs:
20157           - Formatting fix
20158           - Removed destroying of window until we solve the problem of X
20159             destroying the window before us on shutdown
20161 2004-10-13 16:32  pbartok
20163         * ButtonBase.cs:
20164           - Now Redraws on MouseUp for FlatStyle Flat and Popup
20166 2004-10-13 14:18  pbartok
20168         * XplatUIX11.cs:
20169           - Added code to destroy the X window
20171 2004-10-13 14:18  pbartok
20173         * XplatUIWin32.cs:
20174           - Added code to destroy a window
20176 2004-10-13 14:12  pbartok
20178         * ButtonBase.cs:
20179           - Added the Redraw on Resize that got dropped in the last rev
20181 2004-10-13 09:06  pbartok
20183         * ThemeWin32Classic.cs:
20184           - Path from John BouAntoun:
20185             * Fix check rendering (centre correctly for normal style, offset
20186               correctly for FlatStyle).
20187             * Fix border color usage (use backcolor) for FlatStyle.Popup
20188             * Use checkbox.Capture instead of checkbox.is_pressed when
20189               rendering flatstyle states.
20191 2004-10-12 21:48  pbartok
20193         * ThemeWin32Classic.cs:
20194           - Removed all occurences of SystemColors and replaced them with the
20195             matching theme color
20197 2004-10-12 21:41  pbartok
20199         * ThemeWin32Classic.cs:
20200           - From John BouAntoun: Added an overload to CPDrawBorder3D to allow
20201             him using the function for flatstyle drawing
20202           - Changed functions to use the new version of CPDrawBorder3D
20204 2004-10-12 21:15  pbartok
20206         * ControlPaint.cs:
20207           - Fixed Dark(), DarkDark(), Light() and LightLight() methods to
20208             match MS documentation. They need to return defined colors if the
20209             passed color matches the configured control color. Thanks to John
20210             BouAntoun for pointing this out.
20212 2004-10-12 20:57  pbartok
20214         * Control.cs:
20215           - Fix from John BouAntoun: Raise ForeColorChanged event when text
20216             color is changed
20218 2004-10-12 20:46  pbartok
20220         * CheckBox.cs:
20221           - Fix from John BouAntoun: Now properly sets the Appearance property
20223 2004-10-12 20:45  pbartok
20225         * ThemeWin32Classic.cs:
20226           - Fixes from John BouAntoun: now handles forecolors and backcolors
20227             for flatstyle rendered controls much better; It also fixes normal
20228             checkbox rendering when pushed or disabled.
20230 2004-10-08 02:50  jordi
20232         * Form.cs, MainMenu.cs, Menu.cs, MenuAPI.cs, MenuItem.cs: more menu
20233           work
20235 2004-10-07 08:56  jordi
20237         * ThemeWin32Classic.cs: Removes deletion of cached brushes
20239 2004-10-06 03:59  jordi
20241         * Control.cs, StatusBar.cs, ThemeWin32Classic.cs, ToolBar.cs,
20242           XplatUIWin32.cs: removes warnings from compilation
20244 2004-10-05 12:23  jackson
20246         * RadioButton.cs: Fix ctor
20248 2004-10-05 11:10  pbartok
20250         * MessageBox.cs:
20251           - Partial implementation by Benjamin Dasnois
20253 2004-10-05 10:15  jackson
20255         * ThemeWin32Classic.cs: Improve rendering of the radio button patch
20256           by John BouAntoun
20258 2004-10-05 03:07  ravindra
20260         * ToolBar.cs:
20261                 - Removed a private method, Draw ().
20262                 - Fixed the ButtonDropDown event handling.
20263                 - Fixed MouseMove event handling.
20265 2004-10-05 03:04  ravindra
20267         * ThemeWin32Classic.cs:
20268                 - Added DrawListView method and ListViewDefaultSize property.
20269                 - Changed ControlPaint method calls to CPDrawXXX wherever possible.
20270                 - Changed DOS style CRLF to Unix format (dos2unix).
20272 2004-10-05 03:03  ravindra
20274         * Theme.cs:
20275                 - Added DrawListView method and ListViewDefaultSize property.
20277 2004-10-05 02:42  ravindra
20279         * ToolBarButton.cs: Added an internal member dd_pressed to handle
20280           clicks on DropDown arrow.
20282 2004-10-04 22:56  jackson
20284         * ButtonBase.cs, Label.cs, MenuAPI.cs, ProgressBar.cs,
20285           ScrollBar.cs, StatusBar.cs, ToolBar.cs, TrackBar.cs: Let the base
20286           Control handle the buffers, derived classes should not have to
20287           CreateBuffers themselves.
20289 2004-10-04 21:20  jackson
20291         * StatusBar.cs: The control handles resizing the buffers now.
20293 2004-10-04 21:18  jackson
20295         * Control.cs: When resizing the buffers should be invalidated. This
20296           should be handled in Control not in derived classes.
20298 2004-10-04 14:45  jackson
20300         * TabPage.cs: oops
20302 2004-10-04 02:14  pbartok
20304         * LeftRightAlignment.cs:
20305           - Initial check-in
20307 2004-10-04 01:09  jordi
20309         * ThemeWin32Classic.cs: fixes right button position causing right
20310           button not showing on horizontal scrollbars
20312 2004-10-02 13:12  pbartok
20314         * XplatUIX11.cs:
20315           - Simplified the Invalidate method by using an X call instead of
20316             generating the expose ourselves
20317           - Added an expose when the window background is changed
20318           - Implemented ClientToScreen method
20320 2004-10-02 13:08  pbartok
20322         * XplatUIWin32.cs:
20323           - Added Win32EnableWindow method (test for implementing modal
20324           dialogs)
20325           - Added ClientToScreen method and imports
20327 2004-10-02 13:07  pbartok
20329         * XplatUI.cs, XplatUIDriver.cs:
20330           - Added ClientToScreen coordinate translation method
20332 2004-10-02 13:06  pbartok
20334         * KeyPressEventArgs.cs:
20335           - Fixed access level for constructor
20337 2004-10-02 13:06  pbartok
20339         * NativeWindow.cs:
20340           - Changed access level for the window_collection hash table
20342 2004-10-02 13:05  pbartok
20344         * Form.cs:
20345           - Added KeyPreview property
20346           - Added Menu property (still incomplete, pending Jordi's menu work)
20347           - Implemented ProcessCmdKey
20348           - Implemented ProcessDialogKey
20349           - Implemented ProcessKeyPreview
20351 2004-10-02 13:02  pbartok
20353         * Control.cs:
20354           - Added private method to get the Control object from the window
20355           handle
20356           - Implemented ContextMenu property
20357           - Implemented PointToScreen
20358           - Implemented PreProcessMessage
20359           - Implemented IsInputChar
20360           - Implemented IsInputKey
20361           - Implemented ProcessCmdKey
20362           - Completed ProcessKeyEventArgs
20363           - Fixed message loop to call the proper chain of functions on key
20364           events
20365           - Implemented ProcessDialogChar
20366           - Implemented ProcessDialogKey
20367           - Implemented ProcessKeyMessage
20368           - Implemented ProcessKeyPreview
20369           - Added RaiseDragEvent stub (MS internal method)
20370           - Added RaiseKeyEvent stub (MS internal method)
20371           - Added RaiseMouseEvent stub (MS Internal method)
20372           - Added RaisePaintEvent stub (MS Internal method)
20373           - Added ResetMouseEventArgs stub (MS Internal method)
20374           - Implemented RtlTranslateAlignment
20375           - Implemented RtlTranslateContent
20376           - Implemented RtlTranslateHorizontal
20377           - Implemented RtlTranslateLeftRight
20378           - Added generation of KeyPress event
20380 2004-10-02 05:57  ravindra
20382         * ListViewItem.cs: Added attributes.
20384 2004-10-02 05:32  ravindra
20386         * ListView.cs: Added attributes.
20388 2004-10-01 11:53  jackson
20390         * Form.cs: Implement the Close method so work on MessageBox can
20391           continue.
20393 2004-09-30 14:06  pbartok
20395         * XplatUIX11.cs:
20396           - Bug fixes
20398 2004-09-30 11:34  jackson
20400         * RadioButton.cs: Fix typo. Patch by John BouAntoun.
20402 2004-09-30 07:26  ravindra
20404         * ListViewItemConverter.cs: Converter for ListViewItem.
20406 2004-09-30 07:26  ravindra
20408         * SortOrder.cs: Enum for ListView control.
20410 2004-09-30 07:25  ravindra
20412         * ColumnHeader.cs: Supporting class for ListView control.
20414 2004-09-30 07:24  ravindra
20416         * ListView.cs, ListViewItem.cs: Initial implementation.
20418 2004-09-30 07:20  ravindra
20420         * ItemActivation.cs: Enum for ListView Control.
20422 2004-09-29 20:29  pbartok
20424         * XplatUIX11.cs:
20425           - Added lookup of pixel value for background color; tries to get a
20426             color 'close' to the requested color, it avoids having to create a
20427             colormap.  Depending on the display this could mean the used color
20428             is slightly off the desired color. Might have to change it to a more
20429             resource intensive colormap approach, but it will work as a
20430           workaround to avoid red screens.
20432 2004-09-29 14:27  jackson
20434         * XplatUIX11.cs: Set the X DisplayHandle in System.Drawing
20436 2004-09-28 12:44  pbartok
20438         * ButtonBase.cs, CheckBox.cs, ControlPaint.cs, GroupBox.cs,
20439           HScrollBar.cs, Label.cs, LinkLabel.cs, Panel.cs, PictureBox.cs,
20440           ProgressBar.cs, RadioButton.cs, ScrollBar.cs, StatusBar.cs,
20441           Theme.cs, ThemeGtk.cs, ThemeWin32Classic.cs, ToolBar.cs,
20442           TrackBar.cs, VScrollBar.cs:
20443           - Streamlined Theme interfaces:
20444             * Each DrawXXX method for a control now is passed the object for
20445               the control to be drawn in order to allow accessing any state the
20446               theme might require
20448             * ControlPaint methods for the theme now have a CP prefix to avoid
20449               name clashes with the Draw methods for controls
20451             * Every control now retrieves it's DefaultSize from the current
20452             theme
20454 2004-09-28 12:17  jackson
20456         * Button.cs: Do not redraw OnClick MouseUp/Down will handle the
20457           drawing
20459 2004-09-24 14:57  jackson
20461         * XplatUIX11.cs: Don't lock/enqueue/dequeue for unhandled messages.
20462           Gives us a nice little performance boost.
20464 2004-09-24 12:02  jackson
20466         * TabAlignment.cs, TabAppearance.cs, TabControl.cs, TabDrawMode.cs,
20467           TabPage.cs, TabSizeMode.cs: Partial implementation of the Tab
20468           Control and supporting classes. Initial checkin
20470 2004-09-23 13:08  jackson
20472         * Form.cs: Temp build fixage
20474 2004-09-23 01:39  ravindra
20476         * ItemChangedEventArgs.cs, ItemChangedEventHandler.cs,
20477           ItemCheckEventArgs.cs, ItemCheckEventHandler.cs,
20478           ItemDragEventArgs.cs, ItemDragEventHandler.cs,
20479           LabelEditEventArgs.cs, LabelEditEventHandler.cs: EventArgs and
20480           EventHandlers needed by ListView Control.
20482 2004-09-22 14:12  pbartok
20484         * ScrollableControl.cs:
20485           - Implemented DockPadding property
20486           - Implemented AutoScroll property
20487           - Implemented AutoScrollMargin property
20488           - Implemented AutoScrollMinSize property
20489           - Implemented AutoScrollPosition property
20490           - Implemented DisplayRectangle property (still incomplete)
20491           - Implemented CreateParams property
20492           - Implemented HScroll property
20493           - Implemented VScroll property
20494           - Implemented OnVisibleChanged property
20496 2004-09-22 14:09  pbartok
20498         * Form.cs:
20499           - Added Form.ControllCollection class
20500           - Added handling for Form owners: Owner, OwnedForms, AddOwnedForm,
20501             RemoveOwnedForm (still incomplete, missing on-top and common
20502             minimize/maximize behaviour)
20503           - Added StartPosition property (still incomplete, does not use when
20504             creating the form)
20505           - Added ShowDialog() methods (still incomplete, missing forcing the
20506             dialog modal)
20508 2004-09-22 14:05  pbartok
20510         * Application.cs:
20511           - Added message loop for modal dialogs
20513 2004-09-22 14:02  pbartok
20515         * GroupBox.cs:
20516           - Fixed wrong types for events
20518 2004-09-22 14:00  pbartok
20520         * Shortcut.cs, FormWindowState.cs:
20521           - Fixed wrong values
20523 2004-09-22 12:01  jackson
20525         * Control.cs: Text is never null
20527 2004-09-20 22:14  pbartok
20529         * XplatUIWin32.cs:
20530           - Fixed accessibility level for Idle handler
20532 2004-09-20 18:54  jackson
20534         * Application.cs, XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs,
20535           XplatUIX11.cs: New message loop that uses poll so we don't get a
20536           busy loop
20538 2004-09-17 10:43  pbartok
20540         * ScrollBar.cs:
20541           - Fixed behaviour of arrow buttons. Now properly behaves like
20542             Buttons (and like Microsoft's scrollbar arrow buttons)
20544 2004-09-17 10:14  pbartok
20546         * ScrollBar.cs:
20547           - Added missing release of keyboard/mouse capture
20549 2004-09-17 06:18  jordi
20551         * ContextMenu.cs, MainMenu.cs, Menu.cs, MenuAPI.cs, MenuItem.cs,
20552           Theme.cs: Very early menu support
20554 2004-09-16 17:45  pbartok
20556         * XplatUIWin32.cs:
20557           - Fixed sending a window to the front
20558           - Added overload for SetWindowPos to avoid casting
20560 2004-09-16 17:44  pbartok
20562         * Control.cs:
20563           - Added SendToBack and BringToFront methods
20565 2004-09-16 07:00  ravindra
20567         * Copyright: Added Novell URL.
20569 2004-09-16 07:00  ravindra
20571         * ToolBar.cs: Invalidate should be done before redrawing.
20573 2004-09-15 21:19  ravindra
20575         * ColumnHeaderStyle.cs: Enum for ListView Control.
20577 2004-09-15 21:18  ravindra
20579         * ColumnClickEventArgs.cs, ColumnClickEventHandler.cs: Event for
20580           ListView Control.
20582 2004-09-13 18:26  jackson
20584         * Timer.cs, XplatUIX11.cs: Remove test code so timers are updated
20585           properly
20587 2004-09-13 18:13  jackson
20589         * Timer.cs, X11Structs.cs, XplatUIX11.cs: Timers are now handled in
20590           a second thread and post messages into the main threads message
20591           queue. This makes timing much more consistent. Both win2K and XP
20592           have a minimum timer value of 15 milliseconds, so we now do this
20593           too.
20595 2004-09-13 15:18  pbartok
20597         * X11Structs.cs, XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs,
20598           XplatUIX11.cs:
20599           - Added Z-Ordering methods
20601 2004-09-13 10:56  pbartok
20603         * Form.cs:
20604           - Fixed #region names
20605           - Moved properties and methods into their proper #regions
20607 2004-09-13 10:51  pbartok
20609         * Form.cs:
20610           - Added Accept and CancelButton properties
20611           - Added ProcessDialogKey() method
20613 2004-09-13 08:18  pbartok
20615         * IWindowTarget.cs:
20616           - Initial check-in
20618 2004-09-10 21:50  pbartok
20620         * Control.cs:
20621           - Added DoDragDrop() [incomplete]
20622           - Properly implemented 'Visible' handling
20623           - Added SetVisibleCore()
20624           - Implemented FindChildAtPoint()
20625           - Implemented GetContainerControl()
20626           - Implemented Hide()
20628 2004-09-10 19:28  pbartok
20630         * Control.cs:
20631           - Moved methods into their appropriate #regions
20632           - Reordered methods within regions alphabetically
20634 2004-09-10 18:57  pbartok
20636         * XplatUIX11.cs, XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs:
20637           - Added method to retrieve text from window
20639 2004-09-10 18:56  pbartok
20641         * Control.cs:
20642           - Moved some internal functions into the internal region
20643           - Implemented FontHeight
20644           - Implemented RenderRightToLeft
20645           - Implemented ResizeRedraw
20646           - Implemented ShowFocusCues
20647           - Implemented ShowKeyboardCues
20648           - Implemented FromChildHandle
20649           - Implemented FromHandle
20650           - Implemented IsMnemonic
20651           - Implemented ReflectMessage
20652           - All public and protected Static Methods are now complete
20654 2004-09-10 16:54  pbartok
20656         * Control.cs:
20657           - Implemented remaining missing public instance properties
20658           - Alphabetized some out of order properties
20660 2004-09-10 05:51  ravindra
20662         * PictureBox.cs: Added a check for null image.
20664 2004-09-10 00:59  jordi
20666         * GroupBox.cs: remove cvs tag
20668 2004-09-09 05:25  ravindra
20670         * ToolBar.cs: Make redraw accessible from ToolBarButton.
20672 2004-09-09 05:23  ravindra
20674         * ToolBarButton.cs: Changes in ToolBarButton need to make it's
20675           parent redraw.
20677 2004-09-09 02:28  pbartok
20679         * ThemeWin32Classic.cs:
20680           - Improve disabled string look
20682 2004-09-09 01:15  jordi
20684         * MeasureItemEventArgs.cs, MeasureItemEventHandler.cs: measureitem
20685           args and handler
20687 2004-09-08 23:56  ravindra
20689         * ItemBoundsPortion.cs: It's enum, not a class!
20691 2004-09-08 23:47  ravindra
20693         * FormBorderStyle.cs, FormStartPosition.cs, FormWindowState.cs:
20694           Enums for Form.
20696 2004-09-08 21:13  ravindra
20698         * ItemBoundsPortion.cs, ListViewAlignment.cs, View.cs: Enums for
20699           ListView control.
20701 2004-09-08 21:03  ravindra
20703         * ThemeWin32Classic.cs: PictureBox would not draw a null image to
20704           avoid crash.
20706 2004-09-08 21:01  ravindra
20708         * ScrollableControl.cs: Removed unreachable code.
20710 2004-09-08 06:45  jordi
20712         * MenuMerge.cs, Shortcut.cs: enumerations need it by menus
20714 2004-09-08 01:00  jackson
20716         * XplatUIX11.cs: Only run the timers when updating the message
20717           queue. This effectively gives X messages a higher priority then
20718           timer messages. Timers still need love though
20720 2004-09-07 14:01  jackson
20722         * XplatUIX11.cs: Do not call XDestroyWindow, X has already done
20723           this for us and the handle is no longer valid.
20725 2004-09-07 13:59  jackson
20727         * HandleData.cs, XplatUIX11.cs: First steps towards a new X event
20728           loop that manages to not crash. TODO: Add poll and cleanup timers
20730 2004-09-07 11:12  jordi
20732         * GroupBox.cs, Theme.cs, ThemeWin32Classic.cs: GroupBox control
20734 2004-09-07 03:40  jordi
20736         * Label.cs, LinkLabel.cs, Theme.cs, ThemeWin32Classic.cs: LinkLabel
20737           fixes, methods, multiple links
20739 2004-09-06 06:55  jordi
20741         * Control.cs: Caches ClientRectangle rectangle value
20743 2004-09-05 02:03  jordi
20745         * ScrollBar.cs, ThemeWin32Classic.cs: fixes bugs, adds flashing on
20746           certain situations
20748 2004-09-04 11:10  jordi
20750         * Label.cs: Refresh when font changed
20752 2004-09-02 16:24  pbartok
20754         * Control.cs:
20755           - Added sanity check to creation of double buffer bitmap
20757 2004-09-02 16:24  pbartok
20759         * ButtonBase.cs:
20760           - Fixed selection of text color
20761           - Fixed handling of resize event; now properly recreates double
20762             buffering bitmap
20763           - Added missing assignment of TextAlignment
20764           - Added proper default for TextAlignment
20766 2004-09-02 14:26  pbartok
20768         * RadioButton.cs:
20769           - Added missing RadioButton.RadioButtonAccessibleObject class
20771 2004-09-02 14:26  pbartok
20773         * Control.cs:
20774           - Added missing Control.ControlAccessibleObject class
20775           - Started to implement Select()ion mechanisms, still very incomplete
20777 2004-09-02 14:25  pbartok
20779         * AccessibleObject.cs:
20780           - Added missing methods
20782 2004-09-02 14:23  pbartok
20784         * AccessibleNavigation.cs, AccessibleSelection.cs:
20785           - Initial check-in
20787 2004-09-02 10:32  jordi
20789         * Theme.cs, ThemeGtk.cs, ThemeWin32Classic.cs: implements resource
20790           pool for pens, brushes, and hatchbruses
20792 2004-09-01 15:30  jackson
20794         * StatusBar.cs: Fix typo
20796 2004-09-01 14:44  pbartok
20798         * RadioButton.cs:
20799           - Fixed state
20801 2004-09-01 14:39  pbartok
20803         * Button.cs, RadioButton.cs:
20804           - Functional initial check-in
20806 2004-09-01 14:01  pbartok
20808         * CheckBox.cs:
20809           - Added missing default
20810           - Added missing region mark
20812 2004-09-01 09:10  jordi
20814         * Label.cs: fixes method signatures, new methods, events, fixes
20815           autosize
20817 2004-09-01 07:19  jordi
20819         * Control.cs: Init string variables with an empty object
20821 2004-09-01 04:20  jordi
20823         * Control.cs: fires OnFontChanged event
20825 2004-08-31 20:07  pbartok
20827         * ButtonBase.cs:
20828           - Enabled display of strings
20830 2004-08-31 20:05  pbartok
20832         * Form.cs:
20833           - Added (partial) implementation of DialogResult; rest needs to be
20834             implemented when the modal loop code is done
20836 2004-08-31 19:55  pbartok
20838         * CheckBox.cs:
20839           - Fixed to match the removal of the needs_redraw concept
20841 2004-08-31 19:55  pbartok
20843         * ButtonBase.cs:
20844           - Removed the rather odd split between 'needs redraw' and redrawing
20845           - Now handles the events that require regeneration (ambient
20846             properties and size)
20848 2004-08-31 19:41  pbartok
20850         * Control.cs:
20851           - Added firing of BackColorChanged event
20852           - Added TopLevelControl property
20853           - Fixed handling of WM_ERASEBKGRND message
20855 2004-08-31 12:49  pbartok
20857         * ButtonBase.cs:
20858           - Removed debug
20859           - Minor fixes
20861 2004-08-31 12:48  pbartok
20863         * CheckBox.cs:
20864           - Finished (famous last words)
20866 2004-08-31 04:35  jordi
20868         * ScrollBar.cs: adds autorepeat timer, uses a single timer, fixes
20869           scrolling bugs, adds new methods
20871 2004-08-30 14:42  pbartok
20873         * CheckBox.cs:
20874           - Implemented CheckBox drawing code
20876 2004-08-30 14:42  pbartok
20878         * ButtonBase.cs:
20879           - Made Redraw() and CheckRedraw() virtual
20880           - Improved mouse up/down/move logic to properly track buttons
20882 2004-08-30 09:44  pbartok
20884         * CheckBox.cs:
20885           - Updated to fix broken build. Not complete yet.
20887 2004-08-30 09:28  pbartok
20889         * CheckState.cs:
20890           - Initial checkin
20892 2004-08-30 09:17  pbartok
20894         * Appearance.cs:
20895           - Initial check-in
20897 2004-08-27 16:12  ravindra
20899         * ToolBarButton.cs: Added TypeConverter attribute.
20901 2004-08-27 16:07  ravindra
20903         * ImageIndexConverter.cs: Implemented.
20905 2004-08-27 14:17  pbartok
20907         * Control.cs:
20908           - Removed unneeded stack vars
20909           - First attempt to fix sizing issues when layout is suspended
20911 2004-08-25 15:35  jordi
20913         * ScrollBar.cs: more fixes to scrollbar
20915 2004-08-25 14:04  ravindra
20917         * Theme.cs, ThemeWin32Classic.cs, ToolBar.cs, ToolBarButton.cs:
20918           Added the missing divider code and grip for ToolBar Control.
20920 2004-08-25 13:20  pbartok
20922         * Control.cs:
20923           - Control now properly passes the ambient background color to child
20924             controls
20926 2004-08-25 13:20  jordi
20928         * ScrollBar.cs: small bug fix regarding bar position
20930 2004-08-25 12:33  pbartok
20932         * Timer.cs:
20933           - Now only calls SetTimer or KillTimer if the enabled state has
20934           changed
20936 2004-08-25 12:33  pbartok
20938         * XplatUIWin32.cs:
20939           - Fixed timer handling, now seems to work
20940           - Improved error message for window creation
20942 2004-08-25 12:32  pbartok
20944         * Control.cs:
20945           - Fixed generation of MouseUp message
20947 2004-08-25 12:29  jordi
20949         * ProgressBar.cs, ThemeWin32Classic.cs: new methods, properties,
20950           and fixes for progressbar
20952 2004-08-24 18:43  ravindra
20954         * ThemeWin32Classic.cs, ToolBar.cs: Fixed wrapping related issues
20955           in ToolBar control.
20957 2004-08-24 17:15  pbartok
20959         * Panel.cs:
20960           - Added #region
20961           - Added missing events
20962           - Alphabetized
20964 2004-08-24 17:14  pbartok
20966         * StatusBar.cs, PictureBox.cs:
20967           - Now uses Control's CreateParams
20969 2004-08-24 16:36  pbartok
20971         * XplatUIX11.cs:
20972           - Fixed background color handling
20973           - Fixed sending of enter/leave events on a grab
20975 2004-08-24 16:35  pbartok
20977         * X11Structs.cs:
20978           - Refined definitions for CrossingEvent
20980 2004-08-24 12:37  jordi
20982         * ScrollBar.cs, Theme.cs, ThemeGtk.cs, ThemeWin32Classic.cs: fixes
20983           formmating, methods signature, and adds missing events
20985 2004-08-24 12:24  jordi
20987         * Control.cs: fire OnEnabledChanged event
20989 2004-08-24 11:17  pbartok
20991         * XplatUIWin32.cs:
20992           - Implemented SetTimer() and KillTimer()
20994 2004-08-24 11:16  pbartok
20996         * XplatUIX11.cs:
20997           - Now uses Remove instead of Add to kill the timer
20999 2004-08-24 10:16  jackson
21001         * PictureBox.cs, Theme.cs, ThemeWin32Classic.cs: Handle drawing
21002           picture boxes in the theme now. Draw picture box borders and obey
21003           sizing modes
21005 2004-08-24 05:49  jackson
21007         * Timer.cs: Remove top secret debugging code
21009 2004-08-24 05:34  jackson
21011         * PictureBox.cs: Temp hack to make picture boxes draw their full
21012           image
21014 2004-08-24 05:29  jackson
21016         * Timer.cs, XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs,
21017           XplatUIX11.cs: Move timers to the driver level. On X they are
21018           queued by the driver and checked on idle.
21020 2004-08-24 01:07  jackson
21022         * XplatUIX11.cs: Use a queue for async messages instead of passing
21023           them as ClientMessages since that was totally broken. Also simply
21024           check for events and return an idle message if none are found. This
21025           gives us an idle handler, and prevents deadlocking when no messages
21026           are in the queue.
21028 2004-08-23 18:19  ravindra
21030         * XplatUIWin32.cs: Removed the unwanted destructor.
21032 2004-08-23 17:27  pbartok
21034         * ButtonBase.cs:
21035           - Finishing touches. Works now, just needs some optimizations.
21037 2004-08-23 16:53  jordi
21039         * ScrollBar.cs: small fix
21041 2004-08-23 16:45  pbartok
21043         * Application.cs:
21044           - Removed debug output
21045           - Simplifications
21047 2004-08-23 16:43  jordi
21049         * ScrollBar.cs: [no log message]
21051 2004-08-23 16:10  pbartok
21053         * Form.cs:
21054           - Fixed handling of WM_CLOSE message
21055           - Removed debug output
21057 2004-08-23 16:09  pbartok
21059         * Application.cs:
21060           - Added handling of Idle event
21061           - Added handling of form closing
21062           - Fixed reporting of MessageLoop property
21063           - Removed some unneeded code, should provide a bit of a speedup
21065 2004-08-23 15:22  pbartok
21067         * Control.cs:
21068           - Added InitLayout() method
21069           - Added code to properly perform layout when Anchor or Dock property
21070             is changed
21071           - Changed 'interpretation' of ResumeLayout. MS seems to have a
21072             LAMESPEC, tried to do it in a way that makes sense
21074 2004-08-23 14:10  jordi
21076         * HScrollBar.cs, ScrollBar.cs, TrackBar.cs, VScrollBar.cs: fixes
21077           properties and methods
21079 2004-08-23 13:55  pbartok
21081         * Control.cs:
21082           - Properly fixed Jordi's last fix
21083           - Now uses Cursor's Position property instead of calling XplatUI
21084           directly
21086 2004-08-23 13:44  jordi
21088         * PaintEventHandler.cs: Adding missing attribute
21090 2004-08-23 13:39  pbartok
21092         * Cursor.cs:
21093           - Implemented Position property
21095 2004-08-23 13:39  pbartok
21097         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs:
21098           - Added method to move mouse cursor
21100 2004-08-23 13:39  pbartok
21102         * XplatUIX11.cs:
21103           - Fixed setting of background color
21104           - Added method to move mouse cursor
21106 2004-08-23 13:16  jordi
21108         * Control.cs: avoids null exception
21110 2004-08-22 17:46  jackson
21112         * PictureBox.cs, PictureBoxSizeMode.cs: Initial implementation of
21113           PictureBox
21115 2004-08-22 17:40  jackson
21117         * XplatUIX11.cs: Add some missing locks
21119 2004-08-22 15:10  pbartok
21121         * Control.cs, Form.cs:
21122           - Removed OverlappedWindow style from Control, instead it's default
21123             now is child
21124           - Made form windows OverlappedWindow by default
21126 2004-08-22 13:34  jackson
21128         * ScrollBar.cs: Update the position through the Value property so
21129           the OnValueChanged event is raised.
21131 2004-08-22 12:04  pbartok
21133         * SWF.csproj:
21134           - Added Cursor.cs and UserControl.cs
21136 2004-08-22 12:03  pbartok
21138         * Cursor.cs:
21139           - Started implementation, not usable yet
21141 2004-08-22 12:00  pbartok
21143         * UserControl.cs:
21144           - Implemented UserControl (complete)
21146 2004-08-21 19:20  ravindra
21148         * ToolBar.cs: Correcting the formatting mess of VS.NET.
21150 2004-08-21 18:49  ravindra
21152         * ToolBar.cs: Probably this completes the missing attributes in
21153           toolbar control.
21155 2004-08-21 18:03  ravindra
21157         * ToolBar.cs, ToolBarButton.cs, ToolBarButtonClickEventArgs.cs:
21158           Fixed toolbar control signatures.
21160 2004-08-21 16:32  pbartok
21162         * LinkLabel.cs:
21163           - Signature Fixes
21165 2004-08-21 16:30  pbartok
21167         * Label.cs:
21168           - Signature fixes
21170 2004-08-21 16:19  pbartok
21172         * Control.cs, Label.cs:
21173           - Signature fixes
21175 2004-08-21 15:57  pbartok
21177         * ButtonBase.cs:
21178           - Added loads of debug output for development
21179           - Fixed typo in method name
21181 2004-08-21 15:52  pbartok
21183         * ToolBarButtonClickEventArgs.cs:
21184           - Added missing base class
21186 2004-08-21 14:53  pbartok
21188         * Control.cs:
21189           - Updated to match new GrabWindow signature
21191 2004-08-21 14:51  pbartok
21193         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIX11.cs:
21194           - Added method to get default display size
21196 2004-08-21 14:23  pbartok
21198         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIX11.cs:
21199           - Added method to query current grab state
21200           - Added argument to allow confining a grab to a window
21202 2004-08-21 14:22  pbartok
21204         * Keys.cs:
21205           - Added [Flags] attribute so that modifiers can be used in bitwise
21206           ops
21208 2004-08-21 14:21  pbartok
21210         * TrackBar.cs, ScrollBar.cs:
21211           - Replaced direct XplatUI calls with their Control counterpart
21213 2004-08-21 13:32  pbartok
21215         * Control.cs:
21216           - Implemented Created property
21218 2004-08-21 13:28  pbartok
21220         * Control.cs:
21221           - Implemented ContainsFocus
21223 2004-08-21 13:26  pbartok
21225         * Control.cs:
21226           - Implemented CausesValidation
21228 2004-08-21 13:21  pbartok
21230         * Control.cs:
21231           - Implemented CanFocus
21232           - Implemented CanSelect
21233           - Implemented Capture
21235 2004-08-21 12:35  pbartok
21237         * XplatUIWin32.cs:
21238           - Fixed bug with Async message handling
21239           - Implemented getting the ModifierKeys
21241 2004-08-21 12:32  jackson
21243         * AsyncMethodResult.cs: Make sure we have the mutex before we
21244           release it. Fixes BeginInvoke on windows
21246 2004-08-21 11:31  pbartok
21248         * XplatUIWin32.cs, XplatUIX11.cs:
21249           - Drivers now return proper mouse state
21251 2004-08-21 10:54  jackson
21253         * Control.cs: Implement EndInvoke
21255 2004-08-21 10:48  jackson
21257         * Timer.cs: Remove unneeded finalizer
21259 2004-08-20 19:52  ravindra
21261         * ThemeWin32Classic.cs, ToolBar.cs, ToolBarButton.cs: Improvments
21262           in mouse event handling in the ToolBar control.
21264 2004-08-20 19:50  ravindra
21266         * ImageList.cs: Changed draw method to use the arguments passed in
21267           to draw the image.
21269 2004-08-20 18:58  pbartok
21271         * XplatUIStructs.cs:
21272           - Added private message for async communication
21274 2004-08-20 17:38  ravindra
21276         * Control.cs: Made RightToLeft property virtual and removed a
21277           Console.WriteLine.
21279 2004-08-20 14:39  jordi
21281         * ThemeGtk.cs: use style_attach
21283 2004-08-20 14:39  pbartok
21285         * XplatUIWin32.cs:
21286           - Added jackson's Async code from X11 to Win32
21288 2004-08-20 14:09  pbartok
21290         * SWF.csproj:
21291           - Added all new files
21293 2004-08-20 14:09  pbartok
21295         * Control.cs:
21296           - Added call to set window background color
21298 2004-08-20 14:03  pbartok
21300         * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs:
21301           - Added method for setting the window background
21303 2004-08-20 14:02  pbartok
21305         * XplatUIWin32.cs:
21306           - Added method for setting the background color
21307           - Added handling for erasing the window background
21309 2004-08-20 13:45  jordi
21311         * TrackBar.cs: fixes timer, new properties and methods
21313 2004-08-20 13:34  jackson
21315         * ScrollBar.cs: Use the SWF timer so callbacks are run in the
21316           correct thread
21318 2004-08-20 13:22  jackson
21320         * Timer.cs: Timer Tick events are now handed through Controls Async
21321           mechanism so the callbacks are executed in the same thread as X
21323 2004-08-20 13:19  jackson
21325         * XplatUIDriver.cs: Expose functionality to send async messages
21326           through the driver
21328 2004-08-20 13:18  jackson
21330         * Control.cs: Implement Begininvoke
21332 2004-08-20 13:14  jackson
21334         * XplatUI.cs, XplatUIWin32.cs: Expose functionality to send async
21335           messages through the driver
21337 2004-08-20 13:12  jackson
21339         * XplatUIX11.cs: Lock before all X operations. Also added Async
21340           method functionality through XSendEvent
21342 2004-08-20 13:11  jackson
21344         * X11Structs.cs: Use IntPtrs for ClientMessage extra data (TODO:
21345           This will screw up on 64 bit systems)
21347 2004-08-20 13:10  jackson
21349         * AsyncMethodData.cs, AsyncMethodResult.cs: Classes for sending
21350           Async messages through X/Win32
21352 2004-08-19 19:39  pbartok
21354         * XplatUIX11.cs:
21355           - Updated code to match new HandleData.DeviceContext type
21357 2004-08-19 19:38  pbartok
21359         * HandleData.cs:
21360           - Made DeviceContext a generic object to allow usage from various
21361           drivers
21362           - Added support for queueing Windows messages
21364 2004-08-19 19:37  pbartok
21366         * XplatUIWin32.cs:
21367           - Added generation of MouseEnter, MouseLeave and MouseHover events
21368           - Added cleanup on EndPaint
21370 2004-08-19 19:17  pbartok
21372         * Control.cs:
21373           - Added handling of WM_MOUSEHOVER
21374           - Worked around 'bug' in Win32 WM_MOUSE_ENTER/WM_MOUSE_LEAVE driver
21375           code
21377 2004-08-19 18:55  jordi
21379         * ThemeGtk.cs: fixes button order
21381 2004-08-19 18:12  jordi
21383         * Theme.cs, ThemeWin32Classic.cs: fixes methods signature
21385 2004-08-19 17:09  pbartok
21387         * Control.cs:
21388           - Added Right property
21389           - Added RightToLeft property
21391 2004-08-19 16:27  jordi
21393         * ThemeGtk.cs: experimental GTK theme support
21395 2004-08-19 16:26  jordi
21397         * ITheme.cs, Theme.cs: move themes from an interface to a class
21399 2004-08-19 16:25  jordi
21401         * Control.cs, ScrollBar.cs, ThemeEngine.cs, ThemeWin32Classic.cs:
21402           theme enhancaments
21404 2004-08-19 16:04  pbartok
21406         * XplatUIX11.cs:
21407           - Added colormap basics
21408           - Added a way to re-initialize with a different display handle
21409           - Fixed setting of the window background color
21410           - Added various X11 imports related to colors and colormaps
21412 2004-08-19 15:51  pbartok
21414         * X11Structs.cs:
21415           - Removed packing hints (Paolo suggested this a while back)
21416           - fixed colormap type
21417           - Added default Atom types
21418           - Added Screen and color structs and enums
21420 2004-08-19 15:39  pbartok
21422         * ImageList.cs:
21423           - Added missing Draw() method
21424           - Added missing RecreateHandle event
21426 2004-08-19 15:30  pbartok
21428         * Form.cs:
21429           - Added handling of WM_CLOSE
21431 2004-08-18 13:16  jordi
21433         * ITheme.cs, ThemeWin32Classic.cs, XplatUIWin32.cs: Move colors to
21434           a table
21436 2004-08-18 09:56  jordi
21438         * ScrollBar.cs: fixes to scrollbar: steps and multiple timers
21440 2004-08-17 15:31  ravindra
21442         * SWF.csproj: Updated project.
21444 2004-08-17 15:25  pbartok
21446         * Control.cs:
21447           - Drawing improvement; don't call UpdateBounds if we are not visible
21448             (or have been minimized)
21450 2004-08-17 15:24  pbartok
21452         * XplatUIWin32.cs:
21453           - Finished IsVisible
21454           - Added Win32GetWindowPlacement
21456 2004-08-17 15:08  jackson
21458         * Panel.cs: Initial checkin of the Panel
21460 2004-08-17 14:25  pbartok
21462         * Control.cs:
21463           - Fixed broken handling of default window sizes
21465 2004-08-17 13:29  jackson
21467         * ThemeWin32Classic.cs: Don't use KnownColor to create colours. It
21468           has a large startup time.
21470 2004-08-17 10:25  jackson
21472         * HandleData.cs: union areas properly
21474 2004-08-17 10:12  jackson
21476         * HandleData.cs: union areas properly
21478 2004-08-16 20:00  ravindra
21480         * ToolBar.cs, ToolBarButton.cs: Added attributes.
21482 2004-08-16 18:48  ravindra
21484         * ToolBar.cs: Added attributes.
21486 2004-08-16 17:17  ravindra
21488         * SWF.csproj: Updated project.
21490 2004-08-16 17:16  jackson
21492         * XplatUIX11.cs: Check for more expose events before sending a
21493           WM_PAINT so they can all be grouped together. This makes dragging a
21494           window across another window redraw in a sane way.
21496 2004-08-16 15:47  pbartok
21498         * Control.cs:
21499           - Added handling of WM_MOUSE_ENTER & WM_MOUSE_LEAVE to
21500             support OnMouseEnter/Leave()
21501           - Added WS_CLIPSIBLINGS and WS_CLIPCHILDREN window styles to improve
21502             exposure handling
21504 2004-08-16 15:46  pbartok
21506         * XplatUIStructs.cs, XplatUIX11.cs:
21507           - Added WM_MOUSE_ENTER & WM_MOUSE_LEAVE to support
21508           OnMouseEnter/Leave()
21510 2004-08-16 15:34  jackson
21512         * XplatUIX11.cs: Group multiple expose events in HandleData, make
21513           sure messages get the message field set to WM_NULL if they are not
21514           handled.
21516 2004-08-16 15:24  jackson
21518         * HandleData.cs: HandleData is used for storing message information
21519           for window handles
21521 2004-08-15 17:23  ravindra
21523         * ColorDepth.cs: Added attribute.
21525 2004-08-15 17:23  ravindra
21527         * SWF.csproj: Updated project for ToolBar Control.
21529 2004-08-15 17:20  ravindra
21531         * ITheme.cs, ThemeWin32Classic.cs: Changes to Theme for ToolBar
21532           control and also dos2unix format.
21534 2004-08-15 17:13  ravindra
21536         * ToolBar.cs, ToolBarAppearance.cs, ToolBarButton.cs,
21537           ToolBarButtonClickEventArgs.cs,
21538           ToolBarButtonClickEventHandler.cs, ToolBarButtonStyle.cs,
21539           ToolBarTextAlign.cs: First Implementation of ToolBar control.
21541 2004-08-15 15:31  pbartok
21543         * ButtonBase.cs:
21544           - First (mostly) working version
21546 2004-08-13 16:15  pbartok
21548         * Control.cs:
21549           - Fixed Anchor default
21551 2004-08-13 15:43  pbartok
21553         * Control.cs:
21554           - Changed GetCursorPos signature
21556 2004-08-13 15:42  pbartok
21558         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs:
21559           - Changed signature for GetCursorPos
21561 2004-08-13 15:25  pbartok
21563         * XplatUIX11.cs:
21564           - Cleanup
21565           - Fixed resizing/exposure handling
21567 2004-08-13 15:22  jordi
21569         * ThemeWin32Classic.cs: removes redundant code and fixes issues
21570           with tickposition
21572 2004-08-13 14:55  jordi
21574         * TrackBar.cs: change from wndproc to events
21576 2004-08-13 13:00  jordi
21578         * Control.cs, XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs,
21579           XplatUIX11.cs: implements PointToClient (ScreenToClient)
21581 2004-08-13 12:53  pbartok
21583         * XplatUIWin32.cs:
21584           - Changed GetWindowPos to also provide client area size
21585           - Fixed broken prototypes for several win32 functions
21587 2004-08-13 12:53  pbartok
21589         * XplatUI.cs, XplatUIDriver.cs:
21590           - Changed GetWindowPos to also provide client area size
21592 2004-08-13 12:52  pbartok
21594         * XplatUIX11.cs:
21595           - Added generation of WM_POSCHANGED
21596           - Changed GetWindowPos to also provide client area size
21598 2004-08-13 12:52  pbartok
21600         * Control.cs:
21601           - Added Dispose() and destructor
21602           - Fixed resizing and bounds calculation
21603           - Fixed Layout
21604           - Added memory savings for invisible windows
21606 2004-08-13 12:46  jordi
21608         * TrackBar.cs: adds timer and grap window
21610 2004-08-13 10:25  jackson
21612         * Timer.cs: SWF Timer
21614 2004-08-12 16:59  pbartok
21616         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIX11.cs:
21617           - Implemented method to get current mouse position
21619 2004-08-12 14:29  jordi
21621         * ITheme.cs, ThemeWin32Classic.cs, TrackBar.cs: Trackbar
21622           enhancement, fix mouse problems, highli thumb, etc
21624 2004-08-12 13:31  pbartok
21626         * Control.cs:
21627           - Fixed Anchoring bugs
21629 2004-08-12 13:01  jackson
21631         * StatusBar.cs: Don't forget things
21633 2004-08-12 12:54  jackson
21635         * ThemeWin32Classic.cs: Handle owner draw status bars
21637 2004-08-12 12:54  jackson
21639         * StatusBar.cs: Implement missing properties, events, and methods.
21640           Handle mouse clicking
21642 2004-08-12 10:19  jackson
21644         * StatusBarPanelClickEventArgs.cs,
21645           StatusBarPanelClickEventHandler.cs: Classes for handling status
21646           bar panel click events
21648 2004-08-12 10:10  jackson
21650         * Control.cs: Add missing properties
21652 2004-08-12 09:46  pbartok
21654         * BindingsManagerBase.cs:
21655           - Name changed to BindingManagerBase.cs
21657 2004-08-12 09:25  jordi
21659         * ScrollableControl.cs: calls ctrlbase instead of exeception
21661 2004-08-11 16:28  pbartok
21663         * InputLanguageChangingEventArgs.cs:
21664           - Never check in before compiling. Fixes the last check-in
21666 2004-08-11 16:26  pbartok
21668         * InputLanguageChangingEventArgs.cs:
21669           - More signature fixes
21671 2004-08-11 16:20  pbartok
21673         * BindingManagerBase.cs, BindingMemberInfo.cs, ContainerControl.cs,
21674           Control.cs, ControlEventArgs.cs, ControlPaint.cs, Form.cs,
21675           ImageListStreamer.cs, InputLanguage.cs,
21676           InputLanguageChangedEventArgs.cs,
21677           InputLanguageChangingEventArgs.cs, Keys.cs, LayoutEventArgs.cs,
21678           LinkArea.cs, Message.cs, MouseEventArgs.cs, NativeWindow.cs,
21679           ScrollEventArgs.cs, ScrollableControl.cs, XplatUI.cs,
21680           XplatUIDriver.cs, XplatUIWin32.cs, XplatUIX11.cs:
21681           - Signature fixes
21683 2004-08-11 16:16  pbartok
21685         * Application.cs:
21686           - Fixed Signature
21687           - Added .Net 1.1 method
21689 2004-08-11 15:25  pbartok
21691         * SWF.csproj:
21692           - Fixed BindingManagerBase.cs filename
21694 2004-08-11 15:22  pbartok
21696         * BindingManagerBase.cs:
21697           - Was checked in with wrong filename
21699 2004-08-11 14:50  pbartok
21701         * SWF.csproj:
21702           - Updated
21704 2004-08-11 13:41  jordi
21706         * XplatUIWin32.cs: Fixes ClientRect
21708 2004-08-11 13:19  pbartok
21710         * Control.cs, XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs,
21711           XplatUIX11.cs:
21712           - We had SetWindowPos and MoveWindow to set window positions and
21713             size, removed MoveWindow. We have GetWindowPos, so it made sense to
21714             keep SetWindowPos as matching counterpart
21715           - Added some X11 sanity checking
21717 2004-08-11 12:59  pbartok
21719         * Control.cs:
21720           - Major cleanup of my SetBounds/SetBoundsCore/UpdateBounds mess
21721             (It seems that SetBounds is just a front for SetBoundsCore and
21722              SetBoundsCore updates the underlying window system and
21723              UpdateBounds is responsible for updating the variables associated
21724              with the Control and sending the events)
21725           - Major cleanup of Size handling; we now have two sizes, client_size
21726             and bounds. Bounds defines the window with decorations, client_size
21727             without them.
21729 2004-08-11 12:55  pbartok
21731         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIX11.cs:
21732           - Added method to calculate difference between decorated window and
21733             raw client area
21735 2004-08-11 12:54  pbartok
21737         * Label.cs:
21738           - Forcing redraw on resize
21740 2004-08-11 11:43  pbartok
21742         * ImageList.cs:
21743           - Removed disposing of the actual images when the list is disposed
21745 2004-08-11 09:13  pbartok
21747         * Control.cs:
21748           - Now properly reparents windows
21750 2004-08-11 08:37  pbartok
21752         * Control.cs:
21753           - Duh!
21755 2004-08-11 07:47  pbartok
21757         * Control.cs:
21758           - Rewrote the collection stuff. Might not be as fast now, not
21759             keeping the number of children around and accessible directly, but
21760             it's more straightforward
21762 2004-08-11 07:44  pbartok
21764         * AccessibleObject.cs:
21765           - Fixed to match ControlCollection rewrite
21767 2004-08-11 07:43  pbartok
21769         * ImageList.cs:
21770           - Added missing creation of the collection list
21772 2004-08-10 20:08  jackson
21774         * StatusBar.cs: Get the paint message from WndProc
21776 2004-08-10 19:31  jackson
21778         * ThemeWin32Classic.cs: Create Brushes as little as possible
21780 2004-08-10 19:20  jackson
21782         * UICues.cs: Add Flags attribute
21784 2004-08-10 19:19  jackson
21786         * StatusBarPanel.cs: Signature cleanup
21788 2004-08-10 19:10  jackson
21790         * StatusBarDrawItemEventArgs.cs, StatusBarDrawItemEventHandler.cs:
21791           Initial implementation of status bar item drawing
21793 2004-08-10 17:27  jordi
21795         * TrackBar.cs: add missing methods, properties, and restructure to
21796           hide extra ones
21798 2004-08-10 16:24  jackson
21800         * AccessibleStates.cs, Border3DSide.cs, Border3DStyle.cs,
21801           ButtonState.cs, ControlStyles.cs, DragDropEffects.cs: Add flags
21802           attribute
21804 2004-08-10 13:21  jordi
21806         * ITheme.cs, ScrollBar.cs, ThemeWin32Classic.cs: scrollbar
21807           enhancements and standarize on win colors defaults
21809 2004-08-10 12:52  jackson
21811         * DrawItemEventArgs.cs, DrawItemState.cs, ITheme.cs,
21812           ThemeWin32Classic.cs: Implement DrawItem functionality
21814 2004-08-10 12:47  jordi
21816         * XplatUIWin32.cs: Calls InvalidateRect before UpdateWindow
21818 2004-08-10 12:32  jordi
21820         * Control.cs: throw ontextchange event
21822 2004-08-10 11:43  pbartok
21824         * Control.cs:
21825           - Added more to the still unfinished Dock/Anchor layout code
21827 2004-08-10 11:39  pbartok
21829         * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs:
21830           - Added GetWindowPos method
21832 2004-08-10 11:36  pbartok
21834         * XplatUIWin32.cs:
21835           - Implemented several methods
21837 2004-08-10 09:47  jackson
21839         * TrackBar.cs: Allow control to handle buffering
21841 2004-08-10 09:41  jackson
21843         * ProgressBar.cs, ScrollBar.cs: Allow control to handle buffering
21845 2004-08-10 09:24  jackson
21847         * Label.cs, LinkLabel.cs: Let Control handle buffering.
21849 2004-08-10 09:09  jackson
21851         * StatusBar.cs: Let Control handle all the buffering.
21853 2004-08-10 09:08  jackson
21855         * Control.cs: Control will now handle the buffering code, so each
21856           control does not have to implement this.
21858 2004-08-10 08:34  jackson
21860         * XplatUIDriver.cs: Use default colors from the theme
21862 2004-08-09 17:12  pbartok
21864         * ImageList.cs:
21865           - Fixed several bugs Ravindra pointed out
21867 2004-08-09 16:11  pbartok
21869         * Control.cs:
21870           - Added incomplete dock layout code
21871           - Added support for mouse wheel
21873 2004-08-09 16:09  pbartok
21875         * XplatUIX11.cs:
21876           - Added handling for middle and right mousebutton
21877           - Added handling for mouse wheel
21878           - Added handling for key state and mouse state and position
21879           - Now properly generates WM_xBUTTONx messages and WM_MOUSEWHEEL
21880           messages
21882 2004-08-09 15:40  jackson
21884         * StatusBarPanel.cs, StatusBarPanelAutoSize.cs,
21885           StatusBarPanelBorderStyle.cs, StatusBarPanelStyle.cs: Initial
21886           checkin
21888 2004-08-09 15:37  jackson
21890         * StatusBar.cs: Initial implementation of StatusBar
21892 2004-08-09 15:36  jackson
21894         * ITheme.cs: Add support for drawing status bar and getting status
21895           bar item sizes
21897 2004-08-09 15:35  pbartok
21899         * MouseButtons.cs:
21900           - Fixed values
21902 2004-08-09 15:34  jackson
21904         * ThemeWin32Classic.cs: Add support for drawing status bar and get
21905           status bar item sizes
21907 2004-08-09 15:21  jackson
21909         * ThemeWin32Classic.cs: Use known colors for default control
21910           colours
21912 2004-08-09 15:12  jackson
21914         * ThemeWin32Classic.cs: Make the default font static, it is static
21915           in control so this doesn't change functionality and creating fonts
21916           is sloooooow.
21918 2004-08-09 14:56  pbartok
21920         * X11Structs.cs:
21921           - Added GrabMode enum
21923 2004-08-09 14:55  pbartok
21925         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIX11.cs:
21926           - Removed Run method, was only required for initial development
21928 2004-08-09 14:51  pbartok
21930         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIX11.cs:
21931           - Implemented GrabWindow/ReleaseWindow methods to allow pointer
21932           capture
21934 2004-08-09 13:48  pbartok
21936         * XplatUIX11.cs:
21937           - Fixed default sizing for child windows
21939 2004-08-09 12:56  pbartok
21941         * XplatUIX11.cs:
21942           - Added generation of WM_DESTROY message
21943           - Added handling of window manager induced shutdown
21945 2004-08-09 11:31  jackson
21947         * ThemeWin32Classic.cs: New names for control properties
21949 2004-08-09 11:25  jackson
21951         * Control.cs: Use new color names
21953 2004-08-09 11:02  jackson
21955         * XplatUI.cs: Get default window properties from the theme
21957 2004-08-09 11:01  jackson
21959         * ITheme.cs: The theme engine now controls default window
21960           properties
21962 2004-08-09 11:00  jackson
21964         * ThemeWin32Classic.cs: Add default window color properties
21966 2004-08-09 10:17  jackson
21968         * ThemeWin32Classic.cs: Use correct default back color
21970 2004-08-09 10:05  jackson
21972         * XplatUIWin32.cs, XplatUIX11.cs: These properties are handled by
21973           the theme now.
21975 2004-08-09 09:56  jackson
21977         * XplatUI.cs: Remove defaults, these are handled by the theme now.
21979 2004-08-09 09:54  jackson
21981         * Control.cs: Get default properties from the theme.
21983 2004-08-09 09:53  jackson
21985         * ITheme.cs: Themes now handle default control properties
21987 2004-08-09 09:53  jackson
21989         * ThemeWin32Classic.cs: Themes now handle default control
21990           properties so coloring will be consistent
21992 2004-08-08 16:54  jordi
21994         * ITheme.cs, ThemeWin32Classic.cs: Label BorderStyles
21996 2004-08-08 15:08  jordi
21998         * XplatUIX11.cs: fixes keyboard crash
22000 2004-08-08 13:47  jordi
22002         * Label.cs: add cvs header info
22004 2004-08-08 12:09  jackson
22006         * ThemeWin32Classic.cs: Add pen_buttonface
22008 2004-08-08 11:52  jordi
22010         * Label.cs, LinkLabel.cs: [no log message]
22012 2004-08-08 11:34  jordi
22014         * ThemeWin32Classic.cs: Use Windows Standard Colours
22016 2004-08-07 17:32  jordi
22018         * TrackBar.cs: throw exceptions of invalid enums values
22020 2004-08-07 17:31  jordi
22022         * Label.cs, LinkLabel.cs, ThemeWin32Classic.cs: fixes label bug and
22023           draw method name
22025 2004-08-07 16:56  jackson
22027         * HorizontalAlignment.cs: Initial checkin
22029 2004-08-07 13:16  jordi
22031         * Label.cs, LinkLabel.cs: throw exceptions, fixes events, missing
22032           methods
22034 2004-08-07 13:05  jordi
22036         * ITheme.cs, ThemeWin32Classic.cs: Theme colour support and
22037           GetSysColor defines
22039 2004-08-06 18:01  pbartok
22041         * ThemeWin32Classic.cs:
22042           - Fixed some rounding issues with float/int
22044 2004-08-06 18:00  jackson
22046         * DockStyle.cs, AnchorStyles.cs:
22048                   Add flags and serializable attributes.
22050 2004-08-06 17:46  pbartok
22052         * XplatUIX11.cs:
22053           - Implemented GetParent
22055 2004-08-06 17:18  pbartok
22057         * TrackBar.cs:
22058           - Fixed some rounding issues with float/int
22060 2004-08-06 17:17  pbartok
22062         * X11Structs.cs, XplatUIX11.cs:
22063           - Fixed Refresh and Invalidate
22065 2004-08-06 15:30  pbartok
22067         * Control.cs, X11Structs.cs, XplatUIX11.cs:
22068           - Fixed recursive loop when resizing
22069           - Improved/fixed redrawing on expose messages
22071 2004-08-06 09:53  jordi
22073         * Control.cs, X11Structs.cs, XplatUIWin32.cs, XplatUIX11.cs: X11
22074           keyboard navigation
22076 2004-08-06 08:02  pbartok
22078         * X11Structs.cs, XplatUIX11.cs:
22079           - Fixed reparenting
22080           - Fixed window border creation
22082 2004-08-05 15:38  pbartok
22084         * XplatUIX11.cs:
22085           - Attempted fix for reparenting problems
22087 2004-08-04 15:14  pbartok
22089         * Control.cs:
22090           - Fixed Invalidation bug (calculated wrong client area)
22091           - Added ClientSize setter
22093 2004-08-04 15:13  pbartok
22095         * Form.cs:
22096           - Added AutoScale properties
22098 2004-08-04 15:13  pbartok
22100         * SWF.csproj:
22101           - Added latest files
22103 2004-08-04 14:11  pbartok
22105         * Control.cs, XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs,
22106           XplatUIX11.cs:
22107           - Added Invalidate handling
22109 2004-08-03 17:09  jordi
22111         * XplatUIDriver.cs: fixes spelling mistake
22113 2004-07-27 09:53  jordi
22115         * TrackBar.cs: fixes trackbar events, def classname, methods
22116           signature
22118 2004-07-27 09:29  jordi
22120         * ScrollBar.cs: fixes scrollbar events
22122 2004-07-27 04:38  jordi
22124         * Control.cs: changes to be able to run winforms samples
22126 2004-07-26 11:42  jordi
22128         * ControlPaint.cs, ITheme.cs, ProgressBar.cs, ScrollBar.cs,
22129           ThemeEngine.cs, ThemeWin32Classic.cs, TrackBar.cs: Theme support
22131 2004-07-26 05:41  jordi
22133         * MessageBox.cs, MessageBoxButtons.cs, MessageBoxDefaultButton.cs,
22134           MessageBoxIcon.cs, MessageBoxOptions.cs: initial messagebox
22135           implementation
22137 2004-07-22 09:22  jordi
22139         * LinkLabel.cs, LinkLabelLinkClickedEventHandler.cs: link label:
22140           check link overlapping, implement events, and fixes
22142 2004-07-21 10:28  jordi
22144         * DialogResult.cs, IButtonControl.cs: fixes comments filenames
22146 2004-07-21 10:19  jordi
22148         * DialogResult.cs, IButtonControl.cs, Label.cs, LinkArea.cs,
22149           LinkBehavior.cs, LinkClickedEventArgs.cs, LinkLabel.cs,
22150           LinkLabelLinkClickedEventArgs.cs,
22151           LinkLabelLinkClickedEventHandler.cs, LinkState.cs,
22152           XplatUIWin32.cs, LinkClickedEventHandler.cs: LinkLabel control
22153           implementation
22155 2004-07-19 13:09  jordi
22157         * Control.cs, Label.cs: label control re-written: added missing
22158           functionlity, events, and properties
22160 2004-07-19 10:49  jordi
22162         * Control.cs: fixes SetBounds logic
22164 2004-07-19 01:29  jordi
22166         * Control.cs: Call RefreshWindow only if the window has created
22168 2004-07-15 14:05  pbartok
22170         * ColorDepth.cs, ImageList.cs, ImageListStreamer.cs, SWF.csproj:
22171           - Implemented ImageList and ImageList.ImageCollection classes
22172           - Added ColorDepth enumeration
22173           - Updated SWF VS.Net project
22175 2004-07-15 11:06  jordi
22177         * XplatUIStructs.cs: added MsgButons enum
22179 2004-07-15 11:03  jordi
22181         * Control.cs: added basic mouse handeling events
22183 2004-07-15 03:38  jordi
22185         * Orientation.cs, TickStyle.cs, TrackBar.cs: Horizontal and
22186           Vertical TrackBar control implementation
22188 2004-07-13 09:33  jordi
22190         * HScrollBar.cs, VScrollBar.cs: vertical and hort. classes commit
22192 2004-07-13 09:31  jordi
22194         * Control.cs, Form.cs: commit: new properties and fixes form size
22195           problems
22197 2004-07-09 14:13  miguel
22199         * ProgressBar.cs: Spelling
22201 2004-07-09 11:25  pbartok
22203         * ProgressBar.cs:
22204           - Removed usage of Rectangle for drawing. Miguel pointed out it's
22205           faster
22207 2004-07-09 11:17  miguel
22209         * ProgressBar.cs: 2004-07-09  Miguel de Icaza  <miguel@ximian.com>
22211                 * ProgressBar.cs: Fixed spelling for `block'
22213                 drawProgressBar: renamed to `DrawProgressBar' to follow the coding
22214                 style guidelines.
22216                 Avoid using the += on rect.X, that exposed a bug in the compiler.
22218 2004-07-08 23:21  pbartok
22220         * AccessibleObject.cs, AccessibleRole.cs, AccessibleStates.cs,
22221           AnchorStyles.cs, Application.cs, ApplicationContext.cs,
22222           BaseCollection.cs, Binding.cs, BindingContext.cs,
22223           BindingMemberInfo.cs, BindingsCollection.cs,
22224           BindingsManagerBase.cs, Border3DSide.cs, Border3DStyle.cs,
22225           BorderStyle.cs, BoundsSpecified.cs, ButtonBorderStyle.cs,
22226           ButtonState.cs, CaptionButton.cs, CheckBox.cs,
22227           ContainerControl.cs, Control.cs, ControlEventArgs.cs,
22228           ControlEventHandler.cs, ControlPaint.cs, ControlStyles.cs,
22229           ConvertEventArgs.cs, ConvertEventHandler.cs, Copyright,
22230           CreateParams.cs, DockStyle.cs, DragAction.cs, DragDropEffects.cs,
22231           DragEventArgs.cs, DragEventHandler.cs, FlatStyle.cs, Form.cs,
22232           FrameStyle.cs, GiveFeedbackEventArgs.cs,
22233           GiveFeedbackEventHandler.cs, HelpEventArgs.cs,
22234           HelpEventHandler.cs, IContainerControl.cs, IDataObject.cs,
22235           IMessageFilter.cs, IWin32Window.cs, ImeMode.cs, InputLanguage.cs,
22236           InputLanguageChangedEventArgs.cs,
22237           InputLanguageChangedEventHandler.cs,
22238           InputLanguageChangingEventArgs.cs,
22239           InputLanguageChangingEventHandler.cs, InputLanguageCollection.cs,
22240           InvalidateEventArgs.cs, InvalidateEventHandler.cs,
22241           KeyEventArgs.cs, KeyEventHandler.cs, KeyPressEventArgs.cs,
22242           KeyPressEventHandler.cs, Keys.cs, Label.cs, LayoutEventArgs.cs,
22243           LayoutEventHandler.cs, MenuGlyph.cs, Message.cs, MouseButtons.cs,
22244           MouseEventArgs.cs, MouseEventHandler.cs, NativeWindow.cs,
22245           PaintEventArgs.cs, PaintEventHandler.cs, ProgressBar.cs,
22246           QueryAccessibilityHelpEventArgs.cs,
22247           QueryAccessibilityHelpEventHandler.cs,
22248           QueryContinueDragEventArgs.cs, QueryContinueDragEventHandler.cs,
22249           RightToLeft.cs, SWF.csproj, SWF.csproj.user, ScrollBar.cs,
22250           ScrollBars.cs, ScrollButton.cs, ScrollEventArgs.cs,
22251           ScrollEventHandler.cs, ScrollEventType.cs, ScrollableControl.cs,
22252           TODO, TODOAttribute.cs, UICues.cs, UICuesEventArgs.cs,
22253           UICuesEventHandler.cs, X11Structs.cs, XplatUI.cs,
22254           XplatUIDriver.cs, XplatUIStructs.cs, XplatUIWin32.cs,
22255           XplatUIX11.cs, lang.cs:
22256           - Initial check-in