2007-05-03 Chris Toshok <toshok@ximian.com>
[mono-project.git] / mcs / class / Managed.Windows.Forms / System.Windows.Forms / ChangeLog
blob4e67b96c3209b676191c4fc704c387de2c84f6fb
1 2007-05-03  Chris Toshok  <toshok@ximian.com>
3         * CurrencyManager.cs (CurrencyManager.ListChangeHandler): in the
4         2.0 block, pass listposition + 1 to ChangeRecordState when a row
5         was added before the current listposition.  Fixes the
6         TestInsertRowBeforeCurrent unit test.
8 2007-05-03  Jonathan Pobst  <monkey@jpobst.com>
10         * Application.cs: Add RaiseIdle.
11         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs, XplatUIWin32.cs,
12         XplatUIX11.cs: Implement RaiseIdle.
14 2007-05-02  Jonathan Pobst  <monkey@jpobst.com>
15         corcompare work: N - Z
16         * NotifyIcon.cs
17         * ProgressBar.cs
18         * RadionButton.cs
19         * ScrollableControl.cs
20         * SplitContainer.cs
21         * SplitterPanel.cs
22         * StatusBar.cs
23         * SystemInformation.cs
24         * TabControl.cs
25         * TableLayoutControlCollection.cs
26         * TableLayoutPanel.cs
27         * TabPage.cs
28         * ToolBar.cs
29         * ToolBarButton.cs
30         * ToolStrip.cs
31         * ToolStripComboBox.cs
32         * ToolStripContainer.cs
33         * ToolStripContentPanel.cs
34         * ToolStripDropDown.cs
35         * ToolStripDropDownItem.cs
36         * ToolStripDropDownMenu.cs
37         * ToolStripItem.cs
38         * ToolStripItemCollection.cs
39         * ToolStripMenuItem.cs
40         * ToolStripPanel.cs
41         * ToolStripSplitButton.cs
42         * ToolTip.cs
43         * TreeNode.cs
44         * TreeNodeCollection.cs
45         * TreeNodeMouseHoverEventArgs.cs
46         * TreeView.cs
48 2007-05-01  Everaldo Canuto  <everaldo@simios.org>
50         * ContextMenu.cs: Add public method Show with alignment property to 2.0
51         stuff. Thanks aatdark for the patch. 
53 2007-05-01  Jonathan Pobst  <monkey@jpobst.com>
55         * GridItem.cs: Implement 2.0 Tag property.
57 2007-05-01  Frederik Carlier <frederik.carlier@carlier-online.be> 
59         * TreeNodeCollection.cs: Fix ContainsKey and IndexOfKey methods to use
60         count instead of Nodes.Length.  [Fixes bug #81448]
62 2007-05-01  Jonathan Pobst  <monkey@jpobst.com>
64         * ComboBox.cs: Fix paramName sent to ArgumentOutOfRangeException's.
65         [Fixes bug #81506]
67 2007-05-01  Jonathan Pobst  <monkey@jpobst.com>
68         corcompare work: A - M
69         * BindingNavigator.cs
70         * Button.cs
71         * ButtonBase.cs
72         * CheckBox.cs
73         * Control.cs
74         * FlowLayoutPanel.cs
75         * Form.cs
76         * Label.cs
77         * LinkLabel.cs
78         * ListView.cs
80 2007-05-01  Jonathan Pobst  <monkey@jpobst.com>
82         * Application.cs: Give toolstrips a chance to process mnemonics.
83         * ToolStrip.cs, ToolStripDropDownButton.cs, ToolStripItem.cs,
84         ToolStripItemTextRenderEventArgs.cs, ToolStripLabel.cs,
85         ToolStripMenuItem.cs, ToolStripSplitButton.cs: Implement keyboard mnemonics.
87 2007-05-01  Jackson Harper  <jackson@ximian.com>
89         * TextBoxBase.cs: Better preferred height, FixedSingle gets the
90         wider area too.
91         - Don't set the BoundsSpecified
93 2007-04-30  Jonathan Pobst  <monkey@jpobst.com>
95         * Application.cs: When using the toolstrip shortcut mechanism, allow the
96         message to pass through to a regular control if it hosted by a toolstrip.
97         * ToolStrip.cs, ToolStripControlHost.cs, ToolStripDropDown.cs,
98         ToolStripManager.cs: Enable keyboard navigation for ToolStrips.
100 2007-04-30  Jonathan Pobst  <monkey@jpobst.com>
102         * TextRenderer.cs: Use the flags argument when using the MeasureString
103         fallback algorithm.
105 2007-04-30  Jonathan Pobst  <monkey@jpobst.com>
107         * MenuStrip.cs: Don't let multiple ToolStripSeparators get added to
108         the MDI menu item.  [Fixes bug #81483]
110 2007-04-30  Gert Driesen  <drieseng@users.sourceforge.net>
112         * DataGridViewColumn.cs: Initialize value of headercell to zero-length
113         string. When setting Name to null, use zero-length string instead.
115 2007-04-29  Andreia Gaita  <avidigal@novell.com>
117         * TabControl.cs: Implement missing 2.0 methods (SelectTab, 
118         DeselectTab). Implement missing 2.0 TabPageCollection methods
119         (Add, ContainsKey, RemoveByKey, IndexOfKey)
121 2007-04-29  Pedro Martínez Juliá  <pedromj@gmail.com>
123         * DataGridViewColumn.cs: Make HeaderText take preference over Name.
125 2007-04-29  Gert Driesen  <drieseng@users.sourceforge.net>
127         * RichTextBox.cs: In LoadFile, use StreamReader to read plain text.
128         Fixes bug #81479. Include details of exception when LoadFile fails.
130 2007-04-28  Alan McGovern <alan.mcgovern@gmail.com>
132         * DrawListViewSubItemEventArgs.cs: Added missing setter
134 2007-04-27  Andreia Gaita  <avidigal@novell.com>
136         * ToolTip.cs: Add missing 2.0 properties. Implement 2.0 Show and 
137         Hide methods (not complete). Implement missing 2.0 OnPopup event.
139 2007-04-27  Carlos Alberto Cortez <calberto.cortez@gmail.com>
141         * ListView.cs: In ItemControl.OnMouseDown restore a pair of braces I
142         removed in ly last commit (it was breaking the Label edit feature).
144         * ThemeWin32Classic.cs: When drawing a ListViewItem use
145         StringAlignment.Near for LineAlignment (match .Net).
147 2007-04-27  Andreia Gaita  <avidigal@novell.com>
149         * TabControl.cs: Change SetTab so it adds the tabpage to the list
150         of controls if it isn't already there - was blowing up when doing
151         tabcontrol.TabPages[i]=new TabPage(). 
152         SetTab now does a replace by removing the page at the index. 
153         Add a new InsertTab method that inserts a page in a given index 
154         instead of replacing. 
155         Implements TabPageCollection.Insert(int, TabPage).
157 2007-04-27  Chris Toshok  <toshok@ximian.com>
159         * BindingManagerBase.cs: fill in CurrentItemChanged (and have an
160         internal handler that can be invoked from our subclasses.)  Also,
161         add a comment to PushData about how we need to fix it.
163         * CurrencyManager.cs: tons of changes here.  trying to get things
164         matching the behavior of .net wrt event orders (ItemChanged,
165         CurrentChanged, PositionChanged.)  I've implemented a private .net
166         symbol (ChangeRecordState) that appears in stack traces because
167         it's actually easier to do this than to effective inline all its
168         various behaviors at every call site.
170         * RelatedPropertyManager.cs: guard against an exception here by
171         not using parent.Current if the position is set to -1 (if the
172         parent datasource is cleared, for instance).
174         * Binding.cs: don't parse data in PushData (this might be wrong,
175         but it jives with MS's behavior.)  Also, don't call PushData when
176         we get a CurrentChanged event.
178 2007-04-27  Andreia Gaita  <avidigal@novell.com>
180         * WebBrowser.cs,
181           WebBrowserBase.cs,
182           WebBrowserSiteBase.cs,
183           HtmlDocument.cs: Added stubbed out classes, no real implementations 
184           yet.
186 2007-04-27  Everaldo Canuto  <everaldo@simios.org>
188         * MainMenu.cs: In draw method without parameters call draw method with 
189         PaintEvent, another one (just rect) adjust rectangle and we dont need it
190         as Rect property is already adjusted. Fixes #80694.
192 2007-04-27  Jonathan Pobst  <monkey@jpobst.com>
194         * Application.cs: Need to handle keyboard menu deselection here.
195         * Control.cs: Use WM_SYSKEYUP instead of WM_SYSCOMMAND to start menu keyboard
196         navigation, allowing keyboard to work on X11.
197         * ToolStrip.cs: Don't worry about handling the Menu key here anymore.
199 2007-04-27  Everaldo Canuto  <everaldo@simios.org>
201         * MenuAPI.cs: When deactivate menu verify if hotkey (_) is active and redraw
202         menu bar. It fixes some drawing issues in menu bar.
204 2007-04-27  Everaldo Canuto  <everaldo@simios.org>
206         * MenuAPI.cs: Remove unneeded "keynav_state = KeyNavState.Idle" before 
207         Deactivate calls, Deactivate method already do it. Also ser ActiveTracker
208         when <alt> key is pressed.
210 2007-04-26  Everaldo Canuto  <everaldo@simios.org>
212         * XplatUIX11.cs: Simplify SystrayRemove to be like other libraries,     Gtk as 
213         example just set visible to false and make this prevent from other problems.
214         In SystrayAdd always remove pending expose. Fixes #81072.
216 2007-04-26  Marek Safar  <marek.safar@gmail.com>
218         * TextBoxBase.cs (CaretMoved): Consider scroll maximum when scroll
219         value is set.
221 2007-04-26  Alan McGovern <alan.mcgovern@gmail.com>
223         * ListView.cs: Added three missing 2.0 events and corresponding
224         EventHandlers. Added the OwnerDraw property.
225         * DrawListViewColumnHeaderEventHandler.cs: fixed typo
227 2007-04-26  Alan McGovern <alan.mcgovern@gmail.com>
229         * DrawListViewItemEventArgs.cs
230         * DrawListViewSubItemEventArgs.cs: Brought classes up to 2.0 status.
232 2007-04-26  Alan McGovern <alan.mcgovern@gmail.com>
234         * TextControl.cs: Fixed typo in constructor
236 2007-04-26  Jonathan Pobst  <monkey@jpobst.com>
238         * Application.cs: Create a shortcut path so that currently selected
239         MenuStrips can intercept keyboard events without having focus.
240         * Control.cs: Handle WM_SYSCOMMAND message to activate MenuStrips.
241         * MenuStrip.cs, ToolStrip.cs, ToolStripDropDown.cs, ToolStripDropDownItem.cs,
242         ToolStripItem.cs, ToolStripManager.cs, ToolStripMenuItem.cs: Support
243         keyboard navigation (arrows, tab, enter, esc) on Windows.  Still need to
244         generate WM_SYSCOMMAND message in X11 for other platforms.
245         * ToolStripProfessionalRenderer.cs: ToolStripMenuItems need to be painted
246         in OnRenderMenuItemBackground instead of OnRenderButtonBackground.
247         * ToolStripSplitButton.cs: Add DefaultItem property.
248         
249 2007-04-26  Everaldo Canuto  <everaldo@simios.org>
251         * MainMenu.cs: In OnMenuChanged pass PaintEventArgs to Draw method, it
252         fixes some menu draw problem on Windows with border diferent from default
253         it also fixes #81403.
255 2007-04-26  Rolf Bjarne Kvinge <RKvinge@novell.com> 
257         * Form.cs: Refactor WndProc into separate methods, just like Control is
258           doing it.
260 2007-04-26  Rolf Bjarne Kvinge <RKvinge@novell.com> 
262         * Control.cs: set_Text: move the call to the driver into a seperate
263           virtual method so that Form can override it.
264         * MaskedTextBox.cs: Corcompare fixes.
265         * Form.cs: Override UpdateWindowText and only update the styles if the
266           form has been shown (fixes #81405).
268 2007-04-25  Jonathan Pobst  <monkey@jpobst.com>
270         * Control.cs, Form.cs: Use the better supported WM_?BUTTONDOWN and
271         WM_ACTIVATE messages instead of WM_MOUSEACTIVATE and
272         WM_ACTIVATEAPP.  This fixes menus not disappearing on X11 when
273         the form lost focus or another control was clicked.
275 2007-04-25  Gert Driesen  <drieseng@users.sourceforge.net>
277         * DataGrid.cs: Uncomment MakeTransparent calls since bug #80151 is
278         fixed.
280 2007-04-25  Rolf Bjarne Kvinge <RKvinge@novell.com> 
282         * DrawListViewColumnHeaderEventHandler.cs, DrawToolTipEventArgs.cs,
283           DrawListViewItemEventHandler.cs,
284           DrawListViewSubItemEventHandler.cs, DrawToolTipEventHandler.cs:
285           Added.
286         * X11Structs.cs: More ToString implementation.
288 2007-04-25  Jonathan Pobst  <monkey@jpobst.com>
290         * ToolStripDropDownItem.cs: Don't lazy create a DropDown in Dispose.
291         * ToolStripOverflowButton.cs: Don't lazy create a DropDown in HasDropDownItems.
293 2007-04-25  Rolf Bjarne Kvinge <RKvinge@novell.com> 
295         * Control.cs: Only raise OnVisibleChanged if we're not recreating the
296           handle.
297         * FormCollection.cs: Don't add a form if it's already in the
298           collection.
299         * Form.cs: Change ShowDialog () to call ShowDialog (owner) with a null
300           according to behaviour and MSDN. The ownerWin32 is the active
301           window at the moment when we call ShowDialog, not the context's
302           main form (the context's main form may open another form that opens
303           a form with ShowDialog, the win32 owner is the second form). Add
304           and remove forms to the Application.OpenForms in other places to
305           better match MS behaviour. Add an IsActive property that raises
306           On(de)Activated only if the active state has changed (we were
307           raising OnDeactivated before OnActivated while creating forms).
308         * Application.cs: Refactor Enabling/Disabling of windows for modal
309           dialog loops out to separate methods, and restore the thread
310           context when we quit the method. Fixes #81407.
312 2007-04-25  Carlos Alberto Cortez <calberto.cortez@gmail.com>
314         * ListView.cs: In ItemControl.HandleClicks, also fire 
315         2.0 MouseClick or MouseDoubleClick events on the parent,
316         not only the Click/DoubleClick events.
318 2007-04-24  Andreia Gaita  <avidigal@novell.com>
320         * TableLayoutSettings.cs: 
321         - Added a GetControls method and a support structure to help the 
322         TypeConverter to enumerate the controls for     serialization. 
323         - Added a new serialization constructor. 
324         - Added a isSerialized flag initialized to true on the 
325         serialization constructor so that the TableLayoutPanel.LayoutSettings 
326         setter does not throw the designed NotSupportedOperation exception
327         when the object is built through deserialization.
328         - Implemented GetObjectData
329         
330         * TableLayoutPanel.cs: Added check on LayoutSettings.
332 2007-04-24  Carlos Alberto Cortez <calberto.cortez@gmail.com>
334         * ListView.cs: Report Click and DoubleClick events to the parent
335         from ItemsMouseUp, instead of ItemsMouseDown. This prevents us
336         from breaking the click count state when using dialog forms (Control
337         reports the clicks in a similar fashion). In the previous behaviour
338         the last WM_LBUTTONUP message in a  double click was sent to the
339         ListView's form, instead of the ListView, which was breaking the click
340         count for it. Fixes #80387.
342 2007-04-24  Alan McGovern <alan.mcgovern@gmail.com>
344         * BindingNavigator.cs : fixed bugs revealed by new nunit tests
346 2007-04-24  Jonathan Pobst  <monkey@jpobst.com>
348         * ToolStripDropDownItem.cs: Lazy initialize the DropDown.  This prevents
349         us from created dropdowns for menu items that do not have subitems.
350         * ToolStripItem.cs, ToolStripProfessionalRenderer.cs, ToolStripSplitButton.cs:
351         Check HasDropDownItems before calling DropDown so a dropdown will not be
352         created if it isn't needed.
354 2007-04-24  Jackson Harper  <jackson@ximian.com>
356         * TreeView.cs: Set the first node to the selected node when we get
357         focus if there is no selected node.
359 2007-04-24  Andreia Gaita  <avidigal@novell.com>
361         * MimeIcon.cs: remove using blocks so that image streams are
362         not disposed of. Fixes #80151
364 2007-04-24  Jackson Harper  <jackson@ximian.com>
366         * TextBoxBase.cs: Fixup the height of textboxes when the control
367         is created.
369 2007-04-24  Jonathan Pobst  <monkey@jpobst.com>
371         * ToolStrip.cs: Fully implement GetNextItem.  Call OnParentRightToLeftChanged
372         for each ToolStripItem when the parent's RightToLeftChanged is called.
374 2007-04-24  Rolf Bjarne Kvinge <RKvinge@novell.com> 
376         * ComboBox.cs: Forward ContextMenu to the underlying textbox, if any.
377           Fixes #80163.
378         * Control.cs: Replace GetContextMenuInternal() with ContextMenuInternal
379           property, so that the setter can be overriden too.
380         * TextBox.cs: Change GetContextMenuInternal() to use
381           ContextMenuInternal.
383 2007-04-24  Rolf Bjarne Kvinge <RKvinge@novell.com> 
385         * ThemeWin32Classic.cs: Use a black pen to draw checkboxes, fixes
386           #81406.
388 2007-04-24  Rolf Bjarne Kvinge <RKvinge@novell.com> 
390         * ThemeWin32Classic.cs: Use a black pen to draw checkboxes, fixes
391           #81406.
393 2007-04-24  Rolf Bjarne Kvinge <RKvinge@novell.com> 
395         * MaskedTextBox.cs: Commit this so nobody else starts working on it and
396           avoid duplicate work. Mostily skeleton code, it's not working at
397           all yet.
399 2007-04-20  Leszek Ciesielski <skolima@gmail.com>
401         * NotifyIcon.cs : stub for MouseClick event
402         * Application.cs: stub for SetUnhandledExceptionMode
404 2007-04-24  Alan McGovern <alan.mcgovern@gmail.com>
406         * BindingNavigator.cs : Initial (partial) implementation
408 2007-04-23  Jackson Harper  <jackson@ximian.com>
410         * TreeView.cs: Do not create the treeview's handle when setting
411         the scroll position.
412         - ExpandAll needs to compute the scrollbars so it knows which
413         position to set the bar too.
414         * TreeNode.cs: 
415         * TreeNodeCollection.cs: Pass new flag to UpdateScrollBars
417 2007-04-23  Jackson Harper  <jackson@ximian.com>
419         * TextBoxBase.cs: Non multiline textboxes shouldn't take the enter
420         key. Fixes #81408.
422 2007-04-23  Jonathan Pobst  <monkey@jpobst.com>
424         * ToolStripItem.cs: Make GetImageSize internal.
425         * ToolStripMenuItem.cs: Use GetImageSize to determine the size we
426         need to draw an item.  Fixes a reported issue where images on menus
427         that were not 16x16 were drawing incorrectly.
429 2007-04-21  Miguel de Icaza  <miguel@novell.com>
431         * Padding.cs: Use the converter, fixes the resgen2 issue with
432         XMLNotePad. 
434 2007-04-21  Jackson Harper  <jackson@ximian.com>
436         * TreeView.cs: Dont try to unhighlight the selected node if there
437         isn't a selected node.
439 2007-04-21  Jackson Harper  <jackson@ximian.com>
441         * UpDownBase.cs:
442         * TextBoxBase.cs:
443         * ListView.cs:
444         * ListBox.cs:
445         * TreeView.cs: Use the InternalBorderStyle property to set the
446         initial border style, this forces the client rectangle to be sized
447         correctly.
449 2007-04-20  Jackson Harper  <jackson@ximian.com>
451         * TreeView.cs: Simplify scrolling to the last node after expanding
452         all.
453         - Fix some off by ones with setting the bottom.
455 2007-04-20  Jonathan Pobst  <monkey@jpobst.com>
457         * Control.cs: Use DefaultSize for Size, calculate ClientSize from
458         that.  We were incorrectly doing it the other way around.  Also,
459         update ClientSize if we change the BorderStyle before the control
460         is created.
462 2007-04-20  Gert Driesen  <drieseng@users.sourceforge.net>
464         * XplatUI.cs: Added Border3DSize, BorderSize, CaptionButtonSize,
465         DoubleClickSize, DoubleClickTime and FixedFrameBorderSize. Renamed
466         XplatUIDriver.Caption to CaptionHeight. Spaces to tabs.
467         * XplatUIDriver.cs: Added Border3DSize, BorderSize, CaptionButtonSize,
468         DoubleClickSize, DoubleClickTime and FixedFrameBorderSize. Renamed
469         Caption to CaptionHeight.
470         * XplatUIX11.cs: Renamed Caption to CaptionHeight.
471         * Theme.cs: Modified Border3DSize, BorderSize, CaptionButtonSize
472         and FixedFrameBorderSize to return value from current XplatUI driver.
473         * XplatUIWin32.cs: Implemented Border3DSize, BorderSize,
474         CaptionButtonSize, DragFullWindows, DoubleClickSize, DoubleClickTime
475         and FixedFrameBorderSize using win32 API. Renamed Caption to
476         CaptionHeight.
477         * XplatUIOSX.cs: Renamed Caption to CaptionHeight.
478         * SystemInformation.cs: Fixed typo in BorderSize.
480 2007-04-20  Gert Driesen  <drieseng@users.sourceforge.net>
482         * XplatUI.cs: Added MenuAccessKeysUnderlined.
483         * XplatUIDriver.cs: Added MenuAccessKeysUnderlined.
484         * XplatUIX11.cs: Implemented MenuAccessKeysUnderlined by always
485         returning false.
486         * Theme.cs: Modified MenuAccessKeysUnderlined to return corresponding
487         value from XplatUI driver.
488         * XplatUIWin32.cs: Implemented MenuAccessKeysUnderlined using
489         SystemParametersInfo.
490         * ThemeWin32Classic.cs: Remove obsolete MenuAccessKeysUnderlined
491         override.
492         * XplatUIOSX.cs: Implemented MenuAccessKeysUnderlind by always
493         returning false.
495 2007-04-20  Rolf Bjarne Kvinge <RKvinge@novell.com> 
497         * XplatUIX11.cs, Hwnd.cs: Remove warnings.
499 2007-04-20  Rolf Bjarne Kvinge <RKvinge@novell.com> 
501         * MessageBox.cs, XplatUIX11.cs, Hwnd.cs: Remove warnings.
503 2007-04-20  Jonathan Pobst  <monkey@jpobst.com>
505         * ToolStripManager.cs: Fix a reported InvalidCastException when unmerging
506         MenuStrips that contain ToolStripSeparators.
508 2007-04-20  Rolf Bjarne Kvinge <RKvinge@novell.com> 
510         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs: Add
511           DefineStdCursorBitmap.
512         * Cursor.cs: Add an internal constructor so that the Cursor knows if it
513           has been created off a standard cursor. This is used to get a
514           bitmap of the standard cursor when Draw or DrawStretched is called
515           in order to draw the cursor.
516         * X11Structs.cs: Added XcursorImage and XcursorImages.
517         * XplatUIX11.cs, XplatUIWin32.cs: Add and implement
518           DefineStdCursorBitmap.
519         * Cursors.cs: Update all relevant creations of Cursor to use the new
520           internal constructor.
522 2007-04-19  Jackson Harper  <jackson@ximian.com>
524         * TextBox.cs: Move the has_been_focused into the base control, so
525         some of the text adding methods can manipulate it (probably time
526         for a better name for this flag too).
527         - Call a new version of selectall that doesn't scroll
528         * TextBoxBase.cs: When we append text, if the document is empty,
529         don't scroll.  If the document has text already, we scroll to the
530         end of the appended text.
531         - When the text is changed, we reset the has_been_focused, so the
532         next time the control gets focused, all the text is selected.
534 2007-04-19  Jackson Harper  <jackson@ximian.com>
536         * TextControl.cs: Move the margins to the document, add a method
537         so the margin sizes can be updated.
538         * TextBoxBase.cs: When the border style is changed, update the
539         border sizes.
541 2007-04-19  Jonathan Pobst  <monkey@jpobst.com>
543         * Control.cs: Respect DefaultPadding.
544         * GroupBox.cs: Implement DefaultPadding, DisplayRectangle takes
545         padding into account.
546         * ToolStrip.cs: Remove setting padding to DefaultPadding in constructor.        
548 2007-04-19  Jackson Harper  <jackson@ximian.com>
550         * TextControl.cs: Oops, we need to use the ClientRect not the
551         bounds here.
553 2007-04-18  Carlos Alberto Cortez <calberto.cortez@gmail.com>
555         * ListView.cs: In ItemControl.ItemsMouseDown, take into
556         account the double clicks when CheckBoxes are used and
557         the pointer is inside the checkbox. Fixes part of #81191.
559 2007-04-18  Jackson Harper  <jackson@ximian.com>
561         * TextControl.cs: Pressing the end key shouldn't move the caret
562         past the line ending.
563         * TextBoxBase.cs: We can still delete if we are in the line
564         ending and the combine will just kill the existing line ending.
566 2007-04-18  Jackson Harper  <jackson@ximian.com>
568         * TextControl.cs: We can't move lines, then invalidate their
569         bounds, we need to get the old bounds and combine that with the
570         new bounds.
571         * TextBoxBase.cs: Before combining two lines for a delete, we need
572         to invalidate the area of the old line, since that will be moved
573         in the combine operation.
575 2007-04-18  Everaldo Canuto  <everaldo@simios.org>
577         * LinkLabel.cs: In OnPaint invoke draw background to fix problems
578         with transparent background. Fixes #80482.
580 2007-04-18  Jonathan Pobst  <monkey@jpobst.com>
582         * PictureBox.cs: Refresh on resize when SizeMode = Zoom.
583         * ThemeWin32Classic.cs: Implement PictureBox.SizeMode = Zoom.
584         [Fixes bug #81391]
586 2007-04-18  Rolf Bjarne Kvinge <RKvinge@novell.com> 
588         * CreateParams.cs: Add a couple of helper methods and do a less string
589           concatenation in ToString.
590         * XplatUIX11.cs: Add an TranslateClientRectangleToXClientRectangle
591           overload that takes a Control parameter, since this method may be
592           called before a control is assigned to the hwnd (from
593           CreateWindow), and update CreateWindow to use the new overload. In
594           GetMenuOrigin subtract the title bar from the y position if the
595           form has a window manager (since we're painting it and not X).
596         * XplatUIWin32.cs: If we can get a form in GetMenuOrigin use the form's
597           CreateParams to calculate the origin (since border sizes may vary).
598           In ScreenToMenu only subtract the title height if we actually have
599           a title.
600         * MdiWindowManager.cs: Override MenuHeight to always return 0, since
601           mdi children never have menus of themselves.
602         * InternalWindowManager.cs: Implement menu handling like form does.
603           Added GetMenuOrigin to calculate the menu origin, can't use the
604           CreateParams from the form like normally since it's lying.
605         * Hwnd.cs: Implement GetBorderSize better (in the sense more
606           windows-like) and add Inflate and comparison operators to the
607           Borders type. When calculating MenuOrigin and it's a form with a
608           window manager, use the window manager to calculate it.
610 2007-04-17  Chris Toshok  <toshok@ximian.com>
612         * Control.cs (CreateControl): turns out in 2.0 we don't need this
613         OnBindingContextChanged thing here.  It's only generated from
614         ContainerControl.OnCreateControl.  Fixes a newly written unit test
615         - BindingTest.BindingContextChangedTest4.
616         
617 2007-04-17  Jackson Harper  <jackson@ximian.com>
619         * ScrollBar.cs: When setting values, make sure the current
620         position stays within the new values range.
622 2007-04-17  Chris Toshok  <toshok@ximian.com>
624         * Control.cs (CreateControl): talk about a bizarre corner case.
625         Don't emit OnBindingContextChanged here if we're a parentless
626         control (i.e. if we're a form.).  Fixes
627         BindingTest.BindingContextChangedTest2.
629 2007-04-17  Everaldo Canuto  <everaldo@simios.org>
631         * ButtonBase.cs: Remove TextFormatFlags.WordBreak to mimic same behavior 
632         from win32. Fixes #81255.
634 2007-04-17  Everaldo Canuto  <everaldo@simios.org>
636         * ThemeWin32Classic.cs: Remove text offset from DrawButtonText as it is
637         already present in CalculateButtonTextAndImageLayout.
639 2007-04-17  Rolf Bjarne Kvinge <RKvinge@novell.com> 
641         * XplatUIX11.cs: When setting min/max size for a window we need to
642           translate the coordinates to x coordinates. Create an overload of
643           SetWindowMinMax that takes a CreateParams handling this, and change
644           SetWMStyles to call this function (can't use Control.FromHandle in
645           the SetWindowMinMax to get the control/CreateParams from the handle
646           because the handle might not have been assigned to the control
647           yet). Fixes #81371.
649 2007-04-16  Carlos Alberto Cortez <calberto.cortez@gmail.com>
651         * ListView.cs: In ItemControl.ItemMouseDown, don't change check state
652         if StateImageList is non-null and it has less than two items (match MS
653         behaviour). Also, in HandleNavKeys handle the Space key, calling
654         the new ToggleItemsCheckState method, which tries to change the
655         checked state of the selected items. Fixes part of #81191.
657 2007-04-16  Jackson Harper  <jackson@ximian.com>
659         * RichTextBox.cs: namespace cleanup.
661 2007-04-16  Everaldo Canuto  <everaldo@simios.org>
663         * XplatUIWin32.cs: Back last parameter to true in SetClipRegion.
665 2007-04-16  Everaldo Canuto  <everaldo@simios.org>
667         [Fixes #79447]
668         * Control.cs: Call invalidate in set_Region.
670         * XplatUIX11.cs, XplatUIWin32.cs: Remove invalidate from SetClipRegion as
671         it dont works here.
673 2007-04-16  Jackson Harper  <jackson@ximian.com>
675         * TextBoxBase.cs: When enter is pressed, we need to update all
676         lines below the current.
678 2007-04-16  Jonathan Pobst  <jpobst@monkey.com>
680         * MdiClient.cs: Implement implicit menu merging for MDI
681         children.  When a child form is active, if it has a menustrip
682         and the parent form has a MainMenuStrip, automatically merge
683         the menus.
685 2007-04-15  Andreia Gaita  <avidigal@novell.com>
687         * TabControl.cs: Refactored sizing methods to not repeat
688         code all over the place. Tab bounds are now calculated
689         as if alignment is top and single line, and only when 
690         setting the bounds are the positions adjusted according
691         to alignment. Replaced hardcoded positions, spacings and
692         paddings by getting the values the ThemeEngine. 
693         Fixes #79619.
694         
695         * Theme.cs: Change TabControl properties and methods so
696         that all start with TabControl*. Added more properties
697         to help remove hardcoded values on tabcontrol.
698         Add CPDrawBorder3D declaration so the Theming classes
699         can access it.
700         
701         * ThemeClearlooks.cs, ThemeNice.cs: Method signature changes from Theme.
703         * ThemeWin32Classic.cs: Rector TabControl out to the TabControlPainter
704         on the Theming namespace, and call the appropriate methods here.
705         Change CPDrawBorder3D to public.
707 2007-04-13  Carlos Alberto Cortez <calberto.cortez@gmail.com>
709         * Control.cs: In WmRButtonUp, send the WM_CONTEXTMENU message to
710         the control after firing the OnMouseUp event, instead of sending
711         the message before the mentioned event. This is so we can match the
712         MS behaviour. Fixes part of #80385.
714 2007-04-13  Jonathan Pobst  <monkey@jpobst.com>
716         * ToolStripItem.cs: Call the RightToLeftChanged event when setting the
717         RightToLeft property.
719 2007-04-13  Jonathan Pobst  <monkey@jpobst.com>
721         * ToolStrip.cs: Add properties and internal methods to support merging.
722         * ToolStripItem.cs: Add MergeAction and MergeIndex.
723         * ToolStripItemCollection.cs: Add Insert and Remove methods that do
724         not trigger reparenting or layouts.
725         * ToolStripManager.cs: Add Merge and RevertMerge methods.
726         * ToolStripOverflow.cs: Add a convenience method to find the ToolStrip that
727         is hosting the overflow menu.
729 2007-04-13  Jackson Harper  <jackson@ximian.com>
731         * TextControl.cs: Set the line ending correctly for the first
732         inserted line.
734 2007-04-13  Sebastien Pouliot  <sebastien@ximian.com>
736         * Theme.cs: Update GetMethod to get the new definition for 
737         KnownColors.Update (and fix theme color updates).
739 2007-04-12  Everaldo Canuto  <everaldo@simios.org>
741         * MessageBox.cs: Fix some test and button position.
743 2007-04-12  Carlos Alberto Cortez <calberto.cortez@gmail.com>
745         * Form.cs: Consider the implicit controls in
746         GetRealChildAtPoint. We need it since this method
747         is called on Form when handling the some messages in
748         WndProc, and need to consider those implicit ones too.
749         Fixes #80385.
751 2007-04-12  Jonathan Pobst  <monkey@jpobst.com>
753         * ToolStripMenuItem.cs: Display the ShortcutKeyDisplayString even
754         if there are no ShortcutKeys set.
755         * ToolStripProfessionalRenderer.cs: If an item has had its BackColor
756         set, use it when painting.
758 2007-04-12  Jackson Harper  <jackson@ximian.com>
760         * TextControl.cs: Fix some off-by-one issues in line duplication
761         and insertion in the undo manager. Also, overwrite the first tag
762         of a line on insert, if it is just a zero lengthed tag. This
763         prevents us from getting an extra stranded tag at the beginning of
764         the first line.
766 2007-04-11  Everaldo Canuto  <everaldo@simios.org>
768         * Label.cs: Remove check for handle created in CalcAutoSize, we need 
769         to calculated proper size including when handle was not created yet.
771 2007-04-11  Rolf Bjarne Kvinge <RKvinge@novell.com> 
773         * MdiWindowManager.cs: When moving a form, allow the form to be moved
774           when the mouse is outside of it's parent's client rectangle. Fixes
775           #79982 (take 3, part 2).
777 2007-04-10  Rolf Bjarne Kvinge <RKvinge@novell.com> 
779         * X11Structs.cs: Add a few ToString() overrides.
780         * XplatUIX11.cs: Added GetTopLevelWindowLocation to try to calculate
781           the window location in a window-manager independent way. Reworked
782           FrameExtents, it now actually works. Reworked AddConfigureNotify
783           and ReparentNotify handling to use GetTopLevelWindowLocation
784           instead of the earlier, more hacky solution. Reworked SetWMStyles,
785           hopefully for the better: we now set _NET_WM_WINDOW_TYPE* for all
786           windows, DIALOG for modal windows, UTILITY for toolboxes and NORMAL
787           for all other windows (fixes #81281 part 1), a toolwindow is hidden
788           from the taskbar if it has a parent (fixes #81281 part 2 for kwin),
789           and generally refactored to do as few calculations as possible
790           inside the lock.
792 2007-04-09  Sebastien Pouliot  <sebastien@ximian.com>
794         * Theme.cs: Change "reflective-contract" between MWF and SD to 
795         minimize # of calls, avoid Color serialization and avoid updating 
796         every "known colors" each time a single one is updated.
798 2007-04-09  Gert Driesen  <drieseng@users.sourceforge.net>
800         * DataGridTextBoxColumn.cs: Only set IsInEditOrNavigateMode to false
801         when not readonly and the text is explicitly set. Code style updates.
802         * DataGridTableStyle.cs: Removed extra line.
803         * DataGrid.cs: Code style updates. Removed extra whitespace.
804         * DataGridColumnStyle.cs: Code style updates. Removed extra 
805         whitespace.
807 2007-04-09  Rolf Bjarne Kvinge <RKvinge@novell.com> 
809         * XplatUIX11.cs: Added comment that "fixes" #80021.
811 2007-04-09  Jackson Harper  <jackson@ximian.com>
813         * TextControl.cs: We don't need this -1 on the line count anymore.
815 2007-04-09  Gert Driesen  <drieseng@users.sourceforge.net>
817         * DataGridTextBoxColumn.cs: In Commit, use TypeConverter to convert
818         entered value to underlying type, and convert it back to a string to
819         apply formatting. Modified GetFormattedValue to use TypeConverter
820         if available.
822 2007-04-08  Gert Driesen  <drieseng@users.sourceforge.net>
824         * ListViewItem.cs: Added null checks. Avoid duplicating code in ctors.
825         Use SubItems property when we want to ensure there's at least one
826         subitem. Modified SubItems property to ensure there's always at least
827         one subitem. Avoid using ListViewSubItemCollection.AddRange to match
828         the NRE's reported by MS.
830 2007-04-07  Gert Driesen  <drieseng@users.sourceforge.net>
832         * ProgressBar.cs: On 2.0 profile, default forecolor is Highlight. Added
833         ResetForeColor override on 2.0. Fixed a few API compatibility issues.
834         Spaces to tabs. Removed extra tabs.
836 2007-04-06  Jonathan Pobst  <monkey@jpobst.com>
838         * ToolStripSplitStackLayout.cs: If we run out of things to hide, don't
839         infinite loop.  (Forgot to copy to the horizontal toolstrip case.)
841 2007-04-06  Jackson Harper  <jackson@ximian.com>
843         * TextBoxBase.cs: When a delete removes a line, recalculate all
844         lines below that line (they need to get offsets setup correctly)
845         and invalidate.
847 2007-04-05  Jackson Harper  <jackson@ximian.com>
849         * TextControl.cs: We need to invalidate across the width of the
850         document when we are invalidating multiple lines.
851         * TextBoxBase.cs: Don't delete into the line ending.
853 2007-04-05  Carlos Alberto Cortez <calberto.cortez@gmail.com>
855         * ListView.cs: Restore the check for the MouseHover event
856         in ListView. It looks like the ListView fires more than one MouseHover
857         event when HoverSelection is true  _only_ in weird-corner scenarios, but
858         in most of the cases it only fires one. Also, add the 2.0 ItemMouseHover
859         event.
861 2007-04-05  Mike Kestner  <mkestner@novell.com>
863         * ListView.cs : raise MouseDown before updating selection.
864         [Fixes #80373 tab 1&3]
866 2007-04-05  Jonathan Pobst  <monkey@jpobst.com>
868         * ToolStripRenderer.cs: Add static method to mirror image.
869         * ToolStripProfessionalRenderer.cs: Support ImageTransparentColor
870         and RightToLeftAutoMirrorImage.
871         * ToolStripItem.cs: Remove MonoTODO from ImageTransparentColor.
873 2007-04-05  Jonathan Pobst  <monkey@jpobst.com>
875         * ToolStripSplitStackLayout.cs: Support Alignment property.
876         * ToolStripItem.cs: Remove MonoTODO from the Alignment property.
878 2007-04-05  Jackson Harper  <jackson@ximian.com>
880         * TextControl.cs: Move around the line endings when crossing line
881         boundaries.
882         - When combining lines, strip the ending text off the first line.
884 2007-04-05  Jackson Harper  <jackson@ximian.com>
886         * TextControl.cs:
887         * TextBoxBase.cs: Try to never move the cursor into the line
888         ending.
889         
890 2007-04-04  Jonathan Pobst  <monkey@jpobst.com>
892         * ToolStripItem.cs: Make sure we aren't firing mouse events when
893         the item is disabled.  Also add a few missing methods.
895 2007-04-04  Carlos Alberto Cortez <calberto.cortez@gmail.com>
897         * ListView.cs: We don't need the MouseEnter/MouseLeave check
898         to fire just one MouseHover event when HoverSelection is true, since
899         .Net does fire more than one MouseHover event in that scenario. Also,
900         fix the selection in HoverSelection, by invoking UpdateMultiSelect
901         if MultiSelect is true, instead of only setting ListViewItem.Selected.
902         Finally, we need to reset the Hover logic in MouseMove, even when we
903         don't have a selected item.
905 2007-04-04  Jonathan Pobst  <monkey@jpobst.com>
907         * ToolStrip.cs: Add several missing methods, properties, and events.
909 2007-04-04  Chris Toshok  <toshok@ximian.com>
911         * DataGridTextBoxColumn.cs: set the bounds of the text box to
912         (0,0,0,0) in Commit, as MS does.
914         * DataGrid.cs: call EndEdit() from Select() as microsoft does, and
915         make sure we set CurrentRow on a row header click *before* calling
916         Select.  This moves the current cell (and the textbox) to the new
917         row.  The call to Select then hides the textbox, giving us the
918         correct behavior.  Fixes #80362.
920         * CurrencyManager.cs (UpdateIsBinding): raise ItemChanged (-1).
921         (ListChangedHandler): reorder the position/current changed events,
922         and call UpdateIsBinding in the ItemAdded case.
924         * GridColumnStylesCollection.cs: add some columns events, one of
925         which raises the CollectionChanged event.
927 2007-04-04  Jackson Harper  <jackson@ximian.com>
929         * TextControl.cs: When we delete multiple selection lines
930         invalidate the selection area, don't need to do that for single
931         lines because the final update view will handle it.
933 2007-04-04  Jonathan Pobst  <monkey@jpobst.com>
935         * Control.cs: When we CreateControl, we need to also create all of the
936         control's children.  The child's OnLoad must also fire before the parent's
937         OnLoad.  Fixes the toolbox size in PDN.
939 2007-04-04  Jackson Harper  <jackson@ximian.com>
941         * TextBoxBase.cs: When the user presses enter, insert a line
942         ending into the text. (Maybe this would be a good spot for
943         Environment.NewLine).
944         * TextControl.cs: Remove undo manager hack, line endings get
945         inserted properly now.
946         
947 2007-04-04  Everaldo Canuto  <everaldo@simios.org>
949         * MenuAPI.cs: 
950         - Remove unneeded parameters in UpdateCursor.
951         - Fix UpdateCursor to check if menu is active.
952         - Call UpdateCursor when menu deactivate my click.
953         [Fixes remaining issues from #80410]
955 2007-04-04  Everaldo Canuto  <everaldo@simios.org>
957         * Control.cs: GetRealChildAtPoint method added, it make an
958         recursive child control search for the point. 
960         * Form.cs: Makes use of GetRealChildAtPoint in mouse event after closes
961         menu.
963         * MenuAPI.cs: Makes use of GetRealChildAtPoint in UpdateCursor.
965 2007-04-03  Everaldo Canuto  <everaldo@simios.org>
967         * Form.cs: Fix mouse position when send back mouse event after closes
968         menu.
970 2007-04-03  Everaldo Canuto  <everaldo@simios.org>
972         * Form.cs: Simplify the BUTTONDOWN for active tracker.
974 2007-04-03  Jonathan Pobst  <monkey@jpobst.com>
976         * Control.cs: Fix an issue where if a user resized a control inside
977         a sizing method like OnResize, we would overwrite their explicit
978         value.  Also, only call DefaultSize once in the constructor instead
979         of 4 times.  Also, do not call SetBoundsCore from SetBounds if 
980         nothing actually changed.
982 2007-04-03  Jackson Harper  <jackson@ximian.com>
984         * TextControl.cs: Don't attempt to copy text for lines with no
985         text in them (technically this shouldn't happen, but we aren't
986         always inserting line endings when we should be).
988 2007-04-03  Jackson Harper  <jackson@ximian.com>
990         * TextBoxBase.cs: Calculate the scrollbars before calculating the
991         document, because this sets some of the document size properties
992         that are needed.
994 2007-04-03  Jackson Harper  <jackson@ximian.com>
996         * TextBoxBase.cs: We need to calculate maximums even if this is
997         not a multiline control, because the maxs are used for scrolling.
998         - Display the caret after doing a page up/down, we need to
999         manually display it because a proper CaretMoved event isn't
1000         triggered (this is because of the way the math is done to
1001         determine how far to scroll).
1003 2007-04-03  Jonathan Pobst  <monkey@jpobst.com>
1005         * ToolBar.cs: Fix some breakage caused by the SetBoundsCore change.
1006         (ToolBar was relying on SetBoundsCore to default the values sent 
1007         base off of BoundsSpecified.)
1009 2007-04-03  Rolf Bjarne Kvinge <RKvinge@novell.com> 
1011         * DateTimePicker.cs: Change Text so that when a null value or empty
1012           string is assigned to the test we always raise ValueChanged and
1013           TextChanged (earlier implementation would only raise ValueChanged
1014           if the current date value was different from DateTime.Now).
1016 2007-04-03  Andreia Gaita <avidigal@novell.com> 
1018         * ButtonBase: Call update after invalidation, fixes #80194
1020 2007-04-03  Rolf Bjarne Kvinge <RKvinge@novell.com> 
1022         * ThemeWin32Classic.cs: Draw StatusBar using double buffering. Fixes
1023           #79335.
1025 2007-04-03  Rolf Bjarne Kvinge <RKvinge@novell.com> 
1027         * XplatUIX11.cs: SetWMStyles: If the control is a form with
1028           FormBorderStyle = None, don't give the window any decorations.
1029           Fixes #81276.
1031 2007-04-03  Rolf Bjarne Kvinge <RKvinge@novell.com> 
1033         * XplatUI.cs, XplatUIDriver.cs: Updated CalculateWindowRect parameters.
1034         * CreateParams.cs: Fix IsSet, wasn't working correctly when the style
1035           to check for is a mix of several styles (such as WS_CAPTION for
1036           instance).
1037         * Control.cs: Don't paint an area bigger than the client area when
1038           painting the background colour. Add an internal GetCreateParams.
1039           Update calls to XplatUI.CalculateWindowRect due to API change.
1040         * XplatUIX11.cs: In PerformNCCalc set the initial size to the whole
1041           window's size, and handle WM_NCCALCSIZE in DefWndProc to calculate
1042           the size if it hasn't been handled by any windows. When creating
1043           and moving windows, X wants the location of the entire window, but
1044           the size of the client window, so add
1045           TranslateClientRectangleToXClientRectangle,
1046           TranslateWindowSizeToXWindowSIze and
1047           TranslatedXWindowSizeToWindowSize to cope with this, and call them
1048           before every window creation and move. Update CalculateWIndowRect
1049           to use Hwnd.GetWindowRect (one step towards removing DeriveStyles).
1050           In AddConfigureNotify don't do anything if the hwnd is a zombie
1051           (fixes the BadWindow we were getting while running the tests),
1052           always calculate the offsets when it's a parentless window, not
1053           only when reparented, and translate the window size, since we're
1054           getting the client size of the whole window, excluding entire
1055           window.
1056         * Theme.cs: Added BorderSizableSize.
1057         * XplatUIWin32.cs: Fix RECT Height and Width. Don't fake styles here
1058           anymore. Update calls to XplatUI.CalculateWindowRect due to API
1059           chang
1060         * Form.cs: Update calls to XplatUI.CalculateWindowRect due to API
1061           change. Fake the window styles here instead of in XplatUIWin32 so
1062           that all back-ends get the same window styles (and it's Form that's
1063           deciding when to use wm, not the Win32 backend anyways)
1064         * Hwnd.cs: Completely reworked GetWindowRectangle and
1065           GetClientRectangle - they are now passed a CreateParams and they
1066           only use Style and ExStyle to determine the rectangles (they should
1067           now work just like Win32AdjustWindowRectEx - though quite a few
1068           special cases are probably missing). They should also be 100%
1069           complimentary (i.e. GetWindowRectangle (GetClientRectangle (rect))
1070           == rect), and all numbers (borders, menu sizes) are taken from the
1071           current theme. Added a GetBorders helper function that will return
1072           the borders for any given CreateParams (including captions and
1073           menus), and GetBorderSize that returns the given border size only.
1074         * XplatUIOSX.cs: Update calls to CalculateWindowRect and
1075           Hwnd.GetClientRectangle.
1077 2007-04-02  Chris Toshok  <toshok@ximian.com>
1079         * DataGridBoolColumn.cs: rewrite things a bit, and fix up the
1080         logic between the values we present to the user and the values
1081         which are stored in the column's property.  Also, don't call
1082         GetPreferredSize - it's virtual. Along the way, fix bug #80965.
1084 2007-04-02  Jackson Harper  <jackson@ximian.com>
1086         * TextBoxBase.cs: Scroll faster!
1088 2007-04-02  Jonathan Pobst  <monkey@jpobst.com>
1090         * StatusStrip.cs: Layout fixes for PDN.
1091         * ToolStrip.cs: Set item's available to true, and placement to main when
1092         added.
1093         * ToolStripItem.cs: Fix an Available issue, check that Parent is really
1094         changing in setter before doing any work, add InternalVisible.
1095         * ToolStripPanel.cs: Remove unused variable to fix compiler warning.
1096         * ToolStripSplitStackLayout.cs: If we run out of things to hide, don't
1097         infinite loop.
1099 2007-04-02  Jackson Harper  <jackson@ximian.com>
1101         * TextBox.cs: LBUTTON does not make the textbox select all of it's
1102         text on focus.
1104 2007-04-02  Rolf Bjarne Kvinge <RKvinge@novell.com> 
1106         * XplatUIWin32.cs: Use the previous change in SetParent for forms only.
1107           Makes ToolStripComboBoxes show up again.
1109 2007-04-02  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1111         * ListView.cs: Add a hover_pending field in ListView
1112         to fire just one OnMouseHover event for each MouseEnter/MouseLeave
1113         cycle (we are resetting the MouseHover logic in XplatUI
1114         to handle HoverSelection). Fixes #80429.
1116 2007-04-02  Jackson Harper  <jackson@ximian.com>
1118         * TextControl.cs: Make sure the attributes get set on the last
1119         tag.
1120         - Still have to do the end tag if we have stepped all the ways to
1121         the end.
1123 2007-04-02  Sebastien Pouliot  <sebastien@ximian.com>
1125         * XplatUIOSX.cs, XplatUIX11.cs, XplatUIX11GTK.cs: Remove dependency
1126         on an internal libgdiplus call when the information is already 
1127         available via the public API.
1129 2007-04-02  Rolf Bjarne Kvinge <RKvinge@novell.com> 
1131         * Control.cs: Call ContainerControl.ChildControlRemoved whenever a
1132           control is removed from a control collecftion.
1133         * XplatUIX11.cs: The first location for toplevel form is (22, 22).
1134           Fixes FormPropertyTest (failed on rare occasions).
1135         * XplatUIWin32.cs: Add a workaround in SetParent for strange behaviour
1136           of Win32SetParent (when changing from no parent to a parent it
1137           might add the new parent's location in screen coordinates to this
1138           window's location).
1139         * Form.cs: Rework ChangingParent once again, now the handle is
1140           recreated whenever a FormWindowManager is added or removed (that is
1141           whenever a normal form is parented or abandoned). Also change
1142           CreateParams so that all non-toplevel windows always get the
1143           specified sice (StartupPosition is never considered for
1144           non-TopLevel forms).
1145         * ContainerControl.cs: Add ChildControlRemoved, the container control
1146           needs to be notified when a control is removed from it's
1147           collection, in the case the removed control is the active control.
1149 2007-04-02  Jackson Harper  <jackson@ximian.com>
1151         * RichTextBox.cs: Use the new methods for setting the font and
1152         color, these methods set the specified attribute without
1153         overriding the other attributes.
1155 2007-04-02  Jonathan Pobst  <monkey@jpobst.com>
1157         * ToolStripPanel.cs: Fixes for better layouts in PDN.
1159 2007-03-31  Gert Driesen  <drieseng@users.sourceforge.net>
1161         * TextBox.cs: Added internal ChangeBackColor method to special-case
1162         Color.Empty. Added check for invalid ScrollBars value.
1163         * TextBoxBase.cs: Added internal ChangeBackColor method.
1164         * RichTextBox.cs: Only set backcolor_set on 2.0 profile. Added
1165         internal ChangeBackColor method to special-case Color.Empty. Added
1166         check for invalid ScrollBars value.
1168 2007-03-30  Everaldo Canuto  <everaldo@simios.org>
1170         * MenuItem.cs: On invalidate prevent form to create handle. [Fixes #81272]
1172 2007-03-30  Jonathan Pobst  <monkey@jpobst.com>
1174         * ScollableControl.cs: Add HorizontalScroll and VerticalScroll properties.
1175         * ScrollProperties.cs, HScrollProperties.cs, VScrollProperties.cs: Added.
1176         [Based on submitted patch from Olivier Duff.]
1178 2007-03-30  Jackson Harper  <jackson@ximian.com>
1180         * TextBox.cs: Only select all on initial focus if the user has not
1181         specified a selection area.
1183 2007-03-30  Jonathan Pobst  <monkey@jpobst.com>
1185         * UserControl.cs: Override CreateParams.
1187 2007-03-30  Rolf Bjarne Kvinge <RKvinge@novell.com> 
1189         [ Fixes #80995 ]
1191         * XplatUI.cs, XplatUIDriver.cs: Updated CalculateWindowRect parameters.
1192         * CreateParams.cs: Fix IsSet, wasn't working correctly when the style to
1193           check for is a mix of several styles (such as WS_CAPTION for instance).
1194         * Control.cs: Don't paint an area bigger than the client area when painting
1195           the background colour. Add an internal GetCreateParams. Update calls to
1196           XplatUI.CalculateWindowRect due to API change.
1197         * XplatUIX11.cs: In PerformNCCalc set the initial size to the whole window's
1198           size, and handle WM_NCCALCSIZE in DefWndProc to calculate the size if it
1199           hasn't been handled by any windows. When creating and moving windows, X
1200           wants the location of the entire window, but the size of the client
1201           window, so add TranslateClientRectangleToXClientRectangle,
1202           TranslateWindowSizeToXWindowSIze and TranslatedXWindowSizeToWindowSize
1203           to cope with this, and call them before every window creation and move.
1204           Update CalculateWIndowRect to use Hwnd.GetWindowRect (one step towards
1205           removing DeriveStyles). In AddConfigureNotify don't do anything if the
1206           hwnd is a zombie (fixes the BadWindow we were getting while running the
1207           tests), always calculate the offsets when it's a parentless window, not
1208           only when reparented, and translate the window size, since we're getting
1209           the client size of the whole window, excluding entire window.
1210         * Theme.cs: Added BorderSizableSize.
1211         * XplatUIWin32.cs: Fix RECT Height and Width. Don't fake styles here
1212           anymore. Update calls to XplatUI.CalculateWindowRect due to API change.
1213         * Form.cs: Update calls to XplatUI.CalculateWindowRect due to API change.
1214           Fake the window styles here instead of in XplatUIWin32 so that all
1215           back-ends get the same window styles (and it's Form that's deciding when
1216           to use wm, not the Win32 backend anyways)
1217         * Hwnd.cs: Completely reworked GetWindowRectangle and GetClientRectangle -
1218           they are now passed a CreateParams and they only use Style and ExStyle
1219           to determine the rectangles (they should now work just like
1220           Win32AdjustWindowRectEx - though quite a few special cases are probably
1221           missing). They should also be 100% complimentary (i.e. GetWindowRectangle
1222           (GetClientRectangle (rect)) == rect), and all numbers (borders, menu
1223           sizes) are taken from the current theme. Added a GetBorders helper
1224           function that will return the borders for any given CreateParams
1225           (including captions and menus), and GetBorderSize that returns the given
1226           border size only.
1227         * XplatUIOSX.cs: Update calls to CalculateWindowRect and
1228           Hwnd.GetClientRectangle.
1230 2007-03-30  Rolf Bjarne Kvinge <RKvinge@novell.com> 
1232         * Form.cs: Don't layout mdi children on MdiParent creation, the initial
1233           layout of the mdi children is handled by CreateParams. Fixes
1234           #79964,
1236 2007-03-29  Everaldo Canuto  <everaldo@simios.org>
1238         * MenuAPI.cs: Make OnMouseDown returns a boolean to identify if event is
1239         processed.
1241         * Form.cs: When active tracker mouse down is not processed, send event 
1242         back to control inside mouse position. [Fixes #81227]
1244 2007-03-29  Jonathan Pobst  <monkey@jpobst.com>
1246         * ComboBox.cs: Override the ComboListBox's ActivateOnShow property and
1247         remove WS_VISIBLE from CreateParams to prevent combobox dropdowns from
1248         stealing focus from the active form on Windows.  (Control will be made
1249         visible in ShowWindow.)
1251 2007-03-29  Mike Kestner  <mkestner@novell.com>
1253         * ImageList.cs : add internal Changed event.
1254         * ListView.cs : hook up to StateImageList.Changed to perform
1255         invalidations when the the state icon list changes. [Fixes #81191]
1257 2007-03-29  Jonathan Pobst  <monkey@jpobst.com>
1259         * ToolTip.cs: Override the ToolTipWindow's ActivateOnShow property
1260         to prevent tooltips from stealing focus from the active form on Windows.
1262 2007-03-29  Everaldo Canuto  <everaldo@simios.org>
1264         * ThemeWin32Classic.cs: Small stetic fixes in notifyicon balloon. 
1266         * ThemeClearlooks.cs: Implement notifyicon balloon for clearlooks theme.
1268 2007-03-29  Everaldo Canuto  <everaldo@simios.org>
1270         * NotifyIcon.cs, ThemeWin32Classic.cs: Icon support added to notifyicon
1271         balloons.
1273 2007-03-29  Jackson Harper  <jackson@ximian.com>
1275         * TextControl.cs: When deleting text from non multiline textboxes,
1276         we need to update the entire document, because line offsets will
1277         be shifting.
1279 2007-03-29  Everaldo Canuto  <everaldo@simios.org>
1281         * XplatUIX11.cs, ThemeWin32Classic.cs, Theme.cs: ShowBalloonWindow method
1282         added to theme, now we can create themes that uses diferent notify engines
1283         like notification-daemon from galago project or growl for Mac OS.
1285 2007-03-28  Everaldo Canuto  <everaldo@simios.org>
1287         * NotifyIcon.cs: Prevent Balloon to show in task bar.
1289 2007-03-28  Everaldo Canuto  <everaldo@simios.org>
1291         * XplatUIX11.cs: Prevent system to open more than one balloon.
1293         * NotifyIcon.cs: Prevent system to open more than one balloon and remove
1294         some compiler warning messages.
1296 2007-03-28  Everaldo Canuto  <everaldo@simios.org>
1298         [Fixes #79149]
1300         * XplatUIX11.cs: Implement SystrayBalloon for X11 systems.
1302         * ThemeWin32Classic.cs, Theme.cs: DrawBalloonWindow and BalloonWindowRect 
1303         implemented, this methods is used by NotifyIcon.BalloonWindow class.
1305         * NotifyIcon.cs: BalloonWindow class added to support Balloon in X11 
1306         systems.
1308 2007-03-28  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1310         * ListViewItem.cs: Forgot to make Invalidate internal.
1312 2007-03-28  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1314         * ListView.cs: Add a InvalidateSelection method to
1315         invalidate methods which are currently selected, and call
1316         it when setting FullRowSelect and HideSelection, instead of
1317         calling Redraw.
1319 2007-03-28  Chris Toshok  <toshok@ximian.com>
1321         * XplatUIX11.cs (UnmapWindow): reindent this block.
1323         * DataGrid.cs (UpdateSelectionAfterCursorMove): we need to update
1324         the selection_start if we're moving the selection (that is, not
1325         extending it). Fixes bug #80461.
1327 2007-03-28  Jonathan Pobst  <monkey@jpobst.com>
1329         * ProgressBar.cs: Make the default MarqueeAnimationSpeed = 100.
1330         * ToolStripPanel.cs: Fix RowMargin, Renderer, RenderMode, and
1331         create private ControlCollection.
1333 2007-03-28  Jonathan Pobst  <monkey@jpobst.com>
1335         * Control.cs: We need to call OnVisibleChanged for our implicit
1336         children as well as our normal children.  Fixes scrollbars in
1337         comboboxes not showing up.
1339 2007-03-28  Jonathan Pobst  <monkey@jpobst.com>
1341         * Control.cs, Form.cs: Anywhere we call CreateHandle, we need to do
1342         the check for IsHandleCreated first.  The check in CreateHandle is not
1343         good enough because CreateHandle can be overriden, and the override 
1344         should not be called if the handle is already created.
1346 2007-03-28  Jonathan Pobst  <monkey@jpobst.com>
1348         * ToolStrip.cs: Remove MonoTODO for tooltips.
1349         * ToolStripComboBox.cs: Fix MonoTODO for DropDownHeight and events.
1350         * ToolStripContainer.cs: Add custom ControlCollection class.
1351         * ToolStripContentPanel.cs: Fix Renderer setting to match MS behavior.
1352         * ToolStripDropDown.cs: Add some missing properties/methods.
1353         * ToolStripDropDownMenu.cs: Override OnLayout and SetDisplayedItems.
1354         * ToolStripItem.cs: Remove MonoTODO for tooltips.
1355         * ToolStripManager.cs: Add IsShortcutDefined.
1356         * ToolStripOverflow.cs: Override LayoutEngine.
1357         * ToolStripProgressBar.cs: Add MarqueeAnimationSpeed.
1358         * ToolStripSeparator.cs: Add ImageKey.
1360 2007-03-28  Jackson Harper  <jackson@ximian.com>
1362         * TextControl.cs: If a char delete removes a line ending, we need
1363         to update the ending style.
1364         - Make sure the line ending calcs get called.
1366 2007-03-28  Rolf Bjarne Kvinge <RKvinge@novell.com> 
1368         * XplatUIX11.cs: CreateWindow: Remove old default form location code,
1369           it was making the new code not work. Fixed a typo in the new code
1370           as well. Fixes #79826.
1372 2007-03-27  Everaldo Canuto  <everaldo@simios.org>
1374         * XplatUIWin32.cs:
1375         - NIF_STATE and NIF_INFO added to NotifyIconFlags.
1376         - NOTIFYICONDATA properties sizes fixed, szTip is 128, not 64.
1377         - SystrayBalloon method implemented.
1378         [Add support for notifyicon balloon on win32, #79149]
1380 2007-03-27  Mike Kestner  <mkestner@novell.com>
1382         * ThemeWin32Classic.cs : update StateImageList selection to mirror
1383         the ms behavior when only one image is added to the list.
1384         [Fixes #81191]
1386 2007-03-27  Jackson Harper  <jackson@ximian.com>
1388         * TextControl.cs: Improvements to non multiline line ending
1389         drawing/measuing.
1391 2007-03-27  Everaldo Canuto  <everaldo@simios.org>
1393         * XplatUIX11.cs: Fix the time which tooltip is opened for NotifyIcon. 
1395 2007-03-27  Everaldo Canuto  <everaldo@simios.org>
1397         * NotifyIcon.cs: 
1398         - Balloon message handling added.
1399         - Call XplatUI.SystrayBalloon in ShowBalloonTip. 
1401         * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs, XplatUIWin32.cs, 
1402         XplatUIOSX.cs, XplatUIX11-new.cs: ShowBalloonTip method renamed 
1403         to SystrayBalloon to me like other Systray method, also a
1404         handle parameter added.
1406 2007-03-27  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1408         * ListView.cs: Show scrollbars even when items.Count == 0
1409         but the columns Width is bigger than the ListView.Width.
1410         Also, when columns.Count == 0 set layout_wd and layout_ht
1411         to the ClientRectangle values, so we don't show any scrollbar
1412         in that case.
1414 2007-03-27  Everaldo Canuto  <everaldo@simios.org>
1416         * XplatUIStructs.cs: Balloon (NIN_BALLOON*) constants added.
1418 2007-03-27  Jackson Harper  <jackson@ximian.com>
1420         * RichTextBox.cs: The RTF library decodes the text properly for us
1421         now.
1423 2007-03-27  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1425         * ListView.cs: Display HeaderControl even when columns.Count == 0.
1426         * ThemeWin32Classic.cs: Use SystemBrushes.Control to draw the
1427         ListView header (HeaderControl), instead of Control.BackColor.
1429 2007-03-27  Jonathan Pobst  <monkey@jpobst.com>
1431         * Control.cs: Call OnVisibleChanged in SetVisibleCore for non-forms.
1432         Fixes tab control issues where controls would not show up because they
1433         never received their OnVisibleChanged call.
1435 2007-03-27  Everaldo Canuto  <everaldo@simios.org>
1437         * NotifyIcon.cs: Balloon events added (BalloonTipClicked, BalloonTipClosed,
1438         BalloonTipShown).
1440 2007-03-27  Jonathan Pobst  <monkey@jpobst.com>
1442         * Control.cs: We won't get a WM_SHOWWINDOW when we create a window that
1443         is maximized or minimized, so move CreateControl to Control.OnVisibleChanged.
1444         * Form.cs: After we set the form visible, send a fake WM_SHOWWINDOW if we
1445         are max or min.  Remove WS_VISIBLE from CreateParams unless we are recreating
1446         the handle.  Fix WindowState by using the internal variable until we are 
1447         sure that we've been shown.
1448         * XplatUIX11.cs: Do not generate a WM_SHOWWINDOW message if new form is
1449         max or min.
1450         [Fixes bug #81198]
1452 2007-03-27  Rolf Bjarne Kvinge <RKvinge@novell.com> 
1454         * XplatUIX11.cs: Windows without WS_CAPTION can still get decorations
1455           (at least borders). Fixes #79386 on Linux (with a small difference
1456           in behaviour: when trying to resize a caption-less window metacity
1457           shows the sysmenu. Resizing is still possible though).
1458         * XplatUIWin32.cs: When setting window styles send request an extra
1459           WM_NCCALCSIZE when it's a form without title (due to no text and no
1460           caption), since Win32 seems to calculate it wrong the first time we
1461           get the message, though the second time things work as they should.
1462         * Form.cs: Reorder a few statements in ChangingParent, otherwise the
1463           newly reparented window might show up unparented. Update
1464           CreateParams to exclude WS_DLGFRAME if ControlBox is false and
1465           there's no title text. Fixes #79386.
1467 2007-03-27  Mike Kestner  <mkestner@novell.com>
1469         * ListBox.cs : don't perform invalidations if the handle hasn't been
1470         created.  [Fixes #80753]
1472 2007-03-27  Mike Kestner  <mkestner@novell.com>
1474         * ListBox.cs : don't adjust top item when SelectedIndex is set to -1.
1475         [Fixes #80428]
1477 2007-03-26  Everaldo Canuto  <everaldo@simios.org>
1479         * XplatUIWin32.cs: Complete NOTIFYICONDATA structure, additional fields 
1480         needed to implement Balloon.
1482 2007-03-26  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1484         * ListViewItem.cs: In the constructors that take
1485         an array of strings, don't use ListViewSubItemCollection.AddRange
1486         method to add items, since we need to have a different behaviour (in
1487         the constructors we add an item for each null string, opposed to
1488         the behaviour of AddRange, which adds nothing).
1490 2007-03-26  Andreia Gaita  <avidigal@novell.com>
1492         * NumericUpDown.cs: Fix broken 1.1 api for ParseEditText
1494 2007-03-26  Jackson Harper  <jackson@ximian.com>
1496         * TextControl.cs: Draw and measure line endings when in non
1497         multiline mode.
1498         - When searching the text, count the end of the last line as a
1499         word boundary.
1501 2007-03-26  Jackson Harper  <jackson@ximian.com>
1503         * RichTextBox.cs: The selection_start and selection_end don't
1504         really track the correct tags for the selection. So we'll manually
1505         compute the correct tag here.
1507 2007-03-26  Rolf Bjarne Kvinge <RKvinge@novell.com> 
1509         * ProgressBar.cs, ThemeWin32Classic.cs: Implemented drawing of Marquee
1510           and Continuous styles. Fixes #79469.
1512 2007-03-26  Jonathan Pobst  <monkey@jpobst.com>
1514         * ToolStrip.cs: Implement Tooltips.
1515         * ToolStripItem.cs: Create internal method for determining tooltip.
1517 2007-03-26  Jonathan Pobst  <monkey@jpobst.com>
1519         * PropertyGrid.cs: Hide a EditorBrowsable attribute from 1.1 API.
1521 2007-03-26  Everaldo Canuto  <everaldo@simios.org>
1523         * NotifyIcon.cs: On disposing verify if icon is visible and hide it,
1524         it prevents a problem thak keeps icon visible after application 
1525         closes on win32.
1527 2007-03-26  Everaldo Canuto  <everaldo@simios.org>
1529         * NotifyIcon.cs: Balloon properties and methods created.
1531         * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs, XplatUIWin32.cs, 
1532         XplatUIOSX.cs, XplatUIX11-new.cs: Implement ShowBalloonTip method.
1534 2007-03-25  Jonathan Pobst  <monkey@jpobst.com>
1536         * ToolStripComboBox.cs: Default the ComboBox's FlatStyle to Popup.
1538 2007-03-24  Jonathan Pobst  <monkey@jpobst.com>
1540         * Control.cs: Make SetBoundsCore match MS better.  The BoundsSpecified
1541         parameter indicates which aspects were explicit/user-set.
1542         * ComboBox.cs, ListBox.cs: Call SetBoundsCore correctly. (no 0 parameters).
1544 2007-03-24  Jonathan Pobst  <monkey@jpobst.com>
1546         * ProgressBar.cs: Throw AOORE instead of AE for property Value (2.0).
1547         * ScrollBar.cs: Throw AOORE instead of AE for properties LargeChange,
1548         SmallChange, and Value (2.0).
1549         * Timer.cs: Throw AOORE instead of AE for property Interval (2.0).
1551 2007-03-23  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1553         * ListView.cs: Always set item_control.Width in LayoutDetails
1554         if View is Details. Setting it later in CalculateScrollBars
1555         in a not-so-corner scenario (the sum of columns width is
1556         not bigger than the ListView width when handle is created, and then
1557         that sum gets bigger by increasing the width of the columns)
1558         causes a very weird recursion path (which shouldn't be happening,
1559         since header_control sets it in CalculateScrollBars too). This bug
1560         appeared after Chris' fixes for handle created issues, so probably
1561         it's related to some handle-creation time.
1563 2007-03-23  Chris Toshok  <toshok@ximian.com>
1565         * DataGrid.cs (GetVisibleRowCount): increase the row count in the
1566         case where there's an add row, just so we don't end up in a case
1567         where it's not displayed (this happens when the row is partially
1568         obscured).  Fixes bug #79574.
1570 2007-03-23  Jackson Harper  <jackson@ximian.com>
1572         * TextControl.cs:
1573         * TextBoxBase.cs:
1574         * RichTextBox.cs: Preserve line endings in the lines text buffer,
1575         also added an enum that represents the line ending type. 
1577 2007-03-23  Andreia Gaita  <avidigal@novell.com>
1579         * NumericUpDown.cs: Fix logic so Text and Value properties are not
1580         messed with in every method call, but only from DownButton, 
1581         UpButton, UpdateEditText() and ValidateText. Fixes #80346
1583 2007-03-23  Chris Toshok  <toshok@ximian.com>
1585         * DataGridTextBoxColumn.cs (GetFormattedValue): don't try to
1586         format objects if the format spec is "".  Fixes bug #80889.
1588 2007-03-22  Miguel de Icaza  <miguel@novell.com>
1590         * ToolStripPanel.cs (Join): added stubs to build PDN3
1592         * Control.cs (AutoScrollOffset): Add.
1594         * SystemInformation.cs (MouseWheelScrollDelta): Expose this
1595         property, its only implemented for Win32, on X11 it defaults to
1596         some hardcoded value.
1598         * ToolStripItem.cs (AllowDrop): Add property
1600 2007-03-22  Mike Kestner  <mkestner@novell.com>
1602         * ListView.cs : in FullRowSelect Details mode, only enable box
1603         selection if the user clicks over the "item" column outside of the
1604         text area.  Mmmmm, compatibility.  [Fixes #80374 subpart 7]
1606 2007-03-22  Rolf Bjarne Kvinge <RKvinge@novell.com> 
1608         * Control.cs: ChangeParent: Call Form's ChangingParent even if the
1609           handle is not created yet.
1610         * Form.cs: Select: Don't call CreateHandle if the handle is already
1611           created, avoids a stack overflow on Windows when we are recreating
1612           controls.
1613         * ScrollableControl.cs: Set the correct z-order for the scrollbars when
1614           they are made visible, and override AfterTopMostControl to keep
1615           them on top when other controls are brought to front.
1616           CalculateCanvas: Scrollbars are only visible if auto_scroll is true
1617           or force_*scroll_visible is true (old implementation always shows
1618           scrollbars when needed, no matter what auto_scroll was set to).
1619         * InternalWindowManager.cs: UpdateWindowDecorations: Add a
1620           IsHandleCreated check.
1622 2007-03-22  Andreia Gaita  <avidigal@novell.com>
1624         * DataGrid.cs: Implement Column and Row auto sizing when double-clicking on
1625         row or col separator.
1626         * DataGridTextBoxColumn.cs: Implement GetPreferredHeight and GetPreferredSize
1628 2007-03-22  Everaldo Canuto  <everaldo@simios.org>
1630         * MenuAPI.cs: Remove unneeded check for grab_control in UpdateCursor.
1632 2007-03-22  Everaldo Canuto  <everaldo@simios.org>
1634         * MenuAPI.cs: UpdateCursor method added, it is calling in OnMotion to update
1635         cursor for child controls. In ShowWindow and HideWindow now call SetCursor 
1636         every time. Fixes #80410.
1638 2007-03-22  Chris Toshok  <toshok@ximian.com>
1640         * BindingSource.cs (AddNew): partially implement.
1642         remove a couple of NotImplementedException's
1643         to get bug #81148 closed.
1645 2007-03-22  Everaldo Canuto  <everaldo@simios.org>
1647         [Fixes #80380]
1648         
1649         * Control.cs:
1650         - UpdateCursor method added to update the screen cursor.
1651         - GetAvailableCursor method added to return cursor for enabled tree,
1652         it searches for cursor on control and it's parent's for enabled control.
1653         - Call UpdateCursor method on setter of Cursor property.
1654         - On setter of Enabled call UpdateCursor when it is false, we need to
1655         change cursor to normal (or to this parent cursor) because cursor 
1656         setting theres no effect to disabled controls.
1657         - Some minor source changes to follow the coding style guidelines.
1659         * XplatUIX11.cs: In MotionNotify only dispatch SET_CURSOR event for enabled 
1660         controls.
1662 2007-03-22  Chris Toshok  <toshok@ximian.com>
1664         * XplatUIX11.cs: ignore the BadPicture errors cairo+render
1665         generates.
1667 2007-03-22  Rolf Bjarne Kvinge <RKvinge@novell.com> 
1669         * XplatUIX11.cs: Implement default locations for forms.
1670         * Form.cs: Completely rework startup location for forms. Fixes #79964.
1671         * Hwnd.cs: Add previous_child_startup_location (to track the current
1672           startup location for any child forms of the current form) and
1673           previous_main_startup_location (to track the startup location for
1674           the current toplevel form).
1676 2007-03-21  Jonathan Pobst  <monkey@jpobst.com>
1678         * Control.cs: Don't trigger a layout if an implicit control is added
1679         that isn't visible.  Also, don't notify the owner when an implicit control
1680         is added.  (Owners shouldn't even know about their implicit controls.)
1682 2007-03-21  Jonathan Pobst  <monkey@jpobst.com>
1684         * ScrollableControl.cs: Add implicit controls with AddRangeImplicit
1685         to save some re-layouts.
1687 2007-03-21  Everaldo Canuto  <everaldo@simios.org>
1689         * MenuAPI.cs: In ProcessKeys returns false when key is not processed.
1690         [Fixes #81203]
1692 2007-03-21  Jonathan Pobst  <monkey@jpobst.com>
1694         * FlowLayoutSettings.cs, ToolStrip.cs, ToolStripPanel.cs,
1695         ToolStripPanelRow.cs: Lazy instantiate the LayoutEngine.
1697 2007-03-21  Mike Kestner  <mkestner@novell.com>
1699         * ListView.cs : disable selection update for non-left button clicks
1700         with mods and over selected items.  [Fixes #80524]
1702 2007-03-20  Jackson Harper  <jackson@ximian.com>
1704         * TextControl.cs:
1705         * TextBoxBase.cs: Allow different types of line endings. \r, \r\n,
1706         \r\r\n, \n.
1708 2007-03-20  Rolf Bjarne Kvinge <RKvinge@novell.com> 
1710         * ComboBox.cs: PreferredHeight seems to be ItemHeight + 6, but there is
1711           very probably a more complicated calculation there. Update the
1712           textbox' ForeColor and BackColor when the ComboBox' colors are
1713           changed. Change the border change in LayoutComboBox to only affect
1714           the textbox, not all the calculations there. Seems to fix most of
1715           #79436.
1717 2007-03-20  Rolf Bjarne Kvinge <RKvinge@novell.com> 
1719         * ComboBox.cs: Handle Home and End keys as well as all combinations of
1720           modifiers + navigation keys as input keys, enables advanced text
1721           selection in the combobox (like Shift+Left Arrow for instance).
1722           ComboTextBox now overrides Focused and returns whatever
1723           ComboBox.Focused returns, since it really should be focused
1724           whenever the ComboBox is. Fixes #80795. Also make the border around
1725           the text box one pixel bigger, as mentioned in #79436.
1727 2007-03-20  Jackson Harper  <jackson@ximian.com>
1729         * TreeView.cs: Don't offset the images, this was causing some
1730         artifacts when expanding/collapsing with images that were the
1731         exact height of the treenode.
1733 2007-03-20  Rolf Bjarne Kvinge <RKvinge@novell.com> 
1735         * TrackBar.cs: Query the theme for the correct value when the mouse
1736           moves and the thumb is pressed. 
1737         * Theme.cs: Added TrackBarValueFromMousePosition
1738         * ThemeWin32Classic.cs: Reworked TrackBar drawing. Earlier
1739           implementation was updating the trackbar value when drawing, now
1740           the drawing methods only draw. Fixes #80900. Refactored the
1741           calculations out to TrackBarValueFromMousePosition and
1742           GetTrackBarDrawingInfo, so that TrackBar can get the correct value
1743           according to the mouse position whenever it wants to. Changed the
1744           light coloured pen when drawing the thumb from ControlLight to
1745           ControlLightLight, because the ControlLight is the same colour as
1746           the background so the 3D effect is lost. 
1748 2007-03-20  Everaldo Canuto  <everaldo@simios.org>
1750         * Form.cs: In ShowDialog uses MainForm as transient form when no form is
1751         defined. Fixes #80784.
1753 2007-03-20  Marek Habersack  <mhabersack@novell.com>
1755         * ContextMenuStrip.cs: align with the change introduced in
1756         revision 74664.
1758 2007-03-20  Everaldo Canuto  <everaldo@simios.org>
1760         * XplatUIDriver.cs, XplatUIOSX.cs, XplatUIWin32.cs, XplatUIX11.cs, 
1761         XplatUI.cs, Form.cs, ToolTip.cs: Remove unneeded parameter owner 
1762         in SetTopmost.
1764 2007-03-19  Chris Toshok  <toshok@ximian.com>
1766         * Control.cs (WmPaint): don't make use of the Handle property
1767         after an event is emitted, as the user could have closed the
1768         form/destroyed the control.  Store the Handle in a local variable
1769         and make use of that.  Fixes bug #80768.
1771 2007-03-20  Everaldo Canuto  <everaldo@simios.org>
1773         * XplatUIX11.cs: Set _NET_WM_STATE_ABOVE on SetTopmost, it fixes Topmost
1774         behavior in X11 environments.
1776 2007-03-20  Everaldo Canuto  <everaldo@simios.org>
1778         * Form.cs: Call SetTopmost in CreateHandle when window is topmost, its
1779         because on setter of topmost we dont call SetTopmost when handle is not
1780         created.
1782 2007-03-20  Jackson Harper  <jackson@ximian.com>
1784         * TextControl.cs: Need to use SelectionLength () not
1785         selection_length, since that var is reset to -1.
1786         - Draw the caret when we don't have focus.
1787         * TextBox.cs: The selectall actually doesn't occur until the first
1788         focus.
1789         * TextBoxBase.cs: Need to update the caret position after a
1790         selectall.
1791         
1792 2007-03-20  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1794         * ListView.cs: Enable scrolling when using Tile view.
1796 2007-03-20  Everaldo Canuto  <everaldo@simios.org>
1798         [Fixes #80902]
1800         * XplatUIDriver.cs: Abstract SetOwner method created.
1802         * XplatUIOSX.cs: Override SetOwner to prevent compilation errors method 
1803         must be implemented and was masked as todo.
1805         * XplatUIWin32.cs: SetOwner implemented using SetWindowLong with 
1806         GWL_HWNDPARENT.
1808         * XplatUIX11.cs: SetOwner implemented using same code from SetTopmost but 
1809         cheking for null owner to remove transient. The SetTopmost will be change
1810         on a decond step.
1812         * Form.cs: In set_Owner and CreateHandle uses new SetOwner instead of
1813         SetTopmost. Now owned forms will work properly in win32 and X11.
1815 2007-03-20  Rolf Bjarne Kvinge <RKvinge@novell.com> 
1817         * MdiWindowManager.cs: Update function name.
1818         * Form.cs: After closing a form MdiParent is always null.
1819         * MdiClient.cs: Rename CloseChildForm to ChildFormClosed to explain
1820           better what it should do: necessary book-keeping when the form is
1821           closed, it should not close the form itself.
1823 2007-03-19  Andreia Gaita  <avidigal@novell.com>
1825         * ListViewItem.cs: Fix back and fore color. The subitems only
1826         use their own colors if they are set, otherwise use the listview's
1827         colors. Don't set default colors on constructor for subitem.
1828         Fixes #79315.
1830 2007-03-19  Mike Kestner  <mkestner@novell.com>
1832         * ListView.cs : make box selection for Details views with 
1833         FullRowSelect conform to MS behavior when clicking in the "item" 
1834         column and clicking outside the defined columns.
1835         [Fixes case 5-6 of #80374]
1837 2007-03-19  Chris Toshok  <toshok@ximian.com>
1839         * ScrollableControl.cs: create the controls from within the ctor,
1840         but don't actually add them until our handle is created.  this
1841         fixes a NRE possibility jpobst found (if you override OnLayout in
1842         a subclass, it's called before your ctor).  Also, add a
1843         IsHandleCreated guard to UpdateSizeGripVisibility as well.
1845 2007-03-19  Jackson Harper  <jackson@ximian.com>
1847         * TextBox.cs: Reduce the amount of invalidation we do.
1848         * TextBoxBase.cs: Make shortcuts enabled true by default, at least
1849         some of them are true by default on MS.
1850         - Add some functions to reduce the amount of invalidates we do.
1851         * TextControl.cs: Less invalidation.
1853 2007-03-19  Chris Toshok  <toshok@ximian.com>
1855         [ Fixes #81773, and *seems* to fix #81553 as well ]
1857         * XplatUIX11.cs: remove the assignment of hwnd.zombie = true from
1858         AccumulateDestroyedHandles.  We need to do it *after* we send
1859         WM_DESTROY, as the user's code can access Control.Handle in
1860         OnHandleDestroyed, and this shouldn't cause a recreation.  Also,
1861         move the WM_DESTROY/zombie handling to before the call to
1862         XDestroyWindow.  For some reason without this ordering
1863         FormTest.RecreateHandle hangs.  This ordering is semantically
1864         equivalent, however, as XDestroyWindow is async anyway.
1866 2007-03-19  Gert Driesen  <drieseng@users.sourceforge.net>
1868         * RichTextBox.cs: Reset backcolor_set after setting default.
1870 2007-03-19  Chris Toshok  <toshok@ximian.com>
1872         * ScrollableControl.cs: the scroll position should not effect the
1873         canvas size.  commit patch from georgegiolfan@yahoo.com, which
1874         fixes some really bizarre behavior on resizing.  Fixes bug #80778.
1875         
1876 2007-03-19  Chris Toshok  <toshok@ximian.com>
1878         * ScrollableControl.cs: clean this up a bit.  create the
1879         scrollbars in the ctor and just show/hide them as needed.  Also,
1880         make hscroll_visible/vscroll_visible internal to Recalculate, and
1881         just use hscrollbar.VisibleInternal/vscrollbar.VisibleInternal
1882         everywhere else.  This seems to fix the scrollbars appearing
1883         beneath the content for me (i have *no* idea why that is,
1884         however.)
1886 2007-03-19  Jonathan Pobst  <monkey@jpobst.com>
1888         * ToolStrip.cs: Don't call DoAutoSize when we change Dock.  Also, remove
1889         some redundacy for stuff in Anchor and Dock that base will take care of.
1890         [Fixes #80762]
1892 2007-03-19  Mike Kestner  <mkestner@novell.com>
1894         * ListView.cs : make box selection for Details views without 
1895         FullRowSelect dependent on the text bounds, not item bounds.
1896         * ListViewItem.cs : add an internal property to obtain the TextBounds
1897         in Details view.  [Fixes case 1-4 of #80374]
1899 2007-03-19  Andreia Gaita  <avidigal@novell.com>
1901         * PaintEventArgs.cs (Dispose): Only dispose of graphics object if
1902         we're < 2.0. #78448 && #80316
1904 2007-03-19  Jonathan Pobst  <monkey@jpobst.com>
1906         * FontDialog.cs: Don't crash when we switch to a new font that doesn't
1907         have the same style available as the previously selected one.  Also,
1908         support FixedPitchOnly property.  [Fixes bugs #80918, #80947]
1910 2007-03-19  Jackson Harper  <jackson@ximian.com>
1912         * TextControl.cs: Add an alignment property that all new lines
1913         will be given.
1914         - Make sure to use the align shift when calculating the line's X
1915         position.
1916         * TextBox.cs: Set the alignment on the document as well as on all
1917         the document lines.
1919 2007-03-19  Rolf Bjarne Kvinge <RKvinge@novell.com> 
1921         * Control.cs: ControlCollection.Add: Remove a couple of duplicated casts and
1922           throw if setting the parent of an mdichild that already has an
1923           mdiparent. Update signature for 2.0 profile. ProductName: If there's no
1924           AssemblyProductAttribute in the assembly, use the type's namespace (as
1925           MS seems to do). CreateControl: don't create the handle if the control
1926           is not visible (according to MS behaviour and spec).  SetTopLevel: Only
1927           create handle if the control is not a form. Change FocusInternal to
1928           virtual so that it can be overriden by Form.
1929         * TextBox.cs: Update call to FocusInternal.
1930         * Form.cs: Always create the handle when calling Focus on a MdiChild. The
1931           form is not a toplevel form when it's a mdi child, so update is_toplevel
1932           accordingly. ShowIcon/TransparencyKey: avoid creating the handle if it
1933           hasn't been created. Show (IWin32Window): Don't allow this overload for
1934           toplevel windows. CenterToParent/CenterToScreen/Select: create the
1935           handle as MS does. SetVisibleCore: if called on a MdiChild and the
1936           parent isn't visible yet, save the visibility and restore it when the
1937           parent is made visible.
1938         * ScrollableControl.cs: Refactor out scrollbar visibility code to separate
1939           methods, since the visibility of the scrollbars can be changed from
1940           several places, not only from AutoScroll.
1941           [Fixes #81179]
1943 2007-03-19  Jackson Harper  <jackson@ximian.com>
1945         * RichTextBox.cs: Enable shortcuts by default.
1946         * TextBoxBase.cs: Add conditional shortcuts.  
1948 2007-03-19  Everaldo Canuto  <everaldo@simios.org>
1950         * MenuItem.cs: Dont call OnDrawItem when OwnerDraw is false (#81182).  
1952 2007-03-19  Chris Toshok  <toshok@ximian.com>
1954         [ Fixes bug #80604]
1955         
1956         * XplatUIX11.cs (WaitForHwndMessage): change this to actually
1957         swallow the message we're waiting on, instead of delivering it, as
1958         this is only used for the WM_SHOWWINDOW raised from
1959         MapWindow/UnmapWindow, and the message needs to be generated
1960         (MapWindow, UnmapWindow): generate the WM_SHOWWINDOW message
1961         before doing the Map/Unmap.  Also make sure that the Hwnd is still
1962         alive after the message has been handled.
1964         *before* the window is shown.
1966         * Control.cs (CreateControl): guard a few more things inside the
1967         if (!is_created) block, as we might end up being called again -
1968         yay .net.
1969         (WmShowWindow): call CreateControl if we're showing the control.
1971 2007-03-19  Rolf Bjarne Kvinge <RKvinge@novell.com> 
1973         * Control.cs: Fix 2.0 signature for Invoke. Support invoking on
1974           controls without a handle if they have any parent with a handle. In
1975           Dispose add a check whether the handle is created or not before
1976           calling BeginInvoke, this removes the need of the extra disposing
1977           parameter (which was bogus anyway since it didn't prevent the
1978           invoke from happening, it only skipped the check for an existing
1979           handle, meaning that the invoke would call on an inexistent
1980           handle).
1982 2007-03-19  Everaldo Canuto  <everaldo@simios.org>
1984         * MessageBox.cs: Remove WS_POPUP from CreateParams style, with it form
1985         appears in taskbar.
1987 2007-03-18  Everaldo Canuto  <everaldo@simios.org>
1989         * MessageBox.cs:
1990         - Fixed a problem that dont show help button for messages with 3 buttons.
1991         - Refactory button size and position calculations, now dont use fixed 
1992         values, also fixed button sizes (#80043) and form's border space.
1993         - AddButton method created, now all other AddButton methods call this one.
1994         - Some other source code cosmetic changes.
1996 2007-03-18  Jackson Harper  <jackson@ximian.com>
1998         * RichTextBox.cs: Don't do this all fonts must match check if
1999         there is only one char selected.
2001 2007-03-18  Jackson Harper  <jackson@ximian.com>
2003         * TreeView.cs: ScrollWindow works properly now, so we don't need
2004         to screw around with the scroll area.  This fixes some artifacts
2005         when expanding and collapsing.
2007 2007-03-18  Jackson Harper  <jackson@ximian.com>
2009         * TextBoxBase.cs: Allow updating the selection position when the
2010         cursor is outside the textarea, but we have a capture.
2011         * TextControl.cs: A special case for when the cursor is outside
2012         the bounds of the TB.
2013         
2014 2007-03-18  Jackson Harper  <jackson@ximian.com>
2016         * TextBoxBase.cs: Remove image pasting code for now.  There is no
2017         way to get an image on the clipboard right now anyways.
2018         * TextControl.cs:
2019         * RichTextBox.cs: Use the new RTF Picture class for pictures.
2021 2007-03-18  Everaldo Canuto  <everaldo@simios.org>
2023         * MessageBox.cs:
2024         - Set window properties in constructor intead of on CreateParams.
2025         - Remove topmost from Window ExStyle.
2026         - Set ShowInTaskbar to false.
2027         - Set form border to FixedDialog.
2028         - Some cosmetic changes and remove unneeded comments.
2029         - It fixes itens 2,3 and 4 of bug #80043.
2031 2007-03-18  Gert Driesen  <drieseng@users.sourceforge.net>
2033         * TextBoxBase.cs: In setter for ReadOnly, only chance BackColor if
2034         none was explicitly set. Fixes part of bug #79949.
2036 2007-03-16  George Giolfan  <georgegiolfan@yahoo.com>
2038         * ToolStripComboBox.cs: Add AutoComplete*.
2040 2007-03-16  George Giolfan  <georgegiolfan@yahoo.com>
2042         * ToolStripComboBox.cs: Add FlatStyle.
2044 2007-03-16  Jonathan Pobst  <monkey@jpobst.com>
2046         * ToolStrip.cs, ToolStripProfessionalRenderer.cs,
2047         ToolStripSplitStackLayout.cs: Implement some basic vertical toolbar support.
2049 2007-03-16  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2051         * ButtonBase.cs, ToolStrip.cs, SendKeys.cs, TextRenderer.cs,
2052           CheckBox.cs, RadioButton.cs, BindingSource.cs,
2053           DataGridColumnStyle.cs: Remove warnings.
2055 2007-03-16  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2057         * Menu.cs: MergeMenu: Check menu argument for null before looping over
2058           it.
2059         * MdiWindowManager.cs: Add IsVisiblePending to track the pending
2060           visibility of mdi child forms. FormSizeChangedHandler: update the
2061           maximized size if size has changed while maximized.
2062         * MdiClient.cs: SizeScrollbars/ArrangeWindows/ActivateChild: Avoid
2063           creating the handle.
2064         * InternalWindowManager.cs: UpdateBorderStyle/FormSizeChangedHandler:
2065           avoid creating the handle if not created.
2066         * XplatUI.cs: Update debug output.
2067         * XplatUIStructs.cs: Added ToString's for a couple of structs.
2069 2007-03-16  Jonathan Pobst <monkey@jpobst.com>
2071         * ContainerControl.cs: Give ToolStripManager the opportunity to handle
2072         ProcessCmdKey().
2073         * ToolStripDownItem.cs, ToolStripItem.cs, ToolStripItemCollection.cs, 
2074         ToolStripItemEventType.cs, ToolStripManager.cs, ToolStripMenuItem.cs:
2075         Implement keyboard shortcuts.
2077 2007-03-15  Everaldo Canuto  <everaldo@simios.org>
2079         * CommonDialog.cs: Set StartPosition to CenterScreen on form's constructor.
2080         Fixes #79560 and #80200, it also fix problem in FileDialog, SaveDialog, 
2081         ColorDialog and all derived classes.
2083 2007-03-15  Everaldo Canuto  <everaldo@simios.org>
2085         [ Fixes bug #79828 ]
2087         * ToolBar.cs:
2088         - Rename ToolBarButtonInfor to ToolBarItem.
2089         - Add all layout and calculation stuff gtom ToolBarButton to ToolBarItem.
2090         - Maintain an array of ToolBarItem, used instead of ToolBarButton
2091         collection to be able add same button more than one time on a toolbar.
2092         - Refactory all properties and methods to use ToolBarItem. 
2094         * ToolBarButton.cs: 
2095         - Remove all propeties and methods that is now in ToolBarItem.
2096         - Rectangle propery now gets the rectangle from first ToolBarItem to
2097         mimic win32 behavior.
2098         - Size calculation and layout methods also removed.
2100         * ThemeWin32Classic.cs: Change all ToolBar drawing methods to receive
2101         ToolBarItem instead of ToolBarButton to right drawing buttons when
2102         same button/separator was added more than one time to ToolBar.
2104         * ThemeNice.cs: Same as above. 
2106 2007-03-15  Andreia Gaita  <avidigal@novell.com>
2108         * XplatUIX11.cs: Fire extra MouseMove events right after
2109         MouseDown and MouseUp, emulating win32's <censored> behaviour
2110         for apps that rely on it.
2112 2007-03-15  Jackson Harper  <jackson@ximian.com>
2114         * TextControl.cs:
2115         * TextBoxBase.cs: On MS, a fixed single border is not in NC area,
2116         it is drawn on the controls client window and there is no NC
2117         area.
2118         - Set the background color to gray on 2.0 when we are readonly.
2120 2007-03-15  Chris Toshok  <toshok@ximian.com>
2122         [ Fixes bug #81144 ]
2123         
2124         * XplatUIX11.cs: implement VirtualScreen independently of
2125         WorkingArea, by querying the _NET_DESKTOP_GEOMETRY root window
2126         property.
2128 2007-03-15  Chris Toshok  <toshok@ximian.com>
2130         * Hwnd.cs: add an internal field for the cached_window_state.
2132         * XplatUIX11.cs: cache the window state, invalidating the cache
2133         (and thus re-querying the X server) only when we see an update to
2134         the _NET_WM_STATE property.
2136 2007-03-15  Chris Toshok  <toshok@ximian.com>
2138         * BindingSource.cs: get a lot of the unit tests working.
2140 2007-03-15  Jonathan Pobst  <monkey@jpobst.com>
2142         * Control.cs: Modify UpdateStyles to store distances when bounds >=
2143         0 instead of just bounds > 0.  [Fixes bug #80912]
2145 2007-03-15  Jonathan Pobst  <monkey@jpobst.com>
2147         * ToolStrip.cs, ToolStripItem.cs: Implement several new properties
2148         and methods.
2150 2007-03-15  Ivan N. Zlatev <contact@i-nz.net>
2151         
2152         * ComboBox.cs, Control.cs, XplatUIStructs.cs, XplatUIX11GTK.cs,
2153         XplatUIX11.cs, XplatUIWin32.cs, InternalWindowManager.cs,
2154         XplatUIOSX.cs, TextControl.cs: Replaces all uses of the custom
2155         WM_MOUSE_LEAVE with the system WM_MOUSELEAVE message.
2157 2007-03-15  Chris Toshok  <toshok@ximian.com>
2159         [ Fixes #81101 ]
2160         
2161         * Control.cs: add Ivan's fix for 81101, with a slight modification
2162         - you can set control.Target to null.
2164 2007-03-14  Jonathan Pobst  <monkey@jpobst.com>
2166         * ToolStripItem.cs: If our OwnerItem is null, we can't use 
2167         HideDropDown, use Hide instead to prevent an NRE.
2168         [Fixes bug #81147]
2170 2007-03-14  Jackson Harper  <jackson@ximian.com>
2172         * TextBoxBase.cs: Mess with the creation stuff a little. We need
2173         to calculate the document before the handle is created, in some
2174         cases. (Actually just one case).
2176 2007-03-14  Jackson Harper  <jackson@ximian.com>
2178         * TextBoxBase.cs: Need to display the caret after letting the base
2179         wndproc handle the focus methods, because the caret display
2180         methods check the focus state.
2181         - Try to display the caret after updating it's position with SelectWord.
2182         - Don't need to do an immediate update on this recalc, since there
2183         will be an invalidate anyways.
2185 2007-03-14  Jackson Harper  <jackson@ximian.com>
2187         * TreeView.cs: Some workarounds so that we can match event order a
2188         little better.
2190 2007-03-14  Gert Driesen  <drieseng@users.sourceforge.net>
2192         * ErrorProvider.cs: Invoke default ctor from 2.0-only ctor. Fixes bug
2193         #80803. Avoid NullReferenceException when Control does not have
2194         parent. Fixed different blinkstyle issues. Only subscribe to Tick
2195         event a single time. Only draw error icon when control is created and
2196         visible. Fixes failing unit tests.
2198 2007-03-14  Andreia Gaita  <avidigal@novell.com>
2200         * TabControl.cs: Add support for 2.0 Deselecting, Deselected and
2201         Selecting events. Fire Leave and Enter events when changing tabs.
2203 2007-03-14  George Giolfan  <georgegiolfan@yahoo.com>
2205         * TreeView.cs: Add TreeViewNodeSorter.
2206         * TreeNodeCollection.cs: Add sorter parameter to Sort method.
2208 2007-03-14  Chris Toshok  <toshok@ximian.com>
2210         * Form.cs: go ahead and remove the RecreateHandles that jpobst
2211         removed earlier and I had him add back it.  It turns out metacity
2212         *does* in fact handle the MOTIF_WM_HINTS property changing, it
2213         just doesn't redraw the window titlebar until you resize the
2214         window.  This also means we aren't recreating the entire window
2215         hierarchy on X when you change this property.  And it looks better
2216         on windows, too.
2218 2007-03-14  Carlos Alberto Cortez <calberto.cortez@gmail.com>
2220         * ListViewItem.cs:
2221         * ListView.cs: Collecting selection information
2222         is now done in SelectedIndexCollection rather than in
2223         SelectedListViewItemCollection. This is done so we can
2224         have the selection information code in one single place
2225         (virtual mode selection information entirely depends on
2226         SelectedIndexCollection).
2228 2007-03-13  Miguel de Icaza  <miguel@novell.com>
2230         * ErrorProvider.cs: Add stubs for ISupportInitialize
2232 2007-03-13  Carlos Alberto Cortez <calberto.cortez@gmail.com>
2234         * ListViewItem.cs: Trigger the ItemCheck and ItemChecked events
2235         in the right order with the right values, from the Checked property, 
2236         just as MS does (instead of triggering them from ListView).
2238         * ListView.cs: Make OnItemCheck and OnItemChecked internal.
2240 2007-03-13  Carlos Alberto Cortez <calberto.cortez@gmail.com>
2242         * ListView.cs: Implement ItemChecked 2.0 event. Also cast to 
2243         the correct handler in OnItemCheck method (ItemCheckEventHandler 
2244         instead of EventHandler). This used to throw an InvalidCastException.
2246 2007-03-13  Jackson Harper  <jackson@ximian.com>
2248         * TextBoxBase.cs: Calculate the document before the handle is
2249         created, so there isn't an extra invalidate called.
2251 2007-03-13  Jonathan Pobst  <monkey@jpobst.com>
2253         * Form.cs: Don't set owner in ShowDialog until we are sure
2254         that we aren't going to throw an exception.  [Fixes bug #80773]
2256 2007-03-12  George Giolfan  <georgegiolfan@yahoo.com>
2258         * TreeView.cs: Make it compile.
2260 2007-03-12  Jonathan Pobst  <monkey@jpobst.com>
2262         * Control.cs: Another place we don't call SizeFromClientSize.
2263         * Form.cs: Another place we don't call SizeFromClientSize.
2264         [Fixes bug #81125]
2266 2007-03-12  Jackson Harper  <jackson@ximian.com>
2268         * TreeView.cs: Basically emulating some strangness here with
2269         exanding nodes and setting node positions when windows aren't
2270         created.
2271         - Also attempting to walk the node tree less than previously, and
2272         just use visible order calculations for determining offsets.
2273         - oops made scrolling backwards.
2274         * TreeNode.cs: We need to start nodes with a zero visible order,
2275         because the order calcs are based on the first nodes order.
2277 2007-03-12  Jonathan Pobst  <monkey@jpobst.com>
2279         * Form.cs: Don't exit the program if RecreateHandle is called on
2280         the main form.
2282 2007-03-12  Chris Toshok  <toshok@ximian.com>
2284         * XEventQueue.cs: remove the use of PostQuitState.
2286         * XplatUIX11.cs: remove the use of PostQuitState.  If we get a
2287         WM_QUIT message in GetMessage, return false (and if we're in the
2288         nested WaitForHwndMessage, repost the WM_QUIT message).
2290 2007-03-12  Jonathan Pobst  <monkey@jpobst.com>
2292         * Form.cs: Don't call RecreateHandle when we change the MinimizeBox
2293         or the MaximizeBox properties.  [Part of bug #80640]
2295 2007-03-12  Everaldo Canuto  <everaldo@simios.org>
2297         * LinkLabel.cs: When calculate pieces make LinkArea empty if theres
2298         no links.
2300 2007-03-12  Jonathan Pobst  <monkey@jpobst.com>
2302         * ToolStripItem.cs: Fix some tests I broke by checking Visible
2303         instead of visible.
2305 2007-03-12  Gert Driesen  <drieseng@users.sourceforge.net>
2307         * FileDialog.cs: Use text of File name combobox to determine what
2308         files the user selected. Added tokenizer to parse the file names.
2309         Fixes bug #81123.
2311 2007-03-12  Jonathan Pobst  <monkey@jpobst.com>
2313         * Control.cs: We can't call SizeFromClientSize in the constructor,
2314         but we still need to do the same work, so make an internal version.
2315         [Fixes bug #80621]
2317 2007-03-12  Jackson Harper  <jackson@ximian.com>
2319         * TreeView.cs:
2320         * TreeNode.cs:
2321         * OpenTreeNodeEnumerator: Match MS better for IsVisible and
2322         IsExpanded.
2324 2007-03-12  Jackson Harper  <jackson@ximian.com>
2326         * TextBoxBase.cs: Now that the handles are being created a little
2327         later, we need to make sure that the document is recalculated when
2328         the handle is created.
2330 2007-03-11  Everaldo Canuto  <everaldo@simios.org>
2332         * Theme.cs: GetLinkFont abstract method added.
2333         
2334         * LinkLabel.cs: 
2335         - Remove CalcTrimRectangle, no longer needed.
2336         - Factor also remove, position issues must be fixed in libgdiplus.
2337         - Move GetPieceColor to ThemeWin32Classic.cs as it is theme related.
2338         - GetPieceFont, CreateLinkFont and link_font removed, theme must be 
2339         care about font used to draw links.
2340         - Set TabStop to true when control is "Selectable", control is selectable
2341         when have one or more links. Fixes #80501 (test case is also added).
2342         - Set the LinkArea values after links change, LinkArea values must be
2343         based in first link position and size, a test case was created.
2344         - Fix ControlStyles.Selectable value, now is based on LinkArea value, 
2345         the attribute must be true LinkArea.Length > 0. The same was applied to
2346         TabStop.
2347         
2348         * ThemeWin32Classic.cs: 
2349         - LinkLabelGetPieceColor and LinkLabelGetPieceFont created and used 
2350         in draw method.
2351         - Use CPDrawStringDisabled to draw disabled text instead of hard code 
2352         color change.
2353         - Draw focus rectangle for every parts focused, including parts that 
2354         is on another line, its because regions returns various rectangles
2355         and not only one. Needed to mimic W32 look.
2356         - Uses Graphics.Clip to delimite region painted, it mean that now 
2357         complete text is passed to DrawString, with this we solve layout
2358         issues without create another text renderer.
2359         - Uses Region.Intersect to fix some flickers problems, now only needed
2360         parts will redrawed.
2361         - This changes fixes #79614 and some other unreported issues, on Linux 
2362         some layout problems still remain, the problem is under 
2363         MeasureCharacterRanges but it is an libgdiplus bug.
2365 2007-03-10  Gert Driesen  <drieseng@users.sourceforge.net>
2367         * TextBox.cs: Set for foreground color.
2368         * TextBoxBase.cs: Remove Invalidate when setting BackColor, since
2369         this is already done in Control.
2371 2007-03-10  Jackson Harper  <jackson@ximian.com>
2373         * TextBox.cs: Set the background color, but reset the
2374         backcolor_set flag which is just for the user setting the
2375         background color.
2377 2007-03-09  Chris Toshok  <toshok@ximian.com>
2379         * Control.cs: really remove the call to XplatUI.SetVisible from
2380         CreateHandle(), like I said I did when I merged the branch.
2382         * BindingSource.cs: implement some more of this stuff.
2384 2007-03-09  Jackson Harper  <jackson@ximian.com>
2386         * TextBox.cs: Don't explicitly set our background colors.
2387         * TextControl.cs:
2388         * TextBoxBase.cs: Draw readonly text.
2389         - Need to invalidate when backcolor or readonly are changed.
2390         
2391 2007-03-09  Jackson Harper  <jackson@ximian.com>
2393         * TextBoxBase.cs: Don't set the forecolor until the handle is
2394         created.
2395         - Do not raise OnPaint, and removed some old debug code.
2397 2007-03-09  George Giolfan  <georgegiolfan@yahoo.com>
2399         * ScrollableControl.cs: Fix mouse wheel scrolling.
2401 2007-03-09  Jonathan Pobst  <monkey@jpobst.com>
2403         * Control.cs: Wire up MouseDoubleClick event.
2405 2007-03-09  Jonathan Pobst  <monkey@jpobst.com>
2407         * ToolStrip.cs: Rework AutoSize to adjust height when docked to the
2408         top or bottom.
2409         * ToolStripItem.cs: Make Image drawing take ImageScaling into account.
2410         * ToolStripItemCollection.cs: Don't call owner.PerformLayout when a new
2411         item is added.  This logic was moved to ToolStrip.OnItemAdded.
2412         [Fixes bug #81090]
2414 2007-03-08  Carlos Alberto Cortez <calberto.cortez@gmail.com>
2416         * ListVieItem.cs: SetIndex is only valid for 2.0 profile by now.
2418 2007-03-08  Jackson Harper  <jackson@ximian.com>
2420         * TreeView.cs: Show the correct image for selected node (this used
2421         to work, not sure how the code got deleted). Also implemented 2.0 feature
2422         SelectedImageKey.
2424 2007-03-08  Carlos Alberto Cortez <calberto.cortez@gmail.com>
2426         * ListView.cs:
2427         * ListViewItem.cs: Cache index in items when retrieving them
2428         in VirtualMode.
2430 2007-03-08  Jonathan Pobst  <monkey@jpobst.com>
2432         * ToolStripItem.cs: Don't return the explicit_size if we are using 
2433         AutoSize.  Fixes invalidation issue when user has explicitly set a
2434         size and has AutoSize = true.
2436 2007-03-08  Jonathan Pobst  <monkey@jpobst.com>
2438         * XplatUIX11.cs: Hardcode FrameBorderSize value temporarily to fix MWF.
2440 2007-03-07  Pedro Martínez Juliá  <pedromj@gmail.com>
2442         * DataGridView.cs: Remove event handler from DataView when a
2443         DataTable is used as DataSource.
2445 2007-03-08  Jonathan Pobst  <monkey@jpobst.com>
2447         * Control.cs: Create internal setter for client_size to allow it to be
2448         set without triggering resizing code.
2449         * Form.cs: Calculate client_size in constructor, only change client_size
2450         in FormBorderStyle property if Handle has been created.
2451         [Fixes #80574, #80791]
2453 2007-03-08  George Giolfan  <georgegiolfan@yahoo.com>
2455         * SystemInformation.cs: Add TerminalServerSession.
2457 2007-03-07  Jonathan Pobst  <monkey@jpobst.com>
2459         * TreeViewDrawMode.cs: Make internal for 1.1 to allow for consolidated
2460         TreeView code.
2462 2007-03-07  Jonathan Pobst  <monkey@jpobst.com>
2464         * XplatUIWin32.cs: The no_activate stuff was forcing us to create a
2465         Handle before we were supposed to.  Now checks ActivateOnShow property
2466         in Control.
2467         * Control.cs: Add internal ActivateOnShow property.
2468         * ComboBox.cs, Form.cs, MenuAPI.cs, ToolStripDropDown.cs: Return false
2469         for ActivateOnShow.
2470         * Hwnd.cs Remove no longer needed no_activate field.
2472 2007-03-07  Jackson Harper  <jackson@ximian.com>
2474         * TreeView.cs: Implement owner draw tree nodes.  And a couple more
2475         2.0 properties
2476         * DrawTreeNodeEventHandler.cs: Add
2477         * DrawTreeNodeEventArgs.cs: Correct default value.
2478         
2479 2007-03-07  Chris Toshok  <toshok@ximian.com>
2481         * XplatUIWin32.cs: create InternalWndProc so that we're guaranteed
2482         to be called before NativeWindow.WndProc.  Put the HwndCreating
2483         magic there to hook up our Hwnd's to handles.
2485 2007-03-07  Gert Driesen  <drieseng@users.sourceforge.net>
2487         * DataGridView.cs: Comment out debug code.
2489 2007-03-07  Chris Toshok  <toshok@ximian.com>
2491         [merge -r72718:73765 from mwf-handle-branch, and include 2 changes
2492         to make the rest of the world happy]
2494         * Control.cs (CreateHandle): there's no need to call
2495         XplatUI.SetVisible here, it's effectively done by
2496         XplatUI.CreateWindow on X now, and always was on windows.
2498         * XplatUIX11.cs (WaitForHwndMessage): only use the PostQuitState
2499         shortcircuit out of the loop if we have a message loop running on
2500         this thread.
2502         [Changelog from merge]
2504         2007-03-05  Chris Toshok  <toshok@ximian.com>
2506                 * Control.cs (AccessibilityNotifyClients): turns out in 1.1 this
2507                 causes handle creation.
2509         2007-02-28  Chris Toshok  <toshok@ximian.com>
2511                 * ApplicationContext.cs: Add a flag to make sure we only raise the
2512                 ThreadExit event once (ExitThreadCore can be indirectly called
2513                 from a few places.)  I don't like the additional flag, but it
2514                 makes the event ordering/count correct.
2516                 * Application.cs (MWFThread.LoopCount): don't use an enumerator
2517                 without locking the collection.  An enumerator doesn't give us any
2518                 protection from modification anyway.  Lock the thread hash and
2519                 replace the complicated enumerator loop with a foreach.
2520                 (Application.CloseForms): make internal so it can be called from
2521                 ApplicationContext.  This should probably be moved to MWFThread.
2522                 (Application.ExitThread): don't call MWFThread.Current.Exit()
2523                 here.  just call XplatUI.PostQuitMessage.  We'll exit the thread
2524                 when the runloop exits (in response to WM_QUIT.)
2525                 (Application.RunLoop): add a comment (and check) for
2526                 context.MainForm being null after setting context.MainForm.Visible
2527                 = true.  This is because you're perfectly free to dispose of a
2528                 form in VisibilityChanged.  Chalk this up to another case where we
2529                 need to synchronously generate WM_ACTIVATE from Control.Show.
2530                 Also, add handling for WM_QUIT here so we'll exit the loop.
2531                 
2532                 * XplatUIX11.cs: clean up MapWindow and UnmapWindow a bit.  The
2533                 fact that we don't wait if we're only unmapping the whole_window
2534                 makes me a bit nervous, but it doesn't seem to cause any problems
2535                 yet.
2537                 also, add a comment about the stupid, broken and wrong resetting
2538                 of PostQuitState to false in GetMessage().
2540                 In PostQuitMessage, we need to add a WM_QUIT message to the
2541                 thread's queue.  We use the FosterParent to get the right
2542                 handle/hwnd/queue.
2544                 Lastly, in SetVisible, we need to unmap both windows, since the
2545                 waiting only happens when we're unmapping the client window.  So
2546                 now, the *only* time we unmap just the whole_window is in the hack
2547                 for resizing a control to 0,0.
2548                 
2549         2007-02-21  Chris Toshok  <toshok@ximian.com>
2551                 * Application.cs (CloseForms): rewrite this so that we don't
2552                 modify the list while we're traversing it.
2554         2007-02-20  Chris Toshok  <toshok@ximian.com>
2556                 * ListBox.cs (.ctor): move the Control.AddImplicits here instead
2557                 of OnHandleCreated.
2558                 (HorizontalScrollEvent): only call XplatUI.ScrollWindow if the
2559                 handle is created.  otherwise we'll create it here.
2560                 (VerticalScrollEvent): same here.
2562                 * Application.cs (CloseForms): call Form.Dispose, don't post
2563                 WM_CLOSE_INTERNAL.
2565                 * Form.cs (WndProc): we don't need to use CLOSE_INTERNAL
2566                 here. Application should Dispose() of the Form's.
2568                 * XplatUIX11.cs (WaitForHwndMessage): break out of the loop on
2569                 WM_DESTROY as well.
2570                 (MapWindow,UnmapWindow): only actually do the waiting for
2571                 SHOWWINDOW if the control we're dealing with is a Form.
2572                 (CreateWindow): if the control isn't a form, SendMessage
2573                 WM_SHOWWINDOW here (if the WS_VISIBLE style is set).
2575                 * Control.cs (SetVisibleCore): always use is_visible here, not
2576                 value.  If we use value, we can end up re-setting something
2577                 visible if, for instance, you do Control.Hide() in a delegate
2578                 attached to VisibleChanged as we do in FormTest.ShowDialogTest.
2580         2007-02-20  Chris Toshok  <toshok@ximian.com>
2582                 * XplatUIX11.cs (WaitForHwndMessage): we need to loop until we get
2583                 the message we need.  PeekMessage returning false should not be a
2584                 condition under which we exit the loop.
2586         2007-02-15  Chris Toshok  <toshok@ximian.com>
2588                 * Control.cs (Refresh): only refresh if we've got a handle and are
2589                 visible.
2590                 (CreateAccessibilityInstance): CreateControl() here.
2591                 (UpdateChildrenZOrder): complicate the code loop even more by
2592                 taking into account controls that haven't had their handle
2593                 created, and those that aren't visible.  But on the flip side,
2594                 simplify the code by splitting it into two loops.  one which
2595                 builds up the list of child controls we're interested in, and the
2596                 other that sets the z order of those children.
2598         2007-02-14  Chris Toshok  <toshok@ximian.com>
2600                 * Control.cs: Control.AccessibilityObject causes the control to be
2601                 created, not just the handle.
2603         2007-02-14  Chris Toshok  <toshok@ximian.com>
2605                 * Control.cs: rework UpdateChildrenZOrder to correctly handle the
2606                 problem on X where a window might have its handle created (and be
2607                 visible) while the window is unmapped.  calling XConfigureWindow
2608                 on an unmapped window is bad, and generates X errors.
2610         2007-02-13  Chris Toshok  <toshok@ximian.com>
2612                 * Control.cs (CreateHandle): don't loop over our children setting
2613                 their parent here.  do it when in WndProc when we're shown.
2614                 (UpdateChildrenZOrder): make this internal so we can call it from
2615                 ScrollableControl.
2616                 (WndProc): for WM_SHOWWINDOW, reparent the child control after
2617                 creating its handle.  Also, remove the calls to PerformLayout from
2618                 here.  they're done in ScrollableControl.OnVisibleChanged.  Also,
2619                 OnVisibleChanged only seems to be called directly here for the
2620                 toplevel control.  It's propagated down the window hierarchy by
2621                 calls to child.OnParentVisibleChanged.
2622                 (OnVisibleChanged): don't do layout here - it's done (oddly
2623                 enough, according to a glance at stack traces on ms.net..) in
2624                 ScrollableControl.
2625                 
2626                 * ScrollableControl.cs (OnVisibleChanged): make sure we update the
2627                 z order of our children before calling PerformLayout.
2629         2007-02-12  Chris Toshok  <toshok@ximian.com>
2631                 [big change, fixes #80020]
2632                 
2633                 * AccessibleObject.cs: we need to make owner internal again to fix
2634                 some of ControlAccessibleObject.
2636                 * Control.cs: lots of changes here.  add support for WM_CREATE,
2637                 for which we generate OnHandleCreated.  Remove the OnHandleCreated
2638                 call from CreateHandle.  Also add support for WM_SHOWWINDOW where
2639                 we create child controls.  leave the MonoTODO's for the
2640                 accessibility calls, but fix the exceptions so the tests pass.
2642                 Add the InvalidOperationExceptions to Invoke methods, and remove a
2643                 couple of InvokeInternal methods we aren't using.
2644                 
2645                 Also, add a couple of CreateHandle calls in places where we know
2646                 the handles are being created but our code doesn't reference
2647                 .Handle.
2649                 Make SetVisibleCore call OnVisibleChange if the handle isn't
2650                 created.  If the handle is created, we rely on XplatUI.SetVisible
2651                 generating the event synchronously.
2652                 
2653                 Lastly, make sure we don't use this.Handle inside CreateHandle,
2654                 because we can call back into client (and that code can dispose of
2655                 the control).
2657                 * XplatUIStructs.cs: misc/cleanup.
2659                 * XplatUIX11.cs: Map/Unmap X events correspond to WM_SHOWWINDOW,
2660                 although we don't populate the wParam properly.
2661                 (CreateWindow): generate WM_CREATE.
2662                 (MapWindow,UnmapWindow): make these calls synchronous, at great
2663                 performance expense (particularly in the unmap case), to match
2664                 win32 behavior.
2666                 * Form.cs (.ctor): remove the call to UpdateBounds. we don't need
2667                 to call it.
2668                 (set_MdiParent): don't recreate the handle unless it's been
2669                 created already.
2670                 
2671                 * MdiClient.cs (OnResize): don't InvalidateNC Parent.Handle unless
2672                 it's created.
2674                 * NativeWindow.cs: this is probably the weirdest part of the
2675                 patch.  We need a way to link up the window being created to the
2676                 WM_CREATE message.  Since we can only be creating one window at a
2677                 time on a given thread, we keep track of a per-thread reference so
2678                 we can dispatch it properly.  We also need to keep track of the
2679                 Hwnd currently being created so that the win32 backend doesn't
2680                 have problems.
2681                 
2682                 * XplatUIWin32.cs: a similar change to the one we made in
2683                 NativeWindow.cs.
2685 2007-03-07  Jonathan Pobst  <monkey@jpobst.com>
2687         * ToolStripItem.cs: Make CalculatePreferredSize virtual.
2688         * ToolStripMenuItem.cs: Modify CalculatePreferredSize and OnPaint
2689         to draw the menu shortcut string.
2691 2007-03-07  Jackson Harper  <jackson@ximian.com>
2693         * TreeNode.cs: Add the 2.0 collapse method.
2695 2007-03-07  Pedro Martínez Juliá  <pedromj@gmail.com>
2697         * DataGridViewColumn.cs: Fix HeaderText behaviour (Bug #80746).
2699 2007-03-07  Pedro Martínez Juliá  <pedromj@gmail.com>
2701         * DataGridView.cs: Change DataSource will clear column and row
2702         lists. Call Invalidate() to reflect DataSource change.
2704 2007-03-07  Pedro Martínez Juliá  <pedromj@gmail.com>
2706         * DataGridView.cs: Add rows when DataSource is System.Data.DataView
2707         and a new row is added to it.
2709 2007-03-07  Pedro Martínez Juliá  <pedromj@gmail.com>
2711         * DataGridView.cs: Add columns when DataSource is en empty list but
2712         is a System.Data.DataView (from a System.Data.DataTable).
2714 2007-03-06  Andreia Gaita  <avidigal@novell.com>
2716         * Label.cs: Implement AutoEllipsis (2.0)
2718 2007-03-06  Jackson Harper  <jackson@ximian.com>
2720         * TreeView.cs: Implement 2.0 TopNode setter property.
2721         - Use a local var instead of the skipped_nodes field for computing
2722         how many nodes to skip.  Otherwise we won't scroll because the
2723         valuechanged handler checks if skipped_nodes is equal to the new
2724         value.
2725         - Implement 2.0 Sort method.
2726         - Add useless 2.0 DoubleBuffer property
2727         - Implement 2.0 LineColors property.  Lets you change the color of
2728         the lines in the tree. Terribly useful for creating non cohesive
2729         desktops.
2730         - Implement 2.0 image key feature.
2732 2007-03-06  Jackson Harper  <jackson@ximian.com>
2734         * TreeView.cs: We can't get the bounds of the nodes before raising
2735         the AfterSelect event, because that event could change the node's
2736         bounds (scrolling, font change, etc).
2738 2007-03-06  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2740         * XplatUIWin32.cs: When faking styles don't remove the WS_VISIBLE flag.
2741         * Form.cs: Don't recreate handle when creating FormWindowManager, just
2742           update window styles. In CreateParams us VisibleInternal instead of
2743           VIsible to get the actual visible flag set for this form.
2744         * FormWindowManager.cs: Activate the form whenever the mouse clicks on
2745           the nc area. Fixes #81042. Also fix HandleTitleBarDoubleClick to
2746           handle the case when the form is already maximized, in which case
2747           it should be restored. Fixes #81043.
2749 2007-03-06  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2751         * XplatUIX11.cs: Tool windows still get wm styles. Fixes toolwindows showing up with double decorations.
2753 2007-03-05  Jackson Harper  <jackson@ximian.com>
2755         * TreeViewHitTestInfo.cs: implement.
2757 2007-03-05  Jackson Harper  <jackson@ximian.com>
2759         * InternalWindowManager.cs: class status fix.
2761 2007-03-05  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2763         * InternalWindowManager.cs: All windows that have a parent
2764         are confined to their parent when they're being moved.
2765         Fixes #80822.
2767 2007-03-04  Gert Driesen  <drieseng@users.sourceforge.net>
2769         * SystemInformation.cs: Marked KeyboardDelay and KeyboardSpeed public
2770         on 2.0 profile. Fixes bug #81018. Small code formatting fixes.
2772 2007-03-02  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2774         * ThemeWin32Classic.cs: ManagedWindowSetButtonLocations: Make all
2775           buttons invisible before deciding which ones should be visible
2776           (fixes minimize/maximize buttons showing up in toolwindows). Remove
2777           an unused variable.
2778         * InternalWindowManager.cs: Remove warning.
2780 2007-03-02  Carlos Alberto Cortez <calberto.cortez@gmail.com>
2782         * ListView.cs: Add a check in ListViewItemCollection.RemoveAt
2783         to throw an InvalidOperationException is virtual mode is being used.
2785 2007-03-02  Jonathan Pobst  <monkey@jpobst.com>
2787         * SplitContainer.cs, SplitterPanel.cs, StatusStrip.cs, TableLayoutPanel.cs,
2788         ToolStrip.cs, ToolStripContainer.cs, ToolStripContentPanel.cs,
2789         ToolStripControlHost.cs, ToolStripDropDownItems.cs, ToolStripItem.cs,
2790         ToolStripMenuItem.cs, ToolStripOverflowButton.cs, ToolStripPanel.cs,
2791         ToolStripPanelRow.cs, ToolStripProfessionalRenderer.cs, ToolStripSplitButton.cs,
2792         ToolStripStatusLabel.cs, ToolStripTextBox.cs: Corcompare work.
2794 2007-03-02  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2796         * XplatUI.cs: Fixed returning driver.KeyboardSpeed instead of
2797           driver.KeyboardDelay from XplatUI.KeyboardDelay 
2798         * XplatUIW      in32.cs: Implemented KeyboardSpeed/KeyboardDelay properties
2799           (patch by Sergey Volk)
2801 2007-03-02  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2803         * ToolWindowManager.cs: Added, contains logic for
2804           tool windows.
2805         * CreateParams.cs: Add a few helper methods and an
2806           internal variable to know which control the CreateParams belongs
2807           to.
2808         * Control.cs: Call Form.ChangingParent when the
2809           parent is about to be changed.
2810         * XplatUIX11.cs: DeriveStyles (): Set
2811           caption_height for all windows that have captions and are children.
2812           Update to use ToolWindowManager instead of InternalWindowManager
2813           for ToolWindows.
2814         * XplatUIWin32.cs: Set fake window styles for all
2815           windows that have window managers.
2816         * MdiWindowManager.cs: Added MaximizedTitleButtons (buttons are
2817           now duplicated for mdi windows when they are
2818           maximized, first for the buttons the window itself has, then for
2819           the buttons that appear in the menu bar. Makes things a little
2820           easier). Updated UpdateWindowDecorations, SetWindowState and the
2821           mouse eventhandlers accordingly.
2822         * Form.cs: Add ChangingParent (), contains the
2823           logic of what should happen when the parent changes. In MdiParent
2824           don't set things that ChangingParent () is doing. When handling
2825           WM_CLOSE, we can close the form if there are any other modal forms
2826           and the current form is a descendent of the modal form.
2827         * InternalWindowManager.cs: A lot of refactoring,
2828           the title buttons are now extracted to a separate container class
2829           that takes care of all button code (clicks, tooltips, etc). Moved
2830           Iconic|Maximized|Normal Bounds properties to this class from
2831           MdiWindowManager, so that the window state logic can succeed for
2832           other than mdi wm's. Implemented general window state change logic.
2833           Moved CreateButtons to ThemeWin32Classic, since the theme might
2834           override which buttons are available when as well as the exact
2835           location.
2836         * FormWindowManager.cs: Added, contains logic for
2837           normal forms.
2838         * ThemeWin32Classic.cs: ManagedWindowSetButtonLocations now decides
2839           which buttons go where (and if they are at all visible). 
2840           Removed special handling of maximized windows, since they aren't special. 
2841           In DrawManagedWindowDecorations don't try to draw the text if it is
2842           empty.
2843         * MdiClient.cs: ArrangeIconicWindows: Don't  calculate any sizes, 
2844           use whatever the wm gives us.
2846 2007-03-02  Jonathan Pobst  <monkey@jpobst.com>
2848         * ButtonBase.cs: Add 2.0 properties.
2849         * Button.cs: Override Draw for 2.0.
2850         * Control.cs: Add Entered and Selected properties.
2851         * FlatButtonAppearance.cs, TextFormatFlags.cs, TextImageRelation.cs,
2852         TextRenderer.cs: Make internal for 1.1 to unify drawing code.
2853         * Theme.cs: New abstract functions for drawing Standard, Flat, Popup
2854         buttons.
2855         * ThemeWin32Classic.cs: Implement layout calculations for 2.0 buttons.
2857 2007-03-01  Jonathan Pobst  <monkey@jpobst.com>
2859         * XplatUIWin32.cs: Don't use 2.0 methods in 1.1 code.  :/
2861 2007-03-01  Jonathan Pobst  <monkey@jpobst.com>
2863         * XplatUIWin32.cs: Register a new class with Windows each time we get
2864         a new ClassStyle.  [Fixes bugs #79432, #80817]
2865         * Controls.cs: Set the correct ClassStyle in CreateParams.
2866         * ToolStripDropDown.cs: Don't request an invalid ClassStyle.
2868 2007-03-01  Gert Driesen  <drieseng@users.sourceforge.net>
2870         * ListView.cs: Add fireEvent argument to ReorderColumn since the
2871         ColumnReordered event must not be signaled when modifying DisplayIndex
2872         of a ColumnHeader. Added internal ReorderColumns method which takes
2873         care of drawing, and updating the internal DisplayIndex of the
2874         ColumnHeader. Added AddColumn method which is invoked from
2875         ColumnHeaderCollection when adding or inserting columns, and which
2876         ensures that reorder_columns_indices is kept in sync. Avoid redrawing
2877         after adding each ColumnHeader in ColumnHeaderCollection.AddRange.
2878         Recalculated dispay indices after removing a ColumnHeader.
2879         * ColumnHeader.cs: Save DisplayIndex separately from ListView to
2880         match MS. Allows last display index to be returned after ListView
2881         is disposed. Update actual location of ColumnHeader when DisplayIndex
2882         is modified.
2884 2007-03-01  Everaldo Canuto  <everaldo@simios.org>
2886         * LinkLabel.cs: Improve CalcTrimRectangle.
2887         
2888         * ThemeWin32Classic.cs: Fix some compilation problem under VS 2003.
2890 2007-02-28  Everaldo Canuto  <everaldo@simios.org>
2892         * LinkLabel.cs: Rename CalcMeasurementFactor as CalcTrimRectangle and
2893         get rectangle as a result value.
2895 2007-02-28  Everaldo Canuto  <everaldo@simios.org>
2897         * LinkLabel.cs: Theres some diferences between rectangle return from 
2898         MeasureCharacterRanges and the area used for DrawString to fix this 
2899         CalcMeasurementFactor method was created, it calcules the diferences
2900         to be use later to adjust rectangle in draw operations. Fixes #80473.
2901         
2902         * ThemeWin32Classic.cs: Use factor calculated by CalcMeasurementFactor
2903         to adjust draw rectangle.
2905 2007-02-27  Everaldo Canuto  <everaldo@simios.org>
2907         * ThemeWin32Classic.cs: In DrawLinkLabel draw focus rectangle before draw
2908         text and some other changes to reduce and optimize source code.
2910 2007-02-27  Jonathan Pobst  <monkey@jpobst.com>
2912         * RadioButton.cs: Implement 2.0 event.
2913         * RelatedImageListAttribute.cs: Implement new class.
2915 2007-02-27  Everaldo Canuto  <everaldo@simios.org>
2917         * MenuAPI.cs: Change keynav_state before call SelectItem. Fixes #80901.
2919 2007-02-27  Jonathan Pobst  <monkey@jpobst.com>
2921         * CheckBox.cs: Implement 2.0 functionality.
2923 2007-02-27  Carlos Alberto Cortez <calberto.cortez@gmail.com>
2925         * ListView.cs: Refactor Add and AddRange methods of
2926         ListViewItemCollection, to not update the ListView
2927         everytime an item is added in AddRange. Also move the update
2928         code to a new CollectionChanged method, and call it
2929         from other methods that need it as well (this should also fix some
2930         bugs when Sorting is used).
2932 2007-02-27  Jackson Harper  <jackson@ximian.com>
2934         * TextControl.cs: Try to never let the caret stay in a non-text
2935         tag.
2936         * TextBoxBase.cs: Update the caret.
2938 2007-02-26  Jonathan Pobst  <monkey@jpobst.com>
2940         * XplatUIStructs.cs: Add some convenience methods for POINT structure.
2941         * XplatUIWin32.cs: Add some convenience methods for RECT structure,
2942         delete POINT structure, duplicate of one in XplatUIStructs.
2943         * TextRenderer.cs: Use XplatUIWin32.RECT instead of UXTheme.RECT.
2945 2007-02-26  Gert Driesen  <drieseng@users.sourceforge.net>
2947         * ListView.cs: Initialize LabelEditEventArgs after setting Text of
2948         edit box since otherwise the Label would immediately be set (even if
2949         the user did not modify the label). In OnKeyDown set Handled to true
2950         if Return or Escape was pressed. In ColumnHeaderCollection unlink
2951         columns that are to be removed. In ListViewItemCollection unlink items
2952         that are to be removed.
2954 2007-02-24  Jonathan Pobst  <monkey@jpobst.com>
2956         * TextRenderer.cs: If we set a GDI clip region, we need to clear
2957         it when we are done.  [Fixes bug #80949]
2959 2007-02-23  Jonathan Pobst  <monkey@jpobst.com>
2961         * Form.cs: Wrap checking ShowWithoutActivation in a NET_2_0 block.
2963 2007-02-23  Carlos Alberto Cortez <calberto.cortez@gmail.com>
2965         * ListView.cs: I forgot to commit the changes for ListView 
2966         in my previous patch.
2968 2007-02-23  Jonathan Pobst  <monkey@jpobst.com>
2970         * Clipboard.cs: Partially implement an overload of SetDataObject.
2971         * Form.cs: Implement ShowWithoutActivation.
2972         * XPlatUIWin32.cs: Fix for WM_SHOWNOACTIVATE for forms.
2974 2007-02-23  Carlos Alberto Cortez <calberto.cortez@gmail.com>
2976         This is a first set of changes to make the Virtual mode works,
2977         by avoiding the retrieval of ListViewItem instances until
2978         draw time.
2980         * ListView.cs: Store item position in the ListView instead of the
2981         ListViewItem, this way we don't request the Bounds property of
2982         ListViewItem inside the ListView calculations, as well as cache the item
2983         size in item_size field. Store indexes instead of ListViewItem
2984         instances in the matrix used by icon view. Add a ItemMatrixLocation
2985         struct to hold the row and col info of the matrix info.
2987         * ListViewItem.cs: Don't store the location anymore, and only cache
2988         the rectangles for GetBounds. Use the ListView.GetItemLocation
2989         method to retrieve the actual location.
2991 2007-02-23  Jonathan Pobst  <monkey@jpobst.com>
2993         * TextRenderer.cs: Add clipping support, thanks to George.
2994         [Fixes bug #80949]
2996 2007-02-23  Gert Driesen  <drieseng@users.sourceforge.net>
2998         * ListViewItem.cs: Cancel label edit when item is removed from 
2999         ListView.
3000         * ListView.cs: Move setting of focus to EndEdit. Fire BeforeLabelEdit
3001         event before the edit textbox is displayed.  Added CancelEdit method
3002         which is used end to editing while ignoring the value set by the
3003         user. In EndEdit, set focus to ListView to avoid losing focus to
3004         other controls. In ListViewItemCollection.Clear, cancel editing of
3005         any of the items.  In Remove, cancel editing of item being removed.
3006         Avoid udplicate code by modifing RemoveAt to invoke Remove.
3008 2007-02-23  Gert Driesen  <drieseng@users.sourceforge.net>
3010         * FileDialog.cs: Update FSEntry when move is successful. Fixes
3011         bug #80948.  
3013 2007-02-23  Everaldo Canuto  <everaldo@simios.org>
3015         * MainMenu.cs: Change Draw method to take care about MenuOrigin to be 
3016         compatible with non X11 systems. Fixes #80901.
3018 2007-02-23  Gert Driesen  <drieseng@users.sourceforge.net>
3020         * ListView.cs: Added bool argument to UpdateMultiSelection to specify
3021         whether the item should be unselected and reselect. We do no want this
3022         when we're starting to edit the label. Do not fire the 
3023         SelectedIndexChanged event from ListView when its already been fired
3024         by modifying ListViewItem.Selected. Fixes bug #80943.
3026 2007-02-23  Jonathan Pobst  <monkey@jpobst.com>
3028         * TextRenderer.cs: Previos commit logic was backwards.
3030 2007-02-23  Jonathan Pobst  <monkey@jpobst.com>
3032         * TextRenderer.cs: Don't add padding on MeasureText if we were
3033         sent the NoPadding flag.
3035 2007-02-23  Everaldo Canuto  <everaldo@simios.org>
3037         * ThemeWin32Classic.cs: Invert order of drawing operation with DrawImage
3038         after DrawButton. To prevent image overlaps button borders SetClip and 
3039         ResetClip added before and after draw image. Fixes #79129.
3041 2007-02-23  Everaldo Canuto  <everaldo@simios.org>
3043         * FolderBrowserDialog.cs: Use ClientSize instead of Size to specify 
3044         window size, it fix problem when you run under win32 that theres
3045         Size diferent than ClientSize. Also fix controls size and positions
3046         to mimic Win32. Fixes #80837.
3048 2007-02-22  Everaldo Canuto  <everaldo@simios.org>
3050         * Form.cs: Handle WM_NCHITTEST and return HTMENU when point is on 
3051         menu area to fix some problems for non X11 systems. Fixes #80613.
3053 2007-02-22  Jackson Harper  <jackson@ximian.com>
3055         * TreeNode.cs: When a node is expanded, set its is_expanded flag
3056         even if it doesn't have any children.
3058 2007-02-22  Jackson Harper  <jackson@ximian.com>
3060         * TreeView.cs: Calculate the top node 'on the fly', this
3061         eliminates issues where you need to click on the tree before
3062         scrolling it to get the top node computed correctly.
3063         * TreeNodeCollection.cs: We don't need to mess with the top node
3064         anymore.
3066 2007-02-22  Jackson Harper  <jackson@ximian.com>
3068         * DataGridViewRow.cs: Fix typo so height can actually be set.
3069         Patch by Peter Grimm.
3071 2007-02-22  Gert Driesen  <drieseng@users.sourceforge.net>
3073         * FileDialog.cs: Fixed support for renaming files and directories.
3074         * ListView.cs: Do not lose focus when edit is canceled. Process
3075         Escape as regular key (to prevent closing of dialogs).
3077 2007-02-22  Gert Driesen  <drieseng@users.sourceforge.net>
3079         * ListView.cs: Removed TODO for LabelEdit. Removed extra tabs and
3080         spaces. Changed spaces to tabs. Removed unnecessary init of bools.
3082 2007-02-22  Gert Driesen  <drieseng@users.sourceforge.net>
3084         * FileDialog.cs: LabelEditEventArgs.Label now returns null when user
3085         did not modify label.
3086         * ListView.cs: Only set LabelEditEventArgs.Label if user actually
3087         modified the text. Reset Label when user presses Escape in edit mode.
3088         Move focus to ListView after having cancelled or finished editing the
3089         label.
3091 2007-02-21  Gert Driesen  <drieseng@users.sourceforge.net>
3093         * ComboBox.cs: Removed unnecessary initializations. Marked items field
3094         private. Clear textbox when Text is set to null and SelectedIndex is
3095         already -1.
3096         * FileDialog.cs: Removed unnecessary initializations. Removed 
3097         workarounds for ComboBox bugs that are now fixed. Modified
3098         DefaultExt, InitialDirectory and Title property to change null to
3099         zero-length string in getters. Avoid directly accessing fields.
3101 2007-02-20  Jackson Harper  <jackson@ximian.com>
3103         * TextControl.cs: Remove RecalAlignments call, that was some
3104         debugging leftovers.
3105         - Don't use the line indent when we shouldn't.
3106         * RichTextBox.cs: Add support for paragraph left indents.
3108 2007-02-20  Rolf Bjarne Kvinge  <RKvinge@novell.com>
3110         * Control.cs: Fix BeginInvoke signature for 2.0 profile.
3111         Seems like the class status pages doesn't catch params differences.
3113 2007-02-19  Gert Driesen  <drieseng@users.sourceforge.net>
3115         * ComboBox.cs: Removed extra tabs. Changes spaces to tabs.
3117 2007-02-19  Gert Driesen  <drieseng@users.sourceforge.net>
3119         * ComboBox.cs: Setting Text should have no effect if item text of
3120         selected item exactly matches value. First lookup text using
3121         case-sensitive comparison, and fallback to case-insensitive comparison.
3122         FindString(Exact) returns -1 if search string is null. On 2.0 profile, 
3123         allow startIndex to be last index. Changed ArgumentOutOfRangeException
3124         paramname to match MS. Restart from first item if string is not found
3125         after startIndex. Fixed paramname of ArgumentNullException that is
3126         thrown for null value in ObjectCollection.Contains.
3128 2007-02-19  Everaldo Canuto  <everaldo@simios.org>
3130         * XplatUIStructs.cs: WM_XXX UISTATE elements uncommented.
3132 2007-02-19  Rolf Bjarne Kvinge <RKvinge@novell.com> 
3134         * ListControl.cs: In SelectedValue use value.Equals to compare for
3135         equality instead of ==, otherwise it will fail for strings.
3136         Fixes #80794.
3138 2007-02-19  Rolf Bjarne Kvinge <RKvinge@novell.com> 
3139         
3140         * ComboBox.cs: Switch the order to ShowSelection and ActivateCaret,
3141         since the caret won't show up unless ShowSelection is true. 
3142         Fixes #80795.
3144 2007-02-19  Rolf Bjarne Kvinge <RKvinge@novell.com> 
3146         * Application.cs: When disabling all forms but the main form, do not
3147           disable any descendants of the main form (such as mdi children or
3148           other parented forms). Fixes #80822 on Windows.
3149         * Form.cs: If we have a parent, set the WS_CHILD style.
3150         * Control.cs: Update the window styles if the control whose parent has
3151           changed is a form (the WS_CHILD style has to be switched).
3153 2007-02-19  Everaldo Canuto  <everaldo@simios.org>
3155         * XplatUIStructs.cs: MsgUIState structure added.
3157 2007-02-18  Gert Driesen  <drieseng@users.sourceforge.net>
3159         * FileDialog.cs: Removed need for separate fileName field. On 2.0
3160         profile, do not check filename(s) for illegal character if filename(s)
3161         were set non-interactively but always check on 1.0 profile. Fixed NRE
3162          in DefaultExt and only strip off first leading dot. Improve exception
3163         message when invalid Filter is set. Do not ignore InitialDirectory if
3164         it does no exist. Store specified Title, and if empty use default
3165         title (depending on type of dialog). Added an internal DialogTitle 
3166         property for retrieving dialog title. Fixed logic of displayed dir to
3167         more closely match MS. Avoid setting ComboBox.Text to a zero-length 
3168         string as its buggy.
3169         * OpenFileDialog.cs: In OpenFile, throw ArgumentNullException if
3170         FileName is a zero-length string (it can never be null). Override 
3171         DialogTitle property to set default title of dialog box.
3172         * SaveFileDialog.cs: Override DialogTitle property to set default
3173         title of dialog box.
3175 2007-02-18  Gert Driesen  <drieseng@users.sourceforge.net>
3177         * FileDialog.cs: Modify default text of filename and filetype labels
3178         to match that of MS. Reset do_not_call_OnSelectedIndexChanged...
3179         after we've updated the SelectedIndex. Fixes part of bug #80887.
3180         * SaveFileDialog.cs: Set text of filetype label.
3182 2007-02-16  Carlos Alberto Cortez <calberto.cortez@gmail.com>
3184         * LabelEditEventArgs.cs: New internal SetLabel method, to set the
3185         label field. Needed by latest Jackson's fixes for ListView.
3187 2007-02-16  Andreia Gaita  <avidigal@novell.com>
3189         * PrintPreviewControl/PrintPreviewDialog: Properly dispose of 
3190         print preview images.
3192 2007-02-16  Jackson Harper  <jackson@ximian.com>
3194         * ListView.cs: Make AfterLabelEdit work correctly.
3195         * FileDialog.cs: After changing the name of the folder, we have to
3196         make sure that it is created, or that we pop up an error because
3197         it already exists.
3199 2007-02-16  Jackson Harper  <jackson@ximian.com>
3201         * X11Dnd.cs: Implement aliases on mime handlers, so things like
3202         System.String are mapped to text.
3203         - Handle dataobjects, getting all the possible formats out of them
3204         - We dont need the drag event args before we give feedback. This
3205         allows feedback cursors to be immediate before selections have
3206         been converted.
3208 2007-02-16  Jackson Harper  <jackson@ximian.com>
3210         * TextBoxBase.cs: Modified the method for inserting images to
3211         taking a line and position instead of tag and position.
3212         * RichTextBox.cs: Handle PngBlip data by inserting the png image
3213         into the RTF file.
3214         * TextControl.cs: Allow images to be inserted as the first tag of
3215         a line.
3216         - Fix some off by one issues when we assume the first tag is a
3217         text tag, not an image tag.
3219 2007-02-15  Carlos Alberto Cortez <calberto.cortez@gmail.com>
3221         * ListView.cs: Set focus to ListView when ItemControl gets a
3222         WM_RBUTTONDOWN message, to mimic .Net behaviour. 
3223         Fixes part of #80467.
3225 2007-02-15  Rolf Bjarne Kvinge <RKvinge@novell.com> 
3227         * DateTimePicker.cs: Call RecreateHandle if the Format changes and
3228           validate Text input (if null or empty string reset Value to default
3229           value). Fixes #80830.
3231 2007-02-14  Carlos Alberto Cortez <calberto.cortez@gmail.com>
3233         * ListView.cs: Set owner as null for columns and items when
3234         Dispose is invoked. Fixes #80607.
3236 2007-02-14  Jonathan Pobst  <monkey@jpobst.com>
3238         * ToolStrip.cs: Allow LayoutStyle.Flow, make sure to call OnOpening when
3239         showing DropDowns, don't show a Grip when doing Flow layout.
3240         [This fixes the toolbox in PDN 2.72.]
3241         * ToolStripItem.cs: Add Anchor property and some internal properties to
3242         reduces needed changes to FlowLayout.
3243         * ToolStripOverflow.cs: Remove unused variable.
3244         * ToolStripSplitStackLayout.cs: If a ToolStripItem isn't visible, don't
3245         use it in the layout calculations.
3247 2007-02-13  Everaldo Canuto  <everaldo@simios.org>
3249         * ToolTip.cs: Add HotkeyPrefix.Hide to MeasureString format, it fix an issue
3250         reported in #79640.
3251         
3252         * ThemeWin32Classic.cs: Uses format for MeasureString in ToolTipSize to fiz
3253         size calculation.
3255 2007-02-13  Everaldo Canuto  <everaldo@simios.org>
3257         * ToolBar.cs, ToolBarButton.cs: Revert and remove HotkeyPrefix from 
3258         MeasureString format, it can make button very large in some cases, it is
3259         strange but is what win32 do.
3261 2007-02-13  Everaldo Canuto  <everaldo@simios.org>
3263         * ToolBar.cs, ToolBarButton.cs: Uses format in MeasureString to fix string 
3264         size calculation.
3266         * ThemeWin32Classic.cs: Set HotkeyPrefix in toolbar text format to fix text
3267         rendering, the value is based on MenuAccessKeysUnderlined.
3269 2007-02-13  Everaldo Canuto  <everaldo@simios.org>
3271         * Theme.cs: Change MenuAccessKeysUnderlined to "true" that is value used
3272         for most themes.
3273         
3274         * ThemeWin32Classic.cs: Override MenuAccessKeysUnderlined as false.
3275         
3276         * ThemeNice.cs, ThemeGtk.cs, ThemeClearlooks.cs: Remove always_draw_hotkeys
3277         and use MenuAccessKeysUnderlined instead.
3279 2007-02-13  Andreia Gaita  <avidigal@novell.com>
3281         * ContainerControl.cs: Focus fix for nunit treeview selection bug.
3282         A selected control would not get a Focus call if:
3283                 - the default active control of the container is the same as
3284                   the one that was selected
3285                 - we are switching from one container to another
3286         Under these conditions, the container being selected already has
3287         an active_control, which is the same as the one being activated, 
3288         so set_ActiveControl would always return and not send the Focus
3289         call. Fix to check if the currently active control of the container
3290         is actually focused.
3292 2007-02-13  Jonathan Pobst  <monkey@jpobst.com>
3294         * StatusStrip.cs: Implement the spring layout.
3295         * ToolStripControlHost.cs: Make sure the hosted control's visibility
3296         always matches the host.
3297         * ToolStripItem.cs: Write a more accurate layout for TextBeforeImage
3298         and TextAfterImage.
3300 2007-02-13  Andreia Gaita  <avidigal@novell.com>
3302         * Control.cs: Code reorganization only.
3303           - Reorganize the WndProc cases so that each case has it's own handling method, 
3304           to help with the no-line-numbering stack traces.
3305           - Formatting changes (it's vstudio's fault, really :p)
3307 2007-02-13  Rolf Bjarne Kvinge <RKvinge@novell.com> 
3309         * MonthCalendar.cs: Switch to using Thread.CurrentCulture instead of
3310           Thread.CurrentUICulture to match DateTimePicker's (and MS)
3311           behaviour.
3313 2007-02-12  Jackson Harper  <jackson@ximian.com>
3315         * RichTextBox.cs:
3316         * TextBox.cs: By default we have a non multiline document
3317         - use the multiline property instead of the internal variable
3318         * TextBoxBase.cs: Treat multiline and non multiline the same in
3319         most places.
3320         - Use the documents multiline flag instead of tracking it ourself
3321         * TextControl.cs: Attempt at getting multiline to match MS
3322         behavior.  Lines now track an offset, which is either their X or Y
3323         offset depending on whether or not we are in multiline mode.
3324         - Update all the methods to understand that lines have an X value.
3325         - Fix crash in Undo::Duplicate when empty lines are deleted.
3327 2007-02-12  Everaldo Canuto  <everaldo@simios.org>
3329         * Label.cs: CalcPreferredHeight and CalcPreferredWidth methods removed and 
3330         code moved to properties PreferredHeight and PreferredWidth. It solve the
3331         all problems when preferred sizes must be recalculated. Fixes #80801.
3333 2007-02-12  Everaldo Canuto  <everaldo@simios.org>
3335         * Label.cs: Fix CalcPreferredHeight for 2.0 that must return only
3336         font height when compatible_text_rendering is false. Partially fix #80801.
3338 2007-02-09  Gert Driesen  <drieseng@users.sourceforge.net>
3340         * Form.cs: Fixed typo in exception message. Fixes bug #80779.
3342 2007-02-09  Gert Driesen  <drieseng@users.sourceforge.net>
3344         * Form.cs: Improved exception messages in ShowDialog.
3346 2007-02-09  Gert Driesen  <drieseng@users.sourceforge.net>
3348         * PrintDialog.cs: On 1.0 profile, throw ArgumentException in RunDialog if
3349         PrinterSettins has not been set. On 2.0 profile, initialize PrinterSettings
3350         if not set. Fixes bug #80764. Avoid accessing current_settings field
3351         directly.
3353 2007-02-08  Everaldo Canuto  <everaldo@simios.org>
3355         * Theme.cs: An new property MenuAccessKeysUnderlined added with default value
3356         false.
3358         * SystemInformation.cs: An new property MenuAccessKeysUnderlined added, it is
3359         public in 2.0 and for easy maintenance and dont break compatibility it is 
3360         internal in 1.1.
3361         
3362 2007-02-08  Jonathan Pobst  <monkey@jpobst.com>
3364         * ToolStripItem.cs: Implement using images from ImageList.
3366 2007-02-08  Rolf Bjarne Kvinge <RKvinge@novell.com> 
3368         * DateTimePicker.cs: Change default date-formatting culture from
3369           CurrentThread.CurrentUICulture to CurrentThread.CurrentCulture,
3370           seems to be the way MS does it.
3372 2007-02-08  Andreia Gaita  <avidigal@novell.com>
3374         * PrintPreviewControl.cs: rewrite toolbar code to fix #80725. Correct 6-up image 
3375         (the 6 was cut off on the right side)
3377 2007-02-08  Jonathan Pobst  <monkey@jpobst.com>
3379         * Form.cs: Tell MenuStrips to close when the form is clicked.
3380         * MenuStrip.cs, ToolStrip.cs, ToolStripControlHost.cs, 
3381         ToolStripDropDown.cs, ToolStripDropDownItem.cs, ToolStripItem.cs,
3382         ToolStripItemCollection.cs, ToolStripMenuItem.cs, ToolStripProfessionalRenderer.cs,
3383         ToolStripSplitButton.cs, ToolStripSplitStackLayout.cs: Add 
3384         support for Overflow, where items that do not fit are automatically
3385         reparented to a drop down menu.
3386         * ToolStripOverflow.cs, ToolStripOverflowButton.cs: Added.
3387         Also: fixes bug #80747.
3389 2007-02-08  Rolf Bjarne Kvinge <RKvinge@novell.com> 
3391         * ComboBox.cs: Remove warning (unused code).
3392         * ScrollableControl.cs: Remove warning for 1.1 profile.
3394 2007-02-08  Rolf Bjarne Kvinge <RKvinge@novell.com> 
3396         * Form.cs: Remove a warning.
3398 2007-02-08  Rolf Bjarne Kvinge <RKvinge@novell.com> 
3400         * DateTimePicker.cs: Fixed a NRE if CustomFormat was null. Handles the
3401           'g' specifier, not documented anywhere, but seems to always show up
3402           as a single space (might have something to do with the DateTime 'g'
3403           specifier, which is the era format, but since DateTimePicker can't
3404           go earlier than 1753 it wouldn't matter) . Fixed quote handling,
3405           won't crash if the format has an unmatched quote. Now shows
3406           single-character formats correctly. Fixes #80744.
3408 2007-02-08  Jonathan Pobst  <monkey@jpobst.com>
3410         * StatusStrip.cs: Stretch property needs to call base.Stretch,
3411         not this.Stretch to fix stack overflow. [Fixes bug #80760]
3413 2007-02-07  Chris Toshok  <toshok@ximian.com>
3415         * ThemeWin32Classic.cs (DrawButtonBase): don't clear to the
3416         background color.  it overwrites the background image we've
3417         already painted.  Fixes #80599.
3419 2007-02-07  Chris Toshok  <toshok@ximian.com>
3421         * DataGrid.cs: return immediately from Edit() when there are no
3422         columns.  Fixes #80662.
3424 2007-02-07  Chris Toshok  <toshok@ximian.com>
3426         * MessageBox.cs: fix #80625.  don't always show the Help button in
3427         2.0.  use the displayHelpButton parameter to determine if we
3428         should show it. Also, make the internal show_help field private.
3430 2007-02-07  Chris Toshok  <toshok@ximian.com>
3432         * Control.cs (SetVisibleCore): check in the proposed patch for
3433         80604, and set is_visible before calling CreateControl.
3435 2007-02-07  Jonathan Pobst  <monkey@jpobst.com>
3437         * ListView.cs: UseCompatibleStateImageBehavior setter changed from NIEX to 
3438         MonoInternalNote.  This is added automagically by VS2005, so let's not crash
3439         on it.
3441 2007-02-06  Everaldo Canuto  <everaldo@simios.org>
3443         * MenuAPI.cs: hotkey_active internal field added, it is required because
3444         we need to know when hotkeys must be draw, before this change a keystate
3445         Navigating was used but we can have menu in navigating state without
3446         hotkeys. Fixes #80694.
3447         
3448         * ThemeWin32Classic.cs: Only draw hot keys when hotkey_active is true.
3450 2007-02-06  Rolf Bjarne Kvinge <RKvinge@novell.com> 
3452         * Control.cs: Handle WM_CAPTURECHANGED in 1.1 code as well, and change
3453           corresponding events and methods to be internal for 1.1 profile and
3454           public for 2.0 profile (required by SizeGrip).
3455         * Form.cs: Use SizeGrip as a virtual SizeGrip (and don't add it to the
3456           implicit control list). Don't set the size nor the location of the
3457           SizeGrip anymore as it's not needed.
3458         * SizeGrip.cs: Rewrote large parts, it now supports a virtual mode to
3459           draw directly on the captured control (fixes #80656). Removed
3460           ShowGrip (it wasn't used anywhere), redraw (always true), added
3461           GetDefaultSize and GetDefaultRectangle to calculate defaults.
3462         * ScrollableControl.cs: Make UpdateSIzeGripVisible internal so it can
3463           be called from SizeGrip.
3465 2007-02-06  Rolf Bjarne Kvinge <RKvinge@novell.com> 
3467         * Timer.cs: Throw ArgumentException if Interval <= 0.
3469 2007-02-05  Jackson Harper  <jackson@ximian.com>
3471         * TreeView.cs: We need to check scrollbar visibility when window
3472         visibility is updated, because non visible trees don't ever add
3473         scrollbars.
3474         * Cursor.cs: We want the override cursor to be reset to NULL when
3475         we set current cursor to the default cursor.
3477 2007-02-05  Jackson Harper  <jackson@ximian.com>
3479         * TextControl.cs: Don't have crlfs when we are non multiline.
3480         - Consolidate the line position.
3482 2007-02-05  Jackson Harper  <jackson@ximian.com>
3484         * X11Keyboard.cs: BACK+CTRL gets a special char code.
3486 2007-02-03  Rolf Bjarne Kvinge <RKvinge@novell.com> 
3488         * XplatUIX11.cs: Implemented WM_CAPTURECHANGED support, we're now
3489           handling LeaveNotify->NotifyUngrab in order to send
3490           WM_CAPTURECHANGED. However sometimes the NotifyUngrab arrives late
3491           after calling XUngrabPointer, so we call WindowUngrabbed directly
3492           from UngrabWindow in order to send WM_CAPTURECHANGED immediately.
3493         * Control.cs: Handle WM_CAPTURECHANGED in order to raise
3494           MouseCaptureChanged correctly. Also create handles if changing
3495           Capture (matches MS behaviour).
3497 2007-02-02  Rolf Bjarne Kvinge <RKvinge@novell.com> 
3499         * SizeGrip.cs: Make the last change 2.0 only.
3501 2007-02-02  Rolf Bjarne Kvinge <RKvinge@novell.com> 
3503         * SizeGrip.cs: If resizing and the capture is lost, revert any size
3504           changes to initial size (fixes #80597).
3506 2007-02-02  Rolf Bjarne Kvinge <RKvinge@novell.com> 
3508         * SizeGrip.cs: Use the normal icon for SizeGrip if it is disabled.
3510 2007-02-02  Rolf Bjarne Kvinge <RKvinge@novell.com> 
3512         * SizeGrip.cs: Only draw sizegrip if enabled (but always draw
3513           background) and only allow dragging if enabled. This way the
3514           sizegrip can be used to fill the open square that otherwise would
3515           have been shown in the bottom right corner of ScrollableControl
3516           when ScrollableControl is not suppose to support sizing.
3517         * ScrollableControl.cs: Create UpdateSizeGripVisible to decide when the
3518           sizegrip is shown and enabled, and hook up with necessary events.
3520 2007-02-01  Chris Toshok  <toshok@ximian.com>
3522         * DataGridTextBoxColumn.cs: clean up the
3523         GetFormattedString/GetColumnValueAtRow combination of functions.
3524         Also fix UpdateUI, and the initial state of
3525         IsInEditOrNavigateMode.
3527         * DataGridTextBox.cs: don't chain up to base.OnMouseWheel - we
3528         aren't supposed to scroll the textbox here, we're supposed to
3529         scroll the datagrid.
3531 2007-02-01  Chris Toshok  <toshok@ximian.com>
3533         * ComboBox.cs: use vscrollbar_ctrl.Dock instead of explicitly
3534         setting the position.
3536 2007-02-01  Chris Toshok  <toshok@ximian.com>
3538         * DataGrid.cs (OnLeave): we can now do the CancelCurrentEdit thing
3539         here, since the most recent focus fixes keep us from generating
3540         the Leave event when our textbox gets focus.
3541         (Edit): we should be passing null for the column style's
3542         instantText parameter.
3543         
3544 2007-02-01  Jonathan Pobst  <monkey@jpobst.com>
3546         * ToolStripDropDownItem.cs: Make sure DropDownOpening event is 
3547         raised.  Fixes menu text/icons not showing up in PDN.
3549 2007-02-01  Rolf Bjarne Kvinge  <RKvinge@novell.com>
3551         * Control.cs: Remove code in constructor that makes every
3552         control with WS_CHILD set have initial location -1, -1.
3554 2007-01-31  Jackson Harper  <jackson@ximian.com>
3556         * X11Dnd.cs: Take the keyboard on init to reduce coupling with
3557         XplatUIX11.
3558         * XplatUIX11.cs: Give teh keyboard to teh dnd.
3560 2007-01-31  Jackson Harper  <jackson@ximian.com>
3562         * X11Dnd.cs: Use IDataObject instead of the DataObject class.
3563         - Remove some debug code.
3565 2007-01-31  Jackson Harper  <jackson@ximian.com>
3567         * XplatUIX11.cs: If you set the override cursor during a grab, it
3568         should actually override the grab cursor.  This comes into play
3569         when you are setting custom cursors in a DND feedback method.
3571 2007-01-31  Jackson Harper  <jackson@ximian.com>
3573         * X11Dnd.cs: Add support for handling the QueryContinue and
3574         GiveFeedback events.
3575         - Cancel drag and drop actions when the escape key is clicked.
3576         * XplatUIX11.cs: Let the dnd subsystem get key events, so that it
3577         can handle the ESCAPE key.
3578         - Allow dnd to swallow BUTTONUP messages if it needs to.  This is
3579         done when dnd events are continued after the button is released.
3580         - Add a new helper method so that dnd can translate key events.
3582 2007-01-31  Alexander Olk  <alex.olk@googlemail.com>
3584         * FileDialog.cs: Rewrite of Jacksons OnClickCancelButton patch to
3585         make it more obvious what is happening.
3587 2007-01-30  Jackson Harper  <jackson@ximian.com>
3589         * XplatUIX11.cs: Don't break when handling button release in drag
3590         and drop operations. We need that BUTTONUP message to get through
3591         so capture is released.
3592         * X11Dnd.cs: We don't need to manually grab the pointer anymore,
3593         this is handled automatically when the mouse is down.
3595 2007-01-30  Jackson Harper  <jackson@ximian.com>
3597         * FileDialog.cs: OnClickCancelButton gets called whenever the dialog
3598         is closed, so we need to make sure that we aren't changing the
3599         dialog result when the OK (Open or Save) button has been clicked
3600         and we are closing the window ourselves.  Note we don't need to
3601         worry about the cache being written in this case, because it was
3602         already done in the previous FilOk call.
3604 2007-01-30  Rolf Bjarne Kvinge  <RKvinge@novell.com>
3605         
3606         * DateTimePicker.cs: Remove a warning.
3607         * ComboBox.cs: Remove a couple of warnings.
3609 2007-01-29  Chris Toshok  <toshok@ximian.com>
3611         * XplatUIX11.cs: don't crash, and remove the icon if the user has
3612         set one, if SetIcon is passed a null icon.
3614 2007-01-29  Andreia Gaita  <avidigal@novell.com>
3616         * TextBox.cs: Redraw when the password characters changes
3617         * TextControl.cs: Check if textbox has a password char and draw 
3618         a line of password chars instead of the text in the line. LineTag gets 
3619         an extra Draw() method which allows document.Draw to override the text 
3620         that will be drawn. Removes 1024 char limitation on length of passworded 
3621         lines.
3623 2007-01-29  Jackson Harper  <jackson@ximian.com>
3625         * TextBoxBase.cs: Deleting sections of text is undoable.  Deleting
3626         single chars is not.
3628 2007-01-28  Jonathan Pobst  <monkey@jpobst.com>
3630         * TextRenderer.cs: Fix cutting off the bottom of letters like "j" by
3631         one pixel.  Fix a StackOverflowException caused by an overload wrongly
3632         calling itself.
3634 2007-01-26  Everaldo Canuto  <everaldo@simios.org>
3636         * MenuAPI.cs: Fixed kerboard grab problem when "enter"key is pressed,
3637         also remove ProcessArrowKey and put the code inside ProcessKeys.
3639 2007-01-26  Jonathan Pobst  <monkey@jpobst.com>
3641         * PaddingConverter.cs: Added.
3643 2007-01-26  Rolf Bjarne Kvinge  <RKvinge@novell.com>
3644         
3645         * ThemeWin32Classic.cs: Only draw the text of a StatusBar if
3646         ShowPanels is false (fixes #80600). Only draw up to 127 characters
3647         of text (fixes #80601). For panels clip the text to draw to the
3648         panel (fixes #80603).
3650 2007-01-26  Rolf Bjarne Kvinge  <RKvinge@novell.com>
3652         * ComboBox.cs: Fixed implementation of ResetText.
3654 2007-01-25  Jackson Harper  <jackson@ximian.com>
3656         * TextControl.cs: For the last char of a line we need to use the
3657         line size, not that chars width, since it won't actually be
3658         computed since the right side of a char is based on the start of
3659         the left side of the next char, and the next char does not exist.
3661 2007-01-25  Chris Toshok  <toshok@ximian.com>
3663         * Splitter.cs: fix the new unit tests, and reindent some switch
3664         statements.
3666 2007-01-25  Rolf Bjarne Kvinge  <RKvinge@novell.com>
3668         * ComboBox.cs: Implemented 2.0 methods and events.
3669         * TextBoxBase.cs: Added OnTextUpdate, so that
3670         ComboBox.ComboTextBox can inform ComboBox of it.
3672 2007-01-25  Jackson Harper  <jackson@ximian.com>
3674         * TextControl.cs: Respect ShowSelection when deciding whether or
3675         not to display the caret, this allows comboboxes to have carets
3676         when the combotextbox does not have focus.
3678 2007-01-25  Jackson Harper  <jackson@ximian.com>
3680         * TextControl.cs: Add a Suspend/Resume for updating, basically the
3681         same as the Suspend/Resume for recalc, except this will do actual
3682         Invalidates.
3683         - New Undo manager, works much like the MS version.
3684         - Implemented Redo
3685         * TextBoxBase.cs: The Cut operation is undoable.
3687 2007-01-25  Rolf Bjarne Kvinge  <RKvinge@novell.com>
3688         
3689         * TextBoxBase.cs: Don't antialias text. Makes it look way better
3690         on Windows (no difference on Linux).    
3692 2007-01-25  Rolf Bjarne Kvinge  <RKvinge@novell.com>
3694         * XplatUIWin32.cs: Set SWP_NOACTIVATE in RequestNCRecalc as well,
3695         we don't want to activate any windows. Fixes #79433.
3697 2007-01-25  Jonathan Pobst  <monkey@jpobst.com>
3699         - ButtonBase.cs: Fix capitalization of parameter: disposing.
3700         [Fixes bug #80609]
3702 2007-01-25  Alexander Olk  <alex.olk@googlemail.com>
3704         * FileDialog.cs:
3705         - Move to using System.ComponentModel.EventHandlerList
3706         - Replace Refresh with Invalidate
3707         - Clear the mime filecache on closing
3708         - Some other memory reducing work. After beeing closed FD now uses
3709           only about 300 KB for the fdo mime stuff plus the memory of the
3710           cached icons.
3711         * Mime.cs: Changed coding style and removed unnecessary commented
3712         code. Some more memory memory reducing work.
3714 2007-01-25  Rolf Bjarne Kvinge  <RKvinge@novell.com>
3716         * ComboBox.cs: Implemented FlatStyle and DropDownHeight, and added
3717         a few other missing 2.0 properties.
3718         * Theme.cs: Added DrawFlatStyleComboBox.
3719         * ThemeWin32Classic.cs: Implemented DrawFlatStyleComboBox.
3721 2007-01-24  Chris Toshok  <toshok@ximian.com>
3723         * XplatUIX11.cs: fix the wake_waiting logic - we always clear the
3724         wake_waiting flag, not just when there's data to be read.  if we
3725         don't, then future wakeup's won't reach us and we'll be doomed to
3726         wait for the entire 1 second timeout forever (unless there are X
3727         events to be had).
3729 2007-01-24  Jonathan Pobst  <monkey@jpobst.com>
3731         * ComboBox.cs: FindStringExactMaxException doesn't throw AOORE on 2.0
3732         until you pass Items.Count, not Items.Count - 1 like 1.1.
3734 2007-01-24  Gert Driesen  <drieseng@users.sourceforge.net>
3736         * ColumnHeader.cs: Fixed ParamName in ArgumentOutOfRangeException.
3738 2007-01-24  Jonathan Pobst  <monkey@jpobst.com>
3740         * ToolStripContainer.cs: The recent Dock fix exposed that I was
3741         adding the panels in the wrong order.
3743 2007-01-24  Jackson Harper  <jackson@ximian.com>
3745         * TextBoxBase.cs: When we move the caret we also need to move the
3746         selection, this fixes some random crashing after doing select
3747         text, unselect, delete a char, paste.
3749 2007-01-24  Rolf Bjarne Kvinge  <RKvinge@novell.com>
3751         * Form.cs: Update SizeGrip's location even if it's not visible (fixes #80592).
3753 2007-01-23  Everaldo Canuto  <everaldo@simios.org>
3755         * Control.cs: In OnParentBackgroundImageChanged remove conditions to call
3756         OnBackgroundImageChanged, it mimics win32 behavior. Fixes #80553. 
3757         * ToolBar.cs: Force redraw in BackgroundImageChanged.
3759 2007-01-23  Everaldo Canuto  <everaldo@simios.org>
3761         * ToolBar.cs:
3762         - Implement support for vertical toolbars. Fixes #80539;
3763         - Call LayoutToolBar when resize, it fix some other problems in layout.
3764         - Rename requested_height to requested_size, as we can have width on it
3765         when toolbar is vertical.
3766         - Create a private property "Vertical" that uses Dock to verify when 
3767         toolbar is vertical or not.
3768         - Set ControlStyles when change Dock property.
3769         - Refactory in LayoutToolBar to have better variables names and to support
3770         vertical toolbars.
3771         - Fixes default value for ButtonSize when button count is equal zero, size
3772         must be (39, 36) test case writed.
3774 2007-01-23  Chris Toshok  <toshok@ximian.com>
3776         * Control.cs: fix the checks so that they work correctly for mdi
3777         parents/children.
3779 2007-01-23  Chris Toshok  <toshok@ximian.com>
3781         * Control.cs: ControlCollection seems to have super-secret
3782         abstraction breaking knowledge of Mdi containers.  allow MdiClient
3783         to add toplevel controls.
3785 2007-01-23  Chris Toshok  <toshok@ximian.com>
3787         * Control.cs: throw an ArgumentException if a toplevel control is
3788         added to our control collection from ControlCollection.Add, as
3789         well as from ControlCollection.IList.Add.  This fixes the
3790         ControlSetTopLevelTest.TestTopLevelAdd unit test.
3792         Also, in ControlCollection.IList.Add, don't through an
3793         ArgumentNullException, throw an ArgumentException, when value ==
3794         null.  This matches MS.
3796 2007-01-23  Chris Toshok  <toshok@ximian.com>
3798         * BindingSource.cs: initial, incomplete, implementation of
3799         BindingSource.
3801 2007-01-23  Jackson Harper  <jackson@ximian.com>
3803         * TextControl.cs:
3804         * TextBoxBase.cs: Checking in some pieces of the undo stuff so
3805         that I can fix a broken unit test (TextBoxTest::ClearUndo)
3806         
3807 2007-01-23  Everaldo Canuto  <everaldo@simios.org>
3809         * ToolBar.cs: Add status fields to ToolBarButtonInfo.
3811 2007-01-23  Andreia Gaita  <avidigal@novell.com>
3813         * TreeNode.cs: Add new 2.0 ImageKey and SelectedImageKey properties.
3814         * TreeNodeCollection.cs: New Add() methods, ContainsKey and
3815         IndexOfKey() for 2.0
3817 2007-01-23  Rolf Bjarne Kvinge  <RKvinge@novell.com>
3819         * XplatWin32.cs: In RequestNCRecalc call SetWindowPos with SWP_NOZORDER
3820         to prevent it from changing z-order.
3821         * MdiWindowManager.cs: Refactor part of SetWindowState to MdiClient, only
3822         leave UI updates in MdiWindowManager.
3823         * InternalWindowManager.cs: Check for 0 sized nc areas and make them
3824         1 sized (NC handling goes weird on Linux otherwise).
3825         * MdiClient.cs: Add missing ExStyle (WS_EX_CLIENTEDGE), so it's no longer
3826         necessary to handle WM_NCCALCSIZE anymore. This also made it possible to
3827         remove a few NCRequestRecalcs. Changed calculations in IconicBounds
3828         to use ClientSize of MdiClient instead of entire size. Refactored ActivateChild
3829         and SetWindowState(s) to allow for changing the size of an activated child
3830         before activating it (reduces a lot of flicker).
3832 2007-01-22  Jonathan Pobst  <monkey@jpobst.com>
3834         * Form.cs: Changing FormBorderStyle has different semantics based
3835         on whether the Form is visible or not.  If not visible, don't change
3836         the Size.  But InvalidateNC needs to be called to force the window
3837         to pick up the changes and redraw itself.  [Fixes bug #80574]
3839 2007-01-22  Jonathan Pobst  <monkey@jpobst.com>
3841         [Moma work]
3842         * ContainerControl.cs: ProcessCmdKey.
3843         * ErrorProvider.cs: new constructor.
3844         * Form.cs: fix AutoValidateEvent compiler warning.
3845         * Label.cs: fix OnAutoSizeChanged compiler warning.
3846         * MenuStrip.cs: fix CanOverflow compiler warning.
3847         * TabControl.cs: SelectTab, OnSelected methods, Selected event.
3848         * TextBox.cs: Dispose.
3849         * ToolStrip.cs: CanOverflow, re-enable double buffering.
3850         * ToolStripControlHost.cs: fix CausesValidation compiler warning.
3851         * ToolStripDropDown.cs: fix ContextStripMenu compiler warning.
3852         * ToolStripItem.cs: Overflow, RightToLeft properties.
3854 2007-01-22  Rolf Bjarne Kvinge  <RKvinge@novell.com>
3856         * Form.cs: Move the layout of the main form to MdiWindowManager.
3857         * MdiWindowManager.cs: If WindowState changes from or to Maximized,
3858         do a layout of the main window to update MdiClient's client area to
3859         the right area. Fixes #80533. Remove the calculation of nc size, 
3860         it was just wrong and the correct one is the same as for 
3861         InternalWindowManager. 
3863 2007-01-20  Jonathan Pobst  <monkey@jpobst.com>
3865         * Control.cs: Setting Anchor or Dock needs to reset the other
3866         to its default.  [Fixes bug #80556]
3868 2007-01-20  Chris Toshok  <toshok@ximian.com>
3870         * CheckedListBox.cs: class status changes.
3872         * ScrollableControl.cs: same.
3874         * RichTextBox.cs: same.
3876         * ContainerControl.cs: same.
3878         * ListView.cs: same.
3880         * NotifyIcon.cs: same.
3882         * MenuStrip.cs: same.
3884         * RadioButton.cs: same.
3886         * CheckBox.cs: same.
3888         * PrintPreviewDialog.cs: same.
3890         * Form.cs: same.
3892 2007-01-19  Jonathan Pobst  <monkey@jpobst.com>
3894         * TreeNode.cs: Apply Alan's patch for Name property.
3896 2007-01-19  Rolf Bjarne Kvinge  <RKvinge@novell.com>
3897         
3898         * Form.cs: Implemented SizeGripStyle.
3899         * SizeGrip.cs: Check for minimum and maximum size for the
3900         control being resized and only resize if size has actually
3901         changed.
3903 2007-01-19  Chris Toshok  <toshok@ximian.com>
3905         * DataGridColumnStyle.cs: stop setting _readonly in the
3906         PropertyDescriptor setter.  fixes a unit test failure.
3908         also, rename ParentReadOnly to TableStyleReadOnly, and have it
3909         just consult our table style (if we have one).  We don't need to
3910         consult the datagrid readonly attribute because that's passed in
3911         as the _ro arg to Edit.  this simplifies things a little.
3912         
3913         * DataGrid.cs: use CurrentColumn instead of
3914         current_cell.ColumnNumber just to simplify some of the code.
3916         switch the order of some things in the CurrentCell setter to keep
3917         the previous cell from getting a textbox again -
3918         EnsureCellVisibility causes scrolling to happen, which calls Edit.
3919         So we need to set the new cell before calling it.
3920         
3921         call Edit in OnEnter, as does Microsoft.
3922         
3923         also, make sure the current table style isn't the one we create
3924         initially when checking to see if it's different than the one
3925         we're setting it to in BindColumns (this fixes #80421).
3927         * GridTableStylesCollection.cs: table styles can have "" for a
3928         mapping name.  part of the fix for #80421.
3930         * DataGridTextBoxColumn.cs: simplify the readonly calculation in
3931         Edit significantly.
3933 2007-01-18  Jonathan Pobst  <monkey@jpobst.com>
3935         * TextRenderer.cs: Rewrote to be complete-er, more MS-matching-er,
3936         and less GDI object leaky-er.
3938 2007-01-18  Andreia Gaita  <avidigal@novell.com>
3940         * LinkLabel.cs: Add opaque control style
3942 2007-01-18  Jackson Harper  <jackson@ximian.com>
3944         * TextControl.cs: Calculate width properly.
3945         - Don't store the tag's X offset, this can be figured out very
3946         easily.
3947         - When getting the caret tag make sure to get the last empty tag.
3949 2007-01-18  Jonathan Pobst  <monkey@jpobst.com>
3951         * Form.cs: Recalculate our size after setting a new FormBorderStyle.
3952         [Fixes bug #79959]
3954         * Control.cs: Color.Empty shouldn't count for previous transparent
3955         redraw changes.
3957 2007-01-18  Jackson Harper  <jackson@ximian.com>
3959         * TextBox.cs:
3960         * RichTextBox.cs:
3961         * TextControl.cs: Starting to merge in some pieces of my older
3962         undo work.  Basically just some slight cleanup of the undo API.
3964 2007-01-18  Rolf Bjarne Kvinge  <RKvinge@novell.com>
3966         * TrackBar.cs: Fix signature of RightToLeftLayout.
3967         * StatusBar.cs: Implemented missing 2.0 methods and attributes.
3968         * StatusBarPanel.cs: Implemented missing 2.0 methods and attributes.
3969         * Application.cs: Implemented UseWaitCursor.
3971 2007-01-18  Jackson Harper  <jackson@ximian.com>
3973         * TextControl.cs: We can't skip tags if any part of the tag is
3974         visible.
3976 2007-01-18  Jonathan Pobst  <monkey@jpobst.com>
3978         * ContainerControl.cs: Override OnLayout.
3980 2007-01-18  Jonathan Pobst  <monkey@jpobst.com>
3982         * NotifyIcon.cs: Add ContextMenuStrip and Tag properties.
3984         * ContextMenuStrip.cs: Make sure context menu is shown on top of 
3985         everything else.
3987 2007-01-18  Chris Toshok  <toshok@ximian.com>
3989         * ContainerControl.cs: remove the partial handling of LBUTTONDOWN
3990         (leftover from the container_selected days, I'd wager).  fixes bug
3991         #80546.
3993 2007-01-18  Jonathan Pobst  <monkey@jpobst.com>
3995         * Control.cs: Apply patch from George to fix the new testcase on
3996         bug #80451.  We can't just check for Color.Transparent, we need 
3997         to check if the back color's alpha channel is < 255.
3999 2007-01-18  Jonathan Pobst  <monkey@jpobst.com>
4001         * Form.cs: Move setting show_icon = true to before the constructor
4002         so that the base constructor has that information when it calculates
4003         the form's size.  Was causing forms to be (6, 6) bigger than they
4004         were supposed to be.  Thanks for catching this Rolf!
4006 2007-01-18  Jackson Harper  <jackson@ximian.com>
4008         * TextControl.cs: When replacing a selection we need to invalidate
4009         from the initial selection start, because selection start is moved
4010         to the end of the replacement.
4012 2007-01-18  Andreia Gaita  <avidigal@novell.com>
4014         * LinkLabel.cs: Missing ControlStyles. Fixes #80482
4016 2007-01-18  Chris Toshok  <toshok@ximian.com>
4018         * DataGridTextBoxColumn.cs: fix most of the NotWorking unit tests
4019         I just added.
4021 2007-01-17  Everaldo Canuto  <everaldo@simios.org>
4023         * ToolBar.cs: Add layout methods to ToolBarButtonInfo class, every 
4024         layout methods and properties from ToolBarButton must be available
4025         into ToolBarButtonInfo.
4027 2007-01-17  Jonathan Pobst  <monkey@jpobst.com>
4029         * Control.cs: If the control has a transparent background, we
4030         need to refresh it when it moves and when it's parent's background
4031         image changes.  [Fixes bug #80451]
4033 2007-01-17  Jonathan Pobst  <monkey@jpobst.com>
4035         * XplatUIWin32.cs: Don't use 2.0 methods in 1.1 code!  Doh!
4037 2007-01-17  Jonathan Pobst  <monkey@jpobst.com>
4039         * XplatUIWin32.cs: Implement proper double buffering for Windows.
4040         [Fixes bug #80447, and probably speeds up things as well]
4042 2007-01-16  Rolf Bjarne Kvinge  <RKvinge@novell.com>
4044         * XplatUIX11.cs: Caption height for MDI children is 19, not 26.
4045         * XplatUIWin32.cs: We need to recalculate NC size after changing 
4046         window style to toolwindow (otherwise the client rectangle will be
4047         3 pixels to small for some reason).
4048         * MdiWindowManager.cs: Revert NC size calculations to match how
4049         they are calculated only based on window styles (to match
4050         Win32AdjustWindowRectEx, since otherwise when setting size or 
4051         location, Control will call Win32AdjustWindowRectEx to update client 
4052         size, which would provoke a paint, then we'd get a NCCALCSIZE and 
4053         calculate a different value of client size causing another paint 
4054         (and flickering))
4055         * InternalWindowManager.cs: When moving or resizing a window only
4056         update size or location if they actually changed.
4057         * ThemeWin32Classic.cs: ManagedWindowsBorderWidth is now 4 instead of 3
4058         (seems to match Windows behaviour better). Cleaned up 
4059         ManagedWindowDecorations to draw what's needed and nothing else
4060         (was drawing borders and lines where they shouldn't be)
4061         * Hwnd.cs: GetWindowRectangle now knows about MDI border sizes
4062         (style = 0xFFFF) and takes into account caption height when 
4063         calculating window rectangle.   
4065 2007-01-16  Everaldo Canuto  <everaldo@simios.org>
4067         * ToolBar.cs: Internal ToolBarButtonInfo class added, Because same button 
4068         can be added to toolbar multiple times, we need to maintain a list of 
4069         button information for each positions.
4071 2007-01-16  Everaldo Canuto  <everaldo@simios.org>
4073         * ToolBar.cs: Some small stetic changes.
4075 2007-01-16  Jackson Harper  <jackson@ximian.com>
4077         * TextBoxBase.cs: Use the new SuspendRecalc/ResumeRecalc methods
4078         that allow us to have nested recalc = false blocks.
4079         - Add paste support for images in the RichTextBox
4080         * RichTextBox.cs: flush the text after the color is changed, so
4081         the change takes effect.
4082         - Use SuspendRecalc
4083         - Some extra debugging info
4084         * TextControl.cs: Tags no longer track their length, it is just
4085         computed from the next tags length, this makes things a little
4086         simpler and reduces places that we have to track length changes.
4087         - Refactored the linetag class a little so we could make it
4088         a base class for different kinds of tags
4089         - Created a image tag, a tag that can have a single image inserted
4090         into it
4091         - Replace the norecalc flag with a Suspend/Resume Recalc pair, so
4092         that we can call suspend multiple times.
4093         - Add some debugging methods
4095 2007-01-16  Rolf Bjarne Kvinge  <RKvinge@novell.com>
4097         * MdiClient.cs: Add ActivatePreviousChild for 
4098         mdi child window navigation.
4099         * Form.cs: Use MdiClient.ActivateNextChild/
4100         ActivatePreviousChild instead of Form.SelectNextControl
4101         to select the next/previous child since 
4102         SelectNextControl doesn't do it in the same order
4103         as mdi children should do it.
4105 2007-01-16  Chris Toshok  <toshok@ximian.com>
4107         * Control.cs: remove container_selected field.
4109 2007-01-16  Rolf Bjarne Kvinge  <RKvinge@novell.com>
4111         * MdiClient.cs: Update main form's ActiveChild when
4112         updating keyboard focus for the mdi child.
4114 2007-01-16  Jonathan Pobst  <jpobst@novell.com>
4116         * Control.cs: PreferredSize fix.
4118         * Form.cs: Add several 2.0 events, properties, and methods.
4120 2007-01-16  Gert Driesen  <drieseng@users.sourceforge.net>
4122         * Form.cs: Provide meaningful message when MdiParent is assigned a
4123         Form that is not an MdiContainer.
4125 2007-01-16  Rolf Bjarne Kvinge  <RKvinge@novell.com>
4127         * MdiClient.cs: Update main form's ActiveChild when
4128         activating a mdi child.
4130 2007-01-16  Rolf Bjarne Kvinge  <RKvinge@novell.com>
4132         * MdiWindowManager.cs: Fix NRE when merging menus and main form
4133         doesn't have a menu.
4135         * Form.cs: Request NCRecalc after creating a mdi child window.
4136         Implement mdi key handling (Ctrl+F4, Ctrl+Shift+F4, Ctrl+Tab, 
4137         Ctrl+Shift+Tab, Ctrl+F6 and Ctrl+Shift+F6).
4138         
4139         * MdiClient.cs: Add new method SendFocusToActiveChild that either
4140         sends keyboard focus to the active child, or to the MdiClient
4141         if there are no child forms.
4142         
4143 2007-01-15  Chris Toshok  <toshok@ximian.com>
4145         * ListView.cs: drop the *Internal overrides, just do our work in
4146         ItemControl's WndProc instead.
4148         * UpDownBase.cs: a few large changes.  Fix up the Selectable state
4149         of the various controls, and forward the events properly (in the
4150         same manner as MS) from the textbox to the UpDown.  Also the
4151         ActiveControl of the UpDownBase gets set properly now.  Finally,
4152         we don't call UpdateEditText from the ctor.  Fixes bug #79957.
4154         * NumericUpDown.cs: set Text in the ctor.
4156         * DomainUpDown.cs: call UpdateEditText in the ctor.
4157         
4158         * TextBox.cs: on ms.net, WM_LBUTTONDOWN sets focus on the textbox,
4159         so even a Selectable = false textbox can be focused if you click
4160         in it.  Go figure.
4162         * Control.cs: remove On{Got,Lost}FocusInternal.  Subclasses can
4163         just add their handling in their respective WndProc's.  Also add
4164         an explicit FocusInternal method that doesn't consult CanFocus
4165         before calling Select(this).
4167         * TextBoxBase.cs: deal with removal of the FocusInternal calls -
4168         do our work in WndProc instead.
4170         * TabControl.cs: same.
4172         * ComboBox.cs: same.
4174 2007-01-15  Everaldo Canuto  <everaldo@simios.org>
4176         * Menu.cs: implement MergeItems and Replace for MenuMerge method.
4177         Fixes #80006.
4179 2007-01-15 Carlos Alberto Cortez <calberto.cortez@gmail.com>
4181         * ListViewItem.cs:
4182         * ThemeWin32Classic.cs: Don't draw the item text outside
4183         item bounds in Details view, as well as use trimming.
4184         Fixes bug #80376.
4186 2007-01-15  Jonathan Pobst  <jpobst@novell.com>
4188         * Form.cs: Implement Form.ShowIcon.
4189         
4190         * XplatUIWin32.cs: Allow the SetIcon win32 call to set the icon to
4191         null, which when combined with the DlgModalFrame window style removes
4192         the icon from the title bar.
4194 2007-01-15  Jonathan Pobst  <jpobst@novell.com>
4196         * Control.cs: Call OnMouseClick after OnClick. (2.0)
4198 2007-01-15  Everaldo Canuto  <everaldo@simios.org>
4200         * MdiWindowManager.cs: In CreateMaximizedMenu fix a position of icon
4201         menu when mdi child windows theres a menu, uses insert to get icon
4202         at first position. Partially fix #80006.
4204 2007-01-15  Jonathan Pobst  <jpobst@novell.com>
4206         * Clipboard.cs: Implement 2.0 methods.
4208 2007-01-15  Everaldo Canuto  <everaldo@simios.org>
4210         * Menu.cs: Implement Insert method of MenuItemCollection class
4211         to fix MenuMerge.
4213 2007-01-14  Carlos Alberto Cortez <calberto.cortez@gmail.com>
4215         * ListView.cs: Implement 2.0 FindItemWithText method.
4217 2007-01-11  Everaldo Canuto  <everaldo@simios.org>
4219         * Form.cs: When process WM_NCCALCSIZE message use ClienSize.Width
4220         to calculate menu bar size. Fixes #80290.
4222 2007-01-11  Everaldo Canuto  <everaldo@simios.org>
4224         * ThemeWin32Classic.cs: Fix position of menuitem check mark.
4226 2007-01-11  Chris Toshok  <toshok@ximian.com>
4228         * XplatUIX11.cs: don't send duplicate WM_ACTIVATE messages to the
4229         initial form.
4231 2007-01-11  Chris Toshok  <toshok@ximian.com>
4233         * LinkLabel.cs: make sure to call base.Select in our Select method
4234         if it turns out we're going to be selected (i.e. if we have a link
4235         that is going to receive focus).  That way our container's
4236         ActiveControl is updated properly.
4238 2007-01-11  Chris Toshok  <toshok@ximian.com>
4240         * LinkLabel.cs: turns out that LinkLabels are only Selectable if
4241         they have 1 or more links.  this fixes the crash gert reported.
4243 2007-01-11  Andreia Gaita  <avidigal@novell.com>
4245         * ContainerControl.cs: Remove ContainerSelected flag, not needed
4246         anymore.
4248         * Control.cs (Controls.Add): Check if control to be added to the collection
4249         is a top level control, and throw an ArgumentException if it is.
4250         Remove ContainerSelectedFlag, not needed anymore.
4252         * XplaUIWin32.cs (SetTopMost): Add flag SWP_NOACTIVATE so that setting the
4253         top most control doesn't activate the form. This fixes a problem in the
4254         MessageBox, where the default button wouldn't get focus because the form
4255         was activated before being Loaded - when the Owner is set, SetTopMost is
4256         called, and it would activate it.
4258 2007-01-11  Jonathan Pobst  <jpobst@novell.com>
4260         * Button.cs: When clicked and setting the parent form's DialogResult,
4261         use FindForm instead of Parent, since parent could be a container
4262         control and not the Form.  Fixes bug #80495.
4264 2007-01-10  Chris Toshok  <toshok@ximian.com>
4266         * Form.cs: move the call to SendControlFocus into the same
4267         is_loaded check.
4269 2007-01-10  Chris Toshok  <toshok@ximian.com>
4271         * UpDownBase.cs (.ctor): remove the ActiveControl assignment here.
4272         It breaks in the face of the new ActiveControl stuff, and should
4273         be unnecessary.
4275         * Form.cs (WndProc): in the WM_ACTIVATE case, we need to set the
4276         activecontrol's focus if it's not already set, after we set
4277         ActiveControl, but before we call OnActivated.  Re-fixes #79667
4278         after the previous focus/active control fixes regressed it.
4280         * Control.cs: reindent some code.
4281         
4282 2007-01-10  Chris Toshok  <toshok@ximian.com>
4284         * Splitter.cs: clearing some outstanding changes from my tree.
4285         Replace all accesses (not writes) to the internal dock_style field
4286         with the Dock property.
4288 2007-01-10  Chris Toshok  <toshok@ximian.com>
4290         * Control.cs: make FireEnter, FireLeave, FireValidating, and
4291         FireValidated virtual.
4293         * Form.cs: override and don't chain up calls to FireEnter and
4294         FireLeave.
4296 2007-01-10  Carlos Alberto Cortez <calberto.cortez@gmail.com>
4298         * ListView.cs: Add more text padding space when using
4299         auto resize for columns (the previous value didn't work fine).
4301         * ThemeWin32Classic.cs: Update text position inside columns,
4302         to match the appeareance of .Net.
4304         * ColumnHeader.cs: When using auto resize, only the Width should
4305         depend on the sub items, not the Height. Also, set width after
4306         auto resizing (the value of Width should never remain as -1 or -2).
4308 2007-01-10  Chris Toshok  <toshok@ximian.com>
4310         * Application.cs: fix compilation errors when debug is enabled.
4312 2007-01-10  Chris Toshok  <toshok@ximian.com>
4314         * ContainerControl.cs (set_ActiveControl): rework this a bit (and
4315         add some nice ascii art pictures and explanation of the process).
4316         (GetMostDeeplyNestedActiveControl): new utility function we need
4317         because our ActiveControl can refer to a child container with its
4318         own ActiveControl.
4320         * Form.cs (OnActivated): remove the call to SelectActiveControl
4321         from here, since you can override this method and not chain up,
4322         and winforms still sets the active control.
4323         (OnCreateControl): also remove the unnecessary SelectActiveControl
4324         call from here.
4325         (WndProc): it's actually called from the WM_ACTIVATE block, just
4326         before calling OnActivated.
4328         * Control.cs (Select (Control)): move the call to XplatUI.SetFocus
4329         inside the else.  the ActiveControl setter will end up setting
4330         focus on @control.  This keeps us from setting it again (and
4331         generating an extra LostFocus/GotFocus pair).
4332         (Select (bool, bool)): reindent.
4334 2007-01-10  Jonathan Pobst  <jpobst@novell.com>
4336         * FlowLayoutPanel.cs, MenuStrip.cs, SplitContainer.cs, SplitterPanel.cs,
4337         StatusStrip.cs, TableLayoutPanel.cs, TableLayoutStyleCollection.cs,
4338         ToolStrip.cs, ToolStripComboBox.cs, ToolStripContainer.cs,
4339         ToolStripContentPanel.cs, ToolStripControlHost.cs, ToolStripDropDown.cs,
4340         ToolStripDropDownButton.cs, ToolStripDropDownItem.cs, ToolStripDropDownMenu.cs,
4341         ToolStripItem.cs, ToolStripMenuItem.cs, ToolStripPanel.cs, ToolStripPanelRow.cs,
4342         ToolStripSeparator.cs, ToolStripSplitButton.cs, ToolStripStatusLabel.cs
4343         ToolStripTextBox.cs: Another wave of corcompare work.
4345 2007-01-09  Carlos Alberto Cortez <calberto.cortez@gmail.com>
4347         * ColumnHeader.cs: Implement 2.0 AutoResize method using
4348         the Width property.
4350         * ListView.cs: Implement 2.0 AutoResizeColumn and AutoResizeColumns
4351         methods by callling Column.AutoResize method on columns.
4353 2007-01-09  Jonathan Pobst  <monkey@jpobst.com>
4355         * Control.cs: Provide proper implementations of PreferredSize
4356         and GetPreferredSize (2.0).
4358 2007-01-09  Jonathan Pobst  <monkey@jpobst.com>
4360         * Form.cs: Remove one character (!) to make my previous OnClosing
4361         stuff work for modal windows like MessageBox.
4363 2007-01-09  Carlos Alberto Cortez <calberto.cortez@gmail.com>
4365         * ListView.cs:
4366         * ThemeWin32Classic.cs: Use ListView.GetReorderedColumn instead of
4367         ListView.Columns to get the last displayed column. Fixes #80452.
4369 2007-01-09  Everaldo Canuto  <everaldo@simios.org>
4371         * Label.cs, LinkLabel.cs: Source code identation fixes.
4373 2007-01-08  Everaldo Canuto  <everaldo@simios.org>
4375         * ToolBarButton.cs: Remove InvalidateBorder and use Invalidate instead,
4376         we dont need to invalidate only borders because when we invalidate four
4377         border lines the invalidate's generates a complete redraw of button, 
4378         because it now invalidate a complete rect some other redraws operations
4379         are fixed. Fixes #80196.
4380         
4381         * Theme.cs, ThemeNice.cs, ThemeClearLooks.cs, ThemeWin32Classic.cs:
4382         Remove ToolBarInvalidateEntireButton as it is not used.
4384 2007-01-08  Jonathan Pobst  <monkey@jpobst.com>
4385         
4386         * Form.cs: Make sure that both OnClosing and OnFormClosing are
4387         called for 2.0 profile.
4388         * CloseReason.cs: Make class internal for 1.1.
4390 2007-01-08  Jonathan Pobst  <monkey@jpobst.com>
4392         * ToolStripManager.cs: Implement FindToolStrip functionality.
4393         * ToolStrip.cs: Register and unregister with ToolStripManager.
4395 2007-01-07  Jonathan Pobst  <monkey@jpobst.com>
4397         * Control.cs: This was messy.  2.0 moves much of ControlCollection
4398         to ArrangedElementCollection.  Implemented this with as few #if's as 
4399         possible (which is still too many).
4401 2007-01-07  Jonathan Pobst  <monkey@jpobst.com>
4403         * Control.cs: Implement SizeFromClientSize() [2.0].
4405 2007-01-07  Everaldo Canuto  <everaldo@simios.org>
4407         * Hwnd.cs: On GetClientRectangle add a new parameter border_static,
4408         use Theme.BorderSize to calculate area instead of static value 1, 
4409         by the way use new BorderStaticSize instead     Border3DSize when 
4410         border_static is true. Fixes #79537.
4411         
4412         * XplatUIOSX.cs: Fix call to GetClientRectangle. 
4413         
4414         * ThemeWin32Classic.cs: On CPDrawBorder3D dont draw inner border when
4415         it is not needed.
4417 2007-01-06  Everaldo Canuto  <everaldo@simios.org>
4419         * Hwnd.cs: Gives more code legibility to GetWindowRectangle.
4421 2007-01-06  Everaldo Canuto  <everaldo@simios.org>
4423         * Label.cs: Override CreateParams to use WS_EX_STATICEDGE instead of
4424         WS_EX_CLIENTEDGE in ExStyles when BorderStyle is Fixed3D, it is
4425         
4426         * Hwnd.cs: 
4427         - border_static field added, it will used to define when a control 
4428         theres 3D border but it must be static (thin).
4429         - In GetWindowRectangle use Theme.BorderSize to calculate area 
4430         instead of static value 1, by the way use new BorderStaticSize instead
4431         Border3DSize when border_static is true.
4433         * XplatUIX11.cs, XplatUIOSX.cs: 
4434         - When WS_EX_STATICEDGE ExStyle is set define border_static as true.
4435         
4436         * Theme.cs: BorderStaticSize field added.
4438 2007-01-05  Everaldo Canuto  <everaldo@simios.org>
4440         * XplatUIX11.cs: Removed unused hwnd var in SetBorderStyle.
4442 2007-01-05  Everaldo Canuto  <everaldo@simios.org>
4444         * Control.cs: Under InternalBorderStyle call RecreateHangle to 
4445         mimic same behavior than win32 that set border only in CreateParams,
4446         it fix problems under CreateParams overrides. Fix #79442 and partial
4447         fix #79537.
4448         
4449         * XplatUIX11.cs: Dont set hwnd.border_style in SetBorderStyle instead
4450         of thi control you must call recreate handle. 
4451         
4452         * XplatUIWin32.cs: Remove all SetBorderStyle code, for win32 we dont
4453         need to do anything as RecreateHangle will take care about borders.
4455 2007-01-05  Mike Kestner  <mkestner@novell.com>
4457         * ListView.cs: hack to eliminate Lost/Got focus notifications on
4458         cycles between the ItemControl and parent.  Fixes #80388.
4460 2007-01-05  Gert Driesen  <drieseng@users.sourceforge.net>
4462         * Control.cs: Lazy init layout engine. Do not directly use 
4463         layout_engine since LayoutEngine may be overridden (on 2.0 profile).
4465 2007-01-05  Chris Toshok  <toshok@ximian.com>
4467         * DataGrid.cs: don't forceably rebind columns in SetDataSource
4468         unless our list manager has changed (i.e. unless we have reason to
4469         believe our columns have changed).  Fixes #80422.
4470         
4471         also, disable the call do BindColumns in
4472         OnListManagerMetaDataChanged.  this breaks this test in 2.0 (in
4473         1.1 the event isn't raised in response to a column addition on a
4474         table.)
4476 2007-01-05  Jonathan Pobst  <monkey@jpobst.com>
4478         * Control.cs: Move LayoutEngine.Layout to the OnLayout method, so
4479         that inheritors can not call it if they choose.  Fixes bug #80456.
4481 2007-01-05  Andreia Gaita  <avidigal@novell.com>
4483         * XplatUIWin32.cs: Initialize MSG.refobject at 0 so it 
4484         doesn't blow up with a null exception on marshalling.
4485         
4486 2007-01-05  Jonathan Pobst  <monkey@jpobst.com>
4488         * Control.cs: Implement several 2.0 protected properties and methods.
4489         Ensure that all necessary events are being called when properties
4490         are set.
4492 2007-01-05  Mike Kestner  <mkestner@novell.com>
4494         * ListView.cs: implement PgUp/PgDn for Details view.  Also
4495         fixes First/LastVisibleIndex to use the item_control.ClientRect 
4496         instead of the parent control.  Fixes #80378.
4498 2006-01-05  Atsushi Enomoto  <atsushi@ximian.com>
4500         * PageSetupDialog.cs : cosmetic refactoring; use RegionInfo to
4501           determine whether to use yard-pound or not (bug #78399).
4503 2006-01-04  Alexander Olk  <alex.olk@googlemail.com>
4505         * FileDialog.cs: Sebastien fixed the libgdiplus png alpha
4506         problems. So it is time to bring back the old popupbutton colors.
4508 2006-01-04  Carlos Alberto Cortez <calberto.cortez@gmail.com>
4510         * ColumnHeader.cs:
4511         * ListView.cs: Implement 2.0 ColumnHeader.DisplayIndex
4512         property by using the internal information of the
4513         columns order in ListView.
4515 2007-01-04  Jonathan Pobst  <monkey@jpobst.com>
4517         * CommonDialog.cs, Cursor.cs, ErrorProvider.cs, HelpProvider.cs:
4518         Add 2.0 Tag properties.
4520         * LinkArea.cs: Add 2.0 ToString method.
4522 2007-01-03  Chris Toshok  <toshok@ximian.com>
4524         * DataGrid.cs: the Alt+0 handling was wrong, it should have been
4525         Ctrl+0.  Fixes bug #80367.  Also, don't eat the Delete keypress
4526         when we're editing, which fixes #80047.
4528 2007-01-03  Chris Toshok  <toshok@ximian.com>
4530         * Form.cs: apply patch contributed by Dominik Seichter.  fixes
4531         #80404.
4533 2007-01-03  Jonathan Pobst  <monkey@jpobst.com>
4535         * MenuStrip.cs, ToolStripMenuItem.cs: Add MdiWindowListItem
4536         property and implementation.
4538         * Form.cs, MdiClient.cs, MdiWindowManager.cs: Add needed hooks
4539         for MdiWindowListItem property.
4541         * ToolStripDropDown.cs: Don't consider hidden menu items while
4542         laying out the menu.
4544 2007-01-03  Andreia Gaita  <avidigal@novell.com>
4546         * SendKeys.cs: window handle is not needed in win32, so just
4547         get the active window for X after parsing keys and don't use
4548         it when building the message; it is passed by parameter to the 
4549         Xplat method and used there to build the message instead. Also,
4550         wait for events to be processed on SendWait, as opposed to Send,
4551         which doesn't wait :) Playing with threads and Send() completely 
4552         hangs on ms.net, only SendWait() works.
4553         
4554         XplatUIX11.cs
4555         X11Display.cs: Check for valid window handle.
4557 2007-01-03  Jackson Harper  <jackson@ximian.com>
4559         * TextControl.cs: Need to prevent wrap calculations when replacing
4560         text (this was there before i removed it accidently).
4561         - Don't update the cursor during the positioning, just set it to
4562         selection_start at the end of the operaion.
4564 2007-01-03  Rolf Bjarne Kvinge  <RKvinge@novell.com>
4566         * Control.cs:
4567         * NotifyIcon.cs: corcompare work, no more X's in 1.1 class status.
4568         
4569 2007-01-03  Rolf Bjarne Kvinge  <RKvinge@novell.com>
4571         * MonthCalendar.cs: Added Click and DoubleClick events again,
4572         but this time they only hide Control's Click and DoubleClick.
4573         
4574 2007-01-03  Gert Driesen  <drieseng@users.sourceforge.net>
4576         * Theme.cs: Re-enabled DefaultFont change. Use const to refer to
4577         System.Drawing assembly. Spaces to tabs. Removed extra tabs.
4579 2007-01-02  Jackson Harper  <jackson@ximian.com>
4581         * TextBoxBase.cs: We move the caret with the split now, so we
4582         don't need to explicitly move the caret after splitting.  This
4583         fixes the caret bumping down an extra line on Enter.
4585 2007-01-02  Miguel de Icaza  <miguel@novell.com>
4587         * ContainerControl.cs: Add AutoValidateChanged event (for PDN
4588         2.72). 
4590         * ScrollableControl.cs: Add Scroll event.
4592 2007-01-02  Mike Kestner  <mkestner@novell.com>
4594         * ListView.cs: one more try with help from georgegiolfan@yahoo.com 
4595         to fix all hdr height padding codepaths.  Fixes #80207.
4597 2007-01-02  Chris Toshok  <toshok@ximian.com>
4599         * StatusBar.cs (.ctor): remove the Anchor setting, as it's just
4600         setting it to the Control defaults anyway, and it being after the
4601         Dock set was screwing up layout.
4602         (set_Dock): don't short circuit out of setting base.Dock.  Also,
4603         no need to call UpdateStatusBar here, as it'll be re-layed out if
4604         it needs to be.
4606 2007-01-02  Mike Kestner  <mkestner@novell.com>
4608         * ListView.cs: patch from georgegiolfan@yahoo.com to add padding
4609         to header height for width == -1. Fixes the rest of #80207.
4611 2007-01-02  Mike Kestner  <mkestner@novell.com>
4613         * ListView.cs: rework the mouse event forwarding everaldo added
4614         to translate the coordinates to the parent control not
4615         raise the parent events until after we've done our work. Hover
4616         needs more work, in the case where HoverSelection is on, because
4617         the item control receives more than one MouseHover per Enter
4618         event, so we need to ensure only the "first" hover gets forwarded.
4619         Opening a minor bug for that.
4621 2007-01-02  Gert Driesen  <drieseng@users.sourceforge.net>
4623         * CheckedListBox.cs: Fixed SelectionMode to match MS.
4624         * ListControl.cs: Implemented AllowSelection property. Removed extra
4625         tabs.
4626         * ListBox.cs: Implemented AllowSelection property.
4628 2007-01-02  Everaldo Canuto  <everaldo@simios.org>
4630         * MenuItem.cs: In MdiWindowClickHandler uses sender instead of
4631         SelectedItem, it prevent for errors when you must disable item
4632         before perform click. Fixes #80409.
4634 2007-01-02  Everaldo Canuto  <everaldo@simios.org>
4636         * MenuAPI.cs: Prevent second level and beyond submenus to close
4637         until first level when move out side of popup.
4638         
4639 2007-01-02  Everaldo Canuto  <everaldo@simios.org>
4641         * MenuAPI.cs:
4642         - Down submenu positin in three pixels.
4643         - Closes sub menu when mouse leaves from menu. Fixes #80402.
4645 2007-01-02  Everaldo Canuto  <everaldo@simios.org>
4647         * ThemeWin32Classic.cs:
4648         - Fix popup menu size adding one pixel on the top.
4649         - Down menu item border from two to one to mimic Win32.
4650         - Some source identation fixes. 
4652 2007-01-01  Everaldo Canuto  <everaldo@simios.org>
4654         * ThemeWin32Classic.cs: Use float numbers to calculate size and
4655         position of menu arrows, it fix wrong arrow size.
4657 2007-01-01  Everaldo Canuto  <everaldo@simios.org>
4659         * ThemeWin32Classic.cs: Uses CPDrawBorder3D to draw menu borders
4660         instead of line, it simplify draw operation and fix it using 3D
4661         borders to mimic Win32.
4663 2007-01-01  Jonathan Pobst  <monkey@jpobst.com>
4665         * StatusStrip.cs: Add implementation of the sizing grip.
4667         * ToolStripRenderer.cs, ToolStripProfessionalRenderer.cs: Add
4668         StatusStrip rendering.
4670 2006-12-31  Chris Toshok  <toshok@ximian.com>
4672         * ToolBar.cs: don't assign to dock_style in the .ctor.  it doesn't
4673         override the layout style (anchor/dock) of the control.  assign to
4674         Dock instead.  Fixes bug #80416.
4676         * ToolStrip.cs: same.
4678 2006-12-31  Andreia Gaita  <avidigal@novell.com>
4680         * ContainerControl.cs: Use ContainerSelected flag to check if 
4681         a Container is directly selected, or if Select is called on a 
4682         non-container. If a container is directly selected, focus events 
4683         should not be raised.
4684         Apply #80411 patch to throw exception on set_ActiveControl if 
4685         control is the same as the current one.
4686         
4687         * Control.cs: Use ContainerSelected flag (see above).
4688         Add invalidation check to raise event but not invalidate if 
4689         dimensions are 0.       
4690         Apply #80411 patch.
4691         
4693 2006-12-31  Everaldo Canuto  <everaldo@simios.org>
4695         * MenuAPI.cs: After click, dont close popup menu when menu is
4696         ContextMenu. Fixes #80399.
4698 2006-12-30  Chris Toshok  <toshok@ximian.com>
4700         * ContainerControl.cs: make sure we throw the exception if the
4701         container control doesn't contain the control we're setting
4702         ActiveControl to.
4704 2006-12-30  Chris Toshok  <toshok@ximian.com>
4706         * Control.cs (SetTopLevel): fix the exception raised by
4707         SetTopLevel for child controls.
4708         (set_Anchor): call UpdateDistances when setting the anchor type.
4709         This fixes bug #80336.
4711 2006-12-29  Gert Driesen  <drieseng@users.sourceforge.net>
4713         * Theme.cs: For now, revert back to 8pt font.
4715 2006-12-29  Everaldo Canuto  <everaldo@simios.org>
4717         * MenuAPI.cs: Set popup as active when open a ContextMenu. 
4718         Fixes #80395.
4720 2006-12-29  Chris Toshok  <toshok@ximian.com>
4722         * Control.cs: reorder the code in OnResize to give the same event
4723         ordering as MS.
4725 2006-12-29  Rolf Bjarne Kvinge  <RKvinge@novell.com>
4727         * MdiClient.cs: Implemented MdiLayout for ArrangeIcons,
4728         TileHorizontally and TileVertically.
4729         
4730 2006-12-29  Alexander Olk  <alex.olk@googlemail.com>
4732         * ColorDialog.cs, FileDialog.cs, FolderBrowserDialog.cs,
4733         FontDialog.cs, Mime.cs, MimeIcon.cs, OpenFileDialog.cs,
4734         SaveFileDialog.cs, ThemeClearlooks.cs, ThemeNics.cs:
4735         Corrected copyright and email adress.
4737 2006-12-29  Gert Driesen  <drieseng@users.sourceforge.net>
4739         * TreeNode.cs: On 2.0 profile, throw InvalidOperationException instead
4740         of Exception in FullPath property if no TreeView is associated with
4741         the TreeNode.
4743 2006-12-29  Gert Driesen  <drieseng@users.sourceforge.net>
4745         * Theme.cs: Marked default_font as private, and initialize it in ctor
4746         with MS Sans Sarif 8.25 on 1.0 profile, and SystemFonts.DefaultFont
4747         on 2.0 profile.
4748         * ThemeGtk.cs: Removed default_font intialization.
4749         * ThemeWin32Classic.cs: Removed default_font initialization.
4751 2006-12-28  Chris Toshok  <toshok@ximian.com>
4753         * Control.cs: fix a couple of place where we were creating handles
4754         more aggressively than we should be.  Fixes ControlRefresh unit
4755         tests.
4757 2006-12-28  Chris Toshok  <toshok@ximian.com>
4759         * Control.cs: contrary to what the comment said, Control.Dock does
4760         not supercede Control.Anchor - the last one you assign to decides
4761         the layout behavior.  so we need to keep track of which was the
4762         last set.  Also, fix some of the affected property arguments in
4763         PerformLayout calls, and remove an redundant parent.PerformLayout
4764         call in OnResized.
4766         Add a VisibleInternal property, which returns is_visible.  We
4767         can/should get rid of all the usage of this field elsewhere.
4769 2006-12-28  Rolf Bjarne Kvinge  <RKvinge@novell.com>
4770         
4771         * Control.cs: DoubleBuffered property reflects the OptimizedDoubleBuffer
4772         control style, not DoubleBuffer. Added UseDoubleBuffering property
4773         that indicates whether doublebuffering is enabled and supported.
4774         (comment from and code based on Gert Driesen's patch in #80324).
4775         Fixes #80324.
4777 2006-12-28  Rolf Bjarne Kvinge  <RKvinge@novell.com>
4778         
4779         * Control.cs: Fixed a NRE.
4781 2006-12-28  Rolf Bjarne Kvinge  <RKvinge@novell.com>
4783         * TrackBar.cs: Fix SmallChange and LargeChange exceptions
4784         for 2.0.
4786 2006-12-28  Rolf Bjarne Kvinge  <RKvinge@novell.com>
4788         * Control.cs: Rewrote double buffering, now a seperate
4789         class handles all the buffering, no Graphics is disposed of
4790         until the painting is finished (earlier implementation 
4791         would crash if the control was resized in the OnPaint, 
4792         since it would cause the double buffer to be recreated
4793         and the old one disposed), a separate Graphics is 
4794         created for every paint (MS behaviour and anyways the state
4795         of the Graphics would have to be saved and restored otherwise)
4796         
4797         * XplatUIDriver.cs: 
4798         * XplatUIX11.cs:
4799         * XplatUI.cs: Added and implemented GetOffscreenGraphics 
4800         so that we can get the graphics for the back buffer without
4801         having to create a new one and remove the offscreen_dc parameter
4802         from CreateOffscreenDrawable and DestroyOffscreenDrawable.
4803         
4804 2006-12-27  Carlos Alberto Cortez <calberto.cortez@gmail.com>
4806         * ListView.cs: Add key-related 2.0 methods for CheckedItemCollection.
4807         Also make virtual all the key-related methods.
4809         * ListViewItem.cs: Make virtual the key related methods for
4810         ListViewSubItemCollection.
4812 2006-12-27  Carlos Alberto Cortez <calberto.cortez@gmail.com>
4814         * ListView.cs:
4815         * ListViewItem.cs:
4816         * ThemeWin32Classic.cs:
4817         * Theme.cs: Initial support for Tile view in ListView,
4818         as well as the implementation of the required bits for it (Item
4819         and Subitem).
4821 2006-12-27  Gert Driesen  <drieseng@users.sourceforge.net>
4823         * MonthCalendar.cs: On 2.0, throw ArgumentOutOfRangeException instead
4824         of ArgumentException in MaxSelectionCount, MaxDate and MinDate.
4825         Provide useful exception messages.
4827 2006-12-27  Rolf Bjarne Kvinge  <RKvinge@novell.com>
4829         * TrackBar.cs: Remove a warning.
4830         * MonthCalendar.cs: Moved back to using Capture to hide the calendar
4831         when used by DateTimePicker, fixes #80287. This also requires that 
4832         MonthCalendar implements it's own drawing for the yearly updown control,
4833         otherwise the Capture tracking would be too complicated. Removed the Click 
4834         and DoubleClick events (according to comments they were hiding the base class
4835         event to prevent them from beeing fired - MSDN only says MonthCalendar doesn't
4836         raise these events, not that they cannot be raised. It is possible to raise 
4837         them by calling OnClick and OnDoubleClick). Added two internal fields in 
4838         HitTestInfo in order to track give more tracking info needed by MonthCalendar.
4839         * ThemeWin32Classic.cs: Implement drawing of MonthCalendar's updown part.
4840         * DateTimePicker.cs: Removed handling of MonthCalendar's LostFocus
4841         event, no longer needed.
4842         
4843 2006-12-27  Gert Driesen  <drieseng@users.sourceforge.net>
4845         * ScrollableControl.cs: In AutoScrollMinSize, only set AutoScroll to
4846         true if new value differs from current value.
4848 2006-12-27  Gert Driesen  <drieseng@users.sourceforge.net>
4850         * Control.cs: ControlCollection.Count must be public. Fixed build of
4851         unit tests.
4853 2006-12-27  Gert Driesen  <drieseng@users.sourceforge.net>
4855         * ListView.cs: Redraw when FullRowSelect is changed. Fixes bug #80379.
4857 2006-12-27  Gert Driesen  <drieseng@users.sourceforge.net>
4859         * ComboBox.cs: Mergable=>MergableProperty. Fixes build.
4861 2006-12-26  Everaldo Canuto  <everaldo@simios.org>
4863         * Control.cs: Invalidates control including when Width and Height is 
4864         equal zero or is not visible, only Paint event must be care about 
4865         this. Fixes #79913.
4867 2006-12-26  Chris Toshok  <toshok@ximian.com>
4869         * CurrencyManager.cs, PropertyManager.cs, BindingManagerBase.cs:
4870         more corcompare work.
4872         * DataGridView.cs: fix compiler warning.
4874         * ColumnHeader.cs: some corcompare work, and also take the
4875         opportunity to make the internal fields private.
4877         * ListView.cs: fix the fallout from the above field change.
4879 2006-12-26  Jonathan Pobst  <monkey@jpobst.com>
4881         * ToolStripButton.cs, ToolStripComboBox.cs, ToolStripControlHost.cs,
4882         ToolStripItem.cs, ToolStripProgressBar.cs, ToolStripSplitButton.cs,
4883         ToolStripTextBox.cs: Fixes to events and corcompare.
4885 2006-12-26  Everaldo Canuto  <everaldo@simios.org>
4887         * ListView.cs: Call owner.OnMousexx event to propagate events from
4888         item to ListView. Fixes #80367.
4890 2006-12-26  Gert Driesen  <drieseng@users.sourceforge.net>
4892         * ComboBox.cs: On 2.0, DropDownWidth throws ArgumentOutOfRangeException
4893         if value is less than one. ItemHeight should not be set to a value
4894         less than 1, and throw ArgumentOutOfRangeException on 2.0 profile. 
4895         Removed extra tabs.
4897 2006-12-26  Jonathan Pobst  <monkey@jpobst.com>
4899         * ToolStripMenuItem.cs: Add ShortcutDisplayString for Moma.
4900         * ToolStripStatusLabel.cs: Add Spring for Moma.
4902 2006-12-26  Gert Driesen  <drieseng@users.sourceforge.net>
4904         * DataGridView.cs: Fixed several NullReferenceException in On* methods.
4905         Fixed code formatting. Removed debug code.
4906         * DataGridViewTextBoxEditingControl.cs: Removed debug code.
4908 2006-12-26  Gert Driesen  <drieseng@users.sourceforge.net>
4910         * DataGridView.cs: Fixed GridColor, DefaultSize, DefaultCellStyle,
4911         RowHeadersDefaultStyle, RowHeadersWidth to match MS. Throw
4912         ArgumentOutOfRangeException if ColumnCount is negative. In 
4913         ColumnHeadersHeight, throw ArgumentOutOfRangeException if height is
4914         less than 4 or higher than 32768.
4915         * DataGridViewCellStyle.cs: Fixed default value for NullValue.
4916         Fixed FormatProvider to return CurrentCulture unless explicitly set.
4917         Fixed IsFormatProviderDefault to return true if FormatProvider has
4918         not been explicitly set.
4920 2006-12-25  Chris Toshok  <toshok@ximian.com>
4922         * Application.cs: add a couple of 2.0 events.
4924 2006-12-25  Chris Toshok  <toshok@ximian.com>
4926         * Control.cs: fix compiler warning.
4928         * AxHost.cs: corcompare fixes.
4930         * ApplicationContext.cs: corcompare fixes.
4932 2006-12-25  Chris Toshok  <toshok@ximian.com>
4934         * Control.cs: only update dist_right/dist_bottom if the
4935         width/height is > 0.  this fixes anchored controls being resized
4936         smaller until they disappear and then resized larger again.
4938 2006-12-25  Chris Toshok  <toshok@ximian.com>
4940         * Control.cs: a couple of changes.  Remove dist_left and dist_top,
4941         since they're nothing more than X/Left and Y/Top, respectively.
4943         Also, move back to a per-control Bitmap/Graphics for
4944         DeviceContext, since using the static Hwnd.bmp/bmp_g is bad in the
4945         MT case.  Go with a tiny bitmap though, 1x1, instead of Width x
4946         Height.
4948 2006-12-25  Miguel de Icaza  <miguel@novell.com>
4950         * MessageBox.cs: Implemented overload that takes a new "bool
4951         displayHelpButton" by adding a new internal field "show_help".
4952         When clicked this will raise the HelpRequested on the owner or the
4953         main form. 
4955         From: 007dbe3ff0ca4729a4f5fcd1d8ab2a2e.txt
4956         From: c935e12b95fe4dc1ae670e7f4dc5fd68.txt
4958         * ListView.cs: Add support ColumnWidthChanged and
4959         ColumnWidthChanging. 
4961         Add support for ColumnReordered event.
4962         (ReorderColumn): Add NET_2_0 specific support for cancelling the
4963         reorder.
4965         Very nice codebase!
4967         * TextBoxBase.cs (GetLineFromCharIndex): Implement this method.
4969         This is used by report f4ae0a88a0a244558aaadf017c9b9efe.
4971 2006-12-24  Chris Toshok  <toshok@ximian.com>
4973         * GridTablesFactory.cs: 2.0 corcompare work.
4975         * ToolStripContainer.cs: add "override" to
4976         ContextMenuStripChanged, and remove the local event object.
4978         * ToolStripDropDown.cs: same with a couple properties.
4980         * ToolStripPanel.cs: same with AutoSizeChanged event.
4982         * TextBoxBase.cs: add "override" to AutoSizeChanged.
4984         * Form.cs: add the remaining 2.0 events, and do some corcompare
4985         attribute work.
4987         * DateTimePicker.cs: add "new" to padding.
4989         * ButtonBase.cs: use Control's use_compatible_text_rendering.
4991         * ToolStripContentPanel.cs: use base.AutoSizeChanged.
4993         * DataGridView.cs: PaddingChanged is overridden.
4995 2006-12-24  Chris Toshok  <toshok@ximian.com>
4997         * Control.cs: corecompare work here too.
4999         * DataGridViewElement.cs, DataGridView.cs,
5000         DataGridViewButtonCell.cs, DataGridViewRowCollection.cs,
5001         DataGridViewImageColumn.cs, DataGridViewComboBoxColumn.cs,
5002         DataGridViewImageCell.cs, DataGridViewCheckBoxCell.cs,
5003         DataGridViewHeaderCell.cs, DataGridViewCell.cs: more corcompare
5004         work.
5006 2006-12-24  Miguel de Icaza  <miguel@novell.com>
5008         * Control.cs: Switched the error message on the console for a
5009         todo.  A review of the code will have to cope with this anyways
5010         (since its a large feature, it is in our radar) and it was
5011         producing too much output when running PDN.
5013         * ToolStripComboBox.cs: Set the text when the SelectedIndex
5014         changes.  Applications depend on this (PDN 2.72)
5016 2006-12-23  Chris Toshok  <toshok@ximian.com>
5018         * TableLayoutSettings.cs: finish up the corcompare work for this
5019         class.
5021 2006-12-23  Chris Toshok  <toshok@ximian.com>
5023         * Control.cs: make SetImplicitBounds internal, do some futzing
5024         with LayoutEngine so that it's available in 1.1, and remove the
5025         entire duplicated code mess from PerformLayout.  Use
5026         System.Windows.Forms.Layout.DefaultLayout instead.
5028         * LayoutEngine.cs: make this class internal in 1.1, public in 2.0.
5030 2006-12-23  Jonathan Pobst  <monkey@jpobst.com>
5032         * Form.cs: Add MainMenuStrip property.
5034 2006-12-23  Jonathan Pobst  <monkey@jpobst.com>
5036         * Control.cs: Add ContextMenuStrip property and implementation.
5037         Fix ContextMenu implementation to show menu centered on control when
5038         activated using the keyboard instead of showing at screen (0,0).
5040         * ToolStripDropDown.cs: Fix needed overload of Show ().
5042 2006-12-23  Everaldo Canuto  <everaldo@simios.org>
5044         * Menu.cs: Name property added for 2.0 profile.
5045         
5046 2006-12-23  Everaldo Canuto  <everaldo@simios.org>
5048         * Menu.cs: Update information about FindMenuItem, method to be
5049         implemented soon.
5051 2006-12-23  Everaldo Canuto  <everaldo@simios.org>
5053         * MenuAPI.cs: When deselect items deselect also selected subitems.
5054         
5055 2006-12-23  Everaldo Canuto  <everaldo@simios.org>
5057         * MenuAPI.cs: When hides menu set Wnd to null, it prevents
5058         FindSubItemByCoord to found itens that is not active, also an
5059         cheking added to FindSubItemByCoord to search for items only 
5060         in visible popup windows. Fixes #80274.
5062 2006-12-22  Everaldo Canuto  <everaldo@simios.org>
5064         * UserControl.cs: Remove MonoTodo and use InternalBorderStyle,
5065         internal property, it be care about change ExStyle. 
5067 2006-12-22  Andreia Gaita  <avidigal@novell.com>
5069         * ContainerControl.cs: set activeControl for parent forms up the 
5070         tree when the new activecontrol is a container.
5071         When validating the active control, if it is a container, also
5072         raise up the validation for it's active control. Fixes #80280
5073         
5074         * Control.cs: Add internal property flag and check to prevent
5075         Focus events from getting raised when Select() is called for
5076         a ContainerControl. There are still too many focus events being
5077         raised at the moment though.
5078         Cleaned up the code a bit.
5080 2006-12-22  Rolf Bjarne Kvinge  <RKvinge@novell.com>
5082         * Control.cs: Added all missing 2.0 events.and
5083         fixed a couple of corcompare issues.
5084         * TrackBar.cs: Implemented missing 2.0 bits.
5085         * MonthCalendar.cs, 
5086         * DateTimePicker.cs, 
5087         * MdiClient.cs: Fixed some corcompare issues.
5089 2006-12-21  Jonathan Pobst  <monkey@jpobst.com>
5091         * ContextMenuStrip.cs, FlowLayoutPanel.cs, SplitContainer.cs,
5092         SplitterPanel.cs: corecompare work.
5094 2006-12-21  Jonathan Pobst  <monkey@jpobst.com>
5096         * ToolStripContainer.cs, ToolStripDropDown.cs, StatusStrip.cs:
5097         Clean up warnings for BackgroundImageChanged and PaddingChanged
5098         events now that they are implemented in Control.cs.
5100 2006-12-21  Jonathan Pobst  <monkey@jpobst.com>
5102         * Control.cs: Make sure layout_engine isn't null before using it (2.0).
5103         
5104         * TableLayoutControlCollection.cs, TableLayoutPanel.cs, TableLayoutCellPosition.cs,
5105         TableLayoutSettings.cs, TableLayoutStyleCollection.cs: Initial implementation
5106         of TableLayoutPanel and supporting cast.
5108 2006-12-21  Rolf Bjarne Kvinge  <RKvinge@novell.com>
5110         * XplatUIWin32.cs: 
5111         - GrabWindow now confines the mouse pointer to the confine window.
5112         - Added Win32ClipCursor and Win32GetClipCursor.
5114         * Control.cs: 
5115         - Added CaptureWithConfine to be able to capture and confine 
5116         mouse pointer.
5117         
5118         * InternalWindowManager.cs: 
5119         - Call CaptureWithConfine instead of Capture if we're an
5120         MdiChild (fixes #79982).
5122 2006-12-21  Chris Toshok  <toshok@ximian.com>
5124         * DataGrid.cs: guard against the initial state of selection, where
5125         selection_start == -1.  make sure we only select from index >= 0.
5126         Fixes bug #80291.
5128 2006-12-21  Chris Toshok  <toshok@ximian.com>
5130         * Control.cs: we don't need to be so draconian with
5131         UpdateDistances, and we thusly don't need to call it before
5132         calling PerformLayout in ResumeLayout.  Fixes bug #80289.
5134 2006-12-21  Daniel Nauck  <dna@mono-project.de>
5136         * ComboBox.cs,
5137         TextBox.cs: Implemented AutoComplete properties.
5139 2006-12-20  Chris Toshok  <toshok@ximian.com>
5141         * DataGridView*.cs: some corecompare work.
5143 2006-12-20  Jackson Harper  <jackson@ximian.com>
5145         * XplatUIX11.cs: We need to hide the caret when deleting it,
5146         otherwise you get carets left lying around everywhere.
5147         * TextBoxBase.cs: Kill then redraw the caret when scrolling.  This
5148         prevents getting some weird half drawn caret tracers when
5149         scrolling.
5150         * TextControl.cs: Attempt to reduce the number of times we need to
5151         recreate the caret.
5153 2006-12-20  Gert Driesen  <drieseng@users.sourceforge.net>
5155         * MonthCalendar.cs: Fixed previous month button. Removed extra tabs.
5157 2006-12-19  Rolf Bjarne Kvinge  <RKvinge@novell.com>
5159         * DateTimePicker.cs:
5160         - Implemented missing 2.0 bits.
5161         - Changed some default values to match MS.
5162         
5163 2006-12-20  Jackson Harper  <jackson@ximian.com>
5165         * TextBoxBase.cs: When changing the font across the document we
5166         can't recalculate after changing each line, since that will cahnge
5167         the line count.
5168         - PreferredHeight is a little different than i thought.
5169         - When backspacing, move the caret before we do the actual char
5170         delete, because when that delete crosses a wrap boundary the
5171         positional information will change.
5173 2006-12-19  Rolf Bjarne Kvinge  <RKvinge@novell.com>
5175         * Control.cs: Added some missing 2.0 bits: 
5176         BackgroundImageLayout, BackgroundImageLayoutChanged, 
5177         OnPaddingChanged, MouseClick, MouseDoubleClick, PaddingChanged and 
5178         add IBindableComponent and IDropTarget implementation.
5179         
5180         * MonthCalendar.cs: 
5181         - Added all missing 2.0 features:
5182         BackgroundImageLayout, RightToLeftLayout, 
5183         OnHandleDestroyed, RightToLeftLayoutChanged, 
5184         BackgroundImageLayoutChanged, MouseClick, MouseDoubleClick,
5185         PaddingChanged.
5186         - Rewrote all the BoldDate code, it was completely broken.
5187         - Fixed all the tests (the tests can now be re-enabled, the
5188         problems were not with the tests, but with the control, it was
5189         mostly broken).
5190         
5191         * DateTimePicker.cs: Changed the location where the 
5192         MonthCalendar is shown.
5193         
5194 2006-12-19  Chris Toshok  <toshok@ximian.com>
5196         * DataGridView.cs: add IDropTarget implementation.
5198         * ToolStripPanel.cs: add IDropTarget implementation.
5200 2006-12-19  Jackson Harper  <jackson@ximian.com>
5202         * TextControl.cs: soft now means something different than what it
5203         used to mean, we want to move the caret regardless of whether or
5204         not this break was soft (would we really have wanted the caret
5205         to not move with the break in the old context?)
5206         * TreeView.cs: Make sure we factor in the vert scrollbar when
5207         calculating the horizontal scrollbar's maximum.
5209 2006-12-19  Andreia Gaita  <avidigal@novell.org>
5211         * SendKeys.cs: Fix Send() behaviour, clear keys after sending,
5212         check for keywords in alternate casing, close bug #80049.
5214 2006-12-19  Chris Toshok  <toshok@ximian.com>
5216         * ToolStripItem.cs: add the implementation of the 4 IDropTarget
5217         methods (which all do nothing).
5219         * IDropTarget.cs: add the 4 missing methods.
5221 2006-12-19  Chris Toshok  <toshok@ximian.com>
5223         * TableLayoutRowStyleCollection.cs: corcompare work.
5224         
5225         * TableLayoutSettings.cs: same.
5227         * TableLayoutStyle.cs: same.
5229         * TableLayoutColumnStyleCollection.cs: same.
5231 2006-12-19  Jonathan Pobst  <monkey@jpobst.com>
5233         * ColumnStyle.cs, RowStyle.cs, TableLayoutStyle.cs: Plumbing for
5234         TableLayoutPanel I've had in my local tree for way too long.
5236 2006-12-19  Miguel de Icaza  <miguel@novell.com>
5238         * TableLayoutSettings.cs: Finish the public API (still needs all
5239         the logic to update on changes). 
5241         * TableLayoutPanelCellPosition.cs: new file.
5242         
5243         * TableLayoutRowStyleCollection.cs,
5244         TableLayoutColumnStyleCollection, TableLayoutStyle.cs,
5245         TableLayoutSettings.cs: Track the final 2.0 table api.
5247 2006-12-19  Carlos Alberto Cortez <calberto.cortez@gmail.com>
5249         * ColumnHeader.cs: Add Tag, Name, ImageKey, ImageIndex,
5250         and Image List 2.0 members for ColummnHeader.
5251         * ListView.cs: Add key-related 2.0 methods for
5252         ColumnHeaderCollection.
5254 2006-12-19  Gert Driesen  <drieseng@users.sourceforge.net>
5256         * ListViewItem.cs: Changed AddRange overloads to match MS: throw
5257         ArgumentNullException if items argument is null. Ignore null item in
5258         arrays. Removed extra tabs.
5260 2006-12-19  Gert Driesen  <drieseng@users.sourceforge.net>
5262         * MonthCalendar.cs: Fixed InvalidCastException.
5264 2006-12-19  Jackson Harper  <jackson@ximian.com>
5266         * TextControl.cs: Don't increment the position here.
5267         - When calculating char positions only add in the line break size
5268         for hard line breaks.
5270 2006-12-19  Andreia Gaita  <avidigal@novell.org>
5272         * SendKeys.cs: Changed some things to match ms.net behaviour
5273         when parsing shifted capital letters.
5274         
5275         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32, XplatUIOSX: 
5276         Add window handle as parameter to SendInput. X11 needs the 
5277         window handle, and the handle being passed      to it in the keys 
5278         queue is the active control handle (which windows needs), not 
5279         the window handle.
5280         
5281         XplatUIX11.cs, XplaUIX11-new.cs, X11Display: Implement SendInput 
5282         to support SendKeys on X.       
5283         
5284         * X11Keyboard: Implement helper method to lookup a linux keycode
5285         given the virtual keycode. Added table of keycode-2-virtualkey
5286         values to support this.
5288 2006-12-19  Carlos Alberto Cortez <calberto.cortez@gmail.com>
5290         * ListView.cs: Add support for SelectedIndexCollection
5291         and SelectedItemCollection 2.0 methods. Implement support
5292         for ImageKey too.
5293         * ListViewItem.cs: Add support for ListViewSubItemCollection
5294         2.0 methods. Also, fix an incorrect behavior of AddRange method
5295         (it shouldn't call Clear).
5296         * ThemeWin32Classic.cs: Support for ListView.ImageKey 2.0 property.
5298 2006-12-19  Jackson Harper  <jackson@ximian.com>
5300         * RichTextBox.cs: 
5301         * TextBoxBase.cs: New args for FormatText
5302         * TextControl.cs: Rewrote the main drawing method, this version
5303         feels a little easier to understand and debug to me.  Hopefully it
5304         does to others also
5305         - Fix FormatText to OR in the new formating values.  Added
5306         FormatSpecified param, basically this works in the same way as
5307         BoundsSpecified in Control.
5308         - Set the caret properties when the caret is positioned.
5309         - When wrapping text make sure that we calculate the width of the
5310         last character
5311         - when calculating alignments we might have wrapped down to the
5312         next line, so don't search for an individual tag, search for the
5313         end of the line
5314         - We need to invalidate the selection area when we replace the
5315         selection.
5316         
5317 2006-12-19  Daniel Nauck  <dna@mono-project.de>
5319         * Application.cs: add Restart () 2.0 support
5321 2006-12-18  Everaldo Canuto  <everaldo@simios.org>
5323         * MenuItem.cs: Invalidate menu item rectangle after change Enable
5324         property. Fixes #80268.
5325         
5326 2006-12-18  Everaldo Canuto  <everaldo@simios.org>
5328         * MenuAPI.cs: Dont trigger select event when closes top menu
5329         item. Fixes #80270.
5331 2006-12-18  Everaldo Canuto  <everaldo@simios.org>
5333         * MenuAPI.cs: When you click on menuitem only trigger onselect
5334         event for top menu itens. Fixes #80271.
5335         
5336 2006-12-18  Rolf Bjarne Kvinge  <RKvinge@novell.com>
5338         * MdiWindowManager.cs: Make IconicBounds depend on
5339         the bottom of MdiClient, not the top (fixes #80267)
5340         
5341 2006-12-18  Rolf Bjarne Kvinge  <RKvinge@novell.com>
5343         * MdiClient.cs: Added missing 2.0 attribute
5345 2006-12-18  Carlos Alberto Cortez <calberto.cortez@gmail.com>
5347         * ListViewItem.cs: Add Name and Tag 2.0 properties, as well
5348         as IndexOfKey, ContainsKey, RemoveByKey and indexer 2.0.
5350 2006-12-18  Everaldo Canuto  <everaldo@simios.org>
5352         * MenuAPI.cs: Fix click when menuitem is not popup,
5353         this regression was caused by last commit (#80272).
5355 2006-12-17  Everaldo Canuto  <everaldo@simios.org>
5357         * MenuAPI.cs: When a non-toplevel menuitem is clicked dont
5358         fire click event or close menu. Fixes #80272.
5360 2006-12-17  Daniel Nauck  <dna@mono-project.de>
5362         * ListViewHitTestInfo.cs: add
5364 2006-12-17  Daniel Nauck  <dna@mono-project.de>
5366         * ButtonBase.cs: Added FlatButtonAppearance 2.0 support.
5367         * FlatButtonAppearance.cs: add
5368         * DockingAttribute.cs: add
5370 2006-12-17  Chris Toshok  <toshok@ximian.com>
5372         * DataGrid.cs: hook up MetaDataChanged event on the list manager,
5373         and rebind our columns when it does - this way, if you make
5374         changes to the DataTable (or set the Table attribute on a DataView
5375         after setting it as the DataGrid's DataSource, the changes are
5376         made visible.)  Fixes bug #80107.
5378 2006-12-17  Daniel Nauck  <dna@mono-project.de>
5380         * ListViewGroup.cs: add internal Location property for layouting.
5381         * Theme.cs: add abstract ListViewGroupHeight function.
5382         * ThemeWin32Classic.cs: implement ListViewGroupHeight function.
5384 2006-12-16  Andreia Gaita  <avidigal@novell.com>
5386         * TabControl.cs: Fixed checks for NET_2_0-specific exceptions.
5387         Added reset of selected index to 0 when adding first tab page.
5388         Fixes #80264
5389         
5390         * NumericUpDown.cs: Fix NET_2_0 check
5392 2006-12-16  Daniel Nauck  <dna@mono-project.de>
5394         * ListViewGroup.cs: fixed DefaultValueAttribute value
5396 2006-12-16  Daniel Nauck  <dna@mono-project.de>
5398         * AutoCompleteStringCollection.cs: add new AutoCompleteStringCollection 2.0 class
5400 2006-12-15  Miguel de Icaza  <miguel@novell.com>
5402         * Button.cs, ComboBox.cs, ScrollBar.cs, UserControl.cs,
5403         TextBoxBase.cs, ListView.cs, ContainerControl.cs,
5404         ScrollableControl.cs: Add a handful of methods that are
5405         overwritten in 2.0 
5407 2006-12-15  Chris Toshok  <toshok@ximian.com>
5409         * XplatUIWin32.cs: initial implementation of the Reversible
5410         drawing functions.  there are some problems.  DrawReversibleFrame
5411         doesn't seem to work at all for Dashed FrameStyle, and in the
5412         Thick case there are drawing errors at the corners (we probably
5413         need to bind Rectangle instead of doing moveto/lineto's.)
5415 2006-12-16  Andreia Gaita  <avidigal@novell.com>
5416         
5417         * SendKeys.cs: Implemented. SendKeys uses a new method in XPlatUI, SendInput, 
5418         to send blocks of key messages. Send accumulates keys to send with Flush, 
5419         while SendWait sends all keys immediately.
5420                 
5421         * XplaUI.cs, XplatUIDriver.cs, XplatUIOSX.cs, XplatUIWin32.cs, 
5422         XplatUIX11.cs,  XplatUIX11-new.cs:
5423         - Define SendInput and stubs for OSX and X11, implements Win32 with a call
5424         to Win32 SendInput.
5425         - Added INPUT support structures to XplatUIWin32 for Win32SendInput
5426         
5427         Tests:  It seems ms.net is hooking the keyboard to implement this, so doing unit
5428         testing for ms.net on this class is very tricky, as the tests run too fast 
5429         to allow the hook to release, essentially freezing the keyboard and the 
5430         test. So, barring a win32 miracle, they'll be commited in the ms-notworking     
5431         category :p
5433 2006-12-16  Daniel Nauck  <dna@mono-project.de>
5435         * Padding.cs: fixed serialization compability to MS ("_var" field names),
5436                         added missing attributes.
5438 2006-12-15  Daniel Nauck  <dna@mono-project.de>
5440         * ListViewGroup.cs: Added missing attributes.
5441         * ListViewGroupCollection.cs: Added missing attributes.
5443 2006-12-15  Daniel Nauck  <dna@mono-project.de>
5445         * ListViewItem.cs: fixed ListViewSubItem text property.
5447 2006-12-15  Rolf Bjarne Kvinge  <RKvinge@novell.com>
5448         
5449         * Control.cs: Added missing 2.0 attributes
5450         
5451 2006-12-15  Rolf Bjarne Kvinge  <RKvinge@novell.com>
5452         
5453         * MdiClient.cs: Added missing 2.0 attribute.
5454         * MonthCalendar.cs: Added some missing 2.0 attributes 
5455         and properties.
5456         
5457 2006-12-15  Daniel Nauck  <dna@mono-project.de>
5459         * ListView.cs: implemented ListViewItemCollection Add 2.0 support.
5461 2006-12-15  Jonathan Pobst  <monkey@jpobst.com>
5463         * MainMenu.cs: Add the new 2.0 constructor to help out people
5464         using the MainMenu in VS2005.
5466 2006-12-15  Rolf Bjarne Kvinge  <RKvinge@novell.com>
5467         
5468         * MdiChildContext.cs: Removed it, no longer used.
5469         * MdiClient.cs: Added missing 2.0 attributes.
5470         
5471 2006-12-15  Rolf Bjarne Kvinge  <RKvinge@novell.com>
5472         
5473         * InternalWindowManager.cs: Fix a NullRef with previous 
5474         changes for toolwindows.
5475         
5476 2006-12-15  Rolf Bjarne Kvinge  <RKvinge@novell.com>
5478         * Control.cs: 
5479         - Added AfterTopMostControl to allow for certain controls 
5480         to always stay on top when normal controls are brought to 
5481         front.
5482         
5483         * XplatUIWin32.cs: 
5484         - (DrawInversibleRectangle): Get window rectangle from Win32 
5485         in stead of from control, since Win32 doesn't calculate
5486         screen coords correctly from control's Location if it 
5487         have docked siblings.
5488         
5489         * MdiWindowManager.cs:
5490         - Correct the control menu popup location when clicked on
5491         the maximized form icon. (fixes #80223.1)
5492         - Don't show moving rectangle if mouse hasn't moved from
5493         the original clicked point.
5494         - Removed FormGotFocus handler (not used).
5495         - Calculate the control buttons location from the main
5496         window's size and not client size (fixes #79770).
5497         - Form is now closed when the form icon is double-clicked
5498         (fixes #79775). 
5499         - Correct NCCalcSize numbers a little bit (fixes #80223.2)
5500         
5501         * InternalWindowManager.cs:
5502         - Moved some MDI-only methods to MdiWindowManager.
5503         - Removed unused properties and methods.
5504         - Unified method naming for methods handling wm messages.
5505         - Moved all message handling to seperate methods for
5506         each message.
5507         
5508         * ThemeWin32Classic.cs:
5509         - DrawManagedWindowDecorations now draws the title bar 
5510         with a gradient brush.
5511         - Add a CPDrawButtonInternal that allows us to specify
5512         light, normal and dark colors for the buttons (control 
5513         buttons for MDI children were drawn with the same light
5514         color as the background, therefore loosing the 3D effect).
5515         
5516         * SizeGrip.cs:
5517         - Add a CapturedControl property that is used to 
5518         determine the control to resize (defaults to parent). 
5519         Needed for MdiClient, since its SizeGrip's parent is
5520         MdiClient, but the control to resize is the main form.
5521         
5522         * MdiClient.cs:
5523         - Set SizeGrip's CapturedControl to the main form in order
5524         to resize the main form and not the MdiClient.
5525         - Override AfterTopMostControl to leave the scrollbars 
5526         always on top.
5528 2006-12-15  Daniel Nauck  <dna@mono-project.de>
5530         * ListView.cs: fixed ListViewItemCollection AddRange and
5531                         implemented ListViewItemCollection AddRange 2.0 support.
5533 2006-12-15  Daniel Nauck  <dna@mono-project.de>
5535         * ListViewGroup.cs: Add.
5536         * ListViewGroupCollection.cs: Add
5537         * ListView.cs: Add ListViewGroup (Group) and ShowGroups 2.0 support.
5538         * ListViewItem.cs: Add ListViewgroup (Group), ListViewGroups constructors and
5539                                 stub for ImageKey 2.0 support.
5541 2006-12-14  Mike Kestner  <mkestner@novell.com>
5543         * ListView.cs: add text padding to the autocalculation for columns
5544         of width -2.  Fixes #80207.
5546 2006-12-14  Mike Kestner  <mkestner@novell.com>
5548         * ListView.cs: add some index guarding for partial row navigation 
5549         logic.  Fixes #80250.
5551 2006-12-14  Mike Kestner  <mkestner@novell.com>
5553         * ListView.cs: throw ArgumentExceptions when parented ListViewItems
5554         are added or inserted to the collection.  Fixes #81099.
5556 2006-12-13  Everaldo Canuto  <everaldo@simios.org>
5558         * MenuAPI.cs: Closes menu when right click out side of popup
5559         it fix problem in ContextMenu and MainMenu. Fixes #80252.
5561 2006-12-13  Carlos Alberto Cortez <calberto.cortez@gmail.com>
5563         * ListViewItem.cs: Fix dumb error.
5565         * ListView.cs: Add Find and ContainsKey methods in 
5566         ListViewItemCollection, and also return true for IsReadOnly
5567         and IsFixedSize (changes for 2.0). 
5569 2006-12-13  Gert Driesen  <drieseng@users.sourceforge.net>
5571         * Control.cs: Allow Region to be set to null.
5573 2006-12-13  Rolf Bjarne Kvinge  <RKvinge@novell.com>
5575         * MdiWindowManager.cs: Remove unused (commented out) code.
5576         * Form.cs: When the MdiChild is maximized, the form needs 
5577         WM_NCMOUSELEAVE, so request it.
5578         * InternalWindowManager.cs: 
5579         - Added tooltips to control buttons.
5580         - Removed duplicated control button handling code.
5581         - Removed unused (commented out) code.
5582         
5583 2006-12-12  Everaldo Canuto  <everaldo@simios.org>
5585         * MenuAPI.cs: Set cursor to default in popup menus, a XplatUI.SetCursor 
5586         was used because we must set cursor without trigger ChangeCursor event
5587         and without change Cursor control property. Fixes #79963.
5589 2006-12-12  Andreia Gaita  <avidigal@novell.com>
5590         
5591         * Control.cs: Check if Region setter value is null, and ignore
5593 2006-12-12  Jackson Harper  <jackson@ximian.com>
5595         * TextControl.cs: We were almost always drawing one more line then
5596         needed, since the GetLineByPixel will return the last line found
5597         at that pixel. In most cases though, we were invalidating up to
5598         the junction between two lines.
5599         - Improve debug code.
5601 2006-12-12  Chris Toshok  <toshok@ximian.com>
5603         * XplatUI.cs: add static DrawReversibleFrame, DrawReversibleLine,
5604         and FillReversibleRectangle.
5606         * XplatUIDriver.cs: add abstract DrawReversibleFrame, DrawReversibleLine,
5607         and FillReversibleRectangle.
5609         * XplatUIWin32.cs: add stubs which do nothing for
5610         DrawReversibleFrame, DrawReversibleLine, and
5611         FillReversibleRectangle.
5613         * XplatUIOSX.cs: add stubs which raise NIE for
5614         DrawReversibleFrame, DrawReversibleLine, and
5615         FillReversibleRectangle.
5617         * XplatUIX11.cs: add working implementation for
5618         DrawReversibleFrame, DrawReversibleLine, and
5619         FillReversibleRectangle.
5620         
5621         * ControlPaint.cs: implement DrawReversibleFrame,
5622         DrawReversibleLine, and FillReversibleRectangle, by calling into
5623         the appropriate XplatUI method.
5625 2006-12-11  Rolf Bjarne Kvinge  <RKvinge@novell.com>
5627         * Form.cs: Make MdiClient have the focus even if it's
5628         not selectable, since it should receive WM_KEY* and WM_MOUSE 
5629         messages. Fixes #79907.
5630         
5631 2006-12-11  Rolf Bjarne Kvinge  <RKvinge@novell.com>
5633         * Hwnd.cs: Save the CreateParams.ExStyle so that it can be
5634         queried after the window is created.
5635         
5636         * XplatUIX11.cs: Added SendParentNotify to implement 
5637         WM_PARENTNOTIFY logic. Fixes #79965.
5638         
5639         * Control.cs: Added MakeParam.
5640         
5641 2006-12-11  Rolf Bjarne Kvinge  <RKvinge@novell.com>
5643         * MdiClient.cs: Resume Layout before setting window
5644         states (fixes #80201).
5646 2006-12-11  Rolf Bjarne Kvinge  <RKvinge@novell.com>
5648         * MenuAPI.cs: Deselect a menu item after performing
5649         the click (fixes #80197).
5651 2006-12-11  Jackson Harper  <jackson@ximian.com>
5653         * TextBoxBase.cs: We need to cap this value, since Maximum -
5654         ViewPortHeight can be less than zero.
5655         - Only do selection with the left mouse button.
5656         * TextBox.cs: Don't tell the world that we have a context menu.
5657         * Control.cs: New method so that we can control whether or not the
5658         context menu is visible outside MWF.
5660 2006-12-11  Everaldo Canuto  <everaldo@simios.org>
5662         * ToolBarButton.cs: Fix text positon. 
5664 2006-12-11  Miguel de Icaza  <miguel@novell.com>
5666         * ProgressBar.cs (MarqueeAnimationSpeed): Add stub.
5668         * Control.cs (DoubleBuffered): Add implementation.
5670         * Application.cs (OpenForms): Add.
5672 2006-12-11  Jonathan Pobst  <monkey@jpobst.com>
5674         * Form.cs: Use opacity instead of Opactiy to determine if we need
5675         to set the WS_EX_LAYERED bit.  [Fixes bug #80185]
5677 2006-12-11  Jonathan Pobst  <monkey@jpobst.com>
5679         * Control.cs: Fix NRE if Control.Site was set to null.
5681 2006-12-11  Chris Toshok  <toshok@ximian.com>
5683         * Control.cs: ControlCollection.Remove should return if the arg is
5684         null, and ControlCollection.SetChildIndex should raise a ANE.
5686 2006-12-11  Gert Driesen  <drieseng@users.sourceforge.net>
5688         * Control.cs: Verify value set for Dock property. Code formatting
5689         updates.
5691 2006-12-11  Jackson Harper  <jackson@ximian.com>
5693         * TextControl.cs: Draw the caret and the selection when a flag is
5694         set on the owner.
5695         * TextBoxBase.cs: We want to draw the caret and the selection for
5696         TextBox but not for TextBoxBase.
5697         - If the window is resized and scrolling is no longer needed (the
5698         whole doc is visible) set the scroll position to zero.
5699         - The default SelectWord (the one TextBox uses) should move the
5700         caret to the end of the word.
5701         - SelectAll moves the caret to the end of the selection.
5702         * TextBox.cs: We don't selectall on focus, we just do it when the
5703         control is created.
5704         
5705 2006-12-11  Mike Kestner  <mkestner@novell.com>
5707         * ComboBox.cs: stub in a 2.0 override for ProcessKeyEventArgs.
5709 2006-12-11  Carlos Alberto Cortez <calberto.cortez@gmail.com>
5711         * ListView.cs: Add Insert, IndexOfKey, RemoveByKey and indexer 
5712         2.0 support.
5713         * ListViewItem.cs: Add Name 2.0 property.
5715 2006-12-11  Andreia Gaita  <avidigal@novell.com>
5717         * TabControl.cs: Set visibility on selected or default tab 
5718         when tabcontrol handle is created, so that it's contents
5719         actually show up (duh). Fixes #80193
5720         Don't redraw the control if there is no handle created, as
5721         the selected index might be completely invalid. Added some tests
5722         to check for this.
5724 2006-12-11  Everaldo Canuto  <everaldo@simios.org>
5726         * ToolBar.cs: Uses maximun width and height of all buttons as 
5727         button rectangle when ButtonSize specified, it looks strange but
5728         is what happens in Win32. Fixes #80189.
5730 2006-12-11  Jackson Harper  <jackson@ximian.com>
5732         * TextControl.cs: Need to track undo levels ourself, since
5733         compound actions will mess them up.
5735 2006-12-10  Andreia Gaita  <avidigal@novell.com>
5737         * TabControl.cs: Raise SelectedIndexChanged for 1.1 if the
5738         SelectedIndex value is changed (even if it's not valid).
5739         Reset SelectedIndex to 0 when the handle is created and if
5740         the current index is invalid.
5741         Fixes SelectdeIndex unit tests and #80128
5743 2006-12-08  Chris Toshok  <toshok@ximian.com>
5745         * DataGrid.cs (set_CurrentCell): because EnsureCellVisibility
5746         calls EndEdit, it needs to be called before we set current_cell to
5747         its new value.  Otherwise, we end up committing the value in the
5748         textbox to the new cell as well.  Fixes bug #80160.
5750 2006-12-08  Chris Toshok  <toshok@ximian.com>
5752         * Form.cs (set_CancelButton): if the button's DialogResult is
5753         None, set it to Cancel.  Fixes bug 80180.
5755 2006-12-08  Jackson Harper  <jackson@ximian.com>
5757         * TextBoxBase.cs: Ugh, ClientSize can be 0,0 sometimes, so we need
5758         to watch ourselves when setting the canvas size and setting the
5759         scrollbar values.
5761 2006-12-08  Chris Toshok  <toshok@ximian.com>
5763         * DataGrid.cs: comment out the two MakeTransparent calls for the
5764         time being so people using trunk (and not 1.2.2) on windows can
5765         actually use the datagrid.  This deals with bug #80151.
5767 2006-12-08  Jonathan Pobst  <monkey@jpobst.com>
5769         * ThemeWin32Classic.cs: Change ButtonBase_DrawImage to use the
5770         Graphics.DrawImage (image, int, int, int, int) overload instead
5771         of Graphics.DrawImage (image, int, int).  GDI+ can't figure out
5772         the dpi difference and was blurring images it drew.
5773         [Fixes bug #79960]
5775 2006-12-08  Chris Toshok  <toshok@ximian.com>
5777         * ThemeWin32Classic.cs (DataGridPaintRows): handle case where
5778         rowcnt is 0 (such as with an empty datasource), and make sure we
5779         initialize not_usedarea.Y to cells.Y, so we don't draw over the
5780         other areas (caption, parent row, etc, etc).  Fixes bug #80095.
5782 2006-12-08  Chris Toshok  <toshok@ximian.com>
5784         * DataGridColumnStyle.cs (SetDataGrid): don't try to access a null
5785         grid.
5787 2006-12-08  Chris Toshok  <toshok@ximian.com>
5789         [ Fixes bug #80167 ]
5790         
5791         * ThemeWin32Classic.cs: don't draw the image if the button's flat
5792         style is FlatStyle.System.
5794         * ButtonBase, ThemeClearlooks.cs, ThemeGtk.cs, ThemeNice.cs: make
5795         ButtonBase.flat_style private, and switch uses of it to the public
5796         property.
5797         
5798 2006-12-08  Chris Toshok  <toshok@ximian.com>
5800         [ Fixes bug #80121 ]
5801         
5802         * ThemeWin32Classic.cs: center the caption text in the datagrid
5803         when we draw it.
5805         * DataGrid.cs: lessen the amount we add to the caption height from
5806         6 to 2.  6 was making it huge.
5808 2006-12-08  Andreia Gaita  <avidigal@novell.com>
5810         * UpDownBase: Handle MouseWheel call directly instead of capturing
5811         the inner textbox's OnMouseWheel. Fixes #80166
5813 2006-12-08  Jackson Harper  <jackson@ximian.com>
5815         * TextControl.cs: We need to invalidate the textbox when we empty
5816         it (how had this not been discovered before?)
5818 2006-12-08  Jackson Harper  <jackson@ximian.com>
5820         * TextBoxBase.cs: Reworked the mouse down code so I could get it
5821         to behave like MS, we now ignore the eventargs.Click and just
5822         track state ourself, which we were already doing anyways.
5823         - Constrain the double click handler to the double click size.
5824         
5825 2006-12-08  Chris Toshok  <toshok@ximian.com>
5827         * DataGrid.cs: the mousewheel code shouldn't try to scroll in a
5828         direction if that scrollbar isn't shown.  fixes bug #80158.
5830 2006-12-08  Andreia Gaita  <avidigal@novell.com>
5832         * NumericUpDown.cs: Update value on getter. Fixes #79950
5834 2006-12-08  Chris Toshok  <toshok@ximian.com>
5836         * MenuItem.cs: add back in the event cloning code.  I didn't know
5837         how to do it in the face of the EventHandlerList work i'd done
5838         last week.  Fixes bug #80183.
5840 2006-12-08  Jonathan Pobst  <monkey@jpobst.com>
5842         * Control.cs: Add an invalidate to the BackgroundImage setter.
5843         [Fixes 80184]
5845 2006-12-07  Jonathan Pobst  <monkey@jpobst.com>
5847         * ToolStrip*: Add some small properties reported by MoMA, fix event
5848         firing and default properties based off of unit tests, and add some
5849         attributes based off of the class status page.
5851 2006-12-07  Jackson Harper  <jackson@ximian.com>
5853         * TextBoxBase.cs: Take HideSelection into account when determining
5854         whether or not to show the selection.
5855         * RichTextBox.cs: After inserting the RTF into the document move
5856         the cursor to the beginning of the document.
5858 2006-12-07  Jonathan Pobst  <monkey@jpobst.com>
5860         * Control.cs: Remove static ArrayList "controls" which maintained
5861         a reference to every control created.
5862         * Application.cs: Create a static FormCollection to maintain a reference
5863         to every form created.  Use it in places that formerly enumerated through
5864         the controls one looking for forms.
5865         * Form.cs: Add and remove self from above FormCollection.
5867 2006-12-07  Alexander Olk  <alex.olk@googlemail.com>
5869         * MimeIcon.cs: gdk_pixbuf_save_to_buffer is part of libgdk-pixbuf,
5870           not libgdk (though it makes me wonder why I didn't have any
5871           problems)
5873 2006-12-07  Chris Toshok  <toshok@ximian.com>
5875         [ you had to know this was coming after that last commit...]
5876         
5877         * XplatUIX11.cs: implement the 3 Offscreen functions in terms of
5878         XPixmaps (CreateOffscreenDrawable maps to XCreatePixmap,
5879         DestroyOffscreenDrawable to FreePixmap, and BlitFromOffscreen to
5880         XCopyArea).
5882 2006-12-07  Chris Toshok  <toshok@ximian.com>
5884         * XplatUI.cs: add 3 calls (CreateOffscreenDrawable,
5885         DestroyOffscreenDrawable, and BlitFromOffscreen) that encompass
5886         all the behavior we need for double buffering.
5888         * XplatUIDriver.cs: implement the 3 double buffer methods using a
5889         client side Bitmap, just like the old Control-based double buffer
5890         code did.  The methods are virtual, so each XplatUI driver
5891         subclass can replace the implementation to use a faster, platform
5892         specific approach.
5894         * Control.cs: make use of the 3 Offscreen XplatUI calls in the
5895         double buffer code, and clean things up a bit in the process.
5897 2006-12-06  Chris Toshok  <toshok@ximian.com>
5899         * Control.cs: reindent WndProc.
5901 2006-12-06  Chris Toshok  <toshok@ximian.com>
5903         [ I wanna be like BenM when I grow up ]
5904         
5905         * Hwnd.cs: create a single static Graphics object on the static
5906         Bitmap we create.  use this for our text measurements.
5908         * Control.cs (DeviceContext): stop using the backbuffer's dc_mem.
5909         This was causing us to allocate a backbuffer for every control,
5910         even when it wasn't flagged as double buffered.  Instead use the
5911         single graphics instance.  This might have implications for
5912         multithreaded applications.  If we run into problems we can switch
5913         to creating 1 Graphics per control, on the static Hwnd bitmap.
5915         this change nets us a 7M savings in private dirty mappings when
5916         running FormsTest.exe.
5918 2006-12-06  Chris Toshok  <toshok@ximian.com>
5920         * ListView.cs: the BackgroundImage override is just to set
5921         attributes.  chain up to base.BackgroundImage.
5923         * RichTextBox.cs: same.
5925         * ToolBar.cs: same, but we need to also redraw the toolbar when it
5926         changes, so instead a handler for BackgroundImageChanged.
5927         
5928         * Control.cs: make background_image private.
5930 2006-12-06  Chris Toshok  <toshok@ximian.com>
5932         * ScrollBar.cs: change the assignment of cursor to Cursor.  not
5933         sure we even need this assignment, but roll with it for now.
5935         * Control.cs: make the cursor field private.
5937 2006-12-06  Chris Toshok  <toshok@ximian.com>
5939         * Form.cs: we don't need to explicitly set ImeMode to
5940         ImeMode.NoControl - that's a natural fallout of Control.ImeMode's
5941         behavior in the face of ImeMode.Inherit.
5943         * ButtonBase.cs: change DefaultImeMode to ImeMode.Disable, and
5944         change the ctor's assignment to use ImeMode instead of ime_mode.
5946         * Control.cs (get_ImeMode): don't assume DefaultImeMode ==
5947         ImeModeInherit.  Only check for the parent's imemode (and return
5948         NoControl if there is no parent) if ime_Mode == ImeMode.Inherit.
5949         This fixes the button unit test, which sets both ImeMode and
5950         DefaultImeMode to ImeMode.Disable.
5952         also make the ime_mode field private.
5954 2006-12-06  Chris Toshok  <toshok@ximian.com>
5956         * Control.cs: make control_style private.
5958         * TextBoxBase.cs: fix the HandleClick override.  it was explicitly
5959         setting the styles to true, then setting them to false instead of
5960         reverting to their previous values.
5962         also, call SetStyle on the scrollbars instead of using
5963         control_style directly.
5965 2006-12-06  Jonathan Pobst  <monkey@jpobst.com>
5967         * FormCollection.cs: Implement. [2.0]
5969 2006-12-06  Chris Toshok  <toshok@ximian.com>
5971         * Control.cs: make tab_stop private.
5973         * Label.cs: set TabStop, not tab_stop.  reformat some event
5974         add/remove methods to make them more compact.
5976 2006-12-06  Chris Toshok  <toshok@ximian.com>
5978         * RadioButton.cs: fix TabStop handling.
5980 2006-12-06  Chris Toshok  <toshok@ximian.com>
5982         * TextBox.cs: remove the explicit assignments to has_focus.
5983         Control does that.
5985         * ButtonBase.cs: remove the assignment to has_focus.  Control will
5986         manage that.
5987         
5988 2006-12-06  Chris Toshok  <toshok@ximian.com>
5990         * ButtonBase.cs: remove all uses of is_enabled from this code.
5991         it's always true when any of the code containing the checks is
5992         executed.
5994 2006-12-06  Chris Toshok  <toshok@ximian.com>
5996         * ImageList.cs: reinstate the ShouldSerialize*/Reset* methods,
5997         with different semantics (some are present in both 1.1 and 2.0
5998         profiles) so that we match MS's behavior in our unit tests.
6000 2006-12-06  Jackson Harper  <jackson@ximian.com>
6002         * TextControl.cs: Make this operation undoable.
6003         * TextBoxBase.cs: Factor the border width into the preferred
6004         height.
6005         - implement Modified as per the spec.
6007 2006-12-06  Chris Toshok  <toshok@ximian.com>
6009         * Timer.cs, Control.cs, Menu.cs: make control_tag private.
6011 2006-12-06  Chris Toshok  <toshok@ximian.com>
6013         * Control.cs: make right_to_left and context_menu fields private.
6015 2006-12-06  Chris Toshok  <toshok@ximian.com>
6017         * AccessibleObject.cs, Control.cs, XplatUIX11GTK.cs,
6018         XplatUIX11.cs, Form.cs, RadioButton.cs, ScrollableControl.cs: make
6019         Control.child_controls private.  switch all uses over to
6020         Control.Controls.
6022 2006-12-06  Chris Toshok  <toshok@ximian.com>
6024         * System.Windows.Forms/GroupBox.cs,
6025         System.Windows.Forms/AccessibleObject.cs,
6026         System.Windows.Forms/ErrorProvider.cs,
6027         System.Windows.Forms/Control.cs,
6028         System.Windows.Forms/UpDownBase.cs,
6029         System.Windows.Forms/ScrollBar.cs,
6030         System.Windows.Forms/DateTimePicker.cs,
6031         System.Windows.Forms/Form.cs, System.Windows.Forms/Label.cs,
6032         System.Windows.Forms/ToolTip.cs,
6033         System.Windows.Forms/RadioButton.cs,
6034         System.Windows.Forms/LinkLabel.cs,
6035         System.Windows.Forms/Splitter.cs,
6036         System.Windows.Forms/TextBoxBase.cs,
6037         System.Windows.Forms/ToolStripTextBox.cs,
6038         System.Windows.Forms/ContainerControl.cs,
6039         System.Windows.Forms/ThemeWin32Classic.cs,
6040         System.Windows.Forms/SizeGrip.cs,
6041         System.Windows.Forms/ToolStripDropDown.cs,
6042         System.Windows.Forms/ScrollableControl.cs: Make Control.parent
6043         private.  switch all uses over to Control.Parent.
6045 2006-12-06  Chris Toshok  <toshok@ximian.com>
6047         * RichTextBox.cs: don't assign to has_focus in GotFocus/LostFocus.
6048         Control does this before calling emitting these events.
6050         * TabControl.cs: same.
6052         * ThemeWin32Classic.cs: use Control.ClientRectangle instead of
6053         Control.client_rect.
6055         * ButtonBase.cs: use the ClientSize property instead of the
6056         client_size field.
6058         * ScrollableControl.cs: same.
6060         * Control.cs: another pass at making properties private.  also,
6061         move the initialization of tab_stop to the ctor.
6063 2006-12-05  Andreia Gaita <avidigal@novell.com>
6065         * TabControl.cs: Let the selected index be set freely if the 
6066         control handle is not yet created.
6068 2006-12-05  Jonathan Pobst  <monkey@jpobst.com>
6070         * Control.cs: Revert dist_top, dist_right, and dist_bottom to 
6071         internal until I can rewrite DefaultLayout.
6072         * ToolStrip.cs: Fix build error and some general cleaning.
6073         * ToolStripControlHost.cs, SplitterPanel.cs, DataGridView.cs:
6074         Fix build errors caused by making some of Control's fields private.
6076 2006-12-05  Jackson Harper  <jackson@ximian.com>
6078         * TextControl.cs: Redo Insert a little so that it use IndexOf
6079         instead of Split, this prevents it from messing up on things like
6080         \n\n\n. Also more effecient since the split array doesn't need to
6081         be created.
6082         * TextBoxBase.cs: AppendText doesnt handle multiline and non
6083         multiline text differently, this is the first of many fixes that
6084         will make multiline/non-multiline the same thing as far as the
6085         TextBoxBase is concerned.
6086         - Don't split the text and insert lines, this can lose some line
6087         endings (like is the last line a soft or hard break). Instead use
6088         the new Insert.
6089         - Fix an off by one when combining all the lines in the Text
6090         getter.
6091         - Remove separate multiline handling from the Text getter/setter.
6093 2006-12-05  Chris Toshok  <toshok@ximian.com>
6095         * ButtonBase.cs: a few changes:
6097         - don't reinitialize internal Control fields in the ctor when they
6098         have the same values as Control sets them.
6100         - don't set has_focus in OnGotFocus/OnLostFocus.  Control does
6101         this before calling those methods.
6103         - we don't need to call Refresh for anything.  use Invalidate
6104         instead.
6106         - OnEnabledChanged doesn't need to redraw at all - Control.cs
6107         calls Refresh in its OnEnabledChanged.
6108         
6109         - several of the events we were registered for in the ctor to
6110         redraw ourselves already include calls to Invalidate in the
6111         property setters that raise the events.  remove the extra
6112         invalidation.
6114         - reformat a switch statement that was 83274658 columns wide.
6115         
6116 2006-12-05  Mike Kestner  <mkestner@novell.com>
6118         * ComboBox.cs: fix a unit test regression from a TextBox
6119         SelectionLength return of -1 when there's no selection.  
6121 2006-12-05  Chris Toshok  <toshok@ximian.com>
6123         * Control.cs, Button.cs, ThemeGtk.cs, Form.cs, ListView.cs,
6124         ThemeWin32Classic.cs, SizeGrip.cs, ToolBar.cs: first pass at
6125         cleaning up some of the internal Control fields being used by
6126         subclasses.
6128 2006-12-05  Mike Kestner  <mkestner@novell.com>
6130         * ComboBox.cs: fix some Simple mode regressions.  Set Visible on the
6131         listbox after AddImplicit calls since it defaults to hidden. Add a 
6132         hack to preserve requested heights across DropDownStyle changes.
6134 2006-12-05  Jonathan Pobst  <monkey@jpobst.com>
6136         * PropertyGrid.cs: Hide FindFirstItem method from public API.
6138 2006-12-05  Chris Toshok  <toshok@ximian.com>
6140         * DataGridView.cs: fix compiler warnings.
6142         * PrintControllerWithStatusDialog.cs: same.
6144         * ToolBar.cs: same.
6146         * FolderBrowserDialog.cs: same.
6148         * Splitter.cs: same.
6150         * DataGridViewComboBoxCell.cs: same.
6152         * XplatUIWin32.cs: same.
6154         * PictureBox.cs: same.
6156         * Win32DnD.cs: same.
6158         * PageSetupDialog.cs: same.
6160         * FileDialog.cs: same.
6162         * PrintDialog.cs: same.
6164         * DataGridTextBoxColumn.cs: same.
6166         * DrawTreeNodeEventArgs.cs: same (and fix corcompare)
6168 2006-12-05  Chris Toshok  <toshok@ximian.com>
6170         * TextBox.cs, CheckedListBox.cs, MonthCalendar.cs, Menu.cs,
6171         MainMenu.cs, ListView.cs, LabelEditTextBox.cs, ToolBar.cs: more
6172         System.ComponentModel.EventHandlerList work.
6174 2006-12-05  Jonathan Chambers  <joncham@gmail.com>
6176         * DrawTreeNodeEventArgs.cs: Added.
6178 2006-12-05  Rolf Bjarne Kvinge  <RKvinge@novell.com>
6179         
6180         * InternalWindowManager.cs: Remove an unused field.
6181         
6182 2006-12-05  Rolf Bjarne Kvinge  <RKvinge@novell.com>
6184         * InternalWindowManager.cs:
6185         - Save the point where the title bar is clicked.
6186         
6187         * MdiWindowManager.cs:
6188         - Only allow moving of the window as long as the 
6189         clicked point on the title bar does not get out of
6190         MdiClient's rectangle. Fixes #79982.
6191         
6192         * MdiClient.cs:
6193         - Added Horizontal/VerticalScrollbarVisible.
6194         - Simplified the scrollbar sizing algorithm.
6195         - Cache the difference in scrolled value in
6196         H/VBarValueChanged and move the calculation out
6197         of the for loop.
6199 2006-12-05  Rolf Bjarne Kvinge  <RKvinge@novell.com>
6201         * Control.cs: Make the Console.WriteLine in WndProc 
6202         write more info.
6204 2006-12-05  Chris Toshok  <toshok@ximian.com>
6206         * ToolStripManager.cs, ToolStripButton.cs,
6207         ToolStripContentPanel.cs, ToolStripComboBox.cs, ToolStrip.cs,
6208         ToolStripMenuItem.cs, ToolStripItem.cs, ToolStripControlHost.cs,
6209         ToolStripSplitButton.cs, ToolStripSeparator.cs,
6210         ToolStripRenderer.cs, ToolStripDropDownItem.cs,
6211         ToolStripProgressBar.cs, ToolStripContainer.cs,
6212         ToolStripTextBox.cs, ToolStripPanel.cs, ToolStripDropDown.cs: move
6213         to using System.ComponentModel.EventHandlerList.
6215 2006-12-04  Chris Toshok  <toshok@ximian.com>
6217         * LinkLabel.cs: fix up compiler warnings.
6219         * TableLayoutSettings.cs: same.
6221         * TreeView.cs: same.
6223         * ToolBar.cs: same.
6225         * TabControl.cs: same.
6227         * RichTextBox.cs: same.
6229         * ListViewItem.cs: same.
6231         * PropertyGrid.cs: same.
6233         * DataGridViewRowPostPaintEventArgs.cs: corcompare fix.
6235         * ToolTip.cs same.
6237         * TextRenderer.cs: fix up compiler warnings.
6239         * Label.cs: same.
6241         * Form.cs: corcompare fixes.
6243         * PictureBox.cs: fix up compiler warnings.
6245         * ImageListStreamer.cs: same.
6247         * TrackBar.cs: corcompare fix.
6249         * Control.cs: fix up compiler warnings.
6251         * SplitterPanel.cs: same.
6253         * NumericTextBox.cs: same.
6255         * ImageList.cs: same.
6257         * StatusStrip.cs: same.
6259         * ProgressBar.cs: corcompare fix.
6261         * ToolStripButton.cs: fix up compiler warnings.
6263         * ToolStripStatusLabel.cs: same.
6265         * ToolStripSplitButton.cs: same.
6267         * ToolStripSeparator.cs: same.
6269         * ToolStripProgressBar.cs: same.
6271         * ToolStripDropDownMenu.cs: same
6273         * ToolStripDropDown.cs: same.
6275         * ToolStripDropDownButton.cs: same.
6277         * ToolStrip.cs: same.
6279         * ToolStripControlHost.cs: same.
6281         * ToolStripContentPanel.cs: same.
6283         * ToolStripDropDown.cs: same.
6285         * ToolStripContainer.cs: same.
6287         * ToolStripPanel.cs: same, and add "new" where we need it to work
6288         with the new ArrangedElementCollection.
6290         * ToolStripItemCollection.cs: add "new" where we need it to work
6291         with the new ArrangedElementCollection.
6293 2006-12-04  Andreia Gaita <avidigal@novell.com>
6295         * TabControl.cs: Fix default tab selection to after TabControl
6296         gets focus and not before. Fixes #80128
6298 2006-12-04  Chris Toshok  <toshok@ximian.com>
6300         * DataGridTableStyle.cs: remove the gross calling of
6301         datagrid.Refresh from here.  It's a broken idea and it doesn't
6302         work anyway.
6304         * DataGrid.cs: instead, just register/unregister from the
6305         DataGridTableStyle events in CurrentTableStyle.  we play it
6306         conservatively and EndEdit + CalcAreasAndInvalidate on any event,
6307         even though some would most likely not require it.  Fixes bug
6308         #80115 (and one portion of #80117 as a side effect).
6310 2006-12-04  Chris Toshok  <toshok@ximian.com>
6312         * DataGrid.cs (set_CaptionVisible): EndEdit before doing the work
6313         so the textbox (if any) goes away.  Fixes bug #80117.
6315 2006-12-04  Chris Toshok  <toshok@ximian.com>
6317         * DataGridColumnStyle.cs: set the column's readonly property
6318         initially based on the property descriptor's IsReadOnly.  Fixes
6319         bug #80044.
6321 2006-12-04  Chris Toshok  <toshok@ximian.com>
6323         * ComboBox.cs: wrap the dropdown style changing work in
6324         SuspendLayout/ResumeLayout.  Fixes bug #79968.
6326 2006-12-04  Jackson Harper  <jackson@ximian.com>
6328         * TextBoxBase.cs: Fix off by one, since these are one-based.
6329         * TextBox.cs: Select all the text when we get focus.  The TextBox
6330         does this but the RTB does not.
6332 2006-12-04  Chris Toshok  <toshok@ximian.com>
6334         * DataGridTextBoxColumn.cs: remove some spew.
6336         * DataGridColumnStyle.cs (SetColumnValueAtRow): this seems right
6337         but some part of me is saying "it shouldn't be here.."  At any
6338         rate, it fixes bug #80046.  Call IEditableObject.EndEdit after
6339         setting the value.
6341 2006-12-04  Chris Toshok  <toshok@ximian.com>
6343         * DataGridColumnStyle.cs (SetDataGrid): call CheckValidDataSource
6344         to reassign the propertydescriptor.
6346 2006-12-04  Jackson Harper  <jackson@ximian.com>
6348         * TextBoxBase.cs:
6349         * TextControl.cs: Remove some unused variables.  Maybe this will
6350         patch things up between mike and I.
6351         - don't split lines less then one char wide, if the viewport is
6352         that small text won't be visible anyways.
6353         
6354 2006-12-04  Jackson Harper  <jackson@ximian.com>
6356         * TextBoxBase.cs: Default selection length is -1, need to do some
6357         more testing on windows to see when this is used for the property.
6358         - Redid the Lines [] property to that we properly remove soft line
6359         breaks
6360         - added support for preserving carriage returns
6361         -  CanUndo is not a variable like 'is undo enabled' it just returns
6362         true if there is undo operations available.
6363         - AppendText doesn't need to grab the last tag itself anymore,
6364         this happens automatically when we move the cursor.
6365         * TextControl.cs: Add CompoundActions to the undo class. This
6366         allows combining the other operations into one big option.  ie a
6367         paste will combine { delete old, insert new, move cursor }
6368         - Add InsertString undo operation
6369         - New method for deleting multiline text
6370         - Add carriage returns to lines. So we can preserve carriage
6371         returns when text is 'roundtripped'
6373 2006-12-04  Chris Toshok  <toshok@ximian.com>
6375         * DataGrid.cs (CalcCellsArea): cells_area.Width/Height are at a
6376         minimum 0.  Fixes the scrollbar exception in bug #80136.
6378 2006-12-04  Rolf Bjarne Kvinge  <RKvinge@novell.com>
6380         * MdiClient.cs: 
6381         * MdiWindowManager: Removed unused fields and methods.
6382         
6383 2006-12-04  Rolf Bjarne Kvinge  <RKvinge@novell.com>
6384         
6385         * StatusBar.cs: Update all panels when a AutoSize=Contents
6386         panel needs updating.
6387         
6388         * StatusBarPanel.cs: Remove twidth and only use initialize.
6389         Fixes #80031.
6390                 
6391 2006-12-04  Rolf Bjarne Kvinge  <RKvinge@novell.com>
6393         * Form.cs: When a form's MdiParent is set add it directly
6394         on top of the z-order in stead of relying on MdiClient's
6395         ActivateChild to do it. Fixes #80135.
6396         
6397         * MdiClient.cs: 
6398         - Remove original_order, mdi_child_list is already doing
6399         the same thing.
6400         - Create mdi_child_list on construction in
6401         stead of first use (avoids a few null checks).
6403         * MenuItem.cs: Use an already existing list of mdi children
6404         to get the correct order of children and remove the other
6405         redundant list.
6407 2006-12-04  Chris Toshok  <toshok@ximian.com>
6409         * PropertyGridView.cs: cached_splitter_location is only used in
6410         !DOUBLEBUFFER code.
6412         * PropertyGrid.cs: implement the ComComponentNameChanged event
6413         using Events, hoping that would fix the warning.  Looks like a
6414         compiler bug instead (#80144).
6416         * PropertyManager.cs: remove unused method.
6418 2006-11-04  Everaldo Canuto  <everaldo@simios.org>
6420         * ThemeWin32Classic.cs: Dont draw arrow when menuitem on menubar, 
6421         include parentesis to fix expression evaluation. Fixes #79634.
6423 2006-11-02  Everaldo Canuto  <everaldo@simios.org>
6424         
6425         * MenuAPI.cs:
6426         - Changes to fix behavior in Menu control, some reported in #80097
6427         and other detected during behavior refactory like a select event
6428         problems.
6429         - Remove unneded "if's" conditions.
6430         - Created an internal to flag when popup is active in control, we need 
6431         it because in .NET you can have menu active but without popup active
6432         when you active menu using popup without visible items.
6433         - Mimic win32 behavior for Select and Popup events.  
6434         - Dont open popup menu when you dont have visible subitems.
6435         - Do nothing when click on disabled menu item.
6436         - Some small changes to follow the coding style guidelines.
6437         - Unselect menu only when another control gives focus. Fixes #80097.
6438         - Remove unused code.
6439         
6440         * MenuItem.cs: internal VisibleItems method to check if menu
6441         theres visible subitems, it will be usefull to fix some 
6442         behavior in Menu control.
6443         
6444 2006-11-01  Everaldo Canuto  <everaldo@simios.org>
6445         
6446         * Timer.cs: Tag property for 2.0 profile.
6447         
6448 2006-12-01  Chris Toshok  <toshok@ximian.com>
6450         [ after removing all warning suppressions, this cleans up over 100 warnings. ]
6451         
6452         * Win32DnD.cs: comment out some unused fields.
6454         * XplatUIWin32.cs: comment out some unused pinvokes, and remove
6455         some unused properties/methods.
6457         * XplatUIX11.cs: fix MousePosition so we override the base class's
6458         property instead of conflicting with it.
6460         * PictureBox.cs: comment out some unused fields
6462         * OSXStructs.cs: make some struct fields public.
6464         * XplatUIOSX.cs: comment out some unused pinvokes, and fix
6465         MousePosition so we override the base class's property instead of
6466         conflicting with it.
6468         * X11Dnd.cs: comment out some unused fields
6470         * X11DesktopColors.cs: fix some struct field visibility to quiet
6471         the compiler.
6473         * X11Dnd.cs: remove some debug code.
6475         * ThemeClearlooks.cs: comment out unused field.
6477         * ThemeNice.cs: mark some methods as overriding ThemeWin32Classic as needed.
6479         * ThemeGtk.cs: comment out some unused pinvokes.
6481         * Timer.cs: remove some unused fields.
6483         * ThemeClearlooks.cs: comment out unused field.
6485         * UpDownBase.cs: comment out unused field.
6487         * DataObject.cs: comment out unused field.
6489         * DataGridBoolColumn.cs: reomve unused field.
6491         * DataGrid.cs: remove unused field.
6493         * Cursor.cs: remove old ToBitmap code.
6495         * ControlPaint.cs: remove unused method.
6497         * ScrollBar.cs: remove unused fields.
6499         * ComboBox.cs: remove unused field, and chain up to
6500         AccessibleObject ctor.
6502         * ListBox.cs: remove unused field.
6504         * ButtonBase.cs: wrap a couple fields in NET_2_0.
6506         * GridEntry.cs: remove unused fields.
6508         * Binding.cs: remove unused fields.
6510         * AxHost.cs: remove unused method.
6512         * ContainerControl.cs: remove unused field.
6514         * ScrollableControl.cs: remove unused fields.
6516 2006-12-01  Chris Toshok  <toshok@ximian.com>
6518         * XplatUI.cs, XplatUIWin32.cs, XplatUIGTK.cs: nuke
6519         the Where/WhereString stuff.  it's easy enough to CWL
6520         Environment.StackTrace.
6522         * XplatUIX11.cs: same, but also fix up a lot of mcs warnings about
6523         unused private fields.
6525 2006-12-01  Jackson Harper  <jackson@ximian.com>
6527         * TextControl.cs: Do not update the view while inserting multiline
6528         text. If we update the view we might wrap lines, before entering
6529         the new lines, which causes the new line insertion calculations to
6530         be totally fubared.
6531         - Remove an old TODO
6532         - Make debug output a little nicer
6533         
6534 2006-12-01  Chris Toshok  <toshok@ximian.com>
6536         * ToolBar.cs: revert the ImeMode fix here and add an XXX comment.
6538 2006-12-01  Chris Toshok  <toshok@ximian.com>
6540         [ fix the majority of the CS0108 warnings we've been suppressing ]
6541         
6542         * TreeView.cs: mark BackgroundImageChanged as 'new'.
6544         * ToolBar.cs: ImeMode just passes stuff to Control.  Rename Layout
6545         to "LayoutToolBar" to quiet mcs.
6546         
6547         * TabControl.cs: mark our ControlCollection class as 'new'.
6549         * TextBoxBase.cs: mark some events as 'new'.
6551         * Splitter.cs: TabStop is 'new'.
6553         * ControlBindingsCollection.cs: mark a few methods as new since
6554         they change the visibility from protected to public.
6556         * RadioButton.cs: DoubleClick -> base class, and remove unused
6557         HaveDoubleClick.
6559         * MonthCalendar.cs: ImeMode property -> base class, and mark many
6560         events as new.
6562         * NumericUpDown.cs: TextChanged -> base class.
6564         * CheckedListBox.cs: mark our ObjectCollection class as new to
6565         quiet mcs.
6567         * FolderBrowserDialog.cs: make HelpRequest event new and have it
6568         muck with the base class.
6570         * StatusBar.cs: fix some mcs warnings about Update being the same
6571         name as a base class method.
6573         * RichTextBox.cs: mark some events as new, and make them do things
6574         to the base class impl.
6576         * UserControl.cs: mark TextChanged as new, and have it manipulate
6577         base.TextChanged.
6579         * UpDownBase.cs: mark some things new.
6581         * CheckBox.cs: mark DoubleClick "new", and add some text about
6582         what we need to look at.
6584         * Panel.cs: make the events "new", and manipulate the base
6585         version.  these are just here for attributes.
6587         * AccessibleObject.cs: make owner private.
6589         * Control.cs: deal with AccessibleObject.owner being private.
6590         cache our own copy if we need it.
6592         * Button.cs: add "new" to the DoubleClickEvent.
6594         * ListBox.cs: no need to track our own has_focus here.  let
6595         Control.has_focus do it for us.  Also some other work to clear up
6596         warnings about not overriding base class methods of the same name.
6597         
6598         * ComboBox.cs: clear up some warnings about not override base
6599         class methods of the same name.
6601 2006-12-01  Chris Toshok  <toshok@ximian.com>
6603         * Form.cs: flag a few things as "new" to quiet some of the mcs
6604         warnings.
6606         * AxHost.cs: same.
6608         * PrintPreviewDialog.cs: same.
6610         * DataGridView.cs: fix a ton of corcompare warnings.  not all, but
6611         now DGV isn't so horrible on the class status page.  also, move
6612         all events to using System.ComponentModel.EventHandlerList.  my
6613         wrists hurt.
6615 2006-12-01  Rolf Bjarne Kvinge  <RKvinge@novell.com>
6617         * MdiWindowManager.cs:
6618         - Set form to active mdi child if shown,
6619         and update the active mdi child to the next 
6620         remaining child in the z-order if the form is hidden.
6622         * Form.cs: 
6623         - Track if the form has been visible and if its 
6624         visibility is beeing changed, so that the MdiClient
6625         can properly decide the ActiveMdiChild. The MdiClient 
6626         cannot track this since the form can change visibility 
6627         before MdiClient is created.
6629         * MdiClient.cs:
6630         - Don't activate anything of the parent form is changing
6631         its visibility.
6632         - Rework ActiveMdiChild to only return visible mdi 
6633         children and take into account several other corner 
6634         cases.
6636 2006-12-01  Chris Toshok  <toshok@ximian.com>
6638         * IBindableComponent.cs: new 2.0 interface.
6640 2006-12-01  Gert Driesen  <drieseng@users.sourceforge.net>
6642         * DataGrid.cs: Font for caption area is bold by default.
6644 2006-12-01  Everaldo Canuto  <everaldo@simios.org>
6646         * Menu.cs: Tag property for 2.0.
6647         
6648 2006-11-01  Everaldo Canuto  <everaldo@simios.org>
6650         * ThemeWin32Classic.cs: Adjust menu separator drawing. 
6651         
6652 2006-12-01  Chris Toshok  <toshok@ximian.com>
6654         * TreeView.cs: doh, the Begin* events should be
6655         TreeViewCancelEventHandler.
6657 2006-12-01  Chris Toshok  <toshok@ximian.com>
6659         * Form.cs: Form.ControlCollection already stores off the
6660         form_owner field.  don't access the base class's internal "owner"
6661         field.
6663         * Control.cs: make all the fields in Control.ControlCollection
6664         private.  there's no need for any internal fields here.
6666 2006-12-01  Chris Toshok  <toshok@ximian.com>
6668         * DataGrid.cs: call SetDataSource instead of CalcGridAreas in
6669         OnHandleCreated.  Fixes bug #80109.
6671 2006-12-01  Chris Toshok  <toshok@ximian.com>
6673         * Button.cs, PropertyGridTextBox.cs, ComboBox.cs,
6674         SplitContainer.cs, Control.cs, StatusStrip.cs,
6675         DataGridTableStyle.cs, MenuItem.cs, DomainUpDown.cs, ImageList.cs,
6676         NumericTextBox.cs, NumericUpDown.cs, Panel.cs, CommonDialog.cs,
6677         DataGrid.cs, ScrollBar.cs, TrackBar.cs, PictureBox.cs,
6678         DateTimePicker.cs, StatusBar.cs, Form.cs, PrintPreviewDialog.cs,
6679         Label.cs, UserControl.cs, CheckBox.cs, RadioButton.cs,
6680         LinkLabel.cs, ListControl.cs, PropertyGrid.cs, Splitter.cs,
6681         MenuStrip.cs, FolderBrowserDialog.cs, NotifyIcon.cs,
6682         TextBoxBase.cs, ListView.cs, DataGridBoolColumn.cs,
6683         PrintPreviewControl.cs, RichTextBox.cs, ListBox.cs, TabControl.cs,
6684         DataGridColumnStyle.cs, ContextMenu.cs, TreeView.cs:
6686         do most of the work to convert our code over to use
6687         System.ComponentModel.Component.Events for
6688         adding/removing/dispatching events.
6691 2006-11-30  Jonathan Pobst  <monkey@jpobst.com>
6693         * DataGridView.cs: Fix an ArgumentNullException reported 
6694         twice today in IRC.
6696 2006-11-30  Mike Kestner  <mkestner@novell.com>
6698         * ComboBox.cs: fix the scrollbar mouse event forwarding in the 
6699         grabbed listbox.  Fixes #80036 and #80101.
6701 2006-11-30  Rolf Bjarne Kvinge <RKvinge@novell.com>
6703         * Message.cs: Changed ToString() to match MS.
6704         
6705 2006-11-30  Jackson Harper  <jackson@ximian.com>
6707         * TextBoxBase.cs: You can still change the selected text on a read
6708         only textbox.
6709         * TextControl.cs: Lower magic number for wrap calculations. This
6710         lets text get closer to the right (far) edge.
6712 2006-11-30  Jonathan Pobst  <monkey@jpobst.com>
6714         * Control.cs: Tweak 2.0 layout properties.
6715         * Form.cs: Switch ToolStripMenuTracker hooks to ToolStripManager.
6716         * TextRenderer.cs: Add a new overload.
6717         * ToolStrip*: Huge amount of changes and new features.
6719 2006-11-30  Mike Kestner  <mkestner@novell.com>
6721         * ComboBox.cs: fixes for LargeChange and Maximum to get the 
6722         scroll range correct.  Fixes #79994.
6724 2006-11-30  Rolf Bjarne Kvinge <RKvinge@novell.com>
6726         * MdiWindowManager.cs: Update main form's text when
6727         a form is closed. (fixes #80038)
6728         
6729 2006-11-30  Everaldo Canuto  <everaldo@simios.org>
6731         * ToolBar.cs:
6732         - Fix an regression in ButtonSize.
6733         - Get ImeMode default value change to "Disable".
6734         - Get ShowTooltips default value change to true, default value is 
6735         "false" but after make a test in .NET we get "true" result as default.
6736         
6737 2006-11-29  Jonathan Pobst  <monkey@jpobst.com>
6739         * ToolStripDropDown.cs: Fix for SupportsTransparency change.
6741 2006-11-29  Chris Toshok  <toshok@ximian.com>
6743         * XplatUIWin32.cs (GetWindowTransparency): check return value of
6744         GetLayeredWindowAttributes.  if it's 0, return 1.0, as
6745         SetWindowTransparency hasn't been called.
6747 2006-11-29  Chris Toshok  <toshok@ximian.com>
6749         * Form.cs (set_TransparencyKey): only call SetWindowTransparency
6750         if it's supported.
6751         (set_AllowTransparency): reorder things a little so that the
6752         WS_EX_LAYERED style is removed properly.
6754 2006-11-29  Chris Toshok  <toshok@ximian.com>
6756         [ totally cosmetic eye-candy feature, fixes bug #80089 ]
6757         
6758         * Form.cs: only call the XplatUI transparency method (get/set) if
6759         SupportsTransparency says it's supported. Otherwise fallback to
6760         doing nothing (in the set case) or returning the instance field we
6761         cache (in the get case).
6763         * XplatUIStructs.cs: add TransparencySupport flag enum.
6764         
6765         * XplatUIDriver.cs: add abstract GetWindowTransparency, and track
6766         change to SupportsTransparency.
6768         * XplatUIOSX.cs: stub out GetWindowTransparency, and return
6769         TransparencySupport.None from SupportsTransparency.
6771         * XplatUIX11.cs: Stub out GetWindowTransparency, and return
6772         TransparencySupport.Set from SupportsTransparency.
6774         * XplatUIWin32.cs: implement GetWindowTransparency calling
6775         GetLayeredWindowAttributes, and implement SupportsTransparency by
6776         checking whether or not both
6777         GetWindowTransparency/SetWindowTransparency are available
6778         entrypoints.  We need to do this since SetWindowTransparency is
6779         available as of win2k, but GetWindowTransparency requires winxp.
6780         yay win32 api.
6782         * XplatUI.cs: Add GetWindowTransparency, and change
6783         SupportsTransparency to allow for either/both Get/Set.
6785 2006-11-29  Chris Toshok  <toshok@ximian.com>
6787         * DataGrid.cs: keep from going into an infinite loop redrawing a
6788         datagrid that has no datasource.  Fixes bug #80033.
6790 2006-11-29  Chris Toshok  <toshok@ximian.com>
6792         * MenuItem.cs: fix the NRE when we assign text (and therefore call
6793         Invalidate) before the mainmenu has been assigned to a control.
6795 2006-11-29  Chris Toshok  <toshok@ximian.com>
6797         * DataGrid.cs: detect when we should be double the double click
6798         row/column autosize stuff, although that codepath has yet to be
6799         written.  part of the work for bug #79891.
6801 2006-11-29  Chris Toshok  <toshok@ximian.com>
6803         * Binding.cs (SetControl): fix unit test.
6805 2006-11-29  Carlos Alberto Cortez <calberto.cortez@gmail.com>
6807         * PageSetupDialog.cs: Validate the margins and set them in
6808         PageSettings. 
6809         * NumericTextBox.cs: New class to mimic the behavior of the
6810         textboxes used in the printing dialogs.
6812 2006-11-29  Andreia Gaita  <avidigal@novell.com>
6813         
6814         * Form.cs: Revert previous change (remove call UpdateBounds
6815         from form constructor), because it messes with the handle creation
6816         order, and that one needs lots and lots of love.
6817         * PrintPreviewDialog.cs: Revert change to CreateHandle (add check
6818         for valid printer and throw InvalidPrinterException if document
6819         is set but printer not valid), adding a MonoTODO. Once 
6820         handle creation is done properly, we can put this back in.
6822 2006-11-28  Everaldo Canuto  <everaldo@simios.org>
6824         * MenuItem.cs: Create a invalidate method for menu item, to be
6825         calling from set text, it make text changes to imadiate update
6826         on screen. Fixes #80013. 
6827         
6828 2006-11-28  Everaldo Canuto  <everaldo@simios.org>
6830         * ToolBar.cs: Fixes and simplify toolbar button layout, it 
6831         fixes bug #80070 and some other problem on toolbar buttons
6832         layout.
6834 2006-11-28  Everaldo Canuto  <everaldo@simios.org>
6836         * ThemeWin32Classic.cs: Paint toolbar toggle button background 
6837         with dotted brush.      Fixes #79564
6838         
6839 2006-11-28  Andreia Gaita  <avidigal@novell.com>
6841         * Form.cs: Removed call to UpdateBounds on Form
6842         constructor, it was causing a call to CreateHandle
6843         before it was supposed to.
6844         * PrintControllerWithStatusDialog: Applied patch
6845         by Chris Toshok to hide controller when there are
6846         no printers available.
6847         PrintDialog.cs: initialize printer settings to 
6848         null - correct DefaultValues test #5
6849         * PrintPreviewControl.cs: Move PrintController
6850         initialization to GeneratePreview
6851         * PrintPreviewDialog.cs: 
6852         - Remove Preview generation     from Document_set(). It is 
6853         called on OnPaint
6854         - Throw InvalidPrinterException on CreateHandle if
6855         a Document is set but there are no printers or 
6856         printer is not valid.
6857         * ThemeWin32Classic: don't paint PrintPreviewControl
6858         if there is nothing to paint    
6860 2006-11-28  Miguel de Icaza  <miguel@novell.com>
6862         * Form.cs: Add another popular method.
6864         * TabPage.cs: ditto.
6866 2006-11-28  Rolf Bjarne Kvinge  <RKvinge@novell.com>
6868         * MenuItem.cs: Fixed a warning.
6869         * InternalWindowManager: Fixed a warning.
6871 2006-11-28  Rolf Bjarne Kvinge  <RKvinge@novell.com>
6873         * MenuItem.cs:
6874         - When cloning a menu also clone MdiList and clone the 
6875           window menu items properly (as the forms and menuitems
6876           are kept in an internal hashtable, these need updating 
6877           as well)
6878         - Rewrote the window menu code, menu items are added in the
6879           order the forms were added to their parent, and they are
6880           updated every time the window menu is shown (before the
6881           list was only generated once, in the current order of the
6882           forms, and would never be updated). A checkmark is shown
6883           next to the item corresponding to the active mdi child.
6885 2006-11-28  Rolf Bjarne Kvinge  <RKvinge@novell.com>
6887         * XplatUIStructs.cs: 
6888         - Added WM_NCMOUSEHOVER and WM_NCMOUSELEAVE.
6889         
6890         * XplatUIWin32.cs: 
6891         - Added TME_NONCLIENT to TMEFlags.
6892         - Handles WM_NCMOUSEMOVE in GetMessage to 
6893           generate WM_NCMOUSEHOVER and WM_NCMOUSELEAVE messages.
6895         * MdiWindowManager:
6896         - Now merges mdi child menu to parent menu when maximized.
6897         - Recalculate NC areas of both mdi child and mdi parent. 
6898           Fixes #79757 (4).
6899           on window state and size changes.Fixes #79844 (3).
6900         - Handle WM_NCCALCSIZE to properly calculate borders.
6902         * Form.cs:
6903         - Add/remove to the mdi containers list of mdi children 
6904           in the order they are added.
6905         - Pass on WM_NCLBUTTONUP, WM_NCMOUSEMOVE and WM_NCMOUSELEAVE 
6906           to the maximized mdi child.
6907         
6908         * InternalWindowManager.cs:
6909         - Only execute a click on the control buttons on the mouse up,
6910           not on the mouse down. Show the state of the button 
6911           (was only showing Normal state, never Pressed state). The
6912           pressed button now follows the mouse (if you click the Close 
6913           button and move the mouse over the Maximize button, the 
6914           Maximize button will be shown as pressed). Since Win32 does
6915           not generate WM_NCLBUTTONUP if you release the button outside
6916           of the nc area, we need to handle WM_NCMOUSELEAVE and treat
6917           it as a mouse up.
6918         
6919         * ThemeWin32Classic.cs:
6920         - Draw a missing border around mdi child forms. Fixes #79844 (2).
6922         * MdiClient.cs:
6923         - Added a list of forms which contains the order the forms are
6924           added to the mdi parent.
6925         - Handle WM_NCPAINT to properly draw a 3D border. Fixes #79844 (2).
6926         - Handle WM_NCCALCSIZE to properly calculate the 3D border.
6927         - If the active form changes set the scrollbars to the top
6928           of the Z order, otherwise the form could hide them.
6929         - Scrollbars are now sized according to ClientSize, not 
6930           to Size, and they take into account the other scrollbar
6931           to determine maximum.
6932         
6933 2006-11-28  Rolf Bjarne Kvinge <RKvinge@novell.com>
6934         
6935         * XplatUI.cs:
6936         * XplatUIDriver.cs:
6937         * XplatUIX11.cs:
6938         * XplatUIWin32.cs:
6939         * XplatUIOSX.cs:
6940         - Added RequestAdditionalWM_NCMessages for windows to 
6941           opt in for WM_NCMOUSELEAVE and WM_NCMOUSEHOVER.
6942           Currently only implemented in XplatUIWin32.
6944 2006-11-27  Chris Toshok  <toshok@ximian.com>
6946         * Hwnd.cs: only add the hwnd to the windows hash in
6947         set_WholeWindow and set_ClientWindow if whole_window/client_window
6948         are not IntPtr.Zero.  also, remove the unused SetObjectWindow.
6950 2006-11-27  Mike Kestner  <mkestner@novell.com>
6952         * ComboBox.cs: remove redundant OnDropDown call.  It is called
6953         from the ComboListBox.ShowWindow code. Fixes #79969.
6955 2006-11-27  Chris Toshok  <toshok@ximian.com>
6957         * Hwnd.cs: remove the setters for ExposePending and
6958         NCExposePending - noone uses them.
6960 2006-11-27  Jackson Harper  <jackson@ximian.com>
6962         * TextControl.cs: new param for ReplaceSelection which determines
6963         whether we select the new selection, or set the cursor to the end
6964         of the new selection.
6965         * TextBoxBase.cs: Use new param for ReplaceSelection.  When
6966         pasting, select the new text.
6967         * RichTextBox.cs: Use new param for ReplaceSelection.
6969 2006-11-27  Jackson Harper  <jackson@ximian.com>
6971         * TextBoxBase.cs: Set the selection to the caret after the caret
6972         is moved, otherwise they get out of sync.
6974 2006-11-26  Everaldo Canuto  <everaldo@simios.org>
6976         * ToolBar.cs: Fixe size of ToolBar when AutoSize is false,
6977         it fixes #80015
6979 2006-11-26  Everaldo Canuto  <everaldo@simios.org>
6981         * ThemeWin32Classic.cs: 
6982         - Fix toolbar drop down arrow position.
6983         - Fix drop down appearance when ToolBar.Appearance is normal,
6984         it fixes #80018.
6985         
6986 2006-11-26  Gert Driesen  <drieseng@users.sourceforge.net>
6988         * ProgressBar.cs: GetStyle fixes for 2.0 profile.
6989         * Control.cs: Same.
6990         * UpDownBase.cs: Same.
6991         * ButtonBase.cs: Same.
6992         * ScrollBar.cs: Same.
6993         * TrackBar.cs: Same.
6994         * PictureBox.cs: Same.
6995         * UserControl.cs: Same.
6996         * Label.cs: Same.
6997         * ListControl.cs: Same.
6998         * TextBoxBase.cs: Same.
6999         * ListView.cs: Same.
7000         * RichTextBox.cs: Same.
7001         * TreeView.cs: Same.
7003 2006-11-25  Jordi Mas i Hernandez <jordimash@gmail.com>
7005         * PrintDialog.cs:
7006         - Text label for where 
7007         - Text label comment was not shown
7009 2006-11-23  Everaldo Canuto  <everaldo@simios.org>
7011         * ThemeWin32Classic.cs: Fix toolbar drop down arrow size.
7013 2006-11-23  Rolf Bjarne Kvinge  <RKvinge@novell.com> 
7015         * InternalWindowManager.cs: 
7016         - Handle WM_PARENTNOTIFY to activate the form
7017         if any child control is clicked.
7018         - The form is only sizable if not minimized.
7020         * MdiWindowManager.cs:
7021         - Save the IconicBounds if the form is moved.
7022         - Rework SetWindowState, now the window bounds 
7023         are stored only if the old window state is Normal.
7024         
7025         * MdiClient.cs:
7026         - In SetWindowStates store the old window state if 
7027         the window is maximized and restore window state if
7028         the window looses focus.
7029         - Don't handle any scrollbar value changes if 
7030         initializing the scroll bars. Fixes #79771.
7031         - Reworked ArrangeIconicWindows. Current algorithm
7032         tests bounds agains all other minimized windows, if
7033         any intersections create new bounds (going left to 
7034         right, bottom to top) and then test again. When 
7035         successful the bounds are saved and never computed
7036         again. Fixes #79774.
7038 2006-11-23  Rolf Bjarne Kvinge  <RKvinge@novell.com> 
7040         * InternalWindowManager.cs: Added HandleTitleBarUp.
7042 2006-11-23  Gert Driesen  <drieseng@users.sourceforge.net>
7044         * NumericUpDown.cs: In .NET 1.1, user entered text is still
7045         hexadecimal in ParseUserEdit.
7047         
7048 2006-11-23  Rolf Bjarne Kvinge  <RKvinge@novell.com> 
7050         * MdiWindowManager.cs: 
7051         - Handle a click on the form's icon to show the 
7052         system menu (when maximized). Fixes #79775.
7053         - Change the existing click handler for the form's
7054         icon when not maximized to show on MouseUp.
7055         Fixes #79776.
7057         * Form.cs: In OnResize only layout the mdi child's
7058         parent if it actually has a parent. Might not if
7059         the window is closing.
7062 2006-11-23  Gert Driesen  <drieseng@users.sourceforge.net>
7064         * MdiClient.cs: Ignore active MDI client for text of parent, if
7065         child has no text set.
7067 2006-11-23  Gert Driesen  <drieseng@users.sourceforge.net>
7069         * ToolBar.cs: Fixed ToString to match MS.
7071 2006-11-22  Andreia Gaita  <avidigal@novell.com>
7073         * NumericUpDown: 
7074         - Fix DecimalPlaces, Hexadecimal and ThousandsSeparator to 
7075         update inner values on set. Fixes #79966.
7076         - Override OnLostFocus to update value on NET 2. Fixes #79950.
7077         - Fix hexadecimal parsing.
7078         
7079         * UpDownBase: Override OnGotFocus and OnLostFocus to notify 
7080         parent. Fixes #79957
7082 2006-11-22  Rolf Bjarne Kvinge  <RKvinge@novell.com>
7084         * Control.cs: After calling SetWindowsPos in SetBoundsCore 
7085         the actual size has to be queried, since if height /
7086         width is negative Win32 changes it to 0. 
7087         Fixes #79999 on Windows.
7088         
7089         * XplatUIX11.cs: Set height / width to 0 if negative
7090         in SetWindowPos. Fixes #79999 on Linux.
7091         
7092 2006-11-22  Everaldo Canuto  <everaldo@simios.org>
7094         * ThemeWin32Classic.cs: Fix text redenring when button is
7095         pressed.
7097 2006-11-22  Everaldo Canuto  <everaldo@simios.org>
7099         * MenuAPI.cs: Fixes behavior when menu is opened by kerboard
7100         and later navigate by mouse. Fixes #79528.
7102 2006-11-21  Everaldo Canuto  <everaldo@simios.org>
7104         * ToolBar.cs: Set default value for TabStop to false in
7105         constructor, it fixes remaining behavior of bug #79863.
7107 2006-11-21  Rolf Bjarne Kvinge  <RKvinge@novell.com>
7109         * MdiWindowManager.cs:
7110         * InternalWindowManager.cs:
7111         - Moved a few methods specific to Mdi from 
7112         InternalWindowManager to MdiWindowManager.
7113         Fixes #79996.
7114         
7115 2006-11-21  Chris Toshok  <toshok@ximian.com>
7117         * XplatUIOSX.cs: stub out InvalidateNC.
7119         * XplatUIWin32.cs: implement InvalidateNC using the call I found
7120         at http://www.dotnet247.com/247reference/msgs/58/292037.aspx.
7122         * XplatUIX11.cs: rename InvalidateWholeWindow to InvalidateNC.
7124         * XplatUIDriver.cs: add InvalidateNC abstract method.
7126         * XplatUI.cs: add InvalidateNC.
7128 2006-11-21  Everaldo Canuto  <everaldo@simios.org>
7130         * ToolBar.cs: Invalidate complete button area when pressed status 
7131         was changed.
7132         * ToolButton.cs: Fix InvalidateBorder for DropDown buttons.
7133         * ThemeWin32Classic.cs: Increase vertical and horizontal position 
7134         by 1 when button is pressed.
7136 2006-11-20  Everaldo Canuto  <everaldo@simios.org>
7138         * ToolButton.cs: Invalidate middle of DropDown button when
7139         ToolBar theres DropDownArrows.
7140         * ThemeWin32Classic.cs: Change position of DropDown arrow and
7141         fix DropDown drawing operations.
7143 2006-11-20  Chris Toshok  <toshok@ximian.com>
7145         * NativeWindow.cs: fix the formatting of functions ('{' on the
7146         following line), and enable the thread exception dialog.
7148         * Application.cs: remove the duplicate exception catching from
7149         here.
7151 2006-11-20  Everaldo Canuto  <everaldo@simios.org>
7153         * Toolbar.cs: Triggers button click event when click on icon
7154         of dropdown ToolBarButton. Fixes #79912.
7155         
7156 2006-11-20  Rolf Bjarne Kvinge  <RKvinge@novell.com>
7158         * Theme.cs:
7159         * ThemeWin32Classic.cs:
7160         - Added a property WindowBorderFont to enable themeing
7161           of mdi child windows' Text.
7162           
7163 2006-11-20  Rolf Bjarne Kvinge  <RKvinge@novell.com>
7165         * InternalWindowManager.cs:
7166         * Form.cs:
7167         * MdiClient.cs:
7168         * MdiWindowManager.cs: 
7169         - If mdi child is maximized, set mdi parent's
7170           text to "Parent - [Child]". Fixes #79770.
7171         - If there is any maximized mdi child windows, only the active 
7172           window (and any new windows) is maximized, the rest are normal.
7173         - On a WindowState change only save mdi child's window bounds 
7174           if the old window state was normal. Fixes #79774.
7175         - The scroll bars are now calculated on hopefully all
7176           necessary events. Fixed #79771 / #79844->6 / #79906.
7177         - MdiClient.SizeScrollBars() now takes into account docked 
7178           controls in the parent when calculating available space.
7179         - InternalWindowManager now always repaints the entire title
7180           area. Fixes #79844->1/4/5.
7181         - Added RequestNCRecalc on mdi child windowstate changes.
7182           Fixes #79772.
7184 2006-11-20  Mike Kestner  <mkestner@novell.com>
7186         * ComboBox.cs: setup LargeChange on the scrollbar. Invoke FireMouseUp
7187         in the MouseUp handler of the listbox and move the return handling
7188         code to FireMouseUp to avoid scrolling on ups.  Fixes #79952.
7190 2006-11-20  Everaldo Canuto  <everaldo@simios.org>
7192         * Toolbar.cs: Ignore right mouse clicks in toolbar. Fixes #79855. 
7194 2006-11-17  Alexander Olk  <alex.olk@googlemail.com>
7196         * MimeIcon.cs: Seems that DllImports that were fine in 1.2 are not
7197           working in 1.2.x anymore. So, updated.
7199 2006-11-19  Gert Driesen  <drieseng@users.sourceforge.net>
7201         * NumericUpDown.cs: Use NegativeSign, NumberDecimalSeparator and
7202         NumberGroupSeparator of current culture instead of assuming en-US.
7203         Fixed bug #79967.
7205 2006-11-17  Mike Kestner  <mkestner@novell.com>
7207         * Control.cs: Add the concept of implicit bounds setting so that
7208         dock/undock round trips preserve explicitly set size/locations.
7209         Fixes #79313.
7211 2006-11-17  Alexander Olk  <alex.olk@googlemail.com>
7213         * FileDialog.cs: Trim all filters, otherwise DirInfo.GetFiles
7214           can't handle those filters. (Fixes bug #79961)
7216 2006-11-17  Chris Toshok  <toshok@ximian.com>
7218         [ fixes the exit/crashes associated with #79835.  it's clearly
7219         suboptimal though, we need to figure out a better way to solve
7220         this. ]
7221         
7222         * PrintPreviewControl.cs: deal with the new invalid printer
7223         exceptions.
7225         * PageSetupDialog.cs: if the printer is invalid, pop up a dialog
7226         and return false (so CommonDialog.ShowDialog doesn't actually show
7227         the form.)
7229         * PrintDialog.cs: enable/disable the Ok button depending on
7230         whether or not the printer is valid.
7232         * CommonDialog.cs (ShowDialog): only actually show the form if
7233         RunDialog returns true.
7235 2006-11-17  Jackson Harper  <jackson@ximian.com>
7237         * TextControl.cs: When soft splitting a line, mark it as a soft
7238         split line. Also carry over the current line break to the next
7239         line.
7241 2006-11-17  Chris Toshok  <toshok@ximian.com>
7243         * XplatUIX11.cs: when scrolling a window with an invalid area, we
7244         only want to shift the part of the invalid area that overlaps the
7245         area we're scrolling.  we also don't want to clear the invalid
7246         area unless the invalid area was entirely contained within the
7247         scrolling area.
7249 2006-11-16  Chris Toshok  <toshok@ximian.com>
7251         * XplatUIX11.cs: remove the handling of the TimerEvent stuff, and
7252         also make sure to free the memory returned by XGetWindowProperty
7253         in GetText().
7255         * X11Structs.cs: remove the TimerEvent stuff, it's unused.
7257 2006-11-16  Chris Toshok  <toshok@ximian.com>
7259         * XplatUI.cs: add a new super secret way to get at the totally
7260         unsupported X11 backend.
7262 2006-11-16  Gert Driesen  <drieseng@users.sourceforge.net>
7264         * NumericUpDown.cs: Allow lowercase letters when in hex-mode.
7266 2006-11-16  Jackson Harper  <jackson@ximian.com>
7268         * TreeView.cs: Allow more explicit setting of top node position
7269         for scrollbars. Slower algo, but more accurate.
7270         - CollapseAll should maintain the current top node.
7271         * TextBoxBase.cs: When positioning the caret, use the line, pos
7272         method, since the x, y method does not grab the correct tag, and
7273         the caret height never gets set correctly. (Maybe I should just do
7274         away with the caret having its own height, and always use the
7275         carets current tag for height).
7277 2006-11-16  Jonathan Pobst  <monkey@jpobst.com
7279         [Fixes 79778, 79923]
7281         * XplatUIWin32.cs: Don't allow a parent to be set to IntPtr.Zero.
7282         Parent to the FosterParent instead.
7284 2006-11-16  Jackson Harper  <jackson@ximian.com>
7286         * TreeView.cs: Need to recalc the topnode when we expand or
7287         collapse. The scrolling methods can't handle this on their own,
7288         since they use differences between the last scroll position, and
7289         those difference get completely messed up since we are expanding
7290         nodes.  This problem should probably be fixed in the scrolling
7291         methods, so they can figure out exactly where they are, but this
7292         will slow things down a little.
7293         * ThemeWin32Classic.cs: Special case for groupboxes with empty
7294         strings, makes nunit-gui look a lot nicer.
7296 2006-11-16  Chris Toshok  <toshok@ximian.com>
7298         * XplatUIX11.cs: nasty, nasty, nasty changes required because of
7299         the broken multithreaded event handling we have in here.  File
7300         this entry under "Why we should move to the new X11 backend".
7302         Any thread can make it into UpdateMessageQueue, which gets events
7303         from the X socket - some of which could belong to hwnds being
7304         managed by a different thread.  We can also have multiple threads
7305         in UpdateMessageQueue at the same time, with each one reading from
7306         the X socket.  This leads to many problems, with the following
7307         solutions:
7309         We can't use hwnd.Queue.Enqueue anywhere in here and must use
7310         EnqueueLocked.
7312         The MotionNotify compression we do can't work across threads
7313         (without locking the entire queue, perhaps) since we call
7314         hwnd.Queue.Peek, so we just punt and don't compress motion events
7315         unless the owning thread is the one which got the X event.
7317         ConfigureNotify is another fun one, since it modifies the hwnd's
7318         bounds and then enqueues the event.  We add a lock to Hwnd which
7319         is held when setting configure_pending to true (and enqueuing the
7320         event).
7322         There is a race wrt the wake socket.  we need to make sure that
7323         only 1 thread is waiting on that socket, or else a thread could
7324         sleep waiting for data that never comes.  It's difficult (but not
7325         impossible) to make happen, because it seems to require something
7326         like the following:
7328             1. Thread 1 polls on wake_receive
7329         
7330             2. poll returns saying there's data to be read on
7331                wake_receive.
7332         
7333             3. Thread 2 polls on wake_receive and immediately returns
7334                saying there's data to be read.
7336             4. Thread 2 reads the wakeup byte from wake_receive
7338             5. Thread 1 attempts to read the wakeup byte from
7339                wake_receive.
7341             6. Thread 2 exits (due to a form closing, perhaps).
7343             7. Thread 1 blocks forever.
7344         
7345         Fun, eh?
7347         Fixing the Expose handling isn't done yet, and the races inherent
7348         in that piece of code are responsible for the drawing mistakes you
7349         see when generating expose events in a MT app (like NPlot).  This
7350         one is the likely to be the hardest to bandaid, and it doesn't
7351         appear to cause anything but drawing problems.  The other issues
7352         caused apps to exit or hang.
7354         * XEventQueue.cs: output some spew when Dequeue/Enqueue/Peek are
7355         called from a different thread than the one that should be calling
7356         these functions.
7358         * Hwnd.cs: add some locks to be used by the XplatUIX11 code.
7360 2006-11-15  Chris Toshok  <toshok@ximian.com>
7362         * Application.cs: null out the context's MainForm when we exit
7363         RunLoop.  Fixes a newly checked in unit test as well as the last
7364         ODE from bug #79933.
7366 2006-11-15  Chris Toshok  <toshok@ximian.com>
7368         * Form.cs (set_Owner): allow a null value so we can clear the
7369         form's owner.
7370         (Dispose): set all our owned_form's Owner properties to null, and
7371         clear the owned_forms collection.
7372         (WM_CLOSE): clean up this a little bit.. still not right though.
7374         * ApplicationContext.cs: OnMainFormClosed should only call
7375         ExitThreadCore if the main form isn't recreating.  Fixes unit
7376         test.
7378 2006-11-15  Jonathan Pobst  <monkey@jpobst.com>
7380         [Fixes 78346]
7382         * ComboBox.cs: Set the Hwnd.no_activate flag for the ComboListBox.
7384 2006-11-15  Jonathan Pobst  <monkey@jpobst.com>
7386         [Fixes 79433]
7388         * Hwnd.cs: Add a flag to show a window, but not activate it, to 
7389         keep popup window types from stealing focus from the main form
7390         on Windows.
7392         * XPlatUIWin32.cs: Use SW_SHOWNOACTIVATE if above field is true.
7394         * MenuAPI.cs: Set above flag to true.
7396 2006-11-15  Chris Toshok  <toshok@ximian.com>
7398         * XplatUIX11.cs: mimic win32 behavior on BUTTONUP events, where
7399         the button being released is not in wParam.
7401 2006-11-15  Jonathan Pobst  <monkey@jpobst.com>
7403         * Form.cs: Add the released button to MouseEventArgs.Button
7404         for the OnMouseUp call to the MenuTracker.  Fixes menu clicking
7405         on Win32.
7407 2006-11-15  Chris Toshok  <toshok@ximian.com>
7409         * XplatUIX11.cs: add (untested) a _NET_WM_NAME implementation of
7410         GetText().  untested because it's unused in our implementation.
7411         Control.Text always caches the text, even if
7412         ControlStyles.CacheText is not set.
7414         fixes bug #79939.
7416 2006-11-15  Chris Toshok  <toshok@ximian.com>
7418         [ fixes #79933 ]
7419         
7420         * Form.cs: in Close() don't do anything after we send the WM_CLOSE
7421         message.  no hiding, no disposing.
7423         in the WM_CLOSE handler, hide the form if it's modal.
7425 2006-11-15  Chris Toshok  <toshok@ximian.com>
7427         * XplatUIX11.cs: use AddExpose instead of sending a message.
7428         fixes textbox border drawing.
7430 2006-11-15  Chris Toshok  <toshok@ximian.com>
7432         * PropertyGridView.cs: keep from crashing on mouse move/down when
7433         the property grid is empty.
7435 2006-11-14  Jackson Harper  <jackson@ximian.com>
7437         * TextControl.cs: Make PageUp and PageDown more like the MS
7438         versions.
7439         * TextBoxBase.cs: When we set the text property position the
7440         cursor at the beginning of the document.
7442 2006-11-14  Rolf Bjarne Kvinge  <RKvinge@novell.com>
7444         * Form.cs: if a mdi child's WindowState has changed
7445         before it's creation, it would display wrong control
7446         buttons.
7447         
7448 2006-11-14  Alexander Olk  <alex.olk@googlemail.com>
7450         * TreeView.cs: De-uglify TreeView checkbox checkmarks.
7451           (Fixes bug #79927)
7453 2006-11-14  Rolf Bjarne Kvinge <RKvinge@novell.com> 
7455         * XplatUIX11.cs: send a WM_NCPAINT on WM_NCCALCSIZE so that 
7456         the window gets to paint its borders even if the window is
7457         getting smaller.
7458         
7459         * Form.cs: on a WM_NCPAINT invalidate the entire menu, 
7460         otherwise the old control buttons would still be painted 
7461         if the window gets bigger.
7462         
7463         * PaintEventArgs.cs: add an internal method so that the clip 
7464         rectangle can be changed.
7465         
7466 2006-11-13  Chris Toshok  <toshok@ximian.com>
7468         [ fixes bug #79745 ]
7469         
7470         * NotifyIcon.cs: lots of cleanup.
7472         * X11Structs.cs: add an enum for XEMBED messages.
7474         * XplatUIX11.cs: reindent one of the giant switch statements, it
7475         was taking up an additional tab stop, and this file is already way
7476         too wide for my laptop's screen.
7478         Also, add handling for the XEmbed EMBEDDED_NOTIFY message.  When
7479         we get it, resize the hwnd to the WMNormalHints max_width/height.
7481 2006-11-13  Jackson Harper  <jackson@ximian.com>
7483         * TextBoxBase.cs: Compute the value changes for the mouse wheel
7484         teh simple way.
7486 2006-11-13  Chris Toshok  <toshok@ximian.com>
7488         * XplatUIX11.cs, XplatUIStructs.cs: kind of a gross fix for
7489         #79898.  force a reference to the Region to stick around so the
7490         unmanaged object isn't collected (rendering our handle in the MSG
7491         stale).
7493 2006-11-13  Chris Toshok  <toshok@ximian.com>
7495         * XplatUIX11.cs: fix #79917 for window managers which support
7497         using XStoreName on the raw utf8, and we need to convert to
7498         COMPOUND_TEXT if it's non-latin1.
7500 2006-11-13  Chris Toshok  <toshok@ximian.com>
7502         * Form.cs (set_DialogResult): we need to set closing to false if
7503         we're setting our result to None.  fixes bug #79908.
7505 2006-11-13  Jackson Harper  <jackson@ximian.com>
7507         * TextControl.cs: When formatting text, compute the adjusted tag
7508         lengths correctly, using FindTag for the end tag instead of trying
7509         to figure it out outselves.
7510         * TreeNode.cs: Use ActualItemHeight, which is the actual height of
7511         the item, ItemHeight doesn't work, because trees with large
7512         imagelists use those for their height
7513         * TreeView.cs: ActualItemHeight factors in the image height
7514         - compute left edge of checkboxes correctly
7515         - when expanding/collapsing move the bottom down one pixel, so we
7516         aren't moving part of the node
7518 2006-11-13  Rolf Bjarne Kvinge  <RKvinge@novell.com>
7520         * XplatUIX11.cs: The PaintEventArgs is also added to the drawing
7521         stack in PaintEventStart so that it won't get disposed by the gc
7522         before reaching PaintEventEnd.
7524 2006-11-13  Jackson Harper  <jackson@ximian.com>
7526         * TextBoxBase.cs: Don't select the word if we are on a line with
7527         no text.
7528         - We don't need to position the caret on mouse up, since the mouse
7529         move handler should be doing this
7530         - When double clicking a blank line, the caret is advanced to the
7531         next line.
7533 2006-11-13  Gert Driesen  <drieseng@users.sourceforge.net>
7535         * TreeNodeCollection.cs: Avoid duplicating indexer code.
7537 2006-11-12  Gert Driesen  <drieseng@users.sourceforge.net>
7539         * ColorDialog.cs: Reset size of dialog between calls to ShowDialog.
7540         Fixes part of bug #79910.
7542 2006-11-11  Alexander Olk  <alex.olk@googlemail.com>
7544         * ColorDialog.cs: Fix a NRE when adding a color to custom colors
7545           (bug #79903). Some minor string updates to match ms.
7547 2006-11-10  Alexander Olk  <alex.olk@googlemail.com>
7549         * FileDialog.cs: Don't add an extension if the filename
7550           already ends with that extension.
7552 2006-11-10  Jackson Harper  <jackson@ximian.com>
7554         * TreeView.cs: Use the currently highlighted node for the
7555         BeforeSelect event.
7556         * TextBoxBase.cs: There is no need to expand selection on
7557         MouseMove.
7558         - CanUndo means 'is there any undo operations', not 'is undo
7559         allowed on this textcontrol. Fixed ClearUndo unit test.
7561 2006-11-10  Andreia Gaita  <shana.ufie@gmail.com>
7563         * Button.cs: only perform click when button is Selectable (so as 
7564         not to activate default buttons when they're disabled)
7565         
7566         * Control.cs: Rewrite of the SelectNextControl and related 
7567         methods. HandleClick now selects next control if the current one
7568         is being disabled.
7569         
7570         * Form.cs: OnActivated selects next active control only if Load 
7571         has already occurred. If Load hasn't run, there's no point in 
7572         selecting here, Load might change the state of controls.
7573         
7574         * FocusTest.cs: Tests marked as working again for these fixes
7576 2006-11-10  Chris Toshok  <toshok@ximian.com>
7578         * XplatUIX11.cs: a couple of fixes.
7580         - use XInternAtoms with almost all the atoms we need to register,
7581         instead of many, many calls to XInternAtom.  should help a bit on
7582         startup time, at the expense of making the code look a little
7583         worse.
7585         - fall back to setting TransientFor on TOOLWINDOW's if their hwnd
7586         isn't reparented (which seems to be a clue that we're running fon
7587         compiz) and they have an Owner form.  This fixes the tool windows
7588         in paint.net when running under compiz.
7590         - when setting the opacity of a window, support both the case
7591         where the window has been reparented and also when it hasn't been.
7592         Since compiz/beryl doesn't seem to reparent windows, and these are
7593         the only window managers which support translucency, I'm not sure
7594         why we need the hwnd.reparented case at all.. but leave it in.
7595         now we get translucent windows in paint.net under compiz/beryl.
7597 2006-11-10  Alexander Olk  <alex.olk@googlemail.com>
7599         * FileDialog.cs: Always return the value for FilterIndex that
7600           was set. Internally convert it to values that make sense.
7602 2006-11-10  Everaldo Canuto  <everaldo@simios.org>
7603         
7604         * ThemeWin32Classic.cs: Fix drowp down arrow borders.
7606 2006-11-10  Everaldo Canuto  <everaldo@simios.org>
7608         * Toolbar.cs: Change default value of DropDownArrows to true, the 
7609         signature still using false to make it compatible with MS but the 
7610         initial value is true. Fixes #79855.
7612 2006-11-10  Alexander Olk  <alex.olk@googlemail.com>
7614         * MimeIcon.cs: Don't throw an exception on windows. Mime stuff is
7615           only available on Linux.
7617 2006-11-09  Everaldo Canuto  <everaldo@simios.org>
7619         * Toolbar.cs, ToolBarButton.cs: Fix wrong separator size and
7620         reduce number of calls to redraw method during toolbar creation.
7622 2006-11-09  Mike Kestner  <mkestner@novell.com>
7624         * ListView.cs : raise SelectedIndexChanged when an item is selected
7625         programmatically via the Item.Selected property.  Gert's nice 
7626         ListViewSelectedIndexChanged test fixture now runs clean.
7628 2006-11-09  Mike Kestner  <mkestner@novell.com>
7630         * ListView.cs : raise SelectedIndexChanged when a selected item is
7631         removed from the item collection using Remove or RemoveAt.
7633 2006-11-09  Mike Kestner  <mkestner@novell.com>
7635         * ListView.cs : raise SelectedIndexChanged once per selected item
7636         for compat with MS.  Fixes #79849+.
7638 2006-11-09  Chris Toshok  <toshok@ximian.com>
7640         * TabControl.cs: initialize row_count to 0, and set it to 1 when
7641         we need to (if we have any tab pages).  Fixes unit test.
7643 2006-11-09  Chris Toshok  <toshok@ximian.com>
7645         * Label.cs (CalcPreferredWidth): if Text == "", our preferred
7646         width is 0, not 3.  Fixes a unit test.
7648 2006-11-09  Mike Kestner  <mkestner@novell.com>
7650         * ListView.cs : use Implicit scrollbars so that focus isn't 
7651         stolen from the listview when they are clicked. Fixes #79850.
7653 2006-11-09  Chris Toshok  <toshok@ximian.com>
7655         * PropertyGridView.cs (OnPaint): only call DrawGridItems if we
7656         have a root item.  Fixes #79879.
7658 2006-11-09  Alexander Olk  <alex.olk@googlemail.com>
7660         * FileDialog.cs:
7661           - Fix ToString ()
7662           - An ArgumentException is now thrown if a wrong filter
7663             is applied (matches ms). The previous filter doesn't change
7664             anymore if an exception is thrown.
7665           - Changing the FileName property also affects FileNames
7666         * ColorDialog.cs: The length of the CustomColors array is always
7667           16. It doesn't matter if we use a smaller array or null to update
7668           or change the custom colors property.
7669         * FolderBrowserDialog.cs: Throw an InvalidEnumArgumentException if
7670           for RootFolder if we get a undefined value.
7672 2006-11-09  Rolf Bjarne Kvinge  <RKvinge@novell.com>
7674         * StatusBarPanel.cs: 
7675         - Width is set to MinWidth if Width is smaller than
7676         MinWidth. Fixes #79842.
7677         - MinWidth now always overrides Width (MSDN says MinWidth
7678         is set to Width when AutoSize = None, but they do not 
7679         behave like that).
7680         - Style has now the the correct default value.
7681         
7682 2006-11-09  Rolf Bjarne Kvinge  <RKvinge@novell.com>
7684         * TrackBar.cs: 
7685         - The control is completely invalidated on 
7686         Got/LostFocus to draw the focus rectangle correctly.
7687         - When AutoSize then height is always 45 (width for 
7688         vertical controls).
7689         
7690         * ThemeWin32Classic.cs: The TrackBar thumb is now centered
7691         on the mouse when moved and it doesn't move when grabbed
7692         until the mouse moves as well. Also fixed some wrong 
7693         calculations when clicking on the thumb (control thought
7694         click was outside of thumb and didn't grab it).
7695         Fixes some of the issues in #79718.
7697 2006-11-08  Everaldo Canuto  <everaldo@simios.org>
7699         * Toolbar.cs: Prevent disabled button to highlight. Fixes #79868.
7701 2006-11-08  Chris Toshok  <toshok@ximian.com>
7703         * PropertyGridView.cs: only call ToggleValue if the item is not
7704         readonly.
7706 2006-11-08  Jackson Harper  <jackson@ximian.com>
7708         * TextBoxBase.cs: The RichTextBox and textbox have very different
7709         word selection methods.  Implement the textbox's simple word
7710         selection here, and let the RichTextBox override and provide it's
7711         own.
7712         - Don't do extra selection on mouseup
7713         * RichTextBox.cs: Use the documents word selection algorithm, I
7714         think ideally, this function will be pulled into the
7715         RichTextBox.cs code someday.
7717 2006-11-08  Chris Toshok  <toshok@ximian.com>
7719         * RootGridEntry.cs: new class to represent GridItemType.Root.
7721         * CategoryGridEntry.cs: reformat, and add boilerplate.
7722         
7723         * GridEntry.cs: remove the UIParent stuff - turns out .Parent
7724         returns the UI parent anyway, and we need special handling to
7725         implement the GetTarget method in the face of it.  Also, implement
7726         Select().
7728         * PropertyGrid.cs, PropertyGridView.cs: a number of fixes.  create
7729         a root grid item, and use that instead of PropertyGrid.grid_items.
7730         Also, make use of TypeConverters (and add limitted support for
7731         ICustomTypeDescriptors) when initially populating the grid.
7732         Arrays now show up more or less properly.
7734 2006-11-08  Chris Toshok  <toshok@ximian.com>
7736         * Application.cs: set the modal dialog to non modal after we close
7737         it.  Fixes bug #79866.
7739 2006-11-08  Jackson Harper  <jackson@ximian.com>
7741         * TextControl.cs: When combining lines carry over the line end
7742         style from the end line.
7743         - Invalidate the selected area when setting it, if it is visible.
7744         * TextBoxBase.cs: Only rich text box can do full line selects.
7745         - Make sure to set the cursor position when there is a click,
7746         otherwise two clicks in separate areas could cause a large chunk
7747         to be selected.
7749 2006-11-07  Everaldo Canuto  <everaldo@simios.org>
7751         * Toolbar.cs: Release flat button borders when Toolbar lost focus. 
7752         Fixes #79863.
7754 2006-11-07  Everaldo Canuto  <everaldo@simios.org>
7756         * Toolbar.cs: Prevent toolbar to open more than one tooltip at same
7757         time. Remove tooltips when ToolButton click events.  Fixes #79856.
7759 2006-11-07  Everaldo Canuto  <everaldo@simios.org>
7761         * MenuAPI.cs: Ignore right click for menu actions and fixes
7762         menu border when clicked.  Fixes #79846.
7764 2006-11-07  Everaldo Canuto  <everaldo@simios.org>
7766         * XplatUIX11.cs, XplatUIX11.cs: Fix MouseRelease to only release
7767         MouseState after create wParam for message, this fixes mouse button 
7768         equal none in mouse up events.
7769         
7770 2006-11-07  Andreia Gaita  <shana.ufie@gmail.com>
7772         * Control.cs : Focus() now calls Select to set the Container's
7773         Active Control and to give it focus. To avoid infinite recursion
7774         (because ActiveControl also calls Focus at one point), a check 
7775         is made in Focus with the help of a new internal variable
7776         is_focusing.
7778 2006-11-07  Mike Kestner  <mkestner@novell.com>
7780         * ListView.cs : raise OnSelectedIndexChanged in CreateHandle
7781         if there's a selection.  Fixes #79849.
7783 2006-11-07  Gert Driesen  <drieseng@users.sourceforge.net>
7785         * PropertyGrid.cs: Avoid fixed height of help description label.
7786         Fixes part of bug #79829.
7788 2006-11-07  Chris Toshok  <toshok@ximian.com>
7790         * XplatUIX11.cs: fix #79790 again, by using the
7791         _NET_WM_STATE_SKIP_TASKBAR atom to implement Form.ShowInTaskbar.
7793 2006-11-07  Everaldo Canuto  <everaldo@simios.org>
7795         * ToolBar.cs: Fix left click checking.
7797 2006-11-07  Chris Toshok  <toshok@ximian.com>
7799         * ProgressBar.cs: fix a typo in ToString().  fixes a unit test.
7801 2006-11-07  Chris Toshok  <toshok@ximian.com>
7803         * RelatedPropertyManager.cs: set property_name in our ctor.  fixes
7804         PropertyManager unit tests.
7806         * PropertyManager.cs: make property_name internal.
7808 2006-11-07  Chris Toshok  <toshok@ximian.com>
7810         * ButtonBase.cs: initialize base.ime_mode to ImeMode.Disable to
7811         pass a unit test.  Also, don't set image_index to anything in
7812         response to setting the ImageList property.
7814 2006-11-07  Everaldo Canuto  <everaldo@simios.org>
7816         * ToolBar.cs: Ignore click events when mouse button is not a
7817         left button, only accepts other button for dropdown menus.  
7818         Fixes #79854.
7820 2006-11-07  Chris Toshok  <toshok@ximian.com>
7822         * DataGrid.cs: make the back and parent row buttons a little less
7823         ugly.
7825 2006-11-07  Jackson Harper  <jackson@ximian.com>
7827         * TextBoxBase.cs: When converting to Text don't put line breaks in
7828         for soft line breaks.
7829         * TextControl.cs: There is an initial "fake" line in the document,
7830         this is now a soft break line, so that an extra line feed doesn't
7831         get added to the end of documents.
7833 2006-11-07  Chris Toshok  <toshok@ximian.com>
7835         [ fix bug #79778 ]
7836         
7837         * CurrencyManager.cs: if the list is readonly, don't bother
7838         checking if IBindingList.AllowNew is true.
7840         * ThemeWin32Classic.cs (DataGridPaintParentRow): make this work
7841         for non-DataRowView datasources..  or rather, make it not crash.
7842         (DataGridPaintRelationRow): make sure we limit the row painting to
7843         the area not covered by the row header, and make our cell width at
7844         least large enough to cover the relation area.  This allows grids
7845         that have relations but no rows to render correctly.
7846         (DataGridPaintRowContents): same type of changes here.
7847         (SetDataSource): move back to always calling
7848         CalcAreasAndInvalidate.  this fixes a crash/drawing problem when
7849         navigating back through relations.
7850         (HitTest): handle the case where we have no cells but have
7851         relations.  Right now we generate a hit in cell 0 of whatever the
7852         row is, not sure if this is strictly correct, but it works for our
7853         purposes.
7854         
7855         * DataGrid.cs (EndEdit, CancelEdit): if we have no columns, don't
7856         bother doing anything.
7858 2006-11-07  Jonathan Pobst  <monkey@jpobst.com>
7860         * StatusStrip.cs, ToolStripStatusLabel.cs: By request, an
7861         early version of StatusStrip.  Not responsible for eaten
7862         application or firstborn children.
7864 2006-11-06  Chris Toshok  <toshok@ximian.com>
7866         * TabControl.cs: in OnGotFocusInternal/OnLostFocusInternal don't
7867         call GetTabRect with a -1 index.  Fixes #79847.
7869 2006-11-06  Jackson Harper  <jackson@ximian.com>
7871         * TreeNodeCollection.cs: Update scrollbars after clearing.
7873 2006-11-06  Chris Toshok  <toshok@ximian.com>
7875         * NumericUpDown.cs: fix the ToString method for some unit test
7876         love.
7878 2006-11-06  Chris Toshok  <toshok@ximian.com>
7880         * PropertyGrid.cs:
7881         - set the initial SelectedGridItem if we can.
7883         - Exclude non-mergable properties only if we're merging > 1
7884         object.  Merging 1 object isn't really merging, obviously.
7886         - Handle PropertySort.NoSort just like Alphabetical, which is
7887         wrong of course, but at least gets things on the screen.
7888         
7889         * PropertyGridView.cs:
7890         - Add method "FindFirstItem" which finds the first property grid
7891         item, so we can select it by default.
7893         - make use of GridEntry.CanResetValue.
7895         - Don't call RedrawBelowItemOnExpansion here anymore, the
7896         individual GridEntry's will do that.
7898         - Remove the ITypeDescriptorContextImpl internal class.
7899         
7900         * GridEntry.cs:
7901         - this class needs to implement ITypeDescriptorContext, as it's
7902         what MS's PropertyDescriptorGridEntry does, which means we can
7903         remove the ITypeDescriptorContextImpl internal class from
7904         PropertyGrid.cs.  This fixes the crashing portion of bug #79829.
7906         - keep a reference to our PropertyGridView, and move the call to
7907         RedrawBelowItemOnExpansion here from PGV.  This means
7908         programmaticly setting Expanded actually does something visible.
7910         - add a CanResetValue() function which takes into account our
7911         possibly multiple "selected_objects" in the merged case.  Shifting
7912         PropertyGridView to use this method fixes another unreported
7913         crasher found running the test for #79829.
7915         - when Top or Bounds is updated, make sure the PropertyGridTextBox
7916         is updated to reflect this.
7918         * CategoryGridEntry.cs: the ctor takes the PGV now.
7919         
7920 2006-11-06  Jackson Harper  <jackson@ximian.com>
7922         * TextControl.cs: These are 1 based.
7923         * TextBoxBase.cs: When setting the selected text, don't change the
7924         selected text tags, this is done by ReplaceText, just position the
7925         cursor at the end of the new text.
7927 2006-11-06  Alexander Olk  <alex.olk@googlemail.com>
7929         * ListView.cs: Allow label edit only when, when LabelEdit is
7930           set to true.
7932 2006-11-06  Jackson Harper  <jackson@ximian.com>
7934         * TextControl.cs: If a suitable wrapping position isn't found,
7935         just wrap right in the middle of a word.
7937 2006-11-06  Alexander Olk  <alex.olk@googlemail.com>
7939         * ListView.cs, ListViewItem.cs: Implement LabelEdit. Fixes
7940           bug #79820.
7942 2006-11-06  Jackson Harper  <jackson@ximian.com>
7944         * TreeView.cs: Can't use the VisibleCount property when setting
7945         scrollbar heights, because this doesn't take into account whether
7946         or not the horz scrollbar just came visible.
7948 2006-11-05  Everaldo Canuto  <everaldo@simios.org>
7950         * MenuAPI.cs: Deactivate menu on mouse up when menus it is already
7951         activated.  Fixes #79369, #79832.
7953 2006-11-05  Alexander Olk  <alex.olk@googlemail.com>
7955         * FileDialog.cs: *sigh* Because of recent runtime changes (r67043) I
7956           had to remove support for links that point to a directory. FileInfo
7957           returns no usefull information (means, the directory they point to)
7958           for such links. Replaced some empty string ("") with String.Empty.
7960 2006-11-04  Gert Driesen  <drieseng@users.sourceforge.net>
7962         * TreeNodeCollection.cs: To match MS, in 1.0 profile throw 
7963         NullReferenceException when attempting to remove node that is not in
7964         collection. Throw NullReferenceException when null is passed to 
7965         Remove. Allow first element of the collection to be removed. Fixes
7966         bug #79831.  In GetEnumerator ().Current return null if positioned 
7967         before the first element of the collection. In GetEnumerator ().Reset,
7968         position before first element of the collection.
7970 2006-11-04  Gert Driesen  <drieseng@users.sourceforge.net>
7972         * PropertyGrid.cs: To match MS, remove default title and description
7973         for panel. Fixed tooltips for Categorized and Alphabetic toolbar
7974         buttons.
7976 2006-11-04  Chris Toshok  <toshok@ximian.com>
7978         * Theme.cs: add a Clamp method, just for kicks.
7980         * ThemeWin32Classic.cs: clamp all color components to [0..255].
7982 2006-11-04  Chris Toshok  <toshok@ximian.com>
7984         * Form.cs: if the form isn't visible, Close() does nothing.
7986 2006-11-03  Chris Toshok  <toshok@ximian.com>
7988         * Form.cs (Close): if the form is modal, don't Dispose of it, only
7989         Hide it.
7990         (WndProc): don't Dispose after handling the WM_CLOSE message.
7992         * Application.cs (RunLoop): toplevels is a list of Forms, so treat
7993         them as such, instead of using casts from Control to Form.  Also,
7994         don't Dispose of the modal dialog when we fall out of the loop -
7995         Close() it instead.
7997         fixes bug #79813.
7999 2006-11-03  Chris Toshok  <toshok@ximian.com>
8001         * Control.cs (Dispose): only go through the dispose thing if we're
8002         @disposing, and we haven't already been disposed.  Fixes bug
8003         #79814.
8005         * Form.cs: no reason to call "base.Dispose()" here instead of
8006         "Dispose()".
8008 2006-11-03  Mike Kestner  <mkestner@novell.com>
8010         * ComboBox.cs : use ToString instead of casts in AddItem for
8011         sorting functionality.  Fixes #79812.
8013 2006-11-03  Chris Toshok  <toshok@ximian.com>
8015         * Application.cs: pave the way for actually using the thread
8016         exception dialog.  it's ifdefed out at the moment.
8018 2006-11-03  Chris Toshok  <toshok@ximian.com>
8020         * ThreadExceptionDialog.cs: until we get a better layout, actually
8021         hide the details textbox and label when we shouldn't see them.
8023 2006-11-03  Jackson Harper  <jackson@ximian.com>
8025         * TextBoxBase.cs: Don't bail from the scrollbar calcs for non
8026         multiline textboxes anymore.  This method also determines the
8027         width/height of a textboxes canvas area.
8028         - Sorta a revert of the last patch.  For multiline just position
8029         the controls, then bail.  This way the scrollbar width won't be
8030         altered.
8032 2006-11-03  Everaldo Canuto  <everaldo@simios.org>
8034         * ThemeWin32Classic.cs: Dont paint inner lines of 3D border when
8035         it dont need.  Fixes #79537.
8037 2006-11-02  Jackson Harper  <jackson@ximian.com>
8039         * X11Dnd.cs: We always allow copy, since XDND implies Copy.  Also
8040         send the status after firing the DndOver event.
8042 2006-11-02  Rolf Bjarne Kvinge  <RKvinge@novell.com>
8044         * TrackBar.cs: Now orientation only switches height / width if
8045         the control's handle is created (Win32 does it like this). Also 
8046         fixed a typo in ToString() for a test to pass, changed the 
8047         exception thrown in set_LargeChange and set_SmallChange to 
8048         match Win32 behaviour, and added TrackBar tests to the unit 
8049         tests.
8051 2006-11-02  Chris Toshok  <toshok@ximian.com>
8053         * XplatUIX11.cs: the atom we want is _NET_WM_STATE_SKIP_TASKBAR,
8054         not _NET_WM_STATE_NO_TASKBAR.
8056 2006-11-02  Jackson Harper  <jackson@ximian.com>
8058         * TextControl.cs: Increment count by one, since in the update view
8059         count - 1 is used.
8061 2006-11-02  Jackson Harper  <jackson@ximian.com>
8063         * TextBoxBase.cs: Use client rectangle not bounds for checking if
8064         the mouse is in the client rectangle (duh).
8066 2006-11-02  Rolf Bjarne Kvinge  <RKvinge@novell.com>
8067         
8068         * TrackBar.cs: Fixed trackbar jumping around when clicking
8069         on it - the trackbar was not detecting correctly at which
8070         side of the thumb the click was done. (fixes #79718)
8072 2006-11-02  Everaldo Canuto  <everaldo@simios.org>
8074         * ListBox.cs: scroll visible area when change SelectedIndex to
8075         a non visible area.  Fixes #79481.
8077 2006-11-01  Jackson Harper  <jackson@ximian.com>
8079         * TextControl.cs: When replacing the selection move the selection
8080         start/end/anchor to the end of the new text.
8082 2006-11-01  Jackson Harper  <jackson@ximian.com>
8084         * XplatUIWin32.cs: When setting the parent change the controls
8085         visibility to it's visibility flag, not to it's old parents
8086         visibility (.Visible walks the parent chain).
8088 2006-11-01  Chris Toshok  <toshok@ximian.com>
8090         * XplatUIX11.cs: revert the #79790 fix, as the simple.
8091         XSetTransientForHint fix breaks paint .net's tool windows.  more
8092         work needed for that one.
8094 2006-11-01  Chris Toshok  <toshok@ximian.com>
8096         * ScrollBar.cs: throw ArgumentException instead of Exception in
8097         LargeChange/SmallChange setters.  fixes unit tests.
8099 2006-10-31      Andreia Gaita <shana.ufie@gmail.com>
8101         * ContainerControl.cs: reverted rev.67183 (which was itself
8102         a reversion of rev.66853... eh).
8103         
8104         * Control.cs: Fixes Reflector hang by changing Focus() call
8105         to what it was before rev.66643 (calling Select() here sets 
8106         ActiveControl, which in some situations calls back Focus and 
8107         eventually does a stack overflow). Temp fix.    
8108         Changes to GetNextControl() to not look for children to select when
8109         parent cannot be selectable (so it looks for siblings instead)  
8110         
8111 2006-10-31  Mike Kestner  <mkestner@novell.com>
8113         * CheckedListBox.cs : off by one error in returned index from
8114         ObjectCollection.Add.  Fixes #79758.
8116 2006-10-31  Chris Toshok  <toshok@ximian.com>
8118         * UpDownBase.cs: remove the OnGotFocusInternal/OnLostFocusInternal
8119         calls for the textbox/spinner, to keep from recursing to the point
8120         where we crash.  Fixes #79760.
8122 2006-10-31  Chris Toshok  <toshok@ximian.com>
8124         * ListControl.cs (set_SelectedValue): don't throw exceptions on
8125         null/"" value, just return.  matches ms's behavior and fixes some
8126         failing tests.
8128 2006-10-31  Chris Toshok  <toshok@ximian.com>
8130         * Control.cs (set_Capture): make a logic a little easier to
8131         follow.
8133         * XplatUIX11.cs (CleanupCachedWindows): zero out the Grab window
8134         if it's being destroyed.  A necessary fix surely, but a bandaid
8135         also, to fix the stuck capture problem in bug #78413.
8137 2006-10-31  Chris Toshok  <toshok@ximian.com>
8139         * XplatUIX11.cs: fix a couple of compiler warnings, and follow the
8140         convention of clearing hwnd.ClientRect when we set the
8141         width/height (so it'll be recalculated by Hwnd).
8143 2006-10-31      Andreia Gaita <shana.ufie@gmail.com>
8145         * ContainerControl.cs: reversed Contains check from
8146         ActiveControl due to hanging problems. This fix
8147         partly regresses #79667 (button does not have
8148         initial focus), so this might be a symptom for 
8149         a larger parenting problem (set_ActiveControl
8150         is being called but the child control does
8151         not have the parent set yet?)   
8152         
8153 2006-10-31  Mike Kestner  <mkestner@novell.com>
8155         * MenuAPI.cs : fix keynav when menu is click activated.
8157 2006-10-31  Jonathan Pobst  <monkey@jpobst.com>
8159         * ToolStrip*: Version 0.2.
8161         * MenuStrip.cs: Version 0.1.
8163         * Form.cs: Add a 2.0 MenuStrip tracker like the 1.1 Menu one.
8165 2006-10-30  Chris Toshok  <toshok@ximian.com>
8167         [ fixes the oversized notify icon issue in bug #79745 ]
8168         
8169         * NotifyIcon.cs: scale the icon down to the size we're given by
8170         the XplatUI layer (this would be faster if we did it once instead
8171         of whenever we paint..)  Also, remove the WM_NCPAINT handling,
8172         since it's never invoked.
8174         * XplatUIX11.cs: the gnome and kde systrays use icons that are 24
8175         pixels high by default, so let's hardcode our systray icon to that
8176         size.  The SYSTEM_TRAY protocol should really have a way for
8177         client apps to query for the correct icon size.. but oh well.  A
8178         couple of patches to deal with the screwy client_window ==
8179         whole_window notifyicon stuff (we don't want to PerformNCCalc, for
8180         instance, and also make sure we don't XSelectInput twice).
8182 2006-10-30  Chris Toshok  <toshok@ximian.com>
8184         * Control.cs: ugh, the unit test fix (CH11, yesterday) breaks when
8185         recreating forms.  Control recreation is the bane of my existence.
8186         Fix it in a way that keeps everyone happy.
8188 2006-10-30  Chris Toshok  <toshok@ximian.com>
8190         * XplatUIX11.cs: use StructureNotifyMask on all whole_windows, not
8191         just non-CHILD ones.  otherwise sometimes scrollbars end up with
8192         client_windows not being resized to the proper size (ReportBuilder
8193         shows this extremely well).
8195 2006-10-30  Chris Toshok  <toshok@ximian.com>
8197         * XplatUIX11.cs (SetWMStyles): reinstate the XSetTransientForHint
8198         for non-WS_EX_APPWINDOW windows.  This is what keeps them from
8199         showing up in the gnome taskbar.  Fixes bug #79790.
8201 2006-10-30  Chris Toshok  <toshok@ximian.com>
8203         * ApplicationContext.cs: guard against a NRE.
8205         * Application.cs: null out the old MainForm for the context, so we
8206         don't try to use it again once it's disposed.  Fixes bug #79783.
8208 2006-10-30  Chris Toshok  <toshok@ximian.com>
8210         * DataGrid.cs (set_DataSource, set_DataMember): if we have a
8211         BindingContext, set the data source directly, otherwise do the
8212         lazy approach - the actual ListManager will be created when we get
8213         a BindingContext. Fixes bug #79700.
8215 2006-10-30  Jonathan Pobst  <monkey@jpobst.com>
8217         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIOSX.cs,
8218           XplatUIX11.cs: Remove old 2 parameter SetVisible.
8220         * Control.cs: Use the new 3 parameter SetVisible with activate = true.
8222 2006-10-30  Jonathan Pobst  <monkey@jpobst.com>
8224         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs: Add an overload
8225         of SetVisible that allows a window to be shown, but not activated.
8226         This is needed on Windows for MenuStrip, and can probably be used
8227         with MainMenu and ComboBox to fix the focus stealing issues on
8228         Windows.
8230         * XplatUIOSX.cs, XplatUIX11.cs: Not needed, call existing SetVisible.
8232 2006-10-30  Alexander Olk  <alex.olk@googlemail.com>
8234         * PictureBox.cs: Fix the output of the ToString method.
8236 2006-10-29  Chris Toshok  <toshok@ximian.com>
8238         * Control.cs (get_TopLevelControl): fix bug #79781.
8240 2006-10-29  Chris Toshok  <toshok@ximian.com>
8242         * ListControl.cs (set_DataSource): throw Exception here, not
8243         ArgumentException, to match MS behavior.
8245 2006-10-29  Chris Toshok  <toshok@ximian.com>
8247         * Form.cs: remove the try-catch's around calls to GetWindowState.
8248         We can just check the return value.
8250         * XplatUIX11.cs: don't throw exceptions from GetWindowState.
8251         Instead return -1.
8253         * XplatUI.cs: Add note about additional return value for
8254         GetWindowState.
8256 2006-10-29  Chris Toshok  <toshok@ximian.com>
8258         * Control.cs (CreateHandle): when we create our handle, we also
8259         create the handles of our child controls.  Fixes one of the
8260         Control unit tests (CH11).
8262 2006-10-28  Alexander Olk  <alex.olk@googlemail.com>
8264         * MimeIcon.cs: If a gnome icon doesn't exist add a default icon.
8266 2006-10-28  Alexander Olk  <alex.olk@googlemail.com>
8268         * ThemeClearlooks.cs: A little speedup.
8270 2006-10-27  Chris Toshok  <toshok@ximian.com>
8272         * Control.cs: implement Control.FromChildHandle in a way that
8273         matches the docs (and fixes the failed test.)
8275 2006-10-27  Chris Toshok  <toshok@ximian.com>
8277         * DataGridTableStyle.cs: reproduce buggy MS behavior (with
8278         comments).
8280         * DataGrid.cs: implement ResetForeColor such that the tests
8281         succeed.
8282         
8283 2006-10-27  Chris Toshok  <toshok@ximian.com>
8285         * ToolBarButton.cs: setting text/tooltiptext to null results in it
8286         being set to "".  Fixes bug #79759.
8288 2006-10-27  Jackson Harper  <jackson@ximian.com>
8290         * TextControl.cs: We need to clear the entire selection area when
8291         setting the start, otherwise multiline selections are still
8292         visible.
8294 2006-10-26  Chris Toshok  <toshok@ximian.com>
8296         * PropertyGridView.cs: 
8298         - ifdef all the code specific to the double
8299         buffer case, and provide some alternatives in the non-doublebuffer
8300         code, which makes heavy use of XplatUI.ScrollWindow to move things
8301         around without having to invalidate (and cause flicker).  There
8302         are still some drawing problems in the non-doublebuffered case, so
8303         DOUBLEBUFFER is defined by default.
8305         - Fix the way dropdowns are handled.  now we explicitly watch for
8306         the events which might cause the dropdown to close, and break out
8307         of the nested event loop there.  This gets rid of all Capture
8308         code, at the expense of the Msg special casing.  Seems to work,
8309         though, and fixes bug #79743.
8311 2006-10-27  Rolf Bjarne Kvinge <RKvinge@novell.com>
8312         * Control.cs: SetIsRecreating now recreates implicitly added
8313         child controls as well. Finally fixes #79629. The flag passed to 
8314         SetIsRecreating has also been removed since it wasn't used.
8315         
8316 2006-10-26  Carlos Alberto Cortez <calberto.cortez@gmail.com>
8318         * PageSetupDialog.cs: Clean some code, fix some bits, 
8319         add some checks, and add a printer sub-dialog.
8321 2006-10-26  Chris Toshok  <toshok@ximian.com>
8323         * PropertyGrid.cs: make set_SelectedObject call
8324         set_SelectedObjects, and move the duplicate logic to the
8325         SelectedObjects setter.  Also, raise SelectedObjectsChanged.
8327         * PropertyGridView.cs: hide the textbox when we get a
8328         SelectedObjectsChanged event.
8330         Fixes bug #79748.
8332 2006-10-26  Chris Toshok  <toshok@ximian.com>
8334         * PropertyGridView.cs: deal with the type converter not supporting
8335         GetStandardValues() or GetStandardValues() returning null, which
8336         is does in the default case.  Fixes #79742.
8338 2006-10-25  Andreia Gaita <shana.ufie@gmail.com>
8340         * CheckedListBox.cs: nunit no longer crashes when selecting 
8341         Project/Edit menu option
8342         
8343 2006-10-25  Andreia Gaita <shana.ufie@gmail.com>
8345         * MenuAPI.cs: prevent ExecFocusedItem from blowing up if there
8346         is no menu selected. fixes #79739
8348 2006-10-25  Chris Toshok  <toshok@ximian.com>
8350         * PropertyGridView.cs: factor out the splitter invalidation code
8351         into the SplitterPercent setter, and for kicks implement the
8352         Ctrl-Left/Ctrl-Right handling that moves the splitter by a small
8353         amount in either direction.
8355 2006-10-25  Chris Toshok  <toshok@ximian.com>
8357         * PropertyGridView.cs: do some cleanup of the brush used to draw
8358         text - read only fields should be grayed out.  not sure how to do
8359         this with the textbox, though.  but the textbox's should also be
8360         readonly now at least.  Also, hide/show the textbox when resizing
8361         the control.
8362         
8363         * CursorConverter.cs: use System.Reflection when getting the
8364         properties of Cursors, as TypeDescriptor.GetProperties isn't
8365         returning static properties.
8367 2006-10-25  Chris Toshok  <toshok@ximian.com>
8369         * PropertyGridView.cs: factor out the up/down handling, and reuse
8370         it for page up/down.  also add End/Home support.
8372 2006-10-25  Chris Toshok  <toshok@ximian.com>
8374         * PropertyGridView.cs:
8376         - ensure the selected grid item is visible in the scrolled area,
8377         fixes bug #79572.
8379         - fix Keys.Down handling when you're on the last item in the
8380         propertygrid.
8382 2006-10-25  Mike Kestner  <mkestner@novell.com>
8384         * MenuAPI.cs : set the ActiveTracker for MainMenu non-popup 
8385         clicks too.  Fixes #79725.
8387 2006-10-24  Chris Toshok  <toshok@ximian.com>
8389         * PropertyGrid.cs: use property.Converter instead of
8390         TypeDescriptor.GetConverter(property.PropertyType), so we catch
8391         TypeConverters declared on the property as well as on the
8392         PropertyType.  Fixes bug #79678.
8394 2006-10-24  Alexander Olk  <alex.olk@googlemail.com>
8396         * MimeIcon.cs, Mime.cs:
8397           Fallback to the default platform handler if no shared mime info
8398           stuff exists (fixes #79693).
8400 2006-10-20 Andreia Gaita <shana.ufie@gmail.com>
8401         * ContainerControl.cs: Incorrect contains check in ActiveControl 
8402         from previous fix (duh).
8404 2006-10-20  Chris Toshok  <toshok@ximian.com>
8406         * PropertyGridView.cs: the dropdown should be MIN(number of items
8407         in list, 15).  Fixes #79551.
8409 2006-10-20 Andreia Gaita <shana.ufie@gmail.com>
8410         Fixes #79384, #79394, #79652, #79667
8411         * Application.cs: 
8412         
8413         - Modal windows are now destroyed in the proper order for windows
8414         
8415         * ContainerControl.cs:
8416         
8417         - ActiveControl setter has more conditions on when to return:
8418                 - if we're reselecting the active control, but it actually
8419                 didn't have focus (window hidden or some such), it runs
8420                 - if the active control being selected doesn't actually 
8421                 exist in the container, it returns
8422         
8423         * Form.cs
8424         
8425         - The ShowDialog now gets the current form as the owner when
8426         invoking without parameters, and correctly activates the owner 
8427         when returning
8428         
8429         * MessageBox.cs
8430         
8431         - MessageBox now catches the Escape key to exit
8433 2006-10-20  Chris Toshok  <toshok@ximian.com>
8435         * PropertyGridView.cs: fix a number of issues (bug #78565, and
8436         most of bug #79676):
8438         - you can navigate around the property grid with the arrow keys.
8440         - the dropdown is sized properly when the pg has a vertical
8441         scrollbar.
8443         - fix the indentation for subentries, and properly select the
8444         entire label rect.
8446         - fix the gray bar's drawing (only draw it to the last element,
8447         not for the height of the control.  Also make sure we draw that
8448         last horizontal grid line.
8450         - use the same mechanism the datagrid uses wrt the editing textbox
8451         when scrolling/resizing/etc.  Namely, we hide it first, do the
8452         operation, then show it again (if it's still visible).
8453         
8454         - aggressively remove a lot of unnecessary refreshes (and also
8455         calls to Invalidate(). call more limited variants, and only redraw
8456         what we need.)
8457         
8458         * PropertyGrid.cs:
8460         - when we're populating the merged collection, fill in the UI
8461         parent with either the passed in item, or the category item we
8462         create.
8464         - remove the Refresh call from the BorderHelpControl.OnSizeChanged.
8466         * GridItem.cs: drop some fully qualified names.
8467         
8468         * GridEntry.cs: add a "UIParent", which is basically the parent
8469         treenode.
8471         * GridItemCollection.cs: add an IndexOf method.
8473 2006-10-20  Mike Kestner  <mkestner@novell.com>
8475         * MainMenu.cs : go back to Draw in OnMenuChanged.  Until we get
8476         a working win32 NC invalidation mechanism, we can't invalidate
8477         menus.  [Fixes #79705]
8479 2006-10-20  Mike Kestner  <mkestner@novell.com>
8481         * ListBox.cs : don't update the VScrollbar if the list is empty,
8482         just hide it.  [Fixes #79692]
8484 2006-10-20  Jackson Harper  <jackson@ximian.com>
8486         * RichTextBox.cs: Handle some special chars better, and don't skip
8487         the entire group when we encounter a special char that we don't
8488         handle correctly.
8490 2006-10-18  Chris Toshok  <toshok@ximian.com>
8492         * PropertyGridView.cs: address a number of issues from bug #79676,
8493         mostly of the cosmetic variety.
8495         - The highlight rectangle for indented items not extends all the
8496         way to the left.
8498         - Indented items aren't indented so much.
8500         - the dropdown is properly sized width-wise if the pg has a
8501         vertical scrollbar.
8503 2006-10-18  Chris Toshok  <toshok@ximian.com>
8505         * XplatUIX11.cs (SystrayAdd): a rather convoluted change, but the
8506         systray stuff is rather convoluted to begin with.
8508         systray icons are a single window for some reason (that I haven't
8509         figured out yet), and for them, client_window == whole_window.
8510         Given the way the tests are structured elsewhere to determine
8511         which paints are pending (client vs. nc), that situation will
8512         always yield PAINT, not NCPAINT.  So, if we have a pending
8513         nc_expose and no pending expose, remove the hwnd from the paint
8514         queue, and also set nc_expose_pending to false, to keep us from
8515         blocking further expose's adding the hwnd to the paint queue.
8517         phew.  like i said, a rather convoluted change.  Fixes the
8518         notifyicon repaint issues in bug #79645.
8520 2006-10-18  Chris Toshok  <toshok@ximian.com>
8522         * Form.cs: when getting the backcolor of the form, don't get
8523         base.BackColor, as this allows parents to influence the background
8524         color.  This breaks mdi forms.  Instead, if the background_color
8525         is empty, return the default.
8527 2006-10-18  Chris Toshok  <toshok@ximian.com>
8529         * XplatUIX11.cs: change some debug ifdefs, and return XGetParent
8530         to being private instead of internal static.
8532         * Control.cs: remove all the stupid ParentWaitingOnRecreation
8533         crap, it wasn't working for more deeply nested controls anyway,
8534         and we already have the is_recreating flag - use that instead.
8535         Before calling DestroyHandle in RecreateHandle, recurse through
8536         the control tree setting it to true.  this returns the recreate
8537         code to much of its original simplicity, while now guaranteeing we
8538         actually recreate everything we're supposed to.  This change gets
8539         fyireporting actually showing mdi children.
8541 2006-10-17  Chris Toshok  <toshok@ximian.com>
8543         * Form.cs: remove some debug spew, and collapse some duplicate
8544         code at the end of SetClientSizeCore.
8546         * XplatUIX11.cs: 
8547         - add some more debug spew here too wrt Destroy handling.
8548         - don't call hwnd.Dispose in DestroyWindow, it's effectively done
8549         in Control's handling of WM_DESTROY.
8550         - Remove the handling of zombie window DestroyNotifies from the
8551         event loop - we don't need it.  Now the only DestroyNotifies we
8552         actually handle are ones generated by X.
8553         - When sending _NET_ACTIVE_WINDOW, the first param should be 1, to
8554         match gtk's (functioning) handling of this. This keep metacity
8555         from leaving droppings in the form of wm borders with no window
8556         contents all over the place.
8558         * Control.cs:
8559         - add a bunch of debug spew wrt control recreation.
8560         - fix a bug where we weren't tracking Visible properly on
8561         recreated hwnds.
8562         - fixed the WM_PAINT double buffer handling to support re-entrant
8563         calls (yes, i know it's gross, but it's happening to us).
8565 2006-10-17  Rolf Bjarne Kvinge  <rolfkvinge@ya.com>
8566         * ThemeWin32Classic.cs: changed drawing of selected days
8567         to make them look better.
8569 2006-10-16  Chris Toshok  <toshok@ximian.com>
8571         * Hwnd.cs: replace the user_data/client_dc/non_client_dc with
8572         drawing_stack.  Nuke the ClientDC/NonClientDC properties.
8574         * XplatUIX11.cs: move away from using hwnd.client_dc and
8575         hwnd.non_client_dc and on to a stack of dc's (and in window's
8576         case, PAINTSTRUCT's), so we can deal with nested Paint calls
8577         without puking or not disposing of Graphics objects.
8579         * XplatUIOSX.cs: same.
8581         * XplatUIWin32.cs: same.
8583 2006-10-03  Alexander Olk  <alex.olk@googlemail.com>
8585         * FileDialog.cs: Don't call on_directory_changed inside
8586           OnSelectedIndexChanged (it changes the SelectedIndex too).
8587           Instead move it to OnSelectionChangeCommitted.
8589 2006-10-13  Chris Toshok  <toshok@ximian.com>
8591         * XplatUIX11.cs: more Destroy work.  the current code does the
8592         following things, in order:
8594         1. Enumerates all handles of all controls at or below the one
8595         being destroyed, in pre-order.  As it is doing this, it marks the
8596         handles as zombie and clears all references to them.
8597         
8598         2. calls XDestroyWindow on the window passed in.
8600         3. SendMessage's WM_DESTROY to all he handles in the accumulated
8601         list.
8603 2006-10-13  Chris Toshok  <toshok@ximian.com>
8605         * XplatUIX11.cs: set hwnd.zombie to true before calling
8606         SendMessage (WM_DESTROY).  this keeps us from marking the new
8607         window a zombie, and also keeps us from calling sendmessage at
8608         all.
8610 2006-10-13  Jackson Harper  <jackson@ximian.com>
8612         * TextControl.cs: Do not show the caret and selection at the same
8613         time.  Reduces ugliness by 35%.
8615 2006-10-13  Chris Toshok  <toshok@ximian.com>
8617         * XplatUIX11.cs (SendWMDestroyMessages): set the hwnd to be a
8618         zombie after we do the recursive call, so we actually do call
8619         SendMessage on the children controls.
8620         (GetMessage): if we find a pending paint event for a zombie hwnd,
8621         remove the hwnd from the paint queue, or else it will always be
8622         there (and we'll effectively loop infinitely)
8624 2006-10-13  Mike Kestner  <mkestner@novell.com>
8626         * MenuItem.cs : add Selected format under keynav too.
8627         Fixes #79528.
8629 2006-10-13  Gert Driesen  <drieseng@users.sourceforge.net>
8631         * PropertyGrid.cs: Fixed some NRE's and small difference between our
8632         implementation and that of MS.
8634 2006-10-13  Chris Toshok  <toshok@ximian.com>
8636         * Control.cs (OnInvalidated) only futz with the invalid_region if
8637         the control is double buffered.  this fixes the apparent hang in
8638         the ListView unit tests.  Someone needs to make the
8639         BeginEndUpdateTest not call OnInvalidated 15004 times, though..
8641 2006-10-13  Chris Toshok  <toshok@ximian.com>
8643         * PropertyGridView.cs:
8645         - do a little refactoring so that only one place calls
8646         dropdown_form.Hide, and that is CloseDropDown.  make everywhere
8647         else call that.  Also make it Refresh, since there are redraw bugs
8648         otherwise (we should take a look at that...)
8650         - do a little more refactoring work to share the body of code
8651         involved with the drop down.  it was duplicated in the code
8652         dealing with the listbox handling and in the code dealing with the
8653         UITypeEditors.
8655         - add a Capture to the dropdown form's control once it's
8656         displayed, and add a MouseDown handler that checks to make sure
8657         the position is inside the control.  If it's not, close the
8658         dropdown.  This fixes #78190.
8660         - in SetPropertyValueFromUITypeEditor, only call SetPropertyValue
8661         if the value is different than the initial value.
8662         
8663 2006-10-13  Andreia Gaita  <shana.ufie@gmail.com>
8665         * Control.cs: see #78650
8666         - Fixed GetNextControl for several cases:
8667                 - Changed FindFlatForward to return 
8668                 correct sibling control when more than one
8669                 control has same TabIndex as the currently 
8670                 focused one.
8671                 - Changed FindFlatBackward to loop children
8672                 from last to first and apply same logic as in
8673                 FindFlatForward
8674                 - Changed FindControlForward to search for
8675                 children when control is not a container
8676                 but has children, or search for siblings if
8677                 control is a container...
8678                 - Changed FindControlBackward   to continue
8679                 searching for child controls when hitting 
8680                 Panel-like parents
8681                 
8682         - Fixed Focus method to update ActiveControl
8683         (FocusTest.FocusSetsActive failure)
8684         
8685         * TabControl.cs:
8686         - Focus rectangle now refreshes when gaining
8687         or losing focus
8688         - Removed grab for Tab key on IsInputKey that 
8689         was keeping tab navigation from working (#78650)
8691 2006-10-13  Chris Toshok  <toshok@ximian.com>
8693         * PropertyGridView.cs:
8694         - Rewrite SetPropertyValue to loop over SelectedGridItem's
8695         SelectedObjects.
8697         - Deal with GridItem.Value == null a few places.
8699         * PropertyGrid.cs: 
8700         - replace the PopulateGridItemCollection with a pair of methods
8701         which compute the intersection of all the properties in the
8702         SelectedObjects array.  Fixes #79615.
8704         - Throw ArgumentException from set_SelectedObjects if there's a
8705         null in the array.
8707         - Add GetTarget method which can be used to traverse up the
8708         GridItem.Parent chain.  It depends on the assumption that
8709         selected_objects for different GridEntries are always in the same
8710         order (a safe assumption).  Use this method and loop over all the
8711         selected objects in the entry when calling RemoveValueChanged and
8712         AddValueChanged.
8713         
8714         * GridEntry.cs: Make this handle multiple selected objects.
8715         .Value returns null if not all the selected objects share the same
8716         value.
8718 2006-10-12  Jonathan Pobst  <monkey@jpobst.com>
8719         * ToolStrip.cs, ToolStripButton.cs, ToolStripComboBox.cs,
8720           ToolStripControlHost.cs, ToolStripItem.cs, ToolStripLabel.cs,
8721           ToolStripProfessionalRenderer.cs, ToolStripProgressBar.cs,
8722           ToolStripSeparator.cs, ToolStripSplitStackLayout.cs,
8723           ToolStripTextBox.cs: Add accessibility, fix attributes/API and
8724         add additional functionality.
8726 2006-10-12  Mike Kestner  <mkestner@novell.com>
8728         * ErrorProvider.cs : new ToolTipWindow ctor sig.
8729         * HelpProvider.cs : new ToolTipWindow ctor sig.
8730         * ToolTip.cs : remove ToolTip param from Window sig since it is
8731         not used.
8732         * ToolBar.cs : add tooltip support.  Fixes #79565.
8734 2006-10-12  Rolf Bjarne Kvinge  <rolfkvinge@ya.com>
8736         * ComboBox.cs: move the events in set_SelectedIndex to 
8737         after the call to HighlightIndex in order to avoid 
8738         possible recursion and subsequent problems with the call
8739         to HighlightIndex and include a range check in 
8740         set_HighlightIndex. Fixes #79588
8741         
8742 2006-10-12  Rolf Bjarne Kvinge  <rolfkvinge@ya.com>
8744         * MonthCalendar.cs: When FirstDayOfWeek is default set firstday 
8745         to ui thread's settings instead of sunday. 
8746         * ThemeWin32Classic.cs: Localize the day string. Fixes #79563
8748 2006-10-12  Rolf Bjarne Kvinge  <rolfkvinge@ya.com>
8750         * DateTimePicker.cs
8751         * MonthCalendar.cs
8752         * ThemeWin32Classic.cs: rewrote DateTimePicker to fix bug #78364
8753         and implement missing functionality (selecting different parts 
8754         of the date and edit them individually with the keyboard).
8755         
8756 2006-10-11  Chris Toshok  <toshok@ximian.com>
8758         * Control.cs (OnInvalidated): fix NRE relating to last change.
8760 2006-10-11  Chris Toshok  <toshok@ximian.com>
8762         * XplatUIX11.cs (SetWMStyles): make sure we include the MAXIMIZED
8763         atoms in _NET_WM_STATE here if the window is maximized.  We need
8764         to do this because we're *replacing* the existing _NET_WM_STATE
8765         property, so those atoms will be lost otherwise, and any further
8766         call to GetWindowState will return Normal for a window which is
8767         actually maximized.  Fixes #79338.
8769 2006-10-11  Jackson Harper  <jackson@ximian.com>
8771         * TextControl.cs: Special case for setting selection end to
8772         selection start, we basically kill the anchor.
8773         - some todo comments.
8775 2006-10-11  Chris Toshok  <toshok@ximian.com>
8777         * Control.cs: switch to using an "invalid_region" to track which
8778         parts of the image buffer need updating.  This is more code than
8779         the simple fix from r66532.  That version just attempted to always
8780         fill the entire buffer on redraw, which turns out to be
8781         inefficient when invalidating small rectangles.  This version
8782         simply adds the invalid rectangle to the invalid region.  When we
8783         get any WM_PAINT message we see if it can be filled using the
8784         image buffer, and if it can't (if the paint event's clip rectangle
8785         is visible in the invalid region) we first fill the image buffer.
8786         So, the image buffer is still a cache, we just fill it lazily.
8788         * PaintEventArgs.cs: remove the SetClipRectangle method, we don't
8789         need it any longer.
8791 2006-10-11  Chris Toshok  <toshok@ximian.com>
8793         * XplatUIX11.cs (SetWindowPos): we need to update both position as
8794         well as size after calling XMoveResizeWindow.  This keeps us from
8795         ignoring future SetWindowPos calls.  Fixes the disappearing
8796         DateTimePicker in the ToolBarDockExample from bug #72499.
8798 2006-10-11  Chris Toshok  <toshok@ximian.com>
8800         * TextBoxBase.cs: reorder things a bit when it comes to
8801         resizing-causing-recalculation.  we were recalculating the
8802         document when our position was changed, which shouldn't happen.
8803         We only care about size changes.  Clear up some more redundant
8804         recalculation calls while I'm at it.  This makes the toolbar dock
8805         example snappy when you're just dragging toolbars around (since it
8806         causes a relayout whenever you move one.)
8808 2006-10-11  Chris Toshok  <toshok@ximian.com>
8810         * ToolBarButton.cs (get_Rectangle): this only returns
8811         Rectangle.Empty if Visible == false, or Parent == null.
8812         Parent.Visible doesn't matter.
8814 2006-10-10  Chris Toshok  <toshok@ximian.com>
8816         * Control.cs, PaintEventArgs.cs: "internal set { .. }" isn't loved
8817         by .net 1.1, so switch to an internal method instead.
8819 2006-10-10  Chris Toshok  <toshok@ximian.com>
8821         * Control.cs (WM_PAINT): when a control is double buffered we draw
8822         initially to the ImageBuffer and then copy from there.  But when a
8823         parent control which has child controls is double buffered, the
8824         initial drawing doesn't encompass the entire ClientRectangle of
8825         the parent control, so we end up with uninitialized bits (this is
8826         easily seen by dragging the top toolbar in
8827         wf-apps/ToolBarDockExample to the right, quickly).  The fix is to
8828         manually set the ClipRectangle of the paint_event (only the one we
8829         use to populate the ImageBuffer) to ClientRectangle.  Fixes more
8830         of the nastiness in bug #72499.
8832         * PaintEventArgs.cs: Add an internal setter for ClipRectangle,
8833         which we use in Control.cs's WM_PAINT handling.
8835 2006-10-10  Jackson Harper  <jackson@ximian.com>
8837         * TextBoxBase.cs: Finish off the autoscrolling stuff.
8839 2006-10-10  Chris Toshok  <toshok@ximian.com>
8841         * Cursor.cs: Apply a slightly different patch to the one suggested
8842         in #79609.
8844 2006-10-10  Jackson Harper  <jackson@ximian.com>
8846         * MenuItem.cs: Make sure to put the mdi child in the hashtable,
8847         not the parent form.
8848         * TextControl.cs: use difference in old line count vs new count to
8849         calculate how many lines were added, this takes into account soft
8850         line breaks properly.
8852 2006-10-10  Chris Toshok  <toshok@ximian.com>
8854         * LinkLabel.cs: don't call MeasureCharacterRanges against a
8855         rectangle located at 0,0 and the size of the text.  Use
8856         ClientRectangle instead.  This fixes rendering of non-left aligned
8857         link labels.
8859 2006-10-10  Jackson Harper  <jackson@ximian.com>
8861         * TextBoxBase.cs: When we set the selection start position the
8862         caret.
8863         * TextControl.cs: Need to update the caret when we decrement it to
8864         zero.
8865         - Make sure that the selection_visible flag gets reset to false if
8866         the selection isn't visible.  Before this you could get it set to
8867         visible by changing the selection start, then changing the end to
8868         equal the start.
8870 2006-10-09  Jackson Harper  <jackson@ximian.com>
8872         * TreeView.cs: Don't update scrollbars when we aren't visible.
8873         * TreeNodeCollection.cs: Only need to update scrollbars if being
8874         added to an expanded visible node or the root node.
8876 2006-10-09  Chris Toshok  <toshok@ximian.com>
8878         * XplatUIX11.cs (SendMessage): fix NRE.
8880 2006-10-09  Jackson Harper  <jackson@ximian.com>
8882         * TextBoxBase.cs: Implement horizontal autoscrolling.
8883         * TextControl.cs: Add a movement types that allows moving forward
8884         and backwards without wrapping.
8886 2006-10-09  Mike Kestner  <mkestner@novell.com>
8888         * ListViewItem.cs : layout changes for wrapped LargeIcon labels
8889         with focus "expansion" of labels.  Fixes #79532 and then some.
8890         * ThemeWin32Classic.cs : add LineLimit to ListView label format
8891         when wrapping.
8893 2006-10-09  Jackson Harper  <jackson@ximian.com>
8895         * TextBoxBase.cs: Set the default max values to MaxValue since
8896         we use the scrollbar for autoscrolling and the default value is
8897         100.  If we don't do this the caret won't keep up with typing
8898         after about 18 characters.
8899         * TextControl.cs: Make sure the selection is offset by the
8900         viewport x.  This fixes selection when using auto scrolling.
8902 2006-10-07  Andreia Gaita <shana.ufie@gmail.com>
8903         
8904         * Form.cs: The active control should be selected after the 
8905         OnLoad so that any child control initialization that affects
8906         the selection is done. Fixes #79406
8908 2006-10-06  Chris Toshok  <toshok@ximian.com>
8910         * XplatUIX11.cs: This is perhaps a dangerous change, but it seems
8911         to have no evil effects.
8913         - Stop selecting StructureNotifyMask on non-toplevel windows.
8915           The only way children should be resized is by using the SWF api,
8916           and we already send WM_WINDOWPOSCHANGED messages in those cases.
8917           Toplevel windows can be interacted with via the window manager,
8918           and so we keep the input mask there.
8920           The other event StructureNotifyMask gives us (that we care
8921           about) is DestroyNotify.  The code is already structured such
8922           that it assumes we won't be getting a DestroyNotify event for
8923           the window we pass to XDestroyWindow (which is what
8924           StructureNotifyMask is supposed to guarantee.)  So, that code
8925           shouldn't be affected by this either.
8927         - Stop selecting VisibilityChangeMask altogether.
8929           We weren't doing anything with the resulting events anyway.
8930         
8931         This vastly reduces the number of X requests and events we see
8932         when resizing/laying out a large ui.
8934 2006-10-06  Chris Toshok  <toshok@ximian.com>
8936         * ScrollableControl.cs (DisplayRectangle): we need to take into
8937         account the DockPadding regardless of whether or not auto_scroll
8938         == true.  rework this slightly to this effect, and fix bug #79606,
8939         and part of #72499 (you can now see the drag handles and drag
8940         toolbars around).
8942 2006-10-06  Gert Driesen  <drieseng@users.souceforge.net>
8944         * ListViewItem.cs: Collections of selected and checked items are now
8945         dynamically rebuilt. Whenever an item is (un)checked or (de)selected
8946         we mark the collection "dirty".
8947         * ListView.cs: Marked collections readonly. Modified UpdateSelection
8948         to only clear SelectedItems when a new item is selected and MultiSelect
8949         is enabled. CheckedItems and SelectedItems now subscribe to Changed
8950         event of ListViewItemCollection, and mark its list dirty whenever
8951         that event is fire. This allows us to return selected/checked items 
8952         in the same order as they are in the Items collection. This matches
8953         the MS behavior.
8955 2006-10-06  Chris Toshok  <toshok@ximian.com>
8957         * NotifyIcon.cs (HandleMouseUp): only show the context menu on
8958         right mouse clicks.  Fixes bug #79593.
8960 2006-10-06  Chris Toshok  <toshok@ximian.com>
8962         * Splitter.cs: doh, fix splitters that don't want to cancel the
8963         movement when you drag them.  Also, impose the limits on the
8964         values we send to the SplitterMovingEvent.  Fixes #79598.
8966 2006-10-06  Jackson Harper  <jackson@ximian.com>
8968         * TextBoxBase.cs: Ignore whether or not the scrollbar is enabled,
8969         since we use this for auto scrolling also.
8971 2006-10-05  Chris Toshok  <toshok@ximian.com>
8973         * DataGridBoolColumn.cs: Nuke the code from ConcedeFocus.  I'm
8974         beginning to think that most datagrid column types don't need this
8975         method.  Fixes bug #79392.
8977 2006-10-05  Chris Toshok  <toshok@ximian.com>
8979         * DataGrid.cs: move back to a more lazy scheme for creating the
8980         CurrencyManager, so we aren't updating it every time you set
8981         either DataSource or DataMember.  Also, don't call
8982         RecreateDataGridRows if the currency manager hasn't changed.
8984 2006-10-05  Chris Toshok  <toshok@ximian.com>
8986         * ComboBox.cs: by the time the OnSelectionChangeCommitted event is
8987         emitted, SelectedIndex should already be updated.  Fixes bug
8988         #78929.
8990 2006-10-05  Jonathan Pobst  <monkey@jpobst.com>
8992         * ToolStripComboBox.cs, ToolStripControlHost.cs, ToolStripProgressBar,
8993           ToolStripTextBox.cs: Initial commit.
8994         * ToolStripItem.cs: Fixes for OnLayout, BackColor, Parent.
8996 2006-10-05  Jackson Harper  <jackson@ximian.com>
8998         * TabControl.cs: We need to invalidate the tab control area when
8999         new ones are added (duh).
9001 2006-10-03  Chris Toshok  <toshok@ximian.com>
9003         * Form.cs (ProcessDialogKey): if the focused control is in this
9004         form and is a button, call its PerformClick method here.  Fixes
9005         #79534.
9007 2006-10-04  Jackson Harper  <jackson@ximian.com>
9009         * TabPage.cs: Ignore setting of Visible, and add an internal
9010         method for setting the controls visibility.  TabPage's Visible
9011         property is a little strange on MS, this seems to make us
9012         compatible, and fixes cases where people set all the tab pages to
9013         visible.
9014         * TabControl.cs: Use the new internal setting on tab pages
9015         visibility.
9017 2006-10-03  Mike Kestner  <mkestner@novell.com>
9019         * ComboBox.cs : raise Click on ComboTextBox clicks. Fixes #79555.
9021 2006-10-03  Mike Kestner  <mkestner@novell.com>
9023         * ListView.cs : use is_visible instead of Visible to check if 
9024         scrollbars should be placed/sized.  Also some max_wrap_width
9025         love for LargeIcon view.  [Fixes #79533]
9027 2006-10-03  Atsushi Enomoto  <atsushi@ximian.com>
9029         * TextControl.cs :
9030           Make set_TextAlign() do actually update the align. Fixed #78403.
9032 2006-10-03  Chris Toshok  <toshok@ximian.com>
9034         * DataGrid.cs: fix a crash when switching datasources if the
9035         vertical scrollbar is at someplace other than Value = 0.  Also,
9036         reduce the number of recalculation passes we do in SetDataSource
9037         from 2 to 1.
9039 2006-10-03  Jackson Harper  <jackson@ximian.com>
9041         * TextBoxBase.cs: Move the if value the same bail check up, we
9042         don't want to empty the document if it is already empty, this
9043         seems to severly mess up the caret.  TODO: I should probably fix
9044         the empty statement to update teh caret somehow.
9046 2006-10-03  Chris Toshok  <toshok@ximian.com>
9048         * ThemeWin32Classic.cs, DataGrid.cs: some changes so that the
9049         incredibly hacky Windows.Forms FAQ autosize rows entry (it uses
9050         reflection, an internal row type, properties on said type, etc.)
9051         will work with our datagrid.  Fixes #79531.
9053 2006-10-03  Alexander Olk  <alex.olk@googlemail.com>
9055         * FileDialog.cs: Don't crash if a path is not accessible
9056           (System.UnauthorizedAccessException). Fixes #79569.
9057         * MimeIcon.cs: Workaround for a Uri bug. Unix paths/files can have
9058           a ':' too. Return unknown icon for those paths/files.
9060 2006-10-03  Sebastien Pouliot  <sebastien@ximian.com>
9062         * ToolTip.cs: Fix rare, but possible, NRE on MouseEnter when 
9063         GetContainerControl returns null.
9065 2006-10-02  Chris Toshok  <toshok@ximian.com>
9067         * XplatUIX11.cs (GetWindowState): use hwnd.client_window in the
9068         call to XGetWindowAttributes instead of "handle".  fixes an X
9069         error using notifyicon after the NotifyIconWindow to Form base
9070         class switch.
9072 2006-10-02  Chris Toshok  <toshok@ximian.com>
9074         * XplatUIX11.cs (QueryPointer): new function, encapsulating the
9075         server grab and looping we need to do to get down to the most
9076         deeply nested child window.
9077         (SetCursorPos): use QueryPointer instead of GetCursorPos, and call
9078         QueryPointer again after the WarpPointer so we can generate a
9079         proper (fake) MotionNotify event to be enqueued in the destination
9080         window's queue.
9081         (GetCursorPos): call QueryPointer.
9083         Fixes #79556.
9085 2006-10-02  Jackson Harper  <jackson@ximian.com>
9087         * NotifyIcon.cs: Derive the notify icon from a form, so things
9088         like FindForm work on it.
9089         - Swallow the WM_CONTEXTMENU message, since that is generated on
9090         mouse down, and context menu is a mouse up kinda guy.  I believe
9091         the correct fix here is probably to make the notify icon entirely
9092         NC area, but this seems to work fine for anyone not manipulating
9093         WndProc.
9095 2006-10-02  Jonathan Pobst  <monkey@jpobst.com>
9097         * ToolStrip.cs, ToolStripButton.cs, ToolStripItem.cs,
9098           ToolStripItemCollection.cs, ToolStripLabel.cs,
9099           ToolStripProfessionalRenderer.cs, ToolStripRenderer.cs,
9100           ToolStripSeparator.cs, ToolStripSplitStackLayout.cs:
9101           Initial implementation.
9102         * TextRenderer.cs: Provide padding to MeasureText.
9104 2006-10-02  Sebastien Pouliot  <sebastien@ximian.com>
9106         * ButtonBase.cs: Fix CreateAccessibilityInstance to return an instance
9107         of ButtonBaseAccessibleObject. Fix bug #79552.
9109 2006-10-02  Jackson Harper  <jackson@ximian.com>
9111         * MdiWindowManager.cs: When maximizing use the containers client
9112         rect, not it's bounds, so nc area is accounted correctly.
9113         - Use the parent form's size for the menu position, since the
9114         client isn't always the full form size.
9116 2006-10-01  Chris Toshok  <toshok@ximian.com>
9118         * ScrollableControl.cs: make sure neither right_edge or
9119         bottom_edge are < 0, since they're used as LargeChange for the
9120         horiz/vert scrollbars respectively.  Fixes #79539.
9122 2006-10-01  Chris Toshok  <toshok@ximian.com>
9124         * NotifyIcon.cs: add NotifyIconWindow.InternalRecreateHandle, so
9125         the xplatuix11 code can cause us to destroy/recreate our handle.
9127         * XplatUIX11.cs
9128         (SystrayAdd):
9129         - this code can be invoked many times for the same Hwnd.  Make
9130           sure we only destroy the client window once (the first time this
9131           method is called).  This fixes bug #79544.
9132         - Remove the call to the improperly bound XSync.  why we had two
9133           bindings to this, I will never know, but this call resulted in
9134           events being discarded from the queue(!).
9135         - correct a misunderstanding of _XEMBED_INFO - the second atom is
9136           not our current state but the state we wish to be in.  So, 0 if
9137           we don't want to be mapped.  Change it to 1.
9138         (SystrayRemove): The XEMBED spec makes mention of the fact that
9139         gtk doesn't support the reparent of client windows away from the
9140         embedder.  Looking at gtksocket-x11.c seems to agree with this.
9141         The only avenue we have for removing systray icons is to destroy
9142         them.  We don't want the handle to go away for good, though, so
9143         call InternalRecreateHandle on the NotifyIconWindow.  Fixes
9144         #79545.
9145         
9146 2006-10-01  Chris Toshok  <toshok@ximian.com>
9148         * Form.cs (WndProc): inline the native_enabled variable usage into
9149         the cases in which it's used.  Fixes #79536.
9151 2006-09-29  Mike Kestner  <mkestner@novell.com>
9153         * ListView.cs : toggle the selection state for ctrl clicks in 
9154         multiselect mode. [Fixes #79417]
9156 2006-09-29  Mike Kestner  <mkestner@novell.com>
9158         * ListView.cs : kill CanMultiSelect and refactor the selection
9159         code to support multiselection in the absence of mod keys. Steal
9160         arrow/home/end keys by overriding InternalPreProcessMessage to
9161         restore regressed keynav behavior.
9162         [Fixes #79416]
9164 2006-09-29  Jackson Harper  <jackson@ximian.com>
9166         * MdiClient.cs: Repaint the titlebars when the active window is
9167         changed.
9169 2006-09-29  Chris Toshok  <toshok@ximian.com>
9171         * Application.cs: when entering a runloop with a modal, make sure
9172         the hwnd is enabled.  Fixes #79480.
9174 2006-09-29  Chris Toshok  <toshok@ximian.com>
9176         * DataGrid.cs (CurrentCell): if we try to navigate to the add row
9177         when ListManager.CanAddRows == false, bump us back one.
9179         * DataGridColumnStyle.cs (ParentReadOnly): remove the
9180         listmanager.CanAddRows check.  This makes ArrayLists uneditable
9181         using a datagrid, which is not right.
9182         (SetColumnValueAtRow): call IEditable.BeginEdit if source[rowNum]
9183         is an IEditable, but call property_descriptor.SetValue regardless.
9184         fixes #79435.
9186 2006-09-29  Chris Toshok  <toshok@ximian.com>
9188         * DataGridBoolColumn.cs: we need to test equality in the face of
9189         possible null values (as is the case with the default NullValue).
9190         This patch keeps us from crashing in that case.
9192 2006-09-29  Jackson Harper  <jackson@ximian.com>
9194         * TreeNodeCollection.cs: Don't do a recalculate/updatescrollbars
9195         here, since it will get called for every node collection in the
9196         tree. This is now done in the treeview once the sorting is
9197         finished.
9198         * TreeView.cs: Recalculate the visible order, and update the
9199         scrollbars after sorting, set the top nope to the root so that the
9200         recalc actually works.
9202 2006-09-29  Chris Toshok  <toshok@ximian.com>
9204         * LinkLabel.cs: more handling of the default link collection in
9205         the face of LinkArea manipulation.  The default link collection
9206         contains 1 element (start=0,length=-1).  If the user sets LinkArea
9207         to anything and the links collection is the default, clear it.
9208         Then only add the link if its nonempty.  Fixes #79518.
9210 2006-09-29  Chris Toshok  <toshok@ximian.com>
9212         * LinkLabel.cs (CreatePiecesFromText): calculate the length of a
9213         piece correctly when we hit a '\n'.  Fixes #79517.
9215 2006-09-29  Chris Toshok  <toshok@ximian.com>
9217         * MimeIcon.cs, ThemeGtk.cs, X11DesktopColors.cs, XplatUIX11GTK.cs:
9218         change the binding of gdk_init_check to take two IntPtr's, and
9219         pass IntPtr.Zero for both of them.  Fixes #79520.
9221 2006-09-29  Mike Kestner  <mkestner@novell.com>
9223         * ComboBox.cs : raise TextChanged on ComboTextBox.TextChanged.
9224         [Fixes #78779]
9226 2006-09-28  Jackson Harper  <jackson@ximian.com>
9228         * XplatUIX11.cs: When translating NC messages make sure we go from
9229         whole window to screen, not client window to screen.
9230         * MdiClient.cs: Remove the calls to PaintWindowDecorations, this
9231         method doesn't exist
9232         - Skip over controls that aren't forms when arranging.
9234 2006-09-28  Jackson Harper  <jackson@ximian.com>
9236         * XplatUIWin32.cs: Clip the rect to the parent window.
9237         * XplatUIStructs.cs: Add clipping modes struct.
9238         * InternalWindowManager.cs: New private method that factors title
9239         bar heights in when calculating the pos of an NC mouse message.
9240         - Use SendMessage to force a paint when the form's size is changed
9241         instead of painting the decorations immediately.
9242         - Don't let the NC button click messages get to DefWndProc,
9243         because they will attempt to handle windowing themself, and this
9244         messes up z-order (it will put them in front of the scrollbars).
9245         * XplatUIX11.cs: Make sure that we don't reset window managers if
9246         we already have one (ie the window is an MDI window).
9248 2006-09-28  Chris Toshok  <toshok@ximian.com>
9250         * MainMenu.cs: fix #79405 by way of a disgusting hack.  all the
9251         menu code really needs going over.
9253 2006-09-27  Chris Toshok  <toshok@ximian.com>
9255         * XplatUIX11.cs (SetWMStyles): more metacity wonderment.  turns
9256         out metacity ignores the MAXIMIZE_HORZ/VERT messages unless the
9257         window is maximizable.  So, we need to make sure that even if we
9258         clear the border/wm frame of those functions, they're still
9259         available (basically, we remove the decoration without removing
9260         the function).  Half the fix for #79338.
9262 2006-09-27  Chris Toshok  <toshok@ximian.com>
9264         * DataGrid.cs (ProcessGridKey): implement Shift-Tab handling.
9265         Fixes bug #79515.
9267 2006-09-27  Chris Toshok  <toshok@ximian.com>
9269         * Splitter.cs: reorder things a bit so that we don't actually
9270         draw/move the splitter until after calling OnSplitterMoving.  This
9271         lets users cancel/disallow the movement by explicitly setting
9272         event.SplitX/SplitY.  Fixes #79372.
9274 2006-09-27  Jackson Harper  <jackson@ximian.com>
9276         * XplatUIX11.cs: Don't hide the caret when it is being destroyed,
9277         because it is most likely on a window being destroyed, and that
9278         will give us an X11 error.
9280 2006-09-27  Chris Toshok  <toshok@ximian.com>
9282         * PropertyGridView.cs: half of the fix for #78190.  Clicking on
9283         the dropdown button now toggles between showing and hiding the
9284         dropdown.  Also, get rid of dropdown_form_showing and just use
9285         dropdown_form.Visible.  We still don't do a grab, but I'll leave
9286         that part to someone who has handled Capture-fu before.
9288 2006-09-27  Chris Toshok  <toshok@ximian.com>
9290         * DataGrid.cs: return false if alt isn't pressed when '0' is
9291         pressed.  this keeps the '0' key from being swallowed, and fixes
9292         bug #79350.
9294 2006-09-27  Chris Toshok  <toshok@ximian.com>
9296         * ComboBox.cs: use Invalidate when scrolling the dropdown list.
9297         Calling Refresh (in response to a scrollbar event) screws up the
9298         scrollbar painting.  Fixes bug #78923.
9300 2006-09-27  Chris Toshok  <toshok@ximian.com>
9302         * Theme.cs (SystemResPool): make the "if hashtable[key] == null
9303         then insert into hashtable" blocks threadsafe.
9305 2006-09-27  Chris Toshok  <toshok@ximian.com>
9307         * MessageBox.cs (CreateParams): the styles should be |'ed with our
9308         baseclass's, since otherwise the
9309         ControlBox/MinimizeBox/MaximizeBox assignments above have no
9310         effect.  This gets the close button back in messageboxes.
9312 2006-09-27  Chris Toshok  <toshok@ximian.com>
9314         * XplatUIX11.cs: make StyleSet and ExStyleSet check == with the
9315         flag, not just != 0.  this makes flags that are actually multiple
9316         bits (like WS_CAPTION) work.  fixes bug #79508.
9318 2006-09-27  Jordi Mas i Hernandez <jordimash@gmail.com>
9320         * PageSetupDialog.cs: add support for getting and settings the 
9321         paper size, source and orientation.
9323 2006-09-26  Chris Toshok  <toshok@ximian.com>
9325         * XplatUIX11.cs (SetWMStyles): turns out when SYSMENU is not set
9326         and caption == "", we need to remove the resize handles as well as
9327         the title bar.
9329         * Control.cs (set_Text): turns out that setting Text on a form
9330         should change the WM styles on the window, since if ControlBox ==
9331         false, the only way to get a window border is to have a non-""
9332         Text property.  check winforms/forms/text.cs for an example.  so,
9333         call both XplatUI.SetWindowStyle and XplatUI.Text here to properly
9334         update both window styles and title.  This fixes a lot of dialogs
9335         (including the preferences dialog in MonoCalendar.)
9337 2006-09-26  Chris Toshok  <toshok@ximian.com>
9339         * XplatUIWin32.cs (SetParent): if parent == IntPtr.Zero (and the
9340         control isn't a Form), call Win32ShowWindow to hide the window,
9341         but don't update the control Visible property.  When we reparent
9342         back to a parent control, call SetVisible in order for the
9343         window's visibility to be reinstated.
9345         * XplatUIX11.cs (SetParent): if hwnd.parent == null, reparent to
9346         the FosterParent.
9348         * Control.cs (ControlCollection.Remove): remove that value.Hide()
9349         call for good, since it breaks MonoCalendar (and other things I'm
9350         sure.) Also, set all_controls to null *after* the owner calls,
9351         which end up regenerating it.
9352         (ChangeParent): allow new_parent to be == null, passing
9353         IntPtr.Zero down to XplatUI.
9355         this fixes #79294 the right way.
9357 2006-09-26  Mike Kestner  <mkestner@novell.com>
9359         * GridEntry.cs : internal SetParent method.
9360         * PropertyGrid.cs : attach to property changed on the proper
9361         target if we have a hierarchical grid with subobjects. Setup
9362         GridItem.Parent for hierarchical items.
9363         * PropertyGridView.cs : Set value on the correct target for
9364         hierarchical grids. [Fixes #78903]
9366 2006-09-26  Chris Toshok  <toshok@ximian.com>
9368         * Control.cs (ChildNeedsRecreating): this should return true if
9369         either we're being recreated and the child is in our list, or our
9370         parent is waiting for our recreation.
9372 2006-09-26  Chris Toshok  <toshok@ximian.com>
9374         * Control.cs (ControlCollection.Remove): reinstate the
9375         value.Hide() call as suggested in bug #79294.
9377 2006-09-26  Sebastien Pouliot  <sebastien@ximian.com>
9379         * XplatUIX11.cs: Fixed SetCursorPos to move the cursor to screen
9380         coordinates (versus a relative move).
9382 2006-09-26  Chris Toshok  <toshok@ximian.com>
9384         * Control.cs: rework child recreation a little bit.  It turns out
9385         that we race between the DestroyNotify the WM_DESTROY message.  If
9386         the parent gets its DestroyNotify before the child gets the
9387         WM_DESTROY message, the child ends up not recreating (since the
9388         parent finishes its recreation on DestroyNotify, and the child
9389         checks ParentIsRecreating.)
9391         So, instead we store off a list of all the child controls which
9392         need to be recreated when the parent control starts to recreate
9393         itself.  Then, when child controls get their WM_DESTROY message we
9394         check to see if they're in the parent's pending recreation list,
9395         and if so, we recreate.  This removes all dependency on ordering
9396         from the code and fixes the initial MonoCalendar upgrade dialog.
9397         
9398 2006-09-26  Jackson Harper  <jackson@ximian.com>
9400         * TextControl.cs: Use the Line to get the length of the line,
9401         since soft line breaks can change the end line.
9403 2006-09-26  Chris Toshok  <toshok@ximian.com>
9405         * Control.cs (ControlCollection.AddImplicit): don't add the
9406         control again if it's already in one of our lists.  This keeps us
9407         from adding controls over and over again for comboboxes when their
9408         handle gets recreated (as the combobox adds implicit controls in
9409         OnHandleCreated).  Fixes the X11 errors in bug #79480.
9411 2006-09-26  Jackson Harper  <jackson@ximian.com>
9413         * TextControl.cs: When deleting characters make sure that any
9414         orphaned zero lengthed tags get deleted.
9415         - Fix ToString for zero lengthed tags.
9417 2006-09-25  Jackson Harper  <jackson@ximian.com>
9419         * TextControl.cs: When getting a tag at the location there can be
9420         multiple tags at the same spot, these are 0-lengthed tags that
9421         appear when extra formatting has been stuck in a location.  We
9422         need to pull out the last of these 0 lengthed tags.
9424 2006-09-25  Jackson Harper  <jackson@ximian.com>
9426         * TextControl.cs: Fix print out in debug method.
9427         * TextBoxBase.cs: When text is set bail if we are setting to the
9428         previous value.
9429         
9430 2006-09-24  Alexander Olk  <alex.olk@googlemail.com>
9432         * FontDialog.cs: Fixed the up/down arrow keys issue from bug #79478.
9433           It is now possible to change the selected index in a FontXXXListBox
9434           with the up and down arrow keys from the FontXXXTextBoxes.
9435           Also, send the FontXXXTextBox mouse wheel event to the corresponding
9436           FontXXXListBoxes to match ms.
9438 2006-09-22  Sebastien Pouliot  <sebastien@ximian.com>
9440         * SystemInformation.cs: Return a clone of the theme's MenuFont because
9441         anyone can dispose it, anytime. All other properties returns enums, 
9442         structs or basic types so they don't need such tricks.
9444 2006-09-22  Jackson Harper  <jackson@ximian.com>
9446         * XplatUI.cs:
9447         * XplatUIWin32.cs:
9448         * Clipboard.cs:
9449         * DataFormats.cs:
9450         * XplatUIOSX.cs:
9451         * XplatUIDriver.cs: Update interface to add a primary selection
9452         flag, so the driver can use the primary selection buffer if
9453         needed.
9454         * XplatUIX11.cs: Allow the clipboard to retrieve from PRIMARY.
9456         * RichTextBox.cs: We need to supply the data object to paste now
9457         (so we can choose to supply CLIPBOARD or PRIMARY).
9458         * TextBoxBase.cs: Supply data object to paste (see above).
9459         - Middle click uses the primary selection data object.
9460         
9461 2006-09-21  Chris Toshok  <toshok@ximian.com>
9463         * XplatUIX11.cs: first little cleanup of the StyleSet (...) block
9464         of SetWMStyles.  It's still a rat's nest and is largely
9465         order-dependent which I dislike immensely.  This also fixes the X
9466         button disappearing from toplevel forms.
9468 2006-09-21  Mike Kestner <mkestner@novell.com>
9470         * ListBox.cs: move Jordi's click/dblclick raising code to the
9471         mouse up handler.
9473 2006-09-21  Jordi Mas i Hernandez <jordimash@gmail.com>
9475         * ListBox.cs: Fixes 79450
9477 2006-09-21  Mike Kestner <mkestner@novell.com>
9479         * TreeView.cs: guard against disposed conditions in UpdateScrollbars
9480         to deal with people updating the TreeNodeCollection after the tree
9481         is disposed.  "Fixes" 79330.
9483 2006-09-20  Jackson Harper <jackson@ximian.com>
9485         * TextControl.cs: Push the cursor record onto the undo stack
9486         before the delete action. This fixes 78651.
9488 2006-09-20  Jonathan Chambers  <joncham@gmail.com>
9490         * PropertyGridView.cs: Remove WindowStyles.WS_VISIBLE from
9491         CreateParams. Fixes 79329.
9493 2006-09-19  Chris Toshok  <toshok@ximian.com>
9495         * XplatUIX11.cs: a couple of blanket code massage passes to clean
9496         things up a bit.  First, get rid of the NetAtoms array (and the NA
9497         enum), and just embed the atoms as static fields.  Also, add a
9498         couple of functions (StyleSet and ExStyleSet) to clean up all the
9499         bitmask testing of styles.
9501         * X11Structs.cs: remove the NA enum, not needed anymore.
9502         
9503 2006-09-19  Chris Toshok  <toshok@ximian.com>
9505         * XplatUIX11.cs: apply Alexander's tool window fix for bug #79245
9506         (mapping them to _NET_WM_WINDOW_TYPE_UTILITY).  and add a little
9507         added cleanup to get MessageBox titles appearing again, which were
9508         broken by my earlier fix for caption-less/ControlBox-less windows.
9510 2006-09-18  Jonathan Pobst <monkey@jpobst.com>
9512         * ToolStripArrowRenderEventArgs.cs, ToolStripArrowRenderEventHandler.cs,
9513           ToolStripContentPanelRenderEventArgs.cs, ToolStripContentPanelRenderEventHandler.cs,
9514           ToolStripGripRenderEventArgs.cs, ToolStripGripRenderEventHandler.cs,
9515           ToolStripItemClickedEventArgs.cs, ToolStripItemClickedEventHandler.cs,
9516           ToolStripItemEventArgs.cs, ToolStripItemEventHandler.cs,
9517           ToolStripItemImageRenderEventArgs.cs, ToolStripItemImageRenderEventHandler.cs,
9518           ToolStripItemRenderEventArgs.cs, ToolStripItemRenderEventHandler.cs,
9519           ToolStripItemTextRenderEventArgs.cs, ToolStripItemTextRenderEventHandler.cs,
9520           ToolStripPanelRenderEventArgs.cs, ToolStripPanelRenderEventHandler.cs,
9521           ToolStripRenderEventArgs.cs, ToolStripRenderEventHandler.cs,
9522           ToolStripSeparatorRenderEventArgs.cs, ToolStripSeparatorRenderEventHandler.cs:
9523             Inital import.
9524         * ToolStripPanel.cs, ToolStripContentPanel.cs, ToolStripSeparator.cs,
9525           ToolStripButton.cs: Stubs needed for above.
9526         * ToolStrip.cs, ToolStripItem.cs: Stub a few variables/properties for above.
9528 2006-09-15  Chris Toshok  <toshok@ximian.com>
9530         * XplatUIX11.cs:
9531         - make the MessageQueues hashtable Synchronized.
9532         
9533         - SendMessage: if the Hwnd is owned by a different thread, use the
9534         AsyncMethod stuff to dispatch the SendMessage on the hwnd's
9535         thread.  Fixes bug #79201.
9537 2006-09-15  Chris Toshok  <toshok@ximian.com>
9539         * XplatUIX11.cs (SetWMStyles): rework the #79368 fix slightly.  If
9540         ControlBox == false, we disallow maximize/minimize/close.  If the
9541         form Caption is "" we also disallow move (and get rid of the Title
9542         decoration).  Unfortunately, regardless of how things are set,
9543         we're stuck with the Title and WM menu.
9545 2006-09-15  Chris Toshok  <toshok@ximian.com>
9547         * Application.cs: add locking around the static message_filters
9548         ArrayList, part of #79196.
9550 2006-09-15  Chris Toshok  <toshok@ximian.com>
9552         * XplatUIX11.cs (SetWMStyles): if Form.Text == "" and
9553         Form.ControlBox == false, the window has no titlebar nor resize
9554         handles.  fixes bug #79368.
9556 2006-09-15  Chris Toshok  <toshok@ximian.com>
9558         * TextBoxBase.cs: in CalculateScrollBars make sure LargeChange is
9559         >= 0.  Fixes bug #79370.
9561 2006-09-15  Jonathan Pobst <monkey@jpobst.com>
9562         * FlowLayoutPanel.cs, FlowLayoutSettings.cs: Initial commit.
9563         * Control.cs:
9564             Add properties: LayoutEngine, Margin, DefaultMargin.
9565             Add method: GetPreferredSize.
9566             Move layout logic from PerformLayout to layout engines. 
9568 2006-09-13  Chris Toshok  <toshok@ximian.com>
9570         * XplatUIX11.cs: more destroy work.  Jackson pointed out that my
9571         fix for #79326 broke #78718, so this change addresses that.
9573         - in SendWMDestroyMessages remove the call to
9574         CleanupCachedWindows, since we might be recreating the control and
9575         need to maintain the references to right Hwnd handles.  Also, set
9576         the zombie flag to true for each of the children in the hierarchy
9577         instead of calling hwnd.Dispose.  This will cause GetMessage to
9578         ignore all events for the window except for DestroyNotify.
9580         - In GetMessage, ignore messages except for DestroyNotify for
9581         zombie hwnds.
9582         
9583         * Control.cs: revert the is_recreating fix from the last
9584         ChangeLog.  It's definitely "right", but it breaks switching from
9585         an MDI form to a non-MDI form.  Will need to revisit that.
9587         * Hwnd.cs: add a zombie flag, which means "the
9588         client_window/whole_window handles are invalid, but we're waiting
9589         for the DestroyNotify event to come in for them".  Set the flag to
9590         false explicitly if setting WholeWindow/ClientWindow, and also
9591         when Disposing.
9592         
9593 2006-09-13  Chris Toshok  <toshok@ximian.com>
9595         * XplatUIX11.cs: rework window destruction slightly.
9597         - when destroying the windows associated with a control, we don't
9598         need 2 separate XDestroyWindow calls.  Just the one for the
9599         whole_window (or for client_window if whole_window is somehow
9600         IntPtr.Zero -- can this happen?) is enough.
9602         - reworked SendWMDestroyMessages slightly, so we always dispose
9603         the child control hwnd's after sending the messages.
9604         
9605         - refactored out the ActiveWindow/FocusWindow/Caret clearing from
9606         the two places it was used (one was even using hwnd.Handle and the
9607         other hwnd.client_window.  ugh), adding another call in
9608         SendWMDestroyMessages.  We need this new call because now the
9609         DestroyNotify events in the queue will be ignored for the child
9610         controls (as their hwnd's were disposed, and the window id's
9611         removed from the hashtable in SendWMDestroyMessages.) fun, eh?
9613         - this fixes bug #79326.
9615 2006-09-13  Chris Toshok  <toshok@ximian.com>
9617         * Control.cs: don't always set is_recreating to false at the end
9618         of RecreateHandle, since sometimes we're not done (and won't be
9619         until WndProc handles the WM_DESTROY message).  Also, set
9620         is_recreating to false in the WM_DESTROY handling code.  Part of
9621         the fix for bug #79326.
9623 2006-09-13  Miguel de Icaza  <miguel@novell.com>
9625         * X11DesktopColors.cs: Start the droppage of debugging messages.
9627         * FileDialog.cs: Store the configuration file in ~/.mono/mwf_config
9629 2006-09-13  Jonathan Pobst <monkey@jpobst.com>
9631         * SplitContainer.cs, SplitterPanel.cs: Initial implementation [2.0].
9633 2006-09-12  Chris Toshok  <toshok@ximian.com>
9635         * DataGrid.cs (get_ListManager): if the list_manager is null, try
9636         to create it using SetDataSource.  Fixes bug #79151.
9638 2006-09-11  Chris Toshok  <toshok@ximian.com>
9640         * XEventQueue.cs: add a DispatchIdle property.
9642         * XplatUIX11.cs (UpdateMessageQueue): only emit the Idle event if
9643         either the queue is null, or the queue has DispatchIdle set to
9644         true.
9645         (DoEvents): set queue.DispatchIdle to false around the
9646         peek/translate/dispatch message loop in this method.  This keeps
9647         Application.Doevents from emitting idle events.  Part of the fix
9648         for #78823.
9650 2006-09-11  Chris Toshok  <toshok@ximian.com>
9652         * DataGrid.cs (set_DataSource): make this work for both the
9653         winforms/datagrid test and ReportBuilder.  It seems as though when
9654         we've created a ListManager (or maybe it's if we have a
9655         BindingContext?), when we set the DataSource it clears the
9656         DataMember to "".  otherwise we reuse the datamember.  Fixes bug
9657         #79333.
9659 2006-09-11  Chris Toshok  <toshok@ximian.com>
9661         * XplatUIX11.cs: deal with queue being null, which happens in all
9662         the Clipboard functions.  Fixes one of the two problems mentioned
9663         in #78612.
9665 2006-09-11  Chris Toshok  <toshok@ximian.com>
9667         * MenuAPI.cs: rework OnMouseUp a bit so that releasing the mouse
9668         button on various spots (including outside the menu) works closer
9669         to MS, and doesn't crash.  Fixes #79343.
9671 2006-09-11  Gert Driesen  <drieseng@users.sourceforge.net>
9673         * ListView.cs: Do not initialize item_sorter in init. To match MS,
9674         return null for ListViewItemSorter if View is SmallIcon or LargeIcon
9675         and the internal comparer is set. When a new ListViewItemSorter is set,
9676         sort the items. Use Enum.IsDefined to verify whether a valid SortOrder
9677         was specified. No further processing is necessary if SortOrder is set
9678         to it's current value. If Sorting is modified to None, and View is
9679         neither SmallIcon nor LargeIcon then: on 2.0 profile set item_sorter
9680         (either custom or our internal ItemComparer) to null, on 1.0 profile
9681         only set item_sorter to null if its our internal IComparer. If Sorting
9682         is modified to Ascending or Descending, then use our internal IComparer
9683         if none is set, and if the current IComparer is our internal one then:
9684         on 2.0 profile always replace it with one for new Sorting, and on 1.0
9685         profile only use new Sorting if view is not SmallIcon or LargeIcon. Use
9686         Enum.IsDefined to verify whether a valid View value is specified in
9687         its setter. Automatically sort listview items when listview is
9688         created. In Sort, do nothing if ListView is not yet created, or if
9689         no item_sorter is set (no Sorting was set, Sorting was explicitly set
9690         to None or ListViewItemSorter was set to null). Added Sort overload
9691         taking a bool to indicate whether the ListView should be redrawn when
9692         items are sorted (we use this in ListViewItemCollection to avoid double
9693         redraws). Modified our internal IComparer to take the sort order into
9694         account. In Add and AddRange methods of ListViewItemCollection, also
9695         call Sort if Sorting is None (necessary for SmallIcon and LargeIcon
9696         view), but use overload with noredraw option to avoid double redraw.
9697         On 2.0 profile, throw NotSupportedException when setting CheckBoxes to
9698         true when View is Tile, and do the same when attempting to set View to
9699         Tile when CheckBoxes is true. Avoid maintaining separate ArrayLists
9700         for selected/checked indices, as it involves overhead when sorting is
9701         done while these collections are not used all that often. Instead
9702         we'll build the indices on demand. Modified IList implementation of
9703         CheckedIndexCollection to use public methods if object is int.
9704         Modified CheckedListViewItemCollection to hide checked items if
9705         ListView.CheckBoxes is false. Removed LAMESPEC remark in 
9706         ListViewItemCollection as the .NET SDK docs have been fixed. Modified
9707         IList implementation in SelectedIndexCollection to use public methods
9708         if object is int. Modified SelectedListViewItemCollection to hide
9709         selected items if listview is not yet created.
9710         * ListViewItem.cs: CheckedIndices list no longer needs to be
9711         maintained separately (see ListView changes). Also clone font, fixes
9712         test failure.
9714 2006-09-11  Mike Kestner  <mkestner@novell.com>
9716         * ComboBox.cs: if we are updating the contents of the currently
9717         selected index, refresh the control or the textbox selection.
9718         [Fixes #79066]
9720 2006-09-11  Mike Kestner  <mkestner@novell.com>
9722         * ComboBox.cs (UpdateBounds): use SetBounds not SetBoundsCore since 
9723         the 'specified' logic has been moved there.  This seems like a bug 
9724         in Control.cs, since our current SetBoundsCore completely ignores 
9725         the specified parameter.  Peter's commit seems to indicate that is 
9726         the way the MS control implementation works.  [Fixes #79325]
9728 2006-09-10  Jonathan Chambers  <joncham@gmail.com>
9730         * XplatUI.cs: Set default_class_name to be composed
9731         of current domain id. This allows MWF to be loaded in multiple
9732         domains on Win32.
9734 2006-09-09  Miguel de Icaza  <miguel@novell.com>
9736         * X11Keyboard.cs: If we are unable to obtain the input method, do
9737         not call CreateXic to create the input context.   Should fix
9738         #78944/79276.
9740 2006-09-08  Alexander Olk  <alex.olk@googlemail.com>
9742         * MimeIcon.cs: Rewrote major parts. Dropped KDE support for now.
9743           Simplified gnome support by adding more pinvokes to get the
9744           icon for a file or mime type.
9746 2006-09-08  Jackson Harper  <jackson@ximian.com>
9748         * MenuAPI.cs: Deslect popup context menu items before closing the
9749         window, so that you don't see the previously selected item
9750         selected when you reopen the menu.
9751         * TextControl.cs: Update the cursor position even if we don't have
9752         focus.  This fixes typing in things like the ComboBox.  I'm not
9753         totally sure we should always set the visibility if we don't have
9754         focus, but couldn't find any corner cases where the cursor showed
9755         up when it shouldn't.
9757 2006-09-08  Chris Toshok  <toshok@ximian.com>
9759         * X11Keyboard.cs: In UpdateKeyState vkey can be any integer, but
9760         our arrays are length 256.  & 0xff before indexing.  Fixes the
9761         crash in bug #78077.
9762         
9763 2006-09-08  Carlos Alberto Cortez <calberto.cortez@gmail.com>
9765         * ThemeWin32Classic.cs: 
9766         * DateTimePicker.cs: Draw check box if DateTimePicker.ShowCheckBox
9767         is true. Handle that check box too.
9769 2006-09-07  Chris Toshok  <toshok@ximian.com>
9771         * MenuAPI.cs: move the PerformClick call to OnMouseUp.  Fixes bug
9772         79244.
9774 2006-09-07  Chris Toshok  <toshok@ximian.com>
9776         * Control.cs: in set_BackColor only do the work if
9777         background_color != value.
9779         * XplatUIX11.cs: move the clearing of invalid areas (both client
9780         and nc) to the same block of code where we set (nc_)expose_pending
9781         to false.  That is, move it from PaintEventEnd to PaintEventStart,
9782         so things that cause invalidates from within OnPaint will trigger
9783         another call to OnPaint.  Fixes bug #79262.
9785 2006-09-07  Alexander Olk  <alex.olk@googlemail.com>
9787         * Theme.cs: Use correct icon for UIIcon.PlacesPersonal
9788         * FileDialog.cs: Fix typo
9790 2006-09-07  Jackson Harper  <jackson@ximian.com>
9792         * ThemeWin32Classic.cs:  oops, forgot to commit.  Draw the images
9793         for tab pages if they have any.
9795 2006-09-06  Mike Kestner  <mkestner@novell.com>
9797         * Splitter.cs: use the "current" rect when finishing drag handle
9798         to avoid an artifact demonstrated by resedit.exe.  [Fixes #79251]
9800 2006-09-06  Mike Kestner  <mkestner@novell.com>
9802         * Splitter.cs: draw the drag handle at X or Y instead of 0 to deal
9803         support offset splitters. [Fixes #79298]
9805 2006-09-06  Alexander Olk  <alex.olk@googlemail.com>
9807         * Mime.cs: Fixed a bug that could override the global mime type
9808           result.
9810 2006-09-05  Jackson Harper  <jackson@ximian.com>
9812         * TabControl.cs: Better calculation method for setting the slider
9813         pos. Prevents crashes on really wide tabs.
9814         - Draw Image on tab pages if an image list is used.
9816 2006-09-02  Carlos Alberto Cortez <calberto.cortez@gmail.com>
9818         * MonthCalendar.cs: When Font changes, the Size should be
9819         updated to fit the new font's space requirements.
9821 2006-09-02  Alexander Olk  <alex.olk@googlemail.com>
9823         * ListBox.cs: If the items are cleared with Items.Clear set
9824           top_index to 0.
9826 2006-09-01  Carlos Alberto Cortez <calberto.cortez@gmail.com>
9828         * MonthCalendar.cs: Handle arrow keys as input keys. Also
9829         fire DateChanged event instead of DateSelected event when
9830         the date was changed by keyboard interaction.
9832 2006-09-01  Carlos Alberto Cortez <calberto.cortez@gmail.com>
9834         * DateTimePicker.cs: Handle DateChanged for the associated
9835         month_calendar control, and set month_calendar.Font from 
9836         OnFontChanged method, as well as resize the height of the
9837         control when needed. Make PreferredHeight proportional.
9839 2006-09-01  Chris Toshok  <toshok@ximian.com>
9841         * DataGrid.cs: grr, stop overthinking the DataMember/DataSource
9842         properties.
9844         * BindingContext.cs (HashKey.GetHashCode): use ^ instead of +.
9846 2006-09-01  Peter Dennis Bartok  <pbartok@novell.com> 
9848         * FileDialog.cs: Set ClientSize instead of window size, to allow space
9849           for decorations (Fixes #79219)
9851 2006-09-01  Mike Kestner  <mkestner@novell.com>
9853         * ComboBox.cs: first stab at sorting plus some selection handling
9854         fixes to bring us more in line with MS behavior.  Also switches back
9855         to index based selection.  Alternative patches for index-based 
9856         selection were provided by Jackson Harper, Carlos Alberto Cortez, 
9857         and latency@gmx.de on bug 78848.  I assume they were similar to this
9858         code I've had simmering in my tree forever.
9859         [Fixes #78848]
9861 2006-09-01  Chris Toshok  <toshok@ximian.com>
9863         * CurrencyManager.cs (ListChangedHandler): in the ItemAdded case,
9864         when setting list position guard against ending up with a -1 index
9865         (the other part of the fix for #78812).  Should probably make sure
9866         we don't need the analogous fix in the ItemDeleted case.
9868         * DataGrid.cs:
9869         - in SetDataSource, work around the fact that the way
9870         OnBindingContextChanged is invoked will cause us to re-enter this
9871         method.  I'll remove the hack once I investigate
9872         OnBindingContextChanged.
9874         - fix the logic in set_DataSource and set_DataMember (basically
9875         what to do if the other of the two is null.)
9876         
9877         - in OnListManagerItemChanged, we need to take into account the
9878         edit row when deciding whether or not to call RecreateDataGridRows
9879         (part of the fix for #78812).
9881 2006-09-01  Jackson Harper  <jackson@ximian.com>
9883         * Splitter.cs: Don't do anything if there is no control to affect
9884         (prevents us from crashing in weird tet cases).
9885         * TreeView.cs: Bounding box for the mouse movement reverting
9886         focus/selection back to previously selected node.  This matches
9887         MS, and makes the tree a lot more useable.
9888         * GroupBox.cs: Instead of drawing over the lines of the groupbox,
9889         use clipping so they are not drawn.  This fixes when the control
9890         is set to have a transparent background, or if it was over an
9891         image.
9893 2006-09-01  Alexander Olk  <alex.olk@googlemail.com>
9895         * MimeIcon.cs: Improved handling for reading default icons when
9896           using gnome (2.16 made it necessary). Check and read svg icons
9897           first, then 48x48 and then 32x32 icons.
9899 2006-08-31  Chris Toshok  <toshok@ximian.com>
9901         * DataGridTextBoxColumn.cs: only hide the textbox if it's still
9902         visible.
9904         * DataGridTextBox.cs: Pass Tab's up to the datagrid by calling
9905         ProcessKeyPreview.  Fixes part of #77806.
9907         * DataGrid.cs: big patch.
9909         - revert the queueing up of DataSource/DataMember if inside
9910         BeginInit/EndInit calls.  That's not the way the datagrid achieves
9911         its delayed databinding.  Instead, call SetDataSource in
9912         OnBindingContextChanged.  This mimic's MS's behavior, and fixes
9913         #78811.
9915         - Also, it wasn't mentioned in #78811, but the test case exhibits
9916         behavior that was lacking in our datagrid implementation - Columns
9917         that have mapping names that don't exist in the datasource's
9918         properties aren't shown.  Yuck.  To fix this I added the bound
9919         field to the column style, and basically any calculation to figure
9920         out anything about columns uses a loop to find the bound columns.
9921         still need to investigate if I can cache an array of the bound
9922         columns or if the indices must be the same.
9924         - When setting CurrentCell, we no longer abort if the cell being
9925         edited was in the add row.  This fixes the other part of #77806.
9927         - The new code also fixes #78807.
9928         
9929         * ThemeWin32Classic.cs: perpetrate the same disgusting
9930         column.bound field hack, and only render bound fields.
9932 2006-08-31  Chris Toshok  <toshok@ximian.com>
9934         * DataGridColumnStyle.cs: add bound field.  this field is true if
9935         the datasource has a property corresponding to the mapping name.
9937         * DataGridTableStyle.cs: set the bound field on the column styles
9938         depending on whether or not we have a column for that property.
9940 2006-08-31  Peter Dennis Bartok  <pbartok@novell.com> 
9942         * Splitter.cs (SetBoundsCore): Don't ignore width/height of the 
9943           splitter control (fixes #79228)
9945 2006-08-31  Chris Toshok  <toshok@ximian.com>
9947         * DataGridColumnStyle.cs: we need to delay the assignment of
9948         property descriptor until the last possible moment due to the lazy
9949         databinding stuff in the datagrid.  Also, fix the exceptions
9950         thrown by CheckValidDataSource to match MS.
9952 2006-08-31  Jackson Harper  <jackson@ximian.com>
9954         * Form.cs: When activated select the active control, if there is
9955         no active control, we select the first control.
9956         * XplatUIX11.cs: If there is no focus control when we get a
9957         FocusIn event, find the toplevel form and activate it.  This
9958         occurs when you popup a window, it becomes the focus window, then
9959         you close that window, giving focus back to the main window.
9961 2006-08-21  Carlos Alberto Cortez <calberto.cortez@gmail.com>
9963         * MonthCalendar.cs: 
9964         * ThemeWin32Classic.cs: Cache Font in bold style, as well
9965         as StringFormat with Center alignments in MonthCalendar,
9966         instead of creating new ones when drawing the control. 
9967         Also, draw the month name in bold style.
9969 2006-08-30  Peter Dennis Bartok  <pbartok@novell.com> 
9971         * Control.cs:
9972           - PerformLayout(): It would seem MS performs the fill even if the 
9973             control is not visible (part of #79218 fix)
9974           - ResetBackColor(): Use the setter to reset the color, to allow
9975             overriders to catch the change.
9976         * Form.cs:
9977           - .ctor: Call UpdateBounds to adjust client rectangle (part of #79218 fix)
9978           - CreateHandle(): dito (part of $79218 fix)
9979           - Don't set an icon if we have a dialog
9980         * ScrollableControl.cs:
9981           - set_AutoScrollMinSize: Setting the property enables AutoScroll (#79218)
9982           - ScrollIntoView(): No need to scroll if control is already visible
9983             (resolves fixme and fixes #79218)
9985 2006-08-30  Carlos Alberto Cortez <calberto.cortez@gmail.com>
9987         * MonthCalendar.cs: Change proportions in SingleMonthSize
9988         to match the aspect of the original control.
9990 2006-08-29  Alexander Olk  <alex.olk@googlemail.com>
9992         * XplatUIX11.cs: Fix for a metacity/X problem where windows don't
9993           get updated when they get maximized.
9995 2006-08-29  Peter Dennis Bartok  <pbartok@novell.com> 
9997         * XplatUIX11.cs: Handle windows with no border (Fixes part of #79160)
9999 2006-08-29  Chris Toshok  <toshok@ximian.com>
10001         * XplatUIX11.cs: when destroying the FocusWindow, send KILLFOCUS.
10003 2006-08-29  Jackson Harper  <jackson@ximian.com>
10005         * TreeView.cs: Need to track selected node and highlighted node,
10006         they aren't always the same thing, when the mouse is down on a
10007         node it is hilighted, but not selected yet.
10008         - Do the HideSelection stuff right
10009         - Need to focus on rbutton mouse down. And redraw selection when
10010         right click is mouse upped.
10012 2006-08-29  Mike Kestner  <mkestner@novell.com>
10014         * ThemeWin32Classic.cs: draw selections for columns in FullRowSelect
10015         when SubItems.Count < Columns.Count.  [Fixes #79167]
10017 2006-08-28  Peter Dennis Bartok  <pbartok@novell.com> 
10019         * TextControl.cs (FindCursor): Fix math error (Fixes #78402)
10021 2006-08-28  Peter Dennis Bartok  <pbartok@novell.com>
10023         * XplatUIX11.cs: Preempt the roundtrip for getting the location back
10024           from X. Only send based on ConfigureNotify if we don't have the
10025           correct location in hwnd (if the window manager moved us)
10027 2006-08-28  Mike Kestner  <mkestner@novell.com>
10029         * ListView.cs: remove a TODO. 
10030         * ThemeWin32Classic.cs: implement HideSelection support for ListView.
10031         [Fixes ListView part of #79166]
10033 2006-08-28  Mike Kestner  <mkestner@novell.com>
10035         * ListView.cs: move wheel handler to parent since it is focused
10036         instead of the item_control now.  [Fixes #79177]
10038 2006-08-28  Mike Kestner  <mkestner@novell.com>
10040         * ThemeWin32Classic.cs: only highlight subitems in fullrowselect
10041         when the control is focused. [Fixes #79171]
10043 2006-08-28  Mike Kestner  <mkestner@novell.com>
10045         * ListView.cs: size the item and header controls for empty and
10046         unscrollable views.
10047         * ThemeWin32Classic.cs: draw disabled backgrounds.
10048         [Fixes #79187]
10050 2006-08-28  Chris Toshok  <toshok@ximian.com>
10052         * Form.cs: remove unused "active_form" static field.
10054         * Hwnd.cs: lock around accesses to static windows collection.
10056         * Application.cs: lock threads in Exit ().
10058 2006-08-28  Chris Toshok  <toshok@ximian.com>
10060         * NativeWindow.cs: lock around accesses to window_collection.
10061         
10062 2006-08-28  Chris Toshok  <toshok@ximian.com>
10064         * Control.cs: err, fix this the right way, by locking on controls
10065         when using it.  not by making it synchronized.
10067 2006-08-28  Chris Toshok  <toshok@ximian.com>
10069         * Control.cs: make the static "controls" field synchronized, as it
10070         gets updated from multiple threads.
10072 2006-08-27  Peter Dennis Bartok  <pbartok@novell.com>
10074         * XplatUIX11.cs: PostQuitMessage is thread-specific not app-specific.
10075           Prevent other threads from exiting when calling thread sets quit state.
10076         * XEventQueue.cs: Added PostQuitState property
10078 2006-08-27  Chris Toshok  <toshok@ximian.com>
10080         * AsyncMethodData.cs: add a slot for the window handle.
10082         * XplatUIX11.cs (SendAsyncMethod): send the event to the right
10083         window (the destination control's window, not the foster window).
10085         * Control.cs (BeginInvokeInternal): store the window's handle in
10086         the AsyncMethodData.
10087         
10089 2006-08-27  Peter Dennis Bartok  <pbartok@novell.com>
10091         * XplatUIX11.cs:
10092           - PostQuitMessage: Removed resetting S.D display handle, we might have
10093             another loop started after calling PostQuitMessage (Fixes #79119)
10094           - Created destructor to reset S.D handle
10096 2006-08-27  Peter Dennis Bartok  <pbartok@novell.com> 
10098         * XplatUIX11.cs (SetCursor): Issue flush after setting the cursor (#79168)
10100 2006-08-23  Peter Dennis Bartok  <pbartok@novell.com>
10102         * TextControl.cs (Insert): Update the caret position even if we don't
10103           have a handle yet, just don't call the driver in that case.
10104         * TextBoxBase.cs (set_SelectedText): Set the Start and End selection
10105           to the end of the new selection text (Fixes #79184)
10107 2006-08-23  Peter Dennis Bartok  <pbartok@novell.com> 
10109         * Form.cs (Activate): Only activate if the handle is created)
10110         * Control.c:
10111           - Mark window as invisible when it's disposed
10112           - Check if window handle is created when setting window visible, 
10113             instead of relying just on the is_created variable
10114           - Check if object is disposed when creating the control (Fixes #79155)
10116 2006-08-23  Peter Dennis Bartok  <pbartok@novell.com>
10118         * ScrollableWindow.cs (ScrollWindow): Don't actually perform layouting
10119           when allowing layout again. Otherwise we re-generate the anchoring 
10120           distance to the border again and actually alter what the user wanted
10121           This is ugly, it'd be better if we used DisplayRectangle instead of
10122           ClientRectangle for Control.UpdateDistances, but that causes us to
10123           have other problems (initial anchoring positons would be wrong)
10124           (Fixes #78835)
10126 2006-08-23  Peter Dennis Bartok  <pbartok@novell.com> 
10128         * Control.cs:
10129           - The size and location setters shouldn't go directly to 
10130             SetBoundsCore, but to SetBounds, which triggers layout on the
10131             parent, then calls SetBoundsCore. (Related to fix for #78835)
10132           - SetBounds: Moved actual location update code into this function
10133             from SetBoundsCore, to match MS. Added call to PerformLayout if
10134             we have a parent (to trigger resizing of anchored parents if the 
10135             child size has changed (see testcase for #78835) 
10136         * ListBox.cs, Form.cs: Call SetBounds instead of SetBoundsCore to match 
10137           new control code
10138         * ScrollableControl.cs (CalculateCanvasSize): Use shortcut variable
10140 2006-08-23  Peter Dennis Bartok  <pbartok@novell.com>
10142         * XplatUIX11.cs: Don't reset the DisplayHandle that's stored in
10143           System.Drawing when a toplevel window gets closed; there might
10144           be other toplevel windows belonging to the same app (Fixes #78052)
10146 2006-08-26  Alexander Olk  <alex.olk@googlemail.com>
10148         * FileDialog.cs: After reading FileDialog settings from mwf_config
10149           use Desktop prefix only if a real folder doesn't exist anymore.
10150         * FontDialog.cs: Added char sets.
10151           It is now possible to select the font, size or style with the
10152           textboxes.
10154 2006-08-25  Kornél Pál  <kornelpal@gmail.com>
10156         * PrintPreviewDialog.cs: Use assembly name constants.
10158 2006-08-23  Peter Dennis Bartok  <pbartok@novell.com>
10160         * XplatUIWin32.cs (ScrollWindow): Use clipping rectangle arg (prevents
10161           scrollbar from whacking it's buttons)
10163 2006-08-24  Chris Toshok  <toshok@ximian.com>
10165         * ScrollableControl.cs: fix #78271.  There's a lot of misc stuff
10166         in this patch (aggregating setting Left/Top/Width/Height to
10167         setting Bounds on the scrollbars), but the crux of the fix is in
10168         Recalculate, where we scroll by the remaining scroll_position if
10169         we're hiding a scrollbar.  The 2*$5 reward in the comment is
10170         serious.
10172 2006-08-24  Jackson Harper  <jackson@ximian.com>
10174         * MdiClient.cs:
10175         * MdiWindowManager.cs: If the form is made a non-mdi window we
10176         need to remove the form closed event so that closing forms works
10177         correctly.
10179 2006-08-24  Jackson Harper  <jackson@ximian.com>
10181         * Control.cs: Make IsRecreating internal so that the driver can
10182         check it
10183         - Temporarily remove the Hide when controls are removed, its
10184         making a whole bunch of things not work because visibility isn't
10185         getting reset elsewhere correctly
10186         * Form.cs: Need to do a full handle recreation when the mdi parent
10187         is set.
10188         * XplatUIX11.cs: If we are recreating handles don't dispose the
10189         HWNDs.  What was happening is the handles were being recreated in
10190         SendWMDestroyMessages, but then flow continued on in that method
10191         and destroyed the new handles.
10193 2006-08-23  Jackson Harper  <jackson@ximian.com>
10195         * Form.cs: MdiClient is always at the back of the bus
10196         * Control.cs: When the order of items in the collection is changed
10197         we need to reset the all_controls array
10198         - do the same sorta setup thats done when adding a control when a
10199         control is set on the collection.
10201 2006-08-23  Peter Dennis Bartok  <pbartok@novell.com>
10203         * TextBoxBase.cs (get_Text): Return an empty array if our document
10204           is empty (fixes #79052)
10206 2006-08-23  Peter Dennis Bartok  <pbartok@novell.com> 
10208         * Control.cs: We should call IsInputChar on only on WM_CHAR but not
10209           on WM_SYSCHAR messages (fixes #79053)
10211 2006-08-23  Chris Toshok  <toshok@ximian.com>
10213         * DataGrid.cs: fix flickering when scrolling vertically.
10215 2006-08-23  Chris Toshok  <toshok@ximian.com>
10217         * DataGrid.cs (EndEdit): only invalidate the row header when we
10218         need to.
10220 2006-08-23  Chris Toshok  <toshok@ximian.com>
10222         * ThemeWin32Classic.cs: fix the clip munging of the datagrid paint
10223         methods.  fixes the flicker when scrolling around.
10225 2006-08-23  Peter Dennis Bartok  <pbartok@novell.com> 
10227         * FileDialog.cs: Making sure the control is created before we get a 
10228           chance to use it with BeginInvoke (Fixes #79096)
10230 2006-08-23  Chris Toshok  <toshok@ximian.com>
10232         * ThemeWin32Classic.cs (DataGridPaintRows): calculate the proper
10233         width to use when painting the rows.
10235 2006-08-23  Peter Dennis Bartok  <pbartok@novell.com> 
10237         * TextBoxBase.cs:
10238           - Throw ArgumentException if a negative value is passed to SelectionLength
10239           - Update the selection end if start is moved. end needs to be always
10240             after start. (Fixes #79095)
10241           - Track selection length; MS keeps the selection length even if start
10242             is changed; reset on all other operations affection selection
10244 2006-08-22  Jackson Harper  <jackson@ximian.com>
10246         * TreeView.cs: Make sure both scrollbars get displayed and sized
10247         correctly when the other bar is visible.
10248         - Use the original clip rectangle for checking if the area between
10249         the two scrollbars is visible, not the viewport adjusted clipping
10250         rectangle.
10252 2006-08-22  Jackson Harper  <jackson@ximian.com>
10254         * Binding.cs: We don't use IsBinding because it requires the
10255         control to be created, which really shouldn't be necessary just to
10256         set a property on the control.
10258 2006-08-21  Carlos Alberto Cortez <calberto.cortez@gmail.com>
10260         * ComboBox.cs: Some CB.ObjectCollection methods must throw
10261         ArgumentNullReferenceException when the argument is null.
10263 2006-08-21  Jackson Harper  <jackson@ximian.com>
10265         * Timer.cs: Track the thread that the timer is started in (NOT
10266         CREATED), this way messages for it will only be triggered on its
10267         queue.
10268         * XEventQueue.cs: Track the timers here, this makes timers per
10269         thread, like MS.
10270         * XplatUIX11.cs: The timers are moved to the XEventQueue.
10272 2006-08-19  Chris Toshok  <toshok@ximian.com>
10274         * XplatUIX11.cs: after further communication with pdb, we get the
10275         best of both worlds.  SetZOrder working for un-Mapped windows, and
10276         no X errors for un-mapped windows.
10278 2006-08-19  Chris Toshok  <toshok@ximian.com>
10280         * XplatUIX11.cs (SetZOrder): remove the if (!hwnd.mapped) check,
10281         as it was causing pdn toolbars to not have the correct stacking.
10283 2006-08-18  Mike Kestner  <mkestner@novell.com> 
10285         * ListView.cs : guard against negative ClientArea.Width in scrollbar
10286         calculation.  Not sure why control should ever be setting a negative
10287         width though.  Fixes #78931.
10289 2006-08-18  Carlos Alberto Cortez <calberto.cortez@gmail.com>
10291         * ComboBox.cs: Throw ArgumentNullException when adding/modifyng
10292         null items in ObjectCollection class.
10293         * ListBox.cs.: Likewise.
10295 2006-08-18  Atsushi Enomoto  <atsushi@ximian.com>
10297         * ThemeNice.cs, ThemeClearlooks.cs : remove RadioButton_DrawFocus()
10298           as the base method in ThemeWin32Classic should work fine.
10299           Fixed bug #78607.
10301 2006-08-18  Jackson Harper  <jackson@ximian.com>
10303         * Binding.cs: When validating if the value entered doesn't convert
10304         properly reset to the old value.
10305         * RadioButton.cs: Don't fire click when we get focus.
10307 2006-08-18  Jackson Harper  <jackson@ximian.com>
10309         * FileDialog.cs: Paint the selection on the directory combobox the
10310         same way as on MS. 
10312 2006-08-17  Jackson Harper  <jackson@ximian.com>
10314         * ErrorProvider.cs: Don't allow the error control to be selected.
10315         * Control.cs: Don't send the SetFocus messages, the control
10316         activation will do this, and if we do it blindly here validation
10317         does not work.
10319 2006-08-17  Jackson Harper  <jackson@ximian.com>
10321         * Control.cs:
10322         * ContainerControl.cs: Make validation events fire in the correct
10323         order.  TODO: For some reason the first validation event is not
10324         getting fired.
10326 2006-08-17  Mike Kestner  <mkestner@novell.com> 
10328         * ComboBox.cs : some null guarding for ComboListBox.Scroll.
10330 2006-08-17  Mike Kestner  <mkestner@novell.com> 
10332         * ComboBox.cs : implement scroll wheel support for popped-down
10333         state. Fixes #78945. 
10335 2006-08-17  Jackson Harper  <jackson@ximian.com>
10337         * TreeView.cs: Specify treeview actions (old patch that didn't get
10338         committed for some reason).
10339         - Don't let the mouse wheel scroll us too far.  Just want to make
10340         the bottom node visible, not scroll it all the ways to the top.
10342 2006-08-17  Jackson Harper  <jackson@ximian.com>
10344         * XplatUIX11.cs: Mouse wheel events go to the focused window.
10346 2006-08-17  Mike Kestner  <mkestner@novell.com> 
10348         * ComboBox.cs : don't do mouseover selection in simple mode.
10350 2006-08-16  Jackson Harper  <jackson@ximian.com>
10352         * Form.cs: Fire the closing events for all the mdi child windows
10353         when a window is closed.  If the cancel args are set to true, the
10354         main window still gets the event fired, but it doesn't not close.
10355         * MdiWindowManager.cs: Do this closing cleanup in a Closed
10356         handler, instead of when the button is clicked, so cancelling the
10357         close works correctly.
10358         * ComboBox.cs: Send the mouse down to the scrollbar.
10360 2006-08-16  Carlos Alberto Cortez <calberto.cortez@gmail.com>
10362         * ListBox.cs: When passing 'null' to SelectedItem,
10363         set SelectedIndex to -1, to unselect items. This is the
10364         observed behaviour in .Net.
10366 2006-08-16  Peter Dennis Bartok  <pbartok@novell.com> 
10368         * TextBoxBase.cs: Overriding HandleClick to get clicks in spite of
10369           MS flags saying there won't be any. (fixes #78800)
10370         * Control.cs (HandleClick): Made virtual
10372 2006-08-16  Atsushi Enomoto  <atsushi@ximian.com>
10374         * PageSetupDialog.cs : use Yard-Pound units only in en-GB and en-US
10375           cultures. Fixed bug #78399.
10377 2006-08-16  Jackson Harper  <jackson@ximian.com>
10379         * Form.cs: Use the MdiClients MdiChildren property to access
10380         MdiChildren instead of creating the array from the child controls.
10381         * MdiClient.cs: Maintain a separate array of the mdi children, so
10382         that insertion order is maintained when the Z-order is changed.
10384 2006-08-16  Mike Kestner  <mkestner@novell.com> 
10386         * ListView.cs : add an ItemComparer and default to it for sorting.
10387         Fixes #79076, but sorting needs a complete overhaul to be compat with
10388         MS.
10390 2006-08-15  Peter Dennis Bartok  <pbartok@novell.com> 
10392         * XplatUIX11.cs (SetZOrder): Fix debugging leftover (fixes #79080)
10394 2006-08-15  Peter Dennis Bartok  <pbartok@novell.com>
10396         * Hwnd.cs (Mapped): Properly traverse the tree
10398 2006-08-15  Chris Toshok  <toshok@ximian.com>
10400         * Binding.cs: fix PullData/SetPropertyValue.  We don't want to
10401         pass manager.Current.GetType() to ParseData.  It has to be the
10402         property type.  So, hold off doing the ParseData until we're in
10403         SetPropertyValue where we know the type.  This fixes the crash in
10404         #78821 but the textbox is still empty.
10406 2006-08-15  Chris Toshok  <toshok@ximian.com>
10408         * DataGrid.cs:
10409         - when we're scrolling, only call Edit() again if the
10410         current cell is still unobscured. Fixes bug #78927.
10411         - when handling mousedown on a cell, ensure the cell is visible
10412         before calling Edit.
10413         - remove the properties from DataGridRow, and remove the
10414         DataGridParentRow class altogether.
10415         
10417 2006-08-15  Peter Dennis Bartok  <pbartok@novell.com>
10419         * TextBoxBase.cs (set_Text): Don't use base.Text, instead just
10420           fire OnTextChanged by ourselves. There's no point calling base,
10421           we don't set the base value anywhere else. Fixes #78773.
10423 2006-08-15  Carlos Alberto Cortez <calberto.cortez@gmail.com>
10425         * ListBox.cs: Call CollectionChanged when modifying
10426         an item from Items indexer, to update the actual items
10427         in the list box.
10429 2006-08-15  Carlos Alberto Cortez <calberto.cortez@gmail.com>
10431         * PrintDialog.cs: Small fixes for focus and a pair of checks,
10432         to match .Net behaviour.
10434 2006-08-15  Peter Dennis Bartok  <pbartok@novell.com>
10436         * XplatUIX11.cs (SetZOrder): Handle raising toplevel windows
10438 2006-08-15  Peter Dennis Bartok  <pbartok@novell.com> 
10440         * Control.cs: Handle BringToFront for toplevel windows (Fixes #78737)
10442 2006-08-15  Peter Dennis Bartok  <pbartok@novell.com>
10444         * MessageBox.cs: Prevent potential NRE exception.
10445         * TextBoxBase.cs: AutoSize only applies if MultiLine is false. Fixes #78889
10447 2006-08-14  Peter Dennis Bartok  <pbartok@novell.com>
10449         * MessageBox.cs: Calculate the owner of a messagebox, also make
10450           it topmost. Fixes #78753
10452 2006-08-14  Chris Toshok  <toshok@ximian.com>
10454         * XplatUIX11.cs: A couple of fixes so that metacity will let us
10455         programmatically move windows.  first, set the PPosition hint as
10456         well as the USPosition hint.  Second include some code from pdb
10457         that sets the window type to NORMAL when we set the transient for
10458         hint.  This is because, in the absence of a window type, metacity
10459         thinks any window with TransientFor set is a dialog, and refuses
10460         to let us move it programmatically.  fascists.
10462 2006-08-14  Peter Dennis Bartok  <pbartok@novell.com>
10464         * XplatUIX11.cs: When setting normal hints, take into consideration
10465           an different hints previously set so we don't delete them (fixes #78866)
10467 2006-08-12  Chris Toshok  <toshok@ximian.com>
10469         * ToolBarButton.cs: make Layout return a boolean, if something to
10470         do with the button's layout changed.
10472         * ToolBar.cs:
10473         - add another parameter to Redraw, @force, which all existing
10474           calls set to true.
10475         - make the Layout function return a boolean which is true if the
10476           layout has actually changed.  Redraw now uses this (and @force)
10477           to determine when to invalidate.  At present the only place
10478           where @force can be false is the call from OnResize, when
10479           background_image == null.  So, resizing a toolbar when the
10480           layout doesn't change results in no drawing.
10482 2006-08-12  Chris Toshok  <toshok@ximian.com>
10484         * ThemeWin32Classic.cs: fix the bottom right corner painting.  had
10485         the VScrollBar and HScrollbar reversed.  oops.
10487         * DataGrid.cs: fix the logic that assigns sizes to the implicit
10488         scrollbars.  we were assigning them twice (once in
10489         Calc{Horiz,Vertical}Scrollbar, and once in CalcGridAreas),
10490         therefore causing two scrollbar resizes (and redraws?) to happen
10491         per grid resize.
10493 2006-08-12  Chris Toshok  <toshok@ximian.com>
10495         * ToolBarButton.cs: redraw the entire button if the theme tells us
10496         to.
10498         * Theme.cs: add ToolBarInvalidateEntireButton.
10500         * ThemeWin32Classic.cs: we don't need to redraw the entire toolbar
10501         buttons, just the border.
10503         * ThemeNice.cs: redraw the entire toolbar button since we need to
10504         draw the highlight image.
10506         * ThemeClearlooks.cs: the rounded corners of toolbar buttons mean
10507         we need to redraw the entire button (not just the border).
10509 2006-08-11  Peter Dennis Bartok  <pbartok@novell.com>
10511         * TextBoxBase.cs (CalculateScrollbars): Set the proper thumb size
10512           for vertical bars. Fixes the mismatches shown by #78513
10514 2006-08-11  Alexander Olk  <alex.olk@googlemail.com>
10516         * FileDialog.cs: If a saved/remembered path doesn't exist
10517           anymore, fall back to "Desktop".
10519 2006-08-11  Peter Dennis Bartok  <pbartok@novell.com>
10521         * Form.cs (CreateParams): Don't use Parent.Handle unless we have a
10522           parent. It's apparently legal to not have one
10523         * XplatUIX11.cs:
10524           - SetZOrder: Don't try to set Z-Order on an unmapped window
10525           - CreateWindow: 0,0 are legal coordinates for a window. don't move
10526             it unless the coordinates are negative
10528 2006-08-10  Mike Kestner  <mkestner@novell.com>
10530         * ListControl.cs: allow null for DataSource.  Clear DisplayMember
10531         when setting to null per msdn docs.  Fixes #78854.
10533 2006-08-10  Chris Toshok  <toshok@ximian.com>
10535         * Menu.cs, MainMenu.cs, MenuAPI.cs: get rid of most of the
10536         flickering by setting a clip rectangle on the Graphics when we
10537         need to redraw just a particular menuitem.  Also, rename "OnClick"
10538         to "OnMouseDown" to reflect what it actually is.
10539         
10540         * Form.cs: track the OnMouseDown change.
10542 2006-08-10  Peter Dennis Bartok  <pbartok@novell.com>
10544         * CommonDialog.cs: Properly inherit the CreateParams from the form
10545           and only change what we need. Fixes #78865
10547 2006-08-10  Chris Toshok  <toshok@ximian.com>
10549         * ToolBar.cs, ToolBarButton.cs: fix the redraw-on-highlight
10550         flickering in flat mode (and most of the flickering in general) by
10551         only invalidating the button border (and not the entire rectangle)
10552         when the state changes.  A couple of cases still flicker:
10553         ToggleButtons, and the dropdown arrow case when the user mouse
10554         ups.
10556 2006-08-10  Alexander Olk  <alex.olk@googlemail.com>
10558         * X11Keyboard.cs: Fixed handling of the Del key on the cursorblock
10559           for german keyboards. Numlock state shouldn't affect the behaviour
10560           of the Del key. Fixes bug #78291.
10562 2006-08-10  Chris Toshok  <toshok@ximian.com>
10564         * ListControl.cs: remove the items.Clear line from BindDataItems,
10565         as this is the first thing done by both subclasses in their
10566         SetItemsCore overrides.  Also, add a ItemChanged handler, and when
10567         passed -1, refresh the list.  This gets databinding working when
10568         the datasource is set on the list before the datasource is
10569         populated (as in wf-apps/ReportBuilder.)
10571         * ComboBox.cs: remove the argument to BindDataItems.  This call
10572         should really go away, and be initiated by the ListControl code.
10574         * ListBox.cs: same.
10576 2006-08-09  Peter Dennis Bartok  <pbartok@novell.com>
10578         * TextControl.cs (Document.ctor): Initialize caret so we don't crash
10579           if no data is in the document when the control is displayed
10581 2006-08-09  Peter Dennis Bartok  <pbartok@novell.com> 
10583         * TextBoxBase.cs: Don't try moving the caret if we don't have a window
10584           yes (fixes #78806)
10585         * TextControl.cs: 
10586           - PositionCaret: Allow positioning of caret but don't call methods 
10587             requiring a handle if the window isn't created yet
10588           - CharIndexToLineTag: Fix ending loop early error. Lines is 1 based
10589           - owner_HandleCreated: Don't position the caret, just update it's 
10590             location. User might have already set a different position
10592 2006-08-09  Peter Dennis Bartok  <pbartok@novell.com>
10594         * XplatUIWin32.cs: Don't use the desktop as basis for foster-parented
10595           windows. Screws up the returned coordinates for child windows. 
10596           Fixes #78825. I'm hoping this doesn't break something, since the
10597           code was explicitly put in 8 months ago, but no bug was attached.
10598           Menus still seem to work properly.
10600 2006-08-08  Chris Toshok  <toshok@ximian.com>
10602         * DataGrid.cs: make BeginInit/EndInit actually do what they're
10603         supposed to do - delay data binding until the EndInit call.  Also,
10604         make the table style collection's CollectionChangeAction.Refresh
10605         work properly.
10607         * GridTableStylesCollection.cs: raise a CollectionChangeEvent
10608         (with action = Refresh) when a consituent table's MappingName is
10609         changed.
10611 2006-08-08  Chris Toshok  <toshok@ximian.com>
10613         * ToolBarButton.cs: in set_Text, call Parent.Redraw, not
10614         Invalidate, since changing the text can change the size of the all
10615         toolbar buttons.
10617 2006-08-08  Peter Dennis Bartok  <pbartok@novell.com>
10619         * Form.cs (AddOwnedForm): Still need to add the form to our listif
10620           we don't have it yet
10622 2006-08-08  Chris Toshok  <toshok@ximian.com>
10624         * PrintControllerWithStatusDialog.cs: don't .Close() the status
10625         dialog, as this causes X errors later on, since we actually
10626         destroy the window.  Instead, .Hide() it.
10628 2006-08-08  Peter Dennis Bartok  <pbartok@novell.com>
10630         * ComboBox.cs: Added focus reflection for popup window
10631         * XplatUIX11.cs: 
10632           - Removed transient setting for non-app windows for now, not sure it
10633             was needed
10634           - Fixed logic checking if we have captions when deciding 
10635             override_redirect, WS_CAPTION is two bits and a 0 check was not
10636             sufficient
10637           - Removed the WINDOW_TYPE stuff, it was unneeded and making things
10638             complicated
10639         * Form.cs: 
10640           - AddOwnedForm: Don't just add the form to the list, call the property
10641             to ensure the driver is informed about the ownership as well
10642           - CreateHandle: Set the TopMost status in the driver if we have an owner
10643         * XplatUI.cs: Fixed debug statement
10645 2006-08-08  Jonathan Pobst <monkey@jpobst.com>
10646         * ButtonRenderer.cs, CheckBoxRenderer.cs, ComboBoxRenderer.cs
10647           GroupBoxRenderer.cs, ProgressBarRenderer.cs, RadioButtonRenderer.cs,
10648           ScrollBarRenderer.cs, TabRenderer.cs, TextBoxRenderer.cs, 
10649           TrackBarRenderer.cs: Make constructor private.
10650         * ProfessionalColors.cs, ProfessionalColorTable.cs: Fix misnamed properties.
10651         * ProfessionalColorTable.cs: Make properties virtual.
10653 2006-08-06  Duncan Mak  <duncan@novell.com>
10655         * NumericUpDown.cs (Value): Don't call OnValueChanged if the value
10656         is not changing.
10658 2006-08-04  Jonathan Pobst <monkey@jpobst.com>
10659         * ButtonRenderer.cs, CheckBoxRenderer.cs, ComboBoxRenderer.cs
10660           GroupBoxRenderer.cs, ProfessionalColors.cs, ProfessionalColorTable.cs,
10661           ProgressBarRenderer.cs, RadioButtonRenderer.cs, ScrollBarRenderer.cs,
10662           TabRenderer.cs, TextBoxRenderer.cs, TextRenderer.cs, TrackBarRenderer.cs:
10663           Initial import of new 2.0 classes.
10665 2006-08-04  Jonathan Pobst <monkey@jpobst.com>
10666         * Application.cs: Add 2.0 VisualStyles properties.
10668 2006-08-04  Jonathan Pobst <monkey@jpobst.com>
10669         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs, XplatUIWin32.cs,
10670           XplatUIX11.cs: Create property to allow access to existing private
10671           variable "themes_enabled"
10673 2006-08-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
10675         * ImageListStreamer.cs: generate the MemoryStreams with the exact BMP
10676         file size, as otherwise our class libraries fail using windows. Fixes
10677         bug #78759.
10679 2006-08-04  Jackson Harper  <jackson@ximian.com>
10681         * Form.cs:
10682         * XplatUIX11.cs: Move the toolwindow window manager creation into
10683         the X11 driver, this way on win32 we can let windows create/handle
10684         the toolwindows.
10686 2006-08-04  Carlos Alberto Cortez <calberto.cortez@gmail.com>
10688         * PrintDialog.cs: Remove some redundant checks, add some others,
10689         clean some code, and move the focus to the text boxes when the
10690         values are incorrect.
10692 2006-08-04  Alexander Olk  <alex.olk@googlemail.com>
10694         * FontDialog.cs: Remove Form.MinimumSize. It's not needed.
10696 2006-08-03  Alexander Olk  <alex.olk@googlemail.com>
10698         * NumericUpDown.cs: Setting the Minimum and Maximum is now
10699           handled correctly. Fixes bug #79001.
10701 2006-08-03  Carlos Alberto Cortez <calberto.cortez@gmail.com>
10703         * PrintDialog.cs: The "Copies" numeric up down must have
10704         set the Minimum property to 1; only if the value is bigger
10705         than 1, activate "Collate" check box. This is the behaviour of .Net.
10706         Also modify the Document elements only if it is not null.
10708 2006-08-03  Jackson Harper  <jackson@ximian.com>
10710         * TreeNodeCollection.cs: Fix copyto to use the correct nodes
10711         length. (We have a larger array then actual node count).
10712                 
10713 2006-08-03  Jackson Harper  <jackson@ximian.com>
10715         * ComboBox.cs: Don't show selection by default.
10716         - The SelectAll isn't needed here, since the focus code should do
10717         that
10718         - DDL style lists to manual selection drawing, so when they
10719         get/lose focus they have to invalidate.
10721 2006-08-03  Peter Dennis Bartok  <pbartok@novell.com>
10723         * TextBoxBase.cs: Don't always show all selections by default.
10725 2006-08-03  Jonathan Pobst  <monkey@jpobst.com>
10726         * ControlUpdateMode.cs, DataSourceUpdateMode.cs,
10727           HelpNavigator.cs, WebBrowserEncryptionLevel.cs:
10728           Fixed various typos.
10730 2006-08-03  Alexander Olk  <alex.olk@googlemail.com>
10732         * Control.cs: Removing the controls in a ControlCollection with
10733           Clear now hides the controls as expected. Fixes bug #78804. 
10735 2006-08-03  Jackson Harper  <jackson@ximian.com>
10737         * Control.cs: Revert previous focus patch, it breaks reflector.
10739 2006-08-03  Jackson Harper  <jackson@ximian.com>
10741         * ComboBox.cs: Cleanup selection and focus with the combobox.
10742         This also eliminates some duplicated keyboard code, since now
10743         everything is handled by the main class.
10744         - Make list selection work on mouse up instead of down, to match
10745         MS.
10747 2006-08-02  Jackson Harper  <jackson@ximian.com>
10749         * Control.cs: Setting focus needs to go through the whole
10750         selection mechanism.
10752 2006-08-02  Chris Toshok  <toshok@ximian.com>
10754         * PrintPreviewDialog.cs: change MinimumSize to use
10755         base.MinimumSize so it works.
10757 2006-08-02  Peter Dennis Bartok  <pbartok@novell.com>
10759         * TextControl.cs:
10760           - UpdateCaret: Added sanity check in case caret isn't defined yet
10761           - Line.Delete: Now updating selection and caret markers if we're
10762             transfering a node (Properly fixes #78323)
10763           - SetSelectionEnd: Added sanity check
10764         * TextBoxBase.cs: Removed broken attempt to fix #78323
10766 2006-08-01  Chris Toshok  <toshok@ximian.com>
10768         * PrintPreviewDialog.cs: the CancelEventArgs stuff surrounding the
10769         Close() call is handled in Form, not here.
10771 2006-08-01  Chris Toshok  <toshok@ximian.com>
10773         * Theme.cs, ThemeWin32Classic.cs: fix the PrintPreviewControl
10774         layout/rendering.
10776         * PrintPreviewDialog.cs: add scrollbars, and add an image cache
10777         for sizes < 100% zoom.  The code now aggressively attempts to keep
10778         from calling document.Print (), and tries not to use the scaling
10779         g.DrawImage whenever possible (it still does if you scale to >
10780         100%, since usually that involves huge images).
10782         * PrintPreviewControl.cs: hook up the close button.
10784 2006-08-01  Jonathan Pobst  <monkey@jpobst.com>
10785         * ColumnClickEventHandler.cs, DrawItemEventHandler.cs,
10786           ItemChangedEventHandler.cs, ItemCheckEventHandler.cs,
10787           ItemDragEventHandler.cs, LabelEditEventHandler.cs,
10788           LinkClickedEventHandler.cs, LinkLabelLinkClickedEventHandler.cs,
10789           MeasureItemEventHandler.cs, MethodInvoker.cs, PaintEventHandler.cs,
10790           PropertyTabChangedEventHandler.cs, PropertyValueChangedEventHandler.cs,
10791           SelectedGridItemChangedEventHandler.cs, ToolBarButtonClickEventHandler.cs:
10792           Removed [Serializable] for 2.0 Event Handlers.
10794 2006-07-31  Jackson Harper  <jackson@ximian.com>
10796         * TextBoxBase.cs: Make ShowSelection invalidate when changed.
10797         * TextControl.cs: Uncomment out the body of this method.
10799 2006-07-31  Alexander Olk  <alex.olk@googlemail.com>
10801         * XplatUIX11.cs: Use the correct cursor shapes for arrow and default
10802           standard cursors.
10804 2006-07-31  Peter Dennis Bartok  <pbartok@novell.com>
10806         * TextBoxBase.cs: Added internal property ShowSelection to allow controls
10807           that embed TextBox and need selections visible even if textbox is not
10808           focused to enforce that behaviour.
10809         * TextControl.cs (Draw): Use ShowSelection instead of has_focus to determine
10810           selection drawing
10812 2006-07-31  Peter Dennis Bartok  <pbartok@novell.com>
10814         * TextControl.cs:
10815           - Added new SetSelectionStart/SetSelectionEnd overloads
10816           - Fixed viewport width assignment to be accurate
10817           - Adjusted alignment line shift calculations to allow cursor on right
10818             aligned lines to be always visible at the right border (like MS)
10819         * TextBoxBase.cs:
10820           - SetBoundsCore: Re-adjust caret location after resize (Fixes #78323)
10821           - TextBoxBase_SizeChanged: recalculating canvas on size changes
10822           - CalculateScrollBars: Use ViewPort size instead of window size, to
10823             properly consider space occupied by the border and scrollbars 
10824             (Fixes #78661)
10825           - hscroll_ValueChanged, vscroll_ValueChanged: Fixed scroll 
10826             calculations; no longer leaves artifacts
10827           - CaretMoved: Adjusted window scrolling to match MS and fixed several
10828             calculation bugs (Still missing right/center align calculations)
10830 2006-07-31  Peter Dennis Bartok  <pbartok@novell.com> 
10832         * XPlatUIWin32.cs: Made ScrollRectEx a bit more flexible, and removed
10833           use of both scroll rect and clip rect, as they do the same.
10835 2006-07-31  Peter Dennis Bartok  <pbartok@novell.com>
10837         * Control.cs (WM_CHAR WndProc): 2.0 profile allows changing the key 
10838           in the event handler (fixes #78912)
10840 2006-07-31  Chris Toshok  <toshok@ximian.com>
10842         * ThemeWin32Classic.cs: use grid.RowsCount here instead of
10843         grid.ListManager.Count, since grid.ListManager might be null.
10844         This of course begs the question "why are we drawing rows for a
10845         grid with no list manager (and therefor no rows)?"  Fixes the
10846         crash in bug #78929.
10848 2006-07-31  Chris Toshok  <toshok@ximian.com>
10850         * RelatedPropertyManager.cs: Don't always chain up to the parent
10851         ctor.  instead, call SetDataSource if the parent's position is !=
10852         -1.  Fixes the crash in #78822.
10854 2006-07-31  Chris Toshok  <toshok@ximian.com>
10856         * DataGrid.cs (get_ListManager): use field instead of property
10857         accessors for datasource and datamember.
10858         (RowsCount): make internal again.
10859         (OnMouseDown): end edits before resizing columns/rows.
10860         (OnMouseUp): restart edits after resizing columns/rows.
10862 2006-07-30  Peter Dennis Bartok  <pbartok@novell.com>
10864         * XplatUIX11.cs: Default cursor cannot be 0 or it will not get set.
10865           This fixes the situation where the last set cursor is displayed
10866           whenever the mouse is over scrollbars.
10868 2006-07-30  Carlos Alberto Cortez <calberto.cortez@gmail.com>
10870         * PrintDialog.cs: Fix the behaviour of PrinterSettings and
10871         Document properties, as well as initial values.
10873 2006-07-29  Peter Dennis Bartok  <pbartok@novell.com>
10875         * XplatUIWin32.cs (SetBorderStyle): Setting both border
10876           and ClientEdge results in a 3-pixel border, which is
10877           wrong.
10879 2006-07-28  Jackson Harper  <jackson@ximian.com>
10881         * TreeNodeCollection.cs: Fix the clear method.
10882         - Fix the Shrink also
10884 2006-07-27  Jackson Harper  <jackson@ximian.com>
10886         * TreeView.cs: Make sure the visible order is computed when we
10887         attempt to size the scrollbars (for trees that mess with the
10888         scrolling when they shouldn't.
10889         - Make sure to give the scrollbars valid values.
10891 2006-07-26  Peter Dennis Bartok  <pbartok@novell.com> 
10893         * XplatUIX11.cs: Move motion compression code to where it
10894           has less performance impact
10896 2006-07-26  Jackson Harper  <jackson@ximian.com>
10898         * UpDownBase.cs: When the control is selected make the child
10899         controls non selectable, so that a click on them won't do a
10900         focus/unfocus cycle.
10901         - Don't give focus to the text box when the spinner is selected.
10902         * XEventQueue.cs: Peek on both the x11 queue and the lock queue.
10904 2006-07-26  Chris Toshok  <toshok@ximian.com>
10906         * ThemeWin32Classic.cs: add print preview rendering.  I'm not
10907         satisfied with this solution.  If the bitmaps are small, we should
10908         just cache them in the PrintPreviewDialog and draw them here.
10909         Also, the layout is broken for the 2-up and 3-up cases.
10911         * Theme.cs: add PrintPReviewControlPaint.
10913         * PrintPreviewDialog.cs: first pass implementation.
10915         * PrintPreviewControl.cs: first pass implementation.  No
10916         scrollbars yet.
10918         * PrintDialog.cs: only validate fields if that particular portion
10919         of the UI is enabled.  Also, set the document's controller to a
10920         PrintControllerWithStatusDialog wrapping the document's print
10921         controller.
10923         * PrintControllerWithStatusDialog.cs: if we're printing to a file,
10924         bring up a SaveFileDialog (i hope we don't want to match the
10925         behavior of the crappy windows file entry) and set the
10926         PrinterSettings.PrintFileName accordingly.
10928 2006-07-26  Jackson Harper  <jackson@ximian.com>
10930         * ContainerControl.cs: Add a field that disables auto selecting
10931         the next control in a container when the container is activated.
10932         * UpDownBase.cs: Don't select the text box when the up down is
10933         selected.
10935 2006-07-26  Peter Dennis Bartok  <pbartok@novell.com> 
10937         * XEventQueue.cs: Added methods for peeking (used for compression
10938           of successive events)
10939         * XplatUIX11.cs (GetMessage): We're now compressing consecutive
10940           mouse move events (fixes #78732)
10942 2006-07-25  Jackson Harper  <jackson@ximian.com>
10944         * UpDownBase.cs: Use an internal class for the textbox so that we
10945         can control focus.  the updown control should always have focus,
10946         if either the text area or the buttons are clicked.
10947         - Send the key messages to the textbox, since it never actually
10948         has focus
10949         - Activate and decativate the textbox caret.
10951 2006-07-24  Jackson Harper  <jackson@ximian.com>
10953         * Control.cs: Use the directed select when selecting a control,
10954         this way the container controls override will get called and the
10955         whole ActiveControl chain will get triggered.  TODO: probably need
10956         to make sure this gets done everywhere instead of the old
10957         Select(Control).
10958         * ContainerControl.cs: Implement the directed Select method to
10959         find and activate the correct child control.    
10960         
10961 2006-07-22  Mike Kestner  <mkestner@novell.com>
10963         * Form.cs: use Control.MousePosition for NCLBUTTONDOWN in the menu
10964         menu handling code so that clicks without a grab work too.
10965         [Fixes #78914]
10967 2006-07-22  Alexander Olk  <alex.olk@googlemail.com>
10969         * FileDialog.cs: Enable the BackButton when dirstack has one element.
10970           Added some small optimizations.
10972 2006-07-21  Matt Hargett  <matt@use.net>
10974         * Control.cs: Implemented 2.0 MinimumSize/MaximumSize properties
10976 2006-07-21  Peter Dennis Bartok  <pbartok@novell.com> 
10978         * Control.cs (GetNextControl): Fixes to make all of Jackson's unit 
10979           tests pass and match MS in some strange border cases.
10981 2006-07-21  Chris Toshok  <toshok@ximian.com>
10983         * ThemeWin32Classic.cs: handle drawing of the relation links and
10984         parent row buttons.
10986         * Theme.cs: change args to DataGridPaintParentRow.
10988         * DataGrid.cs: Don't use controls for the relation links and
10989         parent buttons, so we have to handle all their interactions in
10990         MouseMove, MouseDown, MouseUp, etc.  Also, store a lot more stuff
10991         when we're navigating through child tables, so we can reinstate
10992         selection, expanded state, current cell, etc.
10994 2006-07-20  Chris Toshok  <toshok@ximian.com>
10996         * ToolBar.cs: When we redraw a button, for whatever reason,
10997         there's no reason to redraw the entire toolbar.  Also, don't call
10998         Control.Refresh from within Redraw, as it's much heavier than
10999         Invalidate (which is really what we want).
11001 2006-07-20  Chris Toshok  <toshok@ximian.com>
11003         * DataGrid.cs, CurrencyManager.cs, DataGridColumnStyle.cs,
11004         DataGridTextBoxColumn.cs, DataGridTextBox.cs,
11005         ThemeWin32Classic.cs, ListControl.cs: After staring at stack
11006         traces from within a debug IBindingList datasource
11007         (in mono/winforms/datagrid) for *days*, I've finally gotten things
11008         to work in a similar fashion.
11010 2006-07-20  Carlos Alberto Cortez <calberto.cortez@gmail.com>
11012         * ListBox.cs: Don't call Sort () when setting 
11013         the Sorted property to false (avoid an unnecessary sort).
11015 2006-07-20  Carlos Alberto Cortez <calberto.cortez@gmail.com>
11017         * ListControl.cs: DataSource should throw an ArgumentException
11018         instead of a normal exception when the argument is not of the 
11019         correct type.
11021 2006-07-20  Mike Kestner  <mkestner@novell.com>
11023         * Control.cs: add InternalPreProcessMessage to allow us to steal
11024         key events before MWF gets its paws on them.  Adapted from a
11025         suggestion by eno.
11026         * ToolBar.cs: add GotLostFocus handing for flat toolbars, with 
11027         up/down/left/right navigation. Override the new internal control
11028         method to steal the events since they never make it to WndProc.
11029         * ToolBarButton.cs: don't worry about pushed when setting hilight
11030         since the drawing code prefers pushed to hilight. Invalidate on 
11031         Hilight changes. Fixes #78547 and #78525.
11033 2006-07-20  Peter Dennis Bartok  <pbartok@novell.com> 
11035         * ScrollableControl.cs: Consider AutoScrollMinSize when calculating
11036           the canvas size. Fixes #78868
11038 2006-07-20  Peter Dennis Bartok  <pbartok@novell.com>
11040         * Splitter.cs: Track requested split position until first layout
11041           is performed. Fixes #78871
11043 2006-07-20  Peter Dennis Bartok  <pbartok@novell.com> 
11045         * Application.cs: Removed code that forces 1.x for the version
11046           number if the version started with 0. Not sure why that code was
11047           there and I couldn't find any bugs that indicated we needed it.
11048           Fixes #78869
11050 2006-07-20  Alexander Olk  <alex.olk@googlemail.com>
11052         * ThemeWin32Classic.cs: Don't throw a NotImplementedException in
11053           ResetDefaults(), just write some output to the console until it's
11054           implemented. Fixes bug #78907 for now. Eliminated two warnings.
11056 2006-07-19  Jonathan Chambers  <joncham@gmail.com>
11058         * PropertyGridView.cs: set StartPosition of drop down forms
11059         so they appear in correct initial spot.  Fixes #78190.
11061 2006-07-19  Mike Kestner  <mkestner@novell.com>
11063         * ThemeWin32Classic.cs: use parent background color when drawing
11064         flat toolbars.  Restructure the conditionals to make sure non-flat
11065         non-Divider toolbars are filled too.  Fixes #78837.
11067 2006-07-19  Mike Kestner  <mkestner@novell.com>
11069         * ListBox.cs: Sort on collection changes even if the handle
11070         isn't created yet.  Fixes #78813.
11072 2006-07-18  Carlos Alberto Cortez <calberto.cortez@gmail.com>
11074         * ListControl.cs: DisplayMember should never be null,
11075         and now we assign String.Empty when null is passed to it (this
11076         is the .Net way).
11078 2006-07-17  Mike Kestner  <mkestner@novell.com>
11080         * ListViewItem.cs: restructure Font and subitem Font handling 
11081         to hold a specific font and refer back to owner on null.
11082         Fixes #78761.
11084 2006-07-17  Mike Kestner  <mkestner@novell.com>
11086         * ToolBar.cs: bandaid for side-effect of previous patch which was
11087         discarding explicit heights for non-AutoSize toolbars.  Need to
11088         extend my format tester to deal with AutoSize=false. Fixes #78864.
11090 2006-07-15  Jackson Harper  <jackson@ximian.com>
11092         * LabelEditTextBox.cs:
11093         * TreeView.cs: Use a new LabelEdit class for node editing, this
11094         class automatically 'closes' itself when it gets the enter key or
11095         loses focus.
11096         - Use the client rectangle when setting the trees scrollbars, so
11097         border style is taken into account.
11098         
11099 2006-07-14  Jackson Harper  <jackson@ximian.com>
11101         * TreeNode.cs:
11102         * TreeView.cs: Make the editing work similar to MSs, firing the
11103         events correctly and ending edits correctly.
11105 2006-07-14  Mike Kestner  <mkestner@novell.com>
11107         * ToolBarButton.cs:
11108         * ToolBar.cs: layout restructuring and redraw enhancements to support
11109         formatting changes gracefully, like setting TextAlign, ImageList, 
11110         ButtonSize, and Appearance.  Handles explicit button sizing quirks
11111         of the MS controls.  Things like flat toolbars ignoring button size
11112         but becoming constant sized at the largest button's size.  Normal
11113         toolbars with an image set cannot be shrunk smaller than the image,
11114         but text can be clipped/ignored.
11115         * ThemeWin32Classic.cs: don't draw text if text_rect height or width
11116         is zero.  Seems like DrawString should be smart enough to not put
11117         anything on screen though. Also trim labels and ellipsize at the char
11118         boundary, not word.
11119         Fixes #78711 and #78483.
11121 2006-07-14  Alexander Olk  <alex.olk@googlemail.com>
11123         * FolderBrowserDialog.cs: Disable "New Folder" button and
11124           "New Folder" contextmenu menuitem if a folder like "My Computer"
11125           is selected.
11127 2006-07-14  Alexander Olk  <alex.olk@googlemail.com>
11129         * FileDialog.cs: Don't create a new folder in "MyComputer" folder.
11130         * FolderBrowserDialog.cs:
11131           - Use MWFConfig to store and read size and position settings
11132           - Added code to create a new folder (button or context menu).
11133             Use TreeView labeledit to change the name of the new folder.
11135 2006-07-14  Jackson Harper  <jackson@ximian.com>
11137         * TreeView.cs: Raise the OnAfterLabelEdit event correctly.  Also,
11138         when the tree is scrolled we end editing.
11140 2006-07-14  Alexander Olk  <alex.olk@googlemail.com>
11142         * ThemeWin32Classic.cs: Fixed position of CPDrawScrollButton Up and
11143           Down arrows
11145 2006-07-14  Jonathan Pobst  <monkey@ipobst.com> 
11147         WebBrowserProgressChangedEventHandler.cs, BindingCompleteEventArgs.cs,
11148         BindingCompleteEventHandler.cs, BindingManagerDataErrorEventArgs.cs,
11149         BindingManagerDataErrorEventHandler.cs, CacheVirtualItemsEventArgs.cs,
11150         CacheVirtualItemsEventHandler.cs, ColumnReorderedEventArgs.cs,
11151         ColumnReorderedEventHandler.cs, ColumnWidthChangedEventArgs.cs,
11152         ColumnWidthChangedEventHandler.cs, ColumnWidthChangingEventArgs.cs,
11153         ColumnWidthChangingEventHandler.cs, FormClosedEventArgs.cs,
11154         FormClosedEventHandler.cs, FormClosingEventArgs.cs,
11155         FormClosingEventHandler.cs, ItemCheckedEventArgs.cs,
11156         ItemCheckedEventHandler.cs, ListControlConvertEventArgs.cs,
11157         ListControlConvertEventHandler.cs, ListViewItemMouseHoverEventArgs.cs,
11158         ListViewItemMouseHoverEventHandler.cs, ListViewItemSelectionChangedEventArgs.cs,
11159         ListViewItemSelectionChangedEventHandler.cs,
11160         ListViewVirtualItemsSelectionRangeChangedEventArgs.cs,
11161         ListViewVirtualItemsSelectionRangeChangedEventHandler.cs,
11162         MaskInputRejectedEventArgs.cs, MaskInputRejectedEventHandler.cs,
11163         PopupEventArgs.cs, PopupEventHandler.cs, PreviewKeyDownEventArgs.cs,
11164         PreviewKeyDownEventHandler.cs, RetrieveVirtualItemEventArgs.cs,
11165         RetrieveVirtualItemEventHandler.cs, SearchForVirtualItemEventArgs.cs,
11166         SearchForVirtualItemEventHandler.cs, SplitterCancelEventArgs.cs,
11167         SplitterCancelEventHandler.cs, TabControlCancelEventArgs.cs, 
11168         TabControlCancelEventHandler.cs, TabControlEventArgs.cs, 
11169         TabControlEventHandler.cs, TableLayoutCellPaintEventArgs.cs,
11170         TableLayoutCellPaintEventHandler.cs, ToolStripDropDownClosedEventArgs.cs,
11171         ToolStripDropDownClosedEventHandler.cs, ToolStripDropDownClosingEventArgs.cs,
11172         ToolStripDropDownClosingEventHandler.cs, TreeNodeMouseClickEventArgs.cs,
11173         TreeNodeMouseClickEventHandler.cs, TreeNodeMouseHoverEventArgs.cs,
11174         TreeNodeMouseHoverEventHandler.cs, TypeValidationEventArgs.cs,
11175         TypeValidationEventHandler.cs, WebBrowserDocumentCompletedEventArgs.cs,
11176         WebBrowserDocumentCompletedEventHandler.cs, WebBrowserNavigatedEventArgs.cs,
11177         WebBrowserNavigatedEventHandler.cs, WebBrowserNavigatingEventArgs.cs,
11178         WebBrowserNavigatingEventHandler.cs, 
11179         WebBrowserProgressChangedEventArgs.cs: New 2.0 Event Handlers
11181 2006-07-14  Jonathan Pobst  <monkey@ipobst.com>
11183         MergeAction.cs, PowerLineStatus.cs, PowerState.cs, PreProcessControlState.cs,
11184         RichTextBoxLanguageOptions.cs, ScreenOrientation.cs, ScrollOrientation.cs,
11185         SearchDirectionHint.cs, SystemParameter.cs, TabControlAction.cs,
11186         TableLayoutPanelCellBorderStyle.cs, TextDataFormat.cs, TextImageRelation.cs,
11187         ToolStripDropDownCloseReason.cs, ToolStripDropDownDirection.cs,
11188         ToolStripGripDisplayStyle.cs, ToolStripGripStyle.cs,
11189         ToolStripItemAlignment.cs, ToolStripItemDisplayStyle.cs,
11190         ToolStripItemImageScaling.cs, ToolStripItemOverflow.cs,
11191         ToolStripItemPlacement.cs, ToolStripLayoutStyle.cs,
11192         ToolStripManagerRenderMode.cs, ToolStripRenderMode.cs,
11193         ToolStripStatusLabelBorderSides.cs, ToolStripTextDirection.cs,
11194         ToolTipIcon.cs, TreeNodeStates.cs, TreeViewDrawMode.cs,
11195         TreeViewHitTestLocations.cs, UnhandledExceptionMode.cs, ValidationConstraints.cs,
11196         WebBrowserEncryptionLevel.cs, WebBrowserReadyState.cs, WebBrowserRefreshOption.cs,
11197         ArrowDirection.cs, AutoCompleteMode.cs, AutoCompleteSource.cs, AutoSizeMode.cs,
11198         AutoValidate.cs, BatteryChargeStatus.cs, BindingCompleteContext.cs,
11199         BindingCompleteState.cs, CloseReason.cs, ColumnHeaderAutoResizeStyle.cs,
11200         ControlUpdateMode.cs, DataSourceUpdateMode.cs, DockingBehavior.cs,
11201         FixedPanel.cs, FlowDirection.cs, GetChildAtPointSkip.cs,
11202         HtmlElementInsertionOrientation.cs, InsertKeyMode.cs, ListViewHitTestLocations.cs,
11203         ListViewItemStates.cs, MaskFormat.cs: Added
11205 2006-07-13  Jonathan Chambers  <joncham@gmail.com>
11207         * PropertyGridView.cs: Fix keyboard navigation of drop down.
11208         Patch from eno for bug 78558.
11209         
11210 2006-07-13  Jackson Harper  <jackson@ximian.com>
11212         * TreeView.cs: When an edit is finished make sure that the
11213         selected node is visible.
11214         - When setting the top/bottom use the scrollbars is_visible, so
11215         everything will be set correctly even if the tree isn't visible
11216         yet.
11218 2006-07-13  Jackson Harper  <jackson@ximian.com>
11220         * ComboBox.cs: Revert the item->index part of my previous patch.
11221         * TreeView.cs: Use LostFocus instead of Leave for detecting when
11222         the edit box has lost focus (duh).
11223         - Just make the edit box not visible when we get return, that will
11224         take the focus, which will call EndEdit
11225         * TreeNode.cs When we start editing, notify the treeview.
11227 2006-07-12  Jackson Harper  <jackson@ximian.com>
11229         * ComboBox.cs: Clear out old items before setting the item list.
11230         This prevents databound controls from having their items added
11231         twice.
11232         - Switch the combobox to use indices whereever possible instead of
11233         using Item's.  This allows usto navigate through lists that have
11234         more then one item with the same string value (ie a, b, b, a).
11235         - Scroll the listboxes scrollbar when a non visible item is
11236         highlighted
11237         - Allow keypress to cycle through all the possible values. For
11238         example if you have b1, b2, b3 and hold down the B key all the
11239         values will be cycled through.
11240         
11241 2006-07-12  Jackson Harper  <jackson@ximian.com>
11243         * TextBoxBase.cs:
11244         * ListView.cs: Don't need to override SETFOCUS anymore, we can do
11245         this using the internal methods.
11246         * Control.cs: Add OnGotFocusInternal.  A new method that allows
11247         controls to "override" OnGotFocus and change focus behavior if
11248         needed.
11249         - Same thing for LostFocus
11250         * ComboBox.cs: Pass off focus to the text control properly.
11252 2006-07-12  Alexander Olk  <alex.olk@googlemail.com>
11254         * FileDialog.cs: Added GetFoldersOnly to MWFVFS
11255         * FolderBrowserDialog.cs: Almost a complete rewrite.
11256           - Better support for Environment.Specialfolders
11257           - Added support for MWFVFS
11258           - Made setting SelectedPath work
11260 2006-07-12  Jackson Harper  <jackson@ximian.com>
11262         * Control.cs: Optimze getting all the controls.
11264 2006-07-11  Jackson Harper  <jackson@ximian.com>
11266         * ContainerControl.cs: Override SETFOCUS in the container control,
11267         so that it is not selected on mouse click.
11269 2006-07-11  Peter Dennis Bartok  <pbartok@novell.com> 
11271         * LinkLabel.cs: Hack to handle Shift-Tabbing to the linklabel. 
11272           Hopefully we will have a better way once all of focus is complete.
11274 2006-07-11  Peter Dennis Bartok  <pbartok@novell.com>
11276         * ThemeWin32Classic.cs: Commented out some debug code and fixed
11277           a compile error with csc.
11279 2006-07-11  Jackson Harper  <jackson@ximian.com>
11281         * Control.cs: When hiding a control only select the next control
11282         if the current control was focused.
11283         - Don't handle enter/leave when setting/killing focus, this is
11284         done by the container control.
11285         - Remove is_selected, it's not needed anymore.
11286         - Add utility methods for selecting a child control, and for
11287         firing the Enter/Leave events.
11288         * ContainerControl.cs: When a control is activated fire the
11289         enter/leave events.
11290         - Don't wrap when processing the tab key, so that focus can be
11291         moved outside of the container.
11292         - Use the correct active control
11294 2006-07-11  Jackson Harper  <jackson@ximian.com>
11296         * ComboBox.cs: Remove some debug code that was blinding me.
11297         * UpDownBase.cs: These controls actually aren't implicit, they are
11298         visible to the user.
11300 2006-07-10  Chris Toshok  <toshok@ximian.com>
11302         * DataGrid.cs: move back to the is_adding boolean field.  god i
11303         hate this is_editing/is_adding/is_changing stuff.
11305 2006-07-10  Chris Toshok  <toshok@ximian.com>
11307         * DataGridTableStyle.cs: just check if the property type is bool.
11308         if it is, use DataGridBoolColumn, otherwise DataGridTextBoxColumn.
11309         Don't use CanRenderType.
11311         * DataGridTextBoxColumn.cs: set the value to DBNull.Value, not "",
11312         if our text == NullText.  Remove CanRenderType.
11314         * DataGridBoolColumn.cs: nuke CanRenderType.
11316         * DataGrid.cs: reenable some code to end the current edit inside
11317         of set_CurrentCell.  This fixes the other 1.1.16 regression.
11318         Also, remove rowhdrs_maxheight and just use rowhdrs_area.Height.
11319         Also, remove the visible_row_count arg from CalcRowHeaders, since
11320         we don't need to worry about the actual height of the area.
11322 2006-07-10  Chris Toshok  <toshok@ximian.com>
11324         * DataGridTextBoxColumn.cs: if when we Commit we're in navigate
11325         mode, just return.
11327         * DataGridTextBox.cs: change "isedit" to "isnavigating" to reflect
11328         the real sense of the IsInEditOrNavigateMode property (true =
11329         navigate, false = edit).  Also, update OnKeyPress to reflect this.
11331         * DataGridTableStyle.cs (CreateColumnsForTable): even if the
11332         column style exists, we still need to set its property descriptor
11333         to match up with our list manager.
11335 2006-07-10  Chris Toshok  <toshok@ximian.com>
11337         * ThemeWin32Classic.cs: implement the new row/header painting
11338         approach.  The parent row painting will likely go away and
11339         replaced with label controls, but the rest seems to work ok (and
11340         efficiently).
11342         * Theme.cs: change the way we draw datagrid rows.  we don't draw
11343         the row headers as a block now.  Instead we draw them in the
11344         normal draw-row loop.  Add some calls for drawing parent rows and
11345         relation rows.
11347         * DataGridTableStyle.cs: add tons of ArgumentExceptions if this is
11348         a default table style.  Set the defaults from ThemeEngine.Current,
11349         not SystemColors.  Fix lots of misc issues with property setters.
11351         * DataGrid.cs: move loads of style information out of this class
11352         as it's being duplicated with DataGridTableStyle.  keep track of a
11353         special DataGridTableStyle for the properties we used to mirror
11354         here.  Switch all the style properties to access this table style
11355         instead of instance fields of this class.  Also add a internal
11356         class to represent parent rows (more needs to be stored here, like
11357         the selection state from the parent table, as well as the
11358         expansion state.)  Also, for datasources with relations, do the
11359         right thing for collapse/expand, and add support for the
11360         navigation/parent row buttons.
11362         Lastly, fix the crash in the 1.1.16 build.
11364         * GridTableStylesCollection.cs: make the explicit interface
11365         implementations call the class's methods as opposed to duplicating
11366         them.
11368         * DataGridTextBoxColumn.cs: set the x/y offset of the textfield to
11369         0 so the text doesn't jump around when we move the cursor.
11371 2006-07-10  Jackson Harper  <jackson@ximian.com>
11373         * TextBoxBase.cs:
11374         * ListBox.cs: Match MS's ToString (this makes debugging focus
11375         stuff infinitely easier).
11377 2006-07-10  Jackson Harper  <jackson@ximian.com>
11379         * Control.cs (SelectNextControl): When checking the control's
11380         parent use this instead of ctrl.parent so that null can be passed
11381         to SelectNextControl. (I have unit tests for this).
11382         - Remove unused var.
11384 2006-07-10  Chris Toshok  <toshok@ximian.com>
11386         * CurrencyManager.cs: correct one regression, the removal of the
11387         finalType field.  Also, add a MonoTODO on CanAddRows, implement
11388         Refresh() correctly, and fix some event emission in
11389         ListChangedHandler.
11391 2006-07-07  Alexander Olk  <alex.olk@googlemail.com>
11393         * FileDialog.cs: Don't use brackets for new folders if they exist
11394           under *nix. Instead use -(number of existing folders +1).
11396 2006-07-07  Alexander Olk  <alex.olk@googlemail.com>
11398         * FileDialog.cs:
11399           - Fixed really nasty bug #78771
11400           - Don't block the whole GUI when reading directories with a lot of
11401             entries. Use an other thread instead and call BeginInvoke to
11402             update the ListView in MWFFileView
11404 2006-07-07  Chris Toshok  <toshok@ximian.com>
11406         * Control.cs (Dispose): release any Capture when disposing.
11408 2006-07-07  Chris Toshok  <toshok@ximian.com>
11410         * LinkLabel.cs (Select): if we chain up to the parent, set
11411         focused_index to -1 so we'll search for the first available link
11412         the next time the user tabs into us.  Also, if the direction is
11413         backward and focused_index == -1, start the search from the last
11414         element.
11416 2006-07-07  Chris Toshok  <toshok@ximian.com>
11418         * LinkLabel.cs (CreatePiecesFromText): if the link's range piece
11419         is beyond the end of the text, don't do anything.
11420         (CreateLinkPieces): set our ControlStyles.Selectable based on
11421         whether or not we have any links.
11422         (Link.Invalidate): use a loop instead of foreach.
11423         (Link.set_Start): null out owner.sorted_links so it'll be
11424         recreated by CreateLinkPieces.
11426 2006-07-06  Chris Toshok  <toshok@ximian.com>
11428         * LinkLabel.cs: revert the SetStyle change.
11430 2006-07-06  Chris Toshok  <toshok@ximian.com>
11432         * LinkLabel.cs (.ctor): SetStyle Selectable to true.
11433         (OnEnableChanged): s/Refresh/Invalidate
11434         (OnGotFocus): if we have a focused index already, refocus it (so
11435         if we mouse out/in to the window it'll focus the right link).
11436         (OnKeyDown): move the tab handling out of here.
11437         (OnLostFocus): don't set focused_index to -1, so we can refocus it
11438         when we lose focus.
11439         (OnMouseDown): don't Capture here - Control handles it.  Also,
11440         focus the active link.
11441         (OnMouseUp): don't deal with Capture.
11442         (OnPaintBackgroundInternal): remove.
11443         (OnTextAlignChanged): CreateLinkPieces before calling the
11444         superclass's method.
11445         (OnTextChanged): call CreateLinkPieces before calling superclass's
11446         method.
11447         (ProcessDialogKey): handle Tab here, and call Select(bool,bool) to
11448         move around.
11449         (Select): implement this, moving the selection between different
11450         links, and call parent.SelectNextControl if we don't have another
11451         link to focus in the given direction.
11452         (CreateLinkPieces): call Invalidate instead of Refresh.
11453         
11454 2006-07-06  Chris Toshok  <toshok@ximian.com>
11456         * ThemeWin32Classic.cs: DrawLinkLabel changes to accomodate the
11457         new LinkLabel internals.
11459         * LinkLabel.cs: fairly major rewrite.  get rid of all the loops
11460         over pieces looking for active/focused/etc links.  also, deal with
11461         runs of text (and links) with embedded \n's in them, and use
11462         MeasureCharacterRanges instead of MeasureString to figure out the
11463         regions text occupies.  Lastly, do the usual s/Refresh/Invalidate
11464         two-step.
11466 2006-07-04  Jackson Harper  <jackson@ximian.com>
11468         * XplatUIX11.cs: Enable key auto repeat. If the user doesn't have
11469         XKB or key auto repeat, do it manually.  Without key auto repeat,
11470         when a key is held down we get key press, key release, key press,
11471         key release, ... with auto repeat we get key press, key press, key
11472         press ..., and then a release when the key is actually released.
11474 2006-07-03  Jackson Harper  <jackson@ximian.com>
11476         * TabControl.cs:
11477         * ThemeWin32Classic.cs: Tabs do not obey normal background color
11478         rules, they are always control color regardless of the background
11479         color.
11481 2006-07-02  Alexander Olk  <alex.olk@googlemail.com>
11483         * FileDialog.cs: Added internal class MWFConfig.
11484           Removed Registry support and replaced it with support for the new
11485           MWFConfig class. See MWFConfig comments for more information.
11487 2006-06-30  Alexander Olk  <alex.olk@googlemail.com>
11489         * ThemeWin32Classic.cs: Added RadioButton and CheckBox focus
11490           rectangle. Added some patches from eno from bug #78490 and fixed
11491           the arrow position for small up and down CPDrawScrollButtons.
11493 2006-06-30  Jackson Harper  <jackson@ximian.com>
11495         * InternalWindowManager.cs: Remove some debug code.
11496         * Form.cs: When an MdiParent is set to null, the window is
11497         "detatched" and becomes a normal window.
11498         * MdiClient.cs: Don't bring the new child form to the front until
11499         it is activated (setting it as active does this), this makes the
11500         previously active forms titlebar get redrawn as inactive.
11502 2006-06-29  Peter Dennis Bartok  <pbartok@novell.com>
11504         * PrintDialog.cs: Labels need a tab index too, otherwise they overlap
11505           with later controls
11507 2006-06-29  Mike Kestner  <mkestner@novell.com>
11509         * MenuAPI.cs: handle arrow keys in keynav state. Go active on down
11510         arrow in keynav state.  Fixes #78682.
11512 2006-06-28  Atsushi Enomoto  <atsushi@ximian.com>
11514         * PrintDialog.cs: Reorder, relayout, remove extra code, set tab 
11515           order (fixes #78393)
11517 2006-06-28  Jonathan Pobst  <monkey@ipobst.com>
11519         * AccessibleRole.cs, AccessibleStates.cs, AnchorStyles.cs, 
11520           ArrangeDirection.cs, ArrangeStartingPosition.cs, ColorDepth.cs,
11521           ControlStyles.cs, DataGridViewImageCellLayout.cs, DrawMode.cs,
11522           FormBorderStyle.cs, FormStartPosition.cs, FormWindowState.cs,
11523           GridItemType.cs, HelpNavigator.cs, ImeMode.cs, ItemActivation.cs,
11524           ItemBoundsPortion.cs, Keys.cs, ListViewAlignment.cs, 
11525           PictureBoxSizeMode.cs, PropertySort.cs, SelectionMode.cs,
11526           Shortcut.cs, SizeGripStyle.cs, SortOrder.cs, StructFormat.cs,
11527           TextFormatFlags.cs, ToolBarAppearance.cs, ToolBarButtonStyle.cs,
11528           ToolBarTextAlign.cs, View.cs: 2.0 Changes to existing 1.x
11529           enumerations (FlagsAttribute, SerializableAttribute, added/removed
11530           values)
11532 2006-06-28  Mike Kestner  <mkestner@novell.com>
11534         * ComboBox.cs: implement scroll wheel support. Fixes #78360.
11536 2006-06-28  Atsushi Enomoto  <atsushi@ximian.com>
11538         * PropertyGrid.cs,
11539           PropertyGridTextBox.cs : explicitly set BackColor to differentiate
11540           item lines from other area (It also makes BackColor consistent and
11541           compatible with .NET). Fixed bug #78564.
11543 2006-06-28  Jonathan Chambers  <jonathan.chambers@ansys.com>
11545         * PropertyGrid.cs: refresh toolbar when PropertySort is set.
11546         Patch from Eno for #78555.
11548 2006-06-27  Chris Toshok  <toshok@ximian.com>
11550         * ThemeWin32Classic.cs: s/grid.grid_drawing/grid
11552         * DataGridColumnStyle.cs: same.
11554         * DataGrid.cs: Roll DataGridDrawingLogic.cs into this file.
11555         
11556         * DataGridDrawingLogic.cs: nuke.
11558 2006-06-27  Chris Toshok  <toshok@ximian.com>
11560         * DataGridTableStyle.cs: clean up the constructors, and build the
11561         list of child relations for this table.  I have no idea if this is
11562         where we should be doing it (it probably isn't), but since we're
11563         already iterating over the properties..
11565         * DataGrid.cs: add row resizing.  for now we add a DataGridRow
11566         struct and array for keeping track of row information, similar to
11567         what's shown in a hack on
11568         http://www.syncfusion.com/FAQ/WindowsForms/FAQ_c44c.aspx.
11570         * Theme.cs: be consistent about the naming of DataGrid methods,
11571         prefering ColumnWidths and RowHeights over columnsWidths and
11572         RowsHeights.
11574         * ThemeWin32Classic.cs: same, and also add support for variable
11575         sized rows (and the +/- expansion icons for related rows).
11577 2006-06-27  Peter Dennis Bartok  <pbartok@novell.com>
11579         * TextBoxBase.cs: Applied Eno's patch from #78660
11581 2006-06-27  Peter Dennis Bartok  <pbartok@novell.com> 
11583         * Form.cs (ScaleCore): We don't want to scale our form if it's
11584           state is minimized or maximized, but we still need to scale our
11585           child windows. Also, added try/finally block to ensure layout
11586           gets reset (Fixes #78697)
11588 2006-06-27  Peter Dennis Bartok  <pbartok@novell.com>
11590         * Control.cs: Added 2.0 Scale(SizeF) method (Fixes 78700)
11592 2006-06-27  Peter Dennis Bartok  <pbartok@novell.com> 
11594         * Form.cs: Fixed c+p error and added check to resize form if minimum
11595           size is bigger than current size (Fixes #78709)
11597 2006-06-26  Peter Dennis Bartok  <pbartok@novell.com> 
11599         * ThemeEngine.cs (..ctor): Properly use ToLower() (Fixes #78704)
11601 2006-06-26  Mike Kestner  <mkestner@novell.com>
11603         * ComboBox.cs: only do Keypress handling in the combo when there  
11604         are items in the collection. Fixes #78710.
11606 2006-06-26  Chris Toshok  <toshok@ximian.com>
11608         * Binding.cs: make this work bi-directionally.  also, clear up
11609         other mixups between Push/Pull Data (e.g. we're supposed to pull
11610         data when validating).
11612         * BindingManagerBase.cs: trim some fully qualified collection
11613         types.
11615         * PropertyManager.cs (get_IsSuspended): oops, fix this check.
11617 2006-06-23  Chris Toshok  <toshok@ximian.com>
11619         * PropertyManager.cs: It appears (according to the unit tests)
11620         that PropertyManager doesn't use
11621         PropertyDescriptor.AddValueChanged to track propery value changes
11622         in its datasource, but uses the same scheme as Binding, where it
11623         looks for a <Property>Changed event and binds to it.
11625         Also, according to the docs, IsSuspended always returns false for
11626         a property manager with a non-null datasource.
11628 2006-06-22  Peter Dennis Bartok  <pbartok@novell.com> 
11630         * Form.cs: (ShowDialog): If we're returning a forced cancel we still
11631           need to update the actual DialogResult. (Fixes #78613)
11633 2006-06-22  Peter Dennis Bartok  <pbartok@novell.com>
11635         * Form.cs (ShowDialog): Release any captures before running the
11636           new message pump (fixes #78680)
11638 2006-06-22  Mike Kestner  <mkestner@novell.com>
11640         * ListView.cs: Layout column widths properly in details mode even 
11641         if HeaderStyle.None is set.  Fixes #78691.
11643 2006-06-21  Peter Dennis Bartok  <pbartok@novell.com>
11645         * FileDialog.cs: Fixed taborder to match MS. Fixes #77873 partially.
11647 2006-06-21  Peter Dennis Bartok  <pbartok@novell.com> 
11649         * Control.cs (ContainsFocus): Using new driver method to get focused
11650           window, instead of trying to use internal tracking var, which can
11651           recursion issues (Fixes #78685)
11652         * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs, XplatUIOSX.cs, 
11653           XplatUIWin32.cs: Added GetFocus method to return focused window
11655 2006-06-21 Gonzalo Paniagua Javier <gonzalo@ximian.com>
11657         * ColorDialog.cs: when the mouse button is pressed inside the color
11658         matrix, don't let the cursor move out of it until the button is
11659         released, which is the behavior on windows. Changed 'colours' by
11660         'colors' to use the same word consistently.
11662 2006-06-21  Chris Toshok  <toshok@ximian.com>
11664         * DataGrid.cs: add in some basic navigation stuff (navigating to a
11665         child relation and back, using a stack).  Also, remove
11666         GetDataSource and the code that calls it - it's not needed.  Also,
11667         track CurrencyManager.ListName's removal.
11669 2006-06-21  Chris Toshok  <toshok@ximian.com>
11671         * CurrencyManager.cs: push some of the original type checking from
11672         BindingContext.CreateBindingManager to here, and remove some of
11673         the finalType stuff.  Need more tests to make sure I've got the
11674         ListName part right, and we might need more in SetDataSource.
11676         * PropertyManager.cs: add a ctor that takes just the datasource,
11677         and no property name.  Make SetDataSource work with a null
11678         property_name, and make Current return the data_source if the
11679         property descriptor is null.  this makes 'string foo = "hi";
11680         BindingContext[foo].Current' return "hi" as it should.
11682         * RelatedCurrencyManager.cs: make this code more generic - there's
11683         no reason the parent manager has to be CurrencyManager, and
11684         there's no reason to pass the DataRelation.  It suffices to use a
11685         BindingManagerBase and PropetyDescriptor.
11687         * RelatedPropertyManager.cs: make a similar change here.
11688         
11689         * BindingContext.cs: make CreateBindingManager the beautiful, tiny
11690         flower I knew it could be.
11692 2006-06-20  Chris Toshok  <toshok@ximian.com>
11694         * PropertyManager.cs: the PropertyChangedHandler is invoked when
11695         data in the source has changed and we need to update the control,
11696         so s/PullData/PushData.
11698         * CurrencyManager.cs: Refresh is meant to update the control from
11699         data in the datasource.  So, s/PullData/PushData.
11701         * BindingContext.cs: add more ugliness (we weren't handling the
11702         case where data_source = DataTable and data_member = column_name).
11704         * Binding.cs: fix PushData/PullData mixup.  Both are interpreted
11705         from the perspective of the datasource.  PullData pulls from the
11706         control, PushData pushes to the control.
11708 2006-06-20  Chris Toshok  <toshok@ximian.com>
11710         * BindingContext.cs: rewrite the CreateBindingManager code to
11711         handle navigation paths more or less properly.  This could
11712         definitely stand some more work, in particular to push the
11713         recursion up to the toplevel.  But that relies on fixes in other
11714         places (System.Data comes to mind).
11716         Also, move to a flat hashtable (and encode the twolevel nature of
11717         the dictionary into the hash key).  This lets us implement the
11718         IEnumerable.GetEnumerator method.
11720         * RelatedCurrencyManager.cs: new class.  Update our view based on
11721         our relation and our parent CurrencyManager's position.
11723         * CurrencyManager.cs: split out some logic from the ctor into
11724         SetView, so it can be called from the new RelatedCurrencyManager
11725         subclass.
11727         * RelatedPropertyManager.cs: new class.  Update our datasource
11728         based on the position of our parent CurrencyManager.
11730         * PropertyManager.cs: split out some logic from the ctor into
11731         SetDataSource, so it can be called from the new RelatedDataSource
11732         subclass.  Also, make the Current getter return the value
11733         of the PropertyDescriptor, not the data_source.
11735         * Binding.cs: no need to duplicate the string splitting code here.
11737 2006-06-19  Peter Dennis Bartok  <pbartok@novell.com> 
11739         * Control.cs:
11740           - set_Enabled: OnEnabledChanged is not called if the inherited state 
11741             of the control is not altered, even though  we might be changing the
11742             internal state of the control (#78458)
11743           - set_Enabled: (Re)Moved the enabling/disabling of the window to 
11744             OnEnabledChanged, to allow easy altering of any child window state
11745           - OnEnabledChanged: Added code to enable/disable driver window state
11746           - OnParentEnabledChanged: Instead of firing the event, call 
11747             OnEnabledChanged, which will fire the event and also a) set driver
11748             window state and pass the enabled state to any grandchildren (#78458)
11750 2006-06-19  Jackson Harper  <jackson@ximian.com>
11752         * InternalWindowManager.cs: We don't set the cursor explicitly
11753         thats done via the response to NCHITTESTs.
11754         - Don't need to adjust for titlebar heights anymore, the
11755         coordinates are coming in the correct coordinates now (see peters
11756         last patch).
11759 2006-06-19  Peter Dennis Bartok  <pbartok@novell.com> 
11761         * XplatUIX11.cs (GetMessage): WM_NCxBUTTONx messages were wrongly
11762           being translated relative to whole window, instead of client window.
11763           That caused broken offsets on mouseclick (and caused gas for our
11764           InternalWindowManager)
11766 2006-06-15  Peter Dennis Bartok  <pbartok@novell.com> 
11768         * TextControl.cs:
11769           - MoveCaret: Implemented PgUp, PgDown, CtrlPgUp and CtrlPgDown
11770           - Undo(): Added replay of cursor move on DeleteChars action; added
11771             calling Undo() again if a recorded cursor move is invalid (to
11772             ensure that some action is performed on Undo)
11773         * TextBoxBase.cs (ProcessKey): Added handling of PgUp and PgDown (#78482)
11775 2006-06-16  Jackson Harper  <jackson@ximian.com>
11777         * MdiClient.cs: Instead of just sizing maximized windows when
11778         there is a resize we also have to adjust the Y of minimized
11779         windows, so they stay pinned to the bottom of the mdi container.
11780         - Eliminate separate tracking of the active control, we can just
11781         get this from the controls collection.
11782         - Paint the decorations for the newly activated titlebar so we get
11783         a pretty blue bar.
11784         * InternalWindowManager.cs:
11785         * ThemeWin32Classic.cs: Minimized windows get all three buttons
11786         even if they are a tool window.
11787         
11788 2006-06-15  Peter Dennis Bartok  <pbartok@novell.com> 
11790         * TextControl.cs (Undo): Handle non-existent cursor locations in the
11791           undo buffer, these can happen when text was deleted and the cursor
11792           was recorded first. Since we will also have a recorded cursor
11793           after the delete this is not an issue. (Fixes #78651)
11795 2006-06-14  Peter Dennis Bartok  <pbartok@novell.com> 
11797         * AccessibleObject.cs: Remove dependence on Control.is_selected;
11798           instead properly track control states internally (allows us to
11799           remove is_selected from Control)
11801 2006-06-14 Gonzalo Paniagua Javier <gonzalo@ximian.com>
11803         * ImageListStreamer.cs: correctly generate the 1bpp mask for images
11804         whose width is not a multiple of 8.
11806 2006-06-13  Jackson Harper  <jackson@ximian.com>
11808         * MdiClient.cs:  Only maximize the next child if the current one
11809         is maximized.
11811 2006-06-13  Chris Toshok  <toshok@ximian.com>
11813         * DataGridColumnStyle.cs: Invalidate the column when HeaderText is
11814         modified.  Also, guard against grid or grid_drawing being null in
11815         Invalidate.
11817         * DataGrid.cs: Reformat tons of getters/setters.  In the
11818         DataMember setter, just call SetNewDataSource instead of
11819         duplicating some of its functionality.  In SetNewDataSource, don't
11820         check ListManager for null, since the property getter creates the
11821         object if needed.
11823         * DataGridTableStyle.cs: don't set TableStyle or call
11824         SetDataGridInternal on the column here, it's done in
11825         GridColumnStylesCollection.Add.
11827         * GridColumnStylesCollection.cs: fix all the explicit interface
11828         implementations to just call our methods.  Nuke AddInternal() and
11829         move the body of it to Add().  Also, add a call to
11830         column.SetDataGridInternal to Add().
11832         * DataGridTextBoxColumn.cs (.ctors): call this() instead of
11833         base()+duplicate code.  Also, use the Format property instead of
11834         format to generate an Invalidate ala MS.  Lastly, create the
11835         textbox here, unconditionally.
11836         (set_Format): call Invalidate.
11837         (get_TextBox): no need to call EnsureTextBox.
11838         (Commit): remove the message box.
11839         (Edit) remove the call to EnsureTextBox.
11840         (EndEdit): call HideEditBox instead of ReleaseHostedControl.
11841         (EnterNullValue): no need to check textbox for null.
11842         (HideEditBox): no need to check textbox for null.
11843         (SetDataGridInColumn): add the textbox to the grid's controls.
11844         (EnsureTextBox): nuke.
11845         
11846 2006-06-13  Jackson Harper  <jackson@ximian.com>
11848         * MdiWindowManager.cs: Hook up to the maximized menus paint event
11849         and redraw the buttons when needed. Unhook when the window is
11850         unmaximized.
11851         * MainMenu.cs: Add an internal Paint event, the mdi window manager
11852         needs this so that it can redraw its buttons when the menu is
11853         repainted.
11854         * InternalWindowManager.cs:
11855         * Form.cs: The method order has changed for DrawMaximizedButtons,
11856         so that it can be a PaintEventHandler.
11857         
11858 2006-06-13  Jackson Harper  <jackson@ximian.com>
11860         * MdiClient.cs: When we close a maximized mdi window, the next mdi
11861         window is activated and maximized, even if it wasn't before.
11862         - When  a new window is activated repaint the decorations of the
11863         old one, so that it no longer has the Active "look" (the blue
11864         titlebar).
11865         * InternalWindowManager.cs: Open up CreateButtons to base classes
11866         so they can recreate the buttons on state changes.
11867         - If a window is maximized give it all three buttons
11868         * MdiWindowManager.cs: Create the titlebar buttons when the state
11869         is changed, this is needed because a toolwindow will not have all
11870         three buttons until it is maximized.
11872 2006-06-13  Atsushi Enomoto  <atsushi@ximian.com>
11874         * ProgressBar.cs : PerformStep() shouldn't exceed Maximum.
11875           Fixed bug #78609.
11877 2006-06-12  Jackson Harper  <jackson@ximian.com>
11879         * KeysConverter.cs: Make sure we handle the Ctrl special case
11880         if its the only key.
11881         
11882 2006-06-12  Jackson Harper  <jackson@ximian.com>
11884         * Theme.cs: Add a method to get the size of a managed window
11885         toolbar button.
11886         * InternalWindowManager.cs: Remove the ButtonSize property, this
11887         should be retrieved from the theme.
11888         * MdiWindowManager.cs: Get the button size from the theme
11889         * ThemeWin32Classic.cs: Make the method to get the managed window
11890         titlebar button size public.
11891         - Handle the different button sizes of maximized toolwindows
11892         (should match any maximized window).
11893         - Get the titlebar height from the theme, not the WM (which gets
11894         it from the theme).
11896 2006-06-12  Jackson Harper  <jackson@ximian.com>
11898         * InternalWindowManager.cs: Handle NC Double Clicks, passing the
11899         event down to the mdi window manager.
11900         - Expose some extra stuff to base classes
11901         - Make sure to end the Capture on an NC Mouse up, so that we can
11902         get double clicks properly, and the sizing doens't stick.
11903         - When doing PointToClient contain it in the workable desktop
11904         area, this prevents windows from changing size when the cursor is
11905         pulled outside of the working area while sizing.
11906         * MdiWindowManager.cs: When we get a double click maximize the
11907         window.
11908         - Reset the cursor after handling mode changes.
11910 2006-06-12  Peter Dennis Bartok  <pbartok@novell.com> 
11912         * XplatUIX11.cs (WorkingArea): Read the actual workarea for the 
11913           current desktop, instead of just assuming a 0, 0 origin. This
11914           is needed for our internal window manager, to know the top
11915           margin of the desktop
11917 2006-06-12  Chris Toshok  <toshok@ximian.com>
11919         * DataGrid.cs (set_CurrentCell): concede focus as we move around.
11920         we need this to get rid of the selected background in the bool
11921         column.
11922         (CancelEditing): move the ConcedeFocus call to above the Abort
11923         call.  Also, set is_changing to false and invalidate the row
11924         header if we were changing before.
11925         (ProcessKeyPreviewInternal): remove, since noone outside this
11926         class calls it anymore.  Roll the code into ProcessKeyPreview.
11927         (EndEdit): remove the internal version.
11928         (InvalidateCurrentRowHeader): make private.
11930         * DataGridBoolColumn.cs: simplify this class a bunch.  remove the
11931         Keys.Escape handling (and with it the last call to
11932         DataGrid.EndEdit from outside the class.)
11935 2006-06-12  Chris Toshok  <toshok@ximian.com>
11937         * DataGridTextBox.cs (.ctor): isedit defaults to false.
11938         (OnKeyPress): set isedit to true.
11939         (ProcessKeyMessage): remove Keys.Enter handling from here.  it's
11940         already handled by the grid.
11942         * DataGrid.cs (set_CurrentCell): more work here.  it's still not
11943         right.  ugh.
11944         (set_DataSource): SetDataSource always returns true, so stop
11945         putting it in an if statement.
11946         (EndEdit): get rid of some {}'s
11947         (ProcessGridKey): return true in case Keys.Escape.
11948         (ProcessKeyPreviewInternal): only handle KEYDOWN messages.
11949         (ConnectListManagerEvents,DisconnectListManagerEvents): connect to
11950         PositionChanged, stopped connecting to CurrentChanged.
11951         (GetDataSource): simplify this a bunch.
11952         (SetDataSource): change return type from bool to void.
11953         (OnListManagerPositionChanged): rename OnListManagerCurrentChanged
11954         to this, and make sure we don't set ListManager.Position inside
11955         set_CurrentCell.
11956         (OnListManagerItemChanged): if we're passed an actual index,
11957         redraw that row.
11959         * CurrencyManager.cs (set_Position): don't call PullData here.
11961 2006-06-09  Jackson Harper  <jackson@ximian.com>
11963         * TreeNode.cs:  Recalculate the visible order before doing the
11964         Expand/Collapse Below calls, because those calls generate an
11965         expose.
11966         - Reduce calls to the TreeView property, which is mildly expensive
11967         by using a local var.
11968         * Form.cs: Layout the MDI child windows when creating the parent
11969         form.
11970         - Don't use the internal constructor anymore
11971         * MdiClient.cs: use the parent form width/height (if available)
11972         when laying out the child windows, we do this because the
11973         mdiclient isn't docked yet when the initial layout is done.
11974         - Don't need an internal constructor anymore.
11976 2006-06-08 Gonzalo Paniagua Javier <gonzalo@ximian.com>
11978         * FileDialog.cs: handle access errors when trying to create a folder
11979         or changing to a directory. No need to initialize out parameters.
11981 2006-06-08  Alexander Olk  <alex.olk@googlemail.com>
11983         * FileDialog.cs: Append a number when creating a new folder if the
11984           folder already exists (use parenthesis instead of square brackets)
11986 2006-06-08  Alexander Olk  <alex.olk@googlemail.com>
11988         * FileDialog.cs:
11989           - Disabled registry support for windows and added better registry
11990             error checking for other systems (need to investigate why it
11991             works perfectly on my system)
11992           - If a folder already exist show an error MessageBox instead of
11993             trying to create an indexed name.
11994           - Fixed a non intentional typo.
11996 2006-06-08 Gonzalo Paniagua Javier <gonzalo@ximian.com>
11998         * FileDialog.cs: (SetFileName) don't crash if CurrentRealFolder is null.
12000 2006-06-08  Alexander Olk  <alex.olk@googlemail.com>
12002         * FileDialog.cs: When creating a new folder don't crash if the
12003           folder already exists.
12005 2006-06-08  Alexander Olk  <alex.olk@googlemail.com>
12007         * FileDialog.cs: Allmost a complete rewrite.
12008           - added a "virtual" file system that handles the differences
12009             between unix and windows file systems (especially the directory
12010             structure). Moved most of the directory and file handling code
12011             into the vfs.
12012             Added vfs classes: MWFVFS, FileSystem, WinFileSystem,
12013             UnixFileSystem and FSEntry.
12014           - Recently used folder/directory, size, location and used file names
12015             (file name ComboBox) are now stored in the registry and get read
12016             before the dialog shows up (fixes part 6 of bug #78446).
12017           - Creation of new folders/directories is now possible (context menu
12018             or ToolBar). Added TextEntryDialog for this that fills in the gap
12019             until ListView.LabelEdit works.
12020           - Fixed cursor handling (bug #78527) and focus handling for
12021             PopupButtonPanel
12022           - Various "Search in" ComboBox enhancements. The content of the
12023             dropdown listbox now almost matches ms.
12024           - Changed the behaviour when the user switches to SpecialFolder
12025             Recent to show the ListView in View.Details.
12026           - Beside using the ToolBar to change the View property of the
12027             file ListView it is now possible to use the context menu too.
12029 2006-06-08  Alexander Olk  <alex.olk@googlemail.com>
12031         * ComboBox.cs: Don't create a new ObjectCollection when an item
12032           gets inserted. Just insert the item in the existing object_items
12033           ArrayList.
12035 2006-06-08  Jackson Harper  <jackson@ximian.com>
12037         * OpenTreeNodeEnumerator.cs: Fix to use the Parent property, so
12038         that the treeview and root node checks are done also, this fixes a
12039         regression i caused in the unit tests.
12041 2006-06-07  Wade Berrier <wberrier@novell.com> 
12043         * RichTextBox.cs: More ISO8859-1 -> unicode
12045 2006-06-07  Mike Kestner  <mkestner@novell.com>
12047         * ComboBox.cs : use items to hold highlight/selection so that
12048         collection insertions don't require synchronization.
12050 2006-06-07  Jackson Harper  <jackson@ximian.com>
12052         * InternalWindowManager.cs: Simplify (and FIX) the window sizing
12053         routine.  We now always keep the sized edge at the cursor instead
12054         of computing movement and adjusting rects.  There is one buglet
12055         with this method though when the cursor is moved over area that
12056         the window can not expand too (such as the toolbars on the desktop).
12058 2006-06-07 Gonzalo Paniagua Javier <gonzalo@ximian.com>
12060         * XplatUIX11.cs: (IsEnabled,IsVisible) the window handler can be null
12061         here. Fixes crash on startup in AlbumSurfer.
12063 2006-06-07  Peter Dennis Bartok  <pbartok@novell.com> 
12065         * RichTextBox.cs: Replaced embedded ISO8859-1 chars with proper unicode
12066           values
12068 2006-06-07 Gonzalo Paniagua Javier <gonzalo@ximian.com>
12070         * XplatUIX11.cs: call XPending and XNextEvent inside the same lock()
12071         statement to avoid calling XNextEvent which will block if another thread
12072         took the event that we were expecting. Fixes bug #78605.
12074 2006-06-07  Mike Kestner  <mkestner@novell.com>
12076         * ListView.cs : isolated checkbox clicking from the selection logic.
12077         Toggle check state on item doubleclicks.  Really fixes #78454 part2.
12079 2006-06-06  Carlos Alberto Cortez <calberto.cortez@gmail.com>
12081         * Form.cs: Check that the value passed to Form.DialogResult
12082         is a valid enum value.
12084 2006-06-06 Gonzalo Paniagua Javier <gonzalo@ximian.com>
12086         * FileDialog.cs: disable the up button when in 'Recently Used' or 'My
12087         Computer'. Clicking it in the network view goes to 'My Computer'.
12088         Added CIFS filesystem type. Display the mount point of filesystems.
12089         Avoid duplicate mount points (happens for me with CIFS);
12091 2006-06-06  Jackson Harper  <jackson@ximian.com>
12093         * InternalWindowManager.cs: Draw the maximized windows buttons
12094         when resizing.
12096 2006-06-06 Gonzalo Paniagua Javier <gonzalo@ximian.com>
12098         * Form.cs: when running a modal dialog, ignore WM_CLOSE requests for
12099         all other dialogs. Fixes bug #78585.
12101 2006-06-06  Mike Kestner  <mkestner@novell.com>
12103         * CheckedListBox.cs : apply CheckOnClick behavior to unchecking too.
12104         Only invalidate checkbox on checkstate changes to avoid flicker.
12105         * ListBox.cs : avoid unselect/select when clicking selected item.
12106         avoid reselection flicker for already multiselected items.
12107         Fixes #78382.
12109 2006-06-06  Jackson Harper  <jackson@ximian.com>
12111         * MdiWindowManager.cs: When the window is closed do an NCRecalc on
12112         the parent form so that the menu is removed if needed.
12114 2006-06-06  Mike Kestner  <mkestner@novell.com>
12116         * ListBox.cs : add ScrollWindow call to UpdateTopItem.  fix
12117         Prev/Next/PrevPage/NextPage/Home/End index calculation.  Fixes #78559.
12119 2006-06-06  Mike Kestner  <mkestner@novell.com>
12121         * CheckedListBox.cs : rebuild check collection on Add.  Fixes #78426.
12124 2006-06-06  Jackson Harper  <jackson@ximian.com>
12126         * Control.cs: Use the property (instead of the field) to get the
12127         default cursor so it is instantiated correctly.
12128         * InternalWindowManager.cs: The OS doesn't give us an NCPAINT with
12129         resizes so we need to manually repaint the window decorations here.
12130         - Set the titlebar button locations as soon as they are created,
12131         otherwise they are not set correctly on win32.
12132         
12133 2006-06-06  Chris Toshok  <toshok@ximian.com>
12135         * CurrencyManager.cs (set_Position): call PullData before
12136         OnCurrentChanged.
12137         (AddNew): after calling IBindingList.AddNew, update our
12138         listposition, and call OnCurrentChanged/OnPositionChanged (without
12139         calling PullData).
12140         (OnCurrentChanged): remove the call to PullData from here.
12141         (OnItemChanged): remove the call to PushData from here.
12142         (OnPositionChanged): change the test from == null to != null to
12143         match the other methods.
12144         (ListChangedHandler): the grossest part of the patch.  Implement
12145         this such that it passes the unit tests in CurrencyManagerTest and
12146         the output more or less matches that of MS's implementation.
12148 2006-06-06  Mike Kestner  <mkestner@novell.com>
12150         * ListView.cs : only update check state on single click.
12151         * ThemeWin32Classic.cs : fix focus drawing for details view without
12152         fullrowselect.  Fixes #78454.
12153         * XplatUIX11.cs : fix for double click emission.
12155 2006-06-05  Jonathan Chambers  <jonathan.chambers@ansys.com>
12157         * PropertyGridView.cs : Applied Atsushi's patch to fix
12158         font dialog bug  (#78197).
12160 2006-06-05  Jackson Harper  <jackson@ximian.com>
12162         * TreeNode.cs: Compute the next node for expanding/collapsing
12163         correctly. We now factor in nodes without a NextNode
12164         correctly. (Fixes somes cases in nunit-gui).
12165         * InternalWindowManager.cs: Set the bounds when updating the
12166         virtual position of a tool window.
12167         
12168 2006-06-05  Chris Toshok  <toshok@ximian.com>
12170         * DataGrid.cs: rename cached_currencymgr to list_manager.
12171         (set_CurrentCell): move SetCurrentCell code here, and clean it up
12172         some.
12173         (CurrentRow, CurrentColumn): single accessors so we can make the
12174         cursor movement code a lot easier to understand.
12175         (CurrentRowIndex): implement this in terms of CurrentRow.
12176         (BeginEdit): clean this up a bit.
12177         (CancelEditing): sort out the is_editing/is_changing/is_adding
12178         stuff a little.
12179         (EndEdit): minor changes.
12180         (OnKeyDown): add a comment about a (most likely) unnecessary
12181         check.
12182         (OnMouseDown): cancel editing when we click on a row header.  And
12183         use the CurrentRow setter, not CurrentCell.
12184         (ProcessDialogKey): directly call ProcessGridKey.
12185         (UpdateSelectionAfterCursorMove): factor out this common block of
12186         code (it's used everywhere that we move the cursor by updating row
12187         or column).
12188         (ProcessGridKey): pretty substantial overhaul.  Use the
12189         CurrentRow/CurrentColumn properties to make the code a lot more
12190         readable.  Only use the CurrentCell property when we have to
12191         modify both row and column at once.  Tab behavior is still broken,
12192         and Delete is untested.
12193         (Select): if we have no selected rows, set selection_start to
12194         @row.
12195         (EditCurrentCell): rename EditCell this.  It was only ever invoked
12196         with CurrentCell as the arg, so drop the arg and rename it.
12198         * DataGridColumnStyle.cs: clean up the constructors a little, and
12199         drop CommonConstructor().
12201         * DataGridTextBox.cs (.ctor): set accepts_return to true so we
12202         actually get notified when the user hits it.
12203         (ProcessKeyMessage): *substantially* simplify this method.
12204         There's no reason (that I can see) for the textbox to be making
12205         calls into the datagrid at all.  Remove all of them but the ones
12206         for Enter handling.  those will take some more work.
12208         * DataGridTextBoxColumn.cs (ConcedeFocus): implement this by
12209         calling HideEditBox.
12210         (HideEditBox): if we have an active textbox, render it invisible
12211         without causing a re-layout of the datagrid.
12213 2006-06-05  Mike Kestner  <mkestner@novell.com>
12215         * ListView.cs : fix NRE crasher when focuseditem is cleared by
12216         collection changes by resetting it to Items[0].  Fixes #78587.
12218 2006-06-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
12220         * MessageBox.cs: if the height of the text is larger than the icon_size,
12221         use that. Fixes bug #78575.
12223 2006-06-05  Jackson Harper  <jackson@ximian.com>
12225         * TreeView.cs: Fix line drawing when scrolling.  To do this each
12226         node is basically responsible for drawing its entire horizontal
12227         area.  When drawing a node it draws its parent node lines if
12228         needed.
12229         - Adjust the clip area to the viewport rectangle
12230         - Fix Left/Right key handling to match MS. (It expand/collapses
12231         and moves to parents/first child but does not move selection to
12232         sibling nodes).
12233         - Fix SetTop to work with new bound calculation code
12234         - When scrollbars are no longer needed we need to reset scrolling
12235         vars and recalculate the visible order so the redraw is correct
12236         * TreeNode.cs: We can't expand/collapse nodes with no children.
12238 2006-06-03  John Luke  <john.luke@gmail.com> 
12240         * X11DesktopColors.cs: dllimport the exact gtk and gdk versions
12241         so the colors work without dev packages
12242         
12243 2006-06-02  Peter Dennis Bartok  <pbartok@novell.com> 
12245         * Control.cs 
12246           - Select: Implemented to just use activate. Seems to match MS 
12247             behaviour closest. Documented to only do actual control walking 
12248             based on it's parameters if in a container control so I moved 
12249             the code there.
12250           - Removed selection check logic from our internal Select() method
12251         * ContainerControl.cs:
12252           - Select: Moved selection logic from Control here, since MS documents
12253             that containers obey the bool arguments. No longer calling base
12255 2006-06-02  Jackson Harper  <jackson@ximian.com>
12257         * TreeView.cs: If the selected node isn't changed when we get
12258         focus update the previously selected node so that we see the
12259         selection box.
12261 2006-06-02  Mike Kestner  <mkestner@novell.com>
12263         * ComboBox.cs: restructure grab and general mouse event handling.
12264         Make the composite control raise mouse events like it was a single
12265         control for leaves/enters/motion/up/down events.  fix dropdown list
12266         coordinate mangling and refactor it into the scrollbar subclass to
12267         reduce code duplication.  Fixes #78282 #78361 and #78457.
12269 2006-06-02  Mike Kestner  <mkestner@novell.com>
12271         * ScrollBar.cs: remove Capture setting/clearing, as it happens
12272         automatically in the Control.WndProc.
12274 2006-06-01 Gonzalo Paniagua Javier <gonzalo@ximian.com>
12276         * FileDialog.cs: fix crash when running SharpChess, which sets the
12277         FilterIndex to 2 with only one Filter.
12279 2006-06-01 Gonzalo Paniagua Javier <gonzalo@ximian.com>
12281         * ToolBar.cs: add SizeSpecified property.
12282         * ToolBarButton.cs: when the ButtonSize is calculated by the container,
12283         try to figure out our real size, otherwise fallback to what the
12284         container says.
12286 2006-06-01  Peter Dennis Bartok  <pbartok@novell.com> 
12288         * XplatUIX11.cs (DefWndProc): WM_MOUSEWHEEL needs to be passed up
12289         * Control.cs (WndProc): MS always calls the DefWndProc to pass
12290           up the event
12292 2006-06-01  Mike Kestner  <mkestner@novell.com>
12294         * ListView.cs: revamp the focus management in ListView.  It still
12295         causes churn of LostFocus/GotFocus emissions on clicks, but it's
12296         better than not handling focus at all.  Will revisit when pdb feels
12297         the general focus handling is solid.  Fixes #78526.
12299 2006-06-01  Jackson Harper  <jackson@ximian.com>
12301         * TreeView.cs: Set the default border style in the constructor.
12302         - Move painting to use OnPaintInternal instead of capturing
12303         WM_PAINT, this is the correct way of doing things
12304         - UpdateBelow shouldn't invalidate the scrollbar area
12305         - Cap the top on update below in case the node was above the top
12306         of the viewport rectangle.
12307         - ExpandBelow and Collapse below need to obey Begin/End Update.
12308         * TreeNode.cs: Make is_expanded internal so the treenode
12309         collection can change it without firing the whole event chain.
12310         * TreeNodeCollection.cs: When clearing all the child nodes make
12311         sure to recalc the visible order.
12312         - Improve algo for remove the top node
12314 2006-06-01  Peter Dennis Bartok  <pbartok@novell.com> 
12316         * XplatUIX11.cs (SetFocus): Make sure we can handle re-entrancy due to
12317           SendMessage directly calling window procedures, which in turn might
12318           call SetFocus()
12320 2006-06-01  Peter Dennis Bartok  <pbartok@novell.com>
12322         * Control.cs: Don't handle WM_SETFOCUS if the same window already
12323           has focus (works around X11 sending a FocusIn after our SetFocus)
12324         * XplatUIX11.cs: Send KILLFOCUS before setting SETFOCUS on new window
12326 2006-06-01  Alexander Olk  <alex.olk@googlemail.com>
12328         * Mime.cs: Fix for the NET_2_0 build.
12329           NameValueCollection needs StringComparer now.
12331 2006-05-31  Chris Toshok  <toshok@ximian.com>
12333         * DataGridDrawingLogic.cs (FromPixelToColumn): modify this to also
12334         return (via an out parameter) the starting X of the column.
12335         (UpdateVisibleColumn): track change to FromPixelToColumn.
12336         (HitTest): add a ColumnResize case here.
12337         (DrawResizeLine): new function, probably poorly named.
12339         * DataGrid.cs (.ctor): get rid of cached_currencymgr_events.  We
12340         only need to keep one reference.
12341         (set_ListManager): same.
12342         (OnMouseDown): call HitTest instead of grid_drawing.HitTest.
12343         Also, add support for HitTestType.ColumnResize.
12344         (OnMouseMove): add column resize behavior here, and change the
12345         cursor to the correct one as we move around the datagrid.
12346         (OnMouseUp): terminate the column resize if we're resizing.
12347         (ProcessGridKey): from the MS docs, Alt-0 enters the null value
12348         for the current cell.
12349         (ConnectListManagerEvents): use cached_currencymgr.
12350         (DisconnectListManagerEvents): fill this in, using
12351         cached_currencymgr.
12352         (SetCurrentCell): remove cached_currencymgr_events handling.
12353         (SetDataMember): only call DisconnectListManagerEvents if
12354         cached_currencymgr is != null.
12355         (SetDataSource): same.
12356         (OnListManagerCurrentChanged): cached_currencymgr_events ->
12357         cached_currencymgr.
12359 2006-05-31  Jackson Harper  <jackson@ximian.com>
12361         * BindingManagerBase.cs: Remove somedebug code that creeped into
12362         SVN.
12363         * TreeNode.cs: We get the indent level dynamically right now, so
12364         don't track it as a member.
12365         * TreeNodeCollection.cs: Make sure all nodes added to the list
12366         have parents, treeviews/topnodes setup properly.
12367         - Don't attempt to track indent level.
12369 2006-05-30  Jackson Harper  <jackson@ximian.com>
12371         * BindingContext.cs: Create the currency manager tables here.
12372         This allows us to more easily create null tables (when bad data
12373         members are used), and more easily create related currency
12374         managers.
12375         * CurrencyManager.cs: All the table creation stuff is done by the
12376         binding context now.
12377         - Current should throw an exception if listposition is -1.
12378         - CancelCurrentEdit/EndCurrentEdit, do nothing if the list hasn't
12379         been bound yet.
12381 2006-05-30  Mike Kestner  <mkestner@novell.com>
12383         * ListView.cs: allow reexpansion of zero-width column headers.
12384         Fixes #78528.
12386 2006-05-28  Chris Toshok  <toshok@ximian.com>
12388         * CurrencyManager.cs (get_Current): after the late binding
12389         listposition = -1 fix, we need to guard against it here and return
12390         null, otherwise we raise an exception (which is swallowed
12391         elsewhere, and breaks datagrid databinding.)
12393 2006-05-26  Peter Dennis Bartok  <pbartok@novell.com>
12395         * MenuAPI.cs (ProcessMenuKey): We can legally get msg types other
12396           than WM_SYSKEY, don't throw if get something unexpected (#78507)
12398 2006-05-26  Jackson Harper  <jackson@ximian.com>
12400         * ControlPaint.cs:
12401         * ThemeWin32Classic.cs: For color comparisons just use the ARGB
12402         values, it's faster and it's all we care about (we don't care if
12403         the names aren't equal).
12404         * KeyboardLayouts.cs: Eliminate some dead code.
12405         - Lazy init things
12406         * X11Keyboard.cs: Lazy init keyboard detection.
12407         - Cleanup access modifiers a little.
12409 2006-05-26  Peter Dennis Bartok  <pbartok@novell.com>
12411         * XplatUIX11.cs: Once again, attempting to get layout just right.
12413 2006-05-26  Peter Dennis Bartok  <pbartok@novell.com> 
12415         * LinkLabel.cs (CreateLinkPieces): Use MeasureString to calculate
12416           the sizes of each link section, that will result in sizes that
12417           match DrawString's layout (Fixes #78391)
12419 2006-05-27  Alexander Olk  <alex.olk@googlemail.com>
12421         * FileDialog.cs: If AddExtension property is true autocomplete the
12422           extensions in SaveFileDialog correctly. Fixes bug #78453.
12423           Set MyNetwork and MyComputer to "C:\" for windows. This should
12424           fix part 8 of bug #78446 for now.
12426 2006-05-26  Chris Toshok  <toshok@ximian.com>
12428         * DataGrid.cs (ColumnStartedEditing): fill these in.  for now just
12429         invalidate the current row header if we need to, but presumably
12430         we'll invalidate the row corrsponding to the bounds or
12431         editingControl.
12432         (GridHScrolled): switch back to this method, as it's part of the
12433         public api.  *sigh*.
12434         (GridVScrolled): same.
12435         (OnMouseWheel): hack up something that more or less works.  Call
12436         GridHScrolled/GridVScrolled directly, instead of duplicating much
12437         of their code here.
12438         (EnsureCellVisibility): reinstate a bunch of this code, since we
12439         can't just set the scrollbar Value and expect to do all the work
12440         in the ValueChanged handler.  Also, Call Update() after scrolling
12441         in one direction so the other XplatX11.ScrollWindow call has the
12442         proper stuff in the proper places.
12443         (EditCell): set is_editing to true before calling .Edit.
12445         * DataGridTextBox.cs (set_IsInEditOrNavigateMode): just set it,
12446         don't bother comparing first.
12447         (OnKeyPress): call grid.ColumnStartedEditing before calling
12448         base.OnKeyPress.  this will set is_changing and invalidate the row
12449         header if necessary.
12450         (ProcessKeyMessage): for WM_CHAR messages, call
12451         ProcessKeyEventArgs directly.  swallow anything other than WM_CHAR
12452         and WM_KEYDOWN.
12453         
12454         * DataGridBoolColumn.cs (Edit): don't set is_editing to true here.
12455         it's done in the DataGrid.
12456         (NextState): call grid.ColumnStartedEditing, which takes care of
12457         invalidating the row header (and setting is_changing).
12459         * DataGridTextBoxColumn.cs (Edit): don't set is_editing to true
12460         here.  it's done in the DataGrid.
12462 2006-05-25 Gonzalo Paniagua Javier <gonzalo@ximian.com>
12464         * Control.cs: allow changing the cursor when the mouse position is
12465         out of bounds but Capture is set.
12466         * LinkLabel.cs: handle the case when the mouse button is pressed on the
12467         linklabel but released somewhere else.
12469 2006-05-25  Jackson Harper  <jackson@ximian.com>
12471         * TreeView.cs: When we get focus if there is no selected node make
12472         it the top node
12473         - Remove some uneeded setup code from Draw.
12474         * TreeNodeCollection.cs: If the tree doesn't have a top node when
12475         a new node is inserted make the new node the top.
12476         * XplatUIX11.cs:
12477         * Timer.cs: Use Utc time so that no local time zone stuff needs to
12478         be used (should be faster).
12479         
12480 2006-05-25  Chris Toshok  <toshok@ximian.com>
12482         * DataGrid.cs (EnsureCellVisibility): remove some code to fix a
12483         problem with the last commit.
12485 2006-05-25  Chris Toshok  <toshok@ximian.com>
12487         * DataGridTextBoxColumn.cs (ReleaseHostedControl): turns out we do
12488         need the invalidate call here, while scrolling right-to-left via
12489         the left arrow key (i.e. moving the editing cell while scrolling).
12491         * DataGrid.cs (.ctor): remove the initialization of
12492         ctrl_pressed/shift_pressed.  We no longer track them using key
12493         up/down handlers, but by using Control.ModifierKeys.  Also, switch
12494         to using ValueChanged handlers on the scrollbars instead of
12495         Scrolled event handlers.  This simplifies a bunch of the scrolling
12496         code.
12497         (GridHValueChanged): rename from GridHScrolled, and change it to
12498         work with the new event args.
12499         (GridVValueChanged): same.
12500         (OnMouseDown): initialize ctrl_pressed/shift_pressed here.
12501         (OnMouseWheel): actually scroll the datagrid.  Don't change the
12502         selected cell.
12503         (ProcessGridKey): correct all the keyboard navigation stuff I
12504         could find.  Ctrl up/down/left/right/home/end work now.
12505         (EnsureCellVisibility): correct method name spelling.  Also,
12506         simplify this a touch by not explicitly calling the
12507         ScrollToRow/ScrollToColumnInPixels methods.  We just set the
12508         scrollbar value.
12509         (OnKeyUpDG): no need for this method now.
12510         
12511 2006-05-25 Gonzalo Paniagua Javier <gonzalo@ximian.com>
12513         * LinkLabel.cs: display the OverrideCursor when hovering the label.
12514         Fixes bug #78392.
12516 2006-05-25  Chris Toshok  <toshok@ximian.com>
12518         * ThemeWin32Classic.cs: fix datagrid clipping problems caused by
12519         r61019.
12521 2006-05-25  Peter Dennis Bartok  <pbartok@novell.com> 
12523         * Application.cs: Moved setting of is_modal and closing to before
12524           we create the control, to allow the event handlers called as a
12525           result of creation affect closing. Also removed Gonzalo's previous
12526           change to setting DialogResult, the behaviour has been moved to 
12527           Form.ShowDialog()
12528         * Form.cs: 
12529           - ShowDialog(): Removed explicit creation of the form, let RunLoop
12530             handle it instead
12531           - ShowDialog(): If no dialog result is set, we need to return Cancel
12532           - WM_CLOSE: Fire Closing/Closed events, and reset dialog result if
12533             the close is cancelled
12535 2006-05-25  Jackson Harper  <jackson@ximian.com>
12537         * StatusBar.cs: We only need to update the sizes of the other
12538         panels when we have auto size contents.  Also we are only updating
12539         the contents of the panel, not the borders, so compensate for the
12540         border width (TODO: get this width from the theme somehow).
12541         * TreeView.cs: Scrollable is true by default
12542         - Use invalidate instead of refresh where needed
12543         - Factor the scrollable value into scrollbar updating
12544         - Update the scrollbars if the Scrollable property is altered
12545         - Update the selected node if its ImageIndex is changed
12546         - Handle null nodes in UpdateNode (mainly so we don't have to
12547         check if selected is null when updating it
12548         - Fix VisibleCount to use the ViewportRectangle so that scrollbars
12549         are factored into the visible count
12550         - Use VisibleCount for clarity in the code
12551         - When the font is changed we need to recurse through all the
12552         nodes and invalidate their sizes
12553         
12554 2006-05-25 Gonzalo Paniagua Javier <gonzalo@ximian.com>
12556         * Application.cs: set the DialogResult to fixed when the main form is
12557         hidden or destroyed while being modal.
12559 2006-05-25  Miguel de Icaza  <miguel@novell.com>
12561         * Theme.cs: Use Tangoified messagebox icons. 
12563         (GetSizedResourceImage): Also cope with width = 0 and do not
12564         trigger a warning in that case (0 means "give me your icon from
12565         the resouce, no special size needed).
12567 2006-05-25  Peter Dennis Bartok  <pbartok@novell.com> 
12569         * Application.cs: Leave runloop if the the main modal form is 
12570           hidden (fixes #78484)
12572 2006-05-25  Atsushi Enomoto  <atsushi@ximian.com>
12574         * BindingContext.cs : reject null datasource in Contains() and
12575           Item[].
12576         * CurrencyManager.cs : check data_member validity when data_source
12577           is dataset. When it is late binding, the initial position is -1.
12579 2006-05-24  Jackson Harper  <jackson@ximian.com>
12581         * TreeNodeCollection.cs: Dont't recalculate the visible order on
12582         inserted nodes that aren't visible.  This changes the
12583         max_visible_order which confuses scrollbar settings.
12584         - Use the enumerator to get the prev node instead of duplicating
12585         code.
12586         * TreeView.cs: Use new method for setting scrollbar values
12587         - Don't set the bounds every time the scrollbar is updated
12588         - When updating below the root node use an invalidate instead of a
12589         refresh to prevent the child controls (scrollbars) from being
12590         refreshed. (UpdateBelow still needs to be reworked anyways).
12591         - Reenable SetBottom now that visible orders are set correctly,
12592         added some debug code incase we ever get bad values there again.
12593         - Set the scrollbar max to 2 less then the max value, this
12594         compensates for the max value being one above the node count, and
12595         for scrollbars adding one extra "notch".
12596         - When drawing image nodes if there is an imagelist we draw the
12597         first image in the list if the supplied image index is out of the
12598         image list's bounds.
12599         
12600 2006-05-24  Peter Dennis Bartok  <pbartok@novell.com> 
12602         * XplatUIX11.cs: Don't blindly cache hwnd.ClientRect, reset it when 
12603           we receive a size change from the WM (Fixes #78503)
12605 2006-05-24  Peter Dennis Bartok  <pbartok@novell.com>
12607         * XplatUIWin32.cs, XplatUIX11.cs: Refresh when setting the Clip 
12608           rectangle (Fixes #78501)
12610 2006-05-24  Peter Dennis Bartok  <pbartok@novell.com> 
12612         * ButtonBase.cs: 
12613           - Fixed MouseUp, MouseDown and MouseMove to treat mouseevent.Button 
12614             as a bitfield.
12615           - Fixed MouseMove to no longer switch pressed state unless the left
12616             mouse button is pressed. Atsushi provided the original patch (#78485)
12617           
12618 2006-05-24  Jackson Harper  <jackson@ximian.com>
12620         * ScrollBar.cs: New internal methods that allow us to change a
12621         couple values on the scrollbar (the most common case is maximum
12622         and large change) without getting multiple invalidates.
12624 2006-05-24  Chris Toshok  <toshok@ximian.com>
12626         * DataGridBoolColumn.cs (Abort): revert back to the saved setting.
12627         (Edit): save off the original state in oldState, and set
12628         grid.is_editing to true.
12629         (OnKeyDown): abort editing if escape is pressed.  also, call
12630         NextState if space is pressed.
12631         (OnMouseDown): call NextState.
12632         (NextState): factor out shared code from OnKeyDown and OnMouseDown
12633         here.  Also, only invalidate the row header once (on the initial
12634         is_changing switch) to save on redraws.
12636 2006-05-24  Chris Toshok  <toshok@ximian.com>
12638         * DataGridTextBoxColumn.cs (Commit): only call SetColumnValueAtRow
12639         if the value in the cell is different than it was before.  This
12640         keeps us from triggering a layout when we move around a datarid
12641         with a highlighted cell.
12642         (Edit): suspend layout when creating/positining the text box, and
12643         resume passing false so we don't ever actually re-layout.
12644         (ReleaseHostedControl): same.
12645         (EnsureTextBox): reformat slightly, and set WordWrap to false.
12647         * DataGridTextBox.cs (ProcessKeyMessage): it's not true that all
12648         control-key sequences should go to the datagrid - remove that
12649         lock.  Also, modify the conditions under which we move between
12650         cells when moving the cursor within a cell, and remove the "this"
12651         and "base" from field accesses.  We weren't even consistent, given
12652         they all were in the base class.
12654 2006-05-24  Atsushi Enomoto  <atsushi@ximian.com>
12656         * Binding.cs : (.ctor)
12657           An obvious NRE fix for BindingTest.CtorNullTest().
12659 2006-05-23  Chris Toshok  <toshok@ximian.com>
12661         * TextBoxBase.cs (get_Text): don't add a trailing newline, add
12662         them between lines.  This fixes some quirks editing cells in the
12663         datagrid.
12665 2006-05-23  Jackson Harper  <jackson@ximian.com>
12667         * TreeView.cs: Use begin/end update when doing expand/collapse all
12668         so that we don't get flicker on the scrollbar.
12670 2006-05-23  Jackson Harper  <jackson@ximian.com>
12672         * TreeNode.cs: Bounds are computed 'on the fly' now.  This allows
12673         treenode calculations to be independant of the painting code. To
12674         do this nodes track a visible order which is calculated by the
12675         treeview.
12676         - Call new methods for expanding/collapsing nodes.  These methods
12677         use scrollwindow so we don't have to update everything below the
12678         node.
12679         * TreeView.cs: Refactored drawing and scrolling code.  We don't
12680         need to update nodes when drawing anymore or calculate scrollbar
12681         stuff.
12682         - Added new methods for expanding/collapsing nodes. These methods
12683         use ScrollWindow so as to not have to redraw all the nodes below.
12684         * TreeNodeCollection.cs: Recalc visible order and scrollbars when
12685         we add/remove nodes or sort.
12686         - Handle removing the selected and the top node properly.
12688 2006-05-23  Chris Toshok  <toshok@ximian.com>
12690         * DataGridTextBoxColumn.cs (Edit): set grid.is_editing to true.
12691         maybe this should actually happen in the datagrid code?
12692         (EndEdit): no need to invalidate anything, given that
12693         ReleaseHostedControl causes the datagrid to relayout, which
12694         invalidates everything anyway.
12696         * DataGrid.cs (set_CurrentCell): remove duplicate check (it's also
12697         in SetCurrentCell).
12698         (set_SelectionBackColor): call InvalidateSelection instead of
12699         Refresh.
12700         (set_SelectionForeColor): same.
12701         (BeginEdit): Flesh this out a bit.
12702         (CancelEditing): only do any of this if we're editing/adding.
12703         (EndEdit): same.
12704         (OnMouseDown): there's no need to cancel editing here, it's done
12705         in SetCurrentCell.
12706         (SetCurrentCell): only invalidate the current row header if it's a
12707         different row than the new one.
12708         (ShiftSelection): fix this to work like MS does.
12709         (ResetSelection): factor out the invalidation of selected_rows to
12710         InvalidateSelection.
12711         (SetDataSource): cancel any editing that's going on.
12713         * DataGridColumnStyle.cs
12714         (IDataGridColumnStyleEditingNotificationService.ColumnStartedEditing):
12715         call the non-interface version.
12717         * ThemeWin32Classic.cs (DataGridPaintColumsHdrs): intersect the
12718         header rectangle with the clip rectangle so we don't redraw the
12719         entire header for just a small area.  Gets rid of the last flicker
12720         when horizontally scrolling.
12721         (DataGridPaintRow): same.
12723 2006-05-23  Mike Kestner  <mkestner@novell.com>
12725         * ListViewItem.cs: remove size for line hack from LargeIcon layout.
12726         * ThemeWin32Classic.cs: don't draw line.  it's really the top of a
12727         poorly placed checkbox on the MS control.  Fixes Alex's unfiled
12728         Critical bug report.
12730 2006-05-23  Peter Dennis Bartok  <pbartok@novell.com> 
12732         * PictureBox.cs: Fixed broken ControlStyles. Unit test no longer fails,
12733           and this fixes #78493
12735 2006-05-23  Miguel de Icaza  <miguel@novell.com>
12737         * Theme.cs (GetSizedResourceImage): Scale images if the proper
12738         size is not found.  
12739         
12740         * FileDialog.cs: Do not change the background for the side bar as
12741         it wont work nicely with the theme, and also reduces the artifacts
12742         in rendering the icons (which I want to fix too).
12744         * MimeIcon.cs (ResourceImageLoader): Load images from assembly
12745         resources, not resgen resources. 
12747         (PlatformDefaultHandler): Pull images using the new API.
12749 2006-05-23  Peter Dennis Bartok  <pbartok@novell.com> 
12751         * Hwnd.cs (Dispose): Remove any pending exposures. XEventQueue holds
12752           a reference to the hwnd and will not remove it unless there are
12753           no pending exposures (fixes #78341)
12754         * XplatUI.cs: Improved debug
12756 2006-05-23  Atsushi Enomoto  <atsushi@ximian.com>
12758         * MenuAPI.cs : don't handle OnClick event when it was not the left
12759           button. Fixed bug #78487.
12761 2006-05-23  Mike Kestner  <mkestner@novell.com>
12763         * MenuAPI.cs: fix placement of submenus for multi-row menu bars, and
12764         prefer submenus to the top menu for item lookup, to avoid popping down
12765         top-row items.
12767 2006-05-23  Alexander Olk  <alex.olk@googlemail.com>
12769         * ThemeWin32Classic.cs: Rewrote CPCPDrawScrollButton to drop
12770           Graphics.FillRectangle as the visual results are really bad (even
12771           on win). We now draw perfect arrows (and perfect shadows when the
12772           scrollbar is disabled). Simplified CPDrawGrid. CPDrawGrid now uses
12773           Pen.DashPattern to draw the dots of each line.
12775 2006-05-22  Alexander Olk  <alex.olk@googlemail.com>
12777         * FileDialog.cs: Update the filename combobox when navigating through
12778           the ListView with the cursor keys. Fixes part 7 of bug #78446.
12780 2006-05-22  Mike Kestner  <mkestner@novell.com>
12782         * ListView.cs: raise SelectedIndexChanged on keyboard selection.
12783         Fixes #78463.
12785 2006-05-22  Mike Kestner  <mkestner@novell.com>
12787         * ComboBox.cs: Refresh in EndUpdate to pick up all the dropped Paint
12788         requests. Fix a misspelled parameter and a copy paste exception error
12789         in Select.
12791 2006-05-22  Peter Dennis Bartok  <pbartok@novell.com> 
12793         * ThemeWin32Classic.cs: Changed DefaultFont emSize from 8.25 to 8
12794           to get the same width/height (5/13) on X11 as the default font has on
12795           win32. This means that our DefaultFont emSize is smaller than the 
12796           the MS SWF equivalent (even thought the width/height stays the same)
12798 2006-05-20  Jackson Harper  <jackson@ximian.com>
12800         * MdiClient.cs:
12801         * MdiWindowManager.cs:
12802         * InternalWindowManager.cs: Make sure to use the border width from
12803         the theme.
12805 2006-05-20  Jordi Mas i Hernandez <jordimash@gmail.com>
12807         * PrintDialog.cs: Implements printer details
12809 2006-05-19  Alexander Olk  <alex.olk@googlemail.com>
12811         * FileDialog.cs: Added focus handling for PopupButtonPanel.
12812           Fixes part 1 and 2 of bug #78446
12814 2006-05-19  Peter Dennis Bartok  <pbartok@novell.com> 
12816         * XplatUIX11.cs (SetWindowPos): Recalculate client area size on resizes
12817           instead of sticking to the first ever calculated value
12819 2006-05-19  Mike Kestner  <mkestner@novell.com>
12821         * ComboBox.cs: fix mouse motion selection to use MousePosition and
12822         PointToClient, since Capture is set. Fixes #78344.
12824 2006-05-19  Mike Kestner  <mkestner@novell.com>
12826         * ListView.cs: match MS behavior in Details view where items are not
12827         drawn if Columns.Count == 0. 
12828         * ThemeWin32Classic.cs: only highlight ListView selection if focused.
12829         Use a separate pen to draw the check, since changing the width affects
12830         the box as well.  Fixes #78454.
12832 2006-05-18  Miguel de Icaza  <miguel@novell.com>
12834         * ListView.cs: ArgumentOutOfRangeException, single versions of the
12835         exception should throw the name of the invalid argument.
12837         * FileDialog.cs (OnClickOpenSaveButton): Avoid crash in open if
12838         there are no files listed. 
12840 2006-05-18  Jackson Harper  <jackson@ximian.com>
12842         * ThemeWin32Classic.cs: Don't use endcaps, they mess the drawing
12843         up.
12845 2006-05-18  Peter Dennis Bartok  <pbartok@novell.com> 
12847         * Control.cs: Brought back our old UpdateZOrder method as a private
12848           function and switched our calls from UpdateZOrder to the new one.
12849           This fixes the Paint.Net canvas disappearing bug.
12851 2006-05-18  Jackson Harper  <jackson@ximian.com>
12853         * Theme.cs:
12854         * ThemeWin32Classic.cs:
12855         * InternalWindowManager.cs: Move the drawing into the theme,
12856         expose everything the theme should need from the window manager.
12858 2006-05-18  Peter Dennis Bartok  <pbartok@novell.com>
12860         * XplatUIX11.cs (DefWndProc): WM_SETCURSOR: Assign the return value 
12861           from the call to NativeWindow to avoid walking up the parent chain
12862           further than needed (speeds up setting cursors and avoids setting
12863           the wrong cursor if a parent has another cursor defined)
12864         * Cursor.cs: When loading an icon as cursor, MS uses the center of
12865           the icon as hotspot, not what's contained as hotspot in the icon
12866           file. This fixes the perceived drawing offset seen with Paint.Net
12867         
12868 2006-05-18  Peter Dennis Bartok  <pbartok@novell.com> 
12870         * XplatUIX11.cs: 
12871           - Store the calculated rectangle in Hwnd object and use it when 
12872             setting the client size
12873           - Force Toolwindows to always be type Dock, to ensure they're on top
12875 2006-05-18  Mike Kestner  <mkestner@novell.com>
12877         * ComboBox.cs: first pass at ComboBox rework.  Layout is more
12878         consistent with MS positioning.  IntegralHeight, ItemHeight, Sizing.
12879         Correctly initialize textcontrol and ListBox on DropDownStyle changes. 
12880         Substantial refactoring to remove confusing nested classes. Coding
12881         standard and Get+Set->property refactorings.  Shift to index based
12882         highlighting in ComboListBox instead of constantly using IndexOf and
12883         Items[]. Add invalidations on resize for DropDownList to fix ugliness
12884         in FileDialog growth.  Draw borders manually since Simple mode needs
12885         to look like two independent controls.  Make listbox border
12886         conditional to DropDownStyle.  Improved OwnerDraw support.
12888 2006-05-18  Sebastien Pouliot  <sebastien@ximian.com>
12890         * PaintEventArgs.cs: For 2.0, check for a null Graphics in the .ctor. 
12891         Don't set the disposed graphics to null, so we can throw the "right"
12892         exception if the graphics is reused later (added a flag to avoid 
12893         double disposing). Some behaviours are different under 2.0 and are
12894         filled under bug #78448.
12896 2006-05-18  Peter Dennis Bartok  <pbartok@novell.com>
12898         * Control.cs: When double-buffering is enabled, we need to reset
12899           our graphics context between paint calls. Otherwise, any 
12900           transformations and other alterations on the context will 
12901           become cumulative (#77734)
12903 2006-05-18  Mike Kestner  <mkestner@novell.com>
12905         * ListView.cs: do focused item selection like MS on clicks. 
12906         Rework focus handling for ItemControl so LostFocus invalidates as
12907         well.
12908         * ThemeWin32Classic.cs: only draw focus rectangle for ListViewItems if
12909         the ListView ItemControl has focus.
12911 2006-05-17  Peter Dennis Bartok  <pbartok@novell.com>
12913         * XplatUIX11.cs: If client_window ends up being width or height zero
12914           due to border settings, move it off window inside whole_window (#78433)
12916 2006-05-17  Alexander Olk  <alex.olk@googlemail.com>
12918         * Mime.cs: Shrink the mime file cache correctly.
12920 2006-05-17  Alexander Olk  <alex.olk@googlemail.com>
12922         * ThemeWin32Classic.cs: Readded button focus drawing code. (#78429)
12924 2006-05-16  Peter Dennis Bartok  <pbartok@novell.com>
12926         * XplatUIX11.cs (AddExpose): More sanity checks
12928 2006-05-16  Peter Dennis Bartok  <pbartok@novell.com> 
12930         * XplatUIX11.cs:
12931           - AddExpose: Don't add expose ranges outside the size of our
12932             window
12933           - Cast opacity values to Int32 to avoid crashes with certain
12934             values
12935           - Added disabled code paths that protect against illegal cross-
12936             thread painting (Developers.exe)
12938 2006-05-16  Peter Dennis Bartok  <pbartok@novell.com>
12940         * ProgressBar.cs: Invalidate the control when it's resized
12941           since block size is based on control size. (#78388)
12943 2006-05-16  Miguel de Icaza  <miguel@novell.com>
12945         * DataGrid.cs (SetDataBinding): per the discussion on irc, instead
12946         of setting the incoming argument to the "reset" value, we set the
12947         this.datamember to string.empty (before we were invalidating the
12948         incoming data).   
12950         Fixes 78420
12952 2006-05-16  Peter Dennis Bartok  <pbartok@novell.com> 
12954         * Form.cs: Only apply transparency settings after the form
12955           is created. (Fixes #77800)
12957 2006-05-16  Peter Dennis Bartok  <pbartok@novell.com>
12959         * ApplicationContext.cs: Grab the HandleDestroyed event so
12960           we know when to fire OnMainFormClosed 
12962 2006-05-16  Peter Dennis Bartok  <pbartok@novell.com> 
12964         * Application.cs: Introduced sub-class to allow tracking of
12965           threads and centralized triggering of the event mess for
12966           ThreadExit, AppExit, etc..  (#76156)
12968 2006-05-16  Alexander Olk  <alex.olk@googlemail.com>
12970         * MimeIcon.cs:
12971           - Do not return a null icon index value for a mime subclass.
12972             Instead try the main mime type class too.
12973           - Seems that some newer distributions don't have a link to some
12974             gnome default icons anymore. So check the default gnome dir too.
12975           
12977 2006-05-16  Jackson Harper  <jackson@ximian.com>
12979         * MdiClient.cs: Don't paint the parent background image if we have
12980         our own background image.
12982 2006-05-16  Peter Dennis Bartok  <pbartok@novell.com> 
12984         * Control.cs:
12985           - PerformLayout: Do not shrink space filled by DockStyle.Fill
12986             controls, all filled controls are supposed to overlap (#78080)
12987           - UpdateZOrder is supposed to update the control's z-order in the
12988             parent's z-order chain. Fixed to behave like that
12989           - BringToFront: Removed obsolete code
12990           - SendToBack: Simplyfied
12991           - SetChildIndex: Trigger layout calculations when Z-order changes
12992             since layout is done by z-order
12994 2006-05-16  Chris Toshok  <toshok@ximian.com>
12996         [ fixes bug #78410 ]
12997         * DataGrid.cs (set_AlternatingBackColor): use
12998         grid_drawing.InvalidateCells instead of Refresh().
12999         (set_BackColor): call grid_drawing.InvalidateCells.
13000         (set_BackgroundColor): use Invalidate instead of Refresh.
13002         * DataGridDrawingLogic.cs (InvalidateCells): new function, just
13003         invalidate the cell area.
13005 2006-05-15  Chris Toshok  <toshok@ximian.com>
13007         [ fixes bug #78011 ]
13008         * ThemeWin32Classic.cs (DataGridPaintRows): pass the clip argument
13009         on to DataGridPaintRow.
13010         (DataGridPaintRow): take a clip argument, and only draw the cells
13011         which intersect it.  same with the not_usedarea.
13013         * Theme.cs (DataGridPaintRow) add @clip parameter.
13015         * DataGrid.cs (ScrollToColumnInPixels): simplify, use
13016         XplatUI.ScrollWindow.
13017         (ScrollToRow): same.
13019         * DataGridDrawingLogic.cs (UpdateVisibleColumn): fix corner case
13020         with last column which was causing a gray swath to appear with the
13021         XplatUI.ScrollWindow code.
13023 2006-05-15  Chris Toshok  <toshok@ximian.com>
13025         * ListBox.cs (HorizontalScrollEvent): in the non-multicolumn case,
13026         use XplatUI.ScrollWindow.
13027         (VerticalScrollEvent): use XplatUI.ScrollWindow.
13029 2006-05-15  Peter Dennis Bartok  <pbartok@novell.com> 
13031         * TextBoxBase.cs: Added handling of middle-button paste for X11. (#78375)
13033 2006-05-15  Peter Dennis Bartok  <pbartok@novell.com>
13035         * Cursors.cs: For X11, read NWSE and NESW cursors from our resource
13036           file since there are no equivalent X11 cursors
13038 2006-05-15  Atsushi Enomoto  <atsushi@ximian.com>
13040         * MonthCalendar.cs : DateTimePicker should reflect selected date
13041           on mouse*up*, not mouse*down*. Fixed originally reported part of
13042           bug #76474.
13044 2006-05-15  Atsushi Enomoto  <atsushi@ximian.com>
13046         * TabControl.cs : When argument index is equal or more than tab
13047           count, just ignore. Fixed bug #78395.
13049 2006-05-15  Peter Dennis Bartok  <pbartok@novell.com>
13051         * Control.cs: Dispose all child controls when control is diposed (#78394)
13053 2006-05-14  Alexander Olk  <alex.olk@googlemail.com>
13055         * ColorDialog.cs: Finally it is possible to select the color with
13056           the text boxes
13058 2006-05-14  Alexander Olk  <alex.olk@googlemail.com>
13060         * PrintDialog.cs: Fix typo
13062 2006-05-14  Alexander Olk  <alex.olk@googlemail.com>
13064         * PrintDialog.cs: PrintDialog is not resizable
13065         * ThemeWin32Classic.cs: Draw non links in LinkLabel with the correct
13066           color. Made some ToolBar drawing methods protected virtual.
13068 2006-05-13  Jordi Mas i Hernandez <jordimash@gmail.com>
13070         * PrintDialog.cs: Implementation of the PrintDialog
13072 2006-05-12  Chris Toshok  <toshok@ximian.com>
13074         * ScrollBar.cs (set_Value): don't use Dirty/Invalidate to move the
13075         thumb, instead use MoveThumb.  This has the side effect of making
13076         most of the other thumb moving machinery use MoveThumb as well.
13077         (OnHandleCreated): pass false for @dirty to UpdateThumbPos, as we
13078         need to actually invalidate the rectangle where the new thumb will
13079         go.
13080         (MoveThumb): use XplatUI.ScrollWindow to move the thumb around.
13081         We force an Update() after, so it's not as fast as it could be,
13082         but at least there's zero flicker and no droppings.
13083         (OnMouseMoveSB): in the thumb dragging case, use MoveThumb.
13084         (UpdateThumbPos): add another argument (dirty), which says whether
13085         or not to calculate/add dirty regions which we later invalidate.
13086         For cases where we know we're going to use MoveThumb, we pass
13087         false for this.  Otherwise, pass true.
13089 2006-05-12  Jackson Harper  <jackson@ximian.com>
13091         * ThemeWin32Class.cs: Fixes for alignment and icon rendering in
13092         the status bar.
13093         
13094 2006-05-12  Peter Dennis Bartok  <pbartok@novell.com>
13096         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs: Added new SetClipRegion
13097           and GetClipRegion methods and UserClipWontExposeParent property.
13098         * XplatUIWin32.cs: Implemented SetClipRegion/GetClipRegion methods,
13099           overriding UserClipWontExposeParent property, setting to false, since
13100           Win32 handles the required expose messages to draw our clipped parent
13101           areas internally
13102         * XplatUIX11.cs: Implemented SetClipRegion and GetClipRegion; updated
13103           PaintEventStart to set the user clip region if set.
13104         * Control.cs: 
13105           - Now internally tracking the Region for the control since we need to
13106             store it if the handle is not yet created and only set it when it
13107             becomes created. Before setting the region forced handle creation
13108           - Added code to draw the parents underneath a user-clipped region
13109         * Hwnd.cs: Added UserClip property
13111 2006-05-12  Chris Toshok  <toshok@ximian.com>
13113         * ScrollBar.cs (set_LargeChange): Refresh() -> InvalidateDirty()
13114         (set_Maximum): same.
13115         (set_Minimum): same.
13116         (set_SmallChange): same.
13117         (OnMouseUpSB): remove the call to refresh when releasing the
13118         thumb.  We shouldn't need it.
13119         
13120 2006-05-12  Miguel de Icaza  <miguel@novell.com>
13122         * StatusBar.cs (UpdatePanel): If the panel being refreshes has the
13123         AutoSize set to None, we do not need to relayout everything, we
13124         just need to invalidate the current region.
13126         (Draw): Do not draw the entire ClientArea, just redraw the
13127         clip area being passed.
13129         * MdiClient.cs: Make MdiClient constructor with the Form argument
13130         internal. 
13132 2006-05-12  Jackson Harper  <jackson@ximian.com>
13134         * ThemeWin32Classic.cs (DrawToolBar): Flat toolbars get their
13135         parents background image,  but strangely not their own.
13136         - (DrawStatusBarPanel): Take into account horizontal alignment
13137         when drawing the strings and icons.
13139 2006-05-12  Mike Kestner  <mkestner@novell.com>
13141         * ListBox.cs: avoid invalidations for focus when the collection is
13142         empty. 
13144 2006-05-12  Chris Toshok  <toshok@ximian.com>
13146         * ScrollBar.cs (OnMouseMoveSB): when dragging the thumb, don't
13147         invalidate the entire thumb area.  Call InvalidateDirty which
13148         limits the redraw to the thumb itself and surrounding pixels.
13150         * XplatUIX11.cs (ScrollWindow): optimize copying.
13151         
13152 2006-05-12  Chris Toshok  <toshok@ximian.com>
13154         * DataGridDrawingLogic.cs: make CalcGridAreas non-reentrant.
13155         Figure out the positioning/layout in a single pass instead of
13156         multiple recursive invocations.  Speeds up the initial display of
13157         the data grid.  Also, make many things private that were
13158         originally public but unused outside this class.
13160 2006-05-11  Jackson Harper  <jackson@ximian.com>
13162         * MdiClient.cs: Improved layout code.
13164 2006-05-11  Jonathan Chambers  <jonathan.chambers@ansys.com>
13166         * PropertyGrid.cs : Only check GetPropertiesSupported for properties,
13167           not SelectedObject.
13169 2006-05-11  Chris Toshok  <toshok@ximian.com>
13171         * Hwnd.cs (Invalid): don't start off with Rectangle.Empty, as
13172         union of that will always be {0,0,width,height}.
13174 2006-05-11  Jackson Harper  <jackson@ximian.com>
13176         * Form.cs: Match MS's DefaultSize for forms (they must have
13177         changed the size in sp2).
13179 2006-05-11  Atsushi Enomoto  <atsushi@ximian.com>
13181         * TextBoxBase.cs : implement CTRL+A (select all). Fixed bug #78368.
13183 2006-05-11  Atsushi Enomoto  <atsushi@ximian.com>
13185         * TextControl.cs : Fixed bug #78109. This incorrect position
13186           comparison caused crash on automatic line split.
13187         * TextBoxBase.cs : reduce duplicate code.
13189 2006-05-10  Jackson Harper  <jackson@ximian.com>
13191         * MdiClient.cs: Active form is only sent to the back when using
13192         the Next form functionality, when a form is clicked the current
13193         active shouldn't be sent to the back.
13194         - Layout the mdi windows when the container is first made visible.
13195         * Form.cs: Give the MdiClient a ref to the containing form when we
13196         create it.
13197         
13198 2006-05-10  Atsushi Enomoto  <atsushi@ximian.com>
13200         * LinkLabel.cs : link_font could be uninitialized, so populate one
13201           before actual use. Fixed bug #78340.
13203 2006-05-10  Atsushi Enomoto  <atsushi@ximian.com>
13205         * XplatUIX11.cs : clipboard format native value is IntPtr.
13206           Fixed bug #78283.
13208 2006-05-10  Peter Dennis Bartok  <pbartok@novell.com>
13210         * Control.cs: 
13211           - Instead of showing context menus directly we send WM_CONTEXTMENU, 
13212             which is passed up the parent chain by DefWndProc
13213           - We now handle WM_CONTEXTMENU to display any menu, or pass it 
13214             to DefWndProc (#77956)
13215         * XplatUIX11.cs: Added handling of WM_CONTEXTMENU (pass up) to DefWndProc
13217 2006-05-10  Jackson Harper  <jackson@ximian.com>
13219         * MdiClient.cs: We need to remove the controls from the mdi
13220         collection, when we close the window.
13221         * MdiWindowManager.cs: Special handling of closing mdi windows.
13222         * InternalWindowManager.cs: Make the close method virtual so the
13223         mdi window manager can handle it specially.
13225 2006-05-10  Jordi Mas i Hernandez <jordimash@gmail.com>
13227         * DataGrid.cs:
13228           - Recalculate grid when the data source has changed
13229           - Matches styles provided by user from all data sources types
13230         * DataGridTableStyle.cs: For columns that provided by the user set the
13231         with the preferred value is there was unassigned.
13232         * CurrencyManager.cs: throw OnItemChanged event
13234 2006-05-10  Peter Dennis Bartok  <pbartok@novell.com> 
13236         * PictureBox.cs: Don't animate until handle is created. Start animation
13237           when handle is created.
13239 2006-05-10  Peter Dennis Bartok  <pbartok@novell.com>
13241         * XplatUIX11.cs, Hwnd.cs: Adopted Mike's patch from #77979 to match
13242           current codebase.
13243         * XEventQueue.cs: We don't need to provide the extra info
13245 2006-05-10  Jackson Harper  <jackson@ximian.com>
13247         * MdiClient.cs: If the mdi clients parent form has a background
13248         image set, we draw that background image for the mdi area's
13249         background.
13251 2006-05-10  Peter Dennis Bartok  <pbartok@novell.com>
13253         * TextBoxBase.cs: Set IBeam cursor (#78347)
13255 2006-05-10  Mike Kestner  <mkestner@novell.com>
13257         * ToolBar.cs: fix some text padding issues with ButtonSize
13258         calculation. Update the default size to match MS documentation.
13259         * ToolBarButton.cs: use ToolBar.ButtonSize for layout of unspecified
13260         button size. Fixes #78296.
13262 2006-05-10  Mike Kestner  <mkestner@novell.com>
13264         * ListBox.cs: use is_visible for scrollbar positioning in case the
13265         control isn't on screen yet.  Fix off by one with Right vs Width
13266         usage.  Update Scrollbars in SetBoundsCore. Fixes #78188 and #78258.
13267         
13268 2006-05-10  Jackson Harper  <jackson@ximian.com>
13270         * X11Dnd.cs: Drop to a control with another control on top of it.
13271         * ToolBar.cs: Work on a copy of the buttons list, so that it can
13272         be modified in click handlers. TODO: Look for similar problems in
13273         other controls.
13275 2006-05-09  Jackson Harper  <jackson@ximian.com>
13277         * Form.cs: Window managers need the old window state when setting
13278         window state now.
13279         * InternalWindowManager.cs: Allow the base mdi window manager to
13280         handle more of the MDI only stuff (like maximize buttons).
13281         * MdiWindowManager.cs: Fix some snafus in changing the window
13282         state.  Add all the menu functionality, for both popup and
13283         maximized menus.
13284         * MdiClient.cs: When a new form is selected the currently
13285         activated form is sent to the back, this matches MS.
13286         - Implement a new method to activate the next mdi child window.
13288 2006-05-08  Peter Dennis Bartok  <pbartok@novell.com>
13290         * Control.cs: 
13291           - Added new InternalCapture method to allow controls to prevent
13292             the capture behaviour on the click handlers
13293           - Switched to use InternalCapture
13294         * ComboBox.cs:
13295           - Using InternalCapture to prevent mouse captures from being released
13296             on mouse button release (Fixes #78100)
13297         * XplatUIX11.cs (DeriveStyles): Now checks caption state and only
13298           returns Form borders if a caption is present. (Fixes #78310)
13300 2006-05-08  Peter Dennis Bartok  <pbartok@novell.com> 
13302         * TreeNode.cs: Changed serialization .ctor to not require every field
13303           to be present. (#78265)
13304         * OwnerDrawPropertyBag.cs: Added serialization .ctor
13306 2006-05-05  Alexander Olk  <alex.olk@googlemail.com>
13308         * MimeIcon.cs: for is faster than foreach for strings.
13310 2006-05-05  Mike Kestner  <mkestner@novell.com>
13312         * CheckedListBox.cs: update check handling code to not use selected.
13313         * ListBox.cs: rewrite of mouse selection handling to correspond to MS
13314         behavior for visual feedback, motion response, shift/ctrl handling,
13315         and properly deal with all 4 selection modes. Updates to bounds
13316         handling logic.  Add scroll wheel support. [Fixes #77842]
13318 2006-05-05  Peter Dennis Bartok  <pbartok@novell.com> 
13320         * ListView.cs:
13321           - Moved adding of Implicit controls into .ctor. That way, subsequent
13322             creation of the controls will not cause them to think they are 
13323             toplevel windows (fixes #78200 header problem)
13324           - Added 2.0 ShowGroups and UseCompatibleStateImageBehaviour
13325           - Switched visibility setting of header control to use internal field
13326             to avoid triggering handle creation
13327           - Now checking if handle is created before causing a refresh when items
13328             are added (This makes us now match handle creation time with MS)
13329         * Splitter.cs: Removed loading of private splitter cursor, switched to
13330           Cursors version now that that is loading the right ones
13331         * Cursors.cs: Load proper splitter cursors from resources
13332         * Cursor.cs: Added second method of loading resource cursors for the 
13333           VS.Net users amongst us
13335 2006-05-05  Mike Kestner  <mkestner@novell.com>
13337         * ListView.cs: give header_control a minimum size based on the
13338         ListView size.
13340 2006-05-05  Peter Dennis Bartok  <pbartok@novell.com> 
13342         * XplatUIX11.cs: WS_EX_TOPMOST requires window to be on top. A dock
13343           window seems to do that with metacity, so set that type. (#78120)
13345 2006-05-05  Mike Kestner  <mkestner@novell.com>
13347         * ListViewItem.cs: fix Details mode checkbox layout bug.
13348         * ThemeWin32Classic.cs: draw a ListView column header for unused space
13349         at the end of the header, if it exists. [Fixes for #78200]
13351 2006-05-04  Jackson Harper  <jackson@ximian.com>
13353         * MdiClient.cs: Add a helper property to get the container form.
13354         * MdiWindowManager.cs: We have to make sure to use the menu origin
13355         when drawing the icons and buttons, this fixes maximized window
13356         icons/buttons on win32.
13357         * InternalWindowManager.cs: Reset the restore captions when a
13358         window goes from Maximized to Minimized and vice versa. Move the
13359         DrawMaximizedButtons into the MdiWindowManager source, tool
13360         windows can't be maximized. NOTE: This could use a little
13361         refactoring if time ever permits.
13362         
13363 2006-05-03  Jonathan Chambers  <jonathan.chambers@ansys.com>
13365         * TextBox.cs: Add MWFCategoryAttributes
13366         * TextBoxBase.cs: Add MWFCategoryAttributes
13367         * Form.cs: Add MWFCategoryAttributes
13369 2006-05-03  Jonathan Chambers  <jonathan.chambers@ansys.com>
13371         * Control.cs: Add MWFCategoryAttributes
13372         * ScrollableControl.cs: Add MWFCategoryAttributes
13374 2006-05-03  Alexander Olk  <alex.olk@googlemail.com>
13376         * ThemeWin32Classic.cs: Draw the ToolBar top border only if
13377           Divider is true. Fix a little glitch in PropertyToolBar
13378           drawing code
13380 2006-05-02  Peter Dennis Bartok  <pbartok@novell.com> 
13382         * Control.cs:
13383           - Dispose: Call base.Dispose, this causes the disposed event
13384             to be fired (and probably other, more important stuff)
13385           - SetVisibleCore: Set is_visible to true after creating the
13386             window so that the window still gets created invisible (if
13387             WM_VISIBLE isn't set). That will cause the ShowWindow afterwards
13388             to generate a WM_ACTIVE message
13389         * Form.cs: Call Dispose when we want to destroy the window, instead of
13390           just destroying the handle (Dispose will do that for us)
13391         * XplatUIX11.cs:
13392           - RootWindow also needs a queue, so we can properly process the
13393             property change events from RootWindow (like Activate)
13394           - Generatic synthetic WM_ACTIVE message when the active window is
13395             being destroyed
13397 2006-05-01  Peter Dennis Bartok  <pbartok@novell.com> 
13399         * LinkLabel.cs: Trigger a recalc of our label dimensions when
13400           bounds are changed
13402 2006-05-01  Peter Dennis Bartok  <pbartok@novell.com>
13404         * ThemeWin32Classic.cs (ButtonBase_DrawImage): Use the proper image
13405           for determining width and height (image might not be assigned if
13406           we're drawing an imagelist)
13408 2006-05-01  Peter Dennis Bartok  <pbartok@novell.com> 
13410         * XplatUI.cs, XplatUIDriver.cs: Added MenuHeight property
13411         * XplatUIWin32.cs: Overriding new MenuHeight property, retrieving
13412           height from system
13413         * Theme.cs: No longer returns hardcoded menu height, instead calls
13414           new driver method
13415         * Form.cs (OnLoad): Scaling happens before triggering Load events 
13416           on MS (# 78257)
13418 2006-05-01  Mike Kestner  <mkestner@novell.com>
13420         * MenuItem.cs: fix NRE for text == null.  Fixes #78250.
13422 2006-04-30  Peter Dennis Bartok  <pbartok@novell.com> 
13424         * TextBoxBase.cs: Removed Fixme
13425         * RichTextBox.cs (set_RTF): Invalidate document after update (#78247)
13427 2006-04-30  Peter Dennis Bartok  <pbartok@novell.com>
13429         * XplatUIX11.cs:
13430           - ScrollWindow: We were passing hwnd.ClientRectangle which returns
13431             the rectangle relative to the parent, considering borders. We
13432             don't really want that.
13433           - ScrollWindow: Fixed warning to be more understandable
13434         * TextBoxBase.cs: Fixed ScrollWindow calculations to consider our
13435           scrollbars and scroll only the visible area
13436         * RichTextBox.cs: Removed debug output
13438 2006-04-29  Peter Dennis Bartok  <pbartok@novell.com>
13440         * NumericUpDown.cs (Text): Just use base
13441         * UpDownBase.cs: Ensure txtView is created before using it
13443 2006-04-29  Peter Dennis Bartok  <pbartok@novell.com> 
13445         * XplatUIX11.cs (SetWindowTransparency): Casting opacity to int before
13446           casting to IntPtr to avoid 64bit overflow errors
13448 2006-04-29  Peter Dennis Bartok  <pbartok@novell.com>
13450         * Control.cs:
13451           - AllowDrop: Don't force handle creation.
13452           - CreateHandle: Added call to tell driver if we're allowed to drop
13454 2006-04-27  Alexander Olk  <alex.olk@googlemail.com>
13456         * FileDialog.cs: Remember the last directory not only for the
13457           current instance but also for new FileDialog instances.
13459 2006-04-29  Peter Dennis Bartok  <pbartok@novell.com> 
13460         
13461         * XplatUIX11.cs: Forgot to set the queue on the foster parent. That
13462           broke sending async messages
13464 2006-04-29  Peter Dennis Bartok  <pbartok@novell.com>
13466         * XplatUIX11.cs:
13467           - ScrollWindow: Fixed method. We finally generate expose events again
13468             for scrolled areas. This was causing 'garbage' when scrolling
13469             textbox and other controls that used ScrollWindow
13470           - Switched from using the regular queue for paint events to the MS 
13471             model of 'generating' paint events when the queue is empty.
13472             We use the new XQueueEvent.Paint subclass to store which windows
13473             need painting.
13474           - AddExpose now takes the x/y/width/height of the exposed area
13475             and inserts the window into the paint queue if not already there
13476           - InvalidateWholeWindow: Switched to use new AddExpose method
13477           - UpdateMessageQueue: Added which queue to monitor for paint events
13478           - DefWndProc: Added default handler for WM_PAINT and WM_NCPAINT in
13479             the unlikely case nothing above handles it. We reset the expose
13480             pending states to get them off the queue.
13481           - GetMessage: Now pulls a paint event if no other events are in the
13482             queue
13483           - Invalidate: Switched to new AddExpose method
13484           - PeekMessage: Updated to understand pending paint events
13485           - UpdateWindow: Fixed logic bug. We were only updating if the window
13486             didn't need updating. Also switched to sending WM_PAINT directly,
13487             like MS does.
13488         * XEventQueue.cs: Added Paint queue support. Allows enqueue/dequeue
13489           and random access Remove(). The random access is needed to handle
13490           UpdateWindow() where a WM_PAINT is sent directly without accessing
13491           the queue.
13492         * ScrollBar.cs: Added Update() calls to cause immediate updates to
13493           allow for better feedback when scrolling. Scrollbars are small and
13494           the immediate update should make it 'feel' more responsive without
13495           slowing things down. ScrollBar still needs it's invaliate logic
13496           updated to not always invalidate the whole bar on certain changes.
13498 2006-04-28 Gonzalo Paniagua Javier <gonzalo@ximian.com>
13500         * Control.cs:
13501         (BackColor): if the control does not support a transparent background,
13502         return the default backcolor when the parent backcolor is transparent.
13504 2006-04-28  Peter Dennis Bartok  <pbartok@novell.com>
13506         * Application.cs: Updated to new StartLoop/GetMessage API
13507         * RichTextBox.cs: Provide some output on RTF parsing errors
13508         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs, XplatUIWin32.cs: Added
13509           new queue_id argument to GetMessage and PeekMessage to allow faster
13510           handling of per-thread queues in drivers.
13511         * Hwnd.cs: Added Queue tracking and property
13512         * MenuAPI.cs: Updated to new StartLoop/GetMessage API
13513         * XEventQueue.cs: Added thread trackingA
13514         * PropertyGridView.cs: Updated to new StartLoop/GetMessage API
13515         * XplatUIX11.cs:
13516           - Implemented new per-thread queue
13517           - GetMessage: Fixed return/break behaviour on several cases. We were
13518             returning stale messages in some cases, instead of just processing
13519             the next message
13521 2006-04-27  Jonathan Chambers  <jonathan.chambers@ansys.com>
13523         * PropertyGrid.cs: Call GetPropertiesSupported on TypeConverter.
13525 2006-04-27  Peter Dennis Bartok  <pbartok@novell.com>
13527         * ThemeWin32Classic.cs (DrawToolBar): Refactored, simplified the logic,
13528           fixed off-by-one comparisons between Width/Height and Right/Bottom.
13530 2006-04-27  Jonathan Chambers  <jonathan.chambers@ansys.com>
13532         * PropertyGridView.cs: Fix drop down width.
13534 2006-04-27  Alexander Olk  <alex.olk@googlemail.com>
13536         * ThemeWin32Classic.cs: Peter thinks that three additional lines are
13537           a mess in DrawToolBar, so I removed one of them.
13539 2006-04-27  Alexander Olk  <alex.olk@googlemail.com>
13541         * ThemeWin32Classic.cs: Draw the ToolBar border lines only if
13542           needed (clip). Otherwise we get artifacts.
13544 2006-04-26  Peter Dennis Bartok  <pbartok@novell.com>
13546         * FixedSizeTextBox.cs: Added constructor to allow specifying which
13547           dimension is fixed
13548         * UpDownBase.cs: Set the spinner control to be fixed height vertical,
13549           and switched FixedSizeTextBox to only be fixed vertical (#78116)
13550         * Form.cs: Not applying the 'MS 0.08 fudge factor' for a given dimension
13551           if it matches the scale base font (avoids unneeded scaling)
13553 2006-04-26  Alexander Olk  <alex.olk@googlemail.com>
13555         * X11DesktopColors.cs: One gtk_init_check should be enough
13557 2006-04-26  Peter Dennis Bartok  <pbartok@novell.com> 
13559         * TextBoxBase.cs: Moved Backspace handling into WM_CHAR block to
13560           match MS behaviour
13562 2006-04-26  Peter Dennis Bartok  <pbartok@novell.com>
13564         * TextBoxBase.cs: 
13565           - Generate OnTextChanged for Backspace even if we're only deleting
13566             the current selection
13567           - When setting the Text property, only select all text if the
13568             control does not have focus when it is being set. Otherwise
13569             just place the cursor at the beginning of the control
13571 2006-04-26  Alexander Olk  <alex.olk@googlemail.com>
13573         * ThemeWin32Classic.cs: ToolBars get drawn with two lines at the top.
13574           Added a little helper to draw PropertyGrid ToolBar with a different
13575           border and a different BackColor.
13576         * PropertyGrid.cs: Some background parts didn't get painted with the
13577           correct background color. Added a class that helps us to draw the
13578           correct border for PropertyGridView and a class that helps us to
13579           draw ToolBars with a different backcolor
13580         * PropertyGridView.cs: Draw PlusMinus with the correct colors.
13582 2006-04-25  Jonathan Chambers  <jonathan.chambers@ansys.com>
13584         * PropertyGrid.cs: Bug 78196, font size, and splitter location.
13585         * PropertyGridView.cs: Bug 78196, font size, and splitter location.
13587 2006-04-25  Peter Dennis Bartok  <pbartok@novell.com> 
13589         * XplatUIWin32.cs (DIBtoImage): ORing instead of ANDing the alpha
13590           into the palette entries. Also, since we're working on a copy
13591           we needed to copy the palette back onto the bitmap.
13592         * Cursor.cs: Same fix as XplatUIWin32.cs.
13594 2006-04-25  Peter Dennis Bartok  <pbartok@novell.com>
13596         * ImageListStreamer.cs: Need to read the var (or we're off)
13598 2006-04-25  Peter Dennis Bartok  <pbartok@novell.com> 
13600         * TextControl.cs, ComboBox.cs, CommonDialog.cs, Theme.cs, 
13601           XplatUIWin32.cs, RichTextBox.cs, ImageListStreamer.cs,
13602           TextBoxBase.cs: Unused var fixes
13603         * AxHost.cs: Small 2.0 fix
13604         * XplatUIX11.cs: Switched to IntPtr from int for XA_CARDINAL atoms 
13605           as it seems that is what at least Metacity expects. This will make
13606           icons show up on 64bit platforms. We still have some 64bit size
13607           issues, though, since the startup app window size still won't match.
13609 2006-04-25  Mike Kestner  <mkestner@novell.com>
13611         * *.cs: cleanup newly reported exception var unused warnings.
13613 2006-04-25  Alexander Olk  <alex.olk@googlemail.com>
13615         * ThemeWin32Classic.cs: Button image alignment now matches exactly
13616           ms
13618 2006-04-25  Alexander Olk  <alex.olk@googlemail.com>
13620         * ThemeWin32Classic.cs: Fixed drawing code for buttons with an
13621           image. The image position is always the same, no matter if the
13622           button is pressed or not.
13624 2006-04-25  Alexander Olk  <alex.olk@googlemail.com>
13626         * FileDialog.cs: SaveFileDialog shouldn't rely on a MWFFileView
13627           selection and set the correct filename for SaveFileDialog.
13628           Patch by Emery Conrad.
13630 2006-04-24  Mike Kestner  <mkestner@novell.com>
13632         * ListView.cs (LastVisibleIndex): when in List mode of Alignment.Left,
13633         check for item.X outside the ClientRect instead of item.Y. Fixes
13634         #78151.
13636 2006-04-21 Gonzalo Paniagua Javier <gonzalo@ximian.com>
13638         * ImageListStreamer.cs: some images store a wrong grow factor, so don't
13639         trust that value blindly and do some sanity check. Fixes bug #77814.
13641 2006-04-21 Gonzalo Paniagua Javier <gonzalo@ximian.com>
13643         * ImageListStreamer.cs: save the mask as a 1bpp image.
13645 2006-04-21  Mike Kestner  <mkestner@novell.com>
13647         * CheckedListBox.cs: maintain CheckStatus here. Use DrawItemState to
13648         pass Checked and Indeterminate to the Theme Engine. Improve
13649         encapsulation with ListBox.
13650         * ListBox.cs: Keep a StringFormat instead of calculating it every item
13651         draw. Kill ListBoxItem. Refactor away the ListBoxInfo and ListBoxItem
13652         nested types.  Move all CheckState functionality to CheckedListBox.
13653         Make IntegralHeight work like MS.  Rewrite of Layout engine.  Fix
13654         OwnerDrawVariable layout/rendering.  Fix multicolumn rendering.  Fix
13655         ScrollAlwaysVisible handling. Refactor "selected" collections to use a
13656         single base list. Fix scrollbar sizing and placement to mirror MS.
13657         * Theme.cs: remove CheckedListBoxCheckRectangle. It wasn't really
13658         used.
13659         * ThemeWin32Classic.cs: implement Indeterminate CheckState rendering
13660         for CheckedListBox by using new DrawItemState info.  Center the
13661         checkboxes on the items. Use new StringFormat property.
13663 2006-04-18  Jackson Harper  <jackson@ximian.com>
13665         * Form.cs: MdiChildren don't do default locations the same way as
13666         regular forms.  This prevents a crash when trying to position the
13667         mdi windows.
13669 2006-04-17  Jonathan Chambers  <jonathan.chambers@ansys.com>
13671         * PropertyGridTextBox.cs: Formatting, copyright
13672         * PropertiesTab.cs: Formatting
13673         * PropertyGrid.cs: Formatting
13674         * PropertyGridView.cs: Formatting, fix drop down, enabled double 
13675           click toggling of values
13676           
13677 2006-04-17  Peter Dennis Bartok  <pbartok@novell.com> 
13679         * KeyPressEventArgs: Added 2.0 only setter for KeyChar
13680         * Control.cs (.ctor): verify_thread_handle is static, don't reset
13681           every time a control is created
13682         * Application.cs: Removed obsolete EnableRTLMirroring method
13684 2006-04-18  Gert Driesen  <drieseng@users.sourceforge.net>
13686         * TabControl.cs: Avoid ArgumentOutOfRangeException when setting
13687         SelectedIndex to -1. Fixes bug #78121.
13689 2006-04-17  Jackson Harper  <jackson@ximian.com>
13691         * Binding.cs: Handle null values for Current and BindingContext.
13692         This occurs when binding is a little delayed.
13693         * CurrencyManager.cs: return null for Current when there are no
13694         items in the list.
13695         - Hookup to the listchanged event on the DataView and update
13696         bindings when the list is changed.  This fixes late binding of
13697         controls.
13699 2006-04-17  Jackson Harper  <jackson@ximian.com>
13701         * X11Dnd.cs:
13702         * XplatUIX11.cs: Drops should not create a mousedown. Patch by Tim
13703         Ringenbach.
13705 2006-04-15  Alexander Olk  <alex.olk@googlemail.com>
13707         * ThemeWin32Classic.cs: Draw disabled combo button in the correct
13708           place
13709         * ComboBox.cs: If the combobox is disabled call CPDrawComboButton
13710           with the correct ButtonState
13712 2006-04-14  Peter Dennis Bartok  <pbartok@novell.com>
13714         * XplatUIX11.cs: Improved distinguishing between window types to
13715           tell the WM a type closer to what the app wants (Fixes #78107)
13717 2006-04-14  Alexander Olk  <alex.olk@googlemail.com>
13719         * ThemeWin32Classic.cs: Fixed drawing of ContainerGrabHandle and
13720           GrabHandle
13722 2006-04-14  Alexander Olk  <alex.olk@googlemail.com>
13724         * ThemeWin32Classic.cs: Fixed size grip drawing and updated StatusBar
13725           drawing code to reflect the size grip changes
13727 2006-04-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
13729         * ImageListStreamer.cs: fix handling of the mask that follows the main
13730         bitmap when deserializing and serialize it properly. The generated mask
13731         should better be a 1bpp image, but I'll do that later.
13733 2006-04-13  Alexander Olk  <alex.olk@googlemail.com>
13735         * FileDialog.cs: Show something in the DirComboBox on *nix if the
13736           path doesn't fit into some of our Current.Places
13738 2006-04-13  Jackson Harper  <jackson@ximian.com>
13740         * ComboBox.cs: Use borders instead of drawing our own decorations,
13741         try to obey correct rules for heights.
13742         * Theme.cs:
13743         * ThemeNice.cs:
13744         * ThemeClearLooks.cs:
13745         * ThemeWin32Classic.cs: Remove combobox decoration drawing code,
13746         this is now handled by borders.
13747         - Remove unused DrawListBoxDecorationSize method.
13748         
13749 2006-04-13  Mike Kestner  <mkestner@novell.com>
13751         * MenuAPI.cs: null guarding for the disbled click check fixes crash
13752         reported by Alex.
13754 2006-04-13  Alexander Olk  <alex.olk@googlemail.com>
13756         * ThemeWin32Classic.cs: 
13757           - Fixed CPDrawStringDisabled
13758           - Corrected drawing of disabled menu items
13759           - Fixed drawing of disabled radio buttons (bug #78095)
13760           - Draw check in a disabled CheckBox with color ControlDark 
13762 2006-04-12  Peter Dennis Bartok  <pbartok@novell.com>
13764         * Form.cs: Use the provided width when calculating the menu size;
13765           when being maximized we get WM_NCCALCSIZE before WM_WINDOWPOSCHANGED
13766           and ClientSize.Width won't be updated yet
13767         * Application.cs: Use Visible instead of Show() to make form visible,
13768           this way we create the handle later and menusize is considered
13770 2006-04-12  Mike Kestner  <mkestner@novell.com>
13772         * MenuAPI.cs: ignore clicks on disabled menu items. Thanks to Alex for
13773         reporting.
13775 2006-04-12  Peter Dennis Bartok  <pbartok@novell.com>
13777         * TextBox.cs: Implemented context menu
13779 2006-04-12  Mike Kestner  <mkestner@novell.com>
13781         * ListView.cs: implement box selection. fixes #77838.
13782         * ThemeWin32Classic.cs: draw box select rect, remove a ResetClip.
13784 2006-04-12  Peter Dennis Bartok  <pbartok@novell.com> 
13786         * XplatUIX11.cs: Added setting of window type when transient window
13787           is created (metacity would move it otherwise)
13788         * X11Structs.cs: Added WINDOW_TYPE atoms
13789         * LinkLabel.cs: Override OnPaintBackgroundInternal and draw the
13790           background (the control is Opaque but still wants transparent
13791           backgrounds)
13793 2006-04-12  Peter Dennis Bartok  <pbartok@novell.com>
13795         * Control.cs: Added OnPaintBackgroundInternal to allow controls
13796           that set Opaque but don't mean it (like all ButtonBase-derived
13797           controls) to still draw their background
13798         * ButtonBase.cs: Override OnPaintBackgroundInternal and draw
13799           the background
13801 2006-04-12  Peter Dennis Bartok  <pbartok@novell.com> 
13803         * Control.cs (PaintControlBackground): Set the graphics object
13804           on our PaintEvent to null to prevent it from being disposed
13805           when the PaintEvent gets disposed
13807 2006-04-12  Alexander Olk  <alex.olk@googlemail.com>
13809         * ThemeWin32Classic.cs: Use even more SystemBrushes and SystemPens
13810         * ThemeNice.cs, ThemeClearlooks.cs: fix typo
13812 2006-04-12  Peter Dennis Bartok  <pbartok@novell.com>
13814         * Control.cs: 
13815           - Added transparency check to BackColor property. Transparent
13816             backgrounds are only allowed if the control styles permit it
13817           - Added recursive painting of parent control background and
13818             foreground if a control with a transparent backcolor is drawn
13819             (Thanks to Tim Ringenback for providing his 'hack' as a base
13820              for this patch) Fixes #77985 and #78026.
13821           - Added Opaque style check before calling OnPaintBackground, no
13822             need to draw the background if the control is opaque
13823           - Removed ControlAccessibleObject owner variable (inherited from
13824             base, no need to define again)
13825           - Added some documentation links explaining the drawing events
13826             and styles
13828 2006-04-11  Peter Dennis Bartok  <pbartok@novell.com> 
13830         * Splitter.cs (CalculateSplitPosition): Corrected the bad assumption
13831           that the affected control is the located at the left border of our
13832           parent (Fixes #77936)
13834 2006-04-11  Peter Dennis Bartok  <pbartok@novell.com>
13836         * TextBoxBase.cs: When rendering disabled or readonly controls,
13837           draw the background with 'Control' instead of 'Window' color as
13838           long as the user hasn't specifically set a color
13840 2006-04-11  Peter Dennis Bartok  <pbartok@novell.com> 
13842         * TextBoxBase.cs: Don't try to shortcut by checking against base.Text
13843           since that won't be updated if the user types text (only if it's
13844           programatically set)
13846 2006-04-11  Peter Dennis Bartok  <pbartok@novell.com>
13848         * ScrollableControl.cs: Calculate DisplayRect dynamically, so that
13849           layout changes do to app-triggered resizes will have the proper
13850           display rectangle for layout
13852 2006-04-11  Alexander Olk  <alex.olk@googlemail.com>
13854         * ThemeWin32Classic.cs:
13855           - Make use of the SystemBrushes and SystemPens wherever possible
13856           - Corrected some highlight colors
13857           - Corrected RadioButton and CheckBox FlatStyle.Flat and Popup
13858             drawing
13859         * Theme.cs: Added Empty field to CPColor struct
13861 2006-04-11  Peter Dennis Bartok  <pbartok@novell.com>
13863         * ScrollabeControl.cs: We need to consider whether or not a scrollbar
13864           is displayed when calculating the display rectangle. Thanks to Mike
13865           for teaching me the err of my ways.
13867 2006-04-10  Peter Dennis Bartok  <pbartok@novell.com>
13869         * ScrollableControl.cs:
13870           - Rewrote DisplayRectangle code, now returning the proper x/y coords 
13871             (instead of 0,0) and we now return the real width/height instead of
13872             just the clientrectangle, adjusted for padding. The rectangle is
13873             now cached and created by the new CalculateDisplayRectangle method.
13874           - Created new CalculateDisplayRectange method, which basically does
13875             what get_DisplayRectangle() did originally, but now using the 
13876             right edge instead of DisplayRectangle to determine the size of
13877             our scrollbars
13878           - get_Canvas(): Fixed it to properly calculate canvas for 
13879             right/bottom controls which seem to be placed to the right/bottom
13880             of any controls that have a fixed location
13881           - Removed TODO that's taken care of
13882           - Removed NotImplementeds and attempted to implement AdjustFormScrollBars
13883             and SetDisplayRectLocation according to new MSDN2 docs
13884           - Added call to PerformLayout in OnVisibleChanged, MS causes a layout
13885             event when that is called, this is added for compatibility
13886           - ScrollControlIntoView(): Implemented.
13887           - Switched scrollbars to be implicit, they shouldn't be selectable
13888         * ContainerControl: Now that ScrollControlIntoView is implemented, we 
13889           call it when the active control is set/changed
13890         * ScrollBar.cs: Added support for generating Win32 scrollbar messages
13891         * ImplicitHScrollBar.cs, ImplicitVScrollBar.cs: Now setting new base
13892           implicit_control variable (used for native Win32 message generation)
13893         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs: Added new 
13894           HorizontalScrollBarHeight and VerticalScrollBarWidth properties
13895         * ThemeWin32Classic.cs: Now calling the driver for the scrollbar sizes
13896         * XplatUIStructs.cs: Added ScrollBarCommands enum
13898 2006-04-10  Jackson Harper  <jackson@ximian.com>
13900         * ButtonBase.cs:
13901         * CheckedListBox.cs:
13902         * ComboBox.cs:
13903         * DataGrid.cs:
13904         * DataGridView.cs:
13905         * Form.cs:
13906         * GroupBox.cs:
13907         * ListBox.cs:
13908         * PrintPreviewControl.cs:
13909         * ProgressBar.cs:
13910         * PropertyGrid.cs:
13911         * Splitter.cs:
13912         * StatusBar.cs:
13913         * TrackBar.cs:
13914         * UpDownBase.cs: Fixup base event overrides.
13915         
13916 2006-04-06  Mike Kestner  <mkestner@novell.com>
13918         * ScrollBar.cs: fix "new event" declarations (#76509) and bounds check
13919         all user-initiated value changes to min <= value <= max-thumbsz+1.
13920         (set_Value): check for vert/horiz when calculating new thumb position.
13921         (LargeIncrement): bounds check to stop pos at max - thumb_size + 1
13922         like MS does.
13923         (OnMouseMoveSB): refactor the thumb dragging code and refine
13924         invalidation logic to reduce flicker.
13925         (SetEndPosition): bounds check to stop pos at max - thumb_size + 1
13926         (SmallIncrement): bounds check to stop pos at max - thumb_size + 1
13927         (UpdateThumbPosition): small code readability cleanup
13929 2006-04-10  Alexander Olk  <alex.olk@googlemail.com>
13931         * ThemeNice.cs: Small UI polishing. Draw borders a little bit
13932           different
13934 2006-04-08  Alexander Olk  <alex.olk@googlemail.com>
13936         * ThemeNice.cs: Use a better graphics effect when a button is pressed
13938 2006-04-08  Alexander Olk  <alex.olk@googlemail.com>
13940         * Theme.cs: Added GetDashPen and GetSizedPen to SystemResPool
13941         * ThemeWin32Classic.cs: Make use of the new SystemResPool methods.
13942           This dramatically reduces the number of Pen.Dispose calls. 
13943           Where possible call ResPool methods only once instead of calling it
13944           over and over again (for example for the same color).
13946 2006-04-06  Mike Kestner  <mkestner@novell.com>
13948         * TabControl.cs: fix for SelectedIndex updating on TabPage removals.
13949         Also remove an unused private field on the collection. Fixes #77972.
13951 2006-04-06  Alexander Olk  <alex.olk@googlemail.com>
13953         * ThemeNice.cs: Added ToolBar drawing code
13955 2006-04-06  Mike Kestner  <mkestner@novell.com>
13957         * Form.cs (ShowDialog): MS allows IWin32Window param to be a non-form.
13958         I'm assuming that means we need to look up the toplevel for the
13959         provided control. Fixes the crash trace in #77911 but exposes another
13960         crash in some strange reflection usage in NDocGui.
13962 2006-04-06  Alexander Olk  <alex.olk@googlemail.com>
13964         * ThemeNice.cs: Gave it a little silver touch and added Images
13965           method
13966         * FontDialog.cs: FontDialog is not resizable
13967         * FileDialg.cs: Added SizeGripStyle.Show
13969 2006-04-05  Jackson Harper  <jackson@ximian.com>
13971         * KeyboardLayouts.cs: Remove warning.
13973 2006-04-05  Jackson Harper  <jackson@ximian.com>
13975         * Control.cs: Enable OnPaintInternal so we can use it for drawing
13976         all of our controls instead of Paint +=.
13977         * ListBox.cs:
13978         * ListView.cs:
13979         * MenuAPI.cs:
13980         * MessageBox.cs:
13981         * NotifyIcon.cs:
13982         * ProgressBar.cs:
13983         * ScrollBar.cs:
13984         * Splitter.cs:
13985         * StatusBar.cs:
13986         * TabControl.cs:
13987         * TextBoxBase.cs:
13988         * ToolBar.cs:
13989         * TrackBar.cs:
13990         * UpDownBase.cs:
13991         * ComboBox.cs: Remove handling of WM_PAINT and WM_ERASEBKGND and
13992         use OnPaintInternal. Remove Width/Height and Visible checks in
13993         paint handler, this is done at a higher level now.
13994         * GroupBox.cs: Don't need to handle WM_ERASEBKGND anymore.
13995         * PaintEventArgs.cs: Add a handled flag so controls that don't
13996         want anymore painting after OnPaintInternal can make sure OnPaint
13997         isn't called.
13999 2006-04-05  Mike Kestner  <mkestner@novell.com>
14001         * Form.cs: fix the menu WndProc hacks to respect the native enabled
14002         state of the form, so that we don't process events when Modal dialogs
14003         are up. Fixes #77922.
14005 2006-04-05  Alexander Olk  <alex.olk@googlemail.com>
14007         * Mime.cs: Default for range length is 1 not 0. If set to 0 no match
14008           checking is done.
14010 2006-04-05  Mike Kestner  <mkestner@novell.com>
14012         * XplatUIX11.cs: fix typo in the EX_APPWINDOW transient patch.
14014 2006-04-05  Mike Kestner  <mkestner@novell.com>
14016         * ListView.cs (HeaderMouseMove): null guarding for the over column
14017         when setting up the drag_to_index.  Fixes #78015.
14019 2006-04-04  Peter Dennis Bartok  <pbartok@novell.com>
14021         * XplatUIX11.cs: If WS_EX_APPWINDOW isn't set we don't want to show up
14022           in the taskbar. Transient windows seem to accomplish that.
14024 2006-04-04  Peter Dennis Bartok  <pbartok@novell.com> 
14026         * Form.cs:
14027           - Re-enabled CreateParams.X/Y code for FormStartPosition
14028           - Added code for manual placement when creating the Control
14029           - Incomplete patch to treat MDI forms differently when
14030             setting the ClientSizeCore. (Still need to figure out handling
14031             x/y coords there)
14032         * XplatUIX11.cs:
14033           - When we're explicitly setting the X/Y position of a non-Child
14034             window, let the WM know. Metacity really wants this.
14036 2006-04-04  Alexander Olk  <alex.olk@googlemail.com>
14038         * ThemeNice.cs: Added CPDrawButton
14040 2006-04-04  Alexander Olk  <alex.olk@googlemail.com>
14042         * ThemeNice.cs: Changed the color for focused buttons and activated
14043           the arrows for small scroll buttons.
14045 2006-04-04  Alexander Olk  <alex.olk@googlemail.com>
14047         * ThemeWin32Classic.cs: Removed DrawFlatStyleButton, not needed
14048           anymore. Changed some method modifiers to protected (virtual)
14049         * ThemeClearlooks.cs: Updated to reflect the ThemeWin32Classic
14050           changes
14051         * ThemeNice.cs: Updated to reflect the ThemeWin32Classic changes.
14052           Updated drawing of menus, buttons and progressbars; added
14053           CPDrawBorder3D 
14055 2006-04-03 Gonzalo Paniagua Javier <gonzalo@ximian.com>
14057         * ImageListStreamer.cs: implemented serialization/deserialization
14058         of the images.
14060 2006-04-03  Alexander Olk  <alex.olk@googlemail.com>
14062         * ThemeWin32Classic.cs:
14063           - Removed all the DrawFrameControl stuff; CPDrawButton,
14064             CPDrawCheckBox and CPDrawRadioButton are now handled directly
14065             inside the methods
14066           - Updated and corrected the drawing code of CPDrawButton,
14067             CPDrawCheckBox and CPDrawRadioButton to better match ms
14068           - Updated theme checkbox and radiobutton code to use the CP*
14069             methods
14071 2006-03-31  Peter Dennis Bartok  <pbartok@novell.com> 
14073         * XplatUIX11.cs: Enable clipping again now that the libgdiplus
14074           bug is fixed
14076 2006-03-31  Jackson Harper  <jackson@ximian.com>
14078         * XplatUIX11.cs: Somehow we get SETCURSORS for bad windows
14079         sometimes.
14080         * UpDownBase.cs: Don't CreateGraphics manually, use a
14081         Refresh. Ideally we would invalidate the correct areas here.
14083 2006-03-31  Peter Dennis Bartok  <pbartok@novell.com> 
14085         * XplatUIX11.cs: 
14086           - We now track the mapping state of windows. If a window (or 
14087             one of it's parents) is not mapped we no longer permit
14088             WM_PAINT messages to be generated since we'd otherwise get 
14089             lots of BadMatch X errors. Jackson did all the work figuring
14090             out the problem.
14091           - Destroying the caret if the window it's contained in is 
14092             destroyed. Can't use regular DestroyCaret method since it
14093             might fall into a drawing function (trying to remove the
14094             caret) and with that generate new BadMatch errors. Again,
14095             Jackson tracked this down.
14096           - Changed DestroyChildWindows to SendWMDestroyMessages, we now
14097             make sure we send the messages to all windows. (The old code
14098             would send the WM_DESTROY to the window, and then all child
14099             windows would be 'gone' because the WM_DESTROY handle lookup
14100             would no longer find the destroyed window)
14101         * Hwnd.cs: Added Mapping property to track mapping state of hwnd
14102         * X11Structs.cs: Added WindowType enum for MapWindow/UnmapWindow
14104 2006-03-31  Jackson Harper  <jackson@ximian.com>
14106         * ScrollableControl.cs: Dont recalc if we are not visible.
14108 2006-03-31  Mike Kestner  <mkestner@novell.com>
14110         * Control.cs (SetVisibleCore): move the CreateControl call up ahead of
14111         the visibility branch.
14113 2006-03-31  Jackson Harper  <jackson@ximian.com>
14115         * ScrollBar.cs: Cap values when incrementing/decrementing.
14117 2006-03-31  Mike Kestner  <mkestner@novell.com>
14119         * MenuAPI.cs: setup menu.tracker for popup/context menus.
14120         * ToolTip.cs: guard against timer expirations with no active control.
14121         Not sure why it happened.
14123 2006-03-31  Mike Kestner  <mkestner@novell.com>
14125         * ThemeWin32Classic.cs: add some horizontal padding space for the tip
14126         text.
14127         * ToolTip.cs: Position the tooltip based on where the cursor is at
14128         popup time, not at MouseEnter time.  Add a Down state so that we don't
14129         redisplay tips without a Leave. Use faked XplatUI.GetCursorInfo for
14130         positioning offset. Lookup DisplaySize at positioning time, since it
14131         can theoretically change during invocation.
14132         * XplatUIWin32.cs: fake GetCursorInfo until pdb can do it properly.
14133         * XplatUIX11.cs: fake GetCursorInfo until pdb can do it properly.
14135 2006-03-31  Alexander Olk  <alex.olk@googlemail.com>
14137         * ThemeWin32Classic.cs: Use CPDrawBorder3D to draw a GroupBox.
14138           Fixes behaviour when the Text property of the box is String.Empty
14140 2006-03-31  Peter Dennis Bartok  <pbartok@novell.com>
14142         * XplatUIX11.cs: Only send mouseleave for our client windows, not
14143           for the whole window (otherwise we get WM_MOUSE_LEAVE twice for
14144           a window)
14146 2006-03-31  Alexander Olk  <alex.olk@googlemail.com>
14148         * FileDialog.cs: Visual enhancement for the popup buttons in 
14149           PopupButtonPanel
14151 2006-03-31  Alexander Olk  <alex.olk@googlemail.com>
14153         * ColorDialog.cs, FontDialog.cs: Make use of the updated 3D border
14154           code
14156 2006-03-30  Alexander Olk  <alex.olk@googlemail.com>
14158         * ThemeWin32Classic.cs: Updated MainMenu drawing of selected and
14159           highlighted menu items to match ms
14161 2006-03-30  Peter Dennis Bartok  <pbartok@novell.com> 
14163         * XplatUIX11.cs: Don't set a clip rectangle unless it's not empty
14165 2006-03-30  Mike Kestner  <mkestner@novell.com>
14167         * Menu.cs (SelectedItem): use new MenuItem.Selected prop.
14168         * MenuAPI.cs: use new MenuItem.Selected prop. redraw MainMenu when we
14169         go active to account for HotLight to Selected transition.
14170         * MenuItem.cs: add internal Selected prop. Fill out the Status
14171         property by calculating it from item info. Add HotLight,
14172         NoAccelerator, Checked, Grayed, and Disabled flags where appropriate.
14174 2006-03-30  Mike Kestner  <mkestner@novell.com>
14176         * MenuItem.cs: only emit DrawItem and MeasureItem for OwnerDraw.
14178 2006-03-29  Jackson Harper  <jackson@ximian.com>
14180         * Form.cs: Implement TODO.
14182 2006-03-29  Peter Dennis Bartok  <pbartok@novell.com> 
14184         * PrintPreviewDialog.cs: Implemented missing methods and events; still
14185           missing proper dialog setup in the constructor
14187 2006-03-29  Peter Dennis Bartok  <pbartok@novell.com>
14189         * ProgressBar.cs: Added 2.0 Style property that apps seem to use
14190         * Control.cs:
14191           - Implemented CheckForIllegalCrossThreadCalls, removed TODO
14192           - Fixed ResetBindings and removed TODO
14193           - Added check for cross-thread calls to get_Handle()
14194           - Added Marshaller attribute for set_Font to satisfy class status
14195         * FontDialog.cs: Removed TODOs that seemed implemented
14196         * UpDownBase.cs: Removed unneeded TODO and Fixme
14197         * MessageBox.cs: Implemented support for Default button and removed TODO
14198         * FileDialog.cs: Removed obsolete TODO
14199         * DomainUpDown.cs: Removed obsolete TODO
14200         * ButtonBase.cs: Removed obsolete TODO
14201         * XplatUIWin32.cs: Removed obsolete TODO
14202         * Form.cs:
14203           - Removed obsolete TODO
14204           - Calling CheckAcceptButton when the acceptbutton is changed to allow
14205             internal status updates
14206           - Making sure the active control is selected when the control is created
14207         * CurrencyManager.cs: Removed obsolete TODO
14209 2006-03-29  Mike Kestner  <mkestner@novell.com>
14211         * *.cs: fix remaining corcompare issues for 1.1 API with the exception
14212         of PrintPreviewDialog and RichTextBox.
14214 2006-03-29  Alexander Olk  <alex.olk@googlemail.com>
14216         * Theme.cs: Added a little helper to SystemResPool to get the Dark,
14217           DarkDark, Light and LightLight colors for a specific color
14218         * ThemeWin32Classic.cs:
14219           - Use Button drawing code to draw RadioButtons and CheckBoxes with
14220             Appearance = Button 
14221           - Make use of the new ResPool helper CPColor
14222           - Draw ProgressBar and StatusBar with correct 3D borders
14224 2006-03-29  Alexander Olk  <alex.olk@googlemail.com>
14226         * ColorDialog.cs: Return selected color. Fixes bug #77940.
14228 2006-03-28  Mike Kestner  <mkestner@novell.com>
14230         * ListView.cs: fix Icon layout to plan for scrollbar widths when
14231         calculating col/row counts.
14233 2006-03-28  Mike Kestner  <mkestner@novell.com>
14235         * ColumnHeader.cs:
14236         * ListView.cs:
14237         * ListViewItem.cs:
14238         * Menu.cs: 
14239         switch to explicit interface method implementation for some methods
14240         corcompare identifies as inconsistent with MS.
14242 2006-03-28  Mike Kestner  <mkestner@novell.com>
14244         * MainMenu.cs: 
14245         * Menu.cs:
14246         add a few missing methods from the class status output.
14248 2006-03-28  Alexander Olk  <alex.olk@googlemail.com>
14250         * ControlPaint.cs: Fixed ControlPaint.Light method. Results are now
14251           correct.
14253 2006-03-28  Mike Kestner  <mkestner@novell.com>
14255         * MenuAPI.cs: Deactivate on MainMenu item click. Fixes #77917.
14257 2006-03-27  Mike Kestner  <mkestner@novell.com>
14259         * ThemeWin32Classic.cs: Switch flat toolbars to use RaisedInner for
14260         the Hilight state to adapt to Alex's CPDrawBorder3D changes.
14262 2006-03-27  Alexander Olk  <alex.olk@googlemail.com>
14264         * ThemeWin32Classic.cs: Rewrote Button drawing code to match ms.
14266 2006-03-25  Alexander Olk  <alex.olk@googlemail.com>
14268         * ThemeWin32Classic.cs:
14269           - GroupBox: Inserted a little gap between the text and the lines
14270             on the right side
14271           - Made the code in CPDrawBorder3D more readable
14272           - Corrected the drawing location of the up and down arrows in 
14273             CPDrawScrollButton
14275 2006-03-25  Alexander Olk  <alex.olk@googlemail.com>
14277         * ControlPaint.cs: Corrected line widths in DrawBorder for
14278           ButtonBorderStyle Inset and Outset
14280 2006-03-25  Alexander Olk  <alex.olk@googlemail.com>
14282         * ThemeWin32Classic.cs:
14283           - Rewrote the totally broken CPDrawBorder3D method. That was
14284             one of the main problems for the terrific ThemeWin32Classic
14285             look
14286           - Updated and corrected Button drawing
14287           - Correct the dimensions of the SizeGrip to match ms ones
14288           - Removed a small drawing glitch in DrawComboBoxEditDecorations
14289         * XplatUIX11.cs: Draw borders with BorderStyle = Fixed3D with
14290           Border3DStyle.Sunken to match ms.
14292 2006-03-25  Alexander Olk  <alex.olk@googlemail.com>
14294         * ThemeWin32Classic.cs: First small part of the "de-uglify
14295           ThemeWin32Classic" effort, SizeGrip
14297 2006-03-24  Jackson Harper  <jackson@ximian.com>
14299         * XplatUIX11.cs: Give a max idle time of one second, this matches
14300         MS and forces an Idle event every second when there are no other
14301         events in the queue.
14303 2006-03-24  Mike Kestner  <mkestner@novell.com>
14305         * ListView.cs: Handle (Large|Small)ImageList == null more robustly.
14306         * ListView.Item.cs: fix layout issues with null image lists and images
14307         smaller than checkbox size.
14308         * ThemeWin32Classic.cs: Draw a 12 pixel line in ListView LargeIcon
14309         mode like MS does.  It's weird, but consistent.  ;-)
14310         Fixes #77890.
14312 2006-03-24  Mike Kestner  <mkestner@novell.com>
14314         * ListView.cs: Scroll wheel support for the item control.  Fixes
14315         #77839.
14317 2006-03-23  Jackson Harper  <jackson@ximian.com>
14319         * ScrollableControl.cs: Special case negative sized areas, not
14320         zero.
14321         * MonthCalendar.cs: Save the rect of the clicked date so we can
14322         use it for invalidation.
14323         - Try to cut down on the number of invalidates
14324         - Invalidate the rect the mouse is over and was over when moving
14325         the mouse, so we get the focus box following the cursor.
14327 2006-03-23  Mike Kestner  <mkestner@novell.com>
14329         * ThemeWin32Classic.cs: fix FullRowSelect selection background and
14330         focus rectangle drawing. Fixes #77835.
14332 2006-03-23  Mike Kestner  <mkestner@novell.com>
14334         * XplatUIX11.cs: rework the fix for #77828 by changing the order of
14335         the if and else if and reverting back to the original == check on the
14336         None conditional.
14338 2006-03-23  Alexander Olk  <alex.olk@googlemail.com>
14340         * FontDialog.cs: Update the example panel if the selected index of
14341           the fontListBox changes.
14343 2006-03-23  Alexander Olk  <alex.olk@googlemail.com>
14345         * FileDialog.cs: Make FileDialog remember which directory it was in
14346           last in the same execution.
14348 2006-03-22  Mike Kestner  <mkestner@novell.com>
14350         * FileDialog.cs: make the DropDownMenu on the toolbar display
14351         RadioChecks since they are mutually exclusive and that's what MS does.
14353 2006-03-22  Mike Kestner  <mkestner@novell.com>
14355         * Theme.cs: add Color param to CPDrawMenuGlyph.
14356         * ThemeWin32Classic.cs: do color specific menu glyph rendering so that
14357         checks and radio marks and arrows are visible on highlighted items.
14358         * ControlPaint.cs: update to use new Theme signature.
14360 2006-03-22  Mike Kestner  <mkestner@novell.com>
14362         * MenuAPI.cs: only process Enter and arrow keypresses if the tracker
14363         is active. Fixes #77870.
14365 2006-03-22  Alexander Olk  <alex.olk@googlemail.com>
14367         * FileDialog.cs: Corrected TabIndex order and set fileNameComboBox
14368           to be focused/selected after startup
14370 2006-03-22  Alexander Olk  <alex.olk@googlemail.com>
14372         * ColorDialog.cs: 
14373           - Corrected behaviour of Color, AllowFullOpen, FullOpen,
14374             CustomColors and ShowHelp properties
14375           - Some internal rewrites to get better results when using the
14376             ColorMatrix
14378 2006-03-22  Mike Kestner  <mkestner@novell.com>
14380         * ListView.cs: hook into Peter's new ResetMouseHover capability to fix
14381         HoverSelection.  Fixes #77836.
14383 2006-03-22  Mike Kestner  <mkestner@novell.com>
14385         * FileDialog.cs: bugfixes for the toolbar.  Use PushButtons instead of
14386         ToggleButtons.  (De)Sensitize the Back button around a stack count of
14387         1, not 0.  Update ButtonSize based on a pixel count of the win32
14388         control.  Adjust the toolbar size/location for new button size.
14390 2006-03-22  Jackson Harper  <jackson@ximian.com>
14392         * XplatUIX11.cs: Don't handle configurenotifys if PostQuitState is
14393         true.
14394         * ScrollBar.cs: When doing increments and decrements we need to
14395         set the Value property so that ValueChanged gets raised. A
14396         possible optimization here would be to make an internal SetValue
14397         that doesn't invalidate immediately.
14398         * ToolTip.cs: Tooltips get added to their container (when
14399         supplied) so they get disposed when the container is disposed.
14400         - Don't create tooltips for String.Empty. This prevents all these
14401         little 2-3 pixel windows from showing up when running nunit-gui
14402         and driving me mad.
14403         * Form.cs: Don't set topmost when setting the owner if the handles
14404         haven't been created yet.  The topmost set will happen when the
14405         handles are created.
14407 2006-03-22  Peter Dennis Bartok  <pbartok@novell.com> 
14409         * XplatUIX11.cs:
14410           - DeriveWindowStyles: Fixed typo in borderstyle generation (#77828)
14411           - SetVisible: Sending WINDOWPOSCHANGED for all controls when made 
14412             visible (to allow them to recalculate their sizes)
14414 2006-03-21  Mike Kestner  <mkestner@novell.com>
14416         * ThemeWin32Classic.cs: major refactoring of the ToolBar rendering
14417         methods. Removed a ton of redundant code.  Still not really happy with
14418         the border rendering, but I think that's mainly because of the
14419         ControlDarkDark being black instead of a dark grey. Depending on how 
14420         close we want to be, we might want to revisit those color choices.
14421         Among the new features added during the refactor were DropDownArrow
14422         pressed rendering, Disabled image rendering.  Proper flat appearance
14423         boundary rendering.  Removed the Divider and Wrapping dividers since I
14424         can't figure out any combination of themes and conditions to make the
14425         MS control draw a horizontal line on a toolbar despite what the
14426         Divider property docs indicate.
14427         * ToolBar.cs: rewrite the layout engine. Fixes numerous flicker
14428         conditions and incorrect layout.  Updated to coding standard.
14429         * ToolBarButton.cs: refactored layout and positioning code from
14430         ToolBar to here.  Invalidate wherever possible instead of forcing
14431         redraws of the whole toolbar. 
14432         (Known remaining issues: explicit ButtonSize smaller than provided
14433         images.)
14435 2006-03-21  Mike Kestner  <mkestner@novell.com>
14437         * ContextMenu.cs (Show): use the position parameter instead of just
14438         showing at the MousePosition.
14440 2006-03-21  Jackson Harper  <jackson@ximian.com>
14442         * TabControl.cs: Remove the call to ProcessKeyEventArgs and let
14443         control handle this.
14444         * TreeNodeCollection.cs: If we are clearing the root node we need
14445         to reset top_node so calcs can still happen.
14446         * ThemeWin32Classic.cs: This is a Flags so we need to check
14447         properly.
14448         
14449 2006-03-21  Jackson Harper  <jackson@ximian.com>
14451         * DataGrid.cs: Create columns when the binding context has been
14452         changed.
14453         * X11Structs.cs: Keysyms are uints.
14454         - Add size to fix build.
14456 2006-03-21  Peter Dennis Bartok  <pbartok@novell.com> 
14458         * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs, XplatUIWin32.cs, 
14459           XplatUIOSX.cs: 
14460           - Added ResetMouseHover method to allow controls to retrigger
14461             hovering if they need it more than once
14462           - Implemented MouseHoverTime and MouseHoverSize properties
14463         * Timer.cs: Start() must reset the interval
14464         * SystemInformation.cs: Added 2.0 MouseHoverTime and MouseHoverSize
14465           properties
14467 2006-03-21  Jackson Harper  <jackson@ximian.com>
14469         * X11Keyboard.cs: improved layout detection. Move the nonchar
14470         tables into this file.
14471         * KeyboardLayouts.cs: Move the tables into resource files.
14473 2006-03-21  Mike Kestner  <mkestner@novell.com>
14475         * ListView.cs: use OnItemActivated to raise events. Fixes #77834.
14477 2006-03-21  Alexander Olk  <alex.olk@googlemail.com>
14479         * Mime.cs: Various speed optimizations. Looking up mime types
14480           is now 2 times faster than before
14482 2006-03-17  Peter Dennis Bartok  <pbartok@novell.com> 
14484         * CreateParams.cs: Added internal menu field
14485         * Control.cs: 
14486           - Switched call order for UpdateBounds; now we always call
14487             the one that also takes ClientSize, and we're calculating the 
14488             client size via driver method in the others. The previous
14489             method of tracking client size by difference wasn't working
14490             for forms where even the starting client size wouldn't match
14491             the overall form size (due to borders) (Part of fix for #77729)
14492           - CreateParams(): Do not use parent.Handle unless the handle is
14493             already created. Causes havoc with Nexxia and throws off our
14494             creation of controls
14495         * XplatUIX11.cs:
14496           - Created new PerformNCCalc method to trigger WM_NCCALCSIZE message
14497           - Switched handling of ConfigureNotify over to new PerformNCCalc 
14498             method (consolidates code)
14499           - Changed RequestNCRecalc to use new PerformNCCalc method
14500           - Added calls to RequestNCRecalc when menus and borders are changed
14501             to allow app to set NC size. (Part of fix for #77729) This matches
14502             when MS send a WM_NCRECALC on Win32 windows.
14503           - Now sending WM_WINDOWPOSCHANGED when toplevel for is made visible
14504             (Part of fix for #77729). This matches what MS does, they also
14505             send that message when the form is made visible.
14506           - XException.GetMessage: Improved usability of X errors by including
14507             a translation of the window into Hwnd and Control class
14508           - Improved debug info for window creation, reparenting and destruction
14509           - Created helper method WindowIsMapped() [Currently not used]
14510         * XplatUIWin32.cs: Added ToString() debug helper to RECT structure
14511         * Form.cs:
14512           - CreateParams: Now setting our menu on the new internal menu field
14513           - SetClientSizeCore: Now passing cp.menu instead of ActiveMenu to
14514             avoid calculating the same property twice
14515         * Hwnd.cs:
14516           - Improved usability of ToString() for debugging purposes
14517           - GetWindowRectangle(): Now uses proper CalcMenuBarSize method to
14518             determine the height of the menu, instead of just the font. This
14519             required to also create a graphics context and to keep a bmp 
14520             around (for performance reasons)
14522 2006-03-17  Peter Dennis Bartok  <pbartok@novell.com>
14524         * MenuAPI.cs: Added OnMouseUp method
14525         * Form.cs:
14526           - Now remembering the requested client size, avoids size errors
14527           - WndProc: Now handling WM_xBUTTONUP and passing it to MenuTracker
14528             instead of base if the menu is active. This is required due to
14529             control now capturing and releasing on down/up and it would
14530             prematurely release our menu capture
14532 2006-03-17  Jackson Harper  <jackson@ximian.com>
14534         * KeyboardLayouts.cs: Add the czech layouts.
14536 2006-03-16  Jackson Harper  <jackson@ximian.com>
14538         * Control.cs: Use the viewport space when sizing not the controls
14539         client size, so things like ScrollableControl that effect the
14540         viewport size (when scrollbars are added) are computed correctly.
14541         * BindingContext.cs: Cleanup to use the DataSourceEntrys instead
14542         of ManagerEntrys.
14543         - Handle creating BindingManagers for null data sources.
14544         * DataGrid.cs: Bind the cached_currencymgr_events to the real data
14545         source, otherwise when rows are added they are added to the 'fake'
14546         datasource and we will crash when trying to set the position in
14547         those rows.
14548         - Use Implicit scrollbars on the datagrid so they arent
14549         selectable.
14550         
14551 2006-03-16  Jackson Harper  <jackson@ximian.com>
14553         * Binding.cs:
14554         * InternalWindowManager.cs:
14555         * MdiWindowManager.cs:
14556         * X11Keyboard.cs: I really want Mike to love me again (fix
14557         compiler warnings).
14559 2006-03-16  Peter Dennis Bartok  <pbartok@novell.com>
14561         * DataGrid.cs:
14562           - OnMouseDown: Switch to editing mode when clicking on the cell
14563                          even if we're clicking on the cell that's currently 
14564                          selected
14565           - ProcessGridKey: Left/Right now wrap like MS.Net does
14566           - ProcessGridKey: Tab now knows to add a new row when tab is
14567                             pressed in the cell of the last column of the 
14568                             last row
14569           - ProcessGridKey: Enter now adds another row  if pressed in the last
14570                             row and selectes the new row, same column cell
14571           - ProcessGridKey: Home/End navigate columns, not rows, like 
14572                             originally implemented
14573           - Broke ProcessKeyPreview code out into an extra Internal method
14574             so it can be called from the edit code
14575         * DataGridTextBox.cs (ProcessKeyMessage):
14576           - Switched to accept Tab keypresses
14577           - Added F2 handling to allow jumping to the end of the edited cell
14578           - Added logic to allow moving caret left/right inside edited cell
14579             and making the edited cell jump when the caret hits cell borders
14580           - Tab and Enter are now passed to the datagrid after being handled
14581         * TextBoxBase.cs:
14582           - Removed capture code now that Control handles it
14583           - set_SelectionStart now ensures caret is visible
14585 2006-03-16  Jackson Harper  <jackson@ximian.com>
14587         * TrackBar.cs: Debackwards the increment/decrement for handling
14588         mouse clicks on the bar with vertical trackbars.
14589         * ThemeWin32Classic.cs: Draw vertical trackbars with 0 at the
14590         bottom to match MS.
14592 2006-03-16  Mike Kestner  <mkestner@novell.com>
14594         * ListView.cs: make shift/ctrl keyboard and mouse selection 
14595         consistent with the MS control. Fix a bug in
14596         SelectedListViewItemCollection.Clear that was pissing me off for the
14597         better part of a day because the collection was being altered
14598         underneath us as we walked the list.
14600 2006-03-16  Peter Dennis Bartok  <pbartok@novell.com> 
14602         * Control.cs: Not sure how we could miss this so long, but it seems
14603           that MS.Net has Capture set all the way from before calling 
14604           OnMouseDown through sending the mouse events until after
14605           OnMouseUp. This will fix DataGrid's selection being set to end
14606           at the location of the MouseUp.
14608 2006-03-15  Jackson Harper  <jackson@ximian.com>
14610         * BindingContext.cs: Check the binding after its added so that it
14611           can initialize the binding managers and hookup to events.
14612         * Binding.cs: Data members seem to sometimes include rows/cols in
14613           the format Row.Column we now take this into account.
14614           - Hookup to the position changed event so we can update the
14615           control when the position has changed in the data set.
14616         * CurrencyManager.cs: Take into account the row/col naming
14617           convention when creating dataset tables.
14618         * BindingContext.cs: Using a newer better way of storing
14619           datasource/datamember pairs.  Hopefully this better matches MS for
14620           looking up binding managers.
14623 2006-03-15  Jackson Harper  <jackson@ximian.com>
14625         * BindingContext.cs: The currency manager needs the data member
14626         name, if the member is a data set we use the name to find the
14627         correct table.
14628         * CurrencyManager.cs: When creating the list prefer an IList over
14629         an IListSource.
14630         - Attempt to create a DataTable from a DataSet (TODO: might need
14631         some better error checking here, although MS doesn't seem to have much)
14632         - If we have a DataTable create a view and use it as our list.
14634 2006-03-15  Mike Kestner  <mkestner@novell.com>
14636         * ListView.cs: keep a matrix of the icon mode layout to facilitate
14637         keyboard navigation. Support Up/Down/Left/Right selection correctly
14638         for all 4 View modes.
14639         * ListViewItem.cs: add internal row/col fields for icon layouts.
14641 2006-03-15  Jackson Harper  <jackson@ximian.com>
14643         * TabControl.cs: Redraw the tabs when we resize so their newly
14644         calculated sizes are drawn on screen.
14645         * X11Keyboard.cs: Begginnings of XIM support.  We also now support
14646         composite characters.
14647         * XplatUIX11.cs: Keyboard driver needs to know about focus changes
14648         - filter events so that composite characters can be created
14649         patches by peter
14650         * X11Structs.cs: Add XIMProperties enum.
14652 2006-03-14  Peter Dennis Bartok  <pbartok@novell.com> 
14654         * Control.cs (BringToFront, SendToBack): Don't use window or handle
14655           unless it's created
14657 2006-03-14  Peter Dennis Bartok  <pbartok@novell.com>
14659         * Control.cs (PerformLayout): We don't need to consider visiblity
14660           for anchoring, only for docking. This fixes 'whacky' alignment
14661           in listbox and other controls that use implicit scrollbars after
14662           the previous PerformLayout patch
14663         * ListBox.cs: Switched to use implicit scrollbars
14664           
14665 2006-03-14  Mike Kestner  <mkestner@novell.com>
14667         * ToolBar.cs: 
14668         * VScrollBar.cs:
14669         - chain up the "new event" overrides to base and use
14670         OnEvent to raise them.  Part of fix for bug #76509.
14672 2006-03-14  Alexander Olk  <alex.olk@googlemail.com>
14674         * FileDialog.cs: Do not select an item in the parent directory
14675           on backspace
14677 2006-03-14  Peter Dennis Bartok  <pbartok@novell.com> 
14679         * Control.cs (PerformLayout): It would seem that we considered
14680           invisible windows for our layout. Not quite the right thing
14681           to do. Now we don't any longer, thereby fixing bug #76889.
14683 2006-03-14  Peter Dennis Bartok  <pbartok@novell.com>
14685         * Control.cs (CanFocus): I goofed. A control can have focus 
14686           even though it's not selectable. Made it match MS docs.
14688 2006-03-13  Peter Dennis Bartok  <pbartok@novell.com>
14690         * ControlPaint.cs (DrawBorder3D): DrawBorder3D does not fill the
14691           center by default (fixes #76895)
14692         * ThemeWin32Classic.cs, ThemeNice.cs, ThemeClearlooks.cs: Replaced 
14693           all uses of Border3DSides.All with the explicit ORd together
14694           Left|Right|Top|Bottom because I assume that nobody was aware 
14695           that All also implies a center fill. Most places I checked had
14696           a fill right above.
14697         * ProgressBarStyle.cs: Added
14699 2006-03-13  Mike Kestner  <mkestner@novell.com>
14701         * ListView.cs: fix breakage in drag shadow header positioning 
14702         from Peter's csc compilation fix.
14704 2006-03-13  Mike Kestner  <mkestner@novell.com>
14706         * ListView.cs: fix NRE produced by backspacing twice in a focused
14707         FileDialog.
14709 2006-03-13  Mike Kestner  <mkestner@novell.com>
14711         * ListView.cs: proxy Key(Down|Up) from ItemControl to ListView.
14713 2006-03-13  Peter Dennis Bartok  <pbartok@novell.com>
14715         * Hwnd.cs: Added fixed_size field to track windows whose size cannot
14716           be changed
14717         * XplatUIX11.cs: Now setting fixed_size on hwnd and if set, re-setting
14718           the allowed size before making programmatic size changes
14720 2006-03-13  Peter Dennis Bartok  <pbartok@novell.com> 
14722         * XplatUIX11.cs: Don't call XSetWMNormalHints if no flags are 
14723           set, metacity is broken and will still use the emty sizes in 
14724           the struct. (Fix for #77089)
14726 2006-03-13  Peter Dennis Bartok  <pbartok@novell.com>
14728         * XplatUIStructs.cs: Split WindowStyles into WindowStyles and 
14729           WindowExStyles and marked both enums as Flags
14730         * Form.cs, ComboBox.cs, ToolTip.cs, Control.cs, PropertyGridView.cs,
14731           NotifyIcon.cs, MenuAPI.cs, XplatUIOSX.cs, MonthCalendar.cs: Updated
14732           to match WindowStyles split
14733         * XplatUIX11.cs:
14734           - SetWMStyles: Added cehck to not apply WM attributes to Child windows
14735           - Updated to match WindowStyles split
14736         * XplatUIWin32.cs:
14737           - Fixed FosterParent creation, was using ExStyle on the Style field
14738             (This should help with Popup focus issues)
14739           - Updated to match WindowStyles split
14741 2006-03-13  Jackson Harper  <jackson@ximian.com>
14743         * MdiWindowManager.cs: Use the system menu height. Fixes some
14744         strange sizing issues.
14746 2006-03-12  Peter Dennis Bartok  <pbartok@novell.com>
14748         * RichTextBox.cs: Need to scroll to caret after text is inserted (#77672)
14749         * TextBoxBase.cs:
14750           - Scroll to caret after inserting text (#77672)
14751           - Make scroll range one pixel higher, fixes off-by-one error (and
14752             makes underlines visible on the last line)
14754 2006-03-12  Peter Dennis Bartok  <pbartok@novell.com> 
14756         * XplatUIX11.cs: Added call to new Keyboard.ResetKeyState to prevent
14757           the keyboard state from being stuck with keys in 'pressed' state when
14758           focus is switched away via keyboard
14759         * X11Keyboard.cs: Added new ResetKeyState method to allow drivers to
14760           reset the keyboard if no X11 KeyUp events are expected to come
14761         * X11Structs.cs: Switched type of Visible to bool to match driver
14763 2006-03-12  Peter Dennis Bartok  <pbartok@novell.com>
14765         * TextControl.cs:
14766           - Switched caret to be just 1 pixel wide, matches MS and looks less
14767             clunky
14768           - Moved caret display 1 pixel down from the top of the control
14769             to improve view
14770           - InsertCharAtCharet: Update the selection start if moving the caret
14771             (fixes bug #77696; based on patch suggested by kazuki@panicode.com)
14772           - No longer always creating the caret when the caret methods are
14773             called. Only the actual ShowCaret/HideCaret will do that now
14774           - Only setting caret visible if the owner control has focus
14775           - UpdateView: Added invalidation-shortcut logic for center and right 
14776             aligned text. Previously we'd update all according to the left
14777             logic which caused drawing errors. Also fixed height of invalidated
14778             areas, now properly invalidating the whole area (was off-by-one)
14779           - owner_HandleCreated: Always generate the document when the
14780             handle is created; this ensures that 
14781         * TextBoxBase.cs:
14782           - Fixed situation where caret would disappear under the right
14783             window border, also improved scrolling behaviour on left-
14784             aligned textboxes
14785           - Fixed right-aligned textboxes to have a border to the
14786             right instead of the caret being under the right border
14787         * XplatUIX11.cs:
14788           - Switched from 'nested' to simple visible/not visible tracking 
14789             for caret (part of fix for #77671)
14790           - No longer passing through translated FocusIn/FocusOut messages
14791             since we were notifying too often and the wrong windows. Instead
14792             we just notify our focussed window of receiving or loosing focus
14793         * XplatUIWin32.cs: Switched from 'nested' show/hide 
14794           counting for caret to simple visible yes/no behaviour (part of 
14795           fix for #77671)
14797 2006-03-11  Alexander Olk  <alex.olk@googlemail.com>
14799         * Mime.cs: Remove debug code...
14801 2006-03-11  Alexander Olk  <alex.olk@googlemail.com>
14803         * MimeGenerated.cs: Removed
14804         * Mime.cs: Mime now reads the mime data (magic, globs, aliases
14805           and subclasses) from /usr/(local/)share/mime and
14806           $HOME/.local/share/mime.
14808 2006-03-10  Jackson Harper  <jackson@ximian.com>
14810         * MdiWindowManager.cs: Recalc the NC area when a window is
14811         maximized/restored so that the menu area is drawn on forms that
14812         don't have a menu.
14814 2006-03-10  Peter Dennis Bartok  <pbartok@novell.com>
14816         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs, XplatUIWin32.cs,
14817           XplatUIX11.cs: Added RequestNCRecalc method to driver to allow
14818           us to force a WM_NCCALCRESIZE message being sent. This is needed
14819           for MDI maximizing.
14821 2006-03-10  Jackson Harper  <jackson@ximian.com>
14823         * Form.cs: We need to use the ActiveMenu when calculating menu
14824         height.
14825         - Fix nullref when the window manager hasn't been created yet.
14826         * Control.cs: Fix nullref when we try to bring a control to the
14827         front that has no parent.
14828         * MdiWindowManager.cs: Use the MaximizedMenu for calculating
14829         height.
14830         - Add a dummy item to the maximized menu so it always has the
14831         correct height. Otherwise when there are no menus we don't get our
14832         icon and buttons.
14833         
14835 2006-03-10  Jackson Harper  <jackson@ximian.com>
14837         * MenuAPI.cs: Make this available elsewhere. I need it in some MDI
14838         stuff.
14839         * Form.cs: Make the window_state internal so the window managers
14840         can track it.
14841         - When an MDI child is maximized let its window manager create the
14842         main menu (so it can add its icon).
14843         - Notify the window managers of state changes
14844         - Let the window manager paint its buttons and handle button
14845         clicks on the menu when it is maximized.
14846         * InternalWindowManager.cs: Move the prev_bounds into the mdi
14847         window manager, since tool windows don't use it, only mdi windows.
14848         - Tell the main form that we don't want it to handle NCPAINT
14849         itself to avoid extra painting.
14850         - Handle clicks on a maximized windows menu.
14851         - Handle window state changes
14852         - Handle minimize/maximize clicks correctly by setting the window state.
14853         * MdiWindowManager.cs: Add an icon menu that (the menu you get
14854         when clicking on the forms icon).
14855         - New method to create a forms maximized menu. This is its normal
14856         menu + an icon.
14857         - Handle window state changes.
14858         - Handle sizing of maximized windows.  Maximized windows are just
14859         drawn bigger then the parent visible area. All controls are still
14860         there, they are just outside the visible area (this matches windows).
14861         * MdiClient.cs: No scrollbars when a child window is maximized.
14862         - Let the children windows figure out how big they should be when
14863         sizing maximized windows.
14864         - Implement a version of ArrangeIconicWindows somewhat similar to
14865         Windows version.  There are some little differences, but I don't
14866         think any app will rely on the layout of minimized mdi windows.
14868 2006-03-10  Peter Dennis Bartok  <pbartok@novell.com>
14870         * Padding.cs: Several fixes to allow compiling with csc 2.0
14872 2006-03-09  Jackson Harper  <jackson@ximian.com>
14874         * Menu.cs:
14875         * MenuItem.cs: Cheap hack so we can add items to the list without
14876         the events being raised.  This allows adding mdi items during
14877         drawing. TODO: Should probably find a better time to add the items.
14879 2006-03-10  Peter Dennis Bartok  <pbartok@novell.com>
14881         * ThemeWin32Classic.cs:
14882           - CheckBox_DrawText: Added logic to not wrap if not enough space
14883             is available (Fix for bug #77727)
14884           - RadioButton_DrawText: Added logic not to wrap if not enough
14885             space is available (Fix for bug #77727). Also removed some
14886             duplicate code, DrawString always drawing the regular text
14887             before hitting the if statement.
14889 2006-03-10  Peter Dennis Bartok  <pbartok@novell.com> 
14891         * XplatUIX11.cs: Handle an unmapped window state in SetWindowState
14893 2006-03-10  Peter Dennis Bartok  <pbartok@novell.com>
14895         * PictureBox.cs: Implemented ISupportInitialize interface (fixes #77726)
14896         * ContainerControl.cs: Partial implementation of some 2.0 scaling
14897           methods. Moved the new 2.0 properties into alphabetical order with
14898           other properties and added MonoTODO tags
14900 2006-03-09  Peter Dennis Bartok  <pbartok@novell.com> 
14902         * AutoScaleMode.cs: Added. Fix build.
14904 2006-03-09  Peter Dennis Bartok  <pbartok@novell.com>
14906         * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs, XplatUIWin32.cs, 
14907           XplatUIOSX.cs: Removed HWnd argument from CalcuateClientRect, not used
14908           and was requiring premature handle creation for calls from above
14909         * Form.cs, Control.cs: Removed handle arguments from calls to
14910           CalculateClientRect()
14912 2006-03-09  Peter Dennis Bartok  <pbartok@novell.com> 
14914         * ListView.cs (HeaderMouseMove): Fix csc compilation. 
14915           drag_column.column_rect is MarshalByRef and can't be used that way
14917 2006-03-09  Peter Dennis Bartok  <pbartok@novell.com>
14919         * AxHost.cs: Added deserialization constructor for 
14920           AxHost+State (fixes 77743)
14922 2006-03-09  Mike Kestner  <mkestner@novell.com>
14924         * ListView.cs: 
14925         - Added column drag reordering for details view.
14926         - fixed behavior when mouse is dragged off column and
14927         AllowColumnReorder is false.
14928         * ColumnHeader.cs: clone the format too in Clone.
14929         * Theme.cs: add DrawListViewHeaderDragDetails method.
14930         * ThemeWin32Classic.cs:
14931         - impl new method for drawing drag column shadows and targets.
14932         - support column offset for details mode in DrawListViewItem.
14934 2006-03-09  Peter Dennis Bartok  <pbartok@novell.com>
14936         * TextControl.cs: Reset the char_count when the document is cleared
14937           (Fixes bug reported on mono-winforms mailing list)
14939 2006-03-09  Peter Dennis Bartok  <pbartok@novell.com> 
14941         * TextBoxBase.cs: Honor the Handled state of KeyPress events. Instead
14942           of calling base we simply process the key ourselves, since both
14943           DefWindowProc and the handled method would set m.Result. 
14944           (Fixes #77732)
14946 2006-03-09  Peter Dennis Bartok  <pbartok@novell.com>
14948         * Form.cs(ScaleCore): No longer calling base.ScaleCore since that
14949           method also moves the window; instead implemented a copy of
14950           Control.ScaleCore (Part of fix for #77456)
14951         * TextBoxBase.cs: 
14952           - Created new CreateGraphicsInternal method to allow providing
14953             a graphics context when no handle is created without triggering
14954             handle creation. (Part of fix for #77456)
14955           - Replaced use of Control.CreateGraphics with CreateGraphicsInternal
14956         * TextControl.cs: 
14957           - Switched Constructor to require TextBoxBase instead of Control (to
14958             allow uncast access to CreateGraphicsInternal)
14959           - Safeguarded use of owner.Handle property. No longer accessing it
14960             unless the handle is already created.
14961           - Replaced use of Control.CreateGraphics with CreateGraphicsInternal
14962           - Now triggering a recalc when owning control becomes visible
14963         * TextBox.cs, RichTextBox.cs: Switched to use new internal 
14964           TextBoxBase.CreateGraphicsInternal() method to avoid triggering
14965           premature handle creation (Part of fix for #77456)
14966         * Control.cs:
14967           - We now only destroy our double-buffering buffers when the
14968             control is resized or disposed, but not when visibility
14969             changes. (The code even re-created them twice every time)
14970           - Now requiring a redraw of the buffer on visibility changes
14971             (fixes bug 77654 part 2)
14972           - Not passing OnParentVisibleChanged up unless the control
14973             is visible
14974           - CanFocus: Fixed to match MS documentation
14975           - Focus: Fixed to return actual focus state and to check if
14976             setting focus is legal before setting it
14978 2006-03-08  Peter Dennis Bartok  <pbartok@novell.com>
14980         * ThemeWin32Classic.cs: TabPages cannot have focus. Determine
14981           when to draw focus rectangle by looking at parent focus and
14982           selected state instead. This fixes TabPages on Linux sometimes
14983           having none or multiple focus rectangles.
14984         * XplatUIX11.cs (SetFocus): 
14985           - Don't set the focus if the same window already has focus
14986           - Use SendMessage instead of PostMessage (like it's Win32
14987             equivalent) and send the WM_SETFOCUS before the WM_KILLFOCUS
14988             to match MS behaviour
14989         * TabControl.cs(SelectedIndex): Don't set Focus on TabPage, TabPages
14990           are not selectable.
14992 2006-03-07  Jackson Harper  <jackson@ximian.com>
14994         * PictureBox.cs: Revert line I accidently committed last week.
14996 2006-03-07  Peter Dennis Bartok  <pbartok@novell.com>
14998         * Control.cs: 
14999           - Added new IsRecreating and ParentIsRecreating properties to
15000             allow testing if RecreateHandle has been called on ourselves
15001             or one of our parents
15002           - WndProc(WM_DESTROY): If our control handle is being recreated
15003             we immediately need to create the handle when receiving the
15004             destroy, that way our child windows find a valid parent handle
15005             when they themselves are being recreated upon WM_DESTROY receipt
15006             (fix for bug #77654 part 1)
15007         * XplatUIX11.cs:
15008           - DestroyWindow: WM_DESTROY must be sent to our own window before
15009             notifying any child windows. MS documents that child windows
15010             are still valid when WM_DESTROY is received. (Control now relies on
15011             this behaviour)
15012           - Added some fine-grain debug options
15014 2006-03-06  Jackson Harper  <jackson@ximian.com>
15016         * MdiClient.cs: Redid scrolling logic a bit to create a virtual
15017         box and base calculations off this.
15018         * MdiChildContext.cs:
15019         * MdiWindowManager.cs: Don't need to ensure scrollbars here
15020         anymore.
15021         
15022 2006-03-06  Peter Dennis Bartok  <pbartok@novell.com>
15024         * Splitter.cs: In situations where the affected control is added
15025           to the parent's control list after the splitter, we would not
15026           populate affected. Now we try populating it on mousedown, if
15027           it's not already set, and force it to be re-set whenever our
15028           parent changes.
15030 2006-03-03  Matt Hargett  <matt@use.net>
15032         * Control.cs: implement Control.Padding
15033         * Padding.cs: -Padding.All returns -1 when constructing with the
15034         implicit default ctor
15035         -Padding.ToString() matches MS.NET
15036         * ContainerControl.cs: implement
15037         ContainerControl.AutoScaleDimensions
15038         * ListControl.cs: implement ListControl.FormattingEnabled
15039         * TextBox.cs: Implemented TextBox.UseSystemPasswordChar.
15040         * ButtonBase.cs:
15041         * TabPage.cs: Implement UseVisualStyleBackColor.
15042         * PictureBox.cs: Implement PictureBox.InitialImage.
15044 2006-03-03  Mike Kestner  <mkestner@novell.com>
15046         * ListView.cs: Refactor into HeaderControl and ItemControl. Fix new
15047         event declarations to proxy to base event.
15048         * ListViewItem.cs: update to use ItemControl.
15049         * Theme.cs: make DrawListViewHeader. s/DrawListView/DrawListViewItems.
15050         * ThemeWin32Classic.cs: update to new ListView theme API and fix
15051         column header label rendering for 0 width columns.
15053 2006-03-03  Peter Dennis Bartok  <pbartok@novell.com>
15055         * Control.cs (ControlCollection.SetChildIndex): Avoid using a call
15056           that causes the control to be created. Fixes #77476.
15058 2006-03-02  Jackson Harper  <jackson@ximian.com>
15060         * Hwnd.cs: Clear the nc pending when clearing the NC area, not the
15061         expose_pending.
15063 2006-03-02  Peter Dennis Bartok  <pbartok@novell.com>
15065         * Control.cs: Implemented 2.0 feature where OnClick has MouseEventArgs
15066           passed in for the EventArgs (fixes #77690)
15068 2006-03-01  Jackson Harper  <jackson@ximian.com>
15070         * ScrollBar.cs: Refresh afterbeing resized.
15072 2006-02-28  Mike Kestner  <mkestner@novell.com>
15074         * MenuAPI.cs: Call PerformPopup internal method to emit Popup.
15075         Clean up a tracker compile warning.
15076         * MenuItem.cs: add internal PerformPopup method.
15077         [Fixes #77457]
15079 2006-02-28  Peter Dennis Bartok  <pbartok@novell.com> 
15081         * TextBoxBase.cs (set_Text): Recalculate the document (causing an
15082           implicit expose) when the text is set to null
15084 2006-02-28  Peter Dennis Bartok  <pbartok@novell.com>
15086         * RichTextBox.cs (FlushText): When newline is true, we always
15087           need to split the line, even if no text is on it and we may
15088           never eat newlines. (Fixes #77669)
15090 2006-02-28  Mike Kestner  <mkestner@novell.com>
15092         * ListView.cs: Add UpdateSelection internal method. Remove SelectItem 
15093         and set Selected instead.
15094         * ListViewItem.cs: Call owner.UpdateSelection to manipulate the 
15095         collections.
15097 2006-02-28  Peter Dennis Bartok  <pbartok@novell.com> 
15099         * ComboBox.cs: Allow setting SelectedIndex to -1. Fixes #77665
15101 2006-02-28  Alexander Olk  <alex.olk@googlemail.com>
15103         * FontDialog.cs:
15104           - Got rid of the panel. All controls are now directly added to
15105             the dialog form
15106           - It is now possible to set a font with the Font property
15107           - MinSize and MaxSize property do now what they should
15108           - ShowApply, ShowHelp, ShowColor, ShowEffects likewise
15109           - Searching and selecting a font with the font textbox works now,
15110             the same applies to the style and size textbox
15111           - Draw the correct 3D border in the example panel
15112           - Fixed a little mem leak (unused fonts didn't get disposed)
15113           - Many other internal updates/rewrites...
15114           - Fix typo
15116 2006-02-27  Peter Dennis Bartok  <pbartok@novell.com> 
15118         * TextControl.cs: 
15119           - InsertRTFFromStream: Added 'number of characters inserted' argument
15120           - set_SelectedRTF: Now using the number of characters to calculate
15121             the new location for the selection and cursor (x/y cannot be used
15122             due to potentially already wrapped text)
15124 2006-02-27  Peter Dennis Bartok  <pbartok@novell.com>
15126         * TextControl.cs: Added property and implemented means to allow 
15127           disabling recalculation of a document (can be used to speed up
15128           multiple inserts and is needed to make RTF inserts predictable, see
15129           bug #77659)
15130         * RichTextBox.cs: Using the new NoRecalc property of Document to
15131           keep x/y insert locations predictable. Also makes it faster inserting
15132           large chunks of RTF
15134 2006-02-27  Peter Dennis Bartok  <pbartok@novell.com> 
15136         * Control.cs: Separated special WM_SYSKEYUP keyboard handling. That way
15137           it's easier for a child control to handle the other messages without
15138           having to duplicate the special functionality
15139         * TextBoxBase.cs
15140           - WndProc: Removed calling base handler for WM_KEYDOWN and added 
15141             code to handle processing the key ourselves, in order to get 
15142             access to the result of KeyEventArgs.Handled. We now only call 
15143             ProcessKey if they key hasn't been handled already. Fixes #77526.
15144           - set_Text: If null or empty string is given, just clear the 
15145             document. Fixes part of #77526
15147 2006-02-27  Jackson Harper  <jackson@ximian.com>
15149         * SizeGrip.cs: Paint the background color before painting the grip
15150         so things look right.
15151         * MdiClient.cs: Add the sizegrip when both scrollbars are used.
15153 2006-02-27  Mike Kestner  <mkestner@novell.com>
15155         * ListView.cs:
15156           - Restructure layout and invalidation model to remove a ton of
15157           flicker from the control and speed up performance in general.
15158           - Add manual column resize, flickers like crazy, but I already have
15159           some ideas on how I'll fix that. (#76822)
15160           - Merge the three Icon-based views into a single layout method.
15161           - Move item selection interaction logic from the item since 
15162           interaction with the collections is more appropriate to the view.
15163           - Deselection on non-item clicks.
15164         * ListViewItem.cs:
15165           - Encapsulate most of the layout. Add some internal props to trigger
15166           layout.  Move to a model where Items invalidate themselves instead
15167           of just invalidating the whole control every time something changes.
15168           - Invalidate on Text/Caption changes.
15169           - switch to an offset based layout model to avoid having to absolute
15170           position every element on item moves.
15171           - correct checkbox layout to conform to MS layout.
15172         * ThemeWin32Classic.cs:
15173           - refactor some column header drawing code.
15174           - fix string justification for column headers (#76821)
15175           - make SmallIcon labels top justified for compat with MS impl.
15176         * ThemeClearlooks.cs:
15177           - adjust to new ListViewItem internal checkbox bounds api.
15179 2006-02-27  Jackson Harper  <jackson@ximian.com>
15181         * Control.cs:  Change where implicit controls fall in the zorder.
15182         They are now on top of all children.
15183         - Synced AddImplicit code with Add
15184         - Removed unused enumerator.
15185         * SizeGrip.cs: Remove the TODO as its been TODONE.
15187 2006-02-26  Peter Dennis Bartok  <pbartok@novell.com> 
15189         * TextControl.cs(Insert): Combine the last lines unless the insertion
15190           string ends with \n\n, otherwise we leave one line too many (Fixes
15191           something I noticed with the testapp for #77526; the bug itself was
15192           already fixed in the previous checkin)
15194 2006-02-26  Peter Dennis Bartok  <pbartok@novell.com>
15196         * RichTextBox.cs:
15197           - SelectionColor and SelectionFont methods no longer set absolute
15198             styles. Instead, the keep font or color respectively (This 
15199             resolves a long-standing FIXME in the code)
15200           - When flushing RTF text, the insert code now considers text trailing
15201             behind the insertion point (Fixes the bug where when replacing
15202             the selected text via SelectedRTF the remainder of the line behind 
15203             the selection would stay on the first insertion line)
15204         * TextBoxBase.cs:
15205           - AppendText now updates the selection points after inserting text
15206           - AppendText now ensures that the last tag (sometimes 0-length) of
15207             the document is used for the style information (Fixes part of 
15208             bug #77220)
15209         * TextControl.cs:
15210           - Created new FontDefiniton class to allow describing partial style
15211             changes
15212           - StreamLine() now takes a lines argument, to allow it to decide
15213             whether an encountered zero-length tag is the last in the document
15214             (which must be kept to not loose the font/color contained in it,
15215             for later appends)
15216           - Created Combine() and Split() methods for Marker structs, to 
15217             support marker updates due to reformatted documents (soft line
15218             wraps)
15219           - Implemented Document.CaretTag setter
15220           - Fixed MoveCaret(CtrlEnd) handling, now moves to the last character
15221             of the last line (Not the cause, but also exposed by bug #77220)
15222           - Added LineTag argument to InsertString method, to allow callers
15223             to force a certain tag to be used (required to force use of the
15224             trailing zero-length tag of a document)
15225           - Now updating markers in Combine(), to avoid stale tag markers
15226           - Added some method descriptions to aid maintenance
15227           - Implemented new FormatText concept, allowing additive/subtractive
15228             formatting by only specifying the components that are to be 
15229             changed. This was needed for resolving the RTB.SelectedColor/
15230             RTB.SelectedFont fixmes
15231           - Added Break() support method to allow breaking up linetags (used
15232             for partial formatting)
15233           - Added GenerateTextFormat() method. It is used for partial 
15234             formatting and allows to generate a full font/color from given
15235             attributes and an existing tag.
15237 2006-02-26  Jackson Harper  <jackson@ximian.com>
15239         * XplatUIX11.cs:  Use the correct caption height.
15240         - Translate hittest coordinates to screen coords to match MS.
15241         * XplatUIWin32.cs: When we create MDI windows we need to reset
15242         some of the style flags, so we get a nice blank window, and can
15243         draw all the decorations ourselves.
15244         - Set a clipping rectangle on the non client paint event, the
15245         window manager drawing code needs one.
15246         * Form.cs: The window manager needs to know when the window state
15247         has been updated.
15248         * Hwnd.cs: The window manager stuff now does a proper NCCALC so we
15249         don't need to factor in border and title sizes in these
15250         methods. TODO: Remove the args and fix the call points.
15251         * InternalWindowManager.cs: Handle NCHITTEST and NCCALCAREA
15252         properly.
15253         - Let the driver set the cursors.
15254         - Improve active window handling
15255         - Correct sizes for title bars and buttons.
15256         - Match MS drawing better
15257         * MdiWindowManager.cs: We don't need to handle border style
15258         updates specially anymore.
15259         - Check for scrollbars when windows are done moving
15260         - Handle Active properly.
15261         * MimeIcon.cs: Don't crash when we can't load the GNOME stuff
15262         correctly. I am spewing the exception though, so we don't hide the
15263         bugs.
15264         
15265 2006-02-26  Pedro Martinez Julia  <pedromj@gmail.com>
15267         * DataGridViewRowPostPaintEventArgs.cs,
15268           DataGridViewCellPaintingEventArgs.cs,
15269           DataGridViewRowCollection.cs,
15270           DataGridViewRowPrePaintEventArgs.cs,
15271           DataGridViewCell.cs: Clear a few warnings and implement a few
15272           exceptions that should be thrown.
15274 2006-02-22  Peter Dennis Bartok  <pbartok@novell.com>
15276         * ScrollBar.cs (ctor): Explicitly set a cursor to avoid
15277           'inheriting' our parent's (non-default) cursor. (Part of
15278            the fix for #77479)
15280 2006-02-22  Peter Dennis Bartok  <pbartok@novell.com> 
15282         * XplatUIX11.cs: Fixed cast to make csc happy
15284 2006-02-22  Peter Dennis Bartok  <pbartok@novell.com>
15286         * Control.cs (WndProc): Only handle WM_SETCURSOR messages if
15287           it's for the client area (part of fix for #77479 and needed
15288           for MDI window cursor handling)
15289         * XplatUIX11.cs
15290           - DefWindowProc: Now handles the WM_SETCURSOR messages, setting
15291             the appropriate default cursors and also passing the message
15292             up the parent chain 
15293           - GetMessage: Now generating WM_NCHITTEST and WM_SETCURSOR even
15294             for non-client areas
15296 2006-02-15  Jackson Harper  <jackson@ximian.com>
15298         * XplatUIWin32.cs: Since we fake MDI dont tell Windows that this
15299         is a real MDI window
15301 2006-02-14  Alexander Olk  <alex.olk@googlemail.com>
15303         * X11DesktopColors.cs: Instead of checking the desktop session
15304           string for "KDE" check if it starts with "KDE"
15306 2006-02-10  Jackson Harper  <jackson@ximian.com>
15308         * XplatUIX11.cs: These should be unsigned (fixes crash on 32 bit
15309         systems).
15311 2006-02-10  Alexander Olk  <alex.olk@googlemail.com>
15313         * FileDialog.cs: Added Refresh to RunDialog to fix some drawing
15314           errors
15315         * ColorDialog.cs:
15316           - Got rid of the panel. All controls are now directly added to
15317             the dialog form
15318           - Changed to mono coding style
15320 2006-02-10  Jackson Harper  <jackson@ximian.com>
15322         * InternalWindowManager.cs: We don't need the set visibility to
15323         false hack anymore now that peter has written beautiful shutdown
15324         code.
15326 2006-02-10  Peter Dennis Bartok  <pbartok@novell.com>
15328         * XplatUIX11.cs: Ignore DestroyNotify messages for windows that
15329           where already explicitly destroyed
15331 2006-02-10  Jackson Harper  <jackson@ximian.com>
15333         * MdiClient.cs: Handle the case where windows are too high or to
15334         the left and we need scrollbars.
15336 2006-02-10  Alexander Olk  <alex.olk@googlemail.com>
15338         * MimeIcon.cs: Added some icons
15339         * FileDialog.cs:
15340           - Fixed bug #77477
15341           - Got rid of the panel. All controls are now directly added to
15342             the dialog form
15343           - Changed to mono coding style
15344           - On Linux "My Computer" and "My Network" will now show some
15345             more usefull information. A new class, MasterMount, gathers
15346             this information from /proc/mount. Updated MWFFileView to make
15347             use of this information
15348           - Fixed a bug that caused FileDialog to crash when
15349             ".recently_used" file had a zero size
15350           - FilterIndex does now what it should
15351           - Some Refactoring
15352         * OpenFileDialog.cs, SaveFileDialog.cs: Updated to reflect latest
15353             FileDialog changes
15355 2006-02-09  Jackson Harper  <jackson@ximian.com>
15357         * ComboBox.cs: Don't touch if null.
15359 2006-02-09  Peter Dennis Bartok  <pbartok@novell.com>
15361         * Cursor.cs: 64bit safeness fix
15362         * XplatUIX11.cs: Removed several unneeded and one moronic cast.
15364 2006-02-09  Jackson Harper  <jackson@ximian.com>
15366         * Form.cs: If a form is made into an MDI form update the styles so
15367         all the props can get set correctly.
15368         - Kill the mdi_container when we dont need it anymore.
15369         * InternalWindowManager.cs: Add missing NOT
15371 2006-02-08  Jackson Harper  <jackson@ximian.com>
15373         * InternalWindowManager.cs: Respek clipping when drawing MDi
15374         decorations.
15376 2006-02-08  Jackson Harper  <jackson@ximian.com>
15378         * Hwnd.cs: Add bits to track non client expose events.
15379         * XplatUIX11.cs: Track non client expose events on the hwnd. This
15380         gives us a proper invalid rect and will allow for some nice
15381         optimizations with NC client drawing
15382         - MDI windows are children windows, so move their style handling
15383         into the child window block.
15384         * InternalWindowManager.cs: Remove a state reset that was
15385         getting invoked at the wrong time. Fixes managed windows getting
15386         into a 'stuck' captured state.
15388 2006-02-07  Peter Dennis Bartok  <pbartok@novell.com>
15390         * TextControl.cs (Document.ctor): Now initializing 
15391           selection_anchor. Fixes #77493
15393 2006-02-07  Jackson Harper  <jackson@ximian.com>
15395         * TrackBar.cs: The increment/decrements were backwards.
15397 2006-02-07  Mike Kestner  <mkestner@novell.com>
15399         * Theme*.cs : remove ThemeEngine.Current usage as it just points back
15400         to the instance itself.
15402 2006-02-07  Peter Dennis Bartok  <pbartok@novell.com>
15404         * X11DesktopColors.cs, ThemeGtk.cs: The GObject structure is based
15405           on ulongs and pointers, the size differs between 32bit and 64bit
15406           systems. 
15408 2006-02-07  Mike Kestner  <mkestner@novell.com>
15410         * XplatUIX11.cs : force the WorkingArea away from XGetWindowProperty
15411         for 64 bit platforms to work around a metacity bug. 
15413 2006-02-07  Jackson Harper  <jackson@ximian.com>
15415         * TrackBar.cs: Process the input keys we need, and hookup to
15416         KeyDown instead of using WndProc, so we get key messages.
15418 2006-02-06  Peter Dennis Bartok  <pbartok@novell.com>
15420         * XplatUIX11.cs: Atoms are only 32bit on the wire, no matter what
15421           machine we're on. 
15422         * X11Dnd.cs(SetAllowDrop): Since atoms are always 32bit on the wire
15423           we need to translate the XdndVersion atoms array before sending it
15425 2006-02-06  Peter Dennis Bartok  <pbartok@novell.com> 
15427         * XplatUIX11.cs: 
15428           - The preceeding 64bit fixes had a bug: ChangeProperty expects the
15429             number of bits for the property, not the number of bytes. The
15430             change to provide IntPtr.Size broke 32bit. (64bit was also wrong
15431             but would not crash since it specified 8 bits instead of 4 bits)
15432           - More 64bit fixes: Switched all atoms from int to IntPtr (they are
15433             defined as XID -> long in the C headers)
15434           - Removed 'new IntPtr((int))' and '(IntPtr)' casts from all NetAtoms 
15435             references since those are now IntPtr to begin with
15436           - Switched all Atom.XXX 'int' casts to IntPtr casts
15437           - Fixed XGrabPointer DllImport signature to work for 64bit (cursor arg)
15438           - Fixed XInternAtom signature for 64bit, now returns an IntPtr
15439           - Added XChangeActivePointerGrab DllImport (for X11DnD)
15440         * X11Structs.cs:
15441           - Changed 'int' type for Atoms in XEvent structures to IntPtr
15442           - Changed atom in HoverStruct to be IntPtr
15443         * X11DnD.cs:
15444           - Removed local DllImports, switched code to use those from XplatUIX11
15445           - Removed/fixed casts related to the switch of Atom to be a IntPtr
15447 2006-02-06  Mike Kestner  <mkestner@novell.com>
15449         * XplatUIX11.cs : many more 64 bit pinvoke changes.  I've audited all the 
15450         method signatures in the import region.  There may still be some
15451         lingering struct marshaling issues, as I didn't drill down into those.
15452         Yet.
15454 2006-02-06  Jackson Harper  <jackson@ximian.com>
15456         * ComboBox.cs: Dont manually set the top_item, this is computed
15457         when the scrollbar position is set.
15459 2006-02-06  Mike Kestner  <mkestner@novell.com>
15461         * XplatUIX11.cs : 64 bit changes to XGetWindowProperty usage. Fixes
15462         startup crashes on amd64.  There's other fixes needed.  All pinvoke
15463         usage of Atom needs to be mapped to IntPtr for example.  And there are
15464         likely other int/long issues to be addressed.
15466 2006-02-04  Alexander Olk  <alex.olk@googlemail.com>
15468         * FileDialog.cs: One more...
15470 2006-02-03  Alexander Olk  <alex.olk@googlemail.com>
15472         * FileDialog.cs: Next try
15474 2006-02-03  Alexander Olk  <alex.olk@googlemail.com>
15476         * FileDialog.cs: First part of fix for #77464
15478 2006-02-03  Alexander Olk  <alex.olk@googlemail.com>
15480         * ButtonBase.cs, ContainerControl.cs, Forms.cs,
15481           ThemeWin32Classic.cs: Fix for #77458. Correct handling of
15482           AcceptButton border drawing.
15484 2006-02-03  Peter Dennis Bartok  <pbartok@novell.com> 
15486         * Form.cs: Moved positioning of form after auto scaling is applied,
15487           otherwise it would possibly use wrong form size.
15489 2006-02-03  Peter Dennis Bartok  <pbartok@novell.com>
15491         * Control.cs (RecreateHandle): No need to re-create any child
15492           controls, the child windows will get destroyed automatically by
15493           the windowing system or driver, and re-created when the handle
15494           is being accessed the first time. Fixes #77456
15495         * Form.cs: No longer setting the form to closing if the handle is 
15496           being recreated. This seems like the right thing to do, don't
15497           have a bug or testcase for this, though.
15499 2006-02-02  Peter Dennis Bartok  <pbartok@novell.com>
15501         * FileDialog.cs: Suspend/Resume layouting when changing sizes of
15502           controls to avoid unwanted side effects
15504 2006-02-02  Peter Dennis Bartok  <pbartok@novell.com> 
15506         * Control.cs: 
15507           - ScaleCore needs to scale the bounds, not the ClientSize of the 
15508             control. Fixes #77416.
15509           - DefaultSize is 0,0 for control
15510         * TextBoxBase.cs: 
15511           - DefaultSize is 100, 20
15512           - SetBoundsCore: Now enforcing the height, no matter if the provided
15513             height is more or less than the preferred one, as long as AutoSize
15514             is on
15515         * Form.cs: Apply documented fudge factor. Part of item 3 fix for #77416
15517 2006-02-02  Peter Dennis Bartok  <pbartok@novell.com>
15519         * Control.cs:
15520           - ResumeLayout: Fixed logic when to call PerformLayout, we may not
15521             call unless both performLayout is true *and* we have a pending
15522             layout change
15523           - ResumeLayout: MS does not completely nest Suspend and Resume,
15524             they bottom out at 0, fixed our code to match that.
15525           - UpdateBounds/SetBoundsCore: Moved calling of UpdateDistances() to
15526             SetBoundsCore, we were updating even when we shouldn't. This fixes
15527             swf-anchors mis-anchoring when resizing the app fast and lots.
15528           - UpdateDistances: Now only setting the left and top distance if 
15529             we have a parent and are not suspended, this is based on
15530             a suggestion by Don Edvaldson in bug #77355.
15531           - OnVisibleChanged: Fixed logic when to create the control. We may
15532             not create the control if we have no parent or if it's not visible;
15533             switched to using Visible property instead of is_visible field 
15534             since the property also considers parent states. This fixes a bug
15535             when starting Paint.Net
15537 2006-02-02  Jackson Harper  <jackson@ximian.com>
15539         * Form.cs: If the forms handle hasn't been created yet don't call
15540         into xplatui to make it top most, just set the topmost flag on the
15541         form in CreateParams
15542         * XplatUIX11.cs: Handle WS_EX_TOPMOST.
15544 2006-02-01  Jackson Harper  <jackson@ximian.com>
15546         * ScrollableControl.cs: Refactored the Recalculate method a
15547         little, this wasn't handling all the variants of bottom and right
15548         bars needed to be added and added/removed based on their
15549         counterparts being added/removed (which changes the drawable
15550         size). Also we special case client widths and heights of 0 and
15551         don't add the scrollbar for those.
15553 2006-02-01  Peter Dennis Bartok  <pbartok@novell.com>
15555         * XplatUIX11.cs: 
15556           - Added method to get AbsoluteGeometry(); currently unused, but might
15557             be used in the future, if we try again to figure out toplevel
15558             coordinates with some more crappy window managers
15559           - Added FrameExtents() method to retrieve the WM set decoration size
15560           - Tried to fix up AddConfigureNotify and handling of ReparentNotify 
15561             to deal with at least KDE, FVWM and metacity (Fixes #77092)
15562         * Hwnd.cs: 
15563           - Added whacky_wm tracking var for metacity
15564           - Added logic to have default menu height if the actual menu height
15565             has not yet been calculated (part of fix for #77426)
15566         * Form.cs: Keep track whether client size has been set and re-set 
15567           it if a menu is added/removed afterwards (Fixes #77426)
15569 2006-01-31  Jackson Harper  <jackson@ximian.com>
15571         * Control.cs: When a new Site is set on the component attempt to
15572         pull the AmbientProperties from it.
15574 2006-01-31  Peter Dennis Bartok  <pbartok@novell.com>
15576         * ThemeWin32Classic.cs: Menu background is drawn in ColorMenu, not
15577           in the background of the owning form. Fixes #77332
15579 2006-01-31  Alexander Olk  <alex.olk@googlemail.com>
15581         * MimeIcon.cs: Fix for #77409
15583 2006-01-31  Alexander Olk  <alex.olk@googlemail.com>
15585         * XplatUIX11GTK.cs: Initial import
15587 2006-01-31  Jordi Mas i Hernandez <jordimash@gmail.com>
15589         * FixedSizeTextBox: fixes class signature
15591 2006-01-30  Jackson Harper  <jackson@ximian.com>
15593         * FixedSizeTextBox.cs: New internal class that represents a
15594         textBox that will not be scaled.
15595         * TreeView.cs:
15596         * ComboBox.cs:
15597         * UpDownBase.cs: Use the new FixedSizeTextBox instead of a
15598         standard TextBox.
15599                 
15600 2006-01-30  Peter Dennis Bartok  <pbartok@novell.com> 
15602         * XplatUIX11.cs: Retrieve default screen number instead of
15603           assuming 0. Attempted fix for #77318
15605 2006-01-30  Peter Dennis Bartok  <pbartok@novell.com>
15607         * XplatUIWin32.cs: 
15608           - GetWindowPos: When a window is parented by FosterParent, use 
15609             the desktop instead of FosterParent as the base to get coordinates
15610           - CreateWindow: Don't make FosterParent the parent window for Popups
15611             if we don't want a taskbar entry, Popups automatically don't get one
15612         * Hwnd.cs: Need to call remove to actually remove the key from the
15613           hash table
15615 2006-01-30  Mike Kestner  <mkestner@novell.com>
15617         * MenuAPI.cs: adjust MainMenu item popup location to y=0.
15619 2006-01-30  Jackson Harper  <jackson@ximian.com>
15621         * TreeView.cs:
15622         * TreeNode.cs: Raise events no matter how the treenode is
15623         checked. Patch by Don Edvalson.
15625 2006-01-30  Jackson Harper  <jackson@ximian.com>
15627         * TreeNode.cs: Signature fix.
15629 2006-01-29  Alexander Olk  <alex.olk@googlemail.com>
15631         * ThemeClearlooks.cs: Fixed a crash in ProgressBar drawing.
15633 2006-01-20  Mike Kestner  <mkestner@novell.com>
15635         * Form.cs: Add ActiveTracker property to do Captures and perform mouse
15636         event forwarding when menus are active.
15637         * MenuAPI.cs: kill the GrabControl hack.  Use Form.ActiveTracker.
15638         Most of the patch is pdb's with a little rework.
15640 2006-01-26  Peter Dennis Bartok  <pbartok@novell.com> 
15642         * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs, XplatUIOSX.cs: 
15643           Removed GetMenuDC and ReleaseMenuDC methods; replaced
15644           by PaintEventStart(handle, false) and PaintEventEnd(handle, false)
15645         * Form.cs: Changed WM_NCPAINT handler to use PaintEventStart and End
15646         * InternalWindowManager.cs: Added use of PaintEventStart/End to
15647           handling of WM_NCPAINT message, now passing the PaintEventArgs to
15648           the PaintWindowDecorations method
15649         * MainMenu.cs: Switched logic from GetMenuDC to PaintEventStart
15650         * MdiChildContext.cs: Switched logic from GetMenuDC to PaintEventStart
15651         * MenuAPI.cs: Made tracker window invisible
15652         * XplatUIWin32.cs:
15653           - Removed GetMenuDC and ReleaseMenuDC methods
15654           - Implemented the client=false path for PaintEventStart and
15655             PaintEventEnd
15657 2006-01-26  Peter Dennis Bartok  <pbartok@novell.com>
15659         * XplatUIWin32.cs(SetBorderStyle): Fixed3D needs a border
15660         * XplatUIX11.cs(DeriveWindowStyles): Updated to match fixed Form
15661           styles
15662         * Form.cs: 
15663           - MaximizeBox, MinimizeBox: Recreate the handle when setting
15664             the style
15665           - CreateParams: Reworked the styles to match MS look'n'feel,
15666             removed automatic setting of MinimizeBox, MaximizeBox, etc. via
15667             the WS_OVERLAPPEDWINDOW style. This fixes #76823.
15669 2006-01-26  Peter Dennis Bartok  <pbartok@novell.com> 
15671         * XplatUIX11.cs(GetWindowState): Now throwing an exception when the 
15672           window is not mapped, since otherwise every form that's being 
15673           created is considered minimized, which is wrong.
15674         * Form.cs: Catching the exception and returning our internal value
15675           instead
15677 2006-01-26  Peter Dennis Bartok  <pbartok@novell.com>
15679         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs: Added new driver method
15680           SetWindowMinMax() to have means to tell the driver about the minimum,
15681           maximum and maximized state window sizes. (Part of the fix for #76485)
15682         * Form.cs:
15683           - Implemented tracking of minimum and maximum window size, now calling
15684             new SetWindowMinMax() driver method to tell the driver (Part of the
15685             fix for #76485)
15686           - Finished handling of WM_GETMINMAXINFO method, now setting all values
15687             (Completes fix for #76485)
15688           - Calling new SetWindowMinMax driver method when the handle for a 
15689             form is created, to make sure the driver knows about it even if
15690             the values have been set before the window was created
15691           - Now eating the WM_WINDOWPOSCHANGED message if the form is minimized
15692             to avoid messing up our anchoring calculations (partial fix
15693             for #77355)
15694         * XplatUIStructs.cs: Added MINMAXINFO struct (moved from Win32 driver)
15695         * XplatUIX11.cs:
15696           - Added _NET_WM_STATE_HIDDEN property for detecting minimized state
15697           - Improved GetWindowState() to detect 'Minimized' state on Metacity 
15698             (and presumably other freedesktop.org compliant WMs). Left the
15699             assumption unmapped=minimized, needed for SetVisible to work.
15700           - Now setting the window state when creating windows
15701           - Fixed SetVisible to consider/set the window state when mapping
15702             a Form. We cannot set the state before it's mapped, and we cannot
15703             use Form.WindowState once it's mapped (since it would ask the
15704             driver and get 'normal'. Therefore, we grab the state before
15705             mapping, map, and then set state.
15706           - Implmemented SetWindowMinMax method; Metacity does not seem to
15707             honor the ZoomHints, though.
15708         * XplatUIWin32.cs:
15709           - Removed MINMAXINFO (moved to XplatUIStructs)
15710           - Added SetWindowMinMax stub (on Win32 the only way to set that
15711             information is in response to the WM_GETMINMAXINFO message, which
15712             is handled in Form.cs)
15713           - Added logic to SetVisible to set the proper window state when a 
15714             form is made visible (fixes #75720)
15716 2006-01-26  Jackson Harper  <jackson@ximian.com>
15718         * Control.cs (BeginInvoke): Automagically handle EventHandlers the
15719         same way we handle them with Invoke.
15721 2006-01-25  Peter Dennis Bartok  <pbartok@novell.com> 
15723         * Form.cs:
15724           - Added tracking of window state so CreateParams can return
15725             the appropriate style
15726           - Moved setting of WS_CAPTION style in CreateParams to allow
15727             styles without caption
15728         * DataGridTextBoxColumn.cs: We are now also creating the TextBox 
15729           control if the TextBox property is accessed. Fixes #77345
15730         * Control.cs:
15731           - get_Created: now uses is_disposed and is_created to determine
15732             return value (suggested by Jackson)
15733           - CreateHandle: No longer exits if the handle is being recreated
15734           - RecreateHandle: If the handle is not yet created call the 
15735             appropriate method to create either control or handle. If the
15736             control is already created CreateHandle will simply exit instead
15737             of just creating the handle
15738         * Hwnd.cs: Removed expose_pending tracking, no longer needed since we
15739           now SendMessage WM_DESTROY directly to the control when DestroyWindow
15740           is called.
15741         * XplatUIX11.cs: 
15742           - When DestroyWindow is called, instead of waiting for the 
15743             DestroyNotification from X11, we directly post it to the WndProc
15744             and immediately dispose the hwnd object.
15745             Same applies to DestroyChildWindows, and this obsoletes the
15746             expose_pending tracking. Contrary to Win32 behaviour we destroy our
15747             child windows before our own, to avoid X11 errors.
15748           - Removed the direct sending of WM_PAINT on UpdateWindow
15749         * XplatUIWin32.cs:
15750           - Reworked DoEvents and GetMessage to allow access to internal queue
15751             even when trying non-blocking access to the queue.  Fixes #77335. 
15752             Based on a patch suggestion by Don Edvalson. The new private
15753             GetMessage can now also be used as a backend for a PeekMessage
15754             frontend version.
15755         * XplatUI.cs: Improved debug output for CreateWindow
15757 2006-01-25  Jackson Harper  <jackson@ximian.com>
15759         * Help.cs: Allow param to be null. Patch by Don Edvalson.
15761 2006-01-24  Jackson Harper  <jackson@ximian.com>
15763         * ComboBox.cs: Clamp the max value set for the vertical scrollbar
15764         when we have a MaxDropItems lower then the selected index.
15766 2006-01-24  Jackson Harper  <jackson@ximian.com>
15768         * Control.cs: Don't allow selection of non visible controls, allow
15769         selection of controls without parents.
15771 2006-01-24  Jordi Mas i Hernandez <jordimash@gmail.com>
15773         * ThemeWin32Classic.cs: Fixes Datagrid drawing issues
15774         * DataGridDrawingLogic.cs: Add editing row only when is necessary
15776 2006-01-23  Jackson Harper  <jackson@ximian.com>
15778         * UpDownBase.cs: Make the textbox handle all the selection and
15779         tabbing. This fixes tabing to updown controls.
15781 2006-01-24  Jordi Mas i Hernandez <jordimash@gmail.com>
15783         * TextBoxBase.cs: fixes exception thown the object was null
15785 2006-01-23  Jackson Harper  <jackson@ximian.com>
15787         * ButtonBase.cs: Just use the base CreateParams. They set
15788         visibility and enabled correctly.
15789         * ComboBox.cs:
15790         * TrackBar.cs:
15791         * MonthCalendar.cs: Lets let the base set as much of the
15792         createparams as possible so we don't have duplicate code all over
15793         the place.
15795 2006-01-22  Alexander Olk  <alex.olk@googlemail.com>
15797         * ThemeGtk.cs: Added TrackBar and some experimental code to
15798           get double buffering back
15800 2006-01-21  Jordi Mas i Hernandez <jordimash@gmail.com>
15802         * DataGrid.cs: Allows row number set internally higher than the last
15803         when creating a new row. Restores the editing functionality.
15805 2006-01-20  Mike Kestner  <mkestner@novell.com>
15807         * MimeIcon.cs: delay Image creation until the icons are accessed
15808         instead of creating 190 scaled images on GnomeHandler startup.
15810 2006-01-19  Peter Dennis Bartok  <pbartok@novell.com> 
15812         * TextBoxBase.cs (WndProc): When handling WM_KEYDOWN we need to
15813           first call base before processing the event. Fixes #77279
15815 2006-01-19  Peter Dennis Bartok  <pbartok@novell.com>
15817         * XplatUIWin32.cs, Cursor.cs: Fixed code that wrongly assumed
15818           that the stride for the GDI bitmap would match the stride of
15819           a DIB or a Cursor.
15821 2006-01-19  Alexander Olk  <alex.olk@googlemail.com>
15823         * ThemeGtk.cs: Added ProgressBar, RadioButton, CheckBox
15825 2006-01-19  Jackson Harper  <jackson@ximian.com>
15827         * ComboBox.cs: Hookup the text controls keydown event so we get
15828         those when the text control has the focus.
15830 2006-01-18  Peter Dennis Bartok  <pbartok@novell.com> 
15832         * Label.cs: Now using the base events instead of defining new ones;
15833           this allows us to just call the base properties without having to
15834           duplicate all base property logic 
15836 2006-01-18  Peter Dennis Bartok  <pbartok@novell.com>
15838         * Label.cs: A label by default is not a tabstop (Fixes one of our
15839           failing nunit tests)
15841 2006-01-18  Peter Dennis Bartok  <pbartok@novell.com> 
15843         * XplatUIWin32.cs: Fixed wrong DoEvents logic. Fixes #77282
15844         * XplatUIX11.cs: Removed WM_PAINT check from DoEvents. Fixes #77282
15846 2006-01-18  Peter Dennis Bartok  <pbartok@novell.com>
15848         * Cursor.cs: Reimplemented creating cursor bitmaps without using
15849           the Bitmap(Stream) constructor which is semi-broken on MS GDI+.
15850           This fixes #77218
15851         * XplatUIWin32.cs: 
15852           - Reimplemented creating Bitmaps from DIBs since the Bitmap(Stream) 
15853             constructor creates images that can't be saved. Part of the fix
15854             for #76103
15855           - Added handling of CF_BITMAP as CF_DIB to clipboard code (Fixes #76103)
15856           - SetWindowState: Switched ShowWindow flags (part of an upcoming 
15857             bug fix for handling window state in forms properly)
15859 2006-01-18  Alexander Olk  <alex.olk@googlemail.com>
15861         * ThemeGtk.cs: Simplify ScrollBar drawing
15863 2006-01-18  Jackson Harper  <jackson@ximian.com>
15865         * Splitter.cs: Set the default dock style for the splitter control
15866         in the constructor.
15868 2006-01-18  Alexander Olk  <alex.olk@googlemail.com>
15870         * ThemeGtk.cs: Corrected StateType and ShadowType for
15871           gtk_paint_box
15873 2006-01-18  Alexander Olk  <alex.olk@googlemail.com>
15875         * Control.cs: Make use of Theme.DoubleBufferingSupported
15876         * ThemeGtk.cs:
15877           - Added drawing for flat style buttons
15878           - Added ScrollBar drawing
15880 2006-01-18  Alexander Olk  <alex.olk@googlemail.com>
15882         * ThemeClearlooks.cs: Removed some unneeded code.
15883         * ThemeGtk.cs: First part of ThemeGtk enhancements.
15885 2006-01-17  Peter Dennis Bartok  <pbartok@novell.com>
15887         * LinkLabel.cs: We need to update the hover drawing when
15888           leaving the control as well.
15890 2006-01-18  Jordi Mas i Hernandez <jordimash@gmail.com>
15892         * DataGrid.cs: Clicking on non empty areas in the columns
15893            area was giving an exception
15895 2006-01-17  Jackson Harper  <jackson@ximian.com>
15897         * ThemeWin32Classic.cs:
15898         * ListView.cs: Do not draw/clip the headers when the header style
15899         is None.
15901 2006-01-17  Jordi Mas i Hernandez <jordimash@gmail.com>
15903         * DataGrid.cs: Fixes 77260
15904         
15905 2006-01-17  Jordi Mas i Hernandez <jordimash@gmail.com>
15907         * DataGrid.cs: Clicking on a column on a empty grid was giving
15908           an exception
15910 2006-01-17  Peter Dennis Bartok  <pbartok@novell.com>
15912         * DataGrid.cs (OnKeyDown): Don't use the array if it's empty
15913           or any keypress will crash the grid.
15915 2006-01-17  Mike Kestner  <mkestner@novell.com>
15917         * MainMenu.cs (OnMenuChanged): set Height=0 to cause relayout.
15918         * ThemeWin32Classic.cs (CalcItemSize): clear Height/Width for 
15919         invisible/previously-visible items.
15920         [Fixes #76909]
15922 2006-01-17  Alexander Olk  <alex.olk@googlemail.com>
15924         * ThemeClearlooks.cs:
15925         - Added CL_Draw_Button method; now other theme controls that are 
15926           not derived from button or do not have a button can draw buttons
15927           too
15928         - Updated ComboBox drawing
15929         - Beautified RadioButton drawing
15930         - Corrected drawing of bottom and left tabs
15931         - Beautified DateTimePicker and MonthCalendar
15932         - Added CPDrawButton and CPDrawRadioButton
15934 2006-01-16  Jackson Harper  <jackson@ximian.com>
15936         * ComboBox.cs: Set the initial value of the scrollbar to the
15937         current index. Reduce the numbers of refreshs and IndexOfs called.
15939 2006-01-14  Alexander Olk  <alex.olk@googlemail.com>
15941         * FileDialog.cs: When the file listview is focused hitting the
15942           backspace key moves the fileview to the parent directory
15944 2006-01-13  Peter Dennis Bartok  <pbartok@novell.com>
15946         * Form.cs: 
15947           - Added RecreateHandle call when changing taskbar visibility to 
15948             trigger reparenting in Win32 driver (Fixes #75719)
15949           - If a window has minimize or maximize buttons, it cannot have
15950             a help button
15951         * XplatUIWin32.cs:
15952           - CreateWindow: When no WS_EX_APPWINDOW style is found we parent
15953             the toplevel form with FosterParent (A toolwindow not on the
15954             taskbar) (Fixes #75719)
15955           - Made FosterParent a toolwindow
15957 2006-01-13  Alexander Olk  <alex.olk@googlemail.com>
15959         * FileDialog.cs: Don't crash if InitialDirectory doesn't exist
15961 2006-01-13  Alexander Olk  <alex.olk@googlemail.com>
15963         * ToolTip.cs: If SetToolTip is called from a control and the mouse
15964           is currently over that control, make sure that tooltip_window.Text
15965           gets updated
15967 2006-01-13  Mike Kestner  <mkestner@novell.com>
15969         * MimeIcon.cs: size_t on lp64 fix for gdk_pixbuf_save_to_file extern.
15971 2006-01-13  Jackson Harper  <jackson@ximian.com>
15973         * TreeView.cs: On MS GetNodeAt never actually factors in the X
15974         value passed.  Also redraw the selected node when we recieve
15975         focus, so tabbing between trees works correctly.
15977 2006-01-13  Alexander Olk  <alex.olk@googlemail.com>
15979         * MimeIcon.cs: GnomeHandler: older gnome versions don't have
15980           ~/.gconf/%gconf-tree.xml, so use
15981           .gconf/desktop/gnome/interface/%gconf.xml
15983 2006-01-13  Peter Dennis Bartok  <pbartok@novell.com> 
15985         * TextControl.cs: Draw text in gray if control is disabled
15987 2006-01-13  Peter Dennis Bartok  <pbartok@novell.com> 
15989         * TreeView.cs: Draw the focus rectangle outside the highlight, to
15990           make sure it's always visible. Fixes #76680.
15992 2006-01-13  Peter Dennis Bartok  <pbartok@novell.com>
15994         * TreeView.cs: Implemented Wheel scrolling. Fixes #76531
15996 2006-01-13  Jonathan Chambers  <jonathan.chambers@ansys.com>
15998         * PageSetupDialog.cs: Added.
15999         * PrintDialog.cs: Attributes.
16000         * PrintPreviewControl.cs: Updates.
16001         * PrintPreviewDialog.cs: Updates.
16002         
16003 2006-01-12  Peter Dennis Bartok  <pbartok@novell.com>
16005         * Control.cs: Undid my selection check fix, since it's not needed
16006         * TextBoxBase.cs:
16007           - Now considering the presence of hscroll/vscroll when sizing
16008             vscroll/hscroll respectively. Fixed bug #77077
16009           - Added Left/Up/Down/Right to IsInputKey list to prevent
16010             ContainerControl from stealing them. This fixes what I broke
16011             with my last checkin.
16013 2006-01-12  Peter Dennis Bartok  <pbartok@novell.com> 
16015         * ScrollableControl.cs: Implemented dockpadding. Fixes #77166. And
16016           I finally understand how the property can be set without a setter :-)
16018 2006-01-12  Peter Dennis Bartok  <pbartok@novell.com>
16020         * Application.cs:
16021           - Switched RunLoop to use static Message.Create to create a 
16022             Message object
16023           - Added PreProcessMessage call in runloop for keyboard events; this
16024             is part of the fix for #77219, I overlooked this originally in the
16025             MSDN doc for PreProcessMessage
16026         * Control.cs:
16027           - Removed call to PreProcessMessage from handling of keyboard 
16028             messages; it's supposed to be done in the message pump
16029           - Moved call to ProcessKeyEventArgs inside ProcessKeyMessage as
16030             per MSDN documentation.
16031           - IsInputChar: All chars are input chars by default; removed the 
16032             parent calling chain, MS does not document that
16033           - PreProcessMessage: If IsInputChar is true, we want to return false
16034             to allow dispatching of the message
16035           - When selecting the next control, now also check that we're not
16036             selecting ourselves again and therefore return a false positive.
16037         * TextBoxBase.cs:
16038           - Tried to match return values for IsInputKey and ProcessDialogKey
16039             to what MS returns; moved processing of our special keys outside
16040             ProcessDialogKey since MS does not seem to return true on those.
16041           - Moved code that previously was in ProcessDialogKey into new private
16042             ProcessKey method, which gets called upon receipt of WM_KEYDOWN
16043           - Reworked handling of WM_CHAR to not have to duplicate code from
16044             Control.cs anymore, instead we simply call down to base.
16045            
16046 2006-01-12  Jackson Harper  <jackson@ximian.com>
16048         * ComboBox.cs: We always need to refresh the text area when
16049         EndUpdate is called. Fixes the combobox in the file dialog.
16050         * Control.cs: Don't create the creator_thread until the controls
16051         handle is created.  Also in InvokeRequired we check if the
16052         creator_thread is null. This gives the effect of InvokeRequired
16053         returning true if the controls handle is not created yet, and
16054         matches MS.
16056 2006-01-12  Peter Dennis Bartok  <pbartok@novell.com>
16058         * XplatUI.cs:
16059           - Added StartLoop() driver method. This is used to allow drivers to
16060             prepare for an upcoming GetMessage/TranslateMessage/DispatchMessage
16061             loop for a particular thread
16062           - Added EndLoop() driver method. This is called once the message
16063             pump for the thread is shut down
16064           - Added SupportsTransparency method to allow the driver to indicate
16065             opacity support for windows
16066         * Form.cs:
16067           - Removed TODO attribute, completed AllowTransparency property
16068           - Added documented logic to Opacity
16069         * GroupBox.cs, Label.cs, LinkLabel.cs, PropertyGrid.cs, Control.cs,
16070           ButtonBase.cs, CheckedListBox.cs: Combined Jackson's and Miguel's
16071           versions of CompatibleTextRendering
16072         * X11Structs.cs: Added opacity atom to our atom enumeration
16073         * Hwnd.cs: Added opacity tracking (we need to track since the opacity
16074           of a form might be set before it's reparented by the WM, and we need
16075           the opacity value without calling up to Form)
16076         * XplatUIDriver.cs: Added StartLoop(), EndLoop() and 
16077           SupportsTransparency() driver methods
16078         * Application.cs: Now calling StartLoop and EndLoop driver methods
16079         * XplatUIX11.cs:
16080           - Added opacity atom registration
16081           - Added StartLoop()/EndLoop() methods. They're empty right now but
16082             will need to get implemented when we switch to a per-thread queue
16083           - Implemented SupportsTransparency() method
16084           - Implemented SetWindowTransparency() method
16085           - Added support for setting the opacity value when a window is
16086             reparented (since the opacity needs to be set on the WM frame)
16087         * XplatUIOSX.cs, XplatUIWin32.cs:
16088           - Added SupportsTransparency(), StartLoop() and EndLoop() methods
16090 2006-01-12  Alexander Olk  <alex.olk@googlemail.com>
16092         * ThemeClearlooks.cs: Don't crash if TabControl.Parent is null.
16094 2006-01-12  Alexander Olk  <alex.olk@googlemail.com>
16096         * FileDialog.cs: Added ToolTip for MWFFileView
16097         * MimeIcon.cs: Rewrote GnomeHandler.
16098           - Get currently used gnome icon theme from
16099             ($HOME)/.gconf/%gconf-tree.xml
16100           - Make use of inherited icon themes
16101           - Support SVG icon themes like Tango via librsvg
16103 2006-01-12  Miguel de Icaza  <miguel@novell.com>
16105         Revert's Jackson's revert which broke 2.0 builds.   Fix both
16106         builds. 
16107         
16108         * Application.cs: Move the use_compatible_text_rendering outside
16109         the NET_2_0 define.  If we ever need to use the
16110         use_compatible_text_rendering on the individual controls they will
16111         access the variable from the common shared code paths.
16113 2006-01-12  Peter Dennis Bartok  <pbartok@novell.com>
16115         * XplatUI.cs:
16116           - Added more granular debug options
16117           - Added method to print both window text and id
16118           - Switched debug output to use new Window() debug method
16119           - Added IsEnabled() driver method
16120           - Added EnableWindow() driver method
16121         * Form.cs:
16122           - Removed end_modal; no longer needed, new loop handles termination
16123             via 'closing' variable
16124           - If form is modal, setting DialogResult will now initiate loop
16125             termination via 'closing' variable
16126           - Added support for is_enabled/WS_DISABLED to CreateParams
16127           - Close() now just send the WM_CLOSE message; the WM_CLOSE handler
16128             does all the work
16129           - Removed code that's now in RunLoop from ShowDialog()
16130           - Added various documented sanity checks to ShowDialog()
16131           - Added handling of WM_DESTROY message; we set 'closing' on getting
16132             the message to indicate the message pump to terminate
16133           - Added handling of new internal WM_CLOSE_INTERNAL message - it's
16134             send by the Application.ExitThread method. (We send the message
16135             to destroy the window after all other events have been
16136             processed through the queue, instead of destroying the handle 
16137             directly)
16138           - Moved code from Close() method to WM_CLOSE handler; added logic
16139             to only send close-related events if the form is not displayed
16140             modal
16141         * Splitter.cs (..ctor): Fixed typo in resource name
16142         * Control.cs:
16143           - DrawBackgroundImage: Explicitly selecting the wrap mode for the
16144             brush now
16145           - set_Cursor: Now only setting calling into XplatUI if the handle for
16146             the control is already created; this avoids implict handle creation
16147             or crashes if it's not created
16148           - set_Enabled: Now setting the enabled state via the new driver method
16149             instead of just tracking it
16150           - CreateParams: Added logic to set WS_DISABLED based on enabled state
16151           - CreateControl: Reordered event firing and method calls to more
16152             closely fire events in the order MS does. Now setting the
16153             enabled state in the driver when creating the control.
16154           - SetVisibleCore: Moved when the OnVisibleChanged event is fired to
16155             match MS order
16156         * FolderBrowserDialog.cs, MessageBox.cs, ButtonBase.cs, TrackBar.cs,
16157           MonthCalendar.cs: get_CreateParams: Added setting of WS_DISABLED 
16158         * XplatUIStructs.cs: Added internal WM_CLOSE_INTERNAL mesage id
16159         * Hwnd.cs:
16160           - Added tracking of window enabled state (get_Enabled/set_Enabled)
16161           - Added EnabledHwnd property to easily allow a driver to find the
16162             handle of the first enabled window in the parent chain (this is
16163             used by drivers to pass up input events of disabled windows)
16164         * XplatUIDriver.cs: Added IsEnabled() method
16165         * Application.cs:
16166           - Removed crude and obsolete exiting tracking variable
16167           - Removed internal ModalRun(); replaced by RunLoop()
16168           - Implemented private CloseForms() method to allow closing all 
16169             windows owned by a particular (or all) threads
16170           - Exit() now properly closes all windows without forcing the message
16171             pump to quit
16172           - Removed obsolete InternalExit() method
16173           - Changed Run() methods to use new RunLoop() message pump
16174           - Implemented new RunLoop() method for both modal and non-modal forms
16175         * CommonDialog.cs:
16176           - get_CreateParams: Added setting of WS_DISABLED
16177           - Simplified ShowDialog(); now all the work is done in RunLoop(),
16178             invoked via Form.ShowDialog()
16179         * NativeWindow.cs: We don't remove the window from the collection when
16180           the handle is destroyed; there might still be messages for it in the
16181           queue (mainly the resulting WM_DESTROY); instead it will be removed
16182           when Control calls InvalidateHandle in the WM_DESTROY handler
16183         * XplatUIX11.cs:
16184           - CreateWindow: Added logic to handle the WS_DISABLED window style
16185           - EnableWindow: Implemented based on Hwnd.Enabled
16186           - GetMessage: Reset PostQuitState so the method can be called again
16187           - Implemented support for disabled windows (passing messages to the
16188             first enabled parent) in handling all input messages
16189           - Added optimizations for handling Expose events
16190           - Implemeted new driver method IsEnabled()
16191           - Now always resetting paint pending tracking vars when we start paint
16192           - Re-implemented UpdateWindow via just sending a WM_PAINT message
16193         * XplatUIOSX.cs: Added IsEnabled method stub
16194         * XplatUIWin32.cs: Implemented new IsEnabled() method
16196 2006-01-11  Jackson Harper  <jackson@ximian.com>
16198         * ButtonBase.cs, CheckedListBox.cs, GroupBox.cs, Label.cs,
16199         LinkLabel.cs, PropertyGrid.cs: Unbreak 1.1 build. Consolidate the
16200         variables a little.
16201         * ColorDialog.cs: Clear out the old form before adding the new
16202         panel.  
16204 2006-01-11  Jackson Harper  <jackson@ximian.com>
16206         * X11Dnd.cs: Make sure to add all the text formats when adding
16207         strings to the data object.
16208         * TreeNodeCollection.cs: When adding to a sorted tree we need to
16209         do some redrawing too.  Also change the UpdateNode to an
16210         UpdateBelow so the newly added node gets painted.
16211         
16212 2006-01-11  Miguel de Icaza  <miguel@novell.com>
16214         * ButtonBase.cs, CheckedListBox.cs, GroupBox.cs, Label.cs,
16215         LinkLabel.cs, PropertyGrid.cs: Implement the
16216         UseCompatibleTextRendering property for 2.x
16218         * Application.cs (SetCompatibleTextRenderingDefault): Add. 
16220 2006-01-11  Jackson Harper  <jackson@ximian.com>
16222         * TreeView.cs: Use the property for setting the selected node so
16223         the correct events get raised.
16224         * TreeNode.cs: Update the tree when the fore/back colours of a
16225         node are set.
16227 2006-01-10  Jackson Harper  <jackson@ximian.com>
16229         * TreeView.cs: Allow setting SelectedNode to null.
16231 2006-01-9  Jonathan Chambers  <jonathan.chambers@ansys.com>
16233         * Form.cs: Fix support for Form TransparencyKey and Opacity on Windows.
16235 2006-01-9  Jonathan Chambers  <jonathan.chambers@ansys.com>
16237         * PrintControllerWithStatusDialog.cs: Update page number in dialog.
16239 2006-01-9  Jonathan Chambers  <jonathan.chambers@ansys.com>
16241         * PrintDialog.cs: Added attributes and set default property values.
16243 2006-01-9  Jonathan Chambers  <jonathan.chambers@ansys.com>
16245         * PrintControllerWithStatusDialog.cs: 
16246         Added PrintControllerWithStatusDialog.
16248 2006-01-9  Jonathan Chambers  <jonathan.chambers@ansys.com>
16250         * XplatUI.cs, Form.cs, XplatUIDriver.cs, XplatUIX11.cs, XplatUIOSX.cs, 
16251         XplatUIWin32.cs: Added support for Form TransparencyKey and Opacity on Windows.
16253 2006-01-9  Jonathan Chambers  <jonathan.chambers@ansys.com>
16255         * ComboBox.cs: Fix crash when there is no selected item (due to last commit)
16257 2006-01-09  Jonathan Chambers  <jonathan.chambers@ansys.com>
16259         * ComboBox.cs: Added KeyDown event handler for processing arrow keys
16260         and PgUp/PgDown. Also, scroll to selected item upon dropdown. Bugs 76857 and 76788.
16262 2006-01-08  Alexander Olk  <alex.olk@googlemail.com>
16264         * MimeIcon.cs: Added internal class SVGUtil.
16266 2006-01-08  Alexander Olk  <alex.olk@googlemail.com>
16268         * FileDialog.cs: Don't crash if there are two files with the
16269           same name but different locations.
16271 2006-01-08  John BouAntoun  <jba-mono@optusnet.com.au>
16273         * MonthCalendar.cs: Fixed annoying rendering bug when selecting
16274         dates across multiple month grids. Used to not highlight entire 
16275         month, but does now.
16276         
16277 2006-01-06  Jackson Harper  <jackson@ximian.com>
16279         * MonthCalendar.cs: Removed DoEvents call to prevent a running
16280         message loop. Change timer intervals to numbers that seem more
16281         natural.
16283 2006-01-06  John BouAntoun  <jba-mono@optusnet.com.au>
16285         * DateTimePicker.cs: Modified CalculateDropDownLocation to use the screen
16286           object for location info since screen object is now implemented.
16288 2006-01-05  Jackson Harper  <jackson@ximian.com>
16290         * AsyncMethodData.cs: Check if the call is complete before doing a WaitOne
16291         * AsyncMethodResult.cs: We no longer use a WeakReference for the
16292         AsyncMethodResult, this is because we ALWAYS want the
16293         ManualResetEvent to get set.
16294         * Control.cs: When disposing use an async invoke to call shutdown
16295         code, so that thigns don't block on the finalizer thread.  Also
16296         check if we even have a message loop before trying to send
16297         messages, if we don't then don't bother sending messages.
16298         - No more weak references for async methods
16299         * XplatUIDriver.cs: No more weak references for async methods.
16301 2006-01-04  Alexander Olk  <alex.olk@googlemail.com>
16303         * FontDialog.cs: Fix, don't throw an exception if FontFamily.Families
16304           returns two FontFamily with the same name
16306 2006-01-04  Peter Dennis Bartok  <pbartok@novell.com>
16308         * ThemeWin32Classic.cs, ThemeClearlooks.cs: Dropped stupid scheme of 
16309           drawing disabled text. Instead using the ColorGrayText color
16311 2006-01-04  Jackson Harper  <jackson@ximian.com>
16313         * TreeNode.cs: redraw the node when its image index is changed.
16315 2006-01-04  Peter Dennis Bartok  <pbartok@novell.com>
16317         * RichTextBox.cs: Same fix as last, just for SelectionColor. This
16318           time I checked there are no others like it.
16320 2006-01-04  Jackson Harper  <jackson@ximian.com>
16322         * AsyncMethodResult.cs: Use a ManualResetEvent instead of a mutex,
16323         this gives the behavoir I was looking for.
16324         * Control.cs: Special case Invoking EventHandlers, this matches MS
16325         and fixes part of bug #76326.
16327 2006-01-04  Alexander Olk  <alex.olk@googlemail.com>
16329         * ThemeClearlooks.cs, FileDialog.cs:
16330           - Reflect the latest Theme class changes
16331           - Remove Mono.Unix.Syscall.time in FileDialg and replace it 
16332             with DateTime
16333             
16334 2006-01-04  Alexander Olk  <alex.olk@googlemail.com>
16336         * Theme.cs: Cache UI resource images and resize them if needed
16338 2006-01-03  Peter Dennis Bartok  <pbartok@novell.com>
16340         * RichTextBox.cs: FormatText is 1-based, make it so when SelectionFont
16341           is called. This fixes the crash in Nexxia when setting the font
16342           attributes in the chat. [However, RTF needs a look-over to make sure
16343           that all SelectionXXX methods handle the special case that selection
16344           is empty and therefore the change must be applied to all text starting
16345           at the cursor/selection start]
16347 2006-01-03  Peter Dennis Bartok  <pbartok@novell.com> 
16349         * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs, XplatUIWin32.cs,
16350           XplatUIOSX.cs: Added SendMessage and PostMessage methods
16351         * X11Keyboard.cs: Switched to new way of calling PostMessage
16353 2006-01-03  Peter Dennis Bartok  <pbartok@novell.com>
16355         * Theme.cs: Added theme interface for images to allow the theme to
16356           control what images are used for things like FileDialog, MessageBox
16357           icons, etc.
16358         * MessageBox.cs: Now uses the new Theme icon/image interfaces
16360 2006-01-03  Alexander Olk  <alex.olk@googlemail.com>
16362         * FileDialog.cs:
16363           - Removed some dead code
16364           - Opening a recently used file does work now
16365           - Small UI enhancements
16366           - Refactoring
16368 2006-01-02  Alexander Olk  <alex.olk@googlemail.com>
16370         * FileDialog.cs: Forgot too add __MonoCS__
16372 2006-01-02  Alexander Olk  <alex.olk@googlemail.com>
16374         * FileDialog.cs: We are able to read recently used files now let's
16375           go on and write them.
16377 2006-01-01  Alexander Olk  <alex.olk@googlemail.com>
16379         * FileDialog.cs: Breathe some life into "last open"/"recently used"
16380           button
16381         * MimeIcon.cs: Do a check for the top level media type also
16383 2005-12-31  Alexander Olk  <alex.olk@googlemail.com>
16385         * ThemeClearlooks.cs:
16386           - Added CPDrawStringDisabled
16387           - ButtonBase_DrawText: Workaround for a DrawString bug; cut off
16388             some chars if the text doesn't fit into text_rect
16389           - DrawListViewItem: If View = View.LargeIcon center the image;
16390             rewrote the drawing of ListViewItem.Text if View = 
16391             View.LargeIcon
16393 2005-12-31  Alexander Olk  <alex.olk@googlemail.com>
16395         * MimeIcon.cs: Use default KDE icon theme if there is no
16396           "48x48" directory for the current icon theme, fixes #77114
16397         * Mime.cs: Disable not working and actually not used code. 
16398         * ThemeWin32Classic.cs:
16399           - Replace "new SolidBrush" in GetControlBackBrush and
16400             GetControlForeBrush with ResPool.GetSolidBrush
16401           - Changed DrawListViewItem from private to protected virtual
16402         * FileDialog.cs:
16403           - Added form.MaximizeBox = true
16404           - Don't throw an exception if there is a broken symbolic link
16406 2005-12-23  Jackson Harper  <jackson@ximian.com>
16408         * TabControl.cs: Give the panels focus, keyboard navigation is
16409         fixed so this works correctly now.
16410         - We need these key events also.
16411         * ToolBar.cs: Remove some of the poor mans double buffering.
16412         
16413 2005-12-24  Alexander Olk  <alex.olk@googlemail.com>
16415         * ComboBox.cs: The internal TextBox now returns the focus.
16417 2005-12-23  Jackson Harper  <jackson@ximian.com>
16419         * ThemeWin32Classic.cs:  Draw the text for all tab appearances.
16421 2005-12-23  Peter Dennis Bartok  <pbartok@novell.com>
16423         * Control.cs: Removed debug code
16424         * XplatUIX11.cs: Changed DestroyChildWindows to also consider
16425           implicit children
16427 2005-12-23  Peter Dennis Bartok  <pbartok@novell.com> 
16429         * Control.cs: When creating the control, update the Z-order after
16430           all it's children are created, too. (Fixes nexxia not showing
16431           picturebox bug)
16433 2005-12-23  Peter Dennis Bartok  <pbartok@novell.com>
16435         * Control.cs: Do not update the anchoring distances if layout is
16436           suspended, instead do it once layout is resumed
16438 2005-12-22  Peter Dennis Bartok  <pbartok@novell.com> 
16440         * Control.cs: 
16441           - After many hours of debugging, for both Jackson and
16442             myself, it turns out that it helps to set the parent of a control
16443             if you want to actually see it onscreen. In the spirit of that
16444             discovery, we're now setting the parent of the control and
16445             it's children when the control's handle is created. This fix
16446             will make Lutz Roeder's Reflector run happily. 
16447           - now just creating the handle instead of the whole control when
16448             getting a graphics context for the control.
16450 2005-12-22  Peter Dennis Bartok  <pbartok@novell.com>
16452         * ScrollableControl.cs: When calculating the canvas, don't consider
16453           the scrollbar widths. Instead, predict if horizontal scrollbar
16454           will affect canvas when deciding on vertical display and vice versa.
16456 2005-12-22  Peter Dennis Bartok  <pbartok@novell.com>
16458         * RichTextBox.cs: Set default RTF font for documents that don't
16459           have a font table (Fixes #77076)
16461 2005-12-22  Jackson Harper  <jackson@ximian.com>
16463         * TextBoxBase.cs: It's difficult to do, but you can have an empty
16464         clipboard. This prevents a NullRef in that case.
16465         * XplatUIX11.cs: Use CLIPBOARD not PRIMARY for our
16466         clipboard. PRIMARY is for the currently selected text only. (We
16467         should implement PRIMARY at some point.
16469 2005-12-21  Peter Dennis Bartok  <pbartok@novell.com>
16471         * XplatUIWin32.cs: Fixed the TEXTMETRIC structure, we were calling
16472           a Unicode function with a structure that was defined in Ansi way.
16473           This fixes #76942.
16475 2005-12-21  Jackson Harper  <jackson@ximian.com>
16477         * StatusBar.cs: Statusbar handles its fore/back colours on it's
16478         on. Because thats how it rolls. (and this avoids it using ambient
16479         colours).
16480         * ThemeWin32Classic.cs: Use the proper back color for filling.
16481         * Menu.cs: Use the system menu bar color for drawing menu
16482         bars. Using the window back color will bring ambient colours into
16483         the picture.
16485 2005-12-21  Alexander Olk  <alex.olk@googlemail.com>
16487         * ColorDialog.cs: Fixed a memory leak that caused a SIGSEV. A lot of
16488           Bitmaps were created and not disposed.
16490 2005-12-21  Peter Dennis Bartok  <pbartok@novell.com>
16492         * Control.cs (CreateControl): Don't do anything if the control is
16493           already created, otherwise we'd fire the OnCreated event more than
16494           once
16496 2005-12-21  Peter Dennis Bartok  <pbartok@novell.com> 
16498         * ComboBox.cs (FindStringCaseInsensitive): Don't search for emtpy strings,
16499           will always match. Instead return -1. Fixes #76464.
16501 2005-12-21  Peter Dennis Bartok  <pbartok@novell.com>
16503         * TextControl.cs (RecalculateLine): Only wrap if the wrap point is
16504           neither the beginning nor the end of the line (Fixes bug #76479)
16506 2005-12-21  Peter Dennis Bartok  <pbartok@novell.com> 
16508         * Control.cs:
16509           - ControlNativeWindow.ControlFromHandle(): Now handling situation
16510             where handle is invalid
16511           - FromHandle(): Now using hashtable-based ControlFromHandle() lookup
16512             instead of slower linear search
16513         * NativeWindow.cs: Don't remove the window from the hashtable until
16514           after the driver has destroyed it (since the driver might use
16515           Control.FromHandle to lookup the control object
16516         * Hwnd.cs: Added DestroyPending property to track if a window is 
16517           already destroyed as far as the driver is concerned and only hasn't
16518           yet notified the control
16519         * XplatUIX11.cs:
16520           - Activate(): Check if the window is still valid before using the 
16521             handle
16522           - Implemented DestroyChildWindow() method to mark child windows as
16523             destroyed when a window is destroyed. This prevents situations 
16524             where we might call an X method based on queued events for a
16525             window that already has been destroyed but we haven't yet pulled
16526             the destroy method from the queue.
16527           - Added a call to the new DestroyChildWindow() method to the drivers
16528             DestroyWindow code. Also now marking the destroyed window itself
16529             as pending
16531 2005-12-20  Jackson Harper  <jackson@ximian.com>
16533         * StatusBar.cs:
16534         * StatusBarPanel.cs: Don't calculate panel sizes on draw
16535         anymore. Just do them when needed, also track the rects of panels
16536         so that we can optimize refreshing more in the future.
16538 2005-12-20  Alexander Olk  <alex.olk@googlemail.com>
16540         * ColorDialog.cs: Fixed focus drawing in small color controls
16542 2005-12-19  Jackson Harper  <jackson@ximian.com>
16544         * InternalWindowManager.cs:
16545         * MdiWindowManager.cs: Cleanup some coordinate system changes so
16546         moving windows works properly.
16548 2005-12-19  Peter Dennis Bartok  <pbartok@novell.com> 
16550         * Control.cs: 
16551           - Removed call to InitLayout() from SetBoundsCore(); doc says
16552             it's only called when a control is added to a container
16553           - Split InitLayout logic, moved to separate UpdateDistances() method
16554             since we need to perform those calculations more often than just
16555             when adding the control to a container. (Needed to fix #77022)
16556           - Now calling UpdateDistances() from UpdateBounds() (fixes #77022)
16557           - Reduced the OnBindingContextChanged events count, don't send them
16558             unless the control is created, we still aren't totally matching
16559             MS, but I can't quite figure out some of their rules
16561 2005-12-18  Alexander Olk  <alex.olk@googlemail.com>
16563         * ThemeClearlooks.cs: Corrected distance between ProgressBar
16564           stripes
16566 2005-12-18  Alexander Olk  <alex.olk@googlemail.com>
16568         * ThemeClearlooks.cs:
16569           - Updated ProgressBar drawing
16570           - Corrected drawing of ScrollBars and scroll buttons
16571           - Some temporary fixes for minor pixel artefacts
16573 2005-12-18  Peter Dennis Bartok  <pbartok@novell.com> 
16575         * Control.cs:
16576           - Reworked Controls.Add(), Controls.Remove() and set_Parent() to
16577             cause events to be sent in the same order as MS does.
16578           - Added ChangeParent() method to trigger various OnXXXChanged events
16579             that need to be fired when a parent changes (This is a reworking
16580             of the patch from r54254, with the X11 errors fixed)
16581           - Removed SuspendLayout()/ResumeLayout() calls from Controls.Clear()
16582             since on MS we get OnLayoutChanged events when calling Clear()
16583           - Changed Enabled property to consider parent state as well, if a
16584             parent is not enabled, the control will not be either
16585           - Changed Parent property to simply call Controls.Add() since that
16586             now does all the work required, this way we avoid code duplication
16587           - Threw in a few OnBindingsContextChanged calls to try and match
16588             when MS sends them. We seem to send a few too many, though.
16589           - Added call to CreateControl when adding the control to a parent.
16590             We were never calling CreateControl. Still needs some work, in
16591             some places we treat HandleCreated and ControlCreated as equal, 
16592             which is wrong
16593           - Removed obsolete commented out code from UpdateZOrder()
16595 2005-12-18  Alexander Olk  <alex.olk@googlemail.com>
16597         * ThemeClearlooks.cs: Updated TrackBar drawing.
16599 2005-12-17  Alexander Olk  <alex.olk@googlemail.com>
16601         * FileDialog.cs: Patch for #76901 by Atsushi Enomoto
16603 2005-12-17  Alexander Olk  <alex.olk@googlemail.com>
16605         * FileDialog.cs: Add the Help button and the open readonly
16606           checkbox only if needed
16608 2005-12-16  Jackson Harper  <jackson@ximian.com>
16610         * Control.cs: Make sure we have an active menu before trying to
16611         process commands on it. Prevents menu-less forms from crashing
16612         when Alt is pressed.
16613         * TreeNodeCollection.cs: Some fixes to prevent null refs. Patch by
16614         Dieter Bremes.
16615         * RichTextBox.cs: Expand statement to help out gmcs and fix the
16616         2.0 build.
16618 2005-12-16  Jackson Harper  <jackson@ximian.com>
16620         * InternalWindowManager.cs: Don't translate tool windows screen
16621         coordinates. This fixes windows 'bouncing' around when being moved.
16623 2005-12-15  Peter Dennis Bartok  <pbartok@novell.com> 
16625         * TextBoxBase.cs:
16626           - MaxLength now treats 2^31-1 equal to unlimited length (this is
16627             not quite MS compatible, MS uses that number only for single line
16628             and 2^32-1 for multi-line, but I figure it won't hurt keeping
16629             the limit at 2GB)
16630           - Now enforcing the MaxLength limit when entering characters
16631           - Added argument to internal Paste() method to track if it's called
16632             from programatically or via keyboard, since keyboard driven pastes
16633             need to enforce max-length
16634           - Added logic to Paste to only paste as many chars as MaxLength 
16635             allows
16636         * RichTextBox.cs: Updated to use new obey argument for internal Paste()
16637         * TextControl.cs:
16638           - Added Length property to return number of characters in document
16639           - Added private CharCount property which only tracks actual chars
16640             in the document (no linefeeds) and fires event when CharCount
16641             changes
16642           - Added tracking of character count to all methods that alter it
16643           - Added LengthChanged event to allow applications to subscribe
16644             to any changes to the document
16646 2005-12-15  Peter Dennis Bartok  <pbartok@novell.com> 
16648         * TextBox.cs: 
16649           - Removed local password_char field (moved to TextBoxBase)
16650           - Now setting the document's password var when password is
16651             set
16652         * TextBoxBase.cs:
16653           - Added password_char field (needed here so MultiLine can
16654             access it)
16655           - Added logic to MultiLine property setter to set the document's
16656             variable when password display is allowed
16657           - Removed debug code and made some debug code conditional
16658         * TextControl.cs:
16659           - Added RecalculatePasswordLine() method to handle special password
16660             char only lines
16661           - Added PasswordChar property, also added related tracking vars
16662           - Draw() method now uses local text var for grabbing text to draw,
16663             this var is set to line.text unless we're doing password display,
16664             then it is set to the pre-generated all-password-chars line
16665           - Added calling RecalculatePasswordLine() method for password lines
16667 2005-12-14  Peter Dennis Bartok  <pbartok@novell.com> 
16669         * Hwnd.cs: 
16670           - Added Reparented property to allow tracking of Window Manager
16671             reparenting actions (which affect X/Y calculations of toplevel 
16672             windows)
16673           - Made ToString() print window handles in hex
16674         * XplatUIX11.cs:
16675           - AddConfigureNotify(): Now uses reparented state off Hwnd to
16676             determine if X/Y needs offsetting
16677           - AddConfigureNotify(): Fixed offset calculations
16678           - Now adds ReparentNotify messages into the queue
16679           - Now processes ReparentNotify messages and causes a 
16680             WM_WINDOWPOSCHANGED message to be sent upstream if a window
16681             is reparented (as most likely it's X/Y coordinates are changed
16682             due to that)
16684 2005-12-14  Jackson Harper  <jackson@ximian.com>
16686         * XplatUIX11.cs: Tool windows still need to respek focus.
16688 2005-12-14  Peter Dennis Bartok  <pbartok@novell.com> 
16690         * Control.cs: Undid 54254 (causing XConfigure errors) so we can
16691           have a working release
16693 2005-12-13  Jackson Harper  <jackson@ximian.com>
16695         * Form.cs: Update styles after setting the border style regardless
16696         of whether or not the window is using a window manager.
16698 2005-12-13  Jackson Harper  <jackson@ximian.com>
16700         * Form.cs: We now hook into an internal window manager instead of just an
16701         MDI subsystem, this is so we can have properly behaving tool windows.
16702         * MdiClient.cs: Naming change, MdiChildContext is now WindowManager
16703         * InternalWindowManager.cs: New internal class that acts as a
16704         window manager for tool windows and as a base for mdi windows.
16705         * MdiWindowManager.cs: New class that acts as a window manager for
16706         mdi windows.
16708 2005-12-12  Jackson Harper  <jackson@ximian.com>
16710         * Control.cs: Updates so we match behavoir for for implicit
16711         controls. Fixes explosions in MDI.
16713 2005-12-12  Jackson Harper  <jackson@ximian.com>
16715         * Control.cs: Implement Invalidate (Region).
16717 2005-12-12  Peter Dennis Bartok  <pbartok@novell.com> 
16719         * Control.cs: 
16720           - Changed handling of Controls.Add/Controls.Remove to fire (almost) 
16721             the same events as MS does. MS fires events for each property 
16722             except, for unknown reasons, Cursor, when the control is reparented. 
16723             I can't seem to totally match add/remove since MS also fires some 
16724             VisibleChanged events, which makes no sense. Consolidated the
16725             parenting code into a separate method so it can be called from
16726             both Add and Remove. set_Parent no longer needs any special logic
16727             as it calls the parent's add method which implicitly fires
16728             all events
16729           - Removed some obsolete code and debug output
16730           - Enabled state is inherited from parents, if this is enabled
16732 2005-12-08  Peter Dennis Bartok  <pbartok@novell.com> 
16734         * Form.cs: Removed commented out code
16736 2005-12-08  Peter Dennis Bartok  <pbartok@novell.com>
16738         * Control.cs:
16739           - Added internal version of Invoke, with additional argument 
16740             indicating if we're calling it from a Dispose() handler. That
16741             way we can avoid BeginInvoke throwing an exception if we're
16742             calling for an already destroyed window.
16743           - Added a dispose argument to BeginInvokeInternal, and made the
16744             check if a valid window handle chain exists conditional on
16745             it not being a dispose call
16746           - Removed code in DestroyHandle to destroy our children. Since we
16747             now handle the WM_DESTROY message we will catch all our children
16748             being destroyed.
16749           - Now calling OnHandleDestroyed from our new WM_DESTROY handler
16750         * Form.cs:
16751           - Added a field to track the application context of the form.
16752           - No need to set closing variable as response to WM_CLOSE, instead
16753             we destroy the window. We also call PostQuitMessage if the form
16754             has an application context (which makes it the main app form,
16755             which, when closed terminates the app)
16756         * XplatUI.cs:
16757           - Dropped Exit() method, it's naming was confusing
16758           - Added PostQuitMessage() which causes GetMessage to return false
16759             once the message queue is empty
16760         * XplatUIDriver.cs, XplatUIWin32.cs: Dropped Exit(), added 
16761           PostQuitMessage()
16762         * XplatUIOSX.cs: Switched signature for Exit method since Exit() is
16763           no longer a valid XplatUI method, but left it in since it's used
16764           internally. Added empty PostQuitMessage() method.
16765         * MenuAPI.cs: Replaced call to Exit() with call to
16766           PostQuitMessage, even though this is probably no longer needed.
16767         * Hwnd.cs: Added 'pretty' ToString() to support debugging.
16768         * X11Structs.cs: Added pretty XEvent.ToString() to support debugging.
16769         * Application.cs:
16770           - Replaced call to XplatUI.Exit() with PostQuitMessage()
16771           - Removed old debug code that would call XplatUI for exception
16772             display, enabled standard exception handling (Still not enabled
16773             though, until NativeWindow's ExternalExceptionHandler define
16774             is removed
16775         * NativeWindow.cs:
16776           - Added internal method to allow control to update NativeWindow
16777             after a window has been destroyed
16778           - Added handling of already destroyed windows when calling i
16779             DestroyWindow
16780           - Added removal of handle from list on ReleaseHandle
16781         * XplatUIX11.cs:
16782           - Dropped GetMessageResult var and related code
16783           - Added PostQuitState to field to track if PostQuitMessage has been
16784             called
16785           - Dropped Exit() method
16786           - Added PostQuitMessage() method
16787           - GetMessage now will return false if PostQuitState is set and no
16788             more messages are in the queue.
16789           - Expose handler will no longer generate WM_PAINT messages if we are
16790             in PostQuitState since it's very likely any windows have already
16791             been destroyed, and since Hwnd won't get updated until we have
16792             processed the DestroyNotify we'd be causing X errors.
16793         
16794 2005-12-07  Peter Dennis Bartok  <pbartok@novell.com>
16796         * Control.cs(WndProc): Apparently I'm suffering from brain cloud.
16797           Thanks to Mike for pointing out the err of my ways.
16799 2005-12-07  Peter Dennis Bartok  <pbartok@novell.com>
16801         * Control.cs(PreProcessMessage): Moved menu handling back, but
16802           after all other key handling, to match MS (who handles Menu in
16803           DefWndProc)
16804         * Menu.cs (WndProc): Removed my brainfart
16806 2005-12-07  Peter Dennis Bartok  <pbartok@novell.com>
16808         * Control.cs(PreProcessMessage): Removed special menu handling 
16809         * Menu.cs (WndProc): Added handling of WM_SYSKEYUP for menu purposes.
16811 2005-12-07  Mike Kestner  <mkestner@novell.com>
16813         * Control.cs : special case SYSKEYUP so that we can adjust keynav
16814         state according in tracker.
16815         * Menu.cs : promote tracker field to base class and provide a tracker
16816         lookup capability.  Add/Remove shortcuts dynamically if the top menu
16817         has a tracker. Unparent items that are removed from the collection.
16818         * MenuAPI.cs : implement mnemonic, shortcut, and arrow-based keynav.
16819         * Theme*.cs: add always_show_hotkeys field to support configurability
16820         of mnemonic display.  win32 doesn't show mnemonics until Alt is
16821         pressed.
16823 2005-12-07  Jackson Harper  <jackson@ximian.com>
16825         * MdiChildContext.cs: Use Control.ResetCursor.
16826         * Control.cs: ResetCursor needs to set the property so that the
16827         correct XplatUI call gets made.
16829 2005-12-07  Peter Dennis Bartok  <pbartok@novell.com>
16831         * Control.cs: More fixes to make our key events match MS. We
16832           were not setting the modifier state on KeyData, and we were
16833           not generating any events when Alt was pressed with a key
16834           since handling of WM_SYSxxx was missing for the OnKey methods.
16836 2005-12-07  Jackson Harper  <jackson@ximian.com>
16838         * MdiChildContext.cs: reenable the sizing code.
16839         - When the mouse leaves a window reset its cursor.
16841 2005-12-07  Alexander Olk  <alex.olk@googlemail.com>
16843         * ThemeClearlooks.cs: Reflect latest Hwnd changes
16845 2005-12-07  Peter Dennis Bartok  <pbartok@novell.com>
16847         * Hwnd.cs: Now using the theme 3d bordersize to calculate
16848           widths of Fixed3D borders
16850 2005-12-07  Jackson Harper  <jackson@ximian.com>
16852         * MdiClient.cs: Fix warnings. Earn Mike's love.
16854 2005-12-07  Alexander Olk  <alex.olk@googlemail.com>
16856         * ThemeClearlooks.cs:
16857           - Adjusted mouse over button color
16858           - Added first parts of CheckBox drawing
16859           - Added correct color for selected text background
16860           - Fixed ComboBox drawing
16861           - Added CPDrawBorder3D and CPDrawBorder
16863 2005-12-06  Peter Dennis Bartok  <pbartok@novell.com>
16865         * XplatUIX11.cs: Added call to XBell for AudibleAlert
16867 2005-12-06  Peter Dennis Bartok  <pbartok@novell.com> 
16869         * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs, XplatUIWin32.cs,
16870           XplatUIOSX.cs: Added AudibleAlert() method to have a means to
16871           alert users via sound. We could add an enum arg with different
16872           types of alerts in the future
16874 2005-12-06  Peter Dennis Bartok  <pbartok@novell.com>
16876         * Control.cs: Fix behaviour problems pointed out by Mike
16878 2005-12-05  Mike Kestner  <mkestner@novell.com>
16880         * StatusBarPanel.cs: add Invalidate method and hook it into all the
16881         prop setters.  Calls parent.Refresh for now, but could be maybe be
16882         optimized with an internal method on StatusBar at some point.
16883         [Fixes #76513]
16885 2005-12-05  Peter Dennis Bartok  <pbartok@novell.com> 
16887         * RichTextBox.cs: Implemented get_SelectionColor
16889 2005-12-05  Alexander Olk  <alex.olk@googlemail.com>
16891         * ThemeClearlooks.cs:
16892           - Removed dead code
16893           - Draw black button border only if button is Form.AcceptButton
16894           - Draw correct button color for pressed RadioButton if the mouse 
16895             has entered the button
16896           - Updated ProgressBar drawing!
16897           - Updated CPDrawSizeGrip drawing
16898           - Updated StatusBarPanel drawing
16900 2005-12-05  Mike Kestner  <mkestner@novell.com>
16902         * Control.cs (PreProcessMessage): add Keys.Alt based on LParam value.
16903         * X11Keyboard.cs (SendKeyboardInput): formal lParam for alt mod.
16905 2005-12-04  Alexander Olk  <alex.olk@googlemail.com>
16907         * ThemeClearlooks.cs: Initial check-in, activate with
16908           export MONO_THEME=clearlooks
16909         * ThemeEngine.cs: Added ThemeClearlooks
16911 2005-12-03  Mike Kestner  <mkestner@novell.com>
16913         * MenuAPI.cs: deactivate menus prior to calling item.PerformClick.
16914         [Fixes #76897]
16916 2005-12-02  Jackson Harper  <jackson@ximian.com>
16918         * Form.cs: If the child form has no menu the default main menu is
16919         used as the active menu.
16921 2005-12-02  Peter Dennis Bartok  <pbartok@novell.com> 
16923         * ListBox.cs: Check if any items exist before trying to resolve 
16924           coordinates into items
16926 2005-12-02  Peter Dennis Bartok  <pbartok@novell.com>
16928         * ThemeWin32Classic.cs: Hatchbrush on Win32 seems to always use white
16929           as the second color for the background hatch
16931 2005-12-02  Peter Dennis Bartok  <pbartok@novell.com>
16933         * TextBoxBase.cs: Now uses Jackson's new and improved ImplicitScrollbar
16934         * RichTextBox.cs: FormatText position arguments are 1-based, now making
16935           sure that what we pass to FormatText is always 1-based. Fixes #76885
16937 2005-11-29  Miguel de Icaza  <miguel@novell.com>
16939         * NumericUpDown.cs (EndInit): When we are done initializing,
16940         reflect any updates on the UI.
16942 2005-12-02  Jackson Harper  <jackson@ximian.com>
16944         * ImplicitHScrollBar.cs:
16945         * ImplicitVScrollBar.cs: New scrollbars that don't take focus from
16946         their container controls.
16947         * TreeView.cs: Use the new implicit scrollbars.
16949 2005-12-02  Jackson Harper  <jackson@ximian.com>
16951         * TreeView.cs: Make top_node internal so the TreeNodeCollections
16952         can play with it.
16953         * TreeNodeCollection.cs: If we remove the topnode we need to
16954         update topnode to the next node in line.
16955         - When clearing nodes go through the same process as removing
16956         them, so they get depareneted and checked if they are top node.
16958 2005-12-01  Jackson Harper  <jackson@ximian.com>
16960         * TreeView.cs: When imagelists are used the image area is
16961         selectable as well as the text.
16962         - If there are no selected nodes select the first one.
16963         * TreeNodeCollection.cs: Getting the TreeView is mildly expensive,
16964         so don't do it more then we need to.
16966 2005-12-01  Jackson Harper  <jackson@ximian.com>
16968         * ThemeWin32Classic.cs: Reimplement the scroll arrow drawing so
16969         that arrows can be scaled.
16971 2005-12-01  Jackson Harper  <jackson@ximian.com>
16973         * TreeNode.cs : Fixed bugs that caused FullPathTest + Traverse to
16974         fail. Patch by Dieter Bremes
16976 2005-11-30  Jackson Harper  <jackson@ximian.com>
16978         * Form.cs: Property is 2.0 only
16979         * PrintDialog.cs: Signature fix.
16981 2005-11-30  Peter Dennis Bartok  <pbartok@novell.com>
16983         * TextControl.cs: 
16984           - No longer artificially moves text 2 pixels down (now that we have
16985             borders this is no longer needed)
16986           - Added calcs for left, hanging and right indent
16988 2005-11-23  Mike Kestner  <mkestner@novell.com>
16990         * Menu.cs: mark MenuChanged internal, since it's not exposed by MS.
16992 2005-11-30  Jackson Harper  <jackson@ximian.com>
16994         * MdiChildContext.cs: Set the cloned menus forms, as these don't
16995         get cloned as part of CloneMenu ().
16996         * Menu.cs: Make sure the parent of the items get set correctly
16997         when they are added.  And the owners are notified of the changes.
16998         * Form.cs: Create an ActiveMenu property, so that when MDI is used
16999         we can change the menu being displayed/handled by the form without
17000         changing the menu assosciated with the form.
17001         - Don't let Mdi children draw/handle menus.
17002         
17003 2005-11-30  Jackson Harper  <jackson@ximian.com>
17005         * Menu.cs: Switch the MenuChanged method to OnMenuChanged and add
17006         a MenuChanged event. Just to make the API a little more
17007         consistent.
17008         * MainMenu.cs:
17009         * MenuItem.cs: Use the new OnMenuChanged
17010         * MdiChildContext.cs: Handle menu merging.
17011         * Form.cs: Implement MergedMenu.
17012         
17013 2005-11-30  Jackson Harper  <jackson@ximian.com>
17015         * Menu.cs: We were misusing Add. Add goes behind the specified
17016         index according to the docs, and does not replace the specified
17017         index. So I added an Insert method.
17019 2005-11-30  Peter Dennis Bartok  <pbartok@novell.com>
17021         * TextBoxBase.cs:  Implemented Ctrl-Ins (Copy), Shift-Ins (Paste) and
17022           Shift-Del (Cut), apparently Emacs uses these old Win 2.x keys. This
17023           is for Jackson
17024         * RichTextBox.cs: Added calls to base for DnD events
17026 2005-11-28  Peter Dennis Bartok  <pbartok@novell.com>
17028         * TextControl.cs:
17029           - Fixed drag-selection related crash; style fixes
17030           - Implemented undo class
17031             o Implemented method to capture document state for specified
17032               range in document tree
17033             o Implemented method to restore captured document state
17034             o Implemented cursor tracking
17035             o Implemented basic undo stack
17036           - Added undo cursor tracking to methods altering cursor location
17037           - Added undo tracking to selection deletion (still missing
17038             other text-altering hookups)
17039         * RichTextBox.cs:
17040           - Added SelectionLength property
17041           - Implemented CanPaste()
17042           - Implemented Paste()
17043           - Added missing protected methods
17044           - Fixed RTF->Document conversion; now uses font index 0 and color 
17045             index 0 as the default font for the parsed text
17046           - Fixed RTF<->Document font size translation
17047           - Fixed RTF generation, now properly handles cross-tag boundaries
17048             for single line selection
17049           - No longer always appends blank line to generated RTF
17050           - Removed TODOs
17051           - Added missing attributes
17052           - Hooked up undo-related methods
17053         * TextBoxBase.cs:
17054           - Implemented Copy()
17055           - Implemented Paste()
17056           - Implemented Cut()
17057           - Fixed caret mis-behaviour on backspace across line-boundaries
17059 2005-11-29  Jackson Harper  <jackson@ximian.com>
17061         * MdiClient.cs: Add a method for activating mdi children. Very
17062         basic right now. I imagine someday it might need more girth.
17063         * MenuItem.cs: Implement MDI lists. When mdilist is true the mdi
17064         children windows names are added to the menu item.
17065         * ThemeWin32Classic.cs: Draw the arrow if the item is an
17066         mdilist. This happens regardless of whether or not there are any
17067         mdi windows to see in the list, and according to my tests happens
17068         before the items are even added. Also happens if there isn't even
17069         an mdi client to get windows from.
17071 2005-11-29  Alexander Olk  <alex.olk@googlemail.com>
17073         * ThemeWin32Classic.cs: Make DrawFlatStyleRadioButton protected
17074         * ThemeNice.cs: Fix drawing of flatstyle radiobuttons
17076 2005-11-29  Jordi Mas i Hernandez <jordimash@gmail.com>
17078         * DataGridTableStyle.cs:
17079           - Create always the styles for the missing columns even if they are
17080             provided by the user (not default table style)
17081         * DataGrid.cs:
17082           - Fixes bug 76770
17083           - Fixes SetDataBinding (always re-attach source)
17084           - Fixes SetNewDataSource (only clear styles if they are not for 
17085             this source)
17086          -  Expands OnTableStylesCollectionChanged to handle style refresh 
17087             and remove properly
17089 2005-11-29  Jackson Harper  <jackson@ximian.com>
17091         * FileDialog.cs: Implement missing bits, remove some dead
17092         code.
17093         * FontDialog.cs: Implement missing Apply stuff, and ToString. Move
17094         creation of the panel so that the options set on the dialog are
17095         seen when the panel is created.
17096         * TreeView.cs: raise a click when items are clicked.
17097         
17098 2005-11-29  Jackson Harper  <jackson@ximian.com>
17100         * MdiClient.cs: Pass some signature methods through to base.
17102 2005-11-28  Jackson Harper  <jackson@ximian.com>
17104         * ListView.cs: Raise the click event when items are clicked.
17106 2005-11-28  Jackson Harper  <jackson@ximian.com>
17108         * MdiClient.cs: Make this algorithm even more beautiful.  And fix
17109         a nullref.
17111 2005-11-27  Alexander Olk  <alex.olk@googlemail.com>
17113         * ThemeNice.cs: - Removed 1 pixel bitmaps
17114           - Use SmoothingMode.AntiAlias where it makes sense
17115             (ScrollButton arrow for example)
17116           - Enhanced Button focus drawing
17117           - Fixed ComboBox drawing (no artefacts anymore, focus
17118             rectangle is back again, reduced size of ComboButton, etc.)
17119           - Fixed RadioButton focus drawing for Appearence.Button
17120           - Slight ScrollButton redesign
17121           - Some LinearGradientBrush size fixes
17122           - GroupBoxes have now rounded edges
17123           - Fixed StatusBar drawing
17125 2005-11-25  Alexander Olk  <alex.olk@googlemail.com>
17127         * ThemeNice.cs: - Remove dead code
17128           - use correct background colors for menus, etc.
17129           - Fake pixel drawing with 1 pixel bitmaps
17131 2005-11-24  Jackson Harper  <jackson@ximian.com>
17133         * MdiClient.cs: Size the scrollbars when resizing the window.
17134         - Resize the maximized windows when the client is resized
17135         * Form.cs: Make the child context available
17136         
17137 2005-11-23  Jackson Harper  <jackson@ximian.com>
17139         * MdiChildContext.cs: Don't size windows if they are maximized.
17141 2005-11-23  Mike Kestner  <mkestner@novell.com>
17143         * ContextMenu.cs: use MenuTracker.
17144         * Control.cs: remove menu handle usage.
17145         * Form.cs: remove menu handle usage.
17146         * Hwnd.cs: remove menu handle usage.
17147         * MainMenu.cs: Draw method moved here from MenuAPI.DrawMenuBar. Proxy
17148         motion and clicks to the new Tracker handlers.
17149         * Menu.cs: add sizing accessors, SelectedItem prop, kill CreateItems
17150         and handle usage.
17151         * MenuAPI.cs: refactored to combine popup and menubar event handling.
17152         Killed the MENU and MENUITEM data types and associated collections
17153         since we now keep the info on Menu and MenuItem. Expanded TRACKER into
17154         MenuTracker class that exposes the leftovers from the old MenuAPI
17155         static methods. Restructured Capture handling so that only one grab is
17156         done for the entire menu hierarchy instead of handing off grabs to
17157         submenus. Tracker now has an invisible control to Capture when active.
17158         * MenuItem.cs: add sizing accessors, kill Create
17159         and handle usage.
17160         * Theme.cs: remove menu handle and MENU(ITEM) usage.
17161         * ThemeWin32Classic.cs: use Menu/MenuItem sizing props instead of
17162         MENU(ITEM). remove menu handle usage, use Menu directly.
17163         * XplatUIDriver.cs: remove menu handle usage.
17164         * XplatUIOSX.cs: remove menu handle usage.
17165         * XplatUIWin32.cs: remove menu handle usage.
17166         * XplatUIX11.cs: remove menu handle usage.
17168 2005-11-22  Jackson Harper  <jackson@ximian.com>
17170         * Hwnd.cs: Don't compute the menu size for
17171         DefaultClientRectangle.
17172         - Reenable menu sizes being computed for GetClienRectangle.
17173         * Form.cs: Remove comment of trechery
17174         
17175 2005-11-22  Jackson Harper  <jackson@ximian.com>
17177         * Hwnd.cs: The adjustments for the menu bar are made when it is
17178         attached to the form.
17180 2005-11-19  Jackson Harper  <jackson@ximian.com>
17182         * XplatUIX11.cs: Create an HGRN of the invalid area for WM_NCPAINT
17183         (just like on windows).
17185 2005-11-19  Jackson Harper  <jackson@ximian.com>
17187         * MdiChildContext.cs: Handle all the buttons ourselves. We can't
17188         use real buttons anymore because they are in non client area. The
17189         one TODO here is that I need to somehow invalidate a section of
17190         the non client area.
17192 2005-11-18  Jackson Harper  <jackson@ximian.com>
17194         * Control.cs: Put the enum check back in now that MDI doesnt have
17195         to use this to set border styles.
17196         * Form.cs: Only set mdi child windows borders if the handle has
17197         been created.
17198         * MdiChildContext.cs: Don't set the InternalBorderStyle, just pass
17199         this directly on to the driver.
17200         - Get the move start position before adjusting for the titlebar
17201         height, this fixes the windows "skipping" when they are first
17202         moved.
17204 2005-11-18  Jackson Harper  <jackson@ximian.com>
17206         * XplatUIX11.cs: Just compute the mdi borders separately as they
17207         don't totally match up with normal form borders.
17209 2005-11-18  Jackson Harper  <jackson@ximian.com>
17211         * Control.cs: Set WS_ styles for borders, so that the driver does
17212         not have to retrieve the control instance to figure out what kind
17213         of borders it should have.
17214         * Form.cs: Set the WS_EX_MDICHILD flag on mdi children, so the
17215         driver can know its an mdi child easily.
17216         * XplatUIX11.cs: Get the border styles and whether the window is
17217         MDI from the Styles and ExStyles params instead of having to get a
17218         control. This prevents a chicken and egg problem.       
17220 2005-11-18  Jackson Harper  <jackson@ximian.com>
17222         * MdiClient.cs: Fix typo so scrollbars show up correctly.
17224 2005-11-18  Jackson Harper  <jackson@ximian.com>
17226         * MdiClient.cs: Calculate when to add and remove scrollbars
17227         correctly.
17228         * MdiChildContext.cs: Adjust the y position to take the titlebar
17229         into account.
17230         - No height for FormBorderStyle.None
17232 2005-11-18  Jackson Harper  <jackson@ximian.com>
17234         * Control.cs: Allow non enum values to be used for
17235         InternalBorderStyle.  MDI does this to set a special border style.
17236         - New utility methods for converting points to/from client coords
17237         - Add the newly created control to the Controls collection before
17238         updating its style. This way UpdateStyle can walk the control
17239         heirarchy to find the control if needed.
17240         so I don't need to create a new Point object all the time.
17241         * Form.cs: Let MDI windows handle their border styles.
17242         - Set styles on MDI windows so the correct title style is derived.
17243         * MdiChildContext.cs: Move all the painting and window handling
17244         into the non client area.
17245         - Use correct sizing and put correct buttons on frames based on
17246         the FormBorderStyle.
17247         - Notify the mdi client about scrolling
17248         - Need to handle the buttons ourselves now, because they are all
17249         in non client areas and we can't add controls there.
17250         * MdiClient.cs: Halfway to scrolling, this implementation is
17251         somewhat broken though, we need to check to make sure other
17252         windows aren't causing scrolling before removing the bars. Also
17253         the bars need to be drawn on top, maybe I can switch implicit
17254         controls to be on top.
17255         * Hwnd.cs: caption_height and tool_caption_height are now
17256         properties of an hwnd, this way they can be set by the driver
17257         based on the type of window they are.  In X11 the window manager
17258         handles the decorations so caption_height is zero unless its an
17259         MDI window.
17260         - Add 3 pixel borders for MDI windows (0xFFFF).
17261         - Get rid of some code duplication, have DefaultClientRectanle
17262         just call GetClientRectangle.
17263         * XplatUIX11.cs: Pass caption_height and tool_caption_height to
17264         Hwnd now.
17265         - Set border styles differently for mdi windows.
17266         * XplatUIOSX.cs: Pass caption_height and tool_caption_height to
17267         Hwnd now.
17268         
17269 2005-11-15  Mike Kestner  <mkestner@novell.com>
17271         * Menu.cs: when adding an item to the collection, if item is already 
17272         parented, remove it from the parent.
17274 2005-11-13  Alexander Olk  <alex.olk@googlemail.com>
17276         * X11DesktopColors.cs: Added KDE support
17278 2005-11-11  Peter Dennis Bartok  <pbartok@novell.com>
17280         * XplatUIWin32.cs: 
17281           - Clipboard methods now can translate Rtf format
17282           - No longer removes clipboard contents whenever a new format is added
17283             to allow placing multiple formats on the clipboard
17284         * Clipboard.cs: Clipboard now supports getting a IDataObject and
17285           will place all formats contained in it onto the clipboard. Also
17286           now cleans the clipboard before placing a new object onto it
17287         * RichTextBox.cs:
17288           - Implemented set_Rtf
17289           - Implemented set_SelectedRtf
17290           - Created InsertRTFFromStream() method to allow single code base
17291             for all properties and methods that insert RTF into document
17292           - Removed debug output
17293         * TextControl.cs:
17294           - Fixed Delete(int) to fix up line numbers
17295           - Fixed ReplaceSelection to combine start and end line
17296           - Fixed serious DeleteChars bug that would leave the document tree
17297             broken
17298           - Improved DumpTree with several logic checks to detect broken
17299             document trees
17300           - Removed debug lines
17301           - Fixed Caret.WordForward/WordBack moving code, now always also 
17302             updates caret.tag (fixes crash when word-selecting across tag
17303             boundaries via keyboard)
17304           - Added Insert() method for inserting multiline text into documents
17305           - Fixed DeleteChars() calculation errors that would cause a broken
17306             tag chain with multiple tag lines
17307           - DeleteChars() no longer crashes on multi-tag lines if not all tags
17308           - Split() no longer moves caret if split is at caret location
17309           - ReplaceSelection() now updates the cursor and re-displays it
17310           - ReplaceSelection() now uses new Insert() method to avoid code
17311             duplication
17312           - FormatText() can now handle formatting partial lines
17313         * TextBoxBase.cs:
17314           - Append now uses new TextControl.Insert() method (this avoids 
17315             duplicate code)
17316           - Implemented Ctrl-X (Cut) (
17317           - Implemented Ctrl-C (Copy)
17318           - Implemented Ctrl-V (Paste) (Still some bugs related to screen 
17319             regeneration when pasting text; roundtripping Copy&Paste within
17320             edit control still fails due to some calculation bugs in GenerateRTF)
17321           - The Delete key will now remove the current selection if it is visible
17322         * TextBox.cs: Removed debug lines
17323         * XplatUI.cs: Trigger initialization of DataFormats (which requires the
17324           driver to be initialized and can't therefore be done via a static ctor)
17326 2005-11-10  Peter Dennis Bartok  <pbartok@novell.com>
17328         * TextControl.cs: Added backend code for finding char arrays and strings
17329         * TextBoxBase.cs:
17330           - Added mouse wheel scroll support
17331           - Added support for VScroll and HScroll events
17332         * RichTextBox.cs:
17333           - Implemented all seven Find() variants
17334           - Implemented GetCharFromPosition()
17335           - Implemented GetCharIndexFromPosition()
17336           - Implemented GetLineFromIndex()
17337           - Implemented GetPositionFromCharIndex();
17338           - Implemented SaveFile for PlainText and UnicodeText
17339           - Fixed set_Font, now setting a new font applies that font to
17340             the whole document
17341           - Implemented generic Document to RTF converter
17342           - Implemented SaveFile for RichText format (still missing unicode
17343             conversion for non-ansi chars)
17344           - Implemented get_Rtf
17345           - Implemented get_SelectedRtf
17347 2005-11-09  Peter Dennis Bartok  <pbartok@novell.com>
17349         * Control.cs (WndProc): Call HandleClick after having sent OnMouseUp
17350           to allow any captures to be released before triggering OnClick. This
17351           way a click handler may capture the mouse without interference.
17352         * XplatUIX11.cs: Always send mouse messages to grab window if one exists.
17353           This way we send them even though X may not allow a grab (if the window
17354           isn't visible, for example)
17356 2005-11-08  Pedro Martinez Julia <pedromj@gmail.com>
17358         * DataGridViewRowEventArgs.cs: DataGridView implementation
17359         * DataGridViewElement.cs: DataGridView implementation
17360         * DataGridViewComboBoxCell.cs: DataGridView implementation
17361         * DataGridViewDataErrorContexts.cs: DataGridView implementation
17362         * DataGridViewCellErrorTextNeededEventArgs.cs: DataGridView implementation
17363         * DataGridViewColumnHeadersHeightSizeMode.cs: DataGridView implementation
17364         * ImageLayout.cs: DataGridView implementation
17365         * DataGridViewComboBoxColumn.cs: DataGridView implementation
17366         * DataGridViewCellMouseEventHandler.cs: DataGridView implementation
17367         * DataGridViewSelectionMode.cs: DataGridView implementation
17368         * IDataGridViewEditingControl.cs: DataGridView implementation
17369         * DataGridViewSortCompareEventHandler.cs: DataGridView implementation
17370         * DataGridViewCellStyleContentChangedEventHandler.cs: DataGridView implementation
17371         * DataGridViewAutoSizeModeEventHandler.cs: DataGridView implementation
17372         * DataGridViewColumnStateChangedEventHandler.cs: DataGridView implementation
17373         * DataGridViewColumnSortMode.cs: DataGridView implementation
17374         * DataGridView.cs: DataGridView implementation
17375         * DataGridViewRowStateChangedEventHandler.cs: DataGridView implementation
17376         * DataGridViewRowPostPaintEventArgs.cs: DataGridView implementation
17377         * DataGridViewDataErrorEventArgs.cs: DataGridView implementation
17378         * Padding.cs: DataGridView implementation
17379         * DataGridViewCellParsingEventArgs.cs: DataGridView implementation
17380         * DataGridViewCellStateChangedEventHandler.cs: DataGridView implementation
17381         * DataGridViewRowEventHandler.cs: DataGridView implementation
17382         * DataGridViewCellPaintingEventHandler.cs: DataGridView implementation
17383         * DataGridViewCellFormattingEventHandler.cs: DataGridView implementation
17384         * DataGridViewButtonCell.cs: DataGridView implementation
17385         * DataGridViewCellStyleContentChangedEventArgs.cs: DataGridView implementation
17386         * DataGridViewEditMode.cs: DataGridView implementation
17387         * DataGridViewCellValueEventArgs.cs: DataGridView implementation
17388         * DataGridViewRowCancelEventArgs.cs: DataGridView implementation
17389         * DataGridViewRowHeadersWidthSizeMode.cs: DataGridView implementation
17390         * DataGridViewCheckBoxColumn.cs: DataGridView implementation
17391         * DataGridViewCellToolTipTextNeededEventHandler.cs: DataGridView implementation
17392         * DataGridViewAutoSizeColumnsMode.cs: DataGridView implementation
17393         * DataGridViewCellEventHandler.cs: DataGridView implementation
17394         * DataGridViewEditingControlShowingEventHandler.cs: DataGridView implementation
17395         * DataGridViewCellStyleConverter.cs: DataGridView implementation
17396         * DataGridViewSelectedRowCollection.cs: DataGridView implementation
17397         * DataGridViewBindingCompleteEventHandler.cs: DataGridView implementation
17398         * DataGridViewColumnEventArgs.cs: DataGridView implementation
17399         * DataGridViewRowHeightInfoPushedEventHandler.cs: DataGridView implementation
17400         * DataGridViewRowContextMenuStripNeededEventHandler.cs: DataGridView implementation
17401         * QuestionEventArgs.cs: DataGridView implementation
17402         * IDataGridViewEditingCell.cs: DataGridView implementation
17403         * DataGridViewTriState.cs: DataGridView implementation
17404         * DataGridViewColumnDesignTimeVisibleAttribute.cs: DataGridView implementation
17405         * DataGridViewCellStateChangedEventArgs.cs: DataGridView implementation
17406         * DataGridViewColumnCollection.cs: DataGridView implementation
17407         * DataGridViewCellValueEventHandler.cs: DataGridView implementation
17408         * DataGridViewRowDividerDoubleClickEventHandler.cs: DataGridView implementation
17409         * DataGridViewCellFormattingEventArgs.cs: DataGridView implementation
17410         * DataGridViewColumn.cs: DataGridView implementation
17411         * DataGridViewCellBorderStyle.cs: DataGridView implementation
17412         * DataGridViewCellContextMenuStripNeededEventHandler.cs: DataGridView implementation
17413         * DataGridViewCellValidatingEventArgs.cs: DataGridView implementation
17414         * DataGridViewRow.cs: DataGridView implementation
17415         * DataGridViewImageCellLayout.cs: DataGridView implementation
17416         * DataGridViewImageCell.cs: DataGridView implementation
17417         * DataGridViewTopLeftHeaderCell.cs: DataGridView implementation
17418         * DataGridViewCheckBoxCell.cs: DataGridView implementation
17419         * DataGridViewHeaderCell.cs: DataGridView implementation
17420         * DataGridViewCellErrorTextNeededEventHandler.cs: DataGridView implementation
17421         * DataGridViewRowHeightInfoPushedEventArgs.cs: DataGridView implementation
17422         * DataGridViewAutoSizeColumnsModeEventHandler.cs: DataGridView implementation
17423         * DataGridViewTextBoxColumn.cs: DataGridView implementation
17424         * QuestionEventHandler.cs: DataGridView implementation
17425         * DataGridViewCellStyleScopes.cs: DataGridView implementation
17426         * DataGridViewSortCompareEventArgs.cs: DataGridView implementation
17427         * DataGridViewCellContextMenuStripNeededEventArgs.cs: DataGridView implementation
17428         * DataGridViewCell.cs: DataGridView implementation
17429         * DataGridViewCellEventArgs.cs: DataGridView implementation
17430         * DataGridViewClipboardCopyMode.cs: DataGridView implementation
17431         * DataGridViewCellStyle.cs: DataGridView implementation
17432         * DataGridViewColumnHeaderCell.cs: DataGridView implementation
17433         * DataGridViewRowPrePaintEventHandler.cs: DataGridView implementation
17434         * DataGridViewRowCancelEventHandler.cs: DataGridView implementation
17435         * TextFormatFlags.cs: DataGridView implementation
17436         * DataGridViewCellToolTipTextNeededEventArgs.cs: DataGridView implementation
17437         * DataGridViewDataErrorEventHandler.cs: DataGridView implementation
17438         * DataGridViewAdvancedCellBorderStyle.cs: DataGridView implementation
17439         * DataGridViewCellPaintingEventArgs.cs: DataGridView implementation
17440         * DataGridViewButtonColumn.cs: DataGridView implementation
17441         * DataGridViewRowsRemovedEventArgs.cs: DataGridView implementation
17442         * HandledMouseEventArgs.cs: DataGridView implementation
17443         * DataGridViewCellParsingEventHandler.cs: DataGridView implementation
17444         * DataGridViewColumnDividerDoubleClickEventHandler.cs: DataGridView implementation
17445         * DataGridViewCellMouseEventArgs.cs: DataGridView implementation
17446         * DataGridViewAutoSizeRowsMode.cs: DataGridView implementation
17447         * DataGridViewRowCollection.cs: DataGridView implementation
17448         * DataGridViewAdvancedBorderStyle.cs: DataGridView implementation
17449         * DataGridViewCellCancelEventHandler.cs: DataGridView implementation
17450         * DataGridViewHitTestType.cs: DataGridView implementation
17451         * DataGridViewAutoSizeModeEventArgs.cs: DataGridView implementation
17452         * DataGridViewColumnStateChangedEventArgs.cs: DataGridView implementation
17453         * DataGridViewColumnEventHandler.cs: DataGridView implementation
17454         * DataGridViewRowDividerDoubleClickEventArgs.cs: DataGridView implementation
17455         * DataGridViewAutoSizeRowMode.cs: DataGridView implementation
17456         * DataGridViewRowHeightInfoNeededEventArgs.cs: DataGridView implementation
17457         * DataGridViewRowsDeletedEventArgs.cs: DataGridView implementation
17458         * DataGridViewTextBoxEditingControl.cs: DataGridView implementation
17459         * DataGridViewContentAlignment.cs: DataGridView implementation
17460         * DataGridViewRowPostPaintEventHandler.cs: DataGridView implementation
17461         * DataGridViewComboBoxEditingControl.cs: DataGridView implementation
17462         * DataGridViewCellValidatingEventHandler.cs: DataGridView implementation
17463         * DataGridViewSelectedColumnCollection.cs: DataGridView implementation
17464         * DataGridViewPaintParts.cs: DataGridView implementation
17465         * DataGridViewCellCollection.cs: DataGridView implementation
17466         * DataGridViewRowsAddedEventArgs.cs: DataGridView implementation
17467         * DataGridViewImageColumn.cs: DataGridView implementation
17468         * DataGridViewRowsRemovedEventHandler.cs: DataGridView implementation
17469         * DataGridViewElementStates.cs: DataGridView implementation
17470         * DataGridViewRowHeightInfoNeededEventHandler.cs: DataGridView implementation
17471         * DataGridViewColumnDividerDoubleClickEventArgs.cs: DataGridView implementation
17472         * DataGridViewRowPrePaintEventArgs.cs: DataGridView implementation
17473         * DataGridViewRowStateChangedEventArgs.cs: DataGridView implementation
17474         * DataGridViewEditingControlShowingEventArgs.cs: DataGridView implementation
17475         * DataGridViewCellCancelEventArgs.cs: DataGridView implementation
17476         * DataGridViewRowHeaderCell.cs: DataGridView implementation
17477         * DataGridViewBindingCompleteEventArgs.cs: DataGridView implementation
17478         * DataGridViewTextBoxCell.cs: DataGridView implementation
17479         * DataGridViewBand.cs: DataGridView implementation
17480         * DataGridViewAutoSizeColumnModeEventArgs.cs: DataGridView implementation
17481         * DataGridViewHeaderBorderStyle.cs: DataGridView implementation
17482         * DataGridViewRowsAddedEventHandler.cs: DataGridView implementation
17483         * DataGridViewAutoSizeColumnMode.cs: DataGridView implementation
17484         * DataGridViewAutoSizeColumnModeEventHandler.cs: DataGridView implementation
17485         * DataGridViewAutoSizeColumnsModeEventArgs.cs: DataGridView implementation
17486         * DataGridViewRowErrorTextNeededEventHandler.cs: DataGridView implementation
17487         * DataGridViewSelectedCellCollection.cs: DataGridView implementation
17488         * DataGridViewRowContextMenuStripNeededEventArgs.cs: DataGridView implementation
17489         * DataGridViewRowErrorTextNeededEventArgs.cs: DataGridView implementation
17490         * DataGridViewComboBoxDisplayStyle.cs: DataGridView implementation
17492 2005-11-08  Peter Dennis Bartok  <pbartok@novell.com>
17494         * ThemeWin32Classic.cs: 
17495           - Draw the outside focus rectangle around buttons
17496           - Use CPDrawFocusRectangle to draw focus rectangles until Cairo
17497             doesn't use end caps for every dash of a line anymore. This
17498             workaround ignores the forecolor.
17500 2005-11-08  Kornél Pál  <kornelpal@hotmail.com>
17502         * ImageList.cs: Don't use ArgbColor with LayoutKind.Explicit as it isn't
17503           endian safe.
17505 2005-11-07  Jackson Harper  <jackson@ximian.com>
17507         * X11Dnd.cs: Set the X/Y positions on the DragEventArgs correctly.
17509 2005-11-07  Jackson Harper  <jackson@ximian.com>
17511         * ScrollableControl.cs: Calculate the maximum and change vars
17512         (more) correctly so that scrollbars appear as a sensible size.
17514 2005-11-04  Jackson Harper  <jackson@ximian.com>
17516         * TreeNodeCollection.cs: Refresh when nodes are cleared from the
17517         collection.
17518         * TreeView.cs: When the tree is sorted null out the top_node so
17519         that it is recalculated.
17520         - Use dotted lines instead of dashed lines to match MS better.
17522 2005-11-04  Jordi Mas i Hernandez <jordimash@gmail.com>
17524         * ListView.cs: 
17525           - Implements key search for items. Useful when browsing files with FileDialog
17526           - When changing view mode or when clear the items reset scrollbar positions
17528 2005-11-04  Jackson Harper  <jackson@ximian.com>
17530         * CurrencyManager.cs: Implement the MetaDataChanged event, the
17531         Reset method, and the CheckEmpty. CheckEmpty is just a total guess
17532         as to what the method may do as there is no real way of creating a
17533         derived CurrencyManager and calling the method. 
17535 2005-11-03  Jackson Harper  <jackson@ximian.com>
17537         * ThemeWin32Classic.cs: Implement ownerdrawing in the tab control
17538         * TabControl.cs: Add Ownerdrawing bits, add the UpdateTabSelection
17539         method which seems to just be used internally to refresh the tabs.
17541 2005-11-03  Jackson Harper  <jackson@ximian.com>
17543         * TabControl.cs: Implement the remove method. Fix some broken
17544         comments.
17546 2005-11-03  Peter Dennis Bartok  <pbartok@novell.com>
17548         * DateTimePicker.cs:
17549           - Added missing DateTimePickerAccessibleObject class
17550           - Added missing events
17551           - Added OnFontChanged method
17552         * Form.cs: Added missing attributes
17553         * TreeView.cs: Added missing attributes
17555 2005-11-03  Peter Dennis Bartok  <pbartok@novell.com> 
17557         * GridItemCollection.cs: Fix signatures
17559 2005-11-03  Peter Dennis Bartok  <pbartok@novell.com>
17561         * XplatUI.cs: Updated build rev/date
17562         * ComboBox.cs, DataGridTextBoxColumn.cs Control.cs, 
17563           DataGridTableStyle.cs, DataGrid.cs, DateTimePicker.cs: Signature fixes
17564         * Application.cs: Trigger context-specific ExitThread events
17566 2005-11-03  Jackson Harper  <jackson@ximian.com>
17568         * Menu.cs:
17569         * MainMenu.cs:
17570         * GridTableStylesCollection.cs:
17571         * Timer.cs:
17572         * TabPage.cs:
17573         * HelpProvider.cs:
17574         * StatusBar.cs:
17575         * MonthCalendar.cs: Signature fixes
17577 2005-11-03  Jackson Harper  <jackson@ximian.com>
17579         * TreeNodeCollection.cs: Remove should not be virtual.
17580         * TreeView.cs: Implement the last of the missing methods.
17582 2005-11-03  Jackson Harper  <jackson@ximian.com>
17584         * TreeNodeConverter.cs: Implement to get off my class-status back.
17586 2005-11-03  Jackson Harper  <jackson@ximian.com>
17588         * TreeView.cs: Hookup the bits for drag and drop.
17589         * TreeNode.cs: Don't cache the tree_view or index anymore, now
17590         that nodes can be moved from tree to tree easily this just causes
17591         all sorts of problems.
17592         * TreeNodeCollection: Don't need to give treenodes an index and
17593         treeview anymore when they are added, these are computed on the
17594         fly. Also make sure to remove a node before its added.
17596 2005-11-03  Peter Dennis Bartok  <pbartok@novell.com>
17598         * TextControl.cs:
17599           - Added CaretSelection enum
17600           - Added comparison methods to Marker struct, makes selection code
17601             more readable
17602           - Added SelectionStart and SelectionEnd as 'moveable' location for
17603             the CaretDirection enum and handler
17604           - Added selection_prev variable to track optimized invalidation for
17605             word and line selection
17606           - Added SelectionVisible property (returns true if there is a valid 
17607             selection)
17608           - Switched CaretHasFocus to only display the caret if there is no
17609             visible selection
17610           - Avoiding StringBuilder.ToString to retrieve a single char, instead
17611             using the direct character index; should be much faster
17612           - Added various conditional debug statements
17613           - Fixed invalidation calculation for selection ranges
17614           - Added ExpandSelection() method to support word and line selection
17615           - Switched SetSelectionToCaret to use new Marker compare overloads
17616           - Added central IsWordSeparator() method to determine word 
17617             separators/whitespace and FindWordSeparator() to streamline common
17618             usage of IsWordSeparator()
17619         * TextBoxBase.cs:
17620           - Removed unneeded grabbed variable, it was just mirroring
17621             Control.Capture
17622           - No longer firing OnTextChanged event when Text setter is called,
17623             since the base will fire the event for us
17624           - Added handling of Ctrl-Up/Down selection
17625           - Added handling of Shift-Cursorkey selection
17626           - Added handling for Ctrl-Delete and Ctrl-Backspace to remove
17627             words
17628           - Added handling of Shift and Ctrl-Shift-Home/End selection
17629           - Removed some debug output
17630           - Added handling for single/double/tripple-click to place caret/
17631             select word/select line respectively (Fixes bug #76031)
17632           - Added support for drag expansion of word/line selection
17633         * RichTextBox.cs: Handle GotFocus event to trigger redrawing of
17634           current selection
17636 2005-11-02  Jackson Harper  <jackson@ximian.com>
17638         * X11Dnd.cs: If the drag is going to and from a MWF window just
17639         copy the data instead of sending it out through the X Selection
17640         mechanism.
17642 2005-11-02  Jackson Harper  <jackson@ximian.com>
17644         * X11Dnd.cs:
17645         * XplatUIX11.cs: When in a drag we don't want motion notify
17646         messages to get passed on to the other controls. This prevents
17647         mouse move messages from showing up in the drag source.
17649 2005-11-02  Jackson Harper  <jackson@ximian.com>
17651         * X11Dnd.cs: Remove unneeded call to XAllowEvents.  Make sure that
17652         the correct button is release to end a drag.
17653         * XplatUIX11.cs: Make the button state internal so the drag system
17654         can access it.  Dragging needs to know about all button releases,
17655         not just left button.
17657 2005-11-02  Miguel de Icaza  <miguel@novell.com>
17659         * Form.cs (Icon): If the icon is null, reset the icon to the
17660         default value. 
17662         * Cursor.cs: When writing the AND-mask bitmap do not include the
17663         number of colors, but hardcode those to two (black and white),
17664         fixes the loading of color cursors (Paint Dot Net).
17666         * Form.cs: To debug, allow MONO_MWF_SCALING=disable variable to
17667         turn off autoscaling.
17669         * Cursor.cs: Allow resource type to be 1 or 2 (from ImageMagic).
17671 2005-11-02  Jackson Harper  <jackson@ximian.com>
17673         * X11Dnd.cs: Make sure to send a status message if the pointer
17674         enters a control that can not accept a drop, otherwise the cursor
17675         isn't updated correctly. Also tried to compress the lines of code
17676         a bit.
17678 2005-11-02  Jackson Harper  <jackson@ximian.com>
17680         * X11Dnd.cs: Change cursors based on drag action. Also attempt to
17681         set actions correctly.  This isn't perfect as XDND and win32 have
17682         some differences on how you allow actions. I'll clear this up by
17683         adding a path for drag from MWF to MWF windows.
17684         * XplatUIX11.cs: Hook into the dnd system.
17686 2005-11-02  Jordi Mas i Hernandez <jmas@softcatala.org>
17688         * ListView.cs: Fixes scroll bar visibility. Hide them if they were
17689         previously shown but they are no longer need it. Very obvious when 
17690         browsing files with FileDialog.
17692 2005-11-01  Peter Dennis Bartok  <pbartok@novell.com>
17694         * Control.cs: We always need to call OnPaintBackground. We pretty much
17695           ignore AllPaintingInWmPaint and always do the painting there, whether 
17696           it's set or not, since we always ignore the WM_ERASEBKGND message 
17697           (which we don't generate on X11). This fixes #76616.
17698         * Panel.cs: Removed unneeded background painting. This happens properly
17699           in Control.cs already
17701 2005-10-31  Mike Kestner  <mkestner@novell.com>
17703         * Menu.cs: Add items to collection before setting their index.
17704         * MenuItem.cs : add range checking with ArgumentException like MS.
17705         [Fixes #76510]
17707 2005-10-31  Jackson Harper  <jackson@ximian.com>
17709         * ListBox.cs: Invalidate if the area is visible at all not just
17710         contained in the visible rect. Fixes unselection of semi visible
17711         items.
17713 2005-10-31  Jackson Harper  <jackson@ximian.com>
17715         * Control.cs: Consistently name the dnd methods. Make them
17716         internal so we can override them to match some MS behavoir
17717         internally.
17718         * Win32DnD.cs: Use the new consistent names.
17720 2005-10-31  Jackson Harper  <jackson@ximian.com>
17722         * TreeView.cs: Don't draw the selected node when we lose focus.
17724 2005-10-31  Jackson Harper  <jackson@ximian.com>
17726         * X11Dnd.cs: We still need to reset the state even though a full
17727         reset isn't being done, otherwise status's still get sent all over
17728         the place.
17730 2005-10-31  Jackson Harper  <jackson@ximian.com>
17732         * Control.cs: Make the dnd_aware flag internal so the dnd
17733         subsystem can check it. Catch exceptions thrown in dnd handlers to
17734         match MS behavoir.
17735         * Hwnd.cs: Add a flag for whether or not a window is dnd aware.
17736         * X11Dnd.cs: Handle null data in the converters. Set the XDND
17737         version when sending a XdndEnter. Use the control/hwnd dnd_aware
17738         flags to reduce the number of dnd enters/status's sent.
17740 2005-10-31  Jackson Harper  <jackson@ximian.com>
17742         * X11Dnd.cs: Don't need the sizeof here. Patch by Jordi Mas.
17744 2005-10-31  Jordi Mas i Hernandez <jordi@ximian.com>
17746         * PictureBox.cs: Fixes 76512
17748 2005-10-28  Jackson Harper  <jackson@ximian.com>
17750         * X11Dnd.cs: Early implementation to support winforms being a drag
17751         source for data on X11. Also restructured the converters so they
17752         can go both ways now.
17753         * XplatUIX11.cs: Tie ins to the the Dnd stuff.
17754         
17755 2005-10-27  Peter Dennis Bartok  <pbartok@novell.com>
17757         * XplatUIX11.cs: Fixed FIXME - implemented ASCII encoding for XA_STRING
17758           clipboard requests
17760 2005-10-27  Jackson Harper  <jackson@ximian.com>
17762         * TreeNode.cs: Implement serialization so my DnD examples will work.
17764 2005-10-24  Kornél Pál  <kornelpal@hotmail.com>
17766         * ButtonBase.cs, ListView.cs, NotifyIcon.cs, PictureBox.cs, ToolBar.cs,
17767           TreeView.cs: Don't dispose objects that are not owned.
17768           
17769 2005-10-24  Peter Dennis Bartok  <pbartok@novell.com>
17771         * Cursor.cs: Defaulting the Current cursor to Cursors.Default. We
17772           should retrieve the current cursor and report that, but XplatUI
17773           doesn't (yet) have an interface for that (and I'm not sure I even
17774           can, on X11)
17775         * XplatUIWin32.cs: Fixed override behaviour. The override is temporary,
17776           until any message loop processing is done (and the WM_SETCURSOR
17777           replaces the cursor to the proper one)
17778         * XplatUIX11.cs: 
17779           - Fixed override behaviour, we can't set the cursor globally on X11, 
17780             just for our windows.
17781           - Invalidating the System.Drawing X11 display handle when we are
17782             shutting down
17783         * Control.cs: Fix to make csc happy
17785 2005-10-23  Peter Dennis Bartok  <pbartok@novell.com>
17787         * TextBoxBase.cs: 
17788           - get_Text: Add last line (without trailing newline) to returned
17789             value (Fixes 76212)
17790           - get_TextLength: Count last line in returned length
17791           - ToString: Call Text property instead of duplicating code
17793 2005-10-23  Kornél Pál  <kornelpal@hotmail.com>
17795         * ImageList.cs: Dispose ImageAttributes objects.
17797 2005-10-22  Kornél Pál  <kornelpal@hotmail.com>
17799         * ImageList.cs: Use attribute constructors with less arguments where
17800           possible.
17802 2005-10-22  Kornél Pál  <kornelpal@hotmail.com>
17804         * ImageList.cs: Added lastKeyIndex field and use in IndexOfKey.
17805           Use typeof instead of strings when assembly is referenced. Added
17806           some more comments.
17808 2005-10-21  Jackson Harper  <jackson@ximian.com>
17810         * ListView.cs: Raise a double click event. Also tried to somewhat
17811         fix when the selectedindexchanged event is raised. Its still
17812         broken though.
17814 2005-10-21  Jackson Harper  <jackson@ximian.com>
17816         * TreeView.cs: New method to invalidate the plus minus area of a
17817         node without invalidating the whole node (maybe this can be used
17818         in some more places).
17819         * TreeNodeCollection.cs: When adding to an empty node we need to
17820         invalidate its plus minus area so the little block shows up.
17821         
17822 2005-10-21  Jackson Harper  <jackson@ximian.com>
17824         * TreeView.cs: Make sure that when we invalidate a node the bounds
17825         are big enough to cover the selected box and the focus
17826         rectangle. Use a different colour for the lines connecting nodes
17827         so they show up with all themes.
17829 2005-10-21  Peter Dennis Bartok  <pbartok@novell.com>
17831         * NativeWindow.cs: Don't call anything that could call into the driver,
17832           we might be on a different thread.
17834 2005-10-21  Peter Dennis Bartok  <pbartok@novell.com> 
17836         * Control.cs(Dispose): Since Dispose might run on a different thread,
17837           make sure that we call methods that could call into the driver via
17838           invoke, to avoid thread issues
17840 2005-10-21  Peter Dennis Bartok  <pbartok@novell.com>
17842         * XplatUI.cs: Removed finalizer
17843         * XplatUIX11.cs: Removed Destructor, was causing crashes due to X11
17844           not allowing to be called on the finalizer thread.
17846 2005-10-21  Kornél Pál  <kornelpal@hotmail.com>
17848         * ImageList.cs:
17849           - Reverted r51889 and r51891.
17850           - Added ImageListItem class that stores unmodified image items and image
17851             properties required to create list images until handle is created.
17852           - Added AddItem and moved image creation logic to AddItemInternal.
17853           - Added CreateHandle method that creates images based on unmodified items.
17854           - Added DestroyHandle that changes state to store unmodified items.
17855           - Add and AddStrip methods no more create handle.
17856           - ReduceColorDepth has no return value.
17857           - Dispose destroys handle.
17858           - Modified other methods to reflect the above changes.
17859           - Implemented key support.
17860           - Added profile 2.0 members and attributes.
17861           - Added private Reset and ShouldSerialize methods that provide the same
17862             behavior as MS.NET but the Visual Studio .NET designer seems to ignore
17863             them as they are private.
17864           - Added some more comments about implementation details.
17866 2005-10-21  Jordi Mas i Hernandez <jordi@ximian.com>
17868         * DataGrid.cs: Adds support for vertical scrolling using the mousewheel
17870 2005-10-21  Jordi Mas i Hernandez <jordi@ximian.com>
17872         * Binding.cs: No PushData/PullData if there is no binding (fixes crash)
17874 2005-10-21  Jordi Mas i Hernandez <jordi@ximian.com>
17876         * DataGridDrawingLogic.cs: Fixes column hit calcultation
17877         * DataGridColumnStyle.cs: Remove debug message
17879 2005-10-20  Jackson Harper  <jackson@ximian.com>
17881         * TreeView.cs: We can always get input keys regardless of whether
17882         or not editing is enabled. They are used for navigation.
17884 2005-10-20  Jackson Harper  <jackson@ximian.com>
17886         * TreeNode.cs: Use the viewport rect for determining if a node
17887         needs to be moved for visibility. Don't use Begin/End edit. This
17888         calls a full refresh when its done.
17889         * TreeView.cs: New SetBottom works correctly.  Make the viewport
17890         rect property internal so the treenodes can see it. When clicking
17891         on a node we need to ensure that its visible because it might just
17892         be partly visible when clicked.
17894 2005-10-20  Jackson Harper  <jackson@ximian.com>
17896         * TreeNodeCollection.cs: Remove debug code.
17898 2005-10-20  Jordi Mas i Hernandez <jordi@ximian.com>
17900         * Datagrid.cs: Implements column sorting in Datagrid
17901         * DataGridColumnStyle.cs: Implements column sorting in Datagrid
17903 2005-10-20  Jackson Harper  <jackson@ximian.com>
17905         * TreeNodeCollection.cs: Remove items properly. Update the correct
17906         area after removing them.
17908 2005-10-20  Jordi Mas i Hernandez <jordi@ximian.com>
17910         * Datagrid.cs: Should not call base.OnPaintBackground
17912 2005-10-20  Peter Dennis Bartok  <pbartok@novell.com>
17914         * XplatUIX11.cs (GetMessage):
17915           - Now properly calculates NC_xBUTTONDOWN coordinates off the whole
17916             window instead of client window
17917           - Now properly calculates NC_xBUTTONUP message coordinates
17918           - ScreenToMenu now properly calculates it's coordinates of whole 
17919             window, since menus are in the whole window, not in the client
17920             window
17921           - Added WholeToScreen coordinate translation method
17923 2005-10-20  Peter Dennis Bartok  <pbartok@novell.com> 
17925         * XplatUIX11.cs (GetMessage): Don't return in situations where we don't
17926           want to return a message, loop back to the beginning of the function
17927           and grab the next real message to process instead.
17929 2005-10-20  Peter Dennis Bartok  <pbartok@novell.com>
17931         * Splitter.cs: Properly set limits if no filler control is used
17933 2005-10-19  Jackson Harper  <jackson@ximian.com>
17935         * ColorDialog.cs: Don't show the help button if it is not enabled
17936         instead of disabling it (this is what MS does). Don't create the
17937         panel until the dialog is run, otherwise the vars (such as
17938         ShowHelp) are not set yet.
17940 2005-10-19  Jackson Harper  <jackson@ximian.com>
17942         * TreeView.cs: Implement Begin/EndEdit more correctly so refreshes
17943         are reduced when adding nodes.
17944         * TreeNode.cs:
17945         * TreeNodeCollection.cs: Use UpdateNode instead of refreshing the
17946         tree.
17947         
17948 2005-10-19  Jackson Harper  <jackson@ximian.com>
17950         * FolderBrowserDialog.cs: End editing our treeview so the window
17951         actually gets refreshed.
17953 2005-10-18  Peter Dennis Bartok  <pbartok@novell.com>
17955         * Control.cs: Fixed logic flip on when to call OnPaintBackground. 
17956           Obsoleted handling of WM_ERASEBKGND, now always draws our background
17957           inside of WM_PAINT
17959 2005-10-18  Jordi Mas i Hernandez <jordi@ximian.com>
17961         * MenuAPI.cs: Returns after Hidding window
17962         * XplatUIX11.cs: Added TODO found while debugging menu issues
17964 2005-10-18  Peter Dennis Bartok  <pbartok@novell.com>
17966         * XplatUIX11.cs: Do not re-map the whole window when it's size
17967           becomes non-zero unless it's supposed to be actually visible
17969 2005-10-18  Jackson Harper  <jackson@ximian.com>
17971         * TreeView.cs: We don't need to keep a count anymore.
17972         * TreeNodeCollection.cs: Fix off by one in RemoveAt, Insert can
17973         use the Grow method.
17975 2005-10-18  Jackson Harper  <jackson@ximian.com>
17977         * TreeNodeCollection.cs: Insert is not supported on arrays, so
17978         implement it manually here.
17980 2005-10-18  Jackson Harper  <jackson@ximian.com>
17982         * ImageList.cs: Dont kill the list when the colour depth is
17983         changed, just change the colour depth of all the images.
17984         - Same goes for setting the image size. Just resize them all
17985         instead of killing the list softly.
17987 2005-10-18  Jackson Harper  <jackson@ximian.com>
17989         * Control.cs: Don't invalidate empty rectangles.
17991 2005-10-18  Jordi Mas i Hernandez <jordi@ximian.com>
17993         * ListViewItem.cs:
17994           - Adds checked item to the Checked/Item lists (where empty before)
17995           - Do not add items to the Selected lists if they are already present
17996         * ListView.cs:
17997           - Fixes IsFixedSize, SyncRoot, IsReadOnly in many collections
17998           - When deleting items make sure that we delete them for the Selected
17999           and Checked list also.
18001 2005-10-18  Jordi Mas i Hernandez <jordi@ximian.com>
18003         * Label.cs: Dispose objects no longer used
18004         * ThemeWin32Classic.cs: Dispose objects no longer used
18006 2005-10-18  Jackson Harper  <jackson@ximian.com>
18008         * TabControl.cs: Don't refresh the whole control when the tabs are
18009         scrolled, we just need to refresh the tab area.
18011 2005-10-17  Jackson Harper  <jackson@ximian.com>
18013         * XplatUIX11.cs: Compress code a little bit. Only calculate the
18014         after handle when we need it.
18016 2005-10-17  Peter Dennis Bartok  <pbartok@novell.com>
18018         * Control.cs: When the parent size changes, recalculate anchor 
18019           positions. Partial fix for #76462
18021 2005-10-17  Peter Dennis Bartok  <pbartok@novell.com>
18023         * ThemeWin32Classic.cs: Make sure the picturebox has it's background 
18024           drawn. Fixes #76462
18026 2005-10-17  Jackson Harper  <jackson@ximian.com>
18028         * MonthCalendar.cs: Don't create the numeric up down until our
18029         handle is created. Otherwise our handle is created in the
18030         constructor and we don't know if we are a WS_CHILD or WS_POPUP
18031         yet.
18033 2005-10-17  Jackson Harper  <jackson@ximian.com>
18035         * TreeView.cs: Merge in patch by Rafael Teixeira to align strings
18036         correctly.
18038 2005-10-17  Rafael Teixeira <rafaelteixeirabr@hotmail.com> 
18039         * TreeNode.cs : small logical fix (was using local var instead of field)
18040         
18041 2005-10-17  Jordi Mas i Hernandez <jordi@ximian.com>
18043         * ThemeWin32Classic.cs: Fixes vert/horz scrollbar colours
18045 2005-10-17  Jordi Mas i Hernandez <jordi@ximian.com>
18047         * ThemeWin32Classic.cs: Fixes focus drawing in for non-flat/popup buttons
18049 2005-10-16  Peter Dennis Bartok  <pbartok@novell.com> 
18051         * Control.cs: 
18052           - Re-implemented anchoring code. My first version was really broken.
18053             This fixes bug #76033. Unlike the previous implementation we will
18054             no longer have round errors since all numbers are calculated from
18055             scratch every time. Removed various anchor-related obsolete vars.
18056           - InitLayout no longer causes layout event firing and layout to be 
18057             performed
18059 2005-10-16  Jackson Harper  <jackson@ximian.com>
18061         * Hwnd.cs: Compute invalid area correctly (fixes my last commit
18062         which was broken).
18064 2005-10-16  Jackson Harper  <jackson@ximian.com>
18066         * TabControl.cs: Remove debug code.
18068 2005-10-16  Jackson Harper  <jackson@ximian.com>
18070         * XEventQueue.cs: Increase the default queue size (very simple
18071         apps needed to grow the queue).
18072         * Hwnd.cs: No finalizer so we don't need to suppress
18073         finalization. Compute the invalid area manually so a new rectangle
18074         does not newto be created.
18075         * ScrollableControl.cs: Don't set any params (otherwise visibility
18076         isn't set correctly).
18077         * MdiChildContext.cs: New constructor takes the mdi parent so it
18078         doesn't have to be computed and avoids a crash on windows. Draw
18079         the window icon properly, and allow the text to be seen.
18080         * Form.cs: Use new MdiChildContext constructor. Make sure the
18081         child context isn't null in wndproc.
18082         * TabControl.cs: Don't set focus, this is muddling keyboard
18083         behavoir. Expand the tab rows when a window size increase will
18084         allow extra tabs to be seen. Don't allow tabs smaller than the
18085         width of a window to be scrolled out of view.
18086         * TreeNode.cs:
18087         * TreeView.cs: Use measure string to calculate a nodes width, the
18088         width is cached and only updated when the text or the font is
18089         changed. Don't check for expand/collapse clicks on the first level
18090         nodes if root lines are disabled.
18091         
18092 2005-10-16  Ritvik Mayank  <mritvik@novell.com>
18094         * TextBoxBase.cs: Fixes #76352 (passing tab key in a multiline textbox)
18096 2005-10-16  Jordi Mas i Hernandez <jordi@ximian.com>
18098         * DataGridBoolColumn.cs: fixes warning
18100 2005-10-16  Jordi Mas i Hernandez <jordi@ximian.com>
18102         * ControlPaint.cs: Fixes methods Dark, DarkDark, Light, LightLight
18103         to match more to match more precisely the MS Net behavior
18105 2005-10-13  Peter Dennis Bartok  <pbartok@novell.com> 
18107         * Hwnd.cs: Added field to track if window is mapped
18108         * XplatUIX11.cs: 
18109           - Unmap windows if they become 0-size, re-map when 
18110             they are >0 again; fixes #76035
18111           - Re-set our error handler after initializing X11Desktop
18112             to override any error handlers Gtk or whatever was called
18113             may have set.
18115 2005-10-13  Peter Dennis Bartok  <pbartok@novell.com> 
18117         * CheckedListBox.cs: Removed unused vars
18118         * ListView.cs: Fixed signatures
18119         * RichTextBox.cs: Removed unused vars
18120         * TextBoxBase.cs: Removed unused vars
18121         * XplatUIWin32.cs: Removed unused vars
18122         * XplatUIX11.cs: Removed unused vars
18123         * XplatUI.cs: Updated version and date to latest published
18125 2005-10-13  Peter Dennis Bartok  <pbartok@novell.com>
18127         * Cursor.cs: Added private .ctor to work around a bug in
18128           resourceset (Thanks to Geoff Norton for the help on this)
18129         * SplitterEventArgs.cs: Made fields accessible so we don't
18130           waste boatloads of objects and can reuse the same one
18131           in Splitter
18132         * XplatUIWin32.cs(DrawReversibleLine): Now also considers
18133           any captions and borders when generating screen coordinates
18134         * Splitter.cs: Reimplemented control, now fully complete, uses
18135           rubberband drawing, supports and obeys all properties, has
18136           proper cursors
18138 2005-10-13  Miguel de Icaza  <miguel@novell.com>
18140         * Form.cs (Form): Setup default values for autoscale and
18141         autoscale_base_size;  Make these instance variables, not static
18142         variables. 
18144         (OnLoad): on the first load, adjust the size of the form.
18146 2005-10-13  Peter Dennis Bartok  <pbartok@novell.com>
18148         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs: Added 
18149           width argument to DrawReversibleRectangle()
18150         * XplatUIWin32.cs, XplatUIX11.cs: 
18151           - Implemented width for DrawReversibleRectangle()
18152           - Added logic to DrawReversibleRectangle that recognizes a zero
18153             width or height and only draws a line in that situation
18154         
18155 2005-10-12  Peter Dennis Bartok  <pbartok@novell.com> 
18157         * XplatUI.cs, XplatUIDriver.cs: Added GetAutoScaleSize()
18158         * XplatUIOSX.cs: Stubbed GetAutoScaleSize() method
18159         * XplatUIWin32.cs, XplatUIX11.cs: Implemented GetAutoScaleSize()
18160           method (it uses our FosterParent window to get a graphics context)
18162 2005-10-12  Peter Dennis Bartok  <pbartok@novell.com>
18164         * XplatUI.cs, XplatUIDriver.cs: Removed EraseWindowBackground 
18165           and SetWindowBackground methods
18166         * Control.cs:
18167           - Setting proper ControlStyles
18168           - We no longer call XplatUI.SetWindowBackground and XplatUI.
18169             EraseWindowBackground, instead we draw the window background
18170             ourselves in PaintControlBackground. This behaviour is
18171             required to match MS, where, when OnPaintBackground is not
18172             called, the background is not drawn.
18173           - Removed unneeded Refresh() in set_Text
18174         * Hwnd.cs: Dropped the ErasePending support. No longer needed
18175         * XplatUIX11.cs:
18176           - Created DeriveStyles method to translate from CreateParams to
18177             FormBorderStyle and TitleStyle, also handles BorderStyle (which
18178             matches FormBorderStyle enum values)
18179           - Consolidated SetHwndStyles and CalculateWindowRect border/title
18180             style calculations into single DeriveStyles method
18181           - Fixed CreateWindow to (finally) use Gravity. This prevents X11
18182             from redrawing the whole window on any resize or expose.
18183           - Fixed CreateWindow usage of SetWindowValuemask. Before not
18184             all styles were applied to our whole/client window appropriately
18185           - Removed EraseWindowBackground() and SetWindowBackground() methods
18186           - Removed handling of WM_ERASEBKGND message from DefWndProc, we
18187             no longer clear/redraw the background through X
18188           - Removed handling of erase_pending bit, we have no use for it (or
18189             so it seems)
18190         * XplatUIOSX.cs:
18191           - Removed generation and handling of WM_ERASEBKGND message
18192           - Removed EraseWindowBackground() and SetWindowBackground() methods
18193           - Removed handling of hwnd.ErasePending flag
18194         * XplatUIWin32.cs:
18195           - Removed EraseWindowBackground() and SetWindowBackground() methods
18196           - We no longer call EraseWindowBackground on PaintEventStart, we 
18197             ignore the fErase flag, erasing is handled in Control in the
18198             background handler
18199         * Button.cs, GroupBox.cs, Label.cs, CheckBox.cs, ProgressBar.cs,
18200           LinkLabel.cs, ListControl.cs, TabPage.cs, UpDownBase.cs,
18201           TextBoxBase.cs, TextBox.cs, ListView.cs, ButtonBase.cs, 
18202           CheckedListBox.cs, MdiClient.cs, Panel.cs, DataGrid.cs, 
18203           DataGridTextBox.cs, ScrollBar.cs, ListBox.cs, TrackBar.cs, 
18204           TabControl.cs, ScrollableControl.cs, ToolBar.cs, PictureBox.cs,
18205           DateTimePicker.cs, StatusBar.cs, MonthCalendar.cs: Setting proper ControlStyles
18207 2005-10-12  Jonathan Chambers <jonathan.chambers@ansys.com>
18209         * PropertyGrids.cs: Get sub properties
18210         * PropertyGridView.cs: Fix drawing code
18212 2005-10-11  Jordi Mas i Hernandez <jordi@ximian.com>
18214         * ListBox.cs: Fixes 76383
18216 2005-10-11  Jordi Mas i Hernandez <jordi@ximian.com>
18218         * DataGridTextBoxColumn.cs: Sets location and size before attachment
18219         * ThemeWin32Classic.cs: Fixes border drawing and calculations
18220         * DataGridDrawingLogic.cs: Fixes border drawing and calculations
18223 2005-10-11  Jordi Mas i Hernandez <jordi@ximian.com>
18225         * ComboBox.cs: Fixes border drawing
18227 2005-10-10  Miguel de Icaza  <miguel@novell.com>
18229         * MimeIcon.cs: Ignore errors if the file can not be read.
18231 2005-10-11  Jordi Mas i Hernandez <jordi@ximian.com>
18233         * Theme.cs, ThemeWin32Classic.cs, ListBox.cs:
18234          - Fixed border calculations
18235          - Fixed horizontal scrolling in single column listboxes
18236          - Fixed drawing issues
18238 2005-10-10  Peter Dennis Bartok  <pbartok@novell.com>
18240         * XplatUI.cs, XplatUIOSX.cs, XplatUIWin32.cs: Switched from BorderStyle to 
18241           FormBorderStyle enum
18242         * XplatUIX11.cs: Switched BorderStyle to FormBorderStyle, added 
18243           code to determine FormBorderStyles from CreateParams
18244         * Form.cs:
18245           - Fixed bug where we'd set the wrong window styles if we were
18246             not creating an MDI window
18247           - Added call to XplatUI.SetBorderStyle when form borders are set
18248         * Control.cs: Casting BorderStyles to accommodate changed XplatUI APIs
18249         * Hwnd.cs:
18250           - Removed obsolete edge style
18251           - Switched from BorderStyle to FormBorderStyle
18252         
18253 2005-10-10  Jackson Harper  <jackson@ximian.com>
18255         * Form.cs: Use the property to get the window handle instead of
18256         accessing it directly. Prevents a null reference exception.
18258 2005-10-10  Jackson Harper  <jackson@ximian.com>
18260         * TreeView.cs: Don't adjust the rect given to DrawString now that
18261         our libgdiplus draws correctly.
18263 2005-10-08  Jackson Harper  <jackson@ximian.com>
18265         * TreeView.cs: Don't try to find the clicked on node if there are
18266         no nodes in the tree.
18268 2005-10-08  Alexander Olk  <alex.olk@googlemail.com>
18270         * RichTextBox.cs:
18272           restore
18274 2005-10-08  Alexander Olk  <alex.olk@googlemail.com>
18276         * ImageListStreamer.cs, TreeView.cs, UpDownBase.cs, RichTextBox.cs,
18277           ColorDialog.cs, TextControl.cs, Panel.cs, MdiChildContext.cs,
18278           ErrorProvider.cs:
18279           Use ResPool for brushes and dispose System.Drawing objects that
18280           are not used anymore.
18282 2005-10-07  Jackson Harper  <jackson@ximian.com>
18284         * MdiChildContext.cs: Use the new borders instead of drawing them
18285         ourselves.
18287 2005-10-06  Jordi Mas i Hernandez <jordi@ximian.com>
18289         * Calling UpdateBounds after changing the window's BorderStyle 
18290         since the style can change the ClientSize
18292 2005-10-06  Peter Dennis Bartok  <pbartok@novell.com>
18294         * Control.cs: Made PaintControlBackground virtual
18295         * Panel.cs: Overriding PaintControlBackground instead of using paint
18296           event; paint event method was interfering with 'real' users of the
18297           event.
18299 2005-10-06  Jordi Mas i Hernandez <jordi@ximian.com>
18301         * ThemeWin32Classic.cs: remove border drawing since it is handled
18302         by the base control class now and was causing double border drawing.
18304 2005-10-06  Peter Dennis Bartok  <pbartok@novell.com>
18306         * Panel.cs: Redraw our background on paint. Not a pretty solution,
18307           but it does seem to match MS behaviour. This fixes bug #75324
18309 2005-10-06  Peter Dennis Bartok  <pbartok@novell.com>
18311         * XplatUIX11.cs: A better DrawReversibleRectangle version, however
18312           somewhat hackish looking
18314 2005-10-06  Peter Dennis Bartok  <pbartok@novell.com> 
18316         * TextBoxBase.cs:
18317           - We now accept Enter even if AcceptEnter is false, if the containing
18318             form does not have an AcceptButton configured (fixes bug #76355)
18319           - Calculations are now fixed to no longer use Width/Height, but
18320             ClientSize.Width/Height, since we now support borders (this was
18321             a result of fixing borders and therefore bug #76166)
18322           - We no longer show the horizontal scrollbar if TextBox.WordWrap is 
18323             true (fixes bug #76354)
18324         
18325 2005-10-06  Peter Dennis Bartok  <pbartok@novell.com>
18327         * Control.cs: 
18328           - Defaulting BorderStyle and setting it in XplatUI when our window 
18329             is created
18330           - Added enum check to InternalBorderStyle setter
18331         * XplatUIX11.cs: 
18332           - Added drawing of window borders
18333           - Now properly calculates WM decorations offset for toplevel 
18334             windows (fixes bug #74763)
18335         * XplatUIWin32.cs: 
18336           - Implemented BorderStyles for windows (we're letting win32 draw 
18337             the border for us)
18338           - Fixed the signature for SetWindowLong
18339         * PictureBox.cs, DataGrid.cs, TextBoxBase.cs, ToolBar.cs, Panel.cs,
18340           ListBox.cs, Label.cs: Now uses Control.InternalBorderStyle for 
18341           setting borders
18342         * UpDownBase.cs: Remove drawing of borders, this is handled by
18343           the driver, outside the client area
18344         * ListView.cs: Removed bogus border calculations. The control should
18345           be oblivious to borders, since those are not part of the client
18346           area. 
18347         * X11DesktopColors.cs: Commented out (currently) unneeded variables
18348         * ThemeWin32Classic.cs: Removed border calculations from ListView 
18349           drawing code
18351 2005-10-06  Jackson Harper  <jackson@ximian.com>
18353         * MdiChildContext.cs: Clear out the old virtual position remove
18354         all the unneeded calls to CreateGraphics.
18356 2005-10-06  Peter Dennis Bartok  <pbartok@novell.com> 
18358         * TextControl.cs: Use proper color for highlighted text; fixes #76350
18360 2005-10-06  Peter Dennis Bartok  <pbartok@novell.com> 
18362         * Form.cs: 
18363           - Added loading and setting of our new default icon
18364           - Only set icon if window is already created
18366 2005-10-06  Peter Dennis Bartok  <pbartok@novell.com>
18368         * Label.cs:
18369           - Do not explicitly set the foreground and background colors, to
18370             allow inheriting from parents (fixes #76302)
18371           - Use Control's InternalBorderStyle property to deal with borders
18373 2005-10-06  Jackson Harper  <jackson@ximian.com>
18375         * MdiChildContext.cs: Use the new xplatui function to draw a
18376         reversible rect.
18378 2005-10-06  Jackson Harper  <jackson@ximian.com>
18380         * Form.cs: Add the parent before creating the child context cause
18381         we need the parent when setting up the child.
18383 2005-10-06  Jackson Harper  <jackson@ximian.com>
18385         * FolderBrowserDialog.cs: redo the tree population code so a
18386         second thread isn't used. Should be a lot faster and more stable
18387         now.
18389 2005-10-05  Jackson Harper  <jackson@ximian.com>
18391         * TreeView.cs: There are no expand/collapse boxes if the node has
18392         no children.
18394 2005-10-05  Jackson Harper  <jackson@ximian.com>
18396         * X11DesktopColors.cs: Get menu colours for the gtk theme.
18398 2005-10-05  Alexander Olk  <alex.olk@googlemail.com>
18400         * FileDialog.cs: Fix InitialDirectory
18402 2005-10-05  Jordi Mas i Hernandez <jordi@ximian.com>
18404         * ComboBox.cs:
18405                 - Fixes changing between styles
18406                 - Fixes simple mode
18407                 - Fixes last item crashing when navigating with keyboard
18409 2005-10-05  Jordi Mas i Hernandez <jordi@ximian.com>
18411         * LinkLabel.cs: Related to 76045. Stops the LinkLabel been drawn as a Label
18413 2005-10-05  Jackson Harper  <jackson@ximian.com>
18415         * TreeView.cs: If updating the root node do a full refresh.
18416         * TreeNode.cs: The root node should be expanded by default. Also
18417         added a utility prop to tell if we are the root node.
18418         * TreeNodeCollection.cs: Only refresh if the node we are being
18419         added to is expanded. Also added a comment on a potential
18420         optimization.
18421         
18422 2005-10-04  Peter Dennis Bartok  <pbartok@novell.com>
18424         * Cursor.cs, Hwnd.cs: Added call to GC.SuppressFinalize() 
18425           in dispose method. Fixes #76330
18427 2005-10-04  Jordi Mas i Hernandez <jordi@ximian.com>
18429         * ListView.cs, ThemeWin32Classic.cs, ListViewItem.cs:
18431                 - Implements vertical and horizontal scrolling using XplatUI
18432                 - Fixes keyboard navagation
18433                 - Fixes EnsureVisible
18434                 - Drawing fixes
18435                 - Handles and draws focus properly
18438 2005-10-04  Kornél Pál  <kornelpal@hotmail.com>
18440         * ImageList.cs: Use upper case initials for internal fields. ImageStream:
18441           Create handle. NET_2_0: Destroy handle when value is null.
18443 2005-10-03  Jackson Harper  <jackson@ximian.com>
18445         * ScrollBar.cs: My last scrollbar patch was broken. This is a
18446         revert and a new patch to prevent the thumb from refreshing so
18447         much.
18449 2005-10-02  Jackson Harper  <jackson@ximian.com>
18451         * ScrollBar.cs: Don't update position if it hasn't actually
18452         changed. This occurs when you hold down the increment/decrement
18453         buttons and the thumb gets to the max/min.
18455 2005-10-01  Jackson Harper  <jackson@ximian.com>
18457         * Form.cs:
18458         * MdiChildContext.cs:
18459         * MdiClient.cs: Implement ActiveMdiChild in Form.
18461 2005-10-01  Jordi Mas i Hernandez <jordi@ximian.com>
18463         * ComboBox.cs: Include ComboBoxEdit flag for the edit item
18465 2005-10-01  Peter Dennis Bartok  <pbartok@novell.com>
18467         * X11DesktopColors.cs: Bow out gracefully if the Gtk libs cannot
18468           be found
18470 2005-09-30  Jackson Harper  <jackson@ximian.com>
18472         * ListBox.cs: Don't do a full refresh unless some data has
18473         actually changed.
18475 2005-09-30  Jackson Harper  <jackson@ximian.com>
18477         * TreeView.cs: Make sure that the checkboxes size is factored in
18478         even when not visible.
18480 2005-09-30  Peter Dennis Bartok  <pbartok@novell.com> 
18482         * FileDialog.cs: Fix Jordi's build break
18484 2005-09-30  Jordi Mas i Hernandez <jordi@ximian.com>
18486         * FileDialog.cs: 
18487                 - Use standard the Windows colours for the combobox as espected
18488                 - Dispose objects that use resouces when no longer need them
18490 2005-09-30  Peter Dennis Bartok  <pbartok@novell.com> 
18492         * X11DesktopColors.cs: Initial incomplete implementation
18493         * XplatUIX11.cs: Added call to initialize X11DesktopColors
18495 2005-09-30  Peter Dennis Bartok  <pbartok@novell.com>
18497         * Theme.cs: 
18498           - Switched Theme color names to match the names defined in 
18499             System.Drawing.KnownColors. Life's hard enough, no need to make 
18500             it harder.
18501           - Added setters to all theme color properties so themes can set
18502             their color schemes. The setters also propagate the color changes
18503             to System.Drawing.KnownColors via reflection
18504         * ControlPaint.cs,  Label.cs, TextControl.cs, ToolTip.cs, ThemeNice.cs,
18505           ComboBox.cs, MdiChildContext.cs, TextBoxBase.cs, DateTimePicker.cs
18506           DataGridColumnStyle.cs, MonthCalendar.cs, TreeView.cs: Updated to
18507           use the new, more logical theme color names
18508         * XplatUIWin32.cs: Updated the GetSysColorIndex enum to include new
18509           post-NT colors
18510         * ThemeWin32Classic.cs:
18511           - Removed code to set the old classic Windows colors. Instead it
18512             now relies on the colors returned by System.Drawing.KnownColors
18513             which will be either modern static colors (Unix) or colors
18514             read from the user's configuration (Win32)
18515           - Updated to use the new, more logical theme color names
18516           - Switched DataGrid drawing code to use only Theme colors instead of
18517             a mix of System.Drawing.KnownColors and Theme colors
18518           - DrawFrameControl(): Removed code that fills the button area, the
18519             fill would overwrite any previous fill done by a control. This
18520             fixes bug #75338 
18521           - Added DrawReversibleRectangle() stub
18522         * ScrollableControl.cs: Set visible state to false when scrollbars
18523           are removed (pdn fix)
18524         * XplatUI.cs, XplatUIOSX.cs, XplatUIDriver.cs: Added 
18525           DrawReversibleRectangle() method to allow drawing primitive 
18526           'rubber bands'
18527         * XplatUIX11.cs: Implemented DrawReversibleRectangle()
18529 2005-09-30  Kornél Pál  <kornelpal@hotmail.com>
18531         * ImageList.cs: Add(Icon): Create handle.
18533 2005-09-30  Jordi Mas i Hernandez <jordi@ximian.com>
18535         * ListView.cs:
18536         * ThemeWin32Classic.cs:
18537                 - Fixes detail mode
18538                 - Sets clippings
18539                 - Issues with drawing
18541 2005-09-30  Kornél Pál  <kornelpal@hotmail.com>
18543         * ImageList.cs: Moved RecreateHandle back to ImageList as event
18544           source has to be the ImageList.
18546 2005-09-30  Kornél Pál  <kornelpal@hotmail.com>
18548         * ImageList.cs: Add(Icon): Use Graphics.DrawIcon instead of Icon.ToBitmap.
18550 2005-09-30  Kornél Pál  <kornelpal@hotmail.com>
18552         * ImageList.cs: ReduceColorDepth: Clean up pointer operations.
18554 2005-09-30  Kornél Pál  <kornelpal@hotmail.com>
18556         * ImageList.cs: ImageCollection: Removed owner field as it is no more used.
18558 2005-09-29  Jonathan Chambers <jonathan.chambers@ansys.com>
18559         * GridItem.cs: Fixed TODOs
18560         * GridItemCollection.cs: Added ICollection interface
18562 2005-09-30  Kornél Pál  <kornelpal@hotmail.com>
18564         * ImageList.cs: Resize icons when needed.
18566 2005-09-29  Jordi Mas i Hernandez <jordi@ximian.com>
18568         * ListViewItem.cs
18569                 - Fixes GetBounds and returns on screen rects
18570         * ListView.cs:
18571                 - Fixes vertical and horzintal scrolling of items
18572         * ThemeWin32Classic.cs:
18573                 - Fixes drawing
18574                 
18575 2005-09-29  Raja R Harinath  <harinath@gmail.com>
18577         * ImageList.cs (ImageStream) [NET_2_0]: Reflect re-factoring.
18579 2005-09-29  Kornél Pál  <kornelpal@hotmail.com>
18581         * ImageList.cs: Added comments about handle creation. Moved Handle,
18582           HandleCreated and OnRecreateHandle implementations to ImageCollection.
18583           Handle is created in Add methods.
18585 2005-09-28  Jordi Mas i Hernandez <jordi@ximian.com>
18586          
18587         * DataGridDrawingLogic.cs: 
18588                 - Takes rows into account on Colum calculations
18589                 - Returns the column when clickig
18590         * DataGrid.cs:
18591                 - Fixes default HitTestInfo values
18592                 - Fixes HitTestInfo.ToString
18593                 - Fixes ResetBackColor          
18594         
18595 2005-09-28  Jackson Harper  <jackson@ximian.com>
18597         * MdiChildContext.cs: Obey rules for fixed sized windows (no
18598         sizing or cursor changes). Also added some temp code to draw the
18599         titlebars text (Makes dev a little easier).
18601 2005-09-28  Kornél Pál  <kornelpal@hotmail.com>
18603         * ImageList.cs: AddStrip: Throw ArgumentException when Image is not a Bitmap.
18605 2005-09-28  Jordi Mas i Hernandez <jordi@ximian.com>
18606          
18607         * ListBox.cs: Fixes bug 76253
18609 2005-09-28  Kornél Pál  <kornelpal@hotmail.com>
18611         * ImageList.cs: Added comments about the current implementation. Added
18612           ReduceColorDepth, IndexedColorDepths and GetNearestColor to can use
18613           Format32bppArgb to preserve transparency and can use Graphics.FromImage
18614           while using the specified ColorDepth. ReduceColorDepth uses unsafe code
18615           with Bitmap.LockBits for better performance. Revised the whole file to
18616           match MS.NET behaviour and provide better performance. Non-public
18617           interface members are calling public members even when they throw
18618           NotSupportedException for better maintainability. Moved ColorDepth,
18619           ImageSize, ImageStream and TransparentColor implementations to
18620           ImageCollection for better performance as these properties are not used
18621           by ImageList.
18622         * ImageListStreamer.cs: Added a new internal constructor that takes an
18623           ImageList.ImageCollection and serializes Images based on
18624           ImageCollection.ToArray(). Renamed ImageColorDepth to ColorDepth to
18625           match ImageList property name.
18627 2005-09-28  Kazuki Oikawa <kazuki@panicode.com>
18629         * ListBox.cs: Fixes IndexFromPoint for last item
18631 2005-09-27  Jackson Harper  <jackson@ximian.com>
18633         * Form.cs: Set the position of new mdi children correctly.
18635 2005-09-27  Jackson Harper  <jackson@ximian.com>
18637         * MdiClient.cs: New mdi children need to be added to the back of
18638         the controls collection so the zorder is set correctly. Also add a
18639         count of all the child windows that have been created.
18641 2005-09-27  Jackson Harper  <jackson@ximian.com>
18643         * Form.cs (CreateParams): Setup MDI forms correctly.
18645 2005-09-27  Jackson Harper  <jackson@ximian.com>
18647         * MdiChildContext.cs:
18648         * MonthCalendar.cs:
18649         * UpDownBase.cs:
18650         * ListBox.cs:
18651         * ListView.cs:
18652         * TextBoxBase.cs:
18653         * TreeView.cs:
18654         * ScrollableControl.cs:
18655         * ComboBox.cs: Add implicit controls using the new implict control
18656         functionality in ControlCollection. Also try to block multiple
18657         control add in a suspend/resume layout to save some cycles.
18658         
18659 2005-09-27  Jackson Harper  <jackson@ximian.com>
18661         * Control.cs: Add functionality to the controls collection to add
18662         'implicit controls' these are controls that are created by the
18663         containing control but should not be exposed to the user. Such as
18664         scrollbars in the treeview.
18665         * Form.cs: The list var of the ControlsCollection is no longer
18666         available because of the potential of implicit controls getting
18667         ignored by someone accessing the list directly.
18669 2005-09-26  Peter Dennis Bartok  <pbartok@novell.com>
18671         * Control.cs: Fixed SetChildIndex; it no longer causes a child to
18672           loose it's parent. (Fixed bug introduced in r49103 when we added
18673           setting the child parent to null on Remove)
18675 2005-09-26  Gert Driesen  <drieseng@users.sourceforge.net>
18677         * DataGridBoolColumn.cs: Marked CheckState private to fix public API.
18678         * Splitter.cs: Added missing attributes for BorderStyle property.
18679         * TextBoxBase.cs: Marked Calculate* methods internal.
18680         * TextBox.cs: Fixed DefaultValue for PasswordChar property to match
18681         MS.NET.
18683 2005-09-26  Jordi Mas i Hernandez <jordi@ximian.com>
18684          
18685         * ListBox.cs: Fixes navigation to the last item in multicolumn lists
18687 2005-09-25  Jackson Harper  <jackson@ximian.com>
18689         * TreeView.cs: Update the node bounds correctly regardless of
18690         whether the node is visible.
18692 2005-09-25  Jackson Harper  <jackson@ximian.com>
18694         * ImageList.cs: Don't dispose the image after it is added to the
18695         image list. Only reformat images that need to be resized.
18697 2005-09-25  Jackson Harper  <jackson@ximian.com>
18699         * ImageList.cs: Don't set the format when changing the image.
18701 2005-09-25  Jackson Harper  <jackson@ximian.com>
18703         * TreeView.cs: We can't just assume the node has a font. Use the
18704         treeviews font if no node font is available.
18706 2005-09-25  Jackson Harper  <jackson@ximian.com>
18708         * TreeView.cs: Allow the scrollbars to be reset with negative
18709         values.
18710         - Don't add scrollbars to negative sized windows.
18712 2005-09-23  Jackson Harper  <jackson@ximian.com>
18714         * XplatUIX11.cs: Update to use Mono.Posix.Native instead of plain
18715         old Mono.Posix. Also remove some stray code that shouldn't have
18716         been committed.
18718 2005-09-23  Jackson Harper  <jackson@ximian.com>
18720         * TreeView.cs: Attempt at proper sizing of the horizontal
18721         scrollbar. Also don't resize the scrollbars unless they are
18722         visible.
18724 2005-09-23  Jackson Harper  <jackson@ximian.com>
18726         * TreeView.cs: We don't need to expand the invalid area when the
18727         selection changes, as this is all drawn in the node's bounding
18728         box. The area needs to be expanded (previous typo was contracting
18729         it) when the focus rect moves.
18731 2005-09-23  Jackson Harper  <jackson@ximian.com>
18733         * TreeView.cs: Display the selection box under the correct
18734         circumstances. We were rendering white text with no selection box
18735         before.
18737 2005-09-23  Peter Dennis Bartok  <pbartok@novell.com>
18739         * TextControl.cs(Split): Now updates selection start/end if it points 
18740           into a line that's being split. Fixes a FIXME and bug #75258
18742 2005-09-23  Jackson Harper  <jackson@ximian.com>
18744         * Binding.cs:
18745         * ListControl.cs: Don't use the path when retrieving binding
18746         managers from the binding context. My bat sense tells me that the
18747         path is only used on insertion.
18749 2005-09-22  Jackson Harper  <jackson@ximian.com>
18751         * Splitter.cs: Set the cursor an easier way. (Thanks peter).
18753 2005-09-22  Jackson Harper  <jackson@ximian.com>
18755         * Splitter.cs: There are special cursors used for splitting.
18756         * XplatUIX11.cs: The VSplit and HSplit cursors were backwards.
18758 2005-09-22  Jackson Harper  <jackson@ximian.com>
18760         * Splitter.cs: Change the cursor appropriately when the splitter
18761         is moused over, so the user actually knows there is a splitter
18762         there.
18764 2005-09-22 Hisham Mardam Bey <hisham.mardambey@gmail.com>
18766        * Label.cs : Fix ToString method to give same output as MS.NET
18768 2005-09-22  Jackson Harper  <jackson@ximian.com>
18770         * TreeView.cs: Create the scrollbars when the handle is created
18771         and add them right away, just make them invisble. Also account for
18772         the window being shrunk vertically to the point that the vert
18773         scrollbar needs to be added.
18774         - Remove some 0.5 adjustments to get around anti aliasing issues.
18775         
18776 2005-09-22  Jordi Mas i Hernandez <jordi@ximian.com>
18777          
18778         * MainMenu.cs: Fixes default value
18779         * MenuItem.cs: Fixes default value
18781 2005-09-22  Kazuki Oikawa  <kazuki@panicode.com>
18783         * AsyncMethodResult.cs: Fixes Control.Invoke is blocked infinitely.
18785 2005-09-21  Jackson Harper  <jackson@ximian.com>
18787         * Control.cs: Don't try to set the border style on the window if
18788         it hasn't been created. When the window is created the border
18789         style will be used.
18791 2005-09-21  Peter Dennis Bartok  <pbartok@novell.com>
18793         * Control.cs (Update): Don't call XplatUI if we don't have a
18794           window handle yet
18796 2005-09-21  Peter Dennis Bartok  <pbartok@novell.com> 
18798         * ContainerControl.cs: Instead of throwing an exception, print
18799           a one-time warning about Validate not being implemented
18800         * XplatUIWin32.cs: Removed debug output
18802 2005-09-21  Peter Dennis Bartok  <pbartok@novell.com> 
18804         * Control.cs: Only set XplatUI background if we expect the windowing
18805           system to handle the background. This stops controls that draw their
18806           own background from flickering
18808         * XplatUIX11.cs: Support custom visuals and colormaps for window 
18809           creation. This allows, amongst other things, using MWF X11 windows 
18810           with OpenGL.
18812 2005-09-21  Peter Dennis Bartok  <pbartok@novell.com>
18814         * OpenFileDialog.cs, ContentsResizedEventArgs.cs, LibSupport.cs, GridItem.cs,
18815           CursorConverter.cs, SplitterEventHandler.cs, PropertyGridTextBox.cs,
18816           GridTablesFactory.cs, MethodInvoker.cs, AccessibleEvents.cs,
18817           SplitterEventArgs.cs, XplatUI.cs, Mime.cs, PropertySort.cs,
18818           TreeViewCancelEventHandler.cs, Form.cs, PropertyGridCommands.cs,
18819           IDataGridEditingService.cs, DateBoldEventHandler.cs, Label.cs,
18820           KeyboardLayouts.cs, TextControl.cs, ProgressBar.cs, ToolTip.cs,
18821           RadioButton.cs, OSFeature.cs, LinkLabel.cs, ColorDialog.cs,
18822           ThemeNice.cs, ErrorIconAlignment.cs, TreeNode.cs, MimeGenerated.cs,
18823           ComboBox.cs, DataGridTextBoxColumn.cs, ArrangeStartingPosition.cs,
18824           GridColumnStylesCollection.cs, 
18825           IDataGridColumnStyleEditingNotificationService.cs,
18826           PropertyGrid.cs, IFeatureSupport.cs, ICommandExecutor.cs,
18827           MdiLayout.cs, GridEntry.cs, ControlBindingsCollection.cs,
18828           GridTableStylesCollection.cs, TreeViewCancelEventArgs.cs, 
18829           TreeNodeCollection.cs, AmbientProperties.cs, 
18830           RichTextBoxSelectionAttribute.cs, RichTextBoxSelectionTypes.cs,
18831           DataObject.cs, ErrorProvider.cs, Splitter.cs,
18832           DataGridLineStyle.cs, Shortcut.cs, Control.cs,
18833           FontDialog.cs, SecurityIDType.cs, GridItemType.cs,
18834           BindingMemberInfo.cs, DataGridCell.cs, MdiChildContext.cs,
18835           IRootGridEntry.cs, PropertyGridView.cs, DataGridParentRowsLabelStyle.cs,
18836           FolderBrowserDialog.cs, OpacityConverter.cs, HelpProvider.cs,
18837           IComponentEditorPageSite.cs, DataGridTableStyle.cs, NavigateEventArgs.cs,
18838           NotifyIcon.cs, ContentsResizedEventHandler.cs, MenuItem.cs,
18839           PropertyTabChangedEventHandler.cs, TextBoxBase.cs, OpenTreeNodeEnumerator.cs,
18840           SelectionMode.cs, TextBox.cs, ListBindingConverter.cs,
18841           FileDialog.cs, KeysConverter.cs, DomainUpDown.cs,
18842           DataFormats.cs, SaveFileDialog.cs, GridItemCollection.cs,
18843           ArrangeDirection.cs, FeatureSupport.cs, SelectionRangeConverter.cs,
18844           RichTextBoxScrollBars.cs, NodeLabelEditEventHandler.cs, TreeNodeConverter.cs,
18845           MimeIcon.cs, X11Structs.cs, PropertyGridEntry.cs,
18846           ImageList.cs, ThemeWin32Classic.cs, X11Keyboard.cs,
18847           CheckedListBox.cs, HelpNavigator.cs, DateTimePickerFormat.cs,
18848           MdiClient.cs, DataGridDrawingLogic.cs, DataGridBoolColumn.cs,
18849           NodeLabelEditEventArgs.cs, Screen.cs, PropertyManager.cs,
18850           ComponentModel.cs, PropertiesTab.cs, CurrencyManager.cs,
18851           SizeGrip.cs, DateBoldEventArgs.cs, X11Dnd.cs, Panel.cs,
18852           Hwnd.cs, OSXStructs.cs, DrawMode.cs, XplatUIDriver.cs,
18853           RichTextBox.cs, PropertyTabChangedEventArgs.cs, CommonDialog.cs,
18854           DataGrid.cs, XplatUIX11.cs, RichTextBoxStreamType.cs, Win32DnD.cs,
18855           ErrorBlinkStyle.cs, TreeViewEventHandler.cs,
18856           PropertyValueChangedEventHandler.cs, IFileReaderService.cs,
18857           DataGridTextBox.cs, SelectedGridItemChangedEventArgs.cs, ScrollBar.cs,
18858           ListBox.cs, TreeViewAction.cs, Help.cs, TrackBar.cs,
18859           AxHost.cs, PropertyValueChangedEventArgs.cs, XplatUIOSX.cs,
18860           RichTextBoxFinds.cs, UpDownEventArgs.cs, Cursors.cs,
18861           CategoryGridEntry.cs, RichTextBoxWordPunctuations.cs, DataGridColumnStyle.cs,
18862           SelectedGridItemChangedEventHandler.cs, DateTimePicker.cs, NavigateEventHandler.cs,
18863           Clipboard.cs, UpDownEventHandler.cs, MonthCalendar.cs,
18864           SendKeys.cs, DataGridPreferredColumnWidthTypeConverter.cs, TreeView.cs,
18865           ThreadExceptionDialog.cs, ImageListConverter.cs, XplatUIWin32.cs,
18866           TreeViewEventArgs.cs: Fixed whitespace and set eol-style:native attribute
18868 2005-09-21  Jackson Harper  <jackson@ximian.com>
18870         * TreeNode.cs: Call Before/After Expand not Collapse when
18871         expanding.
18873 2005-09-20  Jackson Harper  <jackson@ximian.com>
18874         
18875         * XplatUIX11.cs: Use the more hand looking hand (in most themes).
18877 2005-09-16  Jordi Mas i Hernandez <jordi@ximian.com>
18878          
18879         * ListViewItem.cs:
18880                 - Fixes bug 76120
18881                 - Fixes proper storing of subitems
18882                 - Fixes not updated items
18884 2005-09-20  Peter Dennis Bartok  <pbartok@novell.com>
18886         * Control.cs, TextBoxBase.cs, TextControl.cs: Don't do certain
18887           things if our window handle isn't created yet. Also disabled 
18888           debug for TextBoxBase
18890 2005-09-20  Peter Dennis Bartok  <pbartok@novell.com> 
18892         * MenuAPI.cs: Remove filtering of events to allow menu usage
18894 2005-09-20  Miguel de Icaza  <miguel@novell.com>
18896         * Cursor.cs: Allow null to be passed to Cursor.Current.
18898 2005-09-20  Alexander Olk  <alex.olk@googlemail.com>
18900         * ThemeWin32Classic.cs:
18901           - Change some private methods/fields to protected virtual so that 
18902             they can be accessed and overriden in derived classes
18903           - First refactoring of some methods. Derived themes now don't 
18904             need to duplicate the complete code from ThemeWin32Classic
18905         * ThemeNice.cs:
18906           - Added nice StatusBar
18907           - Derive from ThemeWin32Classic and not Theme
18908           - Removed duplicate ThemeWin32Classic code
18910 2005-09-20  Miguel de Icaza  <miguel@novell.com>
18912         * Control.cs (ControlCollection.Add): If the value null is passed
18913         the control is ignored. 
18915         Optimize this loop.
18917 2005-09-19  Peter Dennis Bartok  <pbartok@novell.com> 
18919         * MenuAPI.cs: Replaced Application.Run() with a loop that tracks
18920           PostQuitMessage state.
18921         * XplatUIWin32.cs: Removed bogus PostQuitMessage P/Invoke with HWND arg
18923 2005-09-19  Peter Dennis Bartok  <pbartok@novell.com>
18925         * Application.cs: Our constructor will never get called, move 
18926           initialization to fields; fixes bug #75933
18928 2005-09-19 Hisham Mardam Bey <hisham.mardambey@gmail.com>
18930         * FileDialog.cs :
18931                 - Allow files to be selected properly using file name
18932                 combo box.
18933                 - Add ability to change diretory (absolute / relative)
18934                 using file name combo box.
18936 2005-09-16  Jordi Mas i Hernandez <jordi@ximian.com>
18937          
18938         * ListBox.cs: 
18939                 - Fixes Multicolumn listboxes item wrong calculations
18940                 - Allows to click when only one item is in the listbox
18941                 - Fixes crash when no items using keyboard navigation
18943 2005-09-16  Alexander Olk  <alex.olk@googlemail.com>
18945         * ComboBox.cs: Reverted almost everything from the latest patch which
18946           broke ComboBox
18948 2005-09-16  Kazuki Oikawa <kazuki@panicode.com>
18949         
18950         * ToolTip.cs:
18951                 - Fixed #Mtd2 of ToolTipTest.RemoveToolTipTest.
18952         * ComboBox.cs:
18953                 - When DropDownStyle is Simple, it does not show scrollbar 
18954                 to the last item of the list.
18955                 - When DropDownStyle is Simple, it crashed when the list was 
18956                 scrolled down with the down cursor key.
18957                 - Fixed a bug that when DropDownStyle is DropDownList, the 
18958                 selected item was not shown.
18959                 - The position of the selected item was not preserved when 
18960                 the next dropdown happened.
18961         * ThemeWin32Classic.cs:
18962                 - Items were wrapped at the right end.
18963         * CheckedListBox.cs:
18964                 - Fixed Add method
18965         * ListBox.cs:
18966                 - Items should be fully shown.
18967                 - When resizing and vertical scrollbar disappeared, the item 
18968                 of index 0 should be on the top of the list.
18969                 - GetItemRectangle should consider the size of ver. scrollbar
18970         * StatusBar.cs:
18971                 - SizingGrip area should not be allocated when it is not 
18972                 displayed.
18973                 - Now it reflects MinWidth of the containing panel and 
18974                 fixed a crash that happens when its width becomes so small.
18976 2005-09-13  Jordi Mas i Hernandez <jordi@ximian.com>
18978         * CheckedListBox.cs: Fixes bug 76028
18979         * ListBox.cs: Fixes bug 76028
18981 2005-09-13  Jordi Mas i Hernandez <jordi@ximian.com>
18983         * ThemeWin32Classic.cs: Sets clipping on DataGridPaintRowsHeaders
18984         * DataGridDrawingLogic.cs: fixes issues with Datagrid drawing
18986 2005-09-12  Jordi Mas i Hernandez <jordi@ximian.com>
18988         * XplatUIX11.cs: fixes System.NullReferenceException in some situations
18990 2005-09-09  Jonathan Chambers  <jonathan.chambers@ansys.com>
18992         * IRootGridEntry.cs: Changed namespace to PropertyGridInternal 
18994 2005-09-09  Jonathan Chambers  <jonathan.chambers@ansys.com>
18996         * IRootGridEntry.cs: Added
18997         * PropertyGridCommands.cs: Added
18998         * PropertiesTab.cs: Added missing methods and property
18999         * PropertyGridView.cs: Made class internal
19000         * PropertyGridTextBox.cs: Made class internal
19002 2005-09-09  Alexander Olk  <alex.olk@googlemail.com>
19004         * MimeIcon.cs: Try to check some other environment variables
19005           if "DESKTOP_SESSION" returns "default"
19007 2005-09-09  Alexander Olk  <alex.olk@googlemail.com>
19009         * ThemeNice.cs: Corrected background colors (e.g. menus)
19010         * ColorDialog.cs: Use correct background colors for controls
19012 2005-09-09  Alexander Olk  <alex.olk@googlemail.com>
19014         * ThemeNice.cs: Merged r49535 from ThemeWin32Classic
19016 2005-09-08  Peter Dennis Bartok  <pbartok@novell.com>
19018         * RichTextBox.cs: Added initial implementation
19019         * lang.cs: Removed. Was accidentally checked in long time ago
19020         * TODO: Removed. Contents were obsolete
19022 2005-09-06  Jonathan Chambers  <jonathan.chambers@ansys.com>
19023                                                                                 
19024         * PropertiesTab.cs : Added
19026 2005-09-06  Jonathan Chambers  <jonathan.chambers@ansys.com>
19027                                                                                 
19028         * PropertyGrid.cs : Update
19029         * PropertyGridView.cs : Update
19030         * System.Windows.Forms.resx : Added images and strings
19032 2005-09-06  Peter Dennis Bartok  <pbartok@novell.com> 
19034         * ThemeNice.cs: Do not dispose Pens retrieved from ResPool
19036 2005-09-06  Peter Dennis Bartok  <pbartok@novell.com>
19038         * XplatUIX11.cs: Force a flush after Ungrab; if case the app enters
19039           a busy loop right after the Ungrab the X11 display is otherwise 
19040           blocked
19042 2005-09-06  Jordi Mas i Hernandez <jordi@ximian.com>
19044         * ThemeWin32Classic.cs: Optimise the use of clipping
19046 2005-09-05  Jordi Mas i Hernandez <jordi@ximian.com>
19048         * DataGrid.cs: fixes recursion bug
19050 2005-09-03  Alexander Olk  <alex.olk@googlemail.com>
19052         * ThemeNice.cs: 
19053           - Draw RadioButton and CheckBox Buttons with DrawButtonBase
19054           - Cleanup
19056 2005-09-02  Alexander Olk  <alex.olk@googlemail.com>
19058         * ThemeNice.cs: Draw nice ProgressBars
19060 2005-09-01  Miguel de Icaza  <miguel@novell.com>
19062         * VScrollBar.cs: Another buglet found by Aaron's tool. 
19064         * ProgressBar.cs: Fix three recursive bugs found by Aaron Tomb's
19065         bug finder.
19067 2005-08-30  Alexander Olk  <alex.olk@googlemail.com>
19069         * ThemeNice.cs:
19070           - Added nicer menu drawing
19071           - Updated DrawTab
19072           - some refactoring
19074 2005-08-30  Peter Dennis Bartok  <pbartok@novell.com>
19076         * CreateParams.cs (ToString): Made output match MS
19077         * Control.cs (Text): Don't set Text or Focus via XplatUI unless 
19078             handle is already created (to avoid forcing window creation)
19079         * XplatUIX11.cs: Set window text to caption after creating window,
19080           in case Text was set before window was created
19081         * Form.cs: Use this.Text instead of a static string as caption
19083 2005-08-30  Peter Dennis Bartok  <pbartok@novell.com> 
19085         * NotifyIcon.cs: Don't set the window to visible; this screws
19086           up Win32 (causes WM_NCPAINT to be sent on Win32, which calls
19087           OnPaint without a bitmap)
19088         * XplatUIX11.cs: Removed Visible optimization in AddExpose; doesn't 
19089           happen very often anyway; we could add the check to the WM_PAINT 
19090           event generation code
19092 2005-08-30  Peter Dennis Bartok  <pbartok@novell.com>
19094         * NotifyIcon.cs: Fill the icon area with a background color, to 
19095           avoid 'residue' when transparent icons are drawn
19096         * XplatUIX11.cs:
19097           - Handle whole_window == client_window when destroying windows
19098           - SystrayAdd(): Set client_window to whole_window value to
19099             get mouse and other events passed to NotifyIcon
19101 2005-08-30  Peter Dennis Bartok  <pbartok@novell.com> 
19103         * Form.cs: Set proper default for Opacity property
19104         * NotifyIcon.cs:
19105           - ShowSystray(): Don't bother creating telling the OS
19106             about the systray item if no icon is provided
19107           - Now handles WM_NCPAINT message to deal with whole/client window
19108             split
19109           - Create window as visible to not get caught by Expose optimization
19110         * Hwnd.cs: Removed debug message
19111         * ComboBox.cs, ScrollBar.cs, ListBox.cs, TrackBar.cs, TabControl.cs,
19112           StatusBar.cs, TreeView.cs, XplatUIOSX.cs, XplatUIWin32.cs: Switched 
19113             PaintEventStart/End to use new client argument
19114         * TextBoxBase.cs:
19115           - Commented out debug messages
19116           - Switched PaintEventStart/End to use new client argument
19117         * XplatUI.cs: Added client window bool to PaintEventStart()/
19118           PaintEventEnd() calls, to support drawing in non-client areas
19119         * XplatUIDriver.cs: 
19120           - Added client window bool to PaintEventStart()/PaintEventEnd() 
19121             calls, to support drawing in non-client areas
19122           - Added conditional compile to allow using MWF BeginInvoke 
19123             on MS runtime
19124         * XplatUIX11.cs:
19125           - Added some conditional debug output
19126           - Fixed SystrayAdd() method to support new (for SystrayAdd, anyway)
19127             whole/client window split
19128           - Implemented handling of client argument to PaintEventStart()/End()
19129         * Control.cs:
19130           - Throw exception if BeginInvoke() is called and the window handle
19131             or one of the window's parent handles is not created
19132           - Added conditional compile to allow using MWF BeginInvoke on
19133             MS runtime
19134           - get_Parent(): Only sets parent if handle is created. This avoids
19135             forcing window handle creation when parent is set.
19136           - Now fires Layout and Parent changed events in proper order
19137           - Switched to use Handle instead of window.Handle for Z-Order setting,
19138             the get_Parent() patch above causes us to possibly get null for 'window'
19139           - Implemented handling of client argument to PaintEventStart()/End()
19140           - Now reports back to windows that WM_SETCURSOR was handled (to avoid
19141             default handling)
19142           - Now sends a Refresh() to all child windows when Refresh() is called
19144 2005-08-29  Peter Dennis Bartok  <pbartok@novell.com> 
19146         * Form.cs: Added (non-functional) Opacity property
19147         * XplatUIWin32.cs (SystrayAdd): Removed bogus line of code
19149 2005-08-29  Alexander Olk  <xenomorph2@onlinehome.de>
19150         * ThemeNice.cs: New theme for MWF, based on ThemWin32Classic
19151           use export MONO_THEME=nice to activate it.
19152           Currently supported controls:
19153           - Button
19154           - ComboBox
19155           - ScrollBar
19156           - TabControl (TabAlignment.Top only, other will follow)
19157         * ThemeEngine.cs: Add theme nice
19158         * ButtonBase.cs: Redraw button on MouseEnter and MouseLeave everytime,
19159           if enabled
19161 2005-08-25  Jonathan Chambers  <jonathan.chambers@ansys.com> 
19163         * Splitter.cs: Resize docked control and its neighbor.
19165 2005-08-24  Rafael Teixeira <rafaelteixeirabr@hotmail.com> 
19166         -- Making Windows with Menus layout correctly --
19167         * Form.cs : The first leg of the fix
19168                 Menu setter - adjust Client Size as needed to make space for the menu
19169                 SetClientSizeCore - doesn't call base version to be able to pass the 
19170                         menu handle to XplatUI.CalculateWindowRect
19171         * Hwnd.cs: Fix for menu_height, now gets from MenuAPI.MENU
19172         * XplatUIX11.cs: The critical second leg of the fix
19173                 GetWindowPos needs to use a recalculated client_rect
19174                 so that resizing the window doesn't break layout of child controls. 
19175                 Also a more complete rule to avoid X Server roundtrips in SetWindowPos
19176                 Lots of \t\n killed
19178 2005-08-23  Peter Dennis Bartok  <pbartok@novell.com> 
19180         * Label.cs: Now properly recalculates width and height on Font and Text
19181           changes if AutoSize is set
19183 2005-08-19  Rafael Teixeira <rafaelteixeirabr@hotmail.com> 
19184         * TreeView.cs : Revamped drawing logic, and support for FullRowSelect
19186 2005-08-19  Jordi Mas i Hernandez <jordi@ximian.com>
19188         * ImageList.cs: Makes ToString method compatible with MS
19190 2005-08-18  Jordi Mas i Hernandez <jordi@ximian.com>
19192         * MenuAPI.cs: fixes bug 75716
19194 2005-08-11 Umadevi S <sumadevi@novell.com>
19195         * Control.cs: Fixed Remove & RemoveAt to make the parent of the control null.
19197 2005-08-11 Umadevi S <sumadevi@novell.com>
19198         * Contorl.cs: Fixed ResetRightToLeft and ResetImeMode to work correctly
19200 2005-08-10  Umadevi S <sumadevi@novell.com>
19201         * CheckedListBox.cs: Fixed event firing on Adding to the CheckedListBox
19203 2005-08-07  Jordi Mas i Hernandez <jordi@ximian.com>
19205         * Menu.cs: fixes bug 75700
19206         * MenuAPI.cs: fixes navigation issues
19208 2005-08-09  Umadevi S <sumadevi@novell.com>
19209         * CheckedListBox.cs - simple fix for GetItemChecked.
19211 2005-08-08  Jordi Mas i Hernandez <jordi@ximian.com>
19213         * ComboBox.cs: Serveral fixes
19214         * ListBox.cs: Serveral fixes
19216 2005-08-05  Jordi Mas i Hernandez <jordi@ximian.com>
19218         * ComboBox.cs: Fixes FindString methods and GetItemHeight
19219         * ListBox.cs: Fixes FindString methods
19221 2005-08-05  Jordi Mas i Hernandez <jordi@ximian.com>
19223         * DataGrid.cs: fixes bugs exposed by new tests
19225 2005-08-04  Peter Dennis Bartok  <pbartok@novell.com> 
19227         * Mime.cs: Compile Mono assembly references only if compiling
19228           with Mono (Allows to build with VS.Net again)
19230 2005-07-28  Marek Safar  <marek.safar@seznam.cz>
19232         * Control.cs (PaintControlBackground): Draw background image
19233         corrrectly.
19234         (CheckForIllegalCrossThreadCalls): Stubbed.
19235         
19236         * Form.cs (OnCreateControl): Center when should be centered.
19237         
19238         * ThemeWin32Classic.cs (DrawPictureBox): Pass size.
19240 2005-07-19  Jordi Mas i Hernandez <jordi@ximian.com>
19242         * Binding.cs: Binding to properties should be case unsensitive
19244 2005-07-18 vlindos@nucleusys.com
19246         * DataGrid.cs: fixes setmember order
19248 2005-07-07  Alexander Olk  <xenomorph2@onlinehome.de>
19250         * MimeIcon.cs: added MimeIcon stuff (MimeIconEngine)
19251         * FileDialog.cs: FileDialog is now resizable and uses the new
19252           MimeIconEngine
19254 2005-07-06  Jordi Mas i Hernandez <jordi@ximian.com>
19256         * DataGridTextBoxColumn.cs: default value
19257         * GridColumnStylesCollection.cs: fixes event firing, checking MappingName
19258         * GridTableStylesCollection.cs: fixes checking MappingName
19259         * DataGridDrawingLogic.cs: fixes drawing logic issues
19260         * DataSourceHelper.cs: rewritten to make compatible with more data sources
19261         * DataGrid.cs: fixes    
19263 2005-07-06  Alexander Olk  <xenomorph2@onlinehome.de>
19265         * MimeGenerated.cs: Use case sensitive comparer for
19266           NameValueCollections
19268 2005-07-01  Jordi Mas i Hernandez <jordi@ximian.com>
19270         * DataGridTextBoxColumn.cs: bug fixes, code refactoring 
19271         * ThemeWin32Classic.cs: bug fixes, code refactoring
19272         * DataGridDrawingLogic.cs:  bug fixes, code refactoring
19273         * DataGrid.cs: bug fixes, code refactoring
19274         * DataGridTextBox.cs: bug fixes, code refactoring
19275         * DataGridColumnStyle.cs:  bug fixes, code refactoring
19276         * Theme.cs:  bug fixes, code refactoring
19278 2005-07-01  Peter Bartok  <pbartok@novell.com> 
19280         * TextControl.cs: Quick fix for the reported crash on ColorDialog
19281           and other text box usage
19283 2005-07-01  Jackson Harper  <jackson@ximian.com>
19285         * TabControl.cs: Make sure the bottom of the tab covers the pages
19286         border.
19288 2005-06-30  Peter Bartok  <pbartok@novell.com> 
19290         * Form.cs (ShowDialog): Assign owner of the dialog
19291         * TextBoxBase.cs: Always refresh caret size when deleting, caret
19292           might have been moved to a tag with different height
19294 2005-06-30  Jackson Harper  <jackson@ximian.com>
19296         * Form.cs: Don't create an infinite loop when setting focus
19297         * MenuItem.cs: Don't dirty the parents if we don't have any
19299 2005-06-29  Ben Maurer  <bmaurer@ximian.com>
19301         * LibSupport.cs: Rename
19303 2005-06-29  Peter Bartok  <pbartok@novell.com>
19305         * TextBoxBase.cs: Re-align caret after deleting a character
19306         * TextControl.cs:
19307           - DeleteChars(): Ensure that tag covers the provided position
19308           - StreamLine(): Drop reference for dropped tag
19310 2005-06-29  Peter Bartok  <pbartok@novell.com> 
19312         * TextControl.cs: 
19313           - Selections now work properly, anchoring at the initial location
19314             and properly extending in either direction (SetSelectionToCaret(),
19315             SetSelectionStart() and SetSelectionEnd())
19316           - No longer redraws the whole control on selection change, now
19317             calculates delta between previous and new selection and only
19318             invalidates/redraws that area
19319           - Fixed FindPos() math off-by-one errors
19320           - Changed DeleteChars() to verify the provided tag covers the
19321             provided position, selections may have a tag that doesn't cover
19322             the position if the selection is at a tag border
19323           - Fixed off-by-one errors in DeleteChars()
19324           - Added missing streamlining check in DeleteChars() to remove
19325             zero-length tags
19326           - Implemented Invalidate() method, now properly calculates exposures
19327             between two given lines/positions
19328           - Implemented SetSelection()
19329           - Obsoleted and removed FixupSelection()
19330           - Improved RecalculateDocument() logic, removing code duplication
19332 2005-06-29 Gonzalo Paniagua Javier <gonzalo@ximian.com>
19334         * LibSupport.cs: changes to match different input/output arguments.
19336 2005-06-29 Gonzalo Paniagua Javier <gonzalo@ximian.com>
19338         * LibSupport.cs: added libsupport.so init routine.
19340 2005-06-29  Jordi Mas i Hernandez <jordi@ximian.com>
19341         
19342         * ControlBindingsCollection.cs
19343                 - Throws an exception on null datasource when adding
19344                 - Checks for duplicated bindings when adding
19346 2005-06-28  Jackson Harper  <jackson@ximian.com>
19348         * TreeView.cs (OnKeyDown): Support left and right properly
19349         (navigates as well as expanding and collapsing.
19350         - Add support for Multiply, this expands all the selected nodes
19351         children.
19352         - Fix some tabbing.
19354 2005-06-28  Jackson Harper  <jackson@ximian.com>
19356         * TreeView.cs: Implement keyboard navigation, currently supports,
19357         LEFT, RIGHT, UP, DOWN, PGUP, PGDOWN, HOME, END, ADD, SUBTRACT. Add
19358         support for toggling checkboxes with the space bar.
19360 2005-06-28  Jackson Harper  <jackson@ximian.com>
19362         * OpenTreeNodeEnumerator.cs: Don't move past the begining of the
19363         tree.
19365 2005-06-28  Jackson Harper  <jackson@ximian.com>
19367         * TreeView.cs: Add missing event.
19369 2005-06-27  Peter Bartok  <pbartok@novell.com> 
19371         * TextControl.cs:
19372           - Made line ending size configurable (now allows for counting 
19373             lineendings as \n or \r\n)
19374           - Added margin to viewport to keep caret visible on right side
19375           - Fixed translation routines for line/pos to documentpos to consider
19376             cr/lf when counting (Fixes RichTextBox.SelectionFont issues)
19377           - Fixed some line-endings to be unix style
19378           - Fixed Document.FormatText to perform it's calculations 1-based
19379           - Added descriptions for a few methods that might otherwise get 
19380             used wrong
19381           - Added NOTE section with some basic conventions to remember at 
19382             the top of the file
19383           - Major fixup for RichTextBox selection drawing:
19384             * Fixed crashes when multiple tags on a single line were selected
19385             * fixed selection box drawing not overlaying text
19386             * fixed bogus offset calculation for tags not starting at index 1
19387             * Switched behaviour from using multiple Substrings of a 
19388               StringBuilder.ToString() to using multiple 
19389               StringBuilder.ToString(start, length) statements, hoping this is
19390               faster (kept original version commented out in the code, in case
19391               original version was faster)
19392         * TextBox.cs (set_TextAlignment): TextBox always needs to wrap if 
19393           alignment != Left
19394         * TextBoxBase.cs (CalculateDocument): Made protected so RichTextBox can
19395           call it as well
19397 2005-06-27  Jackson Harper  <jackson@ximian.com>
19399         * TabControl.cs: Move to the left and right with the arrow
19400         keys. These keys don't cycle beyond first and last like
19401         tab. Refresh all the tabs when scrolling them to the left or
19402         right.
19404 2005-06-27  Jackson Harper  <jackson@ximian.com>
19406         * TabControl.cs:
19407           - ToString: Added method
19408           - CreateParams: Remove TODO and comment
19409           - OnKeyDown: Cycle through bounds properly.
19410           - SelectedIndex: Scroll to the right or left if we need to
19411           display the newly selected tab.
19413 2005-06-23  Jackson Harper  <jackson@ximian.com>
19415         * TabControl.cs: Stay in bounds when cycling. Make sure Handled is
19416         set.
19418 2005-06-23  Jackson Harper  <jackson@ximian.com>
19420         * TabControl.cs: Keyboard handling. We now support CTRL-TAB,
19421         CTRL-SHIFT-TAB, and HOME, END are there any others?
19423 2005-06-23  Jackson Harper  <jackson@ximian.com>
19425         * XplatUIX11.cs: Get the modifier keys from the keyboard driver.
19427 2005-06-22  Jordi Mas i Hernandez <jordi@ximian.com>
19428         
19429         * DataGridTextBoxColumn.cs: fixes and enhancements
19430         * ThemeWin32Classic.cs: fixes and enhancements
19431         * DataGridBoolColumn.cs:  fixes and enhancements
19432         * DataGridDrawingLogic.cs:  fixes and enhancements
19433         * CurrencyManager.cs: fixes and enhancements
19434         * DataGrid.cs: fixes and enhancements
19435         * DataGridColumnStyle.cs:  fixes and enhancements
19437 2005-06-22  Jackson Harper  <jackson@ximian.com>
19439         * TabControl.cs: Add some missing methods that just call into the
19440         base. Make the TabPageCollection's IList interface behave in the
19441         same manner as the MS implementation.
19443 2005-06-22  Peter Bartok  <pbartok@novell.com> 
19445         * TextControl.cs: Added sanity check
19446         * TextBoxBase.cs: 
19447           - Fixed wrapping behaviour, don't set wrap on single line controls
19448             (this fixes the breakage of colordialog introduced in an earlier
19449              checkin)
19450           - Added rudimentary support for autoscrolling right-aligned controls
19451             (still needs fixing, also, center alignment scroll is missing)
19453 2005-06-22  Jordi Mas i Hernandez <jordi@ximian.com>
19454         
19455         * ScrollBar.cs: Fixes thumbpos on Maximum values
19457 2005-06-21  Jonathan Chambers <jonathan.chambers@ansys.com>
19458         
19459         * PropertyGridView.cs: Pass context information to UITypeEditors 
19461 2005-06-21  Peter Bartok  <pbartok@novell.com> 
19463         * TextBoxBase.cs:
19464           - Now calling PositionCaret with absolute space coordinates
19465           - Enabled vertical scrolling
19466           - Better tracking of scrollbar changes, tied into WidthChange
19467             event
19468           - Improved cursor tracking
19469           - Removed debug output
19470         * TextControl.cs:
19471           - PositionCaret coordinates are now works in absolute space, not 
19472             the canvas
19473           - Improved tracking of document size
19474           - Added events for width and height changes
19476 2005-06-21  Peter Bartok  <pbartok@novell.com>
19478         * Form.cs: Set focus to active control when form is activated
19479         * TextControl.cs: 
19480           - Added word-wrap functionality to RecalculateLine() 
19481           - Added some short function descriptions for VS.Net to aid in
19482             writing dependent controls
19483           - Added Caret property, returning the current coords of the caret
19484           - Added ViewPortWidth and ViewPortHeight properties
19485           - Added Wrap property
19486           - Added CaretMoved event
19487           - Removed some old debug code
19488           - Split() can now create soft splits
19489           - Added PreviousTag()/NextTag() to allow walking "tag-lists"
19490           - Added method to format existing text
19491           - Fixed size/alignment calculations to use viewport
19492           - RecalculateDocument now can handle changing line-numbers while
19493             calculating lines
19495         * TextBox.cs:
19496           - Added some wrap logic, we don't wrap if alignment is not left
19497           - Added casts for scrollbar var, base class switched types to
19498             also support RichTextBoxA
19499           - Implemented handling of scrollbar visibility flags
19501         * TextBoxBase.cs:
19502           - Switched scrollbars type to RichTextBoxScrollBars to support
19503             RichTextBox
19504           - Added tracking of canvas width/height
19505           - Switched scrollbars to be not selectable (to keep focus on text)
19506           - Added central CalculateDocument() method to handle all redraw
19507             requirements
19508           - Added ReadOnly support
19509           - Added WordWrap support
19510           - Fixed handling of Enter key (we now treat it as a DialogKey)
19511           - Fixed caret positioning when h or v scroll is not zero
19512           - Fixed placing/generation of vertical scrollbar
19513           - Added CalculateScrollBars() method to allow updating scrollbar
19514             limits and visibility
19515           - Fixed handling of horizontal scroll
19516           - Added handling of vertical scroll
19517           - Implemented auto-'jump' when caret moves to close to a left or
19518             right border and there is text to be scrolled into view (currently
19519             there's the potential for a stack overflow, until a bug in
19520             scrollbar is fixed)
19522 2005-06-21  Geoff Norton  <gnorton@customerdna.com>
19523         
19524         * XplatUIOSX.cs: Initial implementation of WM_ERASEBKGND
19526 2005-06-19  Alexander Olk  <xenomorph2@onlinehome.de>
19528         * Mime.cs:
19529         - added inodes.
19530         - return application/x-zerosize for files with size zero
19531           (if no extension pattern matches).
19532         - check matches collection for strings too.
19533         - return only the first mime type if the name value
19534           collection has more than one mime type.
19536 2005-06-18  Jonathan Chambers <jonathan.chambers@ansys.com>
19537         
19538         * PropertyGrid.cs: Cleaned up some TODOs
19539         * PropertyGridView.cs: Added support for UITypeEditors
19541 2005-06-17  Jordi Mas i Hernandez <jordi@ximian.com>
19542         
19543         * DataGrid.cs: clears cached value
19545 2005-06-17  Jordi Mas i Hernandez <jordi@ximian.com>
19547         * DataGridTextBoxColumn.cs: new rows, speed improvements, fixes, readonly prop.
19548         * DataGridDrawingLogic.cs: new rows, speed improvements, fixes, readonly prop.
19549         * DataGrid.cs: new rows, speed improvements, fixes, readonly prop.
19550         * DataGridColumnStyle.cs: new rows, speed improvements, fixes, readonly prop.
19551         
19552 2005-06-16  Jordi Mas i Hernandez <jordi@ximian.com>
19554         * ThemeWin32Classic.cs: fixes colour
19556 2005-06-15  Peter Bartok  <pbartok@novell.com>
19558         * MWFCategoryAttribute.cs: Added (Needed for PropertyGrid designer support)
19559         * MWFDescriptionAttribute.cs: Added (Needed for PropertyGrid designer support)
19560         * ButtonBase.cs: Added MWFCategory and MWFDescription attributes
19561         * Control.cs: Added some MWFCategory and MWFDescription attributes
19562         * ScrollBar.cs: Added some MWFCategory and MWFDescription attributes
19564 2005-06-15  Alexander Olk  <xenomorph2@onlinehome.de>
19566         * Mime.cs, MimeGenerated.cs: First draft of MWF mime stuff, see Mime.cs for
19567         usage
19569 2005-06-14  Jordi Mas i Hernandez <jordi@ximian.com>
19571         * DataGridTextBoxColumn.cs: default datagrid settings for Default Styles, fixes
19572         * DataGridTableStyle.cs: default datagrid settings for Default Styles, fixes
19573         * DataGridDrawingLogic.cs: default datagrid settings for Default Styles, fixes
19574         * DataGridBoolColumn.cs: default datagrid settings for Default Styles, fixes
19575         * DataGrid.cs: default datagrid settings for Default Styles, fixes
19576         * DataGridColumnStyle.cs: default datagrid settings for Default Styles, fixes
19578 2005-06-13  Jackson Harper  <jackson@ximian.com>
19580         * XplatUIX11.cs: Override SetAllowDrop on X11 so an error message
19581         isn't printed when the user enables dropping. (X11 does accept
19582         drops).
19583         
19584 2005-06-13  Jackson Harper  <jackson@ximian.com>
19586         * TreeView.cs: Remove some TODOS.
19588 2005-06-13  Jackson Harper  <jackson@ximian.com>
19590         * Form.cs: Hook into the mdi framework.
19591         * MdiClient.cs: Use the base control collections add method so
19592         parents get setup correctly. Set the default back colour and dock
19593         style.
19594         * MdiChildContext.cs: New class, this bad actor handles an
19595         instance of an MDI window. Right now there is only basic
19596         support. You can drag, close, and resize windows. Minimize and
19597         Maximize are partially implemented.
19599 2005-06-13  Jackson Harper  <jackson@ximian.com>
19601         * XplatUIX11.cs: Mash numbers together properly, otherwise we get
19602         freaky when both vals are negative. NOTE: There are probably other
19603         places in XplatUIX11 that this needs to be done.
19605 2005-06-13  Jordi Mas i Hernandez <jordi@ximian.com>
19607         * DataGrid.cs: implement missing methods, move KeyboardNavigation
19608         * DataGridColumnStyle.cs: fixes signature
19610 2005-06-12  Jackson Harper  <jackson@ximian.com>
19612         * XplatUIX11.cs: Use sizing cursors similar to the ones on
19613         windows.
19615 2005-06-11  Jackson Harper  <jackson@ximian.com>
19617         * StatusBarPanel.cs: Signature cleanups. Implement
19618         BeginInit/EndInit.
19620 2005-06-10  Jordi Mas i Hernandez <jordi@ximian.com>
19622         * DataGridTextBoxColumn.cs: Honors aligment
19623         * GridColumnStylesCollection.cs: Contains is case unsensitive
19624         * GridTableStylesCollection.cs: several fixes
19625         * DataGridTableStyle.cs: default column creation
19626         * DataGridDrawingLogic.cs: fixes
19627         * CurrencyManager.cs: ListName property
19628         * DataGrid.cs: multiple styles support
19629         * DataGridColumnStyle.cs: fixes
19630         
19632 2005-06-10  Peter Bartok  <pbartok@novell.com>
19634         * Control.cs(Select): Moved SetFocus call to avoid potential
19635           loops if controls change the active control when getting focus
19636         * UpDownBase.cs: Fixes to allow proper keyboard focus after clicking
19637           the up/down buttons
19639 2005-06-10  Matthias Felgner  <matthiasf@voelcker.ocm>
19641         * ImageListConverter.cs: Implemented
19643 2005-06-10  John BouAntoun <jba-mono@optusnet.com.au>
19645         * MonthCalendar.cs: Wired in NumericUpDown control for year
19647 2005-06-10  John BouAntoun <jba-mono@optusnet.com.au>
19649         * MonthCalendar.cs: Removed MonoTodo attributes on Click and
19650           DoubleClick events, since they are not meant to be fired.
19652 2005-06-09  Peter Bartok  <pbartok@novell.com>
19654         * UpDownBase.cs, NumericUpDown.cs, DomainUpDown.cs: Integrated
19655           Jonathan's standalone controls into MWF, implemented missing
19656           events, attributes and methods; added xxxAccessible classes
19657         * AccessibleObject.cs: Made fields internal so other classes
19658           can change them if needed
19660 2005-06-09  Jonathan Gilbert  <2a5gjx302@sneakemail.com>
19662         * UpDownBase.cs: Complete implementation
19663         * NumericUpDown.cs: Complete implementation
19664         * DomainUpDown.cs: Complete implementation
19666 2005-06-09  Jordi Mas i Hernandez <jordi@ximian.com>
19668         * DataGridTextBoxColumn.cs: drawing fixes
19669         * DataGridCell.cs: fixes ToString method to match MSNet
19670         * DataGridTableStyle.cs: fixes
19671         * DataGridBoolColumn.cs: fixes, drawing
19672         * DataGridDrawingLogic.cs: fixes, new methods
19673         * DataGridTextBox.cs: Keyboard and fixes
19674         * DataGrid.cs:
19675                 - Keyboard navigation
19676                 - Scrolling fixes
19677                 - Row selection (single, multiple, deletion, etc)
19678                 - Lots of fixes
19679         
19680 2005-06-07  Jackson Harper  <jackson@ximian.com>
19682         * ThemeWin32Classic.cs: Clear the background area when drawing
19683         buttons.
19685 2005-06-06  Peter Bartok  <pbartok@novell.com>
19687         * ImageListStreamer.cs: Fixed signature for GetData
19688         * CheckBox.cs: Fixed base class for CheckBoxAccessibleObject
19689         * ComboBox.cs:
19690           - Added missing ChildAccessibleObject class
19691           - Added missing OnXXXFocus overrides, switched to using those
19692             instead of the event handler
19693         * Control.cs:
19694           - Added Parent property for ControlAccessibleObject
19695           - Fixed signatures
19696           - Fixed attributes
19697           - Added ResetBindings()
19698         * ListBindingConverter.cs: Implemented some methods
19699         * ButtonBase.cs: Added missing ButtonBaseAccessibleObject class
19700         * ImageList.cs: Implemented basic handle scheme, removed TODOs
19701         * ContainerControl.cs: Fixed signature, now subscribing to the
19702           ControlRemoved event instead of overriding the handler, LAMESPEC
19703         * CurrencyManager.cs: Added missing attribute
19704         * MonthCalendar.cs: Added missing properties
19706 2005-06-06  Jordi Mas i Hernandez <jordi@ximian.com>
19708         * DataGridColumnStyle.cs: fixes for DataGridColumnStyle
19709         
19710 2005-06-06  Gaurav Vaish and Ankit Jain
19712         * DataSourceHelper.cs: Gaurav Vaish and Ankit Jain patch for databinding
19713         * DataGrid.cs: Gaurav Vaish and Ankit Jain patch for databinding
19714         
19715 2005-06-06  Jordi Mas i Hernandez <jordi@ximian.com>
19717         * Control.cs: fixes CreateParams Width / Height.
19719 2005-06-05  Peter Bartok  <pbartok@novell.com>
19721         * Win32DnD.cs: Removed compilation warnings
19723 2005-06-05  Peter Bartok  <pbartok@novell.com>
19725         * Control.cs (CreateParams): Since we don't know if one of the
19726           properties we use is overridden, lets make sure if we fail accessing
19727           we continue with a backup plan
19729 2005-06-05  Peter Bartok  <pbartok@novell.com>
19731         * Win32DnD.cs:
19732           - Removed debug output
19733           - Added MarshalAs attribute to ensure proper marshalling of FORMATETC
19734             struct
19735           - Plugged resource leak
19736         * XplatUIStructs.cs: Changed ClipboardFormats size to ushort, to match
19737           MS size
19739 2005-06-05  Peter Bartok  <pbartok@novell.com>
19741         * XplatUIWin32.cs: Removed DnD code
19742         * Win32DnD.cs: Implemented drop source and drop target functionality
19744 2005-06-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
19746         * UpDownBase.cs: remove duplicate addition of event, enable some code
19747         that was commented out.
19748         * NumericUpDown.cs: added missing attributes and Hexadecimal property.
19749         Validate input when a key is pressed. It works fine now for every
19750         combination of Hexadecimal. Only missing some drawing love when sharing
19751         space with other controls.
19753 2005-06-04  Peter Bartok  <pbartok@novell.com>
19755         * Control.cs:
19756           - We need to pass a window for DragDrop, so enable callback events
19757           - Added DnD callback events when being a DragSource
19758         * XplatUI.cs (StartDrag): Added window handle argument
19759         * XplatUIDriver.cs (StartDrag): Added window handle argument
19760         * QueryContinueDragEventArgs: Made fields internally accessible so
19761           drivers can set them
19762         * GiveFeedbackEventArgs: Made fields internally accessible so drivers
19763           can set them
19765 2005-06-03  Jordi Mas i Hernandez <jordi@ximian.com>
19767         * DataGridTextBoxColumn.cs: column text editing
19768         * DataGridTableStyle.cs: Respect columns styles created by the user
19769         * DataGridDrawingLogic.cs: lots of drawing fixes and enhanments
19770         * DataGridBoolColumn.cs: bool column editing
19771         * DataGrid.cs: fixes to scrolling, properties, etc
19772         * DataGridTextBox.cs: handle keyboard
19773         * DataGridColumnStyle.cs: fixes
19775 2005-06-02  Jackson Harper  <jackson@ximian.com>
19777         * ImageListStreamer.cs: Somewhat broken implementation of
19778         GetObjectData. The RLE needs some work to match MS properly.
19780 2005-06-02  Jackson Harper  <jackson@ximian.com>
19782         * X11Dnd.cs: Attempting to keep at least one file in MWF
19783         monostyled.
19785 2005-06-02  Peter Bartok  <pbartok@novell.com>
19787         * X11DnD.cs: Use Marshal.SizeOf instead of sizeof, no /unsafe required
19788           that way
19790 2005-06-02  Peter Bartok  <pbartok@novell.com>
19792         * Control.cs: Removed MonoTODO from DoDragDrop and added call to Xplat
19793         * XplatUI.cs: Added DoDragDrop() method
19794         * XplatUIDriver.cs: Added DoDragDrop() method
19796 2005-06-02  Jackson Harper  <jackson@ximian.com>
19798         * Splitter.cs: Implement BorderStyle.
19800 2005-06-02  Jackson Harper  <jackson@ximian.com>
19802         * XplatUIX11.cs: Tie into the X11Dnd subsystem.
19803         * X11Dnd.cs: New file. A subsystem that handles drag and drop on
19804         X11 using XDND.
19806 2005-06-02  Peter Bartok  <pbartok@novell.com>
19808         * DataObject.cs:
19809           - Added Data setter
19810           - Fixed broken insertion code for SetData, now also
19811             overwrites any existing entry of the same format name
19812         * Hwnd.cs: Added list of pointers that automatically gets
19813           freed when the window is disposed
19814         * XplatUI.cs: Call driver initialization method when loading
19815           a driver
19816         * Control.cs:
19817           - OnDragLeave takes EventArgs, not DragEventArgs
19818           - Added setting of WS_EX_ACCEPTFILES style when dropping is
19819             supported
19820           - Forces style update when drop state changes
19821         * XplatUIWin32.cs: Implemented Drag'n'Drop (as good as possible,
19822           not perfect since we cannot (yet) call the IDataObject.GetData()
19823           method, we keep getting 0x80004005 error, dunno why)
19825 2005-06-02  Peter Bartok  <pbartok@novell.com>
19827         * DragEventArgs.cs: Make fields internal so we can cache the
19828           object and re-set the fields from XplatUI
19830 2005-06-02  Jackson Harper  <jackson@ximian.com>
19832         * Control.cs: Add some internal methods so the DnD subsystem can
19833         raise DnD events. Also call into the driver when AllowDrop is set.
19834         * XplatUI.cs:
19835         * XplatUIDriver.cs: New method for setting whether or not a window
19836         is allowed to accept drag and drop messages.
19837                 
19838 2005-06-01  Jordi Mas i Hernandez <jordi@ximian.com>
19839         
19840         * ScrollBar.cs: Make sure that values sent in Scroll events
19841         are always between Maximum and Minimum.
19843 2005-06-01  Marek Safar  <marek.safar@seznam.cz>
19845         * Menu.cs: Call MenuChanged when menuitem visibility has been
19846         changed.
19847         * MenuItem.cs: Rebuild menu when item is (not) visible.
19848         * MainMenu.cs: MainMenu has special MenuChanged.
19849         * Theme.cs: Caption and FrameBorderSize are not fixed.
19850         * XplatUI.cs: Added CaptionHeight,FrameBorderSize.
19851         * XplatUIDriver.cs: Introduced Caption and FrameBorderSize.
19852         * XplatUIX11.cs,
19853         * XplatUIOSX: Caption and FrameBorderSize not implemented yet.
19854         * XplatUIWin32.cs: Get Caption and FrameBorderSize from system.
19856 2005-05-30  Jackson Harper  <jackson@ximian.com>
19858         * DataFormat.cs: We can't statically initialize this stuff because
19859         it calls into the xplatui and could create a loop. So we lazy init
19860         it.
19862 2005-05-28  Jackson Harper  <jackson@ximian.com>
19864         * Control.cs: Proper implementation of Product(Name/Version).
19866 2005-05-27  Jackson Harper  <jackson@ximian.com>
19868         * DataObject.cs: Dont crash if no data is found.
19870 2005-05-26  Rafael Teixeira  <rafaelteixeirabr@hotmail.com>
19871         * MdiClient.cs: Add missing Localizable attribute to BackgroundImage property
19872                 as per status page, guessing it should be set to true
19874 2005-05-26  Jordi Mas i Hernandez <jordi@ximian.com>
19876         * DataGridTextBoxColumn.cs: Draws text and basic text formatting
19877         * DataGridTableStyle.cs: set proper formatting text, def header text
19878         * ThemeWin32Classic.cs: new themable paramaters
19879         * DataGridBoolColumn.cs: paint check box, get data, fixes
19880         * DataGridDrawingLogic.cs: huge improvements in painting, fixes, new methods
19881         * DataGrid.cs: fixes properties, implements vertical and horizontal scrolling
19882         * DataGridColumnStyle.cs: fixes
19883         * Theme.cs: new themable paramaters
19884                 
19885 2005-05-26  Peter Bartok  <pbartok@novell.com>
19887         * ContainerControl.cs: Pass AdjustFormScrollbars() call on to base
19889 2005-05-24 Jonathan S. Chambers <jonathan.chambers@ansys.com>
19890         * Control.cs: Fixed LowOrder and HighOrder to preserve sign.
19892 2005-05-24  Peter Bartok  <pbartok@novell.com>
19894         * OpenFileDialog.cs, Form.cs, Menu.cs, GroupBox.cs, UserControl.cs,
19895           Label.cs, DataGridTextBoxColumn.cs, PropertyGrid.cs, ErrorProvider.cs
19896           Splitter.cs, Control.cs, FontDialog.cs, TabPage.cs,
19897           FolderBrowserDialog.cs, HelpProvider.cs, DataGridTableStyle.cs,
19898           NotifyIcon.cs, FileDialog.cs, ListView.cs, SaveFileDialog.cs,
19899           ToolBarButton.cs, ImageList.cs, DataGridBoolColumn.cs, Panel.cs,
19900           DataGrid.cs, DataGridTextBox.cs, ListBox.cs, TrackBar.cs,
19901           AxHost.cs, TabControl.cs, ScrollableControl.cs, ToolBar.cs,
19902           DataGridColumnStyle.cs, PictureBox.cs, DateTimePicker.cs,
19903           StatusBar.cs, MonthCalendar.cs, TreeView.cs: Added
19904           missing attributes, etc
19905         * DataGridPreferredColumnWidthTypeConverter.cs: Added
19907 2005-05-24  Peter Bartok  <pbartok@novell.com>
19909         * Help.cs: Added, implemented trivial functions, throws up MessageBox
19910           when user tries to get help
19911         * DataObject.cs, DataFormats.cs, LinkArea.cs,
19912           SelectionRangeConverter.cs, Clipboard.cs : Removed unused variables
19913           to suppress warnings
19914         * XplatUIWin32.cs, XplatUIOSX.cs, XplatUIX11.cs: Removed unused code to
19915           avoid unreachable code warning
19917 2005-05-20  Peter Bartok  <pbartok@novell.com>
19919         * CursorConverter.cs (ConvertTo): Switched to use Cursor.GetObjectData
19921 2005-05-20  Jordi Mas i Hernandez <jordi@ximian.com>
19923         * DataGridTextBoxColumn.cs: Basic painting methods
19924         * DataGridTableStyle.cs: Set table style in the column
19925         * ThemeWin32Classic.cs: Use Theme for colors
19926         * DataGridDrawingLogic.cs: Implement more drawing
19927         * DataGrid.cs: drawing, theming, enhacements, fixes
19928         * DataGridColumnStyle.cs: fixes, drawing
19929         * Theme.cs: theming for Datagrid
19931 2005-05-20  Peter Bartok  <pbartok@novell.com>
19933         * Cursor.cs: Implemented GetObjectData() method
19935 2005-05-20  Peter Bartok  <pbartok@novell.com>
19937         * Cursors.cs: Added setting of cursor name
19938         * Cursor.cs:
19939           - Implemented constructors
19940           - Implemented Draw and DrawStretched
19941           - Implemented Current property
19942           - Implemented == and != operators
19943           - Implemented Dispose()
19944           - Implemented ToString
19945           - Added missing attributes
19946         * XplatUIX11.cs:
19947           - Added missing reset for OverrideCursor when DoEvents is called
19948           - Fixed creation of cursor, logic was wrong
19949         * XplatUIWin32.cs:
19950           - Added missing reset for OverrideCursor when DoEvents is called
19951           - Fixed creation of cursor, bit arrays were swapped
19952         * Clipboard.cs: Removed obsolete MonoTODO attribute
19954 2005-05-20  Jordi Mas i Hernandez <jordi@ximian.com>
19956         * ComboBox.cs: fixes OnSelectedItemChanged
19957         * ControlBindingsCollection.cs: fixes item range check
19959 2005-05-20  Jordi Mas i Hernandez <jordi@ximian.com>
19961         * UpDownBase.cs:
19962                 - Calc preferred height properly
19963                 - Implement missing properties
19964                 
19965         * NumericUpDown.cs: Implement missing events
19967 2005-05-19  Jackson Harper  <jackson@ximian.com>
19969         * TabControl.cs: New method that resizes the tab pages before
19970         redrawing them. This as needed as the control is double buffered
19971         and sizing will not be recalculated unless ResizeTabPages is
19972         called.
19973         * TabPage.cs: Set base.Text instead of Text in the constructor so
19974         that UpdateOwner does not get called. Use the new Redraw method of
19975         TabControl instead of Refresh so the sizing is recalculated.
19976         * ThemeWin32Classic.cs: Draw the text for button tabs.
19978 2005-05-19  Jackson Harper  <jackson@ximian.com>
19980         * Control.cs: Paint control background images. Fix typo where
19981         PaintControlBackground was not getting called correctly.
19983 2005-05-19  Peter Bartok  <pbartok@novell.com>
19985         * ScrollableControl.cs (DisplayRectangle): Undid my last change until
19986           I can investigate, apparently I broke FileDialog
19988 2005-05-19  Marek Safar  <marek.safar@seznam.cz>
19990         * AxHost.cs: Some simple properties.
19991         * Control.cs: window must be accessible after ctor.
19992         * Form.cs: Added TransparencyKey property.
19993         * TextBoxBase.cs: Implemented Clear. Text property can be null.
19994         * XplatUIWin32.cs: SetBorderStyle implemented.
19996 2005-05-18  Peter Bartok  <pbartok@novell.com>
19998         * DataObject.cs: Entries are not global but particular to the
19999           DataObject, now it behaves that way
20000         * XplatUIWin32.cs: Implemented Clipboard methods
20001         * Clipboard.cs: Implemented
20002         * ScrollableControl.cs (DisplayRectangle): Fixed calculation
20003         * XplatUIOSX.cs: Updated to final clipboard prototypes
20004         * XplatUIX11.cs: Implemented Clipboard methods
20005         * XplatUIDriver.cs: Updated to final clipboard prototypes
20006         * XplatUIStructs.cs:
20007           - Added BITMAPINFOHEADER struct
20008           - Added ClipboardFormats enum
20009         * X11Structs.cs:
20010           - Added ClipboardStruct
20011           - Added Atom enum items for clipboard types
20012           - Fixed atom types for Selection event structures
20013         * DataFormats.cs:
20014           - Added internal properties and methods for drivers to enumerate
20015             all known formats
20016           - Switched initialization method to allow drivers to assign their
20017             own IDs even for the MS predefined clipboard IDs
20018         * XplatUI.cs: Updated to final clipboard interface
20020 2005-05-18 Jonathan S. Chambers <jonathan.chambers@ansys.com>
20021         * PropertyGridView.cs: Fixed compiler warnings.
20023 2005-05-18 Jonathan S. Chambers <jonathan.chambers@ansys.com>
20024         * PropertyGrid.cs: Added some event calls
20025         * PropertyGridView.cs: Change drawing code to use double buffering
20026         * PropertyGridTextBox.cs: Changed Text property name
20027         * GridItem.cs: Added Bounds property.
20028         * GridEntry.cs: Added Bounds property.
20030 2005-05-17  Lluis Sanchez Gual  <lluis@novell.com>
20032         * Binding.cs: Use IsInstanceOfType instead of IsAssignableFrom
20033         since GetType() may not return the correct type if the object is
20034         a remoting proxy.
20036 2005-05-17  Jordi Mas i Hernandez <jordi@ximian.com>
20038         * TreeNodeCollection.cs: fixes get/set item ranges
20039         
20040 2005-05-15  Jordi Mas i Hernandez <jordi@ximian.com>
20042         * ListBox.cs: Kazuki Oikawa's PreferredHeight and ItemHeight fixes
20043                 
20044 2005-05-15  Jordi Mas i Hernandez <jordi@ximian.com>
20046         * ComboBox.cs: Fix item range comparation
20047         * ListView.cs: Fix item range comparation
20049 2005-05-03  Alexander Olk  <xenomorph2@onlinehome.de>
20051         * FontDialog.cs:
20052           - Clear example panel when OnPaint is called
20053           - Better solution for displaying the example panel text
20054           - Select default indexes in the ListBoxes
20056 2005-05-11  Geoff Norton  <gnorton@customerdna.com>
20058         * XplatUIOSX.cs: Avoid painting into invisible views.  Fixes #74926
20060 2005-05-11  Peter Bartok  <pbartok@novell.com>
20062         * LinkArea.cs: Added and implemented LinkAreaTypeConverter class
20063         * SelectionRangeConverter.cs: Implemented
20064         * PropertyGrid.cs: Fixed attribute value
20065         * Control.cs:
20066           - Invoke(): Don't call Begin/EndInvoke if it is not neccessary
20067           - Added Sebastien Pouliot's CAS Stack Propagation fixes
20068         * XplatUIDriver.cs: Added new XplatUIDriverSupport class, for code
20069           that's common to all drivers. First methods to go there are
20070           Sebastien Pouliot's CAS Stack Propagation helper methods
20071         * XplatUIWin32.cs, XplatUIX11.cs, AsyncMethodData.cs: Fixes by
20072           Sebastien Pouliot for CAS Stack Propagation
20074 2005-05-11  Geoff Norton  <gnorton@customerdna.com>
20076         * OSXStructs.cs:
20077           XplatUIOSX.cs: More cosmetic cleanup courtesy of Artyom Tyazhelov (Artyom.Tyazhelov@helmes.ee)
20079 2005-05-12  Jordi Mas i Hernandez <jordi@ximian.com>
20081         * DataGridTextBoxColumn.cs: fixed some members
20082         * GridColumnStylesCollection.cs: indexed column is case insensitive
20083         * DataGridTableStyle.cs: fixes
20084         * ThemeWin32Classic.cs: add new theme parameter
20085         * Theme.cs: add new theme parameter
20086         * DataGridDrawingLogic.cs: Datagrid's drawing logic
20087         * DataGrid.cs: fixes, new internal properties, etc.
20088         * DataGridColumnStyle.cs: allows to set grid value
20089         *
20091 2005-05-10  Peter Bartok  <pbartok@novell.com>
20093         * AccessibleObject.cs:
20094           - Removed MonoTODO attribute on help, method is correct
20095           - Fixed Bounds property
20096         * AxHost.cs: Moved MonoTODO
20097         * ButtonBase.cs: Now setting AccessibleObject properties
20098         * RadioButton.cs: Setting proper AccessibleObject role
20099         * CheckBox.cs: Setting proper AccessibleObject role
20100         * ControlBindingsCollection.cs: Added properties, methods and attributes
20101         * DataFormats.cs: Fixed awkward internal API, and changed to enable
20102           userdefined DataFormats.Format items as well
20103         * ListControl.cs: Removed data_member from the public eye
20104         * OpenFileDialog.cs:
20105           - Made class sealed
20106           - Added missing attributes
20107         * SaveFileDialog.cs: Added missing attributes
20108         * ImageListStreamer.cs: Fixed code that caused warnings
20109         * LinkLabel.cs: Removed unreachable code
20110         * TreeView.cs: Fixed code that caused warnings
20111         * PropertyGridView.cs: Fixed code that caused warnings
20112         * GridColumnStylesCollection.cs: Added missing attributes
20113         * GridTableStylesCollection: Added missing attribute
20114         * PropertyManager: Added .ctor
20115         * SecurityIDType: Added
20116         * DataObject.cs: Implemented class
20117         * LinkArea.cs: Added missing attribute
20119 2005-05-11  Jordi Mas i Hernandez <jordi@ximian.com>
20121         * RadioButton.cs: call base method to allow to fire OnClick event
20122         * UpDownBase.cs: OnMouseUp call base method
20123         * CheckedListBox.cs: call base method before returning
20124         * TrackBar.cs: call base method before returning
20125         
20127 2005-05-10  Peter Bartok  <pbartok@novell.com>
20129         * XplatUIX11.cs: Fix for #74902, check pending timers when peeking
20130           for messages
20132 2005-05-10  Peter Bartok  <pbartok@novell.com>
20134         * DataFormats.cs: Implemented
20135         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs,
20136           XplatUIX11.cs: Added Clipboard APIs
20137         * XplatUIWin32.cs: Implemented Clipboard APIs
20138         * FolderBrowserDialog.cs: Added missing event, attributes
20140 2005-05-10  Jordi Mas i Hernandez <jordi@ximian.com>
20142         * CheckBox.cs: call base method to allow to fire OnClick event
20144 2005-05-09  Sebastien Pouliot  <sebastien@ximian.com>
20146         * XplatUI.cs: Use PlatformID.Unix under NET_2_0.
20148 2005-05-06  Peter Bartok  <pbartok@novell.com>
20150         * XplatUIX11.cs: Redid Jackson's fix, it was causing a busy loop
20151         * Screen.cs: Implemented
20152         * HelpNavigator.cs: Added
20153         * XplatUIWin32.cs: Added SystemParametersInfo call, fixed WorkArea
20154           property
20155         * HelpProvider.cs: Implemented all we can do until we have a CHM
20156           help library (which means that "What's This" does work now)
20158 2005-05-06  Jackson Harper  <jackson@ximian.com>
20160         * XplatUIX11.cs: Fix waking up the main loop.
20161                 
20162 2005-05-05  Peter Bartok  <pbartok@novell.com>
20164         * XplatUI.cs: Updated revision
20165         * Form.cs: Removed enless loop
20166         * GroupBox.cs (OnPaint): Added call to base.OnPaint()
20167         * Label.cs (OnPaint): Added call to base.OnPaint()
20168         * ToolTip.cs: Made ToolTipWindow reusable for other controls
20169         * LinkLabel.cs (OnPaint): Added call to base.OnPaint()
20170         * UpDownBase.cs (OnPaint): Moved base.OnPaint() call to end of method
20171         * AxHost.cs: Added
20172         * ButtonBase.cs: Moved base.OnPaint() call to end of method
20173         * ThemeWin32Classic.cs: Replaced references to ToolTip with references
20174           to ToolTip.ToolTipWindow for drawing and size methods; this allows
20175           reuse of ToolTipWindow by other controls
20176         * SizeGrip.cs: Moved base.OnPaint() call to end of method
20177         * XplatUIX11.cs: Now clipping drawing area (experimental)
20178         * PictureBox.cs: Moved base.OnPaint() call to end of method
20179         * Theme.cs: Fixed ToolTip abstracts to match new format
20180         * ErrorProvider.cs: Implemented
20182 2005-05-05  Jordi Mas i Hernandez <jordi@ximian.com>
20184         * Label.cs: fire events using OnAutoSizeChanged and OnTextAlignChanged
20185         * LinkLabel.cs:
20186                 - Adds cursors
20187                 - Handles focus
20188                 - Implements LinkBehavior
20189                 - Fixes many issues
20191 2005-05-03  Jackson Harper  <jackson@ximian.com>
20193         * ListView.cs: Calculate the scrollbar positioning on resize and
20194         paint, so they get put in the correct place.
20196 2005-05-03  Alexander Olk  <xenomorph2@onlinehome.de>
20198         * ColorDialogs.cs: The small color panels are now handled by
20199           SmallColorControl. This fixes drawing of the focus rectangle
20200           and adds a 3D border.
20202 2005-05-03  Peter Bartok  <pbartok@novell.com>
20204         * Control.cs: Modified version of Jonathan Chamber's fix for
20205           double-buffering
20207 2005-05-03  Jackson Harper  <jackson@ximian.com>
20209         * ListView.cs: Remove redraw variable. Control now handles whether
20210         or not a redraw needs to be done, and will only raise the paint
20211         event if redrawing is needed.
20213 2005-05-03  Jackson Harper  <jackson@ximian.com>
20215         * Splitter.cs: No decorations for the splitter form. Cache the
20216         hatch brush.
20218 2005-05-03  Jackson Harper  <jackson@ximian.com>
20220         * TreeView.cs: Use dashed lines to connect nodes. Use the
20221         ControlPaint method for drawing the focus rect instead of doing
20222         that in treeview.
20224 2005-05-02  Peter Bartok  <pbartok@novell.com>
20226         * LinkLabel.cs: Fixed the fixes from r43566 and 43521
20228 2005-04-29  Jackson Harper  <jackson@ximian.com>
20230         * ThemeWin32Classic.cs: Don't clear the GC that will clear the
20231         entire image buffer. Just clear the clipping rectangle.
20233 2005-04-29  Jackson Harper  <jackson@ximian.com>
20235         * ThemeWin32Classic.cs: Don't draw list view items that are
20236         outside the clipping rectangle.
20238 2005-04-29  Jordi Mas i Hernandez <jordi@ximian.com>
20240         * ListBox.cs: added horizontal item scroll
20242 2005-04-29  Jackson Harper  <jackson@ximian.com>
20244         * ThemeWin32Classic.cs: Remove some old debug code that was
20245         causing flicker with the new double buffering code.
20247 2005-04-29  John BouAntoun  <jba-mono@optusnet.com.au>
20249         * MonthCalendar.cs, DateTimePicker.cs: Made monthcalendar dropdwon
20250         behave like combobox and comboboxlist (still not sure if this is
20251         correct though).
20253 2005-04-28  Jackson Harper  <jackson@ximian.com>
20255         * ThemeWin32Classic.cs: Don't fill the middle of progress
20256         bars. This fills areas outside of the clip bounds that don't need
20257         to be filled.
20259 2005-04-28  Jackson Harper  <jackson@ximian.com>
20261         * Control.cs: Don't expose functionality to touch the image buffers.
20262         * ProgressBar.cs:
20263         * ListView.cs: We do not need to (and no longer can) manipulate
20264         the image buffers directly. All of this is handled by Control.
20266 2005-04-28  Peter Bartok  <pbartok@novell.com>
20268         * RichTextBoxSelectionAttribute.cs, RichTextBoxSelectionTypes.cs,
20269           RichTextBoxScrollBars.cs, RichTextBoxStreamType.cs,
20270           RichTextBoxFinds.cs, RichTextBoxWordPunctuations.cs: Added
20272 2005-04-28  Jordi Mas i Hernandez <jordi@ximian.com>
20274         * Combobox:
20275                 - Adjust control's height for non-simple comboboxes (bug fix)
20276                 - Remove dead code
20277         * MenuAPI.cs: remove unused var
20278         * ScrollBar.cs: remove unsed var
20279                  
20280         * ListBox.cs: unselect items when clearing
20282 2005-04-28  Jordi Mas i Hernandez <jordi@ximian.com>
20284         * ListControl.cs: honors OnPositionChanged and default Selected Item
20285         * ListBox.cs: unselect items when clearing
20287 2005-04-27  Jackson Harper  <jackson@ximian.com>
20289         * X11Keyboard.cs: Initialize a default keyboard and give a warning
20290         if a "correct" keyboard is not found. This will make us not crash,
20291         but might give some users bad keyboard layouts...seems to be the
20292         same thing rewind does.
20294 2005-04-27  Jackson Harper  <jackson@ximian.com>
20296         * BindingManagerBase.cs: Attach the current/position changed
20297         handlers to their respective events.
20299 2005-04-27  Jackson Harper  <jackson@ximian.com>
20301         * Control.cs: Make sure that the first WM_PAINT does a full draw,
20302         not just a blit.
20303         * ThemeWin32Classic.cs: Don't fill the background for picture
20304         boxes. This could overright user drawing.
20305         * ComboBox.cs: Just fill the clipping rect not the entire client
20306         rect when drawing the background. This prevents pieces of the
20307         image buffer from getting overwritten and is theoretically faster.
20309 2005-04-26  Jordi Mas i Hernandez <jordi@ximian.com>
20311         * ComboBox.cs: Databinding support fixes, fire missing events
20312         * ListControl.cs: implement missing methods and properties, fixes
20313         * ThemeWin32Classic.cs: Databiding support on Drawing
20314         * CheckedListBox.cs: Databinding support fixes, fire missing events
20315         * ListBox.cs: Databinding support fixes, fire missing events
20316         
20317 2005-04-25  Peter Bartok  <pbartok@novell.com>
20319         * LinkLabel.cs: Length of LinkArea is not allowed to be negative
20321 2005-04-25  Jackson Harper  <jackson@ximian.com>
20323         * TreeView.cs: Use the horizontal scrollbars height not width when
20324         determining how much of the client area is available.
20326 2005-04-25  Jackson Harper  <jackson@ximian.com>
20328         * Control.cs: Double buffering is handled differently now. As per
20329         the spec, the extra buffer is created in the WM_PAINT message and
20330         passed down to the control's drawing code.
20331         * GroupBox.cs:
20332         * Label.cs:
20333         * CheckBox.cs:
20334         * ProgressBar.cs:
20335         * RadioButton.cs:
20336         * ColorDialog.cs:
20337         * ComboBox.cs:
20338         * PropertyGridView.cs:
20339         * UpDownBase.cs:
20340         * MessageBox.cs:
20341         * MenuAPI.cs:
20342         * ListView.cs:
20343         * ButtonBase.cs:
20344         * SizeGrip.cs:
20345         * ScrollBar.cs:
20346         * ListBox.cs:
20347         * TrackBar.cs:
20348         * ToolBar.cs:
20349         * PictureBox.cs:
20350         * DateTimePicker.cs:
20351         * StatusBar.cs:
20352         * TreeView.cs: Update to new double buffering system.
20353         * MonthCalendar.cs: Uncomment block, as Capture is now
20354         working. Update to new double buffering
20355         * LinkLabel.cs: Lazy init the link collection. Update to new double buffering
20356         * PaintEventArgs.cs: New internal method allows us to set the
20357         graphics object. This is used for double buffering.
20358         * ThemeWin32Classic.cs: Give the picture box drawing code a clip
20359         rectangle. The internal paint_area var has been removed from
20360         StatusBar. The clipping rect should be used instead.
20361         * Theme.cs: Give the PictureBox drawing method a clipping rect.
20362         * TabPage.cs: The RefreshTabs method was removed, so just call the
20363         tab controls Refresh method now.
20364         * TabControl.cs: Update to new double buffering. Make sure the
20365         handle is created before sizing the tab pages, otherwise we will
20366         get stuck in a loop.
20368 2005-04-24  Borja Sanchez Zamorano <borsanza@gmail.com>
20370         * LinkLabel.cs: Fix typo, bug #74719; patch
20371           from Borja Sanchez Zamorano
20373 2005-04-22  Jackson Harper  <jackson@ximian.com>
20375         * TreeNode.cs: Implement Handle stuff.
20376         * TreeView.cs: Utility methods so nodes can get/lookup by handle.
20378 2005-04-22  Jordi Mas i Hernandez <jordi@ximian.com>
20380         * DataGridTextBoxColumn.cs: call base constructors, fixes
20381         * GridColumnStylesCollection.cs: missing events, methods, and functionality
20382         * GridTableStylesCollection.cs: fixes, check duplicate mapping names
20383         * DataGridTableStyle.cs: implements create default column styles
20384         * DataGridBoolColumn.cs: which types can handle
20385         * DataGrid.cs: missing methods, fixes, new functionality
20386         * DataGridColumnStyle.cs: fixes
20388 2005-04-20  Alexander Olk  <xenomorph2@onlinehome.de>
20389         * FolderBrowserDialog.cs:
20390         - Use a thread to fill the TreeView
20391         - Adjusted some sizes
20393 2005-04-19  Peter Bartok  <pbartok@novell.com>
20395         * LinkLabel.cs: (Re-)create the pieces when setting the Text
20396           property. Fixes #74360.
20398 2005-04-19  Jackson Harper  <jackson@ximian.com>
20400         * XEventQueue.cs: Lock when getting the lockqueue size.
20401         * PictureBox.cs: Call base OnPaint
20402         
20403 2005-04-19  Peter Bartok  <pbartok@novell.com>
20405         * XplatUIX11.cs: Fixed bug introduced with the HWND rewrite, Async
20406           messages were no longer being processed (this broke BeginInvoke)
20408           
20409 2005-04-18  Jackson Harper  <jackson@ximian.com>
20411         * TreeView.cs: buglet that caused node images to get drawn
20412         regardless of whether or not they were in the clipping rectangle.
20414 2005-04-18  Jackson Harper  <jackson@ximian.com>
20416         * CurrencyManager.cs: There are four rules for GetItemProperties:
20417         - If the type is an array use the element type of the array
20418         - If the type is a typed list, use the type
20419         - If the list contains an Item property that is not an object, use
20420         that property
20421         - use the first element of the list if there are any elements in
20422         the list.
20423         
20424 2005-04-17  Jackson Harper  <jackson@ximian.oom>
20426         * TreeView.cs: Calculate plus minus and checkbox bounds when there is a
20427         click. This handles offsets for scrolling properly and reduces
20428         memory. Also fixed GetNode to not offset now that TopNode works
20429         properly.
20430         * TreeNode.cs: No longer need to track the plus minus or checkbox bounds.
20431         
20432 2005-04-17  Jackson Harper  <jackson@ximian.com>
20434         * CursorConverter.cs: Initial implementation.
20436 2005-04-15  Jordi Mas i Hernandez <jordi@ximian.com>
20438         * ListControl.cs: work towards complex data binding support on ListControl
20439         * CurrencyManager.cs: work towards complex data binding support on ListControl
20440         * ListBox.cs: work towards complex data binding support on ListControl
20443 2005-04-15  Jordi Mas i Hernandez <jordi@ximian.com>
20445         * GridTableStylesCollection.cs: fixes name and constructor
20446         * DataGridTableStyle.cs: fixes
20447         * DataGridBoolColumn.cs: fixes names and constructors
20448         * DataGrid.cs: define methods and properties. Some init implementations
20449         * DataGridCell.cs: define methods and properties. Some init implementations
20450         * GridTablesFactory.cs: Define methods and properties
20452 2005-04-15  Geoff Norton  <gnorton@customerdna.com>
20454         * XplatUIOSX.cs:  Handle proper mouse tracking even if the current
20455         graphics port changes.  We still want the coordinates in global screen
20456         coordinates.
20458 2005-04-14  Jackson Harper  <jackson@ximian.com>
20460         * TreeView.cs: Handle clicks when plus minus is disabled. Don't
20461         check plus minus or checkbox clicks unless those features are enabled.
20463 2005-04-14  Jackson Harper  <jackson@ximian.com>
20465         * TreeView.cs: Add methods for setting the top and bottom visible
20466         nodes. TreeNode::EnsureVisible uses these methods.
20467         * TreeNode.cs: Implement EnsureVisible
20469 2005-04-13  Jordi Mas i Hernandez <jordi@ximian.com>
20471         * Form.cs: Pospone menu assignation if the window has not been created yet
20472         * XplatUIWin32.cs: Fixes Win32SetWindowPos, then does not change window
20473         size and position
20475 2005-04-12  Jackson Harper  <jackson@ximian.com>
20477         * TreeView.cs: Set the TopNode properly when scrolling
20478         occurs. This has the added benifit of reducing the amount of
20479         walking that needs to be done when drawing. Also removed an old
20480         misleading TODO.
20481         * OpenTreeNodeEnumerator.cs: Fix moving backwards.
20482         
20483 2005-04-11  Jordi Mas i Hernandez <jordi@ximian.com>
20485         * Timer.cs: fixes interval setting when the timer is already enabled
20486         
20487 2005-04-10  Alexander Olk  <xenomorph2@onlinehome.de>
20489         * FolderBrowserDialog.cs: First approach
20491 2005-04-09  Peter Bartok  <pbartok@novell.com>
20493         * FolderBrowserDialog: Added
20495 2005-04-07  Jordi Mas i Hernandez <jordi@ximian.com>
20497         * LinkLabel.cs: move drawing code into the theme
20498         * ThemeWin32Classic.cs: drawing code and painting background bugfix
20499         * Theme.cs: define DrawLinkLabel method
20501 2005-04-05  Jackson Harper  <jackson@ximian.com>
20503         * BindingContext.cs: Use weak references so these bad actors don't
20504         stay alive longer then they need to.
20506 2005-04-05  Jackson Harper  <jackson@ximian.com>
20508         * ListControl.cs: Basic implementation of complex databinding.
20509         * ComboBox.cs:
20510         * ListBox.cs: Add calls to ListControl databinding methods.
20512 2005-04-05  Alexander Olk  <xenomorph2@onlinehome.de>
20514         * FileDialog.cs:
20515           - Don't change PopupButtonState to Normal when the
20516             PopupButton gets pressed several times.
20517           - Renamed ButtonPanel to PopupButtonPanel
20519 2005-04-05  Jordi Mas i Hernandez <jordi@ximian.com>
20521         * ColorDialog.cs: Use cached objects instead of creating them
20522         * LinkLabel.cs: Use cached objects instead of creating them
20523         * Splitter.cs: Use cached objects instead of creating them
20524         * FontDialog.cs: Use cached objects instead of creating them
20525         * PropertyGridView.cs: Use cached objects instead of creating them
20526         * MessageBox.cs: Use cached objects instead of creating them
20527         * FileDialog.cs: Use cached objects instead of creating them
20528         * ThemeWin32Classic.cs: Use cached objects instead of creating them
20529         * TreeView.cs: Use cached objects instead of creating them
20530         
20531 2005-04-04  Jordi Mas i Hernandez <jordi@ximian.com>
20533         * Control.cs: use Equals to compare the font since no == op
20534         * ScrollBar.cs: use Equals to compare the font since no == op
20536 2005-04-04  Alexander Olk  <xenomorph2@onlinehome.de>
20538         * SaveFileDialog.cs: Open stream in OpenFile with FileMode Create
20540 2005-04-01  Jackson Harper  <jackson@ximian.com>
20542         * Binding.cs: Implement IsBinding.
20543         * BindingManagerBase.cs:
20544         * PropertyManager.cs:
20545         * CurrencyManager.cs: Add IsSuspended property.
20547 2005-04-01  Jackson Harper  <jackson@ximian.com>
20549         * Binding.cs: Had some IsAssignableFrom calls backwards.
20551 2005-04-01  Jackson Harper  <jackson@ximian.com>
20553         * Binding.cs: Handle null data members when pulling data.
20554         * PropertyManager.cs: Handle the data member being a property that
20555         does not exist.
20557 2005-04-01  Jordi Mas i Hernandez <jordi@ximian.com>
20559         * DataGridTextBoxColumn.cs: fixes signature
20560         * DataGrid.cs: calls right constructor
20562 2005-04-01  Jordi Mas i Hernandez <jordi@ximian.com>
20564         * DataGridTextBoxColumn.cs: implements DataGridTextBoxColumn class
20565         * GridColumnStylesCollection.cs: implements GridColumnStylesCollection
20566         * GridTableStylesCollection.cs: implements GridTableStylesCollection
20567         * DataGridTableStyle.cs: implements DataGridTableStyle
20568         * DataGridBoolColumn.cs: implements DataGridBoolColumn
20569         * DataGridTextBox.cs: implements DataGridTextBox
20570         * DataGridColumnStyle.cs: implements DataGridColumnStyle
20572 2005-03-31  Alexander Olk  <xenomorph2@onlinehome.de>
20574         * FileDialog.cs: Added simple PopupButton class for ButtonPanel
20576 2005-03-29  Peter Bartok  <pbartok@novell.com>
20578         * Application.cs:
20579           - Properly implemented CompanyName property
20580           - Fixed LocalUserAppDataPath and UserAppDataPath, now properly
20581             returns a path that includes CompanyName, ProductName and
20582             Version (fixes bug #70330)
20584 2005-03-29  Stefan Buehler  <sbuehler@gmx.ch>
20586         * TabPage.cs: Don't use Owner.DisplayRectangle unless owner is valid,
20587           fixes bug #72588.
20589 2005-03-28  Alexander Olk  <xenomorph2@onlinehome.de>
20591         * FileDialog.cs, SaveFileDialog.cs OpenFileDialog.cs:
20592         
20593           - Added ReadOnly CheckBox
20594           - Further refactoring: moved some code from Open-/SaveFileDialog
20595             to FileDialog
20597 2005-03-28  Alexander Olk  <xenomorph2@onlinehome.de>
20599         * OpenFileDialog.cs: Fixed CheckFileExists
20600         * FileDialog.cs:
20601           Moved FileView and DirComboBox outside FileDialog class.
20602           They can now be used outside FileDialog
20604 2005-03-27  Alexander Olk  <xenomorph2@onlinehome.de>
20606         * FileDialog.cs: Added a contextmenu to change ShowHiddenFiles
20607         * SaveDialog.cs, OpenFileDialog.cs: Fixes for Reset() method
20609 2005-03-27  Alexander Olk  <xenomorph2@onlinehome.de>
20611         * FileDialog.cs, OpenFileDialog.cs, SaveFileDialog.cs:
20612           - Added missing CreatePrompt property in SaveDialog
20613           - Overall SaveDialog handling should be better now
20614           - Added non standard ShowHiddenFiles property
20615           - Added extension, CreatePrompt and OverwritePrompt support in SaveDialog
20616           - Added InitialDirectory and RestoreDirectory support
20618 2005-03-26  Alexander Olk  <xenomorph2@onlinehome.de>
20620         * FileDialog.cs: Made dirComboBox usable
20622 2005-03-24  Alexander Olk  <xenomorph2@onlinehome.de>
20624         * FileDialog.cs: Added Filter support (case sensitiv)
20626 2005-03-24  Jackson Harper  <jackson@ximian.com>
20628         * TabControl.cs: Need a couple more pixels for the lines.
20630 2005-03-23  Jackson Harper  <jackson@ximian.com>
20632         * TabControl.cs: Give the tab page focus when it is selected.
20634 2005-03-23  Jackson Harper  <jackson@ximian.com>
20636         * TabControl.cs: Account for the drawing of tabs borders when
20637         invalidating. If the slider was clicked dont do click detection on
20638         the tabs.
20640 2005-03-23  Jackson Harper  <jackson@ximian.com>
20642         * TabControl.cs: Fix typo, emilinates an unneeded expose event.
20644 2005-03-22  Jonathan Chambers  <jonathan.chambers@ansys.com>
20646         * CategoryGridEntry.cs: Added
20647         * GridItem.cs: Added helper properties
20648         * PropertyGridTextBox.cs: Custom textbox control for PropertyGrid.
20649         * GridEntry.cs: Updated code for collection
20650         * PropertyGrid.cs: Cleaned up some formatting
20651         * PropertyGridView.cs: Added drop down functionality for enums.
20652         * GridItemCollection.cs: Added enumerator logic
20653         * PropertyGridEntry.cs: Added
20655 2005-03-19  Alexander Olk  <xenomorph2@onlinehome.de>
20657         * FileDialog.cs:
20658           - Removed unnecessary commented code
20659           - Fixed handling for entering the filename manually in the combobox
20661 2005-03-19  Alexander Olk  <xenomorph2@onlinehome.de>
20663         * FileDialog.cs, OpenFileDialog.cs: OpenFileDialog Multiselect now works
20665 2005-03-18  Peter Bartok  <pbartok@novell.com>
20667         * ThemeWin32Classic.cs: Moved listview column headers a bit, to avoid
20668           them being touching the border
20670 2005-03-18  Peter Bartok  <pbartok@novell.com>
20672         * TextControl.cs: Quick hack to center text better
20674 2005-03-18  Peter Bartok  <pbartok@novell.com>
20676         * ControlPaint.cs:
20677           - Don't throw NotImplemented exceptions, just print a notice once
20678             instead (requested by Miguel). This makes running existing SWF
20679             apps a bit easier
20680         * Control.cs:
20681           - Commented out Drag'N'Drop XplatUI call (no driver support yet)
20682           - Added context menu trigger on right click
20683         * Panel.cs: Trigger invalidate on resize
20684         * StatusBar.cs:
20685           - Removed old double-buffer drawing
20686           - Added ResizeRedraw style to force proper update of statusbar
20687         * ListView.cs:
20688           - Removed debug output
20689         * ThemeWin32Classic.cs:
20690           - Fixed drawing of status bar, now draws Text property if there
20691             are no defined panels
20693 2005-03-18  Jackson Harper  <jackson@ximian.com>
20695         * ImageList.cs: When the image stream is set pull all the images
20696         from it.
20697         * ImageListStreamer.cs: Implement reading image list streams.
20699 2005-03-18  Peter Bartok  <pbartok@novell.com>
20701         * ThemeWin32Classic.cs (DrawPictureBox):
20702           - Fixed calculations for centered drawing
20703           - Fixed drawing for normal mode, not scaling the image on normal
20705 2005-03-18  Peter Bartok  <pbartok@novell.com>
20707         * ComboBox.cs: Now also firing the OnKeyPress events for the embedded
20708           textbox
20709         * FileDialog.cs:
20710           - Made Open/Save button the accept button for FileDialog
20711           - Tied the cancel button to the IButtonControl cancel button
20712           - Save/Open now properly builds the pathname
20713           - Now handles user-entered text
20714           - Preventing crash on right-click if no item is selected
20715           - Fixed Text property, now uses contents of textbox
20716           - Fixed SelectedText property, now just returns the text part that
20717             is selected in the text box
20719 2005-03-18  Jackson Harper  <jackson@ximian.com>
20721         * ThemeWin32Classic.cs: Use the proper func for drawing the focus
20722         rect, make sure to de-adjust the interior rect after drawing the
20723         tab text.
20725 2005-03-18  Peter Bartok  <pbartok@novell.com>
20727         * MenuAPI.cs: Remove menu *before* executing selected action to
20728           prevent the menu from 'hanging around'
20729           
20730 2005-03-17  Geoff Norton  <gnorton@customerdna.com>
20732         * XplatUIOSX.cs: Implemented WorkingArea property
20734 2005-03-17  Peter Bartok  <pbartok@novell.com>
20736         * XplatUIX11.cs: Fixed menu coord calculations
20737         * MenuAPI.cs: Now using new ScreenToMenu()/MenuToScreen() methods
20738           for calculating offsets
20740 2005-03-17  Peter Bartok  <pbartok@novell.com>
20742         * Hwnd.cs: Do not consider menu presence for default client
20743           rectangle location/size
20744         * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs, XplatUIOSX.cs,
20745           XplatUIWin32.cs: Added MenuToScreen() and ScreenToMenu() coord
20746           translation functions
20747         * FileDialog.cs: Fixed (what I presume is a) typo
20749 2005-03-17  Jonathan Gilbert  <logic@deltaq.org>
20751         * XplatUIX11.cs: Added call to XInitThreads() to allow multi-threaded
20752           X access (avoids X-Async errors)
20754 2005-03-16  Jackson Harper  <jackson@ximian.com>
20756         * TabControl.cs: Raise the SelectedIndexChanged event.
20758 2005-03-16  Alexander Olk  <xenomorph2@onlinehome.de>
20760         * FileDialog.cs, OpenFileDialog.cs, SaveFileDialog.cs:
20761           - Removed vertical ToolBar and replaced it with a custom panel
20762             (desktop and home button already work)
20763           - Added Help button (some controls get resized or relocated then)
20764           - Draw correct text depending on Open or Save.
20765           - Fixed some typos...
20767 2005-03-16  Jordi Mas i Hernandez <jordi@ximian.com>
20769         * ScrollBar.cs:
20770           - Only change Maximum and Minimum when need it (bug fix)
20772 2005-03-15  Peter Bartok  <pbartok@novell.com>
20774         * Form.cs: Use Handle for icon, to trigger creation if
20775           the window does not yet exist
20776         * Control.cs:
20777           - CanSelect: Slight performance improvement
20778           - Focus(): Preventing possible recursion
20779           - Invalidate(): Removed ControlStyle based clear flag setting
20780           - WM_PAINT: fixed logic for calling OnPaintBackground
20781           - WM_ERASEBKGND: Fixed logic, added call to new driver method
20782             EraseWindowBackground if the control doesn't paint background
20783         * XplatUIWin32.cs:
20784           - Moved EraseWindowBackground() method to internal methods
20785           - Removed unused WM_ERASEBKGND handling in GetMessage; msg never comes;
20786             is sent via SendMessage on BeginPaint call on Win32
20787         * XplatUIX11.cs:
20788           - Added EraseWindowBackground() method
20789           - No longer sends WM_ERASEBKGND on .Expose, but on call to
20790             PaintEventStart, which more closely matches Win32 behaviour
20791           - Fixed Invalidate() call, now updates new ErasePending Hwnd property
20792           - Fixed SetFocus() to properly deal with client and whole windows
20793         * Hwnd.cs: Added ErasePending property
20794         * XplatUIOSX.cs: Stubbed EraseWindowBackground() method
20795         * XplatUI.cs, XplatUIDriver.cs: Added EraseWindowBackground() method
20797 2005-03-12  Geoff Norton  <gnorton@customerdna.com>
20799         * XplatUIOSX.cs:
20800           - Fix hard loop when timers exist.
20801           - Fix bugs with middle and right click for 3 button mice.
20803 2005-03-11  Peter Bartok  <pbartok@novell.com>
20805         * XplatUIX11.cs:
20806           - get_WorkingArea: Need to call X directly, GetWindowPos only
20807             returns cached data now
20808           - Added sanity check to GetWindowPos hwnd usage
20810 2005-03-11  Jackson Harper  <jackson@ximian.com>
20812         * BindingManagerBase.cs: This method isn't used anymore as
20813         PullData now updates the data in the control.
20815 2005-03-11  Jordi Mas i Hernandez <jordi@ximian.com>
20817         * Form.cs: fixes menu drawing on X11
20818         * MenuAPI.cs:  fixes menu drawing on X11
20820 2005-03-11  Peter Bartok  <pbartok@novell.com>
20822         * Control.cs: Changed OnCreateControl behaviour based on a suggestion
20823           from Jonathan Gilbert; should fix bug #73606
20824         * XplatUIX11.cs: Fixed NC Mouse message coordinates, they need to be
20825           in Screen coordinates. Thanks, Jordi.
20826         * Form.cs: Added missing attribute
20828 2005-03-11  Peter Bartok  <pbartok@novell.com>
20830         * Form.cs:
20831           - Rudimentary Mdi support
20832           - Removed outdated FormParent code
20833           - Implemented lots of missing properties and methods, still missing
20834             transparency support
20835           - Added missing attributes
20836           - Implemented support for MaximumBounds
20837           - Added firing of various events
20838         * XplatUI.cs: Added SetIcon() method
20839         * XplatUIDriver.cs: Added SetIcon() abstract
20840         * XplatUIOSX.cs: Stubbed out SetIcon() method
20841         * XplatUIX11.cs:
20842           - Implemented SetIcon() support
20843           - Moved SetMenu() and SetBorderStyle() to proper alphabetical pos
20844           - Switched to unix line endings
20845         * XplatUIWin32.cs:
20846           - Made POINT internal so for can access it as part of MINMAX
20847           - Implemented SetIcon() support
20848           - Implemented support for CLIENTCREATESTRUCT (but might have to drop
20849             native Mdi support again, might have to go managed)
20850         * Control.cs: Now fires the StyleChanged event
20851         * MdiClient.cs: Added; still mostly empty
20853 2005-03-10  Peter Bartok  <pbartok@novell.com>
20855         * SaveFileDialog.cs: Added emtpy file
20857 2005-03-08  Peter Bartok  <pbartok@novell.com>
20859         * Control.cs: Fixed bug #73190; now invokes CreateControl (which
20860           in turn triggers OnCreateContro) when creating a handle for the
20861           first time.
20862         * TextControl.cs: Fixed endless loop in certain cases when
20863           replacing the current selection
20865 2005-03-08  Jordi Mas i Hernandez <jordi@ximian.com>
20867         * ScrollBar.cs:
20868           - Honors NewValue changes in Scroll events allowing apps to change it
20869           - Adds First and Last Scroll events
20870           - Fixes Thumb events
20872 2005-03-07  Peter Bartok  <pbartok@novell.com>
20874         * Hwnd.cs: Added DefaultClientRectangle property
20875         * XplatUI.cs: Now using the X11 driver Where() method, which provides
20876           more detailed debug information
20877         * XplatUIX11.cs:
20878           - Fixed size-change feedback loop, where we would pull an old size
20879             off the queue and mistakenly change our window's size to an
20880             earlier value
20881           - Now compressing ConfigureNotify events, to reduce looping and
20882             redraw issues
20883         * TextBoxBase.cs: Preventing crash when no text is set and ToString()
20884           is called
20886 2005-03-07  Jackson Harper  <jackson@ximian.com>
20888         * Binding.cs: Push data pushes from data -> property. Check if the
20889         property is readonly when attempting to set it.
20891 2005-03-07  Jackson Harper  <jackson@ximian.com>
20893         * Binding.cs: Format and parse data correctly. Use ASsignableFrom
20894         instead of IsSubclassOf. Pulling data now sets the value on the
20895         control.
20896         * PropertyManager.cs:
20897         * CurrencyManager.cs: Just need to pull data when updating now,
20898         because PullData will set the value on the control.
20900 2005-03-04  Jackson Harper  <jackson@ximian.com>
20902         * Binding.cs: Implement data type parsing and converting on pulled
20903         data. TODO: Are there more ways the data can be converted?
20905 2005-03-04  Jackson Harper  <jackson@ximian.com>
20907         * Binding.cs: Support <Property>IsNull checks. Also bind to the
20908         controls Validating method so we can repull the data when the
20909         control loses focus.
20911 2005-03-03  Jordi Mas i Hernandez <jordi@ximian.com>
20913         * ColumnHeader.cs:
20914           - Fixes null string format
20915           
20916         * ListView.cs:
20917           - Adds enum type checks
20918           - Fixes redrawing and recalc need after changing some properties
20919           - Fixes on focus_item set after the event
20920           - Fixes adding columns after the control has been created
20921           
20922         * ThemeWin32Classic.cs:
20923           - Fixes CheckBox focus rectangle
20924           - Fixes ColumnHeader drawing
20927 2005-03-03  Jackson Harper  <jackson@ximian.com>
20929         * Binding.cs: Bind to <Property>Changed events so we can detect
20930         when properties are changed and update the data.
20932 2005-03-02  Jordi Mas i Hernandez <jordi@ximian.com>
20934         * ImageList.cs:
20935           - Changes 32-bit pixel format to Format32bppArgb to allow transparency
20936           - Fixes ImageList constructor with ImageList container
20937           - Fixes image scaling (wrong parameters at DrawImage)
20939 2005-02-02  Jackson Harper  <jackson@ximian.com>
20941         * Binding.cs: Make property searches case-insensitive. Eliminate
20942         some duplicated code.
20944 2005-03-01  Jordi Mas i Hernandez <jordi@ximian.com>
20946         * ComboBox.cs:
20947                 - Handle focus event
20948                 - Fix scrollbar events
20949                 - Discard highlighted item if remove it
20950                 - Fixes SelectedItem with strings
20952 2005-03-01  Peter Bartok  <pbartok@novell.com>
20954         * Control.cs:
20955           - Fixed Visible property, now follows (once again) parent chain
20956             to return false if any control in the chain is visible=false
20957           - Fixed OnParentVisibleChanged, now just calls OnVisibleChanged event
20958           - Fixed several places where is_visible instead of Visible was used
20959           - Implemented FIXME related to focus selection when setting focused
20960             control to be invisible
20962         * XplatUIWin32.cs: Now using proper method to find out if window is
20963           visible. Thanks to Jordi for pointing it out
20965 2005-02-28  Jordi Mas i Hernandez <jordi@ximian.com>
20967         * ComboBox.cs: show/hide scrollbar instead of creating it
20969 2005-02-27  Jackson Harper  <jackson@ximian.com>
20971         * CurrencyManager.cs: Add PositionChanged stuff.
20973 2005-02-27  Peter Bartok  <pbartok@novell.com>
20975         * XplatUI.cs, XplatUIDriver.cs: Added new GetMenuOrigin() method
20976         * XplatUIOSX.cs: Added GetMenuOrigin() stub
20977         * XplatUIWin32.cs: Implemented GetMenuOrigin()
20978         * XplatUIX11.cs:
20979           - Implemented GetMenuDC()
20980           - Implemented GetMenuOrigin()
20981           - Implemented ReleaseMenuDC()
20982           - Implemented generation of WM_NCPAINT message
20983           - Implemented generation and handling of WM_NCCALCSIZE message
20984         * Form.cs: Added debug helper message for Jordi's menu work
20985         * Hwnd.cs:
20986           - Modified ClientRect property; added setter, fixed getter to handle
20987             setting of ClientRect
20988           - Added MenuOrigin property
20990 2005-02-26  Peter Bartok  <pbartok@novell.com>
20992         * XplatUIX11.cs:
20993           - Destroys the caret if a window that's being destroyed contains it
20994           - Ignores expose events coming from the X11 queue for windows that
20995             already are destroyed
20996           - Now uses the proper variable for handling DestroyNotify, before we
20997             marked the wrong window as destroyed
20998           - Improved/added some debug output
21000 2005-02-26  Peter Bartok  <pbartok@novell.com>
21002         * X11Keyboard.cs: Fixes to work on 64bit systems
21004 2005-02-26  Peter Bartok  <pbartok@novell.com>
21006         * Control.cs:
21007           - Now calling OnHandleDestroyed from DestroyHandle()
21008             instead of Dispose()
21009           - Removed bogus call to controls.Remove() from DestroyHandle()
21011 2005-02-26  Peter Bartok  <pbartok@novell.com>
21013         * Control.cs: Properly destroy child windows when our handle is
21014           destroyed
21016 2005-02-25  Peter Bartok  <pbartok@novell.com>
21018         * XplatUI.cs:
21019           - Added 'DriverDebug' define to allow tracing XplatUI API calls
21020           - Alphabetized Static Methods and Subclasses
21022         * XplatUIX11.cs:
21023           - Added XException class to allow custom handling of X11 exceptions
21024           - Created custom X11 error handler, tied into XException class
21025           - Added support for MONO_XEXCEPTIONS env var to allow the user
21026             to either throw an exception on X errors or continue running
21027             after displaying the error
21028           - Added handling of DestroyNotify message
21029           - Added handler for CreateNotify message (still disabled)
21030           - Improved (tried to at least) Where method to provide file and lineno
21031         * X11Structs.cs:
21032           - Added XErrorHandler delegate
21033           - Added XRequest enumeration (to suppor translation of errors)
21035 2005-02-25  Jackson Harper  <jackson@ximian.com>
21037         * PropertyManager.cs: Implement editing features
21038         * CurrencyManager.cs:
21039         * Binding.cs: First attempt at UpdateIsBinding
21040         * BindingManagerBase.cs: Call UpdateIsBinding before
21041         pushing/pulling data.
21043 2005-02-25  Jordi Mas i Hernandez <jordi@ximian.com>
21045         * MenuAPI.cs: Respect disabled items
21046         * ThemeWin32Classic.cs
21047                 - Caches ImageAttributes creation for DrawImageDisabled
21048                 - Fixes vertical menu line drawing
21049                 - Draws disabled arrows in disable menu items
21051 2005-02-24  Peter Bartok  <pbartok@novell.com>
21053         * Hwnd.cs:
21054           - Added UserData property to allow associating arbitrary objects
21055             with the handle
21056           - Fixed leak; now removing Hwnd references from static windows array
21057         * XplatUIWin32.cs:
21058           - Fixed Graphics leak in PaintEventEnd
21059           - Removed usage of HandleData, switched over to Hwnd class
21060         * HandleData.cs: Removed, obsoleted by Hwnd.cs
21062 2005-02-24  Jordi Mas i Hernandez <jordi@ximian.com>
21064         * ThemeWin32Classic.cs: Adds Cliping to TrackBar drawing
21065         * ScrollBar.cs: Fixes bug
21066         * TrackBar.cs: removes death code, clipping, mimize refreshes,
21067          keyboard navigation enhancements
21069 2005-02-24  Jordi Mas i Hernandez <jordi@ximian.com>
21071         * Control.cs: Call DefWndProc at WM_PAINT only if UserPaint not defined
21072         * GroupBox.cs: Add control styles
21073         * Label.cs: Add control styles
21074         * UpDownBase.cs: Add control styles
21075         * ListBox.cs: Add control styles
21076         * XplatUIWin32.cs: Fixes wrong parameter order
21079 2005-02-23  Chris Bacon  <chris.bacon@docobo.co.uk>
21081         * ListView.cs: Assign owner for ColumnHeader. Patch by Chris Bacon
21083 2005-02-23  Jackson Harper  <jackson@ximian.com>
21085         * PropertyManager.cs: Implement property binding. This doesn't
21086         seem to work yet though as (I think) there are some bugs in
21087         System.ComponentModel.PropertyDescriptor.
21088         * BindingContext.cs: Use new PropertyManager constructor.
21090 2005-02-23  Jordi Mas i Hernandez <jordi@ximian.com>
21092         * ProgressBar.cs: use clip region in ProgressBar
21093         * ThemeWin32Classic.cs: use clip region in ProgressBar
21095 2004-02-22  Jackson Harper  <jackson@ximian.com>
21097         * BindingsCollection.cs: Remove some debug code.
21099 2005-02-22  Jackson Harper  <jackson@ximian.com>
21101         * BindingContext.cs:
21102         * ControlBindingsCollection.cs:
21103         * CurrencyManager.cs:
21104         * Binding.cs:
21105         * BindingManagerBase.cs: Initial implementation
21106         * BindingsCollection.cs: Add an internal contains method that the
21107         BindingManagerBase uses to ensure bindings aren't added twice to
21108         the collection.
21109         * PropertyManager.cs: Stubbed out.
21110         * Control.cs:
21111         * ContainerControl.cs: Hook up databinding
21112         
21113 2005-02-22  Geoff Norton  <gnorton@customerdna.com>
21115         * XplatUIOSX.cs:
21116           OSXStructs.cs: Refactored to handle the new Hwnd NC logic area.
21117           Fixed Invalidate/Update chain.
21118           Fixed tons of other minor bugs (this is almost a complete rewrite).
21120 2005-02-22  Jordi Mas i Hernandez <jordi@ximian.com>
21122         * ComboBox.cs: do subcontrol creation when the control is created
21124 2005-02-19  Jordi Mas i Hernandez <jordi@ximian.com>
21126         * Label.cs: fixes image drawing (image and imagelist)
21127         * ThemeWin32Classic.cs: cache brushes
21128         
21129 2005-02-19  Jordi Mas i Hernandez <jordi@ximian.com>
21131         * Form.cs: Move menu drawing code to Theme class
21132         * ComboBox.cs: Move ComboBox drawing code to Theme class
21133         * MenuItem.cs: Move menu drawing code to Theme class
21134         * MenuAPI.cs: Move menu drawing code to Theme class
21135         * ThemeWin32Classic.cs: New methods
21136         * CheckedListBox.cs: Move CheckedListbox drawing code to Theme class
21137         * ListBox.cs: Move Listbox drawing code to Theme class
21138         * Theme.cs: New methods
21140 2005-02-20  Peter Bartok  <pbartok@novell.com>
21142         * Control.cs:
21143           - Fixed ProcessKeyEventArgs to also handle WM_SYSKEY messages (and
21144             only process mnemonics on those)
21145           - Fixed event sequence for key handling; first calling
21146             ProcessKeyEventArgs now
21147         * TextBoxBase.cs:
21148           - Removed WM_KEYDOWN hook, instead we now use ProcessDialogKey()
21149             for processing non-character keys
21150           - Fixed WM_CHAR to generate proper event sequence before processing
21151         * XplatUIWin32.cs: Added ALT key state to ModifierKeys property
21152           generation
21154 2005-02-19  Peter Bartok  <pbartok@novell.com>
21156         * UserControl.cs: Added TextChanged event; added attributes
21157         * SizeGrip.cs: Implemented resizing and optional display of grip
21158         * Form.cs: Fixed attribute
21159         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs, XplatUIWin32.cs:
21160           Changed meaning of ScrollWindow bool argument; instead of the
21161           clear attribute (which will be true usually anyway), it gives the
21162           option of moving child controls as well.
21163         * XplatUIX11.cs:
21164           - Changed to match new ScrollWindow argument
21165           - Fixed GetWindowPos/SetWindowPos behaviour for toplevel controls,
21166             now handles the implicit parent window a WM puts around us
21167         * ScrollableControl.cs: Implemented (not the prettiest, but it seems
21168           to work)
21169         * TextBoxBase.cs: Adjusted to new ScrollWindow arguments
21170         * TreeView.cs: Adjusted to new ScrollWindow arguments
21172 2005-02-19  Jordi Mas i Hernandez <jordi@ximian.com>
21174         * Form.cs: Menu integration with non-client area
21175         * MenuItem.cs: Menu integration with non-client area
21176         * MenuAPI.cs: Menu integration with non-client area
21178 2005-02-18  Peter Bartok  <pbartok@novell.com>
21180         * MethodInvoker.cs: Added
21181         * MdiLayout.cs: Added
21182         * SendKeys.cs: Started implementation
21183         * ErrorIconAlignment.cs: Added
21185 2005-02-18  Peter Bartok  <pbartok@novell.com>
21187         * XplatUIWin32.cs: Implemented SetMenu(); fixed GetMenuDC()
21188         * Form.cs: Added handling for Menu-related Non-client messages
21190 2005-02-17  Peter Bartok  <pbartok@novell.com>
21192         * UpDownBase.cs: Fixed typo, compilation errors
21193         * DomainUpDown.cs: Fixed attribute value
21195 2005-02-16  Miguel de Icaza  <miguel@novell.com>
21197         * UpDownBase.cs: Attach entry events.
21198         Propagate events.
21199         Add ForeColor property, Focused, InterceptArrowKeys (interception
21200         does not work yet).
21202 2005-02-17  Jordi Mas i Hernandez <jordi@ximian.com>
21204         * Form.cs:
21205                 - Redraw non client are on Setmenu
21206                 - Calc proper menu starting point
21208 2005-02-17  Peter Bartok  <pbartok@novell.com>
21210         * Application.cs: Fixed message_filter check
21212 2005-02-17  Peter Bartok  <pbartok@novell.com>
21214         * Application.cs: Now calls registered message filters
21215         * DockStyle.cs: Fixed attribute
21216         * Form.cs: Fixed attribute
21217         * Menu.cs: Fixed attribute
21218         * ToolTip.cs: Fixed attribute
21219         * TreeNode.cs: Added missing attributes and arranged in regions
21220         * PropertyGrid.cs: Fixed signatures
21221         * TreeNodeCollection.cs: Added attributes
21222         * Splitter.cs: Added missing attributes; arranged into regions
21223         * TabPage.cs: Added missing attributes; arranged into regions
21224         * TextBoxBase.cs: Added missing attributes
21225         * TextBox.cs: Added missing attributes
21226         * ArrangeDirection.cs: Added missing attributes
21227         * TreeNodeConverter.cs: Added stub (needed for TreeNode)
21228         * ToolBarButton.cs: Fixed attributes
21229         * AnchorStyles.cs: Fixed attribute
21230         * TrackBar.cs: Fixed attributes
21231         * TabControl.cs: Added missing attributes and arranged into regions
21232         * ToolBar.cs: Fixed attribute
21233         * StatusBar.cs: Fixed signature, organized into regions and added
21234           attributes
21235         * StatusBarPanel.cs: Fixed attributes
21236         * ContentsResizedEventArgs.cs: Implemented
21237         * ContentsResizedEventHandler.cs: Implemented
21238         * DateBoldEventArgs.cs: Implemented
21239         * DateBoldEventHandler.cs: Implemented
21240         * UpDownEventArgs.cs: Implemented
21241         * UpDownEventHandler.cs: Implemented
21242         
21243 2005-02-16  Jordi Mas i Hernandez <jordi@ximian.com>
21245         * Form.cs: first Menu NC refactoring
21246         * MenuAPI.cs: first Menu NC refactoring
21247         
21248 2005-02-16  Peter Bartok  <pbartok@novell.com>
21250         * ImeMode.cs: Added missing attributes
21251         * Menu.cs: Fixed attribute
21252         * GroupBox.cs: Fixed attribute
21253         * Label.cs: Fixed attribute
21254         * ColorDialog.cs (RunDialog): Removed TODO attribute
21255         * ComboBox.cs: Fixed attributes
21256         * ListControl.cs: Added missing attributes
21257         * PropertyGrid.cs: Fixed attributes
21258         * Control.cs: Fixed attributes
21259         * ListViewItem.cs: Added TypeConverter attribute
21260         * NotifyIcon.cs: Fixed attributes
21261         * ListView.cs: Fixed attributes
21262         * ButtonBase.cs: Fixed attribute
21263         * ImageList.cs: Added missing attributes
21264         * ContainerControl.cs: Fixed signature
21265         * CheckedListBox.cs: Fixed attribute; added missing attributes
21266         * Panel.cs: Fixed attributes
21267         * PropertyTabChangedEventArgs.cs: Added missing attribute
21268         * PropertyValueChangedEventArgs.cs: Added missing attribute
21269         * Binding.cs: Fixed attribute
21270         * ListViewItemConverter: Implemented ListViewSubItemConverter class
21271         * ListBox.cs: Fixed attribute; added missing attributes;
21272         * ScrollableControl.cs: Added missing attributes
21273         * PictureBox.cs: Added missing attributes; implemented missing property
21274         * DateTimePicker.cs: Added missing attributes
21275         * Theme.cs (ToolWindowCaptionHeight): Fixed type
21276         * MonthCalendar.cs: Fixed attributes
21277         * StatusBarPanel.cs: Added missing attributes
21278         * SystemInformation.cs (ToolWindowCaptionHeight): Fixed type
21280 2005-02-16  Peter Bartok  <pbartok@novell.com>
21282         * TextBoxBase.cs: The previous method to enforce height yet remember
21283           the requested high was less than ideal, this is an attempt to do
21284           it better.
21285         * Control.cs: Added comment about possible problem
21286         * Copyright: Updated format
21287         * GridItemType.cs: Fixed swapped values
21289 2005-02-15  Jackson Harper  <jackson@ximian.com>
21291         * BaseCollection.cs: Use property so we never access an
21292         uninitialized list. Also initialize the list in the property.
21294 2005-02-15  Peter Bartok  <pbartok@novell.com>
21296         * GroupBox.cs (ProcessMnemonic): Implemented
21297         * Label.cs (ProcessMnemonic): Implemented
21298         * ThemeWin32Classic.cs (DrawGroupBox): Added stringformat to show
21299           hotkeys
21301 2005-02-15  Peter Bartok  <pbartok@novell.com>
21303         * RadioButton.cs (ProcessMnemonic): Implemented
21304         * CheckBox.cs (ProcessMnemonic): Implemented
21305         * Control.cs:
21306           - Added handling of WM_SYSxxx keyboard messages to support mnemonic
21307             handling
21308           - Added internal method to allow calling ProcessMnemonic from other
21309             controls
21310         * ContainerControl.cs:
21311           - Started support for handling validation chain handling
21312           - Implemented ProcessMnemonic support
21313           - Added Select() call to Active, to make sure the active control
21314             receives focus
21315         * Form.cs: Setting toplevel flag for Forms (this was lost in the
21316           FormParent rewrite)
21317         * ThemeWin32Classic.cs:
21318           - DrawCheckBox(): Fixed stringformat to show hotkeys
21319           - DrawRadioButton(): Fixed stringformat to show hotkeys
21320         * CommonDialog.cs: Removed WndProc override, not needed
21322 2005-02-14  Peter Bartok  <pbartok@novell.com>
21324         * XplatUIX11.cs: Fixed NotImplemented exceptions for properties,
21325           missed those in the rewrite
21327 2005-02-14  Miguel de Icaza  <miguel@novell.com>
21329         * NumericUpDown.cs (Increment, ToString): Add.
21330         (DecimalPlaces): implement.
21331         
21332         Add attributes.
21333         
21334         * UpDownBase.cs: Add the designer attributes.
21336 2005-02-13  Peter Bartok  <pbartok@novell.com>
21338         * Panel.cs: Removed border_style, now in Control
21339         * XplatUIDriver.cs: Added SetBorderStyle, SetMenu, GetMenuDC and
21340           ReleaseMenuDC Methods; renmaed ReleaseWindow to UngrabWindow
21342 2005-02-13  Peter Bartok  <pbartok@novell.com>
21344         * MouseButtons.cs: Added missing attributes
21345         * XplatUIStructs.cs: Added enumeration for title styles
21346         * LeftRightAlignment.cs: Added missing attributes
21347         * Hwnd.cs: Switched to use client_window as handle (slower, but makes
21348           it compatible with Graphics.FromHwnd()
21349         * SelectedGridItemChangedEventArgs.cs: Fixed property type
21350         * Keys.cs: Added missing attributes
21351         * SelectionRange.cs: Added missing attributes
21352         * SelectionRangeConverter.cs: Added
21353         * XplatUI.cs:
21354           - Introduced SetBorderStyle, SetMenu, GetMenuDC and
21355             ReleaseMenuDC methods
21356           - Renamed ReleaseWindow to UngrabWindow
21357           - Added proper startup notice to allow version identification
21358         * Form.cs:
21359           - Added missing attributes
21360           - Removed FormParent concept
21361         * Label.cs: Removed border_style field, now in Control
21362         * RadioButton.cs: Now properly selects RadioButton when focus is
21363           received
21364         * ThemeGtk.cs: Fixed SetDisplay call to match new X11 behaviour
21365         * Control.cs:
21366           - Added missing attributes
21367           - Added borderstyle handling
21368           - Removed FormParent concept support
21369           - Fixed calls to XplatUI to match changed APIs
21370           - Fixed bug that would case us to use disposed Graphics objects
21371           - Removed unneeded internal methods
21372           - PerformLayout(): Fixed to handle DockStyle.Fill properly
21373           - SelectNextControl(): Fixed to properly check common parents
21374         * TextBoxBase.cs: Removed border_style field (now in Control)
21375         * MessageBox.cs:
21376           - Patch by Robert Thompson (rmt@corporatism.org): Added icon support,
21377             fixed calculations for form size
21378           - Added support for localized strings and icons
21379           - Improved form size calculations, added border
21380         * ListView.cs: Removed border_style field (now in Control)
21381         * X11Structs.cs: Moved several structs from X11 driver here
21382         * X11Keyboard.cs: Changed debug message
21383         * Application.cs: Removed FormParent concept support
21384         * CommonDialog.cs:
21385           - Resetting end_modal flag
21386           - Removed FormParent concept support
21387         * NativeWindow.cs: Removed FormParent concept support
21388         * XplatUIX11.cs: Rewritten, now using the new Hwnd class, implementing
21389           Client area and Non-Client whole window to allow support for WM_NC
21390           messages
21391         * XplatUIOSX.cs: Updated to match latest driver spec; added exception
21392           prevent using it until it supports Hwnd as per Geoff Norton's request
21393         * ToolBar.cs: Fixed drawing, was not doing proper drawing
21394         * PictureBox.cs: Removed border_style field, now in Control
21395         * XplatUIWin32.cs: Added new driver methods
21397 2005-02-12  Peter Bartok  <pbartok@novell.com>
21399         * OpacityConverter.cs: Implemented
21400         * Hwnd.cs: Internal class to support drivers that need to emulate
21401           client area/non-client area window behaviour
21403 2005-02-11  Peter Bartok  <pbartok@novell.com>
21405         * KeysConverter.cs: Implemented
21407 2005-02-11  Jordi Mas i Hernandez <jordi@ximian.com>
21409         * Menu.cs: fixes methods GetContextMenu, GetMainMenu, ToString
21410         * LinkLabel: Added missing attributes
21411         * MainMenu.cs: fixes ToString
21412         * MenuItem.cs: fixes methods GetContextMenu, GetMainMenu
21413         * ListBox.cs: fixes event position
21414         * TrackBar.cs: adds missing attributes and events
21415         
21416 2005-02-10  Jordi Mas i Hernandez <jordi@ximian.com>
21418         * MenuItem.cs: Use SystemInformation and bug fixes
21419         * MenuAPI.cs: Use SystemInformation and bug fixes
21421 2005-02-09  Jackson Harper  <jackson@ximian.com>
21423         * X11Keyboard.cs: We ignore some keys, but still need to set/reset
21424         their keystate otherwise things like VK_MENU get stuck "on".
21426 2005-02-09  Kazuki Oikawa <kazuki@panicode.com>
21428         * ListBox.cs: Fixes AddRange bug
21429         
21430 2005-02-09  Jordi Mas i Hernandez <jordi@ximian.com>
21432         * ProgressBar.cs
21433                 - Add missing attributes
21434                 - Add missing method
21435                 
21436         * CheckedListBox.cs: Added missing attributes
21437                 - Add missing attributes
21438                 - Remove extra method
21439         
21440         * ComboBox.cs: Added missing attributes
21441         * VScrollBar.cs: Added missing attributes
21442         * ScrollBar.cs:  Added missing attributes
21443         * ListBox.cs: Fixes signature, add missing consts
21444         * LinkArea.cs:   Added missing attributes
21445         
21447 2005-02-08  Peter Bartok  <pbartok@novell.com>
21449         * Menu.cs: Added missing attributes
21450         * MainMenu.cs: Added missing attributes
21451         * GroupBox.cs: Added missing attributes
21452         * Label.cs: Added missing attributes
21453         * CheckBox.cs: Implemented CheckBoxAccessibleObject class
21454         * ColorDialog.cs:
21455           - Added Instance and Options properties
21456           - Added missing attributes
21457         * Cursor.cs: Made Serializable
21458         * NotifyIcon: Added missing attributes
21459         * MenuItem.cs: Added missing attributes
21460         * TextBoxBase.cs: Implemented AppendText() and Select() methods
21461         * Panel.cs: Added Missing attributes
21462         * MonthCalendar.cs: Fixed CreateParams
21464 2005-02-08  Jordi Mas i Hernandez <jordi@ximian.com>
21465         
21466         * LinkLabel.cs:
21467                 - Fixes signature
21468                 - Fixes issues with links
21469                 - Adds the class attributes
21471 2005-02-08  Jordi Mas i Hernandez <jordi@ximian.com>
21472         
21473         * ComboBox.cs:
21474                 - Fixes button when no items available in dropdown
21475                 - Fixes repainting problems
21476                 - Adds the class attributes
21477                 
21478 2005-02-07  Geoff Norton  <gnorton@customerdna.com>
21480         * XplatUIOSX.cs: Detect the menu bar and title bar height from
21481         the current theme.  Cache these on startup.
21483 2005-02-07  Jackson Harper  <jackson@ximian.com>
21485         * ScrollBar.cs: Give the correct clipping rect to the theme. Dirty
21486         the scrollbar buttons when they are depressed.
21488 2005-02-07  Geoff Norton  <gnorton@customerdna.com>
21490         * XplatUIOSX.cs: Really fix working at resolutions not 1024x768.
21491         Get the display size from the main displayid.  We currently dont
21492         support multiple display configurations.
21494 2005-02-07  Geoff Norton  <gnorton@customerdna.com>
21496         * XplatUIOSX.cs: Ensure the window doesn't get stuck behind the statusbar.
21498 2005-02-07  Miguel de Icaza  <miguel@novell.com>
21500         * UpDownBase.cs: Add ReadOnly and UpDownAlign properties.
21502 2005-02-05  Jonathan Chambers  <jonathan.chambers@ansys.com>
21504         * PropertyGrid.cs: Updated. Patch by Jonathan Chambers
21506 2005-02-04  Jackson Harper  <jackson@ximian.com>
21508         * ThemeWin32Classic.cs: Respect the clipping rect when
21509         drawing. Only fill the intersection of clips and rects so there
21510         isn't a lot of large fills.
21511         * ScrollBar.cs: Pass the correct clipping rect to the theme
21512         engine. Remove some debug code.
21514 2005-02-05  John BouAntoun  <jba-mono@optusnet.com.au>
21515         
21516         * DateTimePicker.cs:
21517                 - Fixed crash on DateTime.Parse, use Constructor instead
21519 2005-02-04  Jordi Mas i Hernandez <jordi@ximian.com>
21520         
21521         * MenuItem.cs:
21522         * MenuAPI.cs:
21523                 - Owner draw support (MeasureItem and DrawItem)
21525 2005-02-04  Jordi Mas i Hernandez <jordi@ximian.com>
21526         
21527         *  Menu.cs:
21528                 - Implements FindMergePosition and MergeMenu functions (very poor documented)
21529                 - Fixes MenuItems.Add range
21530         * MenuItem.cs:
21531                 - MergeMenu and Clone and CloneMenu functions
21533 2005-02-03  Jackson Harper  <jackson@ximian.com>
21535         * ScrollBar.cs: Make abstract
21536         * ScrollableControl.cs: Create H/V scrollbars now that scrollbar
21537         is abstract.
21539 2005-02-03  Jackson Harper  <jackson@ximian.com>
21541         * ScrollBar.cs: First part of my scrollbar fixups. This removes
21542         all the unneeded refreshes and uses invalidates with properly
21543         computed rects.
21545 2005-02-03  Peter Bartok  <pbartok@novell.com>
21547         * ComponentModel.cs: Added
21548         * IDataGridEditingService.cs: Added
21549         * Timer.cs: Added missing attributes
21550         * ToolTip.cs: Added missing attributes
21552 2005-02-03  Jonathan Chambers  <jonathan.chambers@ansys.com>
21554         * PropertyGridView.cs: Added. Patch by Jonathan Chambers
21556 2005-02-03  Peter Bartok  <pbartok@novell.com>
21558         * ListBox.cs: Added missing attributes
21560 2005-02-03  Jordi Mas i Hernandez <jordi@ximian.com>
21561         
21562         * ListBox.cs:
21563                 - Fixes font height after font change
21564                 - Avoid generating unnecesary OnSelectedIndexChanged on clearing
21565                 
21566 2005-02-02  Peter Bartok  <pbartok@novell.com>
21568         * HandleData.cs: Introduced static methods to allow class
21569           to be more self-contained and track it's own HandleData objects
21570         * XplatUIOSX.cs, XplatUIWin32.cs, XplatUIX11.cs: Fixed usage of
21571           HandleData to use new static methods
21573 2005-02-02  Jordi Mas i Hernandez <jordi@ximian.com>
21575         * Combobox.cs:
21576                 - Fixes default size and PreferredHeight
21577                 - Missing events
21578                 - ObjectCollection.Insert implementation
21579                 
21580         * ListControl.cs
21581                 - Fixes signature
21582         * ListBox.cs:
21583                 - Several fixes
21584                 - ObjectCollection.Insert implementation
21585                 - No selection after clean
21586                 - Small fixes
21588 2005-01-31      John BouAntoun  <jba-mono@optusnet.com.au>
21590         * ThemeWin32Classic.cs: quick fix to comboboxbutton pushed painting
21592 2005-02-01  Jordi Mas i Hernandez <jordi@ximian.com>
21594         * Combobox.cs:
21595                 - Caches ItemHeight calculation for OwnerDrawVariable
21596                 - Handles dropdown properly
21597                 - Fixes several minor bugs
21599 2005-01-31  Jordi Mas i Hernandez <jordi@ximian.com>
21601         * ListBox.cs:
21602                 - Fixes 71946 and 71950
21603                 - Fixes changing Multicolumn on the fly
21604                 - Fixes keyboard navigation on Multicolumn listboxes
21606 2005-01-31  Geoff Norton  <gnorton@customerdna.com>
21607         
21608         * XplatUIOSX.cs: Call ExitToShell in our teardown to avoid a
21609         crash reporter log.
21611 2005-01-31  Geoff Norton  <gnorton@customerdna.com>
21613         * XplatUIOSX.cs: Allow applications to actually exit.
21615 2005-01-31  Geoff Norton  <gnorton@customerdna.com>
21617         * XplatUIOSX.cs: SetWindowStyle implemented.  Reposition views in
21618         their parent at creation time rather than lazily later.  Fixes a major
21619         regression we were experiencing.
21621 2005-01-31      John BouAntoun  <jba-mono@optusnet.com.au>
21623         * ThemeWin32Classic.cs: more date time picker painting fixes
21624         * DateTimePicker.cs: more monthcalendar drop down fixes
21625         * MonthCalendar.cs: more CreateParams fixes to ensure correct drop down
21627 2005-01-31  Jordi Mas i Hernandez <jordi@ximian.com>
21629         * ScrollBar.cs:
21630                 - When moving the thumb going outside the control should stop the moving
21631                 - Adds the firing of missing events
21632                 - Fixes no button show if Size is not specified
21633                 - End / Home keys for keyboard navigation
21635 2005-01-30  Peter Bartok  <pbartok@novell.com>
21637         * NotifyIcon.cs (CalculateIconRect): Removed debug output and added
21638           sanity check to prevent theoretical loop
21639         * XplatUIWin32.cs (SetVisible): Removed debug output
21640         * XplatUIX11.cs (SystrayChange): Added sanity check
21641         * ScrollableControl.cs (OnVisibleChanged): Now calls base method
21642         * Control.cs (OnVisibleChanged): Added workaround for ParentForm
21643           behaviour, valid until the X11 client window rewrite is done
21644         * TextBox.cs (ctor): Setting proper default foreground and background
21645           colors
21647 2005-01-30      John BouAntoun  <jba-mono@optusnet.com.au>
21649         * Theme: Added DrawDateTimePicker to interface
21650         * ThemeWin32Classic.cs: Added DrawDateTimePicker (incomplete)
21651         * DateTimePicker.cs: Created (still needs keys and painting code)
21652         * DateTimePickerFormat.cs: added
21653         * MonthCalendar.cs: fixed CreateParams for popup window mode
21654           
21655 2005-01-29  Peter Bartok  <pbartok@novell.com>
21657         * ControlPaint.cs: Fixed luminace value returned on achromatic colors,
21658           this should also the calculations for ligher/darker
21659         * Theme.cs: Fixed defaults for ScrollBar widths/heights
21661 2005-01-29  Peter Bartok  <pbartok@novell.com>
21663         * ArrangeDirection.cs: Added
21664         * ArrangeStartingPositon.cs: Added
21665         * SystemInformation.cs: Implemented
21666         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs, XplatUIWin32.cs,
21667           XplatUIX11.cs, Theme.cs: Added/implemented new static properties
21668           used by SystemInformation class
21669         * X11Strucs.cs: Added XSizeHints structure
21670         * MenuAPI.cs:
21671           - Fixed CreateParams to make sure the menu window is always visible
21672           - TrackPopupMenu: Added check to make sure we don't draw the
21673             menu offscreen
21675 2005-01-29  Peter Bartok  <pbartok@novell.com>
21677         * HandleData.cs: Added method for altering invalid area
21678         * TextBoxBase.cs: Implemented TextLength
21680 2005-01-28  Peter Bartok  <pbartok@novell.com>
21682         * XplatUIX11.cs: Improvement over last patch, not sending
21683           the WM_PAINT directly anymore, instead we scroll any pending
21684           exposed areas and let the system pick out the WM_PAINT later
21686 2005-01-28  Peter Bartok  <pbartok@novell.com>
21688         * SWF.csproj: Deleted, no longer used. Instead,
21689           Managed.Windows.Forms/SWF.csproj should be used
21690         * XplatUIX11.cs: Instead of posting the WM_PAINT, we send it
21691           directly, to avoid a potential race condition with the next
21692           scroll
21694 2005-01-28  Peter Bartok  <pbartok@novell.com>
21696         * XplatUI.cs: Made class internal
21698 2005-01-28  Jordi Mas i Hernandez <jordi@ximian.com>
21700         * CheckedListBox.cs:
21701                 - Draw focus
21702                 - Fixed Drawing
21703                 - Missing methods and events
21705 2005-01-27  Peter Bartok  <pbartok@novell.com>
21707         * Application.cs (Run): Don't use form if we don't have one
21709 2005-01-27  Peter Bartok  <pbartok@novell.com>
21711         * TextBoxBase.cs (get_Lines): Fixed index off by one error
21713 2005-01-27  Peter Bartok  <pbartok@novell.com>
21715         * GridEntry.cs: Added; Patch by Jonathan S. Chambers
21716         * GridItem.cs: Added; Patch by Jonathan S. Chambers
21717         * GridItemCollection.cs: Added; Patch by Jonathan S. Chambers
21718         * GridItemType.cs: Added; Patch by Jonathan S. Chambers
21719         * PropertyGrid.cs: Added; Patch by Jonathan S. Chambers
21720         * PropertySort.cs: Added; Patch by Jonathan S. Chambers
21721         * PropertyTabChangedEventArgs.cs: Added; Patch by Jonathan S. Chambers
21722         * PropertyTabChangedEventHandler.cs: Added; Patch by Jonathan S. Chambers
21723         * PropertyValueChangedEventArgs.cs: Added; Patch by Jonathan S. Chambers
21724         * PropertyValueChangedEventArgs.cs: Added; Patch by Jonathan S. Chambers
21725         * SelectedGridItemChangedEventArgs.cs: Added; Patch by Jonathan S. Chambers
21726         * SelectedGridItemChangedEventHandler.cs: Added; Patch by Jonathan S. Chambers
21728 2005-01-27  Jordi Mas i Hernandez <jordi@ximian.com>
21730         * Combobox.cs:
21731                 - Draw focus on Simple Combobox
21732                 - Fixes drawing issues
21733                 - fixes 71834
21735 2005-01-27  Peter Bartok  <pbartok@novell.com>
21737         * Form.cs:
21738           - Place window in default location, instead of hardcoded 0/0
21739           - Send initial LocationChanged event
21740         * Control.cs:
21741           - UpdateBounds after creation to find out where the WM placed us
21742           - Make sure that if the ParentForm changes location the Form
21743             is notified
21744         * XplatUIX11.cs: XGetGeometry will not return the coords relative
21745             to the root, but to whatever the WM placed around us.
21746             Translate to root coordinates before returning toplevel
21747             coordinates
21748         * XplatUIWin32.cs: Removed debug output
21749         * XplatUIOSX.cs, XplatUI.cs, XplatUIDriver.cs: Added toplevel
21750           flag to GetWindowPos, to allow translation of coordinates on X11
21752 2005-01-27  Jordi Mas i Hernandez <jordi@ximian.com>
21754         * ListBox.cs: connect LostFocus Event
21756 2005-01-27  Peter Bartok  <pbartok@novell.com>
21758         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIOSX.cs,
21759           XplatUIX11.cs: Extended the Systray API
21760         * Form.cs: Removed debug output
21761         * Application.cs: Fixed focus assignment, always need to call
21762           XplatUI.Activate() since Form.Activate() has rules that may
21763           prevent activation
21764         * NotifyIcon.cs: Should be complete now
21765         * ToolTip.cs: Worked around possible timer bug
21767 2005-01-27  Jackson Harper  <jackson@ximian.com>
21769         * TabControl.cs:
21770         - Only invalidate the effected tabs when the
21771         selected index changes. This reduces drawing and gets rid of some
21772         flicker.
21773         - Only refresh if the tabs need to be shifted, otherwise only
21774         invalidate the slider button.
21775         - On windows the tabs are not filled to right if the slider is
21776         visible.
21777         
21778 2005-01-27  Jackson Harper  <jackson@ximian.com>
21780         * TabControl.cs: Only refresh on mouseup if we are showing the
21781         slider. Also only invalidate the button whose state has changed.
21783 2005-01-26  Peter Bartok  <pbartok@novell.com>
21785         * XplatUI.cs, XplatUIDriver.cs: Added Systray methods
21786         * XplatUIWin32.cs: Implemented SystrayAdd(), SystrayChange()
21787           and SystrayRemove() methods
21788         * XplatUIOSX.cs: Stubbed Systray methods
21789         * XplatUIX11.cs:
21790           - Implemented SystrayAdd(), SystrayChange() and SystrayRemove()
21791             methods
21792           - Fixed broken XChangeProperty calls (marshalling messed up things)
21793         * X11Structs.cs: Added enums and structs required for Size hinting
21794         * NotifyIcon.cs: Added & implemented
21796 2005-01-26  Jackson Harper  <jackson@ximian.com>
21798         * TabControl.cs: Space vertically layed out tabs properly.
21800 2005-01-26  Peter Bartok  <pbartok@novell.com>
21802         * Form.cs (CreateClientParams): Always set the location to 0,0
21803           since we're a child window.
21805         * Control.cs (SetVisibleCore): Always explicitly setting the location
21806           of a toplevel window, apparently X11 doesn't like to move windows
21807           while they're not mapped.
21809 2005-01-26  Jackson Harper  <jackson@ximian.com>
21811         * TabControl.cs: Implement FillToRight size mode with vertically
21812         rendered tabs.
21814 2005-01-26  Jordi Mas i Hernandez <jordi@ximian.com>
21816         * ControlPaint.cs, ThemeWin32Classic.cs
21817                 - Fixes DrawFocusRectangle
21819 2005-01-26  Jordi Mas i Hernandez <jordi@ximian.com>
21821         * MenuAPI.cs:
21822                 - MenuBar tracking only starts when item is first clicked
21823                 - Fixes menu hidding for multiple subitems
21824                 - Unselect item in MenuBar when item Executed
21825                 - Fixes bug 71495
21827 2005-01-25  Jordi Mas i Hernandez <jordi@ximian.com>
21829         * ListControl.cs:
21830                 - IsInputKey for ListBox
21831         * ListBox.cs:
21832                 - Focus item
21833                 - Shift and Control item selection
21834                 - Implement SelectionMode.MultiExtended
21835                 - Fixes RightToLeft
21836         * ComboBox.cs:
21837                 - IsInputKey implemented
21838                 - Do not generate OnTextChangedEdit on internal txt changes
21839                 
21840 2005-01-23  Peter Bartok  <pbartok@novell.com>
21842         * AccessibleObject.cs: Partially implemented Select()
21843         * MonthCalendar.cs: Added missing attributes and events
21844         * Form.cs: Fixed CreateParams behaviour, now controls derived from
21845           form can properly override CreateParams.
21846         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs, XplatUIWin32.cs,
21847           XplatUIX11.cs: Dropped RefreshWindow method, not needed if
21848           Control performs Invalidate & Update
21849         * NativeWindow (CreateHandle): Added special handling for Form
21850           and Form.FormParent classes to allow overriding of From.CreateParams
21851         * Control.cs:
21852           - ControlNativeWindow: Renamed 'control' variable to more intuitive
21853             name 'owner'
21854           - ControlNativeWindow: Added Owner property
21855           - Removed usage of Refresh() on property changes, changed into
21856             Invalidate(), we need to wait until the queue is processed for
21857             updates, direct calls might cause problems if not all vars for
21858             Paint are initialized
21859           - Added call to UpdateStyles() when creating the window, to set any
21860             styles that CreateWindow might have ignored.
21861           - Added support for Form CreateParent overrides to UpdateStyles()
21862         * MessageBox.cs: Removed no longer needed FormParent override stuff,
21863           CreateParams are now properly overridable
21864         * CommonDialog.cs: Removed no longer needed FormParent override stuff,
21865           CreateParams are now properly overridable
21867 2005-01-23  Miguel de Icaza  <miguel@ximian.com>
21869         * UpDownBase.cs (ctor): Connect TextChanged in the entry to the
21870         OnTextBoxChanged.
21872         Capture LostFocus and OnTextBoxChanged.  The later introduces a
21873         recursive invocation that I have not figured out yet.
21875         Reset the timer when not using (it was accumulating).
21878         (OnTextBoxChanged): Set UserEdit to true here to track whether the
21879         user has made changes that require validation.
21881         Reset changing to avoid loops.
21883 2005-01-22  Miguel de Icaza  <miguel@ximian.com>
21885         * NumericUpDown.cs: Display value at startup.
21887         * UpDownBase.cs (Text): Do not call UpdateEditText here, only call
21888         ValidateEditText.
21890         * NumericUpDown.cs: Minimum, Maximum, Text, Value properties
21891         filled in.  Added some basic parsing of text.
21893         Still missing the OnXXX method overrides, and figuring out the
21894         events that must be emitted.
21896         * UpDownBase.cs: Handle UserEdit on the Text property.
21897         
21898 2005-01-22  Jordi Mas i Hernandez <jordi@ximian.com>
21900         * ComboBox.cs:
21901           - Fixes IntegralHeight
21902           - ToString method
21904 2005-01-21  Jackson Harper  <jackson@ximian.com>
21906         * TabControl.cs: Set the SelectedIndex property when SelectedTab
21907         is set so that the page visibility is updated and the tabs are
21908         sized correctly.
21910 2005-01-21  Jackson Harper  <jackson@ximian.com>
21912         * TabControl.cs: Use cliping rectangle for blitting. Give the
21913         theme the clipping rect so we can do clipping while
21914         drawing. Remove some debug code.
21916 2005-01-21  Jackson Harper  <jackson@ximian.com>
21918         * TabPage.cs: Add a new method so tab pages can force the tab
21919         control to recalculate the tab page sizes.
21920         * TabControl.cs: UpdateOwner needs to make the tab control recalc
21921         sizes.
21923 2005-01-20  Jackson Harper  <jackson@ximian.com>
21925         * ThemeWin32Classic.cs: Clip text to the staus bar panels rects.
21927 2005-01-20  Jackson Harper  <jackson@ximian.com>
21929         * TreeView.cs: Set the bounds for nodes properly. They were
21930         getting screwed up when checkboxes were not enabled, but images
21931         were.
21933 2005-01-20  Jordi Mas i Hernandez <jordi@ximian.com>
21935         * ListBox.cs:
21936                 - Owner draw support
21937                 - Fixes
21938                 
21939 2005-01-20  Jackson Harper  <jackson@ximian.com>
21941         * XplatUIStructs.cs: More misc keys
21942         * X11Keyboard.cs: Ignore some control keys.
21944 2005-01-20  Jackson Harper  <jackson@ximian.com>
21946         * X11Structs.cs: Add the modmaps to the keymask struct and tabify.
21947         * X11Keyboard.cs: Set the AltGr mask when we get a key event.
21949 2005-01-19  Peter Bartok  <pbartok@novell.com>
21951         * Control.cs: Un-selecting the control when it is loosing focus
21953 2005-01-19  Jackson Harper  <jackson@ximian.com>
21955         * TreeView.cs: Hook up to the text controls leave event so we can
21956         end editing when the users clicks outside the text box.
21957         
21958 2005-01-19  Jackson Harper  <jackson@ximian.com>
21960         * X11Keyboard.cs: Fix typo that was causing the wrong keycodes to
21961         get set in the conversion array.
21963 2005-01-19  Peter Bartok  <pbartok@novell.com>
21965         * Application.cs (ModalRun): Added a call to CreateControl to ensure
21966           focus is properly set
21967         * Button.cs:
21968           - Added missing attributes
21969           - removed styles, those are already set in the base class
21970         * ButtonBase.cs:
21971           - Added missing attributes
21972           - Added clip window styles
21973         * CheckBox.cs: Added missing attributes
21974         * CommonDialog.cs:
21975           - FormParentWindow.CreateParams: Added required clip styles
21976         * Form.cs (ProcessDialogKey): Fixed handling of Escape key, now
21977           also filters modifier keys
21978         * MessageBox.cs:
21979           - Added assignment of Accept and Cancel button to enable Enter
21980             and Esc keys in MessageBox dialogs
21981           - FormParentWindow.CreateParams: Added required clip styles
21982         * RadioButton.cs: Added missing attributes
21983         * TextControl.cs: No longer draws selection if control does not
21984           have focus
21985         * TextBoxBase.cs:
21986           - Now draws simple rectangle around test area to make it obvious
21987             there's a control. This is a hack until we properly support borders
21988           - A few simple fixes to support selections better, now erases selected
21989             text when typing, and resets selection when using movement keys
21991 2005-01-19  Miguel de Icaza  <miguel@ximian.com>
21993         * UpDownBase.cs: Added some new properties.
21995         * DomainUpDown.cs: Implement a lot to get my test working.
21997 2005-01-19  Geoff Norton  <gnorton@customerdna.com>
21999         * XplatUIOSX.cs: Fix a minor bug to bring the close box back
22001 2005-01-19  Geoff Norton  <gnorton@customerdna.com>
22003         * OSXStructs (WindowAttributes): Fixed csc complaints
22005 2005-01-19  Geoff Norton  <gnorton@customerdna.com>
22007         * XplayUIOSX.cs:
22008           OSXStructs.cs: Initial refactor to move enums and consts into
22009           OSXStructs and use them in the driver for greater readability.
22011 2005-01-19  Geoff Norton  <gnorton@customerdna.com>
22013         * XplatUIOSX.cs: Initial support for Standard Cursors.
22014         * OSXStructs.cs: Move our structs here; added ThemeCursor enum
22016 2005-01-19  Jordi Mas i Hernandez <jordi@ximian.com>
22018         * ComboBox.cs: ability to change style when the ctrl is already
22019         created, missing methods and events, bug fixes, signature fixes
22021 2005-01-19  Peter Bartok  <pbartok@novell.com>
22023         * Cursors.cs (ctor): Added ctor to fix signature
22025 2005-01-18  Peter Bartok  <pbartok@novell.com>
22027         * Button.cs: Implemented DoubleClick event
22028         * ButtonBase.cs:
22029           - Fixed keyboard handling to behave like MS, where the press of
22030             Spacebar is equivalent to a mousedown, and the key release is
22031             equivalent to mouseup. Now a spacebar push will give the same
22032             visual feedback like a mouse click.
22033           - Added missing attributes
22034           - Added ImeModeChanged event
22035           - Added support for generating DoubleClick event for derived classes
22036         * CheckBox.cs:
22037           - Implemented DoubleClick event
22038           - Added missing attributes
22039         * CommonDialog.cs: Added missing attribute
22040         * ContextMenu.cs: Added missing attributes
22041         * RadioButton.cs:
22042           - AutoChecked buttons do not allow to be unselected when clicked
22043             (otherwise we might end up with no selected buttons in a group)
22044           - Added missing attributes
22045           - Implemented DoubleClickEvent
22046         * ThreadExceptionDialog.cs: Enabled TextBox code
22048 2005-01-18  Peter Bartok  <pbartok@novell.com>
22050         * Form.cs: Removed debug output
22051         * Button.cs: Added support for DoubleClick method
22053 2005-01-18  Peter Bartok  <pbartok@novell.com>
22055         * Form.cs:
22056           - Added method to parent window that allows triggering size
22057             calculations when a menu is added/removed
22058           - set_Menu: Cleaned up mess from early days of Form and Control,
22059             now properly triggers a recalc when a menu is added/removed
22060           - Added case to select form itself as focused form if no child
22061             controls exist
22062           - Added PerformLayout call when showing dialog, to ensure properly
22063             placed controls
22064         * Control.cs:
22065           - Select(): Made internal so Form can access it
22066           - Focus(): Only call Xplat layer if required (avoids loop), and sets
22067             status
22068         * Application.cs (Run): Removed hack and calls PerformLayout instead
22069           to trigger calculation when Form becomes visible
22071 2005-01-18  Jordi Mas i Hernandez <jordi@ximian.com>
22073         * ComboBox.cs: fixes for ownerdraw
22075 2005-01-18  Peter Bartok  <pbartok@novell.com>
22077         * TextControl.cs:
22078           - Sentinel is no longer static, each Document gets it's own, this
22079             avoids locking or alternatively overwrite problems when more
22080             than one text control is used simultaneously.
22081           - Switched to use Hilight and HilightText brushes for text selection
22083         * TextBoxBase.cs (PaintControl): Disabled AntiAliasing to improve looks
22085 2005-01-18  Peter Bartok  <pbartok@novell.com>
22087         * Control.cs:
22088           - Hooked up the following events:
22089                 o ControlAdded
22090                 o ControlRemoved
22091                 o HandleDestroyed
22092                 o ImeModeChanged
22093                 o ParentChanged
22094                 o TabStopChanged
22095                 o Invalidated
22096                 o SystemColorsChanged
22097                 o ParentFontChanged
22098                 o Move
22099           - Removed debug output
22100           - Added a call to the current theme's ResetDefaults when a color change
22101             is detected
22102         * Form.cs: Now setting the proper ImeMode
22103         * Theme.cs: Defined a method to force recreation of cached resources
22104           and rereading of system defaults (ResetDefaults())
22105         * ThemeWin32Classic.cs: Added ResetDefaults() stub
22107 2005-01-17  Peter Bartok  <pbartok@novell.com>
22109         * Control.cs: Added missing attributes
22111 2005-01-17  Jackson Harper  <jackson@ximian.com>
22113         * TreeNode.cs: Implement editing. Add missing properties selected
22114         and visible.
22115         * TreeView.cs: Implement node editing. Also some fixes to use
22116         Invalidate (invalid area) instead of Refresh when selecting.
22118 2005-01-17  Peter Bartok  <pbartok@novell.com>
22120         * Control.cs:
22121           - Implemented InvokeGotFocus() method
22122           - Implemented InvokeLostFocus() method
22123           - Implemented InvokePaint() method
22124           - Implemented InvokePaintBackground() method
22125           - Implemented InvokeClick() method
22126           - Implemented FindForm() method
22127           - Implemented RectangleToClient() method
22128           - Implemented ClientToRectangle() method
22129           - Implemented ResetBackColor() method
22130           - Implemented ResetCursor() method
22131           - Implemented ResetFont() method
22132           - Implemented ResteForeColor() method
22133           - Implemented ResetImeMode() method
22134           - Implemented ResetLeftToRight() method
22135           - Implemented ResetText() method
22136           - Implemented Scale() methods
22137           - Implemented ScaleCore() method
22138           - Implemented Update() method
22139           - Removed unused variables
22140           - Stubbed AccessibilityNotifyClients and
22141             ControlAccessibleObject.NotifyClients() methods (dunno what to do
22142             with those yet)
22143           - Now setting proper default for RightToLeft property
22144           - Fixed bug in SetClientSizeCore that would cause windows to get
22145             really big
22146           - Now sending Click/DoubleClick events
22147           - Now selecting controls when left mouse button is clicked on
22148             selectable control
22149         * AccessibleEvents.cs: Added
22150         * XplatUI.cs, XplatUIDriver.cs: Added UpdateWindow() method
22151         * XplatUIOSX.cs: Stubbed UpdateWindow() method
22152         * XplatUIWin32.cs: Implemented UpdateWindow() method
22153         * XplatUIX11.cs: Implemented UpdateWindow() method
22154         * Form.cs: Removed stray semicolon causing CS0162 warning
22155         * ThemeWin32Classic.cs: Fixed unused variable warnings
22156         * ScrollableControl.cs: Now calls base method for ScaleCore
22157         * ButtonBase.cs: Now disabling StandardClick and StandardDoubleClick
22158           style to avoid interference with internal click handler (which is
22159           different than standard Control click handling)
22160         * RadioButton.cs:
22161           - Now unchecks all sibling radio buttons when control is
22162             selected (Fixes #68756)
22163           - Removed internal tabstop variable, using the one inherited from
22164             Control
22166 2005-01-17  Jackson Harper  <jackson@ximian.com>
22168         * NavigateEventArgs.cs: Fix base type.
22169         * LinkLabel.cs: Sig fix
22170         
22171 2005-01-17  Jackson Harper  <jackson@ximian.com>
22173         * TreeView.cs: Only invalidate the effected nodes bounds when
22174         selecting nodes.
22176 2005-01-13  Jordi Mas i Hernandez <jordi@ximian.com>
22178         * XplatUIWin32.cs: fixes Win32 marshaling
22179         * XplatUIX11.cs: fixes method signature
22181 2005-01-17  Peter Bartok  <pbartok@novell.com>
22183         * XplatUIX11.cs: Clean up resources when we no longer need them
22185 2005-01-17  Peter Bartok  <pbartok@novell.com>
22187         * XplatUI.cs, XplatUIDriver.cs: Added SetCursor(), ShowCursor(),
22188           OverrideCursor(), DefineCursor(), DefineStdCursor(), GetCursorInfo()
22189           and DestroyCursor() methods.
22190         * Cursor.cs: Partially implemented, now supports standard cursors;
22191           still contains some debug code
22192         * Cursors.cs: Implemented class
22193         * Control.cs:
22194           - WndProc(): Added handling of WM_SETCURSOR message, setting the
22195             appropriate cursor
22196           - Implemented Cursor property
22197           - Replaced break; with return; more straightforwar and possibly
22198             faster
22199           - Now properly setting the result for WM_HELP
22200         * X11Structs.cs: Added CursorFontShape enum
22201         * XplatUIStructs.cs:
22202           - Added StdCursor enum (to support DefineStdCursor() method)
22203           - Added HitTest enum (to support sending WM_SETCURSOR message)
22204         * XplatUIX11.cs:
22205           - Now sends the WM_SETCURSOR message
22206           - Implemented new cursor methods
22207         * XplatUIOSX.cs: Stubbed new cursor methods
22208         * XplatUIWin32.cs:
22209           - Implemented new cursor methods
22210           - Added GetSystemMetrics function and associated enumeration
22212 2005-01-15  Peter Bartok  <pbartok@novell.com>
22214         * Control.cs:
22215           - WndProc(): Now handles EnableNotifyMessage
22216           - SelectNextControl(): Fixed bug where if no child or sibling
22217             controls exist we looped endlessly
22219 2005-01-14  Jackson Harper  <jackson@ximian.com>
22221         * TreeView.cs: Recalculate the tab pages when a new one is added
22222         so that the proper bounding rects are created.
22224 2005-01-14  Jackson Harper  <jackson@ximian.com>
22226         * TreeView.cs: Draw a gray box instead of a grip in the lower
22227         right hand corner when there are both horizontal and vertical
22228         scroll bars.
22230 2005-01-14  Jackson Harper  <jackson@ximian.com>
22232         * Control.cs: When erasing backgrounds use FromHwnd instead of
22233         FromHdc when there is a NULL wparam. This occurs on the X driver.
22234         * XplatUIX11.cs: Set the wparam to NULL.
22236 2005-01-13  Jackson Harper  <jackson@ximian.com>
22238         * PictureBox.cs: Implement missing methods (except ToString, need
22239         to test that on windows) and events. When visibility is changed we
22240         need to redraw the image because the buffers are killed. When size
22241         is changed refresh if the sizemode needs it.
22243 2005-01-13  Peter Bartok  <pbartok@novell.com>
22245         * Control.cs (SelectNextControl): Was using wrong method to select
22246           a control
22248 2005-01-13  Jordi Mas i Hernandez <jordi@ximian.com>
22250         * ComboBox.cs: fixes dropstyle
22252 2005-01-13  Peter Bartok  <pbartok@novell.com>
22254         * Form.cs:
22255           - Implemented Select() override
22256           - Now handles WM_SETFOCUS/WM_KILLFOCUS messages
22257           - Now sets keyboard focus on startup
22258         * Control.cs (SelectNextControl): Now properly handles directed=true
22259         * TextBoxBase.cs:
22260           - WndProc: Now passes tab key on to base if AcceptTabChar=false
22261           - Added (really bad) focus rectangle (mostly for testing)
22262         * TextBox.cs: Added code to handle getting/loosing focus and invalidating
22263           to enforce redraw on focus changes
22264         * ContainerControl.cs:
22265           - Fixed detection of Shift-Tab key presses
22266           - Fixed traversal with arrow keys
22267         * XplatUIX11.cs: Implemented simulated keyboard focus; not sure if we're
22268           gonna keep this or if it's complete yet
22269         
22270 2005-01-13  Jordi Mas i Hernandez <jordi@ximian.com>
22272         * ComboBox.cs: missing properties, fixes
22274 2005-01-13  Peter Bartok  <pbartok@novell.com>
22276         * Panel.cs (ctor): Setting Selectable window style to off
22277         * Splitter.cs (ctor): Setting Selectable window style to off
22278         * GroupBox.cs (ctor): Setting Selectable window style to off
22279         * Label.cs (ctor): Setting Selectable window style to off
22281 2005-01-12  Miguel de Icaza  <miguel@ximian.com>
22283         * UpDownBase.cs (InitTimer): If the timer has been already
22284         created, enable it.
22286         Use a TextBox instead of a Label.
22288 2005-01-12  Jackson Harper  <jackson@ximian.com>
22290         * TreeView.cs: Refresh the tree after sorting the nodes. Always
22291         draw the connecting node lines (when ShowLines is true).
22292         * TreeNode.cs: The nodes index can now be updated. This is used
22293         when a node collection is sorted.
22294         * TreeNodeCollection.cs: Implement sorting. Nodes can be sorted on
22295         insert or an existing unsorted node collection can be sorted.
22296         
22297 2005-01-12  Peter Bartok  <pbartok@novell.com>
22299         * ContainerControl.cs: Implemented ProcessDialogKeys()
22301 2005-01-12  Peter Bartok  <pbartok@novell.com>
22303         * Control.cs:
22304           - Implemented SelectNextControl() method
22305           - Several focus related bug fixes
22306           - Fixed Docking calculations to match MS documentation and
22307             behaviour
22309 2005-01-12  Jordi Mas i Hernandez <jordi@ximian.com>
22311         * ContainerControl.cs, ListControl.cs, ListBox.cs: keyboard navigation and
22312         bug fixes
22314 2005-01-12  Peter Bartok  <pbartok@novell.com>
22316         * Control.cs:
22317           - Fixed broken Contains() method
22318           - Implemented GetNextControl() method. Finally. This is the pre-
22319             requisite for focus handling.
22321 2005-01-12  Peter Bartok  <pbartok@novell.com>
22323         * OSXStrucs.cs: Added
22325 2005-01-12  Peter Bartok  <pbartok@novell.com>
22327         * XplatUIWin32.cs:
22328           - Removed PeekMessageFlags
22329           - Implemented SetWindowStyle() method
22330         * XplatUIStructs.cs: Added PeekMessageFlags
22331         * X11Structs: Added missing border_width field to XWindowChanges struct
22332         * XplatUIX11.cs:
22333           - PeekMessage: Now throws exception if flags which are not yet
22334             supported are passed
22335           - Implemented SetWindowStyle() method
22336           - Fixed SetZOrder to handle AfterHwnd properly
22337         * XplatUI.cs: Added SetWindowStyle() method
22338         * XplatUIDriver.cs: Added SetWindowStyle() abstract
22339         * Control.cs:
22340           - Implemented UpdateStyles() method
22341           - Implemented UpdateZOrder() method
22342         * XplatUIOSX.cs: Added SetWindowStyle() stub
22344 2005-01-12  Geoff Norton  <gnorton@customerdna.com>
22346         * XplatUIOSX.cs: Fix SetZOrder (this needs more testing with a 3
22347         button mouse).
22350 2005-01-11  Jackson Harper  <jackson@ximian.com>
22352         * TreeView.cs: Still need to draw lines to siblings even if out of
22353         the current node is out of the clip.
22355 2005-01-11  Jackson Harper  <jackson@ximian.com>
22357         * TreeView.cs: When setting the hbar/vbar/grip position use
22358         SetBounds so that perform layout is only called once. Also suspend
22359         and resume layout so layout is only done once for all controls.
22360         - Removed some debug fluff
22361         * SizeGrip.cs: Call base implmentation in overriding methods.
22362         - When visibility is changed the drawing buffers are killed so we
22363         need to redraw.
22365 2005-01-11  Jackson Harper  <jackson@ximian.com>
22367         * TreeView.cs: Calculate the open node count while drawing. This
22368         saves us an entire tree traversal for every paint operation. Use
22369         a member var for the open node count so less vars are passed around.
22371 2005-01-11  John BouAntoun  <jba-mono@optusnet.com.au>
22373         * MonthCalendar.cs:
22374         - fixed selection to use mousemove, not mouse polling on timer
22375         * ThemeWin32Classic.cs
22376         - removed redundant unused variable "no_more_content"
22377         
22378 2005-01-11  Peter Bartok  <pbartok@novell.com>
22380         * XplatUIX11.cs (DoEvents): Needs to return when no more events
22381           are pending, so it now calls PeekMessage instead of GetMessage;
22382           implemented a incomplete version of PeekMessage
22383         
22384 2005-01-11  Peter Bartok  <pbartok@novell.com>
22386         * XplatUIWin32.cs: Switched P/Invokes to unicode charset to avoid
22387           I18n issues
22388         * TextBoxBase.cs: Added sending of TextChanged event
22390 2005-01-10  Jackson Harper  <jackson@ximian.com>
22392         * TreeView.cs: Try not to draw outside the clipping rectangle on
22393         each node element.
22395 2005-01-10  Jordi Mas i Hernandez <jordi@ximian.com>
22397         * ComboBox.cs: keyboard navigation, item navigation, bug fixes
22399 2005-01-10  Jackson Harper  <jackson@ximian.com>
22401         * TreeView.cs:
22402         - Implement fast scrolling. Now only the newly
22403         exposed nodes are drawn and the old image is moved using the
22404         XplatUI::ScrollWindow method.
22405         - Factor in height of nodes when calculating whether or not the
22406         node is in the clipping rect.
22408 2005-01-10  Jackson Harper  <jackson@ximian.com>
22410         * TreeNodeCollection.cs: Refresh the tree when a new node is added.
22412 2005-01-10  Peter Bartok  <pbartok@novell.com>
22414         * Application.cs: Added temporary hack to resolve all our resize
22415           required issues on startup. This will get fixed properly at
22416           some point in the future
22418 2005-01-10  Jackson Harper  <jackson@ximian.com>
22420         * SizeGrip.cs: New internal class that is used as a sizing
22421         grip control...hence the name.
22423 2005-01-10  Peter Bartok  <pbartok@novell.com>
22425         * Control.cs: Implemented proper TabIndex handling, now assigning
22426           a tabindex when a control is added to a container
22427         * GroupBox.cs (ctor): Now sets the Container style bit, required
22428           for Control.GetNextControl()
22430 2005-01-09  Jackson Harper  <jackson@ximian.com>
22432         * TextBoxBase.cs: Clear window when scrolling (fixes build).
22434 2005-01-09  Peter Bartok <pbartok@novell.com>
22436         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIOSX.cs,
22437           XplatUIX11.cs: Added ability to control ScrollWindow expose and
22438           an overload for ScrollWindow to allow only scrolling a rectangle
22440 2005-01-09  Peter Bartok <pbartok@novell.com>
22442         * Form.cs:
22443           - Implemented SetDesktopBounds method
22444           - Implemented SetDesktopLocation method
22446 2005-01-08  Jackson Harper  <jackson@ximian.com>
22448         * TreeView.cs: Only set the vbar's Maximum and LargeChange when
22449         the node count has changed, this removes to VScroll::Refresh calls
22450         when drawing.
22452 2005-01-08  Geoff Norton  <gnorton@customerdna.com>
22454         * XplatUIOSX.cs: Fix GetWindowState & SetWindowState
22456 2005-01-07  Jackson Harper  <jackson@ximian.com>
22458         * TreeNode.cs: Just update the single node when it is
22459         checked. Don't refresh after toggling, the Expand/Collapse already
22460         handles this.
22461         * TreeView.cs: Respect clipping a little more when drawing. Try
22462         not to redraw things that don't need to be redrawn. Just hide the
22463         scrollbars when they are no longer needed instead of removing
22464         them, so they don't have to be created again and again.
22465         
22466 2005-01-07  Geoff Norton  <gnorton@customerdna.com>
22468         * XplatUIOSX.cs (SetCaretPos):  We need to translate the view
22469         coordinates to window space to place the caret properly, FIXED.
22470         Implement GetWindowState & SetWindowState
22472 2005-01-06  Peter Bartok <pbartok@novell.com>
22474         * Form.cs:
22475           - Implemented ClientSize property
22476           - Implemented DesktopBounds property
22477           - Implemented DesktopLocation property
22478           - Implemented IsRestrictedWindow property
22479           - Implemented Size property
22480           - Implemented TopLevel property
22481           - Implemented FormWindowState property
22482         * Control.cs:
22483           - Implemented GetTopLevel() method
22484           - Implemented SetTopLevel() method
22485         * X11Structs.cs (Atom):
22486           - Added AnyPropertyType definition
22487           - Added MapState definiton and updated XWindowAttribute struct
22488         * XplatUI.cs: Added GetWindowState() and SetWindowState() methods
22489         * XplatUIDriver.cs: Added GetWindowState() and SetWindowState() methods
22490         * XplatUIOSX.cs: Stubbed GetWindowState() and SetWindowState() methods
22491         * XplatUIWin32.cs:
22492           - Implemented GetWindowState() and SetWindowState() methods
22493           - Fixed Win32GetWindowLong return type
22494         * XplatUIX11.cs:
22495           - Introduced central function for sending NET_WM messages
22496           - Implemented GetWindowState() and SetWindowState() methods
22497         * TextBoxBase.cs (set_Lines):
22498           - Now uses Foreground color for text added via Text property (Duh!)
22499           - Added code to remember programmatically requested size (fixes
22500             behaviour when Multiline is set after Size)
22501           - Added AutoSize logic
22503 2005-01-06  Jackson Harper  <jackson@ximian.com>
22505         * TreeView.cs: Draw the image after the checkbox if checkboxes are enabled.
22507 2005-01-06  Jackson Harper  <jackson@ximian.com>
22509         * ListBox.cs: Don't allow the horizontal scrollbars maximum to be
22510         set to less then 0.
22512 2005-01-06  Jackson Harper  <jackson@ximian.com>
22514         * ScrollableControl.cs: Lazy init the scrollbars.
22515         
22516 2005-01-06  Jackson Harper  <jackson@ximian.com>
22518         * Theme.cs: Speed up getting pens and solid brushes, by using
22519         their ARGB as a hash instead of tostring and not calling Contains.
22521 2005-01-06  Peter Bartok <pbartok@novell.com>
22523         * Form.cs:
22524           - Implemented OnActivated and OnDeactivate event trigger
22525           - Implemented Activate() method
22526           - Fixed ShowDialog() to activate the form that was active before
22527             the dialog was shown
22528         * XplatUIX11.cs:
22529           - Added global active_window var that tracks the currently active
22530             X11 window
22531           - Now always grabs Property changes from the root window to always
22532             catch changes on the active window property
22533           - Added code to PropertyNotify handler to send Active/Inactive
22534             messages when state changes. This puts X11 and Win32 en par on
22535             WM_ACTIVATE notifications (except for double notifications when
22536             the user clicks away from our modal window to another one of our
22537             windows)
22539 2005-01-05  Jackson Harper  <jackson@ximian.com>
22541         * ImageList.cs: Implment ctor
22543 2005-01-05  Geoff Norton  <gnorton@customerdna.com>
22545         * XplatUIOSX.cs: Implement Activate/SetTopmost
22547 2005-01-05  Geoff Norton  <gnorton@customerdna.com>
22549         * XplatUIOSX.cs: Implement SetZOrder, minor cleanup
22551 2005-01-05  Geoff Norton  <gnorton@customerdna.com>
22553         * XplatUIOSX.cs: Implement GetActive/SetFocus.
22555 2005-01-05  Peter Bartok <pbartok@novell.com>
22557         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIX11.cs,
22558           XplatUIOSX.cs: Added GetActive method to return the currently
22559           active window for the application (or null, if none is active)
22560         * Form.cs:
22561           - Implemented ActiveForm
22562           - Commented out owner assignment for modal dialogs (causes problems
22563             on Win32, since the owner will be disabled)
22564           - Reworked some Active/Focus handling (still incomplete)
22565         * CommonDialog.cs: Commented out owner assignment for modal dialogs
22566           (causes problems on Win32, since the owner will be disabled)
22567         * IWin32Window: Added ComVisible attribute
22569 2005-01-05  Peter Bartok <pbartok@novell.com>
22571         * ToolTip.cs (WndProc): Enable setting focus now that we have the
22572           required XplatUI functions.
22574 2005-01-05  Peter Bartok <pbartok@novell.com>
22576         * XplatUI.cs, XplatUIOSX.cs, XplatUIWin32.cs, XplatUIDriver.cs,
22577           XplatUIX11.cs, X11Structs.cs, Form.cs: Framework code required
22578           to implement focus and activation handling; still incomplete and
22579           with debug output
22581 2005-01-04  Peter Bartok <pbartok@novell.com>
22583         * TextBoxBase.cs: Changed access level for Document property to
22584           match switch to internal for TextControl
22586 2005-01-04  Peter Bartok <pbartok@novell.com>
22588         * AccessibleObject: Added ComVisible attribute
22590 2005-01-04  Jackson Harper  <jackson@ximian.com>
22592         * X11Keyboard.cs: Remove unneeded var.
22594 2005-01-04  Jackson Harper  <jackson@ximian.com>
22596         * XplatUIX11.cs (DoEvents): Implement, Just cast aside all events
22597         but PAINT.
22598         * XplatUIX11.cs (GetMessage): Call Exit when we get an unknown
22599         ClientMessage. This makes apps exit cleanly (more often).
22600         
22601 2005-01-04  Jackson Harper  <jackson@ximian.com>
22603         * TreeNode.cs: Patches by Kazuki Oikawa (kazuki@panicode.com) for
22604         handling focus, return correct colors and fonts,
22605         * TreeView.cs: Patches by Kazuki Oikawa (kazuki@panicode.com) to
22606         handle selection, horizontal scrolling, and mouse interaction.
22608 2005-01-04  Peter Bartok <pbartok@novell.com>
22610         * ICommandExecutor.cs: Added
22611         * IDataGridColumnStyleEditingNotificationService.cs: Added
22612         * IFeatureSupport.cs: Added
22613         * IFileReaderService.cs: Added
22614         * IDataObject.cs: Added ComVisible attribute
22615         * AmbientProperties.cs: Added
22616         * BaseCollection.cs: Added missing attributes
22617         * ListBindingConverter.cs: Added (stubbed, required for certain attributes)
22618         * BaseCollection.cs: Added missing attributes
22619         * Binding.cs: Added TypeConverter attribute
22620         * BindingContext.cs: Added DefaultEvent attribute
22621         * BindingsCollection.cs: Added DefaultEvent attribute
22622         * Button.cs: Added DefaultValue attribute
22623         * DragEventArgs.cs: Added ComVisible attribute
22624         * GiveFeedbackEventArgs.cs: Added ComVisible attribute
22625         * KeyEventArgs.cs: Added ComVisible attribute
22626         * KeyPressEventArgs.cs: Added ComVisible attribute
22627         * MouseEventArgs.cs: Added ComVisible attribute
22628         * NavigateEventArgs.cs: Added
22629         * NavigateEventHandler.cs: Added
22630         * FeatureSupport.cs: Added
22631         * OSFeature.cs: Added
22632         * Theme.cs: Added abstract Version property to support OSFeature
22633         * ThemeWin32Classic.cs: Added Version property to
22634           support OSFeature.Themes
22635         * ProgressBar.cs: Removed OnPaintBackground override, not required since
22636           the proper styles to avoid background drawing are set, also doesn't
22637           match MS signature
22638         * QueryAccessibilityHelpEventArgs.cs: Added ComVisible attribute
22639         * QueryContinueDragEventArgs.cs: Added ComVisible attribute
22640         * ScrollEventArgs.cs: Added ComVisible attribute
22641         * SplitterEventArgs.cs: Added ComVisible attribute
22642         * AccessibleSelection.cs: Added Flags attribute
22643         * Appearance.cs: Added ComVisible attribute
22644         * Border3DSide.cs: Added ComVisible attribute
22645         * Border3DStyle.cs: Added ComVisible attribute
22646         * BorderStyle.cs: Added ComVisible attribute
22647         * DragAction.cs: Added ComVisible attribute
22648         * ErrorBlinkStyle.cs: Added
22649         * ScrollEventType.cs: Added ComVisible attribute
22650         * AnchorStyles.cs: Added Editor attribute
22651         * DockStyle.cs: Added Editor attribute
22652         * HorizontalAlignment.cs: Added ComVisible attribute
22653         * HelpEventArgs.cs: Added ComVisible attribute
22654         * PaintEventArgs.cs: Added IDisposable
22656 2005-01-04  Peter Bartok <pbartok@novell.com>
22658         * TextControl.cs: Switched Line, LineTag and Document classes to
22659           internal
22661 2005-01-04  Jordi Mas i Hernandez <jordi@ximian.com>
22663         * ComboBox.cs, ThemeWin32Classic.cs, ListBox.cs, Theme.cs:
22664         Simple mode, fixes, IntegralHeight, etc.
22666 2005-01-04  Peter Bartok <pbartok@novell.com>
22668         * TextBoxBase.cs: Using proper font variable now
22670 2005-01-04  Peter Bartok <pbartok@novell.com>
22672         * Form.cs (ShowDialog): Set parent to owner, if provided
22673         * GroupBox.cs: Removed unused vars
22674         * TextControl.cs:
22675           - Added GetHashCode() for Document and LineTag classes
22676           - Removed unused variables
22677           - Added CharIndexToLineTag() and LineTagToCharIndex() methods
22678             to allow translation between continuous char position and line/pos
22679         * CheckBox.cs: Removed vars that are provided by base class
22680         * RadioButton.cs: Removed vars that are provided by base class, added
22681           new keyword where required
22682         * LinkLabel.cs: Added new keyword where required
22683         * Control.cs (WndProc): Removed unused variable
22684         * TextBoxBase.cs:
22685           - Finished SelectionLength property
22686           - Implemented SelectionStart property
22687           - Implemented Text property
22688           - Removed unused vars
22689         * MessageBox.cs: Added new keyword where required
22690         * TextBox.cs: Removed Text property code (now in TextBoxBase), fixed
22691           WndProc signature
22692         * MenuAPI.cs: Added new keyword where required
22693         * ButtonBase.cs: Removed vars that are provided by base class, added
22694           new keyword where required
22695         * ThemeWin32Classic.cs (DrawMonthCalendarDate): Now cast Math.Floor
22696           argument to double, to allow compiling with csc 2.0 (Atsushi ran
22697           into this)
22698         * Application.cs (Run): Now triggers the ThreadExit event
22699         * CommonDialog.cs: Added new keyword where required; now properly sets
22700           parent (owner) for dialog
22701         * XplatUIX11.cs: Commented out unused vars
22702         * StatusBar.cs: Fixed signature for Text property
22703         * TabPage.cs: Undid Jordi's removal of unused var, now using the var
22705 2005-01-04  Jordi Mas i Hernandez <jordi@ximian.com>
22707         * ComboBox.cs, TabPage.cs, MenuAPI.cs, ThemeWin32Classic.cs,
22708         TrackBar.cs, MonthCalendar.cs: remove unused vars
22710 2005-01-03  Jackson Harper  <jackson@ximian.com>
22712         * ThemeWin32Classic.cs:
22713         * X11Keyboard.cs: Remove unused vars.
22715 2005-01-03  Peter Bartok  <pbartok@novell.com>
22717         * TextBox.cs:
22718           - set_Text: Tied into TextControl
22719           - set_TextAlignment: Tied into TextControl
22720         * TextControl.cs:
22721           - Added alignment properties and implemented alignment handling
22722             and drawing (still has a bug, not generating proper expose events)
22723           - Added new Line() constructor to allow passing the line alignment
22724           - Fixed selection setting, properly handling end<start now
22725           - Added aligment considerations to RecalculateDocument()
22726         * TextBoxBase.cs:
22727           - Now properly enforces control height for single line controls
22728           - Added support for CharacterCasing
22729           - Added IsInputKey override
22730           - Fixed Keys.Enter logic
22731           - Added SetBoundsCore override
22732           - Fixed mouse selection handling
22734 2005-01-03  Jackson Harper  <jackson@ximian.com>
22736         * TreeView.cs:
22737           - Collapse and uncheck all nodes when CheckBoxes is disabled.
22738           - Checkboxes are always aligned to the bottom of the node,
22739           regardless of item height.
22740           - Use the node bounds to draw the text so we can center it when
22741           the item height is greater then the font height.
22742           - Node::Bounds are only the text part of the node.
22743         * TreeNode.cs: New method to combine collapsing and unchecking all
22744           nodes recursively.
22746 2005-01-02  Jackson Harper  <jackson@ximian.com>
22748         * TreeView.cs: Draw checkmarks, handle detecting check mark clicks
22749         * TreeNode.cs: Add a bounding box for the checkbox, refresh the
22750         tree when a check is changed. TODO: Only refresh the checked node.
22752 2004-12-30  Jackson Harper  <jackson@ximian.com>
22754         * TreeView.cs: Draw checkbox boxes when checkboxes are enabled.
22755         * TreeNode.cs: When collapsing make sure to never collapse the
22756         root node.
22758 2004-12-29  Jackson Harper  <jackson@ximian.com>
22760         * TreeView.cs: Align lines to the bottom of plus minus boxes properly.
22761         
22762 2004-12-28  Zoltan Varga  <vargaz@freemail.hu>
22764         * X11Structs.cs X11Keyboard.cs XplatUIX11.cs: Fix 64 bit issues.
22766 2004-12-28  Peter Bartok  <pbartok@novell.com>
22768         * MessageBox.cs (get_CreateParams): Don't use owner var if it's
22769           not yet assigned
22771 2004-12-28  Peter Bartok  <pbartok@novell.com>
22773         * Control.cs (WndProc): Added WM_HELP handler, now generates
22774           HelpRequested event
22775         * Form.cs: Added HelpButton property and required support code
22776         * XplatUIStructs.cs: Added HELPINFO structure for WM_HELP handling
22778 2004-12-28  Peter Bartok  <pbartok@novell.com>
22780         * CommonDialog.cs:
22781           - Made DialogForm.owner variable internal
22782           - Added check to ensure owner form is set before setting
22783             owner properties in CreateParams
22785 2004-12-28  Geoff Norton  <gnorton@customerdna.com>
22787         * XplatUIOSX.cs: Implement mouse hovering.  Fix QDPoint struct to avoid
22788           swizzling.  Implement ClientToScreen and ScreenToClient.  Implement
22789           GetCursorPos.  Fix major visibility issues.  Rework the windowing
22790           system to support borderless/titleless windows (implements menus).
22791           Fix GetWindowPos.  Implement initial background color support for
22792           views.
22794 2004-12-28  Peter Bartok  <pbartok@novell.com>
22796         * Form.cs (get_CreateParams): Make sure we have an owner before using
22797           the owner variable. Implement proper default if no owner exists
22799 2004-12-28  Peter Bartok  <pbartok@novell.com>
22801         * In preparation for making Managed.Windows.Forms the default build target
22802           for System.Windows.Forms, the following stubbed files were added.
22803           Dialogs are currently being implemented by contributors and are only
22804           short-term place holders.
22805         * ColorDialog.cs: Initial check-in (minmal stub)
22806         * DataGrid.cs: Initial check-in (minimal stub)
22807         * DataGridLineStyle.cs: Initial check-in (minimal stub)
22808         * DataGridParentRowsLabelStyle.cs: Initial check-in (minimal stub)
22809         * DataGridTableStyle.cs: Initial check-in (minimal stub)
22810         * FontDialog.cs: Initial check-in (minimal stub)
22811         * FileDialog.cs: Initial check-in (minimal stub)
22812         * GridColumnStylesCollection.cs: Initial check-in (minimal stub)
22813         * GridTableStylesCollection.cs: Initial check-in (minimal stub)
22814         * OpenFileDialog: Initial check-in (minimal stub)
22815         * IComponentEditorPageSite.cs: Initial check-in
22816         * Splitter.cs: Initial check-in (for Jackson)
22817         * SplitterEventArgs.cs: Initial check-in (for Jackson)
22818         * SplitterEventHandler.cs: Initial check-in (for Jackson)
22819         * TextBox.cs: Initial check-in; still needs some wiring to
22820           TextControl backend
22821         * Form.cs: Implemented ControlBox property
22822         * MessageBox.cs: Added proper coding for Minimize/Maximize/ControlBox
22823         * CommonDialog.cs: Added proper coding for Minimize/Maximize/ControlBox
22824         * TextControl.cs: Added selection functionality; added todo header
22825         * TextBoxBase.cs:
22826           - Implemented Lines property
22827           - Implemented TextHeight property
22828           - Implemented SelectedText property
22829           - Implemented SelectionLength property
22830           - Implemented SelectAll method
22831           - Implemented ToString method
22832           - Removed and cleaned up some debug code
22833           - Implemented (still buggy) mouse text selection
22835 2004-12-27  Jordi Mas i Hernandez <jordi@ximian.com>
22837         * ComboBox.cs: Complete DropDownList implementation, fixes.
22839 2004-12-26  Jordi Mas i Hernandez <jordi@ximian.com>
22841         * ThemeWin32Classic, Theme.cs: ComboBox drawing methods
22842         * ComboBoxStyle.cs: ComboBoxStyle enum
22843         * ComboBox.cs: Initial work on ComboBox control
22845 2004-12-21  Peter Bartok  <pbartok@novell.com>
22847         * Control.cs (ctor, CreateParams): Moved setting of is_visible
22848           forward so that anything that creates a window gets the default,
22849           also no longer uses Visible property in CreateParams to avoid
22850           walking up the parent chain and possibly get the wrong visible
22851           status. Fixed IsVisible to no longer walk up to the parent.
22853 2004-12-21  Peter Bartok  <pbartok@novell.com>
22855         * Form.cs (ShowDialog): Unset modality for the proper window
22857 2004-12-20  Peter Bartok  <pbartok@novell.com>
22859         * CommonDialog.cs: Initial check-in
22861 2004-12-20  Peter Bartok  <pbartok@novell.com>
22863         * Control.cs (Visible): Now uses the parent window instead of the
22864           client area window for the property
22866         * Form.cs
22867           - ShowDialog(): Now uses the proper window for modality
22868           - The default visibility state for the form parent is now false. This
22869             will prevent the user from seeing all the changes to the form and
22870             its controls before the application hits Application.Run()
22871           - Removed some stale commented out code
22873         * NativeWindow.cs:
22874           - Added FindWindow() method to have a method to check for existence
22875             of a window handle
22876           - Added ability to override default exception handling (for example
22877             when debugging with VS.Net; to do this the ExternalExceptionHandler
22878             define must be set
22879           - Removed some useless debug output
22881         * XplatUIX11.cs:
22882           - Removed r37929 (SetModal patch from Ashwin Bharambe), was
22883             not working as expected
22884           - Implemented modal_window stack and checking for _WM_ACTIVE_WINDOW
22885             property to allow switching back to the modal window if focus is
22886             given to another one of our windows (Application Modal)
22887           - Now only sets override_redirect if we create a window
22888             without WS_CAPTION
22889           - Moved EventMask selection before mapping of newly created window
22890             so we can catch the map event as well
22891           - Implemented Activate() method via the _WM_ACTIVE_WINDOW property
22892           - Added various Atom related DllImports
22893           - Implemented Exit() method
22894           - .ctor() : No longer shows window if WS_VISIBLE is not defined
22895             in the CreateParams
22897         * MessageBox.cs: Now properly deals with the FormParent window by
22898           providing an override the FormParent CreateParams property to
22899           set as POPUP instead of OVERLAPPED window.
22901 2004-12-19  Geoff Norton  <gnorton@customerdna.com>
22903         * XplatUIOSX.cs: Implement DestroyWindow.  Implement ScrollWindow
22904         Minor code cleanup.
22906 2004-12-19  Geoff Norton  <gnorton@customerdna.com>
22907         
22908         * XplatUIOSX.cs (SetModal): Implement this method on OSX.
22910 2004-12-18  Peter Bartok  <pbartok@novell.com>
22912         * XplatUIX11.cs (SetModal): Applied patch from Ashwin Bharambe,
22913           implementing SetModal() method
22915 2004-12-18  Peter Bartok  <pbartok@novell.com>
22917         * X11Structs.cs (XGCValues): Fixed type of function element
22918         * XplatUI.cs: Added ScrollWindow() method
22919         * XplatUIDriver.cs: Added ScrollWindow() abstract
22920         * XplatUIWin32.cs: Implemented ScrollWindow() method
22921         * XplatUIX11.cs: Implemented ScrollWindow() method
22922         * XplatUIOSX.cs: Stubbed out ScrollWindow() method
22924 2004-12-17  Geoff Norton  <gnorton@customerdna.com>
22926         * XplatUIOSX.cs:  Fix cursor to use an Invert instead of drawing it
22927         Some more keyboard support (INCOMPLETE)
22929 2004-12-17  Peter Bartok  <pbartok@novell.com>
22931         * TextControl.cs:
22932         - Added color attribute to line tags.
22933         - Added color argument to all functions dealing with tags
22934         - Added color argument support to various functions
22935         - Fixed miss-calculation of baseline/shift in certain circumstances
22937         * TextBoxBase.cs: Added new color option to test code
22939 2004-12-17  Jackson Harper  <jackson@ximian.com>
22941         * TreeNode.cs:
22942         * MonthCalendar.cs: Signature fixes
22944 2004-12-17  Geoff Norton  <gnorton@customerdna.com>
22946         * XplatUIOSX.cs: Find the missing caret; caret was dissappearing after a
22947         keyboard event moved it.  Create a new graphics context for each paint resolves this
22949 2004-12-17  Geoff Norton  <gnorton@customerdna.com>
22951         * XplatUIOSX.cs: Fix hard cpu eat on loop with existing timers,
22952         Make caret exist and go blink blink.  Initial keyboard support.
22953         Fix exception handler, Add Invalidate support.  Change way RefreshWindow
22954         works.
22956 2004-12-17  Jackson Harper  <jackson@ximian.com>
22958         * XplatUIStructs.cs: Updated set of virtual keycodes.
22959         * KeyboardLayouts.cs: SCROLL_LOCK is now SCROLL
22961 2004-12-17  Jackson Harper  <jackson@ximian.com>
22963         * XplatUIX11.cs: Prune old keyboard code.
22965 2004-12-17  Jackson Harper  <jackson@ximian.com>
22967         * XplatUIX11.cs: When generating mouse wparams get the modifier
22968         keys from the ModifierKeys property.
22970 2004-12-17  Jackson Harper  <jackson@ximian.com>
22972         * X11Keyboard.cs: Send up/down input when generating
22973         messages. Remove some unused vars.
22975 2004-12-17  Jackson Harper  <jackson@ximian.com>
22977         * TabControl.cs:
22978         * TreeView.cs: get rid of warnings.
22980 2004-12-17  Jackson Harper  <jackson@ximian.com>
22982         * XplatUIStructs.cs: Fix a couple wrong virtual keycodes.
22984 2004-12-17  Jordi Mas i Hernandez <jordi@ximian.com>
22986         * ListBox.cs: bug fixes, changes for CheckedListBox.cs
22987           CheckedListBox.cs: Implementation
22989 2004-12-17  Peter Bartok  <pbartok@novell.com>
22991         * TextControl.cs (RecalculateLine): Fixed baseline aligning calcs
22993 2004-12-16  Peter Bartok  <pbartok@novell.com>
22995         * TextControl.cs:
22996           - InsertCharAtCaret(): Fixed start pos fixup
22997           - CaretLine_get: No longer derives the line from the tag, the tag
22998             could be stale if lines in the document have been added or deleted
22999           - RebalanceAfterDelete(): Fixed bug in balancing code
23000           - RebalanceAfterAdd(): Fixed really stupid bug in balancing code
23001           - Line.Streamline(): Now can also elminate leading empty tags
23002           - DumpTree(): Added a few more tests and prevented exception on
23003             uninitialized data
23004           - Added Debug section for Combining lines
23005           - Delete(): Now copies all remaining properties of a line
23006           
23007         * TextBoxBase.cs:
23008           - Left mousebutton now sets the caret (and middle button still acts
23009             as formatting tester, which must go away soon)
23010           - Added Debug section for Deleting/Combining lines
23011           - Fixed calculations for UpdateView after Combining lines
23013 2004-12-16  Peter Bartok  <pbartok@novell.com>
23015         * TextControl.cs: Now properly aligns text on a baseline, using the
23016           new XplatUI.GetFontMetrics() method. Simplified several calculations
23017         * TextBoxBase.cs: Moved #endif to allow compiling if Debug is not
23018           defined
23020 2004-12-16  Peter Bartok  <pbartok@novell.com>
23022         * XplatUI.cs: Added GetFontMetrics() method
23023         * XplatUIDriver.cs: Added GetFontMetrics() abstract
23024         * XplatUIX11.cs: Implemented GetFontMetrics() method, now calls
23025           into libgdiplus, our private GetFontMetrics function
23026         * XplatUIOSX.cs: Implemented GetFontMetrics() method, same as X11
23027         * XplatUIWin32.cs: Implemented GetFontMetrics() method
23029 2004-12-16  Jackson Harper  <jackson@ximain.com>
23031         * XplatUIStruct.cs: Add enum for dead keys
23032         * X11Keyboard.cs: Map and unmap dead keys.
23034 2004-12-16  Jackson Harper  <jackson@ximian.com>
23036         * X11Keyboard.cs: Detect and use the num lock mask.
23038 2004-12-16  Peter Bartok  <pbartok@novell.com>
23040         * Control.cs (CreateGraphics): Added check to make sure the
23041           handle of the window exists before calling Graphics.FromHwnd()
23043 2004-12-16  Peter Bartok  <pbartok@novell.com>
23045         * TextBoxBase.cs: Initial check-in. DO NOT TRY TO USE THIS YET. It
23046           contains a lot of code that's not supposed to be there for the
23047           real thing, but required for developing/testing the textbox
23048           backend.
23050 2004-12-16  Peter Bartok  <pbartok@novell.com>
23052         * TextControl.cs:
23053         - Fixed Streamline method
23054         - Added FindTag method to Line
23055         - Added DumpTree method for debugging
23056         - Added DecrementLines() method for deleting lines
23057         - Fixed UpdateView to update the cursor to end-of-line on single-line
23058           updates
23059         - Added PositionCaret() method
23060         - Fixed MoveCaret(LineDown) to move into the last line, too
23061         - Added InsertChar overload
23062         - Fixed InsertChar tag offset calculations
23063         - Added DeleteChar() method
23064         - Added Combine() method for folding lines
23065         - Fixed Delete() method, no longer allocates wasted Line object and
23066           now copies all properties when swapping nodes
23067         - Delete() method now updates document line counter
23069 2004-12-15  Jackson Harper  <jackson@ximian.com>
23071         * XplatUIX11.cs: Get the modifier keys from the keyboard driver
23072         * X11Keyboard.cs: Expose the currently selected modifier keys
23073         through a property.
23075 2004-12-15  Peter Bartok  <pbartok@novell.com>
23077         * TextControl.cs: Initial check-in. Still incomplete
23079 2004-12-15  Jackson Harper  <jackson@ximian.com>
23081         * TreeNode.cs:
23082         * TreeView.cs: Fix build on csc (second time today ;-))
23084 2004-12-15  Jackson Harper  <jackson@ximian.com>
23086         * TreeView.cs: Store the treenodes plus/minus box bounds when it
23087         is calculated and use this for click testing.
23088         * TreeNode.cs: Add functionality to store the nodes plus minus box bounds.
23090 2004-12-15  Jackson Harper  <jackson@ximian.com>
23092         * TreeView.cs: Pass the nodes image index to the image list when
23093         drawing that image.
23095 2004-12-15  Jackson Harper  <jackson@ximian.com>
23097         * X11Keyboard.cs: Set messages hwnd.
23098         * XplatUIX11.cs: Pass proper hwnd wot keyboard driver. Set hwnd on
23099         post_message calls.
23101 2004-12-15  Jackson Harper  <jackson@ximian.com>
23103         * X11Keyboard.cs: Fix to compile with csc.
23104         
23105 2004-12-15  Jackson Harper  <jackson@ximian.com>
23107         * X11Structs.cs: Add key mask values
23108         * XplatUIStruct.cs: Add keyboard event flags, and keyboard definitions
23109         * X11Keyboard.cs: New file - Extrapolates and interpolates key
23110         down/up foo into WM_CHAR foo
23111         * KeyboardLayouts.cs: Common keyboard layouts
23112         * XplatUIX11.cs: Add the keyboard driver. Add functionality to
23113         post messages into the main queue.
23115 2004-12-13  Jordi Mas i Hernandez <jordi@ximian.com>
23117         * Button.cs: implement ProcessMnemonic
23118         * ThemeWin32Classic.cs: use ResPool (caching) instead of creating
23119           brushes everytime
23120         * Control.cs: fixes IsMnemonic (support for &&, case insensitive, etc)
23121         * ButtonBase.cs: Show HotkeyPrefix (not the &)
23123 2004-12-12  John BouAntoun  <jba-mon@optusnet.com.au>
23124         
23125         * MonthCalendar.cs: Implemented click-hold for next/previous month
23126           and date selection
23127           
23128 2004-12-11  Peter Bartok  <pbartok@novell.com>
23130         * X11Structs.cs:
23131           - Added XKeyboardState (moved from XplatUIX11.cs)
23132           - Added XCreateGC related enums and structures
23133           - Added GXFunction for XSetFunction
23135         * XplatUIStructs.cs: Added missing WS_EX_xxx definitions
23137         * XplatUI.cs: Added CreateCaret(), DestroyCaret(), SetCaretPos() and
23138           CaretVisible() calls
23140         * ToolTip.cs: Added code to prevent stealing focus from app windows
23142         * XplatUIDriver.cs: Added abstracts for caret functions (CreateCaret,
23143           DestroyCaret, SetCaretPos and CaretVisible)
23145         * XplatUIX11.cs:
23146           - Added implementation for caret functions
23147           - Moved hover variables into a struct, to make it a bit easier
23148             on the eyes and to debug
23149           - Removed XKeyboardState (moved to XplatUIX11.cs)
23150           - Moved Keyboard properties into the properties region
23152         * Control.cs (get_Region): Control.CreateGraphics is the appropriate
23153           call to get a graphics context for our control
23155         * XplatUIOSX.cs: Added empty overrides for the new caret functions
23157         * TreeView.cs: Fixed bug. No matter what color was set it would always
23158           return SystemColors.Window
23160         * XplatUIWin32.cs: Implemented caret overrides
23162 2004-12-10  Jordi Mas i Hernandez <jordi@ximian.com>
23164         * ListBox.cs: fire events, implement missing methods and properties,
23165         sorting.
23167 2004-12-10  John BouAntoun <jba-mono@optusnet.com.au>
23169         * MonthCalendar.cs: invalidation bug fixing
23170         * ThemeWin32Classic.cs: paint fixing
23172 2004-12-09  Geoff Norton  <gnorton@customerdna.com>
23174         * XplatUIOSX.cs: Refactor to pass the real hwnd into Graphics.FromHwnd, we
23175         prepare the CGContextRef there now.
23177 2004-12-09  John BouAntoun <jba-mono@optusnet.com.au>
23179         * MonthCalendar.cs:
23180           - optimisationL only invalidate areas that have changed
23181         * ThemeWin32Classic.cs:
23182           - only paint parts that intersect with clip_area
23184 2004-12-09  Peter Bartok  <pbartok@novell.com>
23186         * Application.cs: Undid changes from r37004 which cause problems
23187         on X11
23189 2004-12-09  Ravindra  <rkumar@novell.com>
23191         * ToolBar.cs: Added support for displaying ContextMenu
23192         attached to a button on ToolBar.
23193         * ToolBarButton.cs: Uncomment/fixed the DropDownMenu
23194         property.
23196 2004-12-09  Jordi Mas i Hernandez <jordi@ximian.com>
23198         * Label.cs: autosize works in text change and removes unnecessary
23199         invalidate
23201 2004-12-09  Jordi Mas i Hernandez <jordi@ximian.com>
23203         * ThemeWin32Classic.cs, XplatUIOSX.cs, XplatUIWin32.cs:
23204         remove warnings
23206 2004-12-08  Geoff Norton  <gnorton@customerdna.com>
23208         * XplatUIOSX.cs: Added mouse move/click/grab support
23209         Remove some debugging WriteLines not needed anymore.
23210         Add window resizing/positioning.
23211         Fix visibility on reparenting.
23213 2004-12-08  Peter Bartok  <pbartok@novell.com>
23215         * XplatUIOSX.cs: Added Idle event, now compiles on VS.Net
23217 2004-12-07  Geoff Norton  <gnorton@customerdna.com>
23219         * XplatUIOSX.cs: Initial checkin
23220         * XplatUI.cs: Use the Quartz driver if the environment is set to use it
23222 2004-12-03  Ravindra <rkumar@novell.com>
23224         * ListView.cs: Added some keybindings and fixed scrolling.
23225         ScrollBars listen to ValueChanged event instead of Scroll
23226         Event. This would let us take care of all changes being
23227         done in the scrollbars' values programmatically or manually.
23228         * ListView.cs (CanMultiselect): Added a check for shift key.
23229         * ListView.cs (EnsureVisible): Fixed. Do proper scrolling.
23230         * ListViewItem.cs (Clone): Fixed. We need to make a copy
23231         of ListViewSubItemCollection as well.
23233 2004-12-06  Peter Bartok <pbartok@novell.com>
23235         * Control.cs (Parent): Added check and exception to prevent
23236         circular parenting
23238 2004-12-03  Jordi Mas i Hernandez <jordi@ximian.com>
23240         * ListBox.cs: implemented clipping, selection single and multiple,
23241         bug fixing
23243 2004-12-03  Ravindra <rkumar@novell.com>
23245         * ListView.cs (ListView_KeyDown):
23246         * ListView.cs (ListView_KeyUp): Fixed multiple selection handling
23247         when CTRL key is pressed.
23248         * ListViewItem.cs (Selected): Fixed setting the property.
23250 2004-12-03  Marek Safar  <marek.safar@seznam.cz>
23252         * Application.cs (OnThreadException): Use ThreadExceptionDialog.
23254         * Form.cs: Add ActiveForm, FormBorderStyle, MaximizeBox,
23255         MinimizeBox, ShowInTaskbar, TopMost properties.
23257         * ThreadExceptionDialog.cs: Implemented (disabled TextBox until
23258         will be implemented).
23260 2004-12-03  Marek Safar  <marek.safar@seznam.cz>
23262         * OwnerDrawPropertyBag.cs: New internal parameterless ctor.
23264         * TreeNode.cs: Implemented ICloneable, Fixed to pass my simple
23265         tests.
23266         
23267         * TreeNodeCollection.cs: Add exception throwing for Add,AddRange.
23268         
23269         * TreeView.cs: BackColor is Colors.Window.
23271 2004-12-01  Jackson Harper  <jackson@ximian.com>
23273         * TreeView.cs: When resizing the tree if the user is making it
23274         smaller we don't get expose events, so we need to handle adding
23275         the horizontal scrollbar in the size changed handler as well as
23276         the expose handler.
23278 2004-12-02  Jordi Mas i Hernandez <jordi@ximian.com>
23280         * DrawItemState.cs: fixes wrong enum values
23282 2004-12-01  Jackson Harper  <jackson@ximian.com>
23284         * TreeView.cs: Resize the hbar as well as the vbar on resize.
23286 2004-12-01  Jackson Harper  <jackson@ximian.com>
23288         * NodeLabelEditEventArgs.cs:
23289         * NodeLabelEditEventHandler.cs:
23290         * OpenTreeNodeEnumerator.cs:
23291         * TreeNode.cs:
23292         * TreeNodeCollection.cs:
23293         * TreeView.cs:
23294         * TreeViewAction.cs:
23295         * TreeViewCancelEventArgs.cs:
23296         * TreeViewCancelEventHandler.cs:
23297         * TreeViewEventArgs.cs:
23298         * TreeViewEventHandler.cs: Initial implementation.
23300 2004-12-01  Ravindra <rkumar@novell.com>
23302         * ListView.cs (CalculateListView): Fixed scrolling related
23303         calculations. Also, removed some debug statements from other
23304         places.
23305         * ListViewItem.cs: Changed access to 'selected' instance variable
23306         from private to internal.
23307         * ThemeWin32Classic.cs (DrawListViewItem): Fixed SubItem drawing.
23309 2004-12-01  Jordi Mas i Hernandez <jordi@ximian.com>
23311         * ThemeWin32Classic.cs: remove cache of brush and pens for
23312         specific controls and use the global system, fixes scrollbutton
23313         bugs (for small sizes, disabled, etc)
23314         
23315         * ScrollBar.cs: does not show the thumb for very small controls
23316         (as MS) and allow smaller buttons that the regular size
23318 2004-12-01  Miguel de Icaza  <miguel@ximian.com>
23320         * UpDownBase.cs: Add abstract methods for the interface.
23321         Add new virtual methods (need to be hooked up to TextEntry when it
23322         exists).
23323         Add override methods for most features.
23324         Computes the size, forces the height of the text entry.
23326         * NumericUpDown.cs: Put here the current testing code.
23328         * Set eol-style property on all files that do not have mixed line
23329         endings, to minimize the future problems.  There are still a few
23330         files with mixed endings, and someone should choose whether they
23331         want to move it or not.
23333 2004-11-30  Jordi Mas i Hernandez <jordi@ximian.com>
23335         * MonthCalendar.cs, ListView.cs: use Theme colours instead of
23336         System.Colors
23337         
23338 2004-11-30  Ravindra <rkumar@novell.com>
23340         * ThemeWin32Classic.cs (DrawListViewItem): Fixed selected item
23341         drawing and replaced use of SystemColors by theme colors.
23342         * ListView.cs (ListView_Paint): Fixed painting done during scrolling.
23343         * ListView.cs (ListViewItemCollection.Add): Throw exception when
23344         same ListViewItem is being added more than once.
23346 2004-11-30  John BouAntoun <jba-mono@optusnet.com.au>
23348         * MonthCalendar.cs:
23349           - ControlStyles love to make the control not flicker
23350           
23351 2004-11-30  Peter Bartok  <pbartok@novell.com>
23353         * CharacterCasing.cs: Added
23355 2004-11-29  Peter Bartok  <pbartok@novell.com>
23357         * TreeNode.cs, TreeNodeCollection.cs, TreeView.cs,
23358           TreeViewAction.cs, TreeViewEventArgs.cs: Removed new files.
23359           I am removing these files as they conflict with already completed
23360           work. While it is fantastic to get contributions to MWF, I
23361           respectfully ask that everyone please coordinate their contributions
23362           through mono-winforms-list or #mono-winforms at this time. We're
23363           explicitly avoiding stubbing and don't want controls that don't have
23364           their basic functionality implemented in svn. Please also see
23365           http://www.mono-project.com/contributing/winforms.html
23368 2004-11-29  Marek Safar  <marek.safar@seznam.cz>
23370         * Application.cs (ModalRun): Don't hang after exit.
23372         * Theme.cs: New TreeViewDefaultSize property.
23374         * ThemeWin32Classic.cs: Replaced hardcoded defaultWindowBackColor
23375         with less hardcoded SystemColors constant.
23376         Implemented TreeViewDefaultSize.
23378         * TreeNode.cs, TreeNodeCollection.cs, TreeView.cs,
23379         TreeViewAction.cs, TreeViewEventArgs.cs: New files.
23382 2004-11-29  John BouAntoun <jba-mono@optusnet.com.au>
23384         * MonthCalendar.cs:
23385           - Fix NextMonthDate and PrevMonthDate click moving calendar
23387 2004-11-26  John BouAntoun <jba-mono@optusnet.com.au>
23389         * MonthCalendar.cs:
23390           - Fix usage of ScrollChange Property when scrolling months
23392 2004-11-26  Jordi Mas i Hernandez <jordi@ximian.com>
23394         * Menu.cs, MainMenu.cs, MenuItem.cs, MenuAPI.cs
23395          - Fixes menu destroying
23396          - Support adding and removing items on already created menus
23398 2004-11-26  John BouAntoun <jba-mono@optusnet.com.au>
23400         * MonthCalendar.cs:
23401           - Re-worked all bolded dates handling to match win32
23402         * ThemeWin32Classic.cs:
23403           - Fixed rendering with bolded dates
23405 2004-11-25  Jordi Mas i Hernandez <jordi@ximian.com>
23407         * ListBox.cs, Theme.cs, ThemeWin32Classic.cs:
23408         - Horizontal scroolbar
23409         - Multicolumn
23410         - Fixes
23413 2004-11-25  John BouAntoun <jba-mono@optusnet.com.au>
23415         * MonthCalendar.cs:
23416           - Fix Usage of MaxSelectionCount from SelectionRange
23417           - Fixed Shift + Cursor Selection
23418           - Fixed Shift + (Pg up/Pg dn, Home/End) selection
23419           - Fixed normal cursor selection to be compat with win32
23420           - Fixed Shift + Mouse Click selection
23422 2004-11-24  Peter Bartok <pbartok@novell.com>
23424         * XplatUI.cs (DispatchMessage): Switched to return IntPtr
23425         * XplatUIDriver.cs (DispatchMessage): Switched to return IntPtr
23426         * XplatUIX11.cs:
23427           - CreatedKeyBoardMsg now updates keystate with Alt key
23428           - Added workaround for timer crash to CheckTimers, Jackson will
23429             develop a proper fix and check in later
23430           - Implemented DispatchMessage
23431           - Removed calling the native window proc from GetMessage (call
23432             now moved to DispatchMessage)
23434         * KeyEventArgs.cs (Constructor): Now combines modifierkeys into
23435           the keydata (Fixes bug #69831)
23437         * XplatUIWin32.cs:
23438           - (DispatchMessage): Switched to return IntPtr
23439           - Added DllImport for SetFocus
23441 2004-11-24  Ravindra <rkumar@novell.com>
23443         * ThemeWin32Classic.cs: Fixed ListView border and checkbox
23444         background drawing.
23445         * ListViewItem.cs: Fixed various properties, calculations
23446         and Clone() method. Fixed ListViewSubItemCollection.Clear() method.
23447         * ListView.cs: Fixed calculations, BackColor, ForeColor properties
23448         and some internal properties. Fixed MouseDown handler and Paint
23449         method.
23451 2004-11-24  John BouAntoun <jba-mono@optusnet.com.au>
23453         * MonthCalendar.cs: Add TitleMonth ContextMenu handling
23455 2004-11-24  John BouAntoun <jba-mono@optusnet.com.au>
23457         * ContainerControl.cs: correct accidental check in of local changes
23459 2004-11-24  John BouAntoun <jba-mono@optusnet.com.au>
23461         * ThemeWin32Classic.cs:
23462                 - Fixed Drawing Last month in grid (sometimes not showing)
23463         * MonthCalendar.cs:
23464                 - Fixed title width calculation bug (makeing title small)
23466 2004-11-23  Peter Bartok <pbartok@novell.com>
23468         * XplatUIX11.cs:
23469           - Added generation of WM_MOUSEHOVER event
23470           - Added missing assignment of async_method atom
23471           - Fixed WM_ERASEBKGND; now only redraws the exposed area
23473 2004-11-23  John BouAntoun <jba-mono@optusnet.com.au>
23475         * ThemeWin32Classic.cs:
23476                 - Fixed Drawing of today circle when showtodaycircle not set
23477                 - fixed drawing of first and last month in the grid (gay dates)
23478         * MonthCalendar.cs:
23479                 - Fixed Drawing of today circle
23480                 - Fixed drawing of grady dates
23481                 - Fixed HitTest for today link when ShowToday set to false
23482                 - Fixed DefaultSize to obey ShowToday
23484 2004-11-23  John BouAntoun <jba-mono@optusnet.com.au>
23486         * ThemeWin32Classic.cs: Fixed DrawMonthCalendar and private support methods
23487         * System.Windows.Forms/Theme.cs
23488         * MonthCalendar.cs: added for MonthCalendar
23489         * SelectionRange.cs: added for MonthCalendar
23490         * Day.cs: added for MonthCalendar: added for MonthCalendar
23491         * DateRangeEventArgs.cs: added for MonthCalendar
23492         * DateRangeEventHandler.cs: added for MonthCalendar
23494 2004-11-22  Ravindra <rkumar@novell.com>
23496         * ThemeWin32Classic.cs: Fixed ListViewDrawing with 'UseItemStyleForSubItems'
23497         property.
23499 2004-11-22  Miguel de Icaza  <miguel@ximian.com>
23501         * UpDownBase.cs (InitTimer): Use prehistoric C# 1.0 notation for
23502         event handler.
23503         
23504         * NumericUpDown.cs: Added new implementation.
23505         * UpDownBase.cs: Added new implementation.
23507         * XplatUIWin32.cs (KeyboardSpeed, KeyboardDelay): added default
23508         implementations.
23509         
23510         * XplatUIX11.cs (KeyboardSpeed, KeyboardDelay): added default
23511         implementations.
23513         * XplatUIDriver.cs ((KeyboardSpeed, KeyboardDelay): added new
23514         methods.
23516 2004-11-21  Miguel de Icaza  <miguel@ximian.com>
23518         * Timer.cs  (Dispose): Should call the base dispose when
23519         overriding.
23521 2004-11-19  Jordi Mas i Hernandez <jordi@ximian.com>
23523         * ScrollBar.cs: updates thumb position when max, min or increment
23524         is changed
23526 2004-11-21  Ravindra <rkumar@novell.com>
23528         * ListView.cs: Implemented item selection, activation and
23529         column header style. Fixed properties to do a redraw, if
23530         required. Added support for MouseHover, DoubleClick, KeyDown
23531         and KeyUp event handling and some minor fixes.
23532         * ListViewItem.cs: Fixed constructor.
23533         * ThemeWin32Classic.cs: Improved drawing for ListView.
23535 2004-11-19  Jordi Mas i Hernandez <jordi@ximian.com>
23537         * ThemeWin32Classic.cs: initial listbox drawing code
23538         * DrawMode.cs: new enumerator
23539         * ListControl.cs: stubbed class
23540         * ListBox.cs: initial implementation
23541         * Theme.cs: new methods definitions
23542         * SelectionMode.cs: new enumerator
23544 2004-11-17  Peter Bartok  <pbartok@novell.com>
23546         * XplatUIWin32.cs: Added double-click events to the class style
23547         * Control.cs (WndProc):
23548           - Added handling of click-count to MouseDown/ MouseUp events.
23549           - Added handling of middle and right mouse buttons
23550           - Removed old debug code
23552 2004-11-17  Jackson Harper  <jackson@ximian.com>
23554         * XplatUIX11.cs: Use the new Mono.Unix namespace.
23556 2004-11-17  Ravindra <rkumar@novell.com>
23558         * ListView.cs: Added event handling for MouseMove/Up/Down.
23559         * ColumnHeader.cs: Added a read-only internal property 'Pressed'.
23560         * ThemeWin32Classic.cs: We need to clear the graphics context and
23561         draw column header in a proper state.
23564 2004-11-17  Jordi Mas i Hernandez <jordi@ximian.com>
23566         *  Menu.cs: fixes signature
23568 2004-11-16  Peter Bartok  <pbartok@novell.com>
23570         * XplatUIX11.cs (GetMessage): Implemented generation of
23571           double click mouse messages
23573 2004-11-12  Jordi Mas i Hernandez <jordi@ximian.com>
23575         *  Form.cs, MainMenu.cs, MenuAPI.cs: tracker should be for tracking session
23576         not by menu
23578 2004-11-11  Peter Bartok  <pbartok@novell.com>
23580         * HandleData.cs: Added Visible property
23581         * XplatUIX11.cs (IsVisible): Now uses Visible property from
23582           HandleData
23583         * XplatUIX11.cs: Removed old debug leftovers
23584         * XplatUIX11.cs (DefWndProc): Added WM_ERASEBKGND handler
23585         * Control.cs (WndProc): Removed old debug leftovers,
23586           streamlined handling of WM_WINDOWPOSCHANGED, removed un-
23587           needed WM_SIZE handling
23589 2004-11-11  Jackson Harper  <jackson@ximian.com>
23591         * OwnerDrawPropertyBag.cs:
23592         * TreeViewImageIndexConverter.cs: Initial implementation
23594 2004-11-10  Jackson Harper  <jackson@ximian.com>
23596         * ThemeWin32Classic.cs:
23597         * TabControl.cs: instead of moving tabs by the slider pos just
23598         start drawing at the tab that is offset by the slider. This way
23599         scrolling always moves by exactly one tab.
23601 2004-11-10  Jackson Harper  <jackson@ximian.com>
23603         * TabControl.cs: You can only scroll left when the slider has
23604         already ben moved right.
23605         
23606 2004-11-10  Jackson Harper  <jackson@ximian.com>
23608         * ThemeWin32Classic.cs: Do not draw the selected tab if its not in
23609         the clip area.
23610         
23611 2004-11-10  Jackson Harper  <jackson@ximian.com>
23613         * ThemeWin32Classic.cs: Don't bother drawing tabs outside of the
23614         clip area.
23615         
23616 2004-11-09  Jackson Harper  <jackson@ximian.com>
23618         * TabControl.cs (CalcXPos): New helper method so we can determine
23619         the proper place to start drawing vertical tabs.
23620         * ThemeWin32Classic.cs (DrawTab): Draw right aligned tabs.
23621         
23622 2004-11-09  Jackson Harper  <jackson@ximian.com>
23624         * TabControl.cs: Calculate sizing and rects for left aligned tabs.
23625         * ThemeWin32Classic.cs (GetTabControl*ScrollRect): Only handle Top
23626         and Bottom, left and right are illegal values for this and
23627         multiline is enabled when the alignment is set to left or right.
23628         (DrawTab): Each alignment block should draw the text itself now
23629         because Left requires special love. Also add rendering for Left
23630         aligned tabs.
23631         
23632 2004-11-09  Jordi Mas i Hernandez <jordi@ximian.com>
23634         *  Form.cs, MainMenu.cs, MenuAPI.cs: fixes menu navigation, fixes popups,
23635         does not destroy the windows, removes debugging messages
23637 2004-11-09  jba  <jba-mono@optusnet.com.au>
23639         * ThemeWin32Classic.cs
23640         (DrawButtonBase): Fix verticle text rect clipping in windows
23641         (DrawCheckBox): Fix CheckAlign.TopCenter and CheckAlign.BottomCenter
23642         rendering and incorrect text rect clipping
23643         (DrawRadioButton): Fix CheckAlign.TopCenter and CheckAlign.BottomCenter
23644         rendering and incorrect text rect clipping
23645         
23646 2004-11-08  Jackson Harper  <jackson@ximian.com>
23648         * ThemeWin32Classic.cs (DrawTabControl): Render tabs from top to
23649         bottom when they are bottom aligned so the bottoms of the tabs get
23650         displayed.
23651         * TabControl.cs (DropRow): Move rows up instead of down when the
23652         tab control is bottom aligned.
23654 2004-11-08 13:59  pbartok
23656         * XplatUIX11.cs:
23657           - Added handling for various window styles
23658           - Added handling for popup windows
23659           - Added SetTopmost handling
23661 2004-11-08 13:55  pbartok
23663         * XplatUIWin32.cs:
23664           - Added argument to SetTopmost method
23665           - Fixed broken ClientToScreen function
23667 2004-11-08 13:53  pbartok
23669         * XplatUIStructs.cs:
23670           - Added missing WS_EX styles
23672 2004-11-08 13:53  pbartok
23674         * XplatUI.cs, XplatUIDriver.cs:
23675           - Added argument to SetTopmost
23677 2004-11-08 13:52  pbartok
23679         * X11Structs.cs:
23680           - Added XSetWindowAttributes structure
23681           - Improved XWindowAttributes structure
23682           - Added SetWindowValuemask enum
23683           - Added window creation arguments enum
23684           - Added gravity enum
23685           - Added Motif hints structure
23686           - Added various Motif flags and enums
23687           - Added PropertyMode enum for property functions
23689 2004-11-08 13:50  pbartok
23691         * Form.cs:
23692           - Fixed arguments for updated SetTopmost method
23694 2004-11-08 13:49  pbartok
23696         * ToolTip.cs:
23697           - Fixed arguments for updated SetTopmost function
23698           - Fixed usage of PointToClient
23700 2004-11-08 13:44  pbartok
23702         * MenuAPI.cs:
23703           - Added Clipping of children and siblings
23705 2004-11-08 13:41  pbartok
23707         * MainMenu.cs:
23708           - Removed SetMenuBarWindow call. We do this in Form.cs
23710 2004-11-08 13:40  jackson
23712         * TabControl.cs, Theme.cs, ThemeWin32Classic.cs: Render the little
23713           scrolling jimmi in the correct location with bottom aligned tabs
23715 2004-11-08 13:36  pbartok
23717         * ContainerControl.cs:
23718           - Implemented BindingContext
23719           - Implemented ParentForm
23721 2004-11-08 12:46  jackson
23723         * TabControl.cs: Put bottom rendered tabs in the right location
23725 2004-11-08 07:15  jordi
23727         * ScrollBar.cs, ThemeWin32Classic.cs: fixes vertical scrollbar and
23728           removes dead code
23730 2004-11-05 17:30  jackson
23732         * TabControl.cs: When selected tabs are expanded make sure they
23733           don't go beyond the edges of the tab control
23735 2004-11-05 14:57  jackson
23737         * TabControl.cs: Reset show_slider so if the control is resized to
23738           a size where it is no longer needed it's not displayed anymore
23740 2004-11-05 13:16  jackson
23742         * TabControl.cs: Make tab pages non visible when added to the
23743           control
23745 2004-11-05 12:42  jackson
23747         * TabControl.cs: Implement SizeMode.FillToRight
23749 2004-11-05 12:16  jackson
23751         * Control.cs: Do not call CreateHandle if the handle is already
23752           created
23754 2004-11-05 11:46  jackson
23756         * TabControl.cs: Remove superflous call to CalcTabRows
23758 2004-11-05 09:07  jackson
23760         * XplatUIX11.cs: Update for Mono.Posix changes
23762 2004-11-05 07:00  ravindra
23764         * ListView.cs, ListViewItem.cs: Implemented some methods and fixed
23765           scrolling.
23767 2004-11-04 22:47  jba
23769         * ThemeWin32Classic.cs:
23770           - Fix Button rendering for FlatStyle = Flat or Popup
23771           - Fix RadioButton and CheckBox rendering when Appearance = Button
23772             (normal and flatstyle).
23773           - Correct outer rectangle color when drawing focus rectangle
23774           - Adjust button bounds to be 1 px smaller when focused
23775           - Make button not draw sunken 3d border when pushed (windows compat)
23776           - Fix CPDrawBorder3D to not make bottom right hand corner rounded
23777           - Offset the text in RadioButton and Checkbox when being rendered as
23778           a button.
23779           - Hover and Click behaviour for Colored FlatStyle.Flat and Popup
23780           radiobuttons
23781           - Fixed disabled rendering for colored flatstyle radiobuttons (both)
23782           - Fixed disabled text rendering for normally rendered radiobuttons
23784 2004-11-04 10:26  jackson
23786         * TabControl.cs: Recalculate tab rows when resizing
23788 2004-11-04 07:47  jordi
23790         * Form.cs, MainMenu.cs, Menu.cs, MenuAPI.cs, MenuItem.cs:
23791           collection completion, drawing issues, missing features
23793 2004-11-04 05:03  ravindra
23795         * ScrollBar.cs:
23796                 - We need to recalculate the Thumb area when
23797                 LargeChange/maximum/minimum values are changed.
23798           - We set the 'pos' in UpdatePos() method to minimum, if it's less
23799                 than minimum. This is required to handle the case if large_change is
23800                 more than max, and use LargeChange property instead of large_change
23801                 variable.
23802           - We return max+1 when large_change is more than max, like MS does.
23804 2004-11-04 04:29  ravindra
23806         * ColumnHeader.cs, ListView.cs, ListViewItem.cs:
23807                 - Changed default value signatures (prefixed all with ListView).
23808                 - Fixed/implemented layout LargeIcon, SmallIcon and List views for
23809                 ListView.
23810           - Fixed calculations for ListViewItem and implemented Clone()
23811           method.
23813 2004-11-04 04:26  ravindra
23815         * Theme.cs, ThemeWin32Classic.cs:
23816                 - Changed default ListView values signatures (prefixed all with
23817                 ListView).
23818           - Fixed default size values for VScrollBar and HScrollBar.
23819                 - Fixed DrawListViewItem method.
23821 2004-11-04 04:05  ravindra
23823         * ColumnHeaderStyle.cs: Typo. It should be Nonclickable.
23825 2004-11-04 04:04  ravindra
23827         * ImageList.cs: Implemented the missing overload for Draw method.
23829 2004-11-03 19:29  jackson
23831         * TabControl.cs: Handle dropping rows on selection properly
23833 2004-11-03 11:59  jackson
23835         * TabControl.cs: remove debug code
23837 2004-11-03 11:52  jackson
23839         * TabControl.cs, ThemeWin32Classic.cs: Initial implementation of
23840           the scrolly widgerywoo
23842 2004-11-02 13:52  jackson
23844         * TabControl.cs: Resize the tab pages and tabs when the tab control
23845           is resized
23847 2004-11-02 13:40  jackson
23849         * TabControl.cs, ThemeWin32Classic.cs: Move the row with the
23850           selected tab to the bottom
23852 2004-11-02 13:39  jackson
23854         * TabPage.cs: Store the tab pages row
23856 2004-11-02 12:33  jordi
23858         * MenuItem.cs: fixes handle creation
23860 2004-11-02 11:42  jackson
23862         * TabControl.cs: signature fix
23864 2004-11-02 08:56  jackson
23866         * TabControl.cs: Calculate whether the tab is on an edge properly.
23867           Remove top secret debugging code
23869 2004-11-01 19:57  jackson
23871         * TabControl.cs: Add click handling, and proper sizing
23873 2004-11-01 19:47  jackson
23875         * Theme.cs, ThemeWin32Classic.cs: New rendering and sizing code for
23876           tab controls
23878 2004-11-01 19:39  jackson
23880         * TabPage.cs: add internal property to store the bounds of a tab
23881           page
23883 2004-10-30 04:23  ravindra
23885         * Theme.cs, ThemeWin32Classic.cs: Drawing ListView and some default
23886           values.
23888 2004-10-30 04:21  ravindra
23890         * ListView.cs, ListViewItem.cs: Added support for scrolling and
23891           fixed calculations.
23893 2004-10-30 03:06  pbartok
23895         * XplatUIX11.cs:
23896           - Removed extension of DllImported libs
23898 2004-10-29 09:55  jordi
23900         * Form.cs, MainMenu.cs, Menu.cs, MenuAPI.cs, MenuItem.cs: Menu key
23901           navigation, itemcollection completion, menu fixes
23903 2004-10-27 22:58  pbartok
23905         * XplatUIX11.cs:
23906           - Now throws a nice error message when no X display could be opened
23908 2004-10-26 13:51  jordi
23910         * ListView.cs: removes warning
23912 2004-10-26 03:55  ravindra
23914         * ColumnHeader.cs, ListView.cs, ListViewItem.cs,
23915           ThemeWin32Classic.cs: Some formatting for my last checkins.
23917 2004-10-26 03:36  ravindra
23919         * ThemeWin32Classic.cs: Implemented DetailView drawing for ListView
23920           control and default values.
23922 2004-10-26 03:35  ravindra
23924         * Theme.cs: Added some default values for ListView control.
23926 2004-10-26 03:33  ravindra
23928         * ToolBar.cs: ToolBar should use the user specified button size, if
23929           there is any. Added a size_specified flag for the same.
23931 2004-10-26 03:33  ravindra
23933         * ColumnHeader.cs: Added some internal members and calculations for
23934           ColumnHeader.
23936 2004-10-26 03:32  ravindra
23938         * ListViewItem.cs: Calculations for ListViewItem.
23940 2004-10-26 03:31  ravindra
23942         * ListView.cs: Added some internal members and calculations for
23943           ListView.
23945 2004-10-22 13:31  jordi
23947         * MenuAPI.cs: speedup menus drawing
23949 2004-10-22 13:16  jackson
23951         * XplatUIX11.cs: Make sure to update exposed regions when adding an
23952           expose event
23954 2004-10-22 11:49  jackson
23956         * Control.cs: oops
23958 2004-10-22 11:41  jackson
23960         * Control.cs: Check to see if the window should have its background
23961           repainted by X when drawing.
23963 2004-10-22 11:31  jackson
23965         * XplatUIX11.cs: When invalidating areas only use XClearArea if
23966           clear is true, this way we do not get flicker from X repainting the
23967           background
23969 2004-10-22 11:28  jackson
23971         * XEventQueue.cs: Queue properly
23973 2004-10-21 09:38  jackson
23975         * XEventQueue.cs: Fix access modifier
23977 2004-10-21 09:36  jackson
23979         * XEventQueue.cs: Don't loose messages
23981 2004-10-21 09:22  jackson
23983         * XEventQueue.cs: Don't loose messages
23985 2004-10-20 04:15  jordi
23987         * BootMode.cs: enum need it by SystemInfo
23989 2004-10-19 21:58  pbartok
23991         * XplatUIWin32.cs:
23992           - Small sanity check
23994 2004-10-19 21:56  pbartok
23996         * Form.cs:
23997           - Added private FormParentWindow class which acts as the container
23998             for our form and as the non-client area where menus are drawn
23999           - Added/Moved required tie-ins to Jordi's menus
24000           - Fixed/Implemented the FormStartPosition functionality
24002 2004-10-19 21:52  pbartok
24004         * Control.cs:
24005           - Removed unneeded locals
24006           - Added code to all size and location properties to understand and
24007             deal with the parent container of Form
24009 2004-10-19 21:33  pbartok
24011         * Application.cs:
24012           - Fixed to deal with new Form subclasses for menus
24014 2004-10-19 17:48  jackson
24016         * XEventQueue.cs: commit correct version of file
24018 2004-10-19 16:50  jackson
24020         * XEventQueue.cs, XplatUIX11.cs: New optimized event queue
24022 2004-10-19 16:15  jordi
24024         * MenuAPI.cs: MenuBarCalcSize returns the height
24026 2004-10-19 08:31  pbartok
24028         * Control.cs:
24029           - Added missing call to PreProcessMessage before calling OnXXXKey
24030           methods
24032 2004-10-19 00:04  ravindra
24034         * ToolTip.cs: Fixed constructor.
24036 2004-10-18 09:31  jordi
24038         * MenuAPI.cs: menuitems in menubars do not have shortcuts
24040 2004-10-18 09:26  jordi
24042         * MenuItem.cs: fixes MenuItem class signature
24044 2004-10-18 08:56  jordi
24046         * MenuAPI.cs: prevents windows from showing in the taskbar
24048 2004-10-18 00:28  ravindra
24050         * ToolTip.cs: Suppressed a warning message.
24052 2004-10-18 00:27  ravindra
24054         * Control.cs: Default value of visible property must be true.
24056 2004-10-17 23:19  pbartok
24058         * ToolTip.cs:
24059           - Complete implementation
24061 2004-10-17 23:19  pbartok
24063         * XplatUIX11.cs:
24064           - Added EnableWindow method
24065           - Added SetModal stub
24066           - Added generation of WM_ACTIVATE message (still needs testing)
24067           - Added SetTopMost stub
24068           - Changes to deal with VirtualKeys being moved to XplatUIStructs.cs
24070 2004-10-17 23:17  pbartok
24072         * XplatUIWin32.cs:
24073           - Removed VirtualKeys to XplatUIStructs
24074           - Implemented SetTopMost method
24075           - Implemented EnableWindow method
24076           - Bugfix in ScreenToClient()
24077           - Bugfixes in ClientToScreen()
24079 2004-10-17 22:51  pbartok
24081         * XplatUIStructs.cs:
24082           - Added WS_EX styles to WindowStyles enumeration
24084 2004-10-17 22:50  pbartok
24086         * XplatUI.cs, XplatUIDriver.cs:
24087           - Added method for enabling/disabling windows
24088           - Added method for setting window modality
24089           - Added method for setting topmost window
24091 2004-10-17 22:49  pbartok
24093         * ThemeWin32Classic.cs:
24094           - Added ToolTip drawing code
24096 2004-10-17 22:49  pbartok
24098         * Theme.cs:
24099           - Added ToolTip abstracts
24101 2004-10-17 22:47  pbartok
24103         * Form.cs:
24104           - Fixed Form.ControlCollection to handle owner relations
24105           - Added Owner/OwnedForms handling
24106           - Implemented Z-Ordering for owned forms
24107           - Removed unneeded private overload of ShowDialog
24108           - Fixed ShowDialog, added the X11 incarnation of modal handling (or
24109             so I hope)
24110           - Fixed Close(), had wrong default
24111           - Added firing of OnLoad event
24112           - Added some commented out debug code for Ownership handling
24114 2004-10-17 22:16  pbartok
24116         * Control.cs:
24117           - Fixed/implemented flat list of controls
24119 2004-10-17 22:14  pbartok
24121         * Application.cs:
24122           - Added code to simulate modal dialogs on Win32
24124 2004-10-17 16:11  jordi
24126         * ScrollBar.cs: disabled scrollbar should not honor any keyboard or
24127           mouse event
24129 2004-10-17 13:39  jordi
24131         * MenuAPI.cs: menu drawing fixes
24133 2004-10-15 09:10  ravindra
24135         * StructFormat.cs: General Enum.
24137 2004-10-15 09:09  ravindra
24139         * SizeGripStyle.cs: Enum for Form.
24141 2004-10-15 09:08  ravindra
24143         * Theme.cs, ThemeWin32Classic.cs: Added ColumnHeaderHeight property
24144           in Theme for ListView.
24146 2004-10-15 09:06  ravindra
24148         * ColumnHeader.cs: Flushing some formatting changes.
24150 2004-10-15 09:05  ravindra
24152         * ListViewItem.cs: Implemented GetBounds method and fixed coding
24153           style.
24155 2004-10-15 09:03  ravindra
24157         * ListView.cs: Implemented Paint method and fixed coding style.
24159 2004-10-15 07:34  jordi
24161         * MenuAPI.cs: fix for X11
24163 2004-10-15 07:32  ravindra
24165         * ButtonBase.cs, CheckBox.cs, RadioButton.cs:
24166                 - Renamed Paint() method to Draw() for clarity. Also, moved
24167                 DrawImage() to OnPaint().
24169 2004-10-15 07:25  ravindra
24171         * CheckBox.cs, RadioButton.cs:
24172                 - Removed Redraw (), we get it from ButtonBase.
24173                 - Implemented Paint (), to do class specific painting.
24175 2004-10-15 07:16  ravindra
24177         * ButtonBase.cs:
24178                 - Redraw () is not virtual now.
24179                 - Added an internal virtual method Paint (), so that
24180                 derived classes can do their painting on their own.
24181                 - Modified OnPaint () to call Paint ().
24183 2004-10-15 06:43  jordi
24185         * ContextMenu.cs, DrawItemEventHandler.cs, Form.cs, MainMenu.cs,
24186           MenuAPI.cs, MenuItem.cs: menu work, mainmenu, subitems, etc
24188 2004-10-15 00:30  ravindra
24190         * MessageBox.cs:
24191                 - MessageBox on windows does not have min/max buttons.
24192                 This change in CreateParams fixes this on Windows. We
24193                 still need to implement this windowstyle behavior in
24194                 our X11 driver.
24196 2004-10-14 05:14  ravindra
24198         * ToolBar.cs:
24199                 - Changed Redraw () to do a Refresh () always.
24200                 - Fixed the MouseMove event handling when mouse is pressed,
24201                 ie drag event handling.
24202                 - Replaced the usage of ToolBarButton.Pressed property to
24203                 ToolBarButton.pressed internal variable.
24205 2004-10-14 05:10  ravindra
24207         * ToolBarButton.cs:
24208                 - Added an internal member 'inside' to handle mouse move
24209                 with mouse pressed ie mouse drag event.
24210                 - Changed 'Pressed' property to return true only when
24211                 'inside' and 'pressed' are both true.
24212                 - Some coding style love.
24214 2004-10-14 00:17  ravindra
24216         * Form.cs: Fixed class signature. ShowDialog (Control) is not a
24217           public method.
24219 2004-10-14 00:15  ravindra
24221         * ButtonBase.cs: Redraw () related improvements.
24223 2004-10-14 00:14  ravindra
24225         * MessageBox.cs: Moved InitFormSize () out of Paint method and
24226           removed unnecessary calls to Button.Show () method.
24228 2004-10-13 17:50  pbartok
24230         * XplatUIX11.cs:
24231           - Formatting fix
24232           - Removed destroying of window until we solve the problem of X
24233             destroying the window before us on shutdown
24235 2004-10-13 16:32  pbartok
24237         * ButtonBase.cs:
24238           - Now Redraws on MouseUp for FlatStyle Flat and Popup
24240 2004-10-13 14:18  pbartok
24242         * XplatUIX11.cs:
24243           - Added code to destroy the X window
24245 2004-10-13 14:18  pbartok
24247         * XplatUIWin32.cs:
24248           - Added code to destroy a window
24250 2004-10-13 14:12  pbartok
24252         * ButtonBase.cs:
24253           - Added the Redraw on Resize that got dropped in the last rev
24255 2004-10-13 09:06  pbartok
24257         * ThemeWin32Classic.cs:
24258           - Path from John BouAntoun:
24259             * Fix check rendering (centre correctly for normal style, offset
24260               correctly for FlatStyle).
24261             * Fix border color usage (use backcolor) for FlatStyle.Popup
24262             * Use checkbox.Capture instead of checkbox.is_pressed when
24263               rendering flatstyle states.
24265 2004-10-12 21:48  pbartok
24267         * ThemeWin32Classic.cs:
24268           - Removed all occurences of SystemColors and replaced them with the
24269             matching theme color
24271 2004-10-12 21:41  pbartok
24273         * ThemeWin32Classic.cs:
24274           - From John BouAntoun: Added an overload to CPDrawBorder3D to allow
24275             him using the function for flatstyle drawing
24276           - Changed functions to use the new version of CPDrawBorder3D
24278 2004-10-12 21:15  pbartok
24280         * ControlPaint.cs:
24281           - Fixed Dark(), DarkDark(), Light() and LightLight() methods to
24282             match MS documentation. They need to return defined colors if the
24283             passed color matches the configured control color. Thanks to John
24284             BouAntoun for pointing this out.
24286 2004-10-12 20:57  pbartok
24288         * Control.cs:
24289           - Fix from John BouAntoun: Raise ForeColorChanged event when text
24290             color is changed
24292 2004-10-12 20:46  pbartok
24294         * CheckBox.cs:
24295           - Fix from John BouAntoun: Now properly sets the Appearance property
24297 2004-10-12 20:45  pbartok
24299         * ThemeWin32Classic.cs:
24300           - Fixes from John BouAntoun: now handles forecolors and backcolors
24301             for flatstyle rendered controls much better; It also fixes normal
24302             checkbox rendering when pushed or disabled.
24304 2004-10-08 02:50  jordi
24306         * Form.cs, MainMenu.cs, Menu.cs, MenuAPI.cs, MenuItem.cs: more menu
24307           work
24309 2004-10-07 08:56  jordi
24311         * ThemeWin32Classic.cs: Removes deletion of cached brushes
24313 2004-10-06 03:59  jordi
24315         * Control.cs, StatusBar.cs, ThemeWin32Classic.cs, ToolBar.cs,
24316           XplatUIWin32.cs: removes warnings from compilation
24318 2004-10-05 12:23  jackson
24320         * RadioButton.cs: Fix ctor
24322 2004-10-05 11:10  pbartok
24324         * MessageBox.cs:
24325           - Partial implementation by Benjamin Dasnois
24327 2004-10-05 10:15  jackson
24329         * ThemeWin32Classic.cs: Improve rendering of the radio button patch
24330           by John BouAntoun
24332 2004-10-05 03:07  ravindra
24334         * ToolBar.cs:
24335                 - Removed a private method, Draw ().
24336                 - Fixed the ButtonDropDown event handling.
24337                 - Fixed MouseMove event handling.
24339 2004-10-05 03:04  ravindra
24341         * ThemeWin32Classic.cs:
24342                 - Added DrawListView method and ListViewDefaultSize property.
24343                 - Changed ControlPaint method calls to CPDrawXXX wherever possible.
24344                 - Changed DOS style CRLF to Unix format (dos2unix).
24346 2004-10-05 03:03  ravindra
24348         * Theme.cs:
24349                 - Added DrawListView method and ListViewDefaultSize property.
24351 2004-10-05 02:42  ravindra
24353         * ToolBarButton.cs: Added an internal member dd_pressed to handle
24354           clicks on DropDown arrow.
24356 2004-10-04 22:56  jackson
24358         * ButtonBase.cs, Label.cs, MenuAPI.cs, ProgressBar.cs,
24359           ScrollBar.cs, StatusBar.cs, ToolBar.cs, TrackBar.cs: Let the base
24360           Control handle the buffers, derived classes should not have to
24361           CreateBuffers themselves.
24363 2004-10-04 21:20  jackson
24365         * StatusBar.cs: The control handles resizing the buffers now.
24367 2004-10-04 21:18  jackson
24369         * Control.cs: When resizing the buffers should be invalidated. This
24370           should be handled in Control not in derived classes.
24372 2004-10-04 14:45  jackson
24374         * TabPage.cs: oops
24376 2004-10-04 02:14  pbartok
24378         * LeftRightAlignment.cs:
24379           - Initial check-in
24381 2004-10-04 01:09  jordi
24383         * ThemeWin32Classic.cs: fixes right button position causing right
24384           button not showing on horizontal scrollbars
24386 2004-10-02 13:12  pbartok
24388         * XplatUIX11.cs:
24389           - Simplified the Invalidate method by using an X call instead of
24390             generating the expose ourselves
24391           - Added an expose when the window background is changed
24392           - Implemented ClientToScreen method
24394 2004-10-02 13:08  pbartok
24396         * XplatUIWin32.cs:
24397           - Added Win32EnableWindow method (test for implementing modal
24398           dialogs)
24399           - Added ClientToScreen method and imports
24401 2004-10-02 13:07  pbartok
24403         * XplatUI.cs, XplatUIDriver.cs:
24404           - Added ClientToScreen coordinate translation method
24406 2004-10-02 13:06  pbartok
24408         * KeyPressEventArgs.cs:
24409           - Fixed access level for constructor
24411 2004-10-02 13:06  pbartok
24413         * NativeWindow.cs:
24414           - Changed access level for the window_collection hash table
24416 2004-10-02 13:05  pbartok
24418         * Form.cs:
24419           - Added KeyPreview property
24420           - Added Menu property (still incomplete, pending Jordi's menu work)
24421           - Implemented ProcessCmdKey
24422           - Implemented ProcessDialogKey
24423           - Implemented ProcessKeyPreview
24425 2004-10-02 13:02  pbartok
24427         * Control.cs:
24428           - Added private method to get the Control object from the window
24429           handle
24430           - Implemented ContextMenu property
24431           - Implemented PointToScreen
24432           - Implemented PreProcessMessage
24433           - Implemented IsInputChar
24434           - Implemented IsInputKey
24435           - Implemented ProcessCmdKey
24436           - Completed ProcessKeyEventArgs
24437           - Fixed message loop to call the proper chain of functions on key
24438           events
24439           - Implemented ProcessDialogChar
24440           - Implemented ProcessDialogKey
24441           - Implemented ProcessKeyMessage
24442           - Implemented ProcessKeyPreview
24443           - Added RaiseDragEvent stub (MS internal method)
24444           - Added RaiseKeyEvent stub (MS internal method)
24445           - Added RaiseMouseEvent stub (MS Internal method)
24446           - Added RaisePaintEvent stub (MS Internal method)
24447           - Added ResetMouseEventArgs stub (MS Internal method)
24448           - Implemented RtlTranslateAlignment
24449           - Implemented RtlTranslateContent
24450           - Implemented RtlTranslateHorizontal
24451           - Implemented RtlTranslateLeftRight
24452           - Added generation of KeyPress event
24454 2004-10-02 05:57  ravindra
24456         * ListViewItem.cs: Added attributes.
24458 2004-10-02 05:32  ravindra
24460         * ListView.cs: Added attributes.
24462 2004-10-01 11:53  jackson
24464         * Form.cs: Implement the Close method so work on MessageBox can
24465           continue.
24467 2004-09-30 14:06  pbartok
24469         * XplatUIX11.cs:
24470           - Bug fixes
24472 2004-09-30 11:34  jackson
24474         * RadioButton.cs: Fix typo. Patch by John BouAntoun.
24476 2004-09-30 07:26  ravindra
24478         * ListViewItemConverter.cs: Converter for ListViewItem.
24480 2004-09-30 07:26  ravindra
24482         * SortOrder.cs: Enum for ListView control.
24484 2004-09-30 07:25  ravindra
24486         * ColumnHeader.cs: Supporting class for ListView control.
24488 2004-09-30 07:24  ravindra
24490         * ListView.cs, ListViewItem.cs: Initial implementation.
24492 2004-09-30 07:20  ravindra
24494         * ItemActivation.cs: Enum for ListView Control.
24496 2004-09-29 20:29  pbartok
24498         * XplatUIX11.cs:
24499           - Added lookup of pixel value for background color; tries to get a
24500             color 'close' to the requested color, it avoids having to create a
24501             colormap.  Depending on the display this could mean the used color
24502             is slightly off the desired color. Might have to change it to a more
24503             resource intensive colormap approach, but it will work as a
24504           workaround to avoid red screens.
24506 2004-09-29 14:27  jackson
24508         * XplatUIX11.cs: Set the X DisplayHandle in System.Drawing
24510 2004-09-28 12:44  pbartok
24512         * ButtonBase.cs, CheckBox.cs, ControlPaint.cs, GroupBox.cs,
24513           HScrollBar.cs, Label.cs, LinkLabel.cs, Panel.cs, PictureBox.cs,
24514           ProgressBar.cs, RadioButton.cs, ScrollBar.cs, StatusBar.cs,
24515           Theme.cs, ThemeGtk.cs, ThemeWin32Classic.cs, ToolBar.cs,
24516           TrackBar.cs, VScrollBar.cs:
24517           - Streamlined Theme interfaces:
24518             * Each DrawXXX method for a control now is passed the object for
24519               the control to be drawn in order to allow accessing any state the
24520               theme might require
24522             * ControlPaint methods for the theme now have a CP prefix to avoid
24523               name clashes with the Draw methods for controls
24525             * Every control now retrieves it's DefaultSize from the current
24526             theme
24528 2004-09-28 12:17  jackson
24530         * Button.cs: Do not redraw OnClick MouseUp/Down will handle the
24531           drawing
24533 2004-09-24 14:57  jackson
24535         * XplatUIX11.cs: Don't lock/enqueue/dequeue for unhandled messages.
24536           Gives us a nice little performance boost.
24538 2004-09-24 12:02  jackson
24540         * TabAlignment.cs, TabAppearance.cs, TabControl.cs, TabDrawMode.cs,
24541           TabPage.cs, TabSizeMode.cs: Partial implementation of the Tab
24542           Control and supporting classes. Initial checkin
24544 2004-09-23 13:08  jackson
24546         * Form.cs: Temp build fixage
24548 2004-09-23 01:39  ravindra
24550         * ItemChangedEventArgs.cs, ItemChangedEventHandler.cs,
24551           ItemCheckEventArgs.cs, ItemCheckEventHandler.cs,
24552           ItemDragEventArgs.cs, ItemDragEventHandler.cs,
24553           LabelEditEventArgs.cs, LabelEditEventHandler.cs: EventArgs and
24554           EventHandlers needed by ListView Control.
24556 2004-09-22 14:12  pbartok
24558         * ScrollableControl.cs:
24559           - Implemented DockPadding property
24560           - Implemented AutoScroll property
24561           - Implemented AutoScrollMargin property
24562           - Implemented AutoScrollMinSize property
24563           - Implemented AutoScrollPosition property
24564           - Implemented DisplayRectangle property (still incomplete)
24565           - Implemented CreateParams property
24566           - Implemented HScroll property
24567           - Implemented VScroll property
24568           - Implemented OnVisibleChanged property
24570 2004-09-22 14:09  pbartok
24572         * Form.cs:
24573           - Added Form.ControllCollection class
24574           - Added handling for Form owners: Owner, OwnedForms, AddOwnedForm,
24575             RemoveOwnedForm (still incomplete, missing on-top and common
24576             minimize/maximize behaviour)
24577           - Added StartPosition property (still incomplete, does not use when
24578             creating the form)
24579           - Added ShowDialog() methods (still incomplete, missing forcing the
24580             dialog modal)
24582 2004-09-22 14:05  pbartok
24584         * Application.cs:
24585           - Added message loop for modal dialogs
24587 2004-09-22 14:02  pbartok
24589         * GroupBox.cs:
24590           - Fixed wrong types for events
24592 2004-09-22 14:00  pbartok
24594         * Shortcut.cs, FormWindowState.cs:
24595           - Fixed wrong values
24597 2004-09-22 12:01  jackson
24599         * Control.cs: Text is never null
24601 2004-09-20 22:14  pbartok
24603         * XplatUIWin32.cs:
24604           - Fixed accessibility level for Idle handler
24606 2004-09-20 18:54  jackson
24608         * Application.cs, XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs,
24609           XplatUIX11.cs: New message loop that uses poll so we don't get a
24610           busy loop
24612 2004-09-17 10:43  pbartok
24614         * ScrollBar.cs:
24615           - Fixed behaviour of arrow buttons. Now properly behaves like
24616             Buttons (and like Microsoft's scrollbar arrow buttons)
24618 2004-09-17 10:14  pbartok
24620         * ScrollBar.cs:
24621           - Added missing release of keyboard/mouse capture
24623 2004-09-17 06:18  jordi
24625         * ContextMenu.cs, MainMenu.cs, Menu.cs, MenuAPI.cs, MenuItem.cs,
24626           Theme.cs: Very early menu support
24628 2004-09-16 17:45  pbartok
24630         * XplatUIWin32.cs:
24631           - Fixed sending a window to the front
24632           - Added overload for SetWindowPos to avoid casting
24634 2004-09-16 17:44  pbartok
24636         * Control.cs:
24637           - Added SendToBack and BringToFront methods
24639 2004-09-16 07:00  ravindra
24641         * Copyright: Added Novell URL.
24643 2004-09-16 07:00  ravindra
24645         * ToolBar.cs: Invalidate should be done before redrawing.
24647 2004-09-15 21:19  ravindra
24649         * ColumnHeaderStyle.cs: Enum for ListView Control.
24651 2004-09-15 21:18  ravindra
24653         * ColumnClickEventArgs.cs, ColumnClickEventHandler.cs: Event for
24654           ListView Control.
24656 2004-09-13 18:26  jackson
24658         * Timer.cs, XplatUIX11.cs: Remove test code so timers are updated
24659           properly
24661 2004-09-13 18:13  jackson
24663         * Timer.cs, X11Structs.cs, XplatUIX11.cs: Timers are now handled in
24664           a second thread and post messages into the main threads message
24665           queue. This makes timing much more consistent. Both win2K and XP
24666           have a minimum timer value of 15 milliseconds, so we now do this
24667           too.
24669 2004-09-13 15:18  pbartok
24671         * X11Structs.cs, XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs,
24672           XplatUIX11.cs:
24673           - Added Z-Ordering methods
24675 2004-09-13 10:56  pbartok
24677         * Form.cs:
24678           - Fixed #region names
24679           - Moved properties and methods into their proper #regions
24681 2004-09-13 10:51  pbartok
24683         * Form.cs:
24684           - Added Accept and CancelButton properties
24685           - Added ProcessDialogKey() method
24687 2004-09-13 08:18  pbartok
24689         * IWindowTarget.cs:
24690           - Initial check-in
24692 2004-09-10 21:50  pbartok
24694         * Control.cs:
24695           - Added DoDragDrop() [incomplete]
24696           - Properly implemented 'Visible' handling
24697           - Added SetVisibleCore()
24698           - Implemented FindChildAtPoint()
24699           - Implemented GetContainerControl()
24700           - Implemented Hide()
24702 2004-09-10 19:28  pbartok
24704         * Control.cs:
24705           - Moved methods into their appropriate #regions
24706           - Reordered methods within regions alphabetically
24708 2004-09-10 18:57  pbartok
24710         * XplatUIX11.cs, XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs:
24711           - Added method to retrieve text from window
24713 2004-09-10 18:56  pbartok
24715         * Control.cs:
24716           - Moved some internal functions into the internal region
24717           - Implemented FontHeight
24718           - Implemented RenderRightToLeft
24719           - Implemented ResizeRedraw
24720           - Implemented ShowFocusCues
24721           - Implemented ShowKeyboardCues
24722           - Implemented FromChildHandle
24723           - Implemented FromHandle
24724           - Implemented IsMnemonic
24725           - Implemented ReflectMessage
24726           - All public and protected Static Methods are now complete
24728 2004-09-10 16:54  pbartok
24730         * Control.cs:
24731           - Implemented remaining missing public instance properties
24732           - Alphabetized some out of order properties
24734 2004-09-10 05:51  ravindra
24736         * PictureBox.cs: Added a check for null image.
24738 2004-09-10 00:59  jordi
24740         * GroupBox.cs: remove cvs tag
24742 2004-09-09 05:25  ravindra
24744         * ToolBar.cs: Make redraw accessible from ToolBarButton.
24746 2004-09-09 05:23  ravindra
24748         * ToolBarButton.cs: Changes in ToolBarButton need to make it's
24749           parent redraw.
24751 2004-09-09 02:28  pbartok
24753         * ThemeWin32Classic.cs:
24754           - Improve disabled string look
24756 2004-09-09 01:15  jordi
24758         * MeasureItemEventArgs.cs, MeasureItemEventHandler.cs: measureitem
24759           args and handler
24761 2004-09-08 23:56  ravindra
24763         * ItemBoundsPortion.cs: It's enum, not a class!
24765 2004-09-08 23:47  ravindra
24767         * FormBorderStyle.cs, FormStartPosition.cs, FormWindowState.cs:
24768           Enums for Form.
24770 2004-09-08 21:13  ravindra
24772         * ItemBoundsPortion.cs, ListViewAlignment.cs, View.cs: Enums for
24773           ListView control.
24775 2004-09-08 21:03  ravindra
24777         * ThemeWin32Classic.cs: PictureBox would not draw a null image to
24778           avoid crash.
24780 2004-09-08 21:01  ravindra
24782         * ScrollableControl.cs: Removed unreachable code.
24784 2004-09-08 06:45  jordi
24786         * MenuMerge.cs, Shortcut.cs: enumerations need it by menus
24788 2004-09-08 01:00  jackson
24790         * XplatUIX11.cs: Only run the timers when updating the message
24791           queue. This effectively gives X messages a higher priority then
24792           timer messages. Timers still need love though
24794 2004-09-07 14:01  jackson
24796         * XplatUIX11.cs: Do not call XDestroyWindow, X has already done
24797           this for us and the handle is no longer valid.
24799 2004-09-07 13:59  jackson
24801         * HandleData.cs, XplatUIX11.cs: First steps towards a new X event
24802           loop that manages to not crash. TODO: Add poll and cleanup timers
24804 2004-09-07 11:12  jordi
24806         * GroupBox.cs, Theme.cs, ThemeWin32Classic.cs: GroupBox control
24808 2004-09-07 03:40  jordi
24810         * Label.cs, LinkLabel.cs, Theme.cs, ThemeWin32Classic.cs: LinkLabel
24811           fixes, methods, multiple links
24813 2004-09-06 06:55  jordi
24815         * Control.cs: Caches ClientRectangle rectangle value
24817 2004-09-05 02:03  jordi
24819         * ScrollBar.cs, ThemeWin32Classic.cs: fixes bugs, adds flashing on
24820           certain situations
24822 2004-09-04 11:10  jordi
24824         * Label.cs: Refresh when font changed
24826 2004-09-02 16:24  pbartok
24828         * Control.cs:
24829           - Added sanity check to creation of double buffer bitmap
24831 2004-09-02 16:24  pbartok
24833         * ButtonBase.cs:
24834           - Fixed selection of text color
24835           - Fixed handling of resize event; now properly recreates double
24836             buffering bitmap
24837           - Added missing assignment of TextAlignment
24838           - Added proper default for TextAlignment
24840 2004-09-02 14:26  pbartok
24842         * RadioButton.cs:
24843           - Added missing RadioButton.RadioButtonAccessibleObject class
24845 2004-09-02 14:26  pbartok
24847         * Control.cs:
24848           - Added missing Control.ControlAccessibleObject class
24849           - Started to implement Select()ion mechanisms, still very incomplete
24851 2004-09-02 14:25  pbartok
24853         * AccessibleObject.cs:
24854           - Added missing methods
24856 2004-09-02 14:23  pbartok
24858         * AccessibleNavigation.cs, AccessibleSelection.cs:
24859           - Initial check-in
24861 2004-09-02 10:32  jordi
24863         * Theme.cs, ThemeGtk.cs, ThemeWin32Classic.cs: implements resource
24864           pool for pens, brushes, and hatchbruses
24866 2004-09-01 15:30  jackson
24868         * StatusBar.cs: Fix typo
24870 2004-09-01 14:44  pbartok
24872         * RadioButton.cs:
24873           - Fixed state
24875 2004-09-01 14:39  pbartok
24877         * Button.cs, RadioButton.cs:
24878           - Functional initial check-in
24880 2004-09-01 14:01  pbartok
24882         * CheckBox.cs:
24883           - Added missing default
24884           - Added missing region mark
24886 2004-09-01 09:10  jordi
24888         * Label.cs: fixes method signatures, new methods, events, fixes
24889           autosize
24891 2004-09-01 07:19  jordi
24893         * Control.cs: Init string variables with an empty object
24895 2004-09-01 04:20  jordi
24897         * Control.cs: fires OnFontChanged event
24899 2004-08-31 20:07  pbartok
24901         * ButtonBase.cs:
24902           - Enabled display of strings
24904 2004-08-31 20:05  pbartok
24906         * Form.cs:
24907           - Added (partial) implementation of DialogResult; rest needs to be
24908             implemented when the modal loop code is done
24910 2004-08-31 19:55  pbartok
24912         * CheckBox.cs:
24913           - Fixed to match the removal of the needs_redraw concept
24915 2004-08-31 19:55  pbartok
24917         * ButtonBase.cs:
24918           - Removed the rather odd split between 'needs redraw' and redrawing
24919           - Now handles the events that require regeneration (ambient
24920             properties and size)
24922 2004-08-31 19:41  pbartok
24924         * Control.cs:
24925           - Added firing of BackColorChanged event
24926           - Added TopLevelControl property
24927           - Fixed handling of WM_ERASEBKGRND message
24929 2004-08-31 12:49  pbartok
24931         * ButtonBase.cs:
24932           - Removed debug
24933           - Minor fixes
24935 2004-08-31 12:48  pbartok
24937         * CheckBox.cs:
24938           - Finished (famous last words)
24940 2004-08-31 04:35  jordi
24942         * ScrollBar.cs: adds autorepeat timer, uses a single timer, fixes
24943           scrolling bugs, adds new methods
24945 2004-08-30 14:42  pbartok
24947         * CheckBox.cs:
24948           - Implemented CheckBox drawing code
24950 2004-08-30 14:42  pbartok
24952         * ButtonBase.cs:
24953           - Made Redraw() and CheckRedraw() virtual
24954           - Improved mouse up/down/move logic to properly track buttons
24956 2004-08-30 09:44  pbartok
24958         * CheckBox.cs:
24959           - Updated to fix broken build. Not complete yet.
24961 2004-08-30 09:28  pbartok
24963         * CheckState.cs:
24964           - Initial checkin
24966 2004-08-30 09:17  pbartok
24968         * Appearance.cs:
24969           - Initial check-in
24971 2004-08-27 16:12  ravindra
24973         * ToolBarButton.cs: Added TypeConverter attribute.
24975 2004-08-27 16:07  ravindra
24977         * ImageIndexConverter.cs: Implemented.
24979 2004-08-27 14:17  pbartok
24981         * Control.cs:
24982           - Removed unneeded stack vars
24983           - First attempt to fix sizing issues when layout is suspended
24985 2004-08-25 15:35  jordi
24987         * ScrollBar.cs: more fixes to scrollbar
24989 2004-08-25 14:04  ravindra
24991         * Theme.cs, ThemeWin32Classic.cs, ToolBar.cs, ToolBarButton.cs:
24992           Added the missing divider code and grip for ToolBar Control.
24994 2004-08-25 13:20  pbartok
24996         * Control.cs:
24997           - Control now properly passes the ambient background color to child
24998             controls
25000 2004-08-25 13:20  jordi
25002         * ScrollBar.cs: small bug fix regarding bar position
25004 2004-08-25 12:33  pbartok
25006         * Timer.cs:
25007           - Now only calls SetTimer or KillTimer if the enabled state has
25008           changed
25010 2004-08-25 12:33  pbartok
25012         * XplatUIWin32.cs:
25013           - Fixed timer handling, now seems to work
25014           - Improved error message for window creation
25016 2004-08-25 12:32  pbartok
25018         * Control.cs:
25019           - Fixed generation of MouseUp message
25021 2004-08-25 12:29  jordi
25023         * ProgressBar.cs, ThemeWin32Classic.cs: new methods, properties,
25024           and fixes for progressbar
25026 2004-08-24 18:43  ravindra
25028         * ThemeWin32Classic.cs, ToolBar.cs: Fixed wrapping related issues
25029           in ToolBar control.
25031 2004-08-24 17:15  pbartok
25033         * Panel.cs:
25034           - Added #region
25035           - Added missing events
25036           - Alphabetized
25038 2004-08-24 17:14  pbartok
25040         * StatusBar.cs, PictureBox.cs:
25041           - Now uses Control's CreateParams
25043 2004-08-24 16:36  pbartok
25045         * XplatUIX11.cs:
25046           - Fixed background color handling
25047           - Fixed sending of enter/leave events on a grab
25049 2004-08-24 16:35  pbartok
25051         * X11Structs.cs:
25052           - Refined definitions for CrossingEvent
25054 2004-08-24 12:37  jordi
25056         * ScrollBar.cs, Theme.cs, ThemeGtk.cs, ThemeWin32Classic.cs: fixes
25057           formmating, methods signature, and adds missing events
25059 2004-08-24 12:24  jordi
25061         * Control.cs: fire OnEnabledChanged event
25063 2004-08-24 11:17  pbartok
25065         * XplatUIWin32.cs:
25066           - Implemented SetTimer() and KillTimer()
25068 2004-08-24 11:16  pbartok
25070         * XplatUIX11.cs:
25071           - Now uses Remove instead of Add to kill the timer
25073 2004-08-24 10:16  jackson
25075         * PictureBox.cs, Theme.cs, ThemeWin32Classic.cs: Handle drawing
25076           picture boxes in the theme now. Draw picture box borders and obey
25077           sizing modes
25079 2004-08-24 05:49  jackson
25081         * Timer.cs: Remove top secret debugging code
25083 2004-08-24 05:34  jackson
25085         * PictureBox.cs: Temp hack to make picture boxes draw their full
25086           image
25088 2004-08-24 05:29  jackson
25090         * Timer.cs, XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs,
25091           XplatUIX11.cs: Move timers to the driver level. On X they are
25092           queued by the driver and checked on idle.
25094 2004-08-24 01:07  jackson
25096         * XplatUIX11.cs: Use a queue for async messages instead of passing
25097           them as ClientMessages since that was totally broken. Also simply
25098           check for events and return an idle message if none are found. This
25099           gives us an idle handler, and prevents deadlocking when no messages
25100           are in the queue.
25102 2004-08-23 18:19  ravindra
25104         * XplatUIWin32.cs: Removed the unwanted destructor.
25106 2004-08-23 17:27  pbartok
25108         * ButtonBase.cs:
25109           - Finishing touches. Works now, just needs some optimizations.
25111 2004-08-23 16:53  jordi
25113         * ScrollBar.cs: small fix
25115 2004-08-23 16:45  pbartok
25117         * Application.cs:
25118           - Removed debug output
25119           - Simplifications
25121 2004-08-23 16:43  jordi
25123         * ScrollBar.cs: [no log message]
25125 2004-08-23 16:10  pbartok
25127         * Form.cs:
25128           - Fixed handling of WM_CLOSE message
25129           - Removed debug output
25131 2004-08-23 16:09  pbartok
25133         * Application.cs:
25134           - Added handling of Idle event
25135           - Added handling of form closing
25136           - Fixed reporting of MessageLoop property
25137           - Removed some unneeded code, should provide a bit of a speedup
25139 2004-08-23 15:22  pbartok
25141         * Control.cs:
25142           - Added InitLayout() method
25143           - Added code to properly perform layout when Anchor or Dock property
25144             is changed
25145           - Changed 'interpretation' of ResumeLayout. MS seems to have a
25146             LAMESPEC, tried to do it in a way that makes sense
25148 2004-08-23 14:10  jordi
25150         * HScrollBar.cs, ScrollBar.cs, TrackBar.cs, VScrollBar.cs: fixes
25151           properties and methods
25153 2004-08-23 13:55  pbartok
25155         * Control.cs:
25156           - Properly fixed Jordi's last fix
25157           - Now uses Cursor's Position property instead of calling XplatUI
25158           directly
25160 2004-08-23 13:44  jordi
25162         * PaintEventHandler.cs: Adding missing attribute
25164 2004-08-23 13:39  pbartok
25166         * Cursor.cs:
25167           - Implemented Position property
25169 2004-08-23 13:39  pbartok
25171         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs:
25172           - Added method to move mouse cursor
25174 2004-08-23 13:39  pbartok
25176         * XplatUIX11.cs:
25177           - Fixed setting of background color
25178           - Added method to move mouse cursor
25180 2004-08-23 13:16  jordi
25182         * Control.cs: avoids null exception
25184 2004-08-22 17:46  jackson
25186         * PictureBox.cs, PictureBoxSizeMode.cs: Initial implementation of
25187           PictureBox
25189 2004-08-22 17:40  jackson
25191         * XplatUIX11.cs: Add some missing locks
25193 2004-08-22 15:10  pbartok
25195         * Control.cs, Form.cs:
25196           - Removed OverlappedWindow style from Control, instead it's default
25197             now is child
25198           - Made form windows OverlappedWindow by default
25200 2004-08-22 13:34  jackson
25202         * ScrollBar.cs: Update the position through the Value property so
25203           the OnValueChanged event is raised.
25205 2004-08-22 12:04  pbartok
25207         * SWF.csproj:
25208           - Added Cursor.cs and UserControl.cs
25210 2004-08-22 12:03  pbartok
25212         * Cursor.cs:
25213           - Started implementation, not usable yet
25215 2004-08-22 12:00  pbartok
25217         * UserControl.cs:
25218           - Implemented UserControl (complete)
25220 2004-08-21 19:20  ravindra
25222         * ToolBar.cs: Correcting the formatting mess of VS.NET.
25224 2004-08-21 18:49  ravindra
25226         * ToolBar.cs: Probably this completes the missing attributes in
25227           toolbar control.
25229 2004-08-21 18:03  ravindra
25231         * ToolBar.cs, ToolBarButton.cs, ToolBarButtonClickEventArgs.cs:
25232           Fixed toolbar control signatures.
25234 2004-08-21 16:32  pbartok
25236         * LinkLabel.cs:
25237           - Signature Fixes
25239 2004-08-21 16:30  pbartok
25241         * Label.cs:
25242           - Signature fixes
25244 2004-08-21 16:19  pbartok
25246         * Control.cs, Label.cs:
25247           - Signature fixes
25249 2004-08-21 15:57  pbartok
25251         * ButtonBase.cs:
25252           - Added loads of debug output for development
25253           - Fixed typo in method name
25255 2004-08-21 15:52  pbartok
25257         * ToolBarButtonClickEventArgs.cs:
25258           - Added missing base class
25260 2004-08-21 14:53  pbartok
25262         * Control.cs:
25263           - Updated to match new GrabWindow signature
25265 2004-08-21 14:51  pbartok
25267         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIX11.cs:
25268           - Added method to get default display size
25270 2004-08-21 14:23  pbartok
25272         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIX11.cs:
25273           - Added method to query current grab state
25274           - Added argument to allow confining a grab to a window
25276 2004-08-21 14:22  pbartok
25278         * Keys.cs:
25279           - Added [Flags] attribute so that modifiers can be used in bitwise
25280           ops
25282 2004-08-21 14:21  pbartok
25284         * TrackBar.cs, ScrollBar.cs:
25285           - Replaced direct XplatUI calls with their Control counterpart
25287 2004-08-21 13:32  pbartok
25289         * Control.cs:
25290           - Implemented Created property
25292 2004-08-21 13:28  pbartok
25294         * Control.cs:
25295           - Implemented ContainsFocus
25297 2004-08-21 13:26  pbartok
25299         * Control.cs:
25300           - Implemented CausesValidation
25302 2004-08-21 13:21  pbartok
25304         * Control.cs:
25305           - Implemented CanFocus
25306           - Implemented CanSelect
25307           - Implemented Capture
25309 2004-08-21 12:35  pbartok
25311         * XplatUIWin32.cs:
25312           - Fixed bug with Async message handling
25313           - Implemented getting the ModifierKeys
25315 2004-08-21 12:32  jackson
25317         * AsyncMethodResult.cs: Make sure we have the mutex before we
25318           release it. Fixes BeginInvoke on windows
25320 2004-08-21 11:31  pbartok
25322         * XplatUIWin32.cs, XplatUIX11.cs:
25323           - Drivers now return proper mouse state
25325 2004-08-21 10:54  jackson
25327         * Control.cs: Implement EndInvoke
25329 2004-08-21 10:48  jackson
25331         * Timer.cs: Remove unneeded finalizer
25333 2004-08-20 19:52  ravindra
25335         * ThemeWin32Classic.cs, ToolBar.cs, ToolBarButton.cs: Improvments
25336           in mouse event handling in the ToolBar control.
25338 2004-08-20 19:50  ravindra
25340         * ImageList.cs: Changed draw method to use the arguments passed in
25341           to draw the image.
25343 2004-08-20 18:58  pbartok
25345         * XplatUIStructs.cs:
25346           - Added private message for async communication
25348 2004-08-20 17:38  ravindra
25350         * Control.cs: Made RightToLeft property virtual and removed a
25351           Console.WriteLine.
25353 2004-08-20 14:39  jordi
25355         * ThemeGtk.cs: use style_attach
25357 2004-08-20 14:39  pbartok
25359         * XplatUIWin32.cs:
25360           - Added jackson's Async code from X11 to Win32
25362 2004-08-20 14:09  pbartok
25364         * SWF.csproj:
25365           - Added all new files
25367 2004-08-20 14:09  pbartok
25369         * Control.cs:
25370           - Added call to set window background color
25372 2004-08-20 14:03  pbartok
25374         * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs:
25375           - Added method for setting the window background
25377 2004-08-20 14:02  pbartok
25379         * XplatUIWin32.cs:
25380           - Added method for setting the background color
25381           - Added handling for erasing the window background
25383 2004-08-20 13:45  jordi
25385         * TrackBar.cs: fixes timer, new properties and methods
25387 2004-08-20 13:34  jackson
25389         * ScrollBar.cs: Use the SWF timer so callbacks are run in the
25390           correct thread
25392 2004-08-20 13:22  jackson
25394         * Timer.cs: Timer Tick events are now handed through Controls Async
25395           mechanism so the callbacks are executed in the same thread as X
25397 2004-08-20 13:19  jackson
25399         * XplatUIDriver.cs: Expose functionality to send async messages
25400           through the driver
25402 2004-08-20 13:18  jackson
25404         * Control.cs: Implement Begininvoke
25406 2004-08-20 13:14  jackson
25408         * XplatUI.cs, XplatUIWin32.cs: Expose functionality to send async
25409           messages through the driver
25411 2004-08-20 13:12  jackson
25413         * XplatUIX11.cs: Lock before all X operations. Also added Async
25414           method functionality through XSendEvent
25416 2004-08-20 13:11  jackson
25418         * X11Structs.cs: Use IntPtrs for ClientMessage extra data (TODO:
25419           This will screw up on 64 bit systems)
25421 2004-08-20 13:10  jackson
25423         * AsyncMethodData.cs, AsyncMethodResult.cs: Classes for sending
25424           Async messages through X/Win32
25426 2004-08-19 19:39  pbartok
25428         * XplatUIX11.cs:
25429           - Updated code to match new HandleData.DeviceContext type
25431 2004-08-19 19:38  pbartok
25433         * HandleData.cs:
25434           - Made DeviceContext a generic object to allow usage from various
25435           drivers
25436           - Added support for queueing Windows messages
25438 2004-08-19 19:37  pbartok
25440         * XplatUIWin32.cs:
25441           - Added generation of MouseEnter, MouseLeave and MouseHover events
25442           - Added cleanup on EndPaint
25444 2004-08-19 19:17  pbartok
25446         * Control.cs:
25447           - Added handling of WM_MOUSEHOVER
25448           - Worked around 'bug' in Win32 WM_MOUSE_ENTER/WM_MOUSE_LEAVE driver
25449           code
25451 2004-08-19 18:55  jordi
25453         * ThemeGtk.cs: fixes button order
25455 2004-08-19 18:12  jordi
25457         * Theme.cs, ThemeWin32Classic.cs: fixes methods signature
25459 2004-08-19 17:09  pbartok
25461         * Control.cs:
25462           - Added Right property
25463           - Added RightToLeft property
25465 2004-08-19 16:27  jordi
25467         * ThemeGtk.cs: experimental GTK theme support
25469 2004-08-19 16:26  jordi
25471         * ITheme.cs, Theme.cs: move themes from an interface to a class
25473 2004-08-19 16:25  jordi
25475         * Control.cs, ScrollBar.cs, ThemeEngine.cs, ThemeWin32Classic.cs:
25476           theme enhancaments
25478 2004-08-19 16:04  pbartok
25480         * XplatUIX11.cs:
25481           - Added colormap basics
25482           - Added a way to re-initialize with a different display handle
25483           - Fixed setting of the window background color
25484           - Added various X11 imports related to colors and colormaps
25486 2004-08-19 15:51  pbartok
25488         * X11Structs.cs:
25489           - Removed packing hints (Paolo suggested this a while back)
25490           - fixed colormap type
25491           - Added default Atom types
25492           - Added Screen and color structs and enums
25494 2004-08-19 15:39  pbartok
25496         * ImageList.cs:
25497           - Added missing Draw() method
25498           - Added missing RecreateHandle event
25500 2004-08-19 15:30  pbartok
25502         * Form.cs:
25503           - Added handling of WM_CLOSE
25505 2004-08-18 13:16  jordi
25507         * ITheme.cs, ThemeWin32Classic.cs, XplatUIWin32.cs: Move colors to
25508           a table
25510 2004-08-18 09:56  jordi
25512         * ScrollBar.cs: fixes to scrollbar: steps and multiple timers
25514 2004-08-17 15:31  ravindra
25516         * SWF.csproj: Updated project.
25518 2004-08-17 15:25  pbartok
25520         * Control.cs:
25521           - Drawing improvement; don't call UpdateBounds if we are not visible
25522             (or have been minimized)
25524 2004-08-17 15:24  pbartok
25526         * XplatUIWin32.cs:
25527           - Finished IsVisible
25528           - Added Win32GetWindowPlacement
25530 2004-08-17 15:08  jackson
25532         * Panel.cs: Initial checkin of the Panel
25534 2004-08-17 14:25  pbartok
25536         * Control.cs:
25537           - Fixed broken handling of default window sizes
25539 2004-08-17 13:29  jackson
25541         * ThemeWin32Classic.cs: Don't use KnownColor to create colours. It
25542           has a large startup time.
25544 2004-08-17 10:25  jackson
25546         * HandleData.cs: union areas properly
25548 2004-08-17 10:12  jackson
25550         * HandleData.cs: union areas properly
25552 2004-08-16 20:00  ravindra
25554         * ToolBar.cs, ToolBarButton.cs: Added attributes.
25556 2004-08-16 18:48  ravindra
25558         * ToolBar.cs: Added attributes.
25560 2004-08-16 17:17  ravindra
25562         * SWF.csproj: Updated project.
25564 2004-08-16 17:16  jackson
25566         * XplatUIX11.cs: Check for more expose events before sending a
25567           WM_PAINT so they can all be grouped together. This makes dragging a
25568           window across another window redraw in a sane way.
25570 2004-08-16 15:47  pbartok
25572         * Control.cs:
25573           - Added handling of WM_MOUSE_ENTER & WM_MOUSE_LEAVE to
25574             support OnMouseEnter/Leave()
25575           - Added WS_CLIPSIBLINGS and WS_CLIPCHILDREN window styles to improve
25576             exposure handling
25578 2004-08-16 15:46  pbartok
25580         * XplatUIStructs.cs, XplatUIX11.cs:
25581           - Added WM_MOUSE_ENTER & WM_MOUSE_LEAVE to support
25582           OnMouseEnter/Leave()
25584 2004-08-16 15:34  jackson
25586         * XplatUIX11.cs: Group multiple expose events in HandleData, make
25587           sure messages get the message field set to WM_NULL if they are not
25588           handled.
25590 2004-08-16 15:24  jackson
25592         * HandleData.cs: HandleData is used for storing message information
25593           for window handles
25595 2004-08-15 17:23  ravindra
25597         * ColorDepth.cs: Added attribute.
25599 2004-08-15 17:23  ravindra
25601         * SWF.csproj: Updated project for ToolBar Control.
25603 2004-08-15 17:20  ravindra
25605         * ITheme.cs, ThemeWin32Classic.cs: Changes to Theme for ToolBar
25606           control and also dos2unix format.
25608 2004-08-15 17:13  ravindra
25610         * ToolBar.cs, ToolBarAppearance.cs, ToolBarButton.cs,
25611           ToolBarButtonClickEventArgs.cs,
25612           ToolBarButtonClickEventHandler.cs, ToolBarButtonStyle.cs,
25613           ToolBarTextAlign.cs: First Implementation of ToolBar control.
25615 2004-08-15 15:31  pbartok
25617         * ButtonBase.cs:
25618           - First (mostly) working version
25620 2004-08-13 16:15  pbartok
25622         * Control.cs:
25623           - Fixed Anchor default
25625 2004-08-13 15:43  pbartok
25627         * Control.cs:
25628           - Changed GetCursorPos signature
25630 2004-08-13 15:42  pbartok
25632         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs:
25633           - Changed signature for GetCursorPos
25635 2004-08-13 15:25  pbartok
25637         * XplatUIX11.cs:
25638           - Cleanup
25639           - Fixed resizing/exposure handling
25641 2004-08-13 15:22  jordi
25643         * ThemeWin32Classic.cs: removes redundant code and fixes issues
25644           with tickposition
25646 2004-08-13 14:55  jordi
25648         * TrackBar.cs: change from wndproc to events
25650 2004-08-13 13:00  jordi
25652         * Control.cs, XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs,
25653           XplatUIX11.cs: implements PointToClient (ScreenToClient)
25655 2004-08-13 12:53  pbartok
25657         * XplatUIWin32.cs:
25658           - Changed GetWindowPos to also provide client area size
25659           - Fixed broken prototypes for several win32 functions
25661 2004-08-13 12:53  pbartok
25663         * XplatUI.cs, XplatUIDriver.cs:
25664           - Changed GetWindowPos to also provide client area size
25666 2004-08-13 12:52  pbartok
25668         * XplatUIX11.cs:
25669           - Added generation of WM_POSCHANGED
25670           - Changed GetWindowPos to also provide client area size
25672 2004-08-13 12:52  pbartok
25674         * Control.cs:
25675           - Added Dispose() and destructor
25676           - Fixed resizing and bounds calculation
25677           - Fixed Layout
25678           - Added memory savings for invisible windows
25680 2004-08-13 12:46  jordi
25682         * TrackBar.cs: adds timer and grap window
25684 2004-08-13 10:25  jackson
25686         * Timer.cs: SWF Timer
25688 2004-08-12 16:59  pbartok
25690         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIX11.cs:
25691           - Implemented method to get current mouse position
25693 2004-08-12 14:29  jordi
25695         * ITheme.cs, ThemeWin32Classic.cs, TrackBar.cs: Trackbar
25696           enhancement, fix mouse problems, highli thumb, etc
25698 2004-08-12 13:31  pbartok
25700         * Control.cs:
25701           - Fixed Anchoring bugs
25703 2004-08-12 13:01  jackson
25705         * StatusBar.cs: Don't forget things
25707 2004-08-12 12:54  jackson
25709         * ThemeWin32Classic.cs: Handle owner draw status bars
25711 2004-08-12 12:54  jackson
25713         * StatusBar.cs: Implement missing properties, events, and methods.
25714           Handle mouse clicking
25716 2004-08-12 10:19  jackson
25718         * StatusBarPanelClickEventArgs.cs,
25719           StatusBarPanelClickEventHandler.cs: Classes for handling status
25720           bar panel click events
25722 2004-08-12 10:10  jackson
25724         * Control.cs: Add missing properties
25726 2004-08-12 09:46  pbartok
25728         * BindingsManagerBase.cs:
25729           - Name changed to BindingManagerBase.cs
25731 2004-08-12 09:25  jordi
25733         * ScrollableControl.cs: calls ctrlbase instead of exeception
25735 2004-08-11 16:28  pbartok
25737         * InputLanguageChangingEventArgs.cs:
25738           - Never check in before compiling. Fixes the last check-in
25740 2004-08-11 16:26  pbartok
25742         * InputLanguageChangingEventArgs.cs:
25743           - More signature fixes
25745 2004-08-11 16:20  pbartok
25747         * BindingManagerBase.cs, BindingMemberInfo.cs, ContainerControl.cs,
25748           Control.cs, ControlEventArgs.cs, ControlPaint.cs, Form.cs,
25749           ImageListStreamer.cs, InputLanguage.cs,
25750           InputLanguageChangedEventArgs.cs,
25751           InputLanguageChangingEventArgs.cs, Keys.cs, LayoutEventArgs.cs,
25752           LinkArea.cs, Message.cs, MouseEventArgs.cs, NativeWindow.cs,
25753           ScrollEventArgs.cs, ScrollableControl.cs, XplatUI.cs,
25754           XplatUIDriver.cs, XplatUIWin32.cs, XplatUIX11.cs:
25755           - Signature fixes
25757 2004-08-11 16:16  pbartok
25759         * Application.cs:
25760           - Fixed Signature
25761           - Added .Net 1.1 method
25763 2004-08-11 15:25  pbartok
25765         * SWF.csproj:
25766           - Fixed BindingManagerBase.cs filename
25768 2004-08-11 15:22  pbartok
25770         * BindingManagerBase.cs:
25771           - Was checked in with wrong filename
25773 2004-08-11 14:50  pbartok
25775         * SWF.csproj:
25776           - Updated
25778 2004-08-11 13:41  jordi
25780         * XplatUIWin32.cs: Fixes ClientRect
25782 2004-08-11 13:19  pbartok
25784         * Control.cs, XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs,
25785           XplatUIX11.cs:
25786           - We had SetWindowPos and MoveWindow to set window positions and
25787             size, removed MoveWindow. We have GetWindowPos, so it made sense to
25788             keep SetWindowPos as matching counterpart
25789           - Added some X11 sanity checking
25791 2004-08-11 12:59  pbartok
25793         * Control.cs:
25794           - Major cleanup of my SetBounds/SetBoundsCore/UpdateBounds mess
25795             (It seems that SetBounds is just a front for SetBoundsCore and
25796              SetBoundsCore updates the underlying window system and
25797              UpdateBounds is responsible for updating the variables associated
25798              with the Control and sending the events)
25799           - Major cleanup of Size handling; we now have two sizes, client_size
25800             and bounds. Bounds defines the window with decorations, client_size
25801             without them.
25803 2004-08-11 12:55  pbartok
25805         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIX11.cs:
25806           - Added method to calculate difference between decorated window and
25807             raw client area
25809 2004-08-11 12:54  pbartok
25811         * Label.cs:
25812           - Forcing redraw on resize
25814 2004-08-11 11:43  pbartok
25816         * ImageList.cs:
25817           - Removed disposing of the actual images when the list is disposed
25819 2004-08-11 09:13  pbartok
25821         * Control.cs:
25822           - Now properly reparents windows
25824 2004-08-11 08:37  pbartok
25826         * Control.cs:
25827           - Duh!
25829 2004-08-11 07:47  pbartok
25831         * Control.cs:
25832           - Rewrote the collection stuff. Might not be as fast now, not
25833             keeping the number of children around and accessible directly, but
25834             it's more straightforward
25836 2004-08-11 07:44  pbartok
25838         * AccessibleObject.cs:
25839           - Fixed to match ControlCollection rewrite
25841 2004-08-11 07:43  pbartok
25843         * ImageList.cs:
25844           - Added missing creation of the collection list
25846 2004-08-10 20:08  jackson
25848         * StatusBar.cs: Get the paint message from WndProc
25850 2004-08-10 19:31  jackson
25852         * ThemeWin32Classic.cs: Create Brushes as little as possible
25854 2004-08-10 19:20  jackson
25856         * UICues.cs: Add Flags attribute
25858 2004-08-10 19:19  jackson
25860         * StatusBarPanel.cs: Signature cleanup
25862 2004-08-10 19:10  jackson
25864         * StatusBarDrawItemEventArgs.cs, StatusBarDrawItemEventHandler.cs:
25865           Initial implementation of status bar item drawing
25867 2004-08-10 17:27  jordi
25869         * TrackBar.cs: add missing methods, properties, and restructure to
25870           hide extra ones
25872 2004-08-10 16:24  jackson
25874         * AccessibleStates.cs, Border3DSide.cs, Border3DStyle.cs,
25875           ButtonState.cs, ControlStyles.cs, DragDropEffects.cs: Add flags
25876           attribute
25878 2004-08-10 13:21  jordi
25880         * ITheme.cs, ScrollBar.cs, ThemeWin32Classic.cs: scrollbar
25881           enhancements and standarize on win colors defaults
25883 2004-08-10 12:52  jackson
25885         * DrawItemEventArgs.cs, DrawItemState.cs, ITheme.cs,
25886           ThemeWin32Classic.cs: Implement DrawItem functionality
25888 2004-08-10 12:47  jordi
25890         * XplatUIWin32.cs: Calls InvalidateRect before UpdateWindow
25892 2004-08-10 12:32  jordi
25894         * Control.cs: throw ontextchange event
25896 2004-08-10 11:43  pbartok
25898         * Control.cs:
25899           - Added more to the still unfinished Dock/Anchor layout code
25901 2004-08-10 11:39  pbartok
25903         * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs:
25904           - Added GetWindowPos method
25906 2004-08-10 11:36  pbartok
25908         * XplatUIWin32.cs:
25909           - Implemented several methods
25911 2004-08-10 09:47  jackson
25913         * TrackBar.cs: Allow control to handle buffering
25915 2004-08-10 09:41  jackson
25917         * ProgressBar.cs, ScrollBar.cs: Allow control to handle buffering
25919 2004-08-10 09:24  jackson
25921         * Label.cs, LinkLabel.cs: Let Control handle buffering.
25923 2004-08-10 09:09  jackson
25925         * StatusBar.cs: Let Control handle all the buffering.
25927 2004-08-10 09:08  jackson
25929         * Control.cs: Control will now handle the buffering code, so each
25930           control does not have to implement this.
25932 2004-08-10 08:34  jackson
25934         * XplatUIDriver.cs: Use default colors from the theme
25936 2004-08-09 17:12  pbartok
25938         * ImageList.cs:
25939           - Fixed several bugs Ravindra pointed out
25941 2004-08-09 16:11  pbartok
25943         * Control.cs:
25944           - Added incomplete dock layout code
25945           - Added support for mouse wheel
25947 2004-08-09 16:09  pbartok
25949         * XplatUIX11.cs:
25950           - Added handling for middle and right mousebutton
25951           - Added handling for mouse wheel
25952           - Added handling for key state and mouse state and position
25953           - Now properly generates WM_xBUTTONx messages and WM_MOUSEWHEEL
25954           messages
25956 2004-08-09 15:40  jackson
25958         * StatusBarPanel.cs, StatusBarPanelAutoSize.cs,
25959           StatusBarPanelBorderStyle.cs, StatusBarPanelStyle.cs: Initial
25960           checkin
25962 2004-08-09 15:37  jackson
25964         * StatusBar.cs: Initial implementation of StatusBar
25966 2004-08-09 15:36  jackson
25968         * ITheme.cs: Add support for drawing status bar and getting status
25969           bar item sizes
25971 2004-08-09 15:35  pbartok
25973         * MouseButtons.cs:
25974           - Fixed values
25976 2004-08-09 15:34  jackson
25978         * ThemeWin32Classic.cs: Add support for drawing status bar and get
25979           status bar item sizes
25981 2004-08-09 15:21  jackson
25983         * ThemeWin32Classic.cs: Use known colors for default control
25984           colours
25986 2004-08-09 15:12  jackson
25988         * ThemeWin32Classic.cs: Make the default font static, it is static
25989           in control so this doesn't change functionality and creating fonts
25990           is sloooooow.
25992 2004-08-09 14:56  pbartok
25994         * X11Structs.cs:
25995           - Added GrabMode enum
25997 2004-08-09 14:55  pbartok
25999         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIX11.cs:
26000           - Removed Run method, was only required for initial development
26002 2004-08-09 14:51  pbartok
26004         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIX11.cs:
26005           - Implemented GrabWindow/ReleaseWindow methods to allow pointer
26006           capture
26008 2004-08-09 13:48  pbartok
26010         * XplatUIX11.cs:
26011           - Fixed default sizing for child windows
26013 2004-08-09 12:56  pbartok
26015         * XplatUIX11.cs:
26016           - Added generation of WM_DESTROY message
26017           - Added handling of window manager induced shutdown
26019 2004-08-09 11:31  jackson
26021         * ThemeWin32Classic.cs: New names for control properties
26023 2004-08-09 11:25  jackson
26025         * Control.cs: Use new color names
26027 2004-08-09 11:02  jackson
26029         * XplatUI.cs: Get default window properties from the theme
26031 2004-08-09 11:01  jackson
26033         * ITheme.cs: The theme engine now controls default window
26034           properties
26036 2004-08-09 11:00  jackson
26038         * ThemeWin32Classic.cs: Add default window color properties
26040 2004-08-09 10:17  jackson
26042         * ThemeWin32Classic.cs: Use correct default back color
26044 2004-08-09 10:05  jackson
26046         * XplatUIWin32.cs, XplatUIX11.cs: These properties are handled by
26047           the theme now.
26049 2004-08-09 09:56  jackson
26051         * XplatUI.cs: Remove defaults, these are handled by the theme now.
26053 2004-08-09 09:54  jackson
26055         * Control.cs: Get default properties from the theme.
26057 2004-08-09 09:53  jackson
26059         * ITheme.cs: Themes now handle default control properties
26061 2004-08-09 09:53  jackson
26063         * ThemeWin32Classic.cs: Themes now handle default control
26064           properties so coloring will be consistent
26066 2004-08-08 16:54  jordi
26068         * ITheme.cs, ThemeWin32Classic.cs: Label BorderStyles
26070 2004-08-08 15:08  jordi
26072         * XplatUIX11.cs: fixes keyboard crash
26074 2004-08-08 13:47  jordi
26076         * Label.cs: add cvs header info
26078 2004-08-08 12:09  jackson
26080         * ThemeWin32Classic.cs: Add pen_buttonface
26082 2004-08-08 11:52  jordi
26084         * Label.cs, LinkLabel.cs: [no log message]
26086 2004-08-08 11:34  jordi
26088         * ThemeWin32Classic.cs: Use Windows Standard Colours
26090 2004-08-07 17:32  jordi
26092         * TrackBar.cs: throw exceptions of invalid enums values
26094 2004-08-07 17:31  jordi
26096         * Label.cs, LinkLabel.cs, ThemeWin32Classic.cs: fixes label bug and
26097           draw method name
26099 2004-08-07 16:56  jackson
26101         * HorizontalAlignment.cs: Initial checkin
26103 2004-08-07 13:16  jordi
26105         * Label.cs, LinkLabel.cs: throw exceptions, fixes events, missing
26106           methods
26108 2004-08-07 13:05  jordi
26110         * ITheme.cs, ThemeWin32Classic.cs: Theme colour support and
26111           GetSysColor defines
26113 2004-08-06 18:01  pbartok
26115         * ThemeWin32Classic.cs:
26116           - Fixed some rounding issues with float/int
26118 2004-08-06 18:00  jackson
26120         * DockStyle.cs, AnchorStyles.cs:
26122                   Add flags and serializable attributes.
26124 2004-08-06 17:46  pbartok
26126         * XplatUIX11.cs:
26127           - Implemented GetParent
26129 2004-08-06 17:18  pbartok
26131         * TrackBar.cs:
26132           - Fixed some rounding issues with float/int
26134 2004-08-06 17:17  pbartok
26136         * X11Structs.cs, XplatUIX11.cs:
26137           - Fixed Refresh and Invalidate
26139 2004-08-06 15:30  pbartok
26141         * Control.cs, X11Structs.cs, XplatUIX11.cs:
26142           - Fixed recursive loop when resizing
26143           - Improved/fixed redrawing on expose messages
26145 2004-08-06 09:53  jordi
26147         * Control.cs, X11Structs.cs, XplatUIWin32.cs, XplatUIX11.cs: X11
26148           keyboard navigation
26150 2004-08-06 08:02  pbartok
26152         * X11Structs.cs, XplatUIX11.cs:
26153           - Fixed reparenting
26154           - Fixed window border creation
26156 2004-08-05 15:38  pbartok
26158         * XplatUIX11.cs:
26159           - Attempted fix for reparenting problems
26161 2004-08-04 15:14  pbartok
26163         * Control.cs:
26164           - Fixed Invalidation bug (calculated wrong client area)
26165           - Added ClientSize setter
26167 2004-08-04 15:13  pbartok
26169         * Form.cs:
26170           - Added AutoScale properties
26172 2004-08-04 15:13  pbartok
26174         * SWF.csproj:
26175           - Added latest files
26177 2004-08-04 14:11  pbartok
26179         * Control.cs, XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs,
26180           XplatUIX11.cs:
26181           - Added Invalidate handling
26183 2004-08-03 17:09  jordi
26185         * XplatUIDriver.cs: fixes spelling mistake
26187 2004-07-27 09:53  jordi
26189         * TrackBar.cs: fixes trackbar events, def classname, methods
26190           signature
26192 2004-07-27 09:29  jordi
26194         * ScrollBar.cs: fixes scrollbar events
26196 2004-07-27 04:38  jordi
26198         * Control.cs: changes to be able to run winforms samples
26200 2004-07-26 11:42  jordi
26202         * ControlPaint.cs, ITheme.cs, ProgressBar.cs, ScrollBar.cs,
26203           ThemeEngine.cs, ThemeWin32Classic.cs, TrackBar.cs: Theme support
26205 2004-07-26 05:41  jordi
26207         * MessageBox.cs, MessageBoxButtons.cs, MessageBoxDefaultButton.cs,
26208           MessageBoxIcon.cs, MessageBoxOptions.cs: initial messagebox
26209           implementation
26211 2004-07-22 09:22  jordi
26213         * LinkLabel.cs, LinkLabelLinkClickedEventHandler.cs: link label:
26214           check link overlapping, implement events, and fixes
26216 2004-07-21 10:28  jordi
26218         * DialogResult.cs, IButtonControl.cs: fixes comments filenames
26220 2004-07-21 10:19  jordi
26222         * DialogResult.cs, IButtonControl.cs, Label.cs, LinkArea.cs,
26223           LinkBehavior.cs, LinkClickedEventArgs.cs, LinkLabel.cs,
26224           LinkLabelLinkClickedEventArgs.cs,
26225           LinkLabelLinkClickedEventHandler.cs, LinkState.cs,
26226           XplatUIWin32.cs, LinkClickedEventHandler.cs: LinkLabel control
26227           implementation
26229 2004-07-19 13:09  jordi
26231         * Control.cs, Label.cs: label control re-written: added missing
26232           functionlity, events, and properties
26234 2004-07-19 10:49  jordi
26236         * Control.cs: fixes SetBounds logic
26238 2004-07-19 01:29  jordi
26240         * Control.cs: Call RefreshWindow only if the window has created
26242 2004-07-15 14:05  pbartok
26244         * ColorDepth.cs, ImageList.cs, ImageListStreamer.cs, SWF.csproj:
26245           - Implemented ImageList and ImageList.ImageCollection classes
26246           - Added ColorDepth enumeration
26247           - Updated SWF VS.Net project
26249 2004-07-15 11:06  jordi
26251         * XplatUIStructs.cs: added MsgButons enum
26253 2004-07-15 11:03  jordi
26255         * Control.cs: added basic mouse handeling events
26257 2004-07-15 03:38  jordi
26259         * Orientation.cs, TickStyle.cs, TrackBar.cs: Horizontal and
26260           Vertical TrackBar control implementation
26262 2004-07-13 09:33  jordi
26264         * HScrollBar.cs, VScrollBar.cs: vertical and hort. classes commit
26266 2004-07-13 09:31  jordi
26268         * Control.cs, Form.cs: commit: new properties and fixes form size
26269           problems
26271 2004-07-09 14:13  miguel
26273         * ProgressBar.cs: Spelling
26275 2004-07-09 11:25  pbartok
26277         * ProgressBar.cs:
26278           - Removed usage of Rectangle for drawing. Miguel pointed out it's
26279           faster
26281 2004-07-09 11:17  miguel
26283         * ProgressBar.cs: 2004-07-09  Miguel de Icaza  <miguel@ximian.com>
26285                 * ProgressBar.cs: Fixed spelling for `block'
26287                 drawProgressBar: renamed to `DrawProgressBar' to follow the coding
26288                 style guidelines.
26290                 Avoid using the += on rect.X, that exposed a bug in the compiler.
26292 2004-07-08 23:21  pbartok
26294         * AccessibleObject.cs, AccessibleRole.cs, AccessibleStates.cs,
26295           AnchorStyles.cs, Application.cs, ApplicationContext.cs,
26296           BaseCollection.cs, Binding.cs, BindingContext.cs,
26297           BindingMemberInfo.cs, BindingsCollection.cs,
26298           BindingsManagerBase.cs, Border3DSide.cs, Border3DStyle.cs,
26299           BorderStyle.cs, BoundsSpecified.cs, ButtonBorderStyle.cs,
26300           ButtonState.cs, CaptionButton.cs, CheckBox.cs,
26301           ContainerControl.cs, Control.cs, ControlEventArgs.cs,
26302           ControlEventHandler.cs, ControlPaint.cs, ControlStyles.cs,
26303           ConvertEventArgs.cs, ConvertEventHandler.cs, Copyright,
26304           CreateParams.cs, DockStyle.cs, DragAction.cs, DragDropEffects.cs,
26305           DragEventArgs.cs, DragEventHandler.cs, FlatStyle.cs, Form.cs,
26306           FrameStyle.cs, GiveFeedbackEventArgs.cs,
26307           GiveFeedbackEventHandler.cs, HelpEventArgs.cs,
26308           HelpEventHandler.cs, IContainerControl.cs, IDataObject.cs,
26309           IMessageFilter.cs, IWin32Window.cs, ImeMode.cs, InputLanguage.cs,
26310           InputLanguageChangedEventArgs.cs,
26311           InputLanguageChangedEventHandler.cs,
26312           InputLanguageChangingEventArgs.cs,
26313           InputLanguageChangingEventHandler.cs, InputLanguageCollection.cs,
26314           InvalidateEventArgs.cs, InvalidateEventHandler.cs,
26315           KeyEventArgs.cs, KeyEventHandler.cs, KeyPressEventArgs.cs,
26316           KeyPressEventHandler.cs, Keys.cs, Label.cs, LayoutEventArgs.cs,
26317           LayoutEventHandler.cs, MenuGlyph.cs, Message.cs, MouseButtons.cs,
26318           MouseEventArgs.cs, MouseEventHandler.cs, NativeWindow.cs,
26319           PaintEventArgs.cs, PaintEventHandler.cs, ProgressBar.cs,
26320           QueryAccessibilityHelpEventArgs.cs,
26321           QueryAccessibilityHelpEventHandler.cs,
26322           QueryContinueDragEventArgs.cs, QueryContinueDragEventHandler.cs,
26323           RightToLeft.cs, SWF.csproj, SWF.csproj.user, ScrollBar.cs,
26324           ScrollBars.cs, ScrollButton.cs, ScrollEventArgs.cs,
26325           ScrollEventHandler.cs, ScrollEventType.cs, ScrollableControl.cs,
26326           TODO, TODOAttribute.cs, UICues.cs, UICuesEventArgs.cs,
26327           UICuesEventHandler.cs, X11Structs.cs, XplatUI.cs,
26328           XplatUIDriver.cs, XplatUIStructs.cs, XplatUIWin32.cs,
26329           XplatUIX11.cs, lang.cs:
26330           - Initial check-in